diff --git a/.Rbuildignore b/.Rbuildignore index 5637915..4f80b6c 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -1,4 +1,7 @@ ^docs$ +^data-raw$ ^_pkgdown\.yml$ ^.*\.Rproj$ ^\.Rproj\.user$ +^LICENSE\.md$ +^data/.*\.csv$ diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..c26d399 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,92 @@ +# Contributing + +We welcome contributions! This document provides guidelines for contributing to JournalAnalysis. + +## Submitting Bugs + +### Before Submitting + +Before submitting a bug report, please do the following: + +- **Make sure you're on the latest version.** Your problem may have been solved already. +- **Try older versions.** If you're on the latest release, try rolling back a few minor versions to help narrow down when the problem first arose. +- **Search the project's issue tracker** to make sure it's not a known issue. + +### Bug Report Contents + +Make sure your report includes: + +- **Operating system:** Windows? macOS? Linux? Include version details. +- **R version:** Output from `R.version.string` or `sessionInfo()`. +- **Package version:** Output from `packageVersion("JournalAnalysis")`. +- **RStudio version:** If the addin is involved, include your RStudio build. +- **Installation method:** r-universe, GitHub (`devtools::install_github`), or source. +- **Steps to reproduce:** Include a minimal example, the command or addin steps you used, and the full output or error message. + +## Contributing Changes + +### Licensing + +By contributing to this project, you agree that your contributions will be licensed under the same terms as the rest of the project (see the `LICENSE` file in the repository root). + +- Per-file copyright/license headers are typically not needed. Please don't add your own copyright headers to new files unless the project's license actually requires them. + +### Version Control + +- **Always make a new branch** for your work, no matter how small. +- **Don't submit unrelated changes in the same branch/pull request.** +- **Base your branch on `main`** for new features and most bug fixes. +- If your PR has been sidelined for a while, **rebase or merge to latest `main`** before resubmitting. + +### Code Formatting + +- **Follow the style used in the repository.** Consistency with the rest of the project always trumps other considerations. +- Use snake_case for functions and variables, `<-` for assignment, and 2-space indentation. + +### Documentation + +Documentation is required for all contributions: + +- **Roxygen2 comments** must be created or updated for exported functions. +- **README or pkgdown docs** should be updated when user-facing behavior changes. +- **Changelog entry** should credit the contributor when the change is user-visible. + +### Tests + +Tests are required for all contributions: + +- **Bug fixes** must include a test proving the existence of the bug being fixed. +- **New features** must include tests proving they actually work. +- Run `devtools::test()` locally before opening a pull request. + +## Workflow Example + +Here's an example workflow for contributing: + +### Preparing Your Fork + +1. Fork the repository on GitHub. +2. Clone your fork: `git clone git@github.com:yourname/JournalAnalysis.git` +3. `cd JournalAnalysis` +4. Install development dependencies: `devtools::install_dev_deps()` +5. Create a branch: `git checkout -b fix-description main` + +### Making Your Changes + +1. Write tests expecting the correct/fixed functionality; make sure they fail initially. +2. Implement your changes. +3. Run tests again: `devtools::test()` +4. Run a full check: `devtools::check()` +5. Update documentation as needed. +6. Commit your changes: `git commit -m "Brief description of changes"` + +### Creating Pull Requests + +1. Push your branch: `git push origin HEAD` +2. Visit GitHub and click the "Pull request" button. +3. In the description field, reference the issue number (if fixing an existing issue) or describe the issue and your fix. +4. Submit and be patient - maintainers will review when they can. + +## Questions? + +If you have questions about contributing, please [open an issue](https://github.com/vallenderlab/JournalAnalysis/issues) or contact the maintainers. diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml new file mode 100644 index 0000000..d5a2f41 --- /dev/null +++ b/.github/workflows/pkgdown.yaml @@ -0,0 +1,48 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + push: + branches: [main, master] + pull_request: + release: + types: [published] + workflow_dispatch: + +name: pkgdown + +permissions: read-all + +jobs: + pkgdown: + runs-on: ubuntu-latest + concurrency: + group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r@v2 + with: + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::pkgdown, local::. + needs: website + + - name: Build site + run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) + shell: Rscript {0} + + - name: Deploy to GitHub pages + if: github.event_name != 'pull_request' + uses: JamesIves/github-pages-deploy-action@v4.5.0 + with: + clean: false + branch: gh-pages + folder: docs diff --git a/.github/workflows/r-cmd-check.yaml b/.github/workflows/r-cmd-check.yaml new file mode 100644 index 0000000..c64bce4 --- /dev/null +++ b/.github/workflows/r-cmd-check.yaml @@ -0,0 +1,65 @@ +name: R-CMD-check + +on: + push: + branches: [main, master] + pull_request: + branches: [main, master] + +env: + R_REMOTES_NO_ERRORS_FROM_WARNINGS: true + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + +jobs: + R-CMD-check: + runs-on: ${{ matrix.config.os }} + name: ${{ matrix.config.os }} (${{ matrix.config.r }}) + env: + RSPM: ${{ matrix.config.rspm }} + strategy: + fail-fast: false + matrix: + config: + - {os: windows-latest, r: "release"} + - {os: macOS-latest, r: "release"} + - {os: ubuntu-latest, r: "release", rspm: "https://packagemanager.rstudio.com/cran/__linux__/jammy/latest"} + - {os: ubuntu-latest, r: "devel", rspm: "https://packagemanager.rstudio.com/cran/__linux__/jammy/latest"} + + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-r@v2 + with: + r-version: ${{ matrix.config.r }} + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::rcmdcheck + needs: check + + - name: Session info + run: | + options(width = 100) + sessioninfo::session_info() + shell: Rscript {0} + + - name: Check + env: + _R_CHECK_CRAN_INCOMING_REMOTE_: false + _R_CHECK_FORCE_SUGGESTS_: false + run: rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "warning", check_dir = "check") + shell: Rscript {0} + + - name: Show testthat output + if: always() + run: find check -name 'testthat.Rout*' -exec cat '{}' \; + shell: bash + + - name: Upload check results + if: failure() + uses: actions/upload-artifact@v4 + with: + name: ${{ runner.os }}-r${{ matrix.config.r }}-results + path: check diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..3c2c1b0 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,19 @@ +cff-version: 1.2.0 +message: "If you use this software, please cite it as below." +type: software +title: "JournalAnalysis: Explore and Identify Journals to Publish in." +abstract: >- + A package for exploring and identifying the best journals in which to + publish a paper. +authors: + - given-names: Robert + family-names: Gilmore + email: robgilmore127@gmail.com + - given-names: Shaurita + family-names: Hutchins + email: shaurita.d.hutchins@gmail.com +version: 0.2.0 +date-released: 2026-06-10 +url: https://github.com/vallenderlab/JournalAnalysis +repository-code: https://github.com/vallenderlab/JournalAnalysis +license: MIT diff --git a/DESCRIPTION b/DESCRIPTION index 8ffcd7a..bde2415 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,12 +1,13 @@ Package: JournalAnalysis Title: Explore and Identify Journals to Publish in. -Version: 0.0.1 +Version: 0.2.0 Authors@R: c( - person("Robert", "Gilmore", email = "rgilmore@umc.edu", role = "cre"), - person("Shaurita", "Hutchins", email = "shutchins2@umc.edu", role = "aut")) + person("Robert", "Gilmore", email = "robgilmore127@gmail.com", role = c("aut", "cre")), + person("Shaurita", "Hutchins", email = "shaurita.d.hutchins@gmail.com", role = "aut")) Description: A package for exploring and identifying the best journals in which to publish a paper. -Depends: R (>= 3.4.3) -License: MIT +Depends: + R (>= 3.5) +License: MIT + file LICENSE Encoding: UTF-8 LazyData: true URL: https://github.com/vallenderlab/JournalAnalysis @@ -14,14 +15,15 @@ BugReports: https://github.com/vallenderlab/JournalAnalysis/issues Imports: dplyr, europepmc, + rlang, tibble, - magrittr, PubMedWordcloud, - ggplot2, - ggthemes, - stringr, - BiocParallel -Suggests: knitr, - rmarkdown + stringr +Suggests: + knitr, + rmarkdown, + devtools, + testthat (>= 3.0.0) VignetteBuilder: knitr -RoxygenNote: 6.1.0 +RoxygenNote: 7.3.3 +Config/testthat/edition: 3 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8cba43e --- /dev/null +++ b/LICENSE @@ -0,0 +1,2 @@ +YEAR: 2026 +COPYRIGHT HOLDER: Vallender Lab diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..5137c8c --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +# MIT License + +Copyright (c) 2018-2026 Vallender Lab + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/NAMESPACE b/NAMESPACE index 4ab64de..0c72f72 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -12,3 +12,9 @@ export(query1) export(query2) export(query3) export(save_as_csv) +importFrom(grDevices,dev.off) +importFrom(grDevices,png) +importFrom(rlang,.data) +importFrom(utils,install.packages) +importFrom(utils,installed.packages) +importFrom(utils,write.csv) diff --git a/NEWS.md b/NEWS.md new file mode 100644 index 0000000..9a034b2 --- /dev/null +++ b/NEWS.md @@ -0,0 +1,3 @@ +# JournalAnalysis 0.2.0 + +* Initial package release on GitHub. diff --git a/R/articles.R b/R/articles.R index e965954..7c87cb9 100644 --- a/R/articles.R +++ b/R/articles.R @@ -7,43 +7,97 @@ #' @param min_year Minimum publication year #' @param max_year Maximum publication year #' @param min_citations Minimum number of citations per article +#' @param n_cores Number of cores to use across multiple queries. #' @return A tibble of the article data #' @export -get_article_data <- function(queries, limit=7500, min_year=2008, max_year=2018, min_citations=5) { - BiocParallel::SnowParam(2) +get_article_data <- function(queries, limit=7500, min_year=NULL, max_year=NULL, + min_citations=5, n_cores=default_worker_count()) { + if (!is.character(queries) || length(queries) == 0 || anyNA(queries)) { + stop("`queries` must be a non-empty character vector.", call. = FALSE) + } + + if (!is.numeric(limit) || length(limit) != 1 || is.na(limit) || limit <= 0) { + stop("`limit` must be a single positive numeric value.", call. = FALSE) + } + + validate_year_bounds(min_year = min_year, max_year = max_year) + + if (!is.null(min_citations) && + (!is.numeric(min_citations) || length(min_citations) != 1 || is.na(min_citations))) { + stop("`min_citations` must be NULL or a single numeric value.", call. = FALSE) + } + + if (!is.numeric(n_cores) || length(n_cores) != 1 || is.na(n_cores) || n_cores < 1) { + stop("`n_cores` must be a single positive numeric value.", call. = FALSE) + } + + limit <- as.integer(limit) + n_cores <- as.integer(n_cores) + + # Query-level parallelism helps when the user passes multiple search strings. + if (length(queries) > 1 && n_cores > 1 && .Platform$OS.type != "windows") { + search_results <- parallel::mclapply( + queries, + function(query) europepmc::epmc_search(query = query, limit = limit), + mc.cores = min(n_cores, length(queries)) + ) + } else { + search_results <- lapply( + queries, + function(query) europepmc::epmc_search(query = query, limit = limit) + ) + } + # Cycle through multiple queries and create a union of unique journal articles - for (query in queries) { - if (exists("eps")) { - temp <- europepmc::epmc_search(query = query, limit = limit) - temp <- dplyr::select(temp, one_of(colnames(eps))) - eps <- dplyr::select(eps, one_of(colnames(temp))) - eps <- dplyr::union(eps, temp) + eps <- NULL + for (temp in search_results) { + if (is.null(eps)) { + eps <- temp } else { - eps <- europepmc::epmc_search(query = query, limit = limit) + temp <- dplyr::select(temp, dplyr::any_of(colnames(eps))) + eps <- dplyr::select(eps, dplyr::any_of(colnames(temp))) + eps <- dplyr::union(eps, temp) } } + + eps <- dplyr::mutate( + eps, + pubYear = suppressWarnings(as.integer(.data$pubYear)), + citedByCount = suppressWarnings(as.numeric(.data$citedByCount)) + ) + # Filter by min/max year and min citation if (!is.null(min_year)) { - eps <- dplyr::filter(eps, pubYear > min_year) + eps <- dplyr::filter(eps, !is.na(.data$pubYear) & .data$pubYear >= min_year) + message(sprintf("Removed records published before %s.", min_year)) } - message(sprintf("Removed records published before %s.", min_year)) if (!is.null(max_year)) { - eps <- dplyr::filter(eps, pubYear < max_year) + eps <- dplyr::filter(eps, !is.na(.data$pubYear) & .data$pubYear <= max_year) message(sprintf("Removed records published after %s.", max_year)) } if (!is.null(min_citations)) { - eps <- dplyr::filter(eps, citedByCount > min_citations) + eps <- dplyr::filter( + eps, + !is.na(.data$citedByCount) & .data$citedByCount >= min_citations + ) message(sprintf("Removed records with less than %s citations.", min_citations)) } + # Remove pmid, doi and authors with NA values - eps <- dplyr::filter(eps, !is.na(pmid) & !is.na(doi) & !is.na(authorString)) + eps <- dplyr::filter( + eps, + !is.na(.data$pmid) & + !is.na(.data$doi) & + !is.na(.data$authorString) + ) message("Removed records with NA values for pmid, doi, and authors.") - message(sprintf("%s records passed the filter.", length(rownames(eps)))) - eps$journalIssn <- stringr::str_replace(eps$journalIssn, "x", "X") - eps$journalIssn <- stringr::str_replace_all(eps$journalIssn, "-", "") - issns_df <- as.data.frame(stringr::str_split(eps$journalIssn, "; ", simplify = TRUE, n = 3)) - eps <- dplyr::mutate(eps, ISSN.1 = issns_df$V1, ISSN.2 = issns_df$V2) - return(eps) + message(sprintf("%s records passed the filter.", nrow(eps))) + + issn_components <- split_normalized_issns(eps$journalIssn) + eps <- dplyr::mutate(eps, journalIssn = normalize_issn_values(.data$journalIssn)) + eps <- dplyr::bind_cols(eps, issn_components) + + eps } #' @title Get Unique ISSNs @@ -54,12 +108,7 @@ get_article_data <- function(queries, limit=7500, min_year=2008, max_year=2018, #' @return A tibble of filtered issns #' @export get_unique_issns <- function(issns) { - issns_df <- as.data.frame(stringr::str_split(issns, "; ", simplify = TRUE, n = 3)) - primary_issns <- issns_df$V1 - secondary_issns <- dplyr::filter(issns_df, V2 != "") - issns <- c(as.character(primary_issns), as.character(secondary_issns)) - # issns <- unique(issns) - return(issns) + collect_unique_issns(issns) } #' @title ISSN to Article Data @@ -71,8 +120,12 @@ get_unique_issns <- function(issns) { #' @return A tibble of the articles filtered by ISSNs #' @export issn_to_article_data <- function(data, issns) { - data <- dplyr::filter(data, (ISSN.1 %in% issns) | (ISSN.2 %in% issns)) - return(data) + normalized_issns <- collect_unique_issns(issns) + + dplyr::filter( + data, + (.data$ISSN.1 %in% normalized_issns) | (.data$ISSN.2 %in% normalized_issns) + ) } #' @title Get Articles With Journal Data @@ -85,34 +138,56 @@ issn_to_article_data <- function(data, issns) { #' @return RETURN_DESCRIPTION #' @examples #' # ADD_EXAMPLES_HERE +#' @keywords internal get_articles_with_journal_data <- function(article_data, journal_data) { - BiocParallel::SnowParam(2) - new_df <- NULL - for (i in 1:length(article_data$id)) { - I1 <- as.character(article_data$ISSN.1[i]) - I2 <- as.character(article_data$ISSN.2[i]) - a_data <- article_data[i, ] - - if (I1 %in% journal_data$ISSN.1) { - j_data <- dplyr::filter(journal_data, ISSN.1 == I1) - ja_data <- dplyr::left_join(a_data, j_data, by = "ISSN.1") - } else if (I1 %in% journal_data$ISSN.2) { - j_data <- dplyr::filter(journal_data, ISSN.2 == I1) - ja_data <- dplyr::left_join(a_data, j_data, by = c("ISSN.1" = "ISSN.2")) - } else if (I2 %in% journal_data$ISSN.1) { - j_data <- dplyr::filter(journal_data, ISSN.1 == I2) - ja_data <- dplyr::left_join(a_data, j_data, by = c("ISSN.2" = "ISSN.1")) - } else if (I2 %in% journal_data$ISSN.2) { - j_data <- dplyr::filter(journal_data, ISSN.2 == I2) - ja_data <- dplyr::left_join(a_data, j_data, by = "ISSN.2") - } else { - stop("ISSN didn not match") - } - if (is.null(new_df)) { - new_df <- ja_data - } else { - new_df <- dplyr::bind_rows(new_df, ja_data) - } + article_data <- dplyr::mutate(article_data, .article_row = dplyr::row_number()) + + article_issn_index <- dplyr::bind_rows( + dplyr::transmute(article_data, .article_row = .data$.article_row, matched_issn = .data$ISSN.1), + dplyr::transmute(article_data, .article_row = .data$.article_row, matched_issn = .data$ISSN.2) + ) |> + dplyr::filter(!is.na(.data$matched_issn) & nzchar(.data$matched_issn)) |> + dplyr::distinct() + + journal_issn_index <- dplyr::bind_rows( + dplyr::mutate(journal_data, matched_issn = .data$ISSN.1), + dplyr::mutate(journal_data, matched_issn = .data$ISSN.2) + ) |> + dplyr::filter(!is.na(.data$matched_issn) & nzchar(.data$matched_issn)) |> + dplyr::mutate(.journal_match = TRUE) |> + dplyr::distinct(.data$matched_issn, .keep_all = TRUE) + + article_journal_matches <- dplyr::left_join( + article_issn_index, + journal_issn_index, + by = "matched_issn" + ) + + unmatched_articles <- article_journal_matches |> + dplyr::group_by(.data$.article_row) |> + dplyr::summarise(has_match = any(!is.na(.data$.journal_match)), .groups = "drop") |> + dplyr::filter(!.data$has_match) + + if (nrow(unmatched_articles) > 0) { + warning( + sprintf( + "Skipping %s article record(s) with no matching journal ISSN.", + nrow(unmatched_articles) + ), + call. = FALSE + ) } - return(new_df) + + matched_journal_data <- article_journal_matches |> + dplyr::filter(!is.na(.data$.journal_match)) |> + dplyr::distinct(.data$.article_row, .keep_all = TRUE) |> + dplyr::select( + -.data$.journal_match, + -.data$matched_issn, + -dplyr::any_of(c("ISSN", "ISSN.1", "ISSN.2")) + ) + + dplyr::left_join(article_data, matched_journal_data, by = ".article_row") |> + dplyr::filter(!.data$.article_row %in% unmatched_articles$.article_row) |> + dplyr::select(-.data$.article_row) } diff --git a/R/combined.R b/R/combined.R index 8d39c65..d27bfd8 100644 --- a/R/combined.R +++ b/R/combined.R @@ -2,25 +2,32 @@ #' #' @description This function uses a journal source to combine data based on queries. #' -#' @param journal_source The journal to search +#' @param journal_source Journal metrics source: `incities` (InCites / JCR) or +#' `scimago`. Aliases `incites`, `jcr`, and `scimagojr` are also accepted. #' @param queries Use one or multiple queries #' @param limit A minimum number of articles #' @param min_year Minimum year to search #' @param max_year Maximum year to search #' @param min_citations Minimum number of citations in a journal +#' @param n_cores Number of cores to use across multiple queries. #' @return A list of data objects including journals, articles, and combined data. #' @export get_publication_data <- function(journal_source, queries, limit=7500, - min_year=2008, max_year=2018, min_citations=5) { + min_year=NULL, max_year=NULL, min_citations=5, + n_cores=default_worker_count()) { + if (!is.character(queries) || length(queries) == 0 || anyNA(queries)) { + stop("`queries` must be a non-empty character vector.", call. = FALSE) + } + hot_data <- list() - # Get journal data from incities or scimago + # Get journal data from InCites (incities) or Scimago journal_data <- get_journal_data(data = journal_source) # Get article data article_data <- get_article_data( queries = queries, limit = limit, min_year = min_year, - max_year = max_year, min_citations = min_citations + max_year = max_year, min_citations = min_citations, n_cores = n_cores ) article_issns <- get_unique_issns(article_data$journalIssn) @@ -37,5 +44,5 @@ get_publication_data <- function(journal_source, queries, limit=7500, ja_data <- get_articles_with_journal_data(article_data, journal_data) hot_data[["combined"]] <- ja_data - return(hot_data) + hot_data } diff --git a/R/data.R b/R/data.R new file mode 100644 index 0000000..dc2f3cf --- /dev/null +++ b/R/data.R @@ -0,0 +1,65 @@ +#' InCites Journal Citation Reports via Web of Science (2023) +#' +#' Journal-level metrics from a 2023 InCites / Journal Citation Reports export. +#' Used by [get_journal_data()] when `data = "incities"`. The aliases `incites` +#' and `jcr` refer to the same bundled dataset. +#' +#' @format ## `jcr2023_wos` +#' A data frame with 21,848 rows and 10 columns: +#' \describe{ +#' \item{journal_name}{Journal title from the source export.} +#' \item{issn}{Print ISSN.} +#' \item{e_issn}{Electronic ISSN.} +#' \item{category}{One or more JCR subject categories.} +#' \item{edition}{Indexed Web of Science edition tags.} +#' \item{total_citations}{Total citations in the 2023 source export.} +#' \item{impact_factor_2023}{2023 Journal Impact Factor.} +#' \item{jif_quartile}{Journal Impact Factor quartile.} +#' \item{jci_2023}{2023 Journal Citation Indicator.} +#' \item{percent_oa_gold}{Percent gold open access.} +#' } +#' +#' @source +#' +#' accessed 2026-06-10. +"jcr2023_wos" + +#' SCImago Journal & Country Rank (2025) +#' +#' Journal-level metrics from SCImago Journal & Country Rank for 2025. +#' Used by [get_journal_data()] when `data = "scimago"` or `data = "scimagojr"`. +#' +#' @format ## `scimagojr2025` +#' A data frame with 32,193 rows and 25 columns: +#' \describe{ +#' \item{Rank}{SCImago rank from the source export.} +#' \item{Sourceid}{SCImago source identifier.} +#' \item{Title}{Journal title, with underscores replaced by spaces.} +#' \item{Type}{Publication type, such as journal or book series.} +#' \item{Issn}{ISSN string from the source export.} +#' \item{Publisher}{Publisher name.} +#' \item{Open.Access}{Open access flag from the source export.} +#' \item{Open.Access.Diamond}{Diamond open access flag.} +#' \item{SJR}{SCImago Journal Rank indicator.} +#' \item{SJR.Best.Quartile}{Best quartile (Q1-Q4).} +#' \item{H.index}{H-index.} +#' \item{Total.Docs...2025.}{Documents published in 2025.} +#' \item{Total.Docs...3years.}{Documents in the prior three years.} +#' \item{Total.Refs.}{Total references.} +#' \item{Total.Citations..3years.}{Citations in the prior three years.} +#' \item{Citable.Docs...3years.}{Citable documents in the prior three years.} +#' \item{Citations...Doc...2years.}{Citations per document, two-year window.} +#' \item{Ref....Doc.}{References per document.} +#' \item{X.Female}{Percent female authorship from the source export.} +#' \item{Overton}{Overton indicator from the source export.} +#' \item{Country}{Country of publication.} +#' \item{Region}{World region.} +#' \item{Coverage}{Source coverage years.} +#' \item{Categories}{Subject categories assigned by SCImago.} +#' \item{Areas}{Broad subject areas assigned by SCImago.} +#' } +#' +#' @source +#' Local source file `data/scimagojr_2025.csv`, accessed 2026-06-10 from +#' . +"scimagojr2025" diff --git a/R/helpers.R b/R/helpers.R index ad366e2..c5df5fa 100644 --- a/R/helpers.R +++ b/R/helpers.R @@ -4,6 +4,7 @@ #' #' @param pubmed_ids A list of pubmed ids #' @param plot_name Path to the output word cloud +#' @importFrom grDevices png dev.off #' @export get_word_cloud <- function(pubmed_ids, plot_name) { abstracts <- PubMedWordcloud::getAbstracts(pubmed_ids) @@ -19,61 +20,175 @@ get_word_cloud <- function(pubmed_ids, plot_name) { #' #' @param data The dataframe or tibble #' @param filename Name or path of output file without .csv extension +#' @importFrom utils write.csv #' @export save_as_csv <- function(data, filename) { write.csv(data, file = paste0(filename, ".csv"), row.names = FALSE) } +# Standardize ISSNs once so article and journal joins use the same keys. +#' Normalize ISSN values into a stable join format. +#' +#' @param issn_values Character vector of raw ISSN values. +#' @return Character vector of normalized ISSN values. +#' @keywords internal +#' @noRd +normalize_issn_values <- function(issn_values) { + issn_values <- as.character(issn_values) + issn_values[is.na(issn_values)] <- "" + + issn_values |> + stringr::str_to_upper() |> + stringr::str_replace_all("ISSN\\s+", "") |> + stringr::str_replace_all("-", "") |> + stringr::str_replace_all(",", ";") |> + stringr::str_replace_all(";\\s*", "; ") |> + stringr::str_squish() +} + +#' Split normalized ISSNs into primary and secondary columns. +#' +#' @param issn_values Character vector of raw ISSN values. +#' @return A tibble with `ISSN.1` and `ISSN.2` columns. +#' @keywords internal +#' @noRd +split_normalized_issns <- function(issn_values) { + normalized_issns <- normalize_issn_values(issn_values) + + if (length(normalized_issns) == 0) { + return(tibble::tibble(ISSN.1 = character(), ISSN.2 = character())) + } + + issn_matrix <- stringr::str_split(normalized_issns, "; ", simplify = TRUE, n = 3) + + if (ncol(issn_matrix) < 2) { + issn_matrix <- cbind(issn_matrix, "") + } + + tibble::tibble( + ISSN.1 = issn_matrix[, 1], + ISSN.2 = issn_matrix[, 2] + ) +} + +#' Collect deduplicated ISSNs from raw article or journal fields. +#' +#' @param issn_values Character vector of raw ISSN values. +#' @return Character vector of unique normalized ISSNs. +#' @keywords internal +#' @noRd +collect_unique_issns <- function(issn_values) { + issn_components <- split_normalized_issns(issn_values) + unique_issns <- unique(c(issn_components$ISSN.1, issn_components$ISSN.2)) + + unique_issns[!is.na(unique_issns) & nzchar(unique_issns)] +} + +#' Validate and normalize supported journal source names. +#' +#' @param data Source name supplied by the caller. +#' @return Normalized source name used internally. +#' @keywords internal +#' @noRd +match_journal_source <- function(data) { + if (!is.character(data) || length(data) != 1 || is.na(data)) { + stop("`data` must be a single character value.", call. = FALSE) + } + + normalized_source <- tolower(data) + + if (normalized_source %in% c("incities", "incites", "jcr")) { + normalized_source <- "incities" + } + + if (normalized_source %in% c("scimago", "scimagojr")) { + normalized_source <- "scimago" + } + + if (!normalized_source %in% c("incities", "scimago")) { + stop( + "`data` must be one of \"incities\", \"incites\", \"jcr\", \"scimago\", or \"scimagojr\".", + call. = FALSE + ) + } + + normalized_source +} + +#' Validate year filter bounds before article retrieval. +#' +#' @param min_year Optional minimum publication year. +#' @param max_year Optional maximum publication year. +#' @return Called for side effects only. +#' @keywords internal +#' @noRd +validate_year_bounds <- function(min_year, max_year) { + if (!is.null(min_year) && (!is.numeric(min_year) || length(min_year) != 1)) { + stop("`min_year` must be NULL or a single numeric value.", call. = FALSE) + } + + if (!is.null(max_year) && (!is.numeric(max_year) || length(max_year) != 1)) { + stop("`max_year` must be NULL or a single numeric value.", call. = FALSE) + } + + if (!is.null(min_year) && !is.null(max_year) && min_year > max_year) { + stop("`min_year` must be less than or equal to `max_year`.", call. = FALSE) + } +} + +#' Choose a conservative default worker count for local parallel work. +#' +#' @param reserve_cores Number of cores to keep free. +#' @return Integer worker count with a minimum of one. +#' @keywords internal +#' @noRd +default_worker_count <- function(reserve_cores = 2L) { + detected_cores <- parallel::detectCores(logical = TRUE) + + if (is.na(detected_cores)) { + return(1L) + } + + max(1L, as.integer(detected_cores) - as.integer(reserve_cores)) +} + #' @title Install JournalAnalysis Packages #' #' @description This function helps user to install packages used in this package #' +#' @importFrom utils installed.packages install.packages #' @export install_journalanalysis_packages <- function() { required_cran_packages <- c( "europepmc", "dplyr", "tibble", - "magrittr", "stringr", - "ggplot2", - "ggthemes", "PubMedWordcloud" ) - required_bioconductor_packages <- c( - "BiocParallel" - ) - required_github_packages <- c() - # Create a list of packages to install. cran_packages_to_install <- required_cran_packages[!(required_cran_packages %in% installed.packages()[, 1])] - bioconductor_packages_to_install <- required_bioconductor_packages[!(required_bioconductor_packages %in% installed.packages()[, 1])] - github_packages_to_install <- required_github_packages[!(gsub(".*/", "", required_github_packages) %in% installed.packages()[, 1])] - - # Install packages from lists. if (length(cran_packages_to_install) > 0) { install.packages(cran_packages_to_install, repos = "https://cran.rstudio.com") } - if (length(bioconductor_packages_to_install) > 0) { - source("https://bioconductor.org/biocLite.R") - biocLite(bioconductor_packages_to_install) - } - if (length(github_packages_to_install) > 0) { - devtools::install_github(github_packages_to_install) - } - # Remove unnecessary environment variables. - remove(required_cran_packages) - remove(required_bioconductor_packages) - remove(required_github_packages) - remove(bioconductor_packages_to_install) - remove(cran_packages_to_install) - remove(github_packages_to_install) + invisible(NULL) } # Provide sample queries ------------------------------------------------------ +#' Example Europe PMC queries for package vignettes. +#' +#' @format A character string containing a Europe PMC advanced search query. +#' @name example_queries +#' @docType data +#' @keywords datasets +NULL + +#' @rdname example_queries #' @export query1 <- "microbiome AND (psychiatry OR brain OR neurons OR neuroscience OR rhesus OR macaque OR addiction) (NOT ecology)" +#' @rdname example_queries #' @export query2 <- "microbiome AND environmental stress AND (rhesus OR macaque OR brain) (NOT ecology)" +#' @rdname example_queries #' @export query3 <- "microbiome AND (psychiatry OR psychology OR neuroscience) AND (rhesus OR macaque or human or stress or monkey) AND (NOT ecology)" diff --git a/R/imports.R b/R/imports.R new file mode 100644 index 0000000..b6d239f --- /dev/null +++ b/R/imports.R @@ -0,0 +1,2 @@ +#' @importFrom rlang .data +NULL diff --git a/R/journals.R b/R/journals.R index 93b9dcd..25f476b 100644 --- a/R/journals.R +++ b/R/journals.R @@ -3,25 +3,47 @@ #' #' @description This function retrieves journal data from an existing data file. #' -#' @param data A data source included in the package's data folder. Can be scimago or incities. +#' @param data A bundled journal source. Use `incities` (InCites / JCR) or +#' `scimago`. The aliases `incites`, `jcr`, and `scimagojr` are also accepted. #' @return A tibble of the journal data. #' @export -get_journal_data <- function(data="incities") { +get_journal_data <- function(data = "incities") { + data <- match_journal_source(data) + if (data == "incities") { - journal_data <- tibble::as.tibble(JournalAnalysis::incities2016) - journal_data$Title <- journal_data$Full.Journal.Title - journal_data$Full.Journal.Title <- NULL - journal_data$ISSN <- stringr::str_replace(journal_data$ISSN, "-", "") - } else if (data == "scimago") { - journal_data <- tibble::as.tibble(JournalAnalysis::scimago2016) - journal_data$ISSN <- journal_data$Issn - journal_data$Issn <- NULL - journal_data$ISSN <- stringr::str_replace(journal_data$ISSN, "ISSN ", "") - journal_data$ISSN <- stringr::str_replace(journal_data$ISSN, ",", ";") - issn_df <- as.data.frame(stringr::str_split(journal_data$ISSN, "; ", simplify = TRUE)) - journal_data <- dplyr::mutate(journal_data, ISSN.1 = issn_df$V1, ISSN.2 = issn_df$V2) + journal_data <- tibble::as_tibble(JournalAnalysis::jcr2023_wos) + journal_data <- dplyr::mutate( + journal_data, + Rank = dplyr::row_number(), + Title = .data$journal_name, + Full.Journal.Title = .data$journal_name, + ISSN = dplyr::if_else( + !is.na(.data$e_issn) & nzchar(.data$e_issn), + paste(.data$issn, .data$e_issn, sep = "; "), + .data$issn + ), + Total.Cites = .data$total_citations, + Journal.Impact.Factor = .data$impact_factor_2023, + JIF.Quartile = .data$jif_quartile, + JCI.2023 = .data$jci_2023, + Percent.OA.Gold = .data$percent_oa_gold + ) + } else { + journal_data <- tibble::as_tibble(JournalAnalysis::scimagojr2025) + journal_data <- dplyr::mutate(journal_data, ISSN = .data$Issn) + journal_data <- dplyr::mutate( + journal_data, + Title = stringr::str_replace_all(.data$Title, "_", " ") + ) } - return(journal_data) + + journal_data <- dplyr::mutate( + journal_data, + ISSN = normalize_issn_values(.data$ISSN) + ) + journal_data <- dplyr::bind_cols(journal_data, split_normalized_issns(journal_data$ISSN)) + + journal_data } #' @title ISSN to Journal Data @@ -33,13 +55,18 @@ get_journal_data <- function(data="incities") { #' @return A tibble of the data filtered by ISSN #' @export issn_to_journal_data <- function(data, issns) { - if (!"tbl" %in% class(data)) { + if (!inherits(data, "tbl_df")) { data <- get_journal_data(data = data) } - if ("ISSN.1" %in% colnames(data)) { - data <- dplyr::filter(data, (ISSN.1 %in% issns) | (ISSN.2 %in% issns)) - } else { - data <- dplyr::filter(data, ISSN %in% issns) + + normalized_issns <- collect_unique_issns(issns) + + if (!all(c("ISSN.1", "ISSN.2") %in% colnames(data)) && "ISSN" %in% colnames(data)) { + data <- dplyr::bind_cols(data, split_normalized_issns(data$ISSN)) } - return(data) + + dplyr::filter( + data, + (.data$ISSN.1 %in% normalized_issns) | (.data$ISSN.2 %in% normalized_issns) + ) } diff --git a/_pkgdown.yml b/_pkgdown.yml index 27a4f8b..535430d 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -1,3 +1,63 @@ +url: https://vallenderlab.github.io/journalanalysis + +development: + mode: unreleased + +navbar: + structure: + left: [intro, articles, reference] + right: [search, changelog, github] + components: + changelog: + text: Changelog + href: news/index.html + +reference: + - title: Workflow + contents: get_publication_data + + - title: Europe PMC articles + contents: + - get_article_data + - get_unique_issns + - issn_to_article_data + - example_queries + + - title: Journal metrics + contents: + - get_journal_data + - issn_to_journal_data + + - title: InCites (JCR) data + contents: + - jcr2023_wos + - scimagojr2025 + + - title: Output and setup + contents: + - save_as_csv + - get_word_cloud + - install_journalanalysis_packages + +articles: + - title: Tutorials + contents: example + +home: + links: + - text: Scimago Journal & Country Rank + href: https://www.scimagojr.com/aboutus.php + - text: Europe PMC search help + href: https://europepmc.org/advancesearch + - text: Report an issue + href: https://github.com/vallenderlab/JournalAnalysis/issues + template: - params: - bootswatch: cosmo + bootstrap: 5 + bootswatch: yeti + +authors: + Robert Gilmore: + href: https://github.com/grabear + Shaurita Hutchins: + href: https://www.shauritahutchins.com diff --git a/data-raw/journal-metrics.R b/data-raw/journal-metrics.R new file mode 100644 index 0000000..0943cb6 --- /dev/null +++ b/data-raw/journal-metrics.R @@ -0,0 +1,34 @@ +# Rebuild bundled journal metrics from the raw CSV snapshots in data/. + +normalize_scimagojr2025 <- function(path) { + scimagojr2025 <- read.csv2(path, stringsAsFactors = FALSE, check.names = TRUE) + + scimagojr2025$Title <- gsub("_", " ", scimagojr2025$Title, fixed = TRUE) + scimagojr2025$Publisher.1 <- NULL + + scimagojr2025 +} + +normalize_jcr2023_wos <- function(path) { + jcr2023_wos <- read.csv(path, stringsAsFactors = FALSE, check.names = TRUE) + + parse_numeric_field <- function(values) { + values[values == ""] <- NA_character_ + values <- gsub(",", "", values, fixed = TRUE) + values <- sub("^<", "", values) + as.numeric(values) + } + + jcr2023_wos$total_citations <- parse_numeric_field(jcr2023_wos$total_citations) + jcr2023_wos$impact_factor_2023 <- parse_numeric_field(jcr2023_wos$impact_factor_2023) + jcr2023_wos$jci_2023 <- parse_numeric_field(jcr2023_wos$jci_2023) + jcr2023_wos$percent_oa_gold <- parse_numeric_field(jcr2023_wos$percent_oa_gold) + + jcr2023_wos +} + +scimagojr2025 <- normalize_scimagojr2025("data/scimagojr_2025.csv") +jcr2023_wos <- normalize_jcr2023_wos("data/jcr_2023_wos.csv") + +save(scimagojr2025, file = "data/scimagojr_2025.rda", compress = "bzip2") +save(jcr2023_wos, file = "data/jcr2023_wos.rda", compress = "bzip2") diff --git a/data/incities2016.RData b/data/incities2016.RData deleted file mode 100644 index 2d7055e..0000000 Binary files a/data/incities2016.RData and /dev/null differ diff --git a/data/jcr2023_wos.rda b/data/jcr2023_wos.rda new file mode 100644 index 0000000..ba4d306 Binary files /dev/null and b/data/jcr2023_wos.rda differ diff --git a/data/jcr_2023_wos.csv b/data/jcr_2023_wos.csv new file mode 100644 index 0000000..785ef87 --- /dev/null +++ b/data/jcr_2023_wos.csv @@ -0,0 +1,21849 @@ +"journal_name","issn","e_issn","category","edition","total_citations","impact_factor_2023","jif_quartile","jci_2023","percent_oa_gold" +"CA-A CANCER JOURNAL FOR CLINICIANS","0007-9235","1542-4863","ONCOLOGY","('SCIE',)","65,911","503.1","Q1","88.75","92.68" +"NATURE REVIEWS DRUG DISCOVERY","1474-1776","1474-1784","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","48,152","122.7","('Q1', 'Q1')","13.41","9.91" +"LANCET","0140-6736","1474-547X","MEDICINE, GENERAL & INTERNAL","('SCIE',)","336,057","98.4","Q1","24.06","25.97" +"NEW ENGLAND JOURNAL OF MEDICINE","0028-4793","1533-4406","MEDICINE, GENERAL & INTERNAL","('SCIE',)","404,835","96.2","Q1","25.23","3.80" +"BMJ-British Medical Journal","0959-535X","1756-1833","MEDICINE, GENERAL & INTERNAL","('SCIE',)","163,066","93.6","Q1","10.42","81.80" +"NATURE REVIEWS MOLECULAR CELL BIOLOGY","1471-0072","1471-0080","CELL BIOLOGY","('SCIE',)","65,632","81.3","Q1","8.76","1.37" +"Nature Reviews Clinical Oncology","1759-4774","1759-4782","ONCOLOGY","('SCIE',)","27,709","81.1","Q1","10.56","1.47" +"Nature Reviews Materials","2058-8437","2058-8437","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","35,616","79.8","('Q1', 'Q1')","4.35","1.99" +"Nature Reviews Disease Primers","2056-676X","2056-676X","MEDICINE, GENERAL & INTERNAL","('SCIE',)","31,331","76.9","Q1","18.46","3.42" +"NATURE REVIEWS CANCER","1474-175X","1474-1768","ONCOLOGY","('SCIE',)","59,496","72.5","Q1","9.96","0.76" +"NATURE REVIEWS MICROBIOLOGY","1740-1526","1740-1534","MICROBIOLOGY","('SCIE',)","53,193","69.2","Q1","7.64","5.84" +"NATURE REVIEWS IMMUNOLOGY","1474-1733","1474-1741","IMMUNOLOGY","('SCIE',)","61,956","67.7","Q1","8.76","6.71" +"Foundations and Trends in Machine Learning","1935-8237","1935-8245","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","3,740","65.3","Q1","6.30","0.00" +"JAMA-JOURNAL OF THE AMERICAN MEDICAL ASSOCIATION","0098-7484","1538-3598","MEDICINE, GENERAL & INTERNAL","('SCIE',)","189,853","63.1","Q1","11.75","1.23" +"World Psychiatry","1723-8617","2051-5545","PSYCHIATRY","('SCIE', 'SSCI')","12,036","60.5","Q1","10.18","1.61" +"NATURE MEDICINE","1078-8956","1546-170X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","129,261","58.7","('Q1', 'Q1', 'Q1')","13.63","47.38" +"ANNALS OF ONCOLOGY","0923-7534","1569-8041","ONCOLOGY","('SCIE',)","64,002","56.7","Q1","7.49","88.05" +"CHEMICAL REVIEWS","0009-2665","1520-6890","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","230,794","51.4","Q1","4.32","18.73" +"NATURE","0028-0836","1476-4687","MULTIDISCIPLINARY SCIENCES","('SCIE',)","912,552","50.5","Q1","11.28","34.42" +"Nature Reviews Methods Primers","","2662-8449","MULTIDISCIPLINARY SCIENCES","('ESCI',)","4,515","50.1","Q1","8.14","5.97" +"Nature Energy","2058-7546","2058-7546","('ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","46,820","49.7","('Q1', 'Q1')","7.92","14.62" +"Nature Reviews Earth & Environment","","2662-138X","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","8,321","49.7","('Q1', 'Q1')","5.01","0.64" +"CANCER CELL","1535-6108","1878-3686","('CELL BIOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","52,068","48.8","('Q1', 'Q1')","7.56","78.65" +"LANCET NEUROLOGY","1474-4422","1474-4465","CLINICAL NEUROLOGY","('SCIE',)","47,501","46.5","Q1","10.99","19.23" +"Nature Reviews Gastroenterology & Hepatology","1759-5045","1759-5053","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","26,749","45.9","Q1","8.14","4.32" +"REVIEWS OF MODERN PHYSICS","0034-6861","1539-0756","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","57,818","45.9","Q1","4.04","10.89" +"CELL","0092-8674","1097-4172","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","305,198","45.5","('Q1', 'Q1')","10.01","83.50" +"Nature Reviews Physics","","2522-5820","('PHYSICS, APPLIED', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","8,134","44.8","('Q1', 'Q1')","2.75","3.52" +"SCIENCE","0036-8075","1095-9203","MULTIDISCIPLINARY SCIENCES","('SCIE',)","763,009","44.7","Q1","9.91","4.53" +"Lancet Diabetes & Endocrinology","2213-8587","2213-8595","ENDOCRINOLOGY & METABOLISM","('SCIE',)","19,590","44.0","Q1","8.57","17.82" +"eScience","","2667-1417","('ELECTROCHEMISTRY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","3,827","42.9","('Q1', 'Q1')","6.67","97.08" +"Nature Catalysis","2520-1158","2520-1158","CHEMISTRY, PHYSICAL","('SCIE',)","25,392","42.8","Q1","5.29","10.13" +"JOURNAL OF CLINICAL ONCOLOGY","0732-183X","1527-7755","ONCOLOGY","('SCIE',)","169,257","42.1","Q1","6.46","29.96" +"Nature Reviews Cardiology","1759-5002","1759-5010","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","18,575","41.7","Q1","7.04","3.18" +"LANCET ONCOLOGY","1470-2045","1474-5488","ONCOLOGY","('SCIE',)","72,752","41.6","Q1","9.64","18.31" +"Signal Transduction and Targeted Therapy","2095-9907","2059-3635","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","29,874","40.8","('Q1', 'Q1')","4.42","99.57" +"CHEMICAL SOCIETY REVIEWS","0306-0012","1460-4744","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","174,686","40.4","Q1","3.17","26.20" +"NATURE REVIEWS GENETICS","1471-0056","1471-0064","GENETICS & HEREDITY","('SCIE',)","40,757","39.1","Q1","5.75","6.34" +"Lancet Respiratory Medicine","2213-2600","","('CRITICAL CARE MEDICINE', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","24,191","38.7","('Q1', 'Q1')","11.49","32.20" +"Joule","2542-4351","2542-4351","('CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","38,070","38.6","('Q1', 'Q1', 'Q1')","4.41","74.39" +"Nature Nanotechnology","1748-3387","1748-3395","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","76,128","38.1","('Q1', 'Q1')","5.15","11.20" +"Nature Reviews Chemistry","","2397-3358","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","12,247","38.1","Q1","2.61","3.85" +"EUROPEAN HEART JOURNAL","0195-668X","1522-9645","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","84,437","37.6","Q1","7.74","42.36" +"MMWR Surveillance Summaries","1545-8636","1545-8636","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","3,442","37.3","Q1","8.49","72.41" +"NATURE MATERIALS","1476-1122","1476-4660","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","108,002","37.2","('Q1', 'Q1', 'Q1', 'Q1')","6.43","10.78" +"LANCET INFECTIOUS DISEASES","1473-3099","1474-4457","INFECTIOUS DISEASES","('SCIE',)","41,047","36.4","Q1","8.48","31.71" +"NATURE METHODS","1548-7091","1548-7105","BIOCHEMICAL RESEARCH METHODS","('SCIE',)","112,995","36.1","Q1","10.09","33.54" +"CIRCULATION","0009-7322","1524-4539","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","173,789","35.5","('Q1', 'Q1')","8.42","28.34" +"ADVANCES IN PHYSICS","0001-8732","1460-6976","PHYSICS, CONDENSED MATTER","('SCIE',)","5,882","35.0","Q1","2.07","0.00" +"IEEE Communications Surveys and Tutorials","","1553-877X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","27,842","34.4","('Q1', 'Q1')","9.38","24.68" +"Nature Electronics","2520-1131","2520-1131","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","15,284","33.7","Q1","5.94","11.99" +"PROGRESS IN MATERIALS SCIENCE","0079-6425","1873-2208","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","29,821","33.6","Q1","2.39","21.33" +"Innovation","2666-6758","2666-6758","MULTIDISCIPLINARY SCIENCES","('ESCI',)","5,342","33.2","Q1","4.53","88.72" +"NATURE BIOTECHNOLOGY","1087-0156","1546-1696","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","90,606","33.1","Q1","8.38","36.18" +"Energy & Environmental Science","1754-5692","1754-5706","('CHEMISTRY, MULTIDISCIPLINARY', 'ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","110,768","32.4","('Q1', 'Q1', 'Q1', 'Q1')","4.39","20.18" +"Nature Photonics","1749-4885","1749-4893","('OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","54,824","32.3","('Q1', 'Q1')","7.85","16.52" +"PROGRESS IN ENERGY AND COMBUSTION SCIENCE","0360-1285","1873-216X","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","17,065","32.0","('Q1', 'Q1', 'Q1', 'Q1')","2.32","44.12" +"NATURE GENETICS","1061-4036","1546-1718","GENETICS & HEREDITY","('SCIE',)","104,387","31.7","Q1","8.81","35.62" +"Nano-Micro Letters","2311-6706","2150-5551","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","24,745","31.6","('Q1', 'Q1', 'Q1')","4.58","99.85" +"MATERIALS SCIENCE & ENGINEERING R-REPORTS","0927-796X","1879-212X","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","9,807","31.6","('Q1', 'Q1')","2.03","29.87" +"Nature Reviews Endocrinology","1759-5029","1759-5037","ENDOCRINOLOGY & METABOLISM","('SCIE',)","20,965","31.0","Q1","4.86","4.58" +"Lancet Gastroenterology & Hepatology","","2468-1253","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","13,312","30.9","Q1","6.52","15.28" +"Lancet Psychiatry","2215-0374","","PSYCHIATRY","('SCIE', 'SSCI')","19,411","30.8","Q1","8.64","27.31" +"Physiological Reviews","0031-9333","1522-1210","PHYSIOLOGY","('SCIE',)","36,950","29.9","Q1","4.62","13.38" +"Cancer Discovery","2159-8274","2159-8290","ONCOLOGY","('SCIE',)","33,545","29.7","Q1","6.62","36.96" +"Nature Climate Change","1758-678X","1758-6798","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SSCI', 'SCIE')","46,843","29.6","('Q1', 'Q1', 'Q1')","5.51","23.41" +"Journal of Hematology & Oncology","","1756-8722","('HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","22,387","29.5","('Q1', 'Q1')","4.16","99.70" +"Nature Reviews Rheumatology","1759-4790","1759-4804","RHEUMATOLOGY","('SCIE',)","15,825","29.4","Q1","5.50","2.76" +"NATURE REVIEWS NEUROSCIENCE","1471-003X","1471-0048","NEUROSCIENCES","('SCIE',)","46,285","28.7","Q1","4.28","1.46" +"Advanced Powder Materials","","2772-834X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","1,723","28.6","Q1","8.38","97.56" +"Nature Reviews Nephrology","1759-5061","1759-507X","UROLOGY & NEPHROLOGY","('SCIE',)","16,046","28.6","Q1","6.93","4.05" +"Annual Review of Pathology-Mechanisms of Disease","1553-4006","1553-4014","PATHOLOGY","('SCIE',)","8,517","28.4","Q1","6.49","36.92" +"Electrochemical Energy Reviews","2520-8489","2520-8136","ELECTROCHEMISTRY","('SCIE',)","4,343","28.4","Q1","1.92","29.90" +"Nature Reviews Neurology","1759-4758","1759-4766","CLINICAL NEUROLOGY","('SCIE',)","19,986","28.2","Q1","5.97","1.46" +"CELL RESEARCH","1001-0602","1748-7838","CELL BIOLOGY","('SCIE',)","27,759","28.1","Q1","3.64","62.42" +"ASTRONOMY AND ASTROPHYSICS REVIEW","0935-4956","1432-0754","ASTRONOMY & ASTROPHYSICS","('SCIE',)","2,942","27.8","Q1","3.63","68.18" +"Cell Metabolism","1550-4131","1932-7420","('CELL BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","58,139","27.7","('Q1', 'Q1')","5.43","81.03" +"Molecular Cancer","","1476-4598","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","36,560","27.7","('Q1', 'Q1')","5.26","100.00" +"NATURE IMMUNOLOGY","1529-2908","1529-2916","IMMUNOLOGY","('SCIE',)","54,409","27.7","Q1","5.19","22.49" +"ADVANCED MATERIALS","0935-9648","1521-4095","('CHEMISTRY, MULTIDISCIPLINARY', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","392,263","27.4","('Q1', 'Q1', 'Q1', 'Q1', 'Q1', 'Q1')","4.09","18.14" +"eLight","2097-1710","2662-8643","OPTICS","('ESCI',)","1,077","27.2","Q1","7.08","100.00" +"INTENSIVE CARE MEDICINE","0342-4642","1432-1238","CRITICAL CARE MEDICINE","('SCIE',)","30,470","27.1","Q1","4.55","37.75" +"Annual Review of Immunology","0732-0582","1545-3278","IMMUNOLOGY","('SCIE',)","18,947","26.9","Q1","3.01","35.53" +"JOURNAL OF HEPATOLOGY","0168-8278","1600-0641","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","62,886","26.8","Q1","5.97","41.81" +"Nature Biomedical Engineering","2157-846X","2157-846X","ENGINEERING, BIOMEDICAL","('SCIE',)","16,578","26.8","Q1","5.32","16.57" +"Living Reviews in Relativity","2367-3613","1433-8351","PHYSICS, PARTICLES & FIELDS","('SCIE',)","3,904","26.3","Q1","3.91","100.00" +"Annual Review of Astronomy and Astrophysics","0066-4146","1545-4282","ASTRONOMY & ASTROPHYSICS","('SCIE',)","15,350","26.3","Q1","3.80","34.29" +"Science Robotics","2470-9476","2470-9476","ROBOTICS","('SCIE',)","11,700","26.1","Q1","5.66","0.00" +"PROGRESS IN POLYMER SCIENCE","0079-6700","1873-1619","POLYMER SCIENCE","('SCIE',)","27,463","26.0","Q1","2.16","23.87" +"Gastroenterology","0016-5085","1528-0012","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","90,123","25.7","Q1","5.63","40.41" +"Nature Sustainability","2398-9629","2398-9629","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SSCI', 'SSCI')","18,380","25.7","('Q1', 'Q1', 'Q1')","4.51","19.28" +"Immunity","1074-7613","1097-4180","IMMUNOLOGY","('SCIE',)","72,423","25.5","Q1","4.86","73.29" +"Lancet Public Health","2468-2667","2468-2667","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","10,780","25.4","Q1","9.35","80.80" +"MMWR-MORBIDITY AND MORTALITY WEEKLY REPORT","0149-2195","1545-861X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","33,589","25.4","Q1","8.94","62.89" +"Annual Review of Fluid Mechanics","0066-4189","1545-4479","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE')","16,085","25.4","('Q1', 'Q1')","2.92","42.86" +"EUROPEAN UROLOGY","0302-2838","1873-7560","UROLOGY & NEPHROLOGY","('SCIE',)","36,311","25.3","Q1","6.66","35.55" +"REVIEWS OF GEOPHYSICS","8755-1209","1944-9208","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","16,520","25.2","Q1","3.00","55.93" +"Advances in Optics and Photonics","1943-8206","","OPTICS","('SCIE',)","4,110","25.2","Q1","2.98","35.14" +"JAMA Pediatrics","2168-6203","2168-6211","PEDIATRICS","('SCIE',)","18,881","24.7","Q1","7.79","20.20" +"FUNGAL DIVERSITY","1560-2745","1878-9129","MYCOLOGY","('SCIE',)","6,411","24.5","Q1","6.03","30.51" +"Interdisciplinary Materials","2767-4401","2767-441X","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('ESCI', 'ESCI', 'ESCI')","875","24.5","('Q1', 'Q1', 'Q1')","2.93","95.45" +"Advanced Energy Materials","1614-6832","1614-6840","('CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","131,887","24.4","('Q1', 'Q1', 'Q1', 'Q1', 'Q1')","3.60","18.53" +"Lancet Planetary Health","","2542-5196","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE, SSCI')","8,325","24.1","('Q1', 'Q1')","4.56","77.43" +"PHYSICS REPORTS-REVIEW SECTION OF PHYSICS LETTERS","0370-1573","1873-6270","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","33,664","23.9","Q1","2.85","42.68" +"Lancet Digital Health","","2589-7500","('MEDICAL INFORMATICS', 'MEDICINE, GENERAL & INTERNAL')","('SCIE', 'SCIE')","6,727","23.8","('Q1', 'Q1')","5.10","79.26" +"ACM COMPUTING SURVEYS","0360-0300","1557-7341","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","23,965","23.8","Q1","5.05","3.00" +"iMeta","2770-5986","2770-596X","MICROBIOLOGY","('ESCI',)","1,330","23.7","Q1","4.08","93.48" +"Annual Review of Psychology","0066-4308","1545-2085","('PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI')","27,556","23.6","('Q1', 'Q1')","4.22","30.77" +"Nature Food","","2662-1355","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","7,059","23.6","Q1","4.02","19.71" +"Nature Cancer","","2662-1347","ONCOLOGY","('SCIE',)","6,853","23.5","Q1","4.87","28.57" +"PROCEEDINGS OF THE IEEE","0018-9219","1558-2256","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","40,844","23.2","Q1","4.40","37.89" +"Advanced Composites and Hybrid Materials","2522-0128","2522-0136","('MATERIALS SCIENCE, COMPOSITES', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","11,325","23.2","('Q1', 'Q1')","3.23","4.01" +"GUT","0017-5749","1468-3288","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","61,677","23.0","Q1","5.87","48.27" +"Living Reviews in Solar Physics","2367-3648","1614-4961","ASTRONOMY & ASTROPHYSICS","('SCIE',)","2,090","23.0","Q1","2.97","100.00" +"InfoMat","","2567-3165","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","6,530","22.7","Q1","2.48","88.84" +"JAMA Internal Medicine","2168-6106","2168-6114","MEDICINE, GENERAL & INTERNAL","('SCIE',)","24,993","22.5","Q1","4.88","19.71" +"JAMA Oncology","2374-2437","2374-2445","ONCOLOGY","('SCIE',)","28,299","22.5","Q1","4.87","24.40" +"JAMA Psychiatry","2168-622X","2168-6238","PSYCHIATRY","('SCIE', 'SSCI')","22,206","22.5","Q1","4.37","29.00" +"EnergyChem","2589-7780","2589-7780","('CHEMISTRY, MULTIDISCIPLINARY', 'ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","2,235","22.2","('Q1', 'Q1', 'Q1', 'Q1')","2.81","6.35" +"ENDOCRINE REVIEWS","0163-769X","1945-7189","ENDOCRINOLOGY & METABOLISM","('SCIE',)","17,365","22.0","Q1","3.17","51.67" +"Cellular & Molecular Immunology","1672-7681","2042-0226","IMMUNOLOGY","('SCIE',)","14,443","21.8","Q1","2.29","49.31" +"JOURNAL OF THE AMERICAN COLLEGE OF CARDIOLOGY","0735-1097","1558-3597","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","115,262","21.7","Q1","5.15","71.49" +"Nature Human Behaviour","2397-3374","2397-3374","('MULTIDISCIPLINARY SCIENCES', 'NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI')","14,996","21.4","('Q1', 'Q1', 'Q1')","6.21","22.10" +"Annual Review of Public Health","0163-7525","1545-2093","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","10,648","21.4","Q1","3.32","85.90" +"Annual Review of Plant Biology","1543-5008","1545-2123","PLANT SCIENCES","('SCIE',)","23,058","21.3","Q1","2.64","37.93" +"NATURE NEUROSCIENCE","1097-6256","1546-1726","NEUROSCIENCES","('SCIE',)","69,714","21.2","Q1","5.85","25.53" +"Materials Today","1369-7021","1873-4103","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","27,880","21.1","Q1","3.40","24.16" +"Journal of Thoracic Oncology","1556-0864","1556-1380","('ONCOLOGY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","25,813","21.0","('Q1', 'Q1')","4.26","83.71" +"BLOOD","0006-4971","1528-0020","HEMATOLOGY","('SCIE',)","168,059","21.0","Q1","3.53","26.77" +"Lancet Microbe","","2666-5247","('INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE')","4,532","20.9","('Q1', 'Q1')","4.47","74.46" +"IEEE TRANSACTIONS ON PATTERN ANALYSIS AND MACHINE INTELLIGENCE","0162-8828","1939-3539","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","84,194","20.8","('Q1', 'Q1')","5.70","9.87" +"Cell Host & Microbe","1931-3128","1934-6069","('MICROBIOLOGY', 'PARASITOLOGY', 'VIROLOGY')","('SCIE', 'SCIE', 'SCIE')","30,964","20.6","('Q1', 'Q1', 'Q1')","6.15","82.49" +"Light-Science & Applications","2095-5545","2047-7538","OPTICS","('SCIE',)","22,595","20.6","Q1","5.22","100.00" +"Advanced Photonics","","2577-5421","OPTICS","('SCIE',)","2,615","20.6","Q1","3.39","100.00" +"Nature Microbiology","2058-5276","2058-5276","MICROBIOLOGY","('SCIE',)","23,267","20.5","Q1","5.86","38.39" +"JAMA Neurology","2168-6149","2168-6157","CLINICAL NEUROLOGY","('SCIE',)","20,770","20.4","Q1","7.19","30.34" +"ANNALS OF THE RHEUMATIC DISEASES","0003-4967","1468-2060","RHEUMATOLOGY","('SCIE',)","52,707","20.3","Q1","5.09","45.23" +"COORDINATION CHEMISTRY REVIEWS","0010-8545","1873-3840","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","58,574","20.3","Q1","1.58","10.82" +"Journal of Bioresources and Bioproducts","2097-2415","2369-9698","MATERIALS SCIENCE, PAPER & WOOD","('ESCI',)","2,006","20.2","Q1","7.25","97.92" +"Applied Catalysis B-Environment and Energy","0926-3373","1873-3883","('CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL')","('SCIE', 'SCIE', 'SCIE')","162,514","20.2","('Q1', 'Q1', 'Q1')","2.99","9.57" +"INTERNATIONAL JOURNAL OF INFORMATION MANAGEMENT","0268-4012","1873-4707","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","20,325","20.1","Q1","5.74","24.85" +"Cancer Communications","","2523-3548","ONCOLOGY","('SCIE',)","5,020","20.1","Q1","3.06","65.32" +"Lancet Child & Adolescent Health","2352-4642","2352-4642","PEDIATRICS","('SCIE',)","7,476","19.9","Q1","10.06","24.51" +"Lancet Global Health","2214-109X","2214-109X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","22,827","19.9","Q1","6.28","73.79" +"Cell Stem Cell","1934-5909","1875-9777","('CELL & TISSUE ENGINEERING', 'CELL BIOLOGY')","('SCIE', 'SCIE')","30,699","19.8","('Q1', 'Q1')","4.35","82.67" +"ANNALS OF INTERNAL MEDICINE","0003-4819","1539-3704","MEDICINE, GENERAL & INTERNAL","('SCIE',)","64,849","19.6","Q1","4.45","0.44" +"Carbon Energy","","2637-9368","('CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,024","19.5","('Q1', 'Q1', 'Q1', 'Q1')","2.29","90.81" +"AMERICAN JOURNAL OF RESPIRATORY AND CRITICAL CARE MEDICINE","1073-449X","1535-4970","('CRITICAL CARE MEDICINE', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","67,296","19.3","('Q1', 'Q1')","4.11","25.57" +"Kidney International Supplements","2157-1724","2157-1716","UROLOGY & NEPHROLOGY","('SCIE',)","3,049","19.3","Q1","4.10","40.00" +"ACADEMY OF MANAGEMENT REVIEW","0363-7425","1930-3807","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","40,929","19.3","('Q1', 'Q1')","3.43","0.00" +"PHARMACOLOGICAL REVIEWS","0031-6997","1521-0081","PHARMACOLOGY & PHARMACY","('SCIE',)","12,604","19.3","Q1","2.89","44.95" +"ACS Energy Letters","2380-8195","2380-8195","('CHEMISTRY, PHYSICAL', 'ELECTROCHEMISTRY', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","55,559","19.3","('Q1', 'Q1', 'Q1', 'Q1', 'Q1')","2.82","11.57" +"Nature Chemistry","1755-4330","1755-4349","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","42,489","19.2","Q1","3.49","16.33" +"Chem","2451-9294","2451-9294","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","25,402","19.1","Q1","2.88","72.86" +"CLINICAL MICROBIOLOGY REVIEWS","0893-8512","1098-6618","MICROBIOLOGY","('SCIE',)","23,907","19.0","Q1","3.19","2.02" +"REPORTS ON PROGRESS IN PHYSICS","0034-4885","1361-6633","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","20,914","19.0","Q1","1.71","4.88" +"Nature Metabolism","","2522-5812","ENDOCRINOLOGY & METABOLISM","('SCIE',)","9,543","18.9","Q1","4.66","25.61" +"Energy Storage Materials","2405-8297","2405-8289","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","47,960","18.9","('Q1', 'Q1', 'Q1')","2.97","10.80" +"Nature Machine Intelligence","","2522-5839","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","9,760","18.8","('Q1', 'Q1')","3.62","20.52" +"Science Bulletin","2095-9273","2095-9281","MULTIDISCIPLINARY SCIENCES","('SCIE',)","18,154","18.8","Q1","3.37","22.64" +"SusMat","2766-8479","2692-4552","('CHEMISTRY, MULTIDISCIPLINARY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","1,635","18.7","('Q1', 'Q1', 'Q1')","2.44","88.41" +"PROGRESS IN RETINAL AND EYE RESEARCH","1350-9462","1873-1635","OPHTHALMOLOGY","('SCIE',)","11,987","18.6","Q1","4.45","38.10" +"Journal of Advanced Ceramics","2226-4108","2227-8508","MATERIALS SCIENCE, CERAMICS","('SCIE',)","7,463","18.6","Q1","3.67","99.50" +"ADVANCED FUNCTIONAL MATERIALS","1616-301X","1616-3028","('CHEMISTRY, MULTIDISCIPLINARY', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","250,260","18.5","('Q1', 'Q1', 'Q1', 'Q1', 'Q1', 'Q1')","2.74","13.91" +"Psychological Science in the Public Interest","1529-1006","1539-6053","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","2,770","18.2","Q1","7.26","28.57" +"Bioactive Materials","","2452-199X","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","21,928","18.0","('Q1', 'Q1')","3.78","95.80" +"Annual Review of Clinical Psychology","1548-5943","1548-5951","('PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SSCI')","9,235","17.8","('Q1', 'Q1')","6.33","26.56" +"Nature Physics","1745-2473","1745-2481","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","48,457","17.6","Q1","4.78","19.83" +"Science Immunology","2470-9468","2470-9468","IMMUNOLOGY","('SCIE',)","12,436","17.6","Q1","4.18","13.48" +"PERIODONTOLOGY 2000","0906-6713","1600-0757","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","9,590","17.5","Q1","4.27","53.66" +"PSYCHOLOGICAL BULLETIN","0033-2909","1939-1455","('PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI')","57,102","17.3","('Q1', 'Q1')","4.84","5.10" +"Computational Visual Media","2096-0433","2096-0662","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","1,684","17.3","Q1","3.11","100.00" +"NATURE CELL BIOLOGY","1465-7392","1476-4679","CELL BIOLOGY","('SCIE',)","47,382","17.3","Q1","2.93","30.48" +"Matter","2590-2393","2590-2385","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","14,249","17.3","Q1","2.46","65.71" +"TRENDS IN PLANT SCIENCE","1360-1385","1878-4372","PLANT SCIENCES","('SCIE',)","30,859","17.3","Q1","1.90","36.14" +"Advanced Fiber Materials","2524-7921","2524-793X","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, TEXTILES')","('SCIE', 'SCIE')","4,009","17.2","('Q1', 'Q1')","3.35","6.18" +"IEEE Reviews in Biomedical Engineering","1937-3333","1941-1189","ENGINEERING, BIOMEDICAL","('SCIE',)","2,638","17.2","Q1","2.47","24.10" +"Molecular Plant","1674-2052","1752-9867","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","23,905","17.1","('Q1', 'Q1')","4.88","85.32" +"AMERICAN JOURNAL OF BIOETHICS","1526-5161","1536-0075","('ETHICS', 'MEDICAL ETHICS', 'SOCIAL ISSUES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SCIE', 'SSCI', 'SSCI')","3,420","17.0","('Q1', 'Q1', 'Q1', 'Q1')","4.04","31.17" +"Nature Aging","","2662-8465","('CELL BIOLOGY', 'GERIATRICS & GERONTOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE', 'SCIE')","3,203","17.0","('Q1', 'Q1', 'Q1')","3.44","30.15" +"EUROPEAN JOURNAL OF HEART FAILURE","1388-9842","1879-0844","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","21,438","16.9","Q1","3.77","49.38" +"Nature Reviews Psychology","","2731-0574","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","1,031","16.8","Q1","4.10","0.00" +"Wiley Interdisciplinary Reviews-Computational Molecular Science","1759-0876","1759-0884","('CHEMISTRY, MULTIDISCIPLINARY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","11,170","16.8","('Q1', 'Q1')","2.75","28.67" +"Nano Energy","2211-2855","2211-3282","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","113,862","16.8","('Q1', 'Q1', 'Q1', 'Q1')","2.74","9.78" +"INTERNATIONAL MATERIALS REVIEWS","0950-6608","1743-2804","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","8,115","16.8","Q1","0.88","29.31" +"Military Medical Research","2095-7467","2054-9369","MEDICINE, GENERAL & INTERNAL","('SCIE',)","4,376","16.7","Q1","2.76","100.00" +"TRENDS IN COGNITIVE SCIENCES","1364-6613","1879-307X","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI')","32,732","16.7","('Q1', 'Q1', 'Q1')","2.06","43.06" +"TRENDS IN ECOLOGY & EVOLUTION","0169-5347","1872-8383","('ECOLOGY', 'EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","39,040","16.7","('Q1', 'Q1', 'Q1')","1.99","47.04" +"BEHAVIORAL AND BRAIN SCIENCES","0140-525X","1469-1825","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES', 'PSYCHOLOGY, BIOLOGICAL')","('SCIE', 'SCIE', 'SSCI')","11,517","16.6","('Q1', 'Q1', 'Q1')","5.44","0.00" +"EUROPEAN RESPIRATORY JOURNAL","0903-1936","1399-3003","RESPIRATORY SYSTEM","('SCIE',)","54,345","16.6","Q1","3.72","45.13" +"NUCLEIC ACIDS RESEARCH","0305-1048","1362-4962","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","271,360","16.6","Q1","2.90","93.75" +"CIRCULATION RESEARCH","0009-7330","1524-4571","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE', 'SCIE')","62,714","16.5","('Q1', 'Q1', 'Q1')","4.22","19.67" +"NEURO-ONCOLOGY","1522-8517","1523-5866","('CLINICAL NEUROLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","23,201","16.4","('Q1', 'Q1')","3.38","31.25" +"ACCOUNTS OF CHEMICAL RESEARCH","0001-4842","1520-4898","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","82,104","16.4","Q1","1.37","12.32" +"ACTA NUMERICA","0962-4929","1474-0508","MATHEMATICS","('SCIE',)","2,887","16.3","Q1","10.89","57.89" +"PSYCHOTHERAPY AND PSYCHOSOMATICS","0033-3190","1423-0348","('PSYCHIATRY', 'PSYCHOLOGY')","('SCIE, SSCI', 'SCIE')","6,004","16.3","('Q1', 'Q1')","3.88","47.22" +"National Science Review","2095-5138","2053-714X","MULTIDISCIPLINARY SCIENCES","('SCIE',)","15,536","16.3","Q1","3.27","93.89" +"RENEWABLE & SUSTAINABLE ENERGY REVIEWS","1364-0321","1879-0690","('ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","169,190","16.3","('Q1', 'Q1')","2.01","24.77" +"IEEE Geoscience and Remote Sensing Magazine","2473-2397","2168-6831","('GEOCHEMISTRY & GEOPHYSICS', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE')","4,021","16.2","('Q1', 'Q1', 'Q1')","2.72","0.91" +"ANGEWANDTE CHEMIE-INTERNATIONAL EDITION","1433-7851","1521-3773","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","467,453","16.1","Q1","2.70","23.35" +"International Journal of Extreme Manufacturing","2631-8644","2631-7990","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,125","16.1","('Q1', 'Q1')","1.82","100.00" +"ADVANCES IN COLLOID AND INTERFACE SCIENCE","0001-8686","1873-3727","CHEMISTRY, PHYSICAL","('SCIE',)","24,485","15.9","Q1","1.71","19.36" +"Nature Plants","2055-026X","2055-0278","PLANT SCIENCES","('SCIE',)","16,103","15.8","Q1","4.44","18.73" +"Science Translational Medicine","1946-6234","1946-6242","('CELL BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","50,866","15.8","('Q1', 'Q1')","3.51","7.22" +"Journal of Magnesium and Alloys","2213-9567","2213-9567","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","11,729","15.8","Q1","2.97","97.22" +"DRUG RESISTANCE UPDATES","1368-7646","1532-2084","PHARMACOLOGY & PHARMACY","('SCIE',)","4,913","15.8","Q1","2.60","40.00" +"ACS Nano","1936-0851","1936-086X","('CHEMISTRY, MULTIDISCIPLINARY', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","227,757","15.8","('Q1', 'Q1', 'Q1', 'Q1')","2.42","10.55" +"JAMA Surgery","2168-6254","2168-6262","SURGERY","('SCIE',)","17,074","15.7","Q1","5.97","9.97" +"Nature Geoscience","1752-0894","1752-0908","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","36,778","15.7","Q1","4.28","22.67" +"PhotoniX","","2662-1991","OPTICS","('SCIE',)","1,317","15.7","Q1","3.72","100.00" +"Annual Review of Physiology","0066-4278","1545-1585","PHYSIOLOGY","('SCIE',)","11,453","15.7","Q1","2.93","30.56" +"Chinese Journal of Catalysis","0253-9837","1872-2067","('CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE', 'SCIE')","17,268","15.7","('Q1', 'Q1', 'Q1')","2.54","1.63" +"Advances in Methods and Practices in Psychological Science","2515-2459","2515-2467","('PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI')","2,921","15.6","('Q1', 'Q1')","4.34","94.19" +"Journal of Innovation & Knowledge","2530-7614","2444-569X","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","4,260","15.6","('Q1', 'Q1')","3.96","96.47" +"Journal of Extracellular Vesicles","","2001-3078","CELL BIOLOGY","('SCIE',)","13,295","15.5","Q1","2.23","71.14" +"Annual Review of Environment and Resources","1543-5938","1545-2050","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SSCI')","7,103","15.5","('Q1', 'Q1')","1.54","90.59" +"Lancet Haematology","2352-3026","","HEMATOLOGY","('SCIE',)","7,013","15.4","Q1","3.86","14.55" +"Opto-Electronic Advances","2096-4579","2096-4579","OPTICS","('SCIE',)","2,197","15.3","Q1","3.41","98.62" +"IEEE-CAA Journal of Automatica Sinica","2329-9266","2329-9274","AUTOMATION & CONTROL SYSTEMS","('SCIE',)","8,844","15.3","Q1","2.34","0.00" +"SmartMat","2766-8525","2688-819X","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","1,954","15.3","('Q1', 'Q1')","2.16","87.13" +"ADVANCED DRUG DELIVERY REVIEWS","0169-409X","1872-8294","PHARMACOLOGY & PHARMACY","('SCIE',)","47,365","15.2","Q1","2.33","31.54" +"AMERICAN JOURNAL OF PSYCHIATRY","0002-953X","1535-7228","PSYCHIATRY","('SCIE', 'SSCI')","38,166","15.1","Q1","3.76","0.00" +"TRENDS IN FOOD SCIENCE & TECHNOLOGY","0924-2244","1879-3053","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","45,336","15.1","Q1","2.64","15.91" +"Annual Review of Medicine","0066-4219","1545-326X","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","7,381","15.1","Q1","2.26","33.98" +"One Earth","2590-3330","2590-3322","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SSCI', 'SCIE')","5,889","15.1","('Q1', 'Q1', 'Q1')","1.92","82.43" +"Lancet Rheumatology","2665-9913","2665-9913","RHEUMATOLOGY","('SCIE',)","3,211","15.0","Q1","4.58","29.21" +"Annual Review of Entomology","0066-4170","1545-4487","ENTOMOLOGY","('SCIE',)","14,708","15.0","Q1","3.69","33.33" +"eTransportation","2590-1168","2590-1168","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,075","15.0","('Q1', 'Q1', 'Q1')","2.32","20.23" +"Environmental Chemistry Letters","1610-3653","1610-3661","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE')","16,524","15.0","('Q1', 'Q1', 'Q1')","1.18","17.75" +"Molecular Neurodegeneration","","1750-1326","NEUROSCIENCES","('SCIE',)","9,787","14.9","Q1","3.12","100.00" +"JAMA Cardiology","2380-6583","2380-6591","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","13,191","14.8","Q1","5.60","13.44" +"KIDNEY INTERNATIONAL","0085-2538","1523-1755","UROLOGY & NEPHROLOGY","('SCIE',)","47,281","14.8","Q1","4.78","54.73" +"DIABETES CARE","0149-5992","1935-5548","ENDOCRINOLOGY & METABOLISM","('SCIE',)","75,526","14.8","Q1","3.83","2.91" +"HUMAN REPRODUCTION UPDATE","1355-4786","1460-2369","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","13,203","14.8","('Q1', 'Q1')","3.62","33.83" +"Journal of the National Comprehensive Cancer Network","1540-1405","1540-1413","ONCOLOGY","('SCIE',)","13,192","14.8","Q1","2.80","0.64" +"Energy Material Advances","2097-1133","2692-7640","PHYSICS, APPLIED","('ESCI',)","1,031","14.8","Q1","1.89","84.47" +"Neuron","0896-6273","1097-4199","NEUROSCIENCES","('SCIE',)","99,313","14.7","Q1","3.71","81.74" +"Acta Pharmaceutica Sinica B","2211-3835","2211-3843","PHARMACOLOGY & PHARMACY","('SCIE',)","16,222","14.7","Q1","3.61","98.22" +"Information Fusion","1566-2535","1872-6305","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","18,618","14.7","('Q1', 'Q1')","3.42","16.30" +"Nature Communications","","2041-1723","MULTIDISCIPLINARY SCIENCES","('SCIE',)","738,284","14.7","Q1","3.28","99.70" +"TRENDS IN NEUROSCIENCES","0166-2236","1878-108X","NEUROSCIENCES","('SCIE',)","21,059","14.6","Q1","2.05","42.52" +"Autophagy","1554-8627","1554-8635","CELL BIOLOGY","('SCIE',)","29,553","14.6","Q1","1.53","39.73" +"Molecular Cell","1097-2765","1097-4164","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","80,732","14.5","('Q1', 'Q1')","2.66","83.13" +"PROGRESS IN PARTICLE AND NUCLEAR PHYSICS","0146-6410","1873-2224","('PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","5,397","14.5","('Q1', 'Q1')","1.58","44.33" +"Journal of the American Chemical Society","0002-7863","1520-5126","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","568,265","14.4","Q1","2.66","13.66" +"Biofuel Research Journal-BRJ","2292-8782","2292-8782","ENERGY & FUELS","('ESCI',)","1,194","14.4","Q1","1.63","97.87" +"Annual Review of Organizational Psychology and Organizational Behavior","2327-0608","2327-0616","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","4,929","14.3","('Q1', 'Q1')","4.10","36.73" +"Academy of Management Annals","1941-6520","1941-6067","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","9,198","14.3","('Q1', 'Q1')","3.29","0.00" +"JOURNAL OF INFECTION","0163-4453","1532-2742","INFECTIOUS DISEASES","('SCIE',)","13,934","14.3","Q1","2.81","38.14" +"Bone Research","2095-4700","2095-6231","CELL & TISSUE ENGINEERING","('SCIE',)","4,826","14.3","Q1","2.79","100.00" +"EDUCATIONAL PSYCHOLOGIST","0046-1520","1532-6985","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","7,917","14.3","('Q1', 'Q1')","2.52","14.81" +"Annual Review of Marine Science","1941-1405","1941-0611","('GEOCHEMISTRY & GEOPHYSICS', 'MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE')","6,230","14.3","('Q1', 'Q1', 'Q1')","2.50","44.26" +"Trends in Cancer","2405-8025","2405-8033","ONCOLOGY","('SCIE',)","7,958","14.3","Q1","2.14","42.59" +"Advanced Science","","2198-3844","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","79,296","14.3","('Q1', 'Q1', 'Q1')","2.07","75.32" +"TRENDS IN BIOTECHNOLOGY","0167-7799","1879-3096","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","19,565","14.3","Q1","1.62","30.83" +"Annual Review of Condensed Matter Physics","1947-5454","1947-5462","PHYSICS, CONDENSED MATTER","('SCIE',)","4,659","14.3","Q1","1.10","70.59" +"STUDIES IN MYCOLOGY","0166-0616","1872-9797","MYCOLOGY","('SCIE',)","4,581","14.1","Q1","4.94","47.06" +"INTERNATIONAL JOURNAL OF MACHINE TOOLS & MANUFACTURE","0890-6955","1879-2170","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","16,687","14.0","('Q1', 'Q1')","2.88","25.00" +"Accounts of Materials Research","","2643-6728","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","3,420","14.0","('Q1', 'Q1')","2.48","5.23" +"IEEE Transactions on Intelligent Vehicles","2379-8858","2379-8904","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,936","14.0","('Q1', 'Q1', 'Q1')","2.44","6.87" +"Clinical and Molecular Hepatology","2287-2728","2287-285X","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,344","14.0","Q1","2.26","99.41" +"Environmental Science and Ecotechnology","2666-4984","2666-4984","('ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","1,837","14.0","('Q1', 'Q1')","2.09","98.16" +"Journal of Energy Chemistry","2095-4956","2095-4956","('CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","34,236","14.0","('Q1', 'Q1', 'Q1', 'Q1')","2.01","6.24" +"PROGRESS IN LIPID RESEARCH","0163-7827","1873-2194","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","7,497","14.0","('Q1', 'Q1')","1.66","45.36" +"TRENDS IN MICROBIOLOGY","0966-842X","1878-4380","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","18,267","14.0","('Q1', 'Q1')","1.53","36.25" +"Trends in Chemistry","","2589-5974","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","5,139","14.0","Q1","1.09","22.50" +"Nature Ecology & Evolution","2397-334X","2397-334X","('ECOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE')","18,917","13.9","('Q1', 'Q1')","3.85","25.73" +"TRENDS IN PHARMACOLOGICAL SCIENCES","0165-6147","1873-3735","PHARMACOLOGY & PHARMACY","('SCIE',)","14,644","13.9","Q1","1.99","40.59" +"Small Structures","","2688-4062","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,122","13.9","('Q1', 'Q1', 'Q1')","1.41","56.19" +"Aggregate","","2692-4560","('CHEMISTRY, MULTIDISCIPLINARY', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","3,131","13.9","('Q1', 'Q1', 'Q1')","1.38","91.38" +"IEEE JOURNAL ON SELECTED AREAS IN COMMUNICATIONS","0733-8716","1558-0008","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","24,401","13.8","('Q1', 'Q1')","3.67","15.02" +"Microbiome","2049-2618","2049-2618","MICROBIOLOGY","('SCIE',)","23,500","13.8","Q1","3.12","100.00" +"CLINICAL PSYCHOLOGY REVIEW","0272-7358","1873-7811","PSYCHOLOGY, CLINICAL","('SSCI',)","22,185","13.7","Q1","2.18","28.97" +"CELL DEATH AND DIFFERENTIATION","1350-9047","1476-5403","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","30,898","13.7","('Q1', 'Q1')","1.97","49.80" +"Physics of Life Reviews","1571-0645","1873-1457","('BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","2,213","13.7","('Q1', 'Q1')","1.97","39.13" +"Lancet Regional Health-Europe","2666-7762","2666-7762","('HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE, SSCI')","4,173","13.6","('Q1', 'Q1')","5.59","95.69" +"Energy Economics","0140-9883","1873-6181","ECONOMICS","('SSCI',)","45,860","13.6","Q1","4.32","18.45" +"TRENDS IN GENETICS","0168-9525","1362-4555","GENETICS & HEREDITY","('SCIE',)","13,732","13.6","Q1","1.73","45.85" +"Protein & Cell","1674-800X","1674-8018","CELL BIOLOGY","('SCIE',)","7,515","13.6","Q1","1.47","92.73" +"Lancet Healthy Longevity","2666-7568","2666-7568","GERIATRICS & GERONTOLOGY","('ESCI',)","2,102","13.4","Q1","3.15","77.25" +"Nano Convergence","2196-5404","2196-5404","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","2,915","13.4","('Q1', 'Q1', 'Q1')","1.20","100.00" +"JOURNAL OF CLINICAL INVESTIGATION","0021-9738","1558-8238","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","116,288","13.3","Q1","3.45","66.61" +"Chemical Engineering Journal","1385-8947","1873-3212","('ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL')","('SCIE', 'SCIE')","379,191","13.3","('Q1', 'Q1')","1.88","6.96" +"Computer Science Review","1574-0137","1876-7745","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","3,805","13.3","('Q1', 'Q1', 'Q1')","1.35","17.86" +"Nano Today","1748-0132","1878-044X","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","17,293","13.2","('Q1', 'Q1', 'Q1')","1.85","10.06" +"OPHTHALMOLOGY","0161-6420","1549-4713","OPHTHALMOLOGY","('SCIE',)","43,813","13.1","Q1","5.14","29.38" +"Nature Protocols","1754-2189","1750-2799","BIOCHEMICAL RESEARCH METHODS","('SCIE',)","52,708","13.1","Q1","3.58","2.37" +"Biochar","2524-7972","2524-7867","('ENVIRONMENTAL SCIENCES', 'SOIL SCIENCE')","('SCIE', 'SCIE')","2,944","13.1","('Q1', 'Q1')","2.36","84.65" +"TRENDS IN IMMUNOLOGY","1471-4906","1471-4981","IMMUNOLOGY","('SCIE',)","16,454","13.1","Q1","1.38","39.91" +"Alzheimers & Dementia","1552-5260","1552-5279","CLINICAL NEUROLOGY","('SCIE',)","28,971","13.0","Q1","3.55","57.34" +"DRUGS","0012-6667","1179-1950","('PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE')","19,942","13.0","('Q1', 'Q1')","2.99","29.44" +"Journal of Ocean Engineering and Science","2468-0133","2468-0133","('ENGINEERING, MARINE', 'ENGINEERING, OCEAN')","('SCIE', 'SCIE')","2,204","13.0","('Q1', 'Q1')","2.36","97.28" +"Cell Discovery","","2056-5968","CELL BIOLOGY","('SCIE',)","5,607","13.0","Q1","1.93","99.60" +"Small","1613-6810","1613-6829","('CHEMISTRY, MULTIDISCIPLINARY', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","124,288","13.0","('Q1', 'Q1', 'Q1', 'Q1', 'Q1', 'Q1')","1.89","12.60" +"Energy & Environmental Materials","","2575-0356","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","6,740","13.0","Q1","1.86","38.34" +"Advances in Applied Energy","2666-7924","2666-7924","ENERGY & FUELS","('ESCI',)","1,594","13.0","Q1","1.72","94.37" +"TRENDS IN CELL BIOLOGY","0962-8924","1879-3088","CELL BIOLOGY","('SCIE',)","19,027","13.0","Q1","1.47","37.16" +"HEPATOLOGY","0270-9139","1527-3350","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","74,972","12.9","Q1","3.18","20.38" +"Nature Astronomy","2397-3366","2397-3366","ASTRONOMY & ASTROPHYSICS","('SCIE',)","10,009","12.9","Q1","2.78","13.10" +"Nature Chemical Biology","1552-4450","1552-4469","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","30,026","12.9","Q1","2.78","18.88" +"TECHNOLOGICAL FORECASTING AND SOCIAL CHANGE","0040-1625","1873-5509","('BUSINESS', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI')","50,363","12.9","('Q1', 'Q1')","2.60","25.16" +"Blood Cancer Journal","2044-5385","2044-5385","('HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","6,925","12.9","('Q1', 'Q1')","2.09","99.68" +"Med","2666-6340","2666-6340","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,673","12.8","Q1","3.87","79.49" +"JOURNAL OF THE AMERICAN ACADEMY OF DERMATOLOGY","0190-9622","1097-6787","DERMATOLOGY","('SCIE',)","36,661","12.8","Q1","3.65","15.81" +"JACC-Cardiovascular Imaging","1936-878X","1876-7591","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","16,404","12.8","('Q1', 'Q1')","3.43","71.73" +"BIOMATERIALS","0142-9612","1878-5905","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","111,643","12.8","('Q1', 'Q1')","2.52","22.66" +"Lancet HIV","2352-3018","2352-3018","('IMMUNOLOGY', 'INFECTIOUS DISEASES')","('SCIE', 'SCIE')","5,604","12.8","('Q1', 'Q1')","2.42","37.00" +"LEUKEMIA","0887-6924","1476-5551","('HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","31,578","12.8","('Q1', 'Q1')","2.12","54.56" +"TRENDS IN MOLECULAR MEDICINE","1471-4914","1471-499X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","13,325","12.8","('Q1', 'Q1', 'Q1')","1.43","33.03" +"Annual Review of Biomedical Engineering","1523-9829","1545-4274","ENGINEERING, BIOMEDICAL","('SCIE',)","5,430","12.8","Q1","1.16","88.24" +"JOURNAL OF PHOTOCHEMISTRY AND PHOTOBIOLOGY C-PHOTOCHEMISTRY REVIEWS","1389-5567","1873-2739","CHEMISTRY, PHYSICAL","('SCIE',)","4,604","12.8","Q1","1.14","16.67" +"COMPOSITES PART B-ENGINEERING","1359-8368","1879-1069","('ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, COMPOSITES')","('SCIE', 'SCIE')","75,964","12.7","('Q1', 'Q1')","3.03","14.71" +"ACS Central Science","2374-7943","2374-7951","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","18,783","12.7","Q1","2.72","72.39" +"JOURNAL OF EXPERIMENTAL MEDICINE","0022-1007","1540-9538","('IMMUNOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","63,828","12.6","('Q1', 'Q1')","2.93","96.68" +"ALLERGY","0105-4538","1398-9995","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","26,189","12.6","('Q1', 'Q1')","2.14","49.51" +"Nano Materials Science","2096-6482","2589-9651","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('ESCI', 'ESCI')","1,878","12.6","('Q1', 'Q1')","1.52","98.08" +"Annual Review of Nutrition","0199-9885","1545-4312","NUTRITION & DIETETICS","('SCIE',)","6,104","12.6","Q1","1.29","26.79" +"International Journal of Surgery","1743-9191","1743-9159","SURGERY","('SCIE',)","17,898","12.5","Q1","4.90","66.83" +"Analytic Methods in Accident Research","2213-6657","2213-6665","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TRANSPORTATION')","('SSCI', 'SSCI')","2,509","12.5","('Q1', 'Q1')","3.33","12.77" +"NATURE STRUCTURAL & MOLECULAR BIOLOGY","1545-9993","1545-9985","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CELL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","27,951","12.5","('Q1', 'Q1', 'Q1')","2.87","33.25" +"Communications in Transportation Research","2772-4247","2772-4247","('TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","610","12.5","('Q1', 'Q1')","2.71","85.94" +"Business Strategy and the Environment","0964-4733","1099-0836","('BUSINESS', 'ENVIRONMENTAL STUDIES', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","22,882","12.5","('Q1', 'Q1', 'Q1')","2.68","40.00" +"CANCER RESEARCH","0008-5472","1538-7445","ONCOLOGY","('SCIE',)","122,978","12.5","Q1","2.00","27.89" +"AGEING RESEARCH REVIEWS","1568-1637","1872-9649","('CELL BIOLOGY', 'GERIATRICS & GERONTOLOGY')","('SCIE', 'SCIE')","17,158","12.5","('Q1', 'Q1')","1.56","31.32" +"npj Digital Medicine","2398-6352","2398-6352","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE')","9,902","12.4","('Q1', 'Q1')","3.40","99.43" +"Theranostics","1838-7640","1838-7640","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","41,377","12.4","Q1","2.63","98.97" +"Resources Environment and Sustainability","2666-9161","2666-9161","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","919","12.4","('Q1', 'Q1', 'Q1')","1.71","94.29" +"AMERICAN PSYCHOLOGIST","0003-066X","1935-990X","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","34,832","12.3","Q1","5.13","8.06" +"Applied Computing and Informatics","2634-1964","2210-8327","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","983","12.3","Q1","4.59","94.23" +"npj Flexible Electronics","","2397-4621","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","3,116","12.3","('Q1', 'Q1')","2.38","99.46" +"Gut Microbes","1949-0976","1949-0984","('GASTROENTEROLOGY & HEPATOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","14,116","12.2","('Q1', 'Q1')","2.35","99.06" +"JOURNAL OF MANUFACTURING SYSTEMS","0278-6125","1878-6642","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","11,532","12.2","('Q1', 'Q1', 'Q1')","2.24","19.91" +"JOURNAL OF HAZARDOUS MATERIALS","0304-3894","1873-3336","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","210,090","12.2","('Q1', 'Q1')","1.85","9.02" +"Materials Horizons","2051-6347","2051-6355","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","19,038","12.2","('Q1', 'Q1')","1.78","13.78" +"Applied Mechanics Reviews","0003-6900","2379-0407","MECHANICS","('SCIE',)","5,224","12.2","Q1","1.09","3.23" +"CURRENT OPINION IN SOLID STATE & MATERIALS SCIENCE","1359-0286","1879-0348","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","5,275","12.2","('Q1', 'Q1', 'Q1')","0.97","40.43" +"RADIOLOGY","0033-8419","","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","59,748","12.1","Q1","5.35","1.07" +"SEMINARS IN CANCER BIOLOGY","1044-579X","1096-3650","ONCOLOGY","('SCIE',)","17,818","12.1","Q1","3.32","28.83" +"Nature Reviews Urology","1759-4812","1759-4820","UROLOGY & NEPHROLOGY","('SCIE',)","6,393","12.1","Q1","2.99","4.41" +"MOLECULAR THERAPY","1525-0016","1525-0024","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","27,549","12.1","('Q1', 'Q1', 'Q1')","2.88","87.77" +"Annual Review of Neuroscience","0147-006X","1545-4126","NEUROSCIENCES","('SCIE',)","13,145","12.1","Q1","1.87","33.33" +"Annual Review of Biochemistry","0066-4154","1545-4509","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","21,005","12.1","Q1","1.71","29.49" +"BIOTECHNOLOGY ADVANCES","0734-9750","1873-1899","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","24,510","12.1","Q1","1.60","28.07" +"Nature Computational Science","","2662-8457","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, THEORY & METHODS', 'MULTIDISCIPLINARY SCIENCES')","('ESCI', 'ESCI', 'ESCI')","1,941","12.0","('Q1', 'Q1', 'Q1')","2.72","24.88" +"JACC: CardioOncology","2666-0873","2666-0873","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'ONCOLOGY')","('SCIE', 'SCIE')","1,975","12.0","('Q1', 'Q1')","2.12","90.28" +"PHARMACOLOGY & THERAPEUTICS","0163-7258","1879-016X","PHARMACOLOGY & PHARMACY","('SCIE',)","23,307","12.0","Q1","1.93","26.94" +"Materials Futures","","2752-5724","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","673","12.0","Q1","1.43","96.30" +"COMPREHENSIVE REVIEWS IN FOOD SCIENCE AND FOOD SAFETY","1541-4337","1541-4337","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","18,401","12.0","Q1","1.40","18.86" +"Journal of Hospitality Marketing & Management","1936-8623","1936-8631","('BUSINESS', 'HOSPITALITY, LEISURE, SPORT & TOURISM', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","4,066","11.9","('Q1', 'Q1', 'Q1')","2.51","5.52" +"Applied Physics Reviews","1931-9401","1931-9401","PHYSICS, APPLIED","('SCIE',)","10,761","11.9","Q1","1.54","34.86" +"GigaScience","2047-217X","2047-217X","MULTIDISCIPLINARY SCIENCES","('SCIE',)","9,724","11.8","Q1","2.17","95.92" +"TRAC-TRENDS IN ANALYTICAL CHEMISTRY","0165-9936","1879-3142","CHEMISTRY, ANALYTICAL","('SCIE',)","32,283","11.8","Q1","1.33","17.22" +"Energy Materials","","2770-5900","('ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","851","11.8","('Q1', 'Q1')","1.21","99.12" +"International Journal of Mining Science and Technology","2095-2686","2212-6066","MINING & MINERAL PROCESSING","('SCIE',)","7,723","11.7","Q1","3.95","97.61" +"Qualitative Psychology","2326-3601","2326-3598","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","1,639","11.7","Q1","3.84","0.00" +"JACC-Cardiovascular Interventions","1936-8798","1876-7605","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","17,069","11.7","Q1","2.79","66.94" +"IEEE TRANSACTIONS ON EVOLUTIONARY COMPUTATION","1089-778X","1941-0026","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","22,295","11.7","('Q1', 'Q1')","2.77","10.88" +"Science Advances","2375-2548","2375-2548","MULTIDISCIPLINARY SCIENCES","('SCIE',)","147,104","11.7","Q1","2.76","65.17" +"IEEE Transactions on Industrial Informatics","1551-3203","1941-0050","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, INDUSTRIAL')","('SCIE', 'SCIE', 'SCIE')","52,567","11.7","('Q1', 'Q1', 'Q1')","2.58","4.76" +"Cell Reports Medicine","2666-3791","2666-3791","('CELL BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","5,610","11.7","('Q1', 'Q1')","2.57","93.57" +"NEW ASTRONOMY REVIEWS","1387-6473","1872-9630","ASTRONOMY & ASTROPHYSICS","('SCIE',)","1,410","11.7","Q1","2.16","55.56" +"Annual Review of Physical Chemistry","0066-426X","1545-1593","CHEMISTRY, PHYSICAL","('SCIE',)","8,369","11.7","Q1","0.84","37.50" +"BRITISH JOURNAL OF SPORTS MEDICINE","0306-3674","1473-0480","SPORT SCIENCES","('SCIE',)","31,455","11.6","Q1","4.34","29.32" +"Physical Review X","2160-3308","2160-3308","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","27,528","11.6","Q1","3.24","98.92" +"Clinical Gastroenterology and Hepatology","1542-3565","1542-7714","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","28,542","11.6","Q1","2.78","28.88" +"INTERNATIONAL JOURNAL OF COMPUTER VISION","0920-5691","1573-1405","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","25,502","11.6","Q1","2.69","22.91" +"Liver Cancer","2235-1795","1664-5553","('GASTROENTEROLOGY & HEPATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","3,158","11.6","('Q1', 'Q1')","2.27","100.00" +"TRENDS IN BIOCHEMICAL SCIENCES","0968-0004","1362-4326","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","19,707","11.6","Q1","1.35","39.45" +"JAMA Dermatology","2168-6068","2168-6084","DERMATOLOGY","('SCIE',)","9,976","11.5","Q1","3.79","10.28" +"JOURNAL OF ECONOMIC LITERATURE","0022-0515","2328-8175","ECONOMICS","('SSCI',)","12,175","11.5","Q1","3.67","0.00" +"ENDOSCOPY","0013-726X","1438-8812","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","13,895","11.5","('Q1', 'Q1')","3.12","14.63" +"Industrial and Organizational Psychology-Perspectives on Science and Practice","1754-9426","1754-9434","PSYCHOLOGY, APPLIED","('SSCI',)","1,864","11.5","Q1","3.07","30.77" +"GENOMICS PROTEOMICS & BIOINFORMATICS","1672-0229","2210-3244","GENETICS & HEREDITY","('SCIE',)","5,439","11.5","Q1","2.58","93.94" +"Blood Cancer Discovery","2643-3230","2643-3249","('HEMATOLOGY', 'ONCOLOGY')","('ESCI', 'ESCI')","1,059","11.5","('Q1', 'Q1')","2.55","35.48" +"JOURNAL OF MARKETING","0022-2429","1547-7185","BUSINESS","('SSCI',)","27,613","11.5","Q1","2.33","21.15" +"Chem Catalysis","2667-1093","2667-1093","CHEMISTRY, PHYSICAL","('ESCI',)","3,477","11.5","Q1","1.34","67.14" +"PROGRESS IN AEROSPACE SCIENCES","0376-0421","1873-1724","ENGINEERING, AEROSPACE","('SCIE',)","6,746","11.5","Q1","1.30","33.68" +"Progress in Energy","","2516-1083","ENERGY & FUELS","('ESCI',)","750","11.5","Q1","0.65","60.00" +"Arthritis & Rheumatology","2326-5191","2326-5205","RHEUMATOLOGY","('SCIE',)","19,425","11.4","Q1","3.32","31.48" +"JOURNAL OF ALLERGY AND CLINICAL IMMUNOLOGY","0091-6749","1097-6825","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","58,005","11.4","('Q1', 'Q1')","2.64","37.85" +"Journal of Advanced Research","2090-1232","2090-1224","MULTIDISCIPLINARY SCIENCES","('SCIE',)","10,834","11.4","Q1","2.63","96.59" +"JOURNAL OF EXPERIMENTAL & CLINICAL CANCER RESEARCH","","1756-9966","ONCOLOGY","('SCIE',)","24,723","11.4","Q1","2.34","99.89" +"WATER RESEARCH","0043-1354","1879-2448","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","139,373","11.4","('Q1', 'Q1', 'Q1')","2.14","20.28" +"TRENDS IN ENDOCRINOLOGY AND METABOLISM","1043-2760","1879-3061","ENDOCRINOLOGY & METABOLISM","('SCIE',)","12,130","11.4","Q1","1.57","30.48" +"Annual Review of Cell and Developmental Biology","1081-0706","1530-8995","('CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY')","('SCIE', 'SCIE')","9,955","11.4","('Q1', 'Q1')","1.27","32.76" +"CRITICAL REVIEWS IN ENVIRONMENTAL SCIENCE AND TECHNOLOGY","1064-3389","1547-6537","ENVIRONMENTAL SCIENCES","('SCIE',)","11,997","11.4","Q1","0.85","14.49" +"ENDOCRINE PATHOLOGY","1046-3976","1559-0097","('ENDOCRINOLOGY & METABOLISM', 'PATHOLOGY')","('SCIE', 'SCIE')","2,232","11.3","('Q1', 'Q1')","3.04","31.30" +"ACS Catalysis","2155-5435","2155-5435","CHEMISTRY, PHYSICAL","('SCIE',)","130,342","11.3","Q1","1.70","10.79" +"Annual Review of Earth and Planetary Sciences","0084-6597","1545-4495","('ASTRONOMY & ASTROPHYSICS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","10,278","11.3","('Q1', 'Q1')","1.47","41.10" +"Earth System Science Data","1866-3508","1866-3516","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","14,561","11.2","('Q1', 'Q1')","2.60","99.63" +"Journal of Materials Science & Technology","1005-0302","1941-1162","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","43,625","11.2","('Q1', 'Q1')","2.53","3.65" +"Annual Review of Control Robotics and Autonomous Systems","","2573-5144","('AUTOMATION & CONTROL SYSTEMS', 'ROBOTICS')","('SCIE', 'SCIE')","1,722","11.2","('Q1', 'Q1')","2.21","30.99" +"Annual Review of Pharmacology and Toxicology","0362-1642","1545-4304","('PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE')","8,212","11.2","('Q1', 'Q1')","2.12","33.66" +"Journal of Business Logistics","0735-3766","2158-1592","MANAGEMENT","('SSCI',)","3,511","11.2","Q1","1.96","35.00" +"SLEEP MEDICINE REVIEWS","1087-0792","1532-2955","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","13,516","11.2","('Q1', 'Q1')","1.79","29.31" +"RESOURCES CONSERVATION AND RECYCLING","0921-3449","1879-0658","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","47,249","11.2","('Q1', 'Q1')","1.63","28.10" +"Annual Review of Ecology Evolution and Systematics","1543-592X","1545-2069","('ECOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE')","20,565","11.2","('Q1', 'Q1')","1.29","29.58" +"COMMUNICATIONS OF THE ACM","0001-0782","1557-7317","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","30,253","11.1","('Q1', 'Q1', 'Q1')","5.86","4.07" +"QUARTERLY JOURNAL OF ECONOMICS","0033-5533","1531-4650","ECONOMICS","('SSCI',)","40,042","11.1","Q1","4.23","13.86" +"TECHNOVATION","0166-4972","1879-2383","('ENGINEERING, INDUSTRIAL', 'MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SSCI', 'SCIE')","11,239","11.1","('Q1', 'Q1', 'Q1')","2.47","35.46" +"Cell Genomics","2666-979X","2666-979X","('CELL BIOLOGY', 'GENETICS & HEREDITY')","('ESCI', 'ESCI')","1,230","11.1","('Q1', 'Q1')","2.37","92.42" +"REMOTE SENSING OF ENVIRONMENT","0034-4257","1879-0704","('ENVIRONMENTAL SCIENCES', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE')","86,104","11.1","('Q1', 'Q1', 'Q1')","2.35","54.85" +"Trends in Environmental Analytical Chemistry","2214-1588","2214-1588","('CHEMISTRY, ANALYTICAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","1,886","11.1","('Q1', 'Q1')","1.87","14.41" +"Small Science","2688-4046","2688-4046","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('ESCI', 'ESCI')","2,046","11.1","('Q1', 'Q1')","1.31","87.91" +"Polymer Reviews","1558-3724","1558-3716","POLYMER SCIENCE","('SCIE',)","3,413","11.1","Q1","0.84","14.49" +"Statistics Surveys","1935-7516","1935-7516","STATISTICS & PROBABILITY","('ESCI',)","768","11.0","Q1","6.25","93.75" +"BRITISH JOURNAL OF DERMATOLOGY","0007-0963","1365-2133","DERMATOLOGY","('SCIE',)","30,809","11.0","Q1","3.59","41.45" +"BIOLOGICAL REVIEWS","1464-7931","1469-185X","BIOLOGY","('SCIE',)","19,544","11.0","Q1","2.93","47.09" +"MOLECULAR BIOLOGY AND EVOLUTION","0737-4038","1537-1719","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","62,418","11.0","('Q1', 'Q1', 'Q1')","2.47","95.42" +"Journal of Retailing and Consumer Services","0969-6989","1873-1384","BUSINESS","('SSCI',)","24,102","11.0","Q1","2.35","14.67" +"FOOD HYDROCOLLOIDS","0268-005X","1873-7137","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","72,242","11.0","('Q1', 'Q1')","2.16","14.35" +"Tourism Management","0261-5177","1879-3193","('ENVIRONMENTAL STUDIES', 'HOSPITALITY, LEISURE, SPORT & TOURISM', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","32,404","10.9","('Q1', 'Q1', 'Q1')","2.81","15.57" +"IEEE WIRELESS COMMUNICATIONS","1536-1284","1558-0687","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","10,423","10.9","('Q1', 'Q1', 'Q1', 'Q1')","2.64","0.00" +"CLINICAL MICROBIOLOGY AND INFECTION","1198-743X","1469-0691","('INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE')","27,311","10.9","('Q1', 'Q1')","2.56","62.13" +"Sustainable Production and Consumption","2352-5509","2352-5509","('ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SSCI', 'SCIE, SSCI')","12,218","10.9","('Q1', 'Q1')","2.19","26.12" +"CEMENT AND CONCRETE RESEARCH","0008-8846","1873-3948","('CONSTRUCTION & BUILDING TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","67,048","10.9","('Q1', 'Q1')","2.03","34.30" +"MEDICINAL RESEARCH REVIEWS","0198-6325","1098-1128","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","8,632","10.9","('Q1', 'Q1')","1.65","17.93" +"International Journal of Oral Science","1674-2818","2049-3169","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","3,639","10.8","Q1","5.61","100.00" +"SIAM REVIEW","0036-1445","1095-7200","MATHEMATICS, APPLIED","('SCIE',)","11,010","10.8","Q1","4.80","7.23" +"ISME Journal","1751-7362","1751-7370","('ECOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","38,872","10.8","('Q1', 'Q1')","2.70","69.46" +"GLOBAL CHANGE BIOLOGY","1354-1013","1365-2486","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE')","68,820","10.8","('Q1', 'Q1', 'Q1')","2.50","39.19" +"Translational Neurodegeneration","2047-9158","2047-9158","NEUROSCIENCES","('SCIE',)","3,458","10.8","Q1","2.19","100.00" +"METABOLISM-CLINICAL AND EXPERIMENTAL","0026-0495","1532-8600","ENDOCRINOLOGY & METABOLISM","('SCIE',)","19,450","10.8","Q1","2.18","25.55" +"IEEE TRANSACTIONS ON IMAGE PROCESSING","1057-7149","1941-0042","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","74,755","10.8","('Q1', 'Q1')","2.00","5.32" +"EARTH-SCIENCE REVIEWS","0012-8252","1872-6828","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","36,702","10.8","Q1","1.93","32.05" +"CEMENT & CONCRETE COMPOSITES","0958-9465","1873-393X","('CONSTRUCTION & BUILDING TECHNOLOGY', 'MATERIALS SCIENCE, COMPOSITES')","('SCIE', 'SCIE')","41,378","10.8","('Q1', 'Q1')","1.85","16.24" +"ENVIRONMENTAL SCIENCE & TECHNOLOGY","0013-936X","1520-5851","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","239,936","10.8","('Q1', 'Q1')","1.56","13.80" +"ACTA PHYSICO-CHIMICA SINICA","1000-6818","","CHEMISTRY, PHYSICAL","('SCIE',)","5,902","10.8","Q1","1.13","0.00" +"IEEE TRANSACTIONS ON FUZZY SYSTEMS","1063-6706","1941-0034","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","25,484","10.7","('Q1', 'Q1')","2.95","12.05" +"MEDICAL IMAGE ANALYSIS","1361-8415","1361-8423","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, BIOMEDICAL', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","20,810","10.7","('Q1', 'Q1', 'Q1', 'Q1')","2.43","36.77" +"DEVELOPMENTAL CELL","1534-5807","1878-1551","('CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY')","('SCIE', 'SCIE')","33,248","10.7","('Q1', 'Q1')","2.40","80.45" +"BIOSENSORS & BIOELECTRONICS","0956-5663","1873-4235","('BIOPHYSICS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CHEMISTRY, ANALYTICAL', 'ELECTROCHEMISTRY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","74,792","10.7","('Q1', 'Q1', 'Q1', 'Q1', 'Q1')","2.37","13.95" +"Carbohydrate Polymers","0144-8617","1879-1344","('CHEMISTRY, APPLIED', 'CHEMISTRY, ORGANIC', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","131,393","10.7","('Q1', 'Q1', 'Q1')","2.34","12.22" +"Asian Journal of Pharmaceutical Sciences","1818-0876","1818-0876","PHARMACOLOGY & PHARMACY","('SCIE',)","4,319","10.7","Q1","2.14","95.51" +"Redox Biology","2213-2317","2213-2317","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","28,038","10.7","Q1","2.07","95.73" +"MedComm","","2688-2663","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,737","10.7","Q1","1.67","81.39" +"Green Energy & Environment","2096-2797","2468-0257","('CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,270","10.7","('Q1', 'Q1', 'Q1', 'Q1')","1.65","93.39" +"ARTIFICIAL INTELLIGENCE REVIEW","0269-2821","1573-7462","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","13,051","10.7","Q1","1.62","17.13" +"Journal of Materials Chemistry A","2050-7488","2050-7496","('CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","211,134","10.7","('Q1', 'Q1', 'Q1')","1.59","10.24" +"EcoMat","","2567-3173","('CHEMISTRY, PHYSICAL', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","2,935","10.7","('Q1', 'Q1', 'Q1')","1.49","91.20" +"Small Methods","2366-9608","2366-9608","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","17,178","10.7","('Q1', 'Q1', 'Q1')","1.30","16.90" +"BRAIN","0006-8950","1460-2156","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","60,668","10.6","('Q1', 'Q1')","3.32","51.94" +"ISPRS JOURNAL OF PHOTOGRAMMETRY AND REMOTE SENSING","0924-2716","1872-8235","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","26,847","10.6","('Q1', 'Q1', 'Q1', 'Q1')","2.62","31.52" +"JOURNAL OF NANOBIOTECHNOLOGY","","1477-3155","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","19,684","10.6","('Q1', 'Q1')","1.71","99.79" +"Molecular Horticulture","2730-9401","2730-9401","('HORTICULTURE', 'PLANT SCIENCES')","('ESCI', 'ESCI')","325","10.6","('Q1', 'Q1')","1.58","100.00" +"Annual Review of Food Science and Technology","1941-1413","1941-1421","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","3,751","10.6","Q1","1.31","32.86" +"Annual Review of Materials Research","1531-7331","1545-4118","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","8,347","10.6","Q1","0.60","33.90" +"AMERICAN ECONOMIC REVIEW","0002-8282","1944-7981","ECONOMICS","('SSCI',)","73,392","10.5","Q1","3.68","0.00" +"Perspectives on Psychological Science","1745-6916","1745-6924","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","16,431","10.5","Q1","3.67","30.35" +"JAMA Network Open","2574-3805","2574-3805","MEDICINE, GENERAL & INTERNAL","('SCIE',)","58,150","10.5","Q1","2.77","99.91" +"International Journal of Transgender Health","2689-5269","2689-5277","('PSYCHOLOGY, CLINICAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SCIE, SSCI', 'SSCI', 'SSCI')","1,261","10.5","('Q1', 'Q1', 'Q1', 'Q1')","2.59","34.09" +"PLOS MEDICINE","1549-1277","1549-1676","MEDICINE, GENERAL & INTERNAL","('SCIE',)","42,360","10.5","Q1","2.48","99.53" +"Journal of Business Research","0148-2963","1873-7978","BUSINESS","('SSCI',)","75,004","10.5","Q1","2.19","21.99" +"JOURNAL OF CONTROLLED RELEASE","0168-3659","1873-4995","('CHEMISTRY, MULTIDISCIPLINARY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","66,109","10.5","('Q1', 'Q1')","2.10","22.04" +"Sustainable Cities and Society","2210-6707","2210-6715","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","40,549","10.5","('Q1', 'Q1', 'Q1')","1.92","16.71" +"Cyborg and Bionic Systems","","2692-7632","('ENGINEERING, BIOMEDICAL', 'ROBOTICS')","('ESCI', 'ESCI')","668","10.5","('Q1', 'Q1')","1.83","87.76" +"CARBON","0008-6223","1873-3891","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","98,620","10.5","('Q1', 'Q1')","1.78","16.08" +"ANNALS OF TOURISM RESEARCH","0160-7383","1873-7722","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'SOCIOLOGY')","('SSCI', 'SSCI')","17,807","10.4","('Q1', 'Q1')","3.46","29.41" +"Genome Medicine","1756-994X","1756-994X","GENETICS & HEREDITY","('SCIE',)","12,032","10.4","Q1","2.99","100.00" +"JOURNAL OF FINANCIAL ECONOMICS","0304-405X","","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","51,933","10.4","('Q1', 'Q1')","2.96","10.81" +"Journal of Industrial Information Integration","2467-964X","2452-414X","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, INDUSTRIAL')","('SCIE', 'SCIE')","2,955","10.4","('Q1', 'Q1')","2.36","20.45" +"Pulmonology","2531-0437","2531-0437","RESPIRATORY SYSTEM","('SCIE',)","1,384","10.4","Q1","2.10","97.46" +"Annual Review of Biophysics","1936-122X","1936-1238","BIOPHYSICS","('SCIE',)","3,805","10.4","Q1","2.08","38.36" +"Science China-Chemistry","1674-7291","1869-1870","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","11,783","10.4","Q1","1.51","1.24" +"npj Clean Water","2059-7037","2059-7037","('ENGINEERING, CHEMICAL', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","2,563","10.4","('Q1', 'Q1', 'Q1')","1.47","99.46" +"Carbon Capture Science & Technology","2772-6568","2772-6568","('ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","878","10.4","('Q1', 'Q1', 'Q1')","1.17","93.66" +"JOURNAL OF THE AMERICAN SOCIETY OF NEPHROLOGY","1046-6673","1533-3450","UROLOGY & NEPHROLOGY","('SCIE',)","40,638","10.3","Q1","4.18","5.43" +"JACC-Heart Failure","2213-1779","2213-1787","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","8,056","10.3","Q1","3.03","61.20" +"Journal for ImmunoTherapy of Cancer","","2051-1426","('IMMUNOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","26,773","10.3","('Q1', 'Q1')","2.01","98.98" +"Additive Manufacturing","2214-8604","2214-7810","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","38,388","10.3","('Q1', 'Q1')","1.95","34.84" +"ENVIRONMENT INTERNATIONAL","0160-4120","1873-6750","ENVIRONMENTAL SCIENCES","('SCIE',)","62,853","10.3","Q1","1.90","96.98" +"IEEE Computational Intelligence Magazine","1556-603X","1556-6048","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","2,957","10.3","Q1","1.76","0.00" +"CARDIOVASCULAR RESEARCH","0008-6363","1755-3245","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","26,702","10.2","Q1","2.62","37.85" +"IEEE Transactions on Neural Networks and Learning Systems","2162-237X","2162-2388","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","60,491","10.2","('Q1', 'Q1', 'Q1', 'Q1')","2.40","4.86" +"Journal of Supply Chain Management","1523-2409","1745-493X","MANAGEMENT","('SSCI',)","3,595","10.2","Q1","2.10","49.02" +"Virtual and Physical Prototyping","1745-2759","1745-2767","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","3,479","10.2","('Q1', 'Q1')","1.86","74.12" +"NATURAL PRODUCT REPORTS","0265-0568","1460-4752","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE', 'SCIE')","12,999","10.2","('Q1', 'Q1', 'Q1')","1.47","24.43" +"Journal of High Energy Astrophysics","2214-4048","2214-4056","ASTRONOMY & ASTROPHYSICS","('SCIE',)","1,071","10.2","Q1","1.29","51.69" +"TECHNOLOGY IN SOCIETY","0160-791X","1879-3274","('SOCIAL ISSUES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","11,837","10.1","('Q1', 'Q1')","4.74","22.11" +"Engineering","2095-8099","2096-0026","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","10,178","10.1","Q1","2.83","93.60" +"GENOME BIOLOGY","1474-760X","1474-760X","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","67,264","10.1","('Q1', 'Q1')","2.78","99.41" +"EDUCATIONAL PSYCHOLOGY REVIEW","1040-726X","1573-336X","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","10,009","10.1","Q1","2.49","48.65" +"ENVIRONMENTAL HEALTH PERSPECTIVES","0091-6765","1552-9924","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","39,172","10.1","('Q1', 'Q1', 'Q1')","2.41","88.74" +"Facta Universitatis-Series Mechanical Engineering","0354-2025","2335-0164","ENGINEERING, MECHANICAL","('SCIE',)","1,372","10.1","Q1","2.40","100.00" +"European Review of Social Psychology","1046-3283","1479-277X","PSYCHOLOGY, SOCIAL","('SSCI',)","2,614","10.1","Q1","2.38","57.14" +"PLANT BIOTECHNOLOGY JOURNAL","1467-7644","1467-7652","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","18,272","10.1","('Q1', 'Q1')","2.34","77.93" +"AMERICAN JOURNAL OF HEMATOLOGY","0361-8609","1096-8652","HEMATOLOGY","('SCIE',)","15,828","10.1","Q1","1.83","29.12" +"JOURNAL OF PRODUCT INNOVATION MANAGEMENT","0737-6782","1540-5885","('BUSINESS', 'ENGINEERING, INDUSTRIAL', 'MANAGEMENT')","('SSCI', 'SCIE', 'SSCI')","8,894","10.1","('Q1', 'Q1', 'Q1')","1.66","59.38" +"APPLIED ENERGY","0306-2619","1872-9118","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","156,119","10.1","('Q1', 'Q1')","1.62","22.94" +"FEMS MICROBIOLOGY REVIEWS","0168-6445","1574-6976","MICROBIOLOGY","('SCIE',)","16,012","10.1","Q1","1.26","50.51" +"Mycosphere","2077-7000","2077-7019","MYCOLOGY","('SCIE',)","2,198","10.0","Q1","4.50","95.77" +"CLINICAL CANCER RESEARCH","1078-0432","1557-3265","ONCOLOGY","('SCIE',)","93,684","10.0","Q1","2.57","30.05" +"PLANT CELL","1040-4651","1532-298X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","60,657","10.0","('Q1', 'Q1', 'Q1')","2.23","39.09" +"Materials Today Physics","2542-5293","2542-5293","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","8,642","10.0","('Q1', 'Q1')","2.08","12.58" +"FRONTIERS IN ECOLOGY AND THE ENVIRONMENT","1540-9295","1540-9309","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","12,936","10.0","('Q1', 'Q1')","1.88","55.09" +"Advanced Healthcare Materials","2192-2640","2192-2659","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","33,225","10.0","('Q1', 'Q1', 'Q1')","1.34","20.03" +"Eurosurveillance","1025-496X","1560-7917","INFECTIOUS DISEASES","('SCIE',)","13,064","9.9","Q1","3.85","95.85" +"International Journal of Hospitality Management","0278-4319","1873-4693","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","21,937","9.9","Q1","2.74","9.20" +"SUSTAINABLE DEVELOPMENT","0968-0802","1099-1719","('DEVELOPMENT STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI', 'SSCI')","9,681","9.9","('Q1', 'Q1', 'Q1')","2.40","30.09" +"Journal of Econometrics","0304-4076","1872-6895","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SCIE', 'SSCI')","29,126","9.9","('Q1', 'Q1', 'Q1')","2.38","21.26" +"JNCI-Journal of the National Cancer Institute","0027-8874","1460-2105","ONCOLOGY","('SCIE',)","34,479","9.9","Q1","2.15","31.79" +"ENERGY CONVERSION AND MANAGEMENT","0196-8904","1879-2227","('ENERGY & FUELS', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","103,106","9.9","('Q1', 'Q1', 'Q1')","1.97","14.45" +"Advanced Industrial and Engineering Polymer Research","2542-5048","2542-5048","('MATERIALS SCIENCE, COMPOSITES', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'POLYMER SCIENCE')","('ESCI', 'ESCI', 'ESCI')","1,414","9.9","('Q1', 'Q1', 'Q1')","1.30","78.05" +"Family Business Review","0894-4865","1741-6248","BUSINESS","('SSCI',)","4,788","9.9","Q1","1.09","29.27" +"SOIL BIOLOGY & BIOCHEMISTRY","0038-0717","1879-3428","SOIL SCIENCE","('SCIE',)","55,045","9.8","Q1","2.29","31.63" +"Environmental Impact Assessment Review","0195-9255","1873-6432","ENVIRONMENTAL STUDIES","('SSCI',)","10,187","9.8","Q1","2.17","13.68" +"INTERNATIONAL JOURNAL OF PRODUCTION ECONOMICS","0925-5273","1873-7579","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","33,962","9.8","('Q1', 'Q1', 'Q1')","2.01","17.58" +"JOURNAL OF SERVICE RESEARCH","1094-6705","1552-7379","BUSINESS","('SSCI',)","7,619","9.8","Q1","1.97","45.69" +"Laser & Photonics Reviews","1863-8880","1863-8899","('OPTICS', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","15,486","9.8","('Q1', 'Q1', 'Q1')","1.97","18.09" +"Global Food Security-Agriculture Policy Economics and Environment","2211-9124","2211-9124","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","6,257","9.8","Q1","1.85","61.20" +"Annual Review of Political Science","1094-2939","1545-1577","POLITICAL SCIENCE","('SSCI',)","6,426","9.7","Q1","4.85","83.56" +"Journal of Physiotherapy","1836-9553","1836-9561","('ORTHOPEDICS', 'REHABILITATION')","('SCIE', 'SCIE')","2,921","9.7","('Q1', 'Q1')","3.01","97.30" +"Journal of Sport and Health Science","2095-2546","2213-2961","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'SPORT SCIENCES')","('SSCI', 'SCIE')","4,360","9.7","('Q1', 'Q1')","2.88","98.54" +"EBioMedicine","2352-3964","2352-3964","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","26,905","9.7","Q1","2.48","77.56" +"Radiologia Medica","0033-8362","1826-6983","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","5,683","9.7","Q1","2.42","38.33" +"BIORESOURCE TECHNOLOGY","0960-8524","1873-2976","('AGRICULTURAL ENGINEERING', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENERGY & FUELS')","('SCIE', 'SCIE', 'SCIE')","167,707","9.7","('Q1', 'Q1', 'Q1')","1.76","9.18" +"Journal of Cleaner Production","0959-6526","1879-1786","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","317,153","9.7","('Q1', 'Q1', 'Q1')","1.52","14.15" +"BIOCHIMICA ET BIOPHYSICA ACTA-REVIEWS ON CANCER","0304-419X","1879-2561","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'ONCOLOGY')","('SCIE', 'SCIE', 'SCIE')","9,799","9.7","('Q1', 'Q1', 'Q1')","1.33","22.22" +"ARCHIVES OF COMPUTATIONAL METHODS IN ENGINEERING","1134-3060","1886-1784","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE', 'SCIE')","8,304","9.7","('Q1', 'Q1', 'Q1')","1.27","15.15" +"VIEW","2688-3988","2688-268X","('MATERIALS SCIENCE, BIOMATERIALS', 'NANOSCIENCE & NANOTECHNOLOGY')","('ESCI', 'ESCI')","1,582","9.7","('Q1', 'Q1')","0.72","87.64" +"Educational Research Review","1747-938X","1878-0385","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","6,009","9.6","Q1","3.14","47.37" +"EClinicalMedicine","","2589-5370","MEDICINE, GENERAL & INTERNAL","('SCIE',)","13,947","9.6","Q1","2.58","78.40" +"MOLECULAR PSYCHIATRY","1359-4184","1476-5578","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","34,241","9.6","('Q1', 'Q1', 'Q1')","2.26","51.69" +"Biological Psychiatry","0006-3223","1873-2402","('NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE')","40,061","9.6","('Q1', 'Q1')","2.25","39.23" +"IEEE Transactions on Affective Computing","1949-3045","1949-3045","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, CYBERNETICS')","('SCIE', 'SCIE')","7,840","9.6","('Q1', 'Q1')","2.25","10.98" +"AMERICAN JOURNAL OF PUBLIC HEALTH","0090-0036","1541-0048","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","43,406","9.6","Q1","1.92","0.00" +"Journal of Research in Interactive Marketing","2040-7122","2040-7130","BUSINESS","('SSCI',)","2,466","9.6","Q1","1.91","2.99" +"AUTOMATION IN CONSTRUCTION","0926-5805","1872-7891","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","31,904","9.6","('Q1', 'Q1')","1.85","18.25" +"NANO LETTERS","1530-6984","1530-6992","('CHEMISTRY, MULTIDISCIPLINARY', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","159,730","9.6","('Q1', 'Q1', 'Q1', 'Q1', 'Q1', 'Q1')","1.76","10.53" +"ACS Materials Letters","","2639-4979","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","8,571","9.6","Q1","1.59","5.52" +"CANCER TREATMENT REVIEWS","0305-7372","1532-1967","ONCOLOGY","('SCIE',)","12,161","9.6","Q1","1.49","35.71" +"RARE METALS","1001-0521","1867-7185","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","11,256","9.6","('Q1', 'Q1')","1.42","0.77" +"Energy and AI","2666-5468","2666-5468","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENERGY & FUELS')","('ESCI', 'ESCI')","1,931","9.6","('Q1', 'Q1')","1.31","99.60" +"CLINICAL NUCLEAR MEDICINE","0363-9762","1536-0229","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","6,483","9.6","Q1","1.16","16.36" +"Autism in Adulthood","2573-9581","2573-959X","('PSYCHOLOGY, DEVELOPMENTAL', 'REHABILITATION')","('ESCI', 'ESCI')","1,241","9.5","('Q1', 'Q1')","2.98","9.56" +"PERSOONIA","0031-5850","","MYCOLOGY","('SCIE',)","2,892","9.5","Q1","2.55","100.00" +"ACADEMY OF MANAGEMENT JOURNAL","0001-4273","1948-0989","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","47,035","9.5","('Q1', 'Q1')","2.30","0.00" +"CHEST","0012-3692","1931-3543","('CRITICAL CARE MEDICINE', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","51,443","9.5","('Q1', 'Q1')","2.06","22.10" +"JOURNAL OF THE ACADEMY OF MARKETING SCIENCE","0092-0703","1552-7824","BUSINESS","('SSCI',)","20,870","9.5","Q1","2.04","33.82" +"JHEP Reports","","2589-5559","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,525","9.5","Q1","2.00","79.32" +"Journal of Family Business Strategy","1877-8585","1877-8593","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","2,675","9.5","('Q1', 'Q1')","1.99","23.33" +"Current Obesity Reports","2162-4968","2162-4968","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","3,471","9.5","('Q1', 'Q1')","1.94","41.07" +"JAMA Health Forum","2689-0186","2689-0186","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI', 'ESCI')","2,220","9.5","('Q1', 'Q1', 'Q1')","1.80","99.64" +"EXPERIMENTAL AND MOLECULAR MEDICINE","1226-3613","2092-6413","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","15,135","9.5","('Q1', 'Q1')","1.72","99.82" +"Biomarker Research","","2050-7771","('MEDICINE, RESEARCH & EXPERIMENTAL', 'ONCOLOGY')","('SCIE', 'SCIE')","3,399","9.5","('Q1', 'Q1')","1.55","100.00" +"Nano Research","1998-0124","1998-0000","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","43,765","9.5","('Q1', 'Q1', 'Q1', 'Q1')","1.54","2.84" +"TRANSPORT REVIEWS","0144-1647","1464-5327","TRANSPORTATION","('SSCI',)","5,371","9.5","Q1","1.51","53.66" +"AMERICAN JOURNAL OF KIDNEY DISEASES","0272-6386","1523-6838","UROLOGY & NEPHROLOGY","('SCIE',)","24,747","9.4","Q1","3.53","28.54" +"IEEE SIGNAL PROCESSING MAGAZINE","1053-5888","1558-0792","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","15,572","9.4","Q1","3.16","5.47" +"Nature Cardiovascular Research","","2731-0590","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","916","9.4","Q1","2.75","40.94" +"JOURNAL OF APPLIED PSYCHOLOGY","0021-9010","1939-1854","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","51,849","9.4","('Q1', 'Q1')","2.66","2.04" +"MONOGRAPHS OF THE SOCIETY FOR RESEARCH IN CHILD DEVELOPMENT","0037-976X","1540-5834","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","2,236","9.4","Q1","2.58","55.56" +"PROCEEDINGS OF THE NATIONAL ACADEMY OF SCIENCES OF THE UNITED STATES OF AMERICA","0027-8424","1091-6490","MULTIDISCIPLINARY SCIENCES","('SCIE',)","730,197","9.4","Q1","2.39","77.30" +"Journal of International Financial Management & Accounting","0954-1314","1467-646X","BUSINESS, FINANCE","('SSCI',)","1,067","9.4","Q1","2.38","21.31" +"CANADIAN MEDICAL ASSOCIATION JOURNAL","0820-3946","1488-2329","MEDICINE, GENERAL & INTERNAL","('SCIE',)","18,285","9.4","Q1","2.33","96.44" +"INTERNATIONAL JOURNAL OF PLASTICITY","0749-6419","1879-2154","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","19,968","9.4","('Q1', 'Q1', 'Q1')","2.32","21.12" +"Journal of Rock Mechanics and Geotechnical Engineering","1674-7755","2589-0417","ENGINEERING, GEOLOGICAL","('SCIE',)","8,325","9.4","Q1","2.27","94.93" +"IEEE Transactions on Cybernetics","2168-2267","2168-2275","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, CYBERNETICS')","('SCIE', 'SCIE', 'SCIE')","43,908","9.4","('Q1', 'Q1', 'Q1')","2.17","3.65" +"Journal of Cachexia Sarcopenia and Muscle","2190-5991","2190-6009","('GERIATRICS & GERONTOLOGY', 'MEDICINE, GENERAL & INTERNAL')","('SCIE', 'SCIE')","10,870","9.4","('Q1', 'Q1')","2.11","72.21" +"CCS Chemistry","","2096-5745","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","8,221","9.4","Q1","2.07","52.34" +"IEEE Transactions on Robotics","1552-3098","1941-0468","ROBOTICS","('SCIE',)","23,134","9.4","Q1","2.01","21.99" +"Plant Communications","2590-3462","2590-3462","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","2,246","9.4","('Q1', 'Q1')","1.77","96.79" +"EMBO JOURNAL","0261-4189","1460-2075","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","63,359","9.4","('Q1', 'Q1')","1.71","65.13" +"RELIABILITY ENGINEERING & SYSTEM SAFETY","0951-8320","1879-0836","('ENGINEERING, INDUSTRIAL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","33,263","9.4","('Q1', 'Q1')","1.71","16.60" +"Acta Biomaterialia","1742-7061","1878-7568","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","60,878","9.4","('Q1', 'Q1')","1.70","27.88" +"CHINESE CHEMICAL LETTERS","1001-8417","1878-5964","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","32,052","9.4","Q1","1.68","0.70" +"Experimental Hematology & Oncology","","2162-3619","('HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","2,300","9.4","('Q1', 'Q1')","1.60","100.00" +"JOURNAL OF COLLOID AND INTERFACE SCIENCE","0021-9797","1095-7103","CHEMISTRY, PHYSICAL","('SCIE',)","125,430","9.4","Q1","1.53","9.19" +"npj Computational Materials","","2057-3960","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","11,944","9.4","('Q1', 'Q1')","1.50","99.71" +"Wiley Interdisciplinary Reviews-Climate Change","1757-7780","1757-7799","('ENVIRONMENTAL STUDIES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SSCI', 'SCIE')","7,176","9.4","('Q1', 'Q1')","1.33","57.79" +"ACTA NEUROPATHOLOGICA","0001-6322","1432-0533","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","25,777","9.3","('Q1', 'Q1', 'Q1')","3.09","68.63" +"PRX Quantum","","2691-3399","('PHYSICS, APPLIED', 'PHYSICS, MULTIDISCIPLINARY', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,957","9.3","('Q1', 'Q1', 'Q1')","2.40","96.40" +"SPORTS MEDICINE","0112-1642","1179-2035","SPORT SCIENCES","('SCIE',)","25,757","9.3","Q1","2.24","48.05" +"JOURNAL OF MANAGEMENT","0149-2063","1557-1211","('BUSINESS', 'MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI', 'SSCI')","34,936","9.3","('Q1', 'Q1', 'Q1')","2.04","20.69" +"Energy Policy","0301-4215","1873-6777","('ECONOMICS', 'ENERGY & FUELS', 'ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SCIE', 'SCIE', 'SSCI')","67,144","9.3","('Q1', 'Q1', 'Q1', 'Q1')","1.99","30.21" +"Journal of Integrative Plant Biology","1672-9072","1744-7909","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","10,690","9.3","('Q1', 'Q1')","1.96","24.51" +"Journal of Neuroinflammation","","1742-2094","('IMMUNOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","26,903","9.3","('Q1', 'Q1')","1.93","100.00" +"Current Climate Change Reports","2198-6061","2198-6061","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","2,123","9.3","Q1","1.80","42.11" +"GREEN CHEMISTRY","1463-9262","1463-9270","('CHEMISTRY, MULTIDISCIPLINARY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","67,216","9.3","('Q1', 'Q1')","1.41","18.19" +"CYTOKINE & GROWTH FACTOR REVIEWS","1359-6101","1879-0305","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","7,894","9.3","('Q1', 'Q1')","1.34","25.00" +"Current Opinion in Green and Sustainable Chemistry","2452-2236","2452-2236","('CHEMISTRY, MULTIDISCIPLINARY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","5,398","9.3","('Q1', 'Q1')","1.33","26.27" +"Journal of Educational Evaluation for Health Professions","1975-5937","1975-5937","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","1,239","9.3","Q1","1.16","98.99" +"CATALYSIS REVIEWS-SCIENCE AND ENGINEERING","0161-4940","1520-5703","CHEMISTRY, PHYSICAL","('SCIE',)","3,820","9.3","Q1","0.50","10.29" +"JOURNAL OF THE AMERICAN ACADEMY OF CHILD AND ADOLESCENT PSYCHIATRY","0890-8567","1527-5418","('PEDIATRICS', 'PSYCHIATRY', 'PSYCHOLOGY, DEVELOPMENTAL')","('SCIE', 'SCIE, SSCI', 'SSCI')","20,111","9.2","('Q1', 'Q1', 'Q1')","3.31","39.27" +"ANGIOGENESIS","0969-6970","1573-7209","PERIPHERAL VASCULAR DISEASE","('SCIE',)","4,735","9.2","Q1","2.00","56.48" +"CELLULAR & MOLECULAR BIOLOGY LETTERS","1425-8153","1689-1392","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","4,030","9.2","('Q1', 'Q1')","1.48","100.00" +"AUTOIMMUNITY REVIEWS","1568-9972","1873-0183","IMMUNOLOGY","('SCIE',)","13,267","9.2","Q1","1.31","30.27" +"ANESTHESIOLOGY","0003-3022","1528-1175","ANESTHESIOLOGY","('SCIE',)","29,192","9.1","Q1","3.37","2.08" +"JOURNAL OF NUCLEAR MEDICINE","0161-5505","1535-5667","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","29,679","9.1","Q1","2.98","19.00" +"BRITISH JOURNAL OF ANAESTHESIA","0007-0912","1471-6771","ANESTHESIOLOGY","('SCIE',)","27,760","9.1","Q1","2.78","77.80" +"International Journal of Contemporary Hospitality Management","0959-6119","1757-1049","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'MANAGEMENT')","('SSCI', 'SSCI')","15,139","9.1","('Q1', 'Q1')","2.40","3.22" +"LEADERSHIP QUARTERLY","1048-9843","1873-3409","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","13,479","9.1","('Q1', 'Q1')","2.29","11.85" +"PHARMACOLOGICAL RESEARCH","1043-6618","1096-1186","PHARMACOLOGY & PHARMACY","('SCIE',)","31,056","9.1","Q1","2.12","40.33" +"ROBOTICS AND COMPUTER-INTEGRATED MANUFACTURING","0736-5845","1879-2537","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, MANUFACTURING', 'ROBOTICS')","('SCIE', 'SCIE', 'SCIE')","10,509","9.1","('Q1', 'Q1', 'Q1')","2.07","15.18" +"npj Urban Sustainability","","2661-8001","('ENVIRONMENTAL STUDIES', 'URBAN STUDIES')","('ESCI', 'ESCI')","666","9.1","('Q1', 'Q1')","2.04","100.00" +"CANCER LETTERS","0304-3835","1872-7980","ONCOLOGY","('SCIE',)","40,118","9.1","Q1","1.98","28.32" +"Circulation-Arrhythmia and Electrophysiology","1941-3149","1941-3084","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","9,251","9.1","Q1","1.95","20.71" +"JOURNAL OF TRAVEL MEDICINE","1195-1982","1708-8305","('INFECTIOUS DISEASES', 'MEDICINE, GENERAL & INTERNAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE', 'SCIE')","4,344","9.1","('Q1', 'Q1', 'Q1')","1.57","36.16" +"npj 2D Materials and Applications","","2397-7132","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","3,863","9.1","('Q1', 'Q1', 'Q1')","1.39","100.00" +"Annual Review of Nuclear and Particle Science","0163-8998","1545-4134","('PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","3,576","9.1","('Q1', 'Q1')","1.33","77.78" +"SPACE SCIENCE REVIEWS","0038-6308","1572-9672","ASTRONOMY & ASTROPHYSICS","('SCIE',)","16,646","9.1","Q1","1.20","74.11" +"Annual Review of Phytopathology","0066-4286","1545-2107","PLANT SCIENCES","('SCIE',)","9,153","9.1","Q1","1.09","32.08" +"Green Chemical Engineering","2096-9147","2666-9528","ENGINEERING, CHEMICAL","('ESCI',)","1,117","9.1","Q1","1.02","91.27" +"Frontiers of Engineering Management","2095-7513","2096-0255","ENGINEERING, INDUSTRIAL","('ESCI',)","1,358","9.1","Q1","0.79","28.87" +"PROGRESS IN SOLID STATE CHEMISTRY","0079-6786","1873-1643","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","2,288","9.1","Q1","0.71","5.71" +"HARVARD BUSINESS REVIEW","0017-8012","0017-8012","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","19,686","9.1","('Q1', 'Q1')","0.33","0.00" +"COMPUTERS IN HUMAN BEHAVIOR","0747-5632","1873-7692","('PSYCHOLOGY, EXPERIMENTAL', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","52,261","9.0","('Q1', 'Q1')","2.91","26.65" +"Current Forestry Reports","2198-6436","2198-6436","FORESTRY","('SCIE',)","1,650","9.0","Q1","2.75","56.76" +"China Finance Review International","2044-1398","2044-1401","BUSINESS, FINANCE","('ESCI',)","910","9.0","Q1","2.26","3.30" +"EMBO Molecular Medicine","1757-4676","1757-4684","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","12,283","9.0","Q1","2.19","53.50" +"THORAX","0040-6376","1468-3296","RESPIRATORY SYSTEM","('SCIE',)","23,255","9.0","Q1","2.17","41.68" +"Satellite Navigation","2662-9291","2662-1363","('ENGINEERING, AEROSPACE', 'REMOTE SENSING', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","834","9.0","('Q1', 'Q1', 'Q1')","2.11","100.00" +"JOURNAL OF INTERNAL MEDICINE","0954-6820","1365-2796","MEDICINE, GENERAL & INTERNAL","('SCIE',)","14,604","9.0","Q1","1.98","56.90" +"European Respiratory Review","0905-9180","1600-0617","RESPIRATORY SYSTEM","('SCIE',)","6,551","9.0","Q1","1.86","97.92" +"Environmental Chemistry and Ecotoxicology","","2590-1826","('ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('ESCI', 'ESCI')","711","9.0","('Q1', 'Q1')","1.67","100.00" +"Energy","0360-5442","1873-6785","('ENERGY & FUELS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","171,282","9.0","('Q1', 'Q1')","1.59","9.52" +"Cell Systems","2405-4712","2405-4720","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","9,272","9.0","('Q1', 'Q1')","1.57","80.36" +"Renewable Energy","0960-1481","1879-0682","('ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","109,426","9.0","('Q1', 'Q1')","1.48","14.16" +"Materials Today Energy","2468-6069","2468-6069","('CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","9,881","9.0","('Q1', 'Q1', 'Q1')","1.43","9.65" +"JOURNAL OF BIOMEDICAL SCIENCE","1021-7770","1423-0127","('CELL BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","9,105","9.0","('Q1', 'Q1')","1.42","99.29" +"BMJ Evidence-Based Medicine","2515-446X","2515-4478","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,759","9.0","Q1","1.36","37.32" +"Advances in Geo-Energy Research","2207-9963","2208-598X","('ENERGY & FUELS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","1,544","9.0","('Q1', 'Q1')","1.34","99.26" +"Battery Energy","2768-1688","2768-1696","('ELECTROCHEMISTRY', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","540","9.0","('Q1', 'Q1', 'Q1')","1.12","96.15" +"REVIEWS IN MEDICAL VIROLOGY","1052-9276","1099-1654","VIROLOGY","('SCIE',)","5,042","9.0","Q1","1.07","13.01" +"Mental Illness","2036-7457","2036-7465","PSYCHIATRY","('ESCI',)","262","9.0","Q1","0.30","100.00" +"Annual Review of Sociology","0360-0572","1545-2115","SOCIOLOGY","('SSCI',)","15,241","8.9","Q1","4.27","30.26" +"COMPUTERS & EDUCATION","0360-1315","1873-782X","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'EDUCATION & EDUCATIONAL RESEARCH')","('SCIE', 'SSCI')","26,477","8.9","('Q1', 'Q1')","3.69","27.55" +"AMERICAN JOURNAL OF TRANSPLANTATION","1600-6135","1600-6143","('SURGERY', 'TRANSPLANTATION')","('SCIE', 'SCIE')","25,261","8.9","('Q1', 'Q1')","3.55","56.49" +"IEEE TRANSACTIONS ON KNOWLEDGE AND DATA ENGINEERING","1041-4347","1558-2191","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","25,855","8.9","('Q1', 'Q1', 'Q1')","2.55","15.65" +"IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS","1536-1276","1558-2248","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","39,171","8.9","('Q1', 'Q1')","2.35","15.67" +"IEEE TRANSACTIONS ON MEDICAL IMAGING","0278-0062","1558-254X","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, BIOMEDICAL', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","33,906","8.9","('Q1', 'Q1', 'Q1', 'Q1', 'Q1')","2.30","15.79" +"ORGANIZATIONAL RESEARCH METHODS","1094-4281","1552-7425","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","12,676","8.9","('Q1', 'Q1')","2.30","17.95" +"Journal of Destination Marketing & Management","2212-571X","2212-5752","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'MANAGEMENT')","('SSCI', 'SSCI')","4,966","8.9","('Q1', 'Q1')","2.19","16.74" +"PSYCHOLOGY & MARKETING","0742-6046","1520-6793","('BUSINESS', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","11,090","8.9","('Q1', 'Q1')","1.98","31.93" +"Current Opinion in Food Science","2214-7993","2214-8000","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","7,117","8.9","Q1","1.82","23.00" +"JOURNAL OF WORLD BUSINESS","1090-9516","1878-5573","BUSINESS","('SSCI',)","8,271","8.9","Q1","1.76","31.84" +"Environmental Science & Technology Letters","2328-8930","","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","9,967","8.9","('Q1', 'Q1')","1.49","17.55" +"Journal of Energy Storage","2352-152X","2352-1538","ENERGY & FUELS","('SCIE',)","58,099","8.9","Q1","1.31","8.50" +"BRAIN BEHAVIOR AND IMMUNITY","0889-1591","1090-2139","('IMMUNOLOGY', 'NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","27,017","8.8","('Q1', 'Q1', 'Q1')","2.63","43.38" +"Implementation Science","1748-5908","1748-5908","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","17,139","8.8","('Q1', 'Q1')","2.52","100.00" +"Reviews in Aquaculture","1753-5123","1753-5131","FISHERIES","('SCIE',)","7,413","8.8","Q1","2.02","27.49" +"CRITICAL CARE","1364-8535","1466-609X","CRITICAL CARE MEDICINE","('SCIE',)","35,610","8.8","Q1","1.97","99.69" +"Astrophysical Journal Letters","2041-8205","2041-8213","ASTRONOMY & ASTROPHYSICS","('SCIE',)","50,477","8.8","Q1","1.88","76.02" +"Cochrane Database of Systematic Reviews","1469-493X","1361-6137","MEDICINE, GENERAL & INTERNAL","('SCIE',)","77,231","8.8","Q1","1.48","0.00" +"JOURNAL OF THE ROYAL SOCIETY OF MEDICINE","0141-0768","1758-1095","MEDICINE, GENERAL & INTERNAL","('SCIE',)","5,120","8.8","Q1","1.36","44.68" +"Journal of Remote Sensing","","2694-1589","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","527","8.8","('Q1', 'Q1', 'Q1', 'Q1')","1.30","90.28" +"Annual Review of Animal Biosciences","2165-8102","2165-8110","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'VETERINARY SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,987","8.7","('Q1', 'Q1', 'Q1', 'Q1')","4.63","32.76" +"AMERICAN JOURNAL OF OBSTETRICS AND GYNECOLOGY","0002-9378","1097-6868","OBSTETRICS & GYNECOLOGY","('SCIE',)","46,711","8.7","Q1","3.40","20.83" +"JOURNAL OF NEUROLOGY NEUROSURGERY AND PSYCHIATRY","0022-3050","1468-330X","('CLINICAL NEUROLOGY', 'PSYCHIATRY', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","32,313","8.7","('Q1', 'Q1', 'Q1')","2.68","36.94" +"BRITISH JOURNAL OF PSYCHIATRY","0007-1250","1472-1465","PSYCHIATRY","('SCIE', 'SSCI')","23,612","8.7","Q1","2.16","56.05" +"WORLD BANK RESEARCH OBSERVER","0257-3032","1564-6971","('DEVELOPMENT STUDIES', 'ECONOMICS')","('SSCI', 'SSCI')","1,776","8.7","('Q1', 'Q1')","2.13","32.35" +"ULTRASONICS SONOCHEMISTRY","1350-4177","1873-2828","('ACOUSTICS', 'CHEMISTRY, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","32,890","8.7","('Q1', 'Q1')","2.11","98.73" +"IEEE Journal of Selected Topics in Signal Processing","1932-4553","1941-0484","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","8,945","8.7","Q1","2.02","15.20" +"JOURNAL OF STRATEGIC INFORMATION SYSTEMS","0963-8687","1873-1198","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SCIE', 'SSCI', 'SSCI')","3,818","8.7","('Q1', 'Q1', 'Q1')","1.80","37.04" +"Materials Today Bio","2590-0064","2590-0064","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","4,911","8.7","('Q1', 'Q1')","1.70","90.39" +"Protection and Control of Modern Power Systems","2367-2617","2367-0983","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","1,839","8.7","('Q1', 'Q1')","1.70","100.00" +"ARCHIVOS DE BRONCONEUMOLOGIA","0300-2896","1579-2129","RESPIRATORY SYSTEM","('SCIE',)","2,752","8.7","Q1","1.37","12.74" +"MOLECULAR ASPECTS OF MEDICINE","0098-2997","1872-9452","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","8,966","8.7","('Q1', 'Q1')","1.31","36.78" +"Annual Review of Genetics","0066-4197","1545-2948","GENETICS & HEREDITY","('SCIE',)","7,684","8.7","Q1","1.26","34.85" +"PROGRESS IN SURFACE SCIENCE","0079-6816","1878-4240","('CHEMISTRY, PHYSICAL', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","1,766","8.7","('Q1', 'Q1')","0.42","23.81" +"International Journal of Educational Technology in Higher Education","2365-9440","2365-9440","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,322","8.6","Q1","3.95","99.46" +"HEALTH AFFAIRS","0278-2715","0278-2715","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","19,799","8.6","('Q1', 'Q1')","3.27","15.08" +"British Journal of Surgery","0007-1323","1365-2168","SURGERY","('SCIE',)","24,832","8.6","Q1","3.14","40.95" +"EUROPEAN JOURNAL OF NUCLEAR MEDICINE AND MOLECULAR IMAGING","1619-7070","1619-7089","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","22,997","8.6","Q1","2.48","49.66" +"AMERICAN JOURNAL OF CLINICAL DERMATOLOGY","1175-0561","1179-1888","DERMATOLOGY","('SCIE',)","5,833","8.6","Q1","2.42","40.74" +"GLOBAL ENVIRONMENTAL CHANGE-HUMAN AND POLICY DIMENSIONS","0959-3780","1872-9495","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GEOGRAPHY')","('SCIE', 'SSCI', 'SSCI')","24,192","8.6","('Q1', 'Q1', 'Q1')","2.37","56.97" +"IEEE Transactions on Smart Grid","1949-3053","1949-3061","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","39,144","8.6","Q1","2.28","13.30" +"ASTROPHYSICAL JOURNAL SUPPLEMENT SERIES","0067-0049","1538-4365","ASTRONOMY & ASTROPHYSICS","('SCIE',)","36,864","8.6","Q1","1.97","71.66" +"IEEE Transactions on Systems Man Cybernetics-Systems","2168-2216","2168-2232","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, CYBERNETICS')","('SCIE', 'SCIE')","28,463","8.6","('Q1', 'Q1')","1.77","4.22" +"IEEE Transactions on Sustainable Energy","1949-3029","1949-3037","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","15,983","8.6","('Q1', 'Q1', 'Q1')","1.74","10.25" +"JOURNAL OF INTERNATIONAL BUSINESS STUDIES","0047-2506","1478-6990","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","18,176","8.6","('Q1', 'Q1')","1.63","32.74" +"Journal of Big Data","","2196-1115","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","8,362","8.6","Q1","1.62","99.78" +"Materials Research Letters","2166-3831","2166-3831","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","5,314","8.6","Q1","1.53","98.37" +"Sustainable Materials and Technologies","2214-9937","2214-9937","('ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","5,839","8.6","('Q1', 'Q1', 'Q1')","1.45","19.06" +"International Journal of Consumer Studies","1470-6423","1470-6431","BUSINESS","('SSCI',)","6,728","8.6","Q1","1.42","17.99" +"Journal of Nanostructure in Chemistry","2008-9244","2193-8865","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,203","8.6","('Q1', 'Q1', 'Q1')","1.38","8.75" +"NPG Asia Materials","1884-4049","1884-4057","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","7,523","8.6","Q1","1.27","99.59" +"REVIEWS IN ENVIRONMENTAL SCIENCE AND BIO-TECHNOLOGY","1569-1705","1572-9826","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","5,115","8.6","('Q1', 'Q1')","1.10","23.21" +"Clinical Journal of the American Society of Nephrology","1555-9041","1555-905X","UROLOGY & NEPHROLOGY","('SCIE',)","21,184","8.5","Q1","2.68","5.79" +"Geoscience Frontiers","1674-9871","1674-9871","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","9,269","8.5","Q1","2.41","98.25" +"Cardiovascular Diabetology","","1475-2840","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","13,518","8.5","('Q1', 'Q1')","2.15","99.76" +"npj Climate and Atmospheric Science","2397-3722","2397-3722","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","3,089","8.5","Q1","1.97","99.73" +"Food Packaging and Shelf Life","2214-2894","2214-2894","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","8,405","8.5","Q1","1.90","14.05" +"JPAD-Journal of Prevention of Alzheimers Disease","2274-5807","2426-0266","CLINICAL NEUROLOGY","('SCIE',)","2,110","8.5","Q1","1.88","23.27" +"Food Chemistry","0308-8146","1873-7072","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE', 'SCIE')","202,388","8.5","('Q1', 'Q1', 'Q1')","1.83","11.71" +"COMPUTER-AIDED CIVIL AND INFRASTRUCTURE ENGINEERING","1093-9687","1467-8667","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,708","8.5","('Q1', 'Q1', 'Q1', 'Q1')","1.77","26.32" +"Molecular Systems Biology","1744-4292","1744-4292","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","9,948","8.5","Q1","1.74","55.50" +"Research","2096-5168","2639-5274","MULTIDISCIPLINARY SCIENCES","('SCIE',)","5,868","8.5","Q1","1.58","92.15" +"JACS Au","","2691-3704","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","4,793","8.5","Q1","1.55","71.67" +"Pneumonia","2200-6133","2200-6133","RESPIRATORY SYSTEM","('ESCI',)","464","8.5","Q1","1.15","100.00" +"Annual Review of Microbiology","0066-4227","1545-3251","MICROBIOLOGY","('SCIE',)","10,232","8.5","Q1","0.96","28.00" +"Optica","2334-2536","2334-2536","OPTICS","('SCIE',)","17,466","8.4","Q1","2.76","99.84" +"Emerging Microbes & Infections","","2222-1751","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","10,536","8.4","('Q1', 'Q1', 'Q1')","2.73","95.91" +"IEEE TRANSACTIONS ON MULTIMEDIA","1520-9210","1941-0077","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","17,464","8.4","('Q1', 'Q1', 'Q1')","2.39","3.34" +"JACC-Basic to Translational Science","2452-302X","2452-302X","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","3,724","8.4","Q1","2.13","99.55" +"JOURNAL OF THE EUROPEAN ACADEMY OF DERMATOLOGY AND VENEREOLOGY","0926-9959","1468-3083","DERMATOLOGY","('SCIE',)","19,895","8.4","Q1","1.96","42.70" +"DIABETOLOGIA","0012-186X","1432-0428","ENDOCRINOLOGY & METABOLISM","('SCIE',)","34,619","8.4","Q1","1.92","63.78" +"European Journal of Preventive Cardiology","2047-4873","2047-4881","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","10,318","8.4","Q1","1.92","31.30" +"CLINICAL REVIEWS IN ALLERGY & IMMUNOLOGY","1080-0549","1559-0267","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","6,064","8.4","('Q1', 'Q1')","1.70","29.93" +"JOURNAL OF MEMBRANE SCIENCE","0376-7388","1873-3123","('ENGINEERING, CHEMICAL', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","87,709","8.4","('Q1', 'Q1')","1.69","14.17" +"BULLETIN OF THE WORLD HEALTH ORGANIZATION","0042-9686","1564-0604","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","16,579","8.4","Q1","1.65","91.79" +"Journal of Materiomics","2352-8478","2352-8478","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","5,052","8.4","('Q1', 'Q1', 'Q1')","1.60","96.08" +"CAAI Transactions on Intelligence Technology","2468-6557","2468-2322","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","1,991","8.4","Q1","1.21","86.74" +"REVIEW OF EDUCATIONAL RESEARCH","0034-6543","1935-1046","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","12,726","8.3","Q1","3.82","26.32" +"Foundations and Trends in Information Retrieval","1554-0669","1554-0677","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","631","8.3","Q1","3.37","0.00" +"Human Reproduction Open","","2399-3529","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","2,032","8.3","('Q1', 'Q1')","3.06","91.30" +"JOURNAL OF PINEAL RESEARCH","0742-3098","1600-079X","('ENDOCRINOLOGY & METABOLISM', 'NEUROSCIENCES', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","10,941","8.3","('Q1', 'Q1', 'Q1')","2.54","22.56" +"IEEE COMMUNICATIONS MAGAZINE","0163-6804","1558-1896","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","20,608","8.3","('Q1', 'Q1')","2.43","0.00" +"European Urology Oncology","","2588-9311","('ONCOLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","3,062","8.3","('Q1', 'Q1')","2.42","18.52" +"IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS FOR VIDEO TECHNOLOGY","1051-8215","1558-2205","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","19,798","8.3","Q1","2.28","3.15" +"TRANSPORTATION RESEARCH PART E-LOGISTICS AND TRANSPORTATION REVIEW","1366-5545","1878-5794","('ECONOMICS', 'ENGINEERING, CIVIL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SSCI', 'SCIE', 'SCIE', 'SSCI', 'SCIE')","17,564","8.3","('Q1', 'Q1', 'Q1', 'Q1', 'Q1')","2.20","13.21" +"Critical Perspectives on Accounting","1045-2354","1095-9955","BUSINESS, FINANCE","('SSCI',)","4,390","8.3","Q1","2.17","28.30" +"NEW PHYTOLOGIST","0028-646X","1469-8137","PLANT SCIENCES","('SCIE',)","83,074","8.3","Q1","2.13","37.11" +"ADMINISTRATIVE SCIENCE QUARTERLY","0001-8392","1930-3815","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","20,945","8.3","('Q1', 'Q1')","1.97","33.33" +"ACTA MATERIALIA","1359-6454","1873-2453","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","113,518","8.3","('Q1', 'Q1')","1.90","38.09" +"AGU Advances","","2576-604X","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","895","8.3","Q1","1.88","79.66" +"Corporate Social Responsibility and Environmental Management","1535-3958","1535-3966","('BUSINESS', 'ENVIRONMENTAL STUDIES', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","12,291","8.3","('Q1', 'Q1', 'Q1')","1.87","29.40" +"Journal of Crohns & Colitis","1873-9946","1876-4479","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","14,045","8.3","Q1","1.82","33.28" +"DESALINATION","0011-9164","1873-4464","('ENGINEERING, CHEMICAL', 'WATER RESOURCES')","('SCIE', 'SCIE')","52,875","8.3","('Q1', 'Q1')","1.78","11.90" +"COMPOSITES SCIENCE AND TECHNOLOGY","0266-3538","1879-1050","MATERIALS SCIENCE, COMPOSITES","('SCIE',)","44,202","8.3","Q1","1.44","12.05" +"ACS Applied Materials & Interfaces","1944-8244","1944-8252","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","364,612","8.3","('Q1', 'Q1')","1.40","6.13" +"CURRENT OPINION IN PLANT BIOLOGY","1369-5266","1879-0356","PLANT SCIENCES","('SCIE',)","17,340","8.3","Q1","1.00","47.84" +"INTERNATIONAL ORGANIZATION","0020-8183","1531-5088","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","8,990","8.2","('Q1', 'Q1')","4.00","23.23" +"INFORMATION & MANAGEMENT","0378-7206","1872-7530","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SCIE', 'SSCI', 'SSCI')","13,338","8.2","('Q1', 'Q1', 'Q1')","2.58","13.26" +"Dialogues in Human Geography","2043-8206","2043-8214","GEOGRAPHY","('SSCI',)","1,525","8.2","Q1","2.49","48.39" +"IEEE Internet of Things Journal","2327-4662","2327-4662","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","57,565","8.2","('Q1', 'Q1', 'Q1')","2.42","5.82" +"CLINICAL INFECTIOUS DISEASES","1058-4838","1537-6591","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","81,709","8.2","('Q1', 'Q1', 'Q1')","2.36","44.97" +"HUMAN RESOURCE MANAGEMENT REVIEW","1053-4822","1873-7889","MANAGEMENT","('SSCI',)","5,963","8.2","Q1","2.32","19.18" +"Underground Space","2096-2754","2467-9674","ENGINEERING, CIVIL","('SCIE',)","1,879","8.2","Q1","2.05","96.57" +"Journal of Travel & Tourism Marketing","1054-8408","1540-7306","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","6,057","8.2","Q1","2.00","3.31" +"Swarm and Evolutionary Computation","2210-6502","2210-6510","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","8,900","8.2","('Q1', 'Q1')","1.95","5.86" +"HAEMATOLOGICA","0390-6078","1592-8721","HEMATOLOGY","('SCIE',)","21,989","8.2","Q1","1.90","98.41" +"International Journal of Biological Sciences","1449-2288","1449-2288","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","17,365","8.2","Q1","1.87","99.05" +"Artificial Intelligence in Agriculture","","2589-7217","('AGRICULTURE, MULTIDISCIPLINARY', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE')","('ESCI', 'ESCI')","981","8.2","('Q1', 'Q1')","1.77","98.73" +"Biofabrication","1758-5082","1758-5090","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","9,045","8.2","('Q1', 'Q1')","1.70","33.97" +"COMPUTERS IN INDUSTRY","0166-3615","1872-6194","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","9,349","8.2","Q1","1.66","35.91" +"Science of The Total Environment","0048-9697","1879-1026","ENVIRONMENTAL SCIENCES","('SCIE',)","394,564","8.2","Q1","1.62","20.51" +"ACS Sensors","2379-3694","2379-3694","('CHEMISTRY, ANALYTICAL', 'CHEMISTRY, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","20,803","8.2","('Q1', 'Q1', 'Q1')","1.44","10.59" +"Journal of Allergy and Clinical Immunology-In Practice","2213-2198","2213-2201","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","15,521","8.2","('Q1', 'Q1')","1.38","26.46" +"Materials Today Nano","2588-8420","2588-8420","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","2,934","8.2","('Q1', 'Q1')","1.24","11.63" +"Green Synthesis and Catalysis","","2666-5549","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","1,195","8.2","Q1","1.20","92.36" +"Cell Communication and Signaling","","1478-811X","CELL BIOLOGY","('SCIE',)","8,710","8.2","Q1","1.00","100.00" +"SURFACE SCIENCE REPORTS","0167-5729","1879-274X","('CHEMISTRY, PHYSICAL', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","3,565","8.2","('Q1', 'Q1')","0.45","64.71" +"ANNALS OF NEUROLOGY","0364-5134","1531-8249","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","36,745","8.1","('Q1', 'Q1')","2.65","43.62" +"American Economic Review-Insights","2640-205X","2640-2068","ECONOMICS","('SSCI',)","1,028","8.1","Q1","2.43","0.00" +"AMERICAN JOURNAL OF HUMAN GENETICS","0002-9297","1537-6605","GENETICS & HEREDITY","('SCIE',)","36,669","8.1","Q1","2.40","82.67" +"PHYSICAL REVIEW LETTERS","0031-9007","1079-7114","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","471,243","8.1","Q1","2.25","26.19" +"Cancer Immunology Research","2326-6066","2326-6074","('IMMUNOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","12,302","8.1","('Q1', 'Q1')","1.93","29.13" +"Communications Earth & Environment","","2662-4435","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE')","5,591","8.1","('Q1', 'Q1', 'Q1')","1.85","99.80" +"Radiology-Artificial Intelligence","2638-6100","2638-6100","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('ESCI', 'ESCI')","2,163","8.1","('Q1', 'Q1')","1.85","0.00" +"Annual Review of Virology","2327-056X","2327-0578","VIROLOGY","('SCIE',)","2,752","8.1","Q1","1.82","89.19" +"Chemosphere","0045-6535","1879-1298","ENVIRONMENTAL SCIENCES","('SCIE',)","194,561","8.1","Q1","1.58","11.26" +"CURRENT BIOLOGY","0960-9822","1879-0445","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","76,536","8.1","('Q1', 'Q1', 'Q1')","1.58","82.44" +"COMPOSITES PART A-APPLIED SCIENCE AND MANUFACTURING","1359-835X","1878-5840","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, COMPOSITES')","('SCIE', 'SCIE')","38,470","8.1","('Q1', 'Q1')","1.53","17.38" +"Materials Today Advances","2590-0498","2590-0498","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","2,984","8.1","Q1","1.40","94.46" +"SEPARATION AND PURIFICATION TECHNOLOGY","1383-5866","1873-3794","ENGINEERING, CHEMICAL","('SCIE',)","89,199","8.1","Q1","1.36","6.50" +"Materials Science & Engineering C-Materials for Biological Applications","0928-4931","1873-0191","MATERIALS SCIENCE, BIOMATERIALS","('SCIE',)","54,848","8.1","Q1","1.34","9.78" +"JOURNAL OF POWER SOURCES","0378-7753","1873-2755","('CHEMISTRY, PHYSICAL', 'ELECTROCHEMISTRY', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","143,750","8.1","('Q1', 'Q1', 'Q1', 'Q1')","1.33","15.86" +"Biomaterials Research","1226-4601","2055-7124","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","3,178","8.1","('Q1', 'Q1')","1.28","100.00" +"Cell Death & Disease","2041-4889","2041-4889","CELL BIOLOGY","('SCIE',)","60,695","8.1","Q1","1.24","99.69" +"Bio-Design and Manufacturing","2096-5524","2522-8552","ENGINEERING, BIOMEDICAL","('SCIE',)","1,492","8.1","Q1","1.19","19.58" +"INTERNATIONAL JOURNAL OF HYDROGEN ENERGY","0360-3199","1879-3487","('CHEMISTRY, PHYSICAL', 'ELECTROCHEMISTRY', 'ENERGY & FUELS')","('SCIE', 'SCIE', 'SCIE')","193,814","8.1","('Q1', 'Q1', 'Q1')","1.16","8.89" +"CRITICAL REVIEWS IN BIOTECHNOLOGY","0738-8551","1549-7801","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","7,612","8.1","Q1","0.91","9.69" +"CRITICAL REVIEWS IN SOLID STATE AND MATERIALS SCIENCES","1040-8436","1547-6561","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","2,609","8.1","('Q1', 'Q1')","0.51","6.25" +"Journal of Travel Research","0047-2875","1552-6763","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","13,030","8.0","Q1","2.07","20.66" +"ADVANCED ENGINEERING INFORMATICS","1474-0346","1873-5320","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","10,404","8.0","('Q1', 'Q1')","2.05","11.12" +"AMERICAN JOURNAL OF GASTROENTEROLOGY","0002-9270","1572-0241","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","33,137","8.0","Q1","1.99","12.23" +"SENSORS AND ACTUATORS B-CHEMICAL","","0925-4005","('CHEMISTRY, ANALYTICAL', 'ELECTROCHEMISTRY', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE', 'SCIE')","119,591","8.0","('Q1', 'Q1', 'Q1')","1.89","6.95" +"JACC-Clinical Electrophysiology","2405-500X","2405-5018","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","5,965","8.0","Q1","1.88","58.65" +"Science China-Life Sciences","1674-7305","1869-1889","BIOLOGY","('SCIE',)","7,888","8.0","Q1","1.87","2.36" +"JOURNAL OF RETAILING","0022-4359","1873-3271","BUSINESS","('SSCI',)","9,205","8.0","Q1","1.82","18.11" +"Advanced Optical Materials","2195-1071","2195-1071","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'OPTICS')","('SCIE', 'SCIE')","38,352","8.0","('Q1', 'Q1')","1.75","16.01" +"Geography and Sustainability","2096-7438","2666-6839","('GEOGRAPHY, PHYSICAL', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","974","8.0","('Q1', 'Q1')","1.73","95.41" +"Bottom Line","0888-045X","2054-1724","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","488","8.0","Q1","1.66","3.57" +"AGING CELL","1474-9718","1474-9726","('CELL BIOLOGY', 'GERIATRICS & GERONTOLOGY')","('SCIE', 'SCIE')","17,555","8.0","('Q1', 'Q1')","1.61","72.09" +"Obesity Reviews","1467-7881","1467-789X","ENDOCRINOLOGY & METABOLISM","('SCIE',)","17,160","8.0","Q1","1.54","40.18" +"Journal of Environmental Management","0301-4797","1095-8630","ENVIRONMENTAL SCIENCES","('SCIE',)","110,283","8.0","Q1","1.49","16.50" +"Current Opinion in Chemical Engineering","2211-3398","2211-3398","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","4,363","8.0","('Q1', 'Q1')","1.36","26.94" +"PROGRESS IN PHOTOVOLTAICS","1062-7995","1099-159X","('ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","7,872","8.0","('Q1', 'Q1', 'Q1')","1.36","40.13" +"Advances in Nutrition","2161-8313","2156-5376","NUTRITION & DIETETICS","('SCIE',)","13,004","8.0","Q1","1.31","99.53" +"Energy Nexus","2772-4271","2772-4271","('ENERGY & FUELS', 'ENVIRONMENTAL SCIENCES')","('ESCI', 'ESCI')","1,345","8.0","('Q1', 'Q1')","1.27","92.02" +"Nanoscale Horizons","2055-6756","2055-6764","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,600","8.0","('Q1', 'Q1', 'Q1')","1.08","21.90" +"MICROBIOLOGY AND MOLECULAR BIOLOGY REVIEWS","1092-2172","1098-5557","MICROBIOLOGY","('SCIE',)","12,934","8.0","Q1","0.99","2.41" +"Qualitative Research in Sport Exercise and Health","2159-676X","2159-6778","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY, APPLIED', 'SPORT SCIENCES')","('SSCI', 'SSCI', 'SCIE')","4,066","8.0","('Q1', 'Q1', 'Q1')","0.98","39.16" +"Economic Analysis and Policy","0313-5926","0313-5926","ECONOMICS","('SSCI',)","6,180","7.9","Q1","2.70","14.07" +"LANDSCAPE AND URBAN PLANNING","0169-2046","1872-6062","('ECOLOGY', 'ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'GEOGRAPHY, PHYSICAL', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SCIE', 'SSCI', 'SSCI', 'SCIE', 'SSCI', 'SSCI')","28,158","7.9","('Q1', 'Q1', 'Q1', 'Q1', 'Q1', 'Q1')","2.37","41.24" +"VETERINARY QUARTERLY","0165-2176","1875-5941","VETERINARY SCIENCES","('SCIE',)","1,735","7.9","Q1","2.24","97.65" +"MECHANICAL SYSTEMS AND SIGNAL PROCESSING","0888-3270","1096-1216","ENGINEERING, MECHANICAL","('SCIE',)","53,144","7.9","Q1","2.23","12.48" +"Alzheimers Research & Therapy","","1758-9193","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","9,748","7.9","('Q1', 'Q1')","2.12","100.00" +"IEEE TRANSACTIONS ON INTELLIGENT TRANSPORTATION SYSTEMS","1524-9050","1558-0016","('ENGINEERING, CIVIL', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","47,877","7.9","('Q1', 'Q1', 'Q1')","2.00","8.41" +"Earth System Dynamics","2190-4979","2190-4987","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","3,443","7.9","Q1","1.90","100.00" +"JOURNAL OF AUTOIMMUNITY","0896-8411","1095-9157","IMMUNOLOGY","('SCIE',)","10,599","7.9","Q1","1.90","37.57" +"EUROPACE","1099-5129","1532-2092","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","15,769","7.9","Q1","1.82","59.43" +"SUPPLY CHAIN MANAGEMENT-AN INTERNATIONAL JOURNAL","1359-8546","1758-6852","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","7,473","7.9","('Q1', 'Q1')","1.63","12.73" +"Clinical and Translational Medicine","2001-1326","2001-1326","('MEDICINE, RESEARCH & EXPERIMENTAL', 'ONCOLOGY')","('SCIE', 'SCIE')","7,154","7.9","('Q1', 'Q1')","1.56","70.18" +"Cell Reports Physical Science","","2666-3864","('CHEMISTRY, MULTIDISCIPLINARY', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,382","7.9","('Q1', 'Q1', 'Q1', 'Q1')","1.46","98.54" +"Seminars in Immunopathology","1863-2297","1863-2300","('IMMUNOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","5,955","7.9","('Q1', 'Q1')","1.45","57.14" +"IEEE Open Journal of Industry Applications","","2644-1241","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","466","7.9","Q1","1.28","100.00" +"Mucosal Immunology","1933-0219","1935-3456","IMMUNOLOGY","('SCIE',)","10,403","7.9","Q1","1.26","98.37" +"Energy Strategy Reviews","2211-467X","2211-4688","ENERGY & FUELS","('SCIE',)","6,465","7.9","Q1","1.16","96.96" +"Current Opinion in Electrochemistry","2451-9103","2451-9103","('CHEMISTRY, PHYSICAL', 'ELECTROCHEMISTRY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","7,934","7.9","('Q1', 'Q1', 'Q1')","0.55","27.60" +"CURRENT OPINION IN COLLOID & INTERFACE SCIENCE","1359-0294","1879-0399","CHEMISTRY, PHYSICAL","('SCIE',)","8,468","7.9","Q1","0.44","33.18" +"JAMA Ophthalmology","2168-6165","2168-6173","OPHTHALMOLOGY","('SCIE',)","9,859","7.8","Q1","3.33","13.93" +"GOVERNMENT INFORMATION QUARTERLY","0740-624X","1872-9517","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","7,190","7.8","Q1","2.63","38.93" +"Neurology-Neuroimmunology & Neuroinflammation","2332-7812","2332-7812","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","5,525","7.8","('Q1', 'Q1')","2.40","99.69" +"STROKE","0039-2499","1524-4628","('CLINICAL NEUROLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","72,261","7.8","('Q1', 'Q1')","2.14","14.56" +"Circulation-Heart Failure","1941-3289","1941-3297","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","10,036","7.8","Q1","2.11","15.00" +"PLOS BIOLOGY","1544-9173","1545-7885","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOLOGY')","('SCIE', 'SCIE')","38,680","7.8","('Q1', 'Q1')","2.03","97.03" +"ACM TRANSACTIONS ON GRAPHICS","0730-0301","1557-7368","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","32,386","7.8","Q1","2.00","4.06" +"Journal of Service Management","1757-5818","1757-5826","MANAGEMENT","('SSCI',)","3,952","7.8","Q1","1.98","25.00" +"npj Biofilms and Microbiomes","","2055-5008","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","3,237","7.8","('Q1', 'Q1')","1.86","99.65" +"INDUSTRIAL MARKETING MANAGEMENT","0019-8501","1873-2062","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","18,260","7.8","('Q1', 'Q1')","1.82","32.32" +"Review of Environmental Economics and Policy","1750-6816","1750-6824","('ECONOMICS', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","2,106","7.8","('Q1', 'Q1')","1.82","5.08" +"Cold Spring Harbor Perspectives in Medicine","2157-1422","2157-1422","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","12,190","7.8","Q1","1.72","0.00" +"ENTREPRENEURSHIP THEORY AND PRACTICE","1042-2587","1540-6520","BUSINESS","('SSCI',)","15,652","7.8","Q1","1.55","35.63" +"Review of Managerial Science","1863-6683","1863-6691","MANAGEMENT","('SSCI',)","3,448","7.8","Q1","1.38","51.77" +"EUROPEAN JOURNAL OF EPIDEMIOLOGY","0393-2990","1573-7284","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","13,835","7.7","Q1","2.67","64.08" +"PERSONALITY AND SOCIAL PSYCHOLOGY REVIEW","1088-8683","1532-7957","PSYCHOLOGY, SOCIAL","('SSCI',)","8,248","7.7","Q1","2.57","36.96" +"NEUROLOGY","0028-3878","1526-632X","CLINICAL NEUROLOGY","('SCIE',)","95,734","7.7","Q1","2.46","23.51" +"IEEE TRANSACTIONS ON MOBILE COMPUTING","1536-1233","1558-0660","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","12,921","7.7","('Q1', 'Q1')","2.40","8.90" +"Big Data Mining and Analytics","","2096-0654","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('ESCI', 'ESCI')","875","7.7","('Q1', 'Q1')","2.16","100.00" +"COMPUTERS AND ELECTRONICS IN AGRICULTURE","0168-1699","1872-7107","('AGRICULTURE, MULTIDISCIPLINARY', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","37,392","7.7","('Q1', 'Q1')","2.07","16.52" +"Information Processing in Agriculture","2214-3173","2214-3173","('AGRICULTURE, MULTIDISCIPLINARY', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('ESCI', 'ESCI')","2,573","7.7","('Q1', 'Q1')","2.03","96.30" +"ENVIRONMENTAL RESEARCH","0013-9351","1096-0953","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","69,609","7.7","('Q1', 'Q1')","1.98","16.39" +"Conservation Letters","1755-263X","1755-263X","BIODIVERSITY CONSERVATION","('SCIE',)","6,064","7.7","Q1","1.90","82.17" +"CRITICAL CARE MEDICINE","0090-3493","1530-0293","CRITICAL CARE MEDICINE","('SCIE',)","39,669","7.7","Q1","1.73","14.17" +"JOURNAL OF BUSINESS VENTURING","0883-9026","1873-2003","BUSINESS","('SSCI',)","15,823","7.7","Q1","1.59","28.90" +"JOURNAL OF NETWORK AND COMPUTER APPLICATIONS","1084-8045","1095-8592","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE', 'SCIE')","10,327","7.7","('Q1', 'Q1', 'Q1')","1.56","14.43" +"International Journal of Biological Macromolecules","0141-8130","1879-0003","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, APPLIED', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","153,193","7.7","('Q1', 'Q1', 'Q1')","1.47","5.54" +"Annual Review of Genomics and Human Genetics","1527-8204","1545-293X","GENETICS & HEREDITY","('SCIE',)","3,140","7.7","Q1","1.14","88.71" +"CANCER AND METASTASIS REVIEWS","0167-7659","1573-7233","ONCOLOGY","('SCIE',)","7,781","7.7","Q1","1.11","43.10" +"Advances in Physics-X","2374-6149","2374-6149","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","1,970","7.7","Q1","0.74","99.06" +"European Journal of Psychology Applied to Legal Context","1889-1861","1989-4007","('LAW', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","533","7.6","('Q1', 'Q1')","6.80","100.00" +"PSYCHOLOGICAL METHODS","1082-989X","1939-1463","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","19,452","7.6","Q1","2.97","3.70" +"Lancet Regional Health-Western Pacific","","2666-6065","('HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE, SSCI')","3,050","7.6","('Q1', 'Q1')","2.53","76.43" +"REVIEW OF ECONOMICS AND STATISTICS","0034-6535","1530-9142","('ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","20,746","7.6","('Q1', 'Q1')","2.45","5.60" +"Oeconomia Copernicana","2083-1277","2353-1827","ECONOMICS","('SSCI',)","929","7.6","Q1","2.44","97.22" +"JOURNAL OF FINANCE","0022-1082","1540-6261","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","49,851","7.6","('Q1', 'Q1')","2.41","21.60" +"TELEMATICS AND INFORMATICS","0736-5853","","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","8,383","7.6","Q1","2.34","14.21" +"Horticulture Research","2662-6810","2052-7276","('GENETICS & HEREDITY', 'HORTICULTURE', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","9,137","7.6","('Q1', 'Q1', 'Q1')","2.21","96.54" +"BIOSCIENCE","0006-3568","1525-3244","BIOLOGY","('SCIE',)","20,370","7.6","Q1","2.17","43.04" +"ECOLOGY LETTERS","1461-023X","1461-0248","ECOLOGY","('SCIE',)","38,664","7.6","Q1","2.12","38.69" +"Journal of the National Cancer Center","2667-0054","2667-0054","ONCOLOGY","('ESCI',)","403","7.6","Q1","2.12","97.59" +"Journal of Hospitality and Tourism Management","1447-6770","1839-5260","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'MANAGEMENT')","('SSCI', 'SSCI')","6,820","7.6","('Q1', 'Q1')","1.98","0.53" +"EuroIntervention","1774-024X","1969-6213","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","7,240","7.6","Q1","1.88","0.28" +"Brain Stimulation","1935-861X","1876-4754","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","10,766","7.6","('Q1', 'Q1')","1.81","79.90" +"Plant Phenomics","2643-6515","2643-6515","('AGRONOMY', 'PLANT SCIENCES', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE')","943","7.6","('Q1', 'Q1', 'Q1')","1.71","94.19" +"EUROPEAN JOURNAL OF CANCER","0959-8049","1879-0852","ONCOLOGY","('SCIE',)","38,165","7.6","Q1","1.68","39.56" +"TRANSPORTATION RESEARCH PART C-EMERGING TECHNOLOGIES","0968-090X","1879-2359","TRANSPORTATION SCIENCE & TECHNOLOGY","('SCIE',)","27,650","7.6","Q1","1.68","26.11" +"International Journal of Applied Earth Observation and Geoinformation","1569-8432","1872-826X","REMOTE SENSING","('SCIE',)","18,841","7.6","Q1","1.56","97.08" +"ENVIRONMENTAL POLLUTION","0269-7491","1873-6424","ENVIRONMENTAL SCIENCES","('SCIE',)","126,553","7.6","Q1","1.50","15.60" +"Chemical Science","2041-6520","2041-6539","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","83,758","7.6","Q1","1.41","99.62" +"MATERIALS & DESIGN","0264-1275","1873-4197","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","88,486","7.6","Q1","1.37","96.96" +"PROCEEDINGS OF THE NUTRITION SOCIETY","0029-6651","1475-2719","NUTRITION & DIETETICS","('SCIE',)","7,291","7.6","Q1","1.32","64.67" +"HemaSphere","","2572-9241","HEMATOLOGY","('SCIE',)","2,389","7.6","Q1","1.01","72.03" +"Annual Review of Chemical and Biomolecular Engineering","1947-5438","1947-5446","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","2,604","7.6","('Q1', 'Q1')","0.57","57.38" +"ANNALS OF SURGERY","0003-4932","1528-1140","SURGERY","('SCIE',)","56,540","7.5","Q1","4.69","10.42" +"ANAESTHESIA","0003-2409","1365-2044","ANESTHESIOLOGY","('SCIE',)","13,531","7.5","Q1","3.23","32.60" +"INTERNATIONAL JOURNAL OF NURSING STUDIES","0020-7489","1873-491X","NURSING","('SCIE', 'SSCI')","15,674","7.5","Q1","3.05","28.00" +"IEEE Transactions on Big Data","2332-7790","2332-7790","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","2,552","7.5","('Q1', 'Q1')","2.48","11.22" +"International Review of Financial Analysis","1057-5219","1873-8079","BUSINESS, FINANCE","('SSCI',)","12,148","7.5","Q1","2.32","15.10" +"BASIC RESEARCH IN CARDIOLOGY","0300-8428","1435-1803","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","5,180","7.5","Q1","2.15","71.34" +"IEEE TRANSACTIONS ON INDUSTRIAL ELECTRONICS","0278-0046","1557-9948","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE', 'SCIE')","89,067","7.5","('Q1', 'Q1', 'Q1')","2.07","2.75" +"NBER Macroeconomics Annual","0889-3365","1537-2642","ECONOMICS","('SSCI',)","766","7.5","Q1","2.00","0.00" +"INTERNATIONAL JOURNAL OF ROBOTICS RESEARCH","0278-3649","1741-3176","ROBOTICS","('SCIE',)","14,449","7.5","Q1","1.89","18.50" +"IEEE TRANSACTIONS ON GEOSCIENCE AND REMOTE SENSING","0196-2892","1558-0644","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'GEOCHEMISTRY & GEOPHYSICS', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","81,090","7.5","('Q1', 'Q1', 'Q1', 'Q1')","1.88","6.82" +"GENES & DEVELOPMENT","0890-9369","1549-5477","('CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","46,711","7.5","('Q1', 'Q1', 'Q1')","1.86","98.19" +"RESEARCH POLICY","0048-7333","1873-7625","MANAGEMENT","('SSCI',)","33,039","7.5","Q1","1.86","43.09" +"ENGINEERING APPLICATIONS OF ARTIFICIAL INTELLIGENCE","0952-1976","1873-6769","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","21,867","7.5","('Q1', 'Q1', 'Q1', 'Q1')","1.81","11.50" +"Digital Communications and Networks","2468-5925","2352-8648","TELECOMMUNICATIONS","('SCIE',)","2,751","7.5","Q1","1.78","97.25" +"European Management Journal","0263-2373","1873-5681","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","6,787","7.5","('Q1', 'Q1')","1.61","26.13" +"EXPERT SYSTEMS WITH APPLICATIONS","0957-4174","1873-6793","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","81,232","7.5","('Q1', 'Q1', 'Q1')","1.61","10.01" +"PATTERN RECOGNITION","0031-3203","1873-5142","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","39,448","7.5","('Q1', 'Q1')","1.58","10.02" +"NEUROSCIENCE AND BIOBEHAVIORAL REVIEWS","0149-7634","1873-7528","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES')","('SCIE', 'SCIE')","40,527","7.5","('Q1', 'Q1')","1.49","40.56" +"INTERNATIONAL JOURNAL OF MANAGEMENT REVIEWS","1460-8545","1468-2370","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","6,706","7.5","('Q1', 'Q1')","1.35","52.58" +"CHINESE MEDICAL JOURNAL","0366-6999","2542-5641","MEDICINE, GENERAL & INTERNAL","('SCIE',)","13,086","7.5","Q1","1.31","99.42" +"Cell Reports","2211-1247","2211-1247","CELL BIOLOGY","('SCIE',)","93,625","7.5","Q1","1.29","92.26" +"Communications Materials","","2662-4443","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","2,647","7.5","Q1","1.27","100.00" +"ChemSusChem","1864-5631","1864-564X","('CHEMISTRY, MULTIDISCIPLINARY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","38,697","7.5","('Q1', 'Q1')","1.11","24.93" +"Applied Surface Science Advances","2666-5239","2666-5239","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, COATINGS & FILMS', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","2,439","7.5","('Q1', 'Q1', 'Q1', 'Q1')","1.04","95.69" +"CURRENT OPINION IN PSYCHIATRY","0951-7367","1473-6578","PSYCHIATRY","('SCIE', 'SSCI')","6,055","7.5","Q1","0.91","12.63" +"IMMUNOLOGICAL REVIEWS","0105-2896","1600-065X","IMMUNOLOGY","('SCIE',)","18,599","7.5","Q1","0.90","29.51" +"Annual Review of Statistics and Its Application","2326-8298","2326-831X","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","1,686","7.4","('Q1', 'Q1')","3.07","40.54" +"Finance Research Letters","1544-6123","1544-6131","BUSINESS, FINANCE","('SSCI',)","20,673","7.4","Q1","2.73","10.74" +"CURRENT DIRECTIONS IN PSYCHOLOGICAL SCIENCE","0963-7214","1467-8721","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","15,885","7.4","Q1","2.49","23.04" +"INFORMATION PROCESSING & MANAGEMENT","0306-4573","1873-5371","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SCIE', 'SSCI')","11,618","7.4","('Q1', 'Q1')","2.19","12.75" +"SERVICE INDUSTRIES JOURNAL","0264-2069","1743-9507","MANAGEMENT","('SSCI',)","4,544","7.4","Q1","2.02","6.86" +"LONG RANGE PLANNING","0024-6301","1873-1872","('BUSINESS', 'DEVELOPMENT STUDIES', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","8,443","7.4","('Q1', 'Q1', 'Q1')","2.00","33.33" +"IEEE Transactions on Cognitive Communications and Networking","2332-7731","2332-7731","TELECOMMUNICATIONS","('SCIE',)","4,174","7.4","Q1","1.99","7.48" +"Current Environmental Health Reports","","2196-5412","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","3,261","7.4","Q1","1.89","33.04" +"MOVEMENT DISORDERS","0885-3185","1531-8257","CLINICAL NEUROLOGY","('SCIE',)","32,145","7.4","Q1","1.89","42.96" +"ARTERIOSCLEROSIS THROMBOSIS AND VASCULAR BIOLOGY","1079-5642","1524-4636","('HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","34,056","7.4","('Q1', 'Q1')","1.77","20.65" +"Blood Advances","2473-9529","2473-9537","HEMATOLOGY","('SCIE',)","20,123","7.4","Q1","1.74","96.87" +"CORROSION SCIENCE","0010-938X","1879-0496","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","63,762","7.4","('Q1', 'Q1')","1.66","13.94" +"INTERNATIONAL JOURNAL OF PROJECT MANAGEMENT","0263-7863","1873-4634","MANAGEMENT","('SSCI',)","11,423","7.4","Q1","1.66","36.65" +"Journal of Enterprise Information Management","1741-0398","1758-7409","('INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SSCI', 'SSCI')","4,038","7.4","('Q1', 'Q1')","1.51","1.90" +"CNS DRUGS","1172-7047","1179-1934","('CLINICAL NEUROLOGY', 'PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","6,454","7.4","('Q1', 'Q1', 'Q1')","1.46","53.78" +"Construction and Building Materials","0950-0618","1879-0526","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","228,428","7.4","('Q1', 'Q1', 'Q1')","1.43","8.67" +"Food Frontiers","","2643-8429","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","1,416","7.4","Q1","1.36","89.38" +"BRITISH MEDICAL BULLETIN","0007-1420","1471-8391","MEDICINE, GENERAL & INTERNAL","('SCIE',)","5,253","7.4","Q1","1.32","35.96" +"JOURNAL OF CELL BIOLOGY","0021-9525","1540-8140","CELL BIOLOGY","('SCIE',)","59,898","7.4","Q1","1.08","94.29" +"Business & Information Systems Engineering","2363-7005","1867-0202","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","3,139","7.4","Q1","1.06","75.00" +"Journal of Traffic and Transportation Engineering-English Edition","2095-7564","2095-7564","('ENGINEERING, CIVIL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","2,246","7.4","('Q1', 'Q1')","1.01","98.88" +"Journal of Environmental Chemical Engineering","2213-2929","2213-3437","('ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL')","('SCIE', 'SCIE')","63,635","7.4","('Q1', 'Q1')","0.94","7.70" +"PROGRESS IN QUANTUM ELECTRONICS","0079-6727","1873-1627","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'PHYSICS, APPLIED', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,789","7.4","('Q1', 'Q1', 'Q1', 'Q1')","0.85","44.44" +"SCIENCE AND TECHNOLOGY OF ADVANCED MATERIALS","1468-6996","1878-5514","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","7,058","7.4","Q1","0.85","96.09" +"SEMINARS IN IMMUNOLOGY","1044-5323","1096-3618","IMMUNOLOGY","('SCIE',)","7,034","7.4","Q1","0.77","41.71" +"ACS ES&T Engineering","","2690-0645","ENGINEERING, ENVIRONMENTAL","('ESCI',)","2,981","7.4","Q1","0.72","5.33" +"TRENDS IN CARDIOVASCULAR MEDICINE","1050-1738","1873-2615","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","4,023","7.3","Q1","2.26","16.67" +"EUROPEAN JOURNAL OF INFORMATION SYSTEMS","0960-085X","1476-9344","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SCIE', 'SSCI', 'SSCI')","5,681","7.3","('Q1', 'Q1', 'Q1')","2.11","26.39" +"JOURNAL OF HEADACHE AND PAIN","1129-2369","1129-2377","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","8,166","7.3","('Q1', 'Q1')","1.92","99.56" +"Tourism Management Perspectives","2211-9736","2211-9744","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'MANAGEMENT')","('SSCI', 'SSCI')","6,626","7.3","('Q1', 'Q1')","1.86","17.13" +"JOURNAL OF CLINICAL EPIDEMIOLOGY","0895-4356","1878-5921","('HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","41,985","7.3","('Q1', 'Q1')","1.77","40.45" +"PHYTOCHEMISTRY REVIEWS","1568-7767","1572-980X","PLANT SCIENCES","('SCIE',)","5,443","7.3","Q1","1.77","28.48" +"Tourism Review","1660-5373","1759-8451","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","3,735","7.3","Q1","1.73","4.30" +"Earths Future","","2328-4277","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE')","8,605","7.3","('Q1', 'Q1', 'Q1')","1.69","78.77" +"TRANSPORTATION RESEARCH PART D-TRANSPORT AND ENVIRONMENT","1361-9209","1879-2340","('ENVIRONMENTAL STUDIES', 'TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SSCI', 'SSCI', 'SCIE')","20,643","7.3","('Q1', 'Q1', 'Q1')","1.63","31.84" +"International Soil and Water Conservation Research","2095-6339","2589-059X","('ENVIRONMENTAL SCIENCES', 'SOIL SCIENCE', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","3,057","7.3","('Q1', 'Q1', 'Q1')","1.59","89.47" +"Science China-Information Sciences","1674-733X","1869-1919","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","7,406","7.3","('Q1', 'Q1')","1.50","1.15" +"Microsystems & Nanoengineering","2055-7434","2055-7434","('INSTRUMENTS & INSTRUMENTATION', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","4,573","7.3","('Q1', 'Q1')","1.36","100.00" +"Journal of Manufacturing Technology Management","1741-038X","1758-7786","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING', 'MANAGEMENT')","('SCIE', 'SCIE', 'SSCI')","4,581","7.3","('Q1', 'Q1', 'Q1')","1.31","16.83" +"QJM-AN INTERNATIONAL JOURNAL OF MEDICINE","1460-2725","1460-2393","MEDICINE, GENERAL & INTERNAL","('SCIE',)","6,657","7.3","Q1","1.19","23.83" +"CRITICAL REVIEWS IN FOOD SCIENCE AND NUTRITION","1040-8398","1549-7852","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","38,952","7.3","('Q1', 'Q1')","0.96","8.45" +"PROGRESS IN NUCLEAR MAGNETIC RESONANCE SPECTROSCOPY","0079-6565","1873-3301","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE')","2,664","7.3","('Q2', 'Q1', 'Q1')","0.84","50.00" +"ANNUAL REVIEWS IN CONTROL","1367-5788","1872-9088","AUTOMATION & CONTROL SYSTEMS","('SCIE',)","4,802","7.3","Q1","0.72","43.29" +"Research Integrity and Peer Review","","2058-8615","('ETHICS', 'HISTORY & PHILOSOPHY OF SCIENCE')","('ESCI', 'ESCI')","866","7.2","('Q1', 'Q1')","3.00","100.00" +"GENDER & SOCIETY","0891-2432","1552-3977","('SOCIOLOGY', 'WOMENS STUDIES')","('SSCI', 'SSCI')","7,179","7.2","('Q1', 'Q1')","2.92","34.91" +"International Forum of Allergy & Rhinology","2042-6976","2042-6984","OTORHINOLARYNGOLOGY","('SCIE',)","6,031","7.2","Q1","2.89","19.86" +"Social Issues and Policy Review","1751-2395","1751-2409","('PSYCHOLOGY, SOCIAL', 'SOCIAL ISSUES')","('SSCI', 'SSCI')","1,144","7.2","('Q1', 'Q1')","2.55","37.50" +"Osteoarthritis and Cartilage","1063-4584","1522-9653","('ORTHOPEDICS', 'RHEUMATOLOGY')","('SCIE', 'SCIE')","20,190","7.2","('Q1', 'Q1')","2.18","83.56" +"Particle and Fibre Toxicology","1743-8977","1743-8977","TOXICOLOGY","('SCIE',)","5,436","7.2","Q1","2.18","100.00" +"Academy of Management Perspectives","1558-9080","","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","5,412","7.2","('Q1', 'Q1')","2.00","0.00" +"ECONOMIC GEOGRAPHY","0013-0095","1944-8287","('ECONOMICS', 'GEOGRAPHY')","('SSCI', 'SSCI')","5,028","7.2","('Q1', 'Q1')","1.95","49.25" +"IEEE TRANSACTIONS ON COMMUNICATIONS","0090-6778","1558-0857","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","28,699","7.2","('Q1', 'Q1')","1.88","9.44" +"Gondwana Research","1342-937X","1878-0571","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","19,154","7.2","Q1","1.84","10.75" +"JOURNAL OF CORPORATE FINANCE","0929-1199","1872-6313","BUSINESS, FINANCE","('SSCI',)","16,447","7.2","Q1","1.80","13.67" +"COMPUTER PHYSICS COMMUNICATIONS","0010-4655","1879-2944","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","31,337","7.2","('Q1', 'Q1')","1.75","36.44" +"EMERGING INFECTIOUS DISEASES","1080-6040","1080-6059","('IMMUNOLOGY', 'INFECTIOUS DISEASES')","('SCIE', 'SCIE')","34,317","7.2","('Q1', 'Q1')","1.68","96.14" +"IEEE Transactions on Transportation Electrification","2332-7782","2332-7782","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","10,253","7.2","('Q1', 'Q1')","1.64","4.44" +"International Journal of Logistics Management","0957-4093","1758-6550","MANAGEMENT","('SSCI',)","4,438","7.2","Q1","1.63","11.79" +"PSYCHOLOGICAL INQUIRY","1047-840X","1532-7965","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","6,406","7.2","Q1","1.63","16.00" +"APPLIED SOFT COMPUTING","1568-4946","1872-9681","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","45,090","7.2","('Q1', 'Q1')","1.50","7.05" +"REVISTA ESPANOLA DE CARDIOLOGIA","","1885-5857","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","4,515","7.2","Q1","1.43","5.67" +"KNOWLEDGE-BASED SYSTEMS","0950-7051","1872-7409","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","38,664","7.2","Q1","1.40","8.59" +"Applied Materials Today","2352-9407","2352-9407","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","13,309","7.2","Q1","1.39","17.55" +"JOURNAL OF CLINICAL IMMUNOLOGY","0271-9142","1573-2592","IMMUNOLOGY","('SCIE',)","7,180","7.2","Q1","1.32","48.68" +"CHEMISTRY OF MATERIALS","0897-4756","1520-5002","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","113,115","7.2","('Q2', 'Q1')","1.29","12.98" +"EUROPEAN PSYCHIATRY","0924-9338","1778-3585","PSYCHIATRY","('SCIE', 'SSCI')","7,478","7.2","Q1","1.29","99.59" +"Future Foods","2666-8335","2666-8335","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","1,387","7.2","Q1","1.24","90.87" +"Water Research X","","2589-9147","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","1,057","7.2","('Q1', 'Q1', 'Q1')","1.18","95.24" +"Journal of CO2 Utilization","2212-9820","2212-9839","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","15,968","7.2","('Q1', 'Q1')","1.14","37.23" +"FUEL PROCESSING TECHNOLOGY","0378-3820","1873-7188","('CHEMISTRY, APPLIED', 'ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE', 'SCIE')","26,426","7.2","('Q1', 'Q1', 'Q1')","1.10","14.02" +"ACM Transactions on Intelligent Systems and Technology","2157-6904","2157-6912","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","5,686","7.2","('Q1', 'Q1')","1.08","1.69" +"QUARTERLY REVIEWS OF BIOPHYSICS","0033-5835","1469-8994","BIOPHYSICS","('SCIE',)","2,135","7.2","Q1","1.00","69.57" +"AMERICAN SOCIOLOGICAL REVIEW","0003-1224","1939-8271","SOCIOLOGY","('SSCI',)","24,016","7.1","Q1","3.62","23.85" +"CLINICAL CHEMISTRY","0009-9147","1530-8561","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","23,544","7.1","Q1","2.82","38.44" +"MODERN PATHOLOGY","0893-3952","1530-0285","PATHOLOGY","('SCIE',)","17,776","7.1","Q1","2.53","61.62" +"Photoacoustics","2213-5979","2213-5979","('ENGINEERING, BIOMEDICAL', 'INSTRUMENTS & INSTRUMENTATION', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","2,673","7.1","('Q1', 'Q1', 'Q1')","2.11","92.60" +"INTERNATIONAL JOURNAL OF MECHANICAL SCIENCES","0020-7403","1879-2162","('ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE')","35,184","7.1","('Q1', 'Q1')","1.91","9.45" +"INTERNATIONAL JOURNAL OF OPERATIONS & PRODUCTION MANAGEMENT","0144-3577","1758-6593","MANAGEMENT","('SSCI',)","9,573","7.1","Q1","1.81","19.61" +"Cellular and Molecular Gastroenterology and Hepatology","2352-345X","2352-345X","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","5,730","7.1","Q1","1.74","75.23" +"ECOLOGICAL MONOGRAPHS","0012-9615","1557-7015","ECOLOGY","('SCIE',)","12,052","7.1","Q1","1.72","41.86" +"European Research on Management and Business Economics","2444-8834","2444-8842","('BUSINESS', 'ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","1,026","7.1","('Q1', 'Q1', 'Q1')","1.67","96.47" +"BMJ Global Health","2059-7908","2059-7908","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","13,738","7.1","Q1","1.66","99.57" +"FREE RADICAL BIOLOGY AND MEDICINE","0891-5849","1873-4596","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","51,005","7.1","('Q1', 'Q1')","1.64","29.78" +"Journal of Cheminformatics","1758-2946","1758-2946","('CHEMISTRY, MULTIDISCIPLINARY', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE', 'SCIE')","9,430","7.1","('Q1', 'Q1', 'Q1')","1.54","100.00" +"COMPUTERS ENVIRONMENT AND URBAN SYSTEMS","0198-9715","1873-7587","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI', 'SSCI')","6,641","7.1","('Q1', 'Q1', 'Q1')","1.49","38.82" +"Electronic Markets","1019-6781","1422-8890","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","3,253","7.1","('Q1', 'Q1')","1.43","62.63" +"Stem Cell Research & Therapy","","1757-6512","('CELL & TISSUE ENGINEERING', 'CELL BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","24,357","7.1","('Q1', 'Q1', 'Q1')","1.39","99.86" +"ESMO Open","","2059-7029","ONCOLOGY","('SCIE',)","6,017","7.1","Q1","1.38","81.13" +"Energy Conversion and Management-X","2590-1745","2590-1745","('ENERGY & FUELS', 'MECHANICS', 'THERMODYNAMICS')","('ESCI', 'ESCI', 'ESCI')","2,288","7.1","('Q1', 'Q1', 'Q1')","1.31","98.58" +"ACS Sustainable Chemistry & Engineering","2168-0485","2168-0485","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","95,522","7.1","('Q1', 'Q1', 'Q1')","1.27","9.40" +"BUILDING AND ENVIRONMENT","0360-1323","1873-684X","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'ENGINEERING, ENVIRONMENTAL')","('SCIE', 'SCIE', 'SCIE')","55,605","7.1","('Q1', 'Q1', 'Q1')","1.24","20.18" +"Sustainable Energy Technologies and Assessments","2213-1388","2213-1396","('ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","18,841","7.1","('Q1', 'Q1')","1.22","7.14" +"Materials Today Sustainability","2589-2347","2589-2347","('GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,627","7.1","('Q1', 'Q1')","1.14","8.55" +"Waste Management","0956-053X","1879-2456","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","50,128","7.1","('Q1', 'Q1')","1.13","20.07" +"CURRENT OPINION IN BIOTECHNOLOGY","0958-1669","1879-0429","('BIOCHEMICAL RESEARCH METHODS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE')","18,270","7.1","('Q1', 'Q1')","1.05","44.30" +"Topics in Current Chemistry","2365-0869","2364-8961","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","6,449","7.1","Q1","0.60","16.79" +"Lancet Regional Health-Americas","2667-193X","2667-193X","('HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","2,319","7.0","('Q1', 'Q1')","2.93","91.80" +"IEEE Transactions on Dependable and Secure Computing","1545-5971","1941-0018","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE', 'SCIE')","7,158","7.0","('Q1', 'Q1', 'Q1')","2.50","14.35" +"INVESTIGATIVE RADIOLOGY","0020-9996","1536-0210","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","7,033","7.0","Q1","2.45","17.77" +"INTERNATIONAL JOURNAL OF ROCK MECHANICS AND MINING SCIENCES","1365-1609","1873-4545","('ENGINEERING, GEOLOGICAL', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE')","34,054","7.0","('Q1', 'Q1')","2.19","16.33" +"BMC Medicine","1741-7015","1741-7015","MEDICINE, GENERAL & INTERNAL","('SCIE',)","26,282","7.0","Q1","1.88","100.00" +"COMPUTERS IN BIOLOGY AND MEDICINE","0010-4825","1879-0534","('BIOLOGY', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, BIOMEDICAL', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","26,685","7.0","('Q1', 'Q1', 'Q1', 'Q1')","1.80","19.90" +"Ecological Indicators","1470-160X","1872-7034","ENVIRONMENTAL SCIENCES","('SCIE',)","58,287","7.0","Q1","1.65","97.33" +"Molecular Metabolism","2212-8778","2212-8778","ENDOCRINOLOGY & METABOLISM","('SCIE',)","10,607","7.0","Q1","1.61","95.01" +"Annual Review of Biomedical Data Science","2574-3414","2574-3414","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('ESCI',)","536","7.0","Q1","1.60","40.68" +"MIS QUARTERLY","0276-7783","","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SCIE', 'SSCI', 'SSCI')","28,287","7.0","('Q1', 'Q1', 'Q1')","1.58","4.23" +"Smart Cities","","2624-6511","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'URBAN STUDIES')","('ESCI', 'ESCI')","1,804","7.0","('Q1', 'Q1')","1.57","98.74" +"Petroleum Exploration and Development","2096-4803","1876-3804","('ENERGY & FUELS', 'ENGINEERING, PETROLEUM', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","8,376","7.0","('Q1', 'Q1', 'Q1')","1.55","92.53" +"JOURNAL OF MANAGEMENT STUDIES","0022-2380","1467-6486","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","16,196","7.0","('Q1', 'Q1')","1.54","58.36" +"FOOD RESEARCH INTERNATIONAL","0963-9969","1873-7145","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","62,583","7.0","Q1","1.51","16.13" +"Journal of the Association for Information Systems","1536-9323","1558-3457","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SCIE', 'SSCI')","5,165","7.0","('Q1', 'Q1')","1.49","0.00" +"Aging and Disease","2152-5250","2152-5250","GERIATRICS & GERONTOLOGY","('SCIE',)","6,217","7.0","Q1","1.35","89.82" +"INTERNATIONAL JOURNAL OF PRODUCTION RESEARCH","0020-7543","1366-588X","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","33,702","7.0","('Q1', 'Q1', 'Q1')","1.33","12.05" +"TRENDS IN PARASITOLOGY","1471-4922","1471-5007","PARASITOLOGY","('SCIE',)","7,953","7.0","Q1","1.07","40.19" +"CHEMICAL RECORD","1527-8999","1528-0691","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","7,612","7.0","Q1","0.88","12.34" +"Chinese Journal of Cancer Research","1000-9604","1993-0631","ONCOLOGY","('SCIE',)","2,963","7.0","Q1","0.84","94.30" +"Journal of Physics-Energy","2515-7655","2515-7655","('ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,879","7.0","('Q1', 'Q1')","0.82","98.80" +"RUSSIAN CHEMICAL REVIEWS","0036-021X","1468-4837","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","4,369","7.0","Q1","0.53","0.00" +"JOURNAL OF POLITICAL ECONOMY","0022-3808","1537-534X","ECONOMICS","('SSCI',)","32,285","6.9","Q1","2.54","6.69" +"INTERNATIONAL JOURNAL OF FORECASTING","0169-2070","1872-8200","('ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI')","9,042","6.9","('Q1', 'Q1')","2.45","24.46" +"Financial Innovation","","2199-4730","('BUSINESS, FINANCE', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","2,676","6.9","('Q1', 'Q1')","2.41","99.64" +"JOURNAL OF ECONOMIC PERSPECTIVES","0895-3309","1944-7965","ECONOMICS","('SSCI',)","19,074","6.9","Q1","2.38","85.37" +"COMPUTER METHODS IN APPLIED MECHANICS AND ENGINEERING","0045-7825","1879-2138","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","48,296","6.9","('Q1', 'Q1', 'Q1')","2.12","33.94" +"ENGINEERING GEOLOGY","0013-7952","1872-6917","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","32,261","6.9","('Q1', 'Q1')","1.85","16.39" +"HYPERTENSION","0194-911X","1524-4563","PERIPHERAL VASCULAR DISEASE","('SCIE',)","39,740","6.9","Q1","1.81","17.97" +"Operations Management Research","1936-9735","1936-9743","MANAGEMENT","('SSCI',)","1,884","6.9","Q1","1.77","20.64" +"INFORMATION SYSTEMS FRONTIERS","1387-3326","1572-9419","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","5,417","6.9","('Q1', 'Q1')","1.66","37.43" +"Blockchain-Research and Applications","2096-7209","2096-7209","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('ESCI', 'ESCI')","483","6.9","('Q1', 'Q1')","1.64","96.04" +"IEEE Journal of Microwaves","","2692-8388","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","1,063","6.9","Q1","1.64","99.11" +"International Journal of Coal Science & Technology","2095-8293","2198-7823","('ENERGY & FUELS', 'MINING & MINERAL PROCESSING')","('ESCI', 'ESCI')","2,452","6.9","('Q2', 'Q1')","1.60","100.00" +"Journal of Sustainable Tourism","0966-9582","1747-7646","('GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'HOSPITALITY, LEISURE, SPORT & TOURISM')","('SSCI', 'SSCI')","11,974","6.9","('Q2', 'Q1')","1.60","26.10" +"BULLETIN OF THE AMERICAN METEOROLOGICAL SOCIETY","0003-0007","1520-0477","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","26,367","6.9","Q1","1.58","9.92" +"BIOMEDICINE & PHARMACOTHERAPY","0753-3322","1950-6007","('MEDICINE, RESEARCH & EXPERIMENTAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","66,180","6.9","('Q1', 'Q1')","1.57","96.76" +"MAYO CLINIC PROCEEDINGS","0025-6196","1942-5546","MEDICINE, GENERAL & INTERNAL","('SCIE',)","20,213","6.9","Q1","1.56","30.70" +"REVIEWS IN ENDOCRINE & METABOLIC DISORDERS","1389-9155","1573-2606","ENDOCRINOLOGY & METABOLISM","('SCIE',)","4,661","6.9","Q1","1.53","41.77" +"Cleaner Logistics and Supply Chain","2772-3909","2772-3909","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","654","6.9","Q1","1.51","94.49" +"npj Vaccines","","2059-0105","('IMMUNOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","3,923","6.9","('Q1', 'Q1')","1.51","100.00" +"Energy Research & Social Science","2214-6296","2214-6326","ENVIRONMENTAL STUDIES","('SSCI',)","17,963","6.9","Q1","1.48","48.47" +"ONCOGENE","0950-9232","1476-5594","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'GENETICS & HEREDITY', 'ONCOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","63,616","6.9","('Q1', 'Q1', 'Q1', 'Q1')","1.47","39.26" +"ACTA PHARMACOLOGICA SINICA","1671-4083","1745-7254","('CHEMISTRY, MULTIDISCIPLINARY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","15,928","6.9","('Q1', 'Q1')","1.43","11.43" +"JOURNAL OF GASTROENTEROLOGY","0944-1174","1435-5922","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","8,523","6.9","Q1","1.29","32.44" +"ARCHIVES OF PHARMACAL RESEARCH","0253-6269","1976-3786","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","8,491","6.9","('Q1', 'Q1')","1.27","9.24" +"Cold Spring Harbor Perspectives in Biology","1943-0264","1943-0264","CELL BIOLOGY","('SCIE',)","22,617","6.9","Q1","1.26","0.00" +"CSEE Journal of Power and Energy Systems","2096-0042","2096-0042","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","4,299","6.9","('Q2', 'Q1')","1.26","98.36" +"Genes & Diseases","2352-4820","2352-3042","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","3,994","6.9","('Q1', 'Q1')","1.24","98.63" +"BLOOD REVIEWS","0268-960X","1532-1681","HEMATOLOGY","('SCIE',)","5,016","6.9","Q1","1.22","27.59" +"MASS SPECTROMETRY REVIEWS","0277-7037","1098-2787","SPECTROSCOPY","('SCIE',)","4,647","6.9","Q1","1.15","22.01" +"PROCESS SAFETY AND ENVIRONMENTAL PROTECTION","0957-5820","1744-3598","('ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL')","('SCIE', 'SCIE')","28,230","6.9","('Q1', 'Q1')","0.96","5.50" +"CURRENT OPINION IN CHEMICAL BIOLOGY","1367-5931","1879-0402","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","10,868","6.9","('Q1', 'Q1')","0.90","41.27" +"Wiley Interdisciplinary Reviews-Nanomedicine and Nanobiotechnology","1939-5116","1939-0041","('MEDICINE, RESEARCH & EXPERIMENTAL', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","5,056","6.9","('Q1', 'Q1')","0.68","15.89" +"Alcohol Research-Current Reviews","1535-7414","1930-0573","SUBSTANCE ABUSE","('SSCI',)","1,972","6.8","Q1","2.51","0.00" +"REVIEW OF FINANCIAL STUDIES","0893-9454","1465-7368","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","27,862","6.8","('Q1', 'Q1')","2.33","16.71" +"JOURNAL OF INTERACTIVE MARKETING","1094-9968","1520-6653","BUSINESS","('SSCI',)","5,257","6.8","Q1","2.20","13.73" +"Annual Review of Economics","1941-1383","1941-1391","ECONOMICS","('SSCI',)","3,825","6.8","Q1","2.08","37.65" +"JOURNAL OF MEDICINAL CHEMISTRY","0022-2623","1520-4804","CHEMISTRY, MEDICINAL","('SCIE',)","88,110","6.8","Q1","2.04","13.77" +"BRIEFINGS IN BIOINFORMATICS","1467-5463","1477-4054","('BIOCHEMICAL RESEARCH METHODS', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","21,549","6.8","('Q1', 'Q1')","1.97","24.06" +"IEEE NETWORK","0890-8044","1558-156X","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","9,808","6.8","('Q1', 'Q1', 'Q1', 'Q1')","1.96","0.00" +"METABOLIC ENGINEERING","1096-7176","1096-7184","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","10,451","6.8","Q1","1.84","45.66" +"FOOD POLICY","0306-9192","1873-5657","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS', 'FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SSCI', 'SCIE', 'SCIE')","10,467","6.8","('Q1', 'Q1', 'Q1', 'Q1')","1.83","50.12" +"BRITISH JOURNAL OF PHARMACOLOGY","0007-1188","1476-5381","PHARMACOLOGY & PHARMACY","('SCIE',)","36,780","6.8","Q1","1.71","44.88" +"Journal of Ginseng Research","1226-8453","2093-4947","('CHEMISTRY, MEDICINAL', 'INTEGRATIVE & COMPLEMENTARY MEDICINE')","('SCIE', 'SCIE')","4,071","6.8","('Q1', 'Q1')","1.68","98.39" +"JOURNAL OF MEDICAL VIROLOGY","0146-6615","1096-9071","VIROLOGY","('SCIE',)","23,212","6.8","Q1","1.67","20.81" +"Annals of the American Thoracic Society","1546-3222","2325-6621","RESPIRATORY SYSTEM","('SCIE',)","10,740","6.8","Q1","1.64","17.15" +"Plant Stress","2667-064X","2667-064X","PLANT SCIENCES","('ESCI',)","989","6.8","Q1","1.63","98.03" +"npj Precision Oncology","","2397-768X","ONCOLOGY","('SCIE',)","2,673","6.8","Q1","1.61","99.69" +"Journal of Purchasing and Supply Management","1478-4092","1873-6505","MANAGEMENT","('SSCI',)","2,615","6.8","Q1","1.60","30.12" +"Diabetes & Metabolism Journal","2233-6079","2233-6087","ENDOCRINOLOGY & METABOLISM","('SCIE',)","3,267","6.8","Q1","1.36","100.00" +"Journal of Xenobiotics","2039-4705","2039-4713","TOXICOLOGY","('ESCI',)","395","6.8","Q1","1.29","100.00" +"Science China-Materials","2095-8226","2199-4501","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","9,942","6.8","Q1","1.23","1.53" +"International Journal of Bioprinting","2424-7723","2424-8002","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","1,805","6.8","('Q1', 'Q1')","1.22","94.20" +"Child and Adolescent Mental Health","1475-357X","1475-3588","('PEDIATRICS', 'PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SCIE, SSCI', 'SSCI')","2,019","6.8","('Q1', 'Q1', 'Q1')","1.13","42.24" +"Advanced Intelligent Systems","","2640-4567","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ROBOTICS')","('SCIE', 'SCIE', 'SCIE')","5,670","6.8","('Q1', 'Q1', 'Q1')","1.11","86.43" +"Wiley Interdisciplinary Reviews-Water","2049-1948","2049-1948","('ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE')","4,304","6.8","('Q1', 'Q1')","1.07","45.60" +"Geochemical Perspectives","2223-7755","2224-2759","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","164","6.8","Q1","0.94","33.33" +"Journal of the American Nutrition Association","2769-7061","2769-707X","NUTRITION & DIETETICS","('SCIE',)","371","6.8","Q1","0.41","9.66" +"BRITISH JOURNAL OF EDUCATIONAL TECHNOLOGY","0007-1013","1467-8535","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","8,271","6.7","Q1","3.36","35.53" +"Smart Learning Environments","","2196-7091","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,359","6.7","Q1","3.04","100.00" +"IEEE Transactions on Network Science and Engineering","2327-4697","2327-4697","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","7,033","6.7","('Q1', 'Q1')","2.42","9.55" +"PHYTOMEDICINE","0944-7113","1618-095X","('CHEMISTRY, MEDICINAL', 'INTEGRATIVE & COMPLEMENTARY MEDICINE', 'PHARMACOLOGY & PHARMACY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","22,347","6.7","('Q1', 'Q1', 'Q1', 'Q1')","2.03","14.06" +"IEEE Journal of Biomedical and Health Informatics","2168-2194","2168-2208","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","16,954","6.7","('Q1', 'Q1', 'Q1', 'Q1')","1.96","14.17" +"npj Parkinsons Disease","","2373-8057","NEUROSCIENCES","('SCIE',)","3,417","6.7","Q1","1.90","99.77" +"European Heart Journal-Cardiovascular Imaging","2047-2404","2047-2412","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","10,763","6.7","('Q1', 'Q1')","1.79","24.87" +"ANALYTICAL CHEMISTRY","0003-2700","1520-6882","CHEMISTRY, ANALYTICAL","('SCIE',)","153,592","6.7","Q1","1.75","8.47" +"Current Opinion in Environmental Science & Health","2468-5844","2468-5844","ENVIRONMENTAL SCIENCES","('ESCI',)","3,096","6.7","Q1","1.64","21.16" +"OMEGA-INTERNATIONAL JOURNAL OF MANAGEMENT SCIENCE","0305-0483","1873-5274","('MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SSCI', 'SCIE')","13,376","6.7","('Q1', 'Q1')","1.64","16.14" +"GASTROINTESTINAL ENDOSCOPY","0016-5107","1097-6779","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","24,973","6.7","Q1","1.61","10.78" +"Journal of Tissue Engineering","2041-7314","2041-7314","CELL & TISSUE ENGINEERING","('SCIE',)","2,282","6.7","Q1","1.47","92.99" +"TUNNELLING AND UNDERGROUND SPACE TECHNOLOGY","0886-7798","1878-4364","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","28,854","6.7","('Q1', 'Q1')","1.46","5.14" +"JOURNAL OF CARDIAC FAILURE","1071-9164","1532-8414","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","6,923","6.7","Q1","1.45","17.58" +"DECISION SUPPORT SYSTEMS","0167-9236","1873-5797","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","13,405","6.7","('Q1', 'Q1', 'Q1')","1.43","16.44" +"Journal of Building Engineering","","2352-7102","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","42,234","6.7","('Q1', 'Q1')","1.39","9.79" +"R & D MANAGEMENT","0033-6807","1467-9310","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","4,848","6.7","('Q1', 'Q1')","1.33","52.10" +"Computers & Industrial Engineering","0360-8352","1879-0550","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, INDUSTRIAL')","('SCIE', 'SCIE')","32,853","6.7","('Q1', 'Q1')","1.29","7.86" +"International Journal of Optomechatronics","1559-9612","1559-9620","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MECHANICAL', 'OPTICS')","('SCIE', 'SCIE', 'SCIE')","278","6.7","('Q1', 'Q1', 'Q1')","1.29","96.30" +"MEDICAL JOURNAL OF AUSTRALIA","0025-729X","1326-5377","MEDICINE, GENERAL & INTERNAL","('SCIE',)","12,406","6.7","Q1","1.27","51.72" +"Environmental Technology & Innovation","2352-1864","2352-1864","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE')","15,209","6.7","('Q1', 'Q1', 'Q1')","1.24","58.42" +"Science Signaling","1945-0877","1937-9145","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","14,493","6.7","('Q1', 'Q1')","1.24","2.85" +"JOURNAL OF MATERIALS PROCESSING TECHNOLOGY","0924-0136","1873-4774","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","41,643","6.7","('Q1', 'Q1', 'Q1')","1.22","12.14" +"Materials Today Chemistry","2468-5194","2468-5194","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","9,979","6.7","('Q1', 'Q1')","1.21","10.01" +"CLINICAL SCIENCE","0143-5221","1470-8736","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","12,564","6.7","Q1","1.18","77.32" +"PROGRESS IN NEUROBIOLOGY","0301-0082","1873-5118","NEUROSCIENCES","('SCIE',)","14,042","6.7","Q1","1.17","52.29" +"Patterns","2666-3899","2666-3899","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('ESCI', 'ESCI', 'ESCI')","2,422","6.7","('Q1', 'Q1', 'Q1')","1.16","94.35" +"Fuel","0016-2361","1873-7153","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","142,821","6.7","('Q2', 'Q1')","1.11","9.41" +"Journal of Science-Advanced Materials and Devices","2468-2284","2468-2179","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","3,508","6.7","('Q1', 'Q1')","0.97","93.96" +"TRANSACTIONS OF TIANJIN UNIVERSITY","1006-4982","1995-8196","('ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","1,278","6.7","('Q2', 'Q1')","0.73","56.64" +"ACS Environmental Au","","2694-2518","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('ESCI', 'ESCI')","404","6.7","('Q1', 'Q1')","0.68","68.60" +"ECONOMETRICA","0012-9682","1468-0262","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","44,504","6.6","('Q1', 'Q1', 'Q1', 'Q1')","2.73","0.00" +"FERTILITY AND STERILITY","0015-0282","1556-5653","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","43,277","6.6","('Q1', 'Q1')","2.25","70.47" +"Photonics Research","2327-9125","2327-9125","OPTICS","('SCIE',)","10,523","6.6","Q1","2.09","0.22" +"GENETICS IN MEDICINE","1098-3600","1530-0366","GENETICS & HEREDITY","('SCIE',)","19,500","6.6","Q1","2.00","65.65" +"EPILEPSIA","0013-9580","1528-1167","CLINICAL NEUROLOGY","('SCIE',)","31,016","6.6","Q1","1.83","38.85" +"Journal of Knowledge Management","1367-3270","1758-7484","('INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SSCI', 'SSCI')","9,668","6.6","('Q1', 'Q1')","1.80","11.26" +"npj Quantum Information","","2056-6387","('PHYSICS, APPLIED', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'PHYSICS, CONDENSED MATTER', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,015","6.6","('Q1', 'Q1', 'Q1', 'Q1')","1.76","99.77" +"ALIMENTARY PHARMACOLOGY & THERAPEUTICS","0269-2813","1365-2036","('GASTROENTEROLOGY & HEPATOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","23,934","6.6","('Q1', 'Q1')","1.75","28.93" +"IEEE TRANSACTIONS ON POWER ELECTRONICS","0885-8993","1941-0107","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","75,364","6.6","Q1","1.72","4.95" +"Health Psychology Review","1743-7199","1743-7202","PSYCHOLOGY, CLINICAL","('SSCI',)","3,498","6.6","Q1","1.68","43.24" +"ACM TRANSACTIONS ON SOFTWARE ENGINEERING AND METHODOLOGY","1049-331X","1557-7392","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","2,430","6.6","Q1","1.66","6.00" +"NEUROPSYCHOPHARMACOLOGY","0893-133X","1740-634X","('NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","28,267","6.6","('Q1', 'Q1', 'Q1')","1.60","35.81" +"Journal of Behavioral Addictions","2062-5871","2063-5303","PSYCHIATRY","('SCIE', 'SSCI')","5,434","6.6","Q1","1.59","91.77" +"ECOLOGICAL ECONOMICS","0921-8009","1873-6106","('ECOLOGY', 'ECONOMICS', 'ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SSCI', 'SCIE', 'SSCI')","33,837","6.6","('Q1', 'Q1', 'Q1', 'Q1')","1.58","42.01" +"CLINICAL NUTRITION","0261-5614","1532-1983","NUTRITION & DIETETICS","('SCIE',)","24,557","6.6","Q1","1.50","30.27" +"Cell Chemical Biology","2451-9456","2451-9448","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","7,732","6.6","Q1","1.46","76.03" +"Evidence-Based Mental Health","1362-0347","1468-960X","PSYCHIATRY","('SCIE',)","2,252","6.6","Q1","1.46","63.49" +"RESPIROLOGY","1323-7799","1440-1843","RESPIRATORY SYSTEM","('SCIE',)","8,125","6.6","Q1","1.40","40.61" +"CRITICAL REVIEWS IN CLINICAL LABORATORY SCIENCES","1040-8363","1549-781X","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","3,172","6.6","Q1","1.32","18.75" +"International Journal of Nanomedicine","1178-2013","1178-2013","('NANOSCIENCE & NANOTECHNOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","39,713","6.6","('Q1', 'Q1')","1.29","98.45" +"ENERGY AND BUILDINGS","0378-7788","1872-6178","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENERGY & FUELS', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE', 'SCIE')","61,084","6.6","('Q1', 'Q2', 'Q1')","1.22","21.33" +"Journal of Genetics and Genomics","1673-8527","1873-5533","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","3,847","6.6","('Q1', 'Q1')","1.17","36.12" +"International Journal of Neural Systems","0129-0657","1793-6462","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","3,022","6.6","Q1","1.15","12.56" +"npj Materials Degradation","","2397-2106","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","2,229","6.6","Q1","1.05","99.59" +"Current Opinion in Environmental Sustainability","1877-3435","1877-3443","('ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","8,552","6.6","('Q1', 'Q2')","1.02","45.63" +"APL Bioengineering","2473-2877","2473-2877","ENGINEERING, BIOMEDICAL","('SCIE',)","1,444","6.6","Q1","0.91","93.26" +"Journal of Hazardous Materials Letters","2666-9110","2666-9110","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('ESCI', 'ESCI')","458","6.6","('Q1', 'Q1')","0.83","98.85" +"CURRENT OPINION IN IMMUNOLOGY","0952-7915","1879-0372","IMMUNOLOGY","('SCIE',)","9,701","6.6","Q1","0.75","35.29" +"Big Data & Society","2053-9517","2053-9517","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","4,260","6.5","Q1","3.15","91.73" +"SOCIOLOGICAL METHODS & RESEARCH","0049-1241","1552-8294","('SOCIAL SCIENCES, MATHEMATICAL METHODS', 'SOCIOLOGY')","('SSCI', 'SSCI')","7,645","6.5","('Q1', 'Q1')","2.98","21.43" +"IEEE TRANSACTIONS ON SOFTWARE ENGINEERING","0098-5589","1939-3520","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","10,392","6.5","('Q1', 'Q1')","2.26","18.37" +"DRUG DELIVERY","1071-7544","1521-0464","PHARMACOLOGY & PHARMACY","('SCIE',)","11,758","6.5","Q1","2.13","97.86" +"RESUSCITATION","0300-9572","1873-1570","('CRITICAL CARE MEDICINE', 'EMERGENCY MEDICINE')","('SCIE', 'SCIE')","17,915","6.5","('Q1', 'Q1')","2.01","25.41" +"PLANT PHYSIOLOGY","0032-0889","1532-2548","PLANT SCIENCES","('SCIE',)","93,096","6.5","Q1","1.96","38.60" +"Molecular Therapy Nucleic Acids","2162-2531","2162-2531","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","12,909","6.5","Q1","1.84","90.82" +"INFORMATION SYSTEMS JOURNAL","1350-1917","1365-2575","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","4,403","6.5","Q1","1.83","48.03" +"Circulation-Cardiovascular Imaging","1941-9651","1942-0080","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","7,458","6.5","('Q1', 'Q1')","1.72","20.30" +"IEEE TRANSACTIONS ON POWER SYSTEMS","0885-8950","1558-0679","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","47,145","6.5","Q1","1.70","14.05" +"HABITAT INTERNATIONAL","0197-3975","1873-5428","('DEVELOPMENT STUDIES', 'ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","10,674","6.5","('Q1', 'Q1', 'Q1', 'Q1')","1.68","17.12" +"JOURNAL OF CHILD PSYCHOLOGY AND PSYCHIATRY","0021-9630","1469-7610","('PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, DEVELOPMENTAL')","('SCIE, SSCI', 'SCIE', 'SSCI')","21,180","6.5","('Q1', 'Q1', 'Q1')","1.59","46.17" +"AMERICAN JOURNAL OF CLINICAL NUTRITION","0002-9165","1938-3207","NUTRITION & DIETETICS","('SCIE',)","54,430","6.5","Q1","1.56","86.07" +"Deutsches Arzteblatt International","1866-0452","1866-0452","MEDICINE, GENERAL & INTERNAL","('SCIE',)","8,614","6.5","Q1","1.56","0.00" +"STRATEGIC MANAGEMENT JOURNAL","0143-2095","1097-0266","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","44,941","6.5","('Q1', 'Q1')","1.56","35.38" +"INTERNATIONAL JOURNAL OF SUSTAINABLE DEVELOPMENT AND WORLD ECOLOGY","1350-4509","1745-2627","('ECOLOGY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","3,529","6.5","('Q1', 'Q2')","1.50","12.57" +"SMALL BUSINESS ECONOMICS","0921-898X","1573-0913","('BUSINESS', 'ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","13,841","6.5","('Q1', 'Q1', 'Q1')","1.50","49.79" +"Food Chemistry-X","2590-1575","2590-1575","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","3,640","6.5","('Q1', 'Q1')","1.40","95.23" +"ACS Photonics","2330-4022","","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'OPTICS', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","22,372","6.5","('Q1', 'Q2', 'Q1', 'Q1', 'Q1')","1.36","17.96" +"Case Studies in Construction Materials","2214-5095","2214-5095","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","12,515","6.5","('Q1', 'Q1', 'Q1')","1.34","90.46" +"npj Breast Cancer","","2374-4677","ONCOLOGY","('SCIE',)","3,423","6.5","Q1","1.34","100.00" +"JOURNAL OF OPERATIONS MANAGEMENT","0272-6963","1873-1317","('MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SSCI', 'SCIE')","11,113","6.5","('Q1', 'Q1')","1.32","30.70" +"OncoImmunology","2162-402X","2162-402X","('IMMUNOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","15,263","6.5","('Q1', 'Q1')","1.31","100.00" +"Frontiers of Physics","2095-0462","2095-0470","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","3,256","6.5","Q1","1.23","2.96" +"ADVANCES IN ATMOSPHERIC SCIENCES","0256-1530","1861-9533","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","6,801","6.5","Q1","1.22","18.08" +"PROGRESS IN ORGANIC COATINGS","0300-9440","1873-331X","('CHEMISTRY, APPLIED', 'MATERIALS SCIENCE, COATINGS & FILMS')","('SCIE', 'SCIE')","25,418","6.5","('Q1', 'Q1')","1.19","7.51" +"Georisk-Assessment and Management of Risk for Engineered Systems and Geohazards","1749-9518","1749-9526","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,296","6.5","('Q1', 'Q1')","1.18","15.79" +"Nanophotonics","2192-8606","2192-8614","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","12,901","6.5","('Q1', 'Q2', 'Q1', 'Q1')","1.18","98.02" +"Sensors and Actuators Reports","2666-0539","2666-0539","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CHEMISTRY, ANALYTICAL', 'ELECTROCHEMISTRY', 'INSTRUMENTS & INSTRUMENTATION', 'NANOSCIENCE & NANOTECHNOLOGY')","('ESCI', 'ESCI', 'ESCI', 'ESCI', 'ESCI')","896","6.5","('Q1', 'Q1', 'Q1', 'Q1', 'Q2')","1.17","100.00" +"Composites Communications","2452-2139","2452-2139","MATERIALS SCIENCE, COMPOSITES","('SCIE',)","8,641","6.5","Q1","1.16","4.26" +"EMBO REPORTS","1469-221X","1469-3178","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","20,112","6.5","('Q1', 'Q1')","1.10","54.55" +"JOURNAL OF CATALYSIS","0021-9517","1090-2694","('CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","49,197","6.5","('Q2', 'Q1')","1.07","21.33" +"FRONTIERS IN NEUROENDOCRINOLOGY","0091-3022","1095-6808","('ENDOCRINOLOGY & METABOLISM', 'NEUROSCIENCES')","('SCIE', 'SCIE')","5,195","6.5","('Q1', 'Q1')","1.06","33.82" +"DRUG DISCOVERY TODAY","1359-6446","1878-5832","PHARMACOLOGY & PHARMACY","('SCIE',)","20,665","6.5","Q1","1.05","25.12" +"Advanced Sustainable Systems","2366-7486","2366-7486","('GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","4,398","6.5","('Q2', 'Q1')","1.00","23.00" +"Biotechnology and Genetic Engineering Reviews","0264-8725","2046-5556","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","1,114","6.5","('Q1', 'Q1')","0.79","1.46" +"NEW CARBON MATERIALS","2097-1605","1872-5805","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","2,621","6.5","Q1","0.65","0.00" +"Internet and Higher Education","1096-7516","1873-5525","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","4,706","6.4","Q1","4.13","17.57" +"JOURNAL OF PERSONALITY AND SOCIAL PSYCHOLOGY","0022-3514","1939-1315","PSYCHOLOGY, SOCIAL","('SSCI',)","79,644","6.4","Q1","2.30","4.66" +"Translational Research","1931-5244","1878-1810","('MEDICAL LABORATORY TECHNOLOGY', 'MEDICINE, GENERAL & INTERNAL', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","6,757","6.4","('Q1', 'Q1', 'Q1')","2.17","34.15" +"JOURNAL OF HEART AND LUNG TRANSPLANTATION","1053-2498","1557-3117","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RESPIRATORY SYSTEM', 'SURGERY', 'TRANSPLANTATION')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","13,731","6.4","('Q1', 'Q1', 'Q1', 'Q1')","2.01","17.67" +"POSTHARVEST BIOLOGY AND TECHNOLOGY","0925-5214","1873-2356","('AGRONOMY', 'FOOD SCIENCE & TECHNOLOGY', 'HORTICULTURE')","('SCIE', 'SCIE', 'SCIE')","21,598","6.4","('Q1', 'Q1', 'Q1')","2.01","10.80" +"INTERNATIONAL JOURNAL OF EPIDEMIOLOGY","0300-5771","1464-3685","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","33,131","6.4","Q1","1.96","53.03" +"eLife","2050-084X","2050-084X","BIOLOGY","('SCIE',)","96,957","6.4","Q1","1.88","99.60" +"Science China-Physics Mechanics & Astronomy","1674-7348","1869-1927","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","5,755","6.4","Q1","1.67","2.61" +"Soft Robotics","2169-5172","2169-5180","ROBOTICS","('SCIE',)","5,530","6.4","Q1","1.61","10.27" +"INTERNATIONAL COMMUNICATIONS IN HEAT AND MASS TRANSFER","0735-1933","1879-0178","('MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","22,895","6.4","('Q1', 'Q1')","1.60","3.93" +"INTERNATIONAL JOURNAL OF RADIATION ONCOLOGY BIOLOGY PHYSICS","0360-3016","1879-355X","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","41,921","6.4","('Q1', 'Q1')","1.57","16.22" +"BRITISH JOURNAL OF CANCER","0007-0920","1532-1827","ONCOLOGY","('SCIE',)","49,098","6.4","Q1","1.46","52.36" +"Case Studies in Thermal Engineering","2214-157X","2214-157X","THERMODYNAMICS","('SCIE',)","18,072","6.4","Q1","1.38","96.85" +"Current Pollution Reports","2198-6592","2198-6592","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","2,159","6.4","('Q1', 'Q1')","1.33","19.66" +"Machine Intelligence Research","2731-538X","2731-5398","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE')","('ESCI', 'ESCI')","354","6.4","('Q1', 'Q1')","1.32","37.08" +"npj Regenerative Medicine","","2057-3995","('CELL & TISSUE ENGINEERING', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","2,128","6.4","('Q1', 'Q1')","1.28","99.54" +"Reviews in Fisheries Science & Aquaculture","2330-8249","2330-8257","FISHERIES","('SCIE',)","1,927","6.4","Q1","1.28","25.42" +"Advances in Climate Change Research","1674-9278","1674-9278","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","2,699","6.4","('Q1', 'Q1')","1.25","94.53" +"International Review of Sport and Exercise Psychology","1750-984X","1750-9858","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","2,170","6.4","('Q1', 'Q1')","1.15","37.11" +"Agronomy for Sustainable Development","1774-0746","1773-0155","('AGRONOMY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","10,023","6.4","('Q1', 'Q2')","1.12","58.89" +"Advanced Materials Technologies","2365-709X","2365-709X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","18,469","6.4","Q1","0.93","22.64" +"MUTATION RESEARCH-REVIEWS IN MUTATION RESEARCH","1383-5742","1388-2139","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,694","6.4","('Q1', 'Q1', 'Q1')","0.92","30.59" +"Carbon Resources Conversion","2588-9133","2588-9133","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('ESCI', 'ESCI')","1,054","6.4","('Q2', 'Q1')","0.90","95.51" +"JOURNAL OF TOXICOLOGY AND ENVIRONMENTAL HEALTH-PART B-CRITICAL REVIEWS","1093-7404","1521-6950","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,281","6.4","('Q1', 'Q1', 'Q1')","0.78","34.09" +"Wiley Interdisciplinary Reviews-Data Mining and Knowledge Discovery","1942-4787","1942-4795","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","4,096","6.4","('Q1', 'Q1')","0.73","22.22" +"Wiley Interdisciplinary Reviews-RNA","1757-7004","1757-7012","CELL BIOLOGY","('SCIE',)","4,050","6.4","Q1","0.73","34.16" +"Annual Review of Criminology","2572-4568","2572-4568","CRIMINOLOGY & PENOLOGY","('SSCI',)","902","6.3","Q1","4.30","36.21" +"Communication Methods and Measures","1931-2458","1931-2466","COMMUNICATION","('SSCI',)","2,189","6.3","Q1","4.00","46.43" +"PROGRESS IN HUMAN GEOGRAPHY","0309-1325","1477-0288","GEOGRAPHY","('SSCI',)","9,274","6.3","Q1","2.72","54.14" +"Journal of Animal Science and Biotechnology","1674-9782","2049-1891","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","5,803","6.3","Q1","2.44","99.76" +"Burns & Trauma","2321-3868","2321-3876","('DERMATOLOGY', 'EMERGENCY MEDICINE', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","2,051","6.3","('Q1', 'Q1', 'Q1')","2.26","89.22" +"Borsa Istanbul Review","2214-8450","2214-8469","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","2,314","6.3","('Q1', 'Q1')","2.18","98.19" +"Information Technology & Tourism","1098-3058","1943-4294","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","1,181","6.3","Q1","1.99","25.32" +"JOURNAL OF HEALTH AND SOCIAL BEHAVIOR","0022-1465","2150-6000","('PSYCHOLOGY, SOCIAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","10,796","6.3","('Q1', 'Q1', 'Q1', 'Q1')","1.98","17.89" +"ISA TRANSACTIONS","0019-0578","1879-2022","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, MULTIDISCIPLINARY', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE', 'SCIE')","17,196","6.3","('Q1', 'Q1', 'Q1')","1.95","3.32" +"Research in International Business and Finance","0275-5319","1878-3384","BUSINESS, FINANCE","('SSCI',)","7,837","6.3","Q1","1.92","14.25" +"CALIFORNIA MANAGEMENT REVIEW","0008-1256","2162-8564","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","7,677","6.3","('Q1', 'Q1')","1.89","36.84" +"JCI Insight","","2379-3708","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","25,162","6.3","Q1","1.83","99.38" +"American Economic Journal-Macroeconomics","1945-7707","1945-7715","ECONOMICS","('SSCI',)","4,007","6.3","Q1","1.82","0.00" +"Transport Policy","0967-070X","1879-310X","('ECONOMICS', 'TRANSPORTATION')","('SSCI', 'SSCI')","12,131","6.3","('Q1', 'Q1')","1.82","26.03" +"Travel Medicine and Infectious Disease","1477-8939","1873-0442","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","3,940","6.3","('Q1', 'Q1')","1.79","53.13" +"GLOBAL ECOLOGY AND BIOGEOGRAPHY","1466-822X","1466-8238","('ECOLOGY', 'GEOGRAPHY, PHYSICAL')","('SCIE', 'SCIE')","17,766","6.3","('Q1', 'Q1')","1.77","37.82" +"IEEE Transactions on Information Forensics and Security","1556-6013","1556-6021","('COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","17,497","6.3","('Q1', 'Q1')","1.77","11.31" +"Methods in Ecology and Evolution","2041-210X","2041-2096","ECOLOGY","('SCIE',)","24,981","6.3","Q1","1.70","63.79" +"TRANSPORTATION RESEARCH PART A-POLICY AND PRACTICE","0965-8564","1879-2375","('ECONOMICS', 'TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SSCI', 'SSCI', 'SCIE')","20,629","6.3","('Q1', 'Q1', 'Q1')","1.69","28.85" +"International Journal of Stroke","1747-4930","1747-4949","('CLINICAL NEUROLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","7,547","6.3","('Q1', 'Q1')","1.66","26.57" +"CLINICAL PHARMACOLOGY & THERAPEUTICS","0009-9236","1532-6535","PHARMACOLOGY & PHARMACY","('SCIE',)","18,906","6.3","Q1","1.64","43.17" +"IEEE Open Journal of the Communications Society","","2644-125X","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI')","2,940","6.3","('Q1', 'Q1')","1.51","98.18" +"Friction","2223-7690","2223-7704","ENGINEERING, MECHANICAL","('SCIE',)","4,453","6.3","Q1","1.46","99.39" +"Molecular Autism","2040-2392","2040-2392","('GENETICS & HEREDITY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","4,244","6.3","('Q1', 'Q1')","1.46","99.38" +"Innovative Food Science & Emerging Technologies","1466-8564","1878-5522","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","15,009","6.3","Q1","1.44","17.58" +"NEOPLASIA","1476-5586","1476-5586","ONCOLOGY","('SCIE',)","8,208","6.3","Q1","1.44","98.62" +"FOREIGN AFFAIRS","0015-7120","","INTERNATIONAL RELATIONS","('SSCI',)","4,612","6.3","Q1","1.35","0.00" +"Current Opinion in Psychology","2352-250X","2352-2518","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","10,709","6.3","Q1","1.33","24.47" +"POLYMER DEGRADATION AND STABILITY","0141-3910","1873-2321","POLYMER SCIENCE","('SCIE',)","29,007","6.3","Q1","1.31","18.15" +"COMPOSITE STRUCTURES","0263-8223","1879-1085","('MATERIALS SCIENCE, COMPOSITES', 'MECHANICS')","('SCIE', 'SCIE')","69,794","6.3","('Q1', 'Q1')","1.27","12.56" +"SOLAR ENERGY MATERIALS AND SOLAR CELLS","0927-0248","1879-3398","('ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","34,234","6.3","('Q2', 'Q1', 'Q1')","1.27","19.18" +"APPLIED SURFACE SCIENCE","0169-4332","1873-5584","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, COATINGS & FILMS', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","178,149","6.3","('Q2', 'Q1', 'Q1', 'Q1')","1.26","8.00" +"npj Science of Food","","2396-8370","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,163","6.3","Q1","1.24","100.00" +"Machine Learning-Science and Technology","","2632-2153","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MULTIDISCIPLINARY SCIENCES')","('SCIE', 'SCIE', 'SCIE')","2,161","6.3","('Q1', 'Q1', 'Q1')","1.16","99.53" +"International Journal of Bank Marketing","0265-2323","1758-5937","BUSINESS","('SSCI',)","4,511","6.3","Q1","1.13","3.93" +"Review of Communication Research","2255-4165","2255-4165","COMMUNICATION","('ESCI',)","279","6.3","Q1","1.13","83.33" +"Journal of Water Process Engineering","2214-7144","2214-7144","('ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","21,829","6.3","('Q1', 'Q1', 'Q1')","1.10","7.78" +"Smart Agricultural Technology","2772-3755","2772-3755","('AGRICULTURAL ENGINEERING', 'AGRICULTURE, MULTIDISCIPLINARY', 'AGRONOMY')","('ESCI', 'ESCI', 'ESCI')","1,116","6.3","('Q1', 'Q1', 'Q1')","1.06","96.78" +"CLINICAL AND EXPERIMENTAL ALLERGY","0954-7894","1365-2222","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","10,940","6.3","('Q1', 'Q1')","0.89","41.50" +"Molecular Biomedicine","","2662-8651","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('ESCI', 'ESCI', 'ESCI')","608","6.3","('Q1', 'Q1', 'Q1')","0.79","100.00" +"Systematic Reviews","","2046-4053","MEDICINE, GENERAL & INTERNAL","('SCIE',)","16,981","6.3","Q1","0.61","99.87" +"PEDIATRICS","0031-4005","1098-4275","PEDIATRICS","('SCIE',)","79,027","6.2","Q1","2.95","3.92" +"Alexandria Engineering Journal","1110-0168","2090-2670","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","20,244","6.2","Q1","2.30","94.09" +"SOCIO-ECONOMIC PLANNING SCIENCES","0038-0121","1873-6041","('ECONOMICS', 'MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SSCI', 'SSCI', 'SCIE')","5,526","6.2","('Q1', 'Q1', 'Q1')","1.89","17.10" +"Future Generation Computer Systems-The International Journal of eScience","0167-739X","1872-7115","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","23,079","6.2","Q1","1.82","15.88" +"PLANT JOURNAL","0960-7412","1365-313X","PLANT SCIENCES","('SCIE',)","54,794","6.2","Q1","1.77","28.56" +"Environmental Microbiome","","2524-6372","('GENETICS & HEREDITY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","844","6.2","('Q1', 'Q1')","1.66","100.00" +"Acta Neuropathologica Communications","2051-5960","2051-5960","NEUROSCIENCES","('SCIE',)","9,132","6.2","Q1","1.64","100.00" +"GENOME RESEARCH","1088-9051","1549-5469","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","42,910","6.2","('Q1', 'Q1', 'Q1')","1.62","95.16" +"DIABETES","0012-1797","1939-327X","ENDOCRINOLOGY & METABOLISM","('SCIE',)","47,658","6.2","Q1","1.61","3.07" +"IEEE TRANSACTIONS ON AUTOMATIC CONTROL","0018-9286","1558-2523","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","61,239","6.2","('Q1', 'Q1')","1.57","9.46" +"ECOTOXICOLOGY AND ENVIRONMENTAL SAFETY","0147-6513","1090-2414","('ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('SCIE', 'SCIE')","61,521","6.2","('Q1', 'Q1')","1.47","97.17" +"Circulation-Cardiovascular Quality and Outcomes","1941-7705","1941-7713","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","7,534","6.2","Q1","1.45","13.08" +"JOURNAL OF ORGANIZATIONAL BEHAVIOR","0894-3796","1099-1379","('BUSINESS', 'MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI', 'SSCI')","18,578","6.2","('Q1', 'Q1', 'Q1')","1.45","31.72" +"Current Research in Food Science","","2665-9271","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","2,812","6.2","Q1","1.29","99.15" +"Journal of Materials Research and Technology-JMR&T","2238-7854","2214-0697","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","43,039","6.2","('Q1', 'Q1')","1.26","98.02" +"Journal of Intellectual Capital","1469-1930","1758-7468","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","4,104","6.2","('Q1', 'Q1')","1.22","10.08" +"Developments in the Built Environment","","2666-1659","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","1,127","6.2","('Q1', 'Q1')","1.21","94.70" +"International Entrepreneurship and Management Journal","1554-7191","1555-1938","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","4,620","6.2","('Q1', 'Q1')","1.19","31.19" +"Digital Discovery","","2635-098X","('CHEMISTRY, MULTIDISCIPLINARY', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('ESCI', 'ESCI')","650","6.2","('Q1', 'Q1')","1.10","100.00" +"ALLERGOLOGY INTERNATIONAL","1323-8930","1440-1592","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","3,646","6.2","('Q1', 'Q1')","1.07","95.73" +"SEMINARS IN CELL & DEVELOPMENTAL BIOLOGY","1084-9521","1096-3634","('CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY')","('SCIE', 'SCIE')","14,888","6.2","('Q1', 'Q1')","0.95","42.14" +"CELLULAR AND MOLECULAR LIFE SCIENCES","1420-682X","1420-9071","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","36,916","6.2","('Q1', 'Q1')","0.94","51.15" +"Carbohydrate Polymer Technologies and Applications","2666-8939","2666-8939","('CHEMISTRY, APPLIED', 'POLYMER SCIENCE')","('ESCI', 'ESCI')","1,796","6.2","('Q1', 'Q1')","0.92","95.41" +"ChemBioEng Reviews","2196-9744","2196-9744","ENGINEERING, CHEMICAL","('SCIE',)","1,452","6.2","Q1","0.73","11.85" +"ImmunoTargets and Therapy","","2253-1556","IMMUNOLOGY","('ESCI',)","780","6.2","Q1","0.72","97.96" +"Advanced Energy and Sustainability Research","2699-9412","2699-9412","('ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","2,130","6.2","('Q2', 'Q2', 'Q1')","0.71","82.08" +"CRITICAL REVIEWS IN BIOCHEMISTRY AND MOLECULAR BIOLOGY","1040-9238","1549-7798","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","3,999","6.2","Q1","0.65","23.21" +"JOURNAL OF COMMUNICATION","0021-9916","1460-2466","COMMUNICATION","('SSCI',)","9,922","6.1","Q1","2.79","22.66" +"Animal Nutrition","2405-6383","2405-6545","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","4,353","6.1","('Q1', 'Q1')","2.61","92.40" +"PUBLIC ADMINISTRATION REVIEW","0033-3352","1540-6210","PUBLIC ADMINISTRATION","('SSCI',)","13,044","6.1","Q1","2.60","38.67" +"ULTRASOUND IN OBSTETRICS & GYNECOLOGY","0960-7692","1469-0705","('ACOUSTICS', 'OBSTETRICS & GYNECOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","16,824","6.1","('Q1', 'Q1', 'Q1')","2.19","31.62" +"Journal of Pharmaceutical Analysis","2095-1779","2214-0883","PHARMACOLOGY & PHARMACY","('SCIE',)","4,263","6.1","Q1","2.16","97.29" +"AGRICULTURAL SYSTEMS","0308-521X","1873-2267","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","12,430","6.1","Q1","2.05","53.82" +"Inorganic Chemistry Frontiers","2052-1553","2052-1553","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","17,339","6.1","Q1","1.97","6.69" +"JOURNAL OF ENVIRONMENTAL PSYCHOLOGY","0272-4944","1522-9610","('ENVIRONMENTAL STUDIES', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","17,452","6.1","('Q1', 'Q1')","1.88","38.08" +"Systematic Biology","1063-5157","1076-836X","EVOLUTIONARY BIOLOGY","('SCIE',)","18,274","6.1","Q1","1.82","44.82" +"World Journal of Pediatrics","1708-8569","1867-0687","PEDIATRICS","('SCIE',)","3,207","6.1","Q1","1.72","39.03" +"PLANT PHYSIOLOGY AND BIOCHEMISTRY","0981-9428","1873-2690","PLANT SCIENCES","('SCIE',)","28,889","6.1","Q1","1.69","8.66" +"JOURNAL OF CLINICAL MICROBIOLOGY","0095-1137","1098-660X","MICROBIOLOGY","('SCIE',)","43,241","6.1","Q1","1.66","28.84" +"Tribology International","0301-679X","1879-2464","ENGINEERING, MECHANICAL","('SCIE',)","32,195","6.1","Q1","1.66","13.81" +"DIABETES RESEARCH AND CLINICAL PRACTICE","0168-8227","1872-8227","ENDOCRINOLOGY & METABOLISM","('SCIE',)","20,236","6.1","Q1","1.57","25.18" +"Journal of Financial Stability","1572-3089","1878-0962","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","4,056","6.1","('Q1', 'Q1')","1.57","17.30" +"Circulation-Cardiovascular Interventions","1941-7640","1941-7632","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","6,964","6.1","Q1","1.54","17.49" +"MOLECULAR & CELLULAR PROTEOMICS","","1535-9484","BIOCHEMICAL RESEARCH METHODS","('SCIE',)","16,834","6.1","Q1","1.54","95.70" +"Weather and Climate Extremes","2212-0947","2212-0947","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","3,737","6.1","Q1","1.54","93.31" +"IEEE-ASME TRANSACTIONS ON MECHATRONICS","1083-4435","1941-014X","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MANUFACTURING', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","19,571","6.1","('Q1', 'Q1', 'Q1', 'Q1')","1.53","10.06" +"Journal of Translational Medicine","","1479-5876","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","24,313","6.1","Q1","1.52","99.79" +"SOIL & TILLAGE RESEARCH","0167-1987","1879-3444","SOIL SCIENCE","('SCIE',)","22,856","6.1","Q1","1.52","14.84" +"IEEE TRANSACTIONS ON VEHICULAR TECHNOLOGY","0018-9545","1939-9359","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","53,563","6.1","('Q1', 'Q1', 'Q1')","1.49","4.90" +"Current Opinion in Toxicology","2468-2020","2468-2020","TOXICOLOGY","('ESCI',)","1,497","6.1","Q1","1.44","37.76" +"Ecosystem Services","2212-0416","2212-0416","('ECOLOGY', 'ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SCIE', 'SSCI')","10,137","6.1","('Q1', 'Q1', 'Q1')","1.42","45.38" +"BREAST CANCER RESEARCH","1465-5411","1465-542X","ONCOLOGY","('SCIE',)","12,517","6.1","Q1","1.39","99.42" +"APPLIED THERMAL ENGINEERING","1359-4311","1873-5606","('ENERGY & FUELS', 'ENGINEERING, MECHANICAL', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","87,523","6.1","('Q2', 'Q1', 'Q1', 'Q1')","1.34","9.79" +"BEST PRACTICE & RESEARCH CLINICAL ENDOCRINOLOGY & METABOLISM","1521-690X","1532-1908","ENDOCRINOLOGY & METABOLISM","('SCIE',)","5,101","6.1","Q1","1.32","25.63" +"Artificial Intelligence in Medicine","0933-3657","1873-2860","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, BIOMEDICAL', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE', 'SCIE')","6,764","6.1","('Q1', 'Q1', 'Q1')","1.31","29.25" +"CANCER","0008-543X","1097-0142","ONCOLOGY","('SCIE',)","65,115","6.1","Q1","1.29","20.09" +"EUROPEAN NEUROPSYCHOPHARMACOLOGY","0924-977X","1873-7862","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,533","6.1","('Q1', 'Q1', 'Q1', 'Q1')","1.27","37.12" +"PHYTOTHERAPY RESEARCH","0951-418X","1099-1573","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","23,111","6.1","('Q1', 'Q1')","1.25","5.22" +"Bioengineering & Translational Medicine","","2380-6761","ENGINEERING, BIOMEDICAL","('SCIE',)","3,098","6.1","Q1","1.21","77.89" +"MICROBIOLOGICAL RESEARCH","0944-5013","1618-0623","MICROBIOLOGY","('SCIE',)","10,865","6.1","Q1","1.21","67.53" +"PRODUCTION PLANNING & CONTROL","0953-7287","1366-5871","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","7,386","6.1","('Q1', 'Q1', 'Q1')","1.21","30.11" +"LAB ON A CHIP","1473-0197","1473-0189","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL', 'CHEMISTRY, MULTIDISCIPLINARY', 'INSTRUMENTS & INSTRUMENTATION', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","34,304","6.1","('Q1', 'Q1', 'Q1', 'Q1', 'Q2')","1.20","23.45" +"MATERIALS SCIENCE AND ENGINEERING A-STRUCTURAL MATERIALS PROPERTIES MICROSTRUCTURE AND PROCESSING","0921-5093","1873-4936","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","124,580","6.1","('Q1', 'Q1', 'Q2')","1.18","12.60" +"CURRENT OPINION IN STRUCTURAL BIOLOGY","0959-440X","1879-033X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","11,970","6.1","('Q1', 'Q1')","1.17","52.34" +"Journal of Manufacturing Processes","1526-6125","2212-4616","ENGINEERING, MANUFACTURING","('SCIE',)","25,160","6.1","Q1","1.17","11.09" +"Hepatobiliary Surgery and Nutrition","2304-3881","2304-389X","('GASTROENTEROLOGY & HEPATOLOGY', 'NUTRITION & DIETETICS', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","1,934","6.1","('Q1', 'Q1', 'Q1')","1.11","94.70" +"Biotechnology for Biofuels","","1754-6834","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENERGY & FUELS')","('SCIE', 'SCIE')","13,355","6.1","('Q1', 'Q2')","1.08","99.59" +"Cell and Bioscience","","2045-3701","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","6,413","6.1","Q1","1.07","99.84" +"Progress in Electromagnetics Research-PIER","1070-4698","1559-8985","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","2,484","6.1","('Q1', 'Q1', 'Q1')","1.07","15.73" +"Building Simulation","1996-3599","1996-8744","('CONSTRUCTION & BUILDING TECHNOLOGY', 'THERMODYNAMICS')","('SCIE', 'SCIE')","3,984","6.1","('Q1', 'Q1')","1.02","9.88" +"Frontiers of Environmental Science & Engineering","2095-2201","2095-221X","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","5,113","6.1","('Q2', 'Q1')","0.97","8.39" +"Cell Death Discovery","","2058-7716","CELL BIOLOGY","('SCIE',)","8,655","6.1","Q1","0.96","99.85" +"Journal of Materials Chemistry B","2050-750X","2050-7518","MATERIALS SCIENCE, BIOMATERIALS","('SCIE',)","40,713","6.1","Q1","0.94","6.95" +"Nanotechnology Reviews","2191-9089","2191-9097","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,524","6.1","('Q1', 'Q1', 'Q2', 'Q1')","0.93","96.72" +"Cleaner Environmental Systems","2666-7894","2666-7894","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","639","6.1","('Q2', 'Q1', 'Q1', 'Q2')","0.92","93.55" +"INFECTIOUS DISEASE CLINICS OF NORTH AMERICA","0891-5520","1557-9824","('IMMUNOLOGY', 'INFECTIOUS DISEASES')","('SCIE', 'SCIE')","4,291","6.1","('Q1', 'Q1')","0.91","7.59" +"APOPTOSIS","1360-8185","1573-675X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","6,525","6.1","('Q1', 'Q1')","0.85","16.80" +"ChemistryMethods","2628-9725","2628-9725","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","694","6.1","Q1","0.80","82.96" +"JOURNAL OF INVESTIGATIONAL ALLERGOLOGY AND CLINICAL IMMUNOLOGY","1018-9068","1698-0808","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","2,623","6.1","('Q1', 'Q1')","0.80","92.68" +"Reviews of Environmental Contamination and Toxicology","0179-5953","2197-6554","('ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('SCIE', 'SCIE')","3,013","6.1","('Q1', 'Q1')","0.78","11.36" +"Chemical Physics Reviews","","2688-4070","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('ESCI', 'ESCI')","461","6.1","('Q2', 'Q1')","0.45","95.45" +"Publications Mathematiques de l IHES","0073-8301","1618-1913","MATHEMATICS","('SCIE',)","2,021","6.0","Q1","4.45","100.00" +"Computer Assisted Language Learning","0958-8221","1744-3210","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","4,115","6.0","('Q1', 'N/A', 'Q1')","3.56","6.91" +"JAMA Otolaryngology-Head & Neck Surgery","2168-6181","2168-619X","('OTORHINOLARYNGOLOGY', 'SURGERY')","('SCIE', 'SCIE')","6,678","6.0","('Q1', 'Q1')","2.69","4.97" +"World Journal of Emergency Surgery","1749-7922","1749-7922","('EMERGENCY MEDICINE', 'SURGERY')","('SCIE', 'SCIE')","3,439","6.0","('Q1', 'Q1')","2.64","99.40" +"HUMAN REPRODUCTION","0268-1161","1460-2350","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","35,937","6.0","('Q1', 'Q1')","2.18","28.91" +"International Journal of Management Education","1472-8117","2352-3565","('BUSINESS', 'EDUCATION & EDUCATIONAL RESEARCH', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","3,267","6.0","('Q1', 'Q1', 'Q1')","2.10","22.47" +"Ain Shams Engineering Journal","2090-4479","2090-4495","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","9,498","6.0","Q1","2.07","98.12" +"JOURNAL OF ORTHOPAEDIC & SPORTS PHYSICAL THERAPY","0190-6011","1938-1344","('ORTHOPEDICS', 'REHABILITATION', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","9,582","6.0","('Q1', 'Q1', 'Q1')","2.05","1.73" +"CITIES","0264-2751","1873-6084","URBAN STUDIES","('SSCI',)","19,532","6.0","Q1","2.02","26.92" +"Crop Journal","2095-5421","2214-5141","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","4,862","6.0","('Q1', 'Q1')","1.91","95.65" +"Results in Engineering","2590-1230","2590-1230","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","6,302","6.0","Q1","1.87","92.46" +"URBAN FORESTRY & URBAN GREENING","1618-8667","1610-8167","('ENVIRONMENTAL STUDIES', 'FORESTRY', 'URBAN STUDIES')","('SSCI', 'SCIE', 'SSCI')","15,848","6.0","('Q1', 'Q1', 'Q1')","1.76","28.21" +"EUROPEAN CHILD & ADOLESCENT PSYCHIATRY","1018-8827","1435-165X","('PEDIATRICS', 'PSYCHIATRY', 'PSYCHOLOGY, DEVELOPMENTAL')","('SCIE', 'SCIE, SSCI', 'SSCI')","9,748","6.0","('Q1', 'Q1', 'Q1')","1.74","56.13" +"AGRICULTURE ECOSYSTEMS & ENVIRONMENT","0167-8809","1873-2305","('AGRICULTURE, MULTIDISCIPLINARY', 'ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE')","33,053","6.0","('Q1', 'Q1', 'Q1')","1.72","29.50" +"PLANT CELL AND ENVIRONMENT","0140-7791","1365-3040","PLANT SCIENCES","('SCIE',)","30,402","6.0","Q1","1.66","31.85" +"HUMAN RESOURCE MANAGEMENT","0090-4848","1099-050X","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","6,086","6.0","('Q1', 'Q1')","1.65","33.33" +"GIScience & Remote Sensing","1548-1603","1943-7226","('GEOGRAPHY, PHYSICAL', 'REMOTE SENSING')","('SCIE', 'SCIE')","3,580","6.0","('Q1', 'Q1')","1.58","74.74" +"Circulation-Genomic and Precision Medicine","2574-8300","2574-8300","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","2,154","6.0","('Q1', 'Q1')","1.54","25.15" +"NEURAL NETWORKS","0893-6080","1879-2782","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'NEUROSCIENCES')","('SCIE', 'SCIE')","25,720","6.0","('Q1', 'Q1')","1.54","19.75" +"LAND USE POLICY","0264-8377","1873-5754","ENVIRONMENTAL STUDIES","('SSCI',)","32,633","6.0","Q1","1.50","26.49" +"EUROPEAN JOURNAL OF MEDICINAL CHEMISTRY","0223-5234","1768-3254","CHEMISTRY, MEDICINAL","('SCIE',)","54,859","6.0","Q1","1.49","11.87" +"Gastric Cancer","1436-3291","1436-3305","('GASTROENTEROLOGY & HEPATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","7,345","6.0","('Q1', 'Q1')","1.49","34.55" +"LIVER INTERNATIONAL","1478-3223","1478-3231","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","15,228","6.0","Q1","1.46","34.65" +"Journal of Stroke","2287-6391","2287-6405","('CLINICAL NEUROLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","2,201","6.0","('Q1', 'Q1')","1.44","97.00" +"AGE AND AGEING","0002-0729","1468-2834","GERIATRICS & GERONTOLOGY","('SCIE',)","18,246","6.0","Q1","1.41","46.46" +"Journal of Environmental Informatics","1726-2135","1684-8799","ENVIRONMENTAL SCIENCES","('SCIE',)","776","6.0","Q1","1.39","0.00" +"EUROPEAN JOURNAL OF OPERATIONAL RESEARCH","0377-2217","1872-6860","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","62,282","6.0","Q1","1.38","26.62" +"LWT-FOOD SCIENCE AND TECHNOLOGY","0023-6438","1096-1127","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","71,207","6.0","Q1","1.34","63.11" +"Urban Climate","2212-0955","2212-0955","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","8,471","6.0","('Q1', 'Q1')","1.34","18.75" +"EPMA Journal","1878-5077","1878-5085","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","1,747","6.0","Q1","1.33","50.00" +"Internet of Things","2543-1536","2542-6605","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","3,448","6.0","('Q1', 'Q1', 'Q1')","1.33","25.45" +"Petroleum Science","1672-5107","1995-8226","('ENERGY & FUELS', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE')","5,330","6.0","('Q2', 'Q1')","1.31","97.85" +"Science China-Earth Sciences","1674-7313","1869-1897","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","9,844","6.0","Q1","1.27","3.37" +"Antioxidants","","2076-3921","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","48,845","6.0","('Q1', 'Q1', 'Q1')","1.21","99.50" +"MOLECULAR MEDICINE","1076-1551","1528-3658","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","7,216","6.0","('Q1', 'Q1', 'Q1')","1.06","99.58" +"Cancer & Metabolism","","2049-3002","('CELL BIOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","1,467","6.0","('Q1', 'Q1')","1.04","100.00" +"Environmental Sciences Europe","2190-4707","2190-4715","ENVIRONMENTAL SCIENCES","('SCIE',)","4,579","6.0","Q1","1.00","100.00" +"Solar RRL","2367-198X","2367-198X","('ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","12,115","6.0","('Q2', 'Q1')","0.98","22.40" +"Solar Energy","0038-092X","1471-1257","ENERGY & FUELS","('SCIE',)","57,504","6.0","Q2","0.94","12.91" +"Materials Chemistry Frontiers","","2052-1537","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","13,261","6.0","('Q1', 'Q1')","0.93","5.39" +"CURRENT OPINION IN CELL BIOLOGY","0955-0674","1879-0410","CELL BIOLOGY","('SCIE',)","12,594","6.0","Q1","0.81","45.13" +"CRITICAL REVIEWS IN PLANT SCIENCES","0735-2689","1549-7836","PLANT SCIENCES","('SCIE',)","4,491","6.0","Q1","0.70","23.33" +"Expert Opinion on Drug Discovery","1746-0441","1746-045X","PHARMACOLOGY & PHARMACY","('SCIE',)","5,937","6.0","Q1","0.70","13.86" +"CRITICAL REVIEWS IN MICROBIOLOGY","1040-841X","1549-7828","MICROBIOLOGY","('SCIE',)","4,769","6.0","Q1","0.62","15.66" +"AMERICAN POLITICAL SCIENCE REVIEW","0003-0554","1537-5943","POLITICAL SCIENCE","('SSCI',)","19,016","5.9","Q1","2.96","63.46" +"Journal of Orthopaedic Translation","2214-031X","2214-031X","ORTHOPEDICS","('SCIE',)","3,023","5.9","Q1","2.79","94.44" +"Ocular Surface","1542-0124","1937-5913","OPHTHALMOLOGY","('SCIE',)","6,354","5.9","Q1","2.54","30.90" +"Annual Review of Analytical Chemistry","1936-1327","1936-1335","('CHEMISTRY, ANALYTICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE')","2,553","5.9","('Q1', 'Q1')","2.44","58.18" +"PSYCHOLOGICAL MEDICINE","0033-2917","1469-8978","('PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE, SSCI', 'SCIE', 'SSCI')","35,004","5.9","('Q1', 'Q1', 'Q1')","2.36","48.49" +"TELECOMMUNICATIONS POLICY","0308-5961","1879-3258","('COMMUNICATION', 'INFORMATION SCIENCE & LIBRARY SCIENCE', 'TELECOMMUNICATIONS')","('SSCI', 'SSCI', 'SCIE')","4,301","5.9","('Q1', 'Q1', 'Q1')","2.23","23.68" +"JOURNAL OF UROLOGY","0022-5347","1527-3792","UROLOGY & NEPHROLOGY","('SCIE',)","42,313","5.9","Q1","2.16","6.11" +"PAIN","0304-3959","1872-6623","('ANESTHESIOLOGY', 'CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE', 'SCIE')","40,292","5.9","('Q1', 'Q1', 'Q1')","2.04","22.14" +"Globalization and Health","","1744-8603","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","5,336","5.9","Q1","2.01","100.00" +"Agricultural Water Management","0378-3774","1873-2283","('AGRONOMY', 'WATER RESOURCES')","('SCIE', 'SCIE')","31,875","5.9","('Q1', 'Q1')","1.89","44.43" +"REVIEW OF ECONOMIC STUDIES","0034-6527","1467-937X","ECONOMICS","('SSCI',)","19,991","5.9","Q1","1.85","15.45" +"JOURNAL OF BUSINESS ETHICS","0167-4544","1573-0697","('BUSINESS', 'ETHICS')","('SSCI', 'SSCI')","51,311","5.9","('Q1', 'Q1')","1.78","33.85" +"Engineering Applications of Computational Fluid Mechanics","1994-2060","1997-003X","('ENGINEERING, MECHANICAL', 'ENGINEERING, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","3,576","5.9","('Q1', 'Q1', 'Q1')","1.71","97.90" +"JOURNAL OF ECONOMIC SURVEYS","0950-0804","1467-6419","ECONOMICS","('SSCI',)","5,595","5.9","Q1","1.62","38.71" +"Journal of Occupational Health Psychology","1076-8998","1939-1307","('PSYCHOLOGY, APPLIED', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","8,538","5.9","('Q1', 'Q1')","1.56","3.81" +"Fluids and Barriers of the CNS","2045-8118","2045-8118","NEUROSCIENCES","('SCIE',)","3,449","5.9","Q1","1.55","99.60" +"Epidemiology and Psychiatric Sciences","2045-7960","2045-7979","PSYCHIATRY","('SCIE', 'SSCI')","4,093","5.9","Q1","1.52","100.00" +"JOURNAL OF MANAGEMENT INFORMATION SYSTEMS","0742-1222","1557-928X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SCIE', 'SSCI', 'SSCI')","8,447","5.9","('Q1', 'Q1', 'Q1')","1.52","15.45" +"Journal of International Management","1075-4253","1873-0620","MANAGEMENT","('SSCI',)","3,042","5.9","Q1","1.51","27.32" +"Journal of Hydrology","0022-1694","1879-2707","('ENGINEERING, CIVIL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","88,377","5.9","('Q1', 'Q1', 'Q1')","1.48","17.99" +"INTERNATIONAL JOURNAL OF PHYSICAL DISTRIBUTION & LOGISTICS MANAGEMENT","0960-0035","1758-664X","MANAGEMENT","('SSCI',)","5,352","5.9","Q1","1.41","26.52" +"Hepatology International","1936-0533","1936-0541","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","5,423","5.9","Q1","1.40","24.56" +"Journal of Environmental Sciences","1001-0742","1878-7320","ENVIRONMENTAL SCIENCES","('SCIE',)","21,394","5.9","Q1","1.37","5.25" +"ANTIOXIDANTS & REDOX SIGNALING","1523-0864","1557-7716","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","24,610","5.9","('Q1', 'Q1')","1.36","11.43" +"LAB ANIMAL","0093-7355","1548-4475","VETERINARY SCIENCES","('SCIE',)","1,448","5.9","Q1","1.36","21.57" +"CHINESE JOURNAL OF STRUCTURAL CHEMISTRY","0254-5861","0254-5861","('CHEMISTRY, INORGANIC & NUCLEAR', 'CRYSTALLOGRAPHY')","('SCIE', 'SCIE')","2,895","5.9","('Q1', 'Q1')","1.35","0.45" +"REVIEWS IN FISH BIOLOGY AND FISHERIES","0960-3166","1573-5184","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","4,808","5.9","('Q1', 'Q1')","1.35","39.04" +"International Business Review","0969-5931","1873-6149","BUSINESS","('SSCI',)","8,442","5.9","Q1","1.34","18.91" +"INTERNATIONAL JOURNAL OF RESEARCH IN MARKETING","0167-8116","1873-8001","BUSINESS","('SSCI',)","6,099","5.9","Q1","1.31","24.42" +"Oncogenesis","2157-9024","2157-9024","ONCOLOGY","('SCIE',)","4,260","5.9","Q1","1.31","100.00" +"Internet Research","1066-2243","1066-2243","('BUSINESS', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SSCI', 'SCIE', 'SCIE')","6,129","5.9","('Q1', 'Q1', 'Q1')","1.28","11.61" +"European Journal of Internal Medicine","0953-6205","1879-0828","MEDICINE, GENERAL & INTERNAL","('SCIE',)","7,785","5.9","Q1","1.27","25.57" +"JOURNAL OF INTELLIGENT MANUFACTURING","0956-5515","1572-8145","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, MANUFACTURING')","('SCIE', 'SCIE')","8,321","5.9","('Q1', 'Q1')","1.27","24.82" +"AMERICAN JOURNAL OF RESPIRATORY CELL AND MOLECULAR BIOLOGY","1044-1549","1535-4989","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE', 'SCIE')","13,200","5.9","('Q1', 'Q2', 'Q1')","1.25","12.42" +"Electronic Commerce Research and Applications","1567-4223","1873-7846","('BUSINESS', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SSCI', 'SCIE', 'SCIE')","5,349","5.9","('Q1', 'Q1', 'Q1')","1.24","7.94" +"Biofilm","2590-2075","2590-2075","MICROBIOLOGY","('ESCI',)","691","5.9","Q1","1.22","90.08" +"Stem Cell Reports","2213-6711","2213-6711","('CELL & TISSUE ENGINEERING', 'CELL BIOLOGY')","('SCIE', 'SCIE')","11,012","5.9","('Q1', 'Q2')","1.18","95.73" +"IEEE Transactions on Automation Science and Engineering","1545-5955","1558-3783","AUTOMATION & CONTROL SYSTEMS","('SCIE',)","11,117","5.9","Q1","1.17","6.14" +"Global Change Biology Bioenergy","1757-1693","1757-1707","('AGRONOMY', 'ENERGY & FUELS')","('SCIE', 'SCIE')","5,061","5.9","('Q1', 'Q2')","1.08","83.52" +"Journal of International Business Policy","2522-0691","2522-0705","BUSINESS","('ESCI',)","1,003","5.9","Q1","1.07","30.86" +"Neural Regeneration Research","1673-5374","1876-7958","('CELL BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","11,886","5.9","('Q2', 'Q1')","1.03","94.68" +"Neuroscience Bulletin","1673-7067","1995-8218","NEUROSCIENCES","('SCIE',)","4,671","5.9","Q1","0.99","33.94" +"Communications Chemistry","2399-3669","2399-3669","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","4,736","5.9","Q1","0.96","99.82" +"Journal of Industrial and Engineering Chemistry","1226-086X","1876-794X","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","27,796","5.9","('Q1', 'Q1')","0.92","4.39" +"Non-coding RNA Research","2468-2160","2468-0540","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","937","5.9","Q1","0.92","95.92" +"FlatChem","2452-2627","2452-2627","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,056","5.9","('Q2', 'Q1')","0.90","6.84" +"CELL PROLIFERATION","0960-7722","1365-2184","CELL BIOLOGY","('SCIE',)","8,069","5.9","Q2","0.86","69.51" +"NUTRITION REVIEWS","0029-6643","1753-4887","NUTRITION & DIETETICS","('SCIE',)","11,145","5.9","Q1","0.78","23.77" +"HLA","2059-2302","2059-2310","('CELL BIOLOGY', 'IMMUNOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,565","5.9","('Q2', 'Q1', 'Q1')","0.73","32.47" +"CURRENT OPINION IN MICROBIOLOGY","1369-5274","1879-0364","MICROBIOLOGY","('SCIE',)","11,920","5.9","Q1","0.65","52.44" +"RIVISTA DEL NUOVO CIMENTO","0393-697X","1826-9850","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","938","5.9","Q1","0.65","75.76" +"Journal of Lipids","2090-3030","2090-3049","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","472","5.9","Q1","0.55","100.00" +"JOURNAL OF CLINICAL PERIODONTOLOGY","0303-6979","1600-051X","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","21,117","5.8","Q1","2.70","38.10" +"Journal of Tourism Futures","2055-5911","2055-592X","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,179","5.8","Q1","1.93","96.45" +"Current Opinion in Insect Science","2214-5745","2214-5753","('BIOLOGY', 'ECOLOGY', 'ENTOMOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,100","5.8","('Q1', 'Q1', 'Q1')","1.91","38.97" +"BRAIN PATHOLOGY","1015-6305","1750-3639","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","6,493","5.8","('Q1', 'Q1', 'Q1')","1.80","70.83" +"Scientific Data","","2052-4463","MULTIDISCIPLINARY SCIENCES","('SCIE',)","27,572","5.8","Q1","1.73","99.69" +"Ecological Informatics","1574-9541","1878-0512","ECOLOGY","('SCIE',)","8,069","5.8","Q1","1.69","23.03" +"JOURNAL OF MEDICAL INTERNET RESEARCH","1438-8871","","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE')","43,793","5.8","('Q1', 'Q1')","1.68","98.65" +"IEEE Vehicular Technology Magazine","1556-6072","1556-6080","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,995","5.8","('Q1', 'Q1', 'Q1')","1.65","6.11" +"Landslides","1612-510X","1612-5118","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","12,510","5.8","('Q1', 'Q1')","1.63","24.23" +"Advances in Wound Care","2162-1918","2162-1934","DERMATOLOGY","('SCIE',)","4,665","5.8","Q1","1.60","19.05" +"Translational Psychiatry","2158-3188","2158-3188","PSYCHIATRY","('SCIE',)","20,112","5.8","Q1","1.57","99.66" +"THYROID","1050-7256","1557-9077","ENDOCRINOLOGY & METABOLISM","('SCIE',)","15,751","5.8","Q1","1.55","9.35" +"BUSINESS HORIZONS","0007-6813","1873-6068","BUSINESS","('SSCI',)","7,847","5.8","Q1","1.47","16.67" +"INTEGRATED COMPUTER-AIDED ENGINEERING","1069-2509","1875-8835","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","747","5.8","('Q1', 'Q1', 'Q1')","1.47","20.83" +"TRANSPORTATION RESEARCH PART B-METHODOLOGICAL","0191-2615","1879-2367","('ECONOMICS', 'ENGINEERING, CIVIL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SSCI', 'SCIE', 'SCIE', 'SSCI', 'SCIE')","17,027","5.8","('Q1', 'Q1', 'Q1', 'Q1', 'Q1')","1.47","25.71" +"Marine Life Science & Technology","2096-6490","2662-1746","MARINE & FRESHWATER BIOLOGY","('SCIE',)","853","5.8","Q1","1.46","47.22" +"Vehicular Communications","2214-2096","2214-2096","('TELECOMMUNICATIONS', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","2,232","5.8","('Q1', 'Q1')","1.42","16.73" +"CANADIAN JOURNAL OF CARDIOLOGY","0828-282X","1916-7075","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","9,156","5.8","Q1","1.39","16.57" +"Journal of the European Ceramic Society","0955-2219","1873-619X","MATERIALS SCIENCE, CERAMICS","('SCIE',)","44,851","5.8","Q1","1.38","15.61" +"European Stroke Journal","2396-9873","2396-9881","('CLINICAL NEUROLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","1,957","5.8","('Q1', 'Q1')","1.36","36.02" +"EPJ Quantum Technology","2662-4400","2196-0763","('OPTICS', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","744","5.8","('Q1', 'Q1', 'Q1')","1.35","100.00" +"Soil","2199-3971","2199-398X","SOIL SCIENCE","('SCIE',)","2,102","5.8","Q1","1.28","99.21" +"Environmental Research Letters","1748-9326","1748-9326","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","44,013","5.8","('Q1', 'Q1')","1.21","99.03" +"Combustion and Flame","0010-2180","1556-2921","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, MECHANICAL', 'ENGINEERING, MULTIDISCIPLINARY', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","38,487","5.8","('Q2', 'Q1', 'Q1', 'Q1', 'Q1')","1.18","28.62" +"Journal of Alloys and Compounds","0925-8388","1873-4669","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE', 'SCIE')","211,621","5.8","('Q2', 'Q1', 'Q1')","1.18","5.26" +"United European Gastroenterology Journal","2050-6406","2050-6414","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","4,195","5.8","Q1","1.17","76.60" +"EUROPEAN POLYMER JOURNAL","0014-3057","1873-1945","POLYMER SCIENCE","('SCIE',)","31,757","5.8","Q1","1.14","11.81" +"JOURNAL OF INFORMATION TECHNOLOGY","0268-3962","1466-4437","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SCIE', 'SSCI', 'SSCI')","2,508","5.8","('Q1', 'Q1', 'Q1')","1.10","49.41" +"Neuromorphic Computing and Engineering","","2634-4386","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED')","('ESCI', 'ESCI')","587","5.8","('Q1', 'Q1')","1.09","95.92" +"JOURNAL OF ANALYTICAL AND APPLIED PYROLYSIS","0165-2370","1873-250X","('CHEMISTRY, ANALYTICAL', 'ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE', 'SCIE')","20,639","5.8","('Q1', 'Q2', 'Q1')","1.05","10.91" +"BIOMASS & BIOENERGY","0961-9534","1873-2909","('AGRICULTURAL ENGINEERING', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENERGY & FUELS')","('SCIE', 'SCIE', 'SCIE')","21,023","5.8","('Q1', 'Q1', 'Q2')","1.02","23.05" +"Environmental Science-Nano","2051-8153","2051-8161","('CHEMISTRY, MULTIDISCIPLINARY', 'ENVIRONMENTAL SCIENCES', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","12,242","5.8","('Q1', 'Q1', 'Q2')","1.02","11.23" +"Epilepsy Currents","1535-7597","1535-7511","CLINICAL NEUROLOGY","('SCIE',)","1,191","5.8","Q1","1.01","87.18" +"Nanoscale","2040-3364","2040-3372","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","118,942","5.8","('Q1', 'Q1', 'Q2', 'Q1')","0.98","15.86" +"Journal of Saudi Chemical Society","1319-6103","2212-4640","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","5,475","5.8","Q1","0.94","98.48" +"Biomaterials Science","2047-4830","2047-4849","MATERIALS SCIENCE, BIOMATERIALS","('SCIE',)","19,361","5.8","Q1","0.92","10.34" +"APPLIED RHEOLOGY","1430-6395","1617-8106","MECHANICS","('SCIE',)","660","5.8","Q1","0.90","100.00" +"ANNALS OF ALLERGY ASTHMA & IMMUNOLOGY","1081-1206","1534-4436","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","10,520","5.8","('Q1', 'Q1')","0.85","20.84" +"AMBIO","0044-7447","1654-7209","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","12,238","5.8","('Q2', 'Q1')","0.81","68.02" +"Green Chemistry Letters and Reviews","1751-8253","1751-7192","('CHEMISTRY, MULTIDISCIPLINARY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","2,562","5.8","('Q1', 'Q2')","0.76","94.48" +"Energy and Climate Change","","2666-2787","ENERGY & FUELS","('ESCI',)","461","5.8","Q2","0.62","89.47" +"ANNALS OF MATHEMATICS","0003-486X","1939-8980","MATHEMATICS","('SCIE',)","15,108","5.7","Q1","4.58","0.00" +"Policy and Society","1449-4035","1839-3373","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","2,144","5.7","('Q1', 'Q1')","4.11","96.94" +"JOURNAL OF DENTAL RESEARCH","0022-0345","1544-0591","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","24,424","5.7","Q1","2.86","19.72" +"JOURNAL OF URBAN ECONOMICS","0094-1190","1095-9068","('ECONOMICS', 'URBAN STUDIES')","('SSCI', 'SSCI')","6,743","5.7","('Q1', 'Q1')","2.30","28.90" +"JOURNAL OF INVESTIGATIVE DERMATOLOGY","0022-202X","1523-1747","DERMATOLOGY","('SCIE',)","32,419","5.7","Q1","2.27","74.04" +"OBSTETRICS AND GYNECOLOGY","0029-7844","0029-7844","OBSTETRICS & GYNECOLOGY","('SCIE',)","36,311","5.7","Q1","2.27","17.67" +"INTERNATIONAL JOURNAL OF ENGINEERING SCIENCE","0020-7225","1879-2197","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","10,401","5.7","Q1","2.18","20.14" +"ACCIDENT ANALYSIS AND PREVENTION","0001-4575","1879-2057","('ERGONOMICS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, INTERDISCIPLINARY', 'TRANSPORTATION')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","26,898","5.7","('Q1', 'Q1', 'Q1', 'Q1')","1.98","16.01" +"EUROPEAN JOURNAL OF VASCULAR AND ENDOVASCULAR SURGERY","1078-5884","1532-2165","('PERIPHERAL VASCULAR DISEASE', 'SURGERY')","('SCIE', 'SCIE')","12,799","5.7","('Q1', 'Q1')","1.82","77.06" +"Journal of Transport Geography","0966-6923","1873-1236","('ECONOMICS', 'GEOGRAPHY', 'TRANSPORTATION')","('SSCI', 'SSCI', 'SSCI')","14,188","5.7","('Q1', 'Q1', 'Q1')","1.76","26.44" +"Horticultural Plant Journal","2095-9885","2468-0141","('HORTICULTURE', 'PLANT SCIENCES')","('SCIE', 'SCIE')","1,739","5.7","('Q1', 'Q1')","1.71","99.55" +"Current Issues in Tourism","1368-3500","1747-7603","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","11,529","5.7","Q1","1.64","11.08" +"DEVELOPMENTAL REVIEW","0273-2297","1090-2406","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","4,845","5.7","Q1","1.63","27.27" +"Kidney International Reports","2468-0249","2468-0249","UROLOGY & NEPHROLOGY","('SCIE',)","5,925","5.7","Q1","1.63","81.62" +"STRUCTURAL HEALTH MONITORING-AN INTERNATIONAL JOURNAL","1475-9217","1741-3168","('ENGINEERING, MULTIDISCIPLINARY', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","8,941","5.7","('Q1', 'Q1')","1.62","8.33" +"Journal of Risk Finance","1526-5943","2331-2947","BUSINESS, FINANCE","('ESCI',)","1,103","5.7","Q1","1.58","2.08" +"BREAST","0960-9776","1532-3080","('OBSTETRICS & GYNECOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","7,526","5.7","('Q1', 'Q1')","1.56","82.35" +"Japanese Dental Science Review","1882-7616","2213-6851","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,192","5.7","Q1","1.52","97.12" +"THIN-WALLED STRUCTURES","0263-8231","1879-3223","('ENGINEERING, CIVIL', 'ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","30,553","5.7","('Q1', 'Q1', 'Q1')","1.48","7.50" +"Biological Psychiatry-Cognitive Neuroscience and Neuroimaging","2451-9022","2451-9030","NEUROSCIENCES","('SCIE',)","3,990","5.7","Q1","1.47","42.28" +"Information and Organization","1471-7727","1873-7919","('INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SSCI', 'SSCI')","1,509","5.7","('Q1', 'Q1')","1.47","21.43" +"Analytica Chimica Acta","0003-2670","1873-4324","CHEMISTRY, ANALYTICAL","('SCIE',)","56,710","5.7","Q1","1.43","13.40" +"Journal of Modern Power Systems and Clean Energy","2196-5625","2196-5420","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","4,808","5.7","Q1","1.41","99.35" +"HYDROLOGY AND EARTH SYSTEM SCIENCES","1027-5606","1607-7938","('GEOSCIENCES, MULTIDISCIPLINARY', 'WATER RESOURCES')","('SCIE', 'SCIE')","26,511","5.7","('Q1', 'Q1')","1.40","99.09" +"BioScience Trends","1881-7815","1881-7823","BIOLOGY","('SCIE',)","2,027","5.7","Q1","1.39","98.00" +"Diabetes Technology & Therapeutics","1520-9156","1557-8593","ENDOCRINOLOGY & METABOLISM","('SCIE',)","6,819","5.7","Q1","1.39","21.31" +"International Journal of Fatigue","0142-1123","1879-3452","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","28,296","5.7","('Q1', 'Q2')","1.39","16.92" +"Annals of Intensive Care","2110-5820","2110-5820","CRITICAL CARE MEDICINE","('SCIE',)","5,864","5.7","Q1","1.38","99.49" +"MEAT SCIENCE","0309-1740","1873-4138","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","25,870","5.7","Q1","1.36","19.90" +"Current Rheumatology Reports","1523-3774","1534-6307","RHEUMATOLOGY","('SCIE',)","4,127","5.7","Q1","1.35","26.92" +"Drug Delivery and Translational Research","2190-393X","2190-3948","('MEDICINE, RESEARCH & EXPERIMENTAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","5,943","5.7","('Q1', 'Q1')","1.34","27.38" +"Applied Water Science","2190-5487","2190-5495","WATER RESOURCES","('SCIE',)","10,240","5.7","Q1","1.33","99.86" +"Global Strategy Journal","2042-5791","2042-5805","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","1,943","5.7","('Q1', 'Q1')","1.33","45.54" +"JOURNAL OF AGRICULTURAL AND FOOD CHEMISTRY","0021-8561","1520-5118","('AGRICULTURE, MULTIDISCIPLINARY', 'CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","142,021","5.7","('Q1', 'Q1', 'Q1')","1.33","5.60" +"IEEE Open Journal of the Computer Society","","2644-1268","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('ESCI', 'ESCI', 'ESCI', 'ESCI', 'ESCI')","509","5.7","('Q1', 'Q1', 'Q1', 'Q1', 'Q1')","1.31","94.94" +"Science of Remote Sensing","2666-0172","2666-0172","('ENVIRONMENTAL SCIENCES', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('ESCI', 'ESCI', 'ESCI')","547","5.7","('Q1', 'Q1', 'Q1')","1.31","90.82" +"Biology Direct","","1745-6150","BIOLOGY","('SCIE',)","2,327","5.7","Q1","1.28","98.65" +"STRUCTURAL SAFETY","0167-4730","1879-3355","ENGINEERING, CIVIL","('SCIE',)","6,700","5.7","Q1","1.28","19.91" +"Environmental Innovation and Societal Transitions","2210-4224","2210-4232","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SSCI')","4,902","5.7","('Q1', 'Q1')","1.26","64.62" +"Journal of Chemical Theory and Computation","1549-9618","1549-9626","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","49,720","5.7","('Q2', 'Q1')","1.23","22.61" +"INTERNATIONAL JOURNAL OF CANCER","0020-7136","1097-0215","ONCOLOGY","('SCIE',)","50,985","5.7","Q1","1.21","39.88" +"JOURNAL OF CONSUMER RESEARCH","0093-5301","1537-5277","BUSINESS","('SSCI',)","24,293","5.7","Q1","1.21","18.32" +"NPJ Schizophrenia","","2334-265X","PSYCHIATRY","('SCIE',)","1,174","5.7","Q1","1.19","98.31" +"Surfaces and Interfaces","2468-0230","2468-0230","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, COATINGS & FILMS', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","14,885","5.7","('Q2', 'Q1', 'Q1', 'Q1')","1.15","5.40" +"INTERNATIONAL JOURNAL OF MOLECULAR MEDICINE","1107-3756","1791-244X","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","16,921","5.7","Q1","1.14","90.76" +"Current Opinion in Virology","1879-6257","1879-6265","VIROLOGY","('SCIE',)","5,050","5.7","Q1","1.11","50.00" +"Journal of Materials Chemistry C","2050-7526","2050-7534","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","75,986","5.7","('Q2', 'Q1')","1.11","10.74" +"Fundamental Research","2096-9457","2667-3258","MULTIDISCIPLINARY SCIENCES","('ESCI',)","1,431","5.7","Q1","1.08","97.02" +"Journal of Biological Engineering","1754-1611","1754-1611","('BIOCHEMICAL RESEARCH METHODS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE')","2,162","5.7","('Q1', 'Q1')","1.07","99.29" +"Fungal Biology Reviews","1749-4613","1878-0253","MYCOLOGY","('SCIE',)","1,716","5.7","Q1","0.99","36.71" +"Current Atherosclerosis Reports","1523-3804","1534-6242","PERIPHERAL VASCULAR DISEASE","('SCIE',)","4,027","5.7","Q1","0.96","25.45" +"Frontiers in Immunology","1664-3224","1664-3224","IMMUNOLOGY","('SCIE',)","190,251","5.7","Q1","0.95","99.67" +"ACS Materials Au","2694-2461","2694-2461","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","552","5.7","('Q2', 'Q2')","0.79","74.05" +"CRITICAL REVIEWS IN TOXICOLOGY","1040-8444","1547-6898","TOXICOLOGY","('SCIE',)","4,376","5.7","Q1","0.76","47.52" +"International Journal of STEM Education","2196-7822","2196-7822","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('SSCI', 'SCIE')","2,509","5.6","('Q1', 'Q1')","2.80","100.00" +"ENTOMOLOGIA GENERALIS","0171-8177","2363-7102","ENTOMOLOGY","('SCIE',)","1,599","5.6","Q1","2.59","0.00" +"FISH AND FISHERIES","1467-2960","1467-2979","FISHERIES","('SCIE',)","6,816","5.6","Q1","2.20","41.30" +"JOURNAL OF EDUCATIONAL PSYCHOLOGY","0022-0663","1939-2176","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","20,586","5.6","Q1","2.18","8.19" +"FIELD CROPS RESEARCH","0378-4290","1872-6852","AGRONOMY","('SCIE',)","25,948","5.6","Q1","1.90","22.75" +"AGRICULTURAL AND FOREST METEOROLOGY","0168-1923","1873-2240","('AGRONOMY', 'FORESTRY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE')","28,380","5.6","('Q1', 'Q1', 'Q1')","1.88","31.32" +"JOURNAL OF PATHOLOGY","0022-3417","1096-9896","('ONCOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","17,724","5.6","('Q1', 'Q1')","1.80","45.53" +"BMJ Quality & Safety","2044-5415","2044-5423","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","7,337","5.6","('Q1', 'Q1')","1.71","47.45" +"American Economic Journal-Economic Policy","1945-7731","1945-774X","ECONOMICS","('SSCI',)","4,865","5.6","Q1","1.68","0.00" +"Quantum Science and Technology","2058-9565","2058-9565","('PHYSICS, MULTIDISCIPLINARY', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","3,742","5.6","('Q1', 'Q1')","1.66","46.38" +"Review of Finance","1572-3097","1573-692X","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","4,059","5.6","('Q1', 'Q1')","1.66","18.75" +"International Journal of Behavioral Nutrition and Physical Activity","","1479-5868","('NUTRITION & DIETETICS', 'PHYSIOLOGY')","('SCIE', 'SCIE')","14,335","5.6","('Q1', 'Q1')","1.64","99.78" +"Acta Physiologica","1748-1708","1748-1716","PHYSIOLOGY","('SCIE',)","6,057","5.6","Q1","1.62","45.49" +"IEEE TRANSACTIONS ON PARALLEL AND DISTRIBUTED SYSTEMS","1045-9219","1558-2183","('COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","10,305","5.6","('Q1', 'Q1')","1.62","16.83" +"IRBM","1959-0318","1876-0988","ENGINEERING, BIOMEDICAL","('SCIE',)","1,445","5.6","Q1","1.62","25.27" +"Food Science and Human Wellness","","2213-4530","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","4,149","5.6","('Q1', 'Q1')","1.58","99.36" +"HEART RHYTHM","1547-5271","1556-3871","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","15,444","5.6","Q1","1.55","21.75" +"Emerging Markets Review","1566-0141","1873-6173","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","3,156","5.6","('Q1', 'Q1')","1.54","10.73" +"TALANTA","0039-9140","1873-3573","CHEMISTRY, ANALYTICAL","('SCIE',)","55,931","5.6","Q1","1.47","13.23" +"Acta Geotechnica","1861-1125","1861-1133","ENGINEERING, GEOLOGICAL","('SCIE',)","10,068","5.6","Q1","1.45","14.04" +"Cambridge Journal of Regions Economy and Society","1752-1378","1752-1386","('DEVELOPMENT STUDIES', 'ECONOMICS', 'GEOGRAPHY')","('SSCI', 'SSCI', 'SSCI')","2,583","5.6","('Q1', 'Q1', 'Q1')","1.45","44.04" +"IEEE Industrial Electronics Magazine","1932-4529","1941-0115","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","2,456","5.6","Q1","1.45","0.00" +"INDUSTRIAL CROPS AND PRODUCTS","0926-6690","1872-633X","('AGRICULTURAL ENGINEERING', 'AGRONOMY')","('SCIE', 'SCIE')","56,248","5.6","('Q1', 'Q1')","1.45","8.49" +"Geoderma","0016-7061","1872-6259","SOIL SCIENCE","('SCIE',)","41,044","5.6","Q1","1.43","50.10" +"JOURNAL OF ENZYME INHIBITION AND MEDICINAL CHEMISTRY","1475-6366","1475-6374","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL')","('SCIE', 'SCIE')","9,268","5.6","('Q1', 'Q1')","1.42","97.77" +"JOURNAL OF EXPERIMENTAL BOTANY","0022-0957","1460-2431","PLANT SCIENCES","('SCIE',)","62,522","5.6","Q1","1.39","28.03" +"Neurotherapeutics","1933-7213","1878-7479","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","8,591","5.6","('Q1', 'Q1', 'Q1')","1.39","98.33" +"mAbs","1942-0862","1942-0870","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","6,473","5.6","Q1","1.38","100.00" +"IEEE TRANSACTIONS ON INSTRUMENTATION AND MEASUREMENT","0018-9456","1557-9662","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","41,824","5.6","('Q1', 'Q1')","1.37","6.42" +"IEEE INTELLIGENT SYSTEMS","1541-1672","1941-1294","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","4,157","5.6","('Q1', 'Q1')","1.33","8.54" +"WORK AND STRESS","0267-8373","1464-5335","PSYCHOLOGY, APPLIED","('SSCI',)","4,208","5.6","Q1","1.33","49.15" +"FOOD CONTROL","0956-7135","1873-7129","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","36,063","5.6","Q1","1.31","21.07" +"Journal of Chemical Information and Modeling","1549-9596","1549-960X","('CHEMISTRY, MEDICINAL', 'CHEMISTRY, MULTIDISCIPLINARY', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","33,490","5.6","('Q1', 'Q2', 'Q1', 'Q1')","1.31","17.52" +"ENGINEERING STRUCTURES","0141-0296","1873-7323","ENGINEERING, CIVIL","('SCIE',)","72,011","5.6","Q1","1.29","13.65" +"IEEE Circuits and Systems Magazine","1531-636X","1558-0830","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","1,218","5.6","Q1","1.28","1.72" +"FORTSCHRITTE DER PHYSIK-PROGRESS OF PHYSICS","0015-8208","1521-3978","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","2,694","5.6","Q1","1.26","22.62" +"Hepatology Communications","","2471-254X","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","5,169","5.6","Q1","1.23","74.50" +"Food Security","1876-4517","1876-4525","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","5,780","5.6","Q1","1.22","58.27" +"International Journal of Minerals Metallurgy and Materials","1674-4799","1869-103X","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE', 'SCIE')","6,898","5.6","('Q2', 'Q1', 'Q1')","1.18","1.67" +"Rice Science","1672-6308","1876-4762","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","2,185","5.6","('Q1', 'Q1')","1.15","97.78" +"INTERNATIONAL JOURNAL OF COAL GEOLOGY","0166-5162","1872-7840","('ENERGY & FUELS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","16,134","5.6","('Q2', 'Q1')","1.12","21.12" +"Superconductivity","","2772-8307","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('ESCI', 'ESCI', 'ESCI')","187","5.6","('Q1', 'Q1', 'Q1')","1.01","92.31" +"Cancer Biology & Medicine","2095-3941","2095-3941","('MEDICINE, RESEARCH & EXPERIMENTAL', 'ONCOLOGY')","('SCIE', 'SCIE')","3,331","5.6","('Q1', 'Q1')","0.97","93.06" +"Food Structure-Netherlands","2213-3291","2213-3291","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,246","5.6","Q1","0.95","21.01" +"Regenerative Biomaterials","2056-3418","2056-3426","MATERIALS SCIENCE, BIOMATERIALS","('SCIE',)","2,423","5.6","Q1","0.95","98.99" +"PROGRESS IN CARDIOVASCULAR DISEASES","0033-0620","1873-1740","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","5,840","5.6","Q1","0.90","15.84" +"Radiology-Imaging Cancer","2638-616X","2638-616X","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('ESCI', 'ESCI')","491","5.6","('Q1', 'Q1')","0.89","92.65" +"JOURNAL OF THE ENERGY INSTITUTE","1743-9671","1746-0220","ENERGY & FUELS","('SCIE',)","6,383","5.6","Q2","0.88","5.39" +"Tungsten","2661-8028","2661-8036","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('ESCI', 'ESCI')","1,043","5.6","('Q2', 'Q1')","0.71","4.27" +"Essays in Biochemistry","0071-1365","1744-1358","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","5,249","5.6","Q1","0.65","48.58" +"IEEE Transactions on Services Computing","1939-1374","1939-1374","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","5,444","5.5","('Q1', 'Q1')","2.76","13.08" +"JOURNAL OF THROMBOSIS AND HAEMOSTASIS","1538-7933","1538-7836","('HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","22,924","5.5","('Q1', 'Q1')","2.26","55.19" +"Social Media + Society","2056-3051","2056-3051","COMMUNICATION","('SSCI',)","5,995","5.5","Q1","2.25","92.34" +"Journal of Adolescent Health","1054-139X","1879-1972","('PEDIATRICS', 'PSYCHOLOGY, DEVELOPMENTAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SCIE, SSCI')","19,484","5.5","('Q1', 'Q1', 'Q1')","2.20","29.13" +"HARMFUL ALGAE","1568-9883","1878-1470","MARINE & FRESHWATER BIOLOGY","('SCIE',)","8,567","5.5","Q1","2.10","39.94" +"Global Finance Journal","1044-0283","1873-5665","BUSINESS, FINANCE","('SSCI',)","1,979","5.5","Q1","1.91","9.23" +"American Economic Journal-Applied Economics","1945-7782","1945-7790","ECONOMICS","('SSCI',)","6,008","5.5","Q1","1.90","0.00" +"ECONOMIC GEOLOGY","0361-0128","1554-0774","('GEOCHEMISTRY & GEOPHYSICS', 'MINERALOGY')","('SCIE', 'SCIE')","14,811","5.5","('Q1', 'Q1')","1.77","16.26" +"ROCK MECHANICS AND ROCK ENGINEERING","0723-2632","1434-453X","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","24,075","5.5","('Q1', 'Q1')","1.58","13.19" +"British Accounting Review","0890-8389","1095-8347","BUSINESS, FINANCE","('SSCI',)","3,501","5.5","Q1","1.56","19.66" +"Journal of Cardiovascular Computed Tomography","1934-5925","1934-5925","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","3,046","5.5","('Q1', 'Q1')","1.52","18.97" +"Molecular Ecology Resources","1755-098X","1755-0998","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ECOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","15,125","5.5","('Q1', 'Q1', 'Q1')","1.49","39.36" +"PLoS Pathogens","1553-7366","1553-7374","('MICROBIOLOGY', 'PARASITOLOGY', 'VIROLOGY')","('SCIE', 'SCIE', 'SCIE')","50,268","5.5","('Q1', 'Q1', 'Q1')","1.49","99.47" +"CLINICAL CHILD AND FAMILY PSYCHOLOGY REVIEW","1096-4037","1573-2827","PSYCHOLOGY, CLINICAL","('SSCI',)","3,877","5.5","Q1","1.44","40.63" +"BIOMACROMOLECULES","1525-7797","1526-4602","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, ORGANIC', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","39,295","5.5","('Q1', 'Q1', 'Q1')","1.32","14.84" +"Green Finance","2643-1092","2643-1092","('BUSINESS, FINANCE', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","381","5.5","('Q1', 'Q2')","1.29","95.71" +"JOURNAL DER DEUTSCHEN DERMATOLOGISCHEN GESELLSCHAFT","1610-0379","1610-0387","DERMATOLOGY","('SCIE',)","4,221","5.5","Q1","1.29","65.71" +"JOURNAL OF ENVIRONMENTAL ECONOMICS AND MANAGEMENT","0095-0696","1096-0449","('BUSINESS', 'ECONOMICS', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI', 'SSCI')","10,637","5.5","('Q1', 'Q1', 'Q1')","1.26","35.74" +"Asia Pacific Management Review","1029-3132","1029-3132","MANAGEMENT","('ESCI',)","1,214","5.5","Q1","1.18","96.75" +"Virus Evolution","","2057-1577","VIROLOGY","('SCIE',)","3,399","5.5","Q1","1.15","95.63" +"Foundations and Trends in Systems and Control","2325-6818","2325-6826","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","213","5.5","Q1","1.13","0.00" +"Corporate Governance-The International Journal of Business in Society","1472-0701","1758-6054","BUSINESS","('ESCI',)","4,026","5.5","Q1","1.09","6.32" +"International Journal of Retail & Distribution Management","0959-0552","1758-6690","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","4,610","5.5","('Q1', 'Q1')","1.08","14.45" +"ELECTROCHIMICA ACTA","0013-4686","1873-3859","ELECTROCHEMISTRY","('SCIE',)","123,725","5.5","Q1","1.02","13.24" +"Biomaterials Advances","","2772-9508","MATERIALS SCIENCE, BIOMATERIALS","('SCIE',)","3,618","5.5","Q2","1.01","20.26" +"NEUROCOMPUTING","0925-2312","1872-8286","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","59,806","5.5","Q1","1.01","8.34" +"Sustainable Chemistry and Pharmacy","","2352-5541","('CHEMISTRY, MULTIDISCIPLINARY', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,073","5.5","('Q2', 'Q1', 'Q2')","1.00","7.99" +"CHINESE JOURNAL OF CHEMISTRY","1001-604X","1614-7065","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","9,488","5.5","Q2","0.99","1.31" +"Journal of Analysis and Testing","2096-241X","2509-4696","CHEMISTRY, ANALYTICAL","('ESCI',)","881","5.5","Q1","0.94","3.70" +"MEDICAL MICROBIOLOGY AND IMMUNOLOGY","0300-8584","1432-1831","('IMMUNOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","2,456","5.5","('Q1', 'Q1')","0.94","45.68" +"Virulence","2150-5594","2150-5608","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","7,200","5.5","('Q1', 'Q1', 'Q1')","0.89","100.00" +"CRITICAL REVIEWS IN ONCOLOGY HEMATOLOGY","1040-8428","1879-0461","('HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","11,380","5.5","('Q1', 'Q1')","0.88","22.05" +"Journal of the Taiwan Institute of Chemical Engineers","1876-1070","1876-1089","ENGINEERING, CHEMICAL","('SCIE',)","18,222","5.5","Q1","0.88","1.54" +"BioChip Journal","1976-0280","2092-7843","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,160","5.5","('Q1', 'Q1', 'Q2')","0.86","7.35" +"Current Psychiatry Reports","1523-3812","1535-1645","PSYCHIATRY","('SCIE', 'SSCI')","8,708","5.5","Q1","0.80","23.89" +"FEBS Journal","1742-464X","1742-4658","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","24,487","5.5","Q1","0.80","33.43" +"Nanoscale Research Letters","1931-7573","1556-276X","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","19,618","5.5","('Q2', 'Q2', 'Q1')","0.80","99.31" +"Expert Review of Vaccines","1476-0584","1744-8395","IMMUNOLOGY","('SCIE',)","5,989","5.5","Q1","0.79","49.32" +"Carbon Letters","1976-4251","2233-4998","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","3,095","5.5","('Q2', 'Q2')","0.72","2.55" +"Chemical Engineering Journal Advances","2666-8211","2666-8211","('ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL')","('ESCI', 'ESCI')","2,574","5.5","('Q1', 'Q2')","0.63","98.78" +"Educational Researcher","0013-189X","1935-102X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","8,509","5.4","Q1","3.12","14.59" +"Journal of Computer-Mediated Communication","1083-6101","1083-6101","('COMMUNICATION', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SSCI', 'SSCI')","5,343","5.4","('Q1', 'Q1')","2.10","92.62" +"INTERNATIONAL ENDODONTIC JOURNAL","0143-2885","1365-2591","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","11,468","5.4","Q1","1.90","25.87" +"WORLD DEVELOPMENT","0305-750X","1873-5991","('DEVELOPMENT STUDIES', 'ECONOMICS')","('SSCI', 'SSCI')","30,616","5.4","('Q1', 'Q1')","1.90","39.10" +"PRECISION AGRICULTURE","1385-2256","1573-1618","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","4,935","5.4","Q1","1.88","33.23" +"Journal of Statistical Software","1548-7660","1548-7660","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","42,696","5.4","('Q1', 'Q1')","1.79","92.52" +"JOURNAL OF ACCOUNTING & ECONOMICS","0165-4101","1879-1980","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","16,129","5.4","('Q1', 'Q1')","1.75","11.81" +"Emergencias","1137-6821","2386-5857","EMERGENCY MEDICINE","('SCIE',)","901","5.4","Q1","1.74","0.00" +"JOURNAL OF ADVERTISING","0091-3367","1557-7805","('BUSINESS', 'COMMUNICATION')","('SSCI', 'SSCI')","6,506","5.4","('Q1', 'Q1')","1.66","16.88" +"PHYSIOLOGIA PLANTARUM","0031-9317","1399-3054","PLANT SCIENCES","('SCIE',)","19,100","5.4","Q1","1.57","20.18" +"Journal of Healthcare Informatics Research","2509-4971","2509-498X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('ESCI', 'ESCI', 'ESCI')","447","5.4","('Q1', 'Q1', 'Q1')","1.53","32.88" +"Journal of International Financial Markets Institutions & Money","1042-4431","1873-0612","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","5,154","5.4","('Q1', 'Q1')","1.51","21.22" +"Journal of Management Science and Engineering","2096-2320","2589-5532","('BUSINESS, FINANCE', 'ECONOMICS', 'MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","566","5.4","('Q1', 'Q1', 'Q1', 'Q1')","1.49","94.90" +"APL Photonics","2378-0967","2378-0967","('OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","4,185","5.4","('Q1', 'Q1')","1.47","91.81" +"CATENA","0341-8162","1872-6887","('GEOSCIENCES, MULTIDISCIPLINARY', 'SOIL SCIENCE', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","32,914","5.4","('Q1', 'Q1', 'Q1')","1.47","10.97" +"COMPUTERIZED MEDICAL IMAGING AND GRAPHICS","0895-6111","1879-0771","('ENGINEERING, BIOMEDICAL', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","4,580","5.4","('Q1', 'Q1')","1.47","21.47" +"Journal of Cystic Fibrosis","1569-1993","1873-5010","RESPIRATORY SYSTEM","('SCIE',)","6,862","5.4","Q1","1.47","62.23" +"JOURNAL OF THE AMERICAN SOCIETY OF ECHOCARDIOGRAPHY","0894-7317","","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","12,505","5.4","Q1","1.47","17.87" +"PHILOSOPHICAL TRANSACTIONS OF THE ROYAL SOCIETY B-BIOLOGICAL SCIENCES","0962-8436","1471-2970","BIOLOGY","('SCIE',)","53,916","5.4","Q1","1.45","49.68" +"Communications Physics","2399-3650","2399-3650","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","6,354","5.4","Q1","1.43","99.89" +"GLIA","0894-1491","1098-1136","NEUROSCIENCES","('SCIE',)","15,976","5.4","Q1","1.43","38.79" +"ACM TRANSACTIONS ON INFORMATION SYSTEMS","1046-8188","1558-2868","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","3,444","5.4","Q1","1.41","1.23" +"Propulsion and Power Research","2212-540X","2212-540X","('ENGINEERING, AEROSPACE', 'ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","1,275","5.4","('Q1', 'Q1', 'Q1')","1.40","96.15" +"Human Resource Management Journal","0954-5395","1748-8583","('INDUSTRIAL RELATIONS & LABOR', 'MANAGEMENT')","('SSCI', 'SSCI')","3,631","5.4","('Q1', 'Q1')","1.38","48.85" +"npj Aging and Mechanisms of Disease","","2056-3973","GERIATRICS & GERONTOLOGY","('ESCI',)","629","5.4","Q1","1.38","100.00" +"Trauma Violence & Abuse","1524-8380","1552-8324","('CRIMINOLOGY & PENOLOGY', 'FAMILY STUDIES', 'SOCIAL WORK')","('SSCI', 'SSCI', 'SSCI')","6,714","5.4","('Q1', 'Q1', 'Q1')","1.37","26.46" +"ECOGRAPHY","0906-7590","1600-0587","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","16,934","5.4","('Q1', 'Q1')","1.36","78.80" +"DIABETES OBESITY & METABOLISM","1462-8902","1463-1326","ENDOCRINOLOGY & METABOLISM","('SCIE',)","14,709","5.4","Q1","1.35","41.34" +"ASTRONOMY & ASTROPHYSICS","0004-6361","1432-0746","ASTRONOMY & ASTROPHYSICS","('SCIE',)","160,179","5.4","Q1","1.32","62.90" +"Communications Medicine","2730-664X","2730-664X","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,168","5.4","Q1","1.31","99.72" +"npj Quantum Materials","","2397-4648","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","3,033","5.4","('Q2', 'Q1', 'Q2', 'Q1')","1.30","100.00" +"Strategic Entrepreneurship Journal","1932-4391","1932-443X","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","3,770","5.4","('Q1', 'Q1')","1.30","34.94" +"HEADACHE","0017-8748","1526-4610","CLINICAL NEUROLOGY","('SCIE',)","10,529","5.4","Q1","1.29","27.32" +"JMIR mHealth and uHealth","2291-5222","2291-5222","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE')","12,356","5.4","('Q1', 'Q1')","1.24","99.24" +"Stem Cells Translational Medicine","2157-6564","2157-6580","CELL & TISSUE ENGINEERING","('SCIE',)","7,780","5.4","Q1","1.23","92.39" +"Current Plant Biology","","2214-6628","PLANT SCIENCES","('ESCI',)","952","5.4","Q1","1.21","94.34" +"GLOBAL BIOGEOCHEMICAL CYCLES","0886-6236","1944-9224","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE')","16,502","5.4","('Q1', 'Q1', 'Q1')","1.20","41.69" +"Sensing and Bio-Sensing Research","","2214-1804","CHEMISTRY, ANALYTICAL","('ESCI',)","2,225","5.4","Q1","1.16","97.17" +"CONTROL ENGINEERING PRACTICE","0967-0661","1873-6939","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","10,056","5.4","('Q1', 'Q1')","1.14","16.94" +"INFECTION","0300-8126","1439-0973","INFECTIOUS DISEASES","('SCIE',)","6,136","5.4","Q1","1.14","59.96" +"COLLOIDS AND SURFACES B-BIOINTERFACES","0927-7765","1873-4367","('BIOPHYSICS', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE', 'SCIE')","39,939","5.4","('Q1', 'Q2', 'Q2')","1.10","9.84" +"BIODRUGS","1173-8804","1179-190X","('IMMUNOLOGY', 'ONCOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","2,891","5.4","('Q1', 'Q1', 'Q1')","1.07","50.00" +"Resources Conservation & Recycling Advances","2667-3789","2667-3789","ENVIRONMENTAL SCIENCES","('ESCI',)","449","5.4","Q1","1.05","96.30" +"IEEE ROBOTICS & AUTOMATION MAGAZINE","1070-9932","1558-223X","('AUTOMATION & CONTROL SYSTEMS', 'ROBOTICS')","('SCIE', 'SCIE')","4,696","5.4","('Q1', 'Q1')","1.00","15.13" +"GIANT","2666-5425","2666-5425","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'POLYMER SCIENCE')","('ESCI', 'ESCI', 'ESCI')","772","5.4","('Q2', 'Q2', 'Q1')","0.98","96.59" +"ACS Applied Energy Materials","2574-0962","","('CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","39,507","5.4","('Q2', 'Q2', 'Q2')","0.93","6.43" +"Environmental and Sustainability Indicators","2665-9727","2665-9727","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('ESCI', 'ESCI')","1,190","5.4","('Q1', 'Q1')","0.88","96.86" +"ACS Biomaterials Science & Engineering","2373-9878","2373-9878","MATERIALS SCIENCE, BIOMATERIALS","('SCIE',)","18,295","5.4","Q2","0.85","8.93" +"EXPERT OPINION ON THERAPEUTIC PATENTS","1354-3776","1744-7674","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","4,249","5.4","('Q1', 'Q1')","0.85","4.14" +"Smart Energy","2666-9552","2666-9552","ENERGY & FUELS","('ESCI',)","433","5.4","Q2","0.83","99.07" +"NEUROPSYCHOLOGY REVIEW","1040-7308","1573-6660","('NEUROSCIENCES', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SSCI')","4,290","5.4","('Q1', 'Q1')","0.81","41.72" +"Journal of Hazardous Materials Advances","2772-4166","2772-4166","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('ESCI', 'ESCI')","1,477","5.4","('Q2', 'Q1')","0.74","97.89" +"Journal of Power Sources Advances","","2666-2485","('CHEMISTRY, PHYSICAL', 'ELECTROCHEMISTRY', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","341","5.4","('Q2', 'Q2', 'Q2', 'Q2')","0.73","100.00" +"APPLIED SPECTROSCOPY REVIEWS","0570-4928","1520-569X","('INSTRUMENTS & INSTRUMENTATION', 'SPECTROSCOPY')","('SCIE', 'SCIE')","3,162","5.4","('Q1', 'Q1')","0.70","15.56" +"CURRENT ALLERGY AND ASTHMA REPORTS","1529-7322","1534-6315","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","3,543","5.4","('Q1', 'Q1')","0.69","21.48" +"Wiley Interdisciplinary Reviews-Energy and Environment","2041-8396","2041-840X","ENERGY & FUELS","('SCIE',)","1,506","5.4","Q2","0.40","38.71" +"Asian Economic Papers","1535-3516","1536-0083","ECONOMICS","('SSCI',)","529","5.3","Q1","3.37","1.82" +"IEEE Transactions on Cloud Computing","2168-7161","2168-7161","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","3,846","5.3","('Q1', 'Q1')","2.31","6.70" +"BRITISH JOURNAL OF GENERAL PRACTICE","0960-1643","1478-5242","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","8,869","5.3","('Q1', 'Q1')","2.28","91.35" +"CHAOS SOLITONS & FRACTALS","0960-0779","1873-2887","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PHYSICS, MATHEMATICAL', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","32,102","5.3","('Q1', 'Q1', 'Q1')","2.27","6.62" +"International Journal of Clinical and Health Psychology","1697-2600","1576-7329","PSYCHOLOGY, CLINICAL","('SSCI',)","1,935","5.3","Q1","2.16","96.39" +"JOURNAL OF HUMAN RESOURCES","0022-166X","1548-8004","('ECONOMICS', 'INDUSTRIAL RELATIONS & LABOR')","('SSCI', 'SSCI')","6,304","5.3","('Q1', 'Q1')","2.14","20.35" +"ACADEMIC MEDICINE","1040-2446","1938-808X","('EDUCATION, SCIENTIFIC DISCIPLINES', 'HEALTH CARE SCIENCES & SERVICES')","('SCIE', 'SCIE')","22,525","5.3","('Q1', 'Q1')","2.02","10.60" +"Chinese Journal of Aeronautics","1000-9361","2588-9230","ENGINEERING, AEROSPACE","('SCIE',)","10,190","5.3","Q1","2.02","95.77" +"CLIMATE POLICY","1469-3062","1752-7457","('ENVIRONMENTAL STUDIES', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","5,194","5.3","('Q1', 'Q1')","1.67","43.05" +"European Heart Journal-Cardiovascular Pharmacotherapy","2055-6837","2055-6845","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,629","5.3","('Q1', 'Q1')","1.67","22.36" +"TRANSPLANTATION","0041-1337","1534-6080","('IMMUNOLOGY', 'SURGERY', 'TRANSPLANTATION')","('SCIE', 'SCIE', 'SCIE')","22,905","5.3","('Q1', 'Q1', 'Q1')","1.64","13.41" +"International Journal of Pharmaceutics","0378-5173","1873-3476","PHARMACOLOGY & PHARMACY","('SCIE',)","63,052","5.3","Q1","1.63","20.47" +"JOURNAL OF SMALL BUSINESS MANAGEMENT","0047-2778","1540-627X","MANAGEMENT","('SSCI',)","6,777","5.3","Q1","1.49","17.03" +"Marine Pollution Bulletin","0025-326X","1879-3363","('ENVIRONMENTAL SCIENCES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","62,356","5.3","('Q1', 'Q1')","1.49","19.96" +"GeroScience","2509-2715","2509-2723","GERIATRICS & GERONTOLOGY","('SCIE',)","4,500","5.3","Q1","1.47","47.87" +"IEEE Transactions on Green Communications and Networking","2473-2400","2473-2400","TELECOMMUNICATIONS","('SCIE',)","3,147","5.3","Q1","1.45","8.45" +"Journal of Cosmology and Astroparticle Physics","1475-7516","1475-7516","('ASTRONOMY & ASTROPHYSICS', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","38,356","5.3","('Q1', 'Q1')","1.45","20.70" +"SCHIZOPHRENIA BULLETIN","0586-7614","1745-1701","PSYCHIATRY","('SCIE', 'SSCI')","17,757","5.3","Q1","1.45","34.44" +"International Journal of Advertising","0265-0487","1759-3948","('BUSINESS', 'COMMUNICATION')","('SSCI', 'SSCI')","4,060","5.3","('Q1', 'Q1')","1.44","10.47" +"PROGRESS IN NEURO-PSYCHOPHARMACOLOGY & BIOLOGICAL PSYCHIATRY","0278-5846","1878-4216","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","14,042","5.3","('Q1', 'Q1', 'Q1', 'Q1')","1.43","19.91" +"Autism Research","1939-3792","1939-3806","('BEHAVIORAL SCIENCES', 'PSYCHOLOGY, DEVELOPMENTAL')","('SCIE', 'SSCI')","7,746","5.3","('Q1', 'Q1')","1.42","29.61" +"BIOCHEMICAL PHARMACOLOGY","0006-2952","1873-2968","PHARMACOLOGY & PHARMACY","('SCIE',)","30,835","5.3","Q1","1.41","20.83" +"Journal of Hospitality and Tourism Technology","1757-9880","1757-9899","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","1,932","5.3","Q1","1.40","3.82" +"MULTIVARIATE BEHAVIORAL RESEARCH","0027-3171","1532-7906","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PSYCHOLOGY, EXPERIMENTAL', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SCIE', 'SSCI', 'SSCI', 'SCIE')","9,292","5.3","('Q1', 'Q1', 'Q1', 'Q1')","1.39","22.60" +"INTERNATIONAL JOURNAL OF HUMAN-COMPUTER STUDIES","1071-5819","1095-9300","('COMPUTER SCIENCE, CYBERNETICS', 'ERGONOMICS', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI', 'SSCI')","7,523","5.3","('Q1', 'Q1', 'Q1')","1.38","36.06" +"Earth Systems and Environment","2509-9426","2509-9434","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('ESCI', 'ESCI', 'ESCI')","1,591","5.3","('Q1', 'Q1', 'Q1')","1.36","28.40" +"JOURNAL OF ECOLOGY","0022-0477","1365-2745","('ECOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","24,342","5.3","('Q1', 'Q1')","1.36","44.34" +"SLEEP","0161-8105","1550-9109","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","28,718","5.3","('Q1', 'Q1')","1.35","27.80" +"COMPUTERS AND GEOTECHNICS","0266-352X","1873-7633","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","22,614","5.3","('Q1', 'Q1', 'Q1')","1.34","10.91" +"Chinese Medicine","1749-8546","1749-8546","('INTEGRATIVE & COMPLEMENTARY MEDICINE', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","4,170","5.3","('Q1', 'Q1')","1.32","100.00" +"MICROCHIMICA ACTA","0026-3672","1436-5073","CHEMISTRY, ANALYTICAL","('SCIE',)","21,995","5.3","Q1","1.31","8.14" +"EUROPEAN JOURNAL OF ENDOCRINOLOGY","0804-4643","1479-683X","ENDOCRINOLOGY & METABOLISM","('SCIE',)","15,977","5.3","Q1","1.28","31.68" +"Molecular Therapy Oncolytics","2372-7705","2372-7705","('MEDICINE, RESEARCH & EXPERIMENTAL', 'ONCOLOGY')","('SCIE', 'SCIE')","3,603","5.3","('Q1', 'Q1')","1.28","88.78" +"JOURNAL OF MANAGEMENT IN ENGINEERING","0742-597X","1943-5479","('ENGINEERING, CIVIL', 'ENGINEERING, INDUSTRIAL')","('SCIE', 'SCIE')","5,827","5.3","('Q1', 'Q1')","1.26","2.58" +"Business & Society","0007-6503","1552-4205","BUSINESS","('SSCI',)","4,764","5.3","Q1","1.25","31.51" +"Emerging Contaminants","2405-6650","2405-6642","ENVIRONMENTAL SCIENCES","('ESCI',)","1,245","5.3","Q1","1.25","98.02" +"Food Engineering Reviews","1866-7910","1866-7929","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","2,269","5.3","Q1","1.25","12.90" +"MOLECULAR CANCER THERAPEUTICS","1535-7163","1538-8514","ONCOLOGY","('SCIE',)","18,993","5.3","Q1","1.23","32.75" +"ACTA PSYCHIATRICA SCANDINAVICA","0001-690X","1600-0447","PSYCHIATRY","('SCIE', 'SSCI')","13,892","5.3","Q1","1.22","50.18" +"Biocybernetics and Biomedical Engineering","0208-5216","0208-5216","ENGINEERING, BIOMEDICAL","('SCIE',)","3,142","5.3","Q1","1.22","10.04" +"Environmental Health","","1476-069X","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","8,601","5.3","('Q1', 'Q1')","1.20","100.00" +"JOURNAL OF MOLECULAR LIQUIDS","0167-7322","1873-3166","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","80,561","5.3","('Q2', 'Q1')","1.20","7.58" +"APPLIED CLAY SCIENCE","0169-1317","1872-9053","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MINERALOGY')","('SCIE', 'SCIE', 'SCIE')","24,418","5.3","('Q2', 'Q2', 'Q1')","1.19","15.19" +"International Journal of Hydromechatronics","2515-0464","2515-0472","ENGINEERING, MECHANICAL","('ESCI',)","361","5.3","Q1","1.18","0.00" +"General Psychiatry","2096-5923","2517-729X","PSYCHIATRY","('ESCI',)","1,462","5.3","Q1","1.17","100.00" +"Food and Bioprocess Technology","1935-5130","1935-5149","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","13,764","5.3","Q1","1.14","15.31" +"SURFACE & COATINGS TECHNOLOGY","0257-8972","1879-3347","('MATERIALS SCIENCE, COATINGS & FILMS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","64,008","5.3","('Q1', 'Q1')","1.14","11.12" +"CELL BIOLOGY AND TOXICOLOGY","0742-2091","1573-6822","('CELL BIOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","3,242","5.3","('Q2', 'Q1')","1.13","23.23" +"PLANT CELL REPORTS","0721-7714","1432-203X","PLANT SCIENCES","('SCIE',)","12,100","5.3","Q1","1.13","7.26" +"WEAR","0043-1648","1873-2577","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","37,288","5.3","('Q1', 'Q2')","1.13","15.66" +"Cancer Cell International","","1475-2867","ONCOLOGY","('SCIE',)","13,672","5.3","Q1","1.12","99.57" +"IEEE Open Journal of Vehicular Technology","","2644-1330","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","538","5.3","('Q1', 'Q1', 'Q1')","1.12","97.44" +"Journal of Pharmaceutical Investigation","2093-5552","2093-6214","PHARMACOLOGY & PHARMACY","('SCIE',)","1,721","5.3","Q1","1.10","4.67" +"SCRIPTA MATERIALIA","1359-6462","1872-8456","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","46,654","5.3","('Q2', 'Q1', 'Q2')","1.10","25.00" +"JOURNAL OF FOOD ENGINEERING","0260-8774","1873-5770","('ENGINEERING, CHEMICAL', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","30,557","5.3","('Q1', 'Q1')","1.08","20.83" +"PHYSIOLOGY","1548-9213","1548-9221","PHYSIOLOGY","('SCIE',)","4,749","5.3","Q1","1.06","3.37" +"APL Materials","2166-532X","2166-532X","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","10,414","5.3","('Q2', 'Q2', 'Q1')","1.03","92.31" +"JCO Precision Oncology","","2473-4284","ONCOLOGY","('SCIE',)","4,860","5.3","Q1","1.03","37.94" +"MATERIALS RESEARCH BULLETIN","0025-5408","1873-4227","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","26,729","5.3","Q2","1.03","4.50" +"MECHANISMS OF AGEING AND DEVELOPMENT","0047-6374","1872-6216","('CELL BIOLOGY', 'GERIATRICS & GERONTOLOGY')","('SCIE', 'SCIE')","7,521","5.3","('Q2', 'Q1')","1.03","32.75" +"IEEE Transactions on Emerging Topics in Computational Intelligence","2471-285X","2471-285X","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","2,653","5.3","Q1","1.01","5.17" +"Arabian Journal of Chemistry","1878-5352","1878-5379","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","22,818","5.3","Q2","0.94","95.36" +"PROCEEDINGS OF THE COMBUSTION INSTITUTE","1540-7489","1873-2704","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","20,615","5.3","('Q2', 'Q1', 'Q1', 'Q1')","0.92","29.81" +"Advanced Electronic Materials","2199-160X","2199-160X","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","15,877","5.3","('Q2', 'Q2', 'Q1')","0.90","47.14" +"ACS Applied Nano Materials","","2574-0970","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","36,563","5.3","('Q2', 'Q2')","0.85","6.01" +"International Journal of Precision Engineering and Manufacturing-Green Technology","2288-6206","2198-0810","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MECHANICAL', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,459","5.3","('Q1', 'Q1', 'Q2')","0.83","12.54" +"Cleaner Engineering and Technology","2666-7908","2666-7908","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","3,442","5.3","('Q2', 'Q1', 'Q2')","0.70","96.97" +"Skeletal Muscle","2044-5040","2044-5040","CELL BIOLOGY","('SCIE',)","1,768","5.3","Q2","0.69","100.00" +"Biologics-Targets & Therapy","1177-5475","1177-5491","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","939","5.3","Q1","0.67","95.95" +"FOOD REVIEWS INTERNATIONAL","8755-9129","1525-6103","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","5,779","5.3","('Q1', 'Q1')","0.65","8.50" +"Journal of Molecular Cell Biology","1674-2788","1759-4685","CELL BIOLOGY","('SCIE',)","3,467","5.3","Q2","0.65","93.71" +"Composites Part C: Open Access","2666-6820","2666-6820","MATERIALS SCIENCE, COMPOSITES","('ESCI',)","1,732","5.3","Q2","0.61","99.39" +"YALE LAW JOURNAL","0044-0094","1939-8611","LAW","('SSCI',)","5,115","5.2","Q1","5.26","0.00" +"Anatomical Sciences Education","1935-9772","1935-9780","EDUCATION, SCIENTIFIC DISCIPLINES","('SCIE',)","4,223","5.2","Q1","2.47","38.49" +"Digital Journalism","2167-0811","2167-082X","COMMUNICATION","('SSCI',)","4,601","5.2","Q1","2.33","36.36" +"JOURNAL OF PUBLIC ADMINISTRATION RESEARCH AND THEORY","1053-1858","1477-9803","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","7,293","5.2","('Q1', 'Q1')","2.11","29.70" +"Journal of King Saud University-Computer and Information Sciences","1319-1578","2213-1248","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","6,862","5.2","Q1","1.99","94.61" +"CHINA ECONOMIC REVIEW","1043-951X","1873-7781","ECONOMICS","('SSCI',)","7,920","5.2","Q1","1.86","4.56" +"JOURNAL OF VOCATIONAL BEHAVIOR","0001-8791","1095-9084","PSYCHOLOGY, APPLIED","('SSCI',)","16,322","5.2","Q1","1.85","24.89" +"JOURNAL OF APPLIED CRYSTALLOGRAPHY","1600-5767","1600-5767","('CHEMISTRY, MULTIDISCIPLINARY', 'CRYSTALLOGRAPHY')","('SCIE', 'SCIE')","30,311","5.2","('Q2', 'Q1')","1.78","52.69" +"Body Image","1740-1445","1873-6807","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","7,928","5.2","('Q1', 'Q1', 'Q1')","1.75","23.49" +"TSINGHUA SCIENCE AND TECHNOLOGY","1007-0214","1878-7606","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","2,107","5.2","('Q1', 'Q1', 'Q1')","1.74","100.00" +"ENVIRONMENTAL POLITICS","0964-4016","1743-8934","('ENVIRONMENTAL STUDIES', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","4,621","5.2","('Q1', 'Q1')","1.67","51.93" +"Chemical and Biological Technologies in Agriculture","","2196-5641","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","2,021","5.2","Q1","1.65","100.00" +"IMA Fungus","2210-6340","2210-6359","MYCOLOGY","('SCIE',)","1,387","5.2","Q1","1.63","100.00" +"MEASUREMENT","0263-2241","1873-412X","('ENGINEERING, MULTIDISCIPLINARY', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","42,386","5.2","('Q1', 'Q1')","1.59","9.63" +"International Journal of Pharmaceutics-X","","2590-1567","PHARMACOLOGY & PHARMACY","('SCIE',)","836","5.2","Q1","1.54","93.01" +"Communications Biology","","2399-3642","BIOLOGY","('SCIE',)","23,626","5.2","Q1","1.50","99.79" +"AUTISM","1362-3613","1461-7005","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","10,607","5.2","Q1","1.48","35.66" +"ACM Transactions on Multimedia Computing Communications and Applications","1551-6857","1551-6865","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","3,777","5.2","('Q1', 'Q1', 'Q1')","1.47","0.57" +"RADIOGRAPHICS","0271-5333","","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","15,185","5.2","Q1","1.46","0.00" +"Journal of NeuroEngineering and Rehabilitation","","1743-0003","('ENGINEERING, BIOMEDICAL', 'NEUROSCIENCES', 'REHABILITATION')","('SCIE', 'SCIE', 'SCIE')","9,306","5.2","('Q1', 'Q1', 'Q1')","1.44","99.79" +"Psoriasis-Targets and Therapy","","2230-326X","DERMATOLOGY","('ESCI',)","444","5.2","Q1","1.41","100.00" +"LIFE SCIENCES","0024-3205","1879-0631","('MEDICINE, RESEARCH & EXPERIMENTAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","43,620","5.2","('Q1', 'Q1')","1.40","12.09" +"NONLINEAR DYNAMICS","0924-090X","1573-269X","('ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE')","33,813","5.2","('Q1', 'Q1')","1.38","11.26" +"ADDICTION","0965-2140","1360-0443","('PSYCHIATRY', 'SUBSTANCE ABUSE')","('SCIE, SSCI', 'SCIE, SSCI')","20,047","5.2","('Q1', 'Q1')","1.36","39.13" +"Revista de Psiquiatria y Salud Mental","1888-9891","1989-4600","PSYCHIATRY","('SCIE', 'SSCI')","776","5.2","Q1","1.36","7.55" +"High Power Laser Science and Engineering","2095-4719","2052-3289","OPTICS","('SCIE',)","1,569","5.2","Q1","1.35","99.04" +"CONSERVATION BIOLOGY","0888-8892","1523-1739","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE')","22,083","5.2","('Q1', 'Q1', 'Q1')","1.33","50.72" +"ENVIRONMENT AND BEHAVIOR","0013-9165","1552-390X","('ENVIRONMENTAL STUDIES', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","8,193","5.2","('Q1', 'Q1')","1.31","31.34" +"PEDOSPHERE","1002-0160","2210-5107","SOIL SCIENCE","('SCIE',)","5,641","5.2","Q1","1.24","2.12" +"ATMOSPHERIC CHEMISTRY AND PHYSICS","1680-7316","1680-7324","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","62,097","5.2","('Q1', 'Q1')","1.23","99.79" +"Immunity & Ageing","1742-4933","1742-4933","('GERIATRICS & GERONTOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","2,060","5.2","('Q1', 'Q1')","1.23","99.42" +"Vaccines","","2076-393X","('IMMUNOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","25,994","5.2","('Q1', 'Q1')","1.23","99.61" +"Sustainability Accounting Management and Policy Journal","2040-8021","2040-803X","('BUSINESS, FINANCE', 'ENVIRONMENTAL STUDIES', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","2,105","5.2","('Q1', 'Q1', 'Q1')","1.20","15.38" +"Advances in Sample Preparation","","2772-5820","CHEMISTRY, ANALYTICAL","('ESCI',)","296","5.2","Q1","1.18","97.73" +"AMYLOID-JOURNAL OF PROTEIN FOLDING DISORDERS","1350-6129","1744-2818","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MEDICINE, GENERAL & INTERNAL', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","2,221","5.2","('Q1', 'Q1', 'Q1')","1.18","31.25" +"IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS I-REGULAR PAPERS","1549-8328","1558-0806","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","18,767","5.2","Q1","1.18","12.95" +"Journal of Neuroimmune Pharmacology","1557-1890","1557-1904","('NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","3,351","5.2","('Q1', 'Q1')","1.17","34.48" +"IEEE Open Journal of the Industrial Electronics Society","","2644-1284","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","666","5.2","Q1","1.16","97.93" +"Journal of Product and Brand Management","1061-0421","2054-1643","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","4,779","5.2","('Q1', 'Q1')","1.14","7.02" +"REDOX REPORT","1351-0002","1743-2928","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","2,104","5.2","Q1","0.96","100.00" +"Strategic Organization","1476-1270","1741-315X","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","2,726","5.2","('Q1', 'Q1')","0.93","29.20" +"JOURNAL OF RARE EARTHS","1002-0721","1002-0721","CHEMISTRY, APPLIED","('SCIE',)","9,086","5.2","Q1","0.92","3.24" +"Journal of Future Foods","","2772-5669","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","419","5.2","Q1","0.91","93.00" +"CATALYSIS TODAY","0920-5861","1873-4308","('CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE', 'SCIE')","39,705","5.2","('Q1', 'Q2', 'Q1')","0.89","22.36" +"CURRENT OPINION IN RHEUMATOLOGY","1040-8711","1531-6963","RHEUMATOLOGY","('SCIE',)","5,260","5.2","Q1","0.87","7.34" +"SEPARATION AND PURIFICATION REVIEWS","1542-2119","1542-2127","('CHEMISTRY, ANALYTICAL', 'CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE', 'SCIE')","1,485","5.2","('Q1', 'Q1', 'Q1')","0.77","6.25" +"EPIDEMIOLOGIC REVIEWS","0193-936X","1478-6729","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","3,135","5.2","Q1","0.73","20.59" +"Current Diabetes Reports","1534-4827","1539-0829","ENDOCRINOLOGY & METABOLISM","('SCIE',)","6,722","5.2","Q1","0.68","19.61" +"ENERGY & FUELS","0887-0624","1520-5029","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","68,087","5.2","('Q2', 'Q1')","0.68","4.73" +"Materials Advances","","2633-5409","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","9,251","5.2","Q2","0.64","99.34" +"Comunicar","1134-3478","1988-3293","('COMMUNICATION', 'EDUCATION & EDUCATIONAL RESEARCH')","('SSCI', 'SSCI')","1,995","5.1","('Q1', 'Q1')","2.99","100.00" +"JOURNAL OF COMPUTER ASSISTED LEARNING","0266-4909","1365-2729","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","4,858","5.1","Q1","2.36","34.55" +"PSYCHOLOGICAL REVIEW","0033-295X","1939-1471","('PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI')","31,125","5.1","('Q1', 'Q1')","1.93","8.42" +"Child Development Perspectives","1750-8592","1750-8606","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","4,821","5.1","Q1","1.91","24.18" +"IEEE Transactions on Emerging Topics in Computing","2168-6750","2168-6750","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","2,968","5.1","('Q1', 'Q1')","1.86","12.62" +"Behavioural Public Policy","2398-063X","2398-0648","('PSYCHOLOGY, APPLIED', 'PSYCHOLOGY, SOCIAL', 'PUBLIC ADMINISTRATION')","('ESCI', 'ESCI', 'ESCI')","969","5.1","('Q1', 'Q1', 'Q1')","1.85","36.43" +"Limnology and Oceanography Letters","","2378-2242","('LIMNOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","1,785","5.1","('Q1', 'Q1')","1.81","79.49" +"Engineering Science and Technology-An International Journal-JESTECH","2215-0986","2215-0986","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","5,606","5.1","Q1","1.79","95.58" +"REGIONAL ANESTHESIA AND PAIN MEDICINE","1098-7339","1532-8651","ANESTHESIOLOGY","('SCIE',)","7,308","5.1","Q1","1.77","10.09" +"Journal of Rural Studies","0743-0167","1873-1392","('GEOGRAPHY', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI')","12,676","5.1","('Q1', 'Q1')","1.65","38.90" +"JOURNAL OF DEVELOPMENT ECONOMICS","0304-3878","1872-6089","ECONOMICS","('SSCI',)","14,455","5.1","Q1","1.51","30.37" +"LABORATORY INVESTIGATION","0023-6837","1530-0307","('MEDICINE, RESEARCH & EXPERIMENTAL', 'PATHOLOGY')","('SCIE', 'SCIE')","11,653","5.1","('Q1', 'Q1')","1.49","69.11" +"RMD Open","2056-5933","2056-5933","RHEUMATOLOGY","('SCIE',)","4,778","5.1","Q1","1.45","99.51" +"IEEE TRANSACTIONS ON AEROSPACE AND ELECTRONIC SYSTEMS","0018-9251","1557-9603","('ENGINEERING, AEROSPACE', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","18,887","5.1","('Q1', 'Q1', 'Q1')","1.43","11.21" +"NEUROBIOLOGY OF DISEASE","0969-9961","1095-953X","NEUROSCIENCES","('SCIE',)","20,131","5.1","Q1","1.43","96.49" +"HEART","1355-6037","1468-201X","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","20,276","5.1","Q1","1.41","26.23" +"SURVEY OF OPHTHALMOLOGY","0039-6257","1879-3304","OPHTHALMOLOGY","('SCIE',)","7,190","5.1","Q1","1.39","13.23" +"Information Technology for Development","0268-1102","1554-0170","('DEVELOPMENT STUDIES', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SSCI', 'SSCI')","1,625","5.1","('Q1', 'Q1')","1.37","17.05" +"JOURNAL OF BONE AND MINERAL RESEARCH","0884-0431","1523-4681","ENDOCRINOLOGY & METABOLISM","('SCIE',)","25,664","5.1","Q1","1.35","42.89" +"ACS Macro Letters","","2161-1653","POLYMER SCIENCE","('SCIE',)","13,658","5.1","Q1","1.34","7.87" +"mBio","2150-7511","2150-7511","MICROBIOLOGY","('SCIE',)","34,176","5.1","Q1","1.32","68.33" +"INTERNATIONAL JOURNAL OF IMPACT ENGINEERING","0734-743X","1879-3509","('ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE')","16,993","5.1","('Q1', 'Q1')","1.31","13.42" +"Ceramics International","0272-8842","1873-3956","MATERIALS SCIENCE, CERAMICS","('SCIE',)","127,305","5.1","Q1","1.27","4.11" +"Quantum","2521-327X","2521-327X","('PHYSICS, MULTIDISCIPLINARY', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","6,251","5.1","('Q1', 'Q2')","1.27","43.45" +"PROSTATE CANCER AND PROSTATIC DISEASES","1365-7852","1476-5608","('ONCOLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","4,090","5.1","('Q1', 'Q1')","1.26","29.83" +"BIOLOGY AND FERTILITY OF SOILS","0178-2762","1432-0789","SOIL SCIENCE","('SCIE',)","11,037","5.1","Q1","1.25","22.65" +"Travel Behaviour and Society","2214-367X","2214-3688","TRANSPORTATION","('SSCI',)","3,054","5.1","Q1","1.25","24.43" +"Function","","2633-8823","('CELL BIOLOGY', 'PHYSIOLOGY')","('ESCI', 'ESCI')","486","5.1","('Q2', 'Q1')","1.24","99.13" +"ISME Communications","","2730-6151","('ECOLOGY', 'MICROBIOLOGY')","('ESCI', 'ESCI')","1,154","5.1","('Q1', 'Q1')","1.23","98.20" +"Water Biology and Security","","2772-7351","('ENVIRONMENTAL SCIENCES', 'FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('ESCI', 'ESCI', 'ESCI')","250","5.1","('Q1', 'Q1', 'Q1')","1.20","98.81" +"MACROMOLECULES","0024-9297","1520-5835","POLYMER SCIENCE","('SCIE',)","94,158","5.1","Q1","1.19","8.11" +"ASTRONOMICAL JOURNAL","0004-6256","1538-3881","ASTRONOMY & ASTROPHYSICS","('SCIE',)","46,729","5.1","Q1","1.18","67.04" +"Journal of Theoretical and Applied Electronic Commerce Research","0718-1876","0718-1876","BUSINESS","('SSCI',)","2,137","5.1","Q1","1.12","100.00" +"Food & Function","2042-6496","2042-650X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","33,554","5.1","('Q1', 'Q1')","1.10","9.42" +"Precision Clinical Medicine","2096-5303","2516-1571","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","595","5.1","Q1","1.10","100.00" +"Tissue Engineering Part B-Reviews","1937-3368","1937-3376","('CELL & TISSUE ENGINEERING', 'CELL BIOLOGY', 'ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,807","5.1","('Q2', 'Q2', 'Q1', 'Q2')","1.09","11.11" +"JOURNAL OF MARKETING RESEARCH","0022-2437","1547-7193","BUSINESS","('SSCI',)","28,219","5.1","Q1","1.08","15.64" +"ADVANCES IN ANATOMIC PATHOLOGY","1072-4109","1533-4031","PATHOLOGY","('SCIE',)","2,213","5.1","Q1","1.05","5.36" +"Data Science and Engineering","2364-1185","2364-1541","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('ESCI', 'ESCI')","564","5.1","('Q1', 'Q1')","1.04","100.00" +"BULLETIN OF THE AMERICAN MUSEUM OF NATURAL HISTORY","0003-0090","1937-3546","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","2,560","5.1","('Q1', 'Q1')","1.03","0.00" +"Thermal Science and Engineering Progress","2451-9049","2451-9049","('ENERGY & FUELS', 'ENGINEERING, MECHANICAL', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","7,520","5.1","('Q2', 'Q1', 'Q1', 'Q1')","1.01","9.78" +"Project Management Journal","8756-9728","1938-9507","MANAGEMENT","('SSCI',)","3,108","5.1","Q1","0.99","22.50" +"European Transport Research Review","1867-0717","1866-8887","('TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SSCI', 'SCIE')","1,939","5.1","('Q1', 'Q1')","0.97","100.00" +"JOURNAL OF PUBLIC POLICY & MARKETING","0743-9156","1547-7207","BUSINESS","('SSCI',)","2,884","5.1","Q1","0.97","18.97" +"BRITISH JOURNAL OF HAEMATOLOGY","0007-1048","1365-2141","HEMATOLOGY","('SCIE',)","26,906","5.1","Q1","0.95","30.97" +"Sustainability Science","1862-4065","1862-4057","('ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","7,095","5.1","('Q1', 'Q2')","0.94","66.67" +"American Journal of Medicine","0002-9343","1555-7162","MEDICINE, GENERAL & INTERNAL","('SCIE',)","23,832","5.1","Q1","0.92","11.73" +"Batteries & Supercaps","","2566-6223","('ELECTROCHEMISTRY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","3,752","5.1","('Q2', 'Q2')","0.74","36.08" +"ARTIFICIAL INTELLIGENCE","0004-3702","1872-7921","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","8,419","5.1","Q1","0.73","45.04" +"NUTRITION RESEARCH REVIEWS","0954-4224","1475-2700","NUTRITION & DIETETICS","('SCIE',)","3,263","5.1","Q1","0.72","48.42" +"Substance Abuse and Rehabilitation","1179-8467","1179-8467","SUBSTANCE ABUSE","('ESCI',)","613","5.1","Q1","0.69","97.14" +"Cells","","2073-4409","CELL BIOLOGY","('SCIE',)","77,290","5.1","Q2","0.67","99.55" +"Lung Cancer-Targets and Therapy","","1179-2728","ONCOLOGY","('ESCI',)","429","5.1","Q1","0.60","88.89" +"JOURNAL OF SECOND LANGUAGE WRITING","1060-3743","1873-1422","LINGUISTICS","('SSCI',)","3,159","5.0","Q1","2.88","9.71" +"ANNALS OF EMERGENCY MEDICINE","0196-0644","1097-6760","EMERGENCY MEDICINE","('SCIE',)","11,720","5.0","Q1","2.49","16.41" +"Asian Journal of Social Health and Behavior","","2772-4204","('PSYCHIATRY', 'PSYCHOLOGY, MULTIDISCIPLINARY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI', 'ESCI')","274","5.0","('Q1', 'Q1', 'Q1')","2.25","100.00" +"AMERICAN JOURNAL OF POLITICAL SCIENCE","0092-5853","1540-5907","POLITICAL SCIENCE","('SSCI',)","15,210","5.0","Q1","2.21","26.96" +"Research Synthesis Methods","1759-2879","1759-2887","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'MULTIDISCIPLINARY SCIENCES')","('SCIE', 'SCIE')","6,955","5.0","('Q1', 'Q1')","2.08","51.67" +"Aerospace Science and Technology","1270-9638","1626-3219","ENGINEERING, AEROSPACE","('SCIE',)","23,648","5.0","Q1","1.96","8.83" +"Structural Change and Economic Dynamics","0954-349X","1873-6017","ECONOMICS","('SSCI',)","4,628","5.0","Q1","1.86","14.82" +"Journal of Clinical Anesthesia","0952-8180","1873-4529","ANESTHESIOLOGY","('SCIE',)","6,190","5.0","Q1","1.68","17.99" +"Defence Technology","2096-3459","2214-9147","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","4,446","5.0","Q1","1.67","95.85" +"Equilibrium-Quarterly Journal of Economics and Economic Policy","1689-765X","2353-3293","ECONOMICS","('ESCI',)","626","5.0","Q1","1.63","96.19" +"INVESTIGATIVE OPHTHALMOLOGY & VISUAL SCIENCE","0146-0404","1552-5783","OPHTHALMOLOGY","('SCIE',)","56,224","5.0","Q1","1.63","99.14" +"IEEE TRANSACTIONS ON RELIABILITY","0018-9529","1558-1721","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","7,764","5.0","('Q1', 'Q1', 'Q1')","1.55","16.74" +"Digestive Endoscopy","0915-5635","1443-1661","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","5,008","5.0","('Q1', 'Q1')","1.51","14.78" +"Public Management Review","1471-9037","1471-9045","('MANAGEMENT', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","7,310","5.0","('Q1', 'Q1')","1.44","33.92" +"JOURNAL OF INFECTIOUS DISEASES","0022-1899","1537-6613","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","43,095","5.0","('Q2', 'Q1', 'Q1')","1.39","43.58" +"JOURNAL OF HIGH ENERGY PHYSICS","1029-8479","1029-8479","PHYSICS, PARTICLES & FIELDS","('SCIE',)","114,956","5.0","Q1","1.38","98.94" +"CEPHALALGIA","0333-1024","1468-2982","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","13,079","5.0","('Q1', 'Q1')","1.35","50.90" +"THEORETICAL AND APPLIED FRACTURE MECHANICS","0167-8442","1872-7638","('ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE')","9,622","5.0","('Q1', 'Q1')","1.35","10.15" +"Journal of the American Heart Association","","2047-9980","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","39,816","5.0","Q1","1.34","96.95" +"JOURNAL OF APPLIED ECOLOGY","0021-8901","1365-2664","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","25,150","5.0","('Q1', 'Q1')","1.33","46.06" +"POLYMER TESTING","0142-9418","1873-2348","('MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","18,475","5.0","('Q1', 'Q1')","1.33","97.54" +"Lancet Regional Health - Southeast Asia","2772-3682","2772-3682","('HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","363","5.0","('Q1', 'Q1')","1.30","94.63" +"AMERICAN JOURNAL OF EPIDEMIOLOGY","0002-9262","1476-6256","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","36,711","5.0","Q1","1.29","30.46" +"INTERNATIONAL JOURNAL OF ELECTRICAL POWER & ENERGY SYSTEMS","0142-0615","1879-3517","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","29,391","5.0","Q1","1.28","24.95" +"Journal of Geovisualization and Spatial Analysis","2509-8810","2509-8829","('ENVIRONMENTAL SCIENCES', 'GEOGRAPHY', 'GEOGRAPHY, PHYSICAL', 'REMOTE SENSING')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","558","5.0","('Q1', 'Q1', 'Q1', 'Q1')","1.28","20.22" +"IEEE Transactions on Cognitive and Developmental Systems","2379-8920","2379-8939","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'NEUROSCIENCES', 'ROBOTICS')","('SCIE', 'SCIE', 'SCIE')","2,534","5.0","('Q1', 'Q1', 'Q1')","1.26","7.80" +"JOURNAL OF CLINICAL ENDOCRINOLOGY & METABOLISM","0021-972X","1945-7197","ENDOCRINOLOGY & METABOLISM","('SCIE',)","79,005","5.0","Q1","1.25","33.82" +"Egyptian Informatics Journal","1110-8665","2090-4754","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","1,246","5.0","('Q1', 'Q1')","1.24","94.19" +"Molecular Oncology","1574-7891","1878-0261","ONCOLOGY","('SCIE',)","10,029","5.0","Q1","1.24","100.00" +"mSystems","2379-5077","2379-5077","MICROBIOLOGY","('SCIE',)","10,620","5.0","Q1","1.24","66.57" +"INFORMATION SYSTEMS RESEARCH","1047-7047","1526-5536","('INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SSCI', 'SSCI')","12,685","5.0","('Q1', 'Q1')","1.23","0.00" +"INTERNATIONAL JOURNAL OF FOOD MICROBIOLOGY","0168-1605","1879-3460","('FOOD SCIENCE & TECHNOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","28,064","5.0","('Q1', 'Q1')","1.23","27.11" +"INTERNATIONAL JOURNAL OF HEAT AND MASS TRANSFER","0017-9310","1879-2189","('ENGINEERING, MECHANICAL', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","90,625","5.0","('Q1', 'Q1', 'Q1')","1.23","14.42" +"PROGRESS IN PLANNING","0305-9006","1873-4510","('ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI')","1,220","5.0","('Q1', 'Q1')","1.23","27.03" +"Physics of the Dark Universe","","2212-6864","ASTRONOMY & ASTROPHYSICS","('SCIE',)","4,090","5.0","Q1","1.22","10.68" +"JMIR Aging","","2561-7605","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY', 'MEDICAL INFORMATICS')","('ESCI', 'ESCI', 'ESCI')","948","5.0","('Q1', 'Q1', 'Q1')","1.20","99.47" +"AMERICAN JOURNAL OF PHYSIOLOGY-CELL PHYSIOLOGY","0363-6143","1522-1563","('CELL BIOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","17,341","5.0","('Q2', 'Q1')","1.15","7.15" +"Annual Review of Financial Economics","1941-1367","1941-1375","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","1,453","5.0","('Q1', 'Q1')","1.15","39.73" +"Photonic Sensors","1674-9251","2190-7439","('INSTRUMENTS & INSTRUMENTATION', 'OPTICS')","('SCIE', 'SCIE')","1,253","5.0","('Q1', 'Q1')","1.10","100.00" +"THROMBOSIS AND HAEMOSTASIS","0340-6245","2567-689X","('HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","14,720","5.0","('Q1', 'Q1')","1.09","24.82" +"Journal of Leadership & Organizational Studies","1548-0518","1939-7089","MANAGEMENT","('SSCI',)","2,394","5.0","Q1","1.07","27.40" +"JOURNAL OF LIPID RESEARCH","0022-2275","1539-7262","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","23,917","5.0","Q1","1.05","96.40" +"PSYCHIATRY AND CLINICAL NEUROSCIENCES","1323-1316","1440-1819","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","5,231","5.0","('Q1', 'Q1', 'Q1')","1.05","39.76" +"European Journal of Innovation Management","1460-1060","1758-7115","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","4,169","5.0","('Q1', 'Q1')","1.04","18.59" +"JOURNAL OF THE MECHANICS AND PHYSICS OF SOLIDS","0022-5096","1873-4782","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","26,175","5.0","('Q2', 'Q1', 'Q2')","1.03","39.20" +"Gels","","2310-2861","POLYMER SCIENCE","('SCIE',)","8,198","5.0","Q1","1.02","99.76" +"IEEE TRANSACTIONS ON ENERGY CONVERSION","0885-8969","1558-0059","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","14,466","5.0","('Q2', 'Q1')","1.01","7.58" +"BIPOLAR DISORDERS","1398-5647","1399-5618","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","4,831","5.0","('Q1', 'Q1', 'Q1')","0.99","40.67" +"SEMINARS IN HEMATOLOGY","0037-1963","1532-8686","HEMATOLOGY","('SCIE',)","2,177","5.0","Q1","0.99","20.69" +"AAPS Journal","1550-7416","1550-7416","PHARMACOLOGY & PHARMACY","('SCIE',)","7,342","5.0","Q1","0.98","33.33" +"Expert Opinion on Drug Delivery","1742-5247","1744-7593","PHARMACOLOGY & PHARMACY","('SCIE',)","9,566","5.0","Q1","0.98","15.75" +"Annual Review of Vision Science","2374-4642","2374-4650","('NEUROSCIENCES', 'OPHTHALMOLOGY')","('SCIE', 'SCIE')","1,508","5.0","('Q1', 'Q1')","0.96","34.21" +"INTERNATIONAL JOURNAL OF INTELLIGENT SYSTEMS","0884-8173","1098-111X","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","9,267","5.0","Q1","0.95","82.43" +"BME Frontiers","","2765-8031","ENGINEERING, BIOMEDICAL","('ESCI',)","346","5.0","Q1","0.90","98.48" +"Complex & Intelligent Systems","2199-4536","2198-6053","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","4,977","5.0","Q1","0.89","99.81" +"Inflammation and Regeneration","","1880-8190","('IMMUNOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","1,599","5.0","('Q2', 'Q1')","0.88","100.00" +"Journal of Functional Biomaterials","","2079-4983","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","4,844","5.0","('Q1', 'Q2')","0.88","99.79" +"BIOFACTORS","0951-6433","1872-8081","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","5,517","5.0","('Q1', 'Q1')","0.87","18.68" +"IEEE Open Journal of Power Electronics","","2644-1314","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","696","5.0","Q1","0.81","98.82" +"GENES AND IMMUNITY","1466-4879","1476-5470","('GENETICS & HEREDITY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","2,568","5.0","('Q1', 'Q2')","0.80","45.36" +"Applications in Energy and Combustion Science","2666-352X","2666-352X","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","599","5.0","('Q2', 'Q1', 'Q1', 'Q1')","0.77","97.57" +"Sustainable Energy & Fuels","2398-4902","2398-4902","('CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","13,288","5.0","('Q2', 'Q2', 'Q2')","0.76","14.79" +"SOIL USE AND MANAGEMENT","0266-0032","1475-2743","SOIL SCIENCE","('SCIE',)","4,476","5.0","Q1","0.75","25.62" +"Progress in Biomedical Engineering","","2516-1091","ENGINEERING, BIOMEDICAL","('ESCI',)","406","5.0","Q1","0.60","65.57" +"ENVIRONMENT","0013-9157","1939-9154","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SSCI')","1,411","5.0","('Q1', 'Q1')","0.48","31.58" +"ACTA MATHEMATICA","0001-5962","1871-2509","MATHEMATICS","('SCIE',)","5,242","4.9","Q1","3.23","96.00" +"SYSTEM","0346-251X","1879-3282","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('SSCI', 'SSCI')","7,321","4.9","('Q1', 'Q1')","3.08","18.42" +"COMMUNICATION RESEARCH","0093-6502","1552-3810","COMMUNICATION","('SSCI',)","5,867","4.9","Q1","2.81","22.22" +"International Journal of Antimicrobial Agents","0924-8579","1872-7913","('INFECTIOUS DISEASES', 'MICROBIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","14,855","4.9","('Q1', 'Q1', 'Q1')","2.43","29.37" +"Intensive and Critical Care Nursing","0964-3397","1532-4036","NURSING","('SCIE', 'SSCI')","3,129","4.9","Q1","2.25","27.73" +"Bone & Joint Journal","2049-4394","2049-4394","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","11,390","4.9","('Q1', 'Q1')","2.15","8.43" +"JOURNAL OF THORACIC AND CARDIOVASCULAR SURGERY","0022-5223","1097-685X","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RESPIRATORY SYSTEM', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","29,846","4.9","('Q1', 'Q1', 'Q1')","2.03","50.61" +"Animal Microbiome","","2524-4671","('MICROBIOLOGY', 'VETERINARY SCIENCES')","('ESCI', 'ESCI')","1,119","4.9","('Q1', 'Q1')","1.72","100.00" +"Spine Journal","1529-9430","1878-1632","('CLINICAL NEUROLOGY', 'ORTHOPEDICS')","('SCIE', 'SCIE')","13,354","4.9","('Q1', 'Q1')","1.70","14.61" +"MEDICAL EDUCATION","0308-0110","1365-2923","('EDUCATION, SCIENTIFIC DISCIPLINES', 'HEALTH CARE SCIENCES & SERVICES')","('SCIE', 'SCIE')","12,624","4.9","('Q1', 'Q1')","1.69","41.92" +"APPLIED PSYCHOLOGY-AN INTERNATIONAL REVIEW-PSYCHOLOGIE APPLIQUEE-REVUE INTERNATIONALE","0269-994X","1464-0597","PSYCHOLOGY, APPLIED","('SSCI',)","6,045","4.9","Q1","1.66","39.44" +"SOCIAL SCIENCE & MEDICINE","0277-9536","1873-5347","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL')","('SCIE, SSCI', 'SSCI')","54,543","4.9","('Q1', 'Q1')","1.66","41.49" +"Computers in Human Behavior Reports","2451-9588","2451-9588","('PSYCHOLOGY, EXPERIMENTAL', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","1,174","4.9","('Q1', 'Q1')","1.59","95.86" +"ORGANIC LETTERS","1523-7060","1523-7052","CHEMISTRY, ORGANIC","('SCIE',)","96,153","4.9","Q1","1.54","4.83" +"CELLULOSE","0969-0239","1572-882X","('MATERIALS SCIENCE, PAPER & WOOD', 'MATERIALS SCIENCE, TEXTILES', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","30,048","4.9","('Q1', 'Q1', 'Q1')","1.53","16.31" +"JOURNAL OF EPIDEMIOLOGY AND COMMUNITY HEALTH","0143-005X","1470-2738","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","15,988","4.9","Q1","1.53","43.33" +"Minerva Urology and Nephrology","2724-6051","2724-6442","UROLOGY & NEPHROLOGY","('SCIE',)","1,794","4.9","Q1","1.51","2.05" +"JOURNAL OF AFFECTIVE DISORDERS","0165-0327","1573-2517","('CLINICAL NEUROLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE, SSCI')","60,556","4.9","('Q1', 'Q1')","1.47","23.83" +"ACS Pharmacology & Translational Science","","2575-9108","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('ESCI', 'ESCI')","2,411","4.9","('Q1', 'Q1')","1.42","17.82" +"CLINICAL AND EXPERIMENTAL OPHTHALMOLOGY","1442-6404","1442-9071","OPHTHALMOLOGY","('SCIE',)","4,537","4.9","Q1","1.42","27.45" +"JOURNAL OF ACCOUNTING RESEARCH","0021-8456","1475-679X","BUSINESS, FINANCE","('SSCI',)","12,114","4.9","Q1","1.42","26.67" +"Biology of Sex Differences","","2042-6410","('ENDOCRINOLOGY & METABOLISM', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","3,131","4.9","('Q1', 'Q1')","1.41","99.55" +"RADIOTHERAPY AND ONCOLOGY","0167-8140","1879-0887","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","21,942","4.9","('Q1', 'Q1')","1.41","30.69" +"VALUE IN HEALTH","1098-3015","1524-4733","('ECONOMICS', 'HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SSCI', 'SCIE', 'SSCI')","13,830","4.9","('Q1', 'Q1', 'Q1')","1.41","78.04" +"Diagnostic and Interventional Imaging","2211-5684","2211-5684","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","3,240","4.9","Q1","1.38","67.77" +"Current Opinion in Behavioral Sciences","2352-1546","2352-1554","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI')","5,707","4.9","('Q1', 'Q1', 'Q1')","1.36","42.20" +"Contemporary Political Theory","1470-8914","1476-9336","POLITICAL SCIENCE","('SSCI',)","800","4.9","Q1","1.34","18.09" +"Information Technology & People","0959-3845","1758-5813","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","3,763","4.9","Q1","1.34","7.69" +"JOURNAL OF CEREBRAL BLOOD FLOW AND METABOLISM","0271-678X","1559-7016","('ENDOCRINOLOGY & METABOLISM', 'HEMATOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE', 'SCIE')","20,684","4.9","('Q1', 'Q1', 'Q1')","1.34","35.83" +"ANNALS OF MEDICINE","0785-3890","1365-2060","MEDICINE, GENERAL & INTERNAL","('SCIE',)","7,923","4.9","Q1","1.33","98.38" +"Alzheimers & Dementia-Translational Research & Clinical Interventions","","2352-8737","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('ESCI', 'ESCI')","3,056","4.9","('Q1', 'Q1')","1.32","66.43" +"BIOLOGICAL CONSERVATION","0006-3207","1873-2917","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE')","38,523","4.9","('Q1', 'Q1', 'Q1')","1.32","43.46" +"MINERALS ENGINEERING","0892-6875","0892-6875","('ENGINEERING, CHEMICAL', 'MINERALOGY', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE', 'SCIE')","22,447","4.9","('Q1', 'Q1', 'Q1')","1.32","14.73" +"JOURNAL OF OCCUPATIONAL AND ORGANIZATIONAL PSYCHOLOGY","0963-1798","2044-8325","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","6,178","4.9","('Q1', 'Q1')","1.31","41.22" +"Pharmaceutics","","1999-4923","PHARMACOLOGY & PHARMACY","('SCIE',)","45,421","4.9","Q1","1.30","99.64" +"Marine Drugs","","1660-3397","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","28,315","4.9","('Q1', 'Q1')","1.27","99.53" +"Computer Methods and Programs in Biomedicine","0169-2607","1872-7565","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, BIOMEDICAL', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","18,734","4.9","('Q1', 'Q1', 'Q1', 'Q1')","1.26","23.61" +"Transportation Geotechnics","2214-3912","2214-3912","('ENGINEERING, CIVIL', 'ENGINEERING, GEOLOGICAL')","('SCIE', 'SCIE')","4,642","4.9","('Q1', 'Q1')","1.24","11.24" +"ATHEROSCLEROSIS","0021-9150","1879-1484","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","24,255","4.9","('Q1', 'Q1')","1.21","34.14" +"MICROCHEMICAL JOURNAL","0026-265X","1095-9149","CHEMISTRY, ANALYTICAL","('SCIE',)","29,293","4.9","Q1","1.19","6.29" +"Food Quality and Preference","0950-3293","1873-6343","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","14,075","4.9","Q1","1.18","38.41" +"Pathogens and Global Health","2047-7724","2047-7732","('PARASITOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TROPICAL MEDICINE')","('SCIE', 'SCIE', 'SCIE')","2,230","4.9","('Q1', 'Q1', 'Q1')","1.18","15.79" +"CELLULAR ONCOLOGY","2211-3428","2211-3436","('CELL BIOLOGY', 'ONCOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,142","4.9","('Q2', 'Q1', 'Q1')","1.17","29.94" +"ORGANIZATION STUDIES","0170-8406","1741-3044","MANAGEMENT","('SSCI',)","10,673","4.9","Q1","1.17","45.05" +"IEEE TRANSACTIONS ON CONTROL SYSTEMS TECHNOLOGY","1063-6536","1558-0865","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","16,246","4.9","('Q1', 'Q1')","1.14","18.54" +"INTERNATIONAL JOURNAL OF HUMAN RESOURCE MANAGEMENT","0958-5192","1466-4399","MANAGEMENT","('SSCI',)","11,789","4.9","Q1","1.14","20.90" +"INTERNATIONAL JOURNAL OF THERMAL SCIENCES","1290-0729","1778-4166","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","20,942","4.9","('Q1', 'Q1')","1.14","6.41" +"Asia Pacific Journal of Management","0217-4561","1572-9958","MANAGEMENT","('SSCI',)","4,226","4.9","Q1","1.09","15.86" +"SURVEYS IN GEOPHYSICS","0169-3298","1573-0956","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","4,596","4.9","Q1","1.09","37.87" +"Biomedical Signal Processing and Control","1746-8094","1746-8108","ENGINEERING, BIOMEDICAL","('SCIE',)","18,589","4.9","Q1","1.08","8.48" +"JOURNAL OF MOLECULAR AND CELLULAR CARDIOLOGY","0022-2828","1095-8584","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'CELL BIOLOGY')","('SCIE', 'SCIE')","14,266","4.9","('Q1', 'Q2')","1.07","32.99" +"Journal of Bionic Engineering","1672-6529","2543-2141","('ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, BIOMATERIALS', 'ROBOTICS')","('SCIE', 'SCIE', 'SCIE')","3,956","4.9","('Q1', 'Q2', 'Q1')","1.04","16.03" +"EXPERT OPINION ON INVESTIGATIONAL DRUGS","1354-3784","1744-7658","PHARMACOLOGY & PHARMACY","('SCIE',)","5,738","4.9","Q1","1.03","11.27" +"ORGANIZATION SCIENCE","1047-7039","","MANAGEMENT","('SSCI',)","23,725","4.9","Q1","1.03","0.00" +"EXERCISE AND SPORT SCIENCES REVIEWS","0091-6331","1538-3008","('PHYSIOLOGY', 'SPORT SCIENCES')","('SCIE', 'SCIE')","3,793","4.9","('Q1', 'Q1')","1.01","16.22" +"ENVIRONMENTAL SCIENCE & POLICY","1462-9011","1873-6416","ENVIRONMENTAL SCIENCES","('SCIE',)","15,142","4.9","Q1","1.00","45.61" +"Groundwater for Sustainable Development","2352-801X","2352-801X","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('ESCI', 'ESCI', 'ESCI')","4,921","4.9","('Q2', 'Q1', 'Q1')","0.98","10.83" +"INTERNATIONAL JOURNAL OF SYSTEMS SCIENCE","0020-7721","1464-5319","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","6,687","4.9","('Q1', 'Q1', 'Q1')","0.95","3.43" +"JOURNAL OF INTERNATIONAL MARKETING","1069-031X","1547-7215","BUSINESS","('SSCI',)","2,704","4.9","Q1","0.91","17.39" +"Innovation in Aging","","2399-5300","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY')","('SCIE', 'SSCI')","1,971","4.9","('Q1', 'Q1')","0.90","95.24" +"Bayesian Analysis","1931-6690","1936-0975","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","2,900","4.9","('Q1', 'Q1')","0.88","99.26" +"Frontiers in Genome Editing","","2673-3439","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('ESCI', 'ESCI')","627","4.9","('Q1', 'Q1')","0.86","100.00" +"Biosensors-Basel","","2079-6374","('CHEMISTRY, ANALYTICAL', 'INSTRUMENTS & INSTRUMENTATION', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","13,850","4.9","('Q1', 'Q1', 'Q2')","0.85","99.89" +"IMMUNOLOGY","0019-2805","1365-2567","IMMUNOLOGY","('SCIE',)","13,069","4.9","Q2","0.80","36.44" +"JOURNAL OF INDUSTRIAL ECOLOGY","1088-1980","1530-9290","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","8,729","4.9","('Q2', 'Q1', 'Q2')","0.79","51.06" +"COLLOIDS AND SURFACES A-PHYSICOCHEMICAL AND ENGINEERING ASPECTS","0927-7757","1873-4359","CHEMISTRY, PHYSICAL","('SCIE',)","63,463","4.9","Q2","0.78","5.50" +"Biophysical Reviews","1867-2450","1867-2469","BIOPHYSICS","('ESCI',)","3,712","4.9","Q1","0.76","28.33" +"Journal of Natural Gas Science and Engineering","1875-5100","2212-3865","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","19,314","4.9","('Q2', 'Q1')","0.74","7.21" +"INTERNATIONAL JOURNAL OF MOLECULAR SCIENCES","1661-6596","1422-0067","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","346,651","4.9","('Q1', 'Q2')","0.71","99.66" +"Journal of Membrane Science Letters","2772-4212","2772-4212","ENGINEERING, CHEMICAL","('ESCI',)","180","4.9","Q1","0.71","100.00" +"INTERNATIONAL JOURNAL OF LIFE CYCLE ASSESSMENT","0948-3349","1614-7502","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","10,540","4.9","('Q2', 'Q1')","0.65","50.27" +"Journal of Physics-Materials","","2515-7639","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","1,593","4.9","Q2","0.63","97.88" +"International Journal of Engineering Business Management","1847-9790","1847-9790","BUSINESS","('ESCI',)","924","4.9","Q1","0.59","95.00" +"REVIEWS IN CHEMICAL ENGINEERING","0167-8299","2191-0235","ENGINEERING, CHEMICAL","('SCIE',)","2,399","4.9","Q1","0.45","5.59" +"Nanotechnology Science and Applications","1177-8903","1177-8903","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","972","4.9","Q2","0.41","100.00" +"GEOLOGY","0091-7613","1943-2682","GEOLOGY","('SCIE',)","39,547","4.8","Q1","2.80","37.44" +"RHINOLOGY","0300-0729","0300-0729","OTORHINOLARYNGOLOGY","('SCIE',)","4,053","4.8","Q1","2.56","2.99" +"Education and Information Technologies","1360-2357","1573-7608","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","10,703","4.8","Q1","2.51","20.77" +"JOURNAL OF PUBLIC ECONOMICS","0047-2727","0047-2727","ECONOMICS","('SSCI',)","15,830","4.8","Q1","2.31","25.27" +"INTERNATIONAL SECURITY","0162-2889","1531-4804","INTERNATIONAL RELATIONS","('SSCI',)","3,998","4.8","Q1","2.23","18.75" +"PSYCHOLOGICAL SCIENCE","0956-7976","1467-9280","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","33,828","4.8","Q1","2.12","30.65" +"MILBANK QUARTERLY","0887-378X","1468-0009","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","4,630","4.8","('Q1', 'Q1')","2.02","33.91" +"JOURNAL OF ANXIETY DISORDERS","0887-6185","1873-7897","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","9,889","4.8","('Q1', 'Q1')","2.00","26.45" +"JOURNAL OF DENTISTRY","0300-5712","1879-176X","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","14,129","4.8","Q1","1.98","30.17" +"European Urology Focus","","2405-4569","UROLOGY & NEPHROLOGY","('SCIE',)","4,775","4.8","Q1","1.91","16.48" +"Journal of Hospitality Leisure Sport & Tourism Education","1473-8376","","('EDUCATION & EDUCATIONAL RESEARCH', 'HOSPITALITY, LEISURE, SPORT & TOURISM')","('SSCI', 'SSCI')","1,263","4.8","('Q1', 'Q1')","1.85","14.08" +"NEPHROLOGY DIALYSIS TRANSPLANTATION","0931-0509","1460-2385","('TRANSPLANTATION', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","24,967","4.8","('Q1', 'Q1')","1.84","28.97" +"Technological and Economic Development of Economy","2029-4913","2029-4921","ECONOMICS","('SSCI',)","2,617","4.8","Q1","1.83","98.24" +"Academy of Management Learning & Education","1537-260X","","('EDUCATION & EDUCATIONAL RESEARCH', 'MANAGEMENT')","('SSCI', 'SSCI')","3,335","4.8","('Q1', 'Q1')","1.81","0.00" +"Infectious Diseases of Poverty","2095-5162","2049-9957","('INFECTIOUS DISEASES', 'PARASITOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE', 'SCIE')","4,077","4.8","('Q1', 'Q1', 'Q1')","1.81","100.00" +"JOURNALS OF GERONTOLOGY SERIES B-PSYCHOLOGICAL SCIENCES AND SOCIAL SCIENCES","1079-5014","1758-5368","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY', 'PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI', 'SCIE', 'SSCI')","13,292","4.8","('Q1', 'Q1', 'Q1', 'Q1')","1.79","16.88" +"IEEE TRANSACTIONS ON NEURAL SYSTEMS AND REHABILITATION ENGINEERING","1534-4320","1558-0210","('ENGINEERING, BIOMEDICAL', 'REHABILITATION')","('SCIE', 'SCIE')","14,092","4.8","('Q2', 'Q1')","1.75","98.55" +"AMERICAN JOURNAL OF CHINESE MEDICINE","0192-415X","1793-6853","('INTEGRATIVE & COMPLEMENTARY MEDICINE', 'MEDICINE, GENERAL & INTERNAL')","('SCIE', 'SCIE')","5,228","4.8","('Q1', 'Q1')","1.66","2.45" +"INTERNATIONAL JOURNAL OF INFECTIOUS DISEASES","1201-9712","1878-3511","INFECTIOUS DISEASES","('SCIE',)","20,984","4.8","Q1","1.56","95.47" +"Rice","1939-8425","1939-8433","AGRONOMY","('SCIE',)","4,043","4.8","Q1","1.56","99.56" +"EARTH AND PLANETARY SCIENCE LETTERS","0012-821X","1385-013X","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","67,165","4.8","Q1","1.52","50.50" +"European Heart Journal-Quality of Care and Clinical Outcomes","2058-5225","2058-1742","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,808","4.8","Q1","1.49","31.77" +"CLINICAL ORAL IMPLANTS RESEARCH","0905-7161","1600-0501","('DENTISTRY, ORAL SURGERY & MEDICINE', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","15,754","4.8","('Q1', 'Q2')","1.47","38.41" +"JOURNAL OF ETHNOPHARMACOLOGY","0378-8741","1872-7573","('CHEMISTRY, MEDICINAL', 'INTEGRATIVE & COMPLEMENTARY MEDICINE', 'PHARMACOLOGY & PHARMACY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","52,832","4.8","('Q1', 'Q1', 'Q1', 'Q1')","1.42","11.39" +"OCEAN & COASTAL MANAGEMENT","0964-5691","1873-524X","('OCEANOGRAPHY', 'WATER RESOURCES')","('SCIE', 'SCIE')","13,130","4.8","('Q1', 'Q1')","1.42","22.37" +"Journal of Computational Design and Engineering","","2288-5048","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,494","4.8","('Q1', 'Q1')","1.41","93.42" +"CURRENT OPINION IN NEUROBIOLOGY","0959-4388","1873-6882","NEUROSCIENCES","('SCIE',)","15,346","4.8","Q1","1.40","53.87" +"International Review of Economics & Finance","1059-0560","1873-8036","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","7,674","4.8","('Q1', 'Q1')","1.39","7.18" +"Pacific-Basin Finance Journal","0927-538X","1879-0585","BUSINESS, FINANCE","('SSCI',)","5,627","4.8","Q1","1.38","6.72" +"Natural Resources Research","1520-7439","1573-8981","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","4,696","4.8","Q1","1.35","5.63" +"MOLECULAR PLANT PATHOLOGY","1464-6722","1364-3703","PLANT SCIENCES","('SCIE',)","10,573","4.8","Q1","1.34","65.07" +"Clinical Psychological Science","2167-7026","2167-7034","('PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SCIE', 'SSCI')","4,509","4.8","('Q1', 'Q1', 'Q1')","1.33","21.71" +"JOURNAL OF NEUROLOGY","0340-5354","1432-1459","CLINICAL NEUROLOGY","('SCIE',)","23,157","4.8","Q1","1.32","46.55" +"Multiple Sclerosis Journal","1352-4585","1477-0970","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","13,242","4.8","('Q1', 'Q1')","1.30","35.11" +"Neurophotonics","2329-423X","2329-4248","('NEUROSCIENCES', 'OPTICS')","('SCIE', 'SCIE')","2,150","4.8","('Q1', 'Q1')","1.30","99.49" +"COMPUTERS & SECURITY","0167-4048","1872-6208","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","10,770","4.8","Q1","1.29","22.49" +"REVIEW OF ACCOUNTING STUDIES","1380-6653","1573-7136","BUSINESS, FINANCE","('SSCI',)","5,567","4.8","Q1","1.29","34.78" +"Perspectives on Medical Education","2212-2761","2212-277X","('EDUCATION, SCIENTIFIC DISCIPLINES', 'HEALTH CARE SCIENCES & SERVICES')","('SCIE', 'SCIE')","1,956","4.8","('Q1', 'Q1')","1.28","98.45" +"TOXICOLOGY","0300-483X","1879-3185","('PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE')","14,190","4.8","('Q1', 'Q1')","1.27","18.52" +"CNS Neuroscience & Therapeutics","1755-5930","1755-5949","('NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","7,555","4.8","('Q1', 'Q1')","1.26","77.78" +"AUTOMATICA","0005-1098","1873-2836","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","48,545","4.8","('Q1', 'Q1')","1.24","24.66" +"International Immunopharmacology","1567-5769","1878-1705","('IMMUNOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","33,221","4.8","('Q2', 'Q1')","1.24","14.48" +"Journal of Hospitality and Tourism Insights","2514-9792","2514-9806","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,426","4.8","Q1","1.24","2.01" +"ARCHIVES OF TOXICOLOGY","0340-5761","1432-0738","TOXICOLOGY","('SCIE',)","14,083","4.8","Q1","1.23","45.57" +"Journal of Agriculture and Food Research","2666-1543","2666-1543","('AGRICULTURE, MULTIDISCIPLINARY', 'FOOD SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","2,698","4.8","('Q1', 'Q1')","1.22","93.29" +"JMIR Mental Health","2368-7959","2368-7959","PSYCHIATRY","('SCIE',)","4,285","4.8","Q1","1.18","99.26" +"APPLIED SOIL ECOLOGY","0929-1393","1873-0272","SOIL SCIENCE","('SCIE',)","17,729","4.8","Q1","1.16","15.40" +"BIOELECTROCHEMISTRY","1567-5394","1878-562X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOLOGY', 'BIOPHYSICS', 'ELECTROCHEMISTRY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","7,313","4.8","('Q1', 'Q1', 'Q1', 'Q2')","1.16","19.21" +"M&SOM-Manufacturing & Service Operations Management","1523-4614","1526-5498","('MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SSCI', 'SCIE')","6,443","4.8","('Q1', 'Q1')","1.15","0.00" +"JOURNAL OF CLIMATE","0894-8755","1520-0442","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","61,036","4.8","Q1","1.14","6.14" +"MATERIALS CHARACTERIZATION","1044-5803","1873-4189","('MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE', 'SCIE')","27,366","4.8","('Q1', 'Q2', 'Q1')","1.14","10.65" +"Matter and Radiation at Extremes","2468-2047","2468-080X","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","1,286","4.8","Q1","1.14","92.11" +"Clinical Epigenetics","1868-7075","1868-7083","('GENETICS & HEREDITY', 'ONCOLOGY')","('SCIE', 'SCIE')","7,564","4.8","('Q1', 'Q1')","1.13","99.33" +"Social and Personality Psychology Compass","","1751-9004","PSYCHOLOGY, SOCIAL","('SSCI',)","6,463","4.8","Q1","1.13","44.67" +"Antimicrobial Resistance and Infection Control","2047-2994","2047-2994","('INFECTIOUS DISEASES', 'MICROBIOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE', 'SCIE')","6,532","4.8","('Q1', 'Q1', 'Q1')","1.12","99.34" +"ASTROPHYSICAL JOURNAL","0004-637X","1538-4357","ASTRONOMY & ASTROPHYSICS","('SCIE',)","289,640","4.8","Q1","1.10","70.90" +"CANCER GENE THERAPY","0929-1903","1476-5500","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'ONCOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,575","4.8","('Q1', 'Q1', 'Q1', 'Q1')","1.10","37.11" +"CONTACT DERMATITIS","0105-1873","1600-0536","('ALLERGY', 'DERMATOLOGY')","('SCIE', 'SCIE')","7,292","4.8","('Q2', 'Q1')","1.10","39.61" +"JOURNAL OF NUTRITIONAL BIOCHEMISTRY","0955-2863","1873-4847","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","13,711","4.8","('Q1', 'Q1')","1.10","23.29" +"Food Bioscience","2212-4292","2212-4306","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","11,726","4.8","Q1","1.09","6.90" +"HYDROMETALLURGY","0304-386X","1879-1158","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","16,019","4.8","Q1","1.08","11.46" +"Automotive Innovation","2096-4250","2522-8765","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MECHANICAL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","685","4.8","('Q1', 'Q1', 'Q1')","1.06","40.00" +"Climate Risk Management","2212-0963","2212-0963","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SSCI', 'SCIE')","2,546","4.8","('Q1', 'Q1', 'Q1')","1.05","98.02" +"Journal of Pipeline Science and Engineering","","2667-1433","('ENERGY & FUELS', 'ENGINEERING, MECHANICAL', 'ENGINEERING, PETROLEUM')","('ESCI', 'ESCI', 'ESCI')","360","4.8","('Q2', 'Q1', 'Q1')","1.05","93.33" +"Microbial Biotechnology","1751-7915","1751-7915","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","8,023","4.8","('Q1', 'Q1')","1.05","66.19" +"Sustainable Energy Grids & Networks","2352-4677","2352-4677","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","3,149","4.8","('Q2', 'Q1')","1.05","22.02" +"ACS ES&T Water","","2690-0637","('ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('ESCI', 'ESCI')","3,038","4.8","('Q1', 'Q1')","1.04","10.47" +"Nutrients","","2072-6643","NUTRITION & DIETETICS","('SCIE',)","134,540","4.8","Q1","1.03","99.13" +"ONCOLOGIST","1083-7159","1549-490X","ONCOLOGY","('SCIE',)","17,479","4.8","Q1","1.03","79.47" +"Current Research in Microbial Sciences","2666-5174","2666-5174","MICROBIOLOGY","('ESCI',)","828","4.8","Q1","1.02","97.91" +"Journal of Physical Chemistry Letters","1948-7185","","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","69,320","4.8","('Q2', 'Q2', 'Q2', 'Q1')","1.02","10.03" +"ACM Transactions on Computer-Human Interaction","1073-0516","1557-7325","('COMPUTER SCIENCE, CYBERNETICS', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","2,978","4.8","('Q1', 'Q1')","1.01","6.12" +"ENDOCRINOLOGY AND METABOLISM CLINICS OF NORTH AMERICA","0889-8529","1558-4410","ENDOCRINOLOGY & METABOLISM","('SCIE',)","4,446","4.8","Q1","1.00","15.13" +"PRODUCTION AND OPERATIONS MANAGEMENT","1059-1478","1937-5956","('ENGINEERING, MANUFACTURING', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","12,030","4.8","('Q1', 'Q1')","0.99","19.97" +"Environmental Epigenetics","2058-5888","2058-5888","GENETICS & HEREDITY","('ESCI',)","605","4.8","Q1","0.98","87.50" +"CLIMATIC CHANGE","0165-0009","1573-1480","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","24,341","4.8","('Q1', 'Q1')","0.93","45.53" +"Fuzzy Optimization and Decision Making","1568-4539","1573-2908","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","1,449","4.8","('Q1', 'Q1')","0.93","11.94" +"JOURNAL OF MOLECULAR MEDICINE-JMM","0946-2716","1432-1440","('GENETICS & HEREDITY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","8,591","4.8","('Q1', 'Q1')","0.93","34.28" +"ENVIRONMENTAL MODELLING & SOFTWARE","1364-8152","1873-6726","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","17,357","4.8","('Q1', 'Q2', 'Q1', 'Q1')","0.91","47.15" +"INTERNATIONAL MARKETING REVIEW","0265-1335","1758-6763","BUSINESS","('SSCI',)","3,891","4.8","Q1","0.87","11.05" +"Natural Products and Bioprospecting","2192-2195","2192-2209","CHEMISTRY, MEDICINAL","('ESCI',)","1,301","4.8","Q1","0.87","99.18" +"Current Neuropharmacology","1570-159X","1875-6190","('NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","7,774","4.8","('Q1', 'Q1')","0.85","4.45" +"Current Neurology and Neuroscience Reports","1528-4042","1534-6293","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","5,245","4.8","('Q1', 'Q1')","0.84","20.17" +"Liquid Crystals Reviews","2168-0396","2168-0418","('CHEMISTRY, PHYSICAL', 'CRYSTALLOGRAPHY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","363","4.8","('Q2', 'Q1', 'Q2')","0.84","0.00" +"POLYMER COMPOSITES","0272-8397","1548-0569","('MATERIALS SCIENCE, COMPOSITES', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","18,563","4.8","('Q2', 'Q1')","0.84","5.17" +"Microporous and Mesoporous Materials","1387-1811","1873-3093","('CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","34,011","4.8","('Q1', 'Q2', 'Q2', 'Q2')","0.80","12.21" +"Biomolecules","","2218-273X","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","38,384","4.8","Q1","0.79","99.63" +"INFLAMMATION RESEARCH","1023-3830","1420-908X","('CELL BIOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","6,476","4.8","('Q2', 'Q2')","0.79","17.12" +"Progress in Natural Science-Materials International","1002-0071","1745-5391","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","6,995","4.8","Q2","0.74","84.03" +"Business Strategy and Development","","2572-3170","('BUSINESS', 'ENVIRONMENTAL STUDIES')","('ESCI', 'ESCI')","738","4.8","('Q1', 'Q1')","0.67","18.67" +"INTERNATIONAL IMMUNOLOGY","0953-8178","1460-2377","IMMUNOLOGY","('SCIE',)","6,542","4.8","Q2","0.63","17.50" +"Emergent Materials","2522-5731","2522-574X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","1,978","4.8","Q2","0.52","15.24" +"Journal of Semiconductors","1674-4926","1674-4926","PHYSICS, CONDENSED MATTER","('ESCI',)","3,395","4.8","Q2","0.50","0.00" +"ACS Nanoscience Au","","2694-2496","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","319","4.8","Q2","0.38","78.79" +"CHINA JOURNAL","1324-9347","1835-8535","AREA STUDIES","('SSCI',)","895","4.7","Q1","4.52","0.00" +"LEARNING AND INSTRUCTION","0959-4752","1873-3263","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","7,992","4.7","('Q1', 'Q1')","2.67","37.77" +"POLITICAL ANALYSIS","1047-1987","1476-4989","POLITICAL SCIENCE","('SSCI',)","6,050","4.7","Q1","2.64","42.96" +"MODERN LANGUAGE JOURNAL","0026-7902","1540-4781","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('SSCI', 'SSCI')","5,481","4.7","('Q1', 'Q1')","2.53","25.98" +"COMMUNICATION THEORY","1050-3293","1468-2885","COMMUNICATION","('SSCI',)","3,648","4.7","Q1","1.99","22.58" +"BJOG-AN INTERNATIONAL JOURNAL OF OBSTETRICS AND GYNAECOLOGY","1470-0328","1471-0528","OBSTETRICS & GYNECOLOGY","('SCIE',)","18,444","4.7","Q1","1.95","44.07" +"SYSTEMATIC ENTOMOLOGY","0307-6970","1365-3113","('ENTOMOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE')","3,138","4.7","('Q1', 'Q1')","1.84","28.99" +"AMERICAN JOURNAL OF PATHOLOGY","0002-9440","1525-2191","PATHOLOGY","('SCIE',)","33,588","4.7","Q1","1.83","74.35" +"Best Practice & Research-Clinical Anaesthesiology","1521-6896","1878-1608","ANESTHESIOLOGY","('SCIE',)","2,209","4.7","Q1","1.75","17.12" +"DEPRESSION AND ANXIETY","1091-4269","1520-6394","('PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE, SSCI', 'SCIE', 'SSCI')","11,699","4.7","('Q1', 'Q1', 'Q1')","1.70","78.31" +"Paediatric Respiratory Reviews","1526-0542","1526-0550","('PEDIATRICS', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","2,484","4.7","('Q1', 'Q1')","1.66","10.62" +"POLITICAL GEOGRAPHY","0962-6298","1873-5096","('GEOGRAPHY', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","5,844","4.7","('Q1', 'Q1')","1.65","47.77" +"Studies in Science Education","0305-7267","1940-8412","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('SSCI', 'SCIE')","985","4.7","('Q1', 'Q1')","1.64","48.00" +"EUROPEAN RADIOLOGY","0938-7994","1432-1084","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","35,542","4.7","Q1","1.62","28.52" +"AMERICAN JOURNAL OF ROENTGENOLOGY","0361-803X","1546-3141","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","32,133","4.7","Q1","1.59","3.69" +"IEEE TRANSACTIONS ON VISUALIZATION AND COMPUTER GRAPHICS","1077-2626","1941-0506","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","16,704","4.7","Q1","1.56","12.98" +"NEUROIMAGE","1053-8119","1095-9572","('NEUROIMAGING', 'NEUROSCIENCES', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","107,771","4.7","('Q1', 'Q1', 'Q1')","1.49","96.36" +"JOURNAL OF THE AMERICAN MEDICAL INFORMATICS ASSOCIATION","1067-5027","1527-974X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'HEALTH CARE SCIENCES & SERVICES', 'INFORMATION SCIENCE & LIBRARY SCIENCE', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE', 'SCIE', 'SSCI', 'SCIE')","14,738","4.7","('Q1', 'Q1', 'Q1', 'Q1', 'Q1')","1.48","32.94" +"Bone & Joint Research","2046-3758","2046-3758","('CELL & TISSUE ENGINEERING', 'ORTHOPEDICS')","('SCIE', 'SCIE')","2,676","4.7","('Q2', 'Q1')","1.40","93.30" +"Journal of Insects as Food and Feed","","2352-4588","('ENTOMOLOGY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","2,423","4.7","('Q1', 'Q1')","1.33","2.54" +"LIVER TRANSPLANTATION","1527-6465","1527-6473","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY', 'TRANSPLANTATION')","('SCIE', 'SCIE', 'SCIE')","10,570","4.7","('Q1', 'Q1', 'Q1')","1.33","10.47" +"Journal of Infection and Public Health","1876-0341","1876-035X","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","6,683","4.7","('Q1', 'Q1')","1.32","95.65" +"JOURNAL OF PHYSIOLOGY-LONDON","0022-3751","1469-7793","('NEUROSCIENCES', 'PHYSIOLOGY')","('SCIE', 'SCIE')","47,742","4.7","('Q1', 'Q1')","1.32","48.50" +"GEOTEXTILES AND GEOMEMBRANES","0266-1144","1879-3584","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","6,664","4.7","('Q1', 'Q1')","1.30","4.86" +"Therapeutic Advances in Neurological Disorders","1756-2856","1756-2864","CLINICAL NEUROLOGY","('SCIE',)","2,786","4.7","Q1","1.30","94.19" +"INTERNATIONAL JOURNAL OF EATING DISORDERS","0276-3478","1098-108X","('NUTRITION & DIETETICS', 'PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SCIE, SSCI', 'SCIE', 'SSCI')","12,782","4.7","('Q1', 'Q1', 'Q1', 'Q1')","1.29","30.44" +"RHEUMATOLOGY","1462-0324","1462-0332","RHEUMATOLOGY","('SCIE',)","28,333","4.7","Q1","1.29","30.37" +"npj Genomic Medicine","","2056-7944","GENETICS & HEREDITY","('SCIE',)","1,838","4.7","Q1","1.28","99.03" +"PERSONNEL PSYCHOLOGY","0031-5826","1744-6570","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","10,066","4.7","('Q1', 'Q1')","1.27","31.13" +"RESPIRATORY RESEARCH","","1465-993X","RESPIRATORY SYSTEM","('SCIE',)","13,715","4.7","Q1","1.27","99.79" +"IEEE Transactions on Network and Service Management","1932-4537","1932-4537","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","6,583","4.7","Q1","1.25","8.74" +"Plant Methods","","1746-4811","('BIOCHEMICAL RESEARCH METHODS', 'PLANT SCIENCES')","('SCIE', 'SCIE')","6,627","4.7","('Q1', 'Q1')","1.24","99.52" +"Journal of Hydrology-Regional Studies","","2214-5818","WATER RESOURCES","('SCIE',)","5,407","4.7","Q1","1.22","96.73" +"Adolescent Research Review","2363-8346","2363-8354","('PSYCHOLOGY, DEVELOPMENTAL', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","1,015","4.7","('Q1', 'Q1')","1.20","46.25" +"CLINICAL PSYCHOLOGY-SCIENCE AND PRACTICE","0969-5893","1468-2850","PSYCHOLOGY, CLINICAL","('SSCI',)","4,280","4.7","Q1","1.20","4.55" +"EPIDEMIOLOGY","1044-3983","1531-5487","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","14,873","4.7","Q1","1.20","22.18" +"SCANDINAVIAN JOURNAL OF WORK ENVIRONMENT & HEALTH","0355-3140","1795-990X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","5,501","4.7","Q1","1.19","98.92" +"ENGINEERING FRACTURE MECHANICS","0013-7944","1873-7315","MECHANICS","('SCIE',)","27,767","4.7","Q1","1.18","13.47" +"Health Information Science and Systems","2047-2501","2047-2501","MEDICAL INFORMATICS","('SCIE',)","1,078","4.7","Q1","1.18","33.33" +"Behavioral and Brain Functions","","1744-9081","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES')","('SCIE', 'SCIE')","1,588","4.7","('Q1', 'Q1')","1.16","100.00" +"CHEMICO-BIOLOGICAL INTERACTIONS","0009-2797","1872-7786","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","17,009","4.7","('Q1', 'Q1', 'Q1')","1.16","11.70" +"Tumour Virus Research","2666-6790","2666-6790","VIROLOGY","('ESCI',)","155","4.7","Q1","1.16","89.13" +"JOURNAL OF COMPUTING IN CIVIL ENGINEERING","0887-3801","1943-5487","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","5,009","4.7","('Q1', 'Q1')","1.15","3.57" +"ARCHIVES OF MEDICAL RESEARCH","0188-4409","1873-5487","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","4,590","4.7","Q1","1.13","8.71" +"IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing","1939-1404","2151-1535","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'GEOGRAPHY, PHYSICAL', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","23,544","4.7","('Q1', 'Q1', 'Q1', 'Q1')","1.13","97.73" +"Mobile DNA","1759-8753","1759-8753","GENETICS & HEREDITY","('SCIE',)","1,537","4.7","Q1","1.12","98.67" +"Drug Design Development and Therapy","1177-8881","","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","14,189","4.7","('Q1', 'Q1')","1.10","97.50" +"BIOINORGANIC CHEMISTRY AND APPLICATIONS","1565-3633","1687-479X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE', 'SCIE')","2,327","4.7","('Q1', 'Q1', 'Q1')","1.09","99.48" +"MONTHLY NOTICES OF THE ROYAL ASTRONOMICAL SOCIETY","0035-8711","1365-2966","ASTRONOMY & ASTROPHYSICS","('SCIE',)","228,046","4.7","Q1","1.06","20.32" +"ACS Polymers Au","","2694-2453","POLYMER SCIENCE","('ESCI',)","416","4.7","Q1","1.05","61.90" +"Foods","","2304-8158","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","57,120","4.7","Q1","1.00","99.67" +"SAFETY SCIENCE","0925-7535","1879-1042","('ENGINEERING, INDUSTRIAL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","20,058","4.7","('Q1', 'Q1')","1.00","27.24" +"TRANSACTIONS OF NONFERROUS METALS SOCIETY OF CHINA","1003-6326","2210-3384","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","16,302","4.7","Q1","0.99","91.18" +"Infectious Diseases and Therapy","2193-8229","2193-6382","INFECTIOUS DISEASES","('SCIE',)","2,892","4.7","Q1","0.93","98.50" +"JOURNAL OF MOLECULAR BIOLOGY","0022-2836","1089-8638","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","54,235","4.7","Q1","0.93","44.75" +"Polymers","","2073-4360","POLYMER SCIENCE","('SCIE',)","94,303","4.7","Q1","0.93","99.54" +"Frontiers of Mechanical Engineering","2095-0233","2095-0241","ENGINEERING, MECHANICAL","('SCIE',)","2,208","4.7","Q1","0.92","23.93" +"Journal of Obesity & Metabolic Syndrome","2508-6235","2508-7576","ENDOCRINOLOGY & METABOLISM","('ESCI',)","922","4.7","Q1","0.90","99.03" +"Environmental Development","2211-4645","2211-4653","ENVIRONMENTAL SCIENCES","('SCIE',)","2,917","4.7","Q2","0.87","21.32" +"Elementa-Science of the Anthropocene","2325-1026","2325-1026","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","3,096","4.7","('Q2', 'Q1')","0.85","99.02" +"APPLIED CATALYSIS A-GENERAL","0926-860X","1873-3875","('CHEMISTRY, PHYSICAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","35,623","4.7","('Q2', 'Q2')","0.83","14.98" +"JCO Oncology Practice","2688-1527","2688-1535","ONCOLOGY","('SCIE',)","3,432","4.7","Q1","0.81","11.16" +"ENVIRONMENT DEVELOPMENT AND SUSTAINABILITY","1387-585X","1573-2975","('ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","16,812","4.7","('Q2', 'Q2')","0.80","10.22" +"Journal of Innate Immunity","1662-811X","1662-8128","IMMUNOLOGY","('SCIE',)","3,076","4.7","Q2","0.80","99.28" +"Annual Review of Cancer Biology","2472-3428","2472-3428","ONCOLOGY","('SCIE',)","1,012","4.7","Q1","0.78","85.45" +"NanoImpact","2452-0748","2452-0748","('ENVIRONMENTAL SCIENCES', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","1,869","4.7","('Q2', 'Q2')","0.78","40.10" +"Acta Ecologica Sinica","1872-2032","1872-2032","ECOLOGY","('ESCI',)","3,592","4.7","Q1","0.77","1.56" +"Current Opinion in Biomedical Engineering","2468-4511","2468-4511","ENGINEERING, BIOMEDICAL","('SCIE',)","1,670","4.7","Q2","0.77","35.41" +"Journal of Translational Autoimmunity","2589-9090","2589-9090","IMMUNOLOGY","('ESCI',)","733","4.7","Q2","0.77","99.32" +"Colloid and Interface Science Communications","2215-0382","2215-0382","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, COATINGS & FILMS', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,891","4.7","('Q2', 'Q2', 'Q2')","0.76","52.29" +"Chinese Herbal Medicines","1674-6384","1674-6384","CHEMISTRY, MEDICINAL","('ESCI',)","1,457","4.7","Q1","0.73","97.93" +"ELECTROCHEMISTRY COMMUNICATIONS","1388-2481","1873-1902","ELECTROCHEMISTRY","('SCIE',)","17,003","4.7","Q2","0.73","98.07" +"JOURNAL OF POLYMERS AND THE ENVIRONMENT","1566-2543","1572-8919","('ENGINEERING, ENVIRONMENTAL', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","12,356","4.7","('Q2', 'Q1')","0.73","7.54" +"Energy Reports","2352-4847","2352-4847","ENERGY & FUELS","('SCIE',)","29,171","4.7","Q2","0.72","97.25" +"International Journal of Artificial Intelligence in Education","1560-4292","1560-4306","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","1,776","4.7","Q1","0.72","39.67" +"Journal of Sustainable Cement-Based Materials","2165-0373","2165-0381","('CONSTRUCTION & BUILDING TECHNOLOGY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","1,531","4.7","('Q1', 'Q2', 'Q2')","0.72","2.11" +"Journal of Zhejiang University-SCIENCE B","1673-1581","1862-1783","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","4,265","4.7","('Q1', 'Q1', 'Q1')","0.72","3.03" +"Current Oncology Reports","1523-3790","1534-6269","ONCOLOGY","('SCIE',)","4,869","4.7","Q1","0.68","22.67" +"Journal of Translational Internal Medicine","2450-131X","2224-4018","MEDICINE, GENERAL & INTERNAL","('SCIE',)","889","4.7","Q1","0.67","94.40" +"Nanomedicine","1743-5889","1748-6963","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","9,839","4.7","('Q1', 'Q2')","0.67","8.87" +"Polysaccharides","","2673-4176","POLYMER SCIENCE","('ESCI',)","507","4.7","Q1","0.59","99.19" +"Micro and Nano Systems Letters","","2213-9621","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","403","4.7","Q2","0.36","100.00" +"Qualitative Research in Psychology","1478-0887","1478-0895","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","16,466","4.6","Q1","3.78","17.24" +"ReCALL","0958-3440","1474-0109","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","1,189","4.6","('Q1', 'N/A', 'Q1')","3.78","41.18" +"Journal of Chinese Political Science","1080-6954","1874-6357","('AREA STUDIES', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","943","4.6","('Q1', 'Q1')","3.35","12.50" +"Applied and Computational Mathematics","1683-3511","1683-6154","MATHEMATICS, APPLIED","('SCIE',)","566","4.6","Q1","3.31","0.00" +"BRITISH JOURNAL OF POLITICAL SCIENCE","0007-1234","1469-2112","POLITICAL SCIENCE","('SSCI',)","5,917","4.6","Q1","2.86","48.93" +"CRIMINOLOGY","0011-1384","1745-9125","CRIMINOLOGY & PENOLOGY","('SSCI',)","5,983","4.6","Q1","2.85","30.86" +"SCIENCE COMMUNICATION","1075-5470","1552-8545","COMMUNICATION","('SSCI',)","2,456","4.6","Q1","2.77","21.05" +"EDUCATIONAL TECHNOLOGY & SOCIETY","1176-3647","1436-4522","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","4,161","4.6","Q1","2.48","0.00" +"POLITICAL COMMUNICATION","1058-4609","1091-7675","('COMMUNICATION', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","3,664","4.6","('Q1', 'Q1')","2.46","31.25" +"ETHICS","0014-1704","1539-297X","('ETHICS', 'PHILOSOPHY')","('SSCI', 'AHCI')","3,569","4.6","('Q1', 'N/A')","2.23","0.00" +"ANESTHESIA AND ANALGESIA","0003-2999","0003-2999","ANESTHESIOLOGY","('SCIE',)","29,432","4.6","Q1","2.02","6.50" +"POPULATION AND DEVELOPMENT REVIEW","0098-7921","1728-4457","('DEMOGRAPHY', 'SOCIOLOGY')","('SSCI', 'SSCI')","5,804","4.6","('Q1', 'Q1')","1.93","41.88" +"JOURNAL OF EUROPEAN PUBLIC POLICY","1350-1763","1466-4429","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","6,967","4.6","('Q1', 'Q1')","1.85","57.85" +"CBE-Life Sciences Education","1931-7913","1931-7913","EDUCATION, SCIENTIFIC DISCIPLINES","('SCIE',)","4,652","4.6","Q1","1.81","97.24" +"EVOLUTIONARY ANTHROPOLOGY","1060-1538","1520-6505","ANTHROPOLOGY","('SSCI',)","2,273","4.6","Q1","1.66","21.74" +"DENTAL MATERIALS","0109-5641","1879-0097","('DENTISTRY, ORAL SURGERY & MEDICINE', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","17,990","4.6","('Q1', 'Q2')","1.61","23.70" +"JOURNAL OF RESEARCH ON ADOLESCENCE","1050-8392","1532-7795","('FAMILY STUDIES', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","4,730","4.6","('Q1', 'Q1')","1.60","24.64" +"Behavior Research Methods","1554-351X","1554-3528","('PSYCHOLOGY, EXPERIMENTAL', 'PSYCHOLOGY, MATHEMATICAL')","('SSCI', 'SSCI')","31,708","4.6","('Q1', 'Q1')","1.57","52.53" +"GERONTOLOGIST","0016-9013","1758-5341","GERONTOLOGY","('SSCI',)","14,976","4.6","Q1","1.55","25.17" +"DIABETES-METABOLISM RESEARCH AND REVIEWS","1520-7552","1520-7560","ENDOCRINOLOGY & METABOLISM","('SCIE',)","7,819","4.6","Q1","1.54","39.71" +"SciPost Physics","2542-4653","2542-4653","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","5,996","4.6","Q1","1.53","97.32" +"IEEE Transactions on Radiation and Plasma Medical Sciences","2469-7311","2469-7303","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,598","4.6","Q1","1.51","16.27" +"Journal of Integrative Agriculture","2095-3119","2352-3425","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","10,679","4.6","Q1","1.45","99.53" +"APPETITE","0195-6663","1095-8304","('BEHAVIORAL SCIENCES', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","24,413","4.6","('Q1', 'Q1')","1.42","36.15" +"INTERNATIONAL JOURNAL OF MANPOWER","0143-7720","1758-6577","('INDUSTRIAL RELATIONS & LABOR', 'MANAGEMENT')","('SSCI', 'SSCI')","3,311","4.6","('Q1', 'Q1')","1.42","10.00" +"Developmental Cognitive Neuroscience","1878-9293","1878-9307","('NEUROSCIENCES', 'PSYCHOLOGY, DEVELOPMENTAL')","('SCIE', 'SSCI')","6,012","4.6","('Q1', 'Q1')","1.41","96.60" +"IEEE Journal of Emerging and Selected Topics in Power Electronics","2168-6777","2168-6785","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","14,836","4.6","Q1","1.41","4.51" +"IEEE Wireless Communications Letters","2162-2337","2162-2345","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","13,337","4.6","('Q1', 'Q1', 'Q1')","1.40","5.40" +"CHINESE JOURNAL OF PHYSICS","0577-9073","0577-9073","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","7,053","4.6","Q1","1.39","1.29" +"Plant Diversity","2096-2703","2468-2659","PLANT SCIENCES","('SCIE',)","1,525","4.6","Q1","1.39","99.45" +"INTERNATIONAL PSYCHOGERIATRICS","1041-6102","1741-203X","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY', 'PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SSCI', 'SCIE', 'SCIE', 'SSCI')","8,720","4.6","('Q1', 'Q1', 'Q1', 'Q1', 'Q1')","1.38","38.25" +"DIABETES & METABOLISM","1262-3636","1878-1780","ENDOCRINOLOGY & METABOLISM","('SCIE',)","4,113","4.6","Q1","1.35","27.57" +"Ocean Engineering","0029-8018","1873-5258","('ENGINEERING, CIVIL', 'ENGINEERING, MARINE', 'ENGINEERING, OCEAN', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","53,367","4.6","('Q1', 'Q1', 'Q1', 'Q1')","1.33","12.08" +"GEOPHYSICAL RESEARCH LETTERS","0094-8276","1944-8007","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","129,044","4.6","Q1","1.31","50.49" +"IEEE TRANSACTIONS ON ANTENNAS AND PROPAGATION","0018-926X","1558-2221","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","57,093","4.6","('Q1', 'Q1')","1.30","11.39" +"MOLECULAR NEUROBIOLOGY","0893-7648","1559-1182","NEUROSCIENCES","('SCIE',)","22,213","4.6","Q1","1.29","23.13" +"SEMINARS IN NUCLEAR MEDICINE","0001-2998","1558-4623","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","2,980","4.6","Q1","1.29","21.98" +"DIVERSITY AND DISTRIBUTIONS","1366-9516","1472-4642","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","11,735","4.6","('Q1', 'Q1')","1.28","74.79" +"Organic Chemistry Frontiers","2052-4129","2052-4129","CHEMISTRY, ORGANIC","('SCIE',)","16,517","4.6","Q1","1.27","4.46" +"Research in Transportation Economics","0739-8859","1875-7979","('ECONOMICS', 'TRANSPORTATION')","('SSCI', 'SSCI')","3,003","4.6","('Q1', 'Q1')","1.26","22.61" +"Environment and Planning A-Economy and Space","0308-518X","1472-3409","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY')","('SSCI', 'SSCI')","11,306","4.6","('Q1', 'Q1')","1.25","45.71" +"FUNCTIONAL ECOLOGY","0269-8463","1365-2435","ECOLOGY","('SCIE',)","20,482","4.6","Q1","1.25","36.84" +"IEEE Robotics and Automation Letters","2377-3766","2377-3766","ROBOTICS","('SCIE',)","28,352","4.6","Q2","1.23","13.55" +"IEEE TRANSACTIONS ON ENGINEERING MANAGEMENT","0018-9391","1558-0040","('BUSINESS', 'ENGINEERING, INDUSTRIAL', 'MANAGEMENT')","('SSCI', 'SCIE', 'SSCI')","9,041","4.6","('Q1', 'Q1', 'Q1')","1.23","7.25" +"IEEE JOURNAL OF SOLID-STATE CIRCUITS","0018-9200","1558-173X","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","22,268","4.6","Q1","1.22","13.89" +"OPTICS AND LASER TECHNOLOGY","0030-3992","1879-2545","('OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","25,601","4.6","('Q1', 'Q2')","1.22","5.85" +"WATER RESOURCES RESEARCH","0043-1397","1944-7973","('ENVIRONMENTAL SCIENCES', 'LIMNOLOGY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","64,158","4.6","('Q2', 'Q1', 'Q1')","1.22","36.00" +"Accounting Auditing & Accountability Journal","0951-3574","1758-4205","BUSINESS, FINANCE","('SSCI',)","7,852","4.6","Q1","1.20","24.32" +"SEMINARS IN ARTHRITIS AND RHEUMATISM","0049-0172","1532-866X","RHEUMATOLOGY","('SCIE',)","9,440","4.6","Q1","1.20","31.62" +"IEEE TRANSACTIONS ON SIGNAL PROCESSING","1053-587X","1941-0476","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","39,852","4.6","Q1","1.19","19.39" +"NEUROPHARMACOLOGY","0028-3908","1873-7064","('NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","22,857","4.6","('Q1', 'Q1')","1.19","35.31" +"Journal of Ecohydraulics","2470-5357","2470-5365","('ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('ESCI', 'ESCI')","279","4.6","('Q2', 'Q1')","1.18","17.78" +"JOURNAL OF URBAN TECHNOLOGY","1063-0732","1466-1853","URBAN STUDIES","('SSCI',)","1,653","4.6","Q1","1.18","24.14" +"PHYSICAL REVIEW D","2470-0010","2470-0029","('ASTRONOMY & ASTROPHYSICS', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","227,612","4.6","('Q1', 'Q1')","1.18","58.66" +"EXPERIMENTAL NEUROLOGY","0014-4886","1090-2430","NEUROSCIENCES","('SCIE',)","20,131","4.6","Q1","1.17","24.71" +"Molecular Therapy Methods & Clinical Development","","2329-0501","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","5,579","4.6","Q2","1.17","90.91" +"Nutrition & Diabetes","2044-4052","2044-4052","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","2,142","4.6","('Q1', 'Q1')","1.12","100.00" +"MANAGEMENT SCIENCE","0025-1909","1526-5501","('MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SSCI', 'SCIE')","47,274","4.6","('Q1', 'Q1')","1.11","0.00" +"Algal Research-Biomass Biofuels and Bioproducts","2211-9264","2211-9264","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","13,824","4.6","Q1","1.10","21.97" +"CLINICAL PHARMACOKINETICS","0312-5963","1179-1926","PHARMACOLOGY & PHARMACY","('SCIE',)","10,794","4.6","Q1","1.09","57.86" +"LUNG","0341-2040","1432-1750","RESPIRATORY SYSTEM","('SCIE',)","3,698","4.6","Q1","1.09","30.09" +"Structural Control & Health Monitoring","1545-2255","1545-2263","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE', 'SCIE')","8,594","4.6","('Q1', 'Q1', 'Q1')","1.08","80.65" +"INFLAMMOPHARMACOLOGY","0925-4692","1568-5608","('IMMUNOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","4,979","4.6","('Q2', 'Q1')","1.07","20.93" +"Mineral Processing and Extractive Metallurgy Review","0882-7508","1547-7401","('METALLURGY & METALLURGICAL ENGINEERING', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE')","2,771","4.6","('Q1', 'Q1')","1.05","11.79" +"Management of Environmental Quality","1477-7835","1758-6119","ENVIRONMENTAL STUDIES","('ESCI',)","2,806","4.6","Q1","1.03","0.78" +"iScience","","2589-0042","MULTIDISCIPLINARY SCIENCES","('SCIE',)","29,395","4.6","Q1","1.02","93.78" +"CANCER IMMUNOLOGY IMMUNOTHERAPY","0340-7004","1432-0851","('IMMUNOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","12,545","4.6","('Q2', 'Q1')","1.01","37.71" +"Current Nutrition Reports","","2161-3311","NUTRITION & DIETETICS","('SCIE',)","1,801","4.6","Q1","1.00","30.12" +"China Geology","2096-5192","2096-5192","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","1,201","4.6","Q1","0.98","94.67" +"GENE THERAPY","0969-7128","1476-5462","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,684","4.6","('Q1', 'Q1', 'Q1', 'Q2')","0.98","43.01" +"Mycology-An International Journal On Fungal Biology","2150-1203","2150-1211","MYCOLOGY","('ESCI',)","930","4.6","Q1","0.98","97.50" +"ACS Measurement Science Au","","2694-250X","CHEMISTRY, ANALYTICAL","('ESCI',)","504","4.6","Q1","0.96","65.96" +"Ecological Processes","","2192-1709","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","2,178","4.6","('Q1', 'Q2')","0.95","100.00" +"EVOLUTIONARY COMPUTATION","1063-6560","1530-9304","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","3,282","4.6","('Q2', 'Q1')","0.95","7.27" +"JOURNAL OF TECHNOLOGY TRANSFER","0892-9912","1573-7047","MANAGEMENT","('SSCI',)","4,892","4.6","Q1","0.94","45.45" +"Accounting in Europe","1744-9480","1744-9499","BUSINESS, FINANCE","('ESCI',)","515","4.6","Q1","0.93","23.40" +"Clinical & Translational Immunology","","2050-0068","IMMUNOLOGY","('SCIE',)","2,621","4.6","Q2","0.92","72.92" +"Human Resource Development Review","1534-4843","1552-6712","MANAGEMENT","('SSCI',)","2,065","4.6","Q1","0.90","12.90" +"Quality Assurance and Safety of Crops & Foods","1757-8361","1757-837X","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,279","4.6","Q1","0.90","96.13" +"Annals of Clinical Microbiology and Antimicrobials","","1476-0711","MICROBIOLOGY","('SCIE',)","2,983","4.6","Q1","0.89","100.00" +"Clinical and Translational Allergy","","2045-7022","ALLERGY","('SCIE',)","2,335","4.6","Q2","0.89","70.51" +"CORPORATE GOVERNANCE-AN INTERNATIONAL REVIEW","0964-8410","1467-8683","('BUSINESS', 'BUSINESS, FINANCE', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","5,546","4.6","('Q1', 'Q1', 'Q1')","0.89","27.13" +"CIRP Journal of Manufacturing Science and Technology","1755-5817","1878-0016","ENGINEERING, MANUFACTURING","('SCIE',)","3,771","4.6","Q2","0.87","15.32" +"Frontiers in Cellular and Infection Microbiology","2235-2988","2235-2988","('IMMUNOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","33,202","4.6","('Q2', 'Q1')","0.86","99.55" +"Frontiers in Cell and Developmental Biology","2296-634X","2296-634X","('CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY')","('SCIE', 'SCIE')","46,541","4.6","('Q2', 'Q1')","0.85","99.06" +"Journal of Physics-Photonics","2515-7647","2515-7647","('OPTICS', 'PHYSICS, APPLIED')","('ESCI', 'ESCI')","1,062","4.6","('Q1', 'Q2')","0.85","98.73" +"Publications","","2304-6775","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","1,106","4.6","Q1","0.85","100.00" +"IEEE Open Journal of Intelligent Transportation Systems","","2687-7813","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","595","4.6","('Q2', 'Q1', 'Q2')","0.84","98.80" +"Global Sustainability","","2059-4798","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","827","4.6","('Q2', 'Q1', 'Q2')","0.82","100.00" +"Journal of the International AIDS Society","","1758-2652","('IMMUNOLOGY', 'INFECTIOUS DISEASES')","('SCIE', 'SCIE')","6,453","4.6","('Q2', 'Q1')","0.81","68.15" +"EXPERT OPINION ON THERAPEUTIC TARGETS","1472-8222","1744-7631","PHARMACOLOGY & PHARMACY","('SCIE',)","6,046","4.6","Q1","0.80","13.79" +"Chinese Journal of Mechanical Engineering","1000-9345","2192-8258","ENGINEERING, MECHANICAL","('SCIE',)","4,504","4.6","Q1","0.79","100.00" +"Sustainable Environment Research","2468-2039","2468-2039","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,782","4.6","('Q2', 'Q2', 'Q2')","0.75","100.00" +"WIREs Mechanisms of Disease","2692-9368","2692-9368","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","380","4.6","Q2","0.72","33.67" +"BIOCHIMICA ET BIOPHYSICA ACTA-MOLECULAR CELL RESEARCH","0167-4889","1879-2596","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","17,409","4.6","('Q1', 'Q2')","0.71","69.32" +"Food Hydrocolloids for Health","2667-0259","2667-0259","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","529","4.6","('Q1', 'Q1')","0.71","88.89" +"Energy Sustainability and Society","2192-0567","2192-0567","('ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","1,574","4.6","('Q2', 'Q2')","0.69","99.30" +"Batteries-Basel","","2313-0105","('ELECTROCHEMISTRY', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","4,157","4.6","('Q2', 'Q2', 'Q2')","0.65","99.79" +"ACS Applied Bio Materials","2576-6422","2576-6422","('MATERIALS SCIENCE, BIOMATERIALS', 'NANOSCIENCE & NANOTECHNOLOGY')","('ESCI', 'ESCI')","13,933","4.6","('Q2', 'Q2')","0.64","7.29" +"aBIOTECH","2096-6326","2662-1738","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'PLANT SCIENCES')","('ESCI', 'ESCI')","379","4.6","('Q1', 'Q1')","0.63","65.48" +"Cancer Drug Resistance","","2578-532X","ONCOLOGY","('ESCI',)","1,342","4.6","Q1","0.61","99.43" +"International Journal of Greenhouse Gas Control","1750-5836","1878-0148","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","14,285","4.6","('Q2', 'Q2', 'Q2', 'Q2')","0.61","36.36" +"Nanoscale Advances","2516-0230","2516-0230","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","11,188","4.6","('Q2', 'Q2', 'Q2')","0.61","99.25" +"Recycling","","2313-4321","GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY","('ESCI',)","1,564","4.6","Q2","0.58","99.25" +"Journal of Computing in Higher Education","1042-1726","1867-1233","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,541","4.5","Q1","2.48","23.77" +"AMERICAN JOURNAL OF SURGICAL PATHOLOGY","0147-5185","1532-0979","('PATHOLOGY', 'SURGERY')","('SCIE', 'SCIE')","21,608","4.5","('Q1', 'Q1')","2.25","6.01" +"WORLD POLITICS","0043-8871","1086-3338","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","4,745","4.5","('Q1', 'Q1')","2.18","0.00" +"WEST EUROPEAN POLITICS","0140-2382","1743-9655","POLITICAL SCIENCE","('SSCI',)","4,146","4.5","Q1","2.15","53.60" +"Journal of Research on Technology in Education","1539-1523","1945-0818","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,012","4.5","Q1","2.05","9.82" +"NEW MEDIA & SOCIETY","1461-4448","1461-7315","COMMUNICATION","('SSCI',)","13,552","4.5","Q1","2.04","36.68" +"HUMAN RELATIONS","0018-7267","1741-282X","('MANAGEMENT', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","11,980","4.5","('Q1', 'Q1')","1.87","42.47" +"Journal of NeuroInterventional Surgery","1759-8478","1759-8486","('NEUROIMAGING', 'SURGERY')","('SCIE', 'SCIE')","9,350","4.5","('Q1', 'Q1')","1.77","17.64" +"ANTIVIRAL RESEARCH","0166-3542","1872-9096","('PHARMACOLOGY & PHARMACY', 'VIROLOGY')","('SCIE', 'SCIE')","11,997","4.5","('Q1', 'Q1')","1.76","44.99" +"APPLIED MATHEMATICS AND MECHANICS-ENGLISH EDITION","0253-4827","1573-2754","('MATHEMATICS, APPLIED', 'MECHANICS')","('SCIE', 'SCIE')","3,980","4.5","('Q1', 'Q1')","1.74","30.75" +"EUROPEAN JOURNAL OF AGRONOMY","1161-0301","1873-7331","AGRONOMY","('SCIE',)","11,203","4.5","Q1","1.65","27.06" +"JOURNAL OF CONSULTING AND CLINICAL PSYCHOLOGY","0022-006X","1939-2117","PSYCHOLOGY, CLINICAL","('SSCI',)","20,413","4.5","Q1","1.65","8.71" +"Review of International Organizations","1559-7431","1559-744X","('ECONOMICS', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","1,795","4.5","('Q1', 'Q1', 'Q1')","1.57","51.76" +"CHILD MALTREATMENT","1077-5595","1552-6119","('FAMILY STUDIES', 'SOCIAL WORK')","('SSCI', 'SSCI')","3,436","4.5","('Q1', 'Q1')","1.48","15.03" +"GEOCHIMICA ET COSMOCHIMICA ACTA","0016-7037","1872-9533","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","72,561","4.5","Q1","1.46","43.95" +"Exposure and Health","2451-9766","2451-9685","WATER RESOURCES","('SCIE',)","2,095","4.5","Q1","1.44","26.13" +"Asian Economic Policy Review","1832-8105","1748-3131","ECONOMICS","('SSCI',)","502","4.5","Q1","1.41","18.92" +"Journal of Global Information Management","1062-7375","1533-7995","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","1,761","4.5","Q1","1.41","97.31" +"JOURNAL OF DRUG DELIVERY SCIENCE AND TECHNOLOGY","1773-2247","2588-8943","PHARMACOLOGY & PHARMACY","('SCIE',)","18,644","4.5","Q1","1.37","7.21" +"ECONOMIC POLICY","0266-4658","1468-0327","ECONOMICS","('SSCI',)","1,974","4.5","Q1","1.35","25.00" +"INTERNATIONAL JOURNAL OF HYGIENE AND ENVIRONMENTAL HEALTH","1438-4639","1618-131X","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","7,865","4.5","('Q1', 'Q1')","1.33","46.24" +"ALTEX-Alternatives to Animal Experimentation","1868-596X","1868-8551","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","1,882","4.5","Q2","1.32","97.44" +"Gynecologic Oncology","0090-8258","1095-6859","('OBSTETRICS & GYNECOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","25,508","4.5","('Q1', 'Q1')","1.31","25.89" +"EUROPEAN JOURNAL OF NEUROLOGY","1351-5101","1468-1331","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","16,584","4.5","('Q1', 'Q1')","1.30","47.62" +"MECHANISM AND MACHINE THEORY","0094-114X","1873-3999","ENGINEERING, MECHANICAL","('SCIE',)","14,585","4.5","Q1","1.29","13.48" +"JOURNAL OF PSYCHOPHARMACOLOGY","0269-8811","1461-7285","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,630","4.5","('Q1', 'Q1', 'Q1', 'Q1')","1.28","39.34" +"New Biotechnology","1871-6784","1876-4347","('BIOCHEMICAL RESEARCH METHODS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE')","4,143","4.5","('Q1', 'Q1')","1.28","74.18" +"JOURNAL OF MICROBIOLOGY IMMUNOLOGY AND INFECTION","1684-1182","1995-9133","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,504","4.5","('Q2', 'Q1', 'Q1')","1.27","95.77" +"NEW TECHNOLOGY WORK AND EMPLOYMENT","0268-1072","1468-005X","('ERGONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI')","1,722","4.5","('Q1', 'Q1')","1.26","58.23" +"MOLECULAR PHARMACEUTICS","1543-8384","1543-8392","('MEDICINE, RESEARCH & EXPERIMENTAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","22,661","4.5","('Q2', 'Q1')","1.22","12.79" +"Atmospheric Research","0169-8095","1873-2895","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","19,128","4.5","Q1","1.21","27.03" +"International Journal for Equity in Health","","1475-9276","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","8,750","4.5","Q1","1.20","99.86" +"COMPUTER COMMUNICATIONS","0140-3664","1873-703X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","9,765","4.5","('Q1', 'Q1', 'Q1')","1.19","9.64" +"Journal of the International Society of Sports Nutrition","","1550-2783","('NUTRITION & DIETETICS', 'SPORT SCIENCES')","('SCIE', 'SCIE')","2,946","4.5","('Q1', 'Q1')","1.19","96.84" +"FOOD MICROBIOLOGY","0740-0020","1095-9998","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'FOOD SCIENCE & TECHNOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","14,493","4.5","('Q1', 'Q1', 'Q1')","1.18","30.30" +"ENVIRONMENTAL AND EXPERIMENTAL BOTANY","0098-8472","1873-7307","('ENVIRONMENTAL SCIENCES', 'PLANT SCIENCES')","('SCIE', 'SCIE')","18,324","4.5","('Q2', 'Q1')","1.17","12.42" +"International Journal of Logistics-Research and Applications","1367-5567","1469-848X","MANAGEMENT","('SSCI',)","2,913","4.5","Q1","1.17","12.50" +"BIOORGANIC CHEMISTRY","0045-2068","1090-2120","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","21,018","4.5","('Q1', 'Q1')","1.15","6.00" +"INTERNATIONAL JOURNAL OF NEUROPSYCHOPHARMACOLOGY","1461-1457","1469-5111","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,971","4.5","('Q1', 'Q1', 'Q1', 'Q1')","1.15","90.91" +"JOURNAL OF CLINICAL PSYCHIATRY","0160-6689","1555-2101","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SCIE, SSCI', 'SSCI')","17,787","4.5","('Q1', 'Q1')","1.15","2.19" +"MOLECULAR ECOLOGY","0962-1083","1365-294X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ECOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","38,480","4.5","('Q1', 'Q1', 'Q1')","1.15","41.56" +"GM Crops & Food-Biotechnology in Agriculture and the Food Chain","2164-5698","2164-5701","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","760","4.5","('Q1', 'Q1')","1.11","100.00" +"INFORMATION ECONOMICS AND POLICY","0167-6245","1873-5975","ECONOMICS","('SSCI',)","1,166","4.5","Q1","1.11","24.10" +"LUNG CANCER","0169-5002","1872-8332","('ONCOLOGY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","14,566","4.5","('Q1', 'Q1')","1.11","35.69" +"Benchmarking-An International Journal","1463-5771","1758-4094","MANAGEMENT","('ESCI',)","5,425","4.5","Q1","1.10","2.40" +"Geomatics Natural Hazards & Risk","1947-5705","1947-5713","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","4,150","4.5","('Q1', 'Q1', 'Q1')","1.10","98.34" +"PROTEIN SCIENCE","0961-8368","1469-896X","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","19,269","4.5","Q1","1.10","47.07" +"HEART FAILURE REVIEWS","1382-4147","1573-7322","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","4,806","4.5","Q1","1.07","26.84" +"BEST PRACTICE & RESEARCH IN CLINICAL RHEUMATOLOGY","1521-6942","1521-1770","RHEUMATOLOGY","('SCIE',)","4,615","4.5","Q1","1.06","20.93" +"Translational Oncology","1936-5233","1936-5233","ONCOLOGY","('SCIE',)","6,573","4.5","Q1","1.06","98.11" +"AGRICULTURAL ECONOMICS","0169-5150","1574-0862","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('SCIE', 'SSCI')","5,262","4.5","('Q1', 'Q1')","1.04","38.83" +"BRITISH JOURNAL OF MANAGEMENT","1045-3172","1467-8551","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","8,149","4.5","('Q1', 'Q1')","1.04","40.88" +"INTERNATIONAL JOURNAL OF ENTREPRENEURIAL BEHAVIOR & RESEARCH","1355-2554","1758-6534","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","5,012","4.5","('Q1', 'Q1')","1.04","18.80" +"MATRIX BIOLOGY","0945-053X","1569-1802","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","8,291","4.5","('Q1', 'Q2')","1.04","46.70" +"Water Resources and Industry","","2212-3717","WATER RESOURCES","('SCIE',)","1,335","4.5","Q1","1.04","95.00" +"Artificial Cells Nanomedicine and Biotechnology","2169-1401","2169-141X","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE', 'SCIE')","8,659","4.5","('Q1', 'Q2', 'Q2')","1.03","98.61" +"Journal of Vacation Marketing","1356-7667","1479-1870","('BUSINESS', 'HOSPITALITY, LEISURE, SPORT & TOURISM')","('SSCI', 'SSCI')","2,079","4.5","('Q1', 'Q1')","1.03","6.47" +"PUBLICATIONS OF THE ASTRONOMICAL SOCIETY OF AUSTRALIA","1323-3580","1448-6083","ASTRONOMY & ASTROPHYSICS","('SCIE',)","3,644","4.5","Q1","1.03","33.15" +"INFLAMMATORY BOWEL DISEASES","1078-0998","1536-4844","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","18,601","4.5","Q1","1.02","20.24" +"Vaccine","0264-410X","1873-2518","('IMMUNOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","47,675","4.5","('Q2', 'Q2')","1.02","45.84" +"CANCER SCIENCE","1347-9032","1349-7006","ONCOLOGY","('SCIE',)","19,851","4.5","Q1","1.01","73.61" +"Soil Ecology Letters","2662-2289","2662-2297","('ECOLOGY', 'SOIL SCIENCE')","('ESCI', 'ESCI')","648","4.5","('Q1', 'Q1')","1.01","6.61" +"JOURNAL OF CELLULAR PHYSIOLOGY","0021-9541","1097-4652","('CELL BIOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","37,497","4.5","('Q2', 'Q1')","1.00","9.67" +"Stem Cell Reviews and Reports","2629-3269","2629-3277","('CELL & TISSUE ENGINEERING', 'CELL BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","4,546","4.5","('Q2', 'Q2', 'Q2')","0.99","32.49" +"MOLECULAR NUTRITION & FOOD RESEARCH","1613-4125","1613-4133","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","16,655","4.5","Q1","0.98","25.18" +"INTERNATIONAL JOURNAL OF ONCOLOGY","1019-6439","1791-2423","ONCOLOGY","('SCIE',)","17,217","4.5","Q1","0.97","78.23" +"IEEE Transactions on Computational Social Systems","2329-924X","2329-924X","('COMPUTER SCIENCE, CYBERNETICS', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","4,843","4.5","('Q1', 'Q1')","0.96","4.50" +"Journal of Global Health","2047-2978","2047-2986","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","5,285","4.5","Q1","0.96","95.55" +"CLINICAL IMMUNOLOGY","1521-6616","1521-7035","IMMUNOLOGY","('SCIE',)","10,304","4.5","Q2","0.95","22.90" +"Applied Food Research","2772-5022","2772-5022","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","1,190","4.5","Q1","0.94","86.98" +"GPS SOLUTIONS","1080-5370","1521-1886","REMOTE SENSING","('SCIE',)","5,970","4.5","Q1","0.91","20.46" +"2D Materials","2053-1583","2053-1583","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","9,415","4.5","Q2","0.90","29.63" +"BONE MARROW TRANSPLANTATION","0268-3369","1476-5365","('HEMATOLOGY', 'IMMUNOLOGY', 'ONCOLOGY', 'TRANSPLANTATION')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","14,809","4.5","('Q1', 'Q2', 'Q1', 'Q1')","0.90","23.50" +"Cancers","","2072-6694","ONCOLOGY","('SCIE',)","102,352","4.5","Q1","0.90","99.52" +"Business Process Management Journal","1463-7154","1758-4116","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","3,423","4.5","('Q1', 'Q1')","0.88","8.08" +"NEURAL COMPUTING & APPLICATIONS","0941-0643","1433-3058","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","32,254","4.5","Q2","0.88","13.44" +"HUMAN-COMPUTER INTERACTION","0737-0024","1532-7051","('COMPUTER SCIENCE, CYBERNETICS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","1,343","4.5","('Q1', 'Q1')","0.86","39.71" +"mLife","2097-1699","2770-100X","MICROBIOLOGY","('ESCI',)","180","4.5","Q1","0.83","94.20" +"REACTIVE & FUNCTIONAL POLYMERS","1381-5148","1873-166X","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","9,512","4.5","('Q1', 'Q2', 'Q1')","0.83","7.48" +"Cancer Nanotechnology","1868-6958","1868-6966","('NANOSCIENCE & NANOTECHNOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","998","4.5","('Q2', 'Q1')","0.82","100.00" +"INTERNATIONAL JOURNAL OF MEDICAL MICROBIOLOGY","1438-4221","1618-0607","('MICROBIOLOGY', 'VIROLOGY')","('SCIE', 'SCIE')","4,195","4.5","('Q1', 'Q1')","0.78","97.67" +"POWDER TECHNOLOGY","0032-5910","1873-328X","ENGINEERING, CHEMICAL","('SCIE',)","48,406","4.5","Q2","0.78","13.11" +"EUROPEAN JOURNAL OF IMMUNOLOGY","0014-2980","1521-4141","IMMUNOLOGY","('SCIE',)","19,799","4.5","Q2","0.74","57.57" +"EUROPEAN JOURNAL OF CELL BIOLOGY","0171-9335","1618-1298","CELL BIOLOGY","('SCIE',)","3,902","4.5","Q2","0.73","97.81" +"PROGRESS IN CRYSTAL GROWTH AND CHARACTERIZATION OF MATERIALS","0960-8974","1878-4208","('CRYSTALLOGRAPHY', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING')","('SCIE', 'SCIE')","1,147","4.5","('Q1', 'Q1')","0.72","8.33" +"INFLAMMATION","0360-3997","1573-2576","('CELL BIOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","8,820","4.5","('Q2', 'Q2')","0.71","15.36" +"Open Biology","","2046-2441","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","5,493","4.5","Q1","0.69","99.45" +"International Journal of Smart and Nano Materials","1947-5411","1947-542X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","846","4.5","Q2","0.68","94.95" +"JOURNAL OF ARTIFICIAL INTELLIGENCE RESEARCH","1076-9757","1943-5037","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","7,642","4.5","Q2","0.65","1.33" +"EXPERT REVIEWS IN MOLECULAR MEDICINE","1462-3994","1462-3994","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","1,996","4.5","('Q1', 'Q2')","0.62","31.63" +"Current Opinion in HIV and AIDS","1746-630X","1746-6318","('IMMUNOLOGY', 'INFECTIOUS DISEASES')","('SCIE', 'SCIE')","2,509","4.5","('Q2', 'Q1')","0.53","25.58" +"JOURNAL OF PEASANT STUDIES","0306-6150","1743-9361","('ANTHROPOLOGY', 'DEVELOPMENT STUDIES')","('SSCI', 'SSCI')","5,769","4.4","('Q1', 'Q1')","2.36","35.74" +"ANNALS OF FAMILY MEDICINE","1544-1709","1544-1717","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","6,059","4.4","('Q1', 'Q1')","2.28","95.18" +"Women and Birth","1871-5192","1878-1799","('NURSING', 'OBSTETRICS & GYNECOLOGY')","('SCIE, SSCI', 'SCIE')","4,075","4.4","('Q1', 'Q1')","2.19","29.37" +"HUMAN COMMUNICATION RESEARCH","0360-3989","1468-2958","COMMUNICATION","('SSCI',)","4,388","4.4","Q1","2.18","17.39" +"Earth System Governance","2589-8116","2589-8116","('ENVIRONMENTAL STUDIES', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","560","4.4","('Q1', 'Q1', 'Q1', 'Q1')","2.17","97.89" +"JOURNAL OF BONE AND JOINT SURGERY-AMERICAN VOLUME","0021-9355","1535-1386","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","45,590","4.4","('Q1', 'Q1')","2.11","8.95" +"Ophthalmology Retina","2468-6530","","OPHTHALMOLOGY","('ESCI',)","3,222","4.4","Q1","2.10","31.27" +"Journal of Public Relations Research","1062-726X","1532-754X","COMMUNICATION","('SSCI',)","2,178","4.4","Q1","2.05","8.11" +"AMERICAN JOURNAL OF SOCIOLOGY","0002-9602","1537-5390","SOCIOLOGY","('SSCI',)","21,089","4.4","Q1","1.97","0.00" +"ARTHROSCOPY-THE JOURNAL OF ARTHROSCOPIC AND RELATED SURGERY","0749-8063","1526-3231","('ORTHOPEDICS', 'SPORT SCIENCES', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","18,066","4.4","('Q1', 'Q1', 'Q1')","1.94","6.43" +"MATHEMATICS AND COMPUTERS IN SIMULATION","0378-4754","1872-7166","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","8,751","4.4","('Q1', 'Q1', 'Q1')","1.76","7.21" +"AMERICAN JOURNAL OF GERIATRIC PSYCHIATRY","1064-7481","1545-7214","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY', 'PSYCHIATRY')","('SCIE', 'SSCI', 'SCIE, SSCI')","8,439","4.4","('Q1', 'Q1', 'Q1')","1.62","21.73" +"China Agricultural Economic Review","1756-137X","1756-1388","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('SCIE', 'SSCI')","1,617","4.4","('Q1', 'Q1')","1.60","5.26" +"WORK AND OCCUPATIONS","0730-8884","1552-8464","('INDUSTRIAL RELATIONS & LABOR', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,778","4.4","('Q1', 'Q1')","1.59","33.33" +"Stroke and Vascular Neurology","2059-8688","2059-8696","CLINICAL NEUROLOGY","('SCIE',)","2,374","4.4","Q1","1.57","99.60" +"BIOINFORMATICS","1367-4803","1367-4811","('BIOCHEMICAL RESEARCH METHODS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","166,068","4.4","('Q1', 'Q1', 'Q1')","1.53","58.31" +"APPLIED MATHEMATICAL MODELLING","0307-904X","1872-8480","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","25,283","4.4","('Q1', 'Q1', 'Q1')","1.51","8.66" +"Journal of Competitiveness","1804-171X","1804-1728","('BUSINESS', 'ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","1,045","4.4","('Q2', 'Q1', 'Q2')","1.42","89.52" +"EUROPEAN JOURNAL OF PHARMACEUTICS AND BIOPHARMACEUTICS","0939-6411","1873-3441","PHARMACOLOGY & PHARMACY","('SCIE',)","18,796","4.4","Q1","1.41","28.61" +"MINERALIUM DEPOSITA","0026-4598","1432-1866","('GEOCHEMISTRY & GEOPHYSICS', 'MINERALOGY')","('SCIE', 'SCIE')","7,038","4.4","('Q1', 'Q1')","1.41","35.15" +"INTERNATIONAL JOURNAL OF DRUG POLICY","0955-3959","1873-4758","SUBSTANCE ABUSE","('SSCI',)","9,854","4.4","Q1","1.40","34.57" +"ACCOUNTING REVIEW","0001-4826","1558-7967","BUSINESS, FINANCE","('SSCI',)","19,371","4.4","Q1","1.39","0.00" +"HUMAN DEVELOPMENT","0018-716X","1423-0054","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","1,940","4.4","Q1","1.39","17.46" +"KOREAN JOURNAL OF RADIOLOGY","1229-6929","2005-8330","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","5,172","4.4","Q1","1.39","0.00" +"Annals of Clinical and Translational Neurology","2328-9503","2328-9503","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","6,720","4.4","('Q1', 'Q1')","1.36","71.86" +"BMC BIOLOGY","","1741-7007","BIOLOGY","('SCIE',)","10,597","4.4","Q1","1.34","99.88" +"JOURNAL OF NEUROSCIENCE","0270-6474","1529-2401","NEUROSCIENCES","('SCIE',)","143,793","4.4","Q1","1.33","73.45" +"Cryosphere","1994-0416","1994-0424","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","12,032","4.4","('Q1', 'Q1')","1.32","99.52" +"Journal of Advances in Modeling Earth Systems","","1942-2466","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","10,716","4.4","Q1","1.32","79.15" +"THEORETICAL AND APPLIED GENETICS","0040-5752","1432-2242","('AGRONOMY', 'GENETICS & HEREDITY', 'HORTICULTURE', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","22,514","4.4","('Q1', 'Q1', 'Q1', 'Q1')","1.31","29.91" +"ARTHRITIS RESEARCH & THERAPY","1478-6354","1478-6362","RHEUMATOLOGY","('SCIE',)","20,324","4.4","Q1","1.29","100.00" +"Engineering Failure Analysis","1350-6307","1873-1961","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING')","('SCIE', 'SCIE')","22,023","4.4","('Q1', 'Q1')","1.27","6.22" +"INORGANIC CHEMISTRY COMMUNICATIONS","1387-7003","1879-0259","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","16,029","4.4","Q1","1.26","1.46" +"BIOSYSTEMS ENGINEERING","1537-5110","1537-5129","('AGRICULTURAL ENGINEERING', 'AGRICULTURE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","12,890","4.4","('Q1', 'Q1')","1.23","20.09" +"PHARMACOECONOMICS","1170-7690","1179-2027","('ECONOMICS', 'HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PHARMACOLOGY & PHARMACY')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","6,576","4.4","('Q1', 'Q1', 'Q1', 'Q1')","1.23","63.51" +"ECOLOGY","0012-9658","1939-9170","ECOLOGY","('SCIE',)","58,920","4.4","Q1","1.22","31.52" +"Computer Networks","1389-1286","1872-7069","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","13,423","4.4","('Q1', 'Q1', 'Q1', 'Q1')","1.18","17.72" +"Frontiers in Pharmacology","","1663-9812","PHARMACOLOGY & PHARMACY","('SCIE',)","87,144","4.4","Q1","1.15","99.61" +"Ad Hoc Networks","1570-8705","1570-8713","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","5,525","4.4","('Q1', 'Q1')","1.14","9.93" +"STRUCTURE","0969-2126","1878-4186","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CELL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","14,144","4.4","('Q2', 'Q1', 'Q2')","1.14","79.13" +"DRUG METABOLISM AND DISPOSITION","0090-9556","1521-009X","PHARMACOLOGY & PHARMACY","('SCIE',)","12,682","4.4","Q1","1.13","18.86" +"EJNMMI Radiopharmacy and Chemistry","","2365-421X","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, MEDICINAL', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('ESCI', 'ESCI', 'ESCI')","755","4.4","('Q1', 'Q2', 'Q1')","1.13","100.00" +"Results in Physics","2211-3797","2211-3797","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","23,286","4.4","('Q2', 'Q1')","1.13","97.26" +"EUROPEAN JOURNAL OF MECHANICS A-SOLIDS","0997-7538","1873-7285","MECHANICS","('SCIE',)","7,805","4.4","Q1","1.12","20.43" +"Service Business","1862-8516","1862-8508","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","1,295","4.4","('Q2', 'Q2')","1.11","24.35" +"Probiotics and Antimicrobial Proteins","1867-1306","1867-1314","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","4,642","4.4","('Q1', 'Q2')","1.08","13.26" +"Railway Engineering Science","2662-4745","2662-4753","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","488","4.4","Q2","1.08","98.89" +"ENVIRONMENTAL TOXICOLOGY","1520-4081","1522-7278","('ENVIRONMENTAL SCIENCES', 'TOXICOLOGY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","7,444","4.4","('Q2', 'Q1', 'Q1')","1.07","3.51" +"IEEE TRANSACTIONS ON BIOMEDICAL ENGINEERING","0018-9294","1558-2531","ENGINEERING, BIOMEDICAL","('SCIE',)","27,837","4.4","Q2","1.06","21.48" +"Enterprise Information Systems","1751-7575","1751-7583","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","1,873","4.4","Q1","1.04","10.14" +"REGIONAL STUDIES","0034-3404","1360-0591","('ECONOMICS', 'ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","10,812","4.4","('Q1', 'Q1', 'Q1', 'Q1')","1.04","37.06" +"Synthetic and Systems Biotechnology","2405-805X","2405-805X","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","1,311","4.4","Q1","1.04","90.20" +"Advanced Quantum Technologies","","2511-9044","('OPTICS', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","2,049","4.4","('Q1', 'Q2')","1.03","31.86" +"NPJ Microgravity","","2373-8065","MULTIDISCIPLINARY SCIENCES","('SCIE',)","1,394","4.4","Q1","1.03","99.50" +"Science China-Technological Sciences","1674-7321","1869-1900","('ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","8,679","4.4","('Q1', 'Q2')","1.03","0.13" +"COMPUTERS & STRUCTURES","0045-7949","1879-2243","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","16,036","4.4","('Q1', 'Q1')","1.01","21.34" +"Archives of Civil and Mechanical Engineering","1644-9665","2083-3318","('ENGINEERING, CIVIL', 'ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","5,317","4.4","('Q1', 'Q1', 'Q2')","1.00","22.62" +"BIOGERONTOLOGY","1389-5729","1573-6768","GERIATRICS & GERONTOLOGY","('SCIE',)","3,224","4.4","Q1","1.00","18.63" +"Preventing Chronic Disease","1545-1151","1545-1151","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","6,020","4.4","Q1","1.00","96.85" +"ANNALS OF OPERATIONS RESEARCH","0254-5330","1572-9338","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","17,817","4.4","Q1","0.99","21.14" +"EUROPEAN JOURNAL OF CLINICAL INVESTIGATION","0014-2972","1365-2362","('MEDICINE, GENERAL & INTERNAL', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","8,415","4.4","('Q1', 'Q2')","0.98","28.71" +"Computational and Structural Biotechnology Journal","2001-0370","2001-0370","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","10,553","4.4","Q2","0.96","85.97" +"PRESLIA","0032-7786","2570-950X","PLANT SCIENCES","('SCIE',)","1,171","4.4","Q1","0.96","86.05" +"Drones","","2504-446X","REMOTE SENSING","('SCIE',)","4,649","4.4","Q1","0.95","99.92" +"High Voltage","2397-7264","2397-7264","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","2,283","4.4","Q1","0.95","80.65" +"ADVANCED SYNTHESIS & CATALYSIS","1615-4150","1615-4169","('CHEMISTRY, APPLIED', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","24,510","4.4","('Q2', 'Q1')","0.94","15.67" +"Nutrition Journal","","1475-2891","NUTRITION & DIETETICS","('SCIE',)","7,063","4.4","Q1","0.94","100.00" +"Weather and Climate Dynamics","","2698-4016","METEOROLOGY & ATMOSPHERIC SCIENCES","('ESCI',)","801","4.4","Q1","0.94","99.44" +"Geo-Spatial Information Science","1009-5020","1993-5153","REMOTE SENSING","('SCIE',)","1,582","4.4","Q1","0.93","96.92" +"Wiley Interdisciplinary Reviews-Computational Statistics","1939-0068","1939-0068","STATISTICS & PROBABILITY","('SCIE',)","4,132","4.4","Q1","0.93","30.67" +"TRANSPORTATION SCIENCE","0041-1655","","('OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SSCI', 'SCIE')","7,704","4.4","('Q1', 'Q1', 'Q2')","0.92","0.00" +"Journal of Hospitality & Tourism Research","1096-3480","1557-7554","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","3,939","4.4","Q1","0.91","5.08" +"ACS Applied Polymer Materials","2637-6105","2637-6105","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","13,475","4.4","('Q2', 'Q1')","0.90","7.93" +"FASEB JOURNAL","0892-6638","1530-6860","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","50,666","4.4","('Q2', 'Q1', 'Q2')","0.90","30.82" +"Journal of Consumer Behaviour","1472-0817","1479-1838","BUSINESS","('SSCI',)","4,154","4.4","Q2","0.90","21.47" +"Journal of Environmental Planning and Management","0964-0568","1360-0559","('DEVELOPMENT STUDIES', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI')","5,338","4.4","('Q1', 'Q1')","0.90","18.35" +"NEUROCHEMISTRY INTERNATIONAL","0197-0186","1872-9754","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","10,286","4.4","('Q2', 'Q1')","0.90","19.87" +"VIRTUAL REALITY","1359-4338","1434-9957","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,081","4.4","('Q1', 'Q1', 'Q1')","0.87","46.41" +"CANCER BIOLOGY & THERAPY","1538-4047","1555-8576","ONCOLOGY","('SCIE',)","7,673","4.4","Q2","0.86","79.27" +"Targeted Oncology","1776-2596","1776-260X","ONCOLOGY","('SCIE',)","2,161","4.4","Q2","0.85","51.26" +"JOURNAL OF PHYSICAL AND CHEMICAL REFERENCE DATA","0047-2689","1529-7845","('CHEMISTRY, MULTIDISCIPLINARY', 'CHEMISTRY, PHYSICAL', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","7,597","4.4","('Q2', 'Q2', 'Q1')","0.84","22.22" +"Endoscopic Ultrasound","2303-9027","2226-7190","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","1,431","4.4","Q1","0.83","31.62" +"PATHOLOGICA","0031-2983","1591-951X","PATHOLOGY","('ESCI',)","882","4.4","Q1","0.82","100.00" +"PLANT DISEASE","0191-2917","1943-7692","PLANT SCIENCES","('SCIE',)","25,074","4.4","Q1","0.80","37.78" +"Progress in Biomaterials","2194-0509","2194-0517","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","1,323","4.4","('Q2', 'Q2')","0.77","7.58" +"GLOBAL CHALLENGES","","2056-6646","MULTIDISCIPLINARY SCIENCES","('SCIE',)","2,211","4.4","Q1","0.76","76.47" +"Journal of Inflammation-London","1476-9255","1476-9255","IMMUNOLOGY","('SCIE',)","1,907","4.4","Q2","0.76","100.00" +"Tissue Engineering and Regenerative Medicine","1738-2696","2212-5469","('CELL & TISSUE ENGINEERING', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","2,045","4.4","('Q2', 'Q2')","0.76","14.34" +"Energy for Sustainable Development","0973-0826","2352-4669","('ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","4,991","4.4","('Q2', 'Q2')","0.75","20.34" +"Nanomaterials","","2079-4991","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","70,315","4.4","('Q2', 'Q2', 'Q2', 'Q2')","0.74","99.44" +"Journal of Marketing Theory and Practice","1069-6679","1944-7175","BUSINESS","('ESCI',)","4,170","4.4","Q2","0.73","3.33" +"MACROMOLECULAR BIOSCIENCE","1616-5187","1616-5195","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MATERIALS SCIENCE, BIOMATERIALS', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","9,055","4.4","('Q2', 'Q2', 'Q1')","0.73","24.66" +"Progress in Additive Manufacturing","2363-9512","2363-9520","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","1,880","4.4","('Q2', 'Q2')","0.72","35.86" +"CELLULAR SIGNALLING","0898-6568","1873-3913","CELL BIOLOGY","('SCIE',)","13,768","4.4","Q2","0.69","19.70" +"BIOCHEMICAL JOURNAL","0264-6021","1470-8728","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","39,718","4.4","Q2","0.66","81.70" +"Catalysis Science & Technology","2044-4753","2044-4761","CHEMISTRY, PHYSICAL","('SCIE',)","30,003","4.4","Q2","0.64","14.71" +"Intelligent Medicine","2667-1026","2667-1026","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MEDICAL INFORMATICS')","('ESCI', 'ESCI')","256","4.4","('Q1', 'Q2')","0.60","100.00" +"MEDIATORS OF INFLAMMATION","0962-9351","1466-1861","('CELL BIOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","16,441","4.4","('Q2', 'Q2')","0.59","99.48" +"PROCEEDINGS OF THE JAPAN ACADEMY SERIES B-PHYSICAL AND BIOLOGICAL SCIENCES","0386-2208","1349-2896","MULTIDISCIPLINARY SCIENCES","('SCIE',)","2,404","4.4","Q1","0.59","98.73" +"Journal of Computers in Education","2197-9987","2197-9995","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,014","4.3","Q1","2.42","22.76" +"Human Behavior and Emerging Technologies","","2578-1863","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","1,757","4.3","Q1","2.10","88.80" +"JOURNAL OF PEST SCIENCE","1612-4758","1612-4766","ENTOMOLOGY","('SCIE',)","5,671","4.3","Q1","1.98","29.41" +"WILDLIFE MONOGRAPHS","0084-0173","1938-5455","('ECOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","676","4.3","('Q1', 'Q1')","1.95","28.57" +"JOURNAL OF PROSTHETIC DENTISTRY","0022-3913","1097-6841","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","19,174","4.3","Q1","1.90","6.65" +"JOURNAL OF DEMOCRACY","1045-5736","1086-3214","POLITICAL SCIENCE","('SSCI',)","4,606","4.3","Q1","1.88","0.70" +"Diabetes & Metabolic Syndrome-Clinical Research & Reviews","1871-4021","1878-0334","ENDOCRINOLOGY & METABOLISM","('ESCI',)","8,464","4.3","Q1","1.84","4.76" +"SPECTROCHIMICA ACTA PART A-MOLECULAR AND BIOMOLECULAR SPECTROSCOPY","1386-1425","1873-3557","SPECTROSCOPY","('SCIE',)","48,159","4.3","Q1","1.79","4.67" +"POLICY AND POLITICS","0305-5736","1470-8442","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","1,665","4.3","('Q1', 'Q1')","1.77","21.28" +"PUBLIC ADMINISTRATION","0033-3298","1467-9299","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","5,054","4.3","('Q1', 'Q1')","1.75","43.30" +"Journal of Behavioral and Experimental Finance","2214-6350","2214-6369","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","2,890","4.3","('Q1', 'Q1')","1.74","18.68" +"Comparative Migration Studies","","2214-594X","DEMOGRAPHY","('SSCI',)","1,301","4.3","Q1","1.70","100.00" +"Mathematical Programming Computation","1867-2949","1867-2957","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","1,695","4.3","('Q1', 'Q1', 'Q1')","1.64","50.00" +"COMPREHENSIVE PSYCHIATRY","0010-440X","1532-8384","PSYCHIATRY","('SCIE', 'SSCI')","7,939","4.3","Q1","1.51","98.61" +"EFORT Open Reviews","2396-7544","2058-5241","ORTHOPEDICS","('SCIE',)","3,079","4.3","Q1","1.50","85.95" +"INORGANIC CHEMISTRY","0020-1669","1520-510X","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","97,512","4.3","Q1","1.50","7.49" +"JOURNAL OF URBAN HEALTH-BULLETIN OF THE NEW YORK ACADEMY OF MEDICINE","1099-3460","1468-2869","('MEDICINE, GENERAL & INTERNAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","5,513","4.3","('Q1', 'Q1')","1.50","32.34" +"ARCHIVES OF DISEASE IN CHILDHOOD","0003-9888","1468-2044","PEDIATRICS","('SCIE',)","14,647","4.3","Q1","1.49","27.21" +"Social Psychological and Personality Science","1948-5506","1948-5514","PSYCHOLOGY, SOCIAL","('SSCI',)","6,806","4.3","Q1","1.49","36.67" +"INTERNATIONAL JOURNAL OF GEOGRAPHICAL INFORMATION SCIENCE","1365-8816","1362-3087","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'GEOGRAPHY', 'GEOGRAPHY, PHYSICAL', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SCIE', 'SSCI', 'SCIE', 'SSCI')","7,985","4.3","('Q1', 'Q1', 'Q1', 'Q1')","1.47","19.52" +"AMERICAN JOURNAL OF PREVENTIVE MEDICINE","0749-3797","1873-2607","('MEDICINE, GENERAL & INTERNAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE, SSCI')","24,323","4.3","('Q1', 'Q1')","1.41","28.33" +"COGNITIVE BEHAVIOUR THERAPY","1650-6073","1651-2316","PSYCHOLOGY, CLINICAL","('SSCI',)","2,348","4.3","Q1","1.41","34.02" +"AMERICAN JOURNAL OF NEPHROLOGY","0250-8095","1421-9670","UROLOGY & NEPHROLOGY","('SCIE',)","5,664","4.3","Q1","1.40","30.31" +"JOURNALS OF GERONTOLOGY SERIES A-BIOLOGICAL SCIENCES AND MEDICAL SCIENCES","1079-5006","1758-535X","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY')","('SCIE', 'SSCI')","25,348","4.3","('Q1', 'Q1')","1.40","23.22" +"EUROPEAN JOURNAL OF PHARMACEUTICAL SCIENCES","0928-0987","1879-0720","PHARMACOLOGY & PHARMACY","('SCIE',)","17,502","4.3","Q1","1.38","64.97" +"PHYSICS LETTERS B","0370-2693","1873-2445","('ASTRONOMY & ASTROPHYSICS', 'PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE', 'SCIE')","66,135","4.3","('Q1', 'Q1', 'Q1')","1.38","95.20" +"IEEE JOURNAL OF SELECTED TOPICS IN QUANTUM ELECTRONICS","1077-260X","1558-4542","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'PHYSICS, APPLIED', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","11,090","4.3","('Q1', 'Q1', 'Q2', 'Q2')","1.37","21.26" +"APPLIED OCEAN RESEARCH","0141-1187","1879-1549","('ENGINEERING, OCEAN', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","10,641","4.3","('Q1', 'Q1')","1.34","13.45" +"BMC PLANT BIOLOGY","1471-2229","1471-2229","PLANT SCIENCES","('SCIE',)","26,240","4.3","Q1","1.34","99.84" +"JOURNAL OF GENERAL INTERNAL MEDICINE","0884-8734","1525-1497","('HEALTH CARE SCIENCES & SERVICES', 'MEDICINE, GENERAL & INTERNAL')","('SCIE', 'SCIE')","29,770","4.3","('Q1', 'Q1')","1.34","22.08" +"JOURNAL OF NON-EQUILIBRIUM THERMODYNAMICS","0340-0204","1437-4358","('MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","968","4.3","('Q1', 'Q1')","1.33","14.85" +"BIOLOGICAL RESEARCH","0716-9760","0717-6287","BIOLOGY","('SCIE',)","3,285","4.3","Q1","1.31","99.30" +"JOURNAL OF MONETARY ECONOMICS","0304-3932","1873-1295","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","11,211","4.3","('Q1', 'Q1')","1.31","15.94" +"JOURNAL OF THE AMERICAN GERIATRICS SOCIETY","0002-8614","1532-5415","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY')","('SCIE', 'SSCI')","35,667","4.3","('Q1', 'Q1')","1.31","16.48" +"International Journal of Transportation Science and Technology","2046-0430","2046-0449","('TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","1,162","4.3","('Q2', 'Q2')","1.30","92.55" +"Journal of Geographical Sciences","1009-637X","1861-9568","GEOGRAPHY, PHYSICAL","('SCIE',)","6,713","4.3","Q1","1.30","0.28" +"Academy of Management Discoveries","","2168-1007","MANAGEMENT","('SSCI',)","1,141","4.3","Q2","1.29","0.00" +"JOURNAL OF SOUND AND VIBRATION","0022-460X","1095-8568","('ACOUSTICS', 'ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","43,896","4.3","('Q1', 'Q1', 'Q1')","1.27","20.11" +"INTERNATIONAL JOURNAL OF ENERGY RESEARCH","0363-907X","1099-114X","('ENERGY & FUELS', 'NUCLEAR SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","25,840","4.3","('Q2', 'Q1')","1.24","76.29" +"Neurobiology of Stress","2352-2895","2352-2895","NEUROSCIENCES","('SCIE',)","2,767","4.3","Q1","1.23","97.09" +"Preventive Medicine","0091-7435","1096-0260","('MEDICINE, GENERAL & INTERNAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","18,889","4.3","('Q1', 'Q1')","1.20","34.27" +"International Small Business Journal-Researching Entrepreneurship","0266-2426","1741-2870","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","4,422","4.3","('Q2', 'Q2')","1.15","51.04" +"IEEE TRANSACTIONS ON CONSUMER ELECTRONICS","0098-3063","1558-4127","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","3,534","4.3","('Q1', 'Q2')","1.13","6.99" +"Asia Pacific Journal of Tourism Research","1094-1665","1741-6507","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","3,446","4.3","Q1","1.12","5.53" +"ECOLOGICAL APPLICATIONS","1051-0761","1939-5582","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","22,067","4.3","('Q1', 'Q2')","1.12","36.54" +"Journal of Nutrition Health & Aging","1279-7707","1760-4788","('GERIATRICS & GERONTOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","8,053","4.3","('Q1', 'Q1')","1.11","88.86" +"IEEE Intelligent Transportation Systems Magazine","1939-1390","1941-1197","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","2,459","4.3","('Q1', 'Q2')","1.10","1.00" +"Pharmaceuticals","","1424-8247","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","21,199","4.3","('Q2', 'Q1')","1.08","99.70" +"Antibiotics-Basel","2079-6382","2079-6382","('INFECTIOUS DISEASES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","24,141","4.3","('Q1', 'Q1')","1.06","99.63" +"International Journal of Accounting and Information Management","1834-7649","1758-9037","MANAGEMENT","('ESCI',)","1,121","4.3","Q2","1.06","2.75" +"MAMMAL REVIEW","0305-1838","1365-2907","('ECOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","2,853","4.3","('Q1', 'Q1')","1.06","36.17" +"PEDIATRIC ALLERGY AND IMMUNOLOGY","0905-6157","1399-3038","('ALLERGY', 'IMMUNOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE', 'SCIE')","5,895","4.3","('Q2', 'Q2', 'Q1')","1.06","29.48" +"EARTHQUAKE ENGINEERING & STRUCTURAL DYNAMICS","0098-8847","1096-9845","('ENGINEERING, CIVIL', 'ENGINEERING, GEOLOGICAL')","('SCIE', 'SCIE')","16,088","4.3","('Q1', 'Q1')","1.05","24.29" +"Extreme Mechanics Letters","2352-4316","2352-4316","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE')","5,718","4.3","('Q2', 'Q1')","1.05","31.13" +"Cognitive Computation","1866-9956","1866-9964","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'NEUROSCIENCES')","('SCIE', 'SCIE')","3,255","4.3","('Q2', 'Q1')","1.04","20.83" +"PHILOSOPHICAL TRANSACTIONS OF THE ROYAL SOCIETY A-MATHEMATICAL PHYSICAL AND ENGINEERING SCIENCES","1364-503X","1471-2962","MULTIDISCIPLINARY SCIENCES","('SCIE',)","25,671","4.3","Q1","1.04","37.06" +"IEEE SENSORS JOURNAL","1530-437X","1558-1748","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","55,795","4.3","('Q1', 'Q1', 'Q2')","1.02","5.71" +"Microbial Cell Factories","","1475-2859","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","12,658","4.3","Q1","1.02","99.87" +"China CDC Weekly","2096-7071","2097-3101","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","2,069","4.3","Q1","1.01","82.32" +"GeoHealth","2471-1403","2471-1403","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","1,436","4.3","('Q2', 'Q1')","1.01","78.33" +"Gut Pathogens","1757-4749","1757-4749","('GASTROENTEROLOGY & HEPATOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","2,424","4.3","('Q1', 'Q2')","1.01","100.00" +"ENVIRONMENTAL MICROBIOLOGY","1462-2912","1462-2920","MICROBIOLOGY","('SCIE',)","28,511","4.3","Q2","1.00","36.32" +"ARCHIV DER PHARMAZIE","0365-6233","1521-4184","('CHEMISTRY, MEDICINAL', 'CHEMISTRY, MULTIDISCIPLINARY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","4,935","4.3","('Q2', 'Q2', 'Q1')","0.99","17.00" +"OBSTETRICAL & GYNECOLOGICAL SURVEY","0029-7828","1533-9866","OBSTETRICS & GYNECOLOGY","('SCIE',)","2,594","4.3","Q1","0.95","2.70" +"Civil Engineering Journal-Tehran","2676-6957","2476-3055","ENGINEERING, CIVIL","('ESCI',)","2,767","4.3","Q1","0.94","99.66" +"JOURNAL OF DRUG TARGETING","1061-186X","1029-2330","PHARMACOLOGY & PHARMACY","('SCIE',)","5,066","4.3","Q1","0.94","2.21" +"HYPERTENSION RESEARCH","0916-9636","1348-4214","PERIPHERAL VASCULAR DISEASE","('SCIE',)","7,493","4.3","Q1","0.93","15.53" +"American Journal of Preventive Cardiology","2666-6677","2666-6677","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","786","4.3","Q1","0.92","91.91" +"ERJ Open Research","","2312-0541","RESPIRATORY SYSTEM","('SCIE',)","4,588","4.3","Q1","0.90","98.79" +"HELICOBACTER","1083-4389","1523-5378","('GASTROENTEROLOGY & HEPATOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","4,033","4.3","('Q1', 'Q2')","0.90","15.25" +"INDOOR AIR","0905-6947","1600-0668","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, ENVIRONMENTAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE', 'SCIE')","7,895","4.3","('Q1', 'Q2', 'Q1')","0.90","79.47" +"ACS Applied Electronic Materials","","2637-6113","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","10,033","4.3","('Q1', 'Q2')","0.89","6.68" +"ROBOTICS AND AUTONOMOUS SYSTEMS","0921-8890","1872-793X","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ROBOTICS')","('SCIE', 'SCIE', 'SCIE')","9,383","4.3","('Q1', 'Q2', 'Q2')","0.88","26.39" +"COMPUTER VISION AND IMAGE UNDERSTANDING","1077-3142","1090-235X","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","6,761","4.3","('Q2', 'Q1')","0.87","18.18" +"JOURNAL OF CELLULAR AND MOLECULAR MEDICINE","1582-1838","1582-4934","('CELL BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","29,006","4.3","('Q2', 'Q2')","0.87","65.76" +"DIAMOND AND RELATED MATERIALS","0925-9635","1879-0062","('MATERIALS SCIENCE, COATINGS & FILMS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","16,685","4.3","('Q2', 'Q2', 'Q2', 'Q2')","0.86","4.97" +"Bioresources and Bioprocessing","","2197-4365","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","3,053","4.3","Q1","0.85","99.72" +"MATERIALS CHEMISTRY AND PHYSICS","0254-0584","1879-3312","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","49,686","4.3","Q2","0.85","4.17" +"INTERMETALLICS","0966-9795","1879-0216","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE', 'SCIE')","15,668","4.3","('Q2', 'Q2', 'Q1')","0.84","8.00" +"Environmental Science-Processes & Impacts","2050-7887","2050-7895","('CHEMISTRY, ANALYTICAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","7,450","4.3","('Q1', 'Q2')","0.83","27.29" +"Frontiers in Bioengineering and Biotechnology","2296-4185","2296-4185","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","33,446","4.3","('Q1', 'Q2')","0.83","99.42" +"Regional Sustainability","2097-0129","2666-660X","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('ESCI', 'ESCI')","349","4.3","('Q2', 'Q1')","0.83","97.85" +"CHEMICAL COMMUNICATIONS","1359-7345","1364-548X","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","171,382","4.3","Q2","0.81","14.81" +"Influenza and Other Respiratory Viruses","1750-2640","1750-2659","('INFECTIOUS DISEASES', 'VIROLOGY')","('SCIE', 'SCIE')","3,319","4.3","('Q1', 'Q2')","0.81","72.70" +"Therapeutic Advances in Medical Oncology","1758-8340","1758-8359","ONCOLOGY","('SCIE',)","4,724","4.3","Q2","0.81","89.69" +"Advances in Nano Research","2287-237X","2287-2388","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","1,670","4.3","('Q2', 'Q2')","0.79","0.00" +"Journal of Civil Engineering and Management","1392-3730","1822-3605","ENGINEERING, CIVIL","('SCIE',)","2,735","4.3","Q1","0.79","99.29" +"JOURNAL OF PHYSICS AND CHEMISTRY OF SOLIDS","0022-3697","1879-2553","('CHEMISTRY, MULTIDISCIPLINARY', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","23,108","4.3","('Q2', 'Q2')","0.79","4.55" +"Cell Reports Methods","2667-2375","2667-2375","('BIOCHEMICAL RESEARCH METHODS', 'CELL BIOLOGY')","('ESCI', 'ESCI')","1,078","4.3","('Q1', 'Q2')","0.78","97.98" +"WORLD JOURNAL OF GASTROENTEROLOGY","1007-9327","2219-2840","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","49,945","4.3","Q1","0.78","97.89" +"MACHINE LEARNING","0885-6125","1573-0565","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","30,632","4.3","Q2","0.77","46.75" +"JOURNAL OF MACHINE LEARNING RESEARCH","1532-4435","","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE')","('SCIE', 'SCIE')","47,251","4.3","('Q1', 'Q2')","0.76","0.00" +"Water Reuse","2709-6092","2709-6106","('ENGINEERING, ENVIRONMENTAL', 'WATER RESOURCES')","('SCIE', 'SCIE')","392","4.3","('Q2', 'Q1')","0.76","100.00" +"VIROLOGICA SINICA","1674-0769","1995-820X","VIROLOGY","('SCIE',)","2,460","4.3","Q2","0.75","71.91" +"World Journal of Traditional Chinese Medicine","2311-8571","2589-2894","('INTEGRATIVE & COMPLEMENTARY MEDICINE', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'PHARMACOLOGY & PHARMACY')","('ESCI', 'ESCI', 'ESCI')","633","4.3","('Q1', 'Q2', 'Q1')","0.75","78.67" +"Advanced Materials Interfaces","2196-7350","2196-7350","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","22,584","4.3","('Q2', 'Q2')","0.74","41.55" +"BMC Chemistry","","2661-801X","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","1,862","4.3","Q2","0.71","100.00" +"SEMINARS IN LIVER DISEASE","0272-8087","1098-8971","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","4,004","4.3","Q1","0.67","13.82" +"Immune Network","1598-2629","2092-6685","IMMUNOLOGY","('SCIE',)","2,124","4.3","Q2","0.66","98.54" +"ANIMAL HEALTH RESEARCH REVIEWS","1466-2523","1475-2654","VETERINARY SCIENCES","('SCIE',)","1,407","4.3","Q1","0.64","46.67" +"CELL CALCIUM","0143-4160","1532-1991","CELL BIOLOGY","('SCIE',)","5,924","4.3","Q2","0.61","38.46" +"Frontiers of Chemical Science and Engineering","2095-0179","2095-0187","ENGINEERING, CHEMICAL","('SCIE',)","3,248","4.3","Q2","0.55","5.62" +"Journal of Teaching and Learning","1492-1154","1911-8279","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","374","4.3","Q1","0.51","100.00" +"ACS Engineering Au","","2694-2488","ENGINEERING, CHEMICAL","('ESCI',)","270","4.3","Q2","0.50","74.77" +"INTERNATIONAL REVIEWS OF IMMUNOLOGY","0883-0185","1563-5244","IMMUNOLOGY","('SCIE',)","1,958","4.3","Q2","0.47","5.00" +"ENVIRONMENTAL REVIEWS","1208-6053","1181-8700","ENVIRONMENTAL SCIENCES","('SCIE',)","3,336","4.3","Q2","0.38","29.46" +"Transactions of the Association for Computational Linguistics","","2307-387X","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SCIE', 'AHCI', 'SSCI')","3,505","4.2","('Q2', 'N/A', 'Q1')","5.98","97.83" +"JOURNAL OF ARCHAEOLOGICAL RESEARCH","1059-0161","1573-7756","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","1,058","4.2","('Q1', 'N/A')","3.20","38.10" +"STUDIES IN SECOND LANGUAGE ACQUISITION","0272-2631","1470-1545","LINGUISTICS","('SSCI',)","3,814","4.2","Q1","2.79","50.26" +"Journal of New Approaches in Educational Research","2254-7339","2254-7339","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","518","4.2","Q1","2.34","100.00" +"Assessing Writing","1075-2935","1873-5916","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('SSCI', 'SSCI')","1,599","4.2","('Q1', 'Q1')","2.32","10.24" +"BIOLOGY OF SPORT","0860-021X","2083-1862","SPORT SCIENCES","('SCIE',)","2,412","4.2","Q1","2.13","0.00" +"CLINICAL ORTHOPAEDICS AND RELATED RESEARCH","0009-921X","1528-1132","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","37,997","4.2","('Q1', 'Q1')","2.11","8.57" +"COMPARATIVE POLITICAL STUDIES","0010-4140","1552-3829","POLITICAL SCIENCE","('SSCI',)","7,137","4.2","Q1","2.11","30.36" +"Comprehensive Physiology","2040-4603","2040-4603","PHYSIOLOGY","('SCIE',)","7,903","4.2","Q1","2.00","0.81" +"JOURNAL OF PERIODONTOLOGY","0022-3492","1943-3670","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","18,340","4.2","Q1","1.97","24.57" +"International Journal of Computer-Supported Collaborative Learning","1556-1607","1556-1615","('EDUCATION & EDUCATIONAL RESEARCH', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SSCI', 'SSCI')","1,292","4.2","('Q1', 'Q1')","1.92","45.16" +"AMERICAN JOURNAL OF SPORTS MEDICINE","0363-5465","1552-3365","('ORTHOPEDICS', 'SPORT SCIENCES')","('SCIE', 'SCIE')","36,856","4.2","('Q1', 'Q1')","1.83","7.37" +"Information Communication & Society","1369-118X","1468-4462","('COMMUNICATION', 'SOCIOLOGY')","('SSCI', 'SSCI')","8,179","4.2","('Q1', 'Q1')","1.74","34.03" +"PSYCHIATRY RESEARCH","0165-1781","1872-7123","PSYCHIATRY","('SCIE', 'SSCI')","36,654","4.2","Q1","1.72","25.14" +"Annual Review of Resource Economics","1941-1340","1941-1359","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SSCI', 'SSCI')","1,807","4.2","('Q1', 'Q1', 'Q1')","1.59","40.26" +"Review of Public Personnel Administration","0734-371X","1552-759X","PUBLIC ADMINISTRATION","('SSCI',)","1,781","4.2","Q1","1.59","21.50" +"EUROPEAN JOURNAL OF ANAESTHESIOLOGY","0265-0215","1365-2346","ANESTHESIOLOGY","('SCIE',)","5,762","4.2","Q1","1.55","17.19" +"JOURNAL OF CARDIOVASCULAR MAGNETIC RESONANCE","1097-6647","1532-429X","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","6,296","4.2","('Q1', 'Q1')","1.53","100.00" +"Pesticide Biochemistry and Physiology","0048-3575","1095-9939","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENTOMOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","9,849","4.2","('Q2', 'Q1', 'Q1')","1.53","7.32" +"BEHAVIOUR RESEARCH AND THERAPY","0005-7967","1873-622X","PSYCHOLOGY, CLINICAL","('SSCI',)","19,805","4.2","Q1","1.50","33.33" +"Journal of Integrative Medicine-JIM","2095-4964","2095-4964","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","1,678","4.2","Q1","1.44","13.22" +"Journal of Nursing Regulation","2155-8256","2155-8264","NURSING","('SCIE', 'SSCI')","721","4.2","Q1","1.44","0.00" +"Cyberpsychology Behavior and Social Networking","2152-2715","2152-2723","PSYCHOLOGY, SOCIAL","('SSCI',)","7,212","4.2","Q1","1.42","6.14" +"ECONOMIC MODELLING","0264-9993","1873-6122","ECONOMICS","('SSCI',)","14,930","4.2","Q1","1.42","15.97" +"GEOTECHNIQUE","0016-8505","1751-7656","ENGINEERING, GEOLOGICAL","('SCIE',)","20,224","4.2","Q1","1.42","11.98" +"ENGINEERING ANALYSIS WITH BOUNDARY ELEMENTS","0955-7997","1873-197X","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","8,105","4.2","('Q1', 'Q1')","1.41","4.45" +"Korean Journal of Anesthesiology","2005-6419","2005-7563","ANESTHESIOLOGY","('SCIE',)","3,534","4.2","Q1","1.40","100.00" +"Journal of the American Medical Directors Association","1525-8610","1538-9375","GERIATRICS & GERONTOLOGY","('SCIE',)","14,954","4.2","Q2","1.39","25.35" +"People and Nature","","2575-8314","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","2,265","4.2","('Q1', 'Q1')","1.39","81.40" +"AMERICAN JOURNAL OF AGRICULTURAL ECONOMICS","0002-9092","1467-8276","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('SCIE', 'SSCI')","8,882","4.2","('Q1', 'Q1')","1.38","36.80" +"AMERICAN JOURNAL OF PHYSIOLOGY-ENDOCRINOLOGY AND METABOLISM","0193-1849","1522-1555","('ENDOCRINOLOGY & METABOLISM', 'PHYSIOLOGY')","('SCIE', 'SCIE')","18,430","4.2","('Q1', 'Q1')","1.36","11.17" +"Journal of Addiction Medicine","1932-0620","1935-3227","SUBSTANCE ABUSE","('SCIE',)","3,328","4.2","Q1","1.35","8.72" +"European Journal of Pharmacology","0014-2999","1879-0712","PHARMACOLOGY & PHARMACY","('SCIE',)","37,158","4.2","Q1","1.32","14.30" +"IEEE TRANSACTIONS ON INDUSTRY APPLICATIONS","0093-9994","1939-9367","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","31,830","4.2","('Q2', 'Q1')","1.31","4.24" +"METHODS","1046-2023","1095-9130","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY')","('SCIE', 'SCIE')","23,543","4.2","('Q1', 'Q2')","1.31","25.00" +"Obesity","1930-7381","1930-739X","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","20,291","4.2","('Q1', 'Q1')","1.30","30.01" +"JOURNAL OF CLINICAL CHILD AND ADOLESCENT PSYCHOLOGY","1537-4416","1537-4424","('PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","6,644","4.2","('Q1', 'Q1')","1.27","7.35" +"Journal of Current Issues and Research In Advertising","1064-1734","2164-7313","('BUSINESS', 'COMMUNICATION')","('ESCI', 'ESCI')","625","4.2","('Q2', 'Q1')","1.23","7.89" +"European Journal of Psychotraumatology","2000-8198","2000-8066","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","5,412","4.2","('Q1', 'Q1')","1.22","99.23" +"Journal of Field Robotics","1556-4959","1556-4967","ROBOTICS","('SCIE',)","4,950","4.2","Q2","1.20","22.18" +"Reproductive Biology and Endocrinology","","1477-7827","('ENDOCRINOLOGY & METABOLISM', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","8,246","4.2","('Q1', 'Q1')","1.18","100.00" +"ACM Transactions on Human-Robot Interaction","","2573-9522","ROBOTICS","('ESCI',)","789","4.2","Q2","1.15","14.29" +"COASTAL ENGINEERING","0378-3839","1872-7379","('ENGINEERING, CIVIL', 'ENGINEERING, OCEAN')","('SCIE', 'SCIE')","10,040","4.2","('Q1', 'Q1')","1.14","36.26" +"International Journal of Innovation Studies","2096-2487","2589-2975","MANAGEMENT","('ESCI',)","400","4.2","Q2","1.14","94.92" +"Bioengineered","2165-5979","2165-5987","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","10,548","4.2","Q2","1.13","100.00" +"IMAGE AND VISION COMPUTING","0262-8856","1872-8138","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","6,490","4.2","('Q2', 'Q1', 'Q1', 'Q2', 'Q1')","1.12","6.98" +"SOIL DYNAMICS AND EARTHQUAKE ENGINEERING","0267-7261","1879-341X","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","21,144","4.2","('Q1', 'Q1')","1.11","10.01" +"URBAN STUDIES","0042-0980","1360-063X","('ENVIRONMENTAL STUDIES', 'URBAN STUDIES')","('SSCI', 'SSCI')","15,923","4.2","('Q1', 'Q1')","1.11","41.43" +"International Journal of Disaster Risk Reduction","2212-4209","2212-4209","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","15,808","4.2","('Q1', 'Q1', 'Q1')","1.09","30.42" +"JOURNAL OF WIND ENGINEERING AND INDUSTRIAL AERODYNAMICS","0167-6105","1872-8197","('ENGINEERING, CIVIL', 'MECHANICS')","('SCIE', 'SCIE')","17,977","4.2","('Q1', 'Q1')","1.08","19.28" +"EUROPEAN PHYSICAL JOURNAL C","1434-6044","1434-6052","PHYSICS, PARTICLES & FIELDS","('SCIE',)","39,819","4.2","Q2","1.07","99.61" +"Journal of Fungi","","2309-608X","('MICROBIOLOGY', 'MYCOLOGY')","('SCIE', 'SCIE')","15,488","4.2","('Q2', 'Q1')","1.07","99.66" +"Environmental Toxicology and Pharmacology","1382-6689","1872-7077","('ENVIRONMENTAL SCIENCES', 'PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","9,805","4.2","('Q2', 'Q1', 'Q1')","1.05","17.48" +"Epigenetics & Chromatin","","1756-8935","GENETICS & HEREDITY","('SCIE',)","2,629","4.2","Q1","1.05","98.63" +"Experimental and Computational Multiphase Flow","2661-8869","2661-8877","('MECHANICS', 'THERMODYNAMICS')","('ESCI', 'ESCI')","472","4.2","('Q1', 'Q1')","1.05","26.67" +"IEEE Transactions on Computational Imaging","2573-0436","2333-9403","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY')","('SCIE', 'SCIE')","2,988","4.2","('Q2', 'Q2')","1.04","23.05" +"INTERNATIONAL JOURNAL OF OBESITY","0307-0565","1476-5497","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","21,656","4.2","('Q1', 'Q1')","1.04","37.25" +"PLANT SCIENCE","0168-9452","1873-2259","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","21,962","4.2","('Q2', 'Q1')","1.04","14.26" +"INTERNATIONAL JOURNAL OF ELECTRONIC COMMERCE","1086-4415","1557-9301","('BUSINESS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SSCI', 'SCIE')","2,703","4.2","('Q2', 'Q1')","1.02","8.06" +"LEADERSHIP & ORGANIZATION DEVELOPMENT JOURNAL","0143-7739","1472-5347","MANAGEMENT","('SSCI',)","3,873","4.2","Q2","1.02","7.44" +"ORGANIZATION & ENVIRONMENT","1086-0266","1552-7417","('ENVIRONMENTAL STUDIES', 'MANAGEMENT')","('SSCI', 'SSCI')","2,830","4.2","('Q1', 'Q2')","1.01","45.00" +"Management Accounting Research","1044-5005","1096-1224","('BUSINESS, FINANCE', 'MANAGEMENT')","('SSCI', 'SSCI')","2,430","4.2","('Q1', 'Q2')","0.99","23.91" +"Big Earth Data","2096-4471","2574-5417","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'GEOSCIENCES, MULTIDISCIPLINARY', 'REMOTE SENSING')","('ESCI', 'ESCI', 'ESCI')","750","4.2","('Q1', 'Q1', 'Q2')","0.98","98.15" +"NATURAL HAZARDS AND EARTH SYSTEM SCIENCES","1561-8633","1684-9981","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","12,338","4.2","('Q1', 'Q1', 'Q1')","0.98","97.95" +"ATMOSPHERIC ENVIRONMENT","1352-2310","1873-2844","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","56,403","4.2","('Q2', 'Q1')","0.97","28.95" +"JOURNAL OF INHERITED METABOLIC DISEASE","0141-8955","1573-2665","('ENDOCRINOLOGY & METABOLISM', 'GENETICS & HEREDITY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","7,457","4.2","('Q1', 'Q1', 'Q2')","0.97","46.98" +"Remote Sensing","","2072-4292","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","128,838","4.2","('Q2', 'Q1', 'Q2', 'Q2')","0.97","99.60" +"BIOCHIMICA ET BIOPHYSICA ACTA-MOLECULAR BASIS OF DISEASE","0925-4439","1879-260X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","19,532","4.2","('Q2', 'Q1')","0.96","63.73" +"Nanomedicine-Nanotechnology Biology and Medicine","1549-9634","1549-9642","('MEDICINE, RESEARCH & EXPERIMENTAL', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","12,388","4.2","('Q2', 'Q2')","0.96","25.26" +"PLANT BIOLOGY","1435-8603","1438-8677","PLANT SCIENCES","('SCIE',)","7,133","4.2","Q1","0.94","16.10" +"OSTEOPOROSIS INTERNATIONAL","0937-941X","1433-2965","ENDOCRINOLOGY & METABOLISM","('SCIE',)","19,068","4.2","Q1","0.92","30.21" +"AVS Quantum Science","","2639-0213","QUANTUM SCIENCE & TECHNOLOGY","('ESCI',)","767","4.2","Q2","0.91","43.56" +"MATERIALS SCIENCE IN SEMICONDUCTOR PROCESSING","1369-8001","1873-4081","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","17,556","4.2","('Q2', 'Q2', 'Q2', 'Q2')","0.91","5.21" +"Ecosystem Health and Sustainability","2096-4129","2332-8878","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","1,140","4.2","('Q1', 'Q2')","0.90","99.17" +"Frontiers in Cellular Neuroscience","","1662-5102","NEUROSCIENCES","('SCIE',)","22,218","4.2","Q2","0.90","99.75" +"IEEE ANTENNAS AND PROPAGATION MAGAZINE","1045-9243","1558-4143","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","3,794","4.2","('Q2', 'Q2')","0.90","7.59" +"Petroleum","2405-6561","2405-5816","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, PETROLEUM')","('ESCI', 'ESCI', 'ESCI')","1,623","4.2","('Q2', 'Q2', 'Q1')","0.90","94.81" +"Technologies","","2227-7080","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","2,172","4.2","Q1","0.90","99.75" +"INDUSTRIAL MANAGEMENT & DATA SYSTEMS","0263-5577","1758-5783","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, INDUSTRIAL')","('SCIE', 'SCIE')","7,848","4.2","('Q1', 'Q1')","0.86","3.44" +"INTERNATIONAL JOURNAL OF REFRACTORY METALS & HARD MATERIALS","0263-4368","2213-3917","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","11,986","4.2","('Q2', 'Q1')","0.86","11.51" +"ASTROPARTICLE PHYSICS","0927-6505","1873-2852","('ASTRONOMY & ASTROPHYSICS', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","3,392","4.2","('Q1', 'Q2')","0.85","31.33" +"Cardiac Failure Review","2057-7540","2057-7559","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","930","4.2","Q1","0.85","98.36" +"MINDS AND MACHINES","0924-6495","1572-8641","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","1,687","4.2","Q2","0.85","69.66" +"COMPUTERS & GEOSCIENCES","0098-3004","1873-7803","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","14,689","4.2","('Q1', 'Q1')","0.83","25.49" +"JOURNAL OF NEUROCHEMISTRY","0022-3042","1471-4159","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","31,580","4.2","('Q2', 'Q2')","0.83","29.43" +"Journal of Hepatocellular Carcinoma","","2253-5969","ONCOLOGY","('SCIE',)","1,509","4.2","Q2","0.79","98.97" +"MACROMOLECULAR RAPID COMMUNICATIONS","1022-1336","1521-3927","POLYMER SCIENCE","('SCIE',)","15,403","4.2","Q2","0.78","17.03" +"RNA","1355-8382","1469-9001","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","12,684","4.2","Q2","0.78","0.00" +"ADVANCED POWDER TECHNOLOGY","0921-8831","1568-5527","ENGINEERING, CHEMICAL","('SCIE',)","14,139","4.2","Q2","0.77","10.25" +"Journal of Clinical and Translational Endocrinology","2214-6237","2214-6237","ENDOCRINOLOGY & METABOLISM","('ESCI',)","816","4.2","Q1","0.76","96.10" +"CLINICAL & EXPERIMENTAL METASTASIS","0262-0898","1573-7276","ONCOLOGY","('SCIE',)","3,533","4.2","Q2","0.75","38.89" +"Food Science of Animal Resources","2636-0772","2636-0780","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,345","4.2","Q2","0.75","98.72" +"Expert Review of Anti-Infective Therapy","1478-7210","1744-8336","('INFECTIOUS DISEASES', 'MICROBIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","6,152","4.2","('Q1', 'Q2', 'Q1')","0.74","10.24" +"Journal of Inflammation Research","","1178-7031","IMMUNOLOGY","('SCIE',)","6,176","4.2","Q2","0.74","98.26" +"Advances in Manufacturing","2095-3127","2195-3597","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,677","4.2","('Q2', 'Q2')","0.72","9.09" +"European Journal of Management and Business Economics","2444-8451","2444-8494","BUSINESS","('ESCI',)","818","4.2","Q2","0.72","96.94" +"Additive Manufacturing Letters","2772-3690","2772-3690","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","446","4.2","('Q2', 'Q2')","0.71","92.55" +"MACROMOLECULAR MATERIALS AND ENGINEERING","1438-7492","1439-2054","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","8,880","4.2","('Q2', 'Q2')","0.71","39.70" +"World Journal of Diabetes","","1948-9358","ENDOCRINOLOGY & METABOLISM","('SCIE',)","4,270","4.2","Q1","0.71","99.45" +"JOURNAL OF MATERIALS SCIENCE-MATERIALS IN MEDICINE","0957-4530","1573-4838","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","11,342","4.2","('Q2', 'Q2')","0.70","100.00" +"MOLECULES","","1420-3049","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","191,855","4.2","('Q2', 'Q2')","0.69","99.51" +"Nanocomposites","2055-0324","2055-0332","('MATERIALS SCIENCE, COMPOSITES', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","536","4.2","('Q2', 'Q2')","0.68","98.25" +"Current Osteoporosis Reports","1544-1873","1544-2241","ENDOCRINOLOGY & METABOLISM","('SCIE',)","3,633","4.2","Q1","0.63","31.94" +"Clean Technologies and Environmental Policy","1618-954X","1618-9558","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","6,836","4.2","('Q2', 'Q2', 'Q3')","0.59","13.76" +"RSC Chemical Biology","2633-0679","2633-0679","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","1,205","4.2","('Q2', 'Q2')","0.56","96.89" +"Renewable Energy Focus","1755-0084","1878-0229","ENERGY & FUELS","('ESCI',)","1,356","4.2","Q2","0.55","10.86" +"Natural Gas Industry B","2352-8540","2352-8559","ENERGY & FUELS","('ESCI',)","1,356","4.2","Q2","0.48","94.16" +"CRITICAL REVIEWS IN ANALYTICAL CHEMISTRY","1040-8347","1547-6510","CHEMISTRY, ANALYTICAL","('SCIE',)","4,351","4.2","Q1","0.46","3.58" +"Radiation Detection Technology and Methods","2509-9930","2509-9949","NUCLEAR SCIENCE & TECHNOLOGY","('ESCI',)","991","4.2","Q1","0.39","3.37" +"Proceedings of the Institution of Mechanical Engineers Part N-Journal of Nanomaterials Nanoengineering and Nanosystems","2397-7914","2397-7922","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","538","4.2","Q2","0.33","0.00" +"Tourism Geographies","1461-6688","1470-1340","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","4,021","4.1","Q1","2.63","31.76" +"SOCIOLOGICAL THEORY","0735-2751","1467-9558","SOCIOLOGY","('SSCI',)","3,710","4.1","Q1","2.32","14.89" +"Policy and Internet","1944-2866","1944-2866","('COMMUNICATION', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,201","4.1","('Q1', 'Q1')","2.19","48.18" +"NURSING OUTLOOK","0029-6554","1528-3968","NURSING","('SCIE', 'SSCI')","3,119","4.1","Q1","2.11","19.64" +"International Journal of Press-Politics","1940-1612","1940-1620","('COMMUNICATION', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","2,303","4.1","('Q1', 'Q1')","2.02","31.03" +"AMERICAN JOURNAL OF OPHTHALMOLOGY","0002-9394","1879-1891","OPHTHALMOLOGY","('SCIE',)","28,113","4.1","Q1","2.01","22.15" +"Assessment & Evaluation in Higher Education","0260-2938","1469-297X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","5,629","4.1","Q1","1.97","37.80" +"POLICY STUDIES JOURNAL","0190-292X","1541-0072","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","3,533","4.1","('Q1', 'Q1')","1.80","26.61" +"Contact Lens & Anterior Eye","1367-0484","1476-5411","OPHTHALMOLOGY","('SCIE',)","3,019","4.1","Q1","1.76","18.66" +"MEDICINE & SCIENCE IN SPORTS & EXERCISE","0195-9131","1530-0315","SPORT SCIENCES","('SCIE',)","36,951","4.1","Q1","1.74","15.63" +"Eye and Vision","2326-0246","2326-0254","OPHTHALMOLOGY","('SCIE',)","1,419","4.1","Q1","1.65","100.00" +"FISH & SHELLFISH IMMUNOLOGY","1050-4648","1095-9947","('FISHERIES', 'IMMUNOLOGY', 'MARINE & FRESHWATER BIOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","30,250","4.1","('Q1', 'Q2', 'Q1', 'Q1')","1.57","7.24" +"MYCOSES","0933-7407","1439-0507","('DERMATOLOGY', 'MYCOLOGY')","('SCIE', 'SCIE')","5,793","4.1","('Q1', 'Q2')","1.54","20.61" +"Quantitative Science Studies","","2641-3337","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","1,235","4.1","Q1","1.54","99.40" +"Knee Surgery & Related Research","","2234-2451","('ORTHOPEDICS', 'SURGERY')","('ESCI', 'ESCI')","1,332","4.1","('Q1', 'Q1')","1.52","100.00" +"JOURNAL OF MICROPALAEONTOLOGY","0262-821X","2041-4978","PALEONTOLOGY","('SCIE',)","546","4.1","Q1","1.44","96.88" +"npj Aging","","2731-6068","GERIATRICS & GERONTOLOGY","('ESCI',)","86","4.1","Q2","1.44","100.00" +"Avicenna","2220-2749","2220-2749","HEALTH POLICY & SERVICES","('ESCI',)","115","4.1","Q1","1.41","0.00" +"Review of Economics of the Household","1569-5239","1573-7152","ECONOMICS","('SSCI',)","1,555","4.1","Q1","1.41","36.60" +"AQUATIC TOXICOLOGY","0166-445X","1879-1514","('MARINE & FRESHWATER BIOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","16,988","4.1","('Q1', 'Q1')","1.40","16.32" +"PUBLIC RELATIONS REVIEW","0363-8111","1873-4537","('BUSINESS', 'COMMUNICATION')","('SSCI', 'SSCI')","6,031","4.1","('Q2', 'Q1')","1.40","7.82" +"Sports Medicine-Open","2199-1170","2198-9761","SPORT SCIENCES","('SCIE',)","2,729","4.1","Q1","1.33","100.00" +"Journal of Evidence-Based Dental Practice","1532-3382","1532-3390","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,365","4.1","Q1","1.32","14.69" +"IEEE-ACM Transactions on Audio Speech and Language Processing","2329-9290","2329-9304","('ACOUSTICS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","7,289","4.1","('Q1', 'Q2')","1.31","18.71" +"PHYSICS OF FLUIDS","1070-6631","1089-7666","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE')","65,891","4.1","('Q1', 'Q1')","1.31","11.36" +"NDT & E INTERNATIONAL","0963-8695","1879-1174","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('SCIE',)","7,767","4.1","Q1","1.30","19.32" +"AMERICAN JOURNAL OF PHYSIOLOGY-HEART AND CIRCULATORY PHYSIOLOGY","0363-6135","1522-1539","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PERIPHERAL VASCULAR DISEASE', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","26,147","4.1","('Q1', 'Q1', 'Q1')","1.26","7.14" +"ANTIMICROBIAL AGENTS AND CHEMOTHERAPY","0066-4804","1098-6596","('MICROBIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","63,154","4.1","('Q2', 'Q1')","1.24","29.58" +"International Journal of Critical Infrastructure Protection","1874-5482","2212-2087","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,047","4.1","('Q1', 'Q1')","1.23","18.92" +"Brain Communications","","2632-1297","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('ESCI', 'ESCI')","4,141","4.1","('Q1', 'Q2')","1.22","94.24" +"COMPUTER STANDARDS & INTERFACES","0920-5489","1872-7018","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","1,858","4.1","('Q1', 'Q1')","1.21","11.98" +"JOURNAL OF LIGHTWAVE TECHNOLOGY","0733-8724","1558-2213","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","32,204","4.1","('Q2', 'Q1', 'Q2')","1.21","20.02" +"Insights into Imaging","1869-4101","1869-4101","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","6,165","4.1","Q1","1.18","99.66" +"POLITICS & SOCIETY","0032-3292","1552-7514","('POLITICAL SCIENCE', 'SOCIAL ISSUES', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","2,234","4.1","('Q1', 'Q1', 'Q1')","1.18","30.99" +"ICT Express","2405-9595","2405-9595","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","2,034","4.1","('Q1', 'Q2')","1.16","95.69" +"Computers and Education Open","2666-5573","2666-5573","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'EDUCATION & EDUCATIONAL RESEARCH')","('ESCI', 'ESCI')","400","4.1","('Q2', 'Q1')","1.15","83.87" +"International Journal for Parasitology-Drugs and Drug Resistance","2211-3207","2211-3207","('PARASITOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,672","4.1","('Q1', 'Q1')","1.15","92.54" +"GENERAL HOSPITAL PSYCHIATRY","0163-8343","1873-7714","PSYCHIATRY","('SCIE', 'SSCI')","7,084","4.1","Q1","1.14","24.23" +"IEEE ELECTRON DEVICE LETTERS","0741-3106","1558-0563","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","20,820","4.1","Q2","1.13","4.62" +"Journal of Neurodevelopmental Disorders","1866-1947","1866-1955","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","2,224","4.1","('Q1', 'Q2')","1.12","100.00" +"Cancer Research and Treatment","1598-2998","2005-9256","ONCOLOGY","('SCIE',)","4,069","4.1","Q2","1.10","95.34" +"Frontiers in Plant Science","1664-462X","1664-462X","PLANT SCIENCES","('SCIE',)","123,848","4.1","Q1","1.10","99.62" +"INTERNATIONAL JOURNAL OF GYNECOLOGICAL CANCER","1048-891X","1525-1438","('OBSTETRICS & GYNECOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","9,676","4.1","('Q1', 'Q2')","1.10","12.90" +"One Health","","2352-7714","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","2,207","4.1","('Q1', 'Q1')","1.10","94.42" +"Journal of Diabetes Science and Technology","1932-2968","1932-2968","ENDOCRINOLOGY & METABOLISM","('ESCI',)","6,696","4.1","Q2","1.08","18.22" +"Journal of Marine Engineering and Technology","2046-4177","2056-8487","ENGINEERING, MARINE","('SCIE',)","611","4.1","Q1","1.08","15.79" +"Journal of Network and Systems Management","1064-7570","1573-7705","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","1,050","4.1","('Q1', 'Q2')","1.07","17.65" +"Research in Transportation Business and Management","2210-5395","2210-5409","('BUSINESS', 'MANAGEMENT', 'TRANSPORTATION')","('SSCI', 'SSCI', 'SSCI')","2,663","4.1","('Q2', 'Q2', 'Q2')","1.07","20.41" +"International Journal on Semantic Web and Information Systems","1552-6283","1552-6291","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","635","4.1","('Q2', 'Q1')","1.05","76.52" +"International Journal of Tourism Research","1099-2340","1522-1970","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","4,134","4.1","Q1","1.03","20.92" +"Journal of Exposure Science and Environmental Epidemiology","1559-0631","1559-064X","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,277","4.1","('Q2', 'Q1', 'Q1')","1.03","35.37" +"SENSORS AND ACTUATORS A-PHYSICAL","0924-4247","1873-3069","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","27,110","4.1","('Q2', 'Q1')","1.03","10.77" +"IEEE TRANSACTIONS ON MICROWAVE THEORY AND TECHNIQUES","0018-9480","1557-9670","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","30,444","4.1","Q2","1.02","10.97" +"Ocean Science","1812-0784","1812-0792","('METEOROLOGY & ATMOSPHERIC SCIENCES', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","3,747","4.1","('Q2', 'Q1')","1.02","100.00" +"International Journal of Accounting Information Systems","1467-0895","1873-4723","('BUSINESS', 'BUSINESS, FINANCE', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","1,176","4.1","('Q2', 'Q1', 'Q2')","1.01","26.09" +"JOURNAL OF PSYCHIATRY & NEUROSCIENCE","1180-4882","1488-2434","('NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE, SSCI')","3,644","4.1","('Q2', 'Q1')","1.01","100.00" +"MANAGEMENT DECISION","0025-1747","1758-6070","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","10,185","4.1","('Q2', 'Q2')","1.00","10.30" +"ACS Chemical Neuroscience","1948-7193","1948-7193","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL', 'NEUROSCIENCES')","('SCIE', 'SCIE', 'SCIE')","12,344","4.1","('Q2', 'Q2', 'Q2')","0.98","20.13" +"DYES AND PIGMENTS","0143-7208","1873-3743","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, TEXTILES')","('SCIE', 'SCIE', 'SCIE')","26,588","4.1","('Q2', 'Q2', 'Q1')","0.98","6.81" +"Current Addiction Reports","","2196-2952","SUBSTANCE ABUSE","('SSCI',)","1,957","4.1","Q1","0.97","29.26" +"EUROPEAN JOURNAL OF NUTRITION","1436-6207","1436-6215","NUTRITION & DIETETICS","('SCIE',)","12,413","4.1","Q2","0.97","43.57" +"Frontiers in Aging Neuroscience","1663-4365","1663-4365","('GERIATRICS & GERONTOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","24,614","4.1","('Q2', 'Q2')","0.97","99.57" +"Journal of Cannabis Research","","2522-5782","PHARMACOLOGY & PHARMACY","('ESCI',)","615","4.1","Q1","0.97","100.00" +"Botanical Studies","","1999-3110","PLANT SCIENCES","('SCIE',)","1,553","4.1","Q1","0.96","100.00" +"JOURNAL OF BIOTECHNOLOGY","0168-1656","1873-4863","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","14,954","4.1","Q2","0.96","16.70" +"POLYMER","0032-3861","1873-2291","POLYMER SCIENCE","('SCIE',)","57,851","4.1","Q2","0.96","14.74" +"ANNALS OF THE NEW YORK ACADEMY OF SCIENCES","0077-8923","1749-6632","MULTIDISCIPLINARY SCIENCES","('SCIE',)","44,441","4.1","Q1","0.95","32.21" +"Biomedical Journal","2319-4170","2320-2890","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","2,865","4.1","('Q2', 'Q2')","0.95","99.27" +"Food Chemistry: Molecular Sciences","2666-5662","2666-5662","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","606","4.1","Q2","0.95","95.06" +"Space: Science & Technology","","2692-7659","('ASTRONOMY & ASTROPHYSICS', 'ENGINEERING, AEROSPACE')","('ESCI', 'ESCI')","311","4.1","('Q1', 'Q1')","0.95","91.67" +"EvoDevo","","2041-9139","('DEVELOPMENTAL BIOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE')","887","4.1","('Q1', 'Q1')","0.92","100.00" +"MOLECULAR CANCER RESEARCH","1541-7786","1557-3125","('CELL BIOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","9,998","4.1","('Q2', 'Q2')","0.92","21.20" +"INTERNATIONAL BIODETERIORATION & BIODEGRADATION","0964-8305","1879-0208","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","12,510","4.1","('Q2', 'Q2')","0.91","14.50" +"Journal of Earth Science","1674-487X","1867-111X","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","3,098","4.1","Q1","0.91","3.49" +"Molecular Diagnosis & Therapy","1177-1062","1179-2000","('GENETICS & HEREDITY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,919","4.1","('Q1', 'Q1')","0.91","33.53" +"MRS BULLETIN","0883-7694","1938-1425","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","8,696","4.1","('Q2', 'Q2')","0.90","38.44" +"Pain and Therapy","2193-8237","2193-651X","CLINICAL NEUROLOGY","('SCIE',)","1,595","4.1","Q1","0.90","99.65" +"NFS Journal","2352-3646","2352-3646","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('ESCI', 'ESCI')","662","4.1","('Q2', 'Q2')","0.89","96.05" +"Quantum Machine Intelligence","2524-4906","2524-4914","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'QUANTUM SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","419","4.1","('Q2', 'Q2')","0.89","50.96" +"ENDOCRINE-RELATED CANCER","1351-0088","1479-6821","('ENDOCRINOLOGY & METABOLISM', 'ONCOLOGY')","('SCIE', 'SCIE')","7,177","4.1","('Q2', 'Q2')","0.88","17.48" +"Microorganisms","","2076-2607","MICROBIOLOGY","('SCIE',)","39,390","4.1","Q2","0.88","99.50" +"Polymer Chemistry","1759-9954","1759-9962","POLYMER SCIENCE","('SCIE',)","26,933","4.1","Q2","0.88","17.67" +"JOURNAL OF CONSTRUCTION ENGINEERING AND MANAGEMENT","0733-9364","1943-7862","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'ENGINEERING, INDUSTRIAL')","('SCIE', 'SCIE', 'SCIE')","12,367","4.1","('Q1', 'Q1', 'Q2')","0.87","2.58" +"Journal of Electroanalytical Chemistry","1572-6657","1873-2569","('CHEMISTRY, ANALYTICAL', 'ELECTROCHEMISTRY')","('SCIE', 'SCIE')","37,555","4.1","('Q1', 'Q2')","0.86","8.18" +"Maritime Economics & Logistics","1479-2931","1479-294X","TRANSPORTATION","('SSCI',)","1,304","4.1","Q2","0.86","14.43" +"Human Vaccines & Immunotherapeutics","2164-5515","2164-554X","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","14,391","4.1","('Q2', 'Q2')","0.85","80.48" +"JOURNAL OF MANAGEMENT INQUIRY","1056-4926","1552-6542","MANAGEMENT","('SSCI',)","2,242","4.1","Q2","0.84","31.25" +"CHINESE JOURNAL OF POLYMER SCIENCE","0256-7679","1439-6203","POLYMER SCIENCE","('SCIE',)","4,262","4.1","Q2","0.83","0.00" +"COMPUTERS & OPERATIONS RESEARCH","0305-0548","1873-765X","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, INDUSTRIAL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","16,520","4.1","('Q2', 'Q2', 'Q1')","0.83","22.84" +"BMJ Health & Care Informatics","","2632-1009","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('ESCI', 'ESCI')","762","4.1","('Q1', 'Q2')","0.82","100.00" +"Talanta Open","2666-8319","2666-8319","CHEMISTRY, ANALYTICAL","('ESCI',)","828","4.1","Q1","0.80","93.72" +"BIOMETALS","0966-0844","1572-8773","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","5,192","4.1","Q2","0.77","15.25" +"CURRENT OPINION IN NEUROLOGY","1350-7540","1473-6551","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","6,345","4.1","('Q1', 'Q2')","0.76","12.01" +"Frontiers of Optoelectronics","2095-2759","2095-2767","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","1,092","4.1","Q2","0.76","81.97" +"Allergy Asthma & Immunology Research","2092-7355","2092-7363","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","2,568","4.1","('Q2', 'Q2')","0.75","100.00" +"Journal of Internet Commerce","1533-2861","1533-287X","BUSINESS","('ESCI',)","1,035","4.1","Q2","0.75","5.08" +"MATERIALS AND MANUFACTURING PROCESSES","1042-6914","1532-2475","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","8,760","4.1","('Q2', 'Q2')","0.74","1.21" +"RSC Medicinal Chemistry","","2632-8682","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL')","('SCIE', 'SCIE')","1,847","4.1","('Q2', 'Q2')","0.70","17.90" +"Food and Environmental Virology","1867-0334","1867-0342","('ENVIRONMENTAL SCIENCES', 'FOOD SCIENCE & TECHNOLOGY', 'MICROBIOLOGY', 'VIROLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,339","4.1","('Q2', 'Q2', 'Q2', 'Q2')","0.68","29.91" +"CHEMICAL ENGINEERING SCIENCE","0009-2509","1873-4405","ENGINEERING, CHEMICAL","('SCIE',)","49,422","4.1","Q2","0.67","13.36" +"JOURNAL OF PHOTOCHEMISTRY AND PHOTOBIOLOGY A-CHEMISTRY","1010-6030","1873-2666","CHEMISTRY, PHYSICAL","('SCIE',)","21,660","4.1","Q2","0.67","5.88" +"Particuology","1674-2001","2210-4291","('ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","5,147","4.1","('Q2', 'Q2')","0.61","19.73" +"Cell Stress","","2523-0204","CELL BIOLOGY","('ESCI',)","733","4.1","Q2","0.56","95.12" +"SSM-Mental Health","2666-5603","2666-5603","('PSYCHIATRY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","403","4.1","('Q1', 'Q1')","0.51","90.11" +"Microbial Cell","2311-2638","2311-2638","('CELL BIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","1,158","4.1","('Q2', 'Q2')","0.48","98.36" +"SCANDINAVIAN JOURNAL OF IMMUNOLOGY","0300-9475","1365-3083","IMMUNOLOGY","('SCIE',)","5,164","4.1","Q2","0.40","23.61" +"Immunotherapy Advances","","2732-4303","IMMUNOLOGY","('ESCI',)","219","4.1","Q2","0.34","95.89" +"Frontiers in Nanotechnology","","2673-3013","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('ESCI', 'ESCI')","968","4.1","('Q2', 'Q2')","0.33","100.00" +"International Nano Letters","2008-9295","2228-5326","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","2,036","4.1","Q2","0.33","1.28" +"REVIEWS IN INORGANIC CHEMISTRY","0193-4929","2191-0227","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","451","4.1","Q1","0.31","1.41" +"Contemporary Security Policy","1352-3260","1743-8764","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","912","4.0","('Q1', 'Q1')","2.92","46.99" +"Language Teaching","0261-4448","1475-3049","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","2,451","4.0","('Q1', 'N/A', 'Q1')","2.56","29.32" +"ZOOLOGICAL RESEARCH","2095-8137","2095-8137","ZOOLOGY","('SCIE',)","2,141","4.0","Q1","2.36","99.28" +"JOURNAL OF EDUCATIONAL COMPUTING RESEARCH","0735-6331","1541-4140","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,388","4.0","Q1","2.35","8.38" +"Perspectives on Politics","1537-5927","1541-0986","POLITICAL SCIENCE","('SSCI',)","4,026","4.0","Q1","2.28","47.16" +"Learning Media and Technology","1743-9884","1743-9892","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,989","4.0","Q1","2.11","39.39" +"TEACHING AND TEACHER EDUCATION","0742-051X","1879-2480","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","15,662","4.0","Q1","2.11","34.90" +"Critical Studies in Education","1750-8487","1750-8495","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,346","4.0","Q1","1.83","29.00" +"Animal","1751-7311","1751-732X","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","12,899","4.0","('Q1', 'Q1')","1.70","97.46" +"APPLIED GEOGRAPHY","0143-6228","1873-7730","GEOGRAPHY","('SSCI',)","10,535","4.0","Q1","1.70","23.90" +"Annals of Laboratory Medicine","2234-3806","2234-3814","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","2,099","4.0","Q1","1.66","100.00" +"Campbell Systematic Reviews","","1891-1803","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","1,531","4.0","Q1","1.66","76.96" +"Dermatitis","1710-3568","2162-5220","DERMATOLOGY","('SCIE',)","2,148","4.0","Q1","1.63","7.88" +"POLITICAL PSYCHOLOGY","0162-895X","1467-9221","('POLITICAL SCIENCE', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI')","6,671","4.0","('Q1', 'Q1')","1.63","54.08" +"JOURNAL OF SOCIAL ISSUES","0022-4537","1540-4560","('PSYCHOLOGY, SOCIAL', 'SOCIAL ISSUES')","('SSCI', 'SSCI')","9,401","4.0","('Q1', 'Q1')","1.55","19.64" +"ECONOMY AND SOCIETY","0308-5147","1469-5766","('ECONOMICS', 'SOCIOLOGY')","('SSCI', 'SSCI')","3,169","4.0","('Q1', 'Q1')","1.48","46.32" +"TOBACCO CONTROL","0964-4563","1468-3318","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SUBSTANCE ABUSE')","('SCIE, SSCI', 'SCIE, SSCI')","8,478","4.0","('Q1', 'Q1')","1.48","33.79" +"World Journal of Mens Health","2287-4208","2287-4690","('ANDROLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","1,836","4.0","('Q1', 'Q1')","1.44","97.60" +"Agricultural and Food Economics","","2193-7532","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('SCIE', 'SSCI')","837","4.0","('Q1', 'Q1')","1.36","99.08" +"JOURNAL OF CLINICAL VIROLOGY","1386-6532","1873-5967","VIROLOGY","('SCIE',)","7,861","4.0","Q2","1.33","41.87" +"Pediatric Critical Care Medicine","1529-7535","1947-3893","('CRITICAL CARE MEDICINE', 'PEDIATRICS')","('SCIE', 'SCIE')","9,217","4.0","('Q1', 'Q1')","1.31","6.76" +"Harm Reduction Journal","","1477-7517","SUBSTANCE ABUSE","('SSCI',)","3,432","4.0","Q1","1.29","100.00" +"CURRENT OPINION IN PHARMACOLOGY","1471-4892","1471-4973","PHARMACOLOGY & PHARMACY","('SCIE',)","6,924","4.0","Q1","1.28","35.97" +"Forest Policy and Economics","1389-9341","1872-7050","('ECONOMICS', 'ENVIRONMENTAL STUDIES', 'FORESTRY')","('SSCI', 'SSCI', 'SCIE')","6,902","4.0","('Q1', 'Q2', 'Q1')","1.27","38.14" +"Geoscientific Model Development","1991-959X","1991-9603","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","20,350","4.0","Q1","1.25","99.82" +"INTERNATIONAL JOURNAL OF NUMERICAL METHODS FOR HEAT & FLUID FLOW","0961-5539","1758-6585","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","5,174","4.0","('Q1', 'Q1', 'Q1')","1.23","4.10" +"Global Health Research and Policy","","2397-0642","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","1,100","4.0","Q1","1.22","100.00" +"Journal of Optical Communications and Networking","1943-0620","1943-0639","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'OPTICS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","3,110","4.0","('Q1', 'Q1', 'Q1', 'Q2')","1.22","6.00" +"PLoS Genetics","1553-7404","1553-7404","GENETICS & HEREDITY","('SCIE',)","46,499","4.0","Q1","1.20","99.57" +"NEUROPATHOLOGY AND APPLIED NEUROBIOLOGY","0305-1846","1365-2990","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,431","4.0","('Q1', 'Q2', 'Q1')","1.19","54.63" +"ADVANCES IN ENGINEERING SOFTWARE","0965-9978","1873-5339","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","11,210","4.0","('Q2', 'Q1', 'Q1')","1.18","13.76" +"Biological Psychiatry: Global Open Science","2667-1743","2667-1743","('NEUROSCIENCES', 'PSYCHIATRY')","('ESCI', 'ESCI')","480","4.0","('Q2', 'Q1')","1.18","100.00" +"ORAL ONCOLOGY","1368-8375","1879-0593","('DENTISTRY, ORAL SURGERY & MEDICINE', 'ONCOLOGY')","('SCIE', 'SCIE')","13,287","4.0","('Q1', 'Q2')","1.18","18.63" +"Journal of the Knowledge Economy","1868-7865","1868-7873","ECONOMICS","('SSCI',)","3,711","4.0","Q1","1.17","16.74" +"Alzheimer's & Dementia: Diagnosis, Assessment & Disease Monitoring","","2352-8729","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('ESCI', 'ESCI')","2,446","4.0","('Q1', 'Q2')","1.16","74.42" +"International Journal of Neonatal Screening","","2409-515X","('GENETICS & HEREDITY', 'PEDIATRICS')","('ESCI', 'ESCI')","1,101","4.0","('Q1', 'Q1')","1.16","100.00" +"ADVANCES IN WATER RESOURCES","0309-1708","1872-9657","WATER RESOURCES","('SCIE',)","14,317","4.0","Q1","1.15","36.69" +"GROUP PROCESSES & INTERGROUP RELATIONS","1368-4302","1461-7188","PSYCHOLOGY, SOCIAL","('SSCI',)","4,093","4.0","Q1","1.15","31.72" +"JOURNAL OF PAIN","1526-5900","1528-8447","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","12,485","4.0","('Q1', 'Q2')","1.15","66.39" +"Annals of Tourism Research Empirical Insights","2666-9579","2666-9579","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","290","4.0","Q1","1.14","100.00" +"ACM Transactions on Knowledge Discovery from Data","1556-4681","1556-472X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","3,224","4.0","('Q1', 'Q1')","1.13","2.15" +"Journal of the American College of Radiology","1546-1440","1558-349X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","7,260","4.0","Q1","1.13","6.29" +"MARINE STRUCTURES","0951-8339","1873-4170","('ENGINEERING, CIVIL', 'ENGINEERING, MARINE')","('SCIE', 'SCIE')","5,112","4.0","('Q1', 'Q1')","1.13","21.72" +"Economic Change and Restructuring","1573-9414","1574-0277","ECONOMICS","('SSCI',)","1,389","4.0","Q1","1.12","8.11" +"IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS II-EXPRESS BRIEFS","1549-7747","1558-3791","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","17,900","4.0","Q2","1.12","4.30" +"LANDSCAPE ECOLOGY","0921-2973","1572-9761","('ECOLOGY', 'GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","12,576","4.0","('Q1', 'Q1', 'Q1')","1.12","35.67" +"Food and Energy Security","2048-3694","2048-3694","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","2,179","4.0","Q2","1.11","81.48" +"Perspectives in Ecology and Conservation","2530-0644","2530-0644","BIODIVERSITY CONSERVATION","('SCIE',)","1,205","4.0","Q1","1.11","95.00" +"BioData Mining","1756-0381","1756-0381","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('SCIE',)","1,156","4.0","Q1","1.09","100.00" +"Chinese Journal of Natural Medicines","2095-6975","1875-5364","('INTEGRATIVE & COMPLEMENTARY MEDICINE', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","3,550","4.0","('Q1', 'Q1')","1.08","0.00" +"GROUP & ORGANIZATION MANAGEMENT","1059-6011","1552-3993","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","3,673","4.0","('Q2', 'Q1')","1.08","16.37" +"IEEE Geoscience and Remote Sensing Letters","1545-598X","1558-0571","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'GEOCHEMISTRY & GEOPHYSICS', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","25,928","4.0","('Q2', 'Q1', 'Q2', 'Q2')","1.08","7.99" +"Plants-Basel","","2223-7747","PLANT SCIENCES","('SCIE',)","44,632","4.0","Q1","1.08","99.70" +"Australasian Marketing Journal","1441-3582","1839-3349","BUSINESS","('ESCI',)","2,274","4.0","Q2","1.07","13.01" +"GLOBAL AND PLANETARY CHANGE","0921-8181","1872-6364","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","13,909","4.0","('Q1', 'Q1')","1.07","27.49" +"ACS Infectious Diseases","2373-8227","","('CHEMISTRY, MEDICINAL', 'INFECTIOUS DISEASES')","('SCIE', 'SCIE')","6,249","4.0","('Q2', 'Q1')","1.06","19.25" +"IEEE Systems Journal","1932-8184","1937-9234","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","13,126","4.0","('Q1', 'Q2', 'Q2', 'Q2')","1.06","4.42" +"JOURNAL OF CONSUMER PSYCHOLOGY","1057-7408","1532-7663","('BUSINESS', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","7,882","4.0","('Q2', 'Q1')","1.06","24.26" +"NAR Genomics and Bioinformatics","","2631-9268","('GENETICS & HEREDITY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('ESCI', 'ESCI')","1,649","4.0","('Q1', 'Q1')","1.05","93.39" +"Microbial Genomics","2057-5858","2057-5858","('GENETICS & HEREDITY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","4,407","4.0","('Q1', 'Q2')","1.04","99.19" +"Human Resource Development Quarterly","1044-8004","1532-1096","('INDUSTRIAL RELATIONS & LABOR', 'MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI', 'SSCI')","1,963","4.0","('Q1', 'Q2', 'Q1')","1.03","26.67" +"COMPUTERS & ELECTRICAL ENGINEERING","0045-7906","1879-0755","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","11,137","4.0","('Q1', 'Q2', 'Q2')","1.02","4.61" +"JOURNAL OF PLANT PHYSIOLOGY","0176-1617","1618-1328","PLANT SCIENCES","('SCIE',)","16,094","4.0","Q1","1.02","14.92" +"Disease Models & Mechanisms","1754-8403","1754-8411","('CELL BIOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","7,589","4.0","('Q2', 'Q1')","1.01","99.12" +"DRUG SAFETY","0114-5916","1179-1942","('PHARMACOLOGY & PHARMACY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","6,549","4.0","('Q1', 'Q1', 'Q1')","1.01","54.20" +"Journal of Virology","0022-538X","1098-5514","VIROLOGY","('SCIE',)","78,625","4.0","Q2","1.00","25.37" +"Environmental Health and Preventive Medicine","1342-078X","1347-4715","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","3,167","4.0","Q1","0.99","98.71" +"International Journal of Systems Science-Operations & Logistics","2330-2674","2330-2682","('ENGINEERING, INDUSTRIAL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","767","4.0","('Q2', 'Q2')","0.99","1.71" +"Journal of Parkinsons Disease","1877-7171","1877-718X","NEUROSCIENCES","('SCIE',)","5,369","4.0","Q2","0.99","56.89" +"Eurasian Business Review","1309-4297","2147-4281","('BUSINESS', 'ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","788","4.0","('Q2', 'Q1', 'Q2')","0.98","41.10" +"European Journal of Work and Organizational Psychology","1359-432X","1464-0643","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","5,536","4.0","('Q2', 'Q1')","0.97","36.36" +"BMC MICROBIOLOGY","1471-2180","1471-2180","MICROBIOLOGY","('SCIE',)","16,873","4.0","Q2","0.96","99.43" +"IEEE Transactions on Control of Network Systems","2325-5870","2372-2533","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","4,833","4.0","('Q2', 'Q1')","0.96","15.01" +"DIGESTIVE AND LIVER DISEASE","1590-8658","1878-3562","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","8,612","4.0","Q1","0.94","17.85" +"Energy & Environment","0958-305X","2048-4070","ENVIRONMENTAL STUDIES","('SSCI',)","2,926","4.0","Q2","0.94","1.89" +"European Journal of Medicinal Chemistry Reports","2772-4174","2772-4174","CHEMISTRY, MEDICINAL","('ESCI',)","363","4.0","Q2","0.94","89.47" +"Breast Cancer","1340-6868","1880-4233","('OBSTETRICS & GYNECOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","3,624","4.0","('Q1', 'Q2')","0.93","34.31" +"Nucleic Acid Therapeutics","2159-3337","2159-3345","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","1,612","4.0","('Q2', 'Q2', 'Q2')","0.93","43.69" +"JOURNAL OF PLANNING LITERATURE","0885-4122","1552-6593","('REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI')","1,539","4.0","('Q1', 'Q1')","0.92","30.16" +"STEM CELLS","1066-5099","1549-4918","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CELL & TISSUE ENGINEERING', 'CELL BIOLOGY', 'HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","16,723","4.0","('Q2', 'Q2', 'Q2', 'Q1', 'Q2')","0.92","30.41" +"AUSTRALIAN AND NEW ZEALAND JOURNAL OF PSYCHIATRY","0004-8674","1440-1614","PSYCHIATRY","('SCIE', 'SSCI')","8,148","4.0","Q1","0.90","20.48" +"STEEL AND COMPOSITE STRUCTURES","1229-9367","1598-6233","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, COMPOSITES')","('SCIE', 'SCIE', 'SCIE')","6,327","4.0","('Q1', 'Q1', 'Q2')","0.90","0.00" +"BIOCONJUGATE CHEMISTRY","1043-1802","1520-4812","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MULTIDISCIPLINARY', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","15,811","4.0","('Q1', 'Q2', 'Q2', 'Q1')","0.89","13.90" +"Frontiers in Microbiology","","1664-302X","MICROBIOLOGY","('SCIE',)","145,461","4.0","Q2","0.89","99.66" +"Frontiers in Nutrition","2296-861X","2296-861X","NUTRITION & DIETETICS","('SCIE',)","24,258","4.0","Q2","0.89","99.62" +"JOURNAL OF BIOMEDICAL INFORMATICS","1532-0464","1532-0480","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE')","17,121","4.0","('Q2', 'Q2')","0.89","73.89" +"INTERNATIONAL JOURNAL OF DAMAGE MECHANICS","1056-7895","1530-7921","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE')","2,251","4.0","('Q2', 'Q1')","0.88","4.02" +"MARKETING SCIENCE","0732-2399","1526-548X","BUSINESS","('SSCI',)","8,851","4.0","Q2","0.88","0.00" +"Journal of Constructional Steel Research","0143-974X","1873-5983","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","23,811","4.0","('Q1', 'Q1')","0.87","7.23" +"Journal of Brand Management","1350-231X","1479-1803","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","3,309","4.0","('Q2', 'Q2')","0.86","17.50" +"JOURNAL OF FOOD COMPOSITION AND ANALYSIS","0889-1575","1096-0481","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","14,980","4.0","('Q2', 'Q2')","0.86","13.18" +"JOURNAL OF BIOLOGICAL CHEMISTRY","","1083-351X","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","295,056","4.0","Q2","0.85","95.81" +"Borderline Personality Disorder and Emotion Dysregulation","2051-6673","2051-6673","PSYCHIATRY","('SCIE',)","925","4.0","Q1","0.84","100.00" +"EUROPEAN JOURNAL OF SOIL SCIENCE","1351-0754","1365-2389","SOIL SCIENCE","('SCIE',)","9,004","4.0","Q2","0.84","30.25" +"Neural Development","","1749-8104","('DEVELOPMENTAL BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","978","4.0","('Q1', 'Q2')","0.84","100.00" +"Translational Lung Cancer Research","2218-6751","2226-4477","('ONCOLOGY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","5,629","4.0","('Q2', 'Q1')","0.84","98.74" +"Climate Services","2405-8807","2405-8807","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SSCI', 'SCIE')","1,216","4.0","('Q2', 'Q2', 'Q2')","0.80","97.06" +"Infectious Diseases","2374-4235","2374-4243","INFECTIOUS DISEASES","('SCIE',)","2,362","4.0","Q1","0.79","28.23" +"Virology Journal","","1743-422X","VIROLOGY","('SCIE',)","9,488","4.0","Q2","0.79","99.74" +"SYNTHETIC METALS","0379-6779","0379-6779","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, CONDENSED MATTER', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","12,342","4.0","('Q2', 'Q2', 'Q2')","0.78","5.31" +"European Business Review","0955-534X","1758-7107","BUSINESS","('ESCI',)","5,486","4.0","Q2","0.75","4.69" +"WORLD JOURNAL OF MICROBIOLOGY & BIOTECHNOLOGY","0959-3993","1573-0972","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","12,798","4.0","Q2","0.74","11.41" +"WIND ENERGY","1095-4244","1099-1824","('ENERGY & FUELS', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","5,569","4.0","('Q3', 'Q1')","0.73","79.24" +"Machine Learning and Knowledge Extraction","","2504-4990","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('ESCI', 'ESCI', 'ESCI')","871","4.0","('Q2', 'Q2', 'Q2')","0.72","100.00" +"Fibers","","2079-6439","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","2,293","4.0","Q2","0.70","100.00" +"Journal of Marketing Analytics","2050-3318","2050-3326","BUSINESS","('ESCI',)","1,029","4.0","Q2","0.68","19.62" +"Geoscience Letters","2196-4092","2196-4092","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","855","4.0","('Q1', 'Q2')","0.67","99.12" +"Journal of Industrial and Production Engineering","2168-1015","2168-1023","ENGINEERING, INDUSTRIAL","('ESCI',)","1,279","4.0","Q2","0.67","3.03" +"Food Production Processing and Nutrition","","2661-8974","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","630","4.0","Q2","0.65","99.23" +"Cell Regeneration","","2045-9769","('CELL & TISSUE ENGINEERING', 'CELL BIOLOGY')","('ESCI', 'ESCI')","484","4.0","('Q2', 'Q2')","0.64","98.88" +"Proteomes","","2227-7382","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","951","4.0","Q2","0.62","99.19" +"Journal of Molecular Structure","0022-2860","1872-8014","CHEMISTRY, PHYSICAL","('SCIE',)","51,984","4.0","Q2","0.61","2.63" +"eFood","","2666-3066","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","462","4.0","Q2","0.53","88.62" +"Clean Technologies","","2571-8797","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","766","4.0","('Q2', 'Q2', 'Q3')","0.49","98.97" +"Advanced NanoBiomed Research","2699-9307","2699-9307","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS', 'NANOSCIENCE & NANOTECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","922","4.0","('Q2', 'Q2', 'Q2')","0.47","79.60" +"Foundations and Trends in Programming Languages","2325-1107","2325-1131","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","93","4.0","Q1","0.43","80.00" +"MIT SLOAN MANAGEMENT REVIEW","1532-9194","1532-8937","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","3,974","4.0","('Q2', 'Q2')","0.32","0.00" +"RSF-The Russell Sage Journal of the Social Sciences","2377-8253","2377-8261","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","2,990","3.9","Q1","2.95","78.17" +"CONTEMPORARY EDUCATIONAL PSYCHOLOGY","0361-476X","1090-2384","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","8,871","3.9","Q1","2.71","25.76" +"INTERNATIONAL AFFAIRS","0020-5850","1468-2346","INTERNATIONAL RELATIONS","('SSCI',)","4,307","3.9","Q1","2.40","42.52" +"International Journal of Qualitative Methods","1609-4069","1609-4069","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","9,583","3.9","Q1","2.17","92.83" +"STATISTICAL SCIENCE","0883-4237","2168-8745","STATISTICS & PROBABILITY","('SCIE',)","8,093","3.9","Q1","2.11","4.55" +"Metacognition and Learning","1556-1623","1556-1631","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","1,783","3.9","('Q1', 'Q1')","1.85","43.75" +"GENDER WORK AND ORGANIZATION","0968-6673","1468-0432","('MANAGEMENT', 'WOMENS STUDIES')","('SSCI', 'SSCI')","5,329","3.9","('Q2', 'Q1')","1.82","46.33" +"READING RESEARCH QUARTERLY","0034-0553","1936-2722","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","3,494","3.9","('Q1', 'Q1')","1.77","30.83" +"Archives of Disease in Childhood-Fetal and Neonatal Edition","1359-2998","1468-2052","PEDIATRICS","('SCIE',)","7,089","3.9","Q1","1.76","24.23" +"Global Environmental Politics","1526-3800","1536-0091","('ENVIRONMENTAL STUDIES', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","1,999","3.9","('Q2', 'Q1', 'Q1')","1.76","22.92" +"Annals of Physical and Rehabilitation Medicine","1877-0657","1877-0665","REHABILITATION","('SCIE',)","3,035","3.9","Q1","1.75","80.37" +"JOURNAL OF PEDIATRICS","0022-3476","1097-6833","PEDIATRICS","('SCIE',)","34,444","3.9","Q1","1.75","19.37" +"Journal of Responsible Innovation","2329-9460","2329-9037","('ETHICS', 'HISTORY & PHILOSOPHY OF SCIENCE', 'MANAGEMENT', 'SOCIAL ISSUES')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","953","3.9","('Q1', 'Q1', 'Q2', 'Q1')","1.73","100.00" +"CLADISTICS","0748-3007","1096-0031","('EVOLUTIONARY BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","3,694","3.9","('Q1', 'Q1')","1.68","23.08" +"BEST PRACTICE & RESEARCH CLINICAL OBSTETRICS & GYNAECOLOGY","1521-6934","1532-1932","OBSTETRICS & GYNECOLOGY","('SCIE',)","5,885","3.9","Q1","1.66","11.85" +"NEUROSURGERY","0148-396X","1524-4040","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","28,340","3.9","('Q1', 'Q1')","1.56","8.22" +"JOURNAL OF COMMUNITY HEALTH","0094-5145","1573-3610","('HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","4,917","3.9","('Q1', 'Q1')","1.55","18.23" +"AQUACULTURE","0044-8486","1873-5622","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","55,100","3.9","('Q1', 'Q1')","1.54","15.72" +"JOURNAL OF LABOR ECONOMICS","0734-306X","1537-5307","('ECONOMICS', 'INDUSTRIAL RELATIONS & LABOR')","('SSCI', 'SSCI')","6,045","3.9","('Q1', 'Q1')","1.54","1.52" +"Journal of Urban Management","2226-5856","2589-0360","URBAN STUDIES","('ESCI',)","905","3.9","Q1","1.48","91.09" +"CHILD DEVELOPMENT","0009-3920","1467-8624","('PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","30,424","3.9","('Q1', 'Q1')","1.47","31.83" +"ACM Transactions on Internet Technology","1533-5399","1557-6051","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","1,727","3.9","('Q2', 'Q1')","1.42","1.52" +"Human Resources for Health","","1478-4491","('HEALTH POLICY & SERVICES', 'INDUSTRIAL RELATIONS & LABOR')","('SSCI', 'SSCI')","4,616","3.9","('Q1', 'Q1')","1.39","99.69" +"JOURNAL OF VASCULAR SURGERY","0741-5214","1097-6809","('PERIPHERAL VASCULAR DISEASE', 'SURGERY')","('SCIE', 'SCIE')","30,173","3.9","('Q1', 'Q1')","1.39","77.23" +"GEOLOGICAL SOCIETY OF AMERICA BULLETIN","0016-7606","1943-2674","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","19,800","3.9","Q1","1.36","6.62" +"JOURNAL OF ENGINEERING EDUCATION","1069-4730","2168-9830","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES', 'ENGINEERING, MULTIDISCIPLINARY')","('SSCI', 'SCIE', 'SCIE')","3,166","3.9","('Q1', 'Q1', 'Q1')","1.36","53.28" +"SCIENTIA HORTICULTURAE","0304-4238","1879-1018","HORTICULTURE","('SCIE',)","35,509","3.9","Q1","1.36","11.37" +"JOURNAL OF SAFETY RESEARCH","0022-4375","1879-1247","('ERGONOMICS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, INTERDISCIPLINARY', 'TRANSPORTATION')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","5,507","3.9","('Q1', 'Q1', 'Q1', 'Q2')","1.35","15.95" +"PHARMACEUTICAL BIOLOGY","1388-0209","1744-5116","('MEDICAL LABORATORY TECHNOLOGY', 'PHARMACOLOGY & PHARMACY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","9,700","3.9","('Q1', 'Q1', 'Q1')","1.33","96.28" +"COMPARATIVE BIOCHEMISTRY AND PHYSIOLOGY C-TOXICOLOGY & PHARMACOLOGY","1532-0456","1878-1659","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM', 'TOXICOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,368","3.9","('Q2', 'Q2', 'Q1', 'Q1')","1.32","10.24" +"Social Cognitive and Affective Neuroscience","1749-5016","1749-5024","('NEUROSCIENCES', 'PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI')","8,305","3.9","('Q2', 'Q1', 'Q1')","1.30","95.63" +"EUROPEAN PSYCHOLOGIST","1016-9040","1878-531X","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","2,337","3.9","Q1","1.29","20.25" +"Human-centric Computing and Information Sciences","","2192-1962","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","1,410","3.9","Q2","1.26","0.00" +"JOURNAL OF GEOPHYSICAL RESEARCH-PLANETS","2169-9097","2169-9100","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","16,109","3.9","Q1","1.26","38.11" +"Transportation Research Interdisciplinary Perspectives","2590-1982","2590-1982","TRANSPORTATION","('ESCI',)","3,665","3.9","Q2","1.25","93.53" +"MATURITAS","0378-5122","1873-4111","('GERIATRICS & GERONTOLOGY', 'OBSTETRICS & GYNECOLOGY')","('SCIE', 'SCIE')","10,245","3.9","('Q2', 'Q1')","1.23","21.13" +"Journal of Comparative Policy Analysis","1387-6988","1572-5448","PUBLIC ADMINISTRATION","('SSCI',)","1,112","3.9","Q1","1.22","20.78" +"Journal of Hospital Infection","0195-6701","1532-2939","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","10,480","3.9","('Q1', 'Q1')","1.22","35.56" +"LGBT Health","2325-8292","2325-8306","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","2,580","3.9","Q1","1.22","4.76" +"OCCUPATIONAL AND ENVIRONMENTAL MEDICINE","1351-0711","1470-7926","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","9,293","3.9","Q1","1.22","33.73" +"Clinical Kidney Journal","2048-8505","2048-8513","UROLOGY & NEPHROLOGY","('SCIE',)","5,449","3.9","Q1","1.21","93.60" +"JOURNAL OF PLANT GROWTH REGULATION","0721-7595","1435-8107","PLANT SCIENCES","('SCIE',)","8,939","3.9","Q1","1.21","6.98" +"PEDIATRIC DIABETES","1399-543X","1399-5448","('ENDOCRINOLOGY & METABOLISM', 'PEDIATRICS')","('SCIE', 'SCIE')","5,403","3.9","('Q2', 'Q1')","1.21","75.75" +"SCHOOL PSYCHOLOGY REVIEW","","2372-966X","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","3,077","3.9","Q1","1.21","1.75" +"Biogeosciences","1726-4170","1726-4189","('ECOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","22,807","3.9","('Q1', 'Q1')","1.20","99.33" +"BMC Medical Research Methodology","","1471-2288","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","24,757","3.9","Q1","1.19","99.66" +"BMJ Open Sport & Exercise Medicine","","2055-7647","SPORT SCIENCES","('ESCI',)","2,688","3.9","Q1","1.19","96.50" +"Organizational Psychology Review","2041-3866","2041-3874","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","1,098","3.9","('Q2', 'Q1')","1.19","21.43" +"Journal of the European Economic Association","1542-4766","1542-4774","ECONOMICS","('SSCI',)","6,336","3.9","Q1","1.17","26.74" +"PLANT AND SOIL","0032-079X","1573-5036","('AGRONOMY', 'PLANT SCIENCES', 'SOIL SCIENCE')","('SCIE', 'SCIE', 'SCIE')","43,060","3.9","('Q1', 'Q1', 'Q2')","1.17","22.04" +"Interdisciplinary Sciences-Computational Life Sciences","1913-2751","1867-1462","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('SCIE',)","1,317","3.9","Q1","1.16","8.47" +"School Psychology","2578-4218","2578-4226","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","833","3.9","Q1","1.15","3.19" +"DRUG AND ALCOHOL DEPENDENCE","0376-8716","1879-0046","('PSYCHIATRY', 'SUBSTANCE ABUSE')","('SCIE, SSCI', 'SCIE, SSCI')","24,292","3.9","('Q1', 'Q1')","1.14","32.41" +"JOURNAL OF PHOTOCHEMISTRY AND PHOTOBIOLOGY B-BIOLOGY","1011-1344","1873-2682","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","16,694","3.9","('Q2', 'Q1')","1.14","19.51" +"JOURNAL OF AIR TRANSPORT MANAGEMENT","0969-6997","1873-2089","TRANSPORTATION","('SSCI',)","5,405","3.9","Q2","1.13","17.02" +"FOOD AND CHEMICAL TOXICOLOGY","0278-6915","1873-6351","('FOOD SCIENCE & TECHNOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","36,293","3.9","('Q2', 'Q1')","1.11","13.07" +"JOURNAL OF ANTIMICROBIAL CHEMOTHERAPY","0305-7453","1460-2091","('INFECTIOUS DISEASES', 'MICROBIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","33,199","3.9","('Q1', 'Q2', 'Q1')","1.11","29.82" +"JOURNAL OF GEOPHYSICAL RESEARCH-SOLID EARTH","2169-9313","2169-9356","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","60,793","3.9","Q1","1.11","31.02" +"Neurology and Therapy","2193-8253","2193-6536","CLINICAL NEUROLOGY","('SCIE',)","1,592","3.9","Q1","1.11","99.31" +"WORLDS POULTRY SCIENCE JOURNAL","0043-9339","1743-4777","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","3,825","3.9","Q1","1.11","7.01" +"ACM Transactions on Sensor Networks","1550-4859","1550-4867","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","1,654","3.9","('Q2', 'Q2')","1.10","0.49" +"AMERICAN JOURNAL OF PHYSIOLOGY-GASTROINTESTINAL AND LIVER PHYSIOLOGY","0193-1857","1522-1547","('GASTROENTEROLOGY & HEPATOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","14,880","3.9","('Q1', 'Q1')","1.10","6.18" +"HISTOPATHOLOGY","0309-0167","1365-2559","('CELL BIOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","12,205","3.9","('Q2', 'Q1')","1.09","28.36" +"EUROPEAN EATING DISORDERS REVIEW","1072-4133","1099-0968","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","3,737","3.9","('Q1', 'Q1')","1.08","51.22" +"PUBLIC HEALTH","0033-3506","1476-5616","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","9,741","3.9","Q1","1.07","28.68" +"STOCHASTIC ENVIRONMENTAL RESEARCH AND RISK ASSESSMENT","1436-3240","1436-3259","('ENGINEERING, CIVIL', 'ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'STATISTICS & PROBABILITY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","6,446","3.9","('Q1', 'Q2', 'Q2', 'Q1', 'Q1')","1.07","15.84" +"Geomechanics and Geophysics for Geo-Energy and Geo-Resources","2363-8419","2363-8427","('ENERGY & FUELS', 'ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","2,087","3.9","('Q3', 'Q1', 'Q1')","1.05","40.54" +"JOURNAL OF GEOTECHNICAL AND GEOENVIRONMENTAL ENGINEERING","1090-0241","1943-5606","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","20,827","3.9","('Q1', 'Q1')","1.05","5.48" +"Asia Pacific Journal of Human Resources","1038-4111","1744-7941","('INDUSTRIAL RELATIONS & LABOR', 'MANAGEMENT')","('SSCI', 'SSCI')","1,354","3.9","('Q1', 'Q2')","1.04","12.39" +"BJPsych Open","2056-4724","2056-4724","PSYCHIATRY","('SCIE', 'SSCI')","3,143","3.9","Q1","1.03","100.00" +"EXPERT REVIEW OF MOLECULAR DIAGNOSTICS","1473-7159","1744-8352","PATHOLOGY","('SCIE',)","3,973","3.9","Q1","1.03","15.33" +"Remote Sensing in Ecology and Conservation","","2056-3485","('ECOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE')","1,494","3.9","('Q1', 'Q2')","1.03","76.83" +"IEEE Transactions on Terahertz Science and Technology","2156-342X","2156-3446","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","3,411","3.9","('Q2', 'Q1', 'Q2')","1.02","14.78" +"Plant Genome","","1940-3372","('GENETICS & HEREDITY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","3,046","3.9","('Q1', 'Q1')","1.02","85.85" +"European Heart Journal-Acute Cardiovascular Care","2048-8726","2048-8734","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","2,863","3.9","Q1","1.00","20.58" +"HUMAN GENE THERAPY","1043-0342","1557-7422","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","6,486","3.9","('Q2', 'Q1', 'Q2')","1.00","16.08" +"WATER RESOURCES MANAGEMENT","0920-4741","1573-1650","('ENGINEERING, CIVIL', 'WATER RESOURCES')","('SCIE', 'SCIE')","15,535","3.9","('Q1', 'Q1')","1.00","13.33" +"HEPATOLOGY RESEARCH","1386-6346","1872-034X","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","4,988","3.9","Q1","0.99","16.77" +"JOURNAL OF GEODESY","0949-7714","1432-1394","('GEOCHEMISTRY & GEOPHYSICS', 'REMOTE SENSING')","('SCIE', 'SCIE')","7,684","3.9","('Q1', 'Q2')","0.98","43.75" +"Journal of Service Theory and Practice","2055-6225","2055-6225","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","1,437","3.9","('Q2', 'Q2')","0.97","15.38" +"PLANT MOLECULAR BIOLOGY","0167-4412","1573-5028","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","16,134","3.9","('Q2', 'Q1')","0.96","16.79" +"APPLIED AND ENVIRONMENTAL MICROBIOLOGY","0099-2240","1098-5336","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","92,314","3.9","('Q2', 'Q2')","0.95","24.98" +"JOURNAL OF ENDOCRINOLOGICAL INVESTIGATION","0391-4097","1720-8386","ENDOCRINOLOGY & METABOLISM","('SCIE',)","8,621","3.9","Q2","0.95","38.23" +"Brodogradnja","0007-215X","1845-5859","ENGINEERING, MARINE","('SCIE',)","543","3.9","Q1","0.94","94.68" +"Journal of Migration and Health","2666-6235","2666-6235","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","610","3.9","Q1","0.94","98.28" +"DNA RESEARCH","1340-2838","1756-1663","GENETICS & HEREDITY","('SCIE',)","3,130","3.9","Q1","0.93","91.59" +"JOURNAL OF NEUROTRAUMA","0897-7151","1557-9042","('CLINICAL NEUROLOGY', 'CRITICAL CARE MEDICINE', 'NEUROSCIENCES')","('SCIE', 'SCIE', 'SCIE')","16,731","3.9","('Q1', 'Q1', 'Q2')","0.93","12.77" +"FUNCTIONAL & INTEGRATIVE GENOMICS","1438-793X","1438-7948","GENETICS & HEREDITY","('SCIE',)","3,212","3.9","Q1","0.92","12.90" +"Obesity Facts","1662-4025","1662-4033","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","3,033","3.9","('Q2', 'Q2')","0.92","99.52" +"Aging-US","1945-4589","","('CELL BIOLOGY', 'GERIATRICS & GERONTOLOGY')","('SCIE', 'SCIE')","27,629","3.9","('Q2', 'Q2')","0.91","92.64" +"JOURNAL OF AEROSOL SCIENCE","0021-8502","1879-1964","('ENGINEERING, CHEMICAL', 'ENGINEERING, MECHANICAL', 'ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","7,949","3.9","('Q2', 'Q1', 'Q2', 'Q2')","0.91","39.49" +"Journal of Applied Accounting Research","0967-5426","1758-8855","BUSINESS, FINANCE","('ESCI',)","1,289","3.9","Q1","0.91","14.45" +"JOURNAL OF THE PERIPHERAL NERVOUS SYSTEM","1085-9489","1529-8027","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","2,011","3.9","('Q1', 'Q2')","0.91","41.91" +"Structures","2352-0124","2352-0124","ENGINEERING, CIVIL","('SCIE',)","16,647","3.9","Q1","0.91","6.79" +"World Allergy Organization Journal","1939-4551","1939-4551","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","3,472","3.9","('Q2', 'Q2')","0.91","81.04" +"BIOGEOCHEMISTRY","0168-2563","1573-515X","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","11,688","3.9","('Q2', 'Q1')","0.89","33.04" +"Biomedicines","","2227-9059","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","28,411","3.9","('Q2', 'Q2', 'Q1')","0.88","99.65" +"European Heart Journal - Digital Health","","2634-3916","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","567","3.9","Q1","0.88","92.17" +"PLANT AND CELL PHYSIOLOGY","0032-0781","1471-9053","('CELL BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","20,285","3.9","('Q2', 'Q1')","0.88","22.43" +"CLINICAL AUTONOMIC RESEARCH","0959-9851","1619-1560","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","2,200","3.9","('Q1', 'Q2')","0.87","30.65" +"Frontiers in Endocrinology","1664-2392","1664-2392","ENDOCRINOLOGY & METABOLISM","('SCIE',)","45,738","3.9","Q2","0.87","99.70" +"Journal of Cereal Science","0733-5210","1095-9963","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","12,072","3.9","Q2","0.86","12.52" +"Journal of Inorganic and Organometallic Polymers and Materials","1574-1443","1574-1451","POLYMER SCIENCE","('SCIE',)","8,270","3.9","Q2","0.86","7.47" +"MANAGEMENT INTERNATIONAL REVIEW","0938-8249","1861-8901","MANAGEMENT","('SSCI',)","2,407","3.9","Q2","0.86","57.78" +"Toxins","","2072-6651","('FOOD SCIENCE & TECHNOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","23,402","3.9","('Q2', 'Q1')","0.86","99.43" +"ASN Neuro","1759-0914","1759-0914","NEUROSCIENCES","('SCIE',)","1,311","3.9","Q2","0.85","93.40" +"Cybersecurity","2523-3246","2523-3246","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('ESCI', 'ESCI', 'ESCI')","668","3.9","('Q2', 'Q2', 'Q1')","0.84","100.00" +"Frontiers of Medicine","2095-0217","2095-0225","('MEDICINE, RESEARCH & EXPERIMENTAL', 'ONCOLOGY')","('SCIE', 'SCIE')","3,031","3.9","('Q2', 'Q2')","0.84","9.22" +"Nutrition & Metabolism","","1743-7075","NUTRITION & DIETETICS","('SCIE',)","5,173","3.9","Q2","0.84","99.15" +"Toxics","","2305-6304","('ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('SCIE', 'SCIE')","7,235","3.9","('Q2', 'Q1')","0.84","99.86" +"Asia Pacific Journal of Marketing and Logistics","1355-5855","1758-4248","BUSINESS","('SSCI',)","3,668","3.9","Q2","0.82","1.52" +"Atmospheric Pollution Research","1309-1042","1309-1042","ENVIRONMENTAL SCIENCES","('SCIE',)","6,869","3.9","Q2","0.82","19.42" +"APPLIED MICROBIOLOGY AND BIOTECHNOLOGY","0175-7598","1432-0614","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","51,516","3.9","Q2","0.81","17.83" +"Maritime Transport Research","2666-822X","2666-822X","('TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","290","3.9","('Q2', 'Q2')","0.81","98.75" +"Energy Ecology and Environment","2363-7692","2363-8338","('ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","1,093","3.9","('Q2', 'Q3')","0.80","16.67" +"PATTERN RECOGNITION LETTERS","0167-8655","1872-7344","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","16,773","3.9","Q2","0.79","13.00" +"Pigment Cell & Melanoma Research","1755-1471","1755-148X","('CELL BIOLOGY', 'DERMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,805","3.9","('Q2', 'Q1', 'Q2')","0.79","30.71" +"BIOCHIMICA ET BIOPHYSICA ACTA-MOLECULAR AND CELL BIOLOGY OF LIPIDS","1388-1981","1879-2618","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CELL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","11,224","3.9","('Q2', 'Q1', 'Q2')","0.78","36.06" +"MITOCHONDRION","1567-7249","1872-8278","('CELL BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","5,187","3.9","('Q2', 'Q1')","0.78","23.10" +"Lipids in Health and Disease","","1476-511X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","9,604","3.9","('Q2', 'Q2')","0.77","100.00" +"CURRENT HYPERTENSION REPORTS","1522-6417","1534-3111","PERIPHERAL VASCULAR DISEASE","('SCIE',)","4,643","3.9","Q1","0.76","26.67" +"ECOLOGICAL ENGINEERING","0925-8574","1872-6992","('ECOLOGY', 'ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE')","21,442","3.9","('Q1', 'Q2', 'Q2')","0.75","21.24" +"Endocrinology and Metabolism","2093-596X","2093-5978","ENDOCRINOLOGY & METABOLISM","('SCIE',)","2,437","3.9","Q2","0.75","99.28" +"Journal of Personal Selling & Sales Management","0885-3134","1557-7813","BUSINESS","('ESCI',)","1,915","3.9","Q2","0.74","7.69" +"City and Environment Interactions","2590-2520","2590-2520","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('ESCI', 'ESCI', 'ESCI')","338","3.9","('Q2', 'Q2', 'Q2')","0.73","95.89" +"COMPUTERS & CHEMICAL ENGINEERING","0098-1354","1873-4375","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","15,589","3.9","('Q2', 'Q2')","0.73","22.80" +"ENGINEERING IN LIFE SCIENCES","1618-0240","1618-2863","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","3,225","3.9","Q2","0.72","55.63" +"INTERNATIONAL JOURNAL OF ADAPTIVE CONTROL AND SIGNAL PROCESSING","0890-6327","1099-1115","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","3,190","3.9","('Q2', 'Q2')","0.72","4.61" +"JOURNAL OF BIOMEDICAL MATERIALS RESEARCH PART A","1549-3296","1552-4965","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","16,978","3.9","('Q2', 'Q3')","0.72","19.74" +"MOLECULAR DIVERSITY","1381-1991","1573-501X","('CHEMISTRY, APPLIED', 'CHEMISTRY, MEDICINAL', 'CHEMISTRY, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","3,994","3.9","('Q2', 'Q2', 'Q2')","0.72","7.62" +"MicrobiologyOpen","2045-8827","2045-8827","MICROBIOLOGY","('SCIE',)","3,853","3.9","Q2","0.71","70.17" +"Frontiers in Molecular Biosciences","","2296-889X","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","16,153","3.9","Q2","0.70","99.49" +"Biomedical Materials","1748-6041","1748-605X","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","5,950","3.9","('Q2', 'Q3')","0.69","16.86" +"World Journal of Psychiatry","2220-3206","2220-3206","PSYCHIATRY","('SCIE',)","1,841","3.9","Q1","0.69","96.72" +"Therapeutic Advances in Gastroenterology","1756-283X","1756-2848","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,511","3.9","Q1","0.68","93.20" +"Therapeutic Advances in Endocrinology and Metabolism","2042-0188","2042-0196","ENDOCRINOLOGY & METABOLISM","('SCIE',)","1,451","3.9","Q2","0.67","90.51" +"CHEMISTRY-A EUROPEAN JOURNAL","0947-6539","1521-3765","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","94,095","3.9","Q2","0.66","33.42" +"Carbon Balance and Management","1750-0680","1750-0680","ENVIRONMENTAL SCIENCES","('SCIE',)","1,109","3.9","Q2","0.65","100.00" +"Materials Science and Engineering B-Advanced Functional Solid-State Materials","0921-5107","1873-4944","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","15,546","3.9","('Q2', 'Q2')","0.64","3.89" +"RSC Advances","","2046-2069","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","195,254","3.9","Q2","0.64","99.67" +"IEEE CONTROL SYSTEMS MAGAZINE","1066-033X","1941-000X","AUTOMATION & CONTROL SYSTEMS","('SCIE',)","4,544","3.9","Q2","0.63","8.89" +"Asia Pacific Journal of Innovation and Entrepreneurship","2071-1395","2398-7812","BUSINESS","('ESCI',)","509","3.9","Q2","0.62","94.12" +"Molecular Catalysis","2468-8231","2468-8231","CHEMISTRY, PHYSICAL","('SCIE',)","10,920","3.9","Q2","0.61","5.69" +"Chinese Journal of Population Resources and Environment","2096-9589","2325-4262","ENVIRONMENTAL STUDIES","('ESCI',)","973","3.9","Q2","0.59","87.74" +"JOURNAL OF POLYMER SCIENCE","2642-4150","2642-4169","POLYMER SCIENCE","('SCIE',)","5,022","3.9","Q2","0.59","18.25" +"Blood and Lymphatic Cancer-Targets and Therapy","1179-9889","1179-9889","ONCOLOGY","('ESCI',)","138","3.9","Q2","0.57","100.00" +"Expert Opinion on Drug Metabolism & Toxicology","1742-5255","1744-7607","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,847","3.9","('Q2', 'Q1', 'Q1')","0.55","16.28" +"Advances in Industrial and Manufacturing Engineering","2666-9129","2666-9129","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING')","('ESCI', 'ESCI')","322","3.9","('Q2', 'Q2')","0.51","98.95" +"Expert Review of Clinical Immunology","1744-666X","1744-8409","IMMUNOLOGY","('SCIE',)","4,265","3.9","Q2","0.51","15.07" +"C-Journal of Carbon Research","","2311-5629","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","1,879","3.9","Q2","0.45","99.28" +"Journal of Nanotechnology","1687-9503","1687-9511","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","1,159","3.9","Q2","0.43","98.33" +"Journal of Numerical Mathematics","1570-2820","1569-3953","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","682","3.8","('Q1', 'Q1')","2.41","5.88" +"JOURNAL OF WORLD PREHISTORY","0892-7537","1573-7802","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","856","3.8","('Q1', 'N/A')","2.41","67.86" +"Foundations and Trends in Computer Graphics and Vision","1572-2740","1572-2759","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","430","3.8","Q2","2.38","90.00" +"Active Learning in Higher Education","1469-7874","1741-2625","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,305","3.8","Q1","2.23","17.05" +"JOURNAL OF THE AMERICAN COLLEGE OF SURGEONS","1072-7515","1879-1190","SURGERY","('SCIE',)","16,379","3.8","Q1","2.06","9.31" +"Policy Reviews in Higher Education","2332-2969","2332-2950","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","162","3.8","Q1","2.01","32.26" +"International Journal for Educational Integrity","1833-2595","1833-2595","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","493","3.8","Q1","1.95","100.00" +"INTERNATIONAL NURSING REVIEW","0020-8132","1466-7657","NURSING","('SCIE', 'SSCI')","2,903","3.8","Q1","1.95","21.37" +"Journal of Mixed Methods Research","1558-6898","1558-6901","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","2,363","3.8","Q1","1.92","22.06" +"Radiology-Cardiothoracic Imaging","2638-6135","2638-6135","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,226","3.8","Q1","1.89","0.00" +"POULTRY SCIENCE","0032-5791","1525-3171","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","36,054","3.8","Q1","1.86","100.00" +"Revista de Psicodidactica","1136-1034","2254-4372","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","692","3.8","('Q1', 'Q1')","1.85","23.33" +"CLINICAL CHEMISTRY AND LABORATORY MEDICINE","1434-6621","1437-4331","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","10,836","3.8","Q1","1.81","25.68" +"Applied Psychology-Health and Well Being","1758-0846","1758-0854","PSYCHOLOGY, APPLIED","('SSCI',)","2,510","3.8","Q1","1.69","36.92" +"POLICY SCIENCES","0032-2687","1573-0891","('PUBLIC ADMINISTRATION', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","3,019","3.8","('Q1', 'Q1')","1.66","55.79" +"JOURNAL OF SCHOOL PSYCHOLOGY","0022-4405","1873-3506","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","4,867","3.8","Q1","1.64","21.23" +"AMERICAN FAMILY PHYSICIAN","0002-838X","1532-0650","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","11,242","3.8","('Q1', 'Q1')","1.59","0.00" +"Forest Ecosystems","2095-6355","2197-5620","FORESTRY","('SCIE',)","1,862","3.8","Q1","1.56","99.11" +"NEW POLITICAL ECONOMY","1356-3467","1469-9923","('ECONOMICS', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","2,711","3.8","('Q1', 'Q1', 'Q1')","1.54","56.73" +"American Journal of Obstetrics & Gynecology MFM","2589-9333","2589-9333","OBSTETRICS & GYNECOLOGY","('SCIE',)","2,520","3.8","Q1","1.52","13.91" +"JOURNAL OF ADVANCED NURSING","0309-2402","1365-2648","NURSING","('SCIE', 'SSCI')","22,916","3.8","Q1","1.51","36.92" +"LEARNING AND INDIVIDUAL DIFFERENCES","1041-6080","1873-3425","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","7,417","3.8","Q1","1.49","34.12" +"PEST MANAGEMENT SCIENCE","1526-498X","1526-4998","('AGRONOMY', 'ENTOMOLOGY')","('SCIE', 'SCIE')","20,843","3.8","('Q1', 'Q1')","1.49","16.97" +"PAKISTAN VETERINARY JOURNAL","0253-8318","2074-7764","VETERINARY SCIENCES","('SCIE',)","1,991","3.8","Q1","1.46","47.65" +"JOURNAL OF COUNSELING PSYCHOLOGY","0022-0167","1939-2168","('PSYCHOLOGY, APPLIED', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","10,490","3.8","('Q1', 'Q1')","1.45","1.52" +"ACADEMIC RADIOLOGY","1076-6332","1878-4046","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","9,023","3.8","Q1","1.41","11.20" +"Journal of Epidemiology and Global Health","2210-6006","2210-6014","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","2,117","3.8","Q1","1.40","98.48" +"MEDICAL CLINICS OF NORTH AMERICA","0025-7125","1557-9859","MEDICINE, GENERAL & INTERNAL","('SCIE',)","5,750","3.8","Q1","1.35","4.58" +"AQUACULTURE ECONOMICS & MANAGEMENT","1365-7305","1551-8663","('AGRICULTURAL ECONOMICS & POLICY', 'FISHERIES')","('SCIE', 'SCIE')","1,122","3.8","('Q1', 'Q1')","1.34","16.67" +"JOURNAL OF DERMATOLOGICAL SCIENCE","0923-1811","1873-569X","DERMATOLOGY","('SCIE',)","6,313","3.8","Q1","1.33","21.11" +"LIMNOLOGY AND OCEANOGRAPHY","0024-3590","1939-5590","('LIMNOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","28,412","3.8","('Q1', 'Q1')","1.32","51.33" +"Translational Stroke Research","1868-4483","1868-601X","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","4,021","3.8","('Q1', 'Q2')","1.30","28.48" +"ULTRASONICS","0041-624X","1874-9968","('ACOUSTICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","10,137","3.8","('Q1', 'Q1')","1.30","17.37" +"SLEEP MEDICINE","1389-9457","1878-5506","CLINICAL NEUROLOGY","('SCIE',)","16,757","3.8","Q1","1.28","24.91" +"DEVELOPMENTAL MEDICINE AND CHILD NEUROLOGY","0012-1622","1469-8749","('CLINICAL NEUROLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","15,327","3.8","('Q1', 'Q1')","1.24","32.05" +"HEALTH & PLACE","1353-8292","1873-2054","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","9,928","3.8","Q1","1.24","43.21" +"Journal of Ovarian Research","","1757-2215","REPRODUCTIVE BIOLOGY","('SCIE',)","4,328","3.8","Q1","1.23","100.00" +"Myrmecological News","1994-4136","","ENTOMOLOGY","('SCIE',)","774","3.8","Q1","1.19","0.00" +"Clinical Research in Cardiology","1861-0684","1861-0692","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","5,035","3.8","Q1","1.16","69.94" +"HUMAN RESOURCE DEVELOPMENT INTERNATIONAL","1367-8868","1469-8374","MANAGEMENT","('ESCI',)","1,732","3.8","Q2","1.16","15.46" +"Journal of Information Security and Applications","2214-2126","2214-2134","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","4,033","3.8","Q2","1.16","9.47" +"NeoBiota","1619-0033","1314-2488","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","1,608","3.8","('Q1', 'Q1')","1.16","97.79" +"Neurospine","2586-6583","2586-6591","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","1,749","3.8","('Q1', 'Q1')","1.16","100.00" +"Asian Journal of Psychiatry","1876-2018","1876-2026","PSYCHIATRY","('SCIE',)","6,438","3.8","Q1","1.15","12.82" +"PROCEEDINGS OF THE ROYAL SOCIETY B-BIOLOGICAL SCIENCES","0962-8452","1471-2954","('BIOLOGY', 'ECOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","56,545","3.8","('Q1', 'Q1', 'Q1')","1.13","54.45" +"JOURNAL OF COMPUTATIONAL PHYSICS","0021-9991","1090-2716","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","65,817","3.8","('Q2', 'Q1')","1.12","40.78" +"JOURNAL OF INTERNATIONAL ECONOMICS","0022-1996","1873-0353","ECONOMICS","('SSCI',)","10,824","3.8","Q1","1.12","20.85" +"Bulletin of Earthquake Engineering","1570-761X","1573-1456","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","9,544","3.8","('Q2', 'Q1')","1.11","31.57" +"JOURNAL OF PROTEOME RESEARCH","1535-3893","1535-3907","BIOCHEMICAL RESEARCH METHODS","('SCIE',)","22,632","3.8","Q1","1.11","19.17" +"Sustainable Computing-Informatics & Systems","2210-5379","2210-5387","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","2,436","3.8","('Q1', 'Q2')","1.10","8.52" +"IEEE JOURNAL OF OCEANIC ENGINEERING","0364-9059","1558-1691","('ENGINEERING, CIVIL', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, OCEAN', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,569","3.8","('Q1', 'Q2', 'Q2', 'Q1')","1.09","14.78" +"North American Journal of Economics and Finance","1062-9408","1879-0860","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","4,212","3.8","('Q1', 'Q1')","1.09","7.17" +"ECONOMIC JOURNAL","0013-0133","1468-0297","ECONOMICS","('SSCI',)","16,200","3.8","Q1","1.08","24.60" +"IEEE TRANSACTIONS ON POWER DELIVERY","0885-8977","1937-4208","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","22,482","3.8","Q2","1.08","4.10" +"AMERICAN JOURNAL OF INFECTION CONTROL","0196-6553","1527-3296","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","10,831","3.8","('Q2', 'Q1')","1.07","20.15" +"TQM Journal","1754-2731","1754-274X","MANAGEMENT","('ESCI',)","3,082","3.8","Q2","1.06","13.62" +"Scientific Reports","2045-2322","2045-2322","MULTIDISCIPLINARY SCIENCES","('SCIE',)","734,562","3.8","Q1","1.05","99.85" +"PLoS Computational Biology","1553-734X","1553-7358","('BIOCHEMICAL RESEARCH METHODS', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","40,114","3.8","('Q1', 'Q1')","1.04","99.67" +"ACS Bio & Med Chem Au","","2694-2437","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL')","('ESCI', 'ESCI')","278","3.8","('Q2', 'Q2')","1.03","69.09" +"Journal of Applied Research on Medicinal and Aromatic Plants","","2214-7861","PLANT SCIENCES","('SCIE',)","1,738","3.8","Q1","1.03","3.36" +"HUMAN GENETICS","0340-6717","1432-1203","GENETICS & HEREDITY","('SCIE',)","8,958","3.8","Q2","1.02","37.64" +"Journal of Intensive Care","2052-0492","2052-0492","CRITICAL CARE MEDICINE","('SCIE',)","2,431","3.8","Q1","1.02","100.00" +"OPTICAL MATERIALS","0925-3467","1873-1252","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'OPTICS')","('SCIE', 'SCIE')","27,060","3.8","('Q2', 'Q1')","1.01","3.60" +"Climate of the Past","1814-9324","1814-9332","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","6,183","3.8","('Q1', 'Q2')","1.00","99.74" +"INFORMATION AND SOFTWARE TECHNOLOGY","0950-5849","1873-6025","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","7,052","3.8","('Q2', 'Q1')","1.00","26.40" +"JOURNAL OF CHROMATOGRAPHY A","0021-9673","1873-3778","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE')","50,509","3.8","('Q1', 'Q1')","1.00","18.48" +"Journal of Functional Foods","1756-4646","2214-9414","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","22,325","3.8","('Q2', 'Q2')","1.00","97.39" +"WOUND REPAIR AND REGENERATION","1067-1927","1524-475X","('CELL BIOLOGY', 'DERMATOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'SURGERY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,991","3.8","('Q2', 'Q1', 'Q2', 'Q1')","1.00","24.29" +"JMIR Serious Games","2291-9279","2291-9279","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE', 'SCIE')","1,758","3.8","('Q1', 'Q2', 'Q1')","0.99","98.34" +"Journal of Global Operations and Strategic Sourcing","2398-5364","2398-5364","MANAGEMENT","('ESCI',)","554","3.8","Q2","0.99","8.93" +"DM DISEASE-A-MONTH","0011-5029","1557-8194","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,323","3.8","Q1","0.98","3.08" +"International Journal of Social Robotics","1875-4791","1875-4805","ROBOTICS","('SCIE',)","4,472","3.8","Q2","0.98","53.95" +"AMERICAN JOURNAL OF PHARMACEUTICAL EDUCATION","0002-9459","1553-6467","('EDUCATION, SCIENTIFIC DISCIPLINES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","6,433","3.8","('Q1', 'Q2')","0.97","79.27" +"Human Genomics","1473-9542","1479-7364","GENETICS & HEREDITY","('SCIE',)","2,107","3.8","Q2","0.97","99.59" +"ANALYTICAL AND BIOANALYTICAL CHEMISTRY","1618-2642","1618-2650","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE')","33,575","3.8","('Q1', 'Q1')","0.96","27.90" +"CLIMATE DYNAMICS","0930-7575","1432-0894","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","28,389","3.8","Q2","0.96","30.83" +"IEEE Transactions on Biomedical Circuits and Systems","1932-4545","1940-9990","('ENGINEERING, BIOMEDICAL', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","5,266","3.8","('Q2', 'Q2')","0.96","15.11" +"JOURNAL OF INORGANIC BIOCHEMISTRY","0162-0134","1873-3344","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, INORGANIC & NUCLEAR')","('SCIE', 'SCIE')","11,945","3.8","('Q2', 'Q1')","0.96","19.42" +"PROGRESS IN OCEANOGRAPHY","0079-6611","1873-4472","OCEANOGRAPHY","('SCIE',)","11,535","3.8","Q1","0.94","47.74" +"BRITISH JOURNAL OF CLINICAL PSYCHOLOGY","0144-6657","2044-8260","PSYCHOLOGY, CLINICAL","('SSCI',)","4,285","3.8","Q1","0.92","45.86" +"Physical Review Applied","2331-7019","2331-7019","PHYSICS, APPLIED","('SCIE',)","23,265","3.8","Q2","0.92","10.12" +"JOURNAL OF GEOPHYSICAL RESEARCH-ATMOSPHERES","2169-897X","2169-8996","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","75,097","3.8","Q2","0.91","29.09" +"Current Heart Failure Reports","1546-9530","1546-9549","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","1,444","3.8","Q1","0.90","39.55" +"SPACE WEATHER-THE INTERNATIONAL JOURNAL OF RESEARCH AND APPLICATIONS","","1542-7390","('ASTRONOMY & ASTROPHYSICS', 'GEOCHEMISTRY & GEOPHYSICS', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE')","4,941","3.8","('Q2', 'Q1', 'Q2')","0.90","81.10" +"Planetary Science Journal","","2632-3338","ASTRONOMY & ASTROPHYSICS","('ESCI',)","2,457","3.8","Q2","0.89","98.80" +"Visual Informatics","2468-502X","2468-502X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('ESCI', 'ESCI', 'ESCI')","527","3.8","('Q2', 'Q2', 'Q1')","0.86","96.84" +"COMMENTS ON INORGANIC CHEMISTRY","0260-3594","1548-9574","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","592","3.8","Q1","0.85","2.27" +"CURRENT GENE THERAPY","1566-5232","1875-5631","GENETICS & HEREDITY","('SCIE',)","1,488","3.8","Q2","0.85","5.88" +"EuroMed Journal of Business","1450-2194","1758-888X","BUSINESS","('ESCI',)","943","3.8","Q2","0.85","5.41" +"Journal of Sustainable Finance & Investment","2043-0795","2043-0809","('BUSINESS, FINANCE', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","1,837","3.8","('Q1', 'Q3')","0.85","15.46" +"ONCOLOGY REPORTS","1021-335X","1791-2431","ONCOLOGY","('SCIE',)","20,962","3.8","Q2","0.85","75.70" +"Applied System Innovation","","2571-5577","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI', 'ESCI')","1,252","3.8","('Q2', 'Q2', 'Q2')","0.84","99.70" +"Atmospheric Environment-X","","2590-1621","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('ESCI', 'ESCI')","737","3.8","('Q2', 'Q2')","0.84","93.02" +"ARCHIVES OF BIOCHEMISTRY AND BIOPHYSICS","0003-9861","1096-0384","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","22,393","3.8","('Q2', 'Q1')","0.83","19.97" +"ACTA MECHANICA SINICA","0567-7718","1614-3116","('ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE')","3,793","3.8","('Q1', 'Q1')","0.82","4.64" +"ENDOCRINOLOGY","0013-7227","1945-7170","ENDOCRINOLOGY & METABOLISM","('SCIE',)","34,942","3.8","Q2","0.82","24.73" +"EXCLI Journal","1611-2156","1611-2156","BIOLOGY","('SCIE',)","3,320","3.8","Q1","0.82","0.00" +"Geoenvironmental Disasters","","2197-8670","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","937","3.8","('Q2', 'Q1')","0.82","100.00" +"Remote Sensing Applications-Society and Environment","2352-9385","2352-9385","('ENVIRONMENTAL SCIENCES', 'REMOTE SENSING')","('ESCI', 'ESCI')","3,763","3.8","('Q2', 'Q2')","0.82","21.70" +"JOINT BONE SPINE","1297-319X","1778-7254","RHEUMATOLOGY","('SCIE',)","4,479","3.8","Q1","0.81","42.02" +"JOURNAL OF VINYL & ADDITIVE TECHNOLOGY","1083-5601","1548-0585","('CHEMISTRY, APPLIED', 'MATERIALS SCIENCE, TEXTILES', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","1,893","3.8","('Q2', 'Q1', 'Q2')","0.81","6.59" +"Biochemia Medica","1330-0962","1846-7482","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","4,520","3.8","Q1","0.80","88.37" +"Journal of Advanced Joining Processes","2666-3309","2666-3309","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('ESCI', 'ESCI')","531","3.8","('Q2', 'Q1')","0.80","98.47" +"Vacuum","0042-207X","1879-2715","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","21,153","3.8","('Q2', 'Q2')","0.80","5.79" +"Bioengineering-Basel","","2306-5354","ENGINEERING, BIOMEDICAL","('SCIE',)","7,760","3.8","Q2","0.79","99.88" +"International Journal of Lean Six Sigma","2040-4166","2040-4174","('ENGINEERING, INDUSTRIAL', 'MANAGEMENT')","('SCIE', 'SSCI')","1,738","3.8","('Q2', 'Q2')","0.79","10.64" +"Journal of Strategy and Management","1755-425X","1755-425X","MANAGEMENT","('ESCI',)","1,022","3.8","Q2","0.79","12.70" +"Viruses-Basel","","1999-4915","VIROLOGY","('SCIE',)","43,838","3.8","Q2","0.79","99.69" +"MOLECULAR AND CELLULAR ENDOCRINOLOGY","0303-7207","1872-8057","('CELL BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","16,133","3.8","('Q2', 'Q2')","0.78","25.68" +"Stem Cells International","1687-966X","1687-9678","CELL & TISSUE ENGINEERING","('SCIE',)","9,438","3.8","Q2","0.78","99.82" +"Journal of Obesity","2090-0708","2090-0716","ENDOCRINOLOGY & METABOLISM","('ESCI',)","2,005","3.8","Q2","0.77","100.00" +"Polish Archives of Internal Medicine-Polskie Archiwum Medycyny Wewnetrznej","0032-3772","1897-9483","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,142","3.8","Q1","0.77","97.38" +"COLD REGIONS SCIENCE AND TECHNOLOGY","0165-232X","1872-7441","('ENGINEERING, CIVIL', 'ENGINEERING, ENVIRONMENTAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","9,968","3.8","('Q1', 'Q2', 'Q1')","0.76","18.31" +"One Health Outlook","2524-4655","2524-4655","('INFECTIOUS DISEASES', 'MICROBIOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI', 'ESCI')","295","3.8","('Q2', 'Q2', 'Q1')","0.73","98.15" +"Open Forum Infectious Diseases","2328-8957","2328-8957","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","12,377","3.8","('Q2', 'Q2', 'Q2')","0.73","94.77" +"Gastroenterology Report","2052-0034","2052-0034","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","1,663","3.8","Q2","0.70","93.52" +"Journal of Services Marketing","0887-6045","0887-6045","BUSINESS","('SSCI',)","5,424","3.8","Q2","0.70","7.08" +"Utilities Policy","0957-1787","1878-4356","('ENERGY & FUELS', 'ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SCIE', 'SSCI')","3,308","3.8","('Q3', 'Q2', 'Q2')","0.70","23.63" +"Animal Models and Experimental Medicine","2096-5451","2576-2095","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('ESCI', 'ESCI')","858","3.8","('Q2', 'Q2')","0.68","74.86" +"BRQ-Business Research Quarterly","2340-9444","2340-9444","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","1,055","3.8","('Q2', 'Q2')","0.67","94.74" +"Actas Dermo-Sifiliograficas","0001-7310","1578-2190","DERMATOLOGY","('ESCI',)","2,455","3.8","Q1","0.63","97.71" +"Chemical Engineering and Processing-Process Intensification","0255-2701","1873-3204","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","12,946","3.8","('Q3', 'Q2')","0.63","10.14" +"Expert Review of Gastroenterology & Hepatology","1747-4124","1747-4132","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,749","3.8","Q2","0.62","10.34" +"Current Developments in Nutrition","2475-2991","2475-2991","NUTRITION & DIETETICS","('ESCI',)","2,594","3.8","Q2","0.60","91.76" +"CURRENT OPINION IN LIPIDOLOGY","0957-9672","1473-6535","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE', 'SCIE')","3,994","3.8","('Q2', 'Q2', 'Q1')","0.60","18.25" +"CURRENT TREATMENT OPTIONS IN ONCOLOGY","1527-2729","1534-6277","ONCOLOGY","('SCIE',)","3,389","3.8","Q2","0.59","20.75" +"Green Processing and Synthesis","2191-9542","2191-9550","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,203","3.8","('Q2', 'Q2', 'Q3')","0.59","96.97" +"INDUSTRIAL & ENGINEERING CHEMISTRY RESEARCH","0888-5885","1520-5045","ENGINEERING, CHEMICAL","('SCIE',)","89,963","3.8","Q2","0.59","7.05" +"Chemical Physics Impact","2667-0224","2667-0224","CHEMISTRY, PHYSICAL","('ESCI',)","853","3.8","Q2","0.57","95.22" +"WATER AIR AND SOIL POLLUTION","0049-6979","1573-2932","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","21,658","3.8","('Q2', 'Q2', 'Q1')","0.57","8.85" +"BIOSCIENCE REPORTS","0144-8463","1573-4935","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","12,048","3.8","('Q2', 'Q2')","0.56","99.20" +"Frontiers in Chemistry","2296-2646","2296-2646","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","28,582","3.8","Q2","0.56","99.50" +"Therapeutic Advances in Infectious Disease","2049-9361","2049-937X","INFECTIOUS DISEASES","('ESCI',)","1,069","3.8","Q2","0.54","93.27" +"ChemCatChem","1867-3880","1867-3899","CHEMISTRY, PHYSICAL","('SCIE',)","23,980","3.8","Q2","0.53","32.08" +"Expert Review of Proteomics","1478-9450","1744-8387","BIOCHEMICAL RESEARCH METHODS","('SCIE',)","2,440","3.8","Q1","0.52","17.29" +"Translational Gastroenterology and Hepatology","","2415-1289","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","1,150","3.8","Q2","0.47","92.13" +"Catalysts","","2073-4344","CHEMISTRY, PHYSICAL","('SCIE',)","29,882","3.8","Q2","0.46","99.41" +"IET Nanobiotechnology","1751-8741","1751-875X","('BIOCHEMICAL RESEARCH METHODS', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","2,567","3.8","('Q1', 'Q3')","0.45","69.12" +"BIOCHEMICAL SOCIETY TRANSACTIONS","0300-5127","1470-8752","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","13,414","3.8","Q2","0.44","54.36" +"IET Nanodielectrics","","2514-3255","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","455","3.8","('Q2', 'Q2', 'Q3')","0.44","75.76" +"Pulse","2235-8676","2235-8668","PERIPHERAL VASCULAR DISEASE","('ESCI',)","370","3.8","Q1","0.40","40.74" +"Weather and Climate","0111-5499","0111-5499","METEOROLOGY & ATMOSPHERIC SCIENCES","('ESCI',)","92","3.8","Q2","0.16","0.00" +"Humanities & Social Sciences Communications","","2662-9992","('HUMANITIES, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('AHCI', 'SSCI')","4,002","3.7","('N/A', 'Q1')","4.66","99.94" +"COMPUTATIONAL LINGUISTICS","0891-2017","1530-9312","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SCIE', 'SCIE', 'AHCI', 'SSCI')","2,329","3.7","('Q2', 'Q2', 'N/A', 'Q1')","3.12","98.80" +"Distance Education","0158-7919","1475-0198","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,917","3.7","Q1","2.47","19.81" +"Studies in Second Language Learning and Teaching","2083-5205","2084-1965","LINGUISTICS","('SSCI',)","1,192","3.7","Q1","2.27","93.24" +"STUDIES IN HIGHER EDUCATION","0307-5079","1470-174X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","9,395","3.7","Q1","2.13","33.75" +"BRITISH JOURNAL OF OPHTHALMOLOGY","0007-1161","1468-2079","OPHTHALMOLOGY","('SCIE',)","23,818","3.7","Q1","1.94","23.68" +"INTERACTIVE LEARNING ENVIRONMENTS","1049-4820","1744-5191","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","6,296","3.7","Q1","1.94","6.35" +"VETERINARY RESEARCH","0928-4249","1297-9716","VETERINARY SCIENCES","('SCIE',)","6,653","3.7","Q1","1.90","99.21" +"Democratization","1351-0347","1743-890X","POLITICAL SCIENCE","('SSCI',)","3,263","3.7","Q1","1.64","37.18" +"Clinical Implant Dentistry and Related Research","1523-0899","1708-8208","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","5,765","3.7","Q1","1.61","25.60" +"Journal of Nursing Management","0966-0429","1365-2834","('MANAGEMENT', 'NURSING')","('SSCI', 'SCIE, SSCI')","8,262","3.7","('Q2', 'Q1')","1.58","79.36" +"Nonlinear Analysis-Hybrid Systems","1751-570X","1878-7460","('AUTOMATION & CONTROL SYSTEMS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,954","3.7","('Q2', 'Q1')","1.55","12.42" +"REVIEW OF INTERNATIONAL POLITICAL ECONOMY","0969-2290","1466-4526","('ECONOMICS', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","3,996","3.7","('Q1', 'Q1', 'Q1')","1.55","47.64" +"South European Society and Politics","1360-8746","1743-9612","('POLITICAL SCIENCE', 'SOCIAL ISSUES')","('SSCI', 'SSCI')","963","3.7","('Q1', 'Q1')","1.55","12.50" +"NEUROREHABILITATION AND NEURAL REPAIR","1545-9683","1552-6844","('CLINICAL NEUROLOGY', 'REHABILITATION')","('SCIE', 'SCIE')","6,733","3.7","('Q1', 'Q1')","1.52","27.46" +"ARCHIVES OF PATHOLOGY & LABORATORY MEDICINE","0003-9985","1543-2165","('MEDICAL LABORATORY TECHNOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","11,117","3.7","('Q2', 'Q2', 'Q1')","1.50","91.90" +"Disability and Health Journal","1936-6574","1876-7583","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'REHABILITATION')","('SCIE', 'SSCI', 'SCIE, SSCI', 'SCIE, SSCI')","3,360","3.7","('Q1', 'Q1', 'Q1', 'Q1')","1.50","23.53" +"JOURNAL OF YOUTH AND ADOLESCENCE","0047-2891","1573-6601","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","13,112","3.7","Q1","1.46","31.57" +"ARTHRITIS CARE & RESEARCH","2151-464X","2151-4658","RHEUMATOLOGY","('SCIE',)","18,202","3.7","Q1","1.43","22.02" +"FOREST ECOLOGY AND MANAGEMENT","0378-1127","1872-7042","FORESTRY","('SCIE',)","43,720","3.7","Q1","1.43","32.38" +"Journal of Commodity Markets","2405-8513","2405-8505","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","737","3.7","('Q1', 'Q1')","1.39","23.66" +"ADDICTIVE BEHAVIORS","0306-4603","1873-6327","('PSYCHOLOGY, CLINICAL', 'SUBSTANCE ABUSE')","('SSCI', 'SCIE, SSCI')","16,298","3.7","('Q1', 'Q1')","1.34","22.06" +"BIOLOGICAL CONTROL","1049-9644","1090-2112","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENTOMOLOGY')","('SCIE', 'SCIE')","11,489","3.7","('Q2', 'Q1')","1.34","27.03" +"JOURNAL OF EPIDEMIOLOGY","0917-5040","0917-5040","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","4,342","3.7","Q1","1.34","98.94" +"Journal of Safety Science and Resilience","2096-7527","2666-4496","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","398","3.7","Q1","1.34","94.00" +"AMERICAN JOURNAL OF PHYSIOLOGY-RENAL PHYSIOLOGY","1931-857X","1522-1466","('PHYSIOLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","15,748","3.7","('Q1', 'Q1')","1.33","5.00" +"BJU INTERNATIONAL","1464-4096","1464-410X","UROLOGY & NEPHROLOGY","('SCIE',)","18,351","3.7","Q1","1.33","34.39" +"JOURNAL OF EXPERIMENTAL PSYCHOLOGY-GENERAL","0096-3445","1939-2222","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","14,645","3.7","Q1","1.33","7.72" +"REPRODUCTIVE BIOMEDICINE ONLINE","1472-6483","1472-6491","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","10,432","3.7","('Q1', 'Q1')","1.32","18.10" +"JOURNAL OF SUBSTANCE ABUSE TREATMENT","0740-5472","1873-6483","('PSYCHOLOGY, CLINICAL', 'SUBSTANCE ABUSE')","('SSCI', 'SSCI')","7,751","3.7","('Q1', 'Q1')","1.29","28.37" +"JOURNAL OF BUSINESS AND PSYCHOLOGY","0889-3268","1573-353X","('BUSINESS', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","5,921","3.7","('Q2', 'Q1')","1.27","21.32" +"Research in Social & Administrative Pharmacy","1551-7411","1934-8150","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","5,189","3.7","Q1","1.24","20.62" +"JOURNAL OF DAIRY SCIENCE","0022-0302","1525-3198","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","66,785","3.7","('Q1', 'Q2')","1.23","97.59" +"THROMBOSIS RESEARCH","0049-3848","1879-2472","('HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","13,200","3.7","('Q1', 'Q1')","1.22","27.73" +"IEEE INTERNET COMPUTING","1089-7801","1941-0131","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","2,074","3.7","Q1","1.19","16.44" +"Asia-Pacific Journal of Ophthalmology","","2162-0989","OPHTHALMOLOGY","('SCIE',)","1,858","3.7","Q1","1.16","98.33" +"CRISPR Journal","2573-1599","2573-1602","GENETICS & HEREDITY","('SCIE',)","1,096","3.7","Q2","1.16","19.46" +"CHEMOMETRICS AND INTELLIGENT LABORATORY SYSTEMS","0169-7439","1873-3239","('AUTOMATION & CONTROL SYSTEMS', 'CHEMISTRY, ANALYTICAL', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'INSTRUMENTS & INSTRUMENTATION', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","11,246","3.7","('Q2', 'Q2', 'Q2', 'Q1', 'Q1', 'Q1')","1.15","19.85" +"European Journal of Ageing","1613-9372","1613-9380","GERONTOLOGY","('SSCI',)","2,446","3.7","Q1","1.15","76.09" +"IEEE Consumer Electronics Magazine","2162-2248","2162-2256","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","1,755","3.7","('Q1', 'Q2', 'Q2')","1.15","4.81" +"JOURNAL OF FINANCIAL AND QUANTITATIVE ANALYSIS","0022-1090","1756-6916","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","9,941","3.7","('Q1', 'Q1')","1.15","22.49" +"Metabolic Engineering Communications","2214-0301","2214-0301","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('ESCI',)","832","3.7","Q2","1.15","85.92" +"PSYCHOLOGY AND AGING","0882-7974","1939-1498","('GERONTOLOGY', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","9,648","3.7","('Q1', 'Q1')","1.15","5.58" +"AMERICAN HEART JOURNAL","0002-8703","1097-6744","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","17,529","3.7","Q1","1.14","28.70" +"INTERNATIONAL JOURNAL FOR PARASITOLOGY","0020-7519","1879-0135","PARASITOLOGY","('SCIE',)","8,713","3.7","Q1","1.14","34.27" +"JOURNAL OF AGRONOMY AND CROP SCIENCE","0931-2250","1439-037X","AGRONOMY","('SCIE',)","4,423","3.7","Q1","1.13","23.44" +"COMPUTATIONAL MECHANICS","0178-7675","1432-0924","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MECHANICS')","('SCIE', 'SCIE')","8,232","3.7","('Q1', 'Q1')","1.12","41.87" +"JOURNAL OF PSYCHIATRIC RESEARCH","0022-3956","1879-1379","PSYCHIATRY","('SCIE', 'SSCI')","22,201","3.7","Q1","1.11","27.30" +"European Radiology Experimental","","2509-9280","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,317","3.7","Q1","1.10","100.00" +"IEEE Journal on Emerging and Selected Topics in Circuits and Systems","2156-3357","2156-3365","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","2,331","3.7","Q2","1.09","20.00" +"ACS Synthetic Biology","2161-5063","","BIOCHEMICAL RESEARCH METHODS","('SCIE',)","10,487","3.7","Q1","1.08","20.81" +"DEVELOPMENT","0950-1991","1477-9129","DEVELOPMENTAL BIOLOGY","('SCIE',)","49,508","3.7","Q1","1.08","44.86" +"JOURNAL OF THE FRANKLIN INSTITUTE-ENGINEERING AND APPLIED MATHEMATICS","0016-0032","1879-2693","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","14,797","3.7","('Q2', 'Q2', 'Q1', 'Q1')","1.08","2.55" +"Dermatologic Therapy","1396-0296","1529-8019","DERMATOLOGY","('SCIE',)","7,546","3.7","Q1","1.06","80.38" +"INTERNATIONAL JOURNAL OF MEDICAL INFORMATICS","1386-5056","1872-8243","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE', 'SCIE')","9,217","3.7","('Q2', 'Q1', 'Q2')","1.05","32.13" +"NEUROBIOLOGY OF AGING","0197-4580","1558-1497","('GERIATRICS & GERONTOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","23,420","3.7","('Q2', 'Q2')","1.05","42.15" +"Plants People Planet","","2572-2611","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","1,335","3.7","('Q1', 'Q1', 'Q1')","1.05","91.29" +"BIOLOGICAL PROCEDURES ONLINE","","1480-9222","BIOCHEMICAL RESEARCH METHODS","('SCIE',)","1,279","3.7","Q1","1.04","100.00" +"EUROPEAN JOURNAL OF HUMAN GENETICS","1018-4813","1476-5438","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","11,569","3.7","('Q2', 'Q2')","1.04","50.00" +"JOURNAL OF SYSTEMS ARCHITECTURE","1383-7621","1873-6165","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","3,274","3.7","('Q1', 'Q1')","1.04","15.91" +"MARINE AND PETROLEUM GEOLOGY","0264-8172","1873-4073","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","23,172","3.7","Q1","1.04","13.80" +"CLINICAL NEUROPHYSIOLOGY","1388-2457","1872-8952","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","21,112","3.7","('Q1', 'Q2')","1.03","38.99" +"International Journal of Digital Earth","1753-8947","1753-8955","('GEOGRAPHY, PHYSICAL', 'REMOTE SENSING')","('SCIE', 'SCIE')","3,111","3.7","('Q1', 'Q2')","1.03","86.35" +"JOURNAL OF SYSTEMS AND SOFTWARE","0164-1212","1873-1228","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","7,641","3.7","('Q1', 'Q1')","1.02","31.91" +"Journal of Oral Microbiology","","2000-2297","MICROBIOLOGY","('SCIE',)","2,065","3.7","Q2","1.01","97.60" +"ACM Transactions on Quantum Computing","2643-6809","2643-6817","('COMPUTER SCIENCE, THEORY & METHODS', 'QUANTUM SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","225","3.7","('Q1', 'Q2')","0.99","1.52" +"Supply Chain Forum","1625-8312","1624-6039","MANAGEMENT","('ESCI',)","886","3.7","Q2","0.99","10.38" +"Advanced Therapeutics","","2366-3987","PHARMACOLOGY & PHARMACY","('SCIE',)","2,818","3.7","Q2","0.98","25.95" +"Anaesthesia Critical Care & Pain Medicine","2352-5568","2352-5568","('ANESTHESIOLOGY', 'CRITICAL CARE MEDICINE')","('SCIE', 'SCIE')","1,689","3.7","('Q1', 'Q1')","0.98","34.15" +"IEEE COMMUNICATIONS LETTERS","1089-7798","1558-2558","TELECOMMUNICATIONS","('SCIE',)","17,922","3.7","Q2","0.98","14.01" +"Endocrine Practice","1530-891X","1934-2403","ENDOCRINOLOGY & METABOLISM","('SCIE',)","5,782","3.7","Q2","0.97","14.82" +"EUROPEAN JOURNAL OF SOIL BIOLOGY","1164-5563","1778-3615","('ECOLOGY', 'SOIL SCIENCE')","('SCIE', 'SCIE')","4,309","3.7","('Q1', 'Q2')","0.97","15.10" +"European Review of Aging and Physical Activity","1813-7253","1861-6909","GERIATRICS & GERONTOLOGY","('SCIE',)","977","3.7","Q2","0.97","100.00" +"IEEE Antennas and Wireless Propagation Letters","1536-1225","1548-5757","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","22,623","3.7","('Q2', 'Q2')","0.96","10.44" +"Microbiology Spectrum","2165-0497","2165-0497","MICROBIOLOGY","('SCIE',)","16,956","3.7","Q2","0.96","80.65" +"mSphere","","2379-5042","MICROBIOLOGY","('SCIE',)","7,844","3.7","Q2","0.96","78.97" +"Journal of Breath Research","1752-7155","1752-7163","('BIOCHEMICAL RESEARCH METHODS', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","2,576","3.7","('Q1', 'Q1')","0.95","41.82" +"JOURNAL OF KING SAUD UNIVERSITY SCIENCE","1018-3647","2213-686X","MULTIDISCIPLINARY SCIENCES","('SCIE',)","8,186","3.7","Q1","0.95","96.00" +"Sport Management Review","1441-3523","1839-2083","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'MANAGEMENT')","('SSCI', 'SSCI')","3,155","3.7","('Q1', 'Q2')","0.95","18.52" +"DISPLAYS","0141-9382","1872-7387","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION', 'OPTICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,270","3.7","('Q1', 'Q2', 'Q1', 'Q2')","0.94","6.32" +"Addiction Science & Clinical Practice","1940-0640","1940-0640","SUBSTANCE ABUSE","('SCIE', 'SSCI')","1,443","3.7","Q1","0.93","99.50" +"BMJ Open Diabetes Research & Care","","2052-4897","ENDOCRINOLOGY & METABOLISM","('SCIE',)","4,674","3.7","Q2","0.93","99.78" +"Lupus Science & Medicine","2053-8790","2053-8790","RHEUMATOLOGY","('SCIE',)","1,539","3.7","Q1","0.92","100.00" +"Quantitative InfraRed Thermography Journal","1768-6733","2116-7176","('INSTRUMENTS & INSTRUMENTATION', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","604","3.7","('Q1', 'Q1', 'Q2')","0.92","11.76" +"Journal of Global Antimicrobial Resistance","2213-7165","2213-7173","('INFECTIOUS DISEASES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","5,239","3.7","('Q2', 'Q2')","0.91","90.88" +"REPRODUCTION","1470-1626","1741-7899","('DEVELOPMENTAL BIOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","10,249","3.7","('Q1', 'Q1')","0.91","12.80" +"CANCER EPIDEMIOLOGY BIOMARKERS & PREVENTION","1055-9965","1538-7755","('ONCOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","18,822","3.7","('Q2', 'Q1')","0.90","18.14" +"APPLIED ORGANOMETALLIC CHEMISTRY","0268-2605","1099-0739","('CHEMISTRY, APPLIED', 'CHEMISTRY, INORGANIC & NUCLEAR')","('SCIE', 'SCIE')","12,955","3.7","('Q2', 'Q2')","0.89","2.76" +"Big Data and Cognitive Computing","","2504-2289","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('ESCI', 'ESCI', 'ESCI')","1,692","3.7","('Q2', 'Q2', 'Q1')","0.89","100.00" +"Journal of Cloud Computing-Advances Systems and Applications","","2192-113X","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","1,420","3.7","Q2","0.89","99.69" +"Journal of Neural Engineering","1741-2560","1741-2552","('ENGINEERING, BIOMEDICAL', 'NEUROSCIENCES')","('SCIE', 'SCIE')","13,115","3.7","('Q2', 'Q2')","0.89","37.75" +"JOURNAL OF NUTRITION","0022-3166","1541-6100","NUTRITION & DIETETICS","('SCIE',)","37,758","3.7","Q2","0.89","82.94" +"Journal of the Royal Society Interface","1742-5689","1742-5662","MULTIDISCIPLINARY SCIENCES","('SCIE',)","17,349","3.7","Q1","0.89","62.08" +"Creativity and Innovation Management","0963-1690","1467-8691","MANAGEMENT","('SSCI',)","2,667","3.7","Q2","0.88","42.03" +"Electronic Commerce Research","1389-5753","1572-9362","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","2,272","3.7","('Q2', 'Q2')","0.88","14.77" +"JOURNAL OF PHYSIOLOGY AND BIOCHEMISTRY","1138-7548","1877-8755","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","2,566","3.7","('Q2', 'Q1')","0.88","22.06" +"Smart Materials and Structures","0964-1726","1361-665X","('INSTRUMENTS & INSTRUMENTATION', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","23,133","3.7","('Q1', 'Q2')","0.88","12.10" +"Annals of Hepatology","1665-2681","1665-2681","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,577","3.7","Q2","0.87","98.96" +"JOURNAL OF PHARMACEUTICAL SCIENCES","0022-3549","1520-6017","('CHEMISTRY, MEDICINAL', 'CHEMISTRY, MULTIDISCIPLINARY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","26,522","3.7","('Q2', 'Q2', 'Q2')","0.87","17.43" +"Bulletin of Engineering Geology and the Environment","1435-9529","1435-9537","('ENGINEERING, ENVIRONMENTAL', 'ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","12,080","3.7","('Q3', 'Q2', 'Q1')","0.86","5.00" +"EUROPEAN JOURNAL OF PUBLIC HEALTH","1101-1262","1464-360X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","9,048","3.7","Q1","0.86","79.34" +"JOURNAL OF ENGINEERING AND TECHNOLOGY MANAGEMENT","0923-4748","1879-1719","('BUSINESS', 'ENGINEERING, INDUSTRIAL', 'MANAGEMENT')","('SSCI', 'SCIE', 'SSCI')","1,731","3.7","('Q2', 'Q2', 'Q2')","0.86","16.49" +"China Economic Journal","1753-8963","1753-8971","ECONOMICS","('ESCI',)","527","3.7","Q1","0.85","5.36" +"Water Science and Engineering","1674-2370","2405-8106","WATER RESOURCES","('ESCI',)","1,246","3.7","Q1","0.85","93.97" +"Brain Behavior & Immunity-Health","2666-3546","2666-3546","('IMMUNOLOGY', 'NEUROSCIENCES', 'PSYCHIATRY')","('ESCI', 'ESCI', 'ESCI')","1,959","3.7","('Q2', 'Q2', 'Q1')","0.84","94.36" +"CHEMICAL RESEARCH IN TOXICOLOGY","0893-228X","1520-5010","('CHEMISTRY, MEDICINAL', 'CHEMISTRY, MULTIDISCIPLINARY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","13,297","3.7","('Q2', 'Q2', 'Q2')","0.84","17.48" +"NEUROCHEMICAL RESEARCH","0364-3190","1573-6903","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","13,243","3.7","('Q2', 'Q2')","0.84","13.68" +"IEEE MICROWAVE MAGAZINE","1527-3342","1557-9581","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","2,799","3.7","('Q2', 'Q2')","0.82","1.36" +"IEEE TRANSACTIONS ON NANOBIOSCIENCE","1536-1241","1558-2639","('BIOCHEMICAL RESEARCH METHODS', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","2,300","3.7","('Q1', 'Q3')","0.82","12.45" +"JOURNAL OF GASTROENTEROLOGY AND HEPATOLOGY","0815-9319","1440-1746","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","14,730","3.7","Q2","0.82","13.22" +"Journal of Geophysical Research-Biogeosciences","2169-8953","2169-8961","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","12,661","3.7","('Q2', 'Q1')","0.82","31.35" +"Current Research in Environmental Sustainability","2666-0490","2666-0490","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('ESCI', 'ESCI')","783","3.7","('Q2', 'Q2')","0.81","98.95" +"CYTOTHERAPY","1465-3249","1477-2566","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CELL & TISSUE ENGINEERING', 'CELL BIOLOGY', 'HEMATOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","6,945","3.7","('Q2', 'Q2', 'Q2', 'Q1', 'Q2')","0.81","33.33" +"Egyptian Journal of Remote Sensing and Space Sciences","1110-9823","2090-2476","('ENVIRONMENTAL SCIENCES', 'REMOTE SENSING')","('SCIE', 'SCIE')","2,347","3.7","('Q2', 'Q2')","0.81","95.68" +"Journal of Central South University","2095-2899","2227-5223","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","9,015","3.7","Q1","0.81","0.00" +"MOLECULAR GENETICS AND METABOLISM","1096-7192","1096-7206","('ENDOCRINOLOGY & METABOLISM', 'GENETICS & HEREDITY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","8,206","3.7","('Q2', 'Q2', 'Q2')","0.81","40.95" +"CLINICAL AND EXPERIMENTAL DERMATOLOGY","0307-6938","1365-2230","DERMATOLOGY","('SCIE',)","6,332","3.7","Q1","0.80","17.85" +"JOURNAL OF STRUCTURAL ENGINEERING","0733-9445","1943-541X","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","26,665","3.7","('Q1', 'Q1')","0.80","3.58" +"Current HIV/AIDS Reports","1548-3568","1548-3576","INFECTIOUS DISEASES","('SCIE',)","2,345","3.7","Q2","0.79","30.14" +"EUROPEAN JOURNAL OF CLINICAL MICROBIOLOGY & INFECTIOUS DISEASES","0934-9723","1435-4373","('INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE')","11,096","3.7","('Q2', 'Q2')","0.79","33.92" +"Romanian Journal of Information Science and Technology","1453-8245","1453-8245","('COMPUTER SCIENCE, THEORY & METHODS', 'INSTRUMENTS & INSTRUMENTATION', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","408","3.7","('Q1', 'Q1', 'Q2')","0.79","0.00" +"EUROPEAN JOURNAL OF MARKETING","0309-0566","1758-7123","BUSINESS","('SSCI',)","9,519","3.7","Q2","0.78","9.72" +"IEEE Journal of Translational Engineering in Health and Medicine","2168-2372","2168-2372","ENGINEERING, BIOMEDICAL","('SCIE',)","1,423","3.7","Q2","0.78","96.27" +"Phenomics","2730-583X","2730-5848","GENETICS & HEREDITY","('ESCI',)","284","3.7","Q2","0.78","27.03" +"PROCESS BIOCHEMISTRY","1359-5113","1873-3298","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE', 'SCIE')","19,329","3.7","('Q2', 'Q2', 'Q2')","0.78","6.32" +"Maritime Policy & Management","0308-8839","1464-5254","TRANSPORTATION","('SSCI',)","3,033","3.7","Q2","0.77","8.64" +"Biochemical Engineering Journal","1369-703X","1873-295X","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","12,763","3.7","('Q2', 'Q2')","0.76","11.38" +"Neuro-Oncology Advances","","2632-2498","('CLINICAL NEUROLOGY', 'ONCOLOGY')","('ESCI', 'ESCI')","2,279","3.7","('Q1', 'Q2')","0.76","97.10" +"AUTONOMOUS ROBOTS","0929-5593","1573-7527","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ROBOTICS')","('SCIE', 'SCIE')","4,682","3.7","('Q2', 'Q2')","0.74","35.14" +"ARCHIVES OF ENVIRONMENTAL CONTAMINATION AND TOXICOLOGY","0090-4341","1432-0703","('ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('SCIE', 'SCIE')","7,277","3.7","('Q2', 'Q2')","0.73","12.90" +"Chemosensors","","2227-9040","('CHEMISTRY, ANALYTICAL', 'ELECTROCHEMISTRY', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE', 'SCIE')","5,166","3.7","('Q2', 'Q2', 'Q1')","0.73","99.59" +"European Journal of Remote Sensing","","2279-7254","REMOTE SENSING","('SCIE',)","2,003","3.7","Q2","0.73","99.36" +"JAC-Antimicrobial Resistance","","2632-1823","('INFECTIOUS DISEASES', 'MICROBIOLOGY', 'PHARMACOLOGY & PHARMACY')","('ESCI', 'ESCI', 'ESCI')","1,419","3.7","('Q2', 'Q2', 'Q2')","0.73","92.77" +"Journal of Strategic Marketing","0965-254X","1466-4488","BUSINESS","('ESCI',)","2,560","3.7","Q2","0.73","13.47" +"QUARTERLY REVIEW OF BIOLOGY","0033-5770","1539-7718","BIOLOGY","('SCIE',)","4,087","3.7","Q1","0.73","26.67" +"Journal of Asthma and Allergy","1178-6965","1178-6965","('ALLERGY', 'IMMUNOLOGY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE', 'SCIE')","2,043","3.7","('Q2', 'Q2', 'Q1')","0.72","97.96" +"CURRENT OPINION IN GENETICS & DEVELOPMENT","0959-437X","1879-0380","('CELL BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","7,082","3.7","('Q2', 'Q2')","0.71","47.22" +"Advanced Photonics Research","2699-9293","2699-9293","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'OPTICS')","('ESCI', 'ESCI')","1,865","3.7","('Q2', 'Q2')","0.70","84.53" +"SUPERCONDUCTOR SCIENCE & TECHNOLOGY","0953-2048","1361-6668","('PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","10,283","3.7","('Q2', 'Q2')","0.69","24.63" +"INTERNATIONAL REVIEW OF PSYCHIATRY","0954-0261","1369-1627","PSYCHIATRY","('SSCI',)","4,118","3.7","Q1","0.68","17.58" +"Materials Today Communications","","2352-4928","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","21,719","3.7","Q2","0.68","6.17" +"ACS Omega","2470-1343","2470-1343","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","72,245","3.7","Q2","0.67","70.65" +"INTERNATIONAL JOURNAL OF COMPUTER INTEGRATED MANUFACTURING","0951-192X","1362-3052","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, MANUFACTURING', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","2,978","3.7","('Q2', 'Q2', 'Q2')","0.67","16.23" +"LANGMUIR","0743-7463","1520-5827","('CHEMISTRY, MULTIDISCIPLINARY', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","104,913","3.7","('Q2', 'Q2', 'Q2')","0.67","7.44" +"CYTOKINE","1043-4666","1096-0023","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE', 'SCIE')","13,149","3.7","('Q2', 'Q2', 'Q2')","0.66","17.22" +"Frontiers in Sustainable Food Systems","","2571-581X","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","8,079","3.7","Q2","0.65","99.75" +"Kardiologia Polska","0022-9032","1897-4279","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","3,394","3.7","Q1","0.64","96.35" +"PATTERN ANALYSIS AND APPLICATIONS","1433-7541","1433-755X","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","2,169","3.7","Q2","0.64","8.91" +"Cleaner and Responsible Consumption","2666-7843","2666-7843","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","416","3.7","('Q2', 'Q2', 'Q3')","0.63","93.38" +"Journal of Information Display","1598-0316","2158-1606","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","607","3.7","Q2","0.63","100.00" +"Journal of Macromarketing","0276-1467","1552-6534","BUSINESS","('SSCI',)","1,881","3.7","Q2","0.63","20.72" +"BUILDING RESEARCH AND INFORMATION","0961-3218","1466-4321","CONSTRUCTION & BUILDING TECHNOLOGY","('SCIE',)","3,802","3.7","Q1","0.61","29.17" +"CHEMICAL ENGINEERING RESEARCH & DESIGN","0263-8762","1744-3563","ENGINEERING, CHEMICAL","('SCIE',)","18,888","3.7","Q2","0.61","12.33" +"International Journal of Automation and Computing","1476-8186","1751-8520","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE')","('ESCI', 'ESCI')","1,433","3.7","('Q2', 'Q2')","0.61","31.03" +"IUBMB LIFE","1521-6543","1521-6551","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","7,729","3.7","('Q2', 'Q2')","0.60","18.93" +"CELLULAR IMMUNOLOGY","0008-8749","1090-2163","('CELL BIOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","6,372","3.7","('Q2', 'Q2')","0.57","25.37" +"Chinese Journal of Chemical Engineering","1004-9541","2210-321X","ENGINEERING, CHEMICAL","('SCIE',)","10,001","3.7","Q2","0.55","1.52" +"MOLECULES AND CELLS","1016-8478","0219-1032","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","5,841","3.7","('Q2', 'Q2')","0.51","100.00" +"Operations Research Perspectives","","2214-7160","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","844","3.7","Q2","0.51","98.80" +"ACS Physical Chemistry Au","","2694-2445","CHEMISTRY, PHYSICAL","('ESCI',)","294","3.7","Q2","0.48","75.89" +"WASTE MANAGEMENT & RESEARCH","0734-242X","1096-3669","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","7,395","3.7","('Q3', 'Q2')","0.45","22.78" +"Environmental Processes-An International Journal","2198-7491","2198-7505","ENGINEERING, ENVIRONMENTAL","('ESCI',)","1,839","3.7","Q3","0.41","12.02" +"Religion Brain & Behavior","2153-599X","2153-5981","RELIGION","('AHCI',)","605","3.6","","5.25","32.20" +"Educational Psychology","0144-3410","1469-5820","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","3,732","3.6","('Q1', 'Q1')","2.52","15.15" +"APPLIED LINGUISTICS","0142-6001","1477-450X","LINGUISTICS","('SSCI',)","5,088","3.6","Q1","2.27","26.50" +"Internet Policy Review","2197-6775","2197-6775","('COMMUNICATION', 'LAW')","('ESCI', 'ESCI')","1,306","3.6","('Q1', 'Q1')","2.24","96.77" +"TWMS Journal of Pure and Applied Mathematics","2076-2585","2219-1259","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","307","3.6","('Q1', 'Q1')","2.14","3.45" +"HIGHER EDUCATION","0018-1560","1573-174X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","9,551","3.6","Q1","2.13","50.33" +"EUROPEAN JOURNAL OF POLITICAL RESEARCH","0304-4130","1475-6765","POLITICAL SCIENCE","('SSCI',)","5,023","3.6","Q1","2.10","65.33" +"JOURNAL OF RESEARCH IN SCIENCE TEACHING","0022-4308","1098-2736","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","7,262","3.6","Q1","2.10","41.92" +"MATHEMATICAL MODELS & METHODS IN APPLIED SCIENCES","0218-2025","1793-6314","MATHEMATICS, APPLIED","('SCIE',)","4,760","3.6","Q1","1.94","9.55" +"JOURNAL OF INVERTEBRATE PATHOLOGY","0022-2011","1096-0805","ZOOLOGY","('SCIE',)","7,486","3.6","Q1","1.85","26.15" +"RELC Journal","0033-6882","1745-526X","LINGUISTICS","('SSCI',)","1,619","3.6","Q1","1.77","12.14" +"DEMOGRAPHY","0070-3370","1533-7790","DEMOGRAPHY","('SSCI',)","9,076","3.6","Q1","1.75","99.64" +"Asia-Pacific Education Researcher","0119-5646","2243-7908","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,973","3.6","Q1","1.70","8.33" +"NURSE EDUCATION TODAY","0260-6917","1532-2793","('EDUCATION, SCIENTIFIC DISCIPLINES', 'NURSING')","('SCIE', 'SCIE, SSCI')","13,751","3.6","('Q1', 'Q1')","1.67","19.47" +"IEEE-ACM Transactions on Computational Biology and Bioinformatics","1545-5963","1557-9964","('BIOCHEMICAL RESEARCH METHODS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,969","3.6","('Q2', 'Q2', 'Q1', 'Q1')","1.63","28.01" +"ARCHIVES OF PHYSICAL MEDICINE AND REHABILITATION","0003-9993","1532-821X","('REHABILITATION', 'SPORT SCIENCES')","('SCIE', 'SCIE')","25,806","3.6","('Q1', 'Q1')","1.62","14.38" +"Fractal and Fractional","","2504-3110","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","5,482","3.6","Q1","1.61","99.74" +"ANTIPODE","0066-4812","1467-8330","GEOGRAPHY","('SSCI',)","6,437","3.6","Q1","1.60","39.86" +"EUROPEAN JOURNAL OF PERSONALITY","0890-2070","1099-0984","PSYCHOLOGY, SOCIAL","('SSCI',)","4,459","3.6","Q1","1.44","34.97" +"Nuclear Science and Techniques","1001-8042","2210-3147","('NUCLEAR SCIENCE & TECHNOLOGY', 'PHYSICS, NUCLEAR')","('SCIE', 'SCIE')","2,707","3.6","('Q1', 'Q1')","1.42","9.13" +"Psychosocial Intervention","1132-0559","2173-4712","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","804","3.6","Q1","1.42","100.00" +"International Journal of Mental Health Nursing","1445-8330","1447-0349","('NURSING', 'PSYCHIATRY')","('SCIE, SSCI', 'SCIE, SSCI')","4,285","3.6","('Q1', 'Q1')","1.40","38.90" +"ANNALS OF THORACIC SURGERY","0003-4975","1552-6259","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RESPIRATORY SYSTEM', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","35,375","3.6","('Q1', 'Q1', 'Q1')","1.39","8.25" +"Crime and Justice-A Review of Research","0192-3234","2153-0416","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,783","3.6","Q1","1.39","10.00" +"GENETICS SELECTION EVOLUTION","0999-193X","1297-9686","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","4,221","3.6","('Q1', 'Q2')","1.39","99.62" +"Psychology of Sexual Orientation and Gender Diversity","2329-0382","2329-0390","('PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI')","2,446","3.6","('Q1', 'Q1')","1.33","7.02" +"Health Research Policy and Systems","1478-4505","1478-4505","HEALTH POLICY & SERVICES","('SSCI',)","4,363","3.6","Q1","1.30","100.00" +"PATHOLOGY","0031-3025","1465-3931","PATHOLOGY","('SCIE',)","4,103","3.6","Q1","1.30","16.73" +"HEALTH POLICY","0168-8510","1872-6054","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","8,116","3.6","('Q1', 'Q1')","1.28","47.44" +"Journal of Organizational and End User Computing","1546-2234","1546-5012","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SCIE', 'SSCI', 'SSCI')","978","3.6","('Q2', 'Q1', 'Q2')","1.28","97.31" +"Neurobiology of Language","2641-4368","2641-4368","('LINGUISTICS', 'NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('ESCI', 'ESCI', 'ESCI')","452","3.6","('Q1', 'Q2', 'Q1')","1.28","100.00" +"Tropical Medicine and Health","1348-8945","1349-4147","TROPICAL MEDICINE","('ESCI',)","1,609","3.6","Q1","1.28","100.00" +"AMERICAN JOURNAL OF PHYSIOLOGY-LUNG CELLULAR AND MOLECULAR PHYSIOLOGY","1040-0605","1522-1504","('PHYSIOLOGY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","14,163","3.6","('Q1', 'Q1')","1.26","10.35" +"ACCOUNTING ORGANIZATIONS AND SOCIETY","0361-3682","1873-6289","BUSINESS, FINANCE","('SSCI',)","8,460","3.6","Q1","1.24","20.79" +"Chinese Physics C","1674-1137","2058-6132","('PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","5,090","3.6","('Q1', 'Q2')","1.24","42.31" +"Current Pediatrics Reports","","2167-4841","PEDIATRICS","('ESCI',)","313","3.6","Q1","1.24","13.51" +"Current Tropical Medicine Reports","","2196-3045","('INFECTIOUS DISEASES', 'PARASITOLOGY', 'TROPICAL MEDICINE')","('ESCI', 'ESCI', 'ESCI')","549","3.6","('Q2', 'Q1', 'Q1')","1.24","25.84" +"npj Science of Learning","","2056-7936","('EDUCATION & EDUCATIONAL RESEARCH', 'NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SCIE', 'SSCI')","749","3.6","('Q1', 'Q2', 'Q1')","1.24","99.18" +"Fire Ecology","1933-9747","1933-9747","('ECOLOGY', 'FORESTRY')","('SCIE', 'SCIE')","1,543","3.6","('Q1', 'Q1')","1.23","100.00" +"GROUP DECISION AND NEGOTIATION","0926-2644","1572-9907","('MANAGEMENT', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","1,570","3.6","('Q2', 'Q1')","1.20","24.66" +"ANNALS OF BEHAVIORAL MEDICINE","0883-6612","1532-4796","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","8,581","3.6","Q1","1.17","21.81" +"MOLECULAR HUMAN REPRODUCTION","1360-9947","1460-2407","('DEVELOPMENTAL BIOLOGY', 'OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,423","3.6","('Q2', 'Q1', 'Q1')","1.17","18.45" +"Journal of Management Analytics","2327-0012","2327-0039","('BUSINESS', 'MANAGEMENT', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI', 'SSCI')","801","3.6","('Q2', 'Q2', 'Q1')","1.14","2.63" +"Journal of Clinical Lipidology","1933-2874","1876-4789","PHARMACOLOGY & PHARMACY","('SCIE',)","3,960","3.6","Q2","1.12","25.39" +"Journal of Grid Computing","1570-7873","1572-9184","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","1,058","3.6","('Q2', 'Q1')","1.12","15.52" +"JOURNAL OF BANKING & FINANCE","0378-4266","1872-6372","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","23,092","3.6","('Q1', 'Q1')","1.11","15.41" +"JOURNAL OF FLUID MECHANICS","0022-1120","1469-7645","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE')","82,308","3.6","('Q1', 'Q1')","1.11","46.56" +"Tourism Economics","1354-8166","2044-0375","('ECONOMICS', 'HOSPITALITY, LEISURE, SPORT & TOURISM')","('SSCI', 'SSCI')","4,091","3.6","('Q1', 'Q1')","1.11","11.15" +"PALLIATIVE MEDICINE","0269-2163","1477-030X","('HEALTH CARE SCIENCES & SERVICES', 'MEDICINE, GENERAL & INTERNAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE', 'SCIE')","6,883","3.6","('Q1', 'Q1', 'Q1')","1.10","50.62" +"REVIEW OF GENERAL PSYCHOLOGY","1089-2680","1939-1552","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","6,056","3.6","Q1","1.10","25.32" +"SSM-Population Health","2352-8273","2352-8273","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","5,107","3.6","Q1","1.10","94.23" +"ANNALS OF BOTANY","0305-7364","1095-8290","PLANT SCIENCES","('SCIE',)","23,862","3.6","Q1","1.09","28.54" +"CHEMICAL GEOLOGY","0009-2541","1872-6836","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","42,789","3.6","Q1","1.09","29.68" +"Business Ethics the Environment & Responsibility","2694-6416","2694-6424","('BUSINESS', 'ETHICS')","('SSCI', 'SSCI')","704","3.6","('Q2', 'Q1')","1.07","29.97" +"Internet Interventions-The Application of Information Technology in Mental and Behavioural Health","","2214-7829","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS', 'PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SCIE', 'SCIE', 'SSCI')","2,443","3.6","('Q1', 'Q2', 'Q1', 'Q1')","1.07","94.26" +"Interface Focus","2042-8898","2042-8901","BIOLOGY","('SCIE',)","3,152","3.6","Q1","1.06","61.38" +"Journal of Outdoor Recreation and Tourism-Research Planning and Management","2213-0780","2213-0799","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","1,754","3.6","Q1","1.06","28.36" +"Sustainability-Science Practice and Policy","","1548-7733","('ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","923","3.6","('Q2', 'Q3')","1.06","97.60" +"Ultrasound Journal","2036-3176","2524-8987","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","641","3.6","Q1","1.06","100.00" +"Cluster Computing-The Journal of Networks Software Tools and Applications","1386-7857","1573-7543","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","6,492","3.6","('Q2', 'Q1')","1.03","7.55" +"JOURNAL OF PUBLIC HEALTH","1741-3842","1741-3850","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","5,581","3.6","Q1","1.03","33.05" +"MOLECULAR PHYLOGENETICS AND EVOLUTION","1055-7903","1095-9513","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","19,208","3.6","('Q2', 'Q1', 'Q2')","1.03","31.95" +"AQUACULTURAL ENGINEERING","0144-8609","1873-5614","('AGRICULTURAL ENGINEERING', 'FISHERIES')","('SCIE', 'SCIE')","3,601","3.6","('Q2', 'Q1')","1.02","27.39" +"JOURNAL OF RHEUMATOLOGY","0315-162X","1499-2752","RHEUMATOLOGY","('SCIE',)","20,337","3.6","Q2","1.02","1.28" +"Schizophrenia Research","0920-9964","1573-2509","PSYCHIATRY","('SCIE', 'SSCI')","21,508","3.6","Q1","1.00","34.04" +"Current Research in Biotechnology","2590-2628","2590-2628","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('ESCI',)","488","3.6","Q2","0.99","100.00" +"Network Neuroscience","2472-1751","2472-1751","NEUROSCIENCES","('SCIE',)","1,253","3.6","Q2","0.98","98.60" +"SOCIAL PSYCHIATRY AND PSYCHIATRIC EPIDEMIOLOGY","0933-7954","1433-9285","PSYCHIATRY","('SCIE', 'SSCI')","11,916","3.6","Q1","0.98","50.87" +"BMJ Open Respiratory Research","","2052-4439","RESPIRATORY SYSTEM","('SCIE',)","2,296","3.6","Q1","0.96","99.51" +"IEEE TRANSACTIONS ON COMPUTERS","0018-9340","1557-9956","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","9,134","3.6","('Q2', 'Q2')","0.96","21.61" +"STRUCTURAL AND MULTIDISCIPLINARY OPTIMIZATION","1615-147X","1615-1488","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","15,057","3.6","('Q2', 'Q1', 'Q1')","0.96","18.06" +"BULLETIN OF VOLCANOLOGY","0258-8900","1432-0819","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","5,341","3.6","Q1","0.95","49.60" +"PLANTA","0032-0935","1432-2048","PLANT SCIENCES","('SCIE',)","22,794","3.6","Q1","0.95","17.50" +"Biology-Basel","","2079-7737","BIOLOGY","('SCIE',)","17,162","3.6","Q1","0.94","99.59" +"Review of Accounting and Finance","1475-7702","1758-7700","BUSINESS, FINANCE","('ESCI',)","671","3.6","Q1","0.93","2.67" +"NUCLEAR MEDICINE AND BIOLOGY","0969-8051","1872-9614","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","3,368","3.6","Q1","0.92","35.59" +"INTERNATIONAL JOURNAL OF MULTIPHASE FLOW","0301-9322","1879-3533","MECHANICS","('SCIE',)","13,626","3.6","Q1","0.91","21.63" +"Pharmacological Reports","1734-1140","2299-5684","PHARMACOLOGY & PHARMACY","('SCIE',)","5,868","3.6","Q2","0.91","42.82" +"Transplantation and Cellular Therapy","2666-6375","2666-6367","('HEMATOLOGY', 'IMMUNOLOGY', 'TRANSPLANTATION')","('SCIE', 'SCIE', 'SCIE')","2,652","3.6","('Q2', 'Q2', 'Q1')","0.91","76.35" +"CLASSICAL AND QUANTUM GRAVITY","0264-9381","1361-6382","('ASTRONOMY & ASTROPHYSICS', 'PHYSICS, MULTIDISCIPLINARY', 'PHYSICS, PARTICLES & FIELDS', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","25,672","3.6","('Q2', 'Q1', 'Q2', 'Q2')","0.90","26.46" +"JOURNAL OF THE NEUROLOGICAL SCIENCES","0022-510X","1878-5883","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","19,160","3.6","('Q1', 'Q2')","0.90","21.38" +"Strategic Change-Briefings in Entrepreneurial Finance","1086-1718","1099-1697","BUSINESS, FINANCE","('ESCI',)","1,254","3.6","Q1","0.90","16.03" +"MYCOPATHOLOGIA","0301-486X","1573-0832","MYCOLOGY","('SCIE',)","4,333","3.6","Q2","0.89","23.04" +"ANALYST","0003-2654","1364-5528","CHEMISTRY, ANALYTICAL","('SCIE',)","32,834","3.6","Q2","0.88","10.89" +"GEOGRAPHICAL JOURNAL","0016-7398","1475-4959","GEOGRAPHY","('SSCI',)","3,054","3.6","Q1","0.88","53.85" +"Journal of Evidence Based Medicine","1756-5383","1756-5391","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,083","3.6","Q1","0.88","32.00" +"Reproductive Health","","1742-4755","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","7,234","3.6","Q1","0.88","99.84" +"AUSTRALIAN JOURNAL OF PSYCHOLOGY","0004-9530","1742-9536","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,565","3.6","Q1","0.87","50.00" +"Journal of Civil Structural Health Monitoring","2190-5452","2190-5479","ENGINEERING, CIVIL","('SCIE',)","2,376","3.6","Q1","0.87","18.31" +"ECOLOGY AND SOCIETY","1708-3087","","('ECOLOGY', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SSCI')","13,547","3.6","('Q1', 'Q2')","0.86","99.11" +"Journal of Economic Inequality","1569-1721","1573-8701","ECONOMICS","('SSCI',)","1,363","3.6","Q1","0.86","52.76" +"Sexual Medicine Reviews","2050-0513","2050-0521","UROLOGY & NEPHROLOGY","('SCIE',)","1,741","3.6","Q1","0.86","13.14" +"ChemMedChem","1860-7179","1860-7187","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","9,552","3.6","('Q2', 'Q2')","0.85","27.09" +"CLINICAL MEDICINE","1470-2118","1473-4893","MEDICINE, GENERAL & INTERNAL","('SCIE',)","4,991","3.6","Q1","0.85","94.59" +"JOURNAL OF MOLECULAR ENDOCRINOLOGY","0952-5041","1479-6813","ENDOCRINOLOGY & METABOLISM","('SCIE',)","4,478","3.6","Q2","0.85","19.72" +"American Journal of Cancer Research","2156-6976","2156-6976","ONCOLOGY","('SCIE',)","9,789","3.6","Q2","0.84","0.00" +"LAND DEGRADATION & DEVELOPMENT","1085-3278","1099-145X","('ENVIRONMENTAL SCIENCES', 'SOIL SCIENCE')","('SCIE', 'SCIE')","12,075","3.6","('Q2', 'Q2')","0.84","8.25" +"SEMINARS IN THROMBOSIS AND HEMOSTASIS","0094-6176","1098-9064","('HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","4,960","3.6","('Q2', 'Q1')","0.84","5.95" +"TOTAL QUALITY MANAGEMENT & BUSINESS EXCELLENCE","1478-3363","1478-3371","MANAGEMENT","('SSCI',)","4,373","3.6","Q2","0.83","11.38" +"Translational Behavioral Medicine","1869-6716","1613-9860","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","3,677","3.6","Q1","0.83","26.35" +"European Sport Management Quarterly","1618-4742","1746-031X","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","2,267","3.6","Q1","0.82","28.90" +"International Journal of Fuzzy Systems","1562-2479","2199-3211","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE', 'SCIE')","4,392","3.6","('Q2', 'Q2', 'Q2')","0.82","4.22" +"POSTGRADUATE MEDICAL JOURNAL","0032-5473","1469-0756","MEDICINE, GENERAL & INTERNAL","('SCIE',)","7,699","3.6","Q1","0.82","20.54" +"INTERNATIONAL JOURNAL OF GERIATRIC PSYCHIATRY","0885-6230","1099-1166","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY', 'PSYCHIATRY')","('SCIE', 'SSCI', 'SCIE, SSCI')","10,714","3.6","('Q2', 'Q1', 'Q1')","0.81","35.04" +"Marketing Intelligence & Planning","0263-4503","1758-8049","BUSINESS","('SSCI',)","3,219","3.6","Q2","0.81","1.70" +"Transportmetrica A-Transport Science","2324-9935","2324-9943","('TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SSCI', 'SCIE')","2,044","3.6","('Q2', 'Q2')","0.81","16.14" +"EUROPEAN JOURNAL OF CLINICAL NUTRITION","0954-3007","1476-5640","NUTRITION & DIETETICS","('SCIE',)","15,740","3.6","Q2","0.80","24.33" +"Emerging Themes in Epidemiology","","1742-7622","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","573","3.6","Q1","0.79","100.00" +"Nanotoxicology","1743-5390","1743-5404","('NANOSCIENCE & NANOTECHNOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","4,446","3.6","('Q3', 'Q2')","0.79","25.17" +"Proceedings of the ACM on Interactive Mobile Wearable and Ubiquitous Technologies-IMWUT","","2474-9567","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI', 'ESCI')","4,848","3.6","('Q2', 'Q2', 'Q2')","0.79","8.73" +"ENVIRONMENTAL TOXICOLOGY AND CHEMISTRY","0730-7268","1552-8618","('ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('SCIE', 'SCIE')","20,595","3.6","('Q2', 'Q2')","0.78","32.56" +"Journal of Diabetes Research","2314-6745","2314-6753","('ENDOCRINOLOGY & METABOLISM', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","8,289","3.6","('Q2', 'Q2')","0.78","100.00" +"JOURNAL OF LIPOSOME RESEARCH","0898-2104","1532-2394","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,974","3.6","('Q2', 'Q2')","0.78","4.95" +"International Journal of Multimedia Information Retrieval","2192-6611","2192-662X","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","665","3.6","('Q2', 'Q1')","0.77","11.76" +"JOURNAL OF TRACE ELEMENTS IN MEDICINE AND BIOLOGY","0946-672X","1878-3252","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","6,975","3.6","('Q2', 'Q2')","0.77","11.43" +"Logistics-Basel","","2305-6290","('MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('ESCI', 'ESCI')","1,057","3.6","('Q2', 'Q2')","0.77","98.89" +"NUTRITIONAL NEUROSCIENCE","1028-415X","1476-8305","('NEUROSCIENCES', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","3,983","3.6","('Q2', 'Q2')","0.77","9.38" +"Annals of General Psychiatry","","1744-859X","PSYCHIATRY","('SCIE', 'SSCI')","1,856","3.6","Q1","0.76","100.00" +"Brazilian Journal of Psychiatry","1516-4446","1809-452X","PSYCHIATRY","('SCIE', 'SSCI')","1,328","3.6","Q1","0.76","94.24" +"JOURNAL OF GENERAL VIROLOGY","0022-1317","1465-2099","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'VIROLOGY')","('SCIE', 'SCIE')","16,934","3.6","('Q2', 'Q2')","0.76","0.50" +"Journal of Family Business Management","2043-6238","2043-6246","MANAGEMENT","('ESCI',)","1,067","3.6","Q2","0.75","13.27" +"MECHANICS OF ADVANCED MATERIALS AND STRUCTURES","1537-6494","1537-6532","('MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MATERIALS SCIENCE, COMPOSITES', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,857","3.6","('Q1', 'Q2', 'Q2', 'Q1')","0.75","2.28" +"Engineering Construction and Architectural Management","0969-9988","1365-232X","('ENGINEERING, CIVIL', 'ENGINEERING, INDUSTRIAL', 'MANAGEMENT')","('SCIE', 'SCIE', 'SSCI')","5,843","3.6","('Q1', 'Q2', 'Q2')","0.74","3.07" +"Extractive Industries and Society","2214-790X","2214-7918","ENVIRONMENTAL STUDIES","('SSCI',)","3,743","3.6","Q2","0.74","28.54" +"PHARMACOPSYCHIATRY","0176-3679","1439-0795","('PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE')","1,812","3.6","('Q2', 'Q1')","0.74","20.00" +"JOURNAL OF IMMUNOLOGY","0022-1767","1550-6606","IMMUNOLOGY","('SCIE',)","107,121","3.6","Q2","0.73","6.40" +"JOURNAL OF LEUKOCYTE BIOLOGY","0741-5400","1938-3673","('CELL BIOLOGY', 'HEMATOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE', 'SCIE')","18,677","3.6","('Q3', 'Q2', 'Q2')","0.73","16.50" +"Frontiers in Toxicology","","2673-3080","TOXICOLOGY","('ESCI',)","751","3.6","Q2","0.72","99.29" +"International Journal of Concrete Structures and Materials","1976-0485","2234-1315","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","2,310","3.6","('Q1', 'Q1', 'Q2')","0.71","100.00" +"International Journal of Productivity and Performance Management","1741-0401","1758-6658","MANAGEMENT","('ESCI',)","3,998","3.6","Q2","0.71","5.73" +"Expert Review of Clinical Pharmacology","1751-2433","1751-2441","PHARMACOLOGY & PHARMACY","('SCIE',)","3,312","3.6","Q2","0.70","11.24" +"Journal of Genetic Engineering and Biotechnology","2090-5920","2090-5920","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('ESCI',)","2,500","3.6","Q2","0.69","99.70" +"Transplantation Reviews","0955-470X","","('IMMUNOLOGY', 'TRANSPLANTATION')","('SCIE', 'SCIE')","1,165","3.6","('Q2', 'Q1')","0.69","25.83" +"Toxicon-X","2590-1710","2590-1710","TOXICOLOGY","('ESCI',)","386","3.6","Q2","0.68","94.59" +"Non-Coding RNA","","2311-553X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('ESCI', 'ESCI')","1,456","3.6","('Q2', 'Q2')","0.67","99.55" +"RNA Biology","1547-6286","1555-8584","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","8,044","3.6","Q2","0.66","66.76" +"Hepatobiliary & Pancreatic Diseases International","1499-3872","2352-9377","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","2,414","3.6","Q2","0.65","0.00" +"Journal of Information Technology in Construction","1874-4753","1874-4753","ENGINEERING, CIVIL","('ESCI',)","1,246","3.6","Q1","0.64","98.58" +"CELLULAR AND MOLECULAR NEUROBIOLOGY","0272-4340","1573-6830","('CELL BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","6,774","3.6","('Q3', 'Q2')","0.63","21.01" +"Environmental Pollutants and Bioavailability","2639-5932","2639-5940","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","557","3.6","('Q2', 'Q2', 'Q2')","0.63","98.63" +"JOURNAL OF BIOMATERIALS SCIENCE-POLYMER EDITION","0920-5063","1568-5624","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","5,735","3.6","('Q2', 'Q3', 'Q2')","0.63","0.86" +"JOURNAL OF BUSINESS & INDUSTRIAL MARKETING","0885-8624","2052-1189","BUSINESS","('SSCI',)","5,399","3.6","Q2","0.63","13.05" +"EXPERT OPINION ON BIOLOGICAL THERAPY","1471-2598","1744-7682","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","5,963","3.6","('Q2', 'Q2')","0.61","19.17" +"SEXUALLY TRANSMITTED INFECTIONS","1368-4973","1472-3263","INFECTIOUS DISEASES","('SCIE',)","4,234","3.6","Q2","0.61","33.45" +"JOURNAL OF FOOD PRODUCTS MARKETING","1045-4446","1540-4102","BUSINESS","('ESCI',)","1,091","3.6","Q2","0.59","14.06" +"Wind Energy Science","2366-7443","2366-7451","GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY","('ESCI',)","1,822","3.6","Q3","0.59","99.68" +"Environmental Microbiology Reports","1758-2229","1758-2229","('ENVIRONMENTAL SCIENCES', 'MICROBIOLOGY')","('SCIE', 'SCIE')","4,275","3.6","('Q2', 'Q2')","0.58","45.02" +"Tissue Barriers","2168-8370","2168-8370","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,546","3.6","Q2","0.58","28.26" +"ACM Transactions on Interactive Intelligent Systems","2160-6455","2160-6463","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","1,334","3.6","Q2","0.57","4.40" +"FREE RADICAL RESEARCH","1071-5762","1029-2470","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","7,530","3.6","Q2","0.57","10.73" +"Frontiers of Agricultural Science and Engineering","2095-7505","2095-977X","AGRONOMY","('ESCI',)","895","3.6","Q1","0.57","100.00" +"ITALIAN JOURNAL OF FOOD SCIENCE","1120-1770","2239-5687","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,263","3.6","Q2","0.56","98.56" +"Resources-Basel","","2079-9276","('ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","3,353","3.6","('Q2', 'Q3')","0.56","99.74" +"JOURNAL OF LOSS PREVENTION IN THE PROCESS INDUSTRIES","0950-4230","1873-3352","ENGINEERING, CHEMICAL","('SCIE',)","9,954","3.6","Q2","0.53","11.76" +"Materials for Renewable and Sustainable Energy","2194-1459","2194-1467","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","743","3.6","Q2","0.53","100.00" +"Schizophrenia Research and Treatment","2090-2085","2090-2093","PSYCHIATRY","('ESCI',)","255","3.6","Q1","0.52","100.00" +"World Journal of Stem Cells","1948-0210","1948-0210","('CELL & TISSUE ENGINEERING', 'CELL BIOLOGY')","('SCIE', 'SCIE')","2,388","3.6","('Q3', 'Q3')","0.52","99.13" +"JOURNAL OF THERMOPLASTIC COMPOSITE MATERIALS","0892-7057","1530-7980","MATERIALS SCIENCE, COMPOSITES","('SCIE',)","4,047","3.6","Q2","0.50","3.08" +"Transcription-Austin","2154-1264","2154-1272","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","714","3.6","Q2","0.50","40.00" +"Energy Technology","2194-4288","2194-4296","ENERGY & FUELS","('SCIE',)","9,279","3.6","Q3","0.49","21.08" +"Journal of Cell Communication and Signaling","1873-9601","1873-961X","CELL BIOLOGY","('SCIE',)","2,142","3.6","Q3","0.47","24.02" +"CURRENT OPINION IN INFECTIOUS DISEASES","0951-7375","1473-6527","INFECTIOUS DISEASES","('SCIE',)","4,254","3.6","Q2","0.45","7.79" +"International Journal of Sustainable Engineering","1939-7038","1939-7046","GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY","('ESCI',)","1,625","3.6","Q3","0.45","33.54" +"REVIEWS IN ANALYTICAL CHEMISTRY","0793-0135","2191-0189","CHEMISTRY, ANALYTICAL","('SCIE',)","643","3.6","Q2","0.45","98.25" +"TRAFFIC","1398-9219","1600-0854","CELL BIOLOGY","('SCIE',)","5,932","3.6","Q3","0.45","37.50" +"Waste Disposal & Sustainable Energy","2524-7980","2524-7891","('ENERGY & FUELS', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","546","3.6","('Q3', 'Q2', 'Q3')","0.45","12.15" +"REVIEWS ON ADVANCED MATERIALS SCIENCE","1606-5131","1605-8127","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","2,378","3.6","('Q2', 'Q3')","0.44","97.32" +"Energy Storage","","2578-4862","ENERGY & FUELS","('ESCI',)","1,363","3.6","Q3","0.38","5.41" +"JOURNAL OF THE AMERICAN MATHEMATICAL SOCIETY","0894-0347","1088-6834","MATHEMATICS","('SCIE',)","4,208","3.5","Q1","3.04","68.54" +"HARVARD LAW REVIEW","0017-811X","2161-976X","LAW","('SSCI',)","6,289","3.5","Q1","2.45","0.00" +"APPLIED MATHEMATICS AND COMPUTATION","0096-3003","1873-5649","MATHEMATICS, APPLIED","('SCIE',)","33,546","3.5","Q1","2.30","7.78" +"PUBLIC UNDERSTANDING OF SCIENCE","0963-6625","1361-6609","('COMMUNICATION', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SSCI', 'AHCI, SSCI')","3,675","3.5","('Q1', 'Q1')","2.28","30.24" +"JOURNAL OF CULTURAL HERITAGE","1296-2074","1778-3674","('ARCHAEOLOGY', 'ART', 'CHEMISTRY, ANALYTICAL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'SPECTROSCOPY')","('AHCI', 'AHCI', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","6,530","3.5","('N/A', 'N/A', 'Q2', 'Q1', 'Q2', 'Q1')","2.26","30.65" +"Criminology & Public Policy","1538-6473","1745-9133","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,858","3.5","Q1","2.10","31.37" +"AMERICAN EDUCATIONAL RESEARCH JOURNAL","0002-8312","1935-1011","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","7,201","3.5","Q1","2.06","10.42" +"JOURNAL FOR RESEARCH IN MATHEMATICS EDUCATION","0021-8251","1945-2306","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,616","3.5","Q1","2.04","0.00" +"Thinking Skills and Creativity","1871-1871","1878-0423","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","4,018","3.5","Q1","2.00","17.75" +"LANGUAGE LEARNING","0023-8333","1467-9922","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('SSCI', 'SSCI')","5,273","3.5","('Q1', 'Q1')","1.92","41.80" +"JOURNAL OF POLITICS","0022-3816","1468-2508","POLITICAL SCIENCE","('SSCI',)","11,281","3.5","Q1","1.87","1.59" +"JOURNAL OF ENDODONTICS","0099-2399","1878-3554","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","20,873","3.5","Q1","1.86","8.20" +"Interactive Technology and Smart Education","1741-5659","1758-8510","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","790","3.5","Q1","1.85","4.30" +"AERA Open","","2332-8584","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,078","3.5","Q1","1.80","95.70" +"AGRICULTURE AND HUMAN VALUES","0889-048X","1572-8366","('AGRICULTURE, MULTIDISCIPLINARY', 'HISTORY & PHILOSOPHY OF SCIENCE', 'SOCIOLOGY')","('SCIE', 'SCIE, SSCI', 'SSCI')","4,154","3.5","('Q1', 'Q1', 'Q1')","1.77","47.90" +"BRITISH JOURNAL OF HEALTH PSYCHOLOGY","1359-107X","2044-8287","PSYCHOLOGY, CLINICAL","('SSCI',)","4,089","3.5","Q1","1.75","58.55" +"JOURNAL OF METAMORPHIC GEOLOGY","0263-4929","1525-1314","GEOLOGY","('SCIE',)","5,987","3.5","Q1","1.69","33.09" +"Integrative Zoology","1749-4877","1749-4869","ZOOLOGY","('SCIE',)","1,989","3.5","Q1","1.67","23.18" +"Progress in Orthodontics","2196-1042","2196-1042","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","2,027","3.5","Q1","1.67","100.00" +"JOURNAL OF ANIMAL ECOLOGY","0021-8790","1365-2656","('ECOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","18,314","3.5","('Q1', 'Q1')","1.65","37.81" +"JOURNAL OF NEUROSURGERY","0022-3085","1933-0693","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","36,630","3.5","('Q1', 'Q1')","1.65","2.26" +"Physical Therapy","0031-9023","1538-6724","('ORTHOPEDICS', 'REHABILITATION')","('SCIE', 'SCIE')","14,922","3.5","('Q1', 'Q1')","1.61","22.04" +"JMIR Public Health and Surveillance","2369-2960","2369-2960","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","4,175","3.5","Q1","1.60","99.28" +"LANGUAGE LEARNING & TECHNOLOGY","1094-3501","","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('SSCI', 'SSCI')","1,950","3.5","('Q1', 'Q1')","1.57","0.00" +"Surgery for Obesity and Related Diseases","1550-7289","1878-7533","SURGERY","('SCIE',)","8,231","3.5","Q1","1.53","14.56" +"International Journal of Sports Physiology and Performance","1555-0265","1555-0273","('PHYSIOLOGY', 'SPORT SCIENCES')","('SCIE', 'SCIE')","8,139","3.5","('Q1', 'Q1')","1.48","1.04" +"Marine Policy","0308-597X","1872-9460","('ENVIRONMENTAL STUDIES', 'INTERNATIONAL RELATIONS')","('SSCI', 'SSCI')","15,218","3.5","('Q2', 'Q1')","1.46","34.50" +"TREE PHYSIOLOGY","0829-318X","1758-4469","FORESTRY","('SCIE',)","12,497","3.5","Q1","1.42","15.53" +"JOURNAL OF TELEMEDICINE AND TELECARE","1357-633X","1758-1109","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","5,586","3.5","Q1","1.41","11.75" +"ANNALS OF AGRICULTURAL SCIENCES","0570-1783","2090-8377","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","1,545","3.5","Q1","1.40","96.97" +"Transboundary and Emerging Diseases","1865-1674","1865-1682","('INFECTIOUS DISEASES', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","9,498","3.5","('Q2', 'Q1')","1.36","81.65" +"ACTA OBSTETRICIA ET GYNECOLOGICA SCANDINAVICA","0001-6349","1600-0412","OBSTETRICS & GYNECOLOGY","('SCIE',)","10,183","3.5","Q1","1.35","73.09" +"SCANDINAVIAN JOURNAL OF MEDICINE & SCIENCE IN SPORTS","0905-7188","1600-0838","SPORT SCIENCES","('SCIE',)","12,534","3.5","Q1","1.35","46.01" +"Biosafety and Health","2096-6962","2590-0536","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","583","3.5","Q1","1.32","95.36" +"International Political Sociology","1749-5679","1749-5687","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","1,477","3.5","('Q1', 'Q1', 'Q1')","1.29","58.97" +"EXPERIMENTAL DERMATOLOGY","0906-6705","1600-0625","DERMATOLOGY","('SCIE',)","9,297","3.5","Q1","1.28","24.66" +"VASCULAR PHARMACOLOGY","1537-1891","1879-3649","PHARMACOLOGY & PHARMACY","('SCIE',)","3,382","3.5","Q2","1.24","27.45" +"JMIR Infodemiology","","2564-1891","('HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","289","3.5","('Q1', 'Q1')","1.23","95.69" +"Journal of Minimally Invasive Gynecology","1553-4650","1553-4669","OBSTETRICS & GYNECOLOGY","('SCIE',)","5,902","3.5","Q1","1.23","6.61" +"NUCLEAR FUSION","0029-5515","1741-4326","PHYSICS, FLUIDS & PLASMAS","('SCIE',)","18,900","3.5","Q1","1.23","45.71" +"Education for Chemical Engineers","","1749-7728","('EDUCATION, SCIENTIFIC DISCIPLINES', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","808","3.5","('Q1', 'Q2')","1.22","28.57" +"EJSO","0748-7983","1532-2157","('ONCOLOGY', 'SURGERY')","('SCIE', 'SCIE')","12,822","3.5","('Q2', 'Q1')","1.22","22.47" +"OPTICS AND LASERS IN ENGINEERING","0143-8166","1873-0302","OPTICS","('SCIE',)","14,111","3.5","Q2","1.22","12.11" +"BJS Open","2474-9842","2474-9842","SURGERY","('SCIE',)","2,366","3.5","Q1","1.20","93.41" +"FINITE ELEMENTS IN ANALYSIS AND DESIGN","0168-874X","1872-6925","('MATHEMATICS, APPLIED', 'MECHANICS')","('SCIE', 'SCIE')","4,710","3.5","('Q1', 'Q1')","1.20","29.29" +"PERSONALITY AND INDIVIDUAL DIFFERENCES","0191-8869","1873-3549","PSYCHOLOGY, SOCIAL","('SSCI',)","35,040","3.5","Q1","1.20","18.34" +"ASSESSMENT","1073-1911","1552-3489","PSYCHOLOGY, CLINICAL","('SSCI',)","7,755","3.5","Q1","1.19","21.00" +"JOURNAL OF MEDICAL SYSTEMS","0148-5598","1573-689X","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE')","7,951","3.5","('Q1', 'Q2')","1.17","31.15" +"EMPIRICAL SOFTWARE ENGINEERING","1382-3256","1573-7616","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","5,092","3.5","Q1","1.16","39.53" +"CONTRIBUTIONS TO MINERALOGY AND PETROLOGY","0010-7999","1432-0967","('GEOCHEMISTRY & GEOPHYSICS', 'MINERALOGY')","('SCIE', 'SCIE')","18,779","3.5","('Q1', 'Q1')","1.15","39.61" +"JOURNAL OF SPORT MANAGEMENT","0888-4773","1543-270X","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'MANAGEMENT', 'SPORT SCIENCES')","('SSCI', 'SSCI', 'SCIE')","3,113","3.5","('Q1', 'Q2', 'Q1')","1.14","2.96" +"DALTON TRANSACTIONS","1477-9226","1477-9234","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","72,726","3.5","Q2","1.13","13.15" +"TRANSPORTATION RESEARCH PART F-TRAFFIC PSYCHOLOGY AND BEHAVIOUR","1369-8478","1873-5517","('PSYCHOLOGY, APPLIED', 'TRANSPORTATION')","('SSCI', 'SSCI')","10,038","3.5","('Q1', 'Q2')","1.13","29.54" +"Israel Journal of Health Policy Research","2045-4015","2045-4015","('HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","1,036","3.5","('Q1', 'Q1')","1.12","98.37" +"JOURNAL OF POLICY MODELING","0161-8938","1873-8060","ECONOMICS","('SSCI',)","3,025","3.5","Q1","1.12","14.22" +"JOURNAL OF MEDICAL GENETICS","0022-2593","1468-6244","GENETICS & HEREDITY","('SCIE',)","11,940","3.5","Q2","1.11","35.74" +"BMC PUBLIC HEALTH","","1471-2458","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","71,474","3.5","Q1","1.10","99.87" +"Journal of Clinical Sleep Medicine","1550-9389","1550-9397","CLINICAL NEUROLOGY","('SCIE',)","11,730","3.5","Q1","1.08","4.45" +"Dermatology and Therapy","2193-8210","2190-9172","DERMATOLOGY","('SCIE',)","2,955","3.5","Q1","1.06","98.75" +"HUMAN BRAIN MAPPING","1065-9471","1097-0193","('NEUROIMAGING', 'NEUROSCIENCES', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","25,862","3.5","('Q1', 'Q2', 'Q1')","1.06","66.51" +"Physical Review Research","","2643-1564","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","19,343","3.5","Q1","1.06","98.02" +"EUROPEAN ARCHIVES OF PSYCHIATRY AND CLINICAL NEUROSCIENCE","0940-1334","1433-8491","('CLINICAL NEUROLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE')","5,593","3.5","('Q1', 'Q2')","1.05","47.62" +"ACTA DERMATO-VENEREOLOGICA","0001-5555","1651-2057","DERMATOLOGY","('SCIE',)","7,813","3.5","Q1","1.03","98.13" +"BMC GENOMICS","1471-2164","1471-2164","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","49,161","3.5","('Q2', 'Q2')","1.03","99.84" +"EUROPEAN JOURNAL OF PAIN","1090-3801","1532-2149","('ANESTHESIOLOGY', 'CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE', 'SCIE')","8,847","3.5","('Q1', 'Q1', 'Q2')","1.03","45.08" +"Global Ecology and Conservation","","2351-9894","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","9,842","3.5","('Q1', 'Q1')","1.03","96.24" +"npj Systems Biology and Applications","","2056-7189","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('SCIE',)","1,030","3.5","Q1","1.03","100.00" +"CANCER IMAGING","1740-5025","1470-7330","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","2,885","3.5","('Q2', 'Q1')","1.02","100.00" +"SIMULATION MODELLING PRACTICE AND THEORY","1569-190X","1878-1462","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","4,045","3.5","('Q2', 'Q1')","1.02","11.59" +"ACS Medicinal Chemistry Letters","1948-5875","","CHEMISTRY, MEDICINAL","('SCIE',)","9,312","3.5","Q2","1.01","16.64" +"OUTLOOK ON AGRICULTURE","0030-7270","2043-6866","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","1,114","3.5","Q1","1.01","44.00" +"Meditari Accountancy Research","2049-372X","2049-3738","BUSINESS, FINANCE","('ESCI',)","1,909","3.5","Q1","1.00","15.00" +"European Thyroid Journal","2235-0640","2235-0802","ENDOCRINOLOGY & METABOLISM","('SCIE',)","1,906","3.5","Q2","0.99","74.87" +"Evolutionary Applications","1752-4571","1752-4571","EVOLUTIONARY BIOLOGY","('SCIE',)","6,865","3.5","Q1","0.99","76.76" +"BONE","8756-3282","1873-2763","ENDOCRINOLOGY & METABOLISM","('SCIE',)","22,671","3.5","Q2","0.98","31.76" +"JOURNAL OF SANDWICH STRUCTURES & MATERIALS","1099-6362","1530-7972","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MATERIALS SCIENCE, COMPOSITES')","('SCIE', 'SCIE', 'SCIE')","2,648","3.5","('Q1', 'Q1', 'Q2')","0.98","5.17" +"Ecosystems and People","","2639-5916","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","709","3.5","('Q1', 'Q1', 'Q2', 'Q2')","0.97","98.53" +"RESPIRATORY MEDICINE","0954-6111","1532-3064","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","13,530","3.5","('Q2', 'Q2')","0.97","63.58" +"BRAIN RESEARCH BULLETIN","0361-9230","1873-2747","NEUROSCIENCES","('SCIE',)","11,532","3.5","Q2","0.96","41.33" +"JOURNAL OF GEOPHYSICAL RESEARCH-EARTH SURFACE","2169-9003","2169-9011","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","10,259","3.5","Q1","0.96","44.36" +"JOURNAL OF PETROLOGY","0022-3530","1460-2415","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","16,236","3.5","Q1","0.96","21.81" +"DRUG DEVELOPMENT RESEARCH","0272-4391","1098-2299","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","3,188","3.5","('Q2', 'Q2')","0.95","6.63" +"REGIONAL SCIENCE AND URBAN ECONOMICS","0166-0462","1879-2308","('ECONOMICS', 'ENVIRONMENTAL STUDIES', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI')","4,405","3.5","('Q1', 'Q2', 'Q1')","0.95","20.00" +"Journal of Eating Disorders","2050-2974","2050-2974","('NUTRITION & DIETETICS', 'PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SCIE', 'SSCI')","3,027","3.5","('Q2', 'Q2', 'Q1')","0.94","100.00" +"JOURNAL OF PSYCHOSOMATIC RESEARCH","0022-3999","1879-1360","PSYCHIATRY","('SCIE', 'SSCI')","15,465","3.5","Q2","0.94","30.34" +"NEUROSCIENTIST","1073-8584","1089-4098","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","5,700","3.5","('Q1', 'Q2')","0.94","21.85" +"PATHOBIOLOGY","1015-2008","1423-0291","('CELL BIOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","1,796","3.5","('Q3', 'Q1')","0.94","32.33" +"HEALTH TECHNOLOGY ASSESSMENT","1366-5278","2046-4924","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","5,320","3.5","Q1","0.93","96.91" +"CHINESE PHYSICS LETTERS","0256-307X","1741-3540","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","6,785","3.5","Q1","0.92","0.31" +"PSYCHOPHARMACOLOGY","0033-3158","1432-2072","('NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","20,270","3.5","('Q2', 'Q2', 'Q2')","0.92","29.69" +"Asian Journal of Surgery","1015-9584","0219-3108","SURGERY","('SCIE',)","3,055","3.5","Q1","0.90","97.17" +"PERSPECTIVES IN PLANT ECOLOGY EVOLUTION AND SYSTEMATICS","1433-8319","1433-8319","('ECOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","2,662","3.5","('Q1', 'Q1')","0.90","23.81" +"VEHICLE SYSTEM DYNAMICS","0042-3114","1744-5159","ENGINEERING, MECHANICAL","('SCIE',)","7,834","3.5","Q1","0.90","16.95" +"ASTROBIOLOGY","1531-1074","1557-8070","('ASTRONOMY & ASTROPHYSICS', 'BIOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","4,991","3.5","('Q2', 'Q1', 'Q1')","0.89","28.28" +"RESPIRATION","0025-7931","1423-0356","RESPIRATORY SYSTEM","('SCIE',)","5,324","3.5","Q2","0.89","34.31" +"TRANSPORTATION","0049-4488","1572-9435","('ENGINEERING, CIVIL', 'TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SSCI', 'SCIE')","6,149","3.5","('Q1', 'Q2', 'Q2')","0.89","39.70" +"MULTIMEDIA SYSTEMS","0942-4962","1432-1882","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","2,025","3.5","('Q2', 'Q1')","0.88","4.45" +"JOURNAL OF CONTAMINANT HYDROLOGY","0169-7722","1873-6009","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","5,900","3.5","('Q2', 'Q1', 'Q2')","0.87","25.78" +"PLANT GROWTH REGULATION","0167-6903","1573-5087","PLANT SCIENCES","('SCIE',)","7,413","3.5","Q1","0.87","8.01" +"Safety and Health at Work","2093-7911","2093-7997","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","2,117","3.5","Q1","0.87","94.12" +"SCIENTOMETRICS","0138-9130","1588-2861","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SCIE', 'SSCI')","20,397","3.5","('Q2', 'Q1')","0.87","30.90" +"FOOD AND BIOPRODUCTS PROCESSING","0960-3085","1744-3571","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENGINEERING, CHEMICAL', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","6,297","3.5","('Q2', 'Q2', 'Q2')","0.86","29.85" +"International Journal of Sediment Research","1001-6279","1001-6279","('ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE')","2,095","3.5","('Q2', 'Q2')","0.85","4.27" +"International Journal of Structural Integrity","1757-9864","1757-9872","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","829","3.5","Q1","0.85","2.94" +"Metabolomics","1573-3882","1573-3890","ENDOCRINOLOGY & METABOLISM","('SCIE',)","6,412","3.5","Q2","0.85","39.03" +"BMC BIOTECHNOLOGY","","1472-6750","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","3,894","3.5","Q2","0.84","100.00" +"Intelligent Systems in Accounting Finance & Management","1055-615X","1099-1174","BUSINESS, FINANCE","('ESCI',)","441","3.5","Q1","0.84","20.00" +"INTERNATIONAL JOURNAL OF REFRIGERATION","0140-7007","1879-2081","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","16,559","3.5","('Q1', 'Q1')","0.84","10.88" +"Journal of Marketing Management","0267-257X","1472-1376","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","5,365","3.5","('Q2', 'Q2')","0.84","23.29" +"JOURNAL OF THE AMERICAN CERAMIC SOCIETY","0002-7820","1551-2916","MATERIALS SCIENCE, CERAMICS","('SCIE',)","51,132","3.5","Q1","0.84","12.96" +"NEUROGASTROENTEROLOGY AND MOTILITY","1350-1925","1365-2982","('CLINICAL NEUROLOGY', 'GASTROENTEROLOGY & HEPATOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE', 'SCIE')","9,684","3.5","('Q1', 'Q2', 'Q2')","0.84","27.71" +"Journal of the Academy of Nutrition and Dietetics","2212-2672","2212-2680","NUTRITION & DIETETICS","('SCIE',)","7,536","3.5","Q2","0.83","25.23" +"AMB Express","2191-0855","2191-0855","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","5,826","3.5","Q2","0.82","99.79" +"ARCHIVES OF GERONTOLOGY AND GERIATRICS","0167-4943","1872-6976","GERIATRICS & GERONTOLOGY","('SCIE',)","8,965","3.5","Q2","0.82","26.57" +"FEMS MICROBIOLOGY ECOLOGY","0168-6496","1574-6941","MICROBIOLOGY","('SCIE',)","17,257","3.5","Q2","0.82","25.15" +"PHARMACEUTICAL RESEARCH","0724-8741","1573-904X","('CHEMISTRY, MULTIDISCIPLINARY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","20,070","3.5","('Q2', 'Q2')","0.82","22.17" +"APPLIED PHYSICS LETTERS","0003-6951","1077-3118","PHYSICS, APPLIED","('SCIE',)","178,216","3.5","Q2","0.81","18.43" +"Big Data Research","2214-5796","2214-5796","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","966","3.5","('Q2', 'Q2', 'Q1')","0.81","16.15" +"Frontiers in Molecular Neuroscience","1662-5099","1662-5099","NEUROSCIENCES","('SCIE',)","13,927","3.5","Q2","0.81","99.80" +"PeerJ Computer Science","","2376-5992","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","4,862","3.5","('Q2', 'Q2', 'Q1')","0.81","99.27" +"PRECISION ENGINEERING-JOURNAL OF THE INTERNATIONAL SOCIETIES FOR PRECISION ENGINEERING AND NANOTECHNOLOGY","0141-6359","1873-2372","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MULTIDISCIPLINARY', 'INSTRUMENTS & INSTRUMENTATION', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","7,111","3.5","('Q2', 'Q1', 'Q2', 'Q3')","0.81","17.44" +"Sensors & Diagnostics","","2635-0998","CHEMISTRY, ANALYTICAL","('ESCI',)","449","3.5","Q2","0.81","100.00" +"Adipocyte","2162-3945","2162-397X","ENDOCRINOLOGY & METABOLISM","('SCIE',)","1,514","3.5","Q2","0.80","99.25" +"Chronic Respiratory Disease","1479-9723","1479-9731","RESPIRATORY SYSTEM","('SCIE',)","1,482","3.5","Q2","0.80","93.89" +"Clinical Interventions in Aging","","1178-1998","GERIATRICS & GERONTOLOGY","('SCIE',)","9,902","3.5","Q2","0.80","98.24" +"European Geriatric Medicine","1878-7649","1878-7657","GERIATRICS & GERONTOLOGY","('SCIE',)","2,479","3.5","Q2","0.80","40.42" +"IEEE Open Journal of Antennas and Propagation","","2637-6431","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI')","970","3.5","('Q2', 'Q2')","0.80","98.34" +"BIOTECHNOLOGY AND BIOENGINEERING","0006-3592","1097-0290","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","21,938","3.5","Q2","0.79","31.31" +"Climate and Development","1756-5529","1756-5537","('DEVELOPMENT STUDIES', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","2,568","3.5","('Q1', 'Q2')","0.79","27.54" +"ACS Chemical Biology","1554-8929","1554-8937","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","15,624","3.5","Q2","0.78","14.94" +"INTERNATIONAL JOURNAL OF CLIMATOLOGY","0899-8418","1097-0088","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","28,026","3.5","Q2","0.78","21.35" +"Frontiers in Agronomy","","2673-3218","AGRONOMY","('ESCI',)","1,010","3.5","Q1","0.76","99.68" +"PUBLIC HEALTH REVIEWS","","2107-6952","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","1,533","3.5","Q1","0.76","98.65" +"GEOTHERMICS","0375-6505","1879-3576","('ENERGY & FUELS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","7,704","3.5","('Q3', 'Q1')","0.75","26.27" +"International Journal of Climate Change Strategies and Management","1756-8692","1756-8706","ENVIRONMENTAL STUDIES","('SSCI',)","1,424","3.5","Q2","0.75","98.21" +"NATURAL RESOURCES FORUM","0165-0203","1477-8947","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SSCI')","1,370","3.5","('Q2', 'Q2')","0.75","14.10" +"Frontiers in Oncology","2234-943X","2234-943X","ONCOLOGY","('SCIE',)","81,622","3.5","Q2","0.74","99.56" +"Progress in Earth and Planetary Science","2197-4284","2197-4284","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","1,787","3.5","Q1","0.74","100.00" +"Food Science & Nutrition","2048-7177","2048-7177","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","12,031","3.5","Q2","0.73","72.41" +"INTERNATIONAL JOURNAL OF FOOD SCIENCES AND NUTRITION","0963-7486","1465-3478","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","6,092","3.5","('Q2', 'Q2')","0.73","16.91" +"INTERNATIONAL JOURNAL OF DERMATOLOGY","0011-9059","1365-4632","DERMATOLOGY","('SCIE',)","9,740","3.5","Q1","0.72","11.66" +"Tissue Engineering Part A","1937-3341","1937-335X","('CELL & TISSUE ENGINEERING', 'CELL BIOLOGY', 'ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,309","3.5","('Q3', 'Q3', 'Q2', 'Q3')","0.72","3.03" +"Journal of Structural Biology-X","","2590-1524","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CELL BIOLOGY')","('ESCI', 'ESCI', 'ESCI')","268","3.5","('Q2', 'Q1', 'Q3')","0.71","100.00" +"ACM Transactions on Internet of Things","2691-1914","2577-6207","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI', 'ESCI')","275","3.5","('Q2', 'Q2', 'Q2')","0.68","2.30" +"BIOPROCESS AND BIOSYSTEMS ENGINEERING","1615-7591","1615-7605","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","6,427","3.5","('Q2', 'Q2')","0.68","8.15" +"Environmental Science-Water Research & Technology","2053-1400","2053-1419","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","6,309","3.5","('Q3', 'Q2', 'Q2')","0.68","15.61" +"JOURNAL OF FOOD BIOCHEMISTRY","0145-8884","1745-4514","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","8,996","3.5","('Q2', 'Q2')","0.68","79.88" +"PPAR Research","1687-4757","1687-4765","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","1,360","3.5","Q2","0.68","100.00" +"Young Consumers","1758-7212","1747-3616","BUSINESS","('ESCI',)","1,086","3.5","Q2","0.68","7.20" +"INTERNATIONAL JOURNAL OF HIGH PERFORMANCE COMPUTING APPLICATIONS","1094-3420","1741-2846","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","1,118","3.5","('Q2', 'Q2', 'Q1')","0.67","16.51" +"EXERCISE IMMUNOLOGY REVIEW","1077-5552","1077-5552","('IMMUNOLOGY', 'SPORT SCIENCES')","('SCIE', 'SCIE')","818","3.5","('Q2', 'Q1')","0.66","0.00" +"Food & Nutrition Research","1654-6628","1654-661X","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","2,753","3.5","('Q2', 'Q2')","0.66","95.26" +"JOURNAL OF MATERIALS SCIENCE","0022-2461","1573-4803","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","66,716","3.5","Q2","0.66","10.71" +"Chemical Methodologies","2645-7776","2588-4344","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","791","3.5","Q2","0.65","1.80" +"Current Opinion in Critical Care","1070-5295","1531-7072","CRITICAL CARE MEDICINE","('SCIE',)","3,900","3.5","Q1","0.61","9.85" +"Environments","","2076-3298","ENVIRONMENTAL SCIENCES","('ESCI',)","2,916","3.5","Q2","0.60","99.01" +"Journal of Immunology Research","2314-8861","2314-7156","IMMUNOLOGY","('SCIE',)","10,428","3.5","Q2","0.60","99.88" +"Perspectives in Public Health","1757-9139","1757-9147","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","1,259","3.5","Q1","0.60","48.08" +"Air Soil and Water Research","1178-6221","1178-6221","ENVIRONMENTAL SCIENCES","('ESCI',)","569","3.5","Q2","0.59","94.68" +"CURRENT MEDICINAL CHEMISTRY","0929-8673","1875-533X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","20,286","3.5","('Q2', 'Q2', 'Q2')","0.58","0.31" +"Smart and Sustainable Built Environment","2046-6099","2046-6102","GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY","('ESCI',)","1,090","3.5","Q3","0.58","7.58" +"AICHE JOURNAL","0001-1541","1547-5905","ENGINEERING, CHEMICAL","('SCIE',)","27,984","3.5","Q2","0.57","11.54" +"Biomass Conversion and Biorefinery","2190-6815","2190-6823","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","14,282","3.5","('Q3', 'Q2')","0.56","8.31" +"IEEE Transactions on Human-Machine Systems","2168-2291","2168-2305","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, CYBERNETICS')","('SCIE', 'SCIE')","2,776","3.5","('Q2', 'Q1')","0.56","14.81" +"MOLECULAR AND CELLULAR BIOCHEMISTRY","0300-8177","1573-4919","CELL BIOLOGY","('SCIE',)","13,784","3.5","Q3","0.56","13.23" +"ChemElectroChem","2196-0216","2196-0216","ELECTROCHEMISTRY","('SCIE',)","14,220","3.5","Q2","0.55","37.08" +"JOURNAL OF BASIC MICROBIOLOGY","0233-111X","1521-4028","MICROBIOLOGY","('SCIE',)","4,328","3.5","Q2","0.55","2.39" +"Environmental Science-Advances","","2754-7000","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('ESCI', 'ESCI')","365","3.5","('Q3', 'Q2')","0.54","99.04" +"Journal of Virus Eradication","2055-6640","2055-6659","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'VIROLOGY')","('SCIE', 'SCIE', 'SCIE')","642","3.5","('Q2', 'Q2', 'Q2')","0.54","94.81" +"Chemistry-An Asian Journal","1861-4728","1861-471X","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","15,795","3.5","Q2","0.51","5.89" +"Nanotechnology and Precision Engineering","1672-6030","2589-5540","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('ESCI', 'ESCI', 'ESCI')","454","3.5","('Q2', 'Q3', 'Q2')","0.51","96.25" +"Energy Science & Engineering","","2050-0505","ENERGY & FUELS","('SCIE',)","4,676","3.5","Q3","0.50","88.46" +"PHAGE-Therapy Applications and Research","2641-6530","2641-6549","('MICROBIOLOGY', 'VIROLOGY')","('ESCI', 'ESCI')","236","3.5","('Q2', 'Q2')","0.49","98.41" +"ACTA GEOLOGICA SINICA-ENGLISH EDITION","1000-9515","1755-6724","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","6,980","3.5","Q1","0.44","3.38" +"COLUMBIA LAW REVIEW","0010-1958","1945-2268","LAW","('SSCI',)","3,080","3.4","Q1","3.17","0.00" +"MEDIA PSYCHOLOGY","1521-3269","1532-785X","('COMMUNICATION', 'FILM, RADIO, TELEVISION', 'PSYCHOLOGY, APPLIED')","('SSCI', 'AHCI', 'SSCI')","2,784","3.4","('Q1', 'N/A', 'Q1')","3.03","25.64" +"Ethics and Information Technology","1388-1957","1572-8439","('ETHICS', 'INFORMATION SCIENCE & LIBRARY SCIENCE', 'PHILOSOPHY')","('SSCI', 'SSCI', 'AHCI')","2,057","3.4","('Q1', 'Q1', 'N/A')","2.99","61.31" +"RIED-Revista Iberoamericana de Educacion a Distancia","1138-2783","1390-3306","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","575","3.4","Q1","2.21","98.99" +"Technology Pedagogy and Education","1475-939X","1747-5139","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,227","3.4","Q1","2.06","18.18" +"JOURNAL OF ARTHROPLASTY","0883-5403","1532-8406","ORTHOPEDICS","('SCIE',)","27,900","3.4","Q1","1.75","4.91" +"JOURNAL OF PEACE RESEARCH","0022-3433","1460-3578","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","6,802","3.4","('Q1', 'Q1')","1.71","31.76" +"CHILD ABUSE & NEGLECT","0145-2134","1873-7757","('FAMILY STUDIES', 'PSYCHOLOGY, SOCIAL', 'SOCIAL WORK')","('SSCI', 'SSCI', 'SSCI')","18,453","3.4","('Q1', 'Q1', 'Q1')","1.68","20.73" +"ACADEMIC EMERGENCY MEDICINE","1069-6563","1553-2712","EMERGENCY MEDICINE","('SCIE',)","9,852","3.4","Q1","1.64","16.28" +"Health Policy and Technology","2211-8837","","HEALTH POLICY & SERVICES","('SSCI',)","1,377","3.4","Q1","1.63","21.16" +"Policy Insights from the Behavioral and Brain Sciences","2372-7322","2372-7330","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","1,012","3.4","('Q1', 'Q1')","1.61","13.19" +"Journal of Prosthodontics-Implant Esthetic and Reconstructive Dentistry","1059-941X","1532-849X","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","5,857","3.4","Q1","1.59","14.07" +"Chinese Political Science Review","2365-4244","2365-4252","POLITICAL SCIENCE","('ESCI',)","407","3.4","Q1","1.58","23.61" +"PERSPECTIVES ON SEXUAL AND REPRODUCTIVE HEALTH","1538-6341","1931-2393","('DEMOGRAPHY', 'FAMILY STUDIES')","('SSCI', 'SSCI')","1,339","3.4","('Q1', 'Q1')","1.58","47.06" +"EMOTION","1528-3542","1931-1516","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","12,256","3.4","Q1","1.49","7.44" +"JOURNAL OF MOLECULAR DIAGNOSTICS","1525-1578","1943-7811","PATHOLOGY","('SCIE',)","5,214","3.4","Q1","1.49","84.10" +"Journal of Dental Sciences","1991-7902","2213-8862","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","2,583","3.4","Q1","1.47","97.81" +"Educational Studies in Mathematics","0013-1954","1573-0816","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,805","3.4","Q1","1.45","48.48" +"JOURNAL OF PERIODONTAL RESEARCH","0022-3484","1600-0765","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","5,635","3.4","Q1","1.45","17.70" +"Worldviews on Evidence-Based Nursing","1545-102X","1741-6787","NURSING","('SCIE', 'SSCI')","2,312","3.4","Q1","1.44","19.05" +"JOR Spine","2572-1143","2572-1143","ORTHOPEDICS","('SCIE',)","736","3.4","Q1","1.42","75.35" +"Communications in Nonlinear Science and Numerical Simulation","1007-5704","1878-7274","('MATHEMATICS, APPLIED', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MECHANICS', 'PHYSICS, FLUIDS & PLASMAS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","15,370","3.4","('Q1', 'Q1', 'Q1', 'Q1', 'Q1')","1.41","11.34" +"Journal of Pathology Clinical Research","","2056-4538","PATHOLOGY","('SCIE',)","1,015","3.4","Q1","1.40","66.67" +"Child and Adolescent Psychiatry and Mental Health","","1753-2000","('PEDIATRICS', 'PSYCHIATRY')","('SCIE', 'SCIE, SSCI')","2,684","3.4","('Q1', 'Q2')","1.39","99.68" +"Canadian Journal of Anesthesia-Journal canadien d anesthesie","0832-610X","1496-8975","ANESTHESIOLOGY","('SCIE',)","6,642","3.4","Q1","1.38","18.00" +"Clinical Simulation in Nursing","1876-1399","1876-1402","NURSING","('SCIE', 'SSCI')","2,764","3.4","Q1","1.37","13.20" +"GEOFORUM","0016-7185","1872-9398","GEOGRAPHY","('SSCI',)","11,406","3.4","Q1","1.34","38.27" +"JOURNALISM & MASS COMMUNICATION QUARTERLY","1077-6990","2161-430X","COMMUNICATION","('SSCI',)","3,501","3.4","Q1","1.32","17.29" +"JOURNAL OF HEALTH ECONOMICS","0167-6296","1879-1646","('ECONOMICS', 'HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SSCI', 'SCIE', 'SSCI')","8,075","3.4","('Q1', 'Q1', 'Q1')","1.30","31.40" +"Journal of Industrial Integration and Management-Innovation and Entrepreneurship","2424-8622","2424-8630","MANAGEMENT","('ESCI',)","616","3.4","Q2","1.30","0.00" +"Journal of Contextual Behavioral Science","2212-1447","2212-1455","PSYCHOLOGY, CLINICAL","('SSCI',)","2,513","3.4","Q1","1.29","20.78" +"ATOMIC SPECTROSCOPY","0195-5373","2708-521X","SPECTROSCOPY","('SCIE',)","864","3.4","Q1","1.27","0.00" +"ANNALS OF SURGICAL ONCOLOGY","1068-9265","1534-4681","('ONCOLOGY', 'SURGERY')","('SCIE', 'SCIE')","34,471","3.4","('Q2', 'Q1')","1.21","15.78" +"ORGANIZATIONAL BEHAVIOR AND HUMAN DECISION PROCESSES","0749-5978","1095-9920","('MANAGEMENT', 'PSYCHOLOGY, APPLIED', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI', 'SSCI')","15,927","3.4","('Q2', 'Q1', 'Q1')","1.21","19.89" +"BEHAVIOR THERAPY","0005-7894","1878-1888","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","7,027","3.4","('Q2', 'Q1')","1.19","17.77" +"Cognitive Research-Principles and Implications","2365-7464","2365-7464","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","1,696","3.4","Q1","1.19","100.00" +"APPLIED ACOUSTICS","0003-682X","1872-910X","ACOUSTICS","('SCIE',)","14,153","3.4","Q1","1.18","11.45" +"Geochemical Perspectives Letters","2410-339X","2410-3403","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","1,113","3.4","Q1","1.18","100.00" +"BMJ Sexual & Reproductive Health","2515-1991","2515-2009","('FAMILY STUDIES', 'OBSTETRICS & GYNECOLOGY', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SCIE', 'SSCI')","650","3.4","('Q1', 'Q1', 'Q1')","1.16","27.41" +"Journal of Positive Psychology","1743-9760","1743-9779","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","6,047","3.4","Q1","1.16","17.62" +"Sleep Health","2352-7218","2352-7226","CLINICAL NEUROLOGY","('SCIE',)","3,433","3.4","Q2","1.14","25.99" +"AMERICAN JOURNAL OF COMMUNITY PSYCHOLOGY","0091-0562","1573-2770","('PSYCHOLOGY, MULTIDISCIPLINARY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL WORK')","('SSCI', 'SSCI', 'SSCI')","7,334","3.4","('Q1', 'Q1', 'Q1')","1.13","26.92" +"JOURNAL OF AGRICULTURAL ECONOMICS","0021-857X","1477-9552","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('SCIE', 'SSCI')","2,847","3.4","('Q1', 'Q1')","1.12","48.12" +"Journal of Gynecologic Oncology","2005-0380","2005-0399","('OBSTETRICS & GYNECOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","2,364","3.4","('Q1', 'Q2')","1.12","99.05" +"Journal of Healthcare Leadership","1179-3201","1179-3201","HEALTH POLICY & SERVICES","('ESCI',)","393","3.4","Q1","1.12","98.73" +"JOURNAL OF PARALLEL AND DISTRIBUTED COMPUTING","0743-7315","1096-0848","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","4,685","3.4","Q1","1.11","19.96" +"VIRCHOWS ARCHIV","0945-6317","1432-2307","PATHOLOGY","('SCIE',)","7,835","3.4","Q1","1.11","37.72" +"IEEE AEROSPACE AND ELECTRONIC SYSTEMS MAGAZINE","0885-8985","1557-959X","('ENGINEERING, AEROSPACE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","2,194","3.4","('Q1', 'Q2')","1.10","0.00" +"BMC Geriatrics","","1471-2318","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY')","('SCIE', 'SSCI')","18,258","3.4","('Q2', 'Q2')","1.09","99.88" +"AGGRESSION AND VIOLENT BEHAVIOR","1359-1789","1873-6335","('CRIMINOLOGY & PENOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","6,212","3.4","('Q1', 'Q1')","1.07","17.11" +"JOURNAL OF GEOCHEMICAL EXPLORATION","0375-6742","1879-1689","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","9,145","3.4","Q1","1.06","14.92" +"JOURNAL OF PHYSICS G-NUCLEAR AND PARTICLE PHYSICS","0954-3899","1361-6471","('PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","7,535","3.4","('Q2', 'Q2')","1.06","19.74" +"JOURNAL OF RENAL NUTRITION","1051-2276","1532-8503","('NUTRITION & DIETETICS', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","2,948","3.4","('Q2', 'Q1')","1.06","21.63" +"PERSONALITY AND SOCIAL PSYCHOLOGY BULLETIN","0146-1672","1552-7433","PSYCHOLOGY, SOCIAL","('SSCI',)","19,602","3.4","Q1","1.06","27.92" +"Evolution Letters","","2056-3744","EVOLUTIONARY BIOLOGY","('SCIE',)","1,183","3.4","Q2","1.05","76.00" +"PLoS Neglected Tropical Diseases","1935-2735","1935-2735","('PARASITOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","33,654","3.4","('Q1', 'Q1')","1.05","99.79" +"British Food Journal","0007-070X","1758-4108","('AGRICULTURAL ECONOMICS & POLICY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","8,704","3.4","('Q1', 'Q2')","1.04","13.53" +"BMC Psychiatry","","1471-244X","PSYCHIATRY","('SCIE',)","22,826","3.4","Q2","1.03","99.87" +"Movement Ecology","2051-3933","2051-3933","ECOLOGY","('SCIE',)","1,684","3.4","Q2","1.03","100.00" +"PEDIATRIC DRUGS","1174-5878","1179-2019","('PEDIATRICS', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,897","3.4","('Q1', 'Q2')","1.03","29.27" +"Rhizosphere","","2452-2198","('PLANT SCIENCES', 'SOIL SCIENCE')","('SCIE', 'SCIE')","2,357","3.4","('Q1', 'Q2')","1.03","7.41" +"GENOMICS","0888-7543","1089-8646","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","12,262","3.4","('Q2', 'Q2')","1.02","97.93" +"BUSINESS ETHICS QUARTERLY","1052-150X","2153-3326","('BUSINESS', 'ETHICS')","('SSCI', 'SSCI')","2,703","3.4","('Q2', 'Q1')","1.01","44.30" +"INTERNATIONAL JOURNAL OF HEALTH SERVICES","0020-7314","1541-4469","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","2,213","3.4","('Q1', 'Q1')","1.01","36.62" +"Journal of Systematics and Evolution","1674-4918","1759-6831","PLANT SCIENCES","('SCIE',)","2,701","3.4","Q1","1.01","17.87" +"New Directions for Child and Adolescent Development","1520-3247","1534-8687","('PSYCHOLOGY, DEVELOPMENTAL', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,969","3.4","('Q1', 'Q1')","1.01","73.08" +"TOXICOLOGICAL SCIENCES","1096-6080","1096-0929","TOXICOLOGY","('SCIE',)","16,088","3.4","Q2","1.01","22.63" +"JOURNAL OF BIOGEOGRAPHY","0305-0270","1365-2699","('ECOLOGY', 'GEOGRAPHY, PHYSICAL')","('SCIE', 'SCIE')","16,982","3.4","('Q2', 'Q1')","0.99","30.94" +"JOURNAL OF SLEEP RESEARCH","0962-1105","1365-2869","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","9,539","3.4","('Q2', 'Q2')","0.99","42.71" +"Patient-Patient Centered Outcomes Research","1178-1653","1178-1661","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","2,192","3.4","('Q1', 'Q1')","0.99","55.17" +"ECOSYSTEMS","1432-9840","1435-0629","ECOLOGY","('SCIE',)","10,115","3.4","Q2","0.98","33.22" +"Frontiers of Computer Science","2095-2228","2095-2236","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","2,015","3.4","('Q2', 'Q2', 'Q1')","0.98","0.71" +"NeuroImage-Clinical","2213-1582","2213-1582","NEUROIMAGING","('SCIE',)","14,236","3.4","Q2","0.98","99.41" +"NEUROTOXICOLOGY","0161-813X","1872-9711","('NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","7,562","3.4","('Q2', 'Q2', 'Q2')","0.98","27.43" +"Tourism Recreation Research","0250-8281","2320-0308","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","2,511","3.4","Q1","0.98","19.19" +"Database-The Journal of Biological Databases and Curation","1758-0463","1758-0463","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('SCIE',)","5,599","3.4","Q1","0.97","93.81" +"Cornell Hospitality Quarterly","1938-9655","1938-9663","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'MANAGEMENT', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","1,910","3.4","('Q1', 'Q2', 'Q1')","0.96","16.16" +"Industry and Innovation","1366-2716","1469-8390","('ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI')","2,479","3.4","('Q1', 'Q2')","0.96","41.48" +"Clinical Epidemiology","1179-1349","1179-1349","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","5,551","3.4","Q1","0.95","97.54" +"JOURNAL OF FORESTRY RESEARCH","1007-662X","1993-0607","FORESTRY","('SCIE',)","4,567","3.4","Q1","0.94","41.05" +"Practical Radiation Oncology","1879-8500","1879-8500","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","2,950","3.4","('Q2', 'Q1')","0.94","8.90" +"AAPS PHARMSCITECH","1530-9932","1530-9932","PHARMACOLOGY & PHARMACY","('SCIE',)","11,853","3.4","Q2","0.93","14.86" +"AIDS PATIENT CARE AND STDS","1087-2914","1557-7449","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI')","3,022","3.4","('Q2', 'Q1')","0.93","18.24" +"SIGNAL PROCESSING","0165-1684","1872-7557","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","15,976","3.4","Q2","0.93","10.88" +"JOURNAL OF FORECASTING","0277-6693","1099-131X","('ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI')","2,822","3.4","('Q1', 'Q2')","0.92","19.65" +"Physics & Imaging in Radiation Oncology","","2405-6316","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('ESCI', 'ESCI')","1,349","3.4","('Q2', 'Q1')","0.92","81.44" +"PSYCHONEUROENDOCRINOLOGY","0306-4530","1873-3360","('ENDOCRINOLOGY & METABOLISM', 'NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","19,127","3.4","('Q2', 'Q2', 'Q2')","0.91","39.21" +"PHYSIOLOGY AND MOLECULAR BIOLOGY OF PLANTS","0971-5894","0974-0430","PLANT SCIENCES","('SCIE',)","4,471","3.4","Q1","0.90","3.76" +"Diabetology & Metabolic Syndrome","","1758-5996","ENDOCRINOLOGY & METABOLISM","('SCIE',)","4,571","3.4","Q2","0.89","100.00" +"International Journal of Pavement Engineering","1029-8436","1477-268X","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING')","('SCIE', 'SCIE', 'SCIE')","6,969","3.4","('Q2', 'Q2', 'Q1')","0.89","5.51" +"JOURNAL OF ALZHEIMERS DISEASE","1387-2877","1875-8908","NEUROSCIENCES","('SCIE',)","35,517","3.4","Q2","0.89","24.10" +"JOURNAL OF FLUIDS AND STRUCTURES","0889-9746","1095-8622","('ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE')","11,123","3.4","('Q1', 'Q1')","0.89","22.32" +"Journal of Informetrics","1751-1577","1875-5879","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SCIE', 'SSCI')","6,661","3.4","('Q2', 'Q1')","0.89","17.27" +"Cardiovascular Toxicology","1530-7905","1559-0259","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'TOXICOLOGY')","('SCIE', 'SCIE')","1,971","3.4","('Q2', 'Q2')","0.88","13.98" +"IEEE Access","2169-3536","2169-3536","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","244,876","3.4","('Q2', 'Q2', 'Q2')","0.87","97.94" +"INTERNATIONAL JOURNAL OF SOLIDS AND STRUCTURES","0020-7683","1879-2146","MECHANICS","('SCIE',)","28,774","3.4","Q1","0.87","53.02" +"Intestinal Research","1598-9100","1598-9100","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","1,466","3.4","Q2","0.87","99.25" +"Korean Journal of Pain","2005-9159","2093-0569","CLINICAL NEUROLOGY","('SCIE',)","1,181","3.4","Q2","0.87","100.00" +"SENSORS","","1424-8220","('CHEMISTRY, ANALYTICAL', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE', 'SCIE')","176,100","3.4","('Q2', 'Q2', 'Q2')","0.87","99.60" +"Biocatalysis and Agricultural Biotechnology","","1878-8181","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('ESCI',)","8,902","3.4","Q2","0.86","3.59" +"Career Development International","1362-0436","1758-6003","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","2,877","3.4","('Q2', 'Q1')","0.86","15.00" +"JOURNAL OF ENDOCRINOLOGY","0022-0795","1479-6805","ENDOCRINOLOGY & METABOLISM","('SCIE',)","10,825","3.4","Q2","0.86","18.78" +"REVIEWS IN THE NEUROSCIENCES","0334-1763","2191-0200","NEUROSCIENCES","('SCIE',)","3,212","3.4","Q2","0.86","17.58" +"Cosmetics","","2079-9284","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'DERMATOLOGY')","('ESCI', 'ESCI')","2,349","3.4","('Q2', 'Q2')","0.85","99.30" +"FINANCIAL ANALYSTS JOURNAL","0015-198X","1938-3312","BUSINESS, FINANCE","('SSCI',)","3,170","3.4","Q1","0.85","25.30" +"INTERNATIONAL JOURNAL FOR NUMERICAL AND ANALYTICAL METHODS IN GEOMECHANICS","0363-9061","1096-9853","('ENGINEERING, GEOLOGICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","8,558","3.4","('Q2', 'Q2', 'Q1')","0.85","16.74" +"INTERNATIONAL JOURNAL OF HUMAN-COMPUTER INTERACTION","1044-7318","1532-7590","('COMPUTER SCIENCE, CYBERNETICS', 'ERGONOMICS')","('SCIE', 'SSCI')","7,423","3.4","('Q2', 'Q1')","0.85","13.71" +"AGING CLINICAL AND EXPERIMENTAL RESEARCH","1594-0667","1720-8319","GERIATRICS & GERONTOLOGY","('SCIE',)","8,268","3.4","Q2","0.83","34.32" +"BIOCHIMICA ET BIOPHYSICA ACTA-BIOENERGETICS","0005-2728","1879-2650","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","11,832","3.4","('Q2', 'Q1')","0.83","81.04" +"ENZYME AND MICROBIAL TECHNOLOGY","0141-0229","1879-0909","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","9,770","3.4","Q2","0.83","11.06" +"Journal of Soil Science and Plant Nutrition","0718-9508","0718-9516","('ENVIRONMENTAL SCIENCES', 'PLANT SCIENCES', 'SOIL SCIENCE')","('SCIE', 'SCIE', 'SCIE')","6,339","3.4","('Q2', 'Q1', 'Q2')","0.83","9.82" +"Journal of Space Weather and Space Climate","2115-7251","2115-7251","('ASTRONOMY & ASTROPHYSICS', 'GEOCHEMISTRY & GEOPHYSICS', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE')","1,470","3.4","('Q2', 'Q1', 'Q2')","0.83","97.62" +"RAPID PROTOTYPING JOURNAL","1355-2546","1758-7670","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","7,457","3.4","('Q1', 'Q2')","0.83","6.13" +"CNS SPECTRUMS","1092-8529","2165-6509","('CLINICAL NEUROLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE')","3,454","3.4","('Q2', 'Q2')","0.82","33.48" +"JNCI Cancer Spectrum","","2515-5091","ONCOLOGY","('ESCI',)","1,963","3.4","Q2","0.82","94.96" +"MECHANICS OF MATERIALS","0167-6636","1872-7743","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE')","10,981","3.4","('Q2', 'Q1')","0.82","20.97" +"Orphanet Journal of Rare Diseases","","1750-1172","('GENETICS & HEREDITY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","13,623","3.4","('Q2', 'Q2')","0.82","99.52" +"SIGNAL PROCESSING-IMAGE COMMUNICATION","0923-5965","1879-2677","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","4,456","3.4","Q2","0.82","6.08" +"BIOLOGICAL TRACE ELEMENT RESEARCH","0163-4984","1559-0720","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","17,010","3.4","('Q2', 'Q2')","0.81","10.00" +"Heliyon","","2405-8440","MULTIDISCIPLINARY SCIENCES","('SCIE',)","53,911","3.4","Q1","0.81","95.90" +"Australian Prescriber","0312-8008","1839-3942","PHARMACOLOGY & PHARMACY","('ESCI',)","1,046","3.4","Q2","0.80","100.00" +"Cardiovascular Therapeutics","1755-5914","1755-5922","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,745","3.4","('Q2', 'Q2')","0.80","99.28" +"Trends in Neuroscience and Education","2452-0837","2211-9493","NEUROSCIENCES","('ESCI',)","630","3.4","Q2","0.80","27.87" +"ADVANCES IN THERAPY","0741-238X","1865-8652","('MEDICINE, RESEARCH & EXPERIMENTAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","8,849","3.4","('Q2', 'Q2')","0.79","68.88" +"BMC CANCER","","1471-2407","ONCOLOGY","('SCIE',)","44,444","3.4","Q2","0.79","99.67" +"IEEE Transactions on Medical Robotics and Bionics","","2576-3202","('ENGINEERING, BIOMEDICAL', 'ROBOTICS')","('ESCI', 'ESCI')","1,193","3.4","('Q2', 'Q2')","0.79","25.77" +"Pain Reports","","2471-2531","NEUROSCIENCES","('ESCI',)","1,800","3.4","Q2","0.79","100.00" +"Research and Practice in Thrombosis and Haemostasis","","2475-0379","('HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","2,525","3.4","('Q2', 'Q1')","0.78","63.87" +"Wearable Technologies","","2631-7176","('ENGINEERING, BIOMEDICAL', 'REHABILITATION', 'ROBOTICS')","('ESCI', 'ESCI', 'ESCI')","228","3.4","('Q2', 'Q1', 'Q2')","0.78","100.00" +"Biomimetics","","2313-7673","('ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","2,498","3.4","('Q1', 'Q3')","0.77","100.00" +"European Management Review","1740-4754","1740-4762","MANAGEMENT","('SSCI',)","1,869","3.4","Q2","0.77","47.59" +"Therapeutic Advances in Musculoskeletal Disease","1759-720X","1759-7218","RHEUMATOLOGY","('SCIE',)","2,126","3.4","Q2","0.77","92.97" +"JBMR Plus","","2473-4039","ENDOCRINOLOGY & METABOLISM","('ESCI',)","1,624","3.4","Q2","0.76","80.65" +"SOLID STATE SCIENCES","1293-2558","1873-3085","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, PHYSICAL', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","8,366","3.4","('Q2', 'Q2', 'Q2')","0.76","7.22" +"Therapeutic Advances in Psychopharmacology","2045-1253","2045-1261","('PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE')","1,416","3.4","('Q2', 'Q2')","0.76","91.80" +"Current Opinion in Systems Biology","2452-3100","2452-3100","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('ESCI', 'ESCI')","922","3.4","('Q2', 'Q1')","0.75","56.30" +"NUTRITION RESEARCH","0271-5317","1879-0739","NUTRITION & DIETETICS","('SCIE',)","6,492","3.4","Q2","0.75","18.21" +"Regional Environmental Change","1436-3798","1436-378X","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SSCI')","7,560","3.4","('Q2', 'Q2')","0.75","45.61" +"BMC INFECTIOUS DISEASES","","1471-2334","INFECTIOUS DISEASES","('SCIE',)","27,786","3.4","Q2","0.74","99.64" +"CLINICAL AND EXPERIMENTAL RHEUMATOLOGY","0392-856X","1593-098X","RHEUMATOLOGY","('SCIE',)","10,551","3.4","Q2","0.74","0.00" +"DRUGS & AGING","1170-229X","1179-1969","('GERIATRICS & GERONTOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","4,343","3.4","('Q2', 'Q2')","0.74","33.61" +"International Journal of Construction Management","1562-3599","2331-2327","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MANAGEMENT')","('ESCI', 'ESCI', 'ESCI')","3,602","3.4","('Q2', 'Q2', 'Q2')","0.74","8.80" +"ADMET and DMPK","1848-7718","1848-7718","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('ESCI', 'ESCI')","421","3.4","('Q2', 'Q2')","0.73","97.62" +"Gut and Liver","1976-2283","2005-1212","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,623","3.4","Q2","0.73","99.68" +"Molecular Medicine Reports","1791-2997","1791-3004","('MEDICINE, RESEARCH & EXPERIMENTAL', 'ONCOLOGY')","('SCIE', 'SCIE')","27,371","3.4","('Q2', 'Q2')","0.73","85.43" +"Fire Safety Journal","0379-7112","1873-7226","('ENGINEERING, CIVIL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","8,454","3.4","('Q2', 'Q2')","0.72","26.95" +"MATERIALS AND STRUCTURES","1359-5997","1871-6873","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","16,320","3.4","('Q2', 'Q2', 'Q2')","0.72","29.25" +"NAR Cancer","2632-8674","2632-8674","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ONCOLOGY')","('ESCI', 'ESCI')","617","3.4","('Q2', 'Q2')","0.72","95.51" +"Therapeutic Advances in Drug Safety","2042-0986","2042-0994","PHARMACOLOGY & PHARMACY","('SCIE',)","1,536","3.4","Q2","0.72","94.38" +"International Journal of Interactive Multimedia and Artificial Intelligence","1989-1660","1989-1660","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","1,342","3.4","('Q2', 'Q2')","0.71","100.00" +"ETHNICITY & DISEASE","1049-510X","1945-0826","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","2,826","3.4","Q1","0.70","0.00" +"GLYCOBIOLOGY","0959-6658","1460-2423","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","7,816","3.4","Q2","0.70","27.13" +"AIDS","0269-9370","1473-5571","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'VIROLOGY')","('SCIE', 'SCIE', 'SCIE')","14,375","3.4","('Q3', 'Q2', 'Q3')","0.69","23.31" +"CHEMISTRY AND PHYSICS OF LIPIDS","0009-3084","1873-2941","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","4,765","3.4","('Q2', 'Q1')","0.69","21.43" +"International Journal of Rail Transportation","2324-8378","2324-8386","TRANSPORTATION SCIENCE & TECHNOLOGY","('SCIE',)","876","3.4","Q2","0.69","13.97" +"Metabolites","","2218-1989","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","14,480","3.4","Q2","0.69","99.55" +"Road Materials and Pavement Design","1468-0629","2164-7402","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","6,608","3.4","('Q2', 'Q2', 'Q2')","0.69","8.51" +"Planning Theory & Practice","1464-9357","1470-000X","('REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI')","1,622","3.4","('Q1', 'Q1')","0.68","45.88" +"APPLIED INTELLIGENCE","0924-669X","1573-7497","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","14,961","3.4","Q2","0.67","7.15" +"Frontiers in Neural Circuits","","1662-5110","NEUROSCIENCES","('SCIE',)","4,644","3.4","Q2","0.67","99.46" +"Journal of Hydrodynamics","1001-6058","1878-0342","MECHANICS","('SCIE',)","3,667","3.4","Q1","0.67","0.36" +"Regenerative Therapy","2352-3204","2352-3204","('CELL & TISSUE ENGINEERING', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","1,467","3.4","('Q3', 'Q2')","0.67","90.88" +"Infectious Disease Reports","","2036-7449","INFECTIOUS DISEASES","('ESCI',)","951","3.4","Q2","0.66","100.00" +"JOURNAL OF COMPUTATIONAL CHEMISTRY","0192-8651","1096-987X","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","55,071","3.4","Q2","0.66","19.03" +"PROTEOMICS","1615-9853","1615-9861","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY')","('SCIE', 'SCIE')","11,678","3.4","('Q2', 'Q2')","0.66","38.15" +"Biomarker Insights","1177-2719","1177-2719","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","978","3.4","Q2","0.65","90.74" +"Future Journal of Pharmaceutical Sciences","2314-7245","2314-7253","PHARMACOLOGY & PHARMACY","('ESCI',)","1,871","3.4","Q2","0.65","99.52" +"INTERNATIONAL JOURNAL OF BIOCHEMISTRY & CELL BIOLOGY","1357-2725","1878-5875","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","15,626","3.4","('Q2', 'Q3')","0.65","22.88" +"JOURNAL OF THE AMERICAN COLLEGE OF NUTRITION","0731-5724","1541-1087","NUTRITION & DIETETICS","('SCIE',)","4,842","3.4","Q2","0.65","11.11" +"Marketing Theory","1470-5931","1741-301X","BUSINESS","('SSCI',)","2,230","3.4","Q2","0.65","54.37" +"Biochemistry Research International","2090-2247","2090-2255","BIOCHEMICAL RESEARCH METHODS","('ESCI',)","925","3.4","Q2","0.64","100.00" +"Chinese Geographical Science","1002-0063","1993-064X","ENVIRONMENTAL SCIENCES","('SCIE',)","2,912","3.4","Q2","0.64","93.45" +"DRUG METABOLISM REVIEWS","0360-2532","1097-9883","PHARMACOLOGY & PHARMACY","('SCIE',)","3,049","3.4","Q2","0.64","14.93" +"Expert Review of Neurotherapeutics","1473-7175","1744-8360","('CLINICAL NEUROLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","5,307","3.4","('Q2', 'Q2')","0.64","14.66" +"International Journal of Quality and Service Sciences","1756-669X","1756-6703","MANAGEMENT","('ESCI',)","844","3.4","Q2","0.63","12.64" +"INTERNATIONAL JOURNAL OF PHYTOREMEDIATION","1522-6514","1549-7879","ENVIRONMENTAL SCIENCES","('SCIE',)","5,629","3.4","Q2","0.62","1.51" +"CLINICAL AND EXPERIMENTAL IMMUNOLOGY","0009-9104","1365-2249","IMMUNOLOGY","('SCIE',)","13,159","3.4","Q3","0.61","34.20" +"Innovation-Organization & Management","1447-9338","2204-0226","MANAGEMENT","('SSCI',)","1,145","3.4","Q2","0.61","32.94" +"Journal of Toxicology","1687-8191","1687-8205","TOXICOLOGY","('ESCI',)","1,402","3.4","Q2","0.61","100.00" +"Planning Theory","1473-0952","1741-3052","REGIONAL & URBAN PLANNING","('SSCI',)","1,670","3.4","Q1","0.61","33.93" +"Therapeutic Advances in Hematology","2040-6207","2040-6215","HEMATOLOGY","('SCIE',)","1,197","3.4","Q2","0.61","92.73" +"Informatics-Basel","","2227-9709","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","1,149","3.4","Q2","0.59","100.00" +"International Journal of Data Science and Analytics","2364-415X","2364-4168","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('ESCI', 'ESCI')","949","3.4","('Q2', 'Q2')","0.59","32.22" +"Frontiers in Remote Sensing","","2673-6187","('IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('ESCI', 'ESCI')","607","3.4","('Q2', 'Q2')","0.58","100.00" +"CLEVELAND CLINIC JOURNAL OF MEDICINE","0891-1150","1939-2869","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,518","3.4","Q1","0.57","93.69" +"INTERNATIONAL JOURNAL OF TUBERCULOSIS AND LUNG DISEASE","1027-3719","1815-7920","('INFECTIOUS DISEASES', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","6,424","3.4","('Q2', 'Q2')","0.57","27.27" +"JOURNAL OF SUPERCRITICAL FLUIDS","0896-8446","1872-8162","('CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","11,953","3.4","('Q2', 'Q2')","0.57","10.80" +"Reaction Chemistry & Engineering","2058-9883","2058-9883","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","4,332","3.4","('Q2', 'Q2')","0.56","21.03" +"ADVANCED ENGINEERING MATERIALS","1438-1656","1527-2648","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","19,177","3.4","Q2","0.55","29.69" +"CELL CYCLE","1538-4101","1551-4005","CELL BIOLOGY","('SCIE',)","16,661","3.4","Q3","0.55","17.29" +"CATALYSIS COMMUNICATIONS","1566-7367","1873-3905","CHEMISTRY, PHYSICAL","('SCIE',)","12,524","3.4","Q2","0.54","96.80" +"International Journal of Polymer Science","1687-9422","1687-9430","POLYMER SCIENCE","('SCIE',)","3,366","3.4","Q2","0.54","99.45" +"Emerging Topics in Life Sciences","2397-8554","2397-8562","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOLOGY')","('ESCI', 'ESCI')","1,271","3.4","('Q2', 'Q1')","0.53","47.68" +"Environmental Evidence","","2047-2382","ENVIRONMENTAL SCIENCES","('SCIE',)","1,395","3.4","Q2","0.53","100.00" +"International Journal of Mechanical and Materials Engineering","1823-0334","2198-2791","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","496","3.4","Q2","0.52","100.00" +"Human Cell","0914-7470","1749-0774","CELL BIOLOGY","('SCIE',)","2,380","3.4","Q3","0.50","15.80" +"International Journal of Mechanical System Dynamics","2767-1399","2767-1402","('ENGINEERING, MECHANICAL', 'MECHANICS')","('ESCI', 'ESCI')","174","3.4","('Q1', 'Q1')","0.49","89.33" +"Analysis & Sensing","2629-2742","2629-2742","('CHEMISTRY, ANALYTICAL', 'NANOSCIENCE & NANOTECHNOLOGY')","('ESCI', 'ESCI')","235","3.4","('Q2', 'Q3')","0.36","24.19" +"Inteligencia Artificial-Iberoamerical Journal of Artificial Intelligence","1137-3601","1988-3064","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","408","3.4","Q2","0.13","83.33" +"Computer Law & Security Review","0267-3649","0267-3649","LAW","('SSCI',)","1,777","3.3","Q1","3.21","39.47" +"Language Teaching Research","1362-1688","1477-0954","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('SSCI', 'SSCI')","3,736","3.3","('Q1', 'Q1')","2.08","11.83" +"PHILOSOPHY & PUBLIC AFFAIRS","0048-3915","1088-4963","('ETHICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","2,687","3.3","('Q1', 'Q1')","2.05","39.47" +"JOURNAL OF CRIMINAL JUSTICE","0047-2352","1873-6203","CRIMINOLOGY & PENOLOGY","('SSCI',)","4,170","3.3","Q1","1.98","13.67" +"ETR&D-EDUCATIONAL TECHNOLOGY RESEARCH AND DEVELOPMENT","1042-1629","1556-6501","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","5,766","3.3","Q1","1.95","16.75" +"European Journal of Physical and Rehabilitation Medicine","1973-9087","1973-9095","REHABILITATION","('SCIE',)","3,400","3.3","Q1","1.87","47.32" +"Journal of Science Education and Technology","1059-0145","1573-1839","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('SSCI', 'SCIE')","3,259","3.3","('Q1', 'Q1')","1.87","19.32" +"POLITICAL BEHAVIOR","0190-9320","1573-6687","POLITICAL SCIENCE","('SSCI',)","4,555","3.3","Q1","1.86","27.34" +"Australasian Journal of Educational Technology","1449-3098","1449-5554","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,519","3.3","Q1","1.83","93.72" +"SOCIOLOGY OF EDUCATION","0038-0407","1939-8573","('EDUCATION & EDUCATIONAL RESEARCH', 'SOCIOLOGY')","('SSCI', 'SSCI')","3,308","3.3","('Q1', 'Q1')","1.80","25.45" +"JOURNAL OF POPULATION ECONOMICS","0933-1433","1432-1475","('DEMOGRAPHY', 'ECONOMICS')","('SSCI', 'SSCI')","3,177","3.3","('Q1', 'Q1')","1.79","53.59" +"Applied Economic Perspectives and Policy","2040-5790","2040-5804","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('SCIE', 'SSCI')","2,503","3.3","('Q2', 'Q1')","1.68","33.45" +"FRACTALS-COMPLEX GEOMETRY PATTERNS AND SCALING IN NATURE AND SOCIETY","0218-348X","1793-6543","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MULTIDISCIPLINARY SCIENCES')","('SCIE', 'SCIE')","5,382","3.3","('Q1', 'Q1')","1.63","39.15" +"JOURNAL OF HEALTH POLITICS POLICY AND LAW","0361-6878","","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'SOCIAL ISSUES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SCIE', 'SSCI', 'SSCI', 'SSCI')","1,414","3.3","('Q1', 'Q1', 'Q1', 'Q1')","1.63","4.55" +"FEMINIST ECONOMICS","1354-5701","1466-4372","('ECONOMICS', 'WOMENS STUDIES')","('SSCI', 'SSCI')","2,287","3.3","('Q1', 'Q1')","1.62","23.36" +"MEDICAL TEACHER","0142-159X","1466-187X","('EDUCATION, SCIENTIFIC DISCIPLINES', 'HEALTH CARE SCIENCES & SERVICES')","('SCIE', 'SCIE')","12,758","3.3","('Q1', 'Q1')","1.53","21.99" +"JOURNAL OF MEDICAL ETHICS","0306-6800","1473-4257","('ETHICS', 'MEDICAL ETHICS', 'SOCIAL ISSUES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SCIE', 'SSCI', 'SSCI')","6,198","3.3","('Q1', 'Q1', 'Q1', 'Q1')","1.51","24.25" +"SOCIAL FORCES","0037-7732","1534-7605","SOCIOLOGY","('SSCI',)","10,056","3.3","Q1","1.51","18.62" +"Journal of Traditional and Complementary Medicine","2225-4110","2225-4110","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","2,335","3.3","Q1","1.48","96.41" +"KNEE SURGERY SPORTS TRAUMATOLOGY ARTHROSCOPY","0942-2056","1433-7347","('ORTHOPEDICS', 'SPORT SCIENCES', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","21,119","3.3","('Q1', 'Q1', 'Q1')","1.47","28.73" +"International Journal of Distance Education Technologies","1539-3100","1539-3119","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","271","3.3","Q1","1.46","63.64" +"Nurse Education in Practice","1471-5953","1873-5223","NURSING","('SCIE', 'SSCI')","5,124","3.3","Q1","1.42","22.92" +"GEOGRAPHICAL ANALYSIS","0016-7363","1538-4632","GEOGRAPHY","('SSCI',)","4,112","3.3","Q1","1.40","34.31" +"Progress in Nuclear Energy","0149-1970","1878-4224","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","8,052","3.3","Q1","1.40","12.68" +"TRANSACTIONS OF THE INSTITUTE OF BRITISH GEOGRAPHERS","0020-2754","1475-5661","GEOGRAPHY","('SSCI',)","4,967","3.3","Q1","1.29","50.24" +"Journal of Applied Physiology","8750-7587","1522-1601","('PHYSIOLOGY', 'SPORT SCIENCES')","('SCIE', 'SCIE')","41,585","3.3","('Q1', 'Q1')","1.27","8.21" +"Neurosurgical Focus","1092-0684","1092-0684","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","9,942","3.3","('Q2', 'Q1')","1.24","93.88" +"JOURNAL OF GENERAL PHYSIOLOGY","0022-1295","1540-7748","PHYSIOLOGY","('SCIE',)","7,026","3.3","Q1","1.23","95.62" +"PSYCHOLOGICAL ASSESSMENT","1040-3590","1939-134X","PSYCHOLOGY, CLINICAL","('SSCI',)","15,216","3.3","Q1","1.19","3.58" +"Human Genetics and Genomics Advances","2666-2477","2666-2477","GENETICS & HEREDITY","('ESCI',)","457","3.3","Q2","1.18","97.28" +"EUROPEAN REVIEW OF AGRICULTURAL ECONOMICS","0165-1587","1464-3618","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('SCIE', 'SSCI')","2,139","3.3","('Q2', 'Q1')","1.17","33.33" +"PLASMA SOURCES SCIENCE & TECHNOLOGY","0963-0252","1361-6595","PHYSICS, FLUIDS & PLASMAS","('SCIE',)","11,971","3.3","Q1","1.17","26.54" +"BMC Complementary Medicine and Therapies","","2662-7671","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","3,887","3.3","Q1","1.14","99.52" +"JOURNAL OF NATURAL PRODUCTS","0163-3864","1520-6025","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","28,217","3.3","('Q2', 'Q2', 'Q1')","1.14","8.20" +"JOURNAL OF ACCOUNTING AND PUBLIC POLICY","0278-4254","1873-2070","('BUSINESS, FINANCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","3,677","3.3","('Q1', 'Q1')","1.13","14.07" +"JOURNAL OF GEOPHYSICAL RESEARCH-OCEANS","2169-9275","2169-9291","OCEANOGRAPHY","('SCIE',)","43,373","3.3","Q1","1.13","33.81" +"ANNALS OF EPIDEMIOLOGY","1047-2797","1873-2585","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","8,152","3.3","Q1","1.11","25.90" +"PERSONNEL REVIEW","0048-3486","1758-6933","('INDUSTRIAL RELATIONS & LABOR', 'MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI', 'SSCI')","5,161","3.3","('Q1', 'Q2', 'Q2')","1.11","4.22" +"Agriculture-Basel","","2077-0472","AGRONOMY","('SCIE',)","19,040","3.3","Q1","1.10","99.68" +"CANADIAN JOURNAL OF OPHTHALMOLOGY-JOURNAL CANADIEN D OPHTALMOLOGIE","0008-4182","1715-3360","OPHTHALMOLOGY","('SCIE',)","2,696","3.3","Q1","1.10","3.47" +"JOURNAL OF MAGNETIC RESONANCE IMAGING","1053-1807","1522-2586","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","19,673","3.3","Q1","1.10","21.92" +"JOURNAL OF THE AMERICAN PLANNING ASSOCIATION","0194-4363","1939-0130","('REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI')","4,600","3.3","('Q1', 'Q1')","1.10","29.46" +"PSYCHIATRIC SERVICES","1075-2730","1557-9700","('HEALTH POLICY & SERVICES', 'PSYCHIATRY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SCIE', 'SCIE, SSCI')","12,044","3.3","('Q1', 'Q2', 'Q1')","1.10","0.17" +"Journal of Luminescence","0022-2313","1872-7883","OPTICS","('SCIE',)","25,609","3.3","Q2","1.09","5.39" +"Life Science Alliance","","2575-1077","BIOLOGY","('SCIE',)","3,480","3.3","Q1","1.09","99.51" +"TECTONICS","0278-7407","1944-9194","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","14,612","3.3","Q1","1.09","35.01" +"INTELLIGENCE","0160-2896","1873-7935","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","4,571","3.3","Q1","1.08","37.25" +"TOXICOLOGY AND APPLIED PHARMACOLOGY","0041-008X","1096-0333","('PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE')","19,012","3.3","('Q2', 'Q2')","1.07","21.98" +"JOURNAL OF ORGANIC CHEMISTRY","0022-3263","1520-6904","CHEMISTRY, ORGANIC","('SCIE',)","86,333","3.3","Q1","1.05","6.53" +"Agronomy-Basel","","2073-4395","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","37,335","3.3","('Q1', 'Q1')","1.04","99.53" +"Journal of Asian Business and Economic Studies","","2515-964X","('BUSINESS', 'ECONOMICS')","('ESCI', 'ESCI')","292","3.3","('Q2', 'Q1')","1.03","98.18" +"JOURNAL OF ECONOMICS AND BUSINESS","0148-6195","0148-6195","BUSINESS, FINANCE","('ESCI',)","1,413","3.3","Q1","1.03","21.43" +"Chinese Optics Letters","1671-7694","1671-7694","OPTICS","('SCIE',)","3,736","3.3","Q2","1.01","0.45" +"ENTREPRENEURSHIP AND REGIONAL DEVELOPMENT","0898-5626","1464-5114","('BUSINESS', 'DEVELOPMENT STUDIES')","('SSCI', 'SSCI')","4,057","3.3","('Q2', 'Q1')","1.00","41.50" +"Journal of Sexual Medicine","1743-6095","1743-6109","UROLOGY & NEPHROLOGY","('SCIE',)","12,384","3.3","Q1","1.00","15.27" +"MICROBIAL ECOLOGY","0095-3628","1432-184X","('ECOLOGY', 'MARINE & FRESHWATER BIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","12,746","3.3","('Q2', 'Q1', 'Q2')","1.00","22.48" +"MYCORRHIZA","0940-6360","1432-1890","('MYCOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","4,313","3.3","('Q2', 'Q1')","1.00","28.33" +"REPRODUCTIVE TOXICOLOGY","0890-6238","1873-1708","('REPRODUCTIVE BIOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","7,165","3.3","('Q2', 'Q2')","1.00","25.19" +"GENETICS","0016-6731","1943-2631","GENETICS & HEREDITY","('SCIE',)","36,518","3.3","Q2","0.99","36.69" +"International Journal of Geomechanics","1532-3641","1943-5622","ENGINEERING, GEOLOGICAL","('SCIE',)","9,801","3.3","Q2","0.99","0.76" +"JOURNAL OF HYPERTENSION","0263-6352","1473-5598","PERIPHERAL VASCULAR DISEASE","('SCIE',)","16,709","3.3","Q1","0.99","22.02" +"MEDICAL CARE","0025-7079","1537-1948","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SCIE')","20,035","3.3","('Q1', 'Q1', 'Q1')","0.98","19.69" +"COMPLEMENTARY THERAPIES IN MEDICINE","0965-2299","1873-6963","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","5,793","3.3","Q1","0.97","96.55" +"IMF Economic Review","2041-4161","2041-417X","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","1,350","3.3","('Q1', 'Q1')","0.97","0.00" +"Phytobiomes Journal","","2471-2906","('MICROBIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","769","3.3","('Q2', 'Q1')","0.97","96.69" +"HUMAN MUTATION","1059-7794","1098-1004","GENETICS & HEREDITY","('SCIE',)","12,745","3.3","Q2","0.96","72.05" +"Journal of Pharmaceutical Policy and Practice","","2052-3211","('HEALTH POLICY & SERVICES', 'PHARMACOLOGY & PHARMACY')","('ESCI', 'ESCI')","1,370","3.3","('Q1', 'Q2')","0.96","100.00" +"QUALITY OF LIFE RESEARCH","0962-9343","1573-2649","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SCIE, SSCI')","20,378","3.3","('Q1', 'Q1', 'Q1')","0.96","48.29" +"JOURNAL OF ENGINEERING MECHANICS","0733-9399","1943-7889","ENGINEERING, MECHANICAL","('SCIE',)","13,503","3.3","Q1","0.95","2.34" +"German Journal of Human Resource Management-Zeitschrift fur Personalforschung","2397-0022","2397-0030","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","395","3.3","('Q2', 'Q2')","0.94","35.85" +"INTERNATIONAL JOURNAL OF PSYCHOLOGY","0020-7594","1464-066X","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","4,117","3.3","Q1","0.94","30.22" +"Physica Medica-European Journal of Medical Physics","1120-1797","1724-191X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","5,690","3.3","Q1","0.94","28.67" +"ATTACHMENT & HUMAN DEVELOPMENT","1461-6734","1469-2988","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","2,512","3.3","Q1","0.93","33.33" +"Geomechanics for Energy and the Environment","2352-3808","2352-3808","('ENERGY & FUELS', 'ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","1,098","3.3","('Q3', 'Q2', 'Q2')","0.93","22.50" +"JOURNAL OF THE EGYPTIAN PUBLIC HEALTH ASSOCIATION","","2090-262X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","652","3.3","Q1","0.93","100.00" +"Annals of Cardiothoracic Surgery","2225-319X","2304-1021","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'SURGERY')","('SCIE', 'SCIE')","2,545","3.3","('Q2', 'Q1')","0.92","98.31" +"CARCINOGENESIS","0143-3334","1460-2180","ONCOLOGY","('SCIE',)","15,604","3.3","Q2","0.90","13.47" +"International Journal of Biomedical Imaging","1687-4188","1687-4196","ENGINEERING, BIOMEDICAL","('ESCI',)","845","3.3","Q2","0.90","100.00" +"OPTICAL AND QUANTUM ELECTRONICS","0306-8919","1572-817X","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","12,297","3.3","('Q2', 'Q2', 'Q3')","0.90","6.04" +"Journal of Financial Reporting and Accounting","1985-2517","2042-5856","BUSINESS, FINANCE","('ESCI',)","1,218","3.3","Q1","0.89","1.05" +"NUTRITION METABOLISM AND CARDIOVASCULAR DISEASES","0939-4753","1590-3729","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE', 'SCIE')","8,864","3.3","('Q2', 'Q2', 'Q2')","0.89","17.92" +"ELECTRIC POWER SYSTEMS RESEARCH","0378-7796","1873-2046","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","18,438","3.3","Q2","0.88","12.20" +"PHARMACOLOGY BIOCHEMISTRY AND BEHAVIOR","0091-3057","1873-5177","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","10,449","3.3","('Q1', 'Q2', 'Q2')","0.88","27.19" +"Therapeutic Advances in Respiratory Disease","1753-4658","1753-4666","RESPIRATORY SYSTEM","('SCIE',)","1,698","3.3","Q2","0.88","92.63" +"Journal of International Accounting Auditing and Taxation","1061-9518","1879-1603","BUSINESS, FINANCE","('ESCI',)","1,109","3.3","Q1","0.87","23.53" +"PHYSICS IN MEDICINE AND BIOLOGY","0031-9155","1361-6560","('ENGINEERING, BIOMEDICAL', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","28,376","3.3","('Q2', 'Q1')","0.87","30.56" +"Soils and Foundations","0038-0806","2524-1788","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","10,295","3.3","('Q2', 'Q2')","0.87","94.03" +"SYSTEMATIC AND APPLIED MICROBIOLOGY","0723-2020","1618-0984","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","4,604","3.3","('Q2', 'Q2')","0.87","29.27" +"Anthropocene","2213-3054","2213-3054","('ENVIRONMENTAL SCIENCES', 'GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","1,312","3.3","('Q2', 'Q1', 'Q2')","0.86","33.91" +"Journal of Sensor and Actuator Networks","","2224-2708","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI')","1,229","3.3","('Q2', 'Q2')","0.86","100.00" +"Peer-to-Peer Networking and Applications","1936-6442","1936-6450","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","2,897","3.3","('Q2', 'Q2')","0.86","3.34" +"Pituitary","1386-341X","1573-7403","ENDOCRINOLOGY & METABOLISM","('SCIE',)","3,406","3.3","Q2","0.86","31.73" +"COMPUTING","0010-485X","1436-5057","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","3,029","3.3","Q2","0.85","14.97" +"Evolution Medicine and Public Health","","2050-6201","('EVOLUTIONARY BIOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","1,003","3.3","('Q2', 'Q1')","0.85","95.87" +"EXPERIMENTAL GERONTOLOGY","0531-5565","1873-6815","GERIATRICS & GERONTOLOGY","('SCIE',)","13,393","3.3","Q2","0.85","45.30" +"Molecular Brain","","1756-6606","NEUROSCIENCES","('SCIE',)","4,571","3.3","Q2","0.85","100.00" +"Journal of Evidence-Based Integrative Medicine","2515-690X","2515-690X","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","1,473","3.3","Q1","0.84","98.28" +"PULMONARY PHARMACOLOGY & THERAPEUTICS","1094-5539","","('PHARMACOLOGY & PHARMACY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","2,818","3.3","('Q2', 'Q2')","0.84","20.13" +"Therapeutic Advances in Chronic Disease","2040-6223","2040-6231","PHARMACOLOGY & PHARMACY","('SCIE',)","2,060","3.3","Q2","0.84","89.87" +"BIOORGANIC & MEDICINAL CHEMISTRY","0968-0896","1464-3391","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE', 'SCIE')","28,125","3.3","('Q2', 'Q2', 'Q1')","0.83","17.64" +"Geoscience Data Journal","2049-6060","2049-6060","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","575","3.3","('Q2', 'Q2')","0.83","83.93" +"International Journal of Agricultural Sustainability","1473-5903","1747-762X","('AGRICULTURE, MULTIDISCIPLINARY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","1,845","3.3","('Q1', 'Q3')","0.83","60.12" +"Radiation Oncology","","1748-717X","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","8,431","3.3","('Q2', 'Q1')","0.83","100.00" +"Seminars in Vascular Surgery","0895-7967","1558-4518","('PERIPHERAL VASCULAR DISEASE', 'SURGERY')","('SCIE', 'SCIE')","1,025","3.3","('Q1', 'Q1')","0.83","18.83" +"BMJ Nutrition, Prevention & Health","","2516-5542","NUTRITION & DIETETICS","('ESCI',)","623","3.3","Q2","0.82","100.00" +"NATURAL HAZARDS","0921-030X","1573-0840","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","23,987","3.3","('Q2', 'Q2', 'Q2')","0.82","13.63" +"Canadian Journal of School Psychology","0829-5735","2154-3984","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","610","3.3","Q1","0.81","54.39" +"IEEE SOFTWARE","0740-7459","1937-4194","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","3,532","3.3","Q2","0.81","12.33" +"Journal of Frailty & Aging","2260-1341","2273-4309","GERIATRICS & GERONTOLOGY","('ESCI',)","1,143","3.3","Q2","0.81","17.19" +"Journal of Neurogastroenterology and Motility","2093-0879","2093-0887","('CLINICAL NEUROLOGY', 'GASTROENTEROLOGY & HEPATOLOGY')","('SCIE', 'SCIE')","2,459","3.3","('Q2', 'Q2')","0.81","99.43" +"JOURNAL OF THE SCIENCE OF FOOD AND AGRICULTURE","0022-5142","1097-0010","('AGRICULTURE, MULTIDISCIPLINARY', 'CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","36,788","3.3","('Q1', 'Q2', 'Q2')","0.81","10.24" +"Clinical Lung Cancer","1525-7304","1938-0690","ONCOLOGY","('SCIE',)","4,386","3.3","Q2","0.80","21.86" +"JCO Clinical Cancer Informatics","2473-4276","2473-4276","ONCOLOGY","('ESCI',)","2,193","3.3","Q2","0.80","21.79" +"PSYCHO-ONCOLOGY","1057-9249","1099-1611","('ONCOLOGY', 'PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, BIOMEDICAL')","('SCIE', 'SCIE', 'SSCI', 'SSCI')","14,321","3.3","('Q2', 'Q1', 'Q1', 'Q1')","0.80","33.45" +"XENOTRANSPLANTATION","0908-665X","1399-3089","('MEDICINE, RESEARCH & EXPERIMENTAL', 'TRANSPLANTATION')","('SCIE', 'SCIE')","1,604","3.3","('Q2', 'Q2')","0.80","20.21" +"Asian Journal of Shipping and Logistics","2092-5212","2352-4871","TRANSPORTATION","('ESCI',)","786","3.3","Q2","0.79","92.50" +"CALCIFIED TISSUE INTERNATIONAL","0171-967X","1432-0827","ENDOCRINOLOGY & METABOLISM","('SCIE',)","7,940","3.3","Q2","0.79","34.44" +"Journal of Cancer","1837-9664","1837-9664","ONCOLOGY","('SCIE',)","13,612","3.3","Q2","0.79","99.70" +"Journal of Economic Policy Reform","1748-7870","1748-7889","('DEVELOPMENT STUDIES', 'ECONOMICS')","('SSCI', 'SSCI')","604","3.3","('Q1', 'Q1')","0.79","20.00" +"Journal of Physiological Anthropology","1880-6805","1880-6805","PHYSIOLOGY","('SCIE',)","1,226","3.3","Q1","0.79","100.00" +"CANADIAN JOURNAL OF PSYCHIATRY-REVUE CANADIENNE DE PSYCHIATRIE","0706-7437","1497-0015","PSYCHIATRY","('SCIE', 'SSCI')","7,735","3.3","Q2","0.78","54.76" +"Environmental Epidemiology","","2474-7882","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","849","3.3","('Q2', 'Q1')","0.78","96.53" +"Genes and Nutrition","1555-8932","1865-3499","('GENETICS & HEREDITY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","1,747","3.3","('Q2', 'Q2')","0.78","100.00" +"Journal of Global Fashion Marketing","2093-2685","2325-4483","BUSINESS","('ESCI',)","732","3.3","Q2","0.78","7.29" +"PUBLICATIONS OF THE ASTRONOMICAL SOCIETY OF THE PACIFIC","0004-6280","1538-3873","ASTRONOMY & ASTROPHYSICS","('SCIE',)","15,399","3.3","Q2","0.78","37.16" +"Fermentation-Basel","","2311-5637","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","6,525","3.3","Q2","0.77","99.86" +"Journal of Zhejiang University-SCIENCE A","1673-565X","1862-1775","('ENGINEERING, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","2,683","3.3","('Q1', 'Q2')","0.77","0.00" +"ORGANIZATION","1350-5084","1461-7323","MANAGEMENT","('SSCI',)","4,606","3.3","Q2","0.77","37.82" +"Transportmetrica B-Transport Dynamics","2168-0566","2168-0582","('TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SSCI', 'SCIE')","1,006","3.3","('Q2', 'Q2')","0.77","8.93" +"BMC Medical Informatics and Decision Making","","1472-6947","MEDICAL INFORMATICS","('SCIE',)","9,744","3.3","Q2","0.76","99.70" +"Journal of Cardiopulmonary Rehabilitation and Prevention","1932-7501","1932-751X","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","2,500","3.3","Q2","0.76","4.21" +"NEUROMOLECULAR MEDICINE","1535-1084","1559-1174","NEUROSCIENCES","('SCIE',)","2,403","3.3","Q2","0.76","15.32" +"Asia-Pacific Journal of Business Administration","1757-4323","1757-4331","BUSINESS","('ESCI',)","857","3.3","Q2","0.75","2.04" +"Toxin Reviews","1556-9543","1556-9551","TOXICOLOGY","('SCIE',)","1,726","3.3","Q2","0.75","0.46" +"Geocarto International","1010-6049","1752-0762","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,094","3.3","('Q2', 'Q2', 'Q2', 'Q2')","0.74","21.60" +"Global Mental Health","2054-4251","2054-4251","PSYCHIATRY","('SCIE',)","842","3.3","Q2","0.74","100.00" +"ACTA BIOCHIMICA ET BIOPHYSICA SINICA","1672-9145","1745-7270","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","5,355","3.3","('Q2', 'Q1')","0.73","59.32" +"Journal of Bronchology & Interventional Pulmonology","1944-6586","1948-8270","RESPIRATORY SYSTEM","('ESCI',)","1,201","3.3","Q2","0.73","11.97" +"JOURNAL OF NEUROENDOCRINOLOGY","0953-8194","1365-2826","('ENDOCRINOLOGY & METABOLISM', 'NEUROSCIENCES')","('SCIE', 'SCIE')","5,611","3.3","('Q2', 'Q2')","0.73","35.29" +"MICROBIAL PATHOGENESIS","0882-4010","1096-1208","('IMMUNOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","15,413","3.3","('Q3', 'Q2')","0.72","8.61" +"BIOCHIMIE","0300-9084","1638-6183","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","11,988","3.3","Q2","0.70","22.58" +"BMJ Open Gastroenterology","2054-4774","2054-4774","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","1,330","3.3","Q2","0.70","99.54" +"Journal of the Mechanical Behavior of Biomedical Materials","1751-6161","1878-0180","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","19,017","3.3","('Q2', 'Q3')","0.70","24.61" +"Sexual and Reproductive Health Matters","","2641-0397","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","875","3.3","Q1","0.70","99.47" +"Biotechnology for Biofuels and Bioproducts","","2731-3654","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENERGY & FUELS')","('SCIE', 'SCIE')","667","3.3","('Q2', 'Q3')","0.69","99.71" +"METALS AND MATERIALS INTERNATIONAL","1598-9623","2005-4149","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","6,100","3.3","('Q2', 'Q1')","0.69","4.74" +"Sustainable Futures","2666-1888","2666-1888","('ENVIRONMENTAL SCIENCES', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('ESCI', 'ESCI')","407","3.3","('Q2', 'Q2')","0.69","99.02" +"BIOPHYSICAL CHEMISTRY","0301-4622","1873-4200","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CHEMISTRY, PHYSICAL')","('SCIE', 'SCIE', 'SCIE')","4,504","3.3","('Q2', 'Q1', 'Q2')","0.68","16.72" +"Clinical Colorectal Cancer","1533-0028","1938-0674","ONCOLOGY","('SCIE',)","2,291","3.3","Q2","0.68","18.82" +"Memetic Computing","1865-9284","1865-9292","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","770","3.3","('Q2', 'Q2')","0.68","8.64" +"Pathogens","","2076-0817","MICROBIOLOGY","('SCIE',)","18,231","3.3","Q2","0.68","99.51" +"Sustainability","","2071-1050","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SSCI', 'SCIE, SSCI')","229,213","3.3","('Q2', 'Q2', 'Q3')","0.68","99.63" +"Transportation Letters-The International Journal of Transportation Research","1942-7867","1942-7875","('TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SSCI', 'SCIE')","1,710","3.3","('Q2', 'Q2')","0.68","7.24" +"EXPERIMENTAL CELL RESEARCH","0014-4827","1090-2422","('CELL BIOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","20,439","3.3","('Q3', 'Q2')","0.67","18.86" +"Frontiers in Environmental Science","","2296-665X","ENVIRONMENTAL SCIENCES","('SCIE',)","17,300","3.3","Q2","0.67","99.82" +"Journal of Clinical and Experimental Hepatology","0973-6883","2213-3453","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","2,491","3.3","Q2","0.67","6.87" +"Tourist Studies","1468-7976","1741-3206","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","1,058","3.3","Q2","0.67","26.98" +"JMIR Cancer","2369-1999","2369-1999","ONCOLOGY","('ESCI',)","789","3.3","Q2","0.66","98.42" +"Journal of Manufacturing and Materials Processing","","2504-4494","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","2,258","3.3","('Q2', 'Q1', 'Q2')","0.65","99.81" +"INFORMATICA","0868-4952","1822-8844","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,127","3.3","('Q2', 'Q1')","0.63","90.57" +"JOURNAL OF PROCESS CONTROL","0959-1524","1873-2771","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","7,034","3.3","('Q2', 'Q2')","0.63","14.96" +"Frontiers in Climate","","2624-9553","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('ESCI', 'ESCI')","1,820","3.3","('Q2', 'Q2')","0.62","99.24" +"JOURNAL OF MICROBIOLOGY","1225-8873","1976-3794","MICROBIOLOGY","('SCIE',)","4,969","3.3","Q2","0.62","2.90" +"Membranes","","2077-0375","('CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","13,003","3.3","('Q2', 'Q2', 'Q2', 'Q2')","0.61","99.74" +"EFSA Journal","","1831-4732","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","17,883","3.3","Q2","0.60","73.50" +"Energetic Materials Frontiers","","2666-6472","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","345","3.3","Q2","0.60","95.05" +"Frontiers in Aging","","2673-6217","GERIATRICS & GERONTOLOGY","('ESCI',)","724","3.3","Q2","0.60","99.64" +"IMMUNOLOGIC RESEARCH","0257-277X","1559-0755","IMMUNOLOGY","('SCIE',)","4,031","3.3","Q3","0.59","25.20" +"Journal of Artificial Intelligence and Soft Computing Research","2083-2567","2449-6499","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","439","3.3","Q2","0.59","100.00" +"Journal of Management and Governance","1385-3457","1572-963X","MANAGEMENT","('ESCI',)","2,003","3.3","Q2","0.59","50.41" +"AUTOIMMUNITY","0891-6934","1607-842X","IMMUNOLOGY","('SCIE',)","2,538","3.3","Q3","0.58","33.94" +"Breast Cancer-Targets and Therapy","1179-1314","1179-1314","ONCOLOGY","('SCIE',)","1,310","3.3","Q2","0.58","98.22" +"ACS Organic & Inorganic Au","2694-247X","2694-247X","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","310","3.3","Q2","0.57","71.97" +"IEEE Open Access Journal of Power and Energy","","2687-7910","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('ESCI', 'ESCI')","600","3.3","('Q3', 'Q2')","0.57","98.65" +"IMMUNOLOGY LETTERS","0165-2478","1879-0542","IMMUNOLOGY","('SCIE',)","6,165","3.3","Q3","0.57","20.22" +"Frontiers in Allergy","","2673-6101","ALLERGY","('ESCI',)","855","3.3","Q2","0.56","99.73" +"JOURNAL OF CELL SCIENCE","0021-9533","1477-9137","CELL BIOLOGY","('SCIE',)","38,579","3.3","Q3","0.55","40.59" +"SUPERLATTICES AND MICROSTRUCTURES","0749-6036","1096-3677","PHYSICS, CONDENSED MATTER","('SCIE',)","9,019","3.3","Q2","0.55","5.73" +"Journal of Physical Chemistry C","1932-7447","1932-7455","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","148,451","3.3","('Q2', 'Q2', 'Q3')","0.54","9.70" +"European Journal of Microbiology and Immunology","2062-8633","2062-8633","MICROBIOLOGY","('ESCI',)","674","3.3","Q2","0.51","95.00" +"CELL STRESS & CHAPERONES","1355-8145","1466-1268","CELL BIOLOGY","('SCIE',)","4,113","3.3","Q3","0.50","100.00" +"FARADAY DISCUSSIONS","1359-6640","1364-5498","CHEMISTRY, PHYSICAL","('SCIE',)","9,852","3.3","Q2","0.50","46.27" +"CELL BIOLOGY INTERNATIONAL","1065-6995","1095-8355","CELL BIOLOGY","('SCIE',)","6,652","3.3","Q3","0.49","7.36" +"Channels","1933-6950","1933-6969","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","1,437","3.3","Q2","0.49","100.00" +"HEMATOLOGICAL ONCOLOGY","0278-0232","1099-1069","('HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","2,344","3.3","('Q2', 'Q2')","0.49","30.61" +"Frontiers in Bioscience-Landmark","2768-6701","2768-6698","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","11,025","3.3","('Q2', 'Q3')","0.48","93.25" +"MINI-REVIEWS IN MEDICINAL CHEMISTRY","1389-5575","1875-5607","CHEMISTRY, MEDICINAL","('SCIE',)","6,702","3.3","Q2","0.47","0.00" +"Plasmonics","1557-1955","1557-1963","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,355","3.3","('Q2', 'Q2', 'Q3')","0.47","3.67" +"BULLETIN OF THE CHEMICAL SOCIETY OF JAPAN","0009-2673","1348-0634","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","10,694","3.3","Q2","0.46","1.03" +"Cell Adhesion & Migration","1933-6918","1933-6926","CELL BIOLOGY","('SCIE',)","2,404","3.3","Q3","0.44","100.00" +"MRS Energy & Sustainability","2329-2229","2329-2237","ENERGY & FUELS","('ESCI',)","545","3.3","Q3","0.35","19.70" +"Nanofabrication","2299-680X","2299-680X","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","143","3.3","Q3","0.33","72.55" +"Advances in Nonlinear Analysis","2191-9496","2191-950X","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,193","3.2","('Q1', 'Q1')","3.40","97.35" +"Journal of Critical Realism","1476-7430","1572-5138","('PHILOSOPHY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","682","3.2","('N/A', 'Q1')","3.19","35.05" +"BRITISH JOURNAL FOR THE PHILOSOPHY OF SCIENCE","0007-0882","1464-3537","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","2,452","3.2","Q1","2.89","51.47" +"Regulation & Governance","1748-5983","1748-5991","('LAW', 'POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI', 'SSCI')","2,034","3.2","('Q1', 'Q1', 'Q1')","2.15","57.28" +"Journal of Experimental Political Science","2052-2630","2052-2649","POLITICAL SCIENCE","('ESCI',)","660","3.2","Q1","2.13","53.72" +"JOURNAL OF ARCHAEOLOGICAL METHOD AND THEORY","1072-5369","1573-7764","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","2,179","3.2","('Q1', 'N/A')","2.06","48.53" +"ANNALS OF STATISTICS","0090-5364","","STATISTICS & PROBABILITY","('SCIE',)","26,777","3.2","Q1","1.87","1.06" +"REVIEW OF INTERNATIONAL STUDIES","0260-2105","1469-9044","INTERNATIONAL RELATIONS","('SSCI',)","3,139","3.2","Q1","1.87","62.05" +"ENGLISH FOR SPECIFIC PURPOSES","0889-4906","1873-1937","LINGUISTICS","('SSCI',)","2,535","3.2","Q1","1.80","14.29" +"FUZZY SETS AND SYSTEMS","0165-0114","1872-6801","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, APPLIED', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","17,604","3.2","('Q2', 'Q1', 'Q1')","1.78","12.13" +"Education and Training","0040-0912","1758-6127","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,054","3.2","Q1","1.71","17.71" +"Stata Journal","1536-867X","1536-8734","('SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE')","8,354","3.2","('Q1', 'Q1')","1.71","29.25" +"Insect Systematics and Diversity","","2399-3421","ENTOMOLOGY","('SCIE',)","422","3.2","Q1","1.68","25.00" +"MINERVA","0026-4695","1573-1871","('EDUCATION & EDUCATIONAL RESEARCH', 'HISTORY & PHILOSOPHY OF SCIENCE', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","1,480","3.2","('Q1', 'Q1', 'Q1')","1.68","61.04" +"International Journal of Mental Health and Addiction","1557-1874","1557-1882","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL', 'SUBSTANCE ABUSE')","('SCIE, SSCI', 'SSCI', 'SCIE, SSCI')","6,544","3.2","('Q2', 'Q1', 'Q1')","1.66","34.20" +"Journal of Prosthodontic Research","1883-1958","2212-4632","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","2,890","3.2","Q1","1.63","97.24" +"Open Learning","0268-0513","1469-9958","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","594","3.2","Q1","1.63","28.57" +"Animal Frontiers","2160-6056","2160-6064","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,818","3.2","Q1","1.60","89.40" +"SOCIOLOGIA RURALIS","0038-0199","1467-9523","('GEOGRAPHY', 'SOCIOLOGY')","('SSCI', 'SSCI')","2,670","3.2","('Q1', 'Q1')","1.60","62.81" +"EARLY CHILDHOOD RESEARCH QUARTERLY","0885-2006","1873-7706","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","6,611","3.2","('Q1', 'Q1')","1.59","20.67" +"Andrology","2047-2919","2047-2927","ANDROLOGY","('SCIE',)","5,064","3.2","Q1","1.55","29.59" +"SURGERY","0039-6060","","SURGERY","('SCIE',)","22,004","3.2","Q1","1.54","13.49" +"Socio-Economic Review","1475-1461","1475-147X","('ECONOMICS', 'POLITICAL SCIENCE', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","2,700","3.2","('Q1', 'Q1', 'Q1')","1.53","32.42" +"Journal of Family Theory & Review","1756-2570","1756-2589","FAMILY STUDIES","('SSCI',)","1,835","3.2","Q1","1.52","28.45" +"JOURNAL OF CLINICAL NURSING","0962-1067","1365-2702","NURSING","('SCIE', 'SSCI')","18,208","3.2","Q1","1.47","30.94" +"Qualitative Research","1468-7941","1741-3109","('SOCIAL SCIENCES, INTERDISCIPLINARY', 'SOCIOLOGY')","('SSCI', 'SSCI')","5,557","3.2","('Q1', 'Q1')","1.45","45.88" +"BMC Family Practice","","1471-2296","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","6,478","3.2","('Q1', 'Q1')","1.43","100.00" +"Cultural Diversity & Ethnic Minority Psychology","1099-9809","1939-0106","('ETHNIC STUDIES', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI')","4,238","3.2","('Q1', 'Q1')","1.43","5.95" +"PLASTIC AND RECONSTRUCTIVE SURGERY","0032-1052","1529-4242","SURGERY","('SCIE',)","41,786","3.2","Q1","1.42","3.67" +"PHYSICAL REVIEW C","2469-9985","2469-9993","PHYSICS, NUCLEAR","('SCIE',)","52,052","3.2","Q2","1.40","14.96" +"ACM Transactions on Computing Education","1946-6226","1946-6226","EDUCATION, SCIENTIFIC DISCIPLINES","('SCIE',)","1,243","3.2","Q1","1.39","4.07" +"CLINICA CHIMICA ACTA","0009-8981","1873-3492","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","20,671","3.2","Q2","1.39","16.95" +"INTERNATIONAL DENTAL JOURNAL","0020-6539","1875-595X","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","3,514","3.2","Q1","1.38","94.34" +"SOCIAL SCIENCE RESEARCH","0049-089X","1096-0317","SOCIOLOGY","('SSCI',)","6,444","3.2","Q1","1.37","30.04" +"Forensic Science International-Genetics","1872-4973","1878-0326","('GENETICS & HEREDITY', 'MEDICINE, LEGAL')","('SCIE', 'SCIE')","5,688","3.2","('Q2', 'Q1')","1.36","26.09" +"BRITISH JOURNAL OF SOCIAL PSYCHOLOGY","0144-6665","2044-8309","PSYCHOLOGY, SOCIAL","('SSCI',)","6,451","3.2","Q1","1.35","52.73" +"Italian Journal of Pediatrics","1720-8424","1824-7288","PEDIATRICS","('SCIE',)","4,139","3.2","Q1","1.32","99.64" +"Global Media and China","2059-4364","2059-4372","COMMUNICATION","('ESCI',)","397","3.2","Q1","1.31","93.06" +"Ophthalmology Science","2666-9145","2666-9145","OPHTHALMOLOGY","('ESCI',)","720","3.2","Q1","1.31","93.79" +"BRITISH JOURNAL OF PSYCHOLOGY","0007-1269","2044-8295","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","5,437","3.2","Q1","1.30","44.65" +"JOURNAL OF PAIN AND SYMPTOM MANAGEMENT","0885-3924","1873-6513","('CLINICAL NEUROLOGY', 'HEALTH CARE SCIENCES & SERVICES', 'MEDICINE, GENERAL & INTERNAL')","('SCIE', 'SCIE', 'SCIE')","14,594","3.2","('Q2', 'Q1', 'Q1')","1.30","28.36" +"Annals of the American Association of Geographers","2469-4452","2469-4460","GEOGRAPHY","('SSCI',)","3,807","3.2","Q1","1.29","30.51" +"Aquaculture Reports","2352-5134","2352-5134","FISHERIES","('SCIE',)","5,214","3.2","Q1","1.29","96.51" +"Journal of Esthetic and Restorative Dentistry","1496-4155","1708-8240","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","3,785","3.2","Q1","1.28","16.54" +"Clinical and Experimental Pediatrics","","2713-4148","PEDIATRICS","('ESCI',)","783","3.2","Q1","1.27","100.00" +"JMIR Medical Education","2369-3762","2369-3762","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","1,517","3.2","Q1","1.27","98.98" +"Quantitative Finance and Economics","2573-0134","2573-0134","BUSINESS, FINANCE","('ESCI',)","409","3.2","Q1","1.26","95.83" +"SPECTROCHIMICA ACTA PART B-ATOMIC SPECTROSCOPY","0584-8547","1873-3565","SPECTROSCOPY","('SCIE',)","8,189","3.2","Q1","1.26","25.15" +"INSECT BIOCHEMISTRY AND MOLECULAR BIOLOGY","0965-1748","1879-0240","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENTOMOLOGY')","('SCIE', 'SCIE')","8,884","3.2","('Q2', 'Q1')","1.25","28.26" +"ORE GEOLOGY REVIEWS","0169-1368","1872-7360","('GEOLOGY', 'MINERALOGY', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE', 'SCIE')","18,630","3.2","('Q1', 'Q1', 'Q1')","1.24","69.05" +"ENVIRONMENTAL & RESOURCE ECONOMICS","0924-6460","1573-1502","('ECONOMICS', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","6,158","3.2","('Q1', 'Q2')","1.23","45.26" +"Insect Conservation and Diversity","1752-458X","1752-4598","ENTOMOLOGY","('SCIE',)","2,117","3.2","Q1","1.23","45.50" +"JOURNAL OF PERSONALITY","0022-3506","1467-6494","PSYCHOLOGY, SOCIAL","('SSCI',)","10,287","3.2","Q1","1.23","45.91" +"Paleoceanography and Paleoclimatology","2572-4517","2572-4525","('GEOSCIENCES, MULTIDISCIPLINARY', 'OCEANOGRAPHY', 'PALEONTOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,031","3.2","('Q2', 'Q1', 'Q1')","1.21","39.66" +"DISEASES OF THE COLON & RECTUM","0012-3706","1530-0358","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","13,495","3.2","('Q2', 'Q1')","1.19","5.30" +"PSICOTHEMA","0214-9915","1886-144X","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","4,138","3.2","Q1","1.19","0.00" +"Social Psychology of Education","1381-2890","1573-1928","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","2,609","3.2","Q1","1.14","43.49" +"Communication & Sport","2167-4795","2167-4809","('COMMUNICATION', 'HOSPITALITY, LEISURE, SPORT & TOURISM')","('SSCI', 'SSCI')","1,280","3.2","('Q1', 'Q2')","1.10","16.97" +"Health and Quality of Life Outcomes","","1477-7525","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","14,119","3.2","('Q1', 'Q1')","1.10","100.00" +"OPTICS EXPRESS","1094-4087","","OPTICS","('SCIE',)","131,550","3.2","Q2","1.10","99.29" +"INTERNATIONAL JOURNAL OF ROBUST AND NONLINEAR CONTROL","1049-8923","1099-1239","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","12,333","3.2","('Q2', 'Q2', 'Q1')","1.09","5.09" +"NEUROEPIDEMIOLOGY","0251-5350","1423-0208","('CLINICAL NEUROLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","4,283","3.2","('Q2', 'Q2')","1.09","28.08" +"SPE JOURNAL","1086-055X","1930-0220","ENGINEERING, PETROLEUM","('SCIE',)","9,731","3.2","Q1","1.08","0.29" +"Kidney Medicine","2590-0595","2590-0595","UROLOGY & NEPHROLOGY","('ESCI',)","1,183","3.2","Q1","1.07","83.48" +"PSYCHOLOGY OF ADDICTIVE BEHAVIORS","0893-164X","1939-1501","('PSYCHOLOGY, MULTIDISCIPLINARY', 'SUBSTANCE ABUSE')","('SSCI', 'SSCI')","5,527","3.2","('Q1', 'Q1')","1.07","12.82" +"JOURNAL OF EXPERIMENTAL SOCIAL PSYCHOLOGY","0022-1031","1096-0465","PSYCHOLOGY, SOCIAL","('SSCI',)","14,667","3.2","Q1","1.06","27.02" +"POPULATION AND ENVIRONMENT","0199-0039","1573-7810","('DEMOGRAPHY', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","1,881","3.2","('Q1', 'Q2')","1.06","35.21" +"European Urology Open Science","2666-1691","2666-1683","UROLOGY & NEPHROLOGY","('SCIE',)","1,134","3.2","Q1","1.05","96.88" +"CONTEMPORARY ACCOUNTING RESEARCH","0823-9150","1911-3846","BUSINESS, FINANCE","('SSCI',)","8,264","3.2","Q1","1.04","29.30" +"JOURNAL OF AUTISM AND DEVELOPMENTAL DISORDERS","0162-3257","1573-3432","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","28,209","3.2","Q1","1.04","30.39" +"Journal of Racial and Ethnic Health Disparities","2197-3792","2196-8837","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","4,806","3.2","Q2","1.04","18.29" +"CORTEX","0010-9452","1973-8102","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI')","12,724","3.2","('Q1', 'Q2', 'Q1')","1.02","44.48" +"MEDICAL PHYSICS","0094-2405","2473-4209","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","30,140","3.2","Q1","1.02","23.15" +"Design Studies","0142-694X","1872-6909","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","3,214","3.2","('Q2', 'Q1')","1.01","48.96" +"EUROPEAN JOURNAL OF RADIOLOGY","0720-048X","1872-7727","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","16,891","3.2","Q1","1.01","18.91" +"PEDIATRIC NEUROLOGY","0887-8994","1873-5150","('CLINICAL NEUROLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","6,406","3.2","('Q2', 'Q1')","1.01","16.21" +"ADMINISTRATION & SOCIETY","0095-3997","1552-3039","PUBLIC ADMINISTRATION","('SSCI',)","2,705","3.2","Q1","1.00","24.16" +"Frontiers in Physiology","","1664-042X","PHYSIOLOGY","('SCIE',)","55,909","3.2","Q2","0.99","99.49" +"IEEE TRANSACTIONS ON BROADCASTING","0018-9316","1557-9611","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","2,447","3.2","('Q2', 'Q2')","0.98","8.78" +"Journal of Hepato-Biliary-Pancreatic Sciences","1868-6974","1868-6982","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","5,368","3.2","('Q2', 'Q1')","0.97","9.63" +"Kidney360","2641-7650","2641-7650","UROLOGY & NEPHROLOGY","('ESCI',)","1,962","3.2","Q1","0.97","99.84" +"3D Printing in Medicine","","2365-6271","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","697","3.2","Q1","0.96","100.00" +"Quaternary Science Reviews","0277-3791","1873-457X","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","25,450","3.2","('Q1', 'Q2')","0.96","41.75" +"Solid Earth","1869-9510","1869-9529","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","3,116","3.2","Q1","0.96","99.28" +"Head & Neck Pathology","1936-055X","1936-0568","PATHOLOGY","('ESCI',)","3,430","3.2","Q2","0.95","10.94" +"Journal of Pregnancy","2090-2727","2090-2735","OBSTETRICS & GYNECOLOGY","('ESCI',)","972","3.2","Q1","0.94","100.00" +"CRYSTAL GROWTH & DESIGN","1528-7483","1528-7505","('CHEMISTRY, MULTIDISCIPLINARY', 'CRYSTALLOGRAPHY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","30,998","3.2","('Q2', 'Q1', 'Q2')","0.93","13.15" +"JOURNAL OF ASSISTED REPRODUCTION AND GENETICS","1058-0468","1573-7330","('GENETICS & HEREDITY', 'OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","9,435","3.2","('Q2', 'Q1', 'Q2')","0.93","14.40" +"EUROPEAN JOURNAL OF PSYCHOLOGICAL ASSESSMENT","1015-5759","2151-2426","PSYCHOLOGY, APPLIED","('SSCI',)","3,172","3.2","Q2","0.92","21.43" +"Population Health Metrics","1478-7954","1478-7954","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","1,639","3.2","Q2","0.92","100.00" +"PRECAMBRIAN RESEARCH","0301-9268","1872-7433","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","21,846","3.2","Q2","0.92","13.30" +"Archives of Public Health","0778-7367","2049-3258","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","3,475","3.2","Q2","0.91","99.69" +"BURNS","0305-4179","1879-1409","('CRITICAL CARE MEDICINE', 'DERMATOLOGY', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","9,860","3.2","('Q2', 'Q2', 'Q1')","0.91","14.26" +"International Journal of Cardiology","0167-5273","1874-1754","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","31,772","3.2","Q2","0.91","20.14" +"NEUROENDOCRINOLOGY","0028-3835","1423-0194","('ENDOCRINOLOGY & METABOLISM', 'NEUROSCIENCES')","('SCIE', 'SCIE')","5,344","3.2","('Q2', 'Q2')","0.91","21.07" +"Genome Biology and Evolution","1759-6653","1759-6653","('EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","8,727","3.2","('Q2', 'Q2')","0.90","93.81" +"Nonprofit Management & Leadership","1048-6682","1542-7854","('MANAGEMENT', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","1,723","3.2","('Q2', 'Q1')","0.90","20.49" +"CLINICAL PSYCHOLOGY & PSYCHOTHERAPY","1063-3995","1099-0879","PSYCHOLOGY, CLINICAL","('SSCI',)","4,941","3.2","Q1","0.89","38.06" +"ESC Heart Failure","2055-5822","2055-5822","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","7,184","3.2","Q2","0.89","67.59" +"Frontiers in Psychiatry","1664-0640","1664-0640","PSYCHIATRY","('SCIE', 'SSCI')","38,643","3.2","Q2","0.89","99.43" +"Grey Systems-Theory and Application","2043-9377","2043-9385","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","801","3.2","Q1","0.89","0.99" +"Echo Research and Practice","2055-0464","2055-0464","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","507","3.2","Q2","0.87","100.00" +"Journal of Accounting in Emerging Economies","2042-1168","2042-1176","BUSINESS, FINANCE","('ESCI',)","971","3.2","Q1","0.87","5.88" +"Journal of Transport & Health","2214-1405","","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TRANSPORTATION')","('SSCI', 'SSCI')","3,766","3.2","('Q2', 'Q3')","0.87","29.28" +"MOLECULAR PHARMACOLOGY","0026-895X","1521-0111","PHARMACOLOGY & PHARMACY","('SCIE',)","13,017","3.2","Q2","0.87","24.59" +"RHEUMATOLOGY INTERNATIONAL","0172-8172","1437-160X","RHEUMATOLOGY","('SCIE',)","9,274","3.2","Q2","0.87","30.03" +"CONNECTION SCIENCE","0954-0091","1360-0494","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","1,256","3.2","('Q2', 'Q2')","0.86","89.56" +"IEEE SIGNAL PROCESSING LETTERS","1070-9908","1558-2361","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","15,727","3.2","Q2","0.86","8.76" +"Kidney Diseases","2296-9381","2296-9357","UROLOGY & NEPHROLOGY","('SCIE',)","989","3.2","Q1","0.86","100.00" +"OCEANOGRAPHY","1042-8275","1042-8275","OCEANOGRAPHY","('SCIE',)","4,830","3.2","Q1","0.86","77.40" +"Archives of Womens Mental Health","1434-1816","1435-1102","PSYCHIATRY","('SCIE',)","4,991","3.2","Q2","0.85","32.97" +"JOURNAL OF NEUROPATHOLOGY AND EXPERIMENTAL NEUROLOGY","0022-3069","1554-6578","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","9,153","3.2","('Q2', 'Q2', 'Q2')","0.85","19.42" +"Neurology International","2035-8377","2035-8377","CLINICAL NEUROLOGY","('ESCI',)","782","3.2","Q2","0.85","99.15" +"Atmospheric Measurement Techniques","1867-1381","1867-8548","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","14,248","3.2","Q2","0.84","99.82" +"BIOPHYSICAL JOURNAL","0006-3495","1542-0086","BIOPHYSICS","('SCIE',)","45,160","3.2","Q2","0.84","73.83" +"High-Confidence Computing","","2667-2952","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","149","3.2","Q2","0.84","96.39" +"JOURNAL OF NEURO-ONCOLOGY","0167-594X","1573-7373","('CLINICAL NEUROLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","14,904","3.2","('Q2', 'Q2')","0.84","24.35" +"EUROPEAN CELLS & MATERIALS","1473-2262","1473-2262","('CELL & TISSUE ENGINEERING', 'ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS', 'ORTHOPEDICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,888","3.2","('Q3', 'Q2', 'Q3', 'Q1')","0.83","5.98" +"Theoretical and Applied Mechanics Letters","2095-0349","2589-0336","MECHANICS","('ESCI',)","1,322","3.2","Q2","0.83","98.84" +"Current Research in Translational Medicine","2452-3186","2452-3186","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","589","3.2","Q2","0.82","20.93" +"Internal and Emergency Medicine","1828-0447","1970-9366","MEDICINE, GENERAL & INTERNAL","('SCIE',)","4,471","3.2","Q1","0.82","37.69" +"JOURNAL OF IMMUNOTHERAPY","1524-9557","1537-4513","('IMMUNOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'ONCOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,156","3.2","('Q3', 'Q2', 'Q2')","0.82","25.85" +"Land","","2073-445X","ENVIRONMENTAL STUDIES","('SSCI',)","18,080","3.2","Q2","0.82","99.73" +"Journal of Humanitarian Logistics and Supply Chain Management","2042-6747","2042-6755","MANAGEMENT","('ESCI',)","783","3.2","Q2","0.81","46.67" +"METABOLIC BRAIN DISEASE","0885-7490","1573-7365","('ENDOCRINOLOGY & METABOLISM', 'NEUROSCIENCES')","('SCIE', 'SCIE')","5,940","3.2","('Q2', 'Q2')","0.81","6.36" +"MOLECULAR PLANT-MICROBE INTERACTIONS","0894-0282","1943-7706","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","11,821","3.2","('Q2', 'Q2', 'Q2')","0.81","97.47" +"Economics of Innovation and New Technology","1043-8599","1476-8364","ECONOMICS","('SSCI',)","2,202","3.2","Q1","0.80","18.32" +"IATSS Research","0386-1112","2210-4240","TRANSPORTATION","('ESCI',)","1,458","3.2","Q3","0.80","97.06" +"JOURNAL OF SOLID STATE CHEMISTRY","0022-4596","1095-726X","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, PHYSICAL')","('SCIE', 'SCIE')","28,202","3.2","('Q2', 'Q2')","0.80","7.59" +"Knowledge Management Research & Practice","1477-8238","1477-8246","('INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SSCI', 'SSCI')","1,866","3.2","('Q1', 'Q2')","0.80","12.36" +"NUTRITION","0899-9007","1873-1244","NUTRITION & DIETETICS","('SCIE',)","14,372","3.2","Q2","0.80","21.60" +"PHYTOCHEMISTRY","0031-9422","1873-3700","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","31,846","3.2","('Q2', 'Q2')","0.80","9.25" +"SEMINARS IN PERINATOLOGY","0146-0005","1558-075X","('OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","4,526","3.2","('Q1', 'Q1')","0.80","20.00" +"Biotechnology Journal","1860-6768","1860-7314","('BIOCHEMICAL RESEARCH METHODS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE')","7,297","3.2","('Q2', 'Q2')","0.79","26.37" +"Frontiers in Neuroscience","","1662-453X","NEUROSCIENCES","('SCIE',)","46,766","3.2","Q2","0.79","99.49" +"ENVIRONMENTAL GEOCHEMISTRY AND HEALTH","0269-4042","1573-2983","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","9,097","3.2","('Q3', 'Q2', 'Q2', 'Q2')","0.78","11.57" +"JOURNAL OF NEURAL TRANSMISSION","0300-9564","1435-1463","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","8,612","3.2","('Q2', 'Q2')","0.78","52.38" +"Journal of Neuromuscular Diseases","2214-3599","2214-3602","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","1,509","3.2","('Q2', 'Q2')","0.78","54.18" +"PSYCHONOMIC BULLETIN & REVIEW","1069-9384","1531-5320","('PSYCHOLOGY, EXPERIMENTAL', 'PSYCHOLOGY, MATHEMATICAL')","('SSCI', 'SSCI')","13,996","3.2","('Q1', 'Q1')","0.78","41.01" +"Systems Science & Control Engineering","","2164-2583","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","1,775","3.2","Q2","0.77","99.13" +"CELL TRANSPLANTATION","0963-6897","1555-3892","('CELL & TISSUE ENGINEERING', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'TRANSPLANTATION')","('SCIE', 'SCIE', 'SCIE')","7,013","3.2","('Q3', 'Q2', 'Q2')","0.76","95.50" +"Frontiers in Digital Health","","2673-253X","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('ESCI', 'ESCI')","1,751","3.2","('Q1', 'Q2')","0.76","99.55" +"International Journal of Medical Sciences","1449-1907","1449-1907","MEDICINE, GENERAL & INTERNAL","('SCIE',)","7,790","3.2","Q1","0.76","99.62" +"JOURNAL OF GENE MEDICINE","1099-498X","1521-2254","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","2,554","3.2","('Q2', 'Q2', 'Q2')","0.76","8.22" +"NEUROMODULATION","1094-7159","1525-1403","('CLINICAL NEUROLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","4,926","3.2","('Q2', 'Q2')","0.76","31.52" +"European Cardiology Review","1758-3756","1758-3756","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","924","3.2","Q2","0.75","97.27" +"AMERICAN JOURNAL OF HYPERTENSION","0895-7061","1941-7225","PERIPHERAL VASCULAR DISEASE","('SCIE',)","8,292","3.2","Q2","0.74","21.22" +"AUTONOMIC NEUROSCIENCE-BASIC & CLINICAL","1566-0702","1872-7484","NEUROSCIENCES","('SCIE',)","3,540","3.2","Q2","0.74","18.36" +"DIABETIC MEDICINE","0742-3071","1464-5491","ENDOCRINOLOGY & METABOLISM","('SCIE',)","13,896","3.2","Q2","0.74","43.08" +"JCO Global Oncology","","2687-8941","ONCOLOGY","('ESCI',)","1,960","3.2","Q2","0.74","89.41" +"JOURNAL OF BIOCHEMICAL AND MOLECULAR TOXICOLOGY","1095-6670","1099-0461","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","5,235","3.2","('Q2', 'Q2')","0.74","4.09" +"JOURNAL OF FOOD SCIENCE","0022-1147","1750-3841","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","30,310","3.2","Q2","0.74","9.21" +"CLINICAL THERAPEUTICS","0149-2918","1879-114X","PHARMACOLOGY & PHARMACY","('SCIE',)","8,387","3.2","Q2","0.73","27.13" +"JOURNAL OF CRITICAL CARE","0883-9441","1557-8615","CRITICAL CARE MEDICINE","('SCIE',)","8,700","3.2","Q2","0.73","27.57" +"Journal of Non-Crystalline Solids","0022-3093","1873-4812","('MATERIALS SCIENCE, CERAMICS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","30,345","3.2","('Q1', 'Q2')","0.73","10.58" +"LUMINESCENCE","1522-7235","1522-7243","CHEMISTRY, ANALYTICAL","('SCIE',)","4,380","3.2","Q2","0.73","0.79" +"Phytopathology Research","2096-5362","2524-4167","PLANT SCIENCES","('SCIE',)","568","3.2","Q2","0.73","99.28" +"BIOESSAYS","0265-9247","1521-1878","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOLOGY')","('SCIE', 'SCIE')","10,084","3.2","('Q2', 'Q1')","0.72","45.13" +"International Journal of Gastronomy and Food Science","1878-450X","1878-4518","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","2,129","3.2","Q2","0.72","20.27" +"Life-Basel","","2075-1729","BIOLOGY","('SCIE',)","15,665","3.2","Q1","0.72","99.78" +"JOURNAL OF PARENTERAL AND ENTERAL NUTRITION","0148-6071","1941-2444","NUTRITION & DIETETICS","('SCIE',)","7,829","3.2","Q2","0.71","17.80" +"Cardio-Oncology","","2057-3804","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'ONCOLOGY')","('ESCI', 'ESCI')","497","3.2","('Q2', 'Q2')","0.70","100.00" +"Frontiers in Virtual Reality","","2673-4192","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","1,383","3.2","Q2","0.70","99.78" +"Journal of Fashion Marketing and Management","1361-2026","1758-7433","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","2,302","3.2","('Q2', 'Q2')","0.70","4.24" +"JOURNAL OF REGIONAL SCIENCE","0022-4146","1467-9787","('ECONOMICS', 'ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI', 'SSCI')","3,075","3.2","('Q1', 'Q2', 'Q2')","0.70","39.86" +"Wiley Interdisciplinary Reviews-Cognitive Science","1939-5078","1939-5086","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","2,423","3.2","Q1","0.70","36.56" +"Best Practice & Research Clinical Gastroenterology","1521-6918","1532-1916","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,273","3.2","Q2","0.69","28.43" +"Future Medicinal Chemistry","1756-8919","1756-8927","CHEMISTRY, MEDICINAL","('SCIE',)","5,993","3.2","Q3","0.69","5.51" +"PHYSICAL REVIEW B","2469-9950","2469-9969","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","375,965","3.2","('Q2', 'Q2', 'Q2')","0.69","6.86" +"PROTEINS-STRUCTURE FUNCTION AND BIOINFORMATICS","0887-3585","1097-0134","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","14,309","3.2","('Q2', 'Q2')","0.69","25.38" +"CLINICAL AND EXPERIMENTAL MEDICINE","1591-8890","1591-9528","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","2,743","3.2","Q2","0.68","27.58" +"CLINICAL ONCOLOGY","0936-6555","1433-2981","ONCOLOGY","('SCIE',)","4,268","3.2","Q2","0.68","20.40" +"INTERNATIONAL JOURNAL OF APPROXIMATE REASONING","0888-613X","1873-4731","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","5,066","3.2","Q2","0.67","24.63" +"JOURNAL OF APPLIED MICROBIOLOGY","1364-5072","1365-2672","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","24,397","3.2","('Q2', 'Q2')","0.67","14.06" +"E-POLYMERS","2197-4586","1618-7229","POLYMER SCIENCE","('SCIE',)","2,001","3.2","Q2","0.66","96.96" +"MOLECULAR AND CELLULAR BIOLOGY","0270-7306","1098-5549","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","42,440","3.2","('Q2', 'Q3')","0.66","22.29" +"National Accounting Review","","2689-3010","('BUSINESS, FINANCE', 'ECONOMICS')","('ESCI', 'ESCI')","178","3.2","('Q1', 'Q1')","0.66","98.57" +"CIRP ANNALS-MANUFACTURING TECHNOLOGY","0007-8506","1726-0604","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING')","('SCIE', 'SCIE')","12,263","3.2","('Q2', 'Q2')","0.65","28.50" +"Indian Journal of Dermatology Venereology & Leprology","0378-6323","0973-3922","DERMATOLOGY","('SCIE',)","3,064","3.2","Q2","0.65","96.92" +"MOLECULAR IMMUNOLOGY","0161-5890","1872-9142","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","12,638","3.2","('Q2', 'Q3')","0.65","18.67" +"Current Pain and Headache Reports","1531-3433","1534-3081","CLINICAL NEUROLOGY","('SCIE',)","3,793","3.2","Q2","0.64","9.71" +"ANNALS OF NUTRITION AND METABOLISM","0250-6807","1421-9697","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","5,133","3.2","('Q2', 'Q2')","0.63","36.67" +"Galaxies","","2075-4434","ASTRONOMY & ASTROPHYSICS","('ESCI',)","1,881","3.2","Q2","0.61","99.72" +"JOURNAL OF THERMAL SPRAY TECHNOLOGY","1059-9630","1544-1016","MATERIALS SCIENCE, COATINGS & FILMS","('SCIE',)","6,944","3.2","Q2","0.61","19.13" +"Biomedical Engineering Letters","2093-9868","2093-985X","ENGINEERING, BIOMEDICAL","('SCIE',)","1,203","3.2","Q2","0.60","14.57" +"Forces in Mechanics","2666-3597","2666-3597","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('ESCI', 'ESCI')","528","3.2","('Q2', 'Q2')","0.60","95.69" +"NITRIC OXIDE-BIOLOGY AND CHEMISTRY","1089-8603","1089-8611","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","4,394","3.2","('Q2', 'Q3')","0.60","23.04" +"Journal of Gastric Cancer","2093-582X","2093-5641","('GASTROENTEROLOGY & HEPATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","1,016","3.2","('Q2', 'Q2')","0.59","0.00" +"Chemical Biology & Drug Design","1747-0277","1747-0285","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL')","('SCIE', 'SCIE')","5,697","3.2","('Q2', 'Q3')","0.58","5.59" +"Energy Efficiency","1570-646X","1570-6478","('ENERGY & FUELS', 'ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SSCI', 'SCIE, SSCI')","2,635","3.2","('Q3', 'Q2', 'Q3')","0.58","32.82" +"INTERNATIONAL JOURNAL OF ADHESION AND ADHESIVES","0143-7496","1879-0127","('ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","8,830","3.2","('Q2', 'Q2')","0.57","11.73" +"Presse Medicale","0755-4982","2213-0276","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,261","3.2","Q1","0.57","42.86" +"Review of International Business and Strategy","2059-6014","1758-8529","BUSINESS","('ESCI',)","602","3.2","Q2","0.57","6.25" +"Biofuels Bioproducts & Biorefining-Biofpr","1932-104X","1932-1031","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENERGY & FUELS')","('SCIE', 'SCIE')","4,244","3.2","('Q2', 'Q3')","0.55","19.78" +"POLYMER ENGINEERING AND SCIENCE","0032-3888","1548-2634","('ENGINEERING, CHEMICAL', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","13,484","3.2","('Q2', 'Q2')","0.55","8.71" +"PROGRESS IN BIOPHYSICS & MOLECULAR BIOLOGY","0079-6107","1873-1732","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","4,519","3.2","('Q2', 'Q2')","0.55","24.79" +"BIOPOLYMERS","0006-3525","1097-0282","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","7,937","3.2","('Q2', 'Q2')","0.54","15.91" +"BIOTECHNOLOGY AND APPLIED BIOCHEMISTRY","0885-4513","1470-8744","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE')","3,859","3.2","('Q2', 'Q2')","0.54","3.20" +"JOURNAL OF BIOMEDICAL MATERIALS RESEARCH PART B-APPLIED BIOMATERIALS","1552-4973","1552-4981","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","10,672","3.2","('Q2', 'Q3')","0.54","11.63" +"JOURNAL OF INDUSTRIAL MICROBIOLOGY & BIOTECHNOLOGY","1367-5435","1476-5535","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","7,207","3.2","Q2","0.54","95.03" +"INDOOR AND BUILT ENVIRONMENT","1420-326X","1423-0070","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, ENVIRONMENTAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE', 'SCIE')","3,609","3.2","('Q2', 'Q3', 'Q2')","0.53","10.31" +"INTERVIROLOGY","0300-5526","1423-0100","VIROLOGY","('SCIE',)","1,343","3.2","Q3","0.53","100.00" +"Epigenetics Insights","2516-8657","2516-8657","GENETICS & HEREDITY","('ESCI',)","119","3.2","Q2","0.52","88.89" +"Journal of International Entrepreneurship","1570-7385","1573-7349","BUSINESS","('ESCI',)","1,072","3.2","Q2","0.52","25.93" +"Energy Advances","","2753-1457","('CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","447","3.2","('Q2', 'Q3', 'Q2')","0.48","99.62" +"IMMUNOLOGY AND CELL BIOLOGY","0818-9641","1440-1711","('CELL BIOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","4,888","3.2","('Q3', 'Q3')","0.48","43.53" +"Molecular Systems Design & Engineering","2058-9689","2058-9689","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,301","3.2","('Q2', 'Q2', 'Q3')","0.47","17.90" +"JOURNAL OF CELLULAR PLASTICS","0021-955X","1530-7999","('CHEMISTRY, APPLIED', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","1,206","3.2","('Q2', 'Q2')","0.45","15.87" +"Oncology and Therapy","2366-1070","2366-1089","ONCOLOGY","('ESCI',)","476","3.2","Q2","0.45","100.00" +"Advanced Biology","2701-0198","2701-0198","MATERIALS SCIENCE, BIOMATERIALS","('SCIE',)","834","3.2","Q3","0.44","33.18" +"Visual Computing for Industry Biomedicine and Art","","2524-4442","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","477","3.2","('Q2', 'Q2', 'Q2')","0.44","100.00" +"CELL AND TISSUE RESEARCH","0302-766X","1432-0878","CELL BIOLOGY","('SCIE',)","13,330","3.2","Q3","0.43","28.14" +"JOURNAL OF THE INDIAN CHEMICAL SOCIETY","0019-4522","","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","3,868","3.2","Q2","0.43","1.50" +"Frontiers of Architectural Research","2095-2635","2095-2643","ARCHITECTURE","('AHCI',)","1,505","3.1","","5.33","93.69" +"Advances in Difference Equations","1687-1847","1687-1847","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","7,425","3.1","('Q1', 'Q1')","2.75","100.00" +"Crime Science","","2193-7680","CRIMINOLOGY & PENOLOGY","('ESCI',)","558","3.1","Q1","2.55","100.00" +"Journal of English for Academic Purposes","1475-1585","1878-1497","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","2,555","3.1","('Q1', 'N/A', 'Q1')","2.47","13.66" +"JOURNAL OF THE ROYAL STATISTICAL SOCIETY SERIES B-STATISTICAL METHODOLOGY","1369-7412","1467-9868","STATISTICS & PROBABILITY","('SCIE',)","29,988","3.1","Q1","2.20","22.58" +"ELT Journal","0951-0893","1477-4526","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","2,221","3.1","('Q1', 'N/A', 'Q1')","2.08","12.16" +"COMMUNICATIONS ON PURE AND APPLIED MATHEMATICS","0010-3640","1097-0312","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","10,849","3.1","('Q1', 'Q1')","1.92","28.11" +"COMPARATIVE EDUCATION","0305-0068","1360-0486","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,644","3.1","Q1","1.87","43.18" +"Medical Education Online","1087-2981","1087-2981","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,687","3.1","Q1","1.83","98.98" +"Policy Design and Practice","","2574-1292","PUBLIC ADMINISTRATION","('ESCI',)","599","3.1","Q1","1.77","95.65" +"International Studies Review","1521-9488","1468-2486","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","2,202","3.1","('Q1', 'Q1')","1.76","31.22" +"Research and Practice in Technology Enhanced Learning","","1793-7078","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","633","3.1","Q1","1.74","98.33" +"SCIENCE EDUCATION","0036-8326","1098-237X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","5,657","3.1","Q1","1.73","33.15" +"JOURNAL OF TEACHER EDUCATION","0022-4871","1552-7816","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","4,269","3.1","Q1","1.68","18.37" +"Artificial Intelligence and Law","0924-8463","1572-8382","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'LAW')","('SCIE', 'SCIE', 'SSCI')","799","3.1","('Q2', 'Q2', 'Q1')","1.67","40.82" +"Politics & Gender","1743-923X","1743-9248","('POLITICAL SCIENCE', 'WOMENS STUDIES')","('SSCI', 'SSCI')","1,890","3.1","('Q1', 'Q1')","1.67","35.88" +"Mobile Media & Communication","2050-1579","2050-1587","COMMUNICATION","('SSCI',)","977","3.1","Q1","1.66","25.51" +"BMC NURSING","1472-6955","1472-6955","NURSING","('SCIE', 'SSCI')","4,412","3.1","Q1","1.65","99.82" +"Journal of Happiness Studies","1389-4978","1573-7780","('PSYCHOLOGY, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","8,408","3.1","('Q1', 'Q1')","1.59","36.72" +"JOURNAL OF HUMAN EVOLUTION","0047-2484","1095-8606","('ANTHROPOLOGY', 'EVOLUTIONARY BIOLOGY')","('SSCI', 'SCIE')","8,652","3.1","('Q1', 'Q2')","1.56","38.02" +"Innovation in Language Learning and Teaching","1750-1229","1750-1237","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('SSCI', 'SSCI')","838","3.1","('Q1', 'Q1')","1.55","16.36" +"EUROPEAN SOCIOLOGICAL REVIEW","0266-7215","1468-2672","SOCIOLOGY","('SSCI',)","5,034","3.1","Q1","1.54","53.53" +"International Journal of Nursing Studies Advances","2666-142X","2666-142X","NURSING","('ESCI',)","362","3.1","Q1","1.50","92.48" +"EDUCATIONAL REVIEW","0013-1911","1465-3397","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,523","3.1","Q1","1.49","37.45" +"JOURNAL OF THE AMERICAN DENTAL ASSOCIATION","0002-8177","1943-4723","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","7,813","3.1","Q1","1.49","14.13" +"European Journal of Futures Research","2195-4194","2195-2248","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","389","3.1","Q1","1.47","100.00" +"JOURNAL OF FINANCIAL INTERMEDIATION","1042-9573","1096-0473","BUSINESS, FINANCE","('SSCI',)","3,238","3.1","Q2","1.42","13.89" +"Journal of Mass Spectrometry and Advances in the Clinical Lab","2667-1468","2667-145X","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","231","3.1","Q2","1.40","97.92" +"Brazilian Journal of Physical Therapy","1413-3555","1809-9246","('ORTHOPEDICS', 'REHABILITATION')","('SCIE', 'SCIE')","2,582","3.1","('Q1', 'Q1')","1.38","13.07" +"Clinical Oral Investigations","1432-6981","1436-3771","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","14,538","3.1","Q1","1.33","32.98" +"DEVELOPMENT AND PSYCHOPATHOLOGY","0954-5794","1469-2198","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","11,934","3.1","Q2","1.33","43.97" +"BRITISH JOURNAL OF EDUCATIONAL PSYCHOLOGY","0007-0998","2044-8279","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","5,000","3.1","Q1","1.29","41.28" +"Collabra-Psychology","2474-7394","2474-7394","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,208","3.1","Q1","1.27","99.26" +"PEDIATRIC RESEARCH","0031-3998","1530-0447","PEDIATRICS","('SCIE',)","18,159","3.1","Q1","1.27","26.29" +"ACTA ASTRONAUTICA","0094-5765","1879-2030","ENGINEERING, AEROSPACE","('SCIE',)","17,746","3.1","Q1","1.25","19.72" +"Physiotherapy","0031-9406","1873-1465","REHABILITATION","('SCIE',)","3,233","3.1","Q1","1.25","29.05" +"JOURNAL OF HEALTH COMMUNICATION","1081-0730","1087-0415","('COMMUNICATION', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SSCI', 'SSCI')","6,013","3.1","('Q1', 'Q1')","1.24","14.44" +"Journal of Psychopathology and Clinical Science","2769-7541","2769-755X","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","373","3.1","('Q2', 'Q1')","1.24","7.60" +"PUBLIC PERSONNEL MANAGEMENT","0091-0260","1945-7421","('INDUSTRIAL RELATIONS & LABOR', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","1,156","3.1","('Q1', 'Q1')","1.24","14.52" +"JCMS-Journal of Common Market Studies","0021-9886","1468-5965","('ECONOMICS', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","4,461","3.1","('Q1', 'Q1', 'Q1')","1.23","57.85" +"Journal of Communication Management","1363-254X","1478-0852","COMMUNICATION","('ESCI',)","1,101","3.1","Q1","1.22","24.21" +"Sociology Compass","1751-9020","1751-9020","SOCIOLOGY","('SSCI',)","3,724","3.1","Q1","1.22","28.13" +"Scandinavian Journal of Hospitality and Tourism","1502-2250","1502-2269","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,340","3.1","('Q2', 'Q1')","1.21","56.45" +"INTERNATIONAL JOURNAL OF MODELLING AND SIMULATION","0228-6203","1925-7082","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('ESCI', 'ESCI')","914","3.1","('Q1', 'Q1')","1.20","1.00" +"Journal of Tourism and Services","1804-5650","1804-5650","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","284","3.1","Q2","1.20","95.06" +"COMMUNICATION MONOGRAPHS","0363-7751","1479-5787","COMMUNICATION","('SSCI',)","4,103","3.1","Q1","1.19","6.58" +"DEVELOPMENTAL PSYCHOLOGY","0012-1649","1939-0599","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","23,244","3.1","Q2","1.19","8.91" +"Advances in Developing Human Resources","1523-4223","1552-3055","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","1,421","3.1","Q1","1.18","1.82" +"International Journal of Implant Dentistry","","2198-4034","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,631","3.1","Q1","1.18","99.57" +"International Journal of Business Communication","2329-4884","2329-4892","('BUSINESS', 'COMMUNICATION')","('SSCI', 'SSCI')","983","3.1","('Q2', 'Q1')","1.17","8.13" +"WOOD SCIENCE AND TECHNOLOGY","0043-7719","1432-5225","('FORESTRY', 'MATERIALS SCIENCE, PAPER & WOOD')","('SCIE', 'SCIE')","4,701","3.1","('Q1', 'Q1')","1.15","24.42" +"ICES JOURNAL OF MARINE SCIENCE","1054-3139","1095-9289","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE')","13,710","3.1","('Q1', 'Q1', 'Q1')","1.14","55.18" +"JOURNAL OF ORAL REHABILITATION","0305-182X","1365-2842","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","8,652","3.1","Q1","1.14","33.18" +"American Journal of Health Economics","2332-3493","2332-3507","('ECONOMICS', 'HEALTH POLICY & SERVICES')","('SSCI', 'SSCI')","366","3.1","('Q1', 'Q1')","1.13","3.33" +"DEVELOPMENTAL SCIENCE","1363-755X","1467-7687","('PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","8,842","3.1","('Q2', 'Q1')","1.13","38.61" +"European Journal of Emergency Medicine","0969-9546","1473-5695","EMERGENCY MEDICINE","('SCIE',)","1,857","3.1","Q1","1.13","14.60" +"JOURNAL OF RURAL HEALTH","0890-765X","1748-0361","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SCIE, SSCI')","3,170","3.1","('Q2', 'Q1', 'Q2')","1.13","22.31" +"Archives of Osteoporosis","1862-3522","1862-3514","('ENDOCRINOLOGY & METABOLISM', 'ORTHOPEDICS')","('SCIE', 'SCIE')","3,302","3.1","('Q2', 'Q1')","1.11","24.23" +"HEALTH PSYCHOLOGY","0278-6133","1930-7810","('PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SSCI')","12,253","3.1","('Q1', 'Q1')","1.09","7.97" +"OPTICS LETTERS","0146-9592","1539-4794","OPTICS","('SCIE',)","70,714","3.1","Q2","1.08","7.36" +"PSYCHOLOGY OF SPORT AND EXERCISE","1469-0292","1878-5476","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY', 'PSYCHOLOGY, APPLIED', 'SPORT SCIENCES')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","7,916","3.1","('Q2', 'Q1', 'Q2', 'Q1')","1.06","29.46" +"EUROPEAN JOURNAL OF CARDIO-THORACIC SURGERY","1010-7940","1873-734X","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RESPIRATORY SYSTEM', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","17,568","3.1","('Q2', 'Q2', 'Q1')","1.05","15.42" +"Geography Compass","1749-8198","1749-8198","GEOGRAPHY","('SSCI',)","3,537","3.1","Q1","1.05","49.15" +"ULTRASCHALL IN DER MEDIZIN","0172-4614","1438-8782","('ACOUSTICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","2,760","3.1","('Q1', 'Q1')","1.05","7.03" +"BIOLOGY OF REPRODUCTION","0006-3363","1529-7268","REPRODUCTIVE BIOLOGY","('SCIE',)","20,583","3.1","Q2","1.04","16.08" +"HEALTH SERVICES RESEARCH","0017-9124","1475-6773","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","9,713","3.1","('Q2', 'Q1')","1.04","34.98" +"Horticulturae","","2311-7524","HORTICULTURE","('SCIE',)","7,675","3.1","Q1","1.03","99.84" +"EARTHQUAKE SPECTRA","8755-2930","1944-8201","('ENGINEERING, CIVIL', 'ENGINEERING, GEOLOGICAL')","('SCIE', 'SCIE')","8,654","3.1","('Q2', 'Q2')","1.02","13.58" +"Eye and Brain","1179-2744","1179-2744","OPHTHALMOLOGY","('ESCI',)","450","3.1","Q1","1.02","95.35" +"JOURNAL OF ANALYTICAL ATOMIC SPECTROMETRY","0267-9477","1364-5544","('CHEMISTRY, ANALYTICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE')","10,785","3.1","('Q2', 'Q1')","1.02","16.28" +"SCIENCE TECHNOLOGY & HUMAN VALUES","0162-2439","1552-8251","SOCIAL ISSUES","('SSCI',)","3,702","3.1","Q1","1.02","46.25" +"International Journal of Telemedicine and Applications","1687-6415","1687-6423","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","411","3.1","Q2","1.01","100.00" +"JOURNAL OF PHARMACOLOGY AND EXPERIMENTAL THERAPEUTICS","0022-3565","1521-0103","PHARMACOLOGY & PHARMACY","('SCIE',)","21,598","3.1","Q2","1.00","25.68" +"AFRICAN DEVELOPMENT REVIEW-REVUE AFRICAINE DE DEVELOPPEMENT","1017-6772","1467-8268","DEVELOPMENT STUDIES","('SSCI',)","1,570","3.1","Q1","0.99","2.37" +"Applied Health Economics and Health Policy","1175-5652","1179-1896","('ECONOMICS', 'HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SSCI', 'SCIE', 'SSCI')","2,044","3.1","('Q1', 'Q2', 'Q1')","0.99","50.25" +"ASAIO JOURNAL","1058-2916","1538-943X","('ENGINEERING, BIOMEDICAL', 'TRANSPLANTATION')","('SCIE', 'SCIE')","5,157","3.1","('Q2', 'Q2')","0.98","5.77" +"European Journal of Health Economics","1618-7598","1618-7601","('ECONOMICS', 'HEALTH POLICY & SERVICES')","('SSCI', 'SSCI')","3,700","3.1","('Q1', 'Q1')","0.98","60.06" +"GEOMORPHOLOGY","0169-555X","1872-695X","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","26,426","3.1","('Q2', 'Q2')","0.98","29.81" +"AMERICAN JOURNAL OF NEURORADIOLOGY","0195-6108","1936-959X","('CLINICAL NEUROLOGY', 'NEUROIMAGING', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","23,271","3.1","('Q2', 'Q2', 'Q1')","0.97","84.04" +"Cannabis and Cannabinoid Research","2578-5125","2378-8763","PHARMACOLOGY & PHARMACY","('SCIE',)","1,924","3.1","Q2","0.97","12.32" +"npj Primary Care Respiratory Medicine","","2055-1010","('PRIMARY HEALTH CARE', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","1,334","3.1","('Q1', 'Q2')","0.97","100.00" +"PARKINSONISM & RELATED DISORDERS","1353-8020","1873-5126","CLINICAL NEUROLOGY","('SCIE',)","12,504","3.1","Q2","0.97","26.12" +"Australian Accounting Review","1035-6908","1835-2561","BUSINESS, FINANCE","('SSCI',)","1,154","3.1","Q2","0.95","38.10" +"CPT-Pharmacometrics & Systems Pharmacology","2163-8306","2163-8306","PHARMACOLOGY & PHARMACY","('SCIE',)","3,126","3.1","Q2","0.95","77.98" +"JOURNAL OF ECONOMIC GEOGRAPHY","1468-2702","1468-2710","('ECONOMICS', 'GEOGRAPHY')","('SSCI', 'SSCI')","4,685","3.1","('Q1', 'Q1')","0.95","31.94" +"AIMS Public Health","2327-8994","2327-8994","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","918","3.1","Q2","0.93","98.84" +"APPLIED GEOCHEMISTRY","0883-2927","1872-9134","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","14,552","3.1","Q1","0.93","23.24" +"JOURNAL OF COGNITIVE NEUROSCIENCE","0898-929X","1530-8898","('NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI')","14,087","3.1","('Q2', 'Q1')","0.93","11.68" +"Journal of the Association of Environmental and Resource Economists","2333-5955","2333-5963","('ECONOMICS', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","1,540","3.1","('Q1', 'Q2')","0.93","1.68" +"HEREDITY","0018-067X","1365-2540","('ECOLOGY', 'EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","9,311","3.1","('Q2', 'Q2', 'Q2')","0.92","41.50" +"IRRIGATION SCIENCE","0342-7188","1432-1319","('AGRONOMY', 'WATER RESOURCES')","('SCIE', 'SCIE')","3,170","3.1","('Q1', 'Q2')","0.92","23.28" +"International Braz J Urol","1677-5538","1677-6119","UROLOGY & NEPHROLOGY","('SCIE',)","2,554","3.1","Q1","0.91","97.06" +"International Journal of Health Policy and Management","","2322-5939","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","3,615","3.1","('Q2', 'Q1')","0.91","97.56" +"CLINICS IN GERIATRIC MEDICINE","0749-0690","1879-8853","GERIATRICS & GERONTOLOGY","('SCIE',)","3,759","3.1","Q3","0.90","6.45" +"Current Clinical Microbiology Reports","2196-5471","2196-5471","MICROBIOLOGY","('ESCI',)","492","3.1","Q2","0.90","40.00" +"EJNMMI Research","2191-219X","2191-219X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","2,830","3.1","Q1","0.90","98.36" +"EVOLUTION","0014-3820","1558-5646","('ECOLOGY', 'EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","27,748","3.1","('Q2', 'Q2', 'Q2')","0.90","36.46" +"NAUNYN-SCHMIEDEBERGS ARCHIVES OF PHARMACOLOGY","0028-1298","1432-1912","PHARMACOLOGY & PHARMACY","('SCIE',)","6,530","3.1","Q2","0.90","22.66" +"OCEAN MODELLING","1463-5003","1463-5011","('METEOROLOGY & ATMOSPHERIC SCIENCES', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","5,341","3.1","('Q2', 'Q1')","0.90","47.01" +"OIKOS","0030-1299","1600-0706","ECOLOGY","('SCIE',)","21,374","3.1","Q2","0.90","35.39" +"Journal of Hydrology X","","2589-9155","('GEOSCIENCES, MULTIDISCIPLINARY', 'WATER RESOURCES')","('ESCI', 'ESCI')","389","3.1","('Q2', 'Q2')","0.89","93.33" +"Sleep Medicine Clinics","1556-407X","1556-4088","CLINICAL NEUROLOGY","('ESCI',)","1,976","3.1","Q2","0.89","10.81" +"APPLIED ERGONOMICS","0003-6870","1872-9126","('ENGINEERING, INDUSTRIAL', 'ERGONOMICS', 'PSYCHOLOGY, APPLIED')","('SCIE', 'SSCI', 'SSCI')","10,443","3.1","('Q2', 'Q1', 'Q2')","0.88","28.48" +"Cognitive Neurodynamics","1871-4080","1871-4099","NEUROSCIENCES","('SCIE',)","2,164","3.1","Q2","0.88","15.28" +"Journal of Pharmaceutical and Biomedical Analysis","0731-7085","1873-264X","('CHEMISTRY, ANALYTICAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","24,171","3.1","('Q2', 'Q2')","0.88","12.62" +"Mindfulness","1868-8527","1868-8535","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","8,190","3.1","('Q2', 'Q1')","0.87","33.44" +"Aeolian Research","1875-9637","2212-1684","GEOGRAPHY, PHYSICAL","('SCIE',)","2,212","3.1","Q2","0.86","26.15" +"JOURNAL OF CHEMICAL PHYSICS","0021-9606","1089-7690","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","221,700","3.1","('Q3', 'Q1')","0.86","26.51" +"MEDICAL DECISION MAKING","0272-989X","1552-681X","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'MEDICAL INFORMATICS')","('SCIE', 'SSCI', 'SCIE')","6,132","3.1","('Q2', 'Q1', 'Q2')","0.86","42.69" +"ACTA DIABETOLOGICA","0940-5429","1432-5233","ENDOCRINOLOGY & METABOLISM","('SCIE',)","5,319","3.1","Q2","0.85","39.24" +"Ecological Complexity","1476-945X","1476-9840","ECOLOGY","('SCIE',)","2,197","3.1","Q2","0.85","13.98" +"International Journal of Oral Implantology","2631-6420","2631-6439","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","309","3.1","Q1","0.85","0.00" +"Journal of Management & Organization","1833-3672","1839-3527","MANAGEMENT","('SSCI',)","2,515","3.1","Q2","0.85","19.11" +"Journal of Managerial Psychology","0268-3946","1758-7778","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","4,873","3.1","('Q2', 'Q2')","0.85","3.97" +"ONLINE INFORMATION REVIEW","1468-4527","1468-4535","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SCIE', 'SSCI')","2,793","3.1","('Q2', 'Q1')","0.85","3.35" +"Advanced Pharmaceutical Bulletin","2228-5881","2251-7308","PHARMACOLOGY & PHARMACY","('ESCI',)","3,318","3.1","Q2","0.84","79.83" +"Critical Public Health","0958-1596","1469-3682","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI')","1,809","3.1","('Q2', 'Q1')","0.84","38.58" +"Frontiers in Medicine","","2296-858X","MEDICINE, GENERAL & INTERNAL","('SCIE',)","31,707","3.1","Q1","0.84","99.44" +"Geoderma Regional","2352-0094","2352-0094","SOIL SCIENCE","('SCIE',)","1,866","3.1","Q2","0.84","21.45" +"Journal of Computational Science","1877-7503","1877-7511","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","4,457","3.1","('Q2', 'Q2')","0.84","23.72" +"Conflict and Health","1752-1505","1752-1505","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","1,775","3.1","Q2","0.83","98.51" +"JOURNAL OF HYDROMETEOROLOGY","1525-755X","1525-7541","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","10,720","3.1","Q2","0.83","4.42" +"JOURNAL OF THE AMERICAN SOCIETY FOR MASS SPECTROMETRY","1044-0305","1879-1123","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL', 'CHEMISTRY, PHYSICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","10,617","3.1","('Q2', 'Q2', 'Q3', 'Q1')","0.83","18.80" +"Lubricants","","2075-4442","ENGINEERING, MECHANICAL","('SCIE',)","3,456","3.1","Q2","0.83","99.60" +"Computational Toxicology","2468-1113","2468-1113","TOXICOLOGY","('ESCI',)","639","3.1","Q2","0.82","31.03" +"Hydrology","","2306-5338","WATER RESOURCES","('ESCI',)","2,678","3.1","Q2","0.82","99.53" +"Ticks and Tick-Borne Diseases","1877-959X","1877-9603","('INFECTIOUS DISEASES', 'MICROBIOLOGY', 'PARASITOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,510","3.1","('Q2', 'Q2', 'Q1')","0.82","50.09" +"ALGAE","1226-2617","2093-0860","('MARINE & FRESHWATER BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","939","3.1","('Q1', 'Q2')","0.81","100.00" +"BRITISH JOURNAL OF CLINICAL PHARMACOLOGY","0306-5251","1365-2125","PHARMACOLOGY & PHARMACY","('SCIE',)","17,303","3.1","Q2","0.81","45.97" +"China Communications","1673-5447","","TELECOMMUNICATIONS","('SCIE',)","4,490","3.1","Q2","0.81","0.00" +"GERONTOLOGY","0304-324X","1423-0003","GERIATRICS & GERONTOLOGY","('SCIE',)","5,675","3.1","Q3","0.81","31.20" +"Journal of Cancer Survivorship","1932-2259","1932-2267","('ONCOLOGY', 'SOCIAL ISSUES')","('SCIE', 'SSCI')","5,070","3.1","('Q2', 'Q1')","0.81","30.83" +"Neurocritical Care","1541-6933","1556-0961","('CLINICAL NEUROLOGY', 'CRITICAL CARE MEDICINE')","('SCIE', 'SCIE')","6,439","3.1","('Q2', 'Q2')","0.81","23.48" +"ADDICTION BIOLOGY","1355-6215","1369-1600","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'SUBSTANCE ABUSE')","('SCIE', 'SCIE')","4,722","3.1","('Q3', 'Q2')","0.80","31.93" +"CARDIOVASCULAR DRUGS AND THERAPY","0920-3206","1573-7241","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","3,282","3.1","('Q2', 'Q2')","0.80","26.52" +"Cardiovascular Intervention and Therapeutics","1868-4300","1868-4297","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","894","3.1","Q2","0.80","27.48" +"INFRARED PHYSICS & TECHNOLOGY","1350-4495","1879-0275","('INSTRUMENTS & INSTRUMENTATION', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","9,803","3.1","('Q2', 'Q2', 'Q2')","0.80","4.48" +"Journal of Neurorestoratology","2324-2426","2324-2426","CLINICAL NEUROLOGY","('ESCI',)","349","3.1","Q2","0.79","98.48" +"CIRCULATION JOURNAL","1346-9843","1347-4820","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","10,183","3.1","Q2","0.78","99.79" +"HUMAN MOLECULAR GENETICS","0964-6906","1460-2083","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","35,692","3.1","('Q3', 'Q2')","0.78","38.98" +"Neuroscience of Consciousness","","2057-2107","PSYCHOLOGY, BIOLOGICAL","('ESCI',)","691","3.1","Q1","0.78","76.79" +"Inorganics","","2304-6740","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","2,513","3.1","Q2","0.77","99.88" +"CTS-Clinical and Translational Science","1752-8054","1752-8062","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","4,167","3.1","Q2","0.76","77.43" +"Journal of Bridge Engineering","1084-0702","1943-5592","ENGINEERING, CIVIL","('SCIE',)","7,839","3.1","Q2","0.76","1.30" +"Pharmaceutical Medicine","1178-2595","1179-1993","PHARMACOLOGY & PHARMACY","('ESCI',)","453","3.1","Q2","0.76","41.41" +"ACM Transactions on Reconfigurable Technology and Systems","1936-7406","1936-7414","COMPUTER SCIENCE, HARDWARE & ARCHITECTURE","('SCIE',)","735","3.1","Q2","0.75","3.97" +"Bioinspiration & Biomimetics","1748-3182","1748-3190","('ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, BIOMATERIALS', 'ROBOTICS')","('SCIE', 'SCIE', 'SCIE')","4,789","3.1","('Q1', 'Q3', 'Q2')","0.75","28.03" +"GENES CHROMOSOMES & CANCER","1045-2257","1098-2264","('GENETICS & HEREDITY', 'ONCOLOGY')","('SCIE', 'SCIE')","4,917","3.1","('Q2', 'Q2')","0.75","33.92" +"International Journal of Engineering and Geosciences","2548-0960","2548-0960","ENGINEERING, GEOLOGICAL","('ESCI',)","377","3.1","Q2","0.75","100.00" +"International Journal of Mental Health Systems","1752-4458","1752-4458","PSYCHIATRY","('SSCI',)","2,437","3.1","Q2","0.75","99.47" +"MECHATRONICS","0957-4158","0957-4158","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MECHANICAL', 'ROBOTICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,092","3.1","('Q2', 'Q2', 'Q2', 'Q2')","0.75","17.04" +"Bosnian Journal of Basic Medical Sciences","1512-8601","1840-4812","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","1,897","3.1","Q2","0.74","99.44" +"COMPUTER SPEECH AND LANGUAGE","0885-2308","1095-8363","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","2,069","3.1","Q2","0.73","19.79" +"FATIGUE & FRACTURE OF ENGINEERING MATERIALS & STRUCTURES","8756-758X","1460-2695","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","7,793","3.1","('Q2', 'Q2')","0.73","17.25" +"JOURNAL OF CUTANEOUS MEDICINE AND SURGERY","1203-4754","1615-7109","DERMATOLOGY","('SCIE',)","1,795","3.1","Q2","0.73","38.19" +"Buildings","","2075-5309","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","15,008","3.1","('Q2', 'Q2')","0.72","99.85" +"International Transactions in Operational Research","0969-6016","1475-3995","('MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SSCI', 'SCIE')","3,855","3.1","('Q2', 'Q2')","0.72","14.23" +"ORGANIC PROCESS RESEARCH & DEVELOPMENT","1083-6160","1520-586X","('CHEMISTRY, APPLIED', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","10,416","3.1","('Q2', 'Q1')","0.72","9.45" +"BIODEGRADATION","0923-9820","1572-9729","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","2,894","3.1","Q2","0.71","15.83" +"INTERNATIONAL DAIRY JOURNAL","0958-6946","1879-0143","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","10,305","3.1","Q2","0.71","17.66" +"PLANT FOODS FOR HUMAN NUTRITION","0921-9668","1573-9104","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,773","3.1","('Q2', 'Q2', 'Q2', 'Q2')","0.71","12.93" +"Photodiagnosis and Photodynamic Therapy","1572-1000","1873-1597","ONCOLOGY","('SCIE',)","8,900","3.1","Q2","0.70","8.76" +"Accounting and Finance","0810-5391","1467-629X","BUSINESS, FINANCE","('SSCI',)","3,864","3.1","Q2","0.69","25.32" +"International Journal of Machine Learning and Cybernetics","1868-8071","1868-808X","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","5,187","3.1","Q2","0.69","3.75" +"JMIR Medical Informatics","","2291-9694","MEDICAL INFORMATICS","('SCIE',)","3,654","3.1","Q2","0.69","99.29" +"Journal of Diabetes Investigation","2040-1116","2040-1124","ENDOCRINOLOGY & METABOLISM","('SCIE',)","5,255","3.1","Q2","0.69","75.20" +"SOFT COMPUTING","1432-7643","1433-7479","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","20,349","3.1","('Q2', 'Q2')","0.69","5.02" +"Frontiers in Systems Neuroscience","","1662-5137","NEUROSCIENCES","('SCIE',)","6,037","3.1","Q2","0.68","99.44" +"Journal of Bone Oncology","","2212-1374","ONCOLOGY","('SCIE',)","1,243","3.1","Q2","0.68","96.61" +"JOURNAL OF MATERIALS IN CIVIL ENGINEERING","0899-1561","1943-5533","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","21,601","3.1","('Q2', 'Q2', 'Q2')","0.68","1.05" +"Society and Business Review","1746-5680","1746-5699","BUSINESS","('ESCI',)","530","3.1","Q2","0.68","1.00" +"APPLIED BIOCHEMISTRY AND BIOTECHNOLOGY","0273-2289","1559-0291","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE')","14,612","3.1","('Q3', 'Q2')","0.67","4.16" +"International Journal of Sustainable Transportation","1556-8318","1556-8334","('ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'TRANSPORTATION')","('SSCI', 'SSCI', 'SSCI')","2,947","3.1","('Q2', 'Q3', 'Q3')","0.67","23.60" +"Journal of Clinical and Translational Hepatology","2225-0719","2310-8819","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","2,398","3.1","Q2","0.67","98.27" +"SCIENCE AND TECHNOLOGY OF WELDING AND JOINING","1362-1718","1743-2936","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","4,572","3.1","('Q2', 'Q1')","0.67","5.19" +"IEEE Power & Energy Magazine","1540-7977","1558-4216","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","2,103","3.1","Q2","0.66","0.69" +"Journal of Islamic Marketing","1759-0833","1759-0841","BUSINESS","('ESCI',)","2,673","3.1","Q2","0.66","2.03" +"Management Research Review","2040-8269","2040-8277","MANAGEMENT","('ESCI',)","2,978","3.1","Q2","0.66","6.83" +"GLOBAL JOURNAL OF ENVIRONMENTAL SCIENCE AND MANAGEMENT-GJESM","2383-3572","2383-3866","ENVIRONMENTAL SCIENCES","('ESCI',)","997","3.1","Q2","0.65","0.00" +"JOURNAL OF PHYSICS D-APPLIED PHYSICS","0022-3727","1361-6463","PHYSICS, APPLIED","('SCIE',)","47,846","3.1","Q2","0.65","12.04" +"Financial Accountability & Management","0267-4424","1468-0408","BUSINESS, FINANCE","('ESCI',)","988","3.1","Q2","0.64","57.47" +"INTERNATIONAL JOURNAL OF FOOD PROPERTIES","1094-2912","1532-2386","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","9,092","3.1","Q2","0.64","98.71" +"JOURNAL OF INTELLIGENT & ROBOTIC SYSTEMS","0921-0296","1573-0409","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ROBOTICS')","('SCIE', 'SCIE')","6,285","3.1","('Q2', 'Q2')","0.64","19.03" +"Therapeutic Advances in Reproductive Health","","2633-4941","OBSTETRICS & GYNECOLOGY","('ESCI',)","118","3.1","Q1","0.64","77.27" +"Navigation-Journal of the Institute of Navigation","0028-1522","2161-4296","('ENGINEERING, AEROSPACE', 'REMOTE SENSING', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","1,545","3.1","('Q1', 'Q2', 'Q2')","0.63","95.27" +"High Blood Pressure & Cardiovascular Prevention","1120-9879","1179-1985","PERIPHERAL VASCULAR DISEASE","('ESCI',)","1,036","3.1","Q2","0.62","33.96" +"Infectious Agents and Cancer","1750-9378","1750-9378","('IMMUNOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","1,756","3.1","('Q3', 'Q2')","0.62","100.00" +"International Journal of Gender and Entrepreneurship","1756-6266","1756-6274","BUSINESS","('ESCI',)","920","3.1","Q2","0.62","14.29" +"JOURNAL OF THE ELECTROCHEMICAL SOCIETY","0013-4651","1945-7111","('ELECTROCHEMISTRY', 'MATERIALS SCIENCE, COATINGS & FILMS')","('SCIE', 'SCIE')","88,521","3.1","('Q2', 'Q2')","0.62","34.71" +"ORGANIZATIONAL DYNAMICS","0090-2616","1873-3530","('BUSINESS', 'MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI', 'SSCI')","2,852","3.1","('Q2', 'Q2', 'Q2')","0.62","20.75" +"THERMOCHIMICA ACTA","0040-6031","1872-762X","('CHEMISTRY, ANALYTICAL', 'CHEMISTRY, PHYSICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","18,029","3.1","('Q2', 'Q3', 'Q2')","0.62","8.58" +"COMPUTATIONAL MATERIALS SCIENCE","0927-0256","1879-0801","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","32,056","3.1","Q2","0.61","20.28" +"POLYMERS FOR ADVANCED TECHNOLOGIES","1042-7147","1099-1581","POLYMER SCIENCE","('SCIE',)","10,153","3.1","Q2","0.61","4.90" +"AI","","2673-2688","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('ESCI', 'ESCI')","510","3.1","('Q2', 'Q2')","0.60","99.34" +"Construction Innovation-England","1471-4175","1477-0857","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","1,640","3.1","Q2","0.60","9.85" +"Current Cardiology Reports","1523-3782","1534-3170","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","4,535","3.1","Q2","0.60","14.72" +"JOURNAL OF IRON AND STEEL RESEARCH INTERNATIONAL","1006-706X","2210-3988","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","4,931","3.1","Q1","0.60","1.34" +"Physical Review Materials","2475-9953","2475-9953","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","13,730","3.1","Q2","0.60","11.01" +"INTERNATIONAL JOURNAL","0020-7020","2052-465X","INTERNATIONAL RELATIONS","('SSCI',)","1,313","3.1","Q1","0.59","38.83" +"Journal of Tissue Engineering and Regenerative Medicine","1932-6254","1932-7005","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CELL & TISSUE ENGINEERING', 'CELL BIOLOGY', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,164","3.1","('Q2', 'Q3', 'Q3', 'Q2')","0.59","82.04" +"POLYMER BULLETIN","0170-0839","1436-2449","POLYMER SCIENCE","('SCIE',)","12,003","3.1","Q2","0.59","4.53" +"Energy Sources Part B-Economics Planning and Policy","1556-7249","1556-7257","ENERGY & FUELS","('SCIE',)","1,760","3.1","Q3","0.58","10.96" +"Materials","","1996-1944","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","126,110","3.1","('Q3', 'Q2', 'Q1', 'Q2', 'Q2')","0.58","99.59" +"Health and Technology","2190-7188","2190-7196","MEDICAL INFORMATICS","('ESCI',)","1,436","3.1","Q2","0.57","28.28" +"Journal of Cotton Research","2096-5044","2523-3254","PLANT SCIENCES","('ESCI',)","371","3.1","Q2","0.57","100.00" +"Materials for Quantum Technology","2633-4356","2633-4356","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'QUANTUM SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","159","3.1","('Q2', 'Q3')","0.56","100.00" +"Research in Organizational Behavior","0191-3085","0191-3085","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","4,660","3.1","('Q2', 'Q2')","0.56","37.50" +"ILAR JOURNAL","1084-2020","1930-6180","VETERINARY SCIENCES","('SCIE',)","2,239","3.1","Q1","0.55","30.77" +"Journal of Applied Biomaterials & Functional Materials","","2280-8000","('BIOPHYSICS', 'ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE', 'SCIE')","1,248","3.1","('Q2', 'Q2', 'Q3')","0.55","90.74" +"Nanomaterials and Nanotechnology","1847-9804","1847-9804","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","747","3.1","('Q2', 'Q3', 'Q2')","0.55","96.30" +"BioEnergy Research","1939-1234","1939-1242","('ENERGY & FUELS', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","3,844","3.1","('Q3', 'Q2')","0.53","10.68" +"Journal of Social Marketing","2042-6763","2042-6771","BUSINESS","('SSCI',)","669","3.1","Q2","0.53","6.32" +"HONG KONG MEDICAL JOURNAL","1024-2708","1024-2708","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,893","3.1","Q1","0.52","97.98" +"Clinical Pharmacology-Advances and Applications","1179-1438","1179-1438","PHARMACOLOGY & PHARMACY","('ESCI',)","529","3.1","Q2","0.51","100.00" +"CURRENT OPINION IN HEMATOLOGY","1065-6251","1531-7048","HEMATOLOGY","('SCIE',)","2,867","3.1","Q2","0.51","8.59" +"Research and Reports in Tropical Medicine","1179-7282","1179-7282","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","393","3.1","Q2","0.51","92.50" +"HUMAN IMMUNOLOGY","0198-8859","1879-1166","IMMUNOLOGY","('SCIE',)","4,739","3.1","Q3","0.50","18.02" +"Immunity Inflammation and Disease","","2050-4527","IMMUNOLOGY","('SCIE',)","1,816","3.1","Q3","0.50","81.51" +"MOLECULAR BIOLOGY OF THE CELL","1059-1524","1939-4586","CELL BIOLOGY","('SCIE',)","25,797","3.1","Q3","0.49","0.00" +"International Journal of Green Energy","1543-5075","1543-5083","('ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","3,547","3.1","('Q3', 'Q3', 'Q2')","0.48","2.13" +"ChemSystemsChem","","2570-4206","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","405","3.1","Q2","0.47","55.91" +"Carbon Trends","2667-0569","2667-0569","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","751","3.1","Q2","0.46","96.64" +"AIMS Neuroscience","2373-8006","2373-7972","NEUROSCIENCES","('ESCI',)","452","3.1","Q2","0.45","100.00" +"Oncology Reviews","1970-5557","1970-5565","ONCOLOGY","('ESCI',)","663","3.1","Q2","0.45","100.00" +"CHEMICAL RESEARCH IN CHINESE UNIVERSITIES","1005-9040","2210-3171","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","2,717","3.1","Q2","0.43","0.00" +"Functional Composites and Structures","","2631-6331","('MATERIALS SCIENCE, COMPOSITES', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","471","3.1","('Q2', 'Q2')","0.42","2.63" +"Current Infectious Disease Reports","1523-3847","1534-3146","INFECTIOUS DISEASES","('SCIE',)","1,636","3.1","Q2","0.40","18.99" +"Environment and Society-Advances in Research","2150-6779","2150-6787","ENVIRONMENTAL STUDIES","('ESCI',)","549","3.1","Q2","0.38","79.31" +"Frontiers in Energy","2095-1701","2095-1698","ENERGY & FUELS","('SCIE',)","1,492","3.1","Q3","0.35","1.69" +"ANNALES DE DERMATOLOGIE ET DE VENEREOLOGIE","0151-9638","2214-5451","DERMATOLOGY","('SCIE',)","1,200","3.1","Q2","0.34","38.75" +"PHYSICS-USPEKHI","1063-7869","1468-4780","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","5,924","3.1","Q1","0.34","0.00" +"SCIENTIFIC AMERICAN","0036-8733","1946-7087","MULTIDISCIPLINARY SCIENCES","('SCIE',)","8,170","3.1","Q1","0.06","0.00" +"Annual Review of Linguistics","2333-9691","2333-9691","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","732","3.0","('N/A', 'Q1')","3.16","41.03" +"Journal of Legal Analysis","2161-7201","1946-5319","LAW","('SSCI',)","360","3.0","Q1","2.86","96.15" +"European Journal of Teacher Education","0261-9768","1469-5928","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,569","3.0","Q1","2.29","42.76" +"Educacion XX1","1139-613X","2174-5374","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","820","3.0","Q1","2.07","96.84" +"Society and Mental Health","2156-8693","2156-8731","SOCIOLOGY","('SSCI',)","739","3.0","Q1","2.04","13.95" +"SOCIAL PROBLEMS","0037-7791","1533-8533","SOCIOLOGY","('SSCI',)","5,764","3.0","Q1","1.86","6.36" +"TESOL QUARTERLY","0039-8322","1545-7249","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('SSCI', 'SSCI')","5,149","3.0","('Q1', 'Q1')","1.83","34.26" +"ZOOLOGICAL JOURNAL OF THE LINNEAN SOCIETY","0024-4082","1096-3642","ZOOLOGY","('SCIE',)","6,290","3.0","Q1","1.76","16.18" +"Infectious Disease Modelling","","2468-0427","('INFECTIOUS DISEASES', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('ESCI', 'ESCI')","1,528","3.0","('Q2', 'Q1')","1.68","96.06" +"Journal of Human Rights and the Environment","1759-7188","1759-7196","('ENVIRONMENTAL STUDIES', 'LAW')","('ESCI', 'ESCI')","297","3.0","('Q2', 'Q1')","1.65","2.44" +"Technology Knowledge and Learning","2211-1662","2211-1670","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,316","3.0","Q1","1.65","29.95" +"QUARTERLY JOURNAL OF THE ROYAL METEOROLOGICAL SOCIETY","0035-9009","1477-870X","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","22,221","3.0","Q2","1.57","44.65" +"International Journal of Social Research Methodology","1364-5579","1464-5300","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","7,120","3.0","Q1","1.56","45.60" +"Health Economics Policy and Law","1744-1331","1744-134X","HEALTH POLICY & SERVICES","('SSCI',)","831","3.0","Q2","1.55","56.73" +"SIAM JOURNAL ON SCIENTIFIC COMPUTING","1064-8275","1095-7197","MATHEMATICS, APPLIED","('SCIE',)","16,271","3.0","Q1","1.55","1.36" +"Chinese Journal of International Politics","1750-8916","1750-8924","INTERNATIONAL RELATIONS","('SSCI',)","854","3.0","Q1","1.51","22.95" +"JOURNAL OF THE AMERICAN STATISTICAL ASSOCIATION","0162-1459","1537-274X","STATISTICS & PROBABILITY","('SCIE',)","45,232","3.0","Q1","1.51","17.59" +"ANGLE ORTHODONTIST","0003-3219","1945-7103","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","8,841","3.0","Q1","1.50","88.21" +"GIFTED CHILD QUARTERLY","0016-9862","1934-9041","('EDUCATION, SPECIAL', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","1,395","3.0","('Q1', 'Q2')","1.49","8.16" +"Aesthetic Surgery Journal","1090-820X","1527-330X","SURGERY","('SCIE',)","7,392","3.0","Q1","1.48","12.58" +"EVALUATION REVIEW","0193-841X","1552-3926","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","1,359","3.0","Q1","1.47","7.48" +"EXPERIMENTAL EYE RESEARCH","0014-4835","1096-0007","OPHTHALMOLOGY","('SCIE',)","15,576","3.0","Q1","1.46","25.74" +"EUROPEAN JOURNAL OF PEDIATRICS","0340-6199","1432-1076","PEDIATRICS","('SCIE',)","11,061","3.0","Q1","1.43","37.62" +"JOURNAL OF THE LEARNING SCIENCES","1050-8406","1532-7809","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","2,948","3.0","('Q1', 'Q2')","1.43","33.33" +"BRITISH EDUCATIONAL RESEARCH JOURNAL","0141-1926","1469-3518","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,659","3.0","Q1","1.42","55.75" +"Nursing in Critical Care","1362-1017","1478-5153","NURSING","('SCIE', 'SSCI')","1,837","3.0","Q1","1.42","28.28" +"PERMAFROST AND PERIGLACIAL PROCESSES","1045-6740","1099-1530","('GEOGRAPHY, PHYSICAL', 'GEOLOGY')","('SCIE', 'SCIE')","2,873","3.0","('Q2', 'Q1')","1.42","28.28" +"Swiss Journal of Palaeontology","1664-2376","1664-2384","PALEONTOLOGY","('SCIE',)","392","3.0","Q1","1.42","100.00" +"ADVANCES IN HEALTH SCIENCES EDUCATION","1382-4996","1573-1677","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES', 'HEALTH CARE SCIENCES & SERVICES')","('SSCI', 'SCIE', 'SCIE')","4,121","3.0","('Q1', 'Q1', 'Q2')","1.40","45.06" +"Porcine Health Management","","2055-5660","VETERINARY SCIENCES","('SCIE',)","1,022","3.0","Q1","1.40","100.00" +"EVOLUTION AND HUMAN BEHAVIOR","1090-5138","1879-0607","('BEHAVIORAL SCIENCES', 'PSYCHOLOGY, BIOLOGICAL', 'SOCIAL SCIENCES, BIOMEDICAL')","('SCIE', 'SSCI', 'SSCI')","4,846","3.0","('Q1', 'Q1', 'Q1')","1.39","28.05" +"HEALTH COMMUNICATION","1041-0236","1532-7027","('COMMUNICATION', 'HEALTH POLICY & SERVICES')","('SSCI', 'SSCI')","8,268","3.0","('Q1', 'Q2')","1.39","8.38" +"Socius","2378-0231","2378-0231","SOCIOLOGY","('ESCI',)","1,970","3.0","Q1","1.39","92.86" +"Scandinavian Journal of Trauma Resuscitation & Emergency Medicine","1757-7241","1757-7241","EMERGENCY MEDICINE","('SCIE',)","3,759","3.0","Q1","1.38","100.00" +"Geopolitics","1465-0045","1557-3028","('GEOGRAPHY', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","2,510","3.0","('Q1', 'Q1')","1.36","28.00" +"RESEARCH ON LANGUAGE AND SOCIAL INTERACTION","0835-1813","1532-7973","('COMMUNICATION', 'LINGUISTICS', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI', 'SSCI')","2,010","3.0","('Q1', 'Q1', 'Q2')","1.35","43.64" +"Journal of Orthopaedics and Traumatology","1590-9921","1590-9999","ORTHOPEDICS","('SCIE',)","1,593","3.0","Q1","1.32","99.43" +"Journal of Primary Care and Community Health","2150-1319","2150-1327","PRIMARY HEALTH CARE","('ESCI',)","2,501","3.0","Q1","1.30","94.30" +"JOURNAL OF SCIENCE AND MEDICINE IN SPORT","1440-2440","1878-1861","SPORT SCIENCES","('SCIE',)","9,055","3.0","Q1","1.30","24.63" +"SEX ROLES","0360-0025","1573-2762","('PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, SOCIAL', 'WOMENS STUDIES')","('SSCI', 'SSCI', 'SSCI')","10,346","3.0","('Q2', 'Q2', 'Q1')","1.30","27.40" +"Computer Science Education","0899-3408","1744-5175","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,007","3.0","Q1","1.29","21.25" +"MINNESOTA LAW REVIEW","0026-5535","0026-5535","LAW","('SSCI',)","1,175","3.0","Q1","1.24","0.00" +"Health & Justice","","2194-7899","('CRIMINOLOGY & PENOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","624","3.0","('Q1', 'Q2')","1.21","100.00" +"INFORMATION SYSTEMS MANAGEMENT","1058-0530","1934-8703","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","1,340","3.0","Q2","1.21","16.95" +"Academic Pediatrics","1876-2859","1876-2867","PEDIATRICS","('SCIE',)","5,051","3.0","Q1","1.19","13.31" +"DERMATOLOGY","1018-8665","1421-9832","DERMATOLOGY","('SCIE',)","5,970","3.0","Q2","1.18","25.76" +"ENVIRONMENTAL AND ECOLOGICAL STATISTICS","1352-8505","1573-3009","('ENVIRONMENTAL SCIENCES', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","1,136","3.0","('Q2', 'Q1', 'Q1')","1.18","23.08" +"EPJ Data Science","","2193-1127","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SCIE', 'SSCI')","1,437","3.0","('Q1', 'Q1')","1.18","100.00" +"Revista Latina de Comunicacion Social","1138-5820","1138-5820","COMMUNICATION","('ESCI',)","1,092","3.0","Q1","1.17","96.03" +"JOURNAL OF WOMENS HEALTH","1540-9996","1931-843X","('MEDICINE, GENERAL & INTERNAL', 'OBSTETRICS & GYNECOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'WOMENS STUDIES')","('SCIE', 'SCIE', 'SCIE, SSCI', 'SSCI')","8,678","3.0","('Q1', 'Q1', 'Q2', 'Q1')","1.16","7.47" +"REGULATORY TOXICOLOGY AND PHARMACOLOGY","0273-2300","1096-0295","('MEDICINE, LEGAL', 'PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","9,087","3.0","('Q1', 'Q2', 'Q2')","1.16","48.09" +"AQUACULTURE NUTRITION","1353-5773","1365-2095","FISHERIES","('SCIE',)","6,936","3.0","Q1","1.14","78.82" +"Men and Masculinities","1097-184X","1552-6828","SOCIOLOGY","('SSCI',)","1,790","3.0","Q1","1.14","28.18" +"PLACENTA","0143-4004","1532-3102","('DEVELOPMENTAL BIOLOGY', 'OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","10,221","3.0","('Q2', 'Q1', 'Q2')","1.14","27.39" +"ASIAN JOURNAL OF ANDROLOGY","1008-682X","1745-7262","('ANDROLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","4,579","3.0","('Q2', 'Q1')","1.13","96.70" +"IEEE Transactions on Sustainable Computing","2377-3782","2377-3782","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","949","3.0","('Q2', 'Q2', 'Q2')","1.12","12.90" +"SOCIAL SCIENCE COMPUTER REVIEW","0894-4393","1552-8286","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'INFORMATION SCIENCE & LIBRARY SCIENCE', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SCIE', 'SSCI', 'SSCI')","3,340","3.0","('Q2', 'Q1', 'Q1')","1.12","20.22" +"ACTA OPHTHALMOLOGICA","1755-375X","1755-3768","OPHTHALMOLOGY","('SCIE',)","11,491","3.0","Q1","1.11","42.33" +"CLINICAL NEUROPSYCHOLOGIST","1385-4046","1744-4144","('CLINICAL NEUROLOGY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SCIE', 'SSCI')","4,538","3.0","('Q2', 'Q1', 'Q1')","1.11","10.37" +"Current Problems in Pediatric and Adolescent Health Care","1538-5442","1538-3199","PEDIATRICS","('SCIE',)","1,292","3.0","Q1","1.10","5.77" +"Emotion Review","1754-0739","1754-0747","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","3,701","3.0","Q1","1.09","32.47" +"INTERNATIONAL JOURNAL OF SPORT NUTRITION AND EXERCISE METABOLISM","1526-484X","1543-2742","('NUTRITION & DIETETICS', 'SPORT SCIENCES')","('SCIE', 'SCIE')","3,548","3.0","('Q2', 'Q1')","1.09","4.08" +"International Journal of Sustainability in Higher Education","1467-6370","1758-6739","('EDUCATION & EDUCATIONAL RESEARCH', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SSCI', 'SSCI')","3,321","3.0","('Q1', 'Q3')","1.09","14.61" +"Journal of Public Budgeting Accounting & Financial Management","1096-3367","1945-1814","('BUSINESS, FINANCE', 'PUBLIC ADMINISTRATION')","('ESCI', 'ESCI')","798","3.0","('Q2', 'Q1')","1.09","29.50" +"Personality Disorders-Theory Research and Treatment","1949-2715","1949-2723","PSYCHOLOGY, CLINICAL","('SSCI',)","2,222","3.0","Q1","1.09","2.91" +"FORESTRY","0015-752X","1464-3626","FORESTRY","('SCIE',)","3,270","3.0","Q1","1.08","32.26" +"Parasites & Vectors","1756-3305","1756-3305","('PARASITOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","20,196","3.0","('Q1', 'Q1')","1.08","99.87" +"RISK ANALYSIS","0272-4332","1539-6924","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SCIE', 'SSCI', 'SSCI')","11,015","3.0","('Q1', 'Q2', 'Q1')","1.08","32.26" +"NICOTINE & TOBACCO RESEARCH","1462-2203","1469-994X","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SUBSTANCE ABUSE')","('SCIE, SSCI', 'SCIE, SSCI')","9,930","3.0","('Q2', 'Q2')","1.07","26.61" +"Schizophrenia","","2754-6993","PSYCHIATRY","('SCIE',)","420","3.0","Q2","1.06","97.56" +"BMC Medical Ethics","1472-6939","1472-6939","('ETHICS', 'MEDICAL ETHICS', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SCIE', 'SSCI')","3,514","3.0","('Q1', 'Q1', 'Q1')","1.05","100.00" +"EJNMMI Physics","2197-7364","2197-7364","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,561","3.0","Q2","1.05","100.00" +"IEEE TRANSACTIONS ON ULTRASONICS FERROELECTRICS AND FREQUENCY CONTROL","0885-3010","1525-8955","('ACOUSTICS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","12,094","3.0","('Q1', 'Q2')","1.05","14.66" +"INFORMATION SOCIETY","0197-2243","1087-6537","('COMMUNICATION', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SSCI', 'SSCI')","1,731","3.0","('Q1', 'Q1')","1.05","41.67" +"JOURNAL OF ADOLESCENCE","0140-1971","1095-9254","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","8,843","3.0","Q2","1.05","28.99" +"Journal of Personalized Medicine","","2075-4426","('HEALTH CARE SCIENCES & SERVICES', 'MEDICINE, GENERAL & INTERNAL')","('SCIE', 'SCIE')","12,728","3.0","('Q2', 'Q1')","1.05","99.66" +"Frontiers in Public Health","","2296-2565","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","38,780","3.0","Q2","1.03","99.67" +"Environment and Planning E-Nature and Space","2514-8486","2514-8494","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY')","('SSCI', 'SSCI')","1,540","3.0","('Q2', 'Q1')","1.02","33.42" +"JOURNAL OF NEURORADIOLOGY","0150-9861","1773-0406","('CLINICAL NEUROLOGY', 'NEUROIMAGING', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","1,538","3.0","('Q2', 'Q2', 'Q2')","1.02","25.57" +"RENAL FAILURE","0886-022X","1525-6049","UROLOGY & NEPHROLOGY","('SCIE',)","4,869","3.0","Q1","1.02","97.78" +"PROBABILISTIC ENGINEERING MECHANICS","0266-8920","1878-4275","('ENGINEERING, MECHANICAL', 'MECHANICS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","3,571","3.0","('Q2', 'Q2', 'Q1')","1.01","15.81" +"Fire-Switzerland","2571-6255","2571-6255","('ECOLOGY', 'FORESTRY')","('SCIE', 'SCIE')","2,057","3.0","('Q2', 'Q1')","1.00","99.74" +"SAUDI PHARMACEUTICAL JOURNAL","1319-0164","2213-7475","PHARMACOLOGY & PHARMACY","('SCIE',)","6,152","3.0","Q2","1.00","95.77" +"STRESS AND HEALTH","1532-3005","1532-2998","('PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, APPLIED')","('SCIE, SSCI', 'SCIE', 'SSCI')","3,823","3.0","('Q2', 'Q1', 'Q2')","1.00","32.59" +"BASIC AND APPLIED ECOLOGY","1439-1791","1618-0089","ECOLOGY","('SCIE',)","4,196","3.0","Q2","0.98","70.42" +"COGNITIVE PSYCHOLOGY","0010-0285","1095-5623","('PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI')","7,684","3.0","('Q1', 'Q1')","0.98","48.81" +"DEVELOPMENT AND CHANGE","0012-155X","1467-7660","DEVELOPMENT STUDIES","('SSCI',)","4,241","3.0","Q1","0.98","41.33" +"JOURNAL OF KOREAN MEDICAL SCIENCE","1011-8934","1598-6357","MEDICINE, GENERAL & INTERNAL","('SCIE',)","9,328","3.0","Q1","0.98","98.98" +"Turkish Journal of Agriculture and Forestry","1300-011X","1303-6173","AGRONOMY","('SCIE',)","2,405","3.0","Q1","0.98","0.42" +"Motivation Science","2333-8113","2333-8121","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","749","3.0","Q1","0.96","2.13" +"CANADIAN GEOTECHNICAL JOURNAL","0008-3674","1208-6010","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","17,978","3.0","('Q2', 'Q2')","0.94","5.20" +"INFORMATION SYSTEMS","0306-4379","1873-6076","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","2,716","3.0","Q2","0.94","22.77" +"MAGNETIC RESONANCE IN MEDICINE","0740-3194","1522-2594","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","29,548","3.0","Q2","0.94","38.81" +"Competition & Change","1024-5294","1477-2221","('BUSINESS', 'ECONOMICS', 'GEOGRAPHY')","('SSCI', 'SSCI', 'SSCI')","1,032","3.0","('Q2', 'Q1', 'Q1')","0.93","49.51" +"European Journal of Investigation in Health Psychology and Education","","2254-9625","PSYCHOLOGY, CLINICAL","('ESCI',)","1,150","3.0","Q1","0.93","99.77" +"Journal of Atherosclerosis and Thrombosis","1340-3478","1880-3873","PERIPHERAL VASCULAR DISEASE","('SCIE',)","4,770","3.0","Q2","0.93","99.77" +"ALCOHOL-CLINICAL AND EXPERIMENTAL RESEARCH","","2993-7175","SUBSTANCE ABUSE","('SCIE',)","13,544","3.0","Q2","0.92","23.58" +"Environmental Communication-A Journal of Nature and Culture","1752-4032","1752-4040","('COMMUNICATION', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","2,266","3.0","('Q1', 'Q2')","0.92","22.50" +"Journal of Clinical Medicine","","2077-0383","MEDICINE, GENERAL & INTERNAL","('SCIE',)","75,455","3.0","Q1","0.92","99.73" +"PREVENTION SCIENCE","1389-4986","1573-6695","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","5,579","3.0","Q2","0.92","29.12" +"Frontiers in Oral Health","","2673-4842","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","728","3.0","Q1","0.91","99.68" +"HEALTH EXPECTATIONS","1369-6513","1369-7625","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SCIE, SSCI')","6,153","3.0","('Q2', 'Q2', 'Q2')","0.91","70.27" +"International Journal of Health Geographics","1476-072X","1476-072X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","2,629","3.0","Q2","0.91","100.00" +"JOURNAL OF HEREDITY","0022-1503","1465-7333","('EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","5,778","3.0","('Q2', 'Q2')","0.91","43.11" +"Mineral Economics","2191-2203","2191-2211","ECONOMICS","('ESCI',)","622","3.0","Q1","0.90","43.28" +"Neurology-Genetics","2376-7839","2376-7839","('CLINICAL NEUROLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","1,618","3.0","('Q2', 'Q2')","0.90","99.42" +"VISUAL COMPUTER","0178-2789","1432-2315","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","5,449","3.0","Q2","0.90","8.58" +"COMPUTER-AIDED DESIGN","0010-4485","1879-2685","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","6,253","3.0","Q2","0.89","25.63" +"Journal of Plant Ecology","1752-9921","1752-993X","('ECOLOGY', 'FORESTRY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","2,875","3.0","('Q2', 'Q1', 'Q2')","0.89","67.24" +"NEW LEFT REVIEW","0028-6060","2044-0480","('POLITICAL SCIENCE', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","3,218","3.0","('Q1', 'Q1')","0.89","0.00" +"INFECTION CONTROL AND HOSPITAL EPIDEMIOLOGY","0899-823X","1559-6834","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","10,792","3.0","('Q2', 'Q2')","0.88","37.12" +"Journal of Pharmacological Sciences","1347-8613","1347-8648","PHARMACOLOGY & PHARMACY","('SCIE',)","4,726","3.0","Q2","0.88","95.45" +"MARINE ENVIRONMENTAL RESEARCH","0141-1136","1879-0291","('ENVIRONMENTAL SCIENCES', 'MARINE & FRESHWATER BIOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","9,277","3.0","('Q2', 'Q1', 'Q2')","0.88","26.04" +"MOLECULAR IMAGING AND BIOLOGY","1536-1632","1860-2002","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","3,173","3.0","Q2","0.88","35.99" +"Diagnostics","","2075-4418","MEDICINE, GENERAL & INTERNAL","('SCIE',)","24,805","3.0","Q1","0.87","99.76" +"Geophysics","0016-8033","1942-2156","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","32,312","3.0","Q1","0.87","2.86" +"INTERNATIONAL JOURNAL OF PRESSURE VESSELS AND PIPING","0308-0161","1879-3541","('ENGINEERING, MECHANICAL', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","5,679","3.0","('Q2', 'Q1')","0.87","6.08" +"JOURNAL OF BIOMEDICAL OPTICS","1083-3668","1560-2281","('BIOCHEMICAL RESEARCH METHODS', 'OPTICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","13,480","3.0","('Q2', 'Q2', 'Q2')","0.87","98.98" +"INVESTIGATIONAL NEW DRUGS","0167-6997","1573-0646","('ONCOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","5,387","3.0","('Q2', 'Q2')","0.86","30.14" +"Nature and Science of Sleep","1179-1608","1179-1608","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","2,754","3.0","('Q2', 'Q2')","0.85","97.31" +"Current Epidemiology Reports","","2196-2995","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","1,488","3.0","Q2","0.84","34.21" +"Eating Disorders","1064-0266","1532-530X","('PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE, SSCI', 'SCIE', 'SSCI')","1,698","3.0","('Q2', 'Q1', 'Q1')","0.84","7.56" +"International Journal of Management Science and Engineering Management","1750-9653","1750-9661","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","738","3.0","Q2","0.84","3.09" +"International Journal of Structural Stability and Dynamics","0219-4554","1793-6764","('ENGINEERING, CIVIL', 'ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","4,892","3.0","('Q2', 'Q2', 'Q2')","0.84","1.06" +"MULTIMEDIA TOOLS AND APPLICATIONS","1380-7501","1573-7721","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","32,410","3.0","('Q2', 'Q2', 'Q2', 'Q2')","0.84","6.27" +"PUBLIC HEALTH NUTRITION","1368-9800","1475-2727","('NUTRITION & DIETETICS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","18,490","3.0","('Q2', 'Q2')","0.84","59.09" +"ACM Transactions on Privacy and Security","2471-2566","2471-2574","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","553","3.0","Q2","0.83","0.00" +"Annals of Coloproctology","2287-9714","2287-9722","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('ESCI', 'ESCI')","947","3.0","('Q2', 'Q1')","0.83","99.49" +"DNA REPAIR","1568-7864","1568-7856","('GENETICS & HEREDITY', 'TOXICOLOGY')","('SCIE', 'SCIE')","5,924","3.0","('Q2', 'Q2')","0.83","39.46" +"HUMAN AND ECOLOGICAL RISK ASSESSMENT","1080-7039","1549-7860","ENVIRONMENTAL SCIENCES","('SCIE',)","4,861","3.0","Q2","0.83","2.70" +"JOURNAL OF RHEOLOGY","0148-6055","1520-8516","MECHANICS","('SCIE',)","7,025","3.0","Q2","0.83","23.02" +"Nondestructive Testing and Evaluation","1058-9759","1477-2671","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('SCIE',)","1,196","3.0","Q2","0.83","6.79" +"Pervasive and Mobile Computing","1574-1192","1873-1589","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","2,238","3.0","('Q2', 'Q2')","0.83","27.94" +"PHYSICS AND CHEMISTRY OF THE EARTH","1474-7065","1873-5193","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","6,071","3.0","('Q2', 'Q2', 'Q2')","0.83","8.23" +"PUBLIC HEALTH REPORTS","0033-3549","1468-2877","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","7,817","3.0","Q2","0.83","9.81" +"Substance Abuse Treatment Prevention and Policy","","1747-597X","SUBSTANCE ABUSE","('SSCI',)","2,430","3.0","Q2","0.83","100.00" +"WORLD JOURNAL OF BIOLOGICAL PSYCHIATRY","1562-2975","1814-1412","PSYCHIATRY","('SCIE',)","2,814","3.0","Q2","0.83","18.79" +"ANNALS OF THE ENTOMOLOGICAL SOCIETY OF AMERICA","0013-8746","1938-2901","ENTOMOLOGY","('SCIE',)","5,906","3.0","Q1","0.82","22.38" +"IEEE Journal of Electromagnetics RF and Microwaves in Medicine and Biology","2469-7257","2469-7249","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","725","3.0","Q2","0.82","12.28" +"Progress in Physical Geography-Earth and Environment","0309-1333","1477-0296","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","4,388","3.0","('Q2', 'Q2')","0.82","17.32" +"Tourism and Hospitality Research","1467-3584","1742-9692","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,590","3.0","Q2","0.82","18.97" +"IEEE Transactions on Signal and Information Processing over Networks","2373-776X","2373-776X","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","1,409","3.0","('Q2', 'Q2')","0.81","12.32" +"JOURNAL OF COMPUTER-AIDED MOLECULAR DESIGN","0920-654X","1573-4951","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE', 'SCIE')","5,615","3.0","('Q3', 'Q2', 'Q2')","0.81","33.72" +"AEU-INTERNATIONAL JOURNAL OF ELECTRONICS AND COMMUNICATIONS","1434-8411","1618-0399","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","7,354","3.0","('Q2', 'Q2')","0.80","3.87" +"EARTH PLANETS AND SPACE","","1880-5981","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","6,727","3.0","Q2","0.80","100.00" +"Futures","0016-3287","1873-6378","('ECONOMICS', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI')","5,771","3.0","('Q1', 'Q2')","0.80","45.93" +"IEEE-ACM TRANSACTIONS ON NETWORKING","1063-6692","1558-2566","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,355","3.0","('Q2', 'Q2', 'Q2', 'Q2')","0.80","13.67" +"INTERNATIONAL JOURNAL OF HYPERTHERMIA","0265-6736","1464-5157","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","6,082","3.0","('Q2', 'Q2')","0.80","97.52" +"MOLECULAR CARCINOGENESIS","0899-1987","1098-2744","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","6,090","3.0","('Q3', 'Q2')","0.80","13.47" +"PET Clinics","1556-8598","1559-7814","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","940","3.0","Q2","0.80","5.81" +"Annals of Physics","0003-4916","1096-035X","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","15,722","3.0","Q2","0.79","15.48" +"International Journal of Tourism Cities","2056-5607","2056-5615","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,142","3.0","Q2","0.79","9.52" +"MARINE CHEMISTRY","0304-4203","1872-7581","('CHEMISTRY, MULTIDISCIPLINARY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","9,699","3.0","('Q2', 'Q1')","0.79","37.50" +"DRUG AND ALCOHOL REVIEW","0959-5236","1465-3362","SUBSTANCE ABUSE","('SSCI',)","4,521","3.0","Q2","0.78","48.18" +"Global Heart","2211-8160","2211-8179","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","2,290","3.0","Q2","0.78","98.65" +"JOURNAL OF NUCLEAR CARDIOLOGY","1071-3581","1532-6551","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","4,777","3.0","('Q2', 'Q2')","0.78","21.52" +"CONTEMPORARY PHYSICS","0010-7514","1366-5812","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","2,255","3.0","Q2","0.77","0.00" +"JOURNAL OF THERMAL ANALYSIS AND CALORIMETRY","1388-6150","1588-2926","('CHEMISTRY, ANALYTICAL', 'CHEMISTRY, PHYSICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","30,770","3.0","('Q2', 'Q3', 'Q2')","0.77","10.89" +"Biomechanics and Modeling in Mechanobiology","1617-7959","1617-7940","('BIOPHYSICS', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","4,703","3.0","('Q2', 'Q3')","0.76","40.37" +"BRITISH JOURNAL OF NUTRITION","0007-1145","1475-2662","NUTRITION & DIETETICS","('SCIE',)","28,444","3.0","Q2","0.76","29.31" +"INTERNATIONAL JOURNAL OF IMMUNOPATHOLOGY AND PHARMACOLOGY","0394-6320","2058-7384","('IMMUNOLOGY', 'PATHOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","3,009","3.0","('Q3', 'Q2', 'Q2')","0.76","93.42" +"JOURNAL OF WATER RESOURCES PLANNING AND MANAGEMENT","0733-9496","1943-5452","('ENGINEERING, CIVIL', 'WATER RESOURCES')","('SCIE', 'SCIE')","6,000","3.0","('Q2', 'Q2')","0.76","11.81" +"CURRENT OPINION IN OPHTHALMOLOGY","1040-8738","1531-7021","OPHTHALMOLOGY","('SCIE',)","4,330","3.0","Q1","0.75","5.39" +"Microbial Risk Analysis","2352-3522","2352-3530","('ENVIRONMENTAL SCIENCES', 'FOOD SCIENCE & TECHNOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","428","3.0","('Q2', 'Q2', 'Q2')","0.75","30.77" +"Semantic Web","1570-0844","2210-4968","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","1,408","3.0","('Q2', 'Q2', 'Q2')","0.75","75.00" +"SMALL GROUP RESEARCH","1046-4964","1552-8278","('MANAGEMENT', 'PSYCHOLOGY, APPLIED', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI', 'SSCI')","2,067","3.0","('Q2', 'Q2', 'Q2')","0.75","25.58" +"CURRENT PROBLEMS IN CARDIOLOGY","0146-2806","1535-6280","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","3,006","3.0","Q2","0.74","10.59" +"Epidemics","1755-4365","1878-0067","INFECTIOUS DISEASES","('SCIE',)","1,499","3.0","Q2","0.74","90.68" +"INTERNATIONAL JOURNAL OF BIOMETEOROLOGY","0020-7128","1432-1254","('BIOPHYSICS', 'ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","9,281","3.0","('Q2', 'Q2', 'Q2', 'Q2')","0.74","20.77" +"Journal of Flood Risk Management","1753-318X","1753-318X","('ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE')","2,590","3.0","('Q2', 'Q2')","0.74","78.02" +"Administrative Sciences","","2076-3387","MANAGEMENT","('ESCI',)","2,346","3.0","Q2","0.73","99.33" +"BREAST CANCER RESEARCH AND TREATMENT","0167-6806","1573-7217","ONCOLOGY","('SCIE',)","22,703","3.0","Q2","0.73","31.77" +"International Journal of Economic Sciences","","1804-9796","ECONOMICS","('ESCI',)","233","3.0","Q1","0.73","0.00" +"INTERNATIONAL JOURNAL OF IMAGING SYSTEMS AND TECHNOLOGY","0899-9457","1098-1098","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'OPTICS')","('SCIE', 'SCIE', 'SCIE')","2,271","3.0","('Q2', 'Q2', 'Q2')","0.73","3.99" +"Biomolecules & Therapeutics","1976-9148","2005-4483","PHARMACOLOGY & PHARMACY","('SCIE',)","2,620","3.0","Q2","0.72","81.86" +"ENDOCRINE","1355-008X","1559-0100","ENDOCRINOLOGY & METABOLISM","('SCIE',)","10,147","3.0","Q2","0.72","24.97" +"Epigenomics","1750-1911","1750-192X","GENETICS & HEREDITY","('SCIE',)","3,705","3.0","Q2","0.72","18.68" +"Journal of Heritage Tourism","1743-873X","1747-6631","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,472","3.0","Q2","0.72","25.23" +"BIODIVERSITY AND CONSERVATION","0960-3115","1572-9710","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE')","13,592","3.0","('Q1', 'Q2', 'Q2')","0.71","41.36" +"Clinical and Translational Gastroenterology","","2155-384X","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,211","3.0","Q2","0.71","95.04" +"Journal of Diabetes","1753-0393","1753-0407","ENDOCRINOLOGY & METABOLISM","('SCIE',)","2,714","3.0","Q2","0.71","75.10" +"JOURNAL OF MAMMARY GLAND BIOLOGY AND NEOPLASIA","1083-3021","1573-7039","('ENDOCRINOLOGY & METABOLISM', 'ONCOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,740","3.0","('Q2', 'Q2', 'Q2')","0.71","67.65" +"Journal of Organizational Effectiveness-People and Performance","2051-6614","2051-6622","MANAGEMENT","('ESCI',)","782","3.0","Q2","0.71","11.20" +"Journal of the Endocrine Society","","2472-1972","ENDOCRINOLOGY & METABOLISM","('ESCI',)","3,346","3.0","Q2","0.71","94.17" +"Korean Circulation Journal","1738-5520","1738-5555","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,860","3.0","Q2","0.71","0.59" +"PHYTOCHEMICAL ANALYSIS","0958-0344","1099-1565","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","3,754","3.0","('Q2', 'Q2', 'Q2')","0.71","9.67" +"WEATHER AND FORECASTING","0882-8156","1520-0434","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","7,962","3.0","Q2","0.71","3.90" +"Archives of Medical Science","1734-1922","1896-9151","MEDICINE, GENERAL & INTERNAL","('SCIE',)","4,899","3.0","Q1","0.70","98.39" +"Beneficial Microbes","1876-2883","1876-2891","('MICROBIOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","3,001","3.0","('Q2', 'Q2')","0.70","5.60" +"Climate","","2225-1154","METEOROLOGY & ATMOSPHERIC SCIENCES","('ESCI',)","3,443","3.0","Q2","0.70","98.70" +"CLINICAL TOXICOLOGY","1556-3650","1556-9519","TOXICOLOGY","('SCIE',)","4,698","3.0","Q2","0.70","12.77" +"DIGESTION","0012-2823","1421-9867","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,314","3.0","Q2","0.70","25.00" +"Journal of Geriatric Oncology","1879-4068","1879-4076","('GERIATRICS & GERONTOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","3,202","3.0","('Q3', 'Q2')","0.70","22.13" +"Journal of Global Information Technology Management","1097-198X","2333-6846","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","547","3.0","Q1","0.70","2.78" +"JOURNAL OF THE ATMOSPHERIC SCIENCES","0022-4928","1520-0469","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","27,637","3.0","Q2","0.70","2.30" +"Therapeutic Delivery","2041-5990","2041-6008","PHARMACOLOGY & PHARMACY","('ESCI',)","2,566","3.0","Q2","0.70","9.40" +"JOURNAL OF CHANGE MANAGEMENT","1469-7017","1479-1811","MANAGEMENT","('ESCI',)","988","3.0","Q2","0.69","33.82" +"Knowledge and Process Management","1092-4604","1099-1441","MANAGEMENT","('ESCI',)","848","3.0","Q2","0.69","18.00" +"Unmanned Systems","2301-3850","2301-3869","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","680","3.0","Q2","0.69","2.67" +"CRITICAL CARE CLINICS","0749-0704","1557-8232","CRITICAL CARE MEDICINE","('SCIE',)","2,524","3.0","Q2","0.68","5.36" +"Food Quality and Safety","2399-1399","2399-1402","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,174","3.0","Q2","0.68","98.76" +"JOURNAL OF MICROENCAPSULATION","0265-2048","1464-5246","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","3,255","3.0","('Q2', 'Q2', 'Q2')","0.68","0.77" +"Environmental Policy and Governance","1756-932X","1756-9338","ENVIRONMENTAL STUDIES","('SSCI',)","1,606","3.0","Q2","0.67","55.32" +"Water","","2073-4441","('ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE')","62,231","3.0","('Q2', 'Q2')","0.67","99.53" +"EUROPEAN FOOD RESEARCH AND TECHNOLOGY","1438-2377","1438-2385","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","11,610","3.0","Q2","0.66","29.67" +"VASCULAR MEDICINE","1358-863X","1477-0377","PERIPHERAL VASCULAR DISEASE","('SCIE',)","2,301","3.0","Q2","0.66","20.37" +"ANNALS OF BIOMEDICAL ENGINEERING","0090-6964","1573-9686","ENGINEERING, BIOMEDICAL","('SCIE',)","13,098","3.0","Q3","0.65","25.90" +"ANNALS OF MICROBIOLOGY","1590-4261","1869-2044","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","4,221","3.0","('Q2', 'Q2')","0.65","100.00" +"EXPERT SYSTEMS","0266-4720","1468-0394","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","3,307","3.0","('Q2', 'Q2')","0.65","10.01" +"INTERNATIONAL JOURNAL OF REMOTE SENSING","0143-1161","1366-5901","('IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE')","27,078","3.0","('Q2', 'Q2')","0.65","10.23" +"CLINICAL ENDOCRINOLOGY","0300-0664","1365-2265","ENDOCRINOLOGY & METABOLISM","('SCIE',)","13,634","3.0","Q2","0.64","23.29" +"JOURNAL OF STRUCTURAL BIOLOGY","1047-8477","1095-8657","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CELL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","9,738","3.0","('Q3', 'Q2', 'Q3')","0.64","41.52" +"NEURAL PLASTICITY","2090-5904","1687-5443","NEUROSCIENCES","('SCIE',)","5,923","3.0","Q2","0.64","99.28" +"Structural Concrete","1464-4177","1751-7648","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","5,514","3.0","('Q2', 'Q2')","0.64","19.89" +"TAXON","0040-0262","1996-8175","('EVOLUTIONARY BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","5,420","3.0","('Q2', 'Q2')","0.64","17.18" +"Construction Management and Economics","0144-6193","1466-433X","BUSINESS","('ESCI',)","4,731","3.0","Q2","0.63","44.94" +"ELECTROPHORESIS","0173-0835","1522-2683","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE')","11,250","3.0","('Q2', 'Q2')","0.63","18.85" +"HAEMOPHILIA","1351-8216","1365-2516","HEMATOLOGY","('SCIE',)","6,896","3.0","Q2","0.63","36.29" +"JOURNAL OF CELLULAR BIOCHEMISTRY","0730-2312","1097-4644","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","22,049","3.0","('Q3', 'Q3')","0.63","11.24" +"ANNALS OF HEMATOLOGY","0939-5555","1432-0584","HEMATOLOGY","('SCIE',)","7,971","3.0","Q2","0.62","29.46" +"Expert Opinion On Drug Safety","1474-0338","1744-764X","PHARMACOLOGY & PHARMACY","('SCIE',)","4,898","3.0","Q2","0.62","14.18" +"Integrated Environmental Assessment and Management","1551-3777","1551-3793","('ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('SCIE', 'SCIE')","3,933","3.0","('Q2', 'Q2')","0.62","35.82" +"International Journal of Sports Marketing & Sponsorship","1464-6668","2515-7841","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","1,106","3.0","Q2","0.62","8.00" +"Micromachines","","2072-666X","('CHEMISTRY, ANALYTICAL', 'INSTRUMENTS & INSTRUMENTATION', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","23,746","3.0","('Q2', 'Q2', 'Q3', 'Q2')","0.62","99.70" +"Future Oncology","1479-6694","1744-8301","ONCOLOGY","('SCIE',)","7,745","3.0","Q2","0.61","44.63" +"JTO Clinical and Research Reports","","2666-3643","('ONCOLOGY', 'RESPIRATORY SYSTEM')","('ESCI', 'ESCI')","1,051","3.0","('Q2', 'Q2')","0.61","74.41" +"Medical Gas Research","2045-9912","2045-9912","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","940","3.0","Q2","0.61","0.00" +"AMINO ACIDS","0939-4451","1438-2199","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","10,368","3.0","Q3","0.60","25.64" +"Beverages","2306-5710","2306-5710","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","1,713","3.0","Q2","0.60","99.21" +"Cardiology and Therapy","2193-8261","2193-6544","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","601","3.0","Q2","0.60","99.15" +"International Journal of Pavement Research and Technology","1996-6814","1997-1400","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","2,099","3.0","('Q2', 'Q2', 'Q2')","0.60","4.14" +"Materialia","2589-1529","2589-1529","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","5,156","3.0","Q2","0.60","26.82" +"Purinergic Signalling","1573-9538","1573-9546","NEUROSCIENCES","('SCIE',)","2,141","3.0","Q2","0.59","37.99" +"FEBS LETTERS","0014-5793","1873-3468","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CELL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","40,194","3.0","('Q3', 'Q2', 'Q3')","0.58","33.39" +"Journal of Structural Integrity and Maintenance","2470-5314","2470-5322","ENGINEERING, CIVIL","('ESCI',)","345","3.0","Q2","0.58","12.82" +"Innovation & Management Review","2515-8961","2515-8961","MANAGEMENT","('ESCI',)","347","3.0","Q2","0.57","97.50" +"Vision-The Journal of Business Perspective","0972-2629","2249-5304","('BUSINESS', 'MANAGEMENT')","('ESCI', 'ESCI')","826","3.0","('Q2', 'Q2')","0.57","9.09" +"Cogent Business & Management","2331-1975","2331-1975","BUSINESS","('ESCI',)","4,373","3.0","Q2","0.56","97.74" +"JOURNAL OF ATMOSPHERIC CHEMISTRY","0167-7764","1573-0662","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","1,560","3.0","('Q2', 'Q2')","0.56","14.63" +"JOURNAL OF INTENSIVE CARE MEDICINE","0885-0666","1525-1489","CRITICAL CARE MEDICINE","('SCIE',)","3,603","3.0","Q2","0.56","17.20" +"Frontiers in Artificial Intelligence","","2624-8212","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('ESCI', 'ESCI')","2,371","3.0","('Q2', 'Q2')","0.55","99.85" +"BIOMEDICAL AND ENVIRONMENTAL SCIENCES","0895-3988","2214-0190","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","2,907","3.0","('Q2', 'Q2')","0.53","0.00" +"BIOMEDICAL MICRODEVICES","1387-2176","1572-8781","('ENGINEERING, BIOMEDICAL', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","3,627","3.0","('Q3', 'Q3')","0.53","16.30" +"Brazilian Journal of Infectious Diseases","1413-8670","1678-4391","INFECTIOUS DISEASES","('SCIE',)","2,398","3.0","Q2","0.53","96.09" +"International Journal of Innovation Science","1757-2223","1757-2231","BUSINESS","('ESCI',)","1,152","3.0","Q2","0.53","2.69" +"Journal of Global Responsibility","2041-2568","2041-2576","MANAGEMENT","('ESCI',)","787","3.0","Q2","0.53","3.37" +"Molecular Omics","","2515-4184","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","925","3.0","Q3","0.53","13.79" +"Antibodies","","2073-4468","IMMUNOLOGY","('ESCI',)","1,679","3.0","Q3","0.52","99.01" +"International Journal of Environmental Science and Technology","1735-1472","1735-2630","ENVIRONMENTAL SCIENCES","('SCIE',)","14,899","3.0","Q2","0.52","7.07" +"USER MODELING AND USER-ADAPTED INTERACTION","0924-1868","1573-1391","COMPUTER SCIENCE, CYBERNETICS","('SCIE',)","1,569","3.0","Q2","0.51","57.45" +"AgriEngineering","","2624-7402","AGRICULTURAL ENGINEERING","('ESCI',)","769","3.0","Q2","0.49","100.00" +"SOLID STATE IONICS","0167-2738","1872-7689","('CHEMISTRY, PHYSICAL', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","23,283","3.0","('Q3', 'Q2')","0.49","13.18" +"Therapeutic Advances in Gastrointestinal Endoscopy","2631-7745","2631-7745","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","148","3.0","Q2","0.49","93.62" +"BioNanoScience","2191-1630","2191-1649","MATERIALS SCIENCE, BIOMATERIALS","('ESCI',)","2,447","3.0","Q3","0.48","2.63" +"ADSORPTION-JOURNAL OF THE INTERNATIONAL ADSORPTION SOCIETY","0929-5607","1572-8757","('CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","3,656","3.0","('Q3', 'Q2')","0.47","30.60" +"Environmental Engineering Research","1226-1025","2005-968X","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","2,265","3.0","('Q3', 'Q2')","0.47","97.80" +"Energies","","1996-1073","ENERGY & FUELS","('SCIE',)","120,708","3.0","Q3","0.46","99.59" +"Journal of Composites Science","2504-477X","2504-477X","MATERIALS SCIENCE, COMPOSITES","('ESCI',)","4,257","3.0","Q2","0.46","99.76" +"Computational and Theoretical Chemistry","2210-271X","1872-7999","CHEMISTRY, PHYSICAL","('SCIE',)","5,851","3.0","Q3","0.45","3.13" +"CURRENT OPINION IN CLINICAL NUTRITION AND METABOLIC CARE","1363-1950","1473-6519","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","6,138","3.0","('Q2', 'Q2')","0.45","8.26" +"Digital Chemical Engineering","2772-5081","2772-5081","ENGINEERING, CHEMICAL","('ESCI',)","281","3.0","Q2","0.44","81.16" +"International Journal of Biomaterials","1687-8787","1687-8795","MATERIALS SCIENCE, BIOMATERIALS","('ESCI',)","1,178","3.0","Q3","0.44","99.15" +"ZEITSCHRIFT FUR PHYSIKALISCHE CHEMIE-INTERNATIONAL JOURNAL OF RESEARCH IN PHYSICAL CHEMISTRY & CHEMICAL PHYSICS","0942-9352","2196-7156","CHEMISTRY, PHYSICAL","('SCIE',)","3,253","3.0","Q3","0.44","1.93" +"CURRENT DRUG TARGETS","1389-4501","1873-5592","PHARMACOLOGY & PHARMACY","('SCIE',)","6,093","3.0","Q2","0.43","0.61" +"Journal of Environmental Health Science and Engineering","","2052-336X","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","3,154","3.0","('Q3', 'Q2')","0.42","10.00" +"Analytical Science Advances","2628-5452","2628-5452","CHEMISTRY, ANALYTICAL","('ESCI',)","293","3.0","Q2","0.40","92.23" +"REVIEWS ON ENVIRONMENTAL HEALTH","0048-7554","2191-0308","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","2,352","3.0","('Q2', 'Q2')","0.40","17.48" +"SEMINARS IN ONCOLOGY","0093-7754","1532-8708","ONCOLOGY","('SCIE',)","4,587","3.0","Q2","0.40","16.19" +"ChemPhotoChem","2367-0932","2367-0932","CHEMISTRY, PHYSICAL","('SCIE',)","2,428","3.0","Q3","0.39","30.40" +"ChemPlusChem","2192-6506","2192-6506","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","4,852","3.0","Q2","0.39","26.74" +"Current Opinion in Allergy and Clinical Immunology","1528-4050","1473-6322","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","3,105","3.0","('Q2', 'Q3')","0.38","5.91" +"CRITICAL REVIEWS IN THERAPEUTIC DRUG CARRIER SYSTEMS","0743-4863","2162-660X","PHARMACOLOGY & PHARMACY","('SCIE',)","1,254","3.0","Q2","0.36","1.92" +"Environmental Sustainability","","2523-8922","ENVIRONMENTAL SCIENCES","('ESCI',)","546","3.0","Q2","0.27","10.56" +"Remediation-The Journal of Environmental Cleanup Costs Technologies & Techniques","1051-5658","1520-6831","ENGINEERING, ENVIRONMENTAL","('ESCI',)","696","3.0","Q3","0.26","20.00" +"International Journal of Reconfigurable Computing","1687-7195","1687-7209","COMPUTER SCIENCE, HARDWARE & ARCHITECTURE","('ESCI',)","94","3.0","Q2","0.20","100.00" +"Hague Journal on the Rule of Law","1876-4045","1876-4053","LAW","('SSCI',)","617","2.9","Q1","3.28","62.50" +"SOCIAL STUDIES OF SCIENCE","0306-3127","1460-3659","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","4,599","2.9","Q1","2.22","54.62" +"Applied Mathematics Letters","0893-9659","1873-5452","MATHEMATICS, APPLIED","('SCIE',)","10,629","2.9","Q1","2.08","7.39" +"Research in Developmental Disabilities","0891-4222","1873-3379","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","9,875","2.9","('Q1', 'Q1')","1.95","24.27" +"SOCIAL NETWORKS","0378-8733","1879-2111","('ANTHROPOLOGY', 'SOCIOLOGY')","('SSCI', 'SSCI')","6,795","2.9","('Q1', 'Q1')","1.89","41.67" +"Journal of Learning Analytics","","1929-7750","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","890","2.9","Q1","1.85","98.72" +"GOVERNMENT AND OPPOSITION","0017-257X","1477-7053","POLITICAL SCIENCE","('SSCI',)","2,266","2.9","Q1","1.73","47.80" +"COMPUTERS & MATHEMATICS WITH APPLICATIONS","0898-1221","1873-7668","MATHEMATICS, APPLIED","('SCIE',)","18,545","2.9","Q1","1.69","15.52" +"International Journal of Nursing Sciences","","2352-0132","NURSING","('ESCI',)","1,868","2.9","Q1","1.66","98.97" +"Physical Education and Sport Pedagogy","1740-8989","1742-5786","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,413","2.9","Q1","1.64","34.21" +"JOURNAL OF MEMORY AND LANGUAGE","0749-596X","1096-0821","('LINGUISTICS', 'PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SCIE', 'SSCI')","9,608","2.9","('Q1', 'Q1', 'Q1')","1.61","39.10" +"Insect Science","1672-9609","1744-7917","ENTOMOLOGY","('SCIE',)","3,833","2.9","Q1","1.56","22.41" +"Clinical and Experimental Otorhinolaryngology","1976-8710","2005-0720","OTORHINOLARYNGOLOGY","('SCIE',)","1,301","2.9","Q1","1.54","99.22" +"PUBLIC OPINION QUARTERLY","0033-362X","1537-5331","('COMMUNICATION', 'POLITICAL SCIENCE', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","6,865","2.9","('Q1', 'Q1', 'Q1')","1.54","19.75" +"International Environmental Agreements-Politics Law and Economics","1567-9764","1573-1553","('ECONOMICS', 'ENVIRONMENTAL STUDIES', 'LAW', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","1,266","2.9","('Q1', 'Q2', 'Q1', 'Q1')","1.51","51.72" +"JFR-Journal of Family Research","","2699-2337","FAMILY STUDIES","('SSCI',)","262","2.9","Q1","1.49","100.00" +"Police Quarterly","1098-6111","1552-745X","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,203","2.9","Q1","1.44","7.14" +"NURSING ETHICS","0969-7330","1477-0989","('ETHICS', 'NURSING')","('SSCI', 'SCIE, SSCI')","4,449","2.9","('Q1', 'Q1')","1.42","37.01" +"Current Reviews in Musculoskeletal Medicine","1935-973X","1935-9748","ORTHOPEDICS","('SCIE',)","3,076","2.9","Q1","1.36","14.87" +"EUROPEAN UNION POLITICS","1465-1165","1741-2757","POLITICAL SCIENCE","('SSCI',)","1,582","2.9","Q1","1.33","56.41" +"Archives of Academic Emergency Medicine","","2645-4904","EMERGENCY MEDICINE","('ESCI',)","768","2.9","Q1","1.31","0.00" +"ARCHIVES OF SEXUAL BEHAVIOR","0004-0002","1573-2800","('PSYCHOLOGY, CLINICAL', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","10,204","2.9","('Q1', 'Q1')","1.31","26.13" +"ILR Review","0019-7939","2162-271X","INDUSTRIAL RELATIONS & LABOR","('SSCI',)","3,554","2.9","Q1","1.31","12.77" +"SCIENTIFIC STUDIES OF READING","1088-8438","1532-799X","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","2,671","2.9","('Q1', 'Q2')","1.29","29.76" +"International Breastfeeding Journal","1746-4358","1746-4358","('OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","2,213","2.9","('Q1', 'Q1')","1.28","99.21" +"JOURNAL OF SHOULDER AND ELBOW SURGERY","1058-2746","1532-6500","('ORTHOPEDICS', 'SPORT SCIENCES', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","18,591","2.9","('Q1', 'Q1', 'Q1')","1.28","9.39" +"JOURNAL OF REFRACTIVE SURGERY","1081-597X","1938-2391","('OPHTHALMOLOGY', 'SURGERY')","('SCIE', 'SCIE')","4,849","2.9","('Q1', 'Q1')","1.25","11.11" +"JOURNAL OF VESTIBULAR RESEARCH-EQUILIBRIUM & ORIENTATION","0957-4271","1878-6464","('NEUROSCIENCES', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE')","1,911","2.9","('Q2', 'Q1')","1.25","13.74" +"OBESITY SURGERY","0960-8923","1708-0428","SURGERY","('SCIE',)","17,103","2.9","Q1","1.24","22.20" +"Food and Waterborne Parasitology","2405-6766","2405-6766","('PARASITOLOGY', 'VETERINARY SCIENCES')","('ESCI', 'ESCI')","594","2.9","('Q2', 'Q1')","1.21","91.36" +"Transfer-European Review of Labour and Research","1024-2589","1996-7284","INDUSTRIAL RELATIONS & LABOR","('SSCI',)","806","2.9","Q1","1.21","40.79" +"JOURNAL OF THERMAL BIOLOGY","0306-4565","1879-0992","('BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","7,839","2.9","('Q2', 'Q1')","1.20","17.16" +"PATIENT EDUCATION AND COUNSELING","0738-3991","1873-5134","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SCIE', 'SSCI')","16,265","2.9","('Q2', 'Q1')","1.20","33.16" +"REVIEW OF HIGHER EDUCATION","0162-5748","1090-7009","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,840","2.9","Q1","1.20","0.00" +"Public Policy and Administration","0952-0767","1749-4192","PUBLIC ADMINISTRATION","('SSCI',)","1,010","2.9","Q1","1.19","37.93" +"JOURNAL OF NEUROSURGERY-SPINE","1547-5654","1547-5646","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","10,097","2.9","('Q2', 'Q1')","1.18","1.71" +"Seminars in Fetal & Neonatal Medicine","1744-165X","1878-0946","PEDIATRICS","('SCIE',)","3,334","2.9","Q1","1.18","13.75" +"ORAL DISEASES","1354-523X","1601-0825","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","8,714","2.9","Q1","1.17","16.01" +"CANADIAN PSYCHOLOGY-PSYCHOLOGIE CANADIENNE","0708-5591","1878-7304","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","2,360","2.9","Q1","1.15","0.00" +"CARIES RESEARCH","0008-6568","1421-976X","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","4,139","2.9","Q1","1.15","21.85" +"DENTOMAXILLOFACIAL RADIOLOGY","0250-832X","1476-542X","('DENTISTRY, ORAL SURGERY & MEDICINE', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","4,144","2.9","('Q1', 'Q2')","1.15","27.64" +"ELECTORAL STUDIES","0261-3794","1873-6890","POLITICAL SCIENCE","('SSCI',)","4,112","2.9","Q1","1.15","36.39" +"JOURNAL OF ETHNOBIOLOGY","0278-0771","2162-4496","('ANTHROPOLOGY', 'BIOLOGY')","('SSCI', 'SCIE')","901","2.9","('Q1', 'Q2')","1.12","2.25" +"Econometrics Journal","1368-4221","1368-423X","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","2,042","2.9","('Q1', 'Q1', 'Q1', 'Q1')","1.10","22.02" +"Journal of Cybersecurity","2057-2085","2057-2093","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","519","2.9","Q1","1.10","98.51" +"Computers and Concrete","1598-8198","1598-818X","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,215","2.9","('Q2', 'Q2', 'Q2', 'Q2')","1.09","0.00" +"IEEE Transactions on Learning Technologies","1939-1382","1939-1382","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'EDUCATION & EDUCATIONAL RESEARCH')","('SCIE', 'SSCI')","1,860","2.9","('Q2', 'Q1')","1.09","15.31" +"INTERNATIONAL JOURNAL OF WILDLAND FIRE","1049-8001","1448-5516","FORESTRY","('SCIE',)","6,761","2.9","Q1","1.09","59.43" +"Journal of Multinational Financial Management","1042-444X","1873-1309","BUSINESS, FINANCE","('SSCI',)","1,371","2.9","Q2","1.08","14.46" +"URBAN GEOGRAPHY","0272-3638","1938-2847","('GEOGRAPHY', 'URBAN STUDIES')","('SSCI', 'SSCI')","4,600","2.9","('Q1', 'Q1')","1.08","34.29" +"Journal of Trauma and Acute Care Surgery","2163-0755","2163-0763","('CRITICAL CARE MEDICINE', 'SURGERY')","('SCIE', 'SCIE')","12,194","2.9","('Q2', 'Q1')","1.07","7.01" +"PAIN MEDICINE","1526-2375","1526-4637","('ANESTHESIOLOGY', 'MEDICINE, GENERAL & INTERNAL')","('SCIE', 'SCIE')","9,899","2.9","('Q1', 'Q1')","1.05","18.46" +"International Journal of Hospitality & Tourism Administration","1525-6480","1525-6499","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,002","2.9","Q2","1.04","2.56" +"IUCrJ","2052-2525","2052-2525","('CHEMISTRY, MULTIDISCIPLINARY', 'CRYSTALLOGRAPHY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","2,738","2.9","('Q2', 'Q1', 'Q3')","1.03","100.00" +"JOURNAL OF DERMATOLOGICAL TREATMENT","0954-6634","1471-1753","DERMATOLOGY","('SCIE',)","4,554","2.9","Q2","1.03","34.07" +"JOURNAL OF DIGITAL IMAGING","0897-1889","1618-727X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","5,161","2.9","Q2","1.03","25.99" +"Topics in Cognitive Science","1756-8757","1756-8765","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","2,435","2.9","Q1","1.02","37.35" +"Journal of Ophthalmic Inflammation and Infection","1869-5760","1869-5760","OPHTHALMOLOGY","('ESCI',)","817","2.9","Q1","1.01","100.00" +"Indian Journal of Anaesthesia","0019-5049","0976-2817","ANESTHESIOLOGY","('ESCI',)","3,474","2.9","Q1","1.00","92.07" +"Journal of Asian Economics","1049-0078","1873-7927","ECONOMICS","('SSCI',)","1,979","2.9","Q1","1.00","5.67" +"JOURNAL OF ENDOUROLOGY","0892-7790","1557-900X","UROLOGY & NEPHROLOGY","('SCIE',)","7,964","2.9","Q1","1.00","2.16" +"PSYCHOMETRIKA","0033-3123","1860-0980","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PSYCHOLOGY, MATHEMATICAL', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SCIE', 'SSCI', 'SSCI')","13,199","2.9","('Q1', 'Q1', 'Q1')","1.00","43.35" +"LITHOS","0024-4937","1872-6143","('GEOCHEMISTRY & GEOPHYSICS', 'MINERALOGY')","('SCIE', 'SCIE')","26,702","2.9","('Q2', 'Q1')","0.99","12.71" +"PSYCHOPHYSIOLOGY","0048-5772","1469-8986","('NEUROSCIENCES', 'PHYSIOLOGY', 'PSYCHOLOGY', 'PSYCHOLOGY, BIOLOGICAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE', 'SSCI', 'SSCI')","15,078","2.9","('Q2', 'Q2', 'Q1', 'Q1', 'Q1')","0.99","38.98" +"QUARTERLY REVIEW OF ECONOMICS AND FINANCE","1062-9769","1878-4259","ECONOMICS","('SSCI',)","3,799","2.9","Q1","0.99","10.16" +"China & World Economy","1671-2234","1749-124X","ECONOMICS","('SSCI',)","1,230","2.9","Q1","0.98","8.09" +"ENVIRONMENT AND PLANNING D-SOCIETY & SPACE","0263-7758","1472-3433","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY')","('SSCI', 'SSCI')","5,458","2.9","('Q2', 'Q1')","0.98","45.45" +"Colorectal Disease","1462-8910","1463-1318","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","8,120","2.9","('Q2', 'Q1')","0.97","31.03" +"Digital Health","2055-2076","2055-2076","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'MEDICAL INFORMATICS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SCIE', 'SCIE, SSCI')","2,816","2.9","('Q2', 'Q2', 'Q3', 'Q2')","0.97","93.81" +"HEALTH POLICY AND PLANNING","0268-1080","1460-2237","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","6,371","2.9","('Q2', 'Q2')","0.97","59.26" +"Hematology-American Society of Hematology Education Program","1520-4391","1520-4383","('EDUCATION, SCIENTIFIC DISCIPLINES', 'HEMATOLOGY')","('SCIE', 'SCIE')","4,079","2.9","('Q1', 'Q2')","0.97","0.53" +"Research on Child and Adolescent Psychopathology","2730-7166","2730-7174","('PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","910","2.9","('Q1', 'Q2')","0.97","26.15" +"Biomedical Optics Express","2156-7085","2156-7085","('BIOCHEMICAL RESEARCH METHODS', 'OPTICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","14,436","2.9","('Q2', 'Q2', 'Q2')","0.96","99.43" +"CANADIAN ASSOCIATION OF RADIOLOGISTS JOURNAL-JOURNAL DE L ASSOCIATION CANADIENNE DES RADIOLOGISTES","0846-5371","1488-2361","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,654","2.9","Q2","0.96","40.43" +"CLINICS IN PERINATOLOGY","0095-5108","1557-9840","('OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","3,105","2.9","('Q1', 'Q1')","0.96","7.19" +"JOURNAL OF MEDICAL ECONOMICS","1369-6998","1941-837X","('HEALTH CARE SCIENCES & SERVICES', 'MEDICINE, GENERAL & INTERNAL')","('SCIE', 'SCIE')","3,346","2.9","('Q2', 'Q1')","0.96","97.34" +"Performance Enhancement & Health","2211-2669","2211-2669","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY, APPLIED', 'SPORT SCIENCES', 'SUBSTANCE ABUSE')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","284","2.9","('Q2', 'Q2', 'Q1', 'Q2')","0.96","29.31" +"PATHOLOGY RESEARCH AND PRACTICE","0344-0338","1618-0631","PATHOLOGY","('SCIE',)","9,058","2.9","Q2","0.95","14.00" +"PSYCHOSOMATIC MEDICINE","0033-3174","1534-7796","('PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE, SSCI', 'SCIE', 'SSCI')","11,851","2.9","('Q2', 'Q1', 'Q1')","0.95","15.31" +"Journal of Contemporary Accounting & Economics","1815-5669","1815-5669","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","1,006","2.9","('Q2', 'Q1')","0.94","7.59" +"Multiple Sclerosis and Related Disorders","2211-0348","2211-0356","CLINICAL NEUROLOGY","('SCIE',)","8,701","2.9","Q2","0.94","19.66" +"CEREBRAL CORTEX","1047-3211","1460-2199","NEUROSCIENCES","('SCIE',)","30,580","2.9","Q2","0.93","25.92" +"JOURNAL OF APPLIED BEHAVIOR ANALYSIS","0021-8855","1938-3703","PSYCHOLOGY, CLINICAL","('SSCI',)","5,985","2.9","Q1","0.93","18.78" +"JOURNAL OF POLITICAL PHILOSOPHY","0963-8016","1467-9760","('ETHICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,681","2.9","('Q1', 'Q1')","0.93","50.91" +"COGNITIVE AND BEHAVIORAL PRACTICE","1077-7229","1878-187X","PSYCHOLOGY, CLINICAL","('SSCI',)","2,375","2.9","Q1","0.92","4.97" +"Journal of Agricultural Education & Extension","1389-224X","1750-8622","('EDUCATION & EDUCATIONAL RESEARCH', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","1,078","2.9","('Q1', 'Q2')","0.92","28.93" +"PEDIATRIC INFECTIOUS DISEASE JOURNAL","0891-3668","1532-0987","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'PEDIATRICS')","('SCIE', 'SCIE', 'SCIE')","11,227","2.9","('Q3', 'Q2', 'Q1')","0.92","11.32" +"TOXICOLOGY LETTERS","0378-4274","1879-3169","TOXICOLOGY","('SCIE',)","14,314","2.9","Q2","0.91","21.80" +"Kidney Research and Clinical Practice","2211-9132","2211-9140","UROLOGY & NEPHROLOGY","('SCIE',)","1,260","2.9","Q1","0.90","100.00" +"Royal Society Open Science","2054-5703","2054-5703","MULTIDISCIPLINARY SCIENCES","('SCIE',)","15,809","2.9","Q1","0.90","99.94" +"BMC MEDICAL IMAGING","1471-2342","1471-2342","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","3,062","2.9","Q2","0.89","99.84" +"European Journal of Cardiovascular Nursing","1474-5151","1873-1953","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'NURSING')","('SCIE', 'SCIE, SSCI')","2,961","2.9","('Q2', 'Q1')","0.89","29.11" +"Fungal Biology","1878-6146","1878-6162","MYCOLOGY","('SCIE',)","3,678","2.9","Q2","0.89","27.27" +"Journal of Ethnobiology and Ethnomedicine","","1746-4269","('BIODIVERSITY CONSERVATION', 'PHARMACOLOGY & PHARMACY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","3,857","2.9","('Q1', 'Q2', 'Q2')","0.89","99.51" +"PFLUGERS ARCHIV-EUROPEAN JOURNAL OF PHYSIOLOGY","0031-6768","1432-2013","PHYSIOLOGY","('SCIE',)","9,363","2.9","Q2","0.89","51.70" +"HUMAN FACTORS","0018-7208","1547-8181","('BEHAVIORAL SCIENCES', 'ENGINEERING, INDUSTRIAL', 'ERGONOMICS', 'PSYCHOLOGY', 'PSYCHOLOGY, APPLIED')","('SCIE', 'SCIE', 'SSCI', 'SCIE', 'SSCI')","8,636","2.9","('Q1', 'Q2', 'Q2', 'Q1', 'Q2')","0.88","22.22" +"JOURNAL OF DERMATOLOGY","0385-2407","1346-8138","DERMATOLOGY","('SCIE',)","7,562","2.9","Q2","0.88","18.22" +"PHOTOSYNTHESIS RESEARCH","0166-8595","1573-5079","PLANT SCIENCES","('SCIE',)","7,421","2.9","Q2","0.88","26.03" +"PLoS One","1932-6203","1932-6203","MULTIDISCIPLINARY SCIENCES","('SCIE',)","807,746","2.9","Q1","0.88","99.34" +"GEOCHEMISTRY GEOPHYSICS GEOSYSTEMS","","1525-2027","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","19,697","2.9","Q2","0.87","65.07" +"JOURNAL OF BIOLOGICAL RHYTHMS","0748-7304","1552-4531","('BIOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","3,856","2.9","('Q2', 'Q2')","0.86","37.31" +"Quantitative Imaging in Medicine and Surgery","2223-4292","2223-4306","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","5,279","2.9","Q2","0.86","99.86" +"JOURNAL OF COMPOSITES FOR CONSTRUCTION","1090-0268","1943-5614","('ENGINEERING, CIVIL', 'MATERIALS SCIENCE, COMPOSITES', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","7,408","2.9","('Q2', 'Q3', 'Q2')","0.85","1.57" +"JOURNAL OF MECHANICAL DESIGN","1050-0472","1528-9001","ENGINEERING, MECHANICAL","('SCIE',)","8,444","2.9","Q2","0.85","2.20" +"CANADIAN JOURNAL OF PUBLIC HEALTH-REVUE CANADIENNE DE SANTE PUBLIQUE","0008-4263","1920-7476","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","3,840","2.9","Q2","0.84","44.41" +"JOURNAL OF PHARMACY AND PHARMACEUTICAL SCIENCES","","1482-1826","PHARMACOLOGY & PHARMACY","('SCIE',)","2,319","2.9","Q2","0.84","93.94" +"PHARMACOTHERAPY","0277-0008","1875-9114","PHARMACOLOGY & PHARMACY","('SCIE',)","6,647","2.9","Q2","0.84","17.49" +"Current Research in Toxicology","2666-027X","2666-027X","TOXICOLOGY","('ESCI',)","284","2.9","Q2","0.83","100.00" +"NEUROLOGIA","0213-4853","1578-1968","CLINICAL NEUROLOGY","('SCIE',)","1,912","2.9","Q2","0.83","94.95" +"PROCEEDINGS OF THE ROYAL SOCIETY A-MATHEMATICAL PHYSICAL AND ENGINEERING SCIENCES","1364-5021","1471-2946","MULTIDISCIPLINARY SCIENCES","('SCIE',)","23,115","2.9","Q1","0.83","42.27" +"Rheumatology and Therapy","2198-6576","2198-6584","RHEUMATOLOGY","('SCIE',)","1,707","2.9","Q2","0.83","99.38" +"ACR Open Rheumatology","","2578-5745","RHEUMATOLOGY","('ESCI',)","1,160","2.9","Q2","0.82","62.66" +"CELLS TISSUES ORGANS","1422-6405","1422-6421","('ANATOMY & MORPHOLOGY', 'CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,198","2.9","('Q1', 'Q3', 'Q2')","0.82","14.84" +"CLIMACTERIC","1369-7137","1473-0804","OBSTETRICS & GYNECOLOGY","('SCIE',)","3,696","2.9","Q1","0.82","19.91" +"International Journal of Applied Mechanics","1758-8251","1758-826X","MECHANICS","('SCIE',)","2,608","2.9","Q2","0.82","1.42" +"International Journal of Disaster Risk Science","2095-0055","2192-6395","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","1,984","2.9","('Q2', 'Q2', 'Q2')","0.82","99.48" +"SEMINARS IN DIAGNOSTIC PATHOLOGY","0740-2570","1930-1111","('MEDICAL LABORATORY TECHNOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","1,794","2.9","('Q2', 'Q2')","0.82","7.52" +"Facets","2371-1671","2371-1671","MULTIDISCIPLINARY SCIENCES","('SCIE',)","1,114","2.9","Q1","0.81","91.16" +"JOURNAL OF NONLINEAR OPTICAL PHYSICS & MATERIALS","0218-8635","1793-6624","('OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","726","2.9","('Q2', 'Q2')","0.81","0.68" +"NEUROTOXICITY RESEARCH","1029-8428","1476-3524","NEUROSCIENCES","('SCIE',)","4,849","2.9","Q2","0.81","8.09" +"CLINICAL DRUG INVESTIGATION","1173-2563","1179-1918","PHARMACOLOGY & PHARMACY","('SCIE',)","2,713","2.9","Q2","0.80","44.96" +"Journal of Occupational Medicine and Toxicology","1745-6673","1745-6673","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","1,202","2.9","Q2","0.80","100.00" +"MECHANICS BASED DESIGN OF STRUCTURES AND MACHINES","1539-7734","1539-7742","MECHANICS","('SCIE',)","3,431","2.9","Q2","0.80","2.22" +"Quaternary Science Advances","2666-0334","2666-0334","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","179","2.9","('Q2', 'Q2')","0.79","100.00" +"ACTA NEUROLOGICA SCANDINAVICA","0001-6314","1600-0404","CLINICAL NEUROLOGY","('SCIE',)","7,434","2.9","Q2","0.78","77.20" +"JOURNAL OF NEUROSCIENCE RESEARCH","0360-4012","1097-4547","NEUROSCIENCES","('SCIE',)","12,949","2.9","Q2","0.78","21.71" +"JOURNAL OF REPRODUCTIVE IMMUNOLOGY","0165-0378","1872-7603","('IMMUNOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","4,060","2.9","('Q3', 'Q2')","0.78","20.05" +"MATCH-COMMUNICATIONS IN MATHEMATICAL AND IN COMPUTER CHEMISTRY","0340-6253","","('CHEMISTRY, MULTIDISCIPLINARY', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE', 'SCIE')","2,387","2.9","('Q2', 'Q2', 'Q1')","0.78","0.00" +"Plant Reproduction","2194-7953","2194-7961","('PLANT SCIENCES', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","810","2.9","('Q2', 'Q2')","0.78","41.30" +"CLINICAL RHEUMATOLOGY","0770-3198","1434-9949","RHEUMATOLOGY","('SCIE',)","12,714","2.9","Q2","0.77","17.03" +"FINANCIAL MANAGEMENT","0046-3892","1755-053X","BUSINESS, FINANCE","('SSCI',)","3,491","2.9","Q2","0.77","20.00" +"Geographical Research","1745-5863","1745-5871","GEOGRAPHY","('SSCI',)","1,215","2.9","Q1","0.77","48.08" +"JOURNAL OF COMMUNICATIONS AND NETWORKS","1229-2370","1976-5541","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","1,183","2.9","('Q2', 'Q2')","0.77","98.71" +"Mobilities","1745-0101","1745-011X","('GEOGRAPHY', 'TRANSPORTATION')","('SSCI', 'SSCI')","2,386","2.9","('Q1', 'Q3')","0.77","51.24" +"RESEARCH EVALUATION","0958-2029","1471-5449","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","1,666","2.9","Q1","0.77","43.57" +"Biophysics Reviews","2688-4089","2688-4089","BIOPHYSICS","('ESCI',)","193","2.9","Q2","0.76","43.90" +"Infection and Drug Resistance","1178-6973","1178-6973","('INFECTIOUS DISEASES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","9,759","2.9","('Q2', 'Q2')","0.76","98.64" +"JOURNAL OF BUSINESS & ECONOMIC STATISTICS","0735-0015","1537-2707","('ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SSCI', 'SCIE')","8,715","2.9","('Q1', 'Q1', 'Q1')","0.76","17.46" +"Journal of Physical Activity & Health","1543-3080","1543-5474","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","5,100","2.9","Q2","0.76","5.33" +"MICROVASCULAR RESEARCH","0026-2862","1095-9319","PERIPHERAL VASCULAR DISEASE","('SCIE',)","4,625","2.9","Q2","0.76","18.06" +"NEUROSCIENCE","0306-4522","1873-7544","NEUROSCIENCES","('SCIE',)","39,234","2.9","Q2","0.76","24.21" +"ORGANIC & BIOMOLECULAR CHEMISTRY","1477-0520","1477-0539","CHEMISTRY, ORGANIC","('SCIE',)","34,185","2.9","Q1","0.76","10.83" +"BMC BIOINFORMATICS","1471-2105","1471-2105","('BIOCHEMICAL RESEARCH METHODS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","48,444","2.9","('Q2', 'Q2', 'Q1')","0.75","99.64" +"HUMAN PERFORMANCE","0895-9285","1532-7043","PSYCHOLOGY, APPLIED","('SSCI',)","1,913","2.9","Q2","0.75","10.87" +"Journal of Mental Health","0963-8237","1360-0567","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","3,912","2.9","('Q2', 'Q1')","0.75","30.31" +"Japanese Journal of Radiology","1867-1071","1867-108X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","2,519","2.9","Q2","0.74","48.84" +"JOURNAL OF DIABETES AND ITS COMPLICATIONS","1056-8727","1873-460X","ENDOCRINOLOGY & METABOLISM","('SCIE',)","6,217","2.9","Q3","0.74","22.11" +"PHARMACOGENOMICS JOURNAL","1470-269X","1473-1150","('GENETICS & HEREDITY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","2,417","2.9","('Q2', 'Q2')","0.74","29.73" +"PHARMACOLOGY","0031-7012","1423-0313","PHARMACOLOGY & PHARMACY","('SCIE',)","2,891","2.9","Q2","0.74","21.16" +"ACS Chemical Health & Safety","1871-5532","1878-0504","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","359","2.9","Q2","0.73","9.09" +"Air Quality Atmosphere and Health","1873-9318","1873-9326","ENVIRONMENTAL SCIENCES","('SCIE',)","3,794","2.9","Q3","0.73","19.18" +"AMERICAN JOURNAL OF THERAPEUTICS","1075-2765","1536-3686","PHARMACOLOGY & PHARMACY","('SCIE',)","2,002","2.9","Q2","0.73","2.94" +"CLINICAL GENETICS","0009-9163","1399-0004","GENETICS & HEREDITY","('SCIE',)","7,905","2.9","Q2","0.73","25.28" +"IEEE MICROWAVE AND WIRELESS COMPONENTS LETTERS","1531-1309","1558-1764","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","10,007","2.9","Q2","0.73","15.54" +"Minerva Anestesiologica","0375-9393","1827-1596","('ANESTHESIOLOGY', 'CRITICAL CARE MEDICINE')","('SCIE', 'SCIE')","3,423","2.9","('Q1', 'Q2')","0.73","3.41" +"Pharmacology Research & Perspectives","2052-1707","2052-1707","PHARMACOLOGY & PHARMACY","('SCIE',)","2,488","2.9","Q2","0.73","67.87" +"Social Responsibility Journal","1747-1117","1758-857X","MANAGEMENT","('ESCI',)","2,958","2.9","Q2","0.73","7.35" +"DIGITAL SIGNAL PROCESSING","1051-2004","1095-4333","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","7,068","2.9","Q2","0.72","5.80" +"GROWTH AND CHANGE","0017-4815","1468-2257","('DEVELOPMENT STUDIES', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI')","2,038","2.9","('Q1', 'Q2')","0.72","12.00" +"JOURNAL OF EXPERIMENTAL EDUCATION","0022-0973","1940-0683","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","2,618","2.9","('Q1', 'Q2')","0.72","10.77" +"Cancer Medicine","2045-7634","2045-7634","ONCOLOGY","('SCIE',)","18,909","2.9","Q2","0.71","73.59" +"Earth and Space Science","","2333-5084","('ASTRONOMY & ASTROPHYSICS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","4,133","2.9","('Q2', 'Q2')","0.71","81.14" +"Epigenetics","1559-2294","1559-2308","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","5,753","2.9","('Q3', 'Q2')","0.71","64.21" +"IEEE TRANSACTIONS ON ELECTRON DEVICES","0018-9383","1557-9646","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","31,572","2.9","('Q2', 'Q2')","0.71","6.38" +"IMMUNOPHARMACOLOGY AND IMMUNOTOXICOLOGY","0892-3973","1532-2513","('IMMUNOLOGY', 'PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,870","2.9","('Q3', 'Q2', 'Q2')","0.71","4.26" +"INTERNATIONAL JOURNAL OF URBAN SCIENCES","1226-5934","2161-6779","('ENVIRONMENTAL STUDIES', 'URBAN STUDIES')","('SSCI', 'SSCI')","935","2.9","('Q2', 'Q1')","0.71","14.42" +"TECHNOLOGY ANALYSIS & STRATEGIC MANAGEMENT","0953-7325","1465-3990","MANAGEMENT","('SSCI',)","5,118","2.9","Q2","0.71","7.94" +"ACS Earth and Space Chemistry","2472-3452","2472-3452","('CHEMISTRY, MULTIDISCIPLINARY', 'GEOCHEMISTRY & GEOPHYSICS')","('SCIE', 'SCIE')","3,997","2.9","('Q2', 'Q2')","0.70","10.89" +"Journal of Environmental Policy & Planning","1523-908X","1522-7200","('DEVELOPMENT STUDIES', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI')","2,099","2.9","('Q1', 'Q2')","0.70","47.68" +"MEDICAL PRINCIPLES AND PRACTICE","1011-7571","1423-0151","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,995","2.9","Q1","0.70","99.49" +"Soil Systems","","2571-8789","SOIL SCIENCE","('ESCI',)","1,326","2.9","Q2","0.70","99.63" +"ANNALES D ENDOCRINOLOGIE","0003-4266","2213-3941","ENDOCRINOLOGY & METABOLISM","('SCIE',)","1,376","2.9","Q3","0.69","24.16" +"GASTROENTEROLOGY CLINICS OF NORTH AMERICA","0889-8553","1558-1942","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","2,816","2.9","Q2","0.69","5.00" +"Journal of Food Measurement and Characterization","2193-4126","2193-4134","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","7,683","2.9","Q2","0.69","3.39" +"JOURNAL OF GERIATRIC PSYCHIATRY AND NEUROLOGY","0891-9887","1552-5708","('CLINICAL NEUROLOGY', 'GERIATRICS & GERONTOLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","2,440","2.9","('Q2', 'Q3', 'Q2')","0.69","17.61" +"PHYSICAL CHEMISTRY CHEMICAL PHYSICS","1463-9076","1463-9084","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","117,712","2.9","('Q3', 'Q1')","0.69","17.48" +"Spanish Journal of Psychology","1138-7416","1988-2904","('PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI')","2,103","2.9","('Q1', 'Q1')","0.69","36.54" +"Acta Metallurgica Sinica-English Letters","1006-7191","2194-1289","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","4,235","2.9","Q2","0.68","1.56" +"Eating and Weight Disorders-Studies on Anorexia Bulimia and Obesity","1124-4909","1590-1262","PSYCHIATRY","('SCIE',)","4,563","2.9","Q2","0.68","40.86" +"Robotics","","2218-6581","ROBOTICS","('ESCI',)","2,297","2.9","Q2","0.68","99.78" +"Cancer Prevention Research","1940-6207","1940-6215","ONCOLOGY","('SCIE',)","5,106","2.9","Q2","0.67","15.50" +"Expert Review of Respiratory Medicine","1747-6348","1747-6356","RESPIRATORY SYSTEM","('SCIE',)","3,030","2.9","Q2","0.67","13.76" +"Frontiers of Structural and Civil Engineering","2095-2430","2095-2449","ENGINEERING, CIVIL","('SCIE',)","2,280","2.9","Q2","0.67","10.03" +"Journal of Financial Services Marketing","1363-0539","1479-1846","BUSINESS","('ESCI',)","900","2.9","Q2","0.67","11.18" +"Plasma Processes and Polymers","1612-8850","1612-8869","('PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER', 'PHYSICS, FLUIDS & PLASMAS', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,996","2.9","('Q2', 'Q2', 'Q1', 'Q2')","0.67","26.55" +"Strategy Science","2333-2050","2333-2077","MANAGEMENT","('ESCI',)","715","2.9","Q2","0.67","1.20" +"Clinical Breast Cancer","1526-8209","1938-0666","ONCOLOGY","('SCIE',)","4,152","2.9","Q2","0.66","12.30" +"Journal of Clinical Neurology","1738-6586","2005-5013","CLINICAL NEUROLOGY","('SCIE',)","2,147","2.9","Q2","0.66","100.00" +"JOURNAL OF THE MEDICAL LIBRARY ASSOCIATION","1536-5050","","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","2,616","2.9","Q1","0.66","98.20" +"Nano Communication Networks","1878-7789","1878-7797","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'NANOSCIENCE & NANOTECHNOLOGY', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","592","2.9","('Q2', 'Q3', 'Q2')","0.66","4.62" +"Neurologia i Neurochirurgia Polska","0028-3843","1897-4260","CLINICAL NEUROLOGY","('SCIE',)","1,409","2.9","Q2","0.66","4.07" +"Advanced Theory and Simulations","","2513-0390","MULTIDISCIPLINARY SCIENCES","('SCIE',)","2,831","2.9","Q1","0.65","16.91" +"BEHAVIOUR & INFORMATION TECHNOLOGY","0144-929X","1362-3001","('COMPUTER SCIENCE, CYBERNETICS', 'ERGONOMICS')","('SCIE', 'SSCI')","5,519","2.9","('Q2', 'Q2')","0.65","17.12" +"IEEE TRANSACTIONS ON DIELECTRICS AND ELECTRICAL INSULATION","1070-9878","1558-4135","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","13,307","2.9","('Q2', 'Q2')","0.65","4.26" +"INTEGRATIVE CANCER THERAPIES","1534-7354","1552-695X","('INTEGRATIVE & COMPLEMENTARY MEDICINE', 'ONCOLOGY')","('SCIE', 'SCIE')","3,286","2.9","('Q2', 'Q2')","0.65","92.25" +"JOURNAL OF CLINICAL PSYCHOPHARMACOLOGY","0271-0749","1533-712X","('PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE')","4,693","2.9","('Q2', 'Q2')","0.65","16.59" +"Advances in Aerodynamics","","2524-6992","('ENGINEERING, MECHANICAL', 'MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('ESCI', 'ESCI', 'ESCI')","371","2.9","('Q2', 'Q2', 'Q1')","0.64","100.00" +"Clinical Nutrition ESPEN","2405-4577","2405-4577","NUTRITION & DIETETICS","('ESCI',)","4,347","2.9","Q3","0.63","17.93" +"Geothermal Energy","2195-9706","2195-9706","('ENERGY & FUELS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","784","2.9","('Q3', 'Q2')","0.63","100.00" +"International Journal of Disclosure and Governance","1741-3591","1746-6539","MANAGEMENT","('ESCI',)","572","2.9","Q2","0.63","13.79" +"MICROSCOPY AND MICROANALYSIS","1431-9276","1435-8115","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MICROSCOPY')","('SCIE', 'SCIE')","5,741","2.9","('Q3', 'Q1')","0.63","31.58" +"TRIBOLOGY LETTERS","1023-8883","1573-2711","('ENGINEERING, CHEMICAL', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","7,167","2.9","('Q2', 'Q2')","0.63","31.19" +"Metallomics","1756-5901","1756-591X","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","6,439","2.9","Q3","0.62","20.23" +"Soft Matter","1744-683X","1744-6848","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, MULTIDISCIPLINARY', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","39,183","2.9","('Q3', 'Q3', 'Q2', 'Q2')","0.62","23.70" +"Clinics in Liver Disease","1089-3261","1557-8224","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,041","2.9","Q2","0.61","6.18" +"Frontiers in Robotics and AI","2296-9144","2296-9144","ROBOTICS","('ESCI',)","5,489","2.9","Q2","0.61","99.58" +"Journal of Cardiovascular Medicine","1558-2027","1558-2035","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","2,320","2.9","Q2","0.61","4.46" +"INTERNATIONAL JOURNAL OF PSYCHIATRY IN CLINICAL PRACTICE","1365-1501","1471-1788","PSYCHIATRY","('SCIE',)","1,443","2.9","Q2","0.60","17.12" +"JAIDS-JOURNAL OF ACQUIRED IMMUNE DEFICIENCY SYNDROMES","1525-4135","1077-9450","('IMMUNOLOGY', 'INFECTIOUS DISEASES')","('SCIE', 'SCIE')","11,355","2.9","('Q3', 'Q2')","0.60","17.40" +"Journal of Entrepreneurship in Emerging Economies","2053-4604","2053-4612","BUSINESS","('ESCI',)","1,278","2.9","Q2","0.60","6.44" +"JOURNAL OF NEUROIMMUNOLOGY","0165-5728","1872-8421","('IMMUNOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","10,595","2.9","('Q3', 'Q2')","0.60","17.36" +"PROSTAGLANDINS LEUKOTRIENES AND ESSENTIAL FATTY ACIDS","0952-3278","1532-2823","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE', 'SCIE')","4,130","2.9","('Q3', 'Q3', 'Q3')","0.60","22.36" +"Snippets","1590-1807","1590-1807","LANGUAGE & LINGUISTICS","('ESCI',)","46","2.9","","0.60","0.00" +"CANADIAN JOURNAL OF NEUROLOGICAL SCIENCES","0317-1671","2057-0155","CLINICAL NEUROLOGY","('SCIE',)","3,717","2.9","Q2","0.59","44.07" +"Diseases","","2079-9721","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,729","2.9","Q2","0.59","99.49" +"IEEE Open Journal of Signal Processing","","2644-1322","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","276","2.9","Q2","0.59","97.00" +"JOURNAL OF BIOENERGETICS AND BIOMEMBRANES","0145-479X","1573-6881","('BIOPHYSICS', 'CELL BIOLOGY')","('SCIE', 'SCIE')","2,621","2.9","('Q2', 'Q3')","0.59","8.46" +"JOURNAL OF HUMAN NUTRITION AND DIETETICS","0952-3871","1365-277X","NUTRITION & DIETETICS","('SCIE',)","3,835","2.9","Q3","0.59","36.84" +"Life Sciences in Space Research","2214-5524","2214-5532","('ASTRONOMY & ASTROPHYSICS', 'BIOLOGY')","('SCIE', 'SCIE')","979","2.9","('Q2', 'Q2')","0.59","44.67" +"European Journal of Tourism Research","1994-7658","1314-0817","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","703","2.9","Q2","0.58","36.75" +"IMMUNOGENETICS","0093-7711","1432-1211","('GENETICS & HEREDITY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","2,914","2.9","('Q2', 'Q3')","0.58","18.33" +"Infectious Diseases Now","2666-9927","2666-9919","INFECTIOUS DISEASES","('SCIE',)","590","2.9","Q2","0.58","33.92" +"International Review of Retail Distribution and Consumer Research","0959-3969","1466-4402","BUSINESS","('ESCI',)","1,200","2.9","Q2","0.58","35.56" +"Journal of Science and Technology Policy Management","2053-4620","1758-5538","MANAGEMENT","('ESCI',)","954","2.9","Q2","0.58","2.58" +"Journal of Small Business and Enterprise Development","1462-6004","1758-7840","BUSINESS","('ESCI',)","2,887","2.9","Q2","0.58","15.08" +"NANOTECHNOLOGY","0957-4484","1361-6528","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","41,514","2.9","('Q3', 'Q3', 'Q2')","0.58","9.30" +"BIOCHEMISTRY","0006-2960","1520-4995","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","58,059","2.9","Q3","0.57","13.96" +"Biomedical Engineering Online","","1475-925X","ENGINEERING, BIOMEDICAL","('SCIE',)","5,035","2.9","Q3","0.57","99.71" +"Coatings","","2079-6412","('MATERIALS SCIENCE, COATINGS & FILMS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","21,609","2.9","('Q2', 'Q3', 'Q2')","0.57","99.76" +"ENVIRONMENTAL MONITORING AND ASSESSMENT","0167-6369","1573-2959","ENVIRONMENTAL SCIENCES","('SCIE',)","31,982","2.9","Q3","0.57","9.75" +"Future Business Journal","2314-7202","2314-7210","BUSINESS","('ESCI',)","828","2.9","Q2","0.57","100.00" +"IEEE SECURITY & PRIVACY","1540-7993","1558-4046","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","2,359","2.9","('Q2', 'Q2')","0.57","22.97" +"INTERNATIONAL JOURNAL OF ADVANCED MANUFACTURING TECHNOLOGY","0268-3768","1433-3015","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, MANUFACTURING')","('SCIE', 'SCIE')","55,573","2.9","('Q2', 'Q2')","0.57","12.36" +"New Microbes and New Infections","","2052-2975","('INFECTIOUS DISEASES', 'MICROBIOLOGY')","('ESCI', 'ESCI')","1,911","2.9","('Q2', 'Q3')","0.57","100.00" +"INFECTION AND IMMUNITY","0019-9567","1098-5522","('IMMUNOLOGY', 'INFECTIOUS DISEASES')","('SCIE', 'SCIE')","37,348","2.9","('Q3', 'Q2')","0.56","20.29" +"Journal of Real-Time Image Processing","1861-8200","1861-8219","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,674","2.9","('Q2', 'Q2', 'Q2')","0.56","10.22" +"BMC IMMUNOLOGY","","1471-2172","IMMUNOLOGY","('SCIE',)","2,596","2.9","Q3","0.55","100.00" +"Competitiveness Review","1059-5422","2051-3143","BUSINESS","('ESCI',)","1,122","2.9","Q2","0.55","11.76" +"Open Ceramics","2666-5395","2666-5395","MATERIALS SCIENCE, CERAMICS","('ESCI',)","912","2.9","Q1","0.55","96.36" +"CURRENT TOPICS IN MEDICINAL CHEMISTRY","1568-0266","1873-4294","CHEMISTRY, MEDICINAL","('SCIE',)","8,685","2.9","Q3","0.54","0.00" +"Annals of Gastroenterological Surgery","2475-0328","2475-0328","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","1,661","2.9","Q2","0.53","71.96" +"FEDERAL RESERVE BANK OF ST LOUIS REVIEW","0014-9187","2163-4505","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","524","2.9","('Q2', 'Q1')","0.53","3.77" +"Review Journal of Autism and Developmental Disorders","2195-7177","2195-7185","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","1,278","2.9","Q2","0.53","35.33" +"APPLIED ARTIFICIAL INTELLIGENCE","0883-9514","1087-6545","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","2,133","2.9","('Q2', 'Q2')","0.52","75.53" +"POLYMER INTERNATIONAL","0959-8103","1097-0126","POLYMER SCIENCE","('SCIE',)","8,022","2.9","Q2","0.52","9.57" +"AI & Society","0951-5666","1435-5655","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","2,691","2.9","Q2","0.51","51.42" +"ChemTexts","2199-3793","2199-3793","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","528","2.9","Q2","0.51","38.89" +"MATERIALS TECHNOLOGY","1066-7857","1753-5557","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","2,820","2.9","Q3","0.51","17.85" +"PHYSICA E-LOW-DIMENSIONAL SYSTEMS & NANOSTRUCTURES","1386-9477","1873-1759","('NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","11,361","2.9","('Q3', 'Q2')","0.51","3.43" +"BIOLOGICAL CHEMISTRY","1431-6730","1437-4315","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","6,667","2.9","Q3","0.49","42.47" +"IMMUNOLOGICAL INVESTIGATIONS","0882-0139","1532-4311","IMMUNOLOGY","('SCIE',)","2,089","2.9","Q3","0.49","6.53" +"BMB Reports","1976-6696","1976-670X","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","4,052","2.9","Q3","0.48","96.76" +"Neuroscience Insights","","2633-1055","NEUROSCIENCES","('ESCI',)","217","2.9","Q2","0.48","91.11" +"Jornal Brasileiro de Pneumologia","1806-3713","1806-3756","RESPIRATORY SYSTEM","('SCIE',)","2,152","2.9","Q2","0.47","99.39" +"JOURNAL OF ADHESION","0021-8464","1545-5823","('ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","3,323","2.9","('Q2', 'Q3', 'Q2')","0.47","6.16" +"Microbial Physiology","2673-1665","2673-1673","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","126","2.9","('Q2', 'Q3')","0.47","95.35" +"Expert Review of Anticancer Therapy","1473-7140","1744-8328","ONCOLOGY","('SCIE',)","4,255","2.9","Q2","0.46","10.86" +"JOURNAL OF MOLECULAR HISTOLOGY","1567-2379","1567-2387","CELL BIOLOGY","('SCIE',)","1,985","2.9","Q3","0.46","12.66" +"KOREAN JOURNAL OF CHEMICAL ENGINEERING","0256-1115","1975-7220","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","8,589","2.9","('Q2', 'Q2')","0.46","0.00" +"ARCHIVUM IMMUNOLOGIAE ET THERAPIAE EXPERIMENTALIS","0004-069X","1661-4917","IMMUNOLOGY","('SCIE',)","2,198","2.9","Q3","0.43","60.00" +"Journal of Electrochemical Science and Engineering","1847-9286","1847-9286","ELECTROCHEMISTRY","('ESCI',)","691","2.9","Q2","0.43","96.55" +"Expert Review of Medical Devices","1743-4440","1745-2422","ENGINEERING, BIOMEDICAL","('SCIE',)","3,427","2.9","Q3","0.42","21.18" +"Electronic Structure","2516-1075","2516-1075","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, CONDENSED MATTER')","('ESCI', 'ESCI', 'ESCI')","470","2.9","('Q3', 'Q3', 'Q2')","0.40","44.37" +"Journal of the Canadian Academy of Child and Adolescent Psychiatry","1719-8429","1719-8429","PSYCHIATRY","('ESCI',)","937","2.9","Q2","0.38","0.00" +"Journal of Infusion Nursing","1533-1458","1539-0667","NURSING","('ESCI',)","736","2.9","Q1","0.36","20.22" +"Clean Energy","2515-4230","2515-396X","('ENERGY & FUELS', 'ENGINEERING, ENVIRONMENTAL', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","820","2.9","('Q3', 'Q3', 'Q3')","0.35","96.02" +"Electrochemical Science Advances","2698-5977","2698-5977","ELECTROCHEMISTRY","('ESCI',)","621","2.9","Q2","0.31","76.29" +"Wspolczesna Onkologia-Contemporary Oncology","1428-2526","1897-4309","ONCOLOGY","('ESCI',)","1,344","2.9","Q2","0.31","96.72" +"Oxford Open Materials Science","2633-6979","2633-6979","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","141","2.9","Q3","0.23","96.83" +"PHILOSOPHICAL REVIEW","0031-8108","1558-1470","PHILOSOPHY","('AHCI',)","3,430","2.8","","6.10","0.00" +"Annual Review of Applied Linguistics","0267-1905","1471-6356","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","1,427","2.8","('N/A', 'Q1')","3.15","40.00" +"Forum of Mathematics Pi","2050-5086","2050-5086","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","357","2.8","('Q1', 'Q1')","2.13","100.00" +"Language and Linguistics Compass","1749-818X","1749-818X","LANGUAGE & LINGUISTICS","('ESCI',)","1,639","2.8","","2.11","45.31" +"Annual Review of Anthropology","0084-6570","1545-4290","ANTHROPOLOGY","('SSCI',)","6,149","2.8","Q1","1.85","33.73" +"Jornal de Pediatria","0021-7557","1678-4782","PEDIATRICS","('SCIE',)","2,979","2.8","Q1","1.75","99.30" +"Online Learning","2472-5749","2472-5730","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,943","2.8","Q1","1.75","75.47" +"Applied Research in Quality of Life","1871-2584","1871-2576","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","2,453","2.8","Q1","1.72","32.98" +"Educational Assessment Evaluation and Accountability","1874-8597","1874-8600","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","823","2.8","Q1","1.67","49.23" +"NUCLEAR DATA SHEETS","0090-3752","1095-9904","PHYSICS, NUCLEAR","('SCIE',)","2,802","2.8","Q2","1.59","51.16" +"JOURNAL OF QUANTITATIVE CRIMINOLOGY","0748-4518","1573-7799","CRIMINOLOGY & PENOLOGY","('SSCI',)","2,452","2.8","Q1","1.57","27.66" +"JOURNAL OF ETHNIC AND MIGRATION STUDIES","1369-183X","1469-9451","('DEMOGRAPHY', 'ETHNIC STUDIES')","('SSCI', 'SSCI')","9,895","2.8","('Q1', 'Q1')","1.55","38.05" +"SIAM JOURNAL ON NUMERICAL ANALYSIS","0036-1429","1095-7170","MATHEMATICS, APPLIED","('SCIE',)","14,197","2.8","Q1","1.53","0.58" +"Science and Technology of Archaeological Research","2054-8923","2054-8923","ARCHAEOLOGY","('ESCI',)","246","2.8","","1.52","100.00" +"SCHOOL EFFECTIVENESS AND SCHOOL IMPROVEMENT","0924-3453","1744-5124","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,496","2.8","Q1","1.50","27.42" +"SOCIAL INDICATORS RESEARCH","0303-8300","1573-0921","('SOCIAL SCIENCES, INTERDISCIPLINARY', 'SOCIOLOGY')","('SSCI', 'SSCI')","15,044","2.8","('Q1', 'Q1')","1.47","39.65" +"JOURNAL OF SCIENTIFIC COMPUTING","0885-7474","1573-7691","MATHEMATICS, APPLIED","('SCIE',)","8,339","2.8","Q1","1.44","15.91" +"JOURNAL OF EDUCATION POLICY","0268-0939","1464-5106","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,979","2.8","Q1","1.43","44.35" +"INTERNATIONAL JOURNAL OF EDUCATIONAL DEVELOPMENT","0738-0593","1873-4871","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,421","2.8","Q1","1.42","28.12" +"EMERGING MARKETS FINANCE AND TRADE","1540-496X","1558-0938","('BUSINESS', 'ECONOMICS', 'INTERNATIONAL RELATIONS')","('SSCI', 'SSCI', 'SSCI')","5,391","2.8","('Q2', 'Q1', 'Q1')","1.41","4.17" +"Race and Social Problems","1867-1748","1867-1756","('ETHNIC STUDIES', 'SOCIAL SCIENCES, INTERDISCIPLINARY', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","1,004","2.8","('Q1', 'Q1', 'Q1')","1.40","13.13" +"JOURNAL OF PROFESSIONAL NURSING","8755-7223","1532-8481","NURSING","('SCIE', 'SSCI')","2,783","2.8","Q1","1.39","8.24" +"Bone & Joint Open","2633-1462","2633-1462","ORTHOPEDICS","('ESCI',)","1,007","2.8","Q1","1.37","90.91" +"School Leadership & Management","1363-2434","1364-2626","('EDUCATION & EDUCATIONAL RESEARCH', 'MANAGEMENT')","('ESCI', 'ESCI')","1,275","2.8","('Q1', 'Q2')","1.37","26.58" +"Journal of Marketing Education","0273-4753","1552-6550","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,175","2.8","Q1","1.36","11.59" +"Journal of Studies in International Education","1028-3153","1552-7808","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,013","2.8","Q1","1.34","20.66" +"Journalism Studies","1461-670X","1469-9699","COMMUNICATION","('SSCI',)","4,156","2.8","Q1","1.33","33.15" +"European Journal of Education","0141-8211","1465-3435","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,851","2.8","Q1","1.32","38.41" +"SECURITY DIALOGUE","0967-0106","1460-3640","INTERNATIONAL RELATIONS","('SSCI',)","2,237","2.8","Q1","1.32","51.11" +"Ophthalmology Glaucoma","2589-4234","2589-4196","OPHTHALMOLOGY","('ESCI',)","905","2.8","Q1","1.25","27.40" +"BIRTH-ISSUES IN PERINATAL CARE","0730-7659","1523-536X","('NURSING', 'OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE, SSCI', 'SCIE', 'SCIE')","2,889","2.8","('Q1', 'Q1', 'Q1')","1.23","35.74" +"Telemedicine and e-Health","1530-5627","1556-3669","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","6,585","2.8","Q2","1.23","7.25" +"EUROPEAN JOURNAL OF ORTHODONTICS","0141-5387","1460-2210","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","6,073","2.8","Q1","1.20","21.79" +"Science and Medicine in Football","2473-3938","2473-4446","SPORT SCIENCES","('SCIE',)","1,092","2.8","Q1","1.20","29.06" +"WOMENS HEALTH ISSUES","1049-3867","1878-4321","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'WOMENS STUDIES')","('SSCI', 'SSCI')","3,017","2.8","('Q2', 'Q1')","1.18","19.81" +"Journal of Orthopaedic Surgery and Research","1749-799X","1749-799X","ORTHOPEDICS","('SCIE',)","10,472","2.8","Q1","1.16","99.95" +"OPHTHALMIC AND PHYSIOLOGICAL OPTICS","0275-5408","1475-1313","OPHTHALMOLOGY","('SCIE',)","4,748","2.8","Q1","1.16","41.96" +"BMC Pregnancy and Childbirth","","1471-2393","OBSTETRICS & GYNECOLOGY","('SCIE',)","20,752","2.8","Q1","1.14","99.73" +"MENOPAUSE-THE JOURNAL OF THE NORTH AMERICAN MENOPAUSE SOCIETY","1072-3714","1530-0374","OBSTETRICS & GYNECOLOGY","('SCIE',)","7,205","2.8","Q1","1.14","13.32" +"HIGHER EDUCATION QUARTERLY","0951-5224","1468-2273","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,058","2.8","Q1","1.13","38.51" +"Journal of Vascular Surgery-Venous and Lymphatic Disorders","2213-333X","2213-333X","('PERIPHERAL VASCULAR DISEASE', 'SURGERY')","('SCIE', 'SCIE')","3,117","2.8","('Q2', 'Q1')","1.12","14.37" +"EXPERIMENTAL AND MOLECULAR PATHOLOGY","0014-4800","1096-0945","PATHOLOGY","('SCIE',)","3,923","2.8","Q2","1.10","27.88" +"JOURNAL OF CREATIVE BEHAVIOR","0022-0175","2162-6057","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","2,532","2.8","Q2","1.10","32.79" +"Journal of Geographical Systems","1435-5930","1435-5949","GEOGRAPHY","('SSCI',)","994","2.8","Q1","1.10","46.67" +"CLINICS IN CHEST MEDICINE","0272-5231","1557-8216","RESPIRATORY SYSTEM","('SCIE',)","3,773","2.8","Q2","1.09","7.14" +"EUROPEAN JOURNAL OF SOCIAL PSYCHOLOGY","0046-2772","1099-0992","PSYCHOLOGY, SOCIAL","('SSCI',)","8,188","2.8","Q2","1.08","49.27" +"Psychology Research and Behavior Management","1179-1578","1179-1578","('PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","3,541","2.8","('Q2', 'Q1')","1.08","98.57" +"CONTRACEPTION","0010-7824","1879-0518","OBSTETRICS & GYNECOLOGY","('SCIE',)","6,845","2.8","Q1","1.07","21.57" +"International Journal of Veterinary Science and Medicine","2314-4580","2314-4599","VETERINARY SCIENCES","('ESCI',)","507","2.8","Q1","1.07","96.77" +"WORLD JOURNAL OF UROLOGY","0724-4983","1433-8726","UROLOGY & NEPHROLOGY","('SCIE',)","10,091","2.8","Q2","1.07","24.95" +"Journal of Anesthesia","0913-8668","1438-8359","ANESTHESIOLOGY","('SCIE',)","3,298","2.8","Q2","1.05","15.97" +"Journal of Applied Research in Memory and Cognition","2211-3681","2211-369X","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","1,879","2.8","Q1","1.05","7.65" +"Journal of Taibah University for Science","1658-3655","1658-3655","MULTIDISCIPLINARY SCIENCES","('SCIE',)","3,154","2.8","Q2","1.03","99.17" +"Cognition","0010-0277","1873-7838","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","19,940","2.8","Q1","1.02","40.60" +"EYE","0950-222X","1476-5454","OPHTHALMOLOGY","('SCIE',)","14,868","2.8","Q1","1.02","29.76" +"JOURNAL OF PHYSICAL OCEANOGRAPHY","0022-3670","1520-0485","OCEANOGRAPHY","('SCIE',)","17,737","2.8","Q1","1.02","4.17" +"INTERNATIONAL LABOUR REVIEW","0020-7780","1564-913X","('ECONOMICS', 'INDUSTRIAL RELATIONS & LABOR')","('SSCI', 'SSCI')","1,221","2.8","('Q1', 'Q2')","1.00","13.64" +"Journal of Intelligence","","2079-3200","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,240","2.8","Q1","1.00","99.75" +"Molecular Oral Microbiology","2041-1006","2041-1014","('DENTISTRY, ORAL SURGERY & MEDICINE', 'MICROBIOLOGY')","('SCIE', 'SCIE')","1,405","2.8","('Q1', 'Q3')","1.00","25.53" +"JOURNAL OF CAREER ASSESSMENT","1069-0727","1552-4590","PSYCHOLOGY, APPLIED","('SSCI',)","2,798","2.8","Q2","0.98","9.52" +"Journal of Nuclear Materials","0022-3115","1873-4820","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NUCLEAR SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","35,981","2.8","('Q3', 'Q1')","0.98","35.83" +"VLDB JOURNAL","1066-8888","0949-877X","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","2,284","2.8","('Q2', 'Q2')","0.98","33.33" +"MycoKeys","1314-4057","1314-4049","MYCOLOGY","('SCIE',)","1,411","2.8","Q2","0.97","97.57" +"JOURNAL OF BEHAVIORAL MEDICINE","0160-7715","1573-3521","PSYCHOLOGY, CLINICAL","('SSCI',)","5,773","2.8","Q2","0.96","17.24" +"SUPPORTIVE CARE IN CANCER","0941-4355","1433-7339","('HEALTH CARE SCIENCES & SERVICES', 'ONCOLOGY', 'REHABILITATION')","('SCIE', 'SCIE', 'SCIE')","21,387","2.8","('Q2', 'Q2', 'Q1')","0.96","27.59" +"EUROPEAN JOURNAL OF APPLIED PHYSIOLOGY","1439-6319","1439-6327","('PHYSIOLOGY', 'SPORT SCIENCES')","('SCIE', 'SCIE')","17,570","2.8","('Q2', 'Q1')","0.95","38.28" +"Journal of Natural Fibers","1544-0478","1544-046X","MATERIALS SCIENCE, TEXTILES","('SCIE',)","7,454","2.8","Q1","0.95","26.64" +"EUROPEAN ADDICTION RESEARCH","1022-6877","1421-9891","('PSYCHIATRY', 'SUBSTANCE ABUSE')","('SCIE, SSCI', 'SCIE, SSCI')","1,512","2.8","('Q2', 'Q2')","0.94","52.24" +"JOURNAL OF COMPARATIVE ECONOMICS","0147-5967","1095-7227","ECONOMICS","('SSCI',)","4,412","2.8","Q1","0.94","19.89" +"Maternal and Child Nutrition","1740-8695","1740-8709","('NUTRITION & DIETETICS', 'PEDIATRICS')","('SCIE', 'SCIE')","5,522","2.8","('Q3', 'Q1')","0.94","68.62" +"Economic Systems","0939-3625","1878-5433","ECONOMICS","('SSCI',)","1,807","2.8","Q1","0.93","12.21" +"JOURNAL OF PERSONALITY ASSESSMENT","0022-3891","1532-7752","('PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI')","10,614","2.8","('Q2', 'Q2')","0.93","14.50" +"IEEE MICRO","0272-1732","1937-4143","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","2,618","2.8","('Q2', 'Q2')","0.92","12.83" +"Journal of Applied and Computational Mechanics","2383-4536","2383-4536","MECHANICS","('ESCI',)","1,630","2.8","Q2","0.91","0.00" +"CHEMICAL SENSES","0379-864X","1464-3553","('BEHAVIORAL SCIENCES', 'FOOD SCIENCE & TECHNOLOGY', 'NEUROSCIENCES', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,000","2.8","('Q1', 'Q2', 'Q2', 'Q2')","0.90","21.05" +"SKIN PHARMACOLOGY AND PHYSIOLOGY","1660-5527","1660-5535","('DERMATOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","2,310","2.8","('Q2', 'Q2')","0.90","26.04" +"JOURNAL OF APPLIED PHYCOLOGY","0921-8971","1573-5176","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","13,624","2.8","('Q3', 'Q1')","0.89","22.48" +"Molecular Informatics","1868-1743","1868-1751","('CHEMISTRY, MEDICINAL', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,960","2.8","('Q3', 'Q2', 'Q2')","0.89","19.71" +"Pediatric Rheumatology","","1546-0096","('PEDIATRICS', 'RHEUMATOLOGY')","('SCIE', 'SCIE')","2,733","2.8","('Q1', 'Q2')","0.89","100.00" +"RADIATION PHYSICS AND CHEMISTRY","0969-806X","1879-0895","('CHEMISTRY, PHYSICAL', 'NUCLEAR SCIENCE & TECHNOLOGY', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE', 'SCIE')","13,350","2.8","('Q3', 'Q1', 'Q1')","0.89","7.02" +"Accountability in Research-Ethics Integrity and Policy","0898-9621","1545-5815","MEDICAL ETHICS","('SCIE',)","1,324","2.8","Q1","0.88","22.88" +"Advances in Simulation","","2059-0628","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","677","2.8","Q2","0.88","100.00" +"PHYSICA A-STATISTICAL MECHANICS AND ITS APPLICATIONS","0378-4371","1873-2119","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","34,958","2.8","Q2","0.88","8.86" +"DECISION SCIENCES","0011-7315","1540-5915","MANAGEMENT","('SSCI',)","4,813","2.8","Q2","0.87","11.70" +"JOURNAL OF GLACIOLOGY","0022-1430","1727-5652","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","7,263","2.8","('Q2', 'Q2')","0.87","100.00" +"European Physical Journal Plus","2190-5444","2190-5444","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","16,403","2.8","Q2","0.86","12.29" +"EXPERIMENTAL THERMAL AND FLUID SCIENCE","0894-1777","1879-2286","('ENGINEERING, MECHANICAL', 'PHYSICS, FLUIDS & PLASMAS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","14,412","2.8","('Q2', 'Q1', 'Q2')","0.86","13.83" +"GEOPHYSICAL JOURNAL INTERNATIONAL","0956-540X","1365-246X","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","33,811","2.8","Q2","0.86","23.92" +"Integrative Medicine Research","2213-4220","2213-4239","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","1,301","2.8","Q2","0.86","96.34" +"JOURNAL OF PHYCOLOGY","0022-3646","1529-8817","('MARINE & FRESHWATER BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","8,881","2.8","('Q1', 'Q2')","0.86","26.45" +"Earth Surface Dynamics","2196-6311","2196-632X","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,983","2.8","('Q2', 'Q2')","0.85","98.55" +"EARTH SURFACE PROCESSES AND LANDFORMS","0197-9337","1096-9837","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","13,868","2.8","('Q2', 'Q2')","0.85","35.98" +"GEOSYNTHETICS INTERNATIONAL","1072-6349","1751-7613","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","2,548","2.8","('Q2', 'Q2', 'Q3')","0.85","0.00" +"JOURNAL OF INTERNATIONAL MONEY AND FINANCE","0261-5606","1873-0639","BUSINESS, FINANCE","('SSCI',)","6,615","2.8","Q2","0.85","16.63" +"Computational Particle Mechanics","2196-4378","2196-4386","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MECHANICS')","('SCIE', 'SCIE')","1,583","2.8","('Q1', 'Q2')","0.84","17.74" +"EUROPEAN ECONOMIC REVIEW","0014-2921","1873-572X","ECONOMICS","('SSCI',)","10,232","2.8","Q1","0.84","29.83" +"FRESHWATER BIOLOGY","0046-5070","1365-2427","('ECOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","13,915","2.8","('Q2', 'Q1')","0.84","36.71" +"ANIMAL CONSERVATION","1367-9430","1469-1795","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","4,209","2.8","('Q1', 'Q2')","0.83","36.49" +"CONNECTIVE TISSUE RESEARCH","0300-8207","1607-8438","('CELL BIOLOGY', 'ORTHOPEDICS')","('SCIE', 'SCIE')","2,799","2.8","('Q3', 'Q1')","0.83","4.92" +"DATA MINING AND KNOWLEDGE DISCOVERY","1384-5810","1573-756X","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","5,331","2.8","('Q2', 'Q2')","0.83","44.96" +"HOUSING POLICY DEBATE","1051-1482","2152-050X","('DEVELOPMENT STUDIES', 'URBAN STUDIES')","('SSCI', 'SSCI')","2,091","2.8","('Q2', 'Q1')","0.83","11.05" +"NEW JOURNAL OF PHYSICS","1367-2630","1367-2630","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","32,329","2.8","Q2","0.83","98.96" +"RAND JOURNAL OF ECONOMICS","0741-6261","1756-2171","ECONOMICS","('SSCI',)","5,863","2.8","Q1","0.83","31.76" +"Biology Letters","1744-9561","1744-957X","('BIOLOGY', 'ECOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","11,594","2.8","('Q2', 'Q2', 'Q2')","0.82","50.30" +"COGNITIVE THERAPY AND RESEARCH","0147-5916","1573-2819","PSYCHOLOGY, CLINICAL","('SSCI',)","5,889","2.8","Q2","0.82","33.98" +"BASIN RESEARCH","0950-091X","1365-2117","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","4,094","2.8","Q2","0.81","37.54" +"JOURNAL OF LOW FREQUENCY NOISE VIBRATION AND ACTIVE CONTROL","1461-3484","2048-4046","ACOUSTICS","('SCIE',)","1,723","2.8","Q1","0.81","93.47" +"Journal of Proteomics","1874-3919","1876-7737","BIOCHEMICAL RESEARCH METHODS","('SCIE',)","10,344","2.8","Q2","0.81","20.92" +"Substance Abuse","0889-7077","1547-0164","SUBSTANCE ABUSE","('SCIE', 'SSCI')","2,773","2.8","Q2","0.81","5.20" +"Annals of Pediatric Endocrinology & Metabolism","2287-1012","2287-1292","('ENDOCRINOLOGY & METABOLISM', 'PEDIATRICS')","('ESCI', 'ESCI')","859","2.8","('Q3', 'Q1')","0.80","100.00" +"BIOLOGICAL INVASIONS","1387-3547","1573-1464","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","12,730","2.8","('Q1', 'Q2')","0.80","31.09" +"Clinical Proteomics","1542-6416","1559-0275","BIOCHEMICAL RESEARCH METHODS","('SCIE',)","1,268","2.8","Q2","0.80","99.24" +"Conservation Science and Practice","","2578-4854","BIODIVERSITY CONSERVATION","('SCIE',)","2,596","2.8","Q1","0.80","79.54" +"Frontiers in Genetics","","1664-8021","GENETICS & HEREDITY","('SCIE',)","39,941","2.8","Q2","0.80","99.58" +"Frontiers in Marine Science","","2296-7745","MARINE & FRESHWATER BIOLOGY","('SCIE',)","31,986","2.8","Q1","0.80","99.59" +"Journal of Pacific Rim Psychology","1834-4909","1834-4909","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","464","2.8","Q1","0.80","91.00" +"Tropical Medicine and Infectious Disease","","2414-6366","('INFECTIOUS DISEASES', 'PARASITOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE', 'SCIE')","3,837","2.8","('Q2', 'Q2', 'Q1')","0.80","99.83" +"BMC Pharmacology & Toxicology","","2050-6511","('PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE')","1,948","2.8","('Q2', 'Q2')","0.79","99.58" +"Hydrological Sciences Journal","0262-6667","2150-3435","WATER RESOURCES","('SCIE',)","8,836","2.8","Q2","0.79","15.75" +"JOURNAL OF PLANNING EDUCATION AND RESEARCH","0739-456X","1552-6577","('REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI')","3,369","2.8","('Q2', 'Q1')","0.79","11.29" +"PHYSIOLOGICAL AND MOLECULAR PLANT PATHOLOGY","0885-5765","0885-5765","PLANT SCIENCES","('SCIE',)","3,778","2.8","Q2","0.79","7.34" +"RESTORATION ECOLOGY","1061-2971","1526-100X","ECOLOGY","('SCIE',)","8,437","2.8","Q2","0.79","29.96" +"Accounting Forum","0155-9982","1467-6303","BUSINESS, FINANCE","('SSCI',)","1,655","2.8","Q2","0.78","41.11" +"Epilepsia Open","","2470-9239","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","1,550","2.8","('Q2', 'Q2')","0.78","79.89" +"Mathematical Geosciences","1874-8961","1874-8953","('GEOSCIENCES, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","1,743","2.8","('Q2', 'Q1')","0.78","30.37" +"INTERNATIONAL JOURNAL OF IMPOTENCE RESEARCH","0955-9930","1476-5489","UROLOGY & NEPHROLOGY","('SCIE',)","3,272","2.8","Q2","0.77","13.76" +"INTERNATIONAL JOURNAL OF NON-LINEAR MECHANICS","0020-7462","1878-5638","MECHANICS","('SCIE',)","6,898","2.8","Q2","0.77","11.79" +"ISPRS International Journal of Geo-Information","","2220-9964","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'GEOGRAPHY, PHYSICAL', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE')","12,458","2.8","('Q2', 'Q2', 'Q2')","0.77","99.74" +"Journal of Choice Modelling","1755-5345","1755-5345","ECONOMICS","('SSCI',)","1,048","2.8","Q1","0.77","37.72" +"Managerial Auditing Journal","0268-6902","1758-7735","('BUSINESS, FINANCE', 'MANAGEMENT')","('SSCI', 'SSCI')","2,601","2.8","('Q2', 'Q2')","0.77","2.17" +"MUSCLE & NERVE","0148-639X","1097-4598","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","13,270","2.8","('Q2', 'Q2')","0.77","21.71" +"ADVANCES IN SPACE RESEARCH","0273-1177","1879-1948","('ASTRONOMY & ASTROPHYSICS', 'ENGINEERING, AEROSPACE', 'GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","17,778","2.8","('Q2', 'Q1', 'Q2', 'Q3')","0.76","25.83" +"AGING & MENTAL HEALTH","1360-7863","1364-6915","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY', 'PSYCHIATRY')","('SCIE', 'SSCI', 'SCIE, SSCI')","9,483","2.8","('Q3', 'Q2', 'Q2')","0.76","20.77" +"CARDIOVASCULAR AND INTERVENTIONAL RADIOLOGY","0174-1551","1432-086X","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","7,200","2.8","('Q2', 'Q2')","0.76","29.18" +"Future Internet","1999-5903","1999-5903","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","4,650","2.8","Q2","0.76","99.17" +"Genes","","2073-4425","GENETICS & HEREDITY","('SCIE',)","28,805","2.8","Q2","0.76","99.68" +"INTERNATIONAL JOURNAL OF FINANCE & ECONOMICS","1076-9307","1099-1158","BUSINESS, FINANCE","('SSCI',)","4,125","2.8","Q2","0.76","21.64" +"JOURNAL OF PHARMACY AND PHARMACOLOGY","0022-3573","2042-7158","PHARMACOLOGY & PHARMACY","('SCIE',)","11,018","2.8","Q2","0.76","9.45" +"Mining of Mineral Deposits","2415-3435","2415-3443","MINING & MINERAL PROCESSING","('ESCI',)","572","2.8","Q2","0.76","97.89" +"Optical Materials Express","2159-3930","2159-3930","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'OPTICS')","('SCIE', 'SCIE')","9,024","2.8","('Q3', 'Q2')","0.76","99.15" +"THERAPEUTIC DRUG MONITORING","0163-4356","1536-3694","('MEDICAL LABORATORY TECHNOLOGY', 'PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,503","2.8","('Q2', 'Q2', 'Q2')","0.76","14.74" +"HYDROLOGICAL PROCESSES","0885-6087","1099-1085","WATER RESOURCES","('SCIE',)","22,509","2.8","Q2","0.75","26.09" +"JOURNAL OF EXPERIMENTAL BIOLOGY","0022-0949","1477-9145","BIOLOGY","('SCIE',)","34,708","2.8","Q2","0.75","32.69" +"Pancreatology","1424-3903","1424-3911","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","5,863","2.8","Q2","0.75","25.86" +"Asia-Pacific Psychiatry","1758-5864","1758-5872","PSYCHIATRY","('SCIE', 'SSCI')","971","2.8","Q2","0.74","10.61" +"EUROPEAN URBAN AND REGIONAL STUDIES","0969-7764","1461-7145","('ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI')","1,576","2.8","('Q2', 'Q2', 'Q1')","0.73","44.09" +"Frontiers in Cardiovascular Medicine","2297-055X","2297-055X","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","21,848","2.8","Q2","0.73","99.58" +"International Journal of Islamic and Middle Eastern Finance and Management","1753-8394","1753-8408","('BUSINESS, FINANCE', 'MANAGEMENT')","('SSCI', 'SSCI')","1,403","2.8","('Q2', 'Q2')","0.73","1.13" +"MINERALOGICAL MAGAZINE","0026-461X","1471-8022","MINERALOGY","('SCIE',)","4,765","2.8","Q2","0.73","22.66" +"International Journal of Bipolar Disorders","2194-7511","2194-7511","PSYCHIATRY","('SCIE',)","873","2.8","Q2","0.72","100.00" +"JOURNAL OF CHROMATOGRAPHY B-ANALYTICAL TECHNOLOGIES IN THE BIOMEDICAL AND LIFE SCIENCES","1570-0232","1873-376X","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE')","19,606","2.8","('Q2', 'Q2')","0.72","18.65" +"JOURNAL OF CLINICAL GASTROENTEROLOGY","0192-0790","1539-2031","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","8,163","2.8","Q2","0.72","8.77" +"MONTHLY WEATHER REVIEW","0027-0644","1520-0493","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","29,033","2.8","Q3","0.72","3.87" +"AEROSOL SCIENCE AND TECHNOLOGY","0278-6826","1521-7388","('ENGINEERING, CHEMICAL', 'ENGINEERING, MECHANICAL', 'ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","7,068","2.8","('Q2', 'Q2', 'Q3', 'Q3')","0.71","29.34" +"BIOCHIMICA ET BIOPHYSICA ACTA-BIOMEMBRANES","0005-2736","1879-2642","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","17,216","2.8","('Q3', 'Q2')","0.71","75.48" +"Molecular Pain","","1744-8069","NEUROSCIENCES","('SCIE',)","3,793","2.8","Q2","0.71","94.57" +"American Journal of Cardiovascular Drugs","1175-3277","1179-187X","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,509","2.8","('Q2', 'Q2')","0.70","29.66" +"BMC Endocrine Disorders","","1472-6823","ENDOCRINOLOGY & METABOLISM","('SCIE',)","4,408","2.8","Q3","0.70","99.88" +"CABI Agriculture & Bioscience","","2662-4044","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","420","2.8","Q1","0.69","100.00" +"Open Heart","2053-3624","2053-3624","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","3,312","2.8","Q2","0.69","99.42" +"THEORETICAL AND APPLIED CLIMATOLOGY","0177-798X","1434-4483","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","14,060","2.8","Q3","0.69","10.81" +"Diabetes Metabolic Syndrome and Obesity","1178-7007","1178-7007","ENDOCRINOLOGY & METABOLISM","('SCIE',)","6,766","2.8","Q3","0.68","98.74" +"Food Biophysics","1557-1858","1557-1866","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","2,193","2.8","Q2","0.68","10.37" +"Frontiers in Bioinformatics","","2673-7647","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('ESCI',)","578","2.8","Q2","0.68","99.29" +"Journal of Meteorological Research","2095-6037","2198-0934","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","1,906","2.8","Q3","0.68","89.60" +"JOURNAL OF SOILS AND SEDIMENTS","1439-0108","1614-7480","('ENVIRONMENTAL SCIENCES', 'SOIL SCIENCE')","('SCIE', 'SCIE')","10,450","2.8","('Q3', 'Q2')","0.68","11.82" +"TOXICOLOGY MECHANISMS AND METHODS","1537-6516","1537-6524","TOXICOLOGY","('SCIE',)","2,561","2.8","Q2","0.68","6.54" +"VIROLOGY","0042-6822","1089-862X","VIROLOGY","('SCIE',)","21,947","2.8","Q3","0.68","69.89" +"BOTANICAL REVIEW","0006-8101","1874-9372","PLANT SCIENCES","('SCIE',)","2,747","2.8","Q2","0.67","16.98" +"Current Drug Delivery","1567-2018","1875-5704","PHARMACOLOGY & PHARMACY","('SCIE',)","2,976","2.8","Q2","0.67","0.57" +"Diabetes Therapy","1869-6953","1869-6961","ENDOCRINOLOGY & METABOLISM","('SCIE',)","3,523","2.8","Q3","0.67","99.79" +"Environmental Earth Sciences","1866-6280","1866-6299","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","25,911","2.8","('Q3', 'Q2', 'Q2')","0.67","10.03" +"Geodesy and Geodynamics","1674-9847","1674-9847","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","1,061","2.8","Q2","0.67","96.91" +"IEEE TRANSACTIONS ON VERY LARGE SCALE INTEGRATION (VLSI) SYSTEMS","1063-8210","1557-9999","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","6,986","2.8","('Q2', 'Q2')","0.67","7.13" +"INDUSTRIAL AND CORPORATE CHANGE","0960-6491","1464-3650","('BUSINESS', 'ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","4,748","2.8","('Q2', 'Q1', 'Q2')","0.67","20.34" +"Journal of Intelligent Transportation Systems","1547-2450","1547-2442","('TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SSCI', 'SCIE')","1,792","2.8","('Q3', 'Q2')","0.67","5.81" +"JOURNAL OF SEPARATION SCIENCE","1615-9306","1615-9314","CHEMISTRY, ANALYTICAL","('SCIE',)","12,072","2.8","Q2","0.67","8.75" +"CURRENT OPINION IN PULMONARY MEDICINE","1070-5287","1531-6971","RESPIRATORY SYSTEM","('SCIE',)","3,143","2.8","Q2","0.66","11.30" +"Current Vascular Pharmacology","1570-1611","1875-6212","('PERIPHERAL VASCULAR DISEASE', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","2,275","2.8","('Q2', 'Q2')","0.66","2.99" +"REVUE NEUROLOGIQUE","0035-3787","2213-0004","CLINICAL NEUROLOGY","('SCIE',)","3,270","2.8","Q2","0.66","43.56" +"Venture Capital","1369-1066","1464-5343","BUSINESS, FINANCE","('SSCI',)","896","2.8","Q2","0.66","18.31" +"Asian Journal of Organic Chemistry","2193-5807","2193-5815","CHEMISTRY, ORGANIC","('SCIE',)","6,136","2.8","Q1","0.65","3.44" +"DATA BASE FOR ADVANCES IN INFORMATION SYSTEMS","0095-0033","","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","892","2.8","Q1","0.65","0.00" +"Environmental Science-Atmospheres","","2634-3606","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('ESCI', 'ESCI')","540","2.8","('Q3', 'Q3')","0.65","100.00" +"Frontiers in Synaptic Neuroscience","1663-3563","1663-3563","NEUROSCIENCES","('SCIE',)","1,562","2.8","Q2","0.65","100.00" +"Heat Transfer","2688-4534","2688-4542","THERMODYNAMICS","('ESCI',)","4,050","2.8","Q2","0.65","1.32" +"JOURNAL OF MOLECULAR NEUROSCIENCE","0895-8696","1559-1166","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","6,499","2.8","('Q3', 'Q2')","0.65","15.50" +"PEPTIDES","0196-9781","1873-5169","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","9,030","2.8","('Q3', 'Q3', 'Q2')","0.65","27.76" +"EUROPEAN JOURNAL OF MEDICAL RESEARCH","0949-2321","2047-783X","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","3,423","2.8","Q2","0.64","99.81" +"BIOCHIMICA ET BIOPHYSICA ACTA-GENERAL SUBJECTS","0304-4165","1872-8006","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","14,581","2.8","('Q3', 'Q2')","0.63","19.84" +"MEDICAL ONCOLOGY","1357-0560","1559-131X","ONCOLOGY","('SCIE',)","6,610","2.8","Q2","0.63","13.14" +"CHEMICAL PHYSICS LETTERS","0009-2614","1873-4448","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","45,081","2.8","('Q3', 'Q1')","0.62","7.58" +"CHIRALITY","0899-0042","1520-636X","('CHEMISTRY, ANALYTICAL', 'CHEMISTRY, MEDICINAL', 'CHEMISTRY, ORGANIC', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","3,432","2.8","('Q2', 'Q3', 'Q1', 'Q2')","0.61","15.38" +"Journal of Alzheimers Disease Reports","","2542-4823","NEUROSCIENCES","('ESCI',)","776","2.8","Q2","0.61","91.95" +"MANAGEMENT LEARNING","1350-5076","1461-7307","MANAGEMENT","('SSCI',)","2,103","2.8","Q2","0.61","44.26" +"ACM Transactions on Embedded Computing Systems","1539-9087","1558-3465","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","1,910","2.8","('Q2', 'Q2')","0.60","2.01" +"AMERICAN JOURNAL OF MEDICAL GENETICS PART C-SEMINARS IN MEDICAL GENETICS","1552-4868","1552-4876","GENETICS & HEREDITY","('SCIE',)","3,076","2.8","Q2","0.60","21.58" +"Clinical & Translational Oncology","1699-048X","1699-3055","ONCOLOGY","('SCIE',)","5,449","2.8","Q2","0.60","21.58" +"ISRA International Journal of Islamic Finance","0128-1976","2289-4365","BUSINESS, FINANCE","('ESCI',)","343","2.8","Q2","0.60","96.10" +"Journal of Decision Systems","1246-0125","2116-7052","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","879","2.8","Q2","0.60","14.29" +"Current Oncology","1198-0052","1718-7729","ONCOLOGY","('SCIE',)","6,836","2.8","Q2","0.59","99.53" +"Discover Oncology","","2730-6011","('ENDOCRINOLOGY & METABOLISM', 'ONCOLOGY')","('SCIE', 'SCIE')","696","2.8","('Q3', 'Q2')","0.59","99.54" +"EXPERIMENTAL BIOLOGY AND MEDICINE","1535-3702","1535-3699","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","8,263","2.8","Q2","0.59","5.50" +"Journal of Preventive Medicine & Public Health","1975-8375","2233-4521","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","1,608","2.8","Q2","0.59","100.00" +"JOURNAL OF TEXTURE STUDIES","0022-4901","1745-4603","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","2,974","2.8","Q2","0.59","13.15" +"Plant Signaling & Behavior","1559-2316","1559-2324","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","10,353","2.8","('Q3', 'Q2')","0.59","65.66" +"Flow","","2633-4259","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('ESCI', 'ESCI')","149","2.8","('Q2', 'Q1')","0.58","100.00" +"Infection and Chemotherapy","2093-2340","2092-6448","INFECTIOUS DISEASES","('ESCI',)","1,262","2.8","Q2","0.58","97.45" +"Journal of the Association for Information Science and Technology","2330-1635","2330-1643","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SCIE', 'SSCI')","4,521","2.8","('Q2', 'Q1')","0.58","35.39" +"SAE International Journal of Vehicle Dynamics Stability and NVH","2380-2162","2380-2170","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","410","2.8","Q2","0.58","0.00" +"SEMINARS IN NEPHROLOGY","0270-9295","1558-4488","UROLOGY & NEPHROLOGY","('SCIE',)","3,375","2.8","Q2","0.58","12.14" +"Economia Politica","1120-2890","1973-820X","ECONOMICS","('SSCI',)","483","2.8","Q1","0.57","59.41" +"Forensic Toxicology","1860-8965","1860-8973","TOXICOLOGY","('SCIE',)","901","2.8","Q2","0.57","42.11" +"HIV MEDICINE","1464-2662","1468-1293","INFECTIOUS DISEASES","('SCIE',)","2,831","2.8","Q2","0.57","34.65" +"Innate Immunity","1753-4259","1753-4267","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'IMMUNOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,925","2.8","('Q3', 'Q3', 'Q2', 'Q3')","0.57","93.51" +"JOURNAL OF MATERIALS SCIENCE-MATERIALS IN ELECTRONICS","0957-4522","1573-482X","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","44,609","2.8","('Q2', 'Q3', 'Q2', 'Q2')","0.57","2.18" +"Advances in Production Engineering & Management","1854-6250","1855-6531","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","609","2.8","('Q2', 'Q3')","0.56","0.00" +"Intensive Care Medicine Experimental","2197-425X","2197-425X","CRITICAL CARE MEDICINE","('ESCI',)","1,383","2.8","Q2","0.56","100.00" +"Reproduction and Fertility","","2633-8386","REPRODUCTIVE BIOLOGY","('ESCI',)","301","2.8","Q2","0.56","89.63" +"Annals of Geriatric Medicine and Research","2508-4909","2508-4909","GERIATRICS & GERONTOLOGY","('ESCI',)","679","2.8","Q3","0.55","98.47" +"Carbon Management","1758-3004","1758-3012","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SSCI')","1,828","2.8","('Q3', 'Q2')","0.55","62.61" +"INFANT AND CHILD DEVELOPMENT","1522-7227","1522-7219","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","1,985","2.8","Q2","0.55","37.88" +"International Journal of Microbiology","1687-918X","1687-9198","MICROBIOLOGY","('ESCI',)","2,698","2.8","Q3","0.55","100.00" +"RESEARCH ON CHEMICAL INTERMEDIATES","0922-6168","1568-5675","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","9,089","2.8","Q2","0.54","1.39" +"CURRENT ISSUES IN MOLECULAR BIOLOGY","1467-3037","1467-3045","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","3,197","2.8","Q3","0.53","99.60" +"JOURNAL OF HEAT TRANSFER-TRANSACTIONS OF THE ASME","0022-1481","1528-8943","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","13,165","2.8","('Q2', 'Q2')","0.53","1.20" +"MACROMOLECULAR RESEARCH","1598-5032","2092-7673","POLYMER SCIENCE","('SCIE',)","3,447","2.8","Q2","0.53","2.38" +"Micro and Nano Engineering","","2590-0072","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'OPTICS', 'PHYSICS, APPLIED')","('ESCI', 'ESCI', 'ESCI', 'ESCI', 'ESCI')","462","2.8","('Q2', 'Q3', 'Q3', 'Q2', 'Q2')","0.53","100.00" +"NUMERICAL HEAT TRANSFER PART A-APPLICATIONS","1040-7782","1521-0634","('MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","4,314","2.8","('Q2', 'Q2')","0.53","1.13" +"PHYSICA B-CONDENSED MATTER","0921-4526","1873-2135","PHYSICS, CONDENSED MATTER","('SCIE',)","22,536","2.8","Q2","0.53","3.38" +"Entertainment Computing","1875-9521","1875-953X","('COMPUTER SCIENCE, CYBERNETICS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE', 'SCIE')","1,016","2.8","('Q2', 'Q2', 'Q2')","0.52","21.74" +"Diabetes & Vascular Disease Research","1479-1641","1752-8984","('ENDOCRINOLOGY & METABOLISM', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","1,673","2.8","('Q3', 'Q2')","0.51","86.11" +"PACKAGING TECHNOLOGY AND SCIENCE","0894-3214","1099-1522","('ENGINEERING, MANUFACTURING', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","2,211","2.8","('Q2', 'Q2')","0.51","27.92" +"Flexible and Printed Electronics","2058-8585","2058-8585","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","1,332","2.8","Q3","0.50","33.21" +"CELL BIOCHEMISTRY AND FUNCTION","0263-6484","1099-0844","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","3,055","2.8","('Q3', 'Q3')","0.49","6.44" +"FEBS Open Bio","2211-5463","2211-5463","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","3,902","2.8","Q3","0.48","75.13" +"Tuberculosis","1472-9792","1873-281X","('IMMUNOLOGY', 'MICROBIOLOGY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE', 'SCIE')","3,433","2.8","('Q3', 'Q3', 'Q2')","0.48","26.97" +"Silicon","1876-990X","1876-9918","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","8,884","2.8","('Q3', 'Q3')","0.47","2.42" +"Social Enterprise Journal","1750-8614","1750-8533","BUSINESS","('ESCI',)","866","2.8","Q2","0.47","15.63" +"TOPICS IN CATALYSIS","1022-5528","1572-9028","('CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL')","('SCIE', 'SCIE')","6,907","2.8","('Q2', 'Q3')","0.47","21.19" +"Healthcare Technology Letters","","2053-3713","ENGINEERING, BIOMEDICAL","('ESCI',)","673","2.8","Q3","0.46","77.97" +"JOURNAL OF PHYSICAL CHEMISTRY B","1520-6106","1520-5207","CHEMISTRY, PHYSICAL","('SCIE',)","90,920","2.8","Q3","0.46","12.63" +"Prosthesis","","2673-1592","MATERIALS SCIENCE, BIOMATERIALS","('ESCI',)","496","2.8","Q4","0.46","98.91" +"SN Applied Sciences","2523-3963","2523-3971","MULTIDISCIPLINARY SCIENCES","('ESCI',)","14,164","2.8","Q2","0.46","99.55" +"Corporate Communications","1356-3289","1758-6046","BUSINESS","('ESCI',)","1,758","2.8","Q2","0.45","10.00" +"CURRENT OPINION IN ONCOLOGY","1040-8746","1531-703X","ONCOLOGY","('SCIE',)","2,958","2.8","Q2","0.45","10.34" +"FLUID PHASE EQUILIBRIA","0378-3812","1879-0224","('CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","15,259","2.8","('Q3', 'Q2', 'Q2')","0.45","19.06" +"JOURNAL OF CHEMICAL TECHNOLOGY AND BIOTECHNOLOGY","0268-2575","1097-4660","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","13,372","2.8","('Q3', 'Q2', 'Q2', 'Q3')","0.45","10.09" +"PHYSICS TODAY","0031-9228","1945-0699","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","5,042","2.8","Q2","0.44","13.91" +"Processes","","2227-9717","ENGINEERING, CHEMICAL","('SCIE',)","27,045","2.8","Q2","0.44","99.69" +"European Journal for Sport and Society","1613-8171","2380-5919","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","537","2.8","Q2","0.43","24.56" +"ADSORPTION SCIENCE & TECHNOLOGY","0263-6174","2048-4038","('CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE', 'SCIE')","3,207","2.8","('Q2', 'Q3', 'Q2')","0.40","91.22" +"International Journal of Corrosion and Scale Inhibition","2305-6894","2305-6894","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","1,288","2.8","Q3","0.40","99.10" +"Journal of Chemistry","2090-9063","2090-9071","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","9,410","2.8","Q2","0.40","99.51" +"ChemEngineering","","2305-7084","ENGINEERING, CHEMICAL","('ESCI',)","1,176","2.8","Q2","0.39","99.66" +"Kunstliche Intelligenz","0933-1875","1610-1987","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","712","2.8","Q2","0.38","69.33" +"Iranian Journal of Catalysis","2252-0236","2252-0236","CHEMISTRY, PHYSICAL","('ESCI',)","608","2.8","Q3","0.36","0.00" +"Cell Division","","1747-1028","CELL BIOLOGY","('SCIE',)","597","2.8","Q3","0.35","100.00" +"Water Resources and Irrigation Management-WRIM","2316-6886","2316-6886","WATER RESOURCES","('ESCI',)","73","2.8","Q2","0.32","0.00" +"KNOWLEDGE ENGINEERING REVIEW","0269-8889","1469-8005","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","1,061","2.8","Q2","0.15","28.57" +"Psychology of Aesthetics Creativity and the Arts","1931-3896","1931-390X","('HUMANITIES, MULTIDISCIPLINARY', 'PSYCHOLOGY, EXPERIMENTAL')","('AHCI', 'SSCI')","3,344","2.7","('N/A', 'Q2')","4.33","1.71" +"SCIENCE AND ENGINEERING ETHICS","1353-3452","1471-5546","('ENGINEERING, MULTIDISCIPLINARY', 'ETHICS', 'HISTORY & PHILOSOPHY OF SCIENCE', 'MULTIDISCIPLINARY SCIENCES')","('SCIE', 'SSCI', 'SCIE', 'SCIE')","3,127","2.7","('Q1', 'Q1', 'Q1', 'Q2')","2.59","64.46" +"JOURNAL OF MULTILINGUAL AND MULTICULTURAL DEVELOPMENT","0143-4632","1747-7557","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","3,242","2.7","('N/A', 'Q1')","2.41","20.81" +"AMERICAN ANTIQUITY","0002-7316","2325-5064","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","3,874","2.7","('Q1', 'N/A')","2.11","53.10" +"THEORY CULTURE & SOCIETY","0263-2764","1460-3616","CULTURAL STUDIES","('AHCI', 'SSCI')","5,245","2.7","Q1","2.04","32.29" +"JOURNAL OF MARRIAGE AND FAMILY","0022-2445","1741-3737","('FAMILY STUDIES', 'SOCIOLOGY')","('SSCI', 'SSCI')","11,482","2.7","('Q1', 'Q1')","1.89","36.60" +"AMERICAN JOURNAL OF INTERNATIONAL LAW","0002-9300","2161-7953","('INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI')","2,674","2.7","('Q1', 'Q1')","1.86","26.32" +"European Security","0966-2839","1746-1545","('AREA STUDIES', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","688","2.7","('Q1', 'Q1', 'Q1')","1.81","61.39" +"European Policy Analysis","","2380-6567","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('ESCI', 'ESCI')","373","2.7","('Q1', 'Q2')","1.78","60.56" +"Research in Social Stratification and Mobility","0276-5624","1878-5654","SOCIOLOGY","('SSCI',)","1,745","2.7","Q1","1.72","33.94" +"LEARNING ENVIRONMENTS RESEARCH","1387-1579","1573-1855","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,186","2.7","Q1","1.69","33.10" +"ECNU Review of Education","2096-5311","2632-1742","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","445","2.7","Q1","1.60","90.38" +"Assessment in Education-Principles Policy & Practice","0969-594X","1465-329X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,618","2.7","Q1","1.58","32.93" +"EUROPEAN JOURNAL OF INTERNATIONAL RELATIONS","1354-0661","1460-3713","INTERNATIONAL RELATIONS","('SSCI',)","3,333","2.7","Q1","1.57","63.36" +"BMC Medical Education","","1472-6920","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('SSCI', 'SCIE')","15,181","2.7","('Q1', 'Q1')","1.52","99.84" +"European Political Science Review","1755-7739","1755-7747","POLITICAL SCIENCE","('SSCI',)","1,303","2.7","Q1","1.43","70.00" +"Psychological Trauma-Theory Research Practice and Policy","1942-9681","1942-969X","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","5,891","2.7","('Q2', 'Q2')","1.43","5.96" +"Journalism","1464-8849","1741-3001","COMMUNICATION","('SSCI',)","4,335","2.7","Q1","1.40","24.74" +"Media and Communication","2183-2439","2183-2439","COMMUNICATION","('SSCI',)","2,120","2.7","Q1","1.40","99.41" +"Sociological Science","","2330-6696","SOCIOLOGY","('SSCI',)","1,280","2.7","Q1","1.40","61.33" +"AMERICAN JOURNAL OF EMERGENCY MEDICINE","0735-6757","1532-8171","EMERGENCY MEDICINE","('SCIE',)","14,466","2.7","Q1","1.38","9.98" +"Pediatric Obesity","2047-6310","2047-6302","PEDIATRICS","('SCIE',)","3,246","2.7","Q1","1.38","20.28" +"Educational Management Administration & Leadership","1741-1432","1741-1440","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,555","2.7","Q1","1.37","25.47" +"CLINICAL SOCIAL WORK JOURNAL","0091-1674","1573-3343","SOCIAL WORK","('SSCI',)","1,304","2.7","Q1","1.35","14.29" +"Mass Communication and Society","1520-5436","1532-7825","COMMUNICATION","('SSCI',)","2,472","2.7","Q1","1.35","18.31" +"PHYSICA D-NONLINEAR PHENOMENA","0167-2789","1872-8022","('MATHEMATICS, APPLIED', 'PHYSICS, FLUIDS & PLASMAS', 'PHYSICS, MATHEMATICAL', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","13,419","2.7","('Q1', 'Q2', 'Q1', 'Q2')","1.35","29.83" +"Animals","2076-2615","2076-2615","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","36,989","2.7","('Q1', 'Q1')","1.33","99.54" +"CHAOS","1054-1500","1089-7682","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","13,337","2.7","('Q1', 'Q1')","1.33","15.12" +"SEDIMENTARY GEOLOGY","0037-0738","1879-0968","GEOLOGY","('SCIE',)","12,216","2.7","Q1","1.32","17.16" +"Equity & Excellence in Education","1066-5684","1547-3457","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,787","2.7","Q1","1.30","6.25" +"Journal of Interactive Media in Education","1365-893X","1365-893X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","415","2.7","Q1","1.28","100.00" +"JOURNAL OF STORED PRODUCTS RESEARCH","0022-474X","1879-1212","ENTOMOLOGY","('SCIE',)","5,002","2.7","Q1","1.28","10.99" +"Insects","","2075-4450","ENTOMOLOGY","('SCIE',)","13,260","2.7","Q1","1.26","99.78" +"BRITISH JOURNAL OF SOCIOLOGY","0007-1315","1468-4446","SOCIOLOGY","('SSCI',)","4,185","2.7","Q1","1.24","46.32" +"Cartilage","1947-6035","1947-6043","ORTHOPEDICS","('SCIE',)","2,282","2.7","Q1","1.24","53.35" +"EMERGENCY MEDICINE JOURNAL","1472-0205","1472-0213","EMERGENCY MEDICINE","('SCIE',)","5,878","2.7","Q1","1.23","21.22" +"JOURNAL OF SEX RESEARCH","0022-4499","1559-8519","('PSYCHOLOGY, CLINICAL', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","6,393","2.7","('Q2', 'Q1')","1.23","20.39" +"Perspectives on Public Management and Governance","2398-4910","2398-4929","PUBLIC ADMINISTRATION","('ESCI',)","571","2.7","Q2","1.23","17.57" +"AMERICAN JOURNAL OF ORTHODONTICS AND DENTOFACIAL ORTHOPEDICS","0889-5406","1097-6752","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","17,979","2.7","Q1","1.22","7.30" +"AMERICAN JOURNAL OF SURGERY","0002-9610","1879-1883","SURGERY","('SCIE',)","17,815","2.7","Q1","1.21","5.79" +"BROOKINGS PAPERS ON ECONOMIC ACTIVITY","0007-2303","1533-4465","ECONOMICS","('SSCI',)","3,744","2.7","Q1","1.21","0.00" +"Brain Structure & Function","1863-2653","1863-2661","('ANATOMY & MORPHOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","7,679","2.7","('Q1', 'Q3')","1.20","43.54" +"WORK EMPLOYMENT AND SOCIETY","0950-0170","1469-8722","('ECONOMICS', 'INDUSTRIAL RELATIONS & LABOR', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","4,351","2.7","('Q1', 'Q2', 'Q1')","1.19","54.50" +"Journal of Higher Education Policy and Management","1360-080X","1469-9508","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,611","2.7","Q1","1.18","25.71" +"JOURNAL OF ANIMAL SCIENCE","0021-8812","1525-3163","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","31,842","2.7","Q1","1.17","27.16" +"APPLIED NURSING RESEARCH","0897-1897","1532-8201","NURSING","('SCIE', 'SSCI')","3,217","2.7","Q1","1.16","13.24" +"Journal of Advanced Prosthodontics","2005-7806","2005-7814","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,652","2.7","Q1","1.16","93.46" +"INTERNATIONAL JOURNAL OF CONFLICT MANAGEMENT","1044-4068","1758-8545","COMMUNICATION","('SSCI',)","1,506","2.7","Q1","1.15","4.83" +"ACM TRANSACTIONS ON MATHEMATICAL SOFTWARE","0098-3500","1557-7295","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","4,691","2.7","('Q2', 'Q1')","1.14","2.40" +"DEVELOPMENTAL AND COMPARATIVE IMMUNOLOGY","0145-305X","1879-0089","('FISHERIES', 'IMMUNOLOGY', 'VETERINARY SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","10,378","2.7","('Q1', 'Q3', 'Q1', 'Q1')","1.14","12.65" +"HUMAN PATHOLOGY","0046-8177","1532-8392","PATHOLOGY","('SCIE',)","12,250","2.7","Q2","1.13","15.04" +"Astrodynamics","2522-008X","2522-0098","('ASTRONOMY & ASTROPHYSICS', 'ENGINEERING, AEROSPACE')","('ESCI', 'ESCI')","480","2.7","('Q2', 'Q1')","1.12","32.91" +"CORAL REEFS","0722-4028","1432-0975","MARINE & FRESHWATER BIOLOGY","('SCIE',)","7,631","2.7","Q1","1.12","36.97" +"Health Reports","0840-6529","1209-1367","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","1,574","2.7","Q2","1.08","0.00" +"IRISH VETERINARY JOURNAL","0368-0762","2046-0481","VETERINARY SCIENCES","('SCIE',)","805","2.7","Q1","1.08","100.00" +"JOURNAL OF FAMILY VIOLENCE","0885-7482","1573-2851","('FAMILY STUDIES', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","4,298","2.7","('Q1', 'Q2')","1.08","30.59" +"JOURNAL OF EUROPEAN SOCIAL POLICY","0958-9287","1461-7269","('PUBLIC ADMINISTRATION', 'SOCIAL ISSUES')","('SSCI', 'SSCI')","2,112","2.7","('Q2', 'Q1')","1.06","43.64" +"JOURNAL OF ORAL PATHOLOGY & MEDICINE","0904-2512","1600-0714","('DENTISTRY, ORAL SURGERY & MEDICINE', 'PATHOLOGY')","('SCIE', 'SCIE')","5,647","2.7","('Q1', 'Q2')","1.06","12.85" +"Dental and Medical Problems","1644-387X","2300-9020","('DENTISTRY, ORAL SURGERY & MEDICINE', 'MEDICINE, GENERAL & INTERNAL')","('ESCI', 'ESCI')","896","2.7","('Q1', 'Q1')","1.05","98.70" +"EUROPEAN JOURNAL OF PSYCHOLOGY OF EDUCATION","0256-2928","1878-5174","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","2,620","2.7","Q2","1.05","48.13" +"SOCIOLOGY OF HEALTH & ILLNESS","0141-9889","1467-9566","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","5,408","2.7","('Q2', 'Q2', 'Q1')","1.05","50.00" +"HEALTH EDUCATION & BEHAVIOR","1090-1981","1552-6127","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","5,425","2.7","Q2","1.04","17.73" +"TRANSPLANT INTERNATIONAL","0934-0874","1432-2277","('SURGERY', 'TRANSPLANTATION')","('SCIE', 'SCIE')","5,498","2.7","('Q1', 'Q2')","1.04","70.67" +"Annals of GIS","1947-5683","1947-5691","('GEOGRAPHY', 'GEOGRAPHY, PHYSICAL', 'REMOTE SENSING')","('ESCI', 'ESCI', 'ESCI')","834","2.7","('Q1', 'Q2', 'Q2')","1.03","100.00" +"BMC Psychology","","2050-7283","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","3,650","2.7","Q1","1.03","99.89" +"EMPLOYEE RELATIONS","0142-5455","1758-7069","('INDUSTRIAL RELATIONS & LABOR', 'MANAGEMENT')","('SSCI', 'SSCI')","2,471","2.7","('Q2', 'Q2')","1.03","10.53" +"PAEDIATRIC AND PERINATAL EPIDEMIOLOGY","0269-5022","1365-3016","('OBSTETRICS & GYNECOLOGY', 'PEDIATRICS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE', 'SCIE')","3,566","2.7","('Q2', 'Q1', 'Q2')","1.03","42.19" +"Public Relations Inquiry","2046-147X","2046-1488","COMMUNICATION","('ESCI',)","522","2.7","Q1","1.03","25.49" +"Work Aging and Retirement","2054-4642","2054-4650","('INDUSTRIAL RELATIONS & LABOR', 'MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI', 'SSCI')","878","2.7","('Q2', 'Q2', 'Q2')","1.03","30.16" +"Risk Management and Healthcare Policy","","1179-1594","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","3,610","2.7","('Q2', 'Q2')","1.02","99.09" +"PERITONEAL DIALYSIS INTERNATIONAL","0896-8608","1718-4304","UROLOGY & NEPHROLOGY","('SCIE',)","3,252","2.7","Q2","1.00","21.84" +"Inland Waters","2044-2041","2044-205X","('LIMNOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","1,177","2.7","('Q1', 'Q1')","0.99","27.62" +"European Journal of Oncology Nursing","1462-3889","1532-2122","('NURSING', 'ONCOLOGY')","('SCIE, SSCI', 'SCIE')","3,808","2.7","('Q1', 'Q3')","0.98","21.81" +"INORGANICA CHIMICA ACTA","0020-1693","1873-3255","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","15,185","2.7","Q2","0.98","6.98" +"Croatian Journal of Forest Engineering","1845-5719","1845-5719","FORESTRY","('SCIE',)","781","2.7","Q1","0.97","98.10" +"AIDS AND BEHAVIOR","1090-7165","1573-3254","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI')","12,068","2.7","('Q2', 'Q2')","0.96","26.08" +"AMERICAN MINERALOGIST","0003-004X","1945-3027","('GEOCHEMISTRY & GEOPHYSICS', 'MINERALOGY')","('SCIE', 'SCIE')","20,660","2.7","('Q2', 'Q2')","0.96","2.53" +"HPB","1365-182X","1477-2574","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","7,344","2.7","('Q2', 'Q1')","0.96","75.97" +"Psychological Injury & Law","1938-971X","1938-9728","PSYCHOLOGY, CLINICAL","('ESCI',)","563","2.7","Q2","0.96","25.00" +"SHOCK","1073-2322","1540-0514","('CRITICAL CARE MEDICINE', 'HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE', 'SURGERY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,253","2.7","('Q2', 'Q2', 'Q2', 'Q1')","0.96","17.66" +"Trees Forests and People","","2666-7193","FORESTRY","('ESCI',)","930","2.7","Q1","0.96","92.56" +"BRITISH JOURNAL OF BIOMEDICAL SCIENCE","0967-4845","2474-0896","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","866","2.7","Q2","0.95","70.73" +"EDUCATIONAL RESEARCH","0013-1881","1469-5847","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,470","2.7","Q1","0.95","53.95" +"JOURNAL OF EXPERIMENTAL PSYCHOLOGY-APPLIED","1076-898X","1939-2192","PSYCHOLOGY, APPLIED","('SSCI',)","2,752","2.7","Q2","0.94","4.74" +"JOURNAL OF NEPHROLOGY","1121-8428","1724-6059","UROLOGY & NEPHROLOGY","('SCIE',)","4,777","2.7","Q2","0.94","30.26" +"BIOLOGICAL PSYCHOLOGY","0301-0511","1873-6246","('BEHAVIORAL SCIENCES', 'PSYCHOLOGY', 'PSYCHOLOGY, BIOLOGICAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI', 'SSCI')","10,014","2.7","('Q1', 'Q2', 'Q2', 'Q2')","0.93","30.67" +"INTERNATIONAL JOURNAL OF URBAN AND REGIONAL RESEARCH","0309-1317","1468-2427","('GEOGRAPHY', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI')","6,156","2.7","('Q1', 'Q2', 'Q2')","0.93","37.13" +"INTERNATIONAL REVIEW OF ADMINISTRATIVE SCIENCES","0020-8523","1461-7226","PUBLIC ADMINISTRATION","('SSCI',)","2,268","2.7","Q2","0.93","25.28" +"MEDICAL MYCOLOGY","1369-3786","1460-2709","('INFECTIOUS DISEASES', 'MYCOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE', 'SCIE')","5,964","2.7","('Q3', 'Q2', 'Q1')","0.93","9.72" +"PATHOPHYSIOLOGY","0928-4680","1873-149X","PATHOLOGY","('ESCI',)","977","2.7","Q2","0.93","100.00" +"TISSUE & CELL","0040-8166","","('ANATOMY & MORPHOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","3,412","2.7","('Q1', 'Q3')","0.93","8.46" +"AGGRESSIVE BEHAVIOR","0096-140X","1098-2337","('BEHAVIORAL SCIENCES', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI')","3,673","2.7","('Q1', 'Q1')","0.92","29.11" +"BMC HEALTH SERVICES RESEARCH","","1472-6963","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","36,089","2.7","Q2","0.92","99.91" +"DENDROCHRONOLOGIA","1125-7865","1612-0051","('FORESTRY', 'GEOGRAPHY, PHYSICAL')","('SCIE', 'SCIE')","2,566","2.7","('Q1', 'Q2')","0.92","26.84" +"Frontiers in Forests and Global Change","","2624-893X","('ECOLOGY', 'FORESTRY')","('SCIE', 'SCIE')","2,744","2.7","('Q2', 'Q1')","0.92","99.62" +"INTERNATIONAL JOURNAL FOR NUMERICAL METHODS IN ENGINEERING","0029-5981","1097-0207","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","21,360","2.7","('Q1', 'Q1')","0.92","26.19" +"JOURNAL OF BIOMOLECULAR STRUCTURE & DYNAMICS","0739-1102","1538-0254","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","14,158","2.7","('Q3', 'Q2')","0.92","1.42" +"Prostate International","2287-8882","2287-903X","UROLOGY & NEPHROLOGY","('SCIE',)","644","2.7","Q2","0.92","97.20" +"Educational Measurement-Issues and Practice","0731-1745","1745-3992","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","1,165","2.7","('Q1', 'Q2')","0.91","15.79" +"Reproductive Medicine and Biology","1445-5781","1447-0578","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","1,603","2.7","('Q2', 'Q2')","0.91","59.89" +"Sports Health-A Multidisciplinary Approach","1941-7381","1941-0921","SPORT SCIENCES","('SCIE',)","3,707","2.7","Q1","0.91","12.54" +"Journal of Multidisciplinary Healthcare","1178-2390","1178-2390","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","4,025","2.7","Q2","0.90","98.80" +"JOURNAL OF PEDIATRIC PSYCHOLOGY","0146-8693","1465-735X","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","6,885","2.7","Q2","0.90","9.20" +"PEDIATRIC PULMONOLOGY","8755-6863","1099-0496","('PEDIATRICS', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","9,803","2.7","('Q1', 'Q2')","0.90","21.46" +"ATOMIC DATA AND NUCLEAR DATA TABLES","0092-640X","1090-2090","('PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'PHYSICS, NUCLEAR')","('SCIE', 'SCIE')","3,107","2.7","('Q2', 'Q2')","0.89","24.64" +"SUICIDE AND LIFE-THREATENING BEHAVIOR","0363-0234","1943-278X","('PSYCHIATRY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","5,217","2.7","('Q2', 'Q1')","0.89","18.93" +"JOURNAL OF APPLIED SPORT PSYCHOLOGY","1041-3200","1533-1571","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY', 'PSYCHOLOGY, APPLIED', 'SPORT SCIENCES')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","2,516","2.7","('Q2', 'Q2', 'Q2', 'Q1')","0.88","27.21" +"Journal of Land Use Science","1747-423X","1747-4248","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","955","2.7","Q1","0.88","76.83" +"Geochronology","","2628-3719","('GEOCHEMISTRY & GEOPHYSICS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","372","2.7","('Q2', 'Q2')","0.87","98.99" +"Infection Disease & Health","2468-0451","2468-0451","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","524","2.7","Q2","0.87","30.61" +"Journal of Attention Disorders","1087-0547","1557-1246","('PSYCHIATRY', 'PSYCHOLOGY, DEVELOPMENTAL')","('SCIE, SSCI', 'SSCI')","5,188","2.7","('Q2', 'Q2')","0.87","16.82" +"JOURNAL OF MOLECULAR GRAPHICS & MODELLING","1093-3263","1873-4243","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'CRYSTALLOGRAPHY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","12,044","2.7","('Q2', 'Q3', 'Q2', 'Q1', 'Q2')","0.87","5.64" +"Techniques in Coloproctology","1123-6337","1128-045X","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","3,462","2.7","('Q2', 'Q1')","0.87","25.79" +"AMERICAN JOURNAL OF CRITICAL CARE","1062-3264","1937-710X","('CRITICAL CARE MEDICINE', 'NURSING')","('SCIE', 'SCIE')","2,636","2.7","('Q2', 'Q1')","0.86","1.27" +"JOURNAL OF ANIMAL SCIENCE AND TECHNOLOGY","2672-0191","2055-0391","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","1,466","2.7","('Q1', 'Q1')","0.86","95.53" +"NMR IN BIOMEDICINE","0952-3480","1099-1492","('BIOPHYSICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE')","7,848","2.7","('Q2', 'Q2', 'Q1')","0.86","34.85" +"GEOSTANDARDS AND GEOANALYTICAL RESEARCH","1639-4488","1751-908X","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","3,056","2.7","Q2","0.85","26.03" +"Journal of Marine Science and Engineering","","2077-1312","('ENGINEERING, MARINE', 'ENGINEERING, OCEAN', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE')","16,286","2.7","('Q1', 'Q2', 'Q2')","0.85","99.95" +"Psychology of Men & Masculinities","1524-9220","1939-151X","PSYCHOLOGY, SOCIAL","('SSCI',)","2,545","2.7","Q2","0.85","3.75" +"AAPG BULLETIN","0149-1423","1558-9153","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","14,916","2.7","Q2","0.84","0.00" +"Applications in Plant Sciences","2168-0450","2168-0450","PLANT SCIENCES","('SCIE',)","1,567","2.7","Q2","0.84","71.19" +"JOURNAL OF CLUSTER SCIENCE","1040-7278","1572-8862","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","4,450","2.7","Q2","0.84","5.79" +"Journal of Public Affairs","1472-3891","1479-1854","PUBLIC ADMINISTRATION","('ESCI',)","2,838","2.7","Q2","0.84","7.77" +"Sustainable and Resilient Infrastructure","2378-9689","2378-9697","ENGINEERING, CIVIL","('ESCI',)","742","2.7","Q2","0.84","28.31" +"WORLD WIDE WEB-INTERNET AND WEB INFORMATION SYSTEMS","1386-145X","1573-1413","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","2,047","2.7","('Q2', 'Q2')","0.84","16.14" +"BOLETIN DE LA SOCIEDAD ESPANOLA DE CERAMICA Y VIDRIO","0366-3175","2173-0431","MATERIALS SCIENCE, CERAMICS","('SCIE',)","1,011","2.7","Q1","0.83","98.70" +"Health Economics Review","2191-1991","2191-1991","('ECONOMICS', 'HEALTH POLICY & SERVICES')","('SSCI', 'SSCI')","1,145","2.7","('Q1', 'Q2')","0.83","99.36" +"JOURNAL OF MARINE SYSTEMS","0924-7963","1879-1573","('GEOSCIENCES, MULTIDISCIPLINARY', 'MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE')","6,958","2.7","('Q2', 'Q1', 'Q2')","0.83","26.83" +"SOUTH AFRICAN JOURNAL OF BOTANY","0254-6299","1727-9321","PLANT SCIENCES","('SCIE',)","11,782","2.7","Q2","0.83","24.95" +"PRENATAL DIAGNOSIS","0197-3851","1097-0223","('GENETICS & HEREDITY', 'OBSTETRICS & GYNECOLOGY')","('SCIE', 'SCIE')","6,702","2.7","('Q2', 'Q2')","0.82","29.30" +"Stigma and Health","2376-6972","2376-6964","('PSYCHOLOGY, SOCIAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","1,177","2.7","('Q2', 'Q2')","0.82","3.73" +"TECTONOPHYSICS","0040-1951","1879-3266","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","30,168","2.7","Q2","0.82","21.61" +"AUDITING-A JOURNAL OF PRACTICE & THEORY","0278-0380","1558-7991","BUSINESS, FINANCE","('SSCI',)","3,964","2.7","Q2","0.81","0.00" +"Foundations and Trends in Databases","1931-7883","1931-7891","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","151","2.7","Q2","0.81","0.00" +"IEEE Open Journal of Engineering in Medicine and Biology","","2644-1276","ENGINEERING, BIOMEDICAL","('ESCI',)","374","2.7","Q3","0.81","98.91" +"JOURNAL OF COMMUNITY & APPLIED SOCIAL PSYCHOLOGY","1052-9284","1099-1298","PSYCHOLOGY, SOCIAL","('SSCI',)","2,093","2.7","Q2","0.81","48.74" +"AMERICAN JOURNAL OF DRUG AND ALCOHOL ABUSE","0095-2990","1097-9891","('PSYCHOLOGY, CLINICAL', 'SUBSTANCE ABUSE')","('SSCI', 'SCIE, SSCI')","3,367","2.7","('Q2', 'Q2')","0.80","7.25" +"JOURNAL OF PLANT RESEARCH","0918-9440","1618-0860","PLANT SCIENCES","('SCIE',)","3,662","2.7","Q2","0.80","20.80" +"Clinical and Translational Radiation Oncology","","2405-6308","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","1,801","2.7","('Q3', 'Q2')","0.79","78.93" +"Ecosphere","2150-8925","2150-8925","ECOLOGY","('SCIE',)","12,845","2.7","Q2","0.79","71.33" +"Journal of Urban Mobility","2667-0917","2667-0917","('GEOGRAPHY', 'REGIONAL & URBAN PLANNING', 'TRANSPORTATION')","('ESCI', 'ESCI', 'ESCI')","145","2.7","('Q1', 'Q2', 'Q3')","0.79","86.76" +"Journal of Policy Research in Tourism Leisure and Events","1940-7963","1940-7971","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","799","2.7","Q2","0.78","16.54" +"MEASUREMENT SCIENCE and TECHNOLOGY","0957-0233","1361-6501","('ENGINEERING, MULTIDISCIPLINARY', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","17,986","2.7","('Q1', 'Q2')","0.78","12.71" +"Womens Health","1745-5057","1745-5065","OBSTETRICS & GYNECOLOGY","('ESCI',)","2,120","2.7","Q2","0.78","92.13" +"American Journal of Alzheimers Disease and Other Dementias","1533-3175","1938-2731","('CLINICAL NEUROLOGY', 'GERIATRICS & GERONTOLOGY')","('SCIE', 'SCIE')","2,582","2.7","('Q2', 'Q3')","0.77","90.00" +"Analytical Methods","1759-9660","1759-9679","('CHEMISTRY, ANALYTICAL', 'FOOD SCIENCE & TECHNOLOGY', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE')","19,606","2.7","('Q2', 'Q2', 'Q1')","0.77","7.45" +"BEHAVIOURAL NEUROLOGY","0953-4180","1875-8584","CLINICAL NEUROLOGY","('SCIE',)","2,196","2.7","Q2","0.77","100.00" +"COMPUTER GRAPHICS FORUM","0167-7055","1467-8659","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","9,599","2.7","Q2","0.77","28.26" +"JOURNAL OF STEROID BIOCHEMISTRY AND MOLECULAR BIOLOGY","0960-0760","1879-1220","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","10,925","2.7","('Q3', 'Q3')","0.77","24.69" +"AMERICAN JOURNAL OF INDUSTRIAL MEDICINE","0271-3586","1097-0274","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","5,675","2.7","Q2","0.76","19.84" +"JOURNAL OF ASIAN EARTH SCIENCES","1367-9120","1878-5786","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","18,781","2.7","Q2","0.76","5.11" +"Journal of the Academy of Consultation-Liaison Psychiatry","2667-2960","2667-2960","('PSYCHIATRY', 'PSYCHOLOGY')","('SCIE, SSCI', 'SCIE')","397","2.7","('Q2', 'Q2')","0.76","12.99" +"VINE Journal of Information and Knowledge Management Systems","2059-5891","1474-1032","('INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('ESCI', 'ESCI')","1,055","2.7","('Q2', 'Q2')","0.76","3.23" +"Arctic Science","","2368-7460","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","683","2.7","('Q2', 'Q3')","0.75","93.79" +"JOURNAL OF NEUROSCIENCE METHODS","0165-0270","1872-678X","('BIOCHEMICAL RESEARCH METHODS', 'NEUROSCIENCES')","('SCIE', 'SCIE')","17,890","2.7","('Q2', 'Q3')","0.75","37.25" +"INTERNATIONAL JOURNAL FOR QUALITY IN HEALTH CARE","1353-4505","1464-3677","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","8,316","2.7","('Q2', 'Q2')","0.74","34.43" +"International Journal of Mining Reclamation and Environment","1748-0930","1748-0949","('ENVIRONMENTAL SCIENCES', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE')","1,051","2.7","('Q3', 'Q2')","0.74","10.66" +"SEIZURE-EUROPEAN JOURNAL OF EPILEPSY","1059-1311","1532-2688","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","8,354","2.7","('Q2', 'Q3')","0.74","75.26" +"Geobiology","1472-4677","1472-4669","('BIOLOGY', 'ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","2,472","2.7","('Q2', 'Q3', 'Q2')","0.73","33.07" +"NEUROLOGICAL SCIENCES","1590-1874","1590-3478","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","11,450","2.7","('Q2', 'Q3')","0.73","23.61" +"OncoTargets and Therapy","1178-6930","1178-6930","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","15,604","2.7","('Q3', 'Q3')","0.73","96.46" +"PSYCHOLOGICA BELGICA","0033-2879","0033-2879","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","732","2.7","Q1","0.73","98.36" +"STRAHLENTHERAPIE UND ONKOLOGIE","0179-7158","1439-099X","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","3,545","2.7","('Q3', 'Q2')","0.73","58.23" +"Frontiers in Neurology","1664-2295","1664-2295","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","39,260","2.7","('Q2', 'Q3')","0.72","99.59" +"International Journal of Emerging Markets","1746-8809","1746-8817","('BUSINESS', 'ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","3,054","2.7","('Q2', 'Q1', 'Q2')","0.72","3.89" +"International Journal of Tryptophan Research","1178-6469","1178-6469","NEUROSCIENCES","('ESCI',)","859","2.7","Q3","0.72","92.86" +"NEUROPHYSIOLOGIE CLINIQUE-CLINICAL NEUROPHYSIOLOGY","0987-7053","1769-7131","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,827","2.7","('Q2', 'Q3', 'Q2')","0.72","30.60" +"Aging Male","1368-5538","1473-0790","('ENDOCRINOLOGY & METABOLISM', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","1,486","2.7","('Q3', 'Q2')","0.71","88.89" +"Brain Sciences","","2076-3425","NEUROSCIENCES","('SCIE',)","16,576","2.7","Q3","0.71","99.54" +"ECOHYDROLOGY & HYDROBIOLOGY","1642-3593","2080-3397","('ECOLOGY', 'WATER RESOURCES')","('SCIE', 'SCIE')","1,226","2.7","('Q2', 'Q2')","0.71","6.55" +"Health Information Management Journal","1833-3583","1833-3575","('HEALTH POLICY & SERVICES', 'MEDICAL INFORMATICS')","('SSCI', 'SCIE')","607","2.7","('Q2', 'Q3')","0.71","23.53" +"HUMAN & EXPERIMENTAL TOXICOLOGY","0960-3271","1477-0903","TOXICOLOGY","('SCIE',)","5,450","2.7","Q3","0.71","50.35" +"JOURNAL OF BIOLOGICAL INORGANIC CHEMISTRY","0949-8257","1432-1327","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, INORGANIC & NUCLEAR')","('SCIE', 'SCIE')","4,297","2.7","('Q3', 'Q2')","0.71","26.60" +"BRAIN RESEARCH","0006-8993","1872-6240","NEUROSCIENCES","('SCIE',)","42,170","2.7","Q3","0.70","19.54" +"CANCER CHEMOTHERAPY AND PHARMACOLOGY","0344-5704","1432-0843","('ONCOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","9,563","2.7","('Q3', 'Q2')","0.70","28.97" +"eNeuro","","2373-2822","NEUROSCIENCES","('SCIE',)","6,832","2.7","Q3","0.70","99.33" +"JBI Evidence Implementation","2691-3321","2691-3321","('HEALTH CARE SCIENCES & SERVICES', 'MEDICINE, GENERAL & INTERNAL')","('SCIE', 'SCIE')","302","2.7","('Q2', 'Q1')","0.70","7.35" +"Nanoscale and Microscale Thermophysical Engineering","1556-7265","1556-7273","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","639","2.7","('Q2', 'Q2', 'Q3', 'Q2', 'Q2')","0.70","2.44" +"PSYCHIATRIC QUARTERLY","0033-2720","1573-6709","PSYCHIATRY","('SSCI',)","2,474","2.7","Q2","0.70","19.79" +"SLAS Discovery","2472-5552","2472-5560","('BIOCHEMICAL RESEARCH METHODS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE', 'SCIE')","1,603","2.7","('Q2', 'Q3', 'Q2')","0.70","92.31" +"GRASS AND FORAGE SCIENCE","0142-5242","1365-2494","AGRONOMY","('SCIE',)","2,538","2.7","Q1","0.69","30.00" +"International Journal of Mechanics and Materials in Design","1569-1713","1573-8841","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","1,304","2.7","('Q2', 'Q3', 'Q2')","0.69","8.64" +"Journal of Water and Climate Change","2040-2244","2408-9354","WATER RESOURCES","('SCIE',)","2,613","2.7","Q2","0.69","99.74" +"NEUROINFORMATICS","1539-2791","1559-0089","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'NEUROSCIENCES')","('SCIE', 'SCIE')","2,099","2.7","('Q2', 'Q3')","0.69","43.18" +"Brain Tumor Pathology","1433-7398","1861-387X","('CLINICAL NEUROLOGY', 'ONCOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","762","2.7","('Q2', 'Q3', 'Q2')","0.68","12.33" +"Laboratory Animal Research","1738-6055","2233-7660","('MEDICINE, RESEARCH & EXPERIMENTAL', 'VETERINARY SCIENCES')","('ESCI', 'ESCI')","829","2.7","('Q3', 'Q1')","0.68","100.00" +"TRANSFUSION MEDICINE REVIEWS","0887-7963","1532-9496","HEMATOLOGY","('SCIE',)","1,621","2.7","Q2","0.68","17.44" +"EUROPEAN JOURNAL OF NEUROSCIENCE","0953-816X","1460-9568","NEUROSCIENCES","('SCIE',)","22,394","2.7","Q3","0.67","36.63" +"Frontiers of Information Technology & Electronic Engineering","2095-9184","2095-9230","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","2,341","2.7","('Q2', 'Q2', 'Q2')","0.67","1.61" +"JOURNAL OF BACTERIOLOGY","0021-9193","1098-5530","MICROBIOLOGY","('SCIE',)","53,105","2.7","Q3","0.67","16.94" +"CEREBELLUM","1473-4222","1473-4230","NEUROSCIENCES","('SCIE',)","4,116","2.7","Q3","0.66","33.51" +"IEEE TRANSACTIONS ON COMPUTER-AIDED DESIGN OF INTEGRATED CIRCUITS AND SYSTEMS","0278-0070","1937-4151","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","8,761","2.7","('Q2', 'Q2', 'Q2')","0.66","8.71" +"INTERNATIONAL JOURNAL OF COSMETIC SCIENCE","0142-5463","1468-2494","DERMATOLOGY","('SCIE',)","3,476","2.7","Q2","0.66","25.34" +"NEUROMUSCULAR DISORDERS","0960-8966","1873-2364","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","5,866","2.7","('Q2', 'Q3')","0.66","26.53" +"Surface Innovations","2050-6252","2050-6260","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, COATINGS & FILMS')","('SCIE', 'SCIE')","758","2.7","('Q3', 'Q2')","0.66","3.57" +"Vaccine: X","2590-1362","2590-1362","('IMMUNOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('ESCI', 'ESCI')","598","2.7","('Q3', 'Q3')","0.66","95.15" +"VIBRATIONAL SPECTROSCOPY","0924-2031","1873-3697","('CHEMISTRY, ANALYTICAL', 'CHEMISTRY, PHYSICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE')","4,885","2.7","('Q2', 'Q3', 'Q1')","0.66","7.38" +"International Journal of Chronic Obstructive Pulmonary Disease","1178-2005","1178-2005","RESPIRATORY SYSTEM","('SCIE',)","8,096","2.7","Q2","0.65","97.94" +"International Journal of Culture Tourism and Hospitality Research","1750-6182","1750-6190","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,133","2.7","Q2","0.65","7.55" +"JOURNAL OF APPLIED TOXICOLOGY","0260-437X","1099-1263","TOXICOLOGY","('SCIE',)","6,387","2.7","Q3","0.65","13.82" +"Drug Metabolism and Pharmacokinetics","1347-4367","1880-0920","PHARMACOLOGY & PHARMACY","('SCIE',)","1,987","2.7","Q2","0.64","36.49" +"Hellenic Journal of Cardiology","1109-9666","2241-5955","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,051","2.7","Q2","0.64","100.00" +"Journal of Pharmaceutical Innovation","1872-5120","1939-8042","PHARMACOLOGY & PHARMACY","('SCIE',)","1,556","2.7","Q2","0.64","10.66" +"JOURNAL OF THE OPERATIONAL RESEARCH SOCIETY","0160-5682","1476-9360","('MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SSCI', 'SCIE')","9,124","2.7","('Q2', 'Q2')","0.64","10.49" +"KAOHSIUNG JOURNAL OF MEDICAL SCIENCES","1607-551X","2410-8650","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","2,939","2.7","Q3","0.64","87.50" +"Sports Coaching Review","2164-0629","2164-0637","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","462","2.7","Q2","0.64","38.46" +"Earth Science Informatics","1865-0473","1865-0481","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,321","2.7","('Q2', 'Q2')","0.63","5.69" +"Express Polymer Letters","1788-618X","1788-618X","POLYMER SCIENCE","('SCIE',)","3,282","2.7","Q2","0.63","100.00" +"JOURNAL OF APPLIED PHYSICS","0021-8979","1089-7550","PHYSICS, APPLIED","('SCIE',)","144,351","2.7","Q2","0.63","20.56" +"JOURNAL OF NON-NEWTONIAN FLUID MECHANICS","0377-0257","1873-2631","MECHANICS","('SCIE',)","7,050","2.7","Q2","0.63","27.19" +"JOURNAL OF ORGANIZATIONAL CHANGE MANAGEMENT","0953-4814","1758-7816","MANAGEMENT","('SSCI',)","2,680","2.7","Q2","0.63","12.21" +"JOURNAL OF CANCER RESEARCH AND CLINICAL ONCOLOGY","0171-5216","1432-1335","ONCOLOGY","('SCIE',)","11,498","2.7","Q3","0.62","35.02" +"Journal of ISAKOS Joint Disorders & Orthopaedic Sports Medicine","2059-7754","2059-7762","('ORTHOPEDICS', 'SPORT SCIENCES')","('ESCI', 'ESCI')","532","2.7","('Q1', 'Q1')","0.62","77.58" +"BASIC & CLINICAL PHARMACOLOGY & TOXICOLOGY","1742-7835","1742-7843","('PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE')","5,523","2.7","('Q2', 'Q3')","0.61","39.21" +"JOURNAL OF PHYSICAL CHEMISTRY A","1089-5639","1520-5215","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","58,282","2.7","('Q3', 'Q2')","0.61","12.09" +"MAMMALIAN GENOME","0938-8990","1432-1777","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","2,542","2.7","('Q3', 'Q3', 'Q2')","0.60","40.88" +"MATERIALS LETTERS","0167-577X","1873-4979","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","56,850","2.7","('Q3', 'Q2')","0.60","3.75" +"Scientific African","2468-2276","2468-2276","MULTIDISCIPLINARY SCIENCES","('ESCI',)","4,507","2.7","Q2","0.60","97.35" +"BioTech","","2673-6284","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('ESCI',)","287","2.7","Q3","0.59","100.00" +"BULLETIN OF ENVIRONMENTAL CONTAMINATION AND TOXICOLOGY","0007-4861","1432-0800","('ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('SCIE', 'SCIE')","9,731","2.7","('Q3', 'Q3')","0.59","5.01" +"CNS & Neurological Disorders-Drug Targets","1871-5273","1996-3181","('NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","3,551","2.7","('Q3', 'Q2')","0.59","0.72" +"Journal of Information and Telecommunication","2475-1839","2475-1847","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI', 'ESCI')","350","2.7","('Q2', 'Q2', 'Q3')","0.59","97.92" +"JOURNAL OF MARINE SCIENCE AND TECHNOLOGY","0948-4280","1437-8213","('ENGINEERING, CIVIL', 'ENGINEERING, MARINE')","('SCIE', 'SCIE')","2,499","2.7","('Q2', 'Q1')","0.59","19.25" +"ORGANIC ELECTRONICS","1566-1199","1878-5530","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","11,044","2.7","('Q3', 'Q2')","0.59","7.07" +"PHOTOCHEMICAL & PHOTOBIOLOGICAL SCIENCES","1474-905X","1474-9092","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CHEMISTRY, PHYSICAL')","('SCIE', 'SCIE', 'SCIE')","7,811","2.7","('Q3', 'Q2', 'Q3')","0.59","33.87" +"SOLAR PHYSICS","0038-0938","1573-093X","ASTRONOMY & ASTROPHYSICS","('SCIE',)","12,013","2.7","Q2","0.59","33.62" +"Clinical Medicine Insights-Endocrinology and Diabetes","1179-5514","1179-5514","ENDOCRINOLOGY & METABOLISM","('ESCI',)","382","2.7","Q3","0.58","98.53" +"Current Research in Structural Biology","","2665-928X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CELL BIOLOGY')","('ESCI', 'ESCI', 'ESCI')","235","2.7","('Q3', 'Q2', 'Q3')","0.58","100.00" +"Developmental Neurobiology","1932-8451","1932-846X","('DEVELOPMENTAL BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","2,720","2.7","('Q2', 'Q3')","0.58","34.00" +"EXPERIMENTAL ASTRONOMY","0922-6435","1572-9508","ASTRONOMY & ASTROPHYSICS","('SCIE',)","1,475","2.7","Q2","0.58","57.52" +"Palliative Care & Social Practice","2632-3524","2632-3524","('HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","258","2.7","('Q2', 'Q2')","0.58","94.02" +"PSYCHIATRY-INTERPERSONAL AND BIOLOGICAL PROCESSES","0033-2747","1943-281X","PSYCHIATRY","('SCIE', 'SSCI')","2,129","2.7","Q2","0.58","7.69" +"DATA & KNOWLEDGE ENGINEERING","0169-023X","1872-6933","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","1,575","2.7","('Q3', 'Q2')","0.57","26.63" +"DRYING TECHNOLOGY","0737-3937","1532-2300","('ENGINEERING, CHEMICAL', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","8,815","2.7","('Q3', 'Q2')","0.57","4.69" +"Footwear Science","1942-4280","1942-4299","ERGONOMICS","('ESCI',)","551","2.7","Q2","0.57","17.14" +"NUTRITION BULLETIN","1471-9827","1467-3010","NUTRITION & DIETETICS","('SCIE',)","1,470","2.7","Q3","0.57","43.36" +"Endocrinology Diabetes & Metabolism","","2398-9238","ENDOCRINOLOGY & METABOLISM","('ESCI',)","879","2.7","Q3","0.56","77.41" +"IMMUNOLOGY AND ALLERGY CLINICS OF NORTH AMERICA","0889-8561","1557-8607","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","2,157","2.7","('Q2', 'Q3')","0.56","11.95" +"Journal of Clinical Hypertension","1524-6175","1751-7176","PERIPHERAL VASCULAR DISEASE","('SCIE',)","5,569","2.7","Q2","0.56","67.53" +"Tissue Engineering Part C-Methods","1937-3384","1937-3392","('CELL & TISSUE ENGINEERING', 'CELL BIOLOGY', 'ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","3,174","2.7","('Q3', 'Q3', 'Q3', 'Q4')","0.56","9.55" +"TRANSGENIC RESEARCH","0962-8819","1573-9368","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,474","2.7","('Q2', 'Q3', 'Q3')","0.56","35.00" +"ENVIRONMENTAL MANAGEMENT","0364-152X","1432-1009","ENVIRONMENTAL SCIENCES","('SCIE',)","11,722","2.7","Q3","0.55","32.60" +"INDIAN JOURNAL OF MEDICAL RESEARCH","0971-5916","0971-5916","('IMMUNOLOGY', 'MEDICINE, GENERAL & INTERNAL', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE')","7,664","2.7","('Q3', 'Q1', 'Q3')","0.55","92.88" +"International Journal of Food Science","2356-7015","2314-5765","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('ESCI', 'ESCI')","1,658","2.7","('Q2', 'Q3')","0.55","100.00" +"International Journal of Quality & Reliability Management","0265-671X","1758-6682","MANAGEMENT","('ESCI',)","3,377","2.7","Q2","0.55","5.66" +"JOURNAL OF APPLIED POLYMER SCIENCE","0021-8995","1097-4628","POLYMER SCIENCE","('SCIE',)","64,363","2.7","Q2","0.55","5.99" +"JOURNAL OF CHEMICAL NEUROANATOMY","0891-0618","1873-6300","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","2,898","2.7","('Q3', 'Q3')","0.55","11.45" +"Infrastructures","","2412-3811","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","1,865","2.7","('Q2', 'Q2', 'Q2')","0.54","99.81" +"Journal of Arid Land","1674-6767","2194-7783","ENVIRONMENTAL SCIENCES","('SCIE',)","2,063","2.7","Q3","0.54","5.26" +"JOURNAL OF HUMAN HYPERTENSION","0950-9240","1476-5527","PERIPHERAL VASCULAR DISEASE","('SCIE',)","5,108","2.7","Q2","0.54","27.70" +"NEURAL COMPUTATION","0899-7667","1530-888X","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'NEUROSCIENCES')","('SCIE', 'SCIE')","21,132","2.7","('Q3', 'Q3')","0.54","9.73" +"AIMS Microbiology","2471-1888","2471-1888","MICROBIOLOGY","('ESCI',)","1,584","2.7","Q3","0.53","96.30" +"Architectural Engineering and Design Management","1745-2007","1752-7589","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","1,144","2.7","('Q2', 'Q2')","0.53","8.97" +"Immunological Medicine","","2578-5826","('IMMUNOLOGY', 'RHEUMATOLOGY')","('ESCI', 'ESCI')","422","2.7","('Q3', 'Q2')","0.53","98.89" +"Journal of Imaging","","2313-433X","IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY","('ESCI',)","3,272","2.7","Q3","0.53","99.66" +"MOLECULAR REPRODUCTION AND DEVELOPMENT","1040-452X","1098-2795","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,386","2.7","('Q3', 'Q3', 'Q2', 'Q2')","0.53","17.49" +"NEW JOURNAL OF CHEMISTRY","1144-0546","1369-9261","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","48,262","2.7","Q2","0.53","2.34" +"ELECTROANALYSIS","1040-0397","1521-4109","('CHEMISTRY, ANALYTICAL', 'ELECTROCHEMISTRY')","('SCIE', 'SCIE')","10,989","2.7","('Q2', 'Q3')","0.52","7.70" +"JOURNAL OF CONSUMER MARKETING","0736-3761","2052-1200","BUSINESS","('ESCI',)","4,366","2.7","Q2","0.52","2.67" +"Journal of the Korean Ceramic Society","1229-7801","2234-0491","MATERIALS SCIENCE, CERAMICS","('SCIE',)","1,490","2.7","Q1","0.52","2.88" +"ACTA ONCOLOGICA","0284-186X","1651-226X","ONCOLOGY","('SCIE',)","8,806","2.7","Q3","0.51","34.24" +"Evolving Systems","1868-6478","1868-6486","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","1,001","2.7","Q3","0.51","5.48" +"GLYCOCONJUGATE JOURNAL","0282-0080","1573-4986","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","2,637","2.7","Q3","0.51","22.56" +"Journal of Material Cycles and Waste Management","1438-4957","1611-8227","ENVIRONMENTAL SCIENCES","('SCIE',)","5,056","2.7","Q3","0.51","11.22" +"Modeling Earth Systems and Environment","2363-6203","2363-6211","ENVIRONMENTAL SCIENCES","('ESCI',)","5,226","2.7","Q3","0.51","5.81" +"Pathogens and Disease","2049-632X","2049-632X","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,463","2.7","('Q3', 'Q3', 'Q3')","0.51","19.01" +"TECHNOLOGY IN CANCER RESEARCH & TREATMENT","1533-0346","1533-0338","ONCOLOGY","('SCIE',)","4,688","2.7","Q3","0.51","91.82" +"ENVIRONMENTAL MODELING & ASSESSMENT","1420-2026","1573-2967","ENVIRONMENTAL SCIENCES","('SCIE',)","1,598","2.7","Q3","0.50","14.93" +"Genes and Environment","1880-7046","1880-7062","('GENETICS & HEREDITY', 'TOXICOLOGY')","('SCIE', 'SCIE')","600","2.7","('Q2', 'Q3')","0.50","100.00" +"Micro and Nanostructures","","2773-0123","PHYSICS, CONDENSED MATTER","('SCIE',)","819","2.7","Q2","0.50","1.96" +"Review of Education","2049-6613","2049-6613","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","756","2.7","Q1","0.50","41.83" +"Australasian Journal of Information Systems","1449-8618","1326-2238","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","649","2.7","Q2","0.49","88.46" +"JOURNAL OF FOOD PROCESS ENGINEERING","0145-8876","1745-4530","('ENGINEERING, CHEMICAL', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","5,947","2.7","('Q3', 'Q2')","0.49","2.89" +"Hamostaseologie","0720-9355","2567-5761","HEMATOLOGY","('SCIE',)","808","2.7","Q2","0.48","14.29" +"JOURNAL OF ADHESION SCIENCE AND TECHNOLOGY","0169-4243","1568-5616","('ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","6,217","2.7","('Q3', 'Q3', 'Q2')","0.48","3.73" +"Clinical Lymphoma Myeloma & Leukemia","2152-2650","2152-2669","('HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","4,083","2.7","('Q2', 'Q3')","0.47","19.43" +"Expert Review of Endocrinology & Metabolism","1744-6651","1744-8417","ENDOCRINOLOGY & METABOLISM","('ESCI',)","1,051","2.7","Q3","0.47","14.39" +"MACHINING SCIENCE AND TECHNOLOGY","1091-0344","1532-2483","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","1,507","2.7","('Q2', 'Q2', 'Q3')","0.47","0.00" +"Retrovirology","","1742-4690","VIROLOGY","('SCIE',)","2,850","2.7","Q3","0.47","100.00" +"ASIAN JOURNAL OF CONTROL","1561-8625","1934-6093","AUTOMATION & CONTROL SYSTEMS","('SCIE',)","4,354","2.7","Q2","0.46","2.19" +"Environmental Research: Infrastructure and Sustainability","","2634-4505","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","268","2.7","('Q3', 'Q2', 'Q3')","0.46","99.31" +"Transportation Safety and Environment","","2631-4428","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","423","2.7","Q2","0.46","88.72" +"Ceramics-Switzerland","2571-6131","2571-6131","('MATERIALS SCIENCE, CERAMICS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","649","2.7","('Q1', 'Q3')","0.45","100.00" +"JOURNAL OF MATERIALS RESEARCH","0884-2914","2044-5326","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","19,512","2.7","Q3","0.44","17.00" +"Medicina Intensiva","0210-5691","1578-6749","CRITICAL CARE MEDICINE","('SCIE',)","1,205","2.7","Q2","0.44","5.33" +"EXPERT OPINION ON EMERGING DRUGS","1472-8214","1744-7623","PHARMACOLOGY & PHARMACY","('SCIE',)","871","2.7","Q2","0.43","6.98" +"Immunotherapy","1750-743X","1750-7448","IMMUNOLOGY","('SCIE',)","3,184","2.7","Q3","0.42","19.84" +"Journal of Electrochemical Energy Conversion and Storage","2381-6872","2381-6910","('ELECTROCHEMISTRY', 'ENERGY & FUELS')","('SCIE', 'SCIE')","877","2.7","('Q3', 'Q3')","0.42","1.40" +"Current Hematologic Malignancy Reports","1558-8211","1558-822X","('HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","1,299","2.7","('Q2', 'Q3')","0.41","10.17" +"Electrocatalysis","1868-2529","1868-5994","('CHEMISTRY, PHYSICAL', 'ELECTROCHEMISTRY')","('SCIE', 'SCIE')","1,797","2.7","('Q3', 'Q3')","0.41","9.87" +"TRANSPORT IN POROUS MEDIA","0169-3913","1573-1634","ENGINEERING, CHEMICAL","('SCIE',)","7,918","2.7","Q3","0.41","35.20" +"Frontiers in Medical Technology","","2673-3129","ENGINEERING, BIOMEDICAL","('ESCI',)","636","2.7","Q3","0.39","100.00" +"Nano Express","","2632-959X","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('ESCI', 'ESCI', 'ESCI')","845","2.7","('Q3', 'Q3', 'Q2')","0.39","99.47" +"Journal of Nanofluids","2169-432X","2169-4338","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","1,564","2.7","Q3","0.36","0.00" +"CORROSION REVIEWS","0334-6005","2191-0316","('ELECTROCHEMISTRY', 'MATERIALS SCIENCE, COATINGS & FILMS', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE', 'SCIE')","1,331","2.7","('Q3', 'Q2', 'Q2')","0.35","3.13" +"REVISTA ESPANOLA DE ENFERMEDADES DIGESTIVAS","1130-0108","2340-4167","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","2,041","2.7","Q2","0.35","97.58" +"PARTICLE & PARTICLE SYSTEMS CHARACTERIZATION","0934-0866","1521-4117","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,325","2.7","('Q3', 'Q3', 'Q3')","0.34","15.95" +"Fuels","","2673-3994","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('ESCI', 'ESCI')","225","2.7","('Q3', 'Q3')","0.32","100.00" +"Greenhouse Gases-Science and Technology","2152-3878","2152-3878","('ENERGY & FUELS', 'ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE')","1,603","2.7","('Q3', 'Q3', 'Q3')","0.30","16.29" +"Nucleus","1949-1034","1949-1042","CELL BIOLOGY","('SCIE',)","1,265","2.7","Q3","0.29","100.00" +"ELECTROCHEMISTRY","1344-3542","2186-2451","ELECTROCHEMISTRY","('SCIE',)","2,071","2.7","Q3","0.25","99.34" +"Colorectal Cancer","1758-194X","1758-1958","ONCOLOGY","('ESCI',)","118","2.7","Q3","0.23","71.43" +"Philosophy Psychiatry & Psychology","1071-6076","1086-3303","PHILOSOPHY","('ESCI',)","649","2.6","","3.02","0.00" +"JOURNAL OF INTERNATIONAL ECONOMIC LAW","1369-3034","1464-3758","LAW","('SSCI',)","1,131","2.6","Q1","2.90","31.97" +"International Data Privacy Law","2044-3994","2044-4001","LAW","('SSCI',)","562","2.6","Q1","2.86","48.53" +"Transnational Environmental Law","2047-1025","2047-1033","('ENVIRONMENTAL STUDIES', 'LAW')","('SSCI', 'SSCI')","607","2.6","('Q2', 'Q1')","2.80","57.35" +"INVENTIONES MATHEMATICAE","0020-9910","1432-1297","MATHEMATICS","('SCIE',)","11,404","2.6","Q1","2.49","38.61" +"Ornithological Applications","0010-5422","2732-4621","ORNITHOLOGY","('SCIE',)","333","2.6","Q1","2.13","24.84" +"Heritage Science","2050-7445","2050-7445","('CHEMISTRY, ANALYTICAL', 'HUMANITIES, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'SPECTROSCOPY')","('SCIE', 'AHCI', 'SCIE', 'SCIE')","2,630","2.6","('Q2', 'N/A', 'Q3', 'Q2')","1.95","100.00" +"Family Medicine and Community Health","2305-6983","2009-8774","PRIMARY HEALTH CARE","('ESCI',)","980","2.6","Q1","1.82","100.00" +"EAR AND HEARING","0196-0202","1538-4667","('AUDIOLOGY & SPEECH', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE')","7,836","2.6","('Q1', 'Q1')","1.77","23.82" +"European Journal of Special Needs Education","0885-6257","1469-591X","EDUCATION, SPECIAL","('SSCI',)","1,888","2.6","Q1","1.76","40.10" +"European Journal of Higher Education","2156-8235","2156-8243","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","653","2.6","Q1","1.71","45.24" +"JOURNAL OF ARCHAEOLOGICAL SCIENCE","0305-4403","1095-9238","('ANTHROPOLOGY', 'ARCHAEOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SSCI', 'AHCI', 'SCIE')","15,390","2.6","('Q1', 'N/A', 'Q2')","1.71","43.01" +"EXPLORATIONS IN ECONOMIC HISTORY","0014-4983","1090-2457","('ECONOMICS', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","1,413","2.6","('Q1', 'Q1')","1.68","28.40" +"SEDIMENTOLOGY","0037-0746","1365-3091","GEOLOGY","('SCIE',)","9,955","2.6","Q1","1.62","32.09" +"Journal of Otolaryngology-Head & Neck Surgery","1916-0216","1916-0216","OTORHINOLARYNGOLOGY","('SCIE',)","2,607","2.6","Q1","1.56","100.00" +"Journal of Neurologic Physical Therapy","1557-0576","1557-0584","('CLINICAL NEUROLOGY', 'REHABILITATION')","('SCIE', 'SCIE')","1,471","2.6","('Q2', 'Q1')","1.53","12.68" +"European Physical Education Review","1356-336X","1741-2749","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,652","2.6","Q1","1.51","31.91" +"Higher Education Research & Development","0729-4360","1469-8366","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","5,310","2.6","Q1","1.51","28.57" +"APPLIED AND COMPUTATIONAL HARMONIC ANALYSIS","1063-5203","1096-603X","MATHEMATICS, APPLIED","('SCIE',)","3,440","2.6","Q1","1.50","31.15" +"Physical Review Physics Education Research","2469-9896","2469-9896","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('SSCI', 'SCIE')","2,028","2.6","('Q1', 'Q1')","1.49","98.76" +"SIAM JOURNAL ON OPTIMIZATION","1052-6234","1095-7189","MATHEMATICS, APPLIED","('SCIE',)","9,340","2.6","Q1","1.49","0.58" +"E-Learning and Digital Media","","2042-7530","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","614","2.6","Q1","1.48","13.98" +"Frontiers in Zoology","1742-9994","1742-9994","ZOOLOGY","('SCIE',)","2,741","2.6","Q1","1.46","100.00" +"Journal of Contemporary East Asia Studies","2476-1028","2476-1036","AREA STUDIES","('ESCI',)","201","2.6","Q1","1.46","97.62" +"Chemistry Education Research and Practice","1109-4028","1756-1108","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('SSCI', 'SCIE')","2,526","2.6","('Q1', 'Q1')","1.45","10.27" +"JUSTICE QUARTERLY","0741-8825","1745-9109","CRIMINOLOGY & PENOLOGY","('SSCI',)","3,549","2.6","Q1","1.45","10.49" +"AMERICAN ANTHROPOLOGIST","0002-7294","1548-1433","ANTHROPOLOGY","('SSCI',)","5,968","2.6","Q1","1.42","27.92" +"JOURNAL OF HIGHER EDUCATION","0022-1546","1538-4640","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,611","2.6","Q1","1.42","9.85" +"International Journal of Educational Research","0883-0355","1873-538X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","4,540","2.6","Q1","1.39","34.73" +"OTOLARYNGOLOGY-HEAD AND NECK SURGERY","0194-5998","1097-6817","('OTORHINOLARYNGOLOGY', 'SURGERY')","('SCIE', 'SCIE')","17,540","2.6","('Q1', 'Q1')","1.39","12.97" +"Journal of Surgical Education","1931-7204","1878-7452","('EDUCATION, SCIENTIFIC DISCIPLINES', 'SURGERY')","('SCIE', 'SCIE')","5,528","2.6","('Q1', 'Q1')","1.37","7.42" +"Nuclear Engineering and Technology","1738-5733","1738-5733","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","6,226","2.6","Q1","1.36","95.86" +"STUDIES IN APPLIED MATHEMATICS","0022-2526","1467-9590","MATHEMATICS, APPLIED","('SCIE',)","2,459","2.6","Q1","1.36","18.59" +"Large-Scale Assessments in Education","","2196-0739","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","597","2.6","Q1","1.32","100.00" +"Studies in Educational Evaluation","0191-491X","","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","2,211","2.6","('Q1', 'Q2')","1.32","25.00" +"Frontiers in Veterinary Science","","2297-1769","VETERINARY SCIENCES","('SCIE',)","19,392","2.6","Q1","1.30","99.51" +"JOURNAL OF CATARACT AND REFRACTIVE SURGERY","0886-3350","1873-4502","('OPHTHALMOLOGY', 'SURGERY')","('SCIE', 'SCIE')","12,825","2.6","('Q2', 'Q1')","1.27","13.35" +"JOURNAL OF THE AMERICAN ACADEMY OF ORTHOPAEDIC SURGEONS","1067-151X","1940-5480","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","10,259","2.6","('Q1', 'Q1')","1.27","1.42" +"BMC Oral Health","1472-6831","1472-6831","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","10,257","2.6","Q1","1.26","99.96" +"Journal of Family Nursing","1074-8407","1552-549X","('FAMILY STUDIES', 'NURSING')","('SSCI', 'SCIE, SSCI')","1,038","2.6","('Q1', 'Q1')","1.25","26.58" +"Nursing Philosophy","1466-7681","1466-769X","NURSING","('SCIE', 'SSCI')","836","2.6","Q1","1.24","33.66" +"Translational Vision Science & Technology","2164-2591","2164-2591","OPHTHALMOLOGY","('SCIE',)","5,603","2.6","Q2","1.24","99.71" +"Trends in Hearing","2331-2165","2331-2165","('AUDIOLOGY & SPEECH', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE')","1,608","2.6","('Q1', 'Q1')","1.24","91.30" +"INSTRUCTIONAL SCIENCE","0020-4277","1573-1952","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","2,824","2.6","('Q1', 'Q2')","1.23","41.94" +"FAMILY PROCESS","0014-7370","1545-5300","('FAMILY STUDIES', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","3,918","2.6","('Q1', 'Q2')","1.21","28.48" +"Journal of Information Technology & Politics","1933-1681","1933-169X","('COMMUNICATION', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,093","2.6","('Q1', 'Q1')","1.20","21.49" +"MIDWIFERY","0266-6138","1532-3099","NURSING","('SCIE', 'SSCI')","6,703","2.6","Q1","1.20","35.66" +"EUROPEAN JOURNAL OF INDUSTRIAL RELATIONS","0959-6801","1461-7129","INDUSTRIAL RELATIONS & LABOR","('SSCI',)","709","2.6","Q2","1.19","39.39" +"ETHNICITY & HEALTH","1355-7858","1465-3419","('ETHNIC STUDIES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SCIE')","2,404","2.6","('Q1', 'Q2')","1.18","8.37" +"JOURNAL OF INTERPERSONAL VIOLENCE","0886-2605","1552-6518","('CRIMINOLOGY & PENOLOGY', 'FAMILY STUDIES', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI', 'SSCI')","14,966","2.6","('Q1', 'Q1', 'Q2')","1.18","8.80" +"GOVERNANCE-AN INTERNATIONAL JOURNAL OF POLICY ADMINISTRATION AND INSTITUTIONS","0952-1895","1468-0491","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","3,186","2.6","('Q1', 'Q2')","1.17","38.12" +"Profesional de la Informacion","1386-6710","1699-2407","('COMMUNICATION', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SSCI', 'SSCI')","2,801","2.6","('Q1', 'Q2')","1.17","58.06" +"JOURNAL OF NONLINEAR SCIENCE","0938-8974","1432-1467","('MATHEMATICS, APPLIED', 'MECHANICS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE', 'SCIE')","2,833","2.6","('Q1', 'Q2', 'Q1')","1.15","34.82" +"HARVARD EDUCATIONAL REVIEW","0017-8055","1943-5045","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","4,215","2.6","Q1","1.14","0.00" +"SPINE","0362-2436","1528-1159","('CLINICAL NEUROLOGY', 'ORTHOPEDICS')","('SCIE', 'SCIE')","44,884","2.6","('Q2', 'Q1')","1.14","7.62" +"OBSTETRICS AND GYNECOLOGY CLINICS OF NORTH AMERICA","0889-8545","1558-0474","OBSTETRICS & GYNECOLOGY","('SCIE',)","2,433","2.6","Q2","1.12","1.97" +"SOCIAL POLICY & ADMINISTRATION","0144-5596","1467-9515","('DEVELOPMENT STUDIES', 'PUBLIC ADMINISTRATION', 'SOCIAL ISSUES', 'SOCIAL WORK')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","2,362","2.6","('Q2', 'Q2', 'Q1', 'Q1')","1.12","55.45" +"JOURNAL OF THE JAPANESE AND INTERNATIONAL ECONOMIES","0889-1583","1095-8681","('ECONOMICS', 'INTERNATIONAL RELATIONS')","('SSCI', 'SSCI')","945","2.6","('Q1', 'Q1')","1.11","37.78" +"Progress in Disaster Science","2590-0617","2590-0617","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI', 'ESCI', 'ESCI', 'ESCI')","1,028","2.6","('Q3', 'Q2', 'Q2', 'Q3', 'Q2')","1.11","93.79" +"Australian Critical Care","1036-7314","1878-1721","('CRITICAL CARE MEDICINE', 'NURSING')","('SCIE', 'SCIE, SSCI')","1,879","2.6","('Q2', 'Q1')","1.09","16.99" +"CLINICAL REHABILITATION","0269-2155","1477-0873","REHABILITATION","('SCIE',)","8,088","2.6","Q1","1.09","22.87" +"POPULATION RESEARCH AND POLICY REVIEW","0167-5923","1573-7829","DEMOGRAPHY","('SSCI',)","1,960","2.6","Q1","1.09","28.70" +"Journal of the World Federation of Orthodontists","2212-4438","2212-4438","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","400","2.6","Q1","1.08","4.21" +"MICROBES AND INFECTION","1286-4579","1769-714X","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","6,101","2.6","('Q3', 'Q3', 'Q3')","1.08","49.78" +"AMERICAN JOURNAL OF PHYSICAL ANTHROPOLOGY","0002-9483","1096-8644","('ANTHROPOLOGY', 'EVOLUTIONARY BIOLOGY')","('SSCI', 'SCIE')","11,956","2.6","('Q1', 'Q2')","1.07","10.92" +"INTERNATIONAL JOURNAL OF GYNECOLOGY & OBSTETRICS","0020-7292","1879-3479","OBSTETRICS & GYNECOLOGY","('SCIE',)","12,990","2.6","Q2","1.07","27.41" +"International Wound Journal","1742-4801","1742-481X","('DERMATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","6,935","2.6","('Q2', 'Q1')","1.07","81.87" +"Comparative European Politics","1472-4790","1740-388X","POLITICAL SCIENCE","('SSCI',)","1,073","2.6","Q1","1.06","40.15" +"Journal of Athletic Training","1062-6050","1938-162X","SPORT SCIENCES","('SCIE',)","7,711","2.6","Q1","1.06","97.61" +"Journal of Genocide Research","1462-3528","1469-9494","POLITICAL SCIENCE","('ESCI',)","1,305","2.6","Q1","1.05","21.88" +"Neonatology","1661-7800","1661-7819","PEDIATRICS","('SCIE',)","3,697","2.6","Q1","1.05","37.10" +"Neuroethics","1874-5490","1874-5504","('ETHICS', 'MEDICAL ETHICS', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SCIE', 'SSCI')","766","2.6","('Q1', 'Q1', 'Q2')","1.05","50.52" +"Population Space and Place","1544-8444","1544-8452","('DEMOGRAPHY', 'GEOGRAPHY')","('SSCI', 'SSCI')","3,610","2.6","('Q1', 'Q1')","1.05","48.20" +"ARCHIVE FOR RATIONAL MECHANICS AND ANALYSIS","0003-9527","1432-0673","('MATHEMATICS, APPLIED', 'MECHANICS')","('SCIE', 'SCIE')","11,944","2.6","('Q1', 'Q2')","1.04","35.15" +"DOCUMENTA OPHTHALMOLOGICA","0012-4486","1573-2622","OPHTHALMOLOGY","('SCIE',)","2,000","2.6","Q2","1.04","31.06" +"Environmental Education Research","1350-4622","1469-5871","('EDUCATION & EDUCATIONAL RESEARCH', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","4,677","2.6","('Q1', 'Q2')","1.04","30.48" +"JOURNAL OF CLINICAL LABORATORY ANALYSIS","0887-8013","1098-2825","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","7,262","2.6","Q2","1.04","58.34" +"Patient Safety in Surgery","1754-9493","1754-9493","SURGERY","('ESCI',)","953","2.6","Q1","1.04","100.00" +"Entrepreneurial Business and Economics Review","2353-883X","2353-8821","ECONOMICS","('ESCI',)","718","2.6","Q1","1.03","100.00" +"Korean Journal of Orthodontics","2234-7518","2005-372X","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,085","2.6","Q1","1.03","95.08" +"Mathematical Modelling of Natural Phenomena","0973-5348","1760-6101","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'MATHEMATICS, APPLIED', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE', 'SCIE')","1,156","2.6","('Q2', 'Q1', 'Q1')","1.02","96.32" +"PALAEOGEOGRAPHY PALAEOCLIMATOLOGY PALAEOECOLOGY","0031-0182","1872-616X","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'PALEONTOLOGY')","('SCIE', 'SCIE', 'SCIE')","26,704","2.6","('Q2', 'Q2', 'Q1')","1.02","18.85" +"QUALITATIVE HEALTH RESEARCH","1049-7323","1552-7557","('INFORMATION SCIENCE & LIBRARY SCIENCE', 'SOCIAL SCIENCES, BIOMEDICAL', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","15,701","2.6","('Q2', 'Q2', 'Q1')","1.02","37.29" +"Nonlinear Analysis-Modelling and Control","1392-5113","2335-8963","('MATHEMATICS, APPLIED', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","1,195","2.6","('Q1', 'Q1', 'Q2')","1.01","93.94" +"Hernia","1265-4906","1248-9204","SURGERY","('SCIE',)","5,178","2.6","Q1","0.99","23.23" +"Ophthalmology and Therapy","2193-8245","2193-6528","OPHTHALMOLOGY","('SCIE',)","1,763","2.6","Q2","0.98","99.79" +"Pain Physician","1533-3159","","('ANESTHESIOLOGY', 'CLINICAL NEUROLOGY')","('SCIE', 'SCIE')","5,774","2.6","('Q2', 'Q2')","0.98","1.18" +"EUROPEAN JOURNAL OF FOREST RESEARCH","1612-4669","1612-4677","FORESTRY","('SCIE',)","3,654","2.6","Q1","0.97","43.51" +"Frontiers in Psychology","1664-1078","1664-1078","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","115,333","2.6","Q2","0.97","99.54" +"OCEANOLOGIA","0078-3234","2300-7370","OCEANOGRAPHY","('SCIE',)","1,524","2.6","Q2","0.96","96.40" +"SEISMOLOGICAL RESEARCH LETTERS","0895-0695","1938-2057","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","7,511","2.6","Q2","0.96","0.00" +"CLINICAL JOURNAL OF PAIN","0749-8047","1536-5409","('ANESTHESIOLOGY', 'CLINICAL NEUROLOGY')","('SCIE', 'SCIE')","7,556","2.6","('Q2', 'Q2')","0.95","11.76" +"PEDIATRIC NEPHROLOGY","0931-041X","1432-198X","('PEDIATRICS', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","11,302","2.6","('Q1', 'Q2')","0.95","24.00" +"Primary Care Diabetes","1751-9918","1878-0210","('ENDOCRINOLOGY & METABOLISM', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","1,948","2.6","('Q3', 'Q1')","0.95","19.58" +"Emerging Adulthood","2167-6968","2167-6984","('FAMILY STUDIES', 'PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI', 'SSCI')","1,804","2.6","('Q1', 'Q2', 'Q2')","0.94","19.05" +"JOURNAL OF RESEARCH IN PERSONALITY","0092-6566","1095-7251","PSYCHOLOGY, SOCIAL","('SSCI',)","10,063","2.6","Q2","0.94","25.00" +"OCULAR IMMUNOLOGY AND INFLAMMATION","0927-3948","1744-5078","OPHTHALMOLOGY","('SCIE',)","5,013","2.6","Q2","0.94","7.29" +"PALEOBIOLOGY","0094-8373","1938-5331","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'EVOLUTIONARY BIOLOGY', 'PALEONTOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,128","2.6","('Q2', 'Q2', 'Q2', 'Q1')","0.94","65.87" +"ESTUARINE COASTAL AND SHELF SCIENCE","0272-7714","1096-0015","('MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","20,041","2.6","('Q1', 'Q2')","0.93","31.34" +"EUROPEAN SPINE JOURNAL","0940-6719","1432-0932","('CLINICAL NEUROLOGY', 'ORTHOPEDICS')","('SCIE', 'SCIE')","19,798","2.6","('Q2', 'Q1')","0.93","25.61" +"World Journal Of Emergency Medicine","1920-8642","1920-8642","EMERGENCY MEDICINE","('SCIE',)","891","2.6","Q1","0.93","0.82" +"AUSTRALIAN JOURNAL OF AGRICULTURAL AND RESOURCE ECONOMICS","1364-985X","1467-8489","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('SCIE', 'SSCI')","1,603","2.6","('Q2', 'Q1')","0.92","31.90" +"Geochemistry","0009-2819","1611-5864","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","1,001","2.6","Q2","0.92","11.05" +"Journal of Physics-Complexity","","2632-072X","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MULTIDISCIPLINARY SCIENCES', 'PHYSICS, MATHEMATICAL')","('ESCI', 'ESCI', 'ESCI')","453","2.6","('Q1', 'Q2', 'Q1')","0.92","97.99" +"PSYCHOTHERAPY","0033-3204","1939-1536","PSYCHOLOGY, CLINICAL","('SSCI',)","3,879","2.6","Q2","0.92","6.55" +"JOURNAL OF THE FORMOSAN MEDICAL ASSOCIATION","0929-6646","1876-0821","MEDICINE, GENERAL & INTERNAL","('SCIE',)","5,916","2.6","Q1","0.91","92.50" +"CRYSTENGCOMM","","1466-8033","('CHEMISTRY, MULTIDISCIPLINARY', 'CRYSTALLOGRAPHY')","('SCIE', 'SCIE')","28,140","2.6","('Q2', 'Q1')","0.90","9.94" +"PSYCHOTHERAPY RESEARCH","1050-3307","1468-4381","PSYCHOLOGY, CLINICAL","('SSCI',)","3,897","2.6","Q2","0.90","29.17" +"INTERNATIONAL JOURNAL OF OBSTETRIC ANESTHESIA","0959-289X","1532-3374","('ANESTHESIOLOGY', 'OBSTETRICS & GYNECOLOGY')","('SCIE', 'SCIE')","1,817","2.6","('Q2', 'Q2')","0.89","6.67" +"Journal of Political Power","2158-379X","2158-3803","POLITICAL SCIENCE","('ESCI',)","453","2.6","Q1","0.89","35.21" +"Sexual Medicine","","2050-1161","('MEDICINE, GENERAL & INTERNAL', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","1,481","2.6","('Q1', 'Q2')","0.88","93.42" +"Cartography and Geographic Information Science","1523-0406","1545-0465","GEOGRAPHY","('SSCI',)","1,328","2.6","Q1","0.87","21.31" +"Reproductive Sciences","1933-7191","1933-7205","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","6,849","2.6","('Q2', 'Q2')","0.87","18.59" +"Global Spine Journal","2192-5682","2192-5690","('CLINICAL NEUROLOGY', 'ORTHOPEDICS')","('SCIE', 'SCIE')","5,229","2.6","('Q2', 'Q1')","0.86","91.52" +"Journal of Oral Biosciences","1349-0079","1880-3865","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","772","2.6","Q1","0.86","23.46" +"Journal of Plant Interactions","1742-9145","1742-9153","PLANT SCIENCES","('SCIE',)","2,575","2.6","Q2","0.86","97.59" +"PHYTOPATHOLOGY","0031-949X","1943-7684","PLANT SCIENCES","('SCIE',)","17,396","2.6","Q2","0.86","39.80" +"SCIENCE PROGRESS","0036-8504","2047-7163","MULTIDISCIPLINARY SCIENCES","('SCIE',)","2,520","2.6","Q2","0.86","94.24" +"Communications in Computational Physics","1815-2406","1991-7120","PHYSICS, MATHEMATICAL","('SCIE',)","3,736","2.6","Q1","0.85","0.00" +"EXPERIMENTAL PHYSIOLOGY","0958-0670","1469-445X","PHYSIOLOGY","('SCIE',)","6,581","2.6","Q2","0.85","47.13" +"Journal of Functional Morphology and Kinesiology","","2411-5142","SPORT SCIENCES","('ESCI',)","1,157","2.6","Q1","0.85","98.92" +"JOURNAL OF THE INTERNATIONAL NEUROPSYCHOLOGICAL SOCIETY","1355-6177","1469-7661","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PSYCHIATRY', 'PSYCHOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","7,278","2.6","('Q2', 'Q3', 'Q2', 'Q2')","0.85","35.17" +"Mycotoxin Research","0178-7888","1867-1632","('MYCOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","1,376","2.6","('Q2', 'Q3')","0.85","37.50" +"BULLETIN OF THE SEISMOLOGICAL SOCIETY OF AMERICA","0037-1106","1943-3573","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","21,398","2.6","Q2","0.84","0.00" +"MARINE GEOLOGY","0025-3227","1872-6151","('GEOSCIENCES, MULTIDISCIPLINARY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","13,454","2.6","('Q2', 'Q2')","0.84","27.36" +"SciPost Physics Core","","2666-9366","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","369","2.6","Q2","0.84","98.86" +"Folia Geographica","1336-6157","2454-1001","GEOGRAPHY","('ESCI',)","152","2.6","Q1","0.83","0.00" +"MARINE BIOTECHNOLOGY","1436-2228","1436-2236","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","3,410","2.6","('Q3', 'Q1')","0.83","9.23" +"PHARMACEUTICAL DEVELOPMENT AND TECHNOLOGY","1083-7450","1097-9867","PHARMACOLOGY & PHARMACY","('SCIE',)","3,871","2.6","Q2","0.83","5.68" +"PHYSICAL REVIEW A","2469-9926","2469-9934","('OPTICS', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","127,786","2.6","('Q2', 'Q2')","0.83","6.40" +"PROSTATE","0270-4137","1097-0045","('ENDOCRINOLOGY & METABOLISM', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","7,262","2.6","('Q3', 'Q2')","0.83","22.00" +"Seminars in Thoracic and Cardiovascular Surgery","1043-0679","1532-9488","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","2,133","2.6","Q2","0.83","9.93" +"TOXICOLOGY IN VITRO","0887-2333","1879-3177","TOXICOLOGY","('SCIE',)","9,768","2.6","Q3","0.83","25.95" +"CANCER CYTOPATHOLOGY","1934-662X","1934-6638","('ONCOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","2,930","2.6","('Q3', 'Q2')","0.82","18.39" +"EUROPEAN PHYSICAL JOURNAL A","1434-6001","1434-601X","('PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","7,640","2.6","('Q2', 'Q2')","0.82","27.72" +"GENE","0378-1119","1879-0038","GENETICS & HEREDITY","('SCIE',)","29,178","2.6","Q2","0.82","11.99" +"PSYCHOLOGY AND PSYCHOTHERAPY-THEORY RESEARCH AND PRACTICE","1476-0835","2044-8341","('PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE, SSCI', 'SCIE', 'SSCI')","2,038","2.6","('Q2', 'Q2', 'Q2')","0.82","51.69" +"SOFTWARE-PRACTICE & EXPERIENCE","0038-0644","1097-024X","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","2,921","2.6","Q2","0.82","21.32" +"WORLD ECONOMY","0378-5920","1467-9701","('BUSINESS, FINANCE', 'ECONOMICS', 'INTERNATIONAL RELATIONS')","('SSCI', 'SSCI', 'SSCI')","4,640","2.6","('Q2', 'Q1', 'Q1')","0.82","27.34" +"BEHAVIOR GENETICS","0001-8244","1573-3297","('BEHAVIORAL SCIENCES', 'GENETICS & HEREDITY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SSCI')","2,603","2.6","('Q2', 'Q2', 'Q2')","0.81","33.33" +"BEHAVIOURAL BRAIN RESEARCH","0166-4328","1872-7549","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES')","('SCIE', 'SCIE')","25,612","2.6","('Q2', 'Q3')","0.81","20.23" +"Big Data","2167-6461","2167-647X","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","1,260","2.6","('Q2', 'Q2')","0.81","8.03" +"Brain and Behavior","2162-3279","2162-3279","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES')","('SCIE', 'SCIE')","7,592","2.6","('Q2', 'Q3')","0.81","71.01" +"Journal of Engineering Design and Technology","1726-0531","1726-0531","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","1,796","2.6","Q1","0.81","3.97" +"JOURNAL OF NONDESTRUCTIVE EVALUATION","0195-9298","1573-4862","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('SCIE',)","2,286","2.6","Q2","0.81","23.02" +"International Journal of Public Health","1661-8556","1661-8564","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","5,122","2.6","Q2","0.80","99.53" +"JOURNAL OF CAREER DEVELOPMENT","0894-8453","1556-0856","PSYCHOLOGY, APPLIED","('SSCI',)","1,980","2.6","Q2","0.80","7.82" +"MOLECULAR BREEDING","1380-3743","1572-9788","('AGRONOMY', 'GENETICS & HEREDITY', 'HORTICULTURE', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,044","2.6","('Q1', 'Q2', 'Q1', 'Q2')","0.80","10.33" +"NEUROPSYCHOLOGY","0894-4105","1931-1559","('NEUROSCIENCES', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SCIE', 'SSCI')","5,751","2.6","('Q3', 'Q2', 'Q2')","0.80","7.11" +"ORGANIC GEOCHEMISTRY","0146-6380","1873-5290","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","13,636","2.6","Q2","0.80","24.80" +"ECOLOGICAL MODELLING","0304-3800","1872-7026","ECOLOGY","('SCIE',)","20,105","2.6","Q2","0.79","31.61" +"Journal of Rail Transport Planning & Management","2210-9706","2210-9714","TRANSPORTATION","('ESCI',)","618","2.6","Q3","0.79","33.66" +"MYCOLOGIA","0027-5514","1557-2536","MYCOLOGY","('SCIE',)","8,333","2.6","Q2","0.79","10.31" +"Environment and Planning B-Urban Analytics and City Science","2399-8083","2399-8091","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","5,725","2.6","('Q2', 'Q1', 'Q2', 'Q2')","0.78","22.58" +"Journal of Central Nervous System Disease","1179-5735","1179-5735","CLINICAL NEUROLOGY","('ESCI',)","546","2.6","Q2","0.78","97.62" +"Learning Health Systems","2379-6146","2379-6146","HEALTH POLICY & SERVICES","('ESCI',)","495","2.6","Q2","0.78","82.24" +"SEMINARS IN RADIATION ONCOLOGY","1053-4296","1532-9461","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","2,645","2.6","('Q3', 'Q2')","0.78","12.77" +"Acta Crystallographica Section D-Structural Biology","2059-7983","2059-7983","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CRYSTALLOGRAPHY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","19,850","2.6","('Q2', 'Q3', 'Q3', 'Q1')","0.77","67.32" +"ALLERGY AND ASTHMA PROCEEDINGS","1088-5412","1539-6304","ALLERGY","('SCIE',)","2,563","2.6","Q2","0.77","2.14" +"in silico Plants","","2517-5025","('AGRONOMY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'PLANT SCIENCES')","('ESCI', 'ESCI', 'ESCI')","244","2.6","('Q1', 'Q2', 'Q2')","0.77","96.25" +"JMIR Human Factors","2292-9495","2292-9495","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('ESCI', 'ESCI')","1,298","2.6","('Q2', 'Q3')","0.77","99.02" +"JOURNAL OF HUMAN GENETICS","1434-5161","1435-232X","GENETICS & HEREDITY","('SCIE',)","4,671","2.6","Q2","0.77","19.93" +"Journal of Psychiatric and Mental Health Nursing","1351-0126","1365-2850","('NURSING', 'PSYCHIATRY')","('SCIE, SSCI', 'SCIE, SSCI')","3,305","2.6","('Q1', 'Q2')","0.77","39.09" +"PHYSICA SCRIPTA","0031-8949","1402-4896","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","17,412","2.6","Q2","0.77","5.69" +"Drug Testing and Analysis","1942-7603","1942-7611","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","4,060","2.6","('Q2', 'Q2', 'Q2')","0.76","35.42" +"Journal of Physiological Sciences","1880-6546","1880-6562","PHYSIOLOGY","('SCIE',)","1,679","2.6","Q2","0.76","100.00" +"JOURNAL OF STRUCTURAL GEOLOGY","0191-8141","1873-1201","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","12,250","2.6","Q2","0.76","28.51" +"Proceedings of the VLDB Endowment","2150-8097","2150-8097","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","9,665","2.6","('Q2', 'Q2')","0.76","0.00" +"PUBLIC ADMINISTRATION AND DEVELOPMENT","0271-2075","1099-162X","('DEVELOPMENT STUDIES', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","1,171","2.6","('Q2', 'Q2')","0.76","19.48" +"Ecological Solutions and Evidence","","2688-8319","ECOLOGY","('ESCI',)","504","2.6","Q2","0.75","86.50" +"Endangered Species Research","1863-5407","1613-4796","BIODIVERSITY CONSERVATION","('SCIE',)","3,111","2.6","Q2","0.75","100.00" +"INTERNATIONAL ARCHIVES OF OCCUPATIONAL AND ENVIRONMENTAL HEALTH","0340-0131","1432-1246","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","5,178","2.6","Q2","0.75","46.08" +"JOURNAL OF VISUAL COMMUNICATION AND IMAGE REPRESENTATION","1047-3203","1095-9076","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","5,371","2.6","('Q2', 'Q2')","0.75","4.43" +"MOLECULAR AND CELLULAR NEUROSCIENCE","1044-7431","1095-9327","NEUROSCIENCES","('SCIE',)","5,593","2.6","Q3","0.75","33.33" +"EUROPEAN PLANNING STUDIES","0965-4313","1469-5944","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","5,752","2.6","('Q2', 'Q1', 'Q2', 'Q2')","0.74","34.55" +"ANAIS BRASILEIROS DE DERMATOLOGIA","0365-0596","1806-4841","DERMATOLOGY","('SCIE',)","3,615","2.6","Q2","0.73","96.27" +"BRITISH JOURNAL OF DEVELOPMENTAL PSYCHOLOGY","0261-510X","2044-835X","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","2,494","2.6","Q2","0.73","33.71" +"Conservation Physiology","2051-1434","2051-1434","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'ENVIRONMENTAL SCIENCES', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,521","2.6","('Q2', 'Q2', 'Q3', 'Q2')","0.73","92.83" +"European Physical Journal-Special Topics","1951-6355","1951-6401","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","6,742","2.6","Q2","0.73","16.96" +"FUNCTIONAL PLANT BIOLOGY","1445-4408","1445-4416","PLANT SCIENCES","('SCIE',)","6,568","2.6","Q2","0.73","17.14" +"Hormone Research in Paediatrics","1663-2818","1663-2826","('ENDOCRINOLOGY & METABOLISM', 'PEDIATRICS')","('SCIE', 'SCIE')","2,938","2.6","('Q3', 'Q1')","0.73","27.80" +"Journal of Systems Science & Complexity","1009-6124","1559-7067","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","1,830","2.6","Q1","0.73","0.00" +"NEUROTOXICOLOGY AND TERATOLOGY","0892-0362","1872-9738","('NEUROSCIENCES', 'TOXICOLOGY')","('SCIE', 'SCIE')","3,384","2.6","('Q3', 'Q3')","0.73","29.25" +"TOXICON","0041-0101","1879-3150","('PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE')","11,614","2.6","('Q2', 'Q3')","0.73","15.89" +"AUSTRALIAN AND NEW ZEALAND JOURNAL OF PUBLIC HEALTH","1326-0200","1753-6405","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","3,968","2.6","Q2","0.72","85.16" +"BIOFOULING","0892-7014","1029-2454","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","5,312","2.6","('Q3', 'Q1')","0.72","5.48" +"COGNITION & EMOTION","0269-9931","1464-0600","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","10,579","2.6","Q2","0.72","24.84" +"Frontiers in Behavioral Neuroscience","1662-5153","","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES')","('SCIE', 'SCIE')","10,498","2.6","('Q2', 'Q3')","0.72","99.62" +"JOURNAL OF QUALITY TECHNOLOGY","0022-4065","2575-6230","('ENGINEERING, INDUSTRIAL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","2,762","2.6","('Q2', 'Q2', 'Q1')","0.72","10.84" +"OPTICAL FIBER TECHNOLOGY","1068-5200","1095-9912","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","5,253","2.6","('Q2', 'Q2', 'Q3')","0.72","6.16" +"SCANDINAVIAN JOURNAL OF PUBLIC HEALTH","1403-4948","1651-1905","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","6,800","2.6","Q2","0.72","51.33" +"Biochimica et Biophysica Acta-Gene Regulatory Mechanisms","1874-9399","1876-4320","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","6,824","2.6","('Q3', 'Q3')","0.71","28.57" +"Frontiers in Integrative Neuroscience","1662-5145","1662-5145","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES')","('SCIE', 'SCIE')","3,154","2.6","('Q2', 'Q3')","0.71","99.17" +"International Journal of Integrated Care","1568-4156","1568-4156","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","2,182","2.6","('Q2', 'Q2')","0.71","97.73" +"JOURNAL OF PLANT NUTRITION AND SOIL SCIENCE","1436-8730","1522-2624","('AGRONOMY', 'PLANT SCIENCES', 'SOIL SCIENCE')","('SCIE', 'SCIE', 'SCIE')","5,285","2.6","('Q1', 'Q2', 'Q2')","0.71","53.37" +"Sport Exercise and Performance Psychology","2157-3905","2157-3913","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","928","2.6","('Q2', 'Q2')","0.71","1.00" +"Structure and Infrastructure Engineering","1573-2479","1744-8980","('ENGINEERING, CIVIL', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","4,958","2.6","('Q2', 'Q2')","0.71","11.68" +"ACM Transactions on the Web","1559-1131","1559-114X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","766","2.6","('Q2', 'Q2')","0.70","2.70" +"BMC Pulmonary Medicine","1471-2466","1471-2466","RESPIRATORY SYSTEM","('SCIE',)","7,967","2.6","Q2","0.70","99.93" +"Cancer Genomics & Proteomics","1109-6535","1790-6245","('GENETICS & HEREDITY', 'ONCOLOGY')","('SCIE', 'SCIE')","1,511","2.6","('Q2', 'Q3')","0.70","100.00" +"Health Equity","","2473-1242","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","1,342","2.6","Q2","0.70","99.34" +"POSTGRADUATE MEDICINE","0032-5481","1941-9260","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,729","2.6","Q1","0.70","18.15" +"COMPUTATIONAL BIOLOGY AND CHEMISTRY","1476-9271","1476-928X","('BIOLOGY', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","3,418","2.6","('Q2', 'Q2')","0.69","6.84" +"Management and Organization Review","1740-8776","1740-8784","MANAGEMENT","('SSCI',)","1,989","2.6","Q3","0.69","21.64" +"MULTIBODY SYSTEM DYNAMICS","1384-5640","1573-272X","MECHANICS","('SCIE',)","2,223","2.6","Q2","0.69","43.89" +"ANALYTICAL BIOCHEMISTRY","0003-2697","1096-0309","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE', 'SCIE')","33,894","2.6","('Q2', 'Q3', 'Q2')","0.68","16.48" +"Analytical Cellular Pathology","2210-7177","2210-7185","('CELL BIOLOGY', 'ONCOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,163","2.6","('Q3', 'Q3', 'Q2')","0.68","100.00" +"AoB Plants","2041-2851","2041-2851","('ECOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","2,914","2.6","('Q2', 'Q2')","0.68","95.91" +"BSGF-Earth Sciences Bulletin","0037-9409","1777-5817","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","354","2.6","Q2","0.68","98.90" +"EVOLUTION & DEVELOPMENT","1520-541X","1525-142X","('DEVELOPMENTAL BIOLOGY', 'EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","1,732","2.6","('Q2', 'Q2', 'Q2')","0.68","47.37" +"INTERNATIONAL JOURNAL OF SELECTION AND ASSESSMENT","0965-075X","1468-2389","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","1,760","2.6","('Q3', 'Q2')","0.68","34.45" +"Italian Journal of Agronomy","1125-4718","2039-6805","AGRONOMY","('SCIE',)","927","2.6","Q1","0.68","99.01" +"JOURNAL OF CARDIOVASCULAR PHARMACOLOGY","0160-2446","1533-4023","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","5,765","2.6","('Q2', 'Q2')","0.68","14.35" +"JOURNAL OF OCCUPATIONAL HEALTH","1341-9145","1348-9585","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","2,629","2.6","Q2","0.68","74.09" +"JOURNAL OF THE GEOLOGICAL SOCIETY","0016-7649","2041-479X","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","8,612","2.6","Q2","0.68","30.22" +"Science and Public Policy","0302-3427","1471-5430","('ENVIRONMENTAL STUDIES', 'MANAGEMENT', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI', 'SSCI')","2,772","2.6","('Q2', 'Q3', 'Q2')","0.68","34.87" +"Therapeutic Advances in Urology","1756-2872","1756-2880","UROLOGY & NEPHROLOGY","('SCIE',)","1,217","2.6","Q2","0.68","91.49" +"TROPICAL MEDICINE & INTERNATIONAL HEALTH","1360-2276","1365-3156","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","6,879","2.6","('Q2', 'Q2')","0.68","30.43" +"Alpine Botany","1664-2201","1664-221X","PLANT SCIENCES","('SCIE',)","514","2.6","Q2","0.67","44.07" +"Clinical Gerontologist","0731-7115","1545-2301","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY', 'PSYCHIATRY')","('SCIE', 'SSCI', 'SCIE, SSCI')","2,057","2.6","('Q3', 'Q2', 'Q2')","0.67","13.60" +"Journal of Quality Assurance in Hospitality & Tourism","1528-008X","1528-0098","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,378","2.6","Q2","0.67","4.20" +"Movement Disorders Clinical Practice","2330-1619","2330-1619","CLINICAL NEUROLOGY","('SCIE',)","2,597","2.6","Q2","0.67","40.13" +"ACTA NEUROPSYCHIATRICA","0924-2708","1601-5215","('NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE')","1,376","2.6","('Q3', 'Q2')","0.66","37.86" +"COGNITIVE NEUROPSYCHOLOGY","0264-3294","1464-0627","('PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI')","1,902","2.6","('Q2', 'Q2')","0.66","25.00" +"Electronics","","2079-9292","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","34,990","2.6","('Q2', 'Q2', 'Q2')","0.66","99.64" +"Forensic Chemistry","2468-1709","2468-1709","CHEMISTRY, ANALYTICAL","('SCIE',)","1,081","2.6","Q2","0.66","18.63" +"Frontiers in Neurorobotics","1662-5218","1662-5218","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'NEUROSCIENCES', 'ROBOTICS')","('SCIE', 'SCIE', 'SCIE')","3,353","2.6","('Q3', 'Q3', 'Q3')","0.66","99.85" +"Hydrology Research","1998-9563","2224-7955","WATER RESOURCES","('SCIE',)","2,571","2.6","Q2","0.66","100.00" +"JOURNAL OF VASCULAR AND INTERVENTIONAL RADIOLOGY","1051-0443","1535-7732","('PERIPHERAL VASCULAR DISEASE', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","10,224","2.6","('Q2', 'Q2')","0.66","9.79" +"Leukos","1550-2724","1550-2716","('CONSTRUCTION & BUILDING TECHNOLOGY', 'OPTICS')","('SCIE', 'SCIE')","657","2.6","('Q2', 'Q2')","0.66","23.53" +"Portuguese Economic Journal","1617-982X","1617-9838","ECONOMICS","('SSCI',)","344","2.6","Q1","0.66","16.67" +"Amfiteatru Economic","1582-9146","2247-9104","('BUSINESS', 'ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","924","2.6","('Q3', 'Q1', 'Q3')","0.65","94.12" +"Journal of Advances in Management Research","0972-7981","2049-3207","MANAGEMENT","('ESCI',)","793","2.6","Q3","0.65","3.37" +"MEDICAL & BIOLOGICAL ENGINEERING & COMPUTING","0140-0118","1741-0444","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, BIOMEDICAL', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","7,397","2.6","('Q2', 'Q3', 'Q2', 'Q3')","0.65","11.47" +"PLASMA CHEMISTRY AND PLASMA PROCESSING","0272-4324","1572-8986","('ENGINEERING, CHEMICAL', 'PHYSICS, APPLIED', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE', 'SCIE')","4,091","2.6","('Q3', 'Q2', 'Q2')","0.65","14.18" +"Arrhythmia & Electrophysiology Review","2050-3369","2050-3377","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","806","2.6","Q2","0.64","100.00" +"INFECTION GENETICS AND EVOLUTION","1567-1348","1567-7257","INFECTIOUS DISEASES","('SCIE',)","10,405","2.6","Q3","0.64","58.39" +"International Journal of Metalcasting","1939-5981","2163-3193","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","2,567","2.6","Q2","0.64","10.86" +"JOURNAL OF APPLIED MECHANICS-TRANSACTIONS OF THE ASME","0021-8936","1528-9036","MECHANICS","('SCIE',)","15,227","2.6","Q2","0.64","1.59" +"Journal of Arid Environments","0140-1963","1095-922X","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","9,365","2.6","('Q2', 'Q3')","0.64","20.12" +"Food Analytical Methods","1936-9751","1936-976X","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","7,542","2.6","Q2","0.63","10.05" +"JOURNAL OF MEDICAL SCREENING","0969-1413","1475-5793","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","1,307","2.6","Q2","0.63","35.42" +"Nutrition & Dietetics","1446-6368","1747-0080","NUTRITION & DIETETICS","('SCIE',)","1,343","2.6","Q3","0.63","49.30" +"STRESS-THE INTERNATIONAL JOURNAL ON THE BIOLOGY OF STRESS","1025-3890","1607-8888","('BEHAVIORAL SCIENCES', 'ENDOCRINOLOGY & METABOLISM', 'NEUROSCIENCES')","('SCIE', 'SCIE', 'SCIE')","3,411","2.6","('Q2', 'Q3', 'Q3')","0.63","60.47" +"ANGIOLOGY","0003-3197","1940-1574","PERIPHERAL VASCULAR DISEASE","('SCIE',)","3,834","2.6","Q2","0.62","4.55" +"CHEMBIOCHEM","1439-4227","1439-7633","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL')","('SCIE', 'SCIE')","13,112","2.6","('Q3', 'Q3')","0.62","35.75" +"Earthquake Engineering and Engineering Vibration","1671-3664","1993-503X","('ENGINEERING, CIVIL', 'ENGINEERING, GEOLOGICAL')","('SCIE', 'SCIE')","2,591","2.6","('Q2', 'Q2')","0.62","0.50" +"Endocrine Connections","","2049-3614","ENDOCRINOLOGY & METABOLISM","('SCIE',)","3,457","2.6","Q3","0.62","92.68" +"Fatigue-Biomedicine Health and Behavior","2164-1846","2164-1862","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","360","2.6","Q3","0.62","24.53" +"INTERNATIONAL JOURNAL OF HEAT AND FLUID FLOW","0142-727X","1879-2278","('ENGINEERING, MECHANICAL', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","8,265","2.6","('Q2', 'Q2', 'Q2')","0.62","27.32" +"Journal of Applied Meteorology and Climatology","1558-8424","1558-8432","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","13,467","2.6","Q3","0.62","2.85" +"JOURNAL OF FOOD AND DRUG ANALYSIS","1021-9498","1021-9498","('FOOD SCIENCE & TECHNOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","5,106","2.6","('Q2', 'Q2')","0.62","94.52" +"RESOURCE AND ENERGY ECONOMICS","0928-7655","1873-0221","('ECONOMICS', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","2,487","2.6","('Q1', 'Q2')","0.62","40.17" +"YONSEI MEDICAL JOURNAL","0513-5796","1976-2437","MEDICINE, GENERAL & INTERNAL","('SCIE',)","5,105","2.6","Q1","0.62","99.47" +"Annals of Global Health","2214-9996","2214-9996","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","2,758","2.6","Q2","0.61","96.34" +"IEEE Power Electronics Magazine","2329-9207","2329-9215","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","2,202","2.6","Q2","0.61","0.00" +"Journal of Contingencies and Crisis Management","0966-0879","1468-5973","MANAGEMENT","('SSCI',)","1,799","2.6","Q3","0.61","34.55" +"JOURNAL OF GEOPHYSICAL RESEARCH-SPACE PHYSICS","2169-9380","2169-9402","ASTRONOMY & ASTROPHYSICS","('SCIE',)","44,295","2.6","Q2","0.61","24.24" +"Thrombosis Journal","1477-9560","1477-9560","('HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","1,412","2.6","('Q2', 'Q2')","0.61","99.67" +"Biomed Research International","2314-6133","2314-6141","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('ESCI', 'ESCI')","66,215","2.6","('Q3', 'Q3')","0.60","99.26" +"Frontiers in Water","","2624-9375","WATER RESOURCES","('ESCI',)","1,366","2.6","Q2","0.60","99.47" +"MEDICINAL CHEMISTRY RESEARCH","1054-2523","1554-8120","CHEMISTRY, MEDICINAL","('SCIE',)","6,192","2.6","Q3","0.60","6.73" +"Transplant Infectious Disease","1398-2273","1399-3062","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'TRANSPLANTATION')","('SCIE', 'SCIE', 'SCIE')","3,902","2.6","('Q3', 'Q3', 'Q2')","0.60","18.67" +"Transportation Infrastructure Geotechnology","2196-7202","2196-7210","('ENGINEERING, CIVIL', 'ENGINEERING, GEOLOGICAL')","('ESCI', 'ESCI')","584","2.6","('Q2', 'Q2')","0.60","7.02" +"Anti-Cancer Agents in Medicinal Chemistry","1871-5206","1875-5992","('CHEMISTRY, MEDICINAL', 'ONCOLOGY')","('SCIE', 'SCIE')","5,630","2.6","('Q3', 'Q3')","0.59","1.69" +"Biomicrofluidics","","1932-1058","('BIOCHEMICAL RESEARCH METHODS', 'BIOPHYSICS', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,032","2.6","('Q2', 'Q3', 'Q3', 'Q2')","0.59","30.62" +"INTERNATIONAL JOURNAL OF FOOD SCIENCE AND TECHNOLOGY","0950-5423","1365-2621","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","17,686","2.6","Q2","0.59","9.16" +"JOURNAL OF FLUORESCENCE","1053-0509","1573-4994","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL', 'CHEMISTRY, PHYSICAL')","('SCIE', 'SCIE', 'SCIE')","5,479","2.6","('Q2', 'Q2', 'Q3')","0.59","6.70" +"JOURNAL OF THERMAL STRESSES","0149-5739","1521-074X","('MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","3,077","2.6","('Q2', 'Q2')","0.59","4.57" +"Tourism & Management Studies","2182-8458","2182-8466","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","339","2.6","Q2","0.59","92.16" +"3 Biotech","2190-572X","2190-5738","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","10,750","2.6","Q3","0.58","5.61" +"Applied Computing and Geosciences","2590-1974","2590-1974","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","198","2.6","('Q2', 'Q2')","0.58","88.89" +"CARDIOLOGY CLINICS","0733-8651","1558-2264","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,582","2.6","Q2","0.58","8.44" +"Clinics and Research in Hepatology and Gastroenterology","2210-7401","2210-741X","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","2,743","2.6","Q2","0.58","27.16" +"EXTREMOPHILES","1431-0651","1433-4909","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","3,158","2.6","('Q3', 'Q3')","0.58","21.90" +"International Journal of Clinical Pharmacy","2210-7703","2210-7711","PHARMACOLOGY & PHARMACY","('SCIE',)","3,941","2.6","Q2","0.58","40.62" +"INTERNATIONAL JOURNAL OF TECHNOLOGY ASSESSMENT IN HEALTH CARE","0266-4623","1471-6348","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE', 'SCIE')","2,443","2.6","('Q2', 'Q3', 'Q2')","0.58","48.00" +"JOURNAL OF POLYMER RESEARCH","1022-9760","1572-8935","POLYMER SCIENCE","('SCIE',)","8,804","2.6","Q3","0.58","5.27" +"MOLECULAR MICROBIOLOGY","0950-382X","1365-2958","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","28,109","2.6","('Q3', 'Q3')","0.58","40.14" +"RHEUMATIC DISEASE CLINICS OF NORTH AMERICA","0889-857X","1558-3163","RHEUMATOLOGY","('SCIE',)","2,535","2.6","Q2","0.58","4.62" +"Upstream Oil and Gas Technology","2666-2604","2666-2604","('ENERGY & FUELS', 'ENGINEERING, PETROLEUM')","('ESCI', 'ESCI')","207","2.6","('Q3', 'Q2')","0.58","7.04" +"Cardiovascular Digital Health Journal","2666-6936","2666-6936","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","250","2.6","Q2","0.57","78.72" +"IEEE ELECTRICAL INSULATION MAGAZINE","0883-7554","1558-4402","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","1,985","2.6","Q2","0.57","0.00" +"JOURNAL OF FOOD QUALITY","0146-9428","1745-4557","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","4,909","2.6","Q2","0.57","99.52" +"JOURNAL OF FOOD SCIENCE AND TECHNOLOGY-MYSORE","0022-1155","0975-8402","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","21,791","2.6","Q2","0.57","4.68" +"World Electric Vehicle Journal","2032-6653","2032-6653","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","2,586","2.6","('Q2', 'Q2')","0.57","99.76" +"ARABIAN JOURNAL FOR SCIENCE AND ENGINEERING","2193-567X","2191-4281","MULTIDISCIPLINARY SCIENCES","('SCIE',)","16,199","2.6","Q2","0.56","4.04" +"Computers","2073-431X","2073-431X","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","1,878","2.6","Q2","0.56","99.84" +"International Journal of Genomics","2314-436X","2314-4378","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","1,470","2.6","('Q3', 'Q3', 'Q2')","0.56","99.08" +"PHOTOCHEMISTRY AND PHOTOBIOLOGY","0031-8655","1751-1097","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","10,208","2.6","('Q3', 'Q3')","0.56","15.19" +"Clinical Hypertension","","2056-5909","PERIPHERAL VASCULAR DISEASE","('ESCI',)","607","2.6","Q2","0.55","100.00" +"International Journal of Geo-Engineering","2092-9196","2198-2783","ENGINEERING, GEOLOGICAL","('ESCI',)","573","2.6","Q2","0.55","100.00" +"INTERNATIONAL JOURNAL OF MODERN PHYSICS B","0217-9792","1793-6578","('PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE', 'SCIE')","7,354","2.6","('Q2', 'Q3', 'Q1')","0.55","0.69" +"JOURNAL OF COMPUTING AND INFORMATION SCIENCE IN ENGINEERING","1530-9827","1944-7078","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, MANUFACTURING')","('SCIE', 'SCIE')","1,585","2.6","('Q2', 'Q2')","0.55","0.74" +"MICROELECTRONIC ENGINEERING","0167-9317","1873-5568","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'NANOSCIENCE & NANOTECHNOLOGY', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","7,617","2.6","('Q2', 'Q3', 'Q2', 'Q2')","0.55","15.94" +"FINANCIAL REVIEW","0732-8516","1540-6288","BUSINESS, FINANCE","('ESCI',)","1,527","2.6","Q2","0.54","19.63" +"International Journal of Environmental Research","1735-6865","2008-2304","ENVIRONMENTAL SCIENCES","('SCIE',)","2,309","2.6","Q3","0.54","9.54" +"Synthetic Biology","","2397-7000","('BIOCHEMICAL RESEARCH METHODS', 'BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","384","2.6","('Q2', 'Q2', 'Q3')","0.54","95.59" +"ACS Food Science & Technology","","2692-1944","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","1,281","2.6","Q2","0.53","7.21" +"DNA AND CELL BIOLOGY","1044-5498","1557-7430","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","4,075","2.6","('Q3', 'Q3', 'Q2')","0.53","7.85" +"International Journal of Material Forming","1960-6206","1960-6214","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE', 'SCIE')","1,930","2.6","('Q2', 'Q3', 'Q2')","0.53","29.32" +"Journal of Social Entrepreneurship","1942-0676","1942-0684","BUSINESS","('ESCI',)","1,178","2.6","Q3","0.53","15.79" +"MEDICINA CLINICA","0025-7753","1578-8989","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,530","2.6","Q1","0.53","5.60" +"Vascular Health and Risk Management","1176-6344","1178-2048","PERIPHERAL VASCULAR DISEASE","('ESCI',)","3,110","2.6","Q2","0.53","97.41" +"Waste and Biomass Valorization","1877-2641","1877-265X","ENVIRONMENTAL SCIENCES","('SCIE',)","9,025","2.6","Q3","0.53","13.11" +"Metals","","2075-4701","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","26,236","2.6","('Q3', 'Q2')","0.52","99.63" +"MICROBIOLOGY-SGM","1350-0872","1465-2080","MICROBIOLOGY","('SCIE',)","14,887","2.6","Q3","0.52","0.59" +"Canadian Journal of Gastroenterology and Hepatology","2291-2789","2291-2797","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,031","2.6","Q2","0.51","100.00" +"Computational Urban Science","","2730-6852","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'REGIONAL & URBAN PLANNING')","('ESCI', 'ESCI')","216","2.6","('Q2', 'Q2')","0.51","99.10" +"Frontiers in Astronomy and Space Sciences","2296-987X","2296-987X","ASTRONOMY & ASTROPHYSICS","('SCIE',)","2,785","2.6","Q2","0.51","99.48" +"Journal of Experimental Nanoscience","1745-8080","1745-8099","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,752","2.6","('Q2', 'Q3', 'Q3', 'Q2')","0.51","98.04" +"STARCH-STARKE","0038-9056","1521-379X","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","6,560","2.6","Q2","0.50","3.94" +"International Journal of Simulation Modelling","1726-4529","1996-8566","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING')","('SCIE', 'SCIE')","902","2.6","('Q2', 'Q2')","0.49","99.47" +"CURRENT PHARMACEUTICAL DESIGN","1381-6128","1873-4286","PHARMACOLOGY & PHARMACY","('SCIE',)","19,484","2.6","Q2","0.48","1.34" +"European Annals of Allergy and Clinical Immunology","1764-1489","1764-1489","ALLERGY","('ESCI',)","676","2.6","Q2","0.48","2.22" +"Polymer-Plastics Technology and Materials","2574-0881","2574-089X","POLYMER SCIENCE","('SCIE',)","1,748","2.6","Q3","0.48","1.06" +"CELLULAR MICROBIOLOGY","1462-5814","1462-5822","('CELL BIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","8,446","2.6","('Q3', 'Q3')","0.47","82.20" +"IET Renewable Power Generation","1752-1416","1752-1424","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","6,818","2.6","('Q3', 'Q2', 'Q3')","0.47","78.03" +"International Journal of Precision Engineering and Manufacturing","2234-7593","2005-4602","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","4,832","2.6","('Q2', 'Q2')","0.47","4.70" +"JOURNAL OF ENERGY RESOURCES TECHNOLOGY-TRANSACTIONS OF THE ASME","0195-0738","1528-8994","ENERGY & FUELS","('SCIE',)","5,095","2.6","Q3","0.47","2.49" +"Magnetochemistry","","2312-7481","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","1,837","2.6","('Q2', 'Q3', 'Q3')","0.47","99.48" +"MOLECULAR BIOLOGY REPORTS","0301-4851","1573-4978","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","16,427","2.6","Q3","0.47","9.35" +"NEURAL PROCESSING LETTERS","1370-4621","1573-773X","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","5,000","2.6","Q3","0.47","3.95" +"EURO Journal on Computational Optimization","2192-4406","2192-4414","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","302","2.6","Q2","0.46","100.00" +"JOURNAL OF THE AMERICAN WATER RESOURCES ASSOCIATION","1093-474X","1752-1688","('ENGINEERING, ENVIRONMENTAL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","5,974","2.6","('Q3', 'Q2', 'Q2')","0.46","27.20" +"Learning Organization","0969-6474","1758-7905","MANAGEMENT","('ESCI',)","1,292","2.6","Q3","0.46","14.50" +"Allergy Asthma and Clinical Immunology","1710-1492","1710-1492","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","2,693","2.6","('Q2', 'Q3')","0.45","99.69" +"Application of Clinical Genetics","","1178-704X","GENETICS & HEREDITY","('ESCI',)","746","2.6","Q2","0.45","94.29" +"Therapeutic Advances in Cardiovascular Disease","1753-9447","1753-9455","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","686","2.6","Q2","0.45","94.74" +"Canadian Journal of Infectious Diseases & Medical Microbiology","1712-9532","1918-1493","('INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE')","1,910","2.6","('Q3', 'Q3')","0.44","98.84" +"Current Opinion in Endocrinology Diabetes and Obesity","1752-296X","1752-2978","ENDOCRINOLOGY & METABOLISM","('SCIE',)","3,072","2.6","Q3","0.44","14.72" +"CURRENT OPINION IN GASTROENTEROLOGY","0267-1379","1531-7056","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,075","2.6","Q2","0.44","4.20" +"Journal of Corporate Real Estate","1463-001X","1479-1048","MANAGEMENT","('ESCI',)","480","2.6","Q3","0.44","28.30" +"Computational Condensed Matter","2352-2143","2352-2143","PHYSICS, CONDENSED MATTER","('ESCI',)","1,314","2.6","Q3","0.43","1.31" +"Shape Memory and Superelasticity","2199-384X","2199-3858","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","828","2.6","Q3","0.43","21.49" +"Hepatic Medicine-Evidence and Research","1179-1535","1179-1535","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","372","2.6","Q2","0.42","100.00" +"Journal of Integrative Environmental Sciences","1943-815X","1943-8168","ENVIRONMENTAL SCIENCES","('SCIE',)","466","2.6","Q3","0.42","100.00" +"JOURNAL OF RECEPTORS AND SIGNAL TRANSDUCTION","1079-9893","1532-4281","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","1,731","2.6","('Q3', 'Q3')","0.41","7.58" +"World Journal of Clinical Oncology","2218-4333","2218-4333","ONCOLOGY","('ESCI',)","1,852","2.6","Q3","0.41","99.52" +"Applied Food Biotechnology","2345-5357","2423-4214","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","549","2.6","Q2","0.40","0.00" +"ChemNanoMat","2199-692X","2199-692X","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,539","2.6","('Q2', 'Q3', 'Q3')","0.40","10.70" +"ENFERMEDADES INFECCIOSAS Y MICROBIOLOGIA CLINICA","0213-005X","1578-1852","('INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE')","1,935","2.6","('Q3', 'Q3')","0.40","5.74" +"Frontiers in Materials","2296-8016","2296-8016","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","8,263","2.6","Q3","0.40","99.36" +"JOURNAL OF SOLID STATE ELECTROCHEMISTRY","1432-8488","1433-0768","ELECTROCHEMISTRY","('SCIE',)","9,867","2.6","Q3","0.40","9.30" +"KONA Powder and Particle Journal","0288-4534","2187-5537","('ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","885","2.6","('Q3', 'Q3')","0.39","100.00" +"Natural Sciences","2698-6248","2698-6248","MULTIDISCIPLINARY SCIENCES","('ESCI',)","206","2.6","Q2","0.39","84.72" +"Fuel Cells","1615-6846","1615-6854","('ELECTROCHEMISTRY', 'ENERGY & FUELS')","('SCIE', 'SCIE')","3,206","2.6","('Q3', 'Q3')","0.38","15.45" +"Beilstein Journal of Nanotechnology","2190-4286","2190-4286","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","5,504","2.6","('Q3', 'Q3', 'Q2')","0.37","99.70" +"Frontiers in Energy Research","2296-598X","2296-598X","ENERGY & FUELS","('SCIE',)","11,140","2.6","Q3","0.35","99.73" +"International Journal of Inflammation","2090-8040","2042-0099","IMMUNOLOGY","('ESCI',)","871","2.6","Q3","0.35","97.14" +"PROTEIN ENGINEERING DESIGN & SELECTION","1741-0126","1741-0134","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE')","4,221","2.6","('Q3', 'Q3')","0.34","19.44" +"CANCER JOURNAL","1528-9117","1540-336X","ONCOLOGY","('SCIE',)","2,973","2.6","Q3","0.32","5.03" +"IEEE SPECTRUM","0018-9235","1939-9340","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","1,953","2.6","Q2","0.31","0.00" +"Molecular & Cellular Oncology","","2372-3556","ONCOLOGY","('ESCI',)","1,159","2.6","Q3","0.24","52.27" +"JOURNAL OF GEOGRAPHY","0022-1341","1752-6868","GEOGRAPHY","('SSCI',)","815","2.6","Q1","0.20","30.00" +"JOURNAL OF ECONOMIC HISTORY","0022-0507","1471-6372","('ECONOMICS', 'HISTORY', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'AHCI', 'SSCI')","3,486","2.5","('Q2', 'Q1', 'Q1')","6.12","47.87" +"CHINA QUARTERLY","0305-7410","1468-2648","AREA STUDIES","('SSCI',)","3,834","2.5","Q1","2.92","52.71" +"CANADIAN JOURNAL OF AGRICULTURAL ECONOMICS-REVUE CANADIENNE D AGROECONOMIE","0008-3976","1744-7976","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('SCIE', 'SSCI')","1,181","2.5","('Q2', 'Q2')","2.63","27.14" +"International Journal of Bilingual Education and Bilingualism","1367-0050","1747-7522","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","3,159","2.5","('Q1', 'N/A', 'Q1')","2.13","16.47" +"Journal of Law and the Biosciences","2053-9711","2053-9711","('ETHICS', 'LAW', 'MEDICAL ETHICS', 'MEDICINE, LEGAL')","('SSCI', 'SSCI', 'SCIE', 'SCIE')","811","2.5","('Q1', 'Q1', 'Q2', 'Q1')","2.04","92.14" +"CORNELL LAW REVIEW","0010-8847","0010-8847","LAW","('SSCI',)","1,398","2.5","Q1","2.03","0.00" +"SCIENCE AS CULTURE","0950-5431","1470-1189","('CULTURAL STUDIES', 'HISTORY & PHILOSOPHY OF SCIENCE')","('AHCI, SSCI', 'AHCI, SSCI')","1,056","2.5","('Q1', 'Q1')","2.00","37.80" +"JOURNAL OF THE EUROPEAN MATHEMATICAL SOCIETY","1435-9855","","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","3,046","2.5","('Q1', 'Q1')","1.90","88.81" +"Journal of Nonlinear and Variational Analysis","2560-6921","2560-6778","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","343","2.5","('Q1', 'Q1')","1.81","5.45" +"Political Science Research and Methods","2049-8470","2049-8489","POLITICAL SCIENCE","('SSCI',)","1,751","2.5","Q1","1.73","43.95" +"POST-SOVIET AFFAIRS","1060-586X","1938-2855","('AREA STUDIES', 'ECONOMICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","932","2.5","('Q1', 'Q2', 'Q1')","1.65","37.93" +"Fractional Calculus and Applied Analysis","1311-0454","1314-2224","('MATHEMATICS', 'MATHEMATICS, APPLIED', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE', 'SCIE')","3,016","2.5","('Q1', 'Q1', 'Q2')","1.62","18.95" +"JOURNAL OF STRENGTH AND CONDITIONING RESEARCH","1064-8011","1533-4287","SPORT SCIENCES","('SCIE',)","23,075","2.5","Q2","1.62","1.79" +"FOUNDATIONS OF COMPUTATIONAL MATHEMATICS","1615-3375","1615-3383","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","2,178","2.5","('Q2', 'Q1', 'Q1')","1.56","47.33" +"AMERICAN REVIEW OF PUBLIC ADMINISTRATION","0275-0740","1552-3357","PUBLIC ADMINISTRATION","('SSCI',)","3,022","2.5","Q2","1.55","12.96" +"COMPUTATIONAL & APPLIED MATHEMATICS","2238-3603","1807-0302","MATHEMATICS, APPLIED","('SCIE',)","4,424","2.5","Q1","1.53","5.18" +"International Review of Research in Open and Distributed Learning","1492-3831","1492-3831","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,039","2.5","Q1","1.53","0.69" +"THEORY AND RESEARCH IN SOCIAL EDUCATION","0093-3104","2163-1654","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","985","2.5","Q1","1.48","14.71" +"Education Sciences","","2227-7102","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","7,877","2.5","Q1","1.46","99.73" +"Bilingualism-Language and Cognition","1366-7289","1469-1841","('LINGUISTICS', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","4,507","2.5","('Q1', 'Q2')","1.43","53.38" +"Knowledge Management & E-Learning-An International Journal","2073-7904","2073-7904","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","559","2.5","Q1","1.43","91.40" +"Journal of Educational Change","1389-2843","1573-1812","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,193","2.5","Q1","1.42","45.16" +"American Journal of Rhinology & Allergy","1945-8924","1945-8932","OTORHINOLARYNGOLOGY","('SCIE',)","4,280","2.5","Q1","1.39","5.65" +"STRUCTURAL EQUATION MODELING-A MULTIDISCIPLINARY JOURNAL","1070-5511","1532-8007","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SCIE', 'SSCI')","20,012","2.5","('Q2', 'Q1')","1.37","23.18" +"ANNALS OF THE AMERICAN ACADEMY OF POLITICAL AND SOCIAL SCIENCE","0002-7162","1552-3349","('POLITICAL SCIENCE', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","6,898","2.5","('Q1', 'Q1')","1.34","10.67" +"Sexuality Research and Social Policy","1868-9884","1553-6610","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","2,261","2.5","Q1","1.33","34.37" +"Social Movement Studies","1474-2837","1474-2829","('POLITICAL SCIENCE', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,914","2.5","('Q1', 'Q1')","1.32","31.90" +"GLOBAL NETWORKS-A JOURNAL OF TRANSNATIONAL AFFAIRS","1470-2266","1471-0374","('ANTHROPOLOGY', 'GEOGRAPHY', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","2,176","2.5","('Q1', 'Q1', 'Q1')","1.31","41.78" +"JOURNAL OF ADHESIVE DENTISTRY","1461-5185","1757-9988","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","2,269","2.5","Q2","1.31","0.00" +"PSYCHOLOGY OF WOMEN QUARTERLY","0361-6843","1471-6402","('PSYCHOLOGY, MULTIDISCIPLINARY', 'WOMENS STUDIES')","('SSCI', 'SSCI')","5,033","2.5","('Q2', 'Q1')","1.31","19.59" +"POLITICAL STUDIES","0032-3217","1467-9248","POLITICAL SCIENCE","('SSCI',)","4,664","2.5","Q1","1.30","48.55" +"Autism & Developmental Language Impairments","2396-9415","2396-9415","('EDUCATION, SPECIAL', 'LINGUISTICS', 'PSYCHOLOGY, DEVELOPMENTAL')","('ESCI', 'ESCI', 'ESCI')","403","2.5","('Q1', 'Q1', 'Q2')","1.29","91.55" +"PALAEONTOLOGY","0031-0239","1475-4983","PALEONTOLOGY","('SCIE',)","4,277","2.5","Q1","1.29","36.97" +"Journal of Hospitality & Tourism Education","1096-3758","2325-6540","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","602","2.5","Q1","1.28","5.32" +"Journal of Black Psychology","0095-7984","1552-4558","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","2,305","2.5","Q2","1.27","2.44" +"Politics and Governance","2183-2463","2183-2463","POLITICAL SCIENCE","('SSCI',)","2,020","2.5","Q1","1.26","98.55" +"International Journal of Telerehabilitation","1945-2020","1945-2020","REHABILITATION","('ESCI',)","660","2.5","Q1","1.25","98.67" +"ANIMAL FEED SCIENCE AND TECHNOLOGY","0377-8401","1873-2216","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","14,038","2.5","Q1","1.23","20.57" +"Health Sociology Review","1446-1242","1839-3551","('HEALTH POLICY & SERVICES', 'SOCIOLOGY')","('SSCI', 'SSCI')","838","2.5","('Q2', 'Q1')","1.23","29.17" +"HEARING RESEARCH","0378-5955","1878-5891","('AUDIOLOGY & SPEECH', 'NEUROSCIENCES', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE', 'SCIE')","9,917","2.5","('Q1', 'Q3', 'Q1')","1.23","36.98" +"THEORY INTO PRACTICE","0040-5841","1543-0421","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","4,076","2.5","Q1","1.23","6.31" +"Acta Orthopaedica","1745-3674","1745-3682","ORTHOPEDICS","('SCIE',)","8,925","2.5","Q1","1.22","98.28" +"BDJ Open","","2056-807X","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","358","2.5","Q2","1.20","100.00" +"Journal of Foot and Ankle Research","","1757-1146","ORTHOPEDICS","('SCIE',)","2,209","2.5","Q1","1.19","100.00" +"Journal of Diversity in Higher Education","1938-8926","1938-8934","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI', 'SSCI')","1,819","2.5","('Q1', 'Q2', 'Q2')","1.18","2.85" +"JOURNAL OF VOICE","0892-1997","1873-4588","('AUDIOLOGY & SPEECH', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE')","7,629","2.5","('Q1', 'Q1')","1.17","5.51" +"European Journal of International Security","2057-5637","2057-5645","INTERNATIONAL RELATIONS","('ESCI',)","416","2.5","Q1","1.15","74.71" +"JOURNAL OF LOSS & TRAUMA","1532-5024","1532-5032","PSYCHOLOGY, SOCIAL","('SSCI',)","1,701","2.5","Q2","1.14","15.00" +"MICRON","0968-4328","1878-4291","MICROSCOPY","('SCIE',)","4,323","2.5","Q1","1.14","19.27" +"Public Health Research & Practice","2204-2091","2204-2091","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","840","2.5","Q2","1.13","89.21" +"AVIAN PATHOLOGY","0307-9457","1465-3338","VETERINARY SCIENCES","('SCIE',)","4,029","2.5","Q1","1.10","17.81" +"JOURNAL OF CLINICAL PATHOLOGY","0021-9746","1472-4146","PATHOLOGY","('SCIE',)","10,662","2.5","Q2","1.09","16.41" +"Journal of Policy and Practice in Intellectual Disabilities","1741-1122","1741-1130","('HEALTH POLICY & SERVICES', 'REHABILITATION')","('SSCI', 'SSCI')","1,065","2.5","('Q2', 'Q1')","1.06","46.94" +"INTERNATIONAL JOURNAL OF SOCIAL PSYCHIATRY","0020-7640","1741-2854","PSYCHIATRY","('SSCI',)","5,102","2.5","Q2","1.05","18.45" +"POPULATION STUDIES-A JOURNAL OF DEMOGRAPHY","0032-4728","1477-4747","DEMOGRAPHY","('SSCI',)","1,911","2.5","Q1","1.05","61.17" +"Dentistry Journal","","2304-6767","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","2,358","2.5","Q2","1.04","99.85" +"ANNALS OF FOREST SCIENCE","1286-4560","1297-966X","FORESTRY","('SCIE',)","4,924","2.5","Q1","1.02","64.86" +"Journal of Southern Hemisphere Earth Systems Science","","2206-5865","('METEOROLOGY & ATMOSPHERIC SCIENCES', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","356","2.5","('Q3', 'Q2')","1.02","98.00" +"Journal of the Pediatric Infectious Diseases Society","2048-7193","2048-7207","('INFECTIOUS DISEASES', 'PEDIATRICS')","('SCIE', 'SCIE')","2,449","2.5","('Q3', 'Q1')","1.02","21.95" +"JOURNAL OF ECONOMIC PSYCHOLOGY","0167-4870","1872-7719","('ECONOMICS', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","5,801","2.5","('Q2', 'Q2')","1.01","33.70" +"Young","1103-3088","1741-3222","('SOCIAL SCIENCES, INTERDISCIPLINARY', 'SOCIOLOGY')","('SSCI', 'SSCI')","757","2.5","('Q1', 'Q1')","1.01","67.53" +"CLINICAL BIOCHEMISTRY","0009-9120","1873-2933","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","9,296","2.5","Q2","1.00","18.62" +"PRIMARY CARE","0095-4543","1558-299X","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","2,230","2.5","('Q1', 'Q2')","0.99","2.07" +"JOURNAL OF LEISURE RESEARCH","0022-2216","2159-6417","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'SOCIOLOGY')","('SSCI', 'SSCI')","2,766","2.5","('Q2', 'Q1')","0.98","5.98" +"JOURNAL OF REHABILITATION MEDICINE","1650-1977","1651-2081","('REHABILITATION', 'SPORT SCIENCES')","('SCIE', 'SCIE')","5,823","2.5","('Q1', 'Q2')","0.98","96.90" +"Biodiversity Informatics","","1546-9735","BIODIVERSITY CONSERVATION","('ESCI',)","266","2.5","Q2","0.97","12.50" +"BMC Palliative Care","1472-684X","1472-684X","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","4,039","2.5","('Q2', 'Q2')","0.96","99.83" +"CURRENT PSYCHOLOGY","1046-1310","1936-4733","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","13,827","2.5","Q2","0.96","21.02" +"Journal of Pediatric Health Care","0891-5245","1532-656X","('HEALTH POLICY & SERVICES', 'NURSING', 'PEDIATRICS')","('SSCI', 'SCIE, SSCI', 'SCIE')","1,809","2.5","('Q2', 'Q1', 'Q1')","0.96","4.27" +"Transcultural Psychiatry","1363-4615","1461-7471","('ANTHROPOLOGY', 'PSYCHIATRY')","('SSCI', 'SSCI')","2,294","2.5","('Q1', 'Q2')","0.96","21.91" +"Behavioral Sciences","","2076-328X","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","4,391","2.5","Q2","0.95","99.94" +"World Journal of Surgical Oncology","","1477-7819","('ONCOLOGY', 'SURGERY')","('SCIE', 'SCIE')","8,321","2.5","('Q3', 'Q1')","0.95","100.00" +"BEHAVIORAL ECOLOGY","1045-2249","1465-7279","('BEHAVIORAL SCIENCES', 'ECOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","9,326","2.5","('Q2', 'Q2', 'Q1')","0.94","26.65" +"BJGP Open","","2398-3795","PRIMARY HEALTH CARE","('ESCI',)","1,087","2.5","Q2","0.94","98.18" +"Journal of Palaeogeography-English","2095-3836","2524-4507","('GEOSCIENCES, MULTIDISCIPLINARY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","703","2.5","('Q2', 'Q1')","0.94","98.96" +"Animal Cells and Systems","1976-8354","2151-2485","('CELL BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","756","2.5","('Q3', 'Q1')","0.93","95.31" +"Crop Protection","0261-2194","1873-6904","AGRONOMY","('SCIE',)","12,850","2.5","Q1","0.93","21.33" +"Physical Review Fluids","2469-990X","2469-990X","PHYSICS, FLUIDS & PLASMAS","('SCIE',)","9,724","2.5","Q2","0.93","10.21" +"International Journal of Womens Health","1179-1411","1179-1411","OBSTETRICS & GYNECOLOGY","('SCIE',)","3,507","2.5","Q2","0.92","99.33" +"JOURNAL OF CHEMICAL EDUCATION","0021-9584","1938-1328","('CHEMISTRY, MULTIDISCIPLINARY', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('SCIE', 'SCIE')","20,268","2.5","('Q2', 'Q2')","0.92","12.12" +"Magnetic Resonance in Medical Sciences","1347-3182","1880-2206","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,170","2.5","Q2","0.92","97.97" +"COMPUTERS & GRAPHICS-UK","0097-8493","1873-7684","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","3,529","2.5","Q2","0.91","20.12" +"Eurasian Economic Review","1309-422X","2147-429X","ECONOMICS","('ESCI',)","418","2.5","Q2","0.91","33.75" +"CREATIVITY RESEARCH JOURNAL","1040-0419","1532-6934","('PSYCHOLOGY, EDUCATIONAL', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","4,024","2.5","('Q2', 'Q2')","0.90","17.14" +"Hormones and Behavior","0018-506X","1095-6867","('BEHAVIORAL SCIENCES', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","9,087","2.5","('Q2', 'Q3')","0.90","36.92" +"School Mental Health","1866-2625","1866-2633","('PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","1,753","2.5","('Q2', 'Q2')","0.90","20.18" +"EUROPEAN JOURNAL OF MECHANICS B-FLUIDS","0997-7546","1873-7390","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE')","4,016","2.5","('Q2', 'Q2')","0.89","14.35" +"INJURY PREVENTION","1353-8047","1475-5785","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","3,955","2.5","Q2","0.88","25.84" +"STEM CELLS AND DEVELOPMENT","1547-3287","1557-8534","('CELL & TISSUE ENGINEERING', 'HEMATOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'TRANSPLANTATION')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,889","2.5","('Q3', 'Q2', 'Q3', 'Q2')","0.88","7.80" +"ASSISTIVE TECHNOLOGY","1040-0435","1949-3614","REHABILITATION","('SSCI',)","1,450","2.5","Q1","0.87","20.10" +"JOURNAL OF HEALTH PSYCHOLOGY","1359-1053","1461-7277","PSYCHOLOGY, CLINICAL","('SSCI',)","7,439","2.5","Q2","0.87","22.69" +"DARU-Journal of Pharmaceutical Sciences","","2008-2231","PHARMACOLOGY & PHARMACY","('SCIE',)","2,211","2.5","Q3","0.85","6.67" +"ORGANOMETALLICS","0276-7333","1520-6041","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","27,509","2.5","('Q2', 'Q2')","0.85","9.76" +"THINKING & REASONING","1354-6783","1464-0708","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","1,331","2.5","Q2","0.85","18.67" +"ACM Transactions on Management Information Systems","2158-656X","2158-6578","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","881","2.5","Q2","0.84","4.59" +"International Review for the Sociology of Sport","1012-6902","1461-7218","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'SOCIOLOGY')","('SSCI', 'SSCI')","2,329","2.5","('Q2', 'Q1')","0.84","43.75" +"Radiography","1078-8174","1532-2831","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","2,619","2.5","Q2","0.84","29.64" +"Scandinavian Journal of Surgery","1457-4969","1799-7267","SURGERY","('SCIE',)","1,458","2.5","Q1","0.84","66.96" +"AMERICAN JOURNAL ON ADDICTIONS","1055-0496","1521-0391","SUBSTANCE ABUSE","('SSCI',)","2,922","2.5","Q2","0.83","15.15" +"EPIDEMIOLOGY AND INFECTION","0950-2688","1469-4409","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","9,815","2.5","('Q3', 'Q2')","0.83","100.00" +"Geriatric Nursing","0197-4572","1528-3984","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY', 'NURSING')","('SCIE', 'SSCI', 'SCIE, SSCI')","3,117","2.5","('Q3', 'Q2', 'Q1')","0.83","17.73" +"JOURNAL OF THE NATIONAL MEDICAL ASSOCIATION","0027-9684","1943-4693","MEDICINE, GENERAL & INTERNAL","('SCIE',)","4,004","2.5","Q1","0.83","8.54" +"FISH PHYSIOLOGY AND BIOCHEMISTRY","0920-1742","1573-5168","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'FISHERIES', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,988","2.5","('Q3', 'Q1', 'Q2')","0.82","9.97" +"MEMORIAS DO INSTITUTO OSWALDO CRUZ","0074-0276","1678-8060","('PARASITOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","5,374","2.5","('Q2', 'Q2')","0.82","93.87" +"Perspectives on Behavior Science","2520-8969","2520-8977","PSYCHOLOGY, CLINICAL","('SSCI',)","534","2.5","Q2","0.82","13.08" +"European Journal of Development Research","0957-8811","1743-9728","DEVELOPMENT STUDIES","('SSCI',)","2,130","2.5","Q2","0.81","44.59" +"International Gambling Studies","1445-9795","1479-4276","SUBSTANCE ABUSE","('SSCI',)","1,061","2.5","Q2","0.81","26.88" +"JOURNAL OF CLINICAL PSYCHOLOGY","0021-9762","1097-4679","PSYCHOLOGY, CLINICAL","('SSCI',)","10,862","2.5","Q2","0.81","28.30" +"NEUROSURGICAL REVIEW","0344-5607","1437-2320","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","4,993","2.5","('Q2', 'Q1')","0.81","25.91" +"Accounting Education","0963-9284","1468-4489","BUSINESS, FINANCE","('ESCI',)","1,357","2.5","Q2","0.80","16.95" +"DERMATOLOGIC SURGERY","1076-0512","1524-4725","('DERMATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","9,160","2.5","('Q2', 'Q1')","0.80","8.00" +"INTERNATIONAL JOURNAL OF COLORECTAL DISEASE","0179-1958","1432-1262","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","7,996","2.5","('Q2', 'Q1')","0.80","29.10" +"JOURNAL OF ENGINEERING DESIGN","0954-4828","1466-1837","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","1,188","2.5","Q1","0.80","20.69" +"Horticulture Environment and Biotechnology","2211-3452","2211-3460","HORTICULTURE","('SCIE',)","2,102","2.5","Q1","0.79","6.72" +"INTERNATIONAL JOURNAL OF PSYCHOPHYSIOLOGY","0167-8760","1872-7697","('NEUROSCIENCES', 'PHYSIOLOGY', 'PSYCHOLOGY', 'PSYCHOLOGY, BIOLOGICAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SCIE', 'SSCI', 'SSCI')","9,422","2.5","('Q3', 'Q2', 'Q2', 'Q2', 'Q2')","0.79","26.15" +"Journal of Management Education","1052-5629","1552-6658","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,473","2.5","Q1","0.79","22.47" +"Pregnancy Hypertension-An International Journal of Womens Cardiovascular Health","2210-7789","2210-7789","('OBSTETRICS & GYNECOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","2,333","2.5","('Q2', 'Q2')","0.78","27.30" +"RADIATION RESEARCH","0033-7587","1938-5404","('BIOLOGY', 'BIOPHYSICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","8,176","2.5","('Q2', 'Q3', 'Q2')","0.78","0.63" +"Transactions on Emerging Telecommunications Technologies","2161-3915","2161-3915","TELECOMMUNICATIONS","('SCIE',)","3,649","2.5","Q3","0.78","3.49" +"AMERICAN JOURNAL OF NURSING","0002-936X","1538-7488","NURSING","('SCIE', 'SSCI')","2,692","2.5","Q1","0.77","0.00" +"ANNALS OF GLACIOLOGY","0260-3055","1727-5644","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","3,915","2.5","('Q2', 'Q2')","0.77","100.00" +"COGNITIVE AFFECTIVE & BEHAVIORAL NEUROSCIENCE","1530-7026","1531-135X","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES')","('SCIE', 'SCIE')","4,606","2.5","('Q2', 'Q3')","0.77","39.64" +"European Accounting Review","0963-8180","1468-4497","BUSINESS, FINANCE","('SSCI',)","2,962","2.5","Q2","0.77","33.33" +"Journal of Natural Medicines","1340-3443","1861-0293","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","3,302","2.5","('Q3', 'Q3')","0.77","15.83" +"AMERICAN JOURNAL OF MANAGED CARE","1088-0224","","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'MEDICINE, GENERAL & INTERNAL')","('SCIE', 'SSCI', 'SCIE')","5,128","2.5","('Q2', 'Q2', 'Q1')","0.76","0.25" +"DEVELOPMENTAL BIOLOGY","0012-1606","1095-564X","DEVELOPMENTAL BIOLOGY","('SCIE',)","23,665","2.5","Q2","0.76","75.21" +"International Journal of Public Sector Management","0951-3558","1758-6666","('MANAGEMENT', 'PUBLIC ADMINISTRATION')","('ESCI', 'ESCI')","1,616","2.5","('Q3', 'Q2')","0.76","16.24" +"Multiple Sclerosis Journal-Experimental Translational and Clinical","","2055-2173","CLINICAL NEUROLOGY","('ESCI',)","908","2.5","Q2","0.76","92.86" +"BIOORGANIC & MEDICINAL CHEMISTRY LETTERS","0960-894X","1464-3405","('CHEMISTRY, MEDICINAL', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","34,012","2.5","('Q3', 'Q2')","0.75","14.40" +"Current Urology Reports","1527-2737","1534-6285","UROLOGY & NEPHROLOGY","('SCIE',)","2,027","2.5","Q2","0.75","10.34" +"EURASIP Journal on Information Security","2510-523X","2510-523X","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","490","2.5","Q2","0.75","100.00" +"Fitoterapia","0367-326X","1873-6971","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","11,324","2.5","('Q3', 'Q3')","0.75","6.55" +"Geomechanics and Engineering","2005-307X","2092-6219","('ENGINEERING, CIVIL', 'ENGINEERING, GEOLOGICAL')","('SCIE', 'SCIE')","3,462","2.5","('Q2', 'Q2')","0.75","0.00" +"Osteoporosis and Sarcopenia","2405-5255","2405-5263","('ENDOCRINOLOGY & METABOLISM', 'ORTHOPEDICS')","('ESCI', 'ESCI')","242","2.5","('Q3', 'Q1')","0.75","96.88" +"Pain Practice","1530-7085","1533-2500","('ANESTHESIOLOGY', 'CLINICAL NEUROLOGY')","('SCIE', 'SCIE')","3,302","2.5","('Q2', 'Q2')","0.75","29.12" +"ANNALS OF NUCLEAR MEDICINE","0914-7187","1864-6433","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","2,717","2.5","Q2","0.74","21.09" +"Inzinerine Ekonomika-Engineering Economics","1392-2785","2029-5839","ECONOMICS","('SSCI',)","938","2.5","Q2","0.74","98.33" +"JOURNAL OF ACADEMIC LIBRARIANSHIP","0099-1333","1879-1999","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","2,309","2.5","Q2","0.74","10.62" +"Reproductive Biology","1642-431X","2300-732X","REPRODUCTIVE BIOLOGY","('SCIE',)","1,511","2.5","Q3","0.74","13.28" +"Cardiology Journal","1897-5593","1898-018X","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,807","2.5","Q2","0.73","98.77" +"EXPERIMENTAL HEAT TRANSFER","0891-6152","1521-0480","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","1,598","2.5","('Q2', 'Q2')","0.73","1.26" +"Frontiers in Neuroinformatics","","1662-5196","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","4,391","2.5","('Q2', 'Q3')","0.73","99.65" +"JAMIA Open","","2574-2531","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('ESCI', 'ESCI')","1,158","2.5","('Q2', 'Q3')","0.73","91.87" +"Journal of Business Economics and Management","1611-1699","2029-4433","('BUSINESS', 'ECONOMICS')","('SSCI', 'SSCI')","1,967","2.5","('Q3', 'Q2')","0.73","97.12" +"Physiological Genomics","1094-8341","1531-2267","('CELL BIOLOGY', 'GENETICS & HEREDITY', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,300","2.5","('Q3', 'Q3', 'Q2')","0.73","10.71" +"Applied Economic Analysis","","2632-7627","ECONOMICS","('SSCI',)","122","2.5","Q2","0.72","97.62" +"Heart Failure Clinics","1551-7136","","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,358","2.5","Q2","0.72","14.46" +"IEEE Electrification Magazine","2325-5897","2325-5889","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","895","2.5","Q2","0.72","6.25" +"International Journal of Energy Sector Management","1750-6220","1750-6239","MANAGEMENT","('ESCI',)","1,324","2.5","Q3","0.72","1.28" +"JOURNAL OF SPORT & SOCIAL ISSUES","0193-7235","1552-7638","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,480","2.5","('Q2', 'Q1')","0.72","15.91" +"Menopause Review-Przeglad Menopauzalny","1643-8876","2299-0038","OBSTETRICS & GYNECOLOGY","('ESCI',)","798","2.5","Q2","0.72","98.35" +"MUTAGENESIS","0267-8357","1464-3804","('GENETICS & HEREDITY', 'TOXICOLOGY')","('SCIE', 'SCIE')","2,808","2.5","('Q3', 'Q3')","0.72","32.38" +"Obesity Research & Clinical Practice","1871-403X","1878-0318","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","2,163","2.5","('Q3', 'Q3')","0.72","17.62" +"URBAN ECOSYSTEMS","1083-8155","1573-1642","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","4,785","2.5","('Q2', 'Q2')","0.72","29.85" +"AMERICAN JOURNAL OF REPRODUCTIVE IMMUNOLOGY","1046-7408","1600-0897","('IMMUNOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","6,354","2.5","('Q3', 'Q3')","0.71","12.42" +"AUSTRALIAN JOURNAL OF GRAPE AND WINE RESEARCH","1322-7130","1755-0238","('FOOD SCIENCE & TECHNOLOGY', 'HORTICULTURE')","('SCIE', 'SCIE')","2,985","2.5","('Q3', 'Q1')","0.71","83.33" +"HARVARD REVIEW OF PSYCHIATRY","1067-3229","1465-7309","PSYCHIATRY","('SCIE', 'SSCI')","2,686","2.5","Q2","0.71","12.62" +"IET Collaborative Intelligent Manufacturing","","2516-8398","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING')","('ESCI', 'ESCI')","287","2.5","('Q2', 'Q3')","0.71","79.76" +"Investigative and Clinical Urology","2466-0493","2466-054X","UROLOGY & NEPHROLOGY","('SCIE',)","1,107","2.5","Q2","0.71","100.00" +"Neuropsychiatric Disease and Treatment","","1178-2021","('CLINICAL NEUROLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE')","9,941","2.5","('Q2', 'Q2')","0.70","98.13" +"NUCLEAR PHYSICS B","0550-3213","1873-1562","PHYSICS, PARTICLES & FIELDS","('SCIE',)","34,733","2.5","Q2","0.70","96.97" +"PHOTODERMATOLOGY PHOTOIMMUNOLOGY & PHOTOMEDICINE","0905-4383","1600-0781","DERMATOLOGY","('SCIE',)","2,067","2.5","Q2","0.70","15.29" +"Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration","2167-8421","2167-9223","CLINICAL NEUROLOGY","('SCIE',)","4,285","2.5","Q2","0.69","41.47" +"JOURNAL OF EARTHQUAKE ENGINEERING","1363-2469","1559-808X","('ENGINEERING, CIVIL', 'ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","5,309","2.5","('Q2', 'Q2', 'Q2')","0.69","2.27" +"Journal of Movement Disorders","2005-940X","2093-4939","CLINICAL NEUROLOGY","('SCIE',)","762","2.5","Q2","0.69","100.00" +"VIRUS RESEARCH","0168-1702","1872-7492","VIROLOGY","('SCIE',)","11,952","2.5","Q3","0.69","45.90" +"Aerosol and Air Quality Research","1680-8584","2071-1409","ENVIRONMENTAL SCIENCES","('SCIE',)","6,312","2.5","Q3","0.68","99.09" +"Earth and Planetary Physics","2096-3955","2096-3955","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","804","2.5","Q2","0.68","98.79" +"ICARUS","0019-1035","1090-2643","ASTRONOMY & ASTROPHYSICS","('SCIE',)","26,166","2.5","Q2","0.68","52.49" +"Journal of Pain Research","1178-7090","1178-7090","CLINICAL NEUROLOGY","('SCIE',)","7,049","2.5","Q2","0.68","96.85" +"JOURNAL OF SUPERCOMPUTING","0920-8542","1573-0484","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","8,432","2.5","('Q2', 'Q2', 'Q2')","0.68","7.96" +"Pain Research & Management","1203-6765","1918-1523","CLINICAL NEUROLOGY","('SCIE',)","3,179","2.5","Q2","0.68","98.92" +"AQUATIC CONSERVATION-MARINE AND FRESHWATER ECOSYSTEMS","1052-7613","1099-0755","('ENVIRONMENTAL SCIENCES', 'MARINE & FRESHWATER BIOLOGY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","5,730","2.5","('Q3', 'Q1', 'Q2')","0.67","24.95" +"ARCHIVES OF PHYSIOLOGY AND BIOCHEMISTRY","1381-3455","1744-4160","('ENDOCRINOLOGY & METABOLISM', 'PHYSIOLOGY')","('SCIE', 'SCIE')","2,417","2.5","('Q3', 'Q2')","0.67","1.87" +"BIOCHEMICAL AND BIOPHYSICAL RESEARCH COMMUNICATIONS","0006-291X","1090-2104","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","85,993","2.5","('Q3', 'Q3')","0.67","23.88" +"INTERNATIONAL JOURNAL OF INFORMATION TECHNOLOGY & DECISION MAKING","0219-6220","1793-6845","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,653","2.5","('Q3', 'Q2', 'Q3', 'Q2')","0.67","1.09" +"JOURNAL OF COMPUTER INFORMATION SYSTEMS","0887-4417","2380-2057","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","2,528","2.5","Q2","0.67","7.43" +"ULTRASONIC IMAGING","0161-7346","1096-0910","('ACOUSTICS', 'ENGINEERING, BIOMEDICAL', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","1,000","2.5","('Q1', 'Q3', 'Q2')","0.67","9.09" +"Dermatology Practical & Conceptual","2160-9381","2160-9381","DERMATOLOGY","('SCIE',)","1,063","2.5","Q2","0.66","97.91" +"Journal of Cardiology","0914-5087","1876-4738","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","4,370","2.5","Q2","0.66","70.34" +"ALCOHOL","0741-8329","1873-6823","('PHARMACOLOGY & PHARMACY', 'SUBSTANCE ABUSE', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,973","2.5","('Q3', 'Q2', 'Q3')","0.65","29.73" +"ARCHIVES OF SUICIDE RESEARCH","1381-1118","1543-6136","('PSYCHIATRY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","2,679","2.5","('Q2', 'Q2')","0.65","15.94" +"PATHOLOGY INTERNATIONAL","1320-5463","1440-1827","PATHOLOGY","('SCIE',)","2,935","2.5","Q2","0.65","14.37" +"Bioscience of Microbiota Food and Health","2186-6953","2186-3342","('MICROBIOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","795","2.5","('Q3', 'Q3')","0.64","96.25" +"EUROPEAN JOURNAL OF ORGANIC CHEMISTRY","1434-193X","1099-0690","CHEMISTRY, ORGANIC","('SCIE',)","23,691","2.5","Q2","0.64","25.34" +"Health and Human Rights","","2150-4113","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","1,100","2.5","Q2","0.64","0.00" +"Housing Theory & Society","1403-6096","1651-2278","('ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI')","1,166","2.5","('Q3', 'Q2', 'Q2')","0.64","45.98" +"Journal of Islamic Accounting and Business Research","1759-0817","1759-0825","BUSINESS, FINANCE","('ESCI',)","1,242","2.5","Q2","0.64","0.64" +"Neuropeptides","0143-4179","1532-2785","('ENDOCRINOLOGY & METABOLISM', 'NEUROSCIENCES')","('SCIE', 'SCIE')","2,185","2.5","('Q3', 'Q3')","0.64","19.21" +"Biology Methods & Protocols","","2396-8923","BIOCHEMICAL RESEARCH METHODS","('ESCI',)","327","2.5","Q3","0.63","93.94" +"IJC Heart & Vasculature","","2352-9067","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","2,151","2.5","Q2","0.63","95.95" +"JOURNAL OF MANAGEMENT DEVELOPMENT","0262-1711","1758-7492","MANAGEMENT","('ESCI',)","2,689","2.5","Q3","0.63","7.29" +"MANAGEMENT IN EDUCATION","0892-0206","1741-9883","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","422","2.5","Q1","0.63","26.53" +"AMERICAN JOURNAL OF HEALTH PROMOTION","0890-1171","2168-6602","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","4,377","2.5","Q2","0.62","11.02" +"Asia-Pacific Financial Markets","1387-2834","1573-6946","ECONOMICS","('ESCI',)","376","2.5","Q2","0.62","9.09" +"CytoJournal","0974-5963","1742-6413","PATHOLOGY","('SCIE',)","459","2.5","Q2","0.62","99.00" +"Informatics for Health & Social Care","1753-8157","1753-8165","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE')","786","2.5","('Q2', 'Q3')","0.62","16.28" +"INTERNATIONAL JOURNAL OF INDUSTRIAL ERGONOMICS","0169-8141","1872-8219","('ENGINEERING, INDUSTRIAL', 'ERGONOMICS')","('SCIE', 'SSCI')","4,923","2.5","('Q2', 'Q2')","0.62","17.47" +"DEVELOPING ECONOMIES","0012-1533","1746-1049","('DEVELOPMENT STUDIES', 'ECONOMICS')","('SSCI', 'SSCI')","481","2.5","('Q2', 'Q2')","0.61","2.94" +"Heart Rhythm O2","2666-5018","2666-5018","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","698","2.5","Q2","0.61","77.70" +"JOURNAL OF CONSUMER AFFAIRS","0022-0078","1745-6606","('BUSINESS', 'ECONOMICS')","('SSCI', 'SSCI')","2,644","2.5","('Q3', 'Q2')","0.61","26.04" +"JOURNAL OF THE AMERICAN PHARMACISTS ASSOCIATION","1544-3191","1544-3450","PHARMACOLOGY & PHARMACY","('SCIE',)","4,062","2.5","Q3","0.61","10.75" +"MANAGERIAL AND DECISION ECONOMICS","0143-6570","1099-1468","('ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI')","3,252","2.5","('Q2', 'Q3')","0.61","8.65" +"MARKETING LETTERS","0923-0645","1573-059X","BUSINESS","('SSCI',)","3,379","2.5","Q3","0.61","28.00" +"NEUROSCIENCE LETTERS","0304-3940","1872-7972","NEUROSCIENCES","('SCIE',)","31,352","2.5","Q3","0.61","17.17" +"Separations","","2297-8739","CHEMISTRY, ANALYTICAL","('SCIE',)","2,974","2.5","Q3","0.61","99.92" +"Tuberculosis and Respiratory Diseases","1738-3536","2005-6184","RESPIRATORY SYSTEM","('ESCI',)","1,119","2.5","Q2","0.61","99.00" +"ANNALS ACADEMY OF MEDICINE SINGAPORE","","2972-4066","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,652","2.5","Q1","0.60","99.34" +"BASIC AND APPLIED SOCIAL PSYCHOLOGY","0197-3533","1532-4834","PSYCHOLOGY, SOCIAL","('SSCI',)","2,542","2.5","Q2","0.60","11.63" +"DIGESTIVE DISEASES AND SCIENCES","0163-2116","1573-2568","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","18,736","2.5","Q2","0.60","13.18" +"EUROPEAN JOURNAL OF CONTROL","0947-3580","1435-5671","AUTOMATION & CONTROL SYSTEMS","('SCIE',)","2,184","2.5","Q2","0.60","22.43" +"JOURNAL OF POROUS MEDIA","1091-028X","1934-0508","('ENGINEERING, MECHANICAL', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","1,365","2.5","('Q2', 'Q2', 'Q2')","0.60","0.00" +"VADOSE ZONE JOURNAL","","1539-1663","('ENVIRONMENTAL SCIENCES', 'SOIL SCIENCE', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","5,312","2.5","('Q3', 'Q2', 'Q2')","0.60","86.14" +"Applied Ontology","1570-5838","1875-8533","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","287","2.5","('Q3', 'Q2', 'Q2')","0.59","8.33" +"BMC GASTROENTEROLOGY","","1471-230X","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","9,435","2.5","Q2","0.59","99.79" +"Cancer Management and Research","1179-1322","1179-1322","ONCOLOGY","('SCIE',)","11,732","2.5","Q3","0.59","96.28" +"INTERNATIONAL JOURNAL OF DAIRY TECHNOLOGY","1364-727X","1471-0307","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","2,843","2.5","Q3","0.59","16.32" +"Journal of Analytical Science and Technology","2093-3134","2093-3371","CHEMISTRY, ANALYTICAL","('SCIE',)","1,060","2.5","Q3","0.59","100.00" +"Mitigation and Adaptation Strategies for Global Change","1381-2386","1573-1596","ENVIRONMENTAL SCIENCES","('SCIE',)","3,485","2.5","Q3","0.59","35.29" +"Annals of Public and Cooperative Economics","1370-4788","1467-8292","ECONOMICS","('SSCI',)","1,096","2.5","Q2","0.58","33.09" +"BIOTECHNOLOGY AND BIOPROCESS ENGINEERING","1226-8372","1976-3816","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","3,022","2.5","Q3","0.58","0.00" +"BIOTECHNOLOGY PROGRESS","8756-7938","1520-6033","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","7,262","2.5","('Q3', 'Q3')","0.58","23.47" +"COMPUTERS & FLUIDS","0045-7930","1879-0747","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MECHANICS')","('SCIE', 'SCIE')","12,022","2.5","('Q3', 'Q2')","0.58","24.51" +"CYTOMETRY PART A","1552-4922","1552-4930","('BIOCHEMICAL RESEARCH METHODS', 'CELL BIOLOGY')","('SCIE', 'SCIE')","5,156","2.5","('Q3', 'Q3')","0.58","39.38" +"Ecohydrology","1936-0584","1936-0592","('ECOLOGY', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","3,778","2.5","('Q2', 'Q3', 'Q2')","0.58","19.17" +"Food Additives & Contaminants Part B-Surveillance","1939-3210","1939-3229","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,421","2.5","('Q2', 'Q3', 'Q3')","0.58","0.00" +"Journal of Integrative Neuroscience","0219-6352","1757-448X","NEUROSCIENCES","('SCIE',)","1,326","2.5","Q3","0.58","99.54" +"Journal of Medical Toxicology","1556-9039","1937-6995","TOXICOLOGY","('SCIE',)","1,610","2.5","Q3","0.58","8.33" +"KNOWLEDGE AND INFORMATION SYSTEMS","0219-1377","0219-3116","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","4,707","2.5","('Q3', 'Q2')","0.58","16.43" +"Photonics and Nanostructures-Fundamentals and Applications","1569-4410","1569-4429","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,336","2.5","('Q3', 'Q3', 'Q2', 'Q2')","0.58","7.83" +"SLAS Technology","2472-6303","2472-6311","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE')","921","2.5","('Q3', 'Q3')","0.58","95.76" +"TRANSFUSION","0041-1132","1537-2995","HEMATOLOGY","('SCIE',)","12,801","2.5","Q2","0.58","17.50" +"Abacus-A Journal of Accounting Finance and Business Studies","0001-3072","1467-6281","BUSINESS, FINANCE","('SSCI',)","1,188","2.5","Q2","0.57","17.44" +"BIOCHIMICA ET BIOPHYSICA ACTA-PROTEINS AND PROTEOMICS","1570-9639","1878-1454","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","7,434","2.5","('Q3', 'Q3')","0.57","18.72" +"CELLULAR PHYSIOLOGY AND BIOCHEMISTRY","1015-8987","1421-9778","('CELL BIOLOGY', 'PHYSIOLOGY')","('ESCI', 'ESCI')","14,647","2.5","('Q3', 'Q2')","0.57","98.73" +"JOURNAL OF MICROELECTROMECHANICAL SYSTEMS","1057-7157","1941-0158","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,520","2.5","('Q2', 'Q2', 'Q3', 'Q2')","0.57","20.45" +"Oncology Letters","1792-1074","1792-1082","ONCOLOGY","('SCIE',)","24,363","2.5","Q3","0.57","98.41" +"Tremor and Other Hyperkinetic Movements","2160-8288","2160-8288","CLINICAL NEUROLOGY","('ESCI',)","961","2.5","Q2","0.57","97.62" +"Universe","","2218-1997","('ASTRONOMY & ASTROPHYSICS', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","4,609","2.5","('Q2', 'Q2')","0.57","99.64" +"ANAEROBE","1075-9964","1095-8274","MICROBIOLOGY","('SCIE',)","5,235","2.5","Q3","0.56","20.67" +"Applied Sciences-Basel","","2076-3417","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","125,694","2.5","('Q2', 'Q1', 'Q3', 'Q2')","0.56","99.50" +"Atmosphere","","2073-4433","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","19,592","2.5","('Q3', 'Q3')","0.56","99.59" +"FIIB Business Review","2319-7145","2455-2658","('BUSINESS', 'MANAGEMENT')","('ESCI', 'ESCI')","648","2.5","('Q3', 'Q3')","0.56","3.63" +"JOURNAL OF CARDIOVASCULAR PHARMACOLOGY AND THERAPEUTICS","1074-2484","1940-4034","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,484","2.5","('Q2', 'Q3')","0.56","58.82" +"JOURNAL OF MICROBIOLOGY AND BIOTECHNOLOGY","1017-7825","1738-8872","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","7,521","2.5","('Q3', 'Q3')","0.56","1.28" +"JOURNAL OF WATER AND HEALTH","1477-8920","1996-7829","('ENVIRONMENTAL SCIENCES', 'MICROBIOLOGY')","('SCIE', 'SCIE')","2,826","2.5","('Q3', 'Q3')","0.56","100.00" +"PROTOPLASMA","0033-183X","1615-6102","('CELL BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","5,982","2.5","('Q3', 'Q2')","0.56","11.22" +"Advances in Medical Sciences","1896-1126","1898-4002","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","1,519","2.5","Q3","0.55","19.38" +"CHROMOSOMA","0009-5915","1432-0886","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","2,880","2.5","('Q3', 'Q3')","0.55","45.00" +"EXPERIMENTAL HEMATOLOGY","0301-472X","1873-2399","('HEMATOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","4,702","2.5","('Q2', 'Q3')","0.55","64.06" +"INTERNATIONAL JOURNAL OF CONTROL AUTOMATION AND SYSTEMS","1598-6446","2005-4092","AUTOMATION & CONTROL SYSTEMS","('SCIE',)","5,898","2.5","Q2","0.55","0.00" +"JOURNAL OF INVESTIGATIVE MEDICINE","1081-5589","1708-8267","('MEDICINE, GENERAL & INTERNAL', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","2,892","2.5","('Q1', 'Q3')","0.55","13.07" +"PLATELETS","0953-7104","1369-1635","('CELL BIOLOGY', 'HEMATOLOGY')","('SCIE', 'SCIE')","3,997","2.5","('Q3', 'Q2')","0.55","45.69" +"RESEARCH IN MICROBIOLOGY","0923-2508","1769-7123","MICROBIOLOGY","('SCIE',)","5,057","2.5","Q3","0.55","68.05" +"CURRENT PROBLEMS IN CANCER","0147-0272","1535-6345","ONCOLOGY","('SCIE',)","1,440","2.5","Q3","0.54","14.36" +"IEEE Journal of Photovoltaics","2156-3381","2156-3403","('ENERGY & FUELS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","6,628","2.5","('Q3', 'Q3', 'Q2')","0.54","21.28" +"NAIS-Native American and Indigenous Studies Association","2332-1261","2332-1261","ETHNIC STUDIES","('ESCI',)","124","2.5","Q1","0.54","0.00" +"ONCOLOGY","0030-2414","1423-0232","ONCOLOGY","('SCIE',)","4,297","2.5","Q3","0.54","19.87" +"APPLIED PHYSICS A-MATERIALS SCIENCE & PROCESSING","0947-8396","1432-0630","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","25,654","2.5","('Q3', 'Q2')","0.53","6.10" +"ACM Transactions on Accessible Computing","1936-7228","1936-7236","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","599","2.5","Q3","0.52","4.94" +"Cancer Control","1073-2748","1526-2359","ONCOLOGY","('SCIE',)","2,765","2.5","Q3","0.52","94.05" +"EXPERT OPINION ON PHARMACOTHERAPY","1465-6566","1744-7666","PHARMACOLOGY & PHARMACY","('SCIE',)","6,538","2.5","Q3","0.52","9.13" +"Global Health-Science and Practice","2169-575X","2169-575X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","1,974","2.5","Q2","0.52","97.35" +"IEEE TRANSACTIONS ON DEVICE AND MATERIALS RELIABILITY","1530-4388","1558-2574","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","2,357","2.5","('Q2', 'Q2')","0.52","24.52" +"International Journal of Computational Intelligence Systems","1875-6891","1875-6883","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","2,519","2.5","('Q3', 'Q3')","0.52","97.04" +"MACROMOLECULAR CHEMISTRY AND PHYSICS","1022-1352","1521-3935","POLYMER SCIENCE","('SCIE',)","9,122","2.5","Q3","0.52","28.90" +"WATER ENVIRONMENT RESEARCH","1061-4303","1554-7531","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'LIMNOLOGY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,762","2.5","('Q3', 'Q3', 'Q1', 'Q2')","0.52","12.41" +"YALE JOURNAL OF BIOLOGY AND MEDICINE","0044-0086","1551-4056","BIOLOGY","('SCIE',)","3,015","2.5","Q2","0.52","29.56" +"ARCHIVES OF VIROLOGY","0304-8608","1432-8798","VIROLOGY","('SCIE',)","12,434","2.5","Q3","0.51","13.47" +"Environmental Research Communications","2515-7620","2515-7620","ENVIRONMENTAL SCIENCES","('SCIE',)","1,529","2.5","Q3","0.51","98.45" +"Frontiers in Pain Research","","2673-561X","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('ESCI', 'ESCI')","888","2.5","('Q2', 'Q3')","0.51","99.38" +"HEMATOLOGY-ONCOLOGY CLINICS OF NORTH AMERICA","0889-8588","1558-1977","('HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","3,107","2.5","('Q2', 'Q3')","0.51","13.49" +"JOURNAL OF VIRAL HEPATITIS","1352-0504","1365-2893","('GASTROENTEROLOGY & HEPATOLOGY', 'INFECTIOUS DISEASES', 'VIROLOGY')","('SCIE', 'SCIE', 'SCIE')","4,426","2.5","('Q2', 'Q3', 'Q3')","0.51","23.85" +"Measuring Business Excellence","1368-3047","1758-8057","BUSINESS","('ESCI',)","985","2.5","Q3","0.51","11.43" +"Beni-Suef University Journal of Basic and Applied Sciences","","2314-8543","MULTIDISCIPLINARY SCIENCES","('ESCI',)","1,572","2.5","Q2","0.50","100.00" +"IET Quantum Communication","","2632-8925","('QUANTUM SCIENCE & TECHNOLOGY', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI')","193","2.5","('Q3', 'Q3')","0.50","70.13" +"INTERNATIONAL ARCHIVES OF ALLERGY AND IMMUNOLOGY","1018-2438","1423-0097","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","5,444","2.5","('Q3', 'Q3')","0.50","23.13" +"International Journal of Polymeric Materials and Polymeric Biomaterials","0091-4037","1563-535X","('MATERIALS SCIENCE, BIOMATERIALS', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","3,209","2.5","('Q4', 'Q3')","0.50","1.29" +"Recent Patents on Anti-Cancer Drug Discovery","1574-8928","2212-3970","('ONCOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","999","2.5","('Q3', 'Q3')","0.50","0.00" +"Current Opinion in Physiology","","2468-8673","PHYSIOLOGY","('ESCI',)","1,248","2.5","Q2","0.49","40.96" +"Epigenomes","","2075-4655","GENETICS & HEREDITY","('ESCI',)","327","2.5","Q3","0.49","100.00" +"GRAPHICAL MODELS","1524-0703","1524-0711","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","912","2.5","Q2","0.49","52.11" +"HISTOLOGY AND HISTOPATHOLOGY","0213-3911","1699-5848","('CELL BIOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","4,085","2.5","('Q3', 'Q2')","0.49","0.00" +"World Journal of Gastrointestinal Oncology","1948-5204","1948-5204","('GASTROENTEROLOGY & HEPATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","2,644","2.5","('Q2', 'Q3')","0.49","95.47" +"Briefings in Functional Genomics","2041-2649","2041-2657","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","2,010","2.5","('Q3', 'Q3')","0.48","17.72" +"Journal of Sustainable Metallurgy","2199-3823","2199-3831","('GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","2,076","2.5","('Q3', 'Q2')","0.48","14.61" +"Decision Analysis","1545-8490","1545-8504","MANAGEMENT","('SSCI',)","602","2.5","Q3","0.47","0.00" +"EUROPEAN JOURNAL OF PSYCHIATRY","0213-6163","0213-6163","PSYCHIATRY","('SSCI',)","571","2.5","Q2","0.47","23.76" +"Future Microbiology","1746-0913","1746-0921","MICROBIOLOGY","('SCIE',)","5,329","2.5","Q3","0.47","6.80" +"CJC Open","2589-790X","2589-790X","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","895","2.5","Q2","0.46","81.42" +"Clinical and Experimental Gastroenterology","1178-7023","1178-7023","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","1,131","2.5","Q2","0.46","98.92" +"Flexible Services and Manufacturing Journal","1936-6582","1936-6590","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","917","2.5","('Q2', 'Q3', 'Q2')","0.46","30.33" +"IMMUNOBIOLOGY","0171-2985","1878-3279","IMMUNOLOGY","('SCIE',)","5,036","2.5","Q3","0.46","17.68" +"International Journal of Urban Sustainable Development","1946-3138","1946-3146","ENVIRONMENTAL STUDIES","('ESCI',)","565","2.5","Q3","0.46","68.49" +"International Journal of Web Information Systems","1744-0084","1744-0092","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","331","2.5","Q2","0.46","11.69" +"JOURNAL OF MAGNETISM AND MAGNETIC MATERIALS","0304-8853","1873-4766","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","43,152","2.5","('Q3', 'Q3')","0.46","12.36" +"Minerva Endocrinology","2724-6507","2724-6116","ENDOCRINOLOGY & METABOLISM","('SCIE',)","987","2.5","Q3","0.46","3.43" +"Results in Chemistry","2211-7156","2211-7156","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","2,440","2.5","Q2","0.46","99.14" +"ALLERGOLOGIA ET IMMUNOPATHOLOGIA","0301-0546","1578-1267","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","2,375","2.5","('Q3', 'Q3')","0.45","95.87" +"INTERNATIONAL JOURNAL OF THERMOPHYSICS","0195-928X","1572-9567","('CHEMISTRY, PHYSICAL', 'MECHANICS', 'PHYSICS, APPLIED', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,223","2.5","('Q3', 'Q2', 'Q2', 'Q2')","0.45","20.20" +"Physica Status Solidi-Rapid Research Letters","1862-6254","1862-6270","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","4,595","2.5","('Q3', 'Q2', 'Q3')","0.45","15.91" +"PROSTAGLANDINS & OTHER LIPID MEDIATORS","1098-8823","2212-196X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","2,522","2.5","('Q3', 'Q3')","0.45","10.97" +"World Journal of Hepatology","1948-5182","1948-5182","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","4,086","2.5","Q2","0.45","100.00" +"International Journal of Stem Cells","2005-3606","2005-5447","('CELL & TISSUE ENGINEERING', 'CELL BIOLOGY')","('SCIE', 'SCIE')","887","2.5","('Q3', 'Q3')","0.44","100.00" +"Anthropocene Review","2053-0196","2053-020X","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SSCI', 'SCIE')","1,009","2.5","('Q3', 'Q3', 'Q2')","0.43","43.62" +"WATER SCIENCE AND TECHNOLOGY","0273-1223","1996-9732","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","22,215","2.5","('Q3', 'Q3', 'Q2')","0.43","97.26" +"Journal of Cancer Prevention","2288-3649","2288-3657","ONCOLOGY","('ESCI',)","972","2.5","Q3","0.41","98.73" +"JOURNAL OF POROUS MATERIALS","1380-2224","1573-4854","('CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","4,517","2.5","('Q2', 'Q3', 'Q3')","0.41","2.85" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART L-JOURNAL OF MATERIALS-DESIGN AND APPLICATIONS","1464-4207","2041-3076","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","2,944","2.5","Q3","0.40","1.00" +"ChemistryOpen","2191-1363","2191-1363","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","2,361","2.5","Q2","0.39","68.60" +"FASEB BioAdvances","","2573-9832","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('ESCI', 'ESCI')","694","2.5","('Q3', 'Q3')","0.39","72.34" +"SPORTS MEDICINE AND ARTHROSCOPY REVIEW","1062-8592","1538-1951","SPORT SCIENCES","('SCIE',)","1,310","2.5","Q2","0.39","0.00" +"INTERNATIONAL REVIEWS IN PHYSICAL CHEMISTRY","0144-235X","1366-591X","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","1,670","2.5","('Q3', 'Q2')","0.38","0.00" +"IETE TECHNICAL REVIEW","0256-4602","0974-5971","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","1,332","2.5","('Q2', 'Q3')","0.37","1.18" +"KYBERNETES","0368-492X","1758-7883","COMPUTER SCIENCE, CYBERNETICS","('SCIE',)","3,515","2.5","Q2","0.37","2.49" +"Frontiers of Materials Science","2095-025X","2095-0268","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","1,086","2.5","Q3","0.35","0.77" +"AI MAGAZINE","0738-4602","2371-9621","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","2,641","2.5","Q3","0.33","57.98" +"Frontiers in Chemical Engineering","","2673-2718","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENGINEERING, CHEMICAL')","('ESCI', 'ESCI')","630","2.5","('Q3', 'Q3')","0.33","99.62" +"Colloids and Interfaces","","2504-5377","CHEMISTRY, PHYSICAL","('ESCI',)","964","2.5","Q3","0.32","100.00" +"International Journal of Vascular Medicine","2090-2824","2090-2832","PERIPHERAL VASCULAR DISEASE","('ESCI',)","463","2.5","Q2","0.32","100.00" +"Nano Futures","","2399-1984","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","433","2.5","('Q3', 'Q3', 'Q2')","0.32","13.64" +"Ecological Chemistry and Engineering S-Chemia I Inzynieria Ekologiczna S","1898-6196","2084-4549","ENVIRONMENTAL SCIENCES","('SCIE',)","767","2.5","Q3","0.29","86.40" +"SOCIOLOGY OF RELIGION","1069-4404","1759-8818","('RELIGION', 'SOCIOLOGY')","('AHCI', 'SSCI')","1,429","2.4","('N/A', 'Q1')","3.03","20.59" +"Journal of Contemporary China","1067-0564","1469-9400","AREA STUDIES","('SSCI',)","2,721","2.4","Q1","2.70","14.06" +"Television & New Media","1527-4764","1552-8316","('COMMUNICATION', 'FILM, RADIO, TELEVISION')","('SSCI', 'AHCI')","1,534","2.4","('Q1', 'N/A')","2.58","19.61" +"JOURNAL OF RISK RESEARCH","1366-9877","1466-4461","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","3,266","2.4","Q1","2.51","36.24" +"VIRGINIA LAW REVIEW","0042-6601","0042-6601","LAW","('SSCI',)","1,985","2.4","Q1","2.34","0.00" +"VANDERBILT LAW REVIEW","0042-2533","1942-9886","LAW","('SSCI',)","1,411","2.4","Q1","2.21","0.00" +"Journal of Differential Equations","0022-0396","1090-2732","MATHEMATICS","('SCIE',)","22,555","2.4","Q1","2.19","17.97" +"Language Culture and Curriculum","0790-8318","1747-7573","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","941","2.4","('Q1', 'N/A', 'Q1')","2.15","16.44" +"Review of Research in Education","0091-732X","1935-1038","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,006","2.4","Q1","2.14","11.54" +"GEOMETRIC AND FUNCTIONAL ANALYSIS","1016-443X","1420-8970","MATHEMATICS","('SCIE',)","2,727","2.4","Q1","2.00","35.05" +"LAW AND HUMAN BEHAVIOR","0147-7307","1573-661X","('LAW', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI')","3,240","2.4","('Q1', 'Q2')","1.98","5.31" +"Annual Review of Law and Social Science","1550-3585","1550-3631","('LAW', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,366","2.4","('Q1', 'Q1')","1.81","71.43" +"Journal of Consumer Culture","1469-5405","1741-2900","('CULTURAL STUDIES', 'SOCIOLOGY')","('AHCI, SSCI', 'SSCI')","1,787","2.4","('Q1', 'Q1')","1.79","26.47" +"JOURNAL OF LEARNING DISABILITIES","0022-2194","1538-4780","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","3,744","2.4","('Q1', 'Q1')","1.74","19.59" +"Journal of Applied Mathematics and Computing","1598-5865","1865-2085","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,782","2.4","('Q1', 'Q1')","1.64","2.83" +"Games and Culture","1555-4120","1555-4139","('COMMUNICATION', 'CULTURAL STUDIES')","('SSCI', 'AHCI, SSCI')","1,501","2.4","('Q1', 'Q1')","1.57","27.15" +"EDUCATIONAL ADMINISTRATION QUARTERLY","0013-161X","1552-3519","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,391","2.4","Q1","1.55","11.29" +"Journal of Current Southeast Asian Affairs","1868-1034","1868-4882","('AREA STUDIES', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","423","2.4","('Q1', 'Q1', 'Q1')","1.53","95.16" +"EDUCATIONAL EVALUATION AND POLICY ANALYSIS","0162-3737","1935-1062","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,786","2.4","Q1","1.49","10.08" +"Annals of PDE","2524-5317","2199-2576","('MATHEMATICS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","505","2.4","('Q1', 'Q1')","1.46","24.66" +"Contemporary Educational Technology","","1309-517X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","744","2.4","Q1","1.43","93.53" +"BRITISH JOURNAL OF CRIMINOLOGY","0007-0955","1464-3529","CRIMINOLOGY & PENOLOGY","('SSCI',)","4,233","2.4","Q1","1.41","36.16" +"TEACHING IN HIGHER EDUCATION","1356-2517","1470-1294","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,602","2.4","Q1","1.37","31.96" +"International Journal of Leadership in Education","1360-3124","1464-5092","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,477","2.4","Q1","1.36","19.22" +"Journal of the American Board of Family Medicine","1557-2625","1558-7118","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","4,119","2.4","('Q1', 'Q2')","1.36","93.61" +"Vertebrate Zoology","1864-5755","","ZOOLOGY","('SCIE',)","517","2.4","Q1","1.35","96.30" +"Journal of Lower Genital Tract Disease","1089-2591","1526-0976","OBSTETRICS & GYNECOLOGY","('SCIE',)","1,924","2.4","Q2","1.33","18.86" +"JOURNAL OF NURSING SCHOLARSHIP","1527-6546","1547-5069","NURSING","('SCIE', 'SSCI')","4,132","2.4","Q1","1.28","22.30" +"CHILDREN AND YOUTH SERVICES REVIEW","0190-7409","1873-7765","('FAMILY STUDIES', 'SOCIAL WORK')","('SSCI', 'SSCI')","15,874","2.4","('Q1', 'Q1')","1.26","21.27" +"INTERNATIONAL STUDIES QUARTERLY","0020-8833","1468-2478","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","5,936","2.4","('Q1', 'Q1')","1.26","30.52" +"DISASTERS","0361-3666","1467-7717","('ENVIRONMENTAL STUDIES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","3,047","2.4","('Q3', 'Q1')","1.23","45.70" +"JOURNAL OF PUBLIC AFFAIRS EDUCATION","1523-6803","2328-9643","('EDUCATION & EDUCATIONAL RESEARCH', 'PUBLIC ADMINISTRATION')","('ESCI', 'ESCI')","724","2.4","('Q1', 'Q2')","1.23","12.00" +"SURGICAL ENDOSCOPY AND OTHER INTERVENTIONAL TECHNIQUES","0930-2794","1432-2218","SURGERY","('SCIE',)","28,388","2.4","Q2","1.23","19.57" +"Race Ethnicity and Education","1361-3324","1470-109X","('EDUCATION & EDUCATIONAL RESEARCH', 'ETHNIC STUDIES')","('SSCI', 'SSCI')","3,154","2.4","('Q1', 'Q1')","1.21","12.78" +"Electronic Journal of e-Learning","1479-4403","1479-4403","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","873","2.4","Q1","1.20","3.45" +"Journal of Occupational Science","1442-7591","2158-1576","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","1,284","2.4","Q1","1.20","20.14" +"Convergence-The International Journal of Research into New Media Technologies","1354-8565","1748-7382","COMMUNICATION","('SSCI',)","1,781","2.4","Q1","1.19","31.58" +"PARTY POLITICS","1354-0688","1460-3683","POLITICAL SCIENCE","('SSCI',)","3,429","2.4","Q1","1.19","38.18" +"Psychology of Violence","2152-0828","2152-081X","('CRIMINOLOGY & PENOLOGY', 'FAMILY STUDIES', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI', 'SSCI')","2,387","2.4","('Q1', 'Q1', 'Q2')","1.18","5.16" +"SOCIOLOGY-THE JOURNAL OF THE BRITISH SOCIOLOGICAL ASSOCIATION","0038-0385","1469-8684","SOCIOLOGY","('SSCI',)","6,841","2.4","Q1","1.18","65.07" +"Journal of Chinese Governance","2381-2346","2381-2354","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","399","2.4","('Q1', 'Q2')","1.17","7.41" +"Journal of Nursing Research","1682-3141","1948-965X","NURSING","('SCIE', 'SSCI')","1,366","2.4","Q1","1.17","100.00" +"EQUINE VETERINARY JOURNAL","0425-1644","2042-3306","VETERINARY SCIENCES","('SCIE',)","7,745","2.4","Q1","1.16","44.00" +"Journal of Tissue Viability","0965-206X","1876-4746","('DERMATOLOGY', 'NURSING')","('SCIE', 'SCIE, SSCI')","1,485","2.4","('Q2', 'Q1')","1.16","25.09" +"Nonlinear Engineering - Modeling and Application","2192-8010","2192-8029","('ENGINEERING, MECHANICAL', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('ESCI', 'ESCI')","786","2.4","('Q2', 'Q2')","1.16","96.15" +"Head & Face Medicine","","1746-160X","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,350","2.4","Q2","1.15","99.31" +"International Journal of Intercultural Relations","0147-1767","1873-7552","('PSYCHOLOGY, SOCIAL', 'SOCIAL SCIENCES, INTERDISCIPLINARY', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","4,748","2.4","('Q2', 'Q1', 'Q1')","1.15","22.56" +"Journal of Exercise Science & Fitness","1728-869X","1728-869X","SPORT SCIENCES","('SCIE',)","770","2.4","Q2","1.15","94.59" +"Animal Bioscience","2765-0189","2765-0235","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,075","2.4","Q1","1.14","99.49" +"FOOT & ANKLE INTERNATIONAL","1071-1007","1944-7876","ORTHOPEDICS","('SCIE',)","10,773","2.4","Q2","1.14","6.89" +"Nurse Educator","0363-3624","1538-9855","NURSING","('SCIE', 'SSCI')","1,909","2.4","Q1","1.14","4.15" +"THERIOGENOLOGY","0093-691X","1879-3231","('REPRODUCTIVE BIOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","18,828","2.4","('Q3', 'Q1')","1.14","15.78" +"Journal of Pediatric Surgery","0022-3468","1531-5037","('PEDIATRICS', 'SURGERY')","('SCIE', 'SCIE')","18,869","2.4","('Q1', 'Q2')","1.12","9.25" +"INDUSTRIAL RELATIONS","0019-8676","1468-232X","INDUSTRIAL RELATIONS & LABOR","('SSCI',)","1,232","2.4","Q2","1.11","50.68" +"Sociological Methodology","0081-1750","1467-9531","SOCIOLOGY","('SSCI',)","3,267","2.4","Q1","1.11","22.22" +"European Educational Research Journal","1474-9041","1474-9041","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,472","2.4","Q1","1.09","45.34" +"Nursing Reports","2039-439X","2039-4403","NURSING","('ESCI',)","519","2.4","Q1","1.09","99.69" +"ACTA PAEDIATRICA","0803-5253","1651-2227","PEDIATRICS","('SCIE',)","14,372","2.4","Q1","1.08","50.53" +"European Journal of Sport Science","1746-1391","1536-7290","SPORT SCIENCES","('SCIE',)","5,820","2.4","Q2","1.08","25.67" +"JOURNAL OF HEAD TRAUMA REHABILITATION","0885-9701","1550-509X","('CLINICAL NEUROLOGY', 'REHABILITATION')","('SCIE', 'SCIE, SSCI')","4,405","2.4","('Q2', 'Q1')","1.07","9.73" +"Journal of Sports Science and Medicine","1303-2968","1303-2968","SPORT SCIENCES","('SCIE',)","4,325","2.4","Q2","1.07","98.02" +"NURSING CLINICS OF NORTH AMERICA","0029-6465","1558-1357","NURSING","('SCIE', 'SSCI')","1,151","2.4","Q1","1.07","0.68" +"APPLIED PSYCHOLINGUISTICS","0142-7164","1469-1817","('LINGUISTICS', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","3,036","2.4","('Q1', 'Q2')","1.06","57.74" +"Asian American Journal of Psychology","1948-1985","1948-1993","('ETHNIC STUDIES', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","1,064","2.4","('Q1', 'Q2')","1.06","3.74" +"VETERINARY MICROBIOLOGY","0378-1135","1873-2542","('MICROBIOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","16,307","2.4","('Q3', 'Q1')","1.06","16.08" +"APIDOLOGIE","0044-8435","1297-9678","ENTOMOLOGY","('SCIE',)","5,208","2.4","Q1","1.04","35.12" +"CANCER NURSING","0162-220X","1538-9804","('NURSING', 'ONCOLOGY')","('SCIE, SSCI', 'SCIE')","4,303","2.4","('Q1', 'Q3')","1.04","5.86" +"FAMILY PRACTICE","0263-2136","1460-2229","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","4,970","2.4","('Q1', 'Q2')","1.04","29.87" +"Journal of Integrated Pest Management","","2155-7470","ENTOMOLOGY","('SCIE',)","1,038","2.4","Q1","1.04","91.84" +"CardioRenal Medicine","1664-3828","1664-5502","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","789","2.4","('Q2', 'Q2')","1.02","100.00" +"Cyberpsychology-Journal of Psychosocial Research on Cyberspace","1802-7962","1802-7962","('COMMUNICATION', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","1,052","2.4","('Q1', 'Q2')","1.01","99.22" +"Updates in Surgery","2038-131X","2038-3312","SURGERY","('SCIE',)","2,695","2.4","Q2","1.01","27.60" +"Evaluation","1356-3890","1461-7153","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","1,418","2.4","Q1","1.00","39.76" +"Forests","","1999-4907","FORESTRY","('SCIE',)","24,356","2.4","Q1","1.00","99.73" +"Journal of Perinatology","0743-8346","1476-5543","('OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","9,240","2.4","('Q2', 'Q1')","1.00","9.62" +"POLYHEDRON","0277-5387","1873-3719","('CHEMISTRY, INORGANIC & NUCLEAR', 'CRYSTALLOGRAPHY')","('SCIE', 'SCIE')","14,469","2.4","('Q2', 'Q2')","1.00","8.88" +"GRAEFES ARCHIVE FOR CLINICAL AND EXPERIMENTAL OPHTHALMOLOGY","0721-832X","1435-702X","OPHTHALMOLOGY","('SCIE',)","11,383","2.4","Q2","0.99","29.20" +"JOURNAL OF HOMOSEXUALITY","0091-8369","1540-3602","('PSYCHOLOGY, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","4,929","2.4","('Q2', 'Q1')","0.98","12.07" +"Journal of Marketing for Higher Education","0884-1241","1540-7144","('BUSINESS', 'EDUCATION & EDUCATIONAL RESEARCH')","('SSCI', 'SSCI')","1,024","2.4","('Q3', 'Q1')","0.98","13.45" +"Asia-Pacific Journal of Oncology Nursing","2347-5625","2349-6673","NURSING","('SCIE', 'SSCI')","1,250","2.4","Q1","0.96","73.97" +"DISCOURSE & SOCIETY","0957-9265","1460-3624","('COMMUNICATION', 'PSYCHOLOGY, MULTIDISCIPLINARY', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","2,624","2.4","('Q1', 'Q2', 'Q1')","0.96","30.09" +"Healthcare","","2227-9032","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","15,981","2.4","('Q2', 'Q2')","0.95","99.83" +"European Journal of Wood and Wood Products","0018-3768","1436-736X","('FORESTRY', 'MATERIALS SCIENCE, PAPER & WOOD')","('SCIE', 'SCIE')","3,189","2.4","('Q1', 'Q1')","0.93","22.92" +"SOCIAL & CULTURAL GEOGRAPHY","1464-9365","1470-1197","GEOGRAPHY","('SSCI',)","2,971","2.4","Q2","0.93","41.46" +"Topics in Spinal Cord Injury Rehabilitation","1082-0744","1945-5763","REHABILITATION","('ESCI',)","1,102","2.4","Q1","0.93","2.50" +"BIOMETRIKA","0006-3444","1464-3510","('BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","25,509","2.4","('Q2', 'Q2', 'Q1')","0.92","14.67" +"JOURNAL OF RAMAN SPECTROSCOPY","0377-0486","1097-4555","SPECTROSCOPY","('SCIE',)","11,360","2.4","Q2","0.92","20.08" +"Orthodontics & Craniofacial Research","1601-6335","1601-6343","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","2,036","2.4","Q2","0.92","23.60" +"SoftwareX","2352-7110","2352-7110","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","5,571","2.4","Q2","0.92","89.86" +"Basic and Clinical Andrology","","2051-4190","ANDROLOGY","('SCIE',)","465","2.4","Q2","0.91","100.00" +"JARO-JOURNAL OF THE ASSOCIATION FOR RESEARCH IN OTOLARYNGOLOGY","1525-3961","1438-7573","('NEUROSCIENCES', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE')","2,251","2.4","('Q3', 'Q1')","0.90","31.34" +"Gesunde Pflanzen","0367-4223","1439-0345","AGRONOMY","('SCIE',)","1,196","2.4","Q1","0.89","9.52" +"NEUROLOGIA MEDICO-CHIRURGICA","0470-8105","1349-8029","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","3,479","2.4","('Q2', 'Q2')","0.89","98.29" +"Physical and Engineering Sciences in Medicine","2662-4729","2662-4737","('ENGINEERING, BIOMEDICAL', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","1,152","2.4","('Q3', 'Q2')","0.89","18.97" +"Applied Physiology Nutrition and Metabolism","1715-5312","1715-5320","('NUTRITION & DIETETICS', 'PHYSIOLOGY', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","6,972","2.4","('Q3', 'Q2', 'Q2')","0.88","15.37" +"Current Bioinformatics","1574-8936","2212-392X","('BIOCHEMICAL RESEARCH METHODS', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","1,080","2.4","('Q3', 'Q2')","0.88","1.89" +"Molecular and Cellular Pediatrics","","2194-7791","PEDIATRICS","('ESCI',)","377","2.4","Q1","0.88","100.00" +"Orthopaedic Journal of Sports Medicine","","2325-9671","('ORTHOPEDICS', 'SPORT SCIENCES')","('SCIE', 'SCIE')","8,123","2.4","('Q2', 'Q2')","0.88","91.23" +"FISHERIES","0363-2415","1548-8446","FISHERIES","('SCIE',)","2,687","2.4","Q1","0.87","25.49" +"AMERICAN NATURALIST","0003-0147","1537-5323","('ECOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE')","25,785","2.4","('Q2', 'Q2')","0.86","19.09" +"INTERNATIONAL JOURNAL OF BEHAVIORAL DEVELOPMENT","0165-0254","1464-0651","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","4,441","2.4","Q2","0.86","28.67" +"Journal of Patient-Reported Outcomes","","2509-8020","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('ESCI', 'ESCI')","1,677","2.4","('Q2', 'Q2')","0.86","100.00" +"BMC Womens Health","","1472-6874","('OBSTETRICS & GYNECOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI')","7,130","2.4","('Q2', 'Q2')","0.85","99.82" +"City & Community","1535-6841","1540-6040","('SOCIOLOGY', 'URBAN STUDIES')","('SSCI', 'SSCI')","1,452","2.4","('Q1', 'Q2')","0.85","17.31" +"HEART & LUNG","0147-9563","1527-3288","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'NURSING', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE', 'SCIE')","3,445","2.4","('Q2', 'Q1', 'Q2')","0.85","15.87" +"Journal of Institutional Economics","1744-1374","1744-1382","ECONOMICS","('SSCI',)","1,430","2.4","Q2","0.85","48.26" +"Current Transplantation Reports","","2196-3029","('SURGERY', 'TRANSPLANTATION')","('ESCI', 'ESCI')","471","2.4","('Q2', 'Q2')","0.84","26.17" +"Ultrasonography","2288-5919","2288-5943","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,146","2.4","Q2","0.84","99.48" +"Diagnostic Pathology","","1746-1596","PATHOLOGY","('SCIE',)","3,645","2.4","Q2","0.83","100.00" +"JOURNAL OF PEDIATRIC GASTROENTEROLOGY AND NUTRITION","0277-2116","1536-4801","('GASTROENTEROLOGY & HEPATOLOGY', 'NUTRITION & DIETETICS', 'PEDIATRICS')","('SCIE', 'SCIE', 'SCIE')","13,480","2.4","('Q3', 'Q3', 'Q1')","0.83","9.59" +"Journal of Studies on Alcohol and Drugs","1937-1888","1938-4114","('PSYCHOLOGY', 'SUBSTANCE ABUSE')","('SCIE', 'SCIE, SSCI')","5,593","2.4","('Q2', 'Q2')","0.83","2.14" +"Journal of Work and Organizational Psychology-Revista de Psicologia del Trabajo y de las Organizaciones","1576-5962","2174-0534","PSYCHOLOGY, APPLIED","('SSCI',)","660","2.4","Q2","0.83","100.00" +"PHYSIOLOGY & BEHAVIOR","0031-9384","1873-507X","('BEHAVIORAL SCIENCES', 'PSYCHOLOGY, BIOLOGICAL')","('SCIE', 'SSCI')","21,617","2.4","('Q2', 'Q2')","0.83","26.95" +"Zoonoses and Public Health","1863-1959","1863-2378","('INFECTIOUS DISEASES', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","2,758","2.4","('Q3', 'Q1')","0.83","27.11" +"EuroChoices","1478-0917","1746-692X","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","403","2.4","Q2","0.82","52.17" +"Health Services Insights","1178-6329","1178-6329","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","811","2.4","Q2","0.82","96.55" +"Journal of Agribusiness in Developing and Emerging Economies","2044-0839","2044-0847","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('ESCI', 'ESCI')","902","2.4","('Q2', 'Q2')","0.82","4.83" +"JOURNAL OF CROSS-CULTURAL PSYCHOLOGY","0022-0221","1552-5422","PSYCHOLOGY, SOCIAL","('SSCI',)","7,037","2.4","Q2","0.82","22.60" +"MEDICAL CARE RESEARCH AND REVIEW","1077-5587","1552-6801","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","2,658","2.4","('Q2', 'Q2')","0.82","10.91" +"Journal of Mining Institute","2411-3336","2541-9404","MINING & MINERAL PROCESSING","('ESCI',)","1,094","2.4","Q2","0.81","83.83" +"FUNGAL GENETICS AND BIOLOGY","1087-1845","1096-0937","('GENETICS & HEREDITY', 'MYCOLOGY')","('SCIE', 'SCIE')","5,616","2.4","('Q3', 'Q3')","0.80","35.67" +"Medicina del Lavoro","0025-7818","0025-7818","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","734","2.4","Q2","0.80","0.00" +"DRUG DEVELOPMENT AND INDUSTRIAL PHARMACY","0363-9045","1520-5762","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","7,802","2.4","('Q3', 'Q3')","0.79","3.22" +"GENES BRAIN AND BEHAVIOR","1601-1848","1601-183X","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES')","('SCIE', 'SCIE')","3,519","2.4","('Q2', 'Q3')","0.79","66.41" +"Journal of Agrarian Change","1471-0358","1471-0366","('DEVELOPMENT STUDIES', 'ECONOMICS')","('SSCI', 'SSCI')","1,582","2.4","('Q2', 'Q2')","0.79","35.54" +"MALARIA JOURNAL","","1475-2875","('INFECTIOUS DISEASES', 'PARASITOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE', 'SCIE')","14,780","2.4","('Q3', 'Q2', 'Q2')","0.79","99.59" +"ULTRASOUND IN MEDICINE AND BIOLOGY","0301-5629","1879-291X","('ACOUSTICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","12,278","2.4","('Q2', 'Q2')","0.79","25.24" +"UROLOGIC CLINICS OF NORTH AMERICA","0094-0143","1558-318X","UROLOGY & NEPHROLOGY","('SCIE',)","2,110","2.4","Q2","0.79","6.54" +"EXPERIMENTAL AND CLINICAL PSYCHOPHARMACOLOGY","1064-1297","1936-2293","('PHARMACOLOGY & PHARMACY', 'PSYCHIATRY', 'PSYCHOLOGY, BIOLOGICAL', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SCIE', 'SSCI', 'SSCI')","3,004","2.4","('Q3', 'Q2', 'Q2', 'Q2')","0.78","18.10" +"GEBURTSHILFE UND FRAUENHEILKUNDE","0016-5751","1438-8804","OBSTETRICS & GYNECOLOGY","('SCIE',)","1,535","2.4","Q2","0.78","59.85" +"International Journal of Biomathematics","1793-5245","1793-7159","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('SCIE',)","1,475","2.4","Q2","0.78","0.00" +"PSYCHOLOGY & HEALTH","0887-0446","1476-8321","('PSYCHOLOGY, MULTIDISCIPLINARY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","6,555","2.4","('Q2', 'Q2')","0.78","31.17" +"CANADIAN FAMILY PHYSICIAN","0008-350X","1715-5258","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","4,626","2.4","('Q1', 'Q2')","0.77","100.00" +"JOURNAL OF GAMBLING STUDIES","1050-5350","1573-3602","('PSYCHOLOGY, MULTIDISCIPLINARY', 'SUBSTANCE ABUSE')","('SSCI', 'SSCI')","3,368","2.4","('Q2', 'Q2')","0.77","42.65" +"Materials Testing","0025-5300","2195-8572","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('SCIE',)","2,149","2.4","Q2","0.77","1.83" +"AMERICAN JOURNAL OF BOTANY","0002-9122","1537-2197","PLANT SCIENCES","('SCIE',)","16,852","2.4","Q2","0.76","39.70" +"Brain Connectivity","2158-0014","2158-0022","NEUROSCIENCES","('SCIE',)","2,825","2.4","Q3","0.76","8.99" +"CANCER BIOTHERAPY AND RADIOPHARMACEUTICALS","1084-9785","1557-8852","('MEDICINE, RESEARCH & EXPERIMENTAL', 'ONCOLOGY', 'PHARMACOLOGY & PHARMACY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,492","2.4","('Q3', 'Q3', 'Q3', 'Q2')","0.76","5.17" +"Frontiers in Insect Science","","2673-8600","ENTOMOLOGY","('ESCI',)","218","2.4","Q1","0.76","99.35" +"Health Psychology and Behavioral Medicine","2164-2850","2164-2850","PSYCHOLOGY, CLINICAL","('ESCI',)","882","2.4","Q2","0.76","96.63" +"Journal of Immunotoxicology","1547-691X","1547-6901","TOXICOLOGY","('SCIE',)","1,091","2.4","Q3","0.76","97.50" +"JOURNAL OF TRAUMATIC STRESS","0894-9867","1573-6598","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","8,915","2.4","('Q2', 'Q2')","0.76","21.50" +"OCCUPATIONAL MEDICINE-OXFORD","0962-7480","1471-8405","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","4,536","2.4","Q2","0.76","25.54" +"URBAN AFFAIRS REVIEW","1078-0874","1552-8332","URBAN STUDIES","('SSCI',)","2,769","2.4","Q2","0.76","15.79" +"ZFW-Advances in Economic Geography","2748-1956","2748-1964","('ECONOMICS', 'GEOGRAPHY')","('SSCI', 'SSCI')","56","2.4","('Q2', 'Q2')","0.76","96.88" +"Blood Transfusion","1723-2007","1723-2007","HEMATOLOGY","('SCIE',)","2,201","2.4","Q2","0.75","0.00" +"CLINICAL AND EXPERIMENTAL PHARMACOLOGY AND PHYSIOLOGY","0305-1870","1440-1681","('PHARMACOLOGY & PHARMACY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","6,151","2.4","('Q3', 'Q2')","0.75","7.67" +"Clinical Neuroradiology","1869-1439","1869-1447","('CLINICAL NEUROLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","1,735","2.4","('Q2', 'Q2')","0.75","51.41" +"Eating Behaviors","1471-0153","1873-7358","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","3,745","2.4","('Q2', 'Q2')","0.75","17.67" +"JOURNAL OF GREAT LAKES RESEARCH","0380-1330","0380-1330","('ENVIRONMENTAL SCIENCES', 'LIMNOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","6,106","2.4","('Q3', 'Q2', 'Q1')","0.75","46.90" +"Preventive Medicine Reports","","2211-3355","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","5,188","2.4","Q2","0.75","94.39" +"Psychology & Sexuality","1941-9899","1941-9902","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,121","2.4","Q2","0.75","11.33" +"UROLOGIC ONCOLOGY-SEMINARS AND ORIGINAL INVESTIGATIONS","1078-1439","1873-2496","('ONCOLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","6,969","2.4","('Q3', 'Q2')","0.75","11.00" +"Animal Biotelemetry","","2050-3385","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","900","2.4","('Q2', 'Q2', 'Q1')","0.74","100.00" +"COMMUNICATIONS IN THEORETICAL PHYSICS","0253-6102","1572-9494","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","4,154","2.4","Q2","0.74","0.00" +"Crystals","","2073-4352","('CRYSTALLOGRAPHY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","16,151","2.4","('Q2', 'Q3')","0.74","99.56" +"International Journal of Fruit Science","1553-8362","1553-8621","HORTICULTURE","('SCIE',)","1,547","2.4","Q2","0.74","99.39" +"JOURNAL OF BIOMOLECULAR NMR","0925-2738","1573-5001","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'SPECTROSCOPY')","('SCIE', 'SCIE')","3,544","2.4","('Q3', 'Q2')","0.74","48.00" +"JOURNAL OF MANUFACTURING SCIENCE AND ENGINEERING-TRANSACTIONS OF THE ASME","1087-1357","1528-8935","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","7,102","2.4","('Q3', 'Q2')","0.74","2.34" +"Neuro-Oncology Practice","2054-2577","2054-2585","CLINICAL NEUROLOGY","('ESCI',)","1,030","2.4","Q2","0.74","27.92" +"Aslib Journal of Information Management","2050-3806","1758-3748","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SCIE', 'SSCI')","1,104","2.4","('Q3', 'Q2')","0.73","3.27" +"International Journal of Software Science and Computational Intelligence-IJSSCI","1942-9045","1942-9037","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('ESCI', 'ESCI', 'ESCI')","249","2.4","('Q3', 'Q3', 'Q2')","0.73","13.25" +"SPEECH COMMUNICATION","0167-6393","1872-7182","('ACOUSTICS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","3,590","2.4","('Q2', 'Q3')","0.73","29.44" +"Zeitschrift fur Medizinische Physik","0939-3889","1876-4436","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","992","2.4","Q2","0.73","73.91" +"Transforming Government- People Process and Policy","1750-6166","1750-6174","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","783","2.4","Q2","0.72","13.01" +"Information","","2078-2489","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","7,494","2.4","Q3","0.71","99.72" +"INTERNATIONAL JOURNAL OF GENERAL SYSTEMS","0308-1079","1563-5104","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","1,601","2.4","Q2","0.71","3.82" +"JOURNAL OF SYNCHROTRON RADIATION","0909-0495","1600-5775","('INSTRUMENTS & INSTRUMENTATION', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","7,680","2.4","('Q2', 'Q2', 'Q3')","0.71","78.86" +"LIBRARY & INFORMATION SCIENCE RESEARCH","0740-8188","1873-1848","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","1,328","2.4","Q2","0.71","16.52" +"Revista Iberoamericana de Psicologia y Salud","2171-2069","1989-9246","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","166","2.4","Q2","0.71","82.76" +"Surgical Oncology Clinics of North America","1055-3207","1558-5042","('ONCOLOGY', 'SURGERY')","('SCIE', 'SCIE')","1,702","2.4","('Q3', 'Q2')","0.71","0.63" +"ACTA PHYSIOLOGIAE PLANTARUM","0137-5881","1861-1664","PLANT SCIENCES","('SCIE',)","8,940","2.4","Q2","0.70","6.97" +"Brain Imaging and Behavior","1931-7557","1931-7565","NEUROIMAGING","('SCIE',)","4,968","2.4","Q2","0.70","26.11" +"Current Dermatology Reports","2162-4933","2162-4933","DERMATOLOGY","('ESCI',)","558","2.4","Q2","0.70","5.43" +"Environment and Planning C-Politics and Space","2399-6544","2399-6552","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'PUBLIC ADMINISTRATION', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","3,288","2.4","('Q3', 'Q2', 'Q2', 'Q2')","0.70","37.50" +"Health Promotion Perspectives","2228-6497","2228-6497","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","1,081","2.4","Q2","0.70","98.62" +"Respiratory Investigation","2212-5345","2212-5353","RESPIRATORY SYSTEM","('ESCI',)","1,545","2.4","Q2","0.70","22.02" +"Dementia-International Journal of Social Research and Practice","1471-3012","1741-2684","GERONTOLOGY","('SSCI',)","3,366","2.4","Q2","0.69","44.86" +"Geriatrics & Gerontology International","1444-1586","1447-0594","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY')","('SCIE', 'SSCI')","6,150","2.4","('Q3', 'Q2')","0.69","15.31" +"International Journal of Information Security","1615-5262","1615-5270","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","1,268","2.4","('Q3', 'Q2', 'Q2')","0.69","28.57" +"International Journal of Workplace Health Management","1753-8351","1753-836X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","698","2.4","Q2","0.69","13.27" +"Journal of Chinese Economic and Business Studies","1476-5284","1476-5292","ECONOMICS","('ESCI',)","451","2.4","Q2","0.69","19.05" +"NEURORADIOLOGY","0028-3940","1432-1920","('CLINICAL NEUROLOGY', 'NEUROIMAGING', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","6,559","2.4","('Q2', 'Q2', 'Q2')","0.69","26.09" +"NUTRIENT CYCLING IN AGROECOSYSTEMS","1385-1314","1573-0867","SOIL SCIENCE","('SCIE',)","5,000","2.4","Q2","0.69","31.75" +"PHYSICS OF THE EARTH AND PLANETARY INTERIORS","0031-9201","1872-7395","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","7,829","2.4","Q2","0.69","22.49" +"Tropical Diseases Travel Medicine and Vaccines","2055-0936","2055-0936","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TROPICAL MEDICINE')","('ESCI', 'ESCI', 'ESCI')","404","2.4","('Q3', 'Q2', 'Q2')","0.69","100.00" +"Australasian Journal of Water Resources","1324-1583","2204-227X","WATER RESOURCES","('ESCI',)","410","2.4","Q2","0.68","28.81" +"BMJ Open","2044-6055","2044-6055","MEDICINE, GENERAL & INTERNAL","('SCIE',)","82,146","2.4","Q1","0.68","99.43" +"HIPPOCAMPUS","1050-9631","1098-1063","NEUROSCIENCES","('SCIE',)","7,695","2.4","Q3","0.68","29.56" +"JOURNAL OF CLINICAL PHARMACOLOGY","0091-2700","1552-4604","PHARMACOLOGY & PHARMACY","('SCIE',)","7,311","2.4","Q3","0.68","23.86" +"JOURNAL OF ECOTOURISM","1472-4049","1747-7638","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","815","2.4","Q2","0.68","10.89" +"JOURNAL OF NEUROPSYCHIATRY AND CLINICAL NEUROSCIENCES","0895-0172","1545-7222","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","3,736","2.4","('Q2', 'Q3', 'Q2')","0.68","0.00" +"Frontiers in Ecology and Evolution","2296-701X","2296-701X","ECOLOGY","('SCIE',)","12,770","2.4","Q2","0.67","99.59" +"Frontiers in Human Neuroscience","1662-5161","1662-5161","('NEUROSCIENCES', 'PSYCHOLOGY')","('SCIE', 'SCIE')","27,124","2.4","('Q3', 'Q2')","0.67","99.54" +"HYDROGEOLOGY JOURNAL","1431-2174","1435-0157","('GEOSCIENCES, MULTIDISCIPLINARY', 'WATER RESOURCES')","('SCIE', 'SCIE')","8,566","2.4","('Q2', 'Q2')","0.67","41.21" +"JOURNAL OF VOLCANOLOGY AND GEOTHERMAL RESEARCH","0377-0273","1872-6097","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","13,892","2.4","Q2","0.67","35.77" +"Medicina-Lithuania","1010-660X","1648-9144","MEDICINE, GENERAL & INTERNAL","('SCIE',)","15,115","2.4","Q1","0.67","99.72" +"PEDIATRIC BLOOD & CANCER","1545-5009","1545-5017","('HEMATOLOGY', 'ONCOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE', 'SCIE')","15,512","2.4","('Q2', 'Q3', 'Q1')","0.67","17.10" +"I-Perception","2041-6695","2041-6695","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","1,160","2.4","Q2","0.66","92.50" +"NEPHROLOGY","1320-5358","1440-1797","UROLOGY & NEPHROLOGY","('SCIE',)","3,715","2.4","Q2","0.66","17.98" +"Asian Journal of Urology","2214-3882","2214-3890","UROLOGY & NEPHROLOGY","('ESCI',)","913","2.4","Q2","0.65","95.06" +"BMC NEUROSCIENCE","1471-2202","1471-2202","NEUROSCIENCES","('SCIE',)","4,681","2.4","Q3","0.65","100.00" +"Cancer Epidemiology","1877-7821","1877-783X","('ONCOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","4,437","2.4","('Q3', 'Q2')","0.65","27.41" +"Clothing and Textiles Research Journal","0887-302X","1940-2473","('BUSINESS', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","1,034","2.4","('Q3', 'Q1')","0.65","0.00" +"International Journal of Clinical Oncology","1341-9625","1437-7772","ONCOLOGY","('SCIE',)","5,205","2.4","Q3","0.65","20.93" +"JCR-JOURNAL OF CLINICAL RHEUMATOLOGY","1076-1608","1536-7355","RHEUMATOLOGY","('SCIE',)","2,538","2.4","Q2","0.65","8.96" +"Journal of Hospital Medicine","1553-5592","1553-5606","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,869","2.4","Q1","0.65","12.50" +"NEUROLOGIC CLINICS","0733-8619","1557-9875","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","3,126","2.4","('Q2', 'Q3')","0.65","5.78" +"Pharmacy Practice-Granada","1885-642X","1886-3655","PHARMACOLOGY & PHARMACY","('ESCI',)","1,440","2.4","Q3","0.65","99.13" +"Clinical Psychopharmacology and Neuroscience","1738-1088","2093-4327","('NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,551","2.4","('Q3', 'Q3')","0.64","100.00" +"Data-Centric Engineering","","2632-6736","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","216","2.4","('Q3', 'Q3', 'Q2')","0.64","100.00" +"INTERNATIONAL JOURNAL OF METHODS IN PSYCHIATRIC RESEARCH","1049-8931","1557-0657","PSYCHIATRY","('SCIE', 'SSCI')","3,995","2.4","Q2","0.64","70.80" +"Journal of Cardiovascular Translational Research","1937-5387","1937-5395","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","2,571","2.4","('Q2', 'Q3')","0.64","21.57" +"MONTHLY LABOR REVIEW","0098-1818","1937-4658","INDUSTRIAL RELATIONS & LABOR","('SSCI',)","937","2.4","Q2","0.64","55.07" +"NEUROSCIENCE RESEARCH","0168-0102","1872-8111","NEUROSCIENCES","('SCIE',)","5,018","2.4","Q3","0.64","39.50" +"Pacific Asia Journal of the Association for Information Systems","1943-7536","1943-7544","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","283","2.4","Q2","0.64","0.00" +"POLYCYCLIC AROMATIC COMPOUNDS","1040-6638","1563-5333","CHEMISTRY, ORGANIC","('SCIE',)","4,693","2.4","Q2","0.64","0.22" +"SOIL SCIENCE SOCIETY OF AMERICA JOURNAL","0361-5995","1435-0661","SOIL SCIENCE","('SCIE',)","23,688","2.4","Q2","0.64","33.58" +"Accounting Research Journal","1030-9616","1839-5465","BUSINESS, FINANCE","('ESCI',)","687","2.4","Q2","0.63","5.77" +"Case Studies on Transport Policy","2213-624X","2213-6258","TRANSPORTATION","('ESCI',)","2,205","2.4","Q3","0.63","20.07" +"Geosciences","","2076-3263","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","7,225","2.4","Q2","0.63","99.17" +"IEEE Transactions on Molecular Biological and Multi-Scale Communications","","2332-7804","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI')","441","2.4","('Q2', 'Q3')","0.63","14.85" +"BOREAS","0300-9483","1502-3885","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,569","2.4","('Q2', 'Q2')","0.62","54.92" +"CLINICAL CARDIOLOGY","0160-9289","1932-8737","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","5,624","2.4","Q2","0.62","71.24" +"ECOTOXICOLOGY","0963-9292","1573-3017","('ECOLOGY', 'ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","6,645","2.4","('Q2', 'Q3', 'Q3')","0.62","13.95" +"EUROPEAN JOURNAL OF CLINICAL PHARMACOLOGY","0031-6970","1432-1041","PHARMACOLOGY & PHARMACY","('SCIE',)","7,968","2.4","Q3","0.62","32.62" +"International Journal of Rheumatic Diseases","1756-1841","1756-185X","RHEUMATOLOGY","('SCIE',)","4,566","2.4","Q2","0.62","9.08" +"JOURNAL OF BONE AND MINERAL METABOLISM","0914-8779","1435-5604","('ENDOCRINOLOGY & METABOLISM', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","3,353","2.4","('Q3', 'Q3')","0.62","0.00" +"Journal of Cardiovascular Development and Disease","","2308-3425","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","2,565","2.4","Q2","0.62","99.91" +"PHARMACOEPIDEMIOLOGY AND DRUG SAFETY","1053-8569","1099-1557","('PHARMACOLOGY & PHARMACY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","6,658","2.4","('Q3', 'Q2')","0.62","31.52" +"PharmaNutrition","2213-4344","2213-4344","('NUTRITION & DIETETICS', 'PHARMACOLOGY & PHARMACY')","('ESCI', 'ESCI')","642","2.4","('Q3', 'Q3')","0.62","21.84" +"Wellbeing Space and Society","2666-5581","2666-5581","('GEOGRAPHY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","265","2.4","('Q2', 'Q2')","0.62","99.33" +"Acupuncture in Medicine","0964-5284","1759-9873","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","1,550","2.4","Q2","0.61","2.48" +"International Journal of Organizational Analysis","1934-8835","1758-8561","MANAGEMENT","('ESCI',)","2,307","2.4","Q3","0.61","4.77" +"LIQUID CRYSTALS","0267-8292","1366-5855","('CHEMISTRY, MULTIDISCIPLINARY', 'CRYSTALLOGRAPHY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","5,603","2.4","('Q3', 'Q2', 'Q3')","0.61","8.57" +"Vietnam Journal of Earth Sciences","0866-7187","2615-9783","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","431","2.4","Q2","0.61","13.98" +"Baltic Journal of Management","1746-5265","1746-5273","MANAGEMENT","('SSCI',)","1,057","2.4","Q3","0.60","15.32" +"Cognition Technology & Work","1435-5558","1435-5566","('ENGINEERING, INDUSTRIAL', 'ERGONOMICS')","('SCIE', 'SSCI')","1,363","2.4","('Q2', 'Q2')","0.60","37.11" +"Contemporary Economics","2084-0845","2300-8814","ECONOMICS","('ESCI',)","469","2.4","Q2","0.60","92.31" +"IEEE Control Systems Letters","2475-1456","","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","4,110","2.4","Q2","0.60","18.99" +"International Journal of Housing Policy","1949-1247","1949-1255","('ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI')","813","2.4","('Q3', 'Q2', 'Q2')","0.60","32.48" +"ATLA-ALTERNATIVES TO LABORATORY ANIMALS","0261-1929","2632-3559","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","1,113","2.4","Q3","0.59","18.31" +"Injury Epidemiology","","2197-1714","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","834","2.4","Q2","0.59","100.00" +"Journal of Accounting and Organizational Change","1832-5912","1839-5473","BUSINESS, FINANCE","('ESCI',)","793","2.4","Q2","0.59","10.85" +"Local Environment","1354-9839","1469-6711","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI', 'SSCI', 'SSCI')","3,290","2.4","('Q3', 'Q2', 'Q3', 'Q2', 'Q2')","0.59","26.76" +"Operations and Supply Chain Management-An International Journal","1979-3561","2579-9363","MANAGEMENT","('ESCI',)","418","2.4","Q3","0.59","26.85" +"Bioinformatics Advances","","2635-0041","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('ESCI',)","394","2.4","Q2","0.58","90.74" +"Carbohydrate Research","0008-6215","1873-426X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, APPLIED', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE', 'SCIE')","13,283","2.4","('Q3', 'Q2', 'Q2')","0.58","17.70" +"HOUSING STUDIES","0267-3037","1466-1810","('ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI')","3,613","2.4","('Q3', 'Q2', 'Q2')","0.58","37.33" +"IET Smart Grid","","2515-2947","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","695","2.4","Q2","0.58","81.94" +"JOURNAL OF BIOMECHANICS","0021-9290","1873-2380","('BIOPHYSICS', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","30,775","2.4","('Q3', 'Q3')","0.58","28.48" +"JOURNAL OF THE METEOROLOGICAL SOCIETY OF JAPAN","0026-1165","2186-9057","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","4,939","2.4","Q3","0.58","82.00" +"PAPERS IN REGIONAL SCIENCE","1056-8190","1435-5957","('ECONOMICS', 'ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","2,789","2.4","('Q2', 'Q3', 'Q2', 'Q2')","0.58","80.43" +"Respiratory Care","0020-1324","1943-3654","('CRITICAL CARE MEDICINE', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","7,027","2.4","('Q2', 'Q2')","0.58","5.05" +"Environmental Sociology","2325-1042","2325-1042","ENVIRONMENTAL STUDIES","('ESCI',)","887","2.4","Q3","0.57","20.00" +"IRANIAN POLYMER JOURNAL","1026-1265","1735-5265","POLYMER SCIENCE","('SCIE',)","2,741","2.4","Q3","0.57","1.08" +"Journal of Transportation Safety & Security","1943-9962","1943-9970","TRANSPORTATION","('SSCI',)","1,106","2.4","Q3","0.57","1.94" +"MACHINE VISION AND APPLICATIONS","0932-8092","1432-1769","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, CYBERNETICS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","2,574","2.4","('Q3', 'Q2', 'Q2')","0.57","13.76" +"Rangeland Ecology & Management","1550-7424","1551-5028","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","3,140","2.4","('Q2', 'Q3')","0.57","47.59" +"Vehicles","","2624-8921","('ENGINEERING, MECHANICAL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","423","2.4","('Q2', 'Q2')","0.57","100.00" +"CHROMOSOME RESEARCH","0967-3849","1573-6849","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","2,064","2.4","('Q3', 'Q3')","0.56","34.83" +"Experimental and Therapeutic Medicine","1792-0981","1792-1015","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","21,312","2.4","Q3","0.56","99.56" +"Journal of Hydro-environment Research","1570-6443","1876-4444","('ENGINEERING, CIVIL', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","1,169","2.4","('Q2', 'Q3', 'Q2')","0.56","9.47" +"METALLURGICAL AND MATERIALS TRANSACTIONS B-PROCESS METALLURGY AND MATERIALS PROCESSING SCIENCE","1073-5615","1543-1916","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","12,337","2.4","('Q3', 'Q2')","0.56","15.87" +"SALUD PUBLICA DE MEXICO","0036-3634","1606-7916","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","2,416","2.4","Q2","0.56","56.92" +"Water Alternatives-An Interdisciplinary Journal on Water Politics and Development","1965-0175","1965-0175","('ENVIRONMENTAL STUDIES', 'WATER RESOURCES')","('SSCI', 'SCIE')","1,288","2.4","('Q3', 'Q2')","0.56","0.00" +"Frontline Gastroenterology","2041-4137","2041-4145","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","1,374","2.4","Q3","0.55","18.28" +"Integrating Materials and Manufacturing Innovation","2193-9764","2193-9772","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,022","2.4","('Q3', 'Q3')","0.55","19.08" +"JOURNAL OF HEALTH POPULATION AND NUTRITION","1606-0997","2072-1315","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","2,471","2.4","('Q3', 'Q2')","0.55","99.60" +"JOURNAL OF VACUUM SCIENCE & TECHNOLOGY A","0734-2101","1520-8559","('MATERIALS SCIENCE, COATINGS & FILMS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","11,128","2.4","('Q3', 'Q3')","0.55","27.03" +"PRACTICAL NEUROLOGY","1474-7758","1474-7766","CLINICAL NEUROLOGY","('ESCI',)","1,906","2.4","Q2","0.55","8.94" +"WMU Journal of Maritime Affairs","1651-436X","1654-1642","TRANSPORTATION","('ESCI',)","557","2.4","Q3","0.55","53.95" +"Agroecology and Sustainable Food Systems","2168-3565","2168-3573","('AGRICULTURE, MULTIDISCIPLINARY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","1,726","2.4","('Q1', 'Q3')","0.54","21.39" +"Cancer Informatics","","1176-9351","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'ONCOLOGY')","('ESCI', 'ESCI')","792","2.4","('Q2', 'Q3')","0.54","91.11" +"JOURNAL OF MEDICAL MICROBIOLOGY","0022-2615","1473-5644","MICROBIOLOGY","('SCIE',)","9,127","2.4","Q3","0.54","0.00" +"Journal of the Economic Science Association-JESA","2199-6776","2199-6784","ECONOMICS","('ESCI',)","381","2.4","Q2","0.54","44.23" +"Welding in the World","0043-2288","1878-6669","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","3,506","2.4","Q2","0.54","28.16" +"ACTA METALLURGICA SINICA","0412-1961","","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","3,102","2.4","Q2","0.53","0.00" +"Biochemistry and Cell Biology","0829-8211","1208-6002","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","3,059","2.4","('Q3', 'Q4')","0.52","11.76" +"Current Molecular Pharmacology","1874-4672","1874-4702","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,318","2.4","('Q3', 'Q3')","0.52","0.43" +"FOOD SCIENCE AND BIOTECHNOLOGY","1226-7708","2092-6456","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","6,859","2.4","Q3","0.52","5.81" +"Journal of Enterprising Communities-People and Places in the Global Economy","1750-6204","1750-6212","BUSINESS","('ESCI',)","1,038","2.4","Q3","0.52","8.70" +"Seminars in Pediatric Neurology","1071-9091","1558-0776","('CLINICAL NEUROLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","1,455","2.4","('Q2', 'Q1')","0.52","7.77" +"CURRENT APPLIED PHYSICS","1567-1739","1878-1675","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","7,349","2.4","('Q3', 'Q3')","0.51","7.05" +"FEMS YEAST RESEARCH","1567-1356","1567-1364","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY', 'MYCOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,163","2.4","('Q3', 'Q3', 'Q3')","0.51","39.55" +"FOLIA MICROBIOLOGICA","0015-5632","1874-9356","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","2,885","2.4","('Q3', 'Q3')","0.51","8.96" +"Frontiers in Big Data","","2624-909X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MULTIDISCIPLINARY SCIENCES')","('ESCI', 'ESCI', 'ESCI')","1,128","2.4","('Q3', 'Q3', 'Q2')","0.51","99.71" +"Hormones-International Journal of Endocrinology and Metabolism","1109-3099","2520-8721","ENDOCRINOLOGY & METABOLISM","('SCIE',)","2,065","2.4","Q3","0.51","17.35" +"INTERNATIONAL JOURNAL OF MARKET RESEARCH","1470-7853","2515-2173","BUSINESS","('SSCI',)","1,914","2.4","Q3","0.51","18.80" +"Journal of Petroleum Exploration and Production Technology","2190-0558","2190-0566","('ENERGY & FUELS', 'ENGINEERING, PETROLEUM', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","3,750","2.4","('Q3', 'Q2', 'Q2')","0.51","99.39" +"Tropical Cyclone Research and Review","2225-6032","2225-6032","METEOROLOGY & ATMOSPHERIC SCIENCES","('ESCI',)","448","2.4","Q3","0.51","98.33" +"CURRENT HISTORY","0011-3530","1944-785X","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","549","2.4","('Q1', 'Q1')","0.50","0.00" +"CURRENT MEDICAL RESEARCH AND OPINION","0300-7995","1473-4877","('MEDICINE, GENERAL & INTERNAL', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","7,701","2.4","('Q1', 'Q3')","0.50","39.33" +"International Journal of Educational Management","0951-354X","1758-6518","MANAGEMENT","('ESCI',)","2,350","2.4","Q3","0.50","4.72" +"Methods and Applications in Fluorescence","2050-6120","2050-6120","('CHEMISTRY, ANALYTICAL', 'CHEMISTRY, PHYSICAL')","('SCIE', 'SCIE')","1,209","2.4","('Q3', 'Q3')","0.50","23.81" +"CURRENT DIABETES REVIEWS","1573-3998","1875-6417","ENDOCRINOLOGY & METABOLISM","('ESCI',)","2,510","2.4","Q3","0.49","3.95" +"International Journal of Information and Learning Technology","2056-4880","2056-4880","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","602","2.4","Q3","0.49","16.67" +"Diabetology","","2673-4540","ENDOCRINOLOGY & METABOLISM","('ESCI',)","182","2.4","Q3","0.48","100.00" +"Journal of Nutritional Science","2048-6790","","NUTRITION & DIETETICS","('ESCI',)","2,233","2.4","Q3","0.48","99.35" +"JOURNAL OF THE INSTITUTE OF BREWING","0046-9750","2050-0416","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","2,677","2.4","Q3","0.48","39.34" +"MOLECULAR BIOTECHNOLOGY","1073-6085","1559-0305","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE')","3,829","2.4","('Q3', 'Q3')","0.48","9.55" +"SEXUALLY TRANSMITTED DISEASES","0148-5717","1537-4521","INFECTIOUS DISEASES","('SCIE',)","4,916","2.4","Q3","0.48","16.61" +"JOURNAL OF MICROMECHANICS AND MICROENGINEERING","0960-1317","1361-6439","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,771","2.4","('Q2', 'Q2', 'Q3', 'Q3')","0.47","13.91" +"SURFACE ENGINEERING","0267-0844","1743-2944","MATERIALS SCIENCE, COATINGS & FILMS","('SCIE',)","3,169","2.4","Q3","0.47","2.34" +"Water Quality Research Journal","2709-8044","2709-8052","WATER RESOURCES","('SCIE',)","151","2.4","Q2","0.47","100.00" +"Multimodal Technologies and Interaction","","2414-4088","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, CYBERNETICS', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('ESCI', 'ESCI', 'ESCI')","1,265","2.4","('Q3', 'Q2', 'Q3')","0.46","100.00" +"Biophysical Reports","2667-0747","2667-0747","BIOPHYSICS","('ESCI',)","185","2.4","Q3","0.45","89.41" +"Frontiers in Sustainable Cities","","2624-9634","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'URBAN STUDIES')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","1,066","2.4","('Q3', 'Q3', 'Q3', 'Q2')","0.45","100.00" +"Future Science OA","2056-5623","2056-5623","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,584","2.4","Q3","0.44","99.52" +"IEEE Open Journal of Circuits and Systems","","2644-1225","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","266","2.4","Q2","0.44","92.08" +"Regenerative Medicine","1746-0751","1746-076X","('CELL & TISSUE ENGINEERING', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","2,136","2.4","('Q4', 'Q3')","0.44","25.41" +"Smart Science","","2308-0477","MULTIDISCIPLINARY SCIENCES","('ESCI',)","389","2.4","Q2","0.44","1.00" +"ECONOMIST-NETHERLANDS","0013-063X","1572-9982","ECONOMICS","('SSCI',)","620","2.4","Q2","0.43","57.14" +"International Journal of Low-Carbon Technologies","1748-1317","1748-1325","('ENERGY & FUELS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","1,834","2.4","('Q3', 'Q2')","0.43","89.49" +"International Journal of Renewable Energy Development-IJRED","2252-4940","2252-4940","('ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","877","2.4","('Q3', 'Q3')","0.43","90.24" +"JOURNAL OF APPLIED ELECTROCHEMISTRY","0021-891X","1572-8838","ELECTROCHEMISTRY","('SCIE',)","8,609","2.4","Q3","0.43","10.04" +"Sexual Development","1661-5425","1661-5433","DEVELOPMENTAL BIOLOGY","('SCIE',)","1,035","2.4","Q2","0.43","20.62" +"IONICS","0947-7047","1862-0760","('CHEMISTRY, PHYSICAL', 'ELECTROCHEMISTRY', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","10,765","2.4","('Q3', 'Q3', 'Q3')","0.42","1.60" +"Applied Computational Intelligence and Soft Computing","1687-9724","1687-9732","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","508","2.4","Q3","0.41","99.24" +"Frontiers in Computer Science","","2624-9898","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","985","2.4","Q3","0.41","99.51" +"GENESIS","1526-954X","1526-968X","('DEVELOPMENTAL BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","3,615","2.4","('Q2', 'Q3')","0.41","28.28" +"IEEE Transactions on Haptics","1939-1412","2329-4051","COMPUTER SCIENCE, CYBERNETICS","('SCIE',)","2,279","2.4","Q2","0.41","29.07" +"JOURNAL OF INTELLIGENT MATERIAL SYSTEMS AND STRUCTURES","1045-389X","1530-8138","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","7,551","2.4","Q3","0.41","6.01" +"Journal of Internet Services and Applications","1867-4828","1869-0238","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","490","2.4","Q3","0.41","97.22" +"Innovation and Emerging Technologies","2737-5994","2810-9007","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","15","2.4","Q2","0.40","3.85" +"BMC Molecular and Cell Biology","","2661-8850","CELL BIOLOGY","('SCIE',)","684","2.4","Q4","0.39","100.00" +"CURRENT CARDIOLOGY REVIEWS","1573-403X","1875-6557","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","1,837","2.4","Q2","0.38","3.78" +"FLY","1933-6934","1933-6942","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","1,506","2.4","Q3","0.37","86.84" +"Chemistry-Switzerland","","2624-8549","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","769","2.4","Q3","0.36","99.74" +"Journal of Molecular and Engineering Materials","2251-2373","2251-2381","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","158","2.4","Q3","0.36","0.00" +"International Journal of Industrial Engineering and Management","2217-2661","2683-345X","ENGINEERING, INDUSTRIAL","('ESCI',)","272","2.4","Q2","0.34","100.00" +"Discover Sustainability","","2662-9984","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","300","2.4","('Q3', 'Q3', 'Q3')","0.31","100.00" +"Cytoskeleton","1949-3584","1949-3592","CELL BIOLOGY","('SCIE',)","1,385","2.4","Q4","0.30","29.63" +"BIOLOGY OF THE CELL","0248-4900","1768-322X","CELL BIOLOGY","('SCIE',)","2,109","2.4","Q4","0.29","39.68" +"Solids","","2673-6497","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","181","2.4","('Q3', 'Q3')","0.28","100.00" +"Moroccan Journal of Chemistry","2351-812X","2351-812X","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","764","2.4","Q3","0.27","0.00" +"JOURNAL OF TERRAMECHANICS","0022-4898","1879-1204","ENGINEERING, ENVIRONMENTAL","('SCIE',)","1,978","2.4","Q3","0.25","10.45" +"Journal of Agricultural Engineering","1974-7071","2239-6268","AGRICULTURAL ENGINEERING","('SCIE',)","950","2.4","Q2","0.19","95.45" +"JOURNAL FOR THE SCIENTIFIC STUDY OF RELIGION","0021-8294","1468-5906","('RELIGION', 'SOCIOLOGY')","('AHCI', 'SSCI')","3,558","2.3","('N/A', 'Q2')","2.94","29.45" +"Historic Environment-Policy & Practice","1756-7505","1756-7513","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","310","2.3","","2.85","39.34" +"UCLA LAW REVIEW","0041-5650","1943-1724","LAW","('SSCI',)","1,464","2.3","Q1","2.77","0.00" +"EUROPEAN SOCIETIES","1461-6696","1469-8307","SOCIOLOGY","('SSCI',)","1,955","2.3","Q2","2.37","49.12" +"Mathematics","","2227-7390","MATHEMATICS","('SCIE',)","30,805","2.3","Q1","2.16","99.62" +"DUKE MATHEMATICAL JOURNAL","0012-7094","1547-7398","MATHEMATICS","('SCIE',)","7,706","2.3","Q1","2.07","0.00" +"China Information","0920-203X","1741-590X","AREA STUDIES","('SSCI',)","453","2.3","Q1","2.01","26.19" +"CONSTRUCTIVE APPROXIMATION","0176-4276","1432-0940","MATHEMATICS","('SCIE',)","1,568","2.3","Q1","1.99","31.43" +"Advances in Continuous and Discrete Models","","2731-4235","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","186","2.3","('Q1', 'Q1')","1.91","98.29" +"Asian Education and Development Studies","2046-3162","2046-3170","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","402","2.3","Q1","1.81","1.75" +"LAW & SOCIETY REVIEW","0023-9216","1540-5893","('LAW', 'SOCIOLOGY')","('SSCI', 'SSCI')","3,217","2.3","('Q1', 'Q2')","1.68","24.05" +"International Journal of Architectural Heritage","1558-3058","1558-3066","('ARCHITECTURE', 'CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('AHCI', 'SCIE', 'SCIE')","2,454","2.3","('N/A', 'Q2', 'Q2')","1.67","8.88" +"PACIFIC REVIEW","0951-2748","1470-1332","('AREA STUDIES', 'INTERNATIONAL RELATIONS')","('SSCI', 'SSCI')","1,301","2.3","('Q1', 'Q1')","1.59","17.78" +"Business and Human Rights Journal","2057-0198","2057-0201","('BUSINESS', 'LAW')","('ESCI', 'ESCI')","397","2.3","('Q3', 'Q1')","1.58","52.94" +"REMEDIAL AND SPECIAL EDUCATION","0741-9325","1538-4756","EDUCATION, SPECIAL","('SSCI',)","2,310","2.3","Q1","1.55","7.07" +"PSYCHOLOGY PUBLIC POLICY AND LAW","1076-8971","1939-1528","('HEALTH POLICY & SERVICES', 'LAW', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","1,786","2.3","('Q2', 'Q1', 'Q2')","1.53","2.29" +"INTERNATIONAL MIGRATION REVIEW","0197-9183","1747-7379","DEMOGRAPHY","('SSCI',)","4,687","2.3","Q1","1.47","34.98" +"Natural Language Engineering","1351-3249","1469-8110","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SCIE', 'AHCI', 'SSCI')","944","2.3","('Q3', 'N/A', 'Q1')","1.42","55.26" +"Systems","","2079-8954","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","2,283","2.3","Q1","1.42","100.00" +"AMERICAN JOURNAL OF SPEECH-LANGUAGE PATHOLOGY","1058-0360","1558-9110","('AUDIOLOGY & SPEECH', 'LINGUISTICS', 'REHABILITATION')","('SCIE', 'SSCI', 'SCIE, SSCI')","4,721","2.3","('Q1', 'Q1', 'Q1')","1.38","10.78" +"NEUROPSYCHOBIOLOGY","0302-282X","1423-0224","('NEUROSCIENCES', 'PSYCHIATRY', 'PSYCHOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,681","2.3","('Q3', 'Q2', 'Q2')","1.36","23.33" +"HEAD AND NECK-JOURNAL FOR THE SCIENCES AND SPECIALTIES OF THE HEAD AND NECK","1043-3074","1097-0347","('OTORHINOLARYNGOLOGY', 'SURGERY')","('SCIE', 'SCIE')","14,597","2.3","('Q1', 'Q2')","1.35","14.77" +"Journal of Intervention and Statebuilding","1750-2977","1750-2985","INTERNATIONAL RELATIONS","('SSCI',)","703","2.3","Q1","1.35","51.02" +"European Journal of General Practice","1381-4788","1751-1402","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","1,598","2.3","('Q2', 'Q2')","1.34","99.14" +"CLINICAL ANATOMY","0897-3806","1098-2353","ANATOMY & MORPHOLOGY","('SCIE',)","5,553","2.3","Q1","1.33","22.34" +"CROSS-CULTURAL RESEARCH","1069-3971","1552-3578","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","963","2.3","Q1","1.33","26.92" +"MEDIA CULTURE & SOCIETY","0163-4437","1460-3675","('COMMUNICATION', 'SOCIOLOGY')","('SSCI', 'SSCI')","3,813","2.3","('Q1', 'Q2')","1.32","29.70" +"INTERNATIONAL REVIEW OF EDUCATION","0020-8566","1573-0638","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,160","2.3","Q1","1.31","32.04" +"RETINA-THE JOURNAL OF RETINAL AND VITREOUS DISEASES","0275-004X","1539-2864","OPHTHALMOLOGY","('SCIE',)","12,344","2.3","Q2","1.28","13.13" +"BMC Veterinary Research","","1746-6148","VETERINARY SCIENCES","('SCIE',)","10,549","2.3","Q1","1.27","99.91" +"IMA JOURNAL OF NUMERICAL ANALYSIS","0272-4979","1464-3642","MATHEMATICS, APPLIED","('SCIE',)","3,822","2.3","Q1","1.27","9.02" +"Medicine Health Care and Philosophy","1386-7423","1572-8633","('ETHICS', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SSCI', 'AHCI, SSCI')","1,709","2.3","('Q1', 'Q1')","1.26","63.01" +"JOURNAL OF NEUROSURGICAL ANESTHESIOLOGY","0898-4921","1537-1921","('ANESTHESIOLOGY', 'CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","1,827","2.3","('Q2', 'Q3', 'Q2')","1.25","0.60" +"Asia Pacific Education Review","1598-1037","1876-407X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,734","2.3","Q1","1.24","16.32" +"OXFORD REVIEW OF EDUCATION","0305-4985","1465-3915","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,384","2.3","Q1","1.23","52.44" +"Papers in Palaeontology","2056-2799","2056-2802","PALEONTOLOGY","('SCIE',)","705","2.3","Q1","1.21","29.55" +"Early Childhood Education Journal","1082-3301","1573-1707","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,986","2.3","Q1","1.20","17.53" +"JOURNAL OF CURRICULUM STUDIES","0022-0272","1366-5839","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,061","2.3","Q1","1.17","42.31" +"INTERNATIONAL POLITICAL SCIENCE REVIEW","0192-5121","1460-373X","POLITICAL SCIENCE","('SSCI',)","2,115","2.3","Q1","1.16","32.26" +"JOURNAL OF INSECT PHYSIOLOGY","0022-1910","1879-1611","('ENTOMOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","8,650","2.3","('Q1', 'Q3')","1.16","32.54" +"CALICO Journal","2056-9017","2056-9017","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","724","2.3","Q1","1.15","0.00" +"AMERICAN JOURNAL OF ORTHOPSYCHIATRY","0002-9432","1939-0025","SOCIAL WORK","('SSCI',)","5,593","2.3","Q1","1.14","1.46" +"AMERICAN JOURNAL OF PSYCHOTHERAPY","0002-9564","2575-6559","PSYCHOLOGY, CLINICAL","('ESCI',)","796","2.3","Q2","1.14","0.00" +"ANIMAL BEHAVIOUR","0003-3472","1095-8282","('BEHAVIORAL SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","23,405","2.3","('Q2', 'Q1')","1.14","41.14" +"JOURNAL OF FURTHER AND HIGHER EDUCATION","0309-877X","1469-9486","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,916","2.3","Q1","1.14","40.59" +"SOCIAL WORK","0037-8046","1545-6846","SOCIAL WORK","('SSCI',)","2,423","2.3","Q1","1.13","0.00" +"TECHNOMETRICS","0040-1706","1537-2723","STATISTICS & PROBABILITY","('SCIE',)","9,615","2.3","Q1","1.13","11.76" +"BMC EMERGENCY MEDICINE","1471-227X","1471-227X","EMERGENCY MEDICINE","('SCIE',)","2,154","2.3","Q1","1.12","99.80" +"Affilia-Feminist Inquiry in Social Work","0886-1099","1552-3020","('SOCIAL WORK', 'WOMENS STUDIES')","('SSCI', 'SSCI')","1,194","2.3","('Q1', 'Q1')","1.11","25.23" +"AMERICAN JOURNAL OF CLINICAL PATHOLOGY","0002-9173","1943-7722","PATHOLOGY","('SCIE',)","10,926","2.3","Q2","1.11","9.27" +"COGNITION AND INSTRUCTION","0737-0008","1532-690X","('PSYCHOLOGY, EDUCATIONAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","2,187","2.3","('Q2', 'Q2')","1.11","15.09" +"Review of Policy Research","1541-132X","1541-1338","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","1,338","2.3","('Q1', 'Q2')","1.11","30.67" +"TERRORISM AND POLITICAL VIOLENCE","0954-6553","1556-1836","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","2,307","2.3","('Q1', 'Q1')","1.11","26.95" +"Asian Spine Journal","1976-1902","1976-7846","ORTHOPEDICS","('ESCI',)","2,645","2.3","Q2","1.10","90.49" +"Contemporary Politics","1356-9775","1469-3631","POLITICAL SCIENCE","('SSCI',)","842","2.3","Q1","1.10","30.61" +"Health Care Management Science","1386-9620","1572-9389","HEALTH POLICY & SERVICES","('SSCI',)","1,550","2.3","Q2","1.10","31.75" +"Nuclear Materials and Energy","","2352-1791","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","2,972","2.3","Q1","1.10","97.40" +"SURGEON-JOURNAL OF THE ROYAL COLLEGES OF SURGEONS OF EDINBURGH AND IRELAND","1479-666X","2405-5840","SURGERY","('SCIE',)","2,028","2.3","Q2","1.10","10.37" +"Workplace Health & Safety","2165-0799","2165-0969","NURSING","('SCIE', 'SSCI')","1,297","2.3","Q1","1.09","11.24" +"HASTINGS CENTER REPORT","0093-0334","1552-146X","('ETHICS', 'HEALTH CARE SCIENCES & SERVICES', 'MEDICAL ETHICS', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SCIE', 'SCIE', 'SSCI')","2,110","2.3","('Q1', 'Q2', 'Q2', 'Q2')","1.08","11.25" +"Educational Research and Evaluation","1380-3611","1744-4187","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","986","2.3","Q1","1.07","27.27" +"Frontiers in Global Womens Health","","2673-5059","('OBSTETRICS & GYNECOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'WOMENS STUDIES')","('ESCI', 'ESCI', 'ESCI')","886","2.3","('Q2', 'Q2', 'Q1')","1.07","99.28" +"WORLD JOURNAL OF SURGERY","0364-2313","1432-2323","SURGERY","('SCIE',)","18,556","2.3","Q2","1.07","24.72" +"PUNISHMENT & SOCIETY-INTERNATIONAL JOURNAL OF PENOLOGY","1462-4745","1741-3095","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,670","2.3","Q1","1.06","36.64" +"Veterinary and Comparative Oncology","1476-5810","1476-5829","VETERINARY SCIENCES","('SCIE',)","2,113","2.3","Q1","1.06","30.73" +"ZOOLOGICA SCRIPTA","0300-3256","1463-6409","('EVOLUTIONARY BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","2,404","2.3","('Q2', 'Q1')","1.06","21.13" +"CLINICS IN DERMATOLOGY","0738-081X","1879-1131","DERMATOLOGY","('SCIE',)","4,619","2.3","Q2","1.05","6.14" +"Discourse Context & Media","2211-6958","2211-6966","COMMUNICATION","('SSCI',)","958","2.3","Q1","1.05","22.76" +"EUROPEAN JOURNAL OF APPLIED MATHEMATICS","0956-7925","1469-4425","MATHEMATICS, APPLIED","('SCIE',)","1,360","2.3","Q1","1.05","34.87" +"International Journal of Medical Robotics and Computer Assisted Surgery","1478-5951","1478-596X","SURGERY","('SCIE',)","2,881","2.3","Q2","1.05","19.05" +"JOURNAL OF SPORTS SCIENCES","0264-0414","1466-447X","SPORT SCIENCES","('SCIE',)","15,637","2.3","Q2","1.05","28.68" +"Journal of Youth Studies","1367-6261","1469-9680","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","3,021","2.3","Q1","1.05","38.11" +"CYTOMETRY PART B-CLINICAL CYTOMETRY","1552-4949","1552-4957","('MEDICAL LABORATORY TECHNOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","1,740","2.3","('Q3', 'Q2')","1.04","20.00" +"International Journal of Paediatric Dentistry","0960-7439","1365-263X","('DENTISTRY, ORAL SURGERY & MEDICINE', 'PEDIATRICS')","('SCIE', 'SCIE')","3,162","2.3","('Q2', 'Q2')","1.04","22.71" +"CRITICAL SOCIAL POLICY","0261-0183","1461-703X","('SOCIAL ISSUES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","1,544","2.3","('Q1', 'Q1')","1.02","55.29" +"Fudan Journal of the Humanities and Social Sciences","1674-0750","2198-2600","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","313","2.3","Q1","1.02","15.85" +"VETERINARY JOURNAL","1090-0233","1532-2971","VETERINARY SCIENCES","('SCIE',)","8,841","2.3","Q1","1.02","44.16" +"Allergy & Rhinology","2152-6567","2152-6567","OTORHINOLARYNGOLOGY","('ESCI',)","394","2.3","Q1","1.01","94.29" +"DENTAL TRAUMATOLOGY","1600-4469","1600-9657","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","3,413","2.3","Q2","1.01","22.08" +"JOURNAL OF COMPARATIVE NEUROLOGY","0021-9967","1096-9861","('NEUROSCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","23,034","2.3","('Q3', 'Q1')","1.01","29.97" +"Journal of School Violence","1538-8220","1538-8239","('CRIMINOLOGY & PENOLOGY', 'EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","1,195","2.3","('Q1', 'Q1', 'Q2', 'Q2')","1.01","4.10" +"SPORT EDUCATION AND SOCIETY","1357-3322","1470-1243","('EDUCATION & EDUCATIONAL RESEARCH', 'HOSPITALITY, LEISURE, SPORT & TOURISM', 'SPORT SCIENCES')","('SSCI', 'SSCI', 'SCIE')","2,799","2.3","('Q1', 'Q2', 'Q2')","1.01","34.82" +"JOURNAL OF FAMILY PSYCHOLOGY","0893-3200","1939-1293","('FAMILY STUDIES', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","7,221","2.3","('Q2', 'Q2')","1.00","6.28" +"Pediatrics and Neonatology","1875-9572","2212-1692","PEDIATRICS","('SCIE',)","2,100","2.3","Q2","1.00","79.30" +"Social Policy and Society","1474-7464","1475-3073","('SOCIAL ISSUES', 'SOCIAL WORK')","('SSCI', 'SSCI')","1,414","2.3","('Q1', 'Q1')","1.00","52.68" +"EUROPEAN JOURNAL OF PAEDIATRIC NEUROLOGY","1090-3798","1532-2130","('CLINICAL NEUROLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","3,665","2.3","('Q3', 'Q2')","0.99","23.13" +"Orthopaedics & Traumatology-Surgery & Research","1877-0568","1877-0568","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","7,403","2.3","('Q2', 'Q2')","0.99","76.68" +"VIOLENCE AGAINST WOMEN","1077-8012","1552-8448","WOMENS STUDIES","('SSCI',)","6,178","2.3","Q1","0.99","23.99" +"International Journal of Strategic Communication","1553-118X","1553-1198","COMMUNICATION","('ESCI',)","1,013","2.3","Q1","0.98","25.24" +"JOURNAL OF SOCIAL AND PERSONAL RELATIONSHIPS","0265-4075","1460-3608","('COMMUNICATION', 'FAMILY STUDIES', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI', 'SSCI')","5,982","2.3","('Q1', 'Q2', 'Q2')","0.98","25.46" +"BMC Anesthesiology","1471-2253","1471-2253","ANESTHESIOLOGY","('SCIE',)","5,307","2.3","Q2","0.96","99.82" +"JOURNAL OF CRYPTOLOGY","0933-2790","1432-1378","('COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","1,940","2.3","('Q2', 'Q2', 'Q1')","0.96","20.37" +"European Journal of Social Theory","1368-4310","1461-7137","SOCIOLOGY","('SSCI',)","1,909","2.3","Q2","0.95","38.89" +"Journal of Progressive Human Services","1042-8232","1540-7616","SOCIAL WORK","('ESCI',)","302","2.3","Q1","0.95","5.00" +"AGEING & SOCIETY","0144-686X","1469-1779","GERONTOLOGY","('SSCI',)","5,035","2.3","Q2","0.94","48.18" +"Frontiers in Political Science","","2673-3145","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('ESCI', 'ESCI')","707","2.3","('Q1', 'Q1')","0.93","100.00" +"JOURNAL OF POLICY ANALYSIS AND MANAGEMENT","0276-8739","1520-6688","('ECONOMICS', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","2,966","2.3","('Q2', 'Q2')","0.93","18.80" +"Journal of International Relations and Development","1408-6980","1581-1980","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","838","2.3","('Q1', 'Q1')","0.92","0.93" +"Mental Health and Physical Activity","1755-2966","1878-0199","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","1,199","2.3","('Q2', 'Q2')","0.92","28.29" +"VETERINARY PATHOLOGY","0300-9858","1544-2217","('PATHOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","6,756","2.3","('Q2', 'Q1')","0.92","12.54" +"Gender in Management","1754-2413","1754-2421","('BUSINESS', 'MANAGEMENT', 'WOMENS STUDIES')","('SSCI', 'SSCI', 'SSCI')","1,722","2.3","('Q3', 'Q3', 'Q1')","0.91","8.51" +"International Journal of Art Therapy","1745-4832","1745-4840","('PSYCHOLOGY, CLINICAL', 'REHABILITATION')","('ESCI', 'ESCI')","424","2.3","('Q2', 'Q1')","0.91","13.70" +"REICE-Revista Iberoamericana sobre Calidad Eficacia y Cambio en Educacion","1696-4713","1696-4713","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","622","2.3","Q1","0.91","90.43" +"RURAL SOCIOLOGY","0036-0112","1549-0831","SOCIOLOGY","('SSCI',)","1,969","2.3","Q2","0.91","26.36" +"CARDIOVASCULAR PATHOLOGY","1054-8807","1879-1336","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PATHOLOGY')","('SCIE', 'SCIE')","2,140","2.3","('Q2', 'Q2')","0.90","21.33" +"DEEP-SEA RESEARCH PART II-TOPICAL STUDIES IN OCEANOGRAPHY","0967-0645","1879-0100","OCEANOGRAPHY","('SCIE',)","11,010","2.3","Q2","0.90","41.04" +"JOURNAL OF ORAL AND MAXILLOFACIAL SURGERY","0278-2391","1531-5053","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","15,874","2.3","Q2","0.90","6.36" +"European Journal of Political Economy","0176-2680","1873-5703","('ECONOMICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","3,948","2.3","('Q2', 'Q1')","0.89","27.99" +"Frontiers in Sports and Active Living","","2624-9367","SPORT SCIENCES","('ESCI',)","2,867","2.3","Q2","0.89","99.11" +"Psychology Health & Medicine","1354-8506","1465-3966","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","4,710","2.3","Q2","0.87","11.38" +"NONPROFIT AND VOLUNTARY SECTOR QUARTERLY","0899-7640","1552-7395","SOCIAL ISSUES","('SSCI',)","4,422","2.3","Q1","0.86","20.80" +"CHILD PSYCHIATRY & HUMAN DEVELOPMENT","0009-398X","1573-3327","('PSYCHIATRY', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","4,211","2.3","('Q2', 'Q2')","0.85","30.75" +"JOURNAL OF NUTRITION EDUCATION AND BEHAVIOR","1499-4046","1878-2620","('EDUCATION, SCIENTIFIC DISCIPLINES', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","4,315","2.3","('Q2', 'Q3')","0.85","33.88" +"MEDITERRANEAN MARINE SCIENCE","1108-393X","","MARINE & FRESHWATER BIOLOGY","('SCIE',)","1,772","2.3","Q1","0.85","91.24" +"Pragmatic and Observational Research","1179-7266","1179-7266","MEDICINE, GENERAL & INTERNAL","('ESCI',)","223","2.3","Q2","0.85","100.00" +"ZAMM-Zeitschrift fur Angewandte Mathematik und Mechanik","0044-2267","1521-4001","('MATHEMATICS, APPLIED', 'MECHANICS')","('SCIE', 'SCIE')","4,381","2.3","('Q1', 'Q2')","0.85","6.90" +"Espiral-Cuadernos del Profesorado","1988-7701","1988-7701","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","192","2.3","Q1","0.84","30.43" +"Journal of Family and Economic Issues","1058-0476","1573-3475","('ECONOMICS', 'FAMILY STUDIES')","('SSCI', 'SSCI')","1,976","2.3","('Q2', 'Q2')","0.84","23.40" +"Voluntas","0957-8765","1573-7888","SOCIAL ISSUES","('SSCI',)","3,623","2.3","Q1","0.84","32.30" +"ANXIETY STRESS AND COPING","1061-5806","1477-2205","('PSYCHIATRY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","3,392","2.3","('Q2', 'Q2')","0.83","14.62" +"Clinical Genitourinary Cancer","1558-7673","1938-0682","('ONCOLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","3,330","2.3","('Q3', 'Q2')","0.83","17.57" +"CURRENT PROBLEMS IN SURGERY","0011-3840","1535-6337","SURGERY","('SCIE',)","688","2.3","Q2","0.83","11.90" +"International Journal of Computer Assisted Radiology and Surgery","1861-6410","1861-6429","('ENGINEERING, BIOMEDICAL', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","5,561","2.3","('Q3', 'Q2', 'Q2')","0.83","36.17" +"International Public Management Journal","1096-7494","1559-3169","PUBLIC ADMINISTRATION","('SSCI',)","1,632","2.3","Q2","0.83","23.31" +"JOURNAL OF THROMBOSIS AND THROMBOLYSIS","0929-5305","1573-742X","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE', 'SCIE')","4,494","2.3","('Q2', 'Q2', 'Q2')","0.83","24.71" +"CONTEMPORARY DRUG PROBLEMS","0091-4509","2163-1808","SUBSTANCE ABUSE","('ESCI',)","605","2.3","Q3","0.82","35.44" +"DEEP-SEA RESEARCH PART I-OCEANOGRAPHIC RESEARCH PAPERS","0967-0637","1879-0119","OCEANOGRAPHY","('SCIE',)","8,866","2.3","Q2","0.82","34.15" +"JOURNAL OF QUANTITATIVE SPECTROSCOPY & RADIATIVE TRANSFER","0022-4073","1879-1352","('OPTICS', 'SPECTROSCOPY')","('SCIE', 'SCIE')","12,203","2.3","('Q2', 'Q2')","0.82","27.14" +"REVIEW OF ECONOMIC DYNAMICS","1094-2025","1096-6099","ECONOMICS","('SSCI',)","2,724","2.3","Q2","0.82","12.15" +"Traumatology","","1085-9373","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","1,500","2.3","('Q2', 'Q2', 'Q2')","0.82","3.33" +"European Archives of Paediatric Dentistry","1818-6300","1996-9805","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","1,898","2.3","Q2","0.81","28.81" +"International Journal of Sport and Exercise Psychology","1612-197X","1557-251X","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","1,919","2.3","('Q2', 'Q2')","0.80","15.41" +"Seminars in Plastic Surgery","1535-2188","1536-0067","SURGERY","('SCIE',)","1,580","2.3","Q2","0.80","0.00" +"Journal of Health Economics and Outcomes Research","2327-2236","2327-2236","('ECONOMICS', 'HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('ESCI', 'ESCI', 'ESCI')","242","2.3","('Q2', 'Q2', 'Q2')","0.79","97.83" +"JOURNAL OF PUBLIC HEALTH POLICY","0197-5897","1745-655X","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SCIE, SSCI')","1,483","2.3","('Q2', 'Q2', 'Q2')","0.79","25.68" +"JOURNAL OF THE WORLD AQUACULTURE SOCIETY","0893-8849","1749-7345","FISHERIES","('SCIE',)","3,518","2.3","Q2","0.79","85.43" +"MOBILE NETWORKS & APPLICATIONS","1383-469X","1572-8153","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","3,316","2.3","('Q2', 'Q3', 'Q3')","0.79","9.20" +"JBJS Open Access","","2472-7245","('ORTHOPEDICS', 'SURGERY')","('ESCI', 'ESCI')","562","2.3","('Q2', 'Q2')","0.78","100.00" +"JOURNAL OF APPLIED BEHAVIORAL SCIENCE","0021-8863","1552-6879","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","2,473","2.3","('Q3', 'Q2')","0.78","29.17" +"Quality Technology and Quantitative Management","1684-3703","1811-4857","('ENGINEERING, INDUSTRIAL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","751","2.3","('Q3', 'Q2', 'Q1')","0.78","1.47" +"Triple Helix","2590-0366","2197-1927","MANAGEMENT","('ESCI',)","213","2.3","Q3","0.78","86.96" +"Array","2590-0056","2590-0056","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","425","2.3","Q2","0.77","87.50" +"HEALTH PROMOTION INTERNATIONAL","0957-4824","1460-2245","('HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SCIE, SSCI')","5,502","2.3","('Q2', 'Q2')","0.77","30.78" +"Journal of Innovative Optical Health Sciences","1793-5458","1793-7205","('OPTICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","1,079","2.3","('Q2', 'Q2')","0.77","86.50" +"Parasite","1252-607X","1776-1042","PARASITOLOGY","('SCIE',)","2,320","2.3","Q2","0.77","97.17" +"Plant Direct","","2475-4455","PLANT SCIENCES","('SCIE',)","1,364","2.3","Q2","0.77","74.03" +"POTATO RESEARCH","0014-3065","1871-4528","AGRONOMY","('SCIE',)","1,638","2.3","Q1","0.77","23.24" +"Sports Medicine and Health Science","2666-3376","2666-3376","SPORT SCIENCES","('ESCI',)","460","2.3","Q2","0.77","93.81" +"CRYOBIOLOGY","0011-2240","1090-2392","('BIOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","5,159","2.3","('Q2', 'Q3')","0.76","19.93" +"Fashion and Textiles","2198-0802","2198-0802","MATERIALS SCIENCE, TEXTILES","('SCIE',)","768","2.3","Q1","0.76","100.00" +"Parenting-Science and Practice","1529-5192","1532-7922","('FAMILY STUDIES', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","1,268","2.3","('Q2', 'Q2')","0.76","26.92" +"AMERICAN BEHAVIORAL SCIENTIST","0002-7642","1552-3381","('PSYCHOLOGY, CLINICAL', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","7,698","2.3","('Q2', 'Q1')","0.75","19.92" +"ASIAN PACIFIC JOURNAL OF ALLERGY AND IMMUNOLOGY","0125-877X","2228-8694","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","1,160","2.3","('Q3', 'Q3')","0.75","98.63" +"COGNITIVE SCIENCE","0364-0213","1551-6709","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","7,497","2.3","Q2","0.75","38.46" +"International Health","1876-3413","1876-3405","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","1,817","2.3","Q2","0.75","94.87" +"JOURNAL OF COUNSELING AND DEVELOPMENT","0748-9633","1556-6676","PSYCHOLOGY, APPLIED","('SSCI',)","2,966","2.3","Q2","0.75","11.54" +"NEPHRON","1660-8151","2235-3186","UROLOGY & NEPHROLOGY","('SCIE',)","3,806","2.3","Q2","0.75","19.23" +"PLANT SOIL AND ENVIRONMENT","1214-1178","1805-9368","AGRONOMY","('SCIE',)","3,032","2.3","Q1","0.75","95.43" +"WORLD BANK ECONOMIC REVIEW","0258-6770","1564-698X","('BUSINESS, FINANCE', 'DEVELOPMENT STUDIES', 'ECONOMICS')","('SSCI', 'SSCI', 'SSCI')","3,043","2.3","('Q2', 'Q2', 'Q2')","0.75","17.61" +"Bioinformatics and Biology Insights","1177-9322","1177-9322","BIOCHEMICAL RESEARCH METHODS","('ESCI',)","821","2.3","Q3","0.74","95.65" +"EPILEPSY & BEHAVIOR","1525-5050","1525-5069","('BEHAVIORAL SCIENCES', 'CLINICAL NEUROLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","15,015","2.3","('Q2', 'Q3', 'Q2')","0.74","17.73" +"IEEE MULTIMEDIA","1070-986X","1941-0166","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,196","2.3","('Q2', 'Q3', 'Q2', 'Q2')","0.74","0.79" +"INSECT MOLECULAR BIOLOGY","0962-1075","1365-2583","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENTOMOLOGY')","('SCIE', 'SCIE')","3,646","2.3","('Q3', 'Q1')","0.74","21.39" +"International Journal of Fertility & Sterility","2008-076X","2008-0778","OBSTETRICS & GYNECOLOGY","('ESCI',)","1,218","2.3","Q2","0.74","0.00" +"Journal of Cosmetic Dermatology","1473-2130","1473-2165","DERMATOLOGY","('SCIE',)","7,765","2.3","Q2","0.74","37.62" +"Journal of Economics Finance and Administrative Science","2077-1886","2218-0648","ECONOMICS","('ESCI',)","519","2.3","Q2","0.74","97.44" +"JOURNAL OF GUIDANCE CONTROL AND DYNAMICS","0731-5090","1533-3884","('ENGINEERING, AEROSPACE', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","11,226","2.3","('Q1', 'Q2')","0.74","3.93" +"KIDNEY & BLOOD PRESSURE RESEARCH","1420-4096","1423-0143","('PERIPHERAL VASCULAR DISEASE', 'PHYSIOLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE', 'SCIE')","2,651","2.3","('Q2', 'Q3', 'Q2')","0.74","98.62" +"NEW IDEAS IN PSYCHOLOGY","0732-118X","1873-3522","('PSYCHOLOGY, EXPERIMENTAL', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","1,328","2.3","('Q2', 'Q2')","0.74","22.76" +"Arthroplasty","","2524-7948","ORTHOPEDICS","('ESCI',)","399","2.3","Q2","0.73","100.00" +"Global Public Health","1744-1692","1744-1706","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","3,452","2.3","Q2","0.73","52.18" +"International Journal of Injury Control and Safety Promotion","1745-7300","1745-7319","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","1,185","2.3","Q2","0.73","5.56" +"JOURNAL OF APPLIED ECONOMETRICS","0883-7252","1099-1255","('ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","8,322","2.3","('Q2', 'Q1')","0.73","26.32" +"Journal of Trauma & Dissociation","1529-9732","1529-9740","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","1,683","2.3","('Q2', 'Q2')","0.73","9.52" +"OECOLOGIA","0029-8549","1432-1939","ECOLOGY","('SCIE',)","29,926","2.3","Q2","0.73","30.35" +"BMC Ecology and Evolution","","2730-7182","('ECOLOGY', 'EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","842","2.3","('Q2', 'Q2', 'Q3')","0.71","99.76" +"JOURNAL OF TOXICOLOGY AND ENVIRONMENTAL HEALTH-PART A-CURRENT ISSUES","1528-7394","1087-2620","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,956","2.3","('Q3', 'Q2', 'Q3')","0.71","5.37" +"PHYSIOLOGICAL MEASUREMENT","0967-3334","1361-6579","('BIOPHYSICS', 'ENGINEERING, BIOMEDICAL', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","6,921","2.3","('Q3', 'Q3', 'Q3')","0.71","31.13" +"SURGICAL ONCOLOGY-OXFORD","0960-7404","1879-3320","('ONCOLOGY', 'SURGERY')","('SCIE', 'SCIE')","3,302","2.3","('Q3', 'Q2')","0.71","12.77" +"Blue-Green Systems","","2617-4782","('ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('ESCI', 'ESCI')","269","2.3","('Q3', 'Q3')","0.70","100.00" +"BRAIN TOPOGRAPHY","0896-0267","1573-6792","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","3,228","2.3","('Q3', 'Q3')","0.70","40.38" +"International Journal of Naval Architecture and Ocean Engineering","2092-6782","2092-6790","ENGINEERING, MARINE","('SCIE',)","1,939","2.3","Q2","0.70","98.97" +"Joint Commission Journal on Quality and Patient Safety","1553-7250","1938-131X","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","2,186","2.3","Q2","0.70","18.81" +"JOURNAL OF ECONOMIC BEHAVIOR & ORGANIZATION","0167-2681","1879-1751","ECONOMICS","('SSCI',)","13,107","2.3","Q2","0.70","26.16" +"Journal of Electronic Commerce Research","1526-6133","1938-9027","BUSINESS","('SSCI',)","1,706","2.3","Q3","0.70","0.00" +"JOURNAL OF OCCUPATIONAL AND ENVIRONMENTAL MEDICINE","1076-2752","1536-5948","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","8,169","2.3","Q2","0.70","19.82" +"PATHOLOGY & ONCOLOGY RESEARCH","1219-4956","1532-2807","('ONCOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","3,708","2.3","('Q3', 'Q2')","0.70","99.23" +"Schizophrenia Research-Cognition","2215-0013","2215-0013","('PSYCHIATRY', 'PSYCHOLOGY, EXPERIMENTAL')","('ESCI', 'ESCI')","571","2.3","('Q2', 'Q2')","0.70","93.46" +"JOURNAL OF CARDIOTHORACIC AND VASCULAR ANESTHESIA","1053-0770","1532-8422","('ANESTHESIOLOGY', 'CARDIAC & CARDIOVASCULAR SYSTEMS', 'PERIPHERAL VASCULAR DISEASE', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,010","2.3","('Q2', 'Q2', 'Q2', 'Q2')","0.69","10.10" +"JOURNAL OF ECONOMIC GROWTH","1381-4338","1573-7020","ECONOMICS","('SSCI',)","3,298","2.3","Q2","0.69","54.90" +"PeerJ","2167-8359","2167-8359","MULTIDISCIPLINARY SCIENCES","('SCIE',)","42,966","2.3","Q2","0.69","98.63" +"Therapeutics and Clinical Risk Management","","1178-203X","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","4,185","2.3","Q2","0.69","99.36" +"Estuaries and Coasts","1559-2723","1559-2731","('ENVIRONMENTAL SCIENCES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","5,876","2.3","('Q3', 'Q1')","0.68","31.42" +"IEEE Journal of Radio Frequency Identification","","2469-7281","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI')","855","2.3","('Q2', 'Q3')","0.68","9.62" +"International Journal of Wine Business Research","1751-1062","1751-1070","AGRONOMY","('ESCI',)","799","2.3","Q1","0.68","7.23" +"JOURNAL OF CARDIOVASCULAR ELECTROPHYSIOLOGY","1045-3873","1540-8167","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","8,467","2.3","Q2","0.68","19.77" +"Seminars in Oncology Nursing","0749-2081","1878-3449","('NURSING', 'ONCOLOGY')","('SCIE, SSCI', 'SCIE')","2,278","2.3","('Q1', 'Q3')","0.68","21.10" +"PHYSICS LETTERS A","0375-9601","1873-2429","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","27,914","2.3","Q2","0.67","7.78" +"PLANT PATHOLOGY","0032-0862","1365-3059","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","8,513","2.3","('Q1', 'Q2')","0.67","21.61" +"SCIENTIA PHARMACEUTICA","","2218-0532","PHARMACOLOGY & PHARMACY","('ESCI',)","1,840","2.3","Q3","0.67","100.00" +"Scientifica","2090-908X","2090-908X","BIOLOGY","('ESCI',)","2,158","2.3","Q2","0.67","100.00" +"Abdominal Radiology","2366-004X","2366-0058","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","6,859","2.3","Q2","0.66","10.56" +"BOUNDARY-LAYER METEOROLOGY","0006-8314","1573-1472","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","8,076","2.3","Q3","0.66","42.73" +"FIRE TECHNOLOGY","0015-2684","1572-8099","('ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","4,071","2.3","('Q2', 'Q3')","0.66","22.38" +"Geoheritage","1867-2477","1867-2485","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","2,433","2.3","Q2","0.66","20.77" +"JOURNAL OF ANALYTICAL TOXICOLOGY","0146-4760","1945-2403","('CHEMISTRY, ANALYTICAL', 'TOXICOLOGY')","('SCIE', 'SCIE')","4,259","2.3","('Q3', 'Q3')","0.66","14.35" +"Journal of Managed Care & Specialty Pharmacy","2376-0540","2376-1032","('HEALTH CARE SCIENCES & SERVICES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","2,628","2.3","('Q2', 'Q3')","0.66","0.71" +"SAR AND QSAR IN ENVIRONMENTAL RESEARCH","1062-936X","1029-046X","('CHEMISTRY, MULTIDISCIPLINARY', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENVIRONMENTAL SCIENCES', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","1,410","2.3","('Q3', 'Q3', 'Q3', 'Q2', 'Q3')","0.66","4.83" +"Therapeutic Advances in Ophthalmology","2515-8414","2515-8414","OPHTHALMOLOGY","('ESCI',)","518","2.3","Q2","0.66","95.71" +"Clinical Epidemiology and Global Health","2452-0918","2213-3984","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","2,085","2.3","Q2","0.65","99.86" +"Ecology and Evolution","2045-7758","2045-7758","('ECOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE')","25,599","2.3","('Q2', 'Q2')","0.65","68.49" +"Environmental Health Insights","1178-6302","1178-6302","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","813","2.3","Q2","0.65","91.08" +"Information Technology & Management","1385-951X","1573-7667","('INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SSCI', 'SSCI')","798","2.3","('Q2', 'Q3')","0.65","12.63" +"International Journal of Geosynthetics and Ground Engineering","2199-9260","2199-9279","ENGINEERING, GEOLOGICAL","('ESCI',)","1,095","2.3","Q2","0.65","6.91" +"JOURNAL OF CLINICAL NEUROPHYSIOLOGY","0736-0258","1537-1603","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","3,774","2.3","('Q3', 'Q3')","0.65","3.42" +"BOTANICAL JOURNAL OF THE LINNEAN SOCIETY","0024-4074","1095-8339","PLANT SCIENCES","('SCIE',)","5,546","2.3","Q2","0.64","16.33" +"IEEE PHOTONICS TECHNOLOGY LETTERS","1041-1135","1941-0174","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","14,927","2.3","('Q2', 'Q2', 'Q3')","0.64","16.15" +"JOURNAL OF ALTERNATIVE AND COMPLEMENTARY MEDICINE","1075-5535","1557-7708","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","5,057","2.3","Q2","0.64","9.43" +"JOURNAL OF BIOSCIENCE AND BIOENGINEERING","1389-1723","1347-4421","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","8,786","2.3","('Q3', 'Q3')","0.64","25.27" +"JOURNAL OF PRODUCTIVITY ANALYSIS","0895-562X","1573-0441","('BUSINESS', 'ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI', 'SSCI')","2,888","2.3","('Q3', 'Q2', 'Q1')","0.64","31.03" +"JOURNAL OF VIBRATION AND CONTROL","1077-5463","1741-2986","('ACOUSTICS', 'ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","7,837","2.3","('Q2', 'Q2', 'Q2')","0.64","2.09" +"PLANT CELL TISSUE AND ORGAN CULTURE","0167-6857","1573-5044","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","8,655","2.3","('Q3', 'Q2')","0.64","10.71" +"Studies in Economics and Finance","1086-7376","1755-6791","BUSINESS, FINANCE","('ESCI',)","668","2.3","Q2","0.64","3.66" +"Environmental Economics and Policy Studies","1432-847X","1867-383X","ECONOMICS","('ESCI',)","744","2.3","Q2","0.63","32.14" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART E-JOURNAL OF PROCESS MECHANICAL ENGINEERING","0954-4089","2041-3009","ENGINEERING, MECHANICAL","('SCIE',)","2,867","2.3","Q2","0.63","0.87" +"AMERICAN JOURNAL OF CARDIOLOGY","0002-9149","1879-1913","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","32,162","2.3","Q2","0.62","14.56" +"Dose-Response","1559-3258","1559-3258","('PHARMACOLOGY & PHARMACY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","2,350","2.3","('Q3', 'Q2')","0.62","89.38" +"Forecasting","","2571-9394","MULTIDISCIPLINARY SCIENCES","('ESCI',)","387","2.3","Q2","0.62","99.29" +"JOURNAL OF NEUROIMAGING","1051-2284","1552-6569","('CLINICAL NEUROLOGY', 'NEUROIMAGING', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","2,928","2.3","('Q3', 'Q3', 'Q2')","0.62","21.19" +"JOURNAL OF NEUROVIROLOGY","1355-0284","1538-2443","('NEUROSCIENCES', 'VIROLOGY')","('SCIE', 'SCIE')","2,947","2.3","('Q3', 'Q3')","0.62","24.60" +"Qualitative Research in Accounting and Management","1176-6093","1758-7654","('BUSINESS, FINANCE', 'MANAGEMENT')","('SSCI', 'SSCI')","775","2.3","('Q2', 'Q3')","0.62","21.95" +"Social Network Analysis and Mining","1869-5450","1869-5469","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","1,973","2.3","Q3","0.62","23.36" +"Water Resources and Economics","2212-4284","2212-4284","('ECONOMICS', 'ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'WATER RESOURCES')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","405","2.3","('Q2', 'Q3', 'Q3', 'Q3')","0.62","30.00" +"ACTA MECHANICA","0001-5970","1619-6937","MECHANICS","('SCIE',)","7,737","2.3","Q2","0.61","14.21" +"EXPERIMENTS IN FLUIDS","0723-4864","1432-1114","('ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE')","11,937","2.3","('Q2', 'Q2')","0.61","36.80" +"JOURNAL OF INTELLIGENT INFORMATION SYSTEMS","0925-9902","1573-7675","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","1,402","2.3","('Q3', 'Q3')","0.61","24.62" +"JOURNAL OF THE ACM","0004-5411","1557-735X","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","7,179","2.3","('Q2', 'Q3', 'Q2', 'Q2')","0.61","3.10" +"Leisure Studies","0261-4367","1466-4496","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","2,557","2.3","Q2","0.61","22.18" +"MUTATION RESEARCH-GENETIC TOXICOLOGY AND ENVIRONMENTAL MUTAGENESIS","1383-5718","1879-3592","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,362","2.3","('Q3', 'Q3', 'Q3')","0.61","25.47" +"Rehabilitation Process and Outcome","1179-5727","1179-5727","REHABILITATION","('ESCI',)","73","2.3","Q1","0.61","100.00" +"Current Opinion in Anesthesiology","0952-7907","1473-6500","ANESTHESIOLOGY","('SCIE',)","3,709","2.3","Q2","0.60","6.46" +"ELECTRONIC JOURNAL OF BIOTECHNOLOGY","0717-3458","0717-3458","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","2,227","2.3","Q3","0.60","98.08" +"International Journal of Geotechnical Engineering","1938-6362","1939-7879","ENGINEERING, GEOLOGICAL","('ESCI',)","1,679","2.3","Q2","0.60","1.67" +"Microfluidics and Nanofluidics","1613-4982","1613-4990","('INSTRUMENTS & INSTRUMENTATION', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE', 'SCIE')","5,107","2.3","('Q2', 'Q3', 'Q2')","0.60","12.11" +"MOLECULAR GENETICS AND GENOMICS","1617-4615","1617-4623","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","5,078","2.3","('Q3', 'Q3')","0.60","16.41" +"Neurology-Clinical Practice","2163-0402","2163-0933","CLINICAL NEUROLOGY","('ESCI',)","1,827","2.3","Q3","0.60","12.16" +"Thoracic Cancer","1759-7706","1759-7714","('ONCOLOGY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","5,801","2.3","('Q3', 'Q2')","0.60","68.37" +"Asian Review of Accounting","1321-7348","1758-8863","BUSINESS, FINANCE","('ESCI',)","827","2.3","Q2","0.59","3.42" +"FLOW MEASUREMENT AND INSTRUMENTATION","0955-5986","1873-6998","('ENGINEERING, MECHANICAL', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","3,702","2.3","('Q2', 'Q2')","0.59","9.98" +"Journal of Financial Reporting","2380-2154","2380-2146","BUSINESS, FINANCE","('ESCI',)","165","2.3","Q2","0.59","0.00" +"JOURNAL OF MEMBRANE BIOLOGY","0022-2631","1432-1424","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,428","2.3","('Q3', 'Q4', 'Q3')","0.59","13.85" +"MOLECULAR AND CELLULAR PROBES","0890-8508","1096-1194","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,242","2.3","('Q3', 'Q3', 'Q3', 'Q4')","0.59","45.22" +"Neurodegenerative Disease Management","1758-2024","1758-2032","CLINICAL NEUROLOGY","('ESCI',)","865","2.3","Q3","0.59","44.58" +"Archives of Agronomy and Soil Science","0365-0340","1476-3567","('AGRONOMY', 'SOIL SCIENCE')","('SCIE', 'SCIE')","4,367","2.3","('Q1', 'Q3')","0.58","3.29" +"ARCHIVES OF MICROBIOLOGY","0302-8933","1432-072X","MICROBIOLOGY","('SCIE',)","10,860","2.3","Q3","0.58","7.38" +"BioPsychoSocial Medicine","1751-0759","1751-0759","('PSYCHIATRY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","758","2.3","('Q2', 'Q2')","0.58","100.00" +"Journal of Hydrology and Hydromechanics","0042-790X","1338-4333","WATER RESOURCES","('SCIE',)","939","2.3","Q3","0.58","99.17" +"Archives of Cardiovascular Diseases","1875-2136","1875-2128","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,995","2.3","Q2","0.57","70.87" +"Atmospheric and Oceanic Science Letters","1674-2834","2376-6123","METEOROLOGY & ATMOSPHERIC SCIENCES","('ESCI',)","1,224","2.3","Q3","0.57","96.94" +"Canadian Journal of Diabetes","1499-2671","2352-3840","ENDOCRINOLOGY & METABOLISM","('SCIE',)","2,669","2.3","Q3","0.57","11.15" +"CHILD AND ADOLESCENT PSYCHIATRIC CLINICS OF NORTH AMERICA","1056-4993","1558-0490","PSYCHIATRY","('SSCI',)","2,587","2.3","Q2","0.57","11.04" +"DEVELOPMENTAL NEUROSCIENCE","0378-5866","1421-9859","('DEVELOPMENTAL BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","2,150","2.3","('Q2', 'Q3')","0.57","42.59" +"GENOME","0831-2796","1480-3321","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","3,915","2.3","('Q3', 'Q3')","0.57","16.67" +"Journal of Digestive Diseases","1751-2972","1751-2980","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","2,177","2.3","Q3","0.57","9.28" +"Journal of Environment & Development","1070-4965","1552-5465","('DEVELOPMENT STUDIES', 'ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI', 'SSCI')","989","2.3","('Q2', 'Q3', 'Q3')","0.57","18.33" +"Microbial Drug Resistance","1076-6294","1931-8448","('INFECTIOUS DISEASES', 'MICROBIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","4,092","2.3","('Q3', 'Q3', 'Q3')","0.57","5.67" +"ASCE-ASME Journal of Risk and Uncertainty in Engineering Systems Part A-Civil Engineering","2376-7642","2376-7642","ENGINEERING, CIVIL","('SCIE',)","1,065","2.3","Q2","0.56","3.00" +"Chronic Obstructive Pulmonary Diseases-Journal of the COPD Foundation","2372-952X","2372-952X","RESPIRATORY SYSTEM","('SCIE',)","654","2.3","Q2","0.56","97.83" +"JOURNAL OF MOLECULAR RECOGNITION","0952-3499","1099-1352","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","2,089","2.3","('Q3', 'Q3')","0.56","6.00" +"Methods and Protocols","","2409-9279","BIOCHEMICAL RESEARCH METHODS","('ESCI',)","947","2.3","Q3","0.56","100.00" +"RHEOLOGICA ACTA","0035-4511","1435-1528","MECHANICS","('SCIE',)","4,464","2.3","Q2","0.56","29.01" +"Structural Dynamics-US","","2329-7778","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","1,063","2.3","('Q3', 'Q2')","0.56","90.82" +"ACS Agricultural Science & Technology","","2692-1952","('AGRICULTURE, MULTIDISCIPLINARY', 'CHEMISTRY, APPLIED')","('ESCI', 'ESCI')","582","2.3","('Q1', 'Q2')","0.55","7.95" +"Applied Biological Chemistry","2468-0834","2468-0842","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,539","2.3","Q3","0.55","100.00" +"Clinica y Salud","1130-5274","2174-0550","PSYCHOLOGY, CLINICAL","('SSCI',)","395","2.3","Q2","0.55","100.00" +"Current Stem Cell Reports","","2198-7866","CELL & TISSUE ENGINEERING","('ESCI',)","366","2.3","Q4","0.55","29.79" +"Dermatologica Sinica","1027-8117","2223-330X","DERMATOLOGY","('SCIE',)","418","2.3","Q2","0.55","78.08" +"EUROPEAN JOURNAL OF GASTROENTEROLOGY & HEPATOLOGY","0954-691X","1473-5687","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","7,344","2.3","Q3","0.55","8.96" +"EUROPEAN JOURNAL OF HAEMATOLOGY","0902-4441","1600-0609","HEMATOLOGY","('SCIE',)","5,309","2.3","Q2","0.55","35.66" +"IET Intelligent Transport Systems","1751-956X","1751-9578","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","3,595","2.3","('Q2', 'Q2')","0.55","80.66" +"International Journal of Endocrinology","1687-8337","1687-8345","ENDOCRINOLOGY & METABOLISM","('SCIE',)","5,058","2.3","Q3","0.55","99.73" +"International Journal of Managing Projects in Business","1753-8378","1753-8386","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","1,679","2.3","('Q3', 'Q3')","0.55","14.58" +"INTERNATIONAL JOURNAL OF QUANTUM CHEMISTRY","0020-7608","1097-461X","('CHEMISTRY, PHYSICAL', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","9,590","2.3","('Q3', 'Q2', 'Q2', 'Q3')","0.55","5.57" +"Operational Research","1109-2858","1866-1505","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","1,465","2.3","Q2","0.55","12.20" +"Pulmonary Therapy","2364-1754","2364-1746","RESPIRATORY SYSTEM","('ESCI',)","396","2.3","Q2","0.55","100.00" +"GRANULAR MATTER","1434-5021","1434-7636","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","3,561","2.3","('Q3', 'Q2', 'Q3')","0.54","21.69" +"IEEE TRANSACTIONS ON SEMICONDUCTOR MANUFACTURING","0894-6507","1558-2345","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MANUFACTURING', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,416","2.3","('Q2', 'Q3', 'Q3', 'Q3')","0.54","4.67" +"Information Systems and E-Business Management","1617-9846","1617-9854","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","1,113","2.3","('Q3', 'Q3')","0.54","38.26" +"TELLUS SERIES B-CHEMICAL AND PHYSICAL METEOROLOGY","1600-0889","1600-0889","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","2,792","2.3","Q3","0.54","100.00" +"Applied Physics Express","1882-0778","1882-0786","PHYSICS, APPLIED","('SCIE',)","10,100","2.3","Q3","0.53","15.21" +"Clinical Medicine Insights-Cardiology","1179-5468","1179-5468","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","617","2.3","Q2","0.53","89.19" +"Food Additives and Contaminants Part A-Chemistry Analysis Control Exposure & Risk Assessment","1944-0049","1944-0057","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","8,513","2.3","('Q2', 'Q3', 'Q3')","0.53","10.09" +"Innovative Infrastructure Solutions","2364-4176","2364-4184","ENGINEERING, CIVIL","('ESCI',)","2,343","2.3","Q2","0.53","4.34" +"INTERNATIONAL JOURNAL OF ENVIRONMENTAL ANALYTICAL CHEMISTRY","0306-7319","1029-0397","('CHEMISTRY, ANALYTICAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","6,863","2.3","('Q3', 'Q3')","0.53","0.67" +"INTERNATIONAL MICROBIOLOGY","1139-6709","1618-1905","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","1,932","2.3","('Q3', 'Q3')","0.53","15.84" +"Journal of Analytical Methods in Chemistry","2090-8865","2090-8873","CHEMISTRY, ANALYTICAL","('SCIE',)","2,205","2.3","Q3","0.53","98.66" +"JOURNAL OF SOL-GEL SCIENCE AND TECHNOLOGY","0928-0707","1573-4846","MATERIALS SCIENCE, CERAMICS","('SCIE',)","8,779","2.3","Q2","0.53","7.12" +"POLISH JOURNAL OF FOOD AND NUTRITION SCIENCES","1230-0322","2083-6007","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,360","2.3","Q3","0.53","99.07" +"CHEMPHYSCHEM","1439-4235","1439-7641","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","15,110","2.3","('Q3', 'Q2')","0.52","24.64" +"Clinical and Translational Imaging","2281-5872","2281-7565","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","737","2.3","Q2","0.52","25.00" +"CURRENT MICROBIOLOGY","0343-8651","1432-0991","MICROBIOLOGY","('SCIE',)","9,687","2.3","Q3","0.52","7.92" +"EURASIP Journal on Wireless Communications and Networking","1687-1472","1687-1499","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","3,863","2.3","('Q2', 'Q3')","0.52","100.00" +"EURO Journal on Decision Processes","2193-9438","2193-9446","MANAGEMENT","('ESCI',)","211","2.3","Q3","0.52","100.00" +"Journal of Asia Business Studies","1558-7894","1559-2243","BUSINESS","('ESCI',)","878","2.3","Q3","0.52","1.90" +"Journal of Theoretical Social Psychology","","2475-0387","PSYCHOLOGY, SOCIAL","('ESCI',)","221","2.3","Q2","0.52","64.00" +"R Journal","2073-4859","","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","5,890","2.3","('Q3', 'Q1')","0.52","2.83" +"WEB ECOLOGY","2193-3081","1399-1183","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","235","2.3","('Q2', 'Q3')","0.52","100.00" +"Applied Geomatics","1866-9298","1866-928X","REMOTE SENSING","('ESCI',)","1,003","2.3","Q2","0.51","18.38" +"ENVIRONMENTAL AND MOLECULAR MUTAGENESIS","0893-6692","1098-2280","('ENVIRONMENTAL SCIENCES', 'GENETICS & HEREDITY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,071","2.3","('Q3', 'Q3', 'Q3')","0.51","25.86" +"Global Business Review","0972-1509","0973-0664","('BUSINESS', 'MANAGEMENT')","('ESCI', 'ESCI')","2,967","2.3","('Q3', 'Q3')","0.51","4.13" +"METEOROLOGICAL APPLICATIONS","1350-4827","1469-8080","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","2,828","2.3","Q3","0.51","87.85" +"RESEARCH IN ENGINEERING DESIGN","0934-9839","1435-6066","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","989","2.3","('Q3', 'Q3', 'Q2')","0.51","42.65" +"SAGE Open Medicine","2050-3121","2050-3121","MEDICINE, GENERAL & INTERNAL","('ESCI',)","3,426","2.3","Q2","0.51","93.49" +"Agricultural & Environmental Letters","","2471-9625","('AGRICULTURE, MULTIDISCIPLINARY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","476","2.3","('Q1', 'Q3')","0.50","94.83" +"ANNALS OF PHARMACOTHERAPY","1060-0280","1542-6270","PHARMACOLOGY & PHARMACY","('SCIE',)","7,086","2.3","Q3","0.50","3.77" +"ARCHAEA-AN INTERNATIONAL MICROBIOLOGICAL JOURNAL","1472-3646","1472-3654","MICROBIOLOGY","('SCIE',)","640","2.3","Q3","0.50","100.00" +"Cellular and Molecular Bioengineering","1865-5025","1865-5033","('BIOPHYSICS', 'CELL & TISSUE ENGINEERING', 'CELL BIOLOGY', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,482","2.3","('Q3', 'Q4', 'Q4', 'Q3')","0.50","14.41" +"Intelligent Service Robotics","1861-2776","1861-2784","ROBOTICS","('SCIE',)","921","2.3","Q3","0.50","11.64" +"Quaternary","2571-550X","2571-550X","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","416","2.3","Q2","0.50","100.00" +"AMERICAN JOURNAL OF THE MEDICAL SCIENCES","0002-9629","1538-2990","MEDICINE, GENERAL & INTERNAL","('SCIE',)","6,189","2.3","Q2","0.49","6.78" +"Healthcare Informatics Research","2093-3681","2093-369X","MEDICAL INFORMATICS","('ESCI',)","1,209","2.3","Q3","0.49","99.14" +"Public Transport","1866-749X","1613-7159","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","721","2.3","Q2","0.49","33.72" +"REVISTA CLINICA ESPANOLA","0014-2565","1578-1860","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,007","2.3","Q2","0.49","9.64" +"Biochemistry and Biophysics Reports","2405-5808","2405-5808","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","3,075","2.3","Q3","0.48","94.09" +"International Journal of Rheumatology","1687-9260","1687-9279","RHEUMATOLOGY","('ESCI',)","489","2.3","Q2","0.48","100.00" +"JOURNAL OF BIOMATERIALS APPLICATIONS","0885-3282","1530-8022","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","3,652","2.3","('Q3', 'Q4')","0.48","3.52" +"JOURNAL OF PERFORMANCE OF CONSTRUCTED FACILITIES","0887-3828","1943-5509","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","4,356","2.3","('Q2', 'Q2')","0.48","1.28" +"SEMINARS IN RESPIRATORY AND CRITICAL CARE MEDICINE","1069-3424","1098-9048","('CRITICAL CARE MEDICINE', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","2,993","2.3","('Q2', 'Q2')","0.48","0.47" +"Biomedical Reports","2049-9434","2049-9442","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","2,848","2.3","Q3","0.47","99.35" +"DISEASES OF THE ESOPHAGUS","1120-8694","1442-2050","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","4,053","2.3","Q3","0.47","19.14" +"INFORMS JOURNAL ON COMPUTING","1091-9856","1526-5528","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","3,001","2.3","('Q3', 'Q2')","0.47","0.00" +"Journal of Entrepreneurship Management and Innovation","2299-7075","2299-7326","BUSINESS","('ESCI',)","329","2.3","Q3","0.47","100.00" +"CLINICAL AND APPLIED THROMBOSIS-HEMOSTASIS","1076-0296","1938-2723","('HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","3,384","2.3","('Q2', 'Q2')","0.46","88.76" +"FOOD TECHNOLOGY AND BIOTECHNOLOGY","1330-9862","1334-2606","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","2,691","2.3","('Q3', 'Q3')","0.46","97.86" +"Frontiers in Reproductive Health","","2673-3153","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'REPRODUCTIVE BIOLOGY')","('ESCI', 'ESCI')","552","2.3","('Q2', 'Q3')","0.46","99.09" +"INTERNATIONAL JOURNAL OF BIOLOGICAL MARKERS","0393-6155","1724-6008","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","1,356","2.3","('Q3', 'Q3')","0.46","95.15" +"CURRENT CANCER DRUG TARGETS","1568-0096","1873-5576","ONCOLOGY","('SCIE',)","3,163","2.3","Q3","0.45","1.92" +"IEEE Transactions on Components Packaging and Manufacturing Technology","2156-3950","2156-3985","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","6,662","2.3","('Q2', 'Q3', 'Q3')","0.45","11.38" +"POLYMER JOURNAL","0032-3896","1349-0540","POLYMER SCIENCE","('SCIE',)","6,210","2.3","Q3","0.45","12.90" +"ANTI-CORROSION METHODS AND MATERIALS","0003-5599","1758-4221","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","1,378","2.3","Q2","0.44","0.00" +"CHEMISTRY & BIODIVERSITY","1612-1872","1612-1880","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","8,020","2.3","('Q3', 'Q3')","0.44","4.25" +"Dermatology Reports","2036-7392","2036-7406","DERMATOLOGY","('ESCI',)","315","2.3","Q2","0.44","96.83" +"European Journal of Training and Development","2046-9012","2046-9020","MANAGEMENT","('ESCI',)","1,182","2.3","Q3","0.44","7.36" +"Social Marketing Quarterly","1524-5004","1539-4093","BUSINESS","('ESCI',)","637","2.3","Q3","0.44","19.30" +"3D Printing and Additive Manufacturing","2329-7662","2329-7670","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,025","2.3","('Q3', 'Q3')","0.43","7.84" +"IET Optoelectronics","1751-8768","1751-8776","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","637","2.3","('Q2', 'Q2', 'Q3')","0.43","75.56" +"Journal of Global Mobility-The Home of Expatriate Management Research","2049-8799","2049-8802","MANAGEMENT","('ESCI',)","461","2.3","Q3","0.43","15.29" +"Journal of Mountain Science","1672-6316","1993-0321","ENVIRONMENTAL SCIENCES","('SCIE',)","5,097","2.3","Q3","0.43","6.66" +"Energy Sources Part A-Recovery Utilization and Environmental Effects","1556-7036","1556-7230","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","10,232","2.3","('Q3', 'Q3')","0.42","0.76" +"Foresight","1463-6689","1465-9832","REGIONAL & URBAN PLANNING","('ESCI',)","1,041","2.3","Q3","0.42","1.42" +"International Journal of Immunogenetics","1744-3121","1744-313X","('GENETICS & HEREDITY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","733","2.3","('Q3', 'Q3')","0.42","7.95" +"JOURNAL OF PHYSICS-CONDENSED MATTER","0953-8984","1361-648X","PHYSICS, CONDENSED MATTER","('SCIE',)","47,383","2.3","Q3","0.42","15.11" +"Evolutionary Intelligence","1864-5909","1864-5917","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","1,680","2.3","Q3","0.41","3.27" +"Journal of Nutrition and Metabolism","2090-0724","2090-0732","NUTRITION & DIETETICS","('ESCI',)","1,807","2.3","Q3","0.41","98.53" +"SEPARATION SCIENCE AND TECHNOLOGY","0149-6395","1520-5754","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","8,867","2.3","('Q3', 'Q3')","0.41","2.06" +"Chemistry Africa-A Journal of the Tunisian Chemical Society","2522-5758","2522-5766","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","1,374","2.3","Q3","0.40","1.94" +"Ecological Restoration","1543-4060","1543-4079","ECOLOGY","('SCIE',)","533","2.3","Q2","0.40","19.15" +"Brain Circulation","2394-8108","2455-4626","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('ESCI', 'ESCI')","655","2.3","('Q3', 'Q3')","0.39","15.87" +"FIBER AND INTEGRATED OPTICS","0146-8030","1096-4681","OPTICS","('SCIE',)","250","2.3","Q2","0.39","3.23" +"Journal of Coatings Technology and Research","1547-0091","1935-3804","('CHEMISTRY, APPLIED', 'MATERIALS SCIENCE, COATINGS & FILMS')","('SCIE', 'SCIE')","3,343","2.3","('Q2', 'Q3')","0.39","9.43" +"JOURNAL OF REINFORCED PLASTICS AND COMPOSITES","0731-6844","1530-7964","('MATERIALS SCIENCE, COMPOSITES', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","5,767","2.3","('Q3', 'Q3')","0.39","6.36" +"JOURNAL OF COMPOSITE MATERIALS","0021-9983","1530-793X","MATERIALS SCIENCE, COMPOSITES","('SCIE',)","13,092","2.3","Q3","0.38","8.27" +"Advanced Optical Technologies","2192-8576","2192-8584","OPTICS","('ESCI',)","604","2.3","Q2","0.37","45.83" +"APPLIED COMPOSITE MATERIALS","0929-189X","1573-4897","MATERIALS SCIENCE, COMPOSITES","('SCIE',)","2,288","2.3","Q3","0.37","17.12" +"BLOOD PRESSURE","0803-7051","1651-1999","PERIPHERAL VASCULAR DISEASE","('SCIE',)","1,213","2.3","Q2","0.37","74.49" +"Breathe","1810-6838","2073-4735","RESPIRATORY SYSTEM","('ESCI',)","1,304","2.3","Q2","0.37","99.39" +"Expert Review of Hematology","1747-4086","1747-4094","HEMATOLOGY","('SCIE',)","2,441","2.3","Q2","0.37","17.85" +"Surfaces","","2571-9637","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","411","2.3","('Q3', 'Q3')","0.37","100.00" +"Weather","0043-1656","1477-8696","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","1,411","2.3","Q3","0.37","27.48" +"ACTA HISTOCHEMICA","0065-1281","1618-0372","CELL BIOLOGY","('SCIE',)","2,985","2.3","Q4","0.36","14.80" +"Advances in Human-Computer Interaction","1687-5893","1687-5907","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","455","2.3","Q3","0.36","98.00" +"BIOCHEMISTRY-MOSCOW","0006-2979","1608-3040","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","5,102","2.3","Q3","0.36","14.55" +"Blood Research","2287-979X","2288-0011","HEMATOLOGY","('ESCI',)","753","2.3","Q2","0.36","94.07" +"CATALYSIS LETTERS","1011-372X","1572-879X","CHEMISTRY, PHYSICAL","('SCIE',)","13,003","2.3","Q3","0.36","5.23" +"Journal of Chinese Human Resources Management","2040-8005","2040-8013","MANAGEMENT","('ESCI',)","208","2.3","Q3","0.36","12.00" +"Nutrition and Metabolic Insights","1178-6388","1178-6388","NUTRITION & DIETETICS","('ESCI',)","425","2.3","Q3","0.35","95.83" +"International Journal of Chemical Engineering","1687-806X","1687-8078","ENGINEERING, CHEMICAL","('SCIE',)","1,448","2.3","Q3","0.34","99.51" +"Current Fungal Infection Reports","1936-3761","1936-377X","INFECTIOUS DISEASES","('ESCI',)","523","2.3","Q3","0.33","13.04" +"Sustainable Environment","2765-8511","2765-8511","ENVIRONMENTAL SCIENCES","('ESCI',)","150","2.3","Q3","0.33","97.73" +"Biomedical Engineering and Computational Biology","1179-5972","1179-5972","ENGINEERING, BIOMEDICAL","('ESCI',)","77","2.3","Q3","0.32","90.91" +"BULLETIN OF THE KOREAN CHEMICAL SOCIETY","0253-2964","1229-5949","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","5,144","2.3","Q3","0.32","3.04" +"PARTICULATE SCIENCE AND TECHNOLOGY","0272-6351","1548-0046","ENGINEERING, CHEMICAL","('SCIE',)","2,303","2.3","Q3","0.32","1.60" +"Biomaterials and Biomechanics in Bioengineering","2465-9835","2465-9959","ENGINEERING, BIOMEDICAL","('ESCI',)","24","2.3","Q3","0.31","0.00" +"ISRAEL JOURNAL OF CHEMISTRY","0021-2148","1869-5868","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","3,334","2.3","Q3","0.31","45.13" +"IEEE Nanotechnology Magazine","1932-4510","1942-7808","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","320","2.3","Q3","0.25","6.76" +"International Journal of Electrochemistry","2090-3529","2090-3537","ELECTROCHEMISTRY","('ESCI',)","383","2.3","Q3","0.24","100.00" +"Prostate Cancer","2090-3111","2090-312X","ONCOLOGY","('ESCI',)","281","2.3","Q3","0.24","100.00" +"Psychology of Religion and Spirituality","1941-1022","1943-1562","('PSYCHOLOGY, MULTIDISCIPLINARY', 'RELIGION')","('SSCI', 'AHCI')","1,580","2.2","('Q2', 'N/A')","3.61","1.97" +"JOURNAL OF RELIGION & HEALTH","0022-4197","1573-6571","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'RELIGION')","('SSCI', 'AHCI')","4,808","2.2","('Q2', 'N/A')","2.93","22.34" +"CALIFORNIA LAW REVIEW","0008-1221","1942-6542","LAW","('SSCI',)","2,475","2.2","Q1","2.87","0.00" +"Review of Asset Pricing Studies","2045-9920","2045-9939","BUSINESS, FINANCE","('ESCI',)","924","2.2","Q2","2.54","19.72" +"MUSICAE SCIENTIAE","1029-8649","2045-4147","('MUSIC', 'PSYCHOLOGY, EXPERIMENTAL')","('AHCI', 'SSCI')","1,088","2.2","('N/A', 'Q2')","2.23","27.27" +"Language Testing","0265-5322","1477-0946","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","2,140","2.2","('N/A', 'Q1')","2.07","23.71" +"Constructivist Foundations","1782-348X","","PHILOSOPHY","('AHCI',)","307","2.2","","1.88","0.00" +"FISCAL STUDIES","0143-5671","1475-5890","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","1,159","2.2","('Q2', 'Q2')","1.85","55.41" +"EXCEPTIONAL CHILDREN","0014-4029","2163-5560","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","2,796","2.2","('Q1', 'Q1')","1.72","5.63" +"International Theory","1752-9719","1752-9727","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","941","2.2","('Q1', 'Q2')","1.68","44.12" +"METAPHOR AND SYMBOL","1092-6488","1532-7868","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","1,075","2.2","('N/A', 'Q1')","1.64","30.51" +"JASSS-THE JOURNAL OF ARTIFICIAL SOCIETIES AND SOCIAL SIMULATION","1460-7425","1460-7425","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","1,603","2.2","Q1","1.63","100.00" +"LEGAL AND CRIMINOLOGICAL PSYCHOLOGY","1355-3259","2044-8333","('CRIMINOLOGY & PENOLOGY', 'LAW', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","830","2.2","('Q1', 'Q1', 'Q2')","1.59","47.83" +"PNAS Nexus","","2752-6542","('MULTIDISCIPLINARY SCIENCES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","1,208","2.2","('Q2', 'Q1')","1.54","82.76" +"Chinese Sociological Review","2162-0555","2162-0563","SOCIOLOGY","('SSCI',)","818","2.2","Q2","1.51","10.34" +"INTEGRATIVE AND COMPARATIVE BIOLOGY","1540-7063","1557-7023","ZOOLOGY","('SCIE',)","6,709","2.2","Q1","1.51","20.23" +"Applied Numerical Mathematics","0168-9274","1873-5460","MATHEMATICS, APPLIED","('SCIE',)","6,013","2.2","Q1","1.45","12.36" +"Journal of European Integration","0703-6337","1477-2280","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,596","2.2","('Q1', 'Q2')","1.45","56.32" +"TEXAS LAW REVIEW","0040-4411","1942-857X","LAW","('SSCI',)","1,491","2.2","Q1","1.41","0.00" +"JOURNAL OF RESEARCH IN CRIME AND DELINQUENCY","0022-4278","1552-731X","CRIMINOLOGY & PENOLOGY","('SSCI',)","2,415","2.2","Q1","1.35","12.82" +"Globalisation Societies and Education","1476-7724","1476-7732","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,377","2.2","Q1","1.33","29.51" +"JOURNAL OF CONFLICT RESOLUTION","0022-0027","1552-8766","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","6,728","2.2","('Q1', 'Q2')","1.33","24.40" +"PREVENTIVE VETERINARY MEDICINE","0167-5877","1873-1716","VETERINARY SCIENCES","('SCIE',)","8,854","2.2","Q1","1.30","41.29" +"INTERNATIONAL JOURNAL OF LEGAL MEDICINE","0937-9827","1437-1596","MEDICINE, LEGAL","('SCIE',)","6,030","2.2","Q1","1.26","43.84" +"RESEARCH IN SCIENCE EDUCATION","0157-244X","1573-1898","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,773","2.2","Q1","1.26","29.32" +"SECURITY STUDIES","0963-6412","1556-1852","INTERNATIONAL RELATIONS","('SSCI',)","1,522","2.2","Q1","1.26","24.72" +"JOURNAL OF LAW & ECONOMICS","0022-2186","1537-5285","('ECONOMICS', 'LAW')","('SSCI', 'SSCI')","4,982","2.2","('Q2', 'Q1')","1.25","0.00" +"Language Learning Journal","0957-1736","1753-2167","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,044","2.2","Q1","1.25","26.14" +"LANGUAGE SPEECH AND HEARING SERVICES IN SCHOOLS","0161-1461","1558-9129","('AUDIOLOGY & SPEECH', 'LINGUISTICS', 'REHABILITATION')","('SCIE', 'SSCI', 'SSCI')","2,565","2.2","('Q1', 'Q1', 'Q1')","1.24","10.55" +"MATHEMATICS OF COMPUTATION","0025-5718","1088-6842","MATHEMATICS, APPLIED","('SCIE',)","9,953","2.2","Q1","1.22","68.92" +"Current Research in Insect Science","","2666-5158","ENTOMOLOGY","('ESCI',)","106","2.2","Q1","1.19","100.00" +"JOURNAL OF SPEECH LANGUAGE AND HEARING RESEARCH","1092-4388","1558-9102","('AUDIOLOGY & SPEECH', 'LINGUISTICS', 'REHABILITATION')","('SCIE', 'SSCI', 'SCIE, SSCI')","11,273","2.2","('Q1', 'Q1', 'Q1')","1.19","12.47" +"RESEARCH IN VETERINARY SCIENCE","0034-5288","1532-2661","VETERINARY SCIENCES","('SCIE',)","8,314","2.2","Q1","1.19","20.31" +"World Trade Review","1474-7456","1475-3138","('ECONOMICS', 'INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI', 'SSCI')","665","2.2","('Q2', 'Q1', 'Q1')","1.19","35.59" +"INTERNATIONAL JOURNAL OF SCIENCE EDUCATION","0950-0693","1464-5289","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","6,747","2.2","Q1","1.18","27.16" +"SIAM JOURNAL ON MATHEMATICAL ANALYSIS","0036-1410","1095-7154","MATHEMATICS, APPLIED","('SCIE',)","8,755","2.2","Q1","1.17","0.47" +"HUMAN NATURE-AN INTERDISCIPLINARY BIOSOCIAL PERSPECTIVE","1045-6767","1936-4776","('ANTHROPOLOGY', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI')","1,845","2.2","('Q1', 'Q2')","1.16","36.14" +"DYSPHAGIA","0179-051X","1432-0460","OTORHINOLARYNGOLOGY","('SCIE',)","5,358","2.2","Q1","1.15","26.12" +"Forensic Science International","0379-0738","1872-6283","MEDICINE, LEGAL","('SCIE',)","14,932","2.2","Q1","1.15","26.62" +"Journal of Refugee Studies","0951-6328","1471-6925","('DEMOGRAPHY', 'ETHNIC STUDIES')","('SSCI', 'SSCI')","2,832","2.2","('Q1', 'Q1')","1.15","28.68" +"ARCHIVES OF ORAL BIOLOGY","0003-9969","1879-1506","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","9,594","2.2","Q2","1.14","16.27" +"Journal of LGBT Youth","1936-1653","1936-1661","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","894","2.2","Q1","1.14","8.79" +"LEISURE SCIENCES","0149-0400","1521-0588","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'SOCIOLOGY')","('SSCI', 'SSCI')","3,440","2.2","('Q2', 'Q2')","1.14","10.79" +"Musculoskeletal Science and Practice","2468-7812","2468-7812","REHABILITATION","('SCIE',)","1,930","2.2","Q1","1.14","26.13" +"NURSING FORUM","0029-6473","1744-6198","NURSING","('ESCI',)","2,198","2.2","Q1","1.14","77.47" +"TechTrends","8756-3894","1559-7075","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","2,235","2.2","Q1","1.14","6.36" +"AMERICAN JOURNAL OF PHYSICAL MEDICINE & REHABILITATION","0894-9115","1537-7385","('REHABILITATION', 'SPORT SCIENCES')","('SCIE', 'SCIE')","7,152","2.2","('Q1', 'Q2')","1.13","5.13" +"NURSING RESEARCH","0029-6562","1538-9847","NURSING","('SCIE', 'SSCI')","4,849","2.2","Q1","1.13","5.21" +"Contemporary Italian Politics","2324-8823","2324-8831","POLITICAL SCIENCE","('ESCI',)","237","2.2","Q2","1.12","17.58" +"Innovative Higher Education","0742-5627","1573-1758","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,210","2.2","Q1","1.12","19.61" +"Migration Studies","2049-5838","2049-5846","DEMOGRAPHY","('SSCI',)","886","2.2","Q1","1.10","33.33" +"Nursing Research and Practice","2090-1429","2090-1437","NURSING","('ESCI',)","732","2.2","Q1","1.10","100.00" +"Research in Autism Spectrum Disorders","1750-9467","1878-0237","('EDUCATION, SPECIAL', 'PSYCHIATRY', 'PSYCHOLOGY, DEVELOPMENTAL', 'REHABILITATION')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","4,967","2.2","('Q1', 'Q3', 'Q2', 'Q1')","1.10","24.59" +"INTERNATIONAL JOURNAL OF ORAL AND MAXILLOFACIAL SURGERY","0901-5027","1399-0020","('DENTISTRY, ORAL SURGERY & MEDICINE', 'SURGERY')","('SCIE', 'SCIE')","9,812","2.2","('Q2', 'Q2')","1.09","13.52" +"JDR Clinical & Translational Research","2380-0844","2380-0852","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","816","2.2","Q2","1.08","28.70" +"Elements","1811-5209","1811-5217","('GEOCHEMISTRY & GEOPHYSICS', 'MINERALOGY')","('SCIE', 'SCIE')","4,134","2.2","('Q2', 'Q2')","1.07","2.83" +"APPLIED ANIMAL BEHAVIOUR SCIENCE","0168-1591","1872-9045","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'BEHAVIORAL SCIENCES', 'VETERINARY SCIENCES')","('SCIE', 'SCIE', 'SCIE')","12,263","2.2","('Q1', 'Q3', 'Q1')","1.06","38.39" +"TIME & SOCIETY","0961-463X","1461-7463","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","1,152","2.2","Q1","1.06","36.71" +"Italian Journal of Animal Science","1594-4077","1828-051X","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","3,988","2.2","('Q1', 'Q1')","1.05","97.58" +"Nursing Inquiry","1320-7881","1440-1800","NURSING","('SCIE', 'SSCI')","1,631","2.2","Q1","1.05","38.42" +"Seminars in Orthodontics","1073-8746","1558-4631","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,038","2.2","Q2","1.05","8.00" +"FEMINISM & PSYCHOLOGY","0959-3535","1461-7161","('PSYCHOLOGY, MULTIDISCIPLINARY', 'WOMENS STUDIES')","('SSCI', 'SSCI')","1,511","2.2","('Q2', 'Q1')","1.04","44.05" +"Global Qualitative Nursing Research","2333-3936","2333-3936","NURSING","('ESCI',)","936","2.2","Q1","1.04","93.86" +"JOURNAL OF ECONOMIC ENTOMOLOGY","0022-0493","1938-291X","ENTOMOLOGY","('SCIE',)","16,211","2.2","Q1","1.04","21.74" +"Journal of Optometry","1888-4296","1989-1342","OPHTHALMOLOGY","('ESCI',)","792","2.2","Q2","1.04","99.26" +"BIOCONTROL","1386-6141","1573-8248","ENTOMOLOGY","('SCIE',)","3,231","2.2","Q1","1.03","25.63" +"Global Policy","1758-5880","1758-5899","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","2,104","2.2","('Q1', 'Q2')","1.03","46.70" +"Journal of Applied Oral Science","1678-7757","1678-7765","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","3,376","2.2","Q2","1.03","94.87" +"BRITISH JOURNAL OF SOCIOLOGY OF EDUCATION","0142-5692","1465-3346","('EDUCATION & EDUCATIONAL RESEARCH', 'SOCIOLOGY')","('SSCI', 'SSCI')","2,988","2.2","('Q1', 'Q2')","1.02","45.21" +"European Journal of Paediatric Dentistry","1591-996X","2035-648X","('DENTISTRY, ORAL SURGERY & MEDICINE', 'PEDIATRICS')","('SCIE', 'SCIE')","1,479","2.2","('Q2', 'Q2')","1.02","0.00" +"JOURNAL OF ANIMAL PHYSIOLOGY AND ANIMAL NUTRITION","0931-2439","1439-0396","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","5,800","2.2","('Q1', 'Q1')","1.01","12.38" +"Public Performance & Management Review","1530-9576","1557-9271","PUBLIC ADMINISTRATION","('SSCI',)","1,729","2.2","Q2","1.01","10.00" +"Journal of Robotic Surgery","1863-2483","1863-2491","SURGERY","('SCIE',)","2,429","2.2","Q2","1.00","19.49" +"EXPERIMENTAL ANIMALS","1341-1357","1881-7122","('VETERINARY SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","1,577","2.2","('Q1', 'Q1')","0.99","97.74" +"Journal of Industrial Relations","0022-1856","1472-9296","INDUSTRIAL RELATIONS & LABOR","('SSCI',)","974","2.2","Q2","0.99","33.67" +"Journalism Practice","1751-2786","1751-2794","COMMUNICATION","('SSCI',)","3,070","2.2","Q2","0.99","21.78" +"Physical Therapy in Sport","1466-853X","","('REHABILITATION', 'SPORT SCIENCES')","('SCIE', 'SCIE')","3,058","2.2","('Q1', 'Q2')","0.97","23.29" +"APPLIED SPECTROSCOPY","0003-7028","1943-3530","('INSTRUMENTS & INSTRUMENTATION', 'SPECTROSCOPY')","('SCIE', 'SCIE')","8,901","2.2","('Q2', 'Q2')","0.96","12.99" +"JOURNAL OF FAMILY COMMUNICATION","1526-7431","1532-7698","COMMUNICATION","('ESCI',)","807","2.2","Q2","0.96","1.41" +"LASERS IN SURGERY AND MEDICINE","0196-8092","1096-9101","('DERMATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","5,656","2.2","('Q2', 'Q2')","0.96","18.84" +"Topics in Stroke Rehabilitation","1074-9357","1945-5119","REHABILITATION","('SCIE',)","2,755","2.2","Q1","0.96","10.29" +"ANIMAL REPRODUCTION SCIENCE","0378-4320","1873-2232","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'REPRODUCTIVE BIOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE', 'SCIE')","8,122","2.2","('Q1', 'Q3', 'Q1')","0.95","17.18" +"JOURNAL OF RECONSTRUCTIVE MICROSURGERY","0743-684X","1098-8947","SURGERY","('SCIE',)","3,266","2.2","Q2","0.94","1.81" +"JOURNAL OF SYSTEMATIC PALAEONTOLOGY","1477-2019","1478-0941","('EVOLUTIONARY BIOLOGY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","1,477","2.2","('Q3', 'Q1')","0.94","13.45" +"Policy Studies","0144-2872","1470-1006","PUBLIC ADMINISTRATION","('SSCI',)","1,258","2.2","Q2","0.94","28.92" +"Australian Journal of Environmental Education","0814-0626","2049-775X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","438","2.2","Q1","0.92","60.64" +"JOURNAL OF FISH DISEASES","0140-7775","1365-2761","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE', 'SCIE')","6,357","2.2","('Q2', 'Q1', 'Q1')","0.92","18.52" +"JOURNAL OF WOOD SCIENCE","1435-0211","1611-4663","('FORESTRY', 'MATERIALS SCIENCE, PAPER & WOOD')","('SCIE', 'SCIE')","3,382","2.2","('Q2', 'Q1')","0.92","99.44" +"PUBLIUS-THE JOURNAL OF FEDERALISM","0048-5950","1747-7107","POLITICAL SCIENCE","('SSCI',)","1,089","2.2","Q2","0.92","24.44" +"DERMATOLOGIC CLINICS","0733-8635","1558-0520","DERMATOLOGY","('SCIE',)","2,857","2.2","Q2","0.91","1.23" +"Eksploatacja i Niezawodnosc-Maintenance and Reliability","1507-2711","1507-2711","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","1,116","2.2","Q2","0.91","99.17" +"Games for Health Journal","2161-783X","2161-7856","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'REHABILITATION')","('SSCI', 'SSCI')","1,456","2.2","('Q2', 'Q1')","0.91","2.16" +"Journal of Periodontal and Implant Science","2093-2278","2093-2286","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","974","2.2","Q2","0.91","0.00" +"Sports","","2075-4663","SPORT SCIENCES","('ESCI',)","3,184","2.2","Q2","0.91","99.19" +"EARLY HUMAN DEVELOPMENT","0378-3782","1872-6232","('OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","6,654","2.2","('Q2', 'Q2')","0.90","26.17" +"INJURY-INTERNATIONAL JOURNAL OF THE CARE OF THE INJURED","0020-1383","1879-0267","('CRITICAL CARE MEDICINE', 'EMERGENCY MEDICINE', 'ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","20,306","2.2","('Q3', 'Q2', 'Q2', 'Q2')","0.90","14.36" +"American Journal of Physiology-Regulatory, Integrative and Comparative Physiology","0363-6119","1522-1490","PHYSIOLOGY","('SCIE',)","15,889","2.2","Q3","0.89","5.44" +"Chemistry Teacher International","","2569-3263","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","226","2.2","Q2","0.89","96.92" +"Egyptian Journal of Aquatic Research","1687-4285","2090-3278","MARINE & FRESHWATER BIOLOGY","('ESCI',)","1,753","2.2","Q1","0.89","96.11" +"Journal of Psychedelic Studies","","2559-9283","('PHARMACOLOGY & PHARMACY', 'PSYCHIATRY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","314","2.2","('Q3', 'Q3', 'Q2')","0.89","98.48" +"LARYNGOSCOPE","0023-852X","1531-4995","('MEDICINE, RESEARCH & EXPERIMENTAL', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE')","28,078","2.2","('Q3', 'Q1')","0.89","16.31" +"SOCIOLOGICAL INQUIRY","0038-0245","1475-682X","SOCIOLOGY","('SSCI',)","1,822","2.2","Q2","0.89","17.69" +"Environmental Geotechnics","2051-803X","2051-803X","ENGINEERING, GEOLOGICAL","('SCIE',)","843","2.2","Q3","0.88","3.13" +"FISHERIES RESEARCH","0165-7836","1872-6763","FISHERIES","('SCIE',)","10,959","2.2","Q2","0.88","36.46" +"JOURNAL OF AGRICULTURAL & ENVIRONMENTAL ETHICS","1187-7863","1573-322X","('AGRICULTURE, MULTIDISCIPLINARY', 'ENVIRONMENTAL SCIENCES', 'ETHICS', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SCIE', 'SCIE', 'SSCI', 'AHCI, SCIE')","1,705","2.2","('Q2', 'Q3', 'Q1', 'Q1')","0.88","64.86" +"JOURNAL OF APPLIED DEVELOPMENTAL PSYCHOLOGY","0193-3973","1873-7900","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","3,946","2.2","Q2","0.88","20.40" +"SOCIOLOGICAL PERSPECTIVES","0731-1214","1533-8673","SOCIOLOGY","('SSCI',)","2,076","2.2","Q2","0.88","24.81" +"COMMUNICATIONS IN MATHEMATICAL PHYSICS","0010-3616","1432-0916","PHYSICS, MATHEMATICAL","('SCIE',)","23,899","2.2","Q1","0.87","35.76" +"ENVIRONMENTAL VALUES","0963-2719","1752-7015","('ENVIRONMENTAL STUDIES', 'ETHICS')","('SSCI', 'SSCI')","1,214","2.2","('Q3', 'Q1')","0.87","4.30" +"GAIT & POSTURE","0966-6362","1879-2219","('NEUROSCIENCES', 'ORTHOPEDICS', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","17,403","2.2","('Q3', 'Q2', 'Q2')","0.87","22.64" +"MATHEMATICAL PROGRAMMING","0025-5610","1436-4646","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","12,372","2.2","('Q2', 'Q1', 'Q2')","0.87","33.04" +"PM&R","1934-1482","1934-1563","('REHABILITATION', 'SPORT SCIENCES')","('SCIE', 'SCIE')","5,074","2.2","('Q1', 'Q2')","0.87","13.03" +"PS-POLITICAL SCIENCE & POLITICS","1049-0965","1537-5935","POLITICAL SCIENCE","('SSCI',)","3,137","2.2","Q2","0.87","38.16" +"International Journal of Optimization and Control-Theories & Applications-IJOCTA","2146-0957","2146-5703","MATHEMATICS, APPLIED","('ESCI',)","295","2.2","Q1","0.86","98.61" +"Journal of Global Economic Analysis","2377-2999","2377-2999","ECONOMICS","('ESCI',)","272","2.2","Q2","0.86","10.00" +"PHYSICAL REVIEW E","2470-0045","2470-0053","('PHYSICS, FLUIDS & PLASMAS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","97,417","2.2","('Q2', 'Q1')","0.86","6.46" +"PUBLIC MONEY & MANAGEMENT","0954-0962","1467-9302","PUBLIC ADMINISTRATION","('SSCI',)","2,116","2.2","Q2","0.86","37.31" +"STRENGTH AND CONDITIONING JOURNAL","1524-1602","1533-4295","SPORT SCIENCES","('SCIE',)","2,485","2.2","Q2","0.86","1.46" +"Symmetry-Basel","","2073-8994","MULTIDISCIPLINARY SCIENCES","('SCIE',)","25,421","2.2","Q2","0.86","99.58" +"ALDRICHIMICA ACTA","0002-5100","","CHEMISTRY, ORGANIC","('SCIE',)","327","2.2","Q2","0.85","0.00" +"ARCHIVES OF PSYCHIATRIC NURSING","0883-9417","1532-8228","('NURSING', 'PSYCHIATRY')","('SCIE, SSCI', 'SCIE, SSCI')","2,785","2.2","('Q1', 'Q3')","0.85","7.42" +"Contraception and Reproductive Medicine","","2055-7426","OBSTETRICS & GYNECOLOGY","('ESCI',)","524","2.2","Q2","0.85","100.00" +"Evolutionary Human Sciences","","2513-843X","('ANTHROPOLOGY', 'EVOLUTIONARY BIOLOGY')","('ESCI', 'ESCI')","408","2.2","('Q1', 'Q3')","0.85","100.00" +"JOURNAL OF GASTROINTESTINAL SURGERY","1091-255X","1873-4626","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","11,712","2.2","('Q3', 'Q2')","0.85","12.16" +"JOURNAL OF GENDER STUDIES","0958-9236","1465-3869","('SOCIAL ISSUES', 'SOCIAL SCIENCES, INTERDISCIPLINARY', 'WOMENS STUDIES')","('SSCI', 'SSCI', 'SSCI')","1,721","2.2","('Q2', 'Q1', 'Q1')","0.85","25.66" +"Nordic Journal of Digital Literacy","0809-6724","1891-943X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","433","2.2","Q1","0.85","71.11" +"Wood Material Science & Engineering","1748-0272","1748-0280","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","1,416","2.2","Q1","0.85","16.95" +"Health Information and Libraries Journal","1471-1834","1471-1842","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","1,941","2.2","Q2","0.84","20.51" +"JOURNAL OF EXPERIMENTAL PSYCHOLOGY-LEARNING MEMORY AND COGNITION","0278-7393","1939-1285","('PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI')","11,885","2.2","('Q2', 'Q2')","0.84","6.13" +"SPACE AND POLITY","1356-2576","1470-1235","GEOGRAPHY","('ESCI',)","630","2.2","Q2","0.84","50.00" +"AQUACULTURE INTERNATIONAL","0967-6120","1573-143X","FISHERIES","('SCIE',)","4,846","2.2","Q2","0.83","11.23" +"HOLZFORSCHUNG","0018-3830","1437-434X","('FORESTRY', 'MATERIALS SCIENCE, PAPER & WOOD')","('SCIE', 'SCIE')","4,695","2.2","('Q2', 'Q1')","0.83","18.84" +"BMC Nephrology","","1471-2369","UROLOGY & NEPHROLOGY","('SCIE',)","9,313","2.2","Q2","0.82","99.75" +"Epidemiology and Health","2092-7193","2092-7193","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","2,094","2.2","Q2","0.82","99.67" +"THEORETICAL AND COMPUTATIONAL FLUID DYNAMICS","0935-4964","1432-2250","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE')","1,730","2.2","('Q2', 'Q2')","0.82","18.18" +"BMC MUSCULOSKELETAL DISORDERS","","1471-2474","('ORTHOPEDICS', 'RHEUMATOLOGY')","('SCIE', 'SCIE')","20,694","2.2","('Q2', 'Q3')","0.81","99.81" +"Educational and Developmental Psychologist","2059-0776","2059-0784","PSYCHOLOGY, DEVELOPMENTAL","('ESCI',)","358","2.2","Q2","0.81","5.33" +"JOURNAL OF AGING AND HEALTH","0898-2643","1552-6887","('GERONTOLOGY', 'HEALTH POLICY & SERVICES')","('SSCI', 'SSCI')","4,222","2.2","('Q2', 'Q2')","0.81","13.91" +"JOURNAL OF VEGETATION SCIENCE","1100-9233","1654-1103","('ECOLOGY', 'FORESTRY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","8,464","2.2","('Q2', 'Q2', 'Q2')","0.81","30.21" +"Physiological Reports","2051-817X","2051-817X","PHYSIOLOGY","('ESCI',)","7,208","2.2","Q3","0.81","70.77" +"SIAM JOURNAL ON CONTROL AND OPTIMIZATION","0363-0129","1095-7138","('AUTOMATION & CONTROL SYSTEMS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","10,043","2.2","('Q2', 'Q1')","0.81","0.41" +"Aquaculture Environment Interactions","1869-215X","1869-7534","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","1,231","2.2","('Q2', 'Q1')","0.80","100.00" +"Complementary Therapies in Clinical Practice","1744-3881","1873-6947","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","3,415","2.2","Q2","0.80","15.63" +"OCEAN DYNAMICS","1616-7341","1616-7228","OCEANOGRAPHY","('SCIE',)","3,158","2.2","Q2","0.80","26.62" +"EVALUATION & THE HEALTH PROFESSIONS","0163-2787","1552-3918","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","1,549","2.2","('Q2', 'Q2')","0.79","18.80" +"HYDROBIOLOGIA","0018-8158","1573-5117","MARINE & FRESHWATER BIOLOGY","('SCIE',)","24,524","2.2","Q1","0.79","27.22" +"Integrative Organismal Biology","","2517-4843","('BIOLOGY', 'EVOLUTIONARY BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","462","2.2","('Q2', 'Q3', 'Q1')","0.79","94.74" +"MARINE ECOLOGY PROGRESS SERIES","0171-8630","1616-1599","('ECOLOGY', 'MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE')","34,544","2.2","('Q2', 'Q1', 'Q2')","0.79","33.71" +"CURRENT OPINION IN PEDIATRICS","1040-8703","1531-698X","PEDIATRICS","('SCIE',)","4,355","2.2","Q2","0.78","5.51" +"Diagnosis","2194-8011","2194-802X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,053","2.2","Q2","0.78","11.96" +"CANADIAN JOURNAL OF SURGERY","0008-428X","1488-2310","SURGERY","('SCIE',)","3,001","2.2","Q2","0.77","100.00" +"CMES-COMPUTER MODELING IN ENGINEERING & SCIENCES","1526-1492","1526-1506","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","3,364","2.2","('Q2', 'Q2')","0.77","99.10" +"Economics & Human Biology","1570-677X","1873-6130","('ECONOMICS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SCIE, SSCI')","2,237","2.2","('Q2', 'Q2')","0.77","32.67" +"JOURNAL OF APPLIED GERONTOLOGY","0733-4648","1552-4523","GERONTOLOGY","('SSCI',)","3,467","2.2","Q2","0.76","15.08" +"Journal of Industrial Textiles","1528-0837","1530-8057","MATERIALS SCIENCE, TEXTILES","('SCIE',)","3,575","2.2","Q1","0.76","31.98" +"NEUROBIOLOGY OF LEARNING AND MEMORY","1074-7427","1095-9564","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES', 'PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE', 'SSCI')","6,390","2.2","('Q3', 'Q3', 'Q2', 'Q2')","0.76","29.55" +"SINGAPORE JOURNAL OF TROPICAL GEOGRAPHY","0129-7619","1467-9493","GEOGRAPHY","('SSCI',)","822","2.2","Q2","0.76","20.97" +"BioImpacts","2228-5652","2228-5660","PHARMACOLOGY & PHARMACY","('SCIE',)","1,209","2.2","Q3","0.75","91.28" +"BLOOD PURIFICATION","0253-5068","1421-9735","('HEMATOLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","3,024","2.2","('Q3', 'Q2')","0.75","22.12" +"Endoscopy International Open","2364-3722","2196-9736","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('ESCI', 'ESCI')","3,800","2.2","('Q3', 'Q2')","0.75","100.00" +"Tomography","2379-1381","2379-139X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,293","2.2","Q2","0.75","100.00" +"CHRONOBIOLOGY INTERNATIONAL","0742-0528","1525-6073","('BIOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","7,247","2.2","('Q2', 'Q3')","0.74","10.82" +"Human Service Organizations Management Leadership & Governance","2330-3131","2330-314X","('PUBLIC ADMINISTRATION', 'SOCIAL WORK')","('SSCI', 'SSCI')","686","2.2","('Q2', 'Q1')","0.74","11.43" +"Minerals","","2075-163X","('GEOCHEMISTRY & GEOPHYSICS', 'MINERALOGY', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE', 'SCIE')","15,993","2.2","('Q2', 'Q2', 'Q2')","0.74","99.65" +"International Journal of Sexual Health","1931-7611","1931-762X","('PSYCHOLOGY, CLINICAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","833","2.2","('Q2', 'Q2', 'Q1')","0.73","14.71" +"JOURNAL OF APPLIED SOCIAL PSYCHOLOGY","0021-9029","1559-1816","PSYCHOLOGY, SOCIAL","('SSCI',)","9,396","2.2","Q3","0.73","37.76" +"JOURNAL OF PUBLIC HEALTH MANAGEMENT AND PRACTICE","1078-4659","1550-5022","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","2,863","2.2","Q2","0.73","23.76" +"OPTICS COMMUNICATIONS","0030-4018","1873-0310","OPTICS","('SCIE',)","25,355","2.2","Q2","0.73","5.79" +"BMC Neurology","","1471-2377","CLINICAL NEUROLOGY","('SCIE',)","9,658","2.2","Q3","0.72","99.93" +"Chinese Journal of Integrative Medicine","1672-0415","1993-0402","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","3,393","2.2","Q2","0.72","0.53" +"MEMORY & COGNITION","0090-502X","1532-5946","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","8,745","2.2","Q2","0.72","35.97" +"APPLIED PSYCHOPHYSIOLOGY AND BIOFEEDBACK","1090-0586","1573-3270","PSYCHOLOGY, CLINICAL","('SSCI',)","1,548","2.2","Q2","0.71","27.72" +"Aquatic Invasions","1798-6540","1818-5487","('ECOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","1,725","2.2","('Q2', 'Q1')","0.71","100.00" +"Clinical and Experimental Nephrology","1342-1751","1437-7799","UROLOGY & NEPHROLOGY","('SCIE',)","3,384","2.2","Q2","0.71","27.63" +"Health Informatics Journal","1460-4582","1741-2811","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE')","2,276","2.2","('Q2', 'Q3')","0.71","94.25" +"Journal of Academic Ethics","1570-1727","1572-8544","ETHICS","('ESCI',)","596","2.2","Q1","0.71","26.26" +"POST-COMMUNIST ECONOMIES","1463-1377","1465-3958","ECONOMICS","('SSCI',)","813","2.2","Q2","0.71","15.45" +"Proceedings of the ACM on Programming Languages-PACMPL","","2475-1421","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","3,567","2.2","Q2","0.71","99.70" +"American Economic Journal-Microeconomics","1945-7669","1945-7685","ECONOMICS","('SSCI',)","1,627","2.2","Q2","0.70","0.00" +"Journal of Herbal Medicine","2210-8033","2210-8041","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","1,460","2.2","Q2","0.70","5.07" +"JOURNAL OF MATHEMATICAL PSYCHOLOGY","0022-2496","1096-0880","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PSYCHOLOGY, MATHEMATICAL', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SCIE', 'SSCI', 'SSCI')","3,597","2.2","('Q2', 'Q2', 'Q2')","0.70","27.20" +"World Development Perspectives","2452-2929","2452-2929","('DEVELOPMENT STUDIES', 'ECONOMICS')","('ESCI', 'ESCI')","681","2.2","('Q2', 'Q2')","0.70","28.82" +"ANNALS OF APPLIED BIOLOGY","0003-4746","1744-7348","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","5,666","2.2","Q2","0.69","21.03" +"JOURNAL DE MYCOLOGIE MEDICALE","1156-5233","1773-0449","MYCOLOGY","('SCIE',)","1,575","2.2","Q3","0.69","15.94" +"Journal of International Trade & Economic Development","0963-8199","1469-9559","ECONOMICS","('SSCI',)","1,423","2.2","Q2","0.69","2.65" +"LABOUR ECONOMICS","0927-5371","1879-1034","ECONOMICS","('SSCI',)","4,303","2.2","Q2","0.69","32.21" +"ORYX","0030-6053","1365-3008","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","4,004","2.2","('Q2', 'Q2')","0.69","99.38" +"Behavioral Sleep Medicine","1540-2002","1540-2010","('CLINICAL NEUROLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE')","2,346","2.2","('Q3', 'Q3')","0.68","7.50" +"JOURNAL OF ADOLESCENT RESEARCH","0743-5584","1552-6895","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","2,104","2.2","Q2","0.68","21.38" +"Journal of Business Finance & Accounting","0306-686X","1468-5957","BUSINESS, FINANCE","('SSCI',)","3,499","2.2","Q2","0.68","23.94" +"JOURNAL OF PSYCHOLOGY","0022-3980","1940-1019","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","4,448","2.2","Q2","0.68","12.62" +"Translation Studies","1478-1700","1751-2921","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","809","2.2","('N/A', 'Q1')","0.68","28.00" +"ACADEMIC PSYCHIATRY","1042-9670","1545-7230","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHIATRY')","('SSCI', 'SSCI')","2,573","2.2","('Q1', 'Q3')","0.67","14.95" +"Comparative Biochemistry and Physiology D-Genomics & Proteomics","1744-117X","1878-0407","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","1,770","2.2","('Q4', 'Q3')","0.67","6.69" +"DRUGS IN R&D","1174-5886","1179-6901","PHARMACOLOGY & PHARMACY","('SCIE',)","1,133","2.2","Q3","0.67","100.00" +"Health Psychology Report","2353-4184","2353-5571","PSYCHOLOGY, SOCIAL","('ESCI',)","306","2.2","Q3","0.67","98.75" +"JOURNAL OF PALLIATIVE MEDICINE","1096-6218","1557-7740","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","7,013","2.2","Q2","0.67","4.26" +"JOURNAL OF STATISTICAL MECHANICS-THEORY AND EXPERIMENT","1742-5468","1742-5468","('MECHANICS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","9,643","2.2","('Q2', 'Q1')","0.67","16.05" +"JOURNAL OF VIROLOGICAL METHODS","0166-0934","1879-0984","('BIOCHEMICAL RESEARCH METHODS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'VIROLOGY')","('SCIE', 'SCIE', 'SCIE')","7,977","2.2","('Q3', 'Q3', 'Q3')","0.67","24.53" +"LEARNED PUBLISHING","0953-1513","1741-4857","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","1,256","2.2","Q2","0.67","32.58" +"PSYCHOLOGICAL RESEARCH-PSYCHOLOGISCHE FORSCHUNG","0340-0727","1430-2772","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","4,555","2.2","Q2","0.67","49.08" +"Quantum Information Processing","1570-0755","1573-1332","('PHYSICS, MATHEMATICAL', 'PHYSICS, MULTIDISCIPLINARY', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","7,401","2.2","('Q1', 'Q2', 'Q3')","0.67","6.70" +"Radiology Research and Practice","2090-1941","2090-195X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","333","2.2","Q2","0.67","98.08" +"Theoretical and Experimental Plant Physiology","2197-0025","2197-0025","PLANT SCIENCES","('SCIE',)","617","2.2","Q2","0.67","10.28" +"Adicciones","0214-4840","2604-6334","SUBSTANCE ABUSE","('SCIE', 'SSCI')","743","2.2","Q3","0.66","0.95" +"European Journal of Finance","1351-847X","1466-4364","BUSINESS, FINANCE","('SSCI',)","2,280","2.2","Q2","0.66","27.41" +"Health Promotion and Chronic Disease Prevention in Canada-Research Policy and Practice","2368-738X","2368-738X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","889","2.2","Q2","0.66","88.74" +"IEEE TRANSACTIONS ON INFORMATION THEORY","0018-9448","1557-9654","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","33,442","2.2","('Q3', 'Q3')","0.66","17.02" +"INTERNATIONAL JOURNAL OF CLINICAL PRACTICE","1368-5031","1742-1241","MEDICINE, GENERAL & INTERNAL","('SCIE',)","8,392","2.2","Q2","0.66","82.77" +"Journal of Engineered Fibers and Fabrics","1558-9250","1558-9250","MATERIALS SCIENCE, TEXTILES","('SCIE',)","1,806","2.2","Q1","0.66","90.60" +"Journal of Mechanisms and Robotics-Transactions of the ASME","1942-4302","1942-4310","('ENGINEERING, MECHANICAL', 'ROBOTICS')","('SCIE', 'SCIE')","2,849","2.2","('Q2', 'Q3')","0.66","2.00" +"Accounting Horizons","0888-7993","1558-7975","BUSINESS, FINANCE","('SSCI',)","3,107","2.2","Q2","0.65","0.00" +"Acta Montanistica Slovaca","1335-1788","","('GEOSCIENCES, MULTIDISCIPLINARY', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE')","809","2.2","('Q2', 'Q2')","0.65","71.92" +"BRAIN AND COGNITION","0278-2626","1090-2147","('NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI')","6,288","2.2","('Q3', 'Q2')","0.65","13.57" +"EPISODES","0705-3797","","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","2,591","2.2","Q2","0.65","100.00" +"Journal of Cognitive Engineering and Decision Making","1555-3434","2169-5032","('ENGINEERING, INDUSTRIAL', 'ERGONOMICS', 'PSYCHOLOGY, APPLIED')","('ESCI', 'ESCI', 'ESCI')","585","2.2","('Q3', 'Q2', 'Q2')","0.65","23.08" +"JOURNAL OF PHARMACOKINETICS AND PHARMACODYNAMICS","1567-567X","1573-8744","PHARMACOLOGY & PHARMACY","('SCIE',)","1,728","2.2","Q3","0.65","38.89" +"METEORITICS & PLANETARY SCIENCE","1086-9379","1945-5100","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","6,841","2.2","Q2","0.65","35.98" +"SOCIETY & NATURAL RESOURCES","0894-1920","1521-0723","('DEVELOPMENT STUDIES', 'ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","4,397","2.2","('Q2', 'Q3', 'Q3', 'Q2')","0.65","21.48" +"Cancer Biomarkers","1574-0153","1875-8592","ONCOLOGY","('SCIE',)","3,081","2.2","Q3","0.64","6.10" +"Global Health Action","","1654-9880","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","4,820","2.2","Q2","0.64","96.89" +"International Journal of Dynamics and Control","2195-268X","2195-2698","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, MECHANICAL', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI', 'ESCI')","1,682","2.2","('Q2', 'Q2', 'Q1')","0.64","4.26" +"Advances in Radiation Oncology","","2452-1094","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('ESCI', 'ESCI')","2,224","2.2","('Q3', 'Q2')","0.63","81.54" +"JOURNAL OF TRIBOLOGY-TRANSACTIONS OF THE ASME","0742-4787","1528-8897","ENGINEERING, MECHANICAL","('SCIE',)","6,503","2.2","Q2","0.63","2.19" +"Nonprofit Policy Forum","2194-6035","2154-3348","PUBLIC ADMINISTRATION","('ESCI',)","301","2.2","Q2","0.63","98.31" +"Tobacco Induced Diseases","1617-9625","1617-9625","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SUBSTANCE ABUSE')","('SCIE, SSCI', 'SCIE, SSCI')","1,638","2.2","('Q2', 'Q3')","0.63","98.26" +"ANNALEN DER PHYSIK","0003-3804","1521-3889","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","7,917","2.2","Q2","0.62","18.25" +"Current Developmental Disorders Reports","","2196-2987","('NEUROSCIENCES', 'PSYCHOLOGY, DEVELOPMENTAL', 'REHABILITATION')","('ESCI', 'ESCI', 'ESCI')","678","2.2","('Q3', 'Q2', 'Q1')","0.62","18.84" +"Economics of Transportation","2212-0122","2212-0130","('ECONOMICS', 'TRANSPORTATION')","('SSCI', 'SSCI')","438","2.2","('Q2', 'Q3')","0.62","24.44" +"FIBERS AND POLYMERS","1229-9197","1875-0052","('MATERIALS SCIENCE, TEXTILES', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","8,242","2.2","('Q1', 'Q3')","0.62","2.02" +"Identity-An International Journal of Theory and Research","1528-3488","1532-706X","PSYCHOLOGY, SOCIAL","('ESCI',)","810","2.2","Q3","0.62","23.08" +"IEEE JOURNAL OF QUANTUM ELECTRONICS","0018-9197","1558-1713","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'PHYSICS, APPLIED', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,004","2.2","('Q3', 'Q2', 'Q3', 'Q3')","0.62","11.62" +"MEMORY","0965-8211","1464-0686","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","4,617","2.2","Q2","0.62","18.81" +"Actuators","","2076-0825","('ENGINEERING, MECHANICAL', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","3,031","2.2","('Q2', 'Q2')","0.61","99.58" +"All Earth","","2766-9645","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","87","2.2","Q2","0.61","98.21" +"ARCHIVE OF APPLIED MECHANICS","0939-1533","1432-0681","MECHANICS","('SCIE',)","4,337","2.2","Q2","0.61","14.80" +"Folia Horticulturae","0867-1761","2083-5965","HORTICULTURE","('SCIE',)","544","2.2","Q2","0.61","100.00" +"JOURNAL FOR NATURE CONSERVATION","1617-1381","1618-1093","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","2,834","2.2","('Q2', 'Q2')","0.61","23.96" +"JOURNAL OF APPLIED GEOPHYSICS","0926-9851","1879-1859","('GEOSCIENCES, MULTIDISCIPLINARY', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE')","7,585","2.2","('Q2', 'Q2')","0.61","8.61" +"REJUVENATION RESEARCH","1549-1684","1557-8577","GERIATRICS & GERONTOLOGY","('SCIE',)","2,106","2.2","Q3","0.61","1.30" +"World Patent Information","0172-2190","1874-690X","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","796","2.2","Q2","0.61","18.10" +"Asian Business & Management","1472-4782","1476-9328","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","786","2.2","('Q3', 'Q3')","0.60","9.40" +"BJPsych Bulletin","2056-4694","2056-4708","PSYCHIATRY","('ESCI',)","873","2.2","Q3","0.60","100.00" +"Clinical Obesity","1758-8103","1758-8111","ENDOCRINOLOGY & METABOLISM","('ESCI',)","1,408","2.2","Q3","0.60","34.48" +"Data","","2306-5729","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'MULTIDISCIPLINARY SCIENCES')","('ESCI', 'ESCI')","1,789","2.2","('Q3', 'Q2')","0.60","99.19" +"JOURNAL OF AFRICAN EARTH SCIENCES","1464-343X","1879-1956","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","9,472","2.2","Q2","0.60","6.68" +"Journal of Complex Networks","2051-1310","2051-1329","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","1,117","2.2","Q2","0.60","21.47" +"JOURNAL OF COORDINATION CHEMISTRY","0095-8972","1029-0389","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","4,596","2.2","Q3","0.60","1.33" +"JOURNAL OF MATHEMATICAL BIOLOGY","0303-6812","1432-1416","('BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","6,366","2.2","('Q2', 'Q2')","0.60","29.30" +"JOURNAL OF PLANT BIOLOGY","1226-9239","1867-0725","PLANT SCIENCES","('SCIE',)","1,771","2.2","Q2","0.60","5.51" +"OMICS-A JOURNAL OF INTEGRATIVE BIOLOGY","1536-2310","1557-8100","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","6,031","2.2","('Q3', 'Q3')","0.60","9.15" +"ACM TRANSACTIONS ON DATABASE SYSTEMS","0362-5915","1557-4644","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","1,498","2.2","('Q3', 'Q2')","0.59","2.33" +"ENGINEERING OPTIMIZATION","0305-215X","1029-0273","('ENGINEERING, MULTIDISCIPLINARY', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","3,730","2.2","('Q2', 'Q2')","0.59","5.94" +"ENVIRONMENT AND DEVELOPMENT ECONOMICS","1355-770X","1469-4395","('ECONOMICS', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","1,958","2.2","('Q2', 'Q3')","0.59","29.46" +"EUROPEAN JOURNAL OF INORGANIC CHEMISTRY","1434-1948","1099-0682","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","15,743","2.2","Q3","0.59","30.34" +"Fish and Shellfish Immunology Reports","2667-0119","2667-0119","('FISHERIES', 'IMMUNOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('ESCI', 'ESCI', 'ESCI')","164","2.2","('Q2', 'Q4', 'Q1')","0.59","88.35" +"Frontiers in Human Dynamics","","2673-2726","('DEMOGRAPHY', 'SOCIAL ISSUES')","('ESCI', 'ESCI')","272","2.2","('Q1', 'Q2')","0.59","100.00" +"GEOINFORMATICA","1384-6175","1573-7624","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'GEOGRAPHY, PHYSICAL')","('SCIE', 'SCIE')","766","2.2","('Q3', 'Q2')","0.59","15.66" +"International Journal for Numerical Methods in Biomedical Engineering","2040-7939","2040-7947","('ENGINEERING, BIOMEDICAL', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE', 'SCIE')","2,511","2.2","('Q3', 'Q2', 'Q2')","0.59","29.41" +"JOURNAL OF HYDROINFORMATICS","1464-7141","1465-1734","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, CIVIL', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,469","2.2","('Q3', 'Q2', 'Q3', 'Q3')","0.59","96.54" +"Maritime Studies","1872-7859","2212-9790","ENVIRONMENTAL STUDIES","('ESCI',)","660","2.2","Q3","0.59","60.68" +"MEDICAL SCIENCE MONITOR","","1643-3750","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","16,723","2.2","Q3","0.59","12.00" +"Plant Gene","2352-4073","2352-4073","('GENETICS & HEREDITY', 'PLANT SCIENCES')","('ESCI', 'ESCI')","921","2.2","('Q3', 'Q2')","0.59","8.81" +"STRUCTURAL ENGINEERING AND MECHANICS","1225-4568","1598-6217","('ENGINEERING, CIVIL', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","5,126","2.2","('Q2', 'Q2')","0.59","0.00" +"TERRA NOVA","0954-4879","1365-3121","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","3,780","2.2","Q2","0.59","29.59" +"THERAPIE","0040-5957","1958-5578","PHARMACOLOGY & PHARMACY","('SCIE',)","1,208","2.2","Q3","0.59","44.50" +"CEREBROVASCULAR DISEASES","1015-9770","1421-9786","('CLINICAL NEUROLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","5,674","2.2","('Q3', 'Q3')","0.58","25.00" +"Drug Healthcare and Patient Safety","1179-1365","1179-1365","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","467","2.2","Q2","0.58","100.00" +"International Journal of Event and Festival Management","1758-2954","1758-2962","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","606","2.2","Q2","0.58","8.70" +"INTERNATIONAL JOURNAL OF RIVER BASIN MANAGEMENT","1571-5124","1814-2060","WATER RESOURCES","('ESCI',)","1,256","2.2","Q3","0.58","6.21" +"IT Professional","1520-9202","1941-045X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","1,306","2.2","('Q3', 'Q2', 'Q3')","0.58","2.81" +"Journal of Co-operative Organization and Management","2213-297X","2213-2988","MANAGEMENT","('ESCI',)","346","2.2","Q3","0.58","22.58" +"Physiology International","2498-602X","2498-602X","PHYSIOLOGY","('SCIE',)","430","2.2","Q3","0.58","34.74" +"AMERICAN JOURNAL OF ENOLOGY AND VITICULTURE","0002-9254","1943-7749","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'FOOD SCIENCE & TECHNOLOGY', 'HORTICULTURE')","('SCIE', 'SCIE', 'SCIE')","5,501","2.2","('Q3', 'Q3', 'Q2')","0.57","53.06" +"ARTIFICIAL ORGANS","0160-564X","1525-1594","('ENGINEERING, BIOMEDICAL', 'TRANSPLANTATION')","('SCIE', 'SCIE')","4,926","2.2","('Q3', 'Q3')","0.57","27.02" +"CURRENT OPINION IN NEPHROLOGY AND HYPERTENSION","1062-4821","1473-6543","('PERIPHERAL VASCULAR DISEASE', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","3,360","2.2","('Q3', 'Q2')","0.57","7.52" +"Heart Lung and Circulation","1443-9506","1444-2892","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","4,315","2.2","Q2","0.57","9.82" +"KOREAN JOURNAL OF INTERNAL MEDICINE","1226-3303","2005-6648","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,418","2.2","Q2","0.57","97.61" +"mHealth","","2306-9740","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('ESCI', 'ESCI')","845","2.2","('Q2', 'Q3')","0.57","95.16" +"CANCER CAUSES & CONTROL","0957-5243","1573-7225","('ONCOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","7,368","2.2","('Q3', 'Q2')","0.56","27.03" +"CURRENT OPINION IN OBSTETRICS & GYNECOLOGY","1040-872X","1473-656X","OBSTETRICS & GYNECOLOGY","('SCIE',)","2,574","2.2","Q2","0.56","1.99" +"DEMENTIA AND GERIATRIC COGNITIVE DISORDERS","1420-8008","1421-9824","('CLINICAL NEUROLOGY', 'GERIATRICS & GERONTOLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","4,511","2.2","('Q3', 'Q3', 'Q3')","0.56","22.29" +"EcoHealth","1612-9202","1612-9210","ENVIRONMENTAL SCIENCES","('SCIE',)","2,565","2.2","Q3","0.56","29.60" +"European Journal of Environmental and Civil Engineering","1964-8189","2116-7214","('ENGINEERING, CIVIL', 'ENGINEERING, GEOLOGICAL')","('SCIE', 'SCIE')","3,630","2.2","('Q2', 'Q3')","0.56","0.59" +"IET Control Theory and Applications","1751-8644","1751-8652","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE', 'SCIE')","6,984","2.2","('Q2', 'Q3', 'Q2')","0.56","82.33" +"Leadership","1742-7150","1742-7169","MANAGEMENT","('SSCI',)","1,407","2.2","Q3","0.56","39.56" +"QUALITY AND RELIABILITY ENGINEERING INTERNATIONAL","0748-8017","1099-1638","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MULTIDISCIPLINARY', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","4,300","2.2","('Q3', 'Q2', 'Q2')","0.56","8.69" +"YEAST","0749-503X","1097-0061","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY', 'MYCOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","3,818","2.2","('Q4', 'Q3', 'Q3', 'Q3')","0.56","25.78" +"ANNALS OF REGIONAL SCIENCE","0570-1864","1432-0592","('ECONOMICS', 'ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","2,606","2.2","('Q2', 'Q3', 'Q2', 'Q3')","0.55","33.81" +"INTERNATIONAL JOURNAL OF ENVIRONMENTAL HEALTH RESEARCH","0960-3123","1369-1619","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","2,787","2.2","('Q3', 'Q2')","0.55","9.24" +"JOURNAL OF CHEMICAL ECOLOGY","0098-0331","1573-1561","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ECOLOGY')","('SCIE', 'SCIE')","10,415","2.2","('Q4', 'Q2')","0.55","29.46" +"OPERATIONS RESEARCH","0030-364X","","('MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SSCI', 'SCIE')","15,236","2.2","('Q3', 'Q2')","0.55","0.00" +"SCANDINAVIAN JOURNAL OF RHEUMATOLOGY","0300-9742","1502-7732","RHEUMATOLOGY","('SCIE',)","3,244","2.2","Q3","0.55","33.89" +"WEED RESEARCH","0043-1737","1365-3180","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","3,185","2.2","('Q2', 'Q2')","0.55","29.37" +"Asia-Pacific Journal of Atmospheric Sciences","1976-7633","1976-7951","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","1,613","2.2","Q3","0.54","29.91" +"Beilstein Journal of Organic Chemistry","1860-5397","1860-5397","CHEMISTRY, ORGANIC","('SCIE',)","6,651","2.2","Q2","0.54","98.65" +"IN VITRO CELLULAR & DEVELOPMENTAL BIOLOGY-PLANT","1054-5476","1475-2689","('CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","3,055","2.2","('Q4', 'Q3', 'Q2')","0.54","10.89" +"Journal of Developmental Biology","","2221-3759","DEVELOPMENTAL BIOLOGY","('ESCI',)","772","2.2","Q3","0.54","100.00" +"Journal of Personnel Psychology","1866-5888","2190-5150","PSYCHOLOGY, APPLIED","('SSCI',)","851","2.2","Q2","0.54","21.05" +"METALLURGICAL AND MATERIALS TRANSACTIONS A-PHYSICAL METALLURGY AND MATERIALS SCIENCE","1073-5623","1543-1940","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","33,599","2.2","('Q3', 'Q2')","0.54","21.44" +"PUBLICATIONS OF THE ASTRONOMICAL SOCIETY OF JAPAN","0004-6264","2053-051X","ASTRONOMY & ASTROPHYSICS","('SCIE',)","6,354","2.2","Q2","0.54","13.80" +"AUSTRALASIAN JOURNAL OF DERMATOLOGY","0004-8380","1440-0960","DERMATOLOGY","('SCIE',)","2,612","2.2","Q2","0.53","16.76" +"Clinical Trials","1740-7745","1740-7753","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","2,750","2.2","Q3","0.53","27.07" +"EUROPEAN BIOPHYSICS JOURNAL WITH BIOPHYSICS LETTERS","0175-7571","1432-1017","BIOPHYSICS","('SCIE',)","2,997","2.2","Q3","0.53","34.74" +"International Journal of Engine Research","1468-0874","2041-3149","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,090","2.2","('Q2', 'Q2', 'Q3')","0.53","5.88" +"Journal of Tourism and Cultural Change","1476-6825","1747-7654","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","852","2.2","Q2","0.53","5.94" +"Toxicology Research","2045-452X","2045-4538","TOXICOLOGY","('SCIE',)","2,356","2.2","Q3","0.53","9.71" +"ACM TRANSACTIONS ON DESIGN AUTOMATION OF ELECTRONIC SYSTEMS","1084-4309","1557-7309","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","996","2.2","('Q3', 'Q2')","0.52","2.80" +"APMIS","0903-4641","1600-0463","('IMMUNOLOGY', 'MICROBIOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,344","2.2","('Q4', 'Q3', 'Q3')","0.52","29.63" +"Applications in Engineering Science","2666-4968","2666-4968","('ENGINEERING, MULTIDISCIPLINARY', 'MECHANICS')","('ESCI', 'ESCI')","278","2.2","('Q2', 'Q2')","0.52","93.80" +"Esophagus","1612-9059","1612-9067","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","1,420","2.2","Q3","0.52","17.62" +"INTERNATIONAL JOURNAL OF FRACTURE","0376-9429","1573-2673","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE')","7,601","2.2","('Q3', 'Q2')","0.52","19.11" +"JOURNAL OF ORGANIZATIONAL BEHAVIOR MANAGEMENT","0160-8061","1540-8604","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","621","2.2","('Q3', 'Q2')","0.52","6.78" +"OENO One","","2494-1271","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,263","2.2","Q3","0.52","97.21" +"Public Health in Practice","2666-5352","2666-5352","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","611","2.2","Q2","0.52","95.27" +"Pulmonary Circulation","2045-8932","2045-8940","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","2,798","2.2","('Q2', 'Q3')","0.52","75.25" +"CURRENT PHARMACEUTICAL BIOTECHNOLOGY","1389-2010","1873-4316","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","4,487","2.2","('Q4', 'Q3')","0.51","0.66" +"DIFFERENTIATION","0301-4681","1432-0436","('CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY')","('SCIE', 'SCIE')","2,439","2.2","('Q4', 'Q3')","0.51","24.18" +"Journal of Computational Electronics","1569-8025","1572-8137","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","2,643","2.2","('Q3', 'Q3')","0.51","8.61" +"ACM SIGCOMM Computer Communication Review","0146-4833","1943-5819","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","6,130","2.2","Q3","0.50","0.00" +"Clinics","1807-5932","1980-5322","MEDICINE, GENERAL & INTERNAL","('SCIE',)","4,860","2.2","Q2","0.50","97.73" +"IJISPM-International Journal of Information Systems and Project Management","2182-7796","2182-7788","MANAGEMENT","('ESCI',)","305","2.2","Q3","0.50","97.92" +"Journal of Facilities Management","1472-5967","1741-0983","MANAGEMENT","('ESCI',)","970","2.2","Q3","0.50","6.63" +"Molecular Imaging","","1536-0121","('BIOCHEMICAL RESEARCH METHODS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","975","2.2","('Q3', 'Q2')","0.50","100.00" +"Multinational Business Review","1525-383X","2054-1686","BUSINESS","('SSCI',)","811","2.2","Q3","0.50","8.33" +"ENVIRONMENTAL CONSERVATION","0376-8929","1469-4387","('BIODIVERSITY CONSERVATION', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","3,815","2.2","('Q2', 'Q3')","0.49","41.51" +"Journal of Asian Ceramic Societies","2187-0764","2187-0764","MATERIALS SCIENCE, CERAMICS","('SCIE',)","2,383","2.2","Q2","0.49","96.55" +"Journal of Building Performance Simulation","1940-1493","1940-1507","CONSTRUCTION & BUILDING TECHNOLOGY","('SCIE',)","1,460","2.2","Q2","0.49","17.20" +"JOURNAL OF ELECTRONIC PACKAGING","1043-7398","1528-9044","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","1,644","2.2","('Q3', 'Q2')","0.49","0.57" +"Journal of Medical Imaging and Radiation Oncology","1754-9477","1754-9485","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","2,010","2.2","Q2","0.49","20.61" +"Multiple Sclerosis International","2090-2654","2090-2662","CLINICAL NEUROLOGY","('ESCI',)","412","2.2","Q3","0.49","100.00" +"SYNTHESIS-STUTTGART","0039-7881","1437-210X","CHEMISTRY, ORGANIC","('SCIE',)","15,571","2.2","Q2","0.49","2.85" +"COPD-Journal of Chronic Obstructive Pulmonary Disease","1541-2555","1541-2563","RESPIRATORY SYSTEM","('SCIE',)","2,469","2.2","Q3","0.48","53.33" +"Human Factors and Ergonomics in Manufacturing & Service Industries","1090-8471","1520-6564","('ENGINEERING, MANUFACTURING', 'ERGONOMICS')","('SCIE', 'SSCI')","849","2.2","('Q3', 'Q2')","0.48","22.32" +"Journal of Biomedical Research","1674-8301","1876-4819","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,331","2.2","Q3","0.48","100.00" +"JOURNAL OF HYDROLOGIC ENGINEERING","1084-0699","1943-5584","('ENGINEERING, CIVIL', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","5,345","2.2","('Q2', 'Q3', 'Q3')","0.48","3.50" +"Journal of Primary Prevention","0278-095X","1573-6547","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","1,372","2.2","Q2","0.48","14.29" +"JOURNAL OF SOIL AND WATER CONSERVATION","0022-4561","1941-3300","('ECOLOGY', 'SOIL SCIENCE', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","4,938","2.2","('Q2', 'Q3', 'Q3')","0.48","0.61" +"Respiratory Medicine and Research","","2590-0412","RESPIRATORY SYSTEM","('SCIE',)","351","2.2","Q3","0.48","40.59" +"JOURNAL OF CHEMICAL THERMODYNAMICS","0021-9614","1096-3626","('CHEMISTRY, PHYSICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","10,411","2.2","('Q3', 'Q2')","0.47","5.20" +"WELDING JOURNAL","0043-2296","0043-2296","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","2,678","2.2","Q2","0.47","76.25" +"BEST PRACTICE & RESEARCH CLINICAL HAEMATOLOGY","1521-6926","1532-1924","HEMATOLOGY","('SCIE',)","1,387","2.2","Q3","0.46","16.08" +"ENVIRONMENTAL TECHNOLOGY","0959-3330","1479-487X","ENVIRONMENTAL SCIENCES","('SCIE',)","11,034","2.2","Q3","0.46","2.95" +"IEEE Sensors Letters","2475-1472","2475-1472","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION', 'PHYSICS, APPLIED')","('ESCI', 'ESCI', 'ESCI')","1,930","2.2","('Q3', 'Q2', 'Q3')","0.46","8.36" +"Journal of Breast Cancer","1738-6756","2092-9900","ONCOLOGY","('SCIE',)","1,448","2.2","Q3","0.46","99.28" +"Anemia","2090-1267","2090-1275","HEMATOLOGY","('ESCI',)","439","2.2","Q3","0.45","100.00" +"INTEGRATION-THE VLSI JOURNAL","0167-9260","1872-7522","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","1,558","2.2","('Q3', 'Q3')","0.45","5.26" +"JOURNAL OF ESSENTIAL OIL RESEARCH","1041-2905","2163-8152","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","3,639","2.2","('Q3', 'Q3')","0.45","2.88" +"NEUROIMMUNOMODULATION","1021-7401","1423-0216","('ENDOCRINOLOGY & METABOLISM', 'IMMUNOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE', 'SCIE')","1,725","2.2","('Q3', 'Q4', 'Q3')","0.45","26.83" +"ACM Transactions on Autonomous and Adaptive Systems","1556-4665","1556-4703","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","390","2.2","('Q3', 'Q3', 'Q2')","0.44","4.55" +"Advances in Concrete Construction","2287-5301","2287-531X","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","1,151","2.2","('Q2', 'Q2', 'Q3')","0.44","0.00" +"AEROBIOLOGIA","0393-5965","1573-3025","('BIOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","1,733","2.2","('Q2', 'Q3')","0.44","31.15" +"Aging Medicine","","2475-0360","GERIATRICS & GERONTOLOGY","('ESCI',)","188","2.2","Q3","0.44","75.21" +"BIOTECHNIQUES","0736-6205","1940-9818","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY')","('SCIE', 'SCIE')","6,141","2.2","('Q3', 'Q4')","0.44","100.00" +"CURRENT MOLECULAR MEDICINE","1566-5240","1875-5666","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","3,653","2.2","Q3","0.44","1.97" +"Frontiers in Built Environment","","2297-3362","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('ESCI', 'ESCI')","2,497","2.2","('Q2', 'Q2')","0.44","99.68" +"International Journal of Intelligent Computing and Cybernetics","1756-378X","1756-3798","COMPUTER SCIENCE, CYBERNETICS","('ESCI',)","518","2.2","Q3","0.44","0.00" +"Journal of Arrhythmia","1880-4276","1883-2148","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","1,630","2.2","Q2","0.44","67.52" +"JOURNAL OF ELECTRONIC MATERIALS","0361-5235","1543-186X","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","16,504","2.2","('Q3', 'Q3', 'Q3')","0.44","3.49" +"COLLOID AND POLYMER SCIENCE","0303-402X","1435-1536","('CHEMISTRY, PHYSICAL', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","6,144","2.2","('Q3', 'Q3')","0.43","8.54" +"GEOMICROBIOLOGY JOURNAL","0149-0451","1521-0529","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","3,427","2.2","('Q3', 'Q2')","0.43","2.19" +"International Journal of Laboratory Hematology","1751-5521","1751-553X","HEMATOLOGY","('SCIE',)","3,260","2.2","Q3","0.43","13.06" +"JOURNAL OF ENVIRONMENTAL QUALITY","0047-2425","1537-2537","ENVIRONMENTAL SCIENCES","('SCIE',)","13,222","2.2","Q3","0.43","48.47" +"Journal of Rheumatic Diseases","2093-940X","2233-4718","RHEUMATOLOGY","('ESCI',)","299","2.2","Q3","0.43","98.85" +"Bulletin of the Peabody Museum of Natural History","0079-032X","2162-4135","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","336","2.2","('Q2', 'Q2')","0.42","0.00" +"FEMS MICROBIOLOGY LETTERS","0378-1097","1574-6968","MICROBIOLOGY","('SCIE',)","18,358","2.2","Q3","0.42","15.69" +"Journal of the Indian Society of Remote Sensing","0255-660X","0974-3006","('ENVIRONMENTAL SCIENCES', 'REMOTE SENSING')","('SCIE', 'SCIE')","3,221","2.2","('Q3', 'Q3')","0.42","2.74" +"Materials Letters-X","2590-1508","2590-1508","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('ESCI', 'ESCI')","308","2.2","('Q3', 'Q3')","0.42","96.27" +"Thunderbird International Business Review","1096-4762","1520-6874","BUSINESS","('ESCI',)","1,640","2.2","Q3","0.42","20.69" +"CEREAL CHEMISTRY","0009-0352","1943-3638","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","6,861","2.2","('Q3', 'Q3')","0.41","15.60" +"IEEE Solid-State Circuits Letters","","2573-9603","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('ESCI', 'ESCI')","840","2.2","('Q3', 'Q3')","0.41","16.84" +"JOURNAL OF PLANT PATHOLOGY","1125-4653","2239-7264","PLANT SCIENCES","('SCIE',)","3,148","2.2","Q2","0.41","15.04" +"Journal of the Iranian Chemical Society","1735-207X","1735-2428","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","4,814","2.2","Q3","0.40","4.30" +"Journal on Multimodal User Interfaces","1783-7677","1783-8738","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, CYBERNETICS')","('SCIE', 'SCIE')","624","2.2","('Q3', 'Q3')","0.40","37.31" +"CCF Transactions on Pervasive Computing and Interaction","2524-521X","2524-5228","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, CYBERNETICS', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","266","2.2","('Q3', 'Q3', 'Q3', 'Q3')","0.39","11.90" +"LEUKEMIA & LYMPHOMA","1042-8194","1029-2403","('HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","9,454","2.2","('Q3', 'Q3')","0.39","16.81" +"Journal of Electrochemical Science and Technology","2093-8551","2093-8551","ELECTROCHEMISTRY","('SCIE',)","911","2.2","Q3","0.38","97.90" +"JOURNAL OF MATERIALS ENGINEERING AND PERFORMANCE","1059-9495","1544-1024","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","18,001","2.2","Q3","0.38","4.83" +"Gastroenterologia y Hepatologia","0210-5705","0210-5705","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","1,141","2.2","Q3","0.37","9.09" +"KOREA-AUSTRALIA RHEOLOGY JOURNAL","1226-119X","2093-7660","('MECHANICS', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","695","2.2","('Q2', 'Q3')","0.36","4.44" +"Regenerative Engineering and Translational Medicine","2364-4133","2364-4141","ENGINEERING, BIOMEDICAL","('ESCI',)","609","2.2","Q3","0.35","13.64" +"EUROPEAN CYTOKINE NETWORK","","1952-4005","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE', 'SCIE')","952","2.2","('Q4', 'Q4', 'Q4')","0.34","0.00" +"International Journal of Agricultural and Biological Engineering","1934-6344","1934-6352","AGRICULTURAL ENGINEERING","('SCIE',)","3,485","2.2","Q2","0.34","94.16" +"Journal of the International Association of Providers of AIDS Care","2325-9574","2325-9582","INFECTIOUS DISEASES","('ESCI',)","818","2.2","Q3","0.34","92.62" +"ISSUES IN SCIENCE AND TECHNOLOGY","0748-5492","1938-1557","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MULTIDISCIPLINARY', 'MULTIDISCIPLINARY SCIENCES', 'SOCIAL ISSUES')","('SCIE', 'SCIE', 'SCIE', 'SSCI')","677","2.2","('Q3', 'Q2', 'Q2', 'Q2')","0.28","0.00" +"Reactions","","2624-781X","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","201","2.2","Q3","0.28","100.00" +"SOUTH ATLANTIC QUARTERLY","0038-2876","1527-8026","('CULTURAL STUDIES', 'LITERARY REVIEWS')","('AHCI, SSCI', 'AHCI')","1,807","2.1","('Q1', 'N/A')","10.50","0.00" +"Philosophy Compass","","1747-9991","PHILOSOPHY","('AHCI',)","2,220","2.1","","3.28","30.00" +"ACM Journal on Computing and Cultural Heritage","1556-4673","1556-4711","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'HUMANITIES, MULTIDISCIPLINARY')","('SCIE', 'AHCI')","946","2.1","('Q3', 'N/A')","3.07","4.98" +"Biosemiotics","1875-1342","1875-1350","('HISTORY & PHILOSOPHY OF SCIENCE', 'HUMANITIES, MULTIDISCIPLINARY')","('AHCI, SCIE, SSCI', 'AHCI')","513","2.1","('Q1', 'N/A')","2.83","37.65" +"Journal of Language Evolution","2058-4571","2058-458X","LANGUAGE & LINGUISTICS","('ESCI',)","187","2.1","","2.83","41.38" +"DAEDALUS","0011-5266","1548-6192","('HUMANITIES, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('AHCI', 'SSCI')","3,322","2.1","('N/A', 'Q1')","2.56","100.00" +"Applied Linguistics Review","1868-6303","1868-6311","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","1,080","2.1","('N/A', 'Q1')","2.33","16.60" +"MICHIGAN LAW REVIEW","0026-2234","1939-8557","LAW","('SSCI',)","2,103","2.1","Q1","2.10","0.00" +"ITL-International Journal of Applied Linguistics","0019-0829","1783-1490","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","223","2.1","('N/A', 'Q1')","1.93","9.09" +"Language Testing in Asia","","2229-0443","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI', 'ESCI')","401","2.1","('Q1', 'N/A', 'Q1')","1.92","100.00" +"European Business Organization Law Review","1566-7529","1741-6205","('BUSINESS', 'LAW')","('SSCI', 'SSCI')","509","2.1","('Q3', 'Q1')","1.81","62.37" +"NEW YORK UNIVERSITY LAW REVIEW","0028-7881","0028-7881","LAW","('SSCI',)","1,855","2.1","Q1","1.80","0.00" +"ANNALS OF DYSLEXIA","0736-9387","1934-7243","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","1,018","2.1","('Q1', 'Q1')","1.77","25.00" +"Science & Education","0926-7220","1573-1901","('EDUCATION & EDUCATIONAL RESEARCH', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SSCI', 'AHCI, SCIE')","1,954","2.1","('Q1', 'Q1')","1.73","29.39" +"NUMERICAL METHODS FOR PARTIAL DIFFERENTIAL EQUATIONS","0749-159X","1098-2426","MATHEMATICS, APPLIED","('SCIE',)","4,039","2.1","Q1","1.72","6.91" +"OXFORD REVIEW OF ECONOMIC POLICY","0266-903X","1460-2121","ECONOMICS","('SSCI',)","3,153","2.1","Q2","1.65","33.77" +"JOURNAL DE MATHEMATIQUES PURES ET APPLIQUEES","0021-7824","1776-3371","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","4,896","2.1","('Q1', 'Q1')","1.57","32.87" +"CURRENT ANTHROPOLOGY","0011-3204","1537-5382","ANTHROPOLOGY","('SSCI',)","7,088","2.1","Q1","1.56","6.04" +"Language and Education","0950-0782","1747-7581","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","1,391","2.1","('Q1', 'N/A', 'Q1')","1.50","33.59" +"Contemporary Social Science","2158-2041","2158-205X","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","759","2.1","Q1","1.48","51.55" +"CALCULUS OF VARIATIONS AND PARTIAL DIFFERENTIAL EQUATIONS","0944-2669","1432-0835","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","5,903","2.1","('Q1', 'Q1')","1.47","30.19" +"JOURNAL OF COMPUTATIONAL AND APPLIED MATHEMATICS","0377-0427","1879-1778","MATHEMATICS, APPLIED","('SCIE',)","19,539","2.1","Q1","1.39","15.98" +"MATHEMATICAL METHODS IN THE APPLIED SCIENCES","0170-4214","1099-1476","MATHEMATICS, APPLIED","('SCIE',)","12,357","2.1","Q1","1.38","6.74" +"NEWSLETTERS ON STRATIGRAPHY","0078-0421","","GEOLOGY","('SCIE',)","888","2.1","Q1","1.38","0.00" +"Race and Justice","2153-3687","2153-3687","('CRIMINOLOGY & PENOLOGY', 'ETHNIC STUDIES')","('SSCI', 'SSCI')","515","2.1","('Q1', 'Q1')","1.36","6.09" +"Informatics in Education","1648-5831","2335-8971","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","519","2.1","Q1","1.35","97.78" +"Archaeological and Anthropological Sciences","1866-9557","1866-9565","('ANTHROPOLOGY', 'ARCHAEOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SSCI', 'AHCI', 'SCIE')","3,586","2.1","('Q1', 'N/A', 'Q3')","1.33","44.89" +"CONTRIBUTIONS TO ZOOLOGY","1383-4517","1875-9866","ZOOLOGY","('SCIE',)","557","2.1","Q1","1.30","92.68" +"ADVANCED NONLINEAR STUDIES","1536-1365","2169-0375","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","996","2.1","('Q1', 'Q1')","1.27","78.13" +"COMMUNICATIONS IN PARTIAL DIFFERENTIAL EQUATIONS","0360-5302","1532-4133","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","5,033","2.1","('Q1', 'Q1')","1.27","14.97" +"GENUS","","2035-5556","DEMOGRAPHY","('ESCI',)","603","2.1","Q2","1.24","100.00" +"JMIR Pediatrics and Parenting","2561-6722","2561-6722","PEDIATRICS","('ESCI',)","643","2.1","Q2","1.22","99.54" +"Microbiology Research","","2036-7481","MICROBIOLOGY","('ESCI',)","487","2.1","Q3","1.21","99.65" +"DEATH STUDIES","0748-1187","1091-7683","('PSYCHOLOGY, MULTIDISCIPLINARY', 'SOCIAL ISSUES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI', 'SSCI')","3,798","2.1","('Q2', 'Q2', 'Q2')","1.19","16.37" +"JOURNAL OF INTELLECTUAL DISABILITY RESEARCH","0964-2633","1365-2788","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","5,156","2.1","('Q1', 'Q1')","1.18","39.02" +"JOURNAL OF FLUENCY DISORDERS","0094-730X","1873-801X","('AUDIOLOGY & SPEECH', 'EDUCATION, SPECIAL', 'LINGUISTICS', 'REHABILITATION')","('SCIE', 'SSCI', 'SSCI', 'SCIE, SSCI')","1,689","2.1","('Q1', 'Q1', 'Q1', 'Q1')","1.17","10.71" +"JOURNAL OF VETERINARY INTERNAL MEDICINE","0891-6640","1939-1676","VETERINARY SCIENCES","('SCIE',)","11,728","2.1","Q1","1.17","71.78" +"NUMERISCHE MATHEMATIK","0029-599X","0945-3245","MATHEMATICS, APPLIED","('SCIE',)","7,394","2.1","Q1","1.17","49.30" +"Nursing & Health Sciences","1441-0745","1442-2018","NURSING","('SCIE', 'SSCI')","2,919","2.1","Q2","1.15","20.66" +"ANNALS OF PROBABILITY","0091-1798","","STATISTICS & PROBABILITY","('SCIE',)","6,726","2.1","Q1","1.14","0.52" +"ETHNIC AND RACIAL STUDIES","0141-9870","1466-4356","('ETHNIC STUDIES', 'SOCIOLOGY')","('SSCI', 'SSCI')","7,635","2.1","('Q1', 'Q2')","1.14","36.09" +"Journal of Science Teacher Education","1046-560X","1573-1847","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,522","2.1","Q1","1.14","15.60" +"Osong Public Health and Research Perspectives","2210-9099","2233-6052","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","1,026","2.1","Q3","1.14","100.00" +"RIE-Revista de Investigacion Educativa","0212-4068","1989-9106","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","807","2.1","Q1","1.14","94.44" +"Journal of Pediatric Nursing-Nursing Care of Children & Families","0882-5963","","('NURSING', 'PEDIATRICS')","('SCIE, SSCI', 'SCIE')","4,805","2.1","('Q2', 'Q2')","1.13","10.41" +"Journal of Children and Media","1748-2798","1748-2801","('COMMUNICATION', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","1,013","2.1","('Q2', 'Q1')","1.12","21.28" +"Journal of Workplace Learning","1366-5626","1758-7859","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,285","2.1","Q1","1.12","31.43" +"JOURNAL OF CRANIO-MAXILLOFACIAL SURGERY","1010-5182","1878-4119","('DENTISTRY, ORAL SURGERY & MEDICINE', 'SURGERY')","('SCIE', 'SCIE')","7,798","2.1","('Q2', 'Q2')","1.11","17.98" +"Acta Otorhinolaryngologica Italica","0392-100X","1827-675X","OTORHINOLARYNGOLOGY","('SCIE',)","2,294","2.1","Q2","1.08","97.36" +"Archaeological Prospection","1075-2196","1099-0763","('ARCHAEOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('AHCI', 'SCIE')","889","2.1","('N/A', 'Q3')","1.08","48.08" +"INDIAN JOURNAL OF PEDIATRICS","0019-5456","0973-7693","PEDIATRICS","('SCIE',)","5,043","2.1","Q2","1.07","5.12" +"JOURNAL OF MEDICAL ENTOMOLOGY","0022-2585","1938-2928","('ENTOMOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","9,961","2.1","('Q1', 'Q1')","1.07","18.97" +"SURGICAL CLINICS OF NORTH AMERICA","0039-6109","1558-3171","SURGERY","('SCIE',)","4,511","2.1","Q2","1.07","1.94" +"ULTRAMICROSCOPY","0304-3991","1879-2723","MICROSCOPY","('SCIE',)","8,287","2.1","Q2","1.07","44.42" +"Augmentative and Alternative Communication","0743-4618","1477-3848","('AUDIOLOGY & SPEECH', 'REHABILITATION')","('SCIE', 'SSCI')","1,530","2.1","('Q1', 'Q1')","1.06","20.00" +"British Journal of Politics & International Relations","1369-1481","1467-856X","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,616","2.1","('Q2', 'Q2')","1.06","61.76" +"CLINICAL JOURNAL OF SPORT MEDICINE","1050-642X","1536-3724","('ORTHOPEDICS', 'PHYSIOLOGY', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","4,349","2.1","('Q2', 'Q3', 'Q2')","1.06","4.76" +"JOURNAL OF ORTHOPAEDIC RESEARCH","0736-0266","1554-527X","ORTHOPEDICS","('SCIE',)","15,459","2.1","Q2","1.06","22.60" +"Politics","0263-3957","1467-9256","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,084","2.1","('Q2', 'Q2')","1.06","49.17" +"SOCIAL WORK IN HEALTH CARE","0098-1389","1541-034X","SOCIAL WORK","('SSCI',)","1,536","2.1","Q1","1.06","3.96" +"Asian Nursing Research","1976-1317","2093-7482","NURSING","('SCIE', 'SSCI')","1,459","2.1","Q2","1.04","84.68" +"Journal of Mathematics Teacher Education","1386-4416","1573-1820","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,272","2.1","Q1","1.04","31.19" +"Professional Development in Education","1941-5257","1941-5265","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,873","2.1","Q1","1.03","26.85" +"Psychology of Popular Media","2689-6567","2689-6575","('COMMUNICATION', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","528","2.1","('Q2', 'Q2')","1.03","0.48" +"BMC Sports Science Medicine and Rehabilitation","2052-1847","2052-1847","('REHABILITATION', 'SPORT SCIENCES')","('SCIE', 'SCIE')","1,797","2.1","('Q1', 'Q2')","1.02","99.63" +"Educational Assessment","1062-7197","1532-6977","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","559","2.1","Q1","1.02","23.64" +"Australasian Emergency Care","","2588-994X","('EMERGENCY MEDICINE', 'NURSING')","('SCIE', 'SCIE, SSCI')","429","2.1","('Q2', 'Q2')","1.01","12.95" +"INTERNATIONAL GEOLOGY REVIEW","0020-6814","1938-2839","GEOLOGY","('SCIE',)","6,063","2.1","Q1","1.01","5.73" +"ESAIM-Mathematical Modelling and Numerical Analysis","2822-7840","2804-7214","MATHEMATICS, APPLIED","('SCIE',)","2,906","2.1","Q1","1.00","78.61" +"GENERAL AND COMPARATIVE ENDOCRINOLOGY","0016-6480","1095-6840","('ENDOCRINOLOGY & METABOLISM', 'ZOOLOGY')","('SCIE', 'SCIE')","10,510","2.1","('Q3', 'Q1')","1.00","22.09" +"Research Papers in Education","0267-1522","1470-1146","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,342","2.1","Q1","1.00","34.31" +"BRAIN AND LANGUAGE","0093-934X","1090-2155","('AUDIOLOGY & SPEECH', 'LINGUISTICS', 'NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI', 'SCIE', 'SSCI')","5,986","2.1","('Q1', 'Q1', 'Q3', 'Q2')","0.99","15.24" +"RESEARCH IN NURSING & HEALTH","0160-6891","1098-240X","NURSING","('SCIE', 'SSCI')","6,575","2.1","Q2","0.99","16.95" +"JOURNAL OF MIDWIFERY & WOMENS HEALTH","1526-9523","1542-2011","NURSING","('SCIE', 'SSCI')","2,826","2.1","Q2","0.98","22.18" +"JOURNAL OF OCCUPATIONAL REHABILITATION","1053-0487","1573-3688","('REHABILITATION', 'SOCIAL ISSUES')","('SSCI', 'SSCI')","2,747","2.1","('Q1', 'Q2')","0.98","48.44" +"Qualitative Sociology","0162-0436","1573-7837","SOCIOLOGY","('SSCI',)","1,848","2.1","Q2","0.98","18.42" +"SOCIOLOGICAL REVIEW","0038-0261","1467-954X","SOCIOLOGY","('SSCI',)","5,203","2.1","Q2","0.98","55.23" +"BEHAVIORAL DISORDERS","0198-7429","2163-5307","('EDUCATION, SPECIAL', 'PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI', 'SSCI')","862","2.1","('Q1', 'Q2', 'Q2')","0.97","6.67" +"Demographic Research","1435-9871","1435-9871","DEMOGRAPHY","('SSCI',)","3,776","2.1","Q2","0.97","97.55" +"JOURNAL OF EDUCATIONAL ADMINISTRATION","0957-8234","1758-7395","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,903","2.1","Q1","0.97","5.13" +"Journal of Hand Therapy","0894-1130","1545-004X","('ORTHOPEDICS', 'REHABILITATION', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","2,720","2.1","('Q2', 'Q1', 'Q2')","0.97","5.58" +"JOURNAL OF HUMAN LACTATION","0890-3344","1552-5732","('NURSING', 'OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE', 'SCIE')","2,578","2.1","('Q2', 'Q2', 'Q2')","0.97","11.70" +"JOURNAL OF THE AMERICAN ACADEMY OF PSYCHIATRY AND THE LAW","1093-6793","1943-3662","('LAW', 'PSYCHIATRY')","('SSCI', 'SSCI')","1,326","2.1","('Q1', 'Q3')","0.97","0.00" +"Policy Politics & Nursing Practice","1527-1544","1552-7468","('HEALTH POLICY & SERVICES', 'NURSING')","('ESCI', 'ESCI')","559","2.1","('Q2', 'Q2')","0.97","17.81" +"Archives of Physiotherapy","","2057-0082","REHABILITATION","('ESCI',)","350","2.1","Q1","0.95","100.00" +"Chinese Journal of Communication","1754-4750","1754-4769","COMMUNICATION","('SSCI',)","744","2.1","Q2","0.95","3.90" +"INDIAN JOURNAL OF OPHTHALMOLOGY","0301-4738","1998-3689","OPHTHALMOLOGY","('SCIE',)","8,183","2.1","Q2","0.95","98.17" +"INTERNATIONAL JOURNAL OF STRESS MANAGEMENT","1072-5245","1573-3424","PSYCHOLOGY, APPLIED","('SSCI',)","2,235","2.1","Q3","0.95","0.94" +"LANGENBECKS ARCHIVES OF SURGERY","1435-2443","1435-2451","SURGERY","('SCIE',)","5,433","2.1","Q2","0.95","30.55" +"Egyptian Journal of Biological Pest Control","1110-1768","2536-9342","ENTOMOLOGY","('SCIE',)","1,759","2.1","Q1","0.94","100.00" +"JAPANESE JOURNAL OF OPHTHALMOLOGY","0021-5155","1613-2246","OPHTHALMOLOGY","('SCIE',)","2,493","2.1","Q2","0.94","0.44" +"Early Education and Development","1040-9289","1556-6935","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI', 'SSCI')","3,608","2.1","('Q1', 'Q3', 'Q2')","0.93","11.88" +"JOURNAL OF THE ACOUSTICAL SOCIETY OF AMERICA","0001-4966","1520-8524","('ACOUSTICS', 'AUDIOLOGY & SPEECH')","('SCIE', 'SCIE')","48,198","2.1","('Q2', 'Q1')","0.93","21.42" +"Frontiers in Neuroanatomy","1662-5129","1662-5129","('ANATOMY & MORPHOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","4,396","2.1","('Q1', 'Q3')","0.92","99.68" +"Frontiers in Pediatrics","2296-2360","2296-2360","PEDIATRICS","('SCIE',)","16,735","2.1","Q2","0.92","99.42" +"OPHTHALMOLOGICA","0030-3755","1423-0267","OPHTHALMOLOGY","('SCIE',)","2,570","2.1","Q2","0.92","21.74" +"Wiley Interdisciplinary Reviews: Forensic Science","","2573-9468","('CRIMINOLOGY & PENOLOGY', 'MEDICINE, LEGAL')","('ESCI', 'ESCI')","331","2.1","('Q1', 'Q2')","0.92","19.19" +"ACTA TROPICA","0001-706X","1873-6254","('PARASITOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","10,386","2.1","('Q2', 'Q2')","0.91","17.74" +"Audiology Research","2039-4330","2039-4349","AUDIOLOGY & SPEECH","('ESCI',)","448","2.1","Q1","0.91","100.00" +"COMPARATIVE BIOCHEMISTRY AND PHYSIOLOGY A-MOLECULAR & INTEGRATIVE PHYSIOLOGY","1095-6433","1531-4332","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PHYSIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","10,009","2.1","('Q4', 'Q3', 'Q1')","0.91","30.27" +"INTERNATIONAL JOURNAL OF PROSTHODONTICS","0893-2174","1942-4426","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","3,984","2.1","Q2","0.91","0.00" +"JOURNAL OF INSECT SCIENCE","","1536-2442","ENTOMOLOGY","('SCIE',)","3,796","2.1","Q1","0.91","93.75" +"JOURNAL OF SEX & MARITAL THERAPY","0092-623X","1521-0715","('FAMILY STUDIES', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","3,230","2.1","('Q2', 'Q2')","0.91","15.08" +"HEALTH EDUCATION RESEARCH","0268-1153","1465-3648","('EDUCATION & EDUCATIONAL RESEARCH', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","3,595","2.1","('Q1', 'Q3')","0.90","14.60" +"IEEE TRANSACTIONS ON EDUCATION","0018-9359","1557-9638","('EDUCATION, SCIENTIFIC DISCIPLINES', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","1,647","2.1","('Q2', 'Q3')","0.90","25.68" +"Aerospace","","2226-4310","ENGINEERING, AEROSPACE","('SCIE',)","4,904","2.1","Q2","0.89","99.69" +"AIAA JOURNAL","0001-1452","1533-385X","ENGINEERING, AEROSPACE","('SCIE',)","26,105","2.1","Q2","0.89","3.15" +"Research Ethics","1747-0161","2047-6094","('ETHICS', 'MEDICAL ETHICS', 'SOCIAL ISSUES')","('ESCI', 'ESCI', 'ESCI')","438","2.1","('Q2', 'Q2', 'Q2')","0.89","93.40" +"SEXUAL ABUSE-A JOURNAL OF RESEARCH AND TREATMENT","1079-0632","1573-286X","('CRIMINOLOGY & PENOLOGY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","1,786","2.1","('Q1', 'Q2')","0.89","31.45" +"AMERICAN JOURNAL OF OCCUPATIONAL THERAPY","0272-9490","1943-7676","REHABILITATION","('SSCI',)","5,834","2.1","Q1","0.88","1.06" +"ANDROLOGIA","0303-4569","1439-0272","ANDROLOGY","('SCIE',)","6,452","2.1","Q3","0.88","79.21" +"Breastfeeding Medicine","1556-8253","1556-8342","('OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","2,765","2.1","('Q2', 'Q2')","0.88","3.81" +"JOURNAL OF HAND SURGERY-AMERICAN VOLUME","0363-5023","1531-6564","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","15,965","2.1","('Q2', 'Q2')","0.88","8.46" +"Inventions","","2411-5134","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","1,306","2.1","Q2","0.87","99.46" +"TEACHING AND LEARNING IN MEDICINE","1040-1334","1532-8015","('EDUCATION, SCIENTIFIC DISCIPLINES', 'HEALTH CARE SCIENCES & SERVICES')","('SCIE', 'SCIE')","2,056","2.1","('Q2', 'Q3')","0.87","18.45" +"VEGETATION HISTORY AND ARCHAEOBOTANY","0939-6314","1617-6278","('PALEONTOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","2,462","2.1","('Q1', 'Q2')","0.87","50.66" +"ANNALS OF CLINICAL BIOCHEMISTRY","0004-5632","1758-1001","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","3,659","2.1","Q3","0.86","10.40" +"BMJ Surgery Interventions & Health Technologies","","2631-4940","SURGERY","('ESCI',)","142","2.1","Q2","0.86","96.43" +"DISABILITY AND REHABILITATION","0963-8288","1464-5165","REHABILITATION","('SCIE', 'SSCI')","15,902","2.1","Q1","0.86","24.81" +"PEDIATRIC CLINICS OF NORTH AMERICA","0031-3955","1557-8240","PEDIATRICS","('SCIE',)","4,674","2.1","Q2","0.86","4.98" +"Spatial Statistics","2211-6753","","('GEOSCIENCES, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'REMOTE SENSING', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,263","2.1","('Q3', 'Q2', 'Q3', 'Q1')","0.86","31.87" +"CRIMINAL JUSTICE AND BEHAVIOR","0093-8548","1552-3594","('CRIMINOLOGY & PENOLOGY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","4,385","2.1","('Q1', 'Q2')","0.85","20.00" +"MEDICAL HYPOTHESES","0306-9877","1532-2777","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","9,446","2.1","Q3","0.85","16.74" +"AUSTRALIAN JOURNAL OF PUBLIC ADMINISTRATION","0313-6647","1467-8500","PUBLIC ADMINISTRATION","('SSCI',)","1,369","2.1","Q2","0.84","44.29" +"Fishes","","2410-3888","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","1,900","2.1","('Q2', 'Q2')","0.84","100.00" +"Prehospital Emergency Care","1090-3127","1545-0066","('EMERGENCY MEDICINE', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","3,451","2.1","('Q2', 'Q3')","0.84","17.20" +"Agribusiness","0742-4477","1520-6297","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SSCI', 'SCIE')","1,418","2.1","('Q2', 'Q2', 'Q3')","0.83","30.85" +"ARCHIVES OF CLINICAL NEUROPSYCHOLOGY","0887-6177","1873-5843","('PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SSCI')","5,446","2.1","('Q2', 'Q2')","0.83","17.27" +"COMPUTATIONAL GEOSCIENCES","1420-0597","1573-1499","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,630","2.1","('Q3', 'Q3')","0.83","31.76" +"JOURNAL OF APPLIED RESEARCH IN INTELLECTUAL DISABILITIES","1360-2322","1468-3148","('PSYCHOLOGY, EDUCATIONAL', 'REHABILITATION')","('SSCI', 'SSCI')","3,571","2.1","('Q2', 'Q1')","0.83","46.93" +"Smart Structures and Systems","1738-1584","1738-1991","('ENGINEERING, CIVIL', 'ENGINEERING, MECHANICAL', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE', 'SCIE')","3,022","2.1","('Q2', 'Q2', 'Q2')","0.83","0.00" +"ARCHIVES OF GYNECOLOGY AND OBSTETRICS","0932-0067","1432-0711","OBSTETRICS & GYNECOLOGY","('SCIE',)","10,279","2.1","Q2","0.82","33.39" +"Frontiers in Animal Science","","2673-6225","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('ESCI', 'ESCI')","555","2.1","('Q1', 'Q1')","0.82","100.00" +"Journal of Neurosurgery-Pediatrics","1933-0707","1933-0715","('CLINICAL NEUROLOGY', 'PEDIATRICS', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","5,737","2.1","('Q3', 'Q2', 'Q2')","0.82","0.43" +"JOURNAL OF PLASMA PHYSICS","0022-3778","1469-7807","PHYSICS, FLUIDS & PLASMAS","('SCIE',)","3,336","2.1","Q2","0.82","48.53" +"Linguistic Landscape-An International Journal","2214-9953","2214-9961","LINGUISTICS","('ESCI',)","443","2.1","Q1","0.82","7.14" +"NORMA","1890-2138","1890-2146","SOCIOLOGY","('ESCI',)","332","2.1","Q2","0.82","34.55" +"SPINAL CORD","1362-4393","1476-5624","('CLINICAL NEUROLOGY', 'REHABILITATION')","('SCIE', 'SCIE')","7,548","2.1","('Q3', 'Q1')","0.82","19.83" +"Transactions in GIS","1361-1682","1467-9671","GEOGRAPHY","('SSCI',)","2,338","2.1","Q2","0.82","21.39" +"International Journal of Qualitative Studies on Health and Well-Being","1748-2623","1748-2631","('NURSING', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI', 'SSCI')","2,639","2.1","('Q2', 'Q3', 'Q2')","0.81","99.11" +"Journal of Psychosomatic Obstetrics & Gynecology","0167-482X","1743-8942","('OBSTETRICS & GYNECOLOGY', 'PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SCIE', 'SSCI')","2,001","2.1","('Q2', 'Q3', 'Q2')","0.81","47.19" +"Prehospital and Disaster Medicine","1049-023X","1945-1938","EMERGENCY MEDICINE","('SCIE',)","2,776","2.1","Q2","0.81","37.29" +"Sexualities","1363-4607","1461-7382","SOCIOLOGY","('SSCI',)","2,237","2.1","Q2","0.81","40.89" +"INTERNATIONAL JOURNAL OF GEOMETRIC METHODS IN MODERN PHYSICS","0219-8878","1793-6977","PHYSICS, MATHEMATICAL","('SCIE',)","3,658","2.1","Q2","0.80","0.47" +"International Journal of Plant Production","1735-6814","1735-8043","AGRONOMY","('SCIE',)","1,054","2.1","Q2","0.80","8.78" +"JOURNAL OF EXPERIMENTAL PSYCHOLOGY-HUMAN PERCEPTION AND PERFORMANCE","0096-1523","1939-1277","('PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI')","10,125","2.1","('Q2', 'Q2')","0.80","5.63" +"JOURNAL OF INVESTIGATIVE SURGERY","0894-1939","1521-0553","SURGERY","('SCIE',)","1,982","2.1","Q2","0.80","17.93" +"Journal of Latinx Psychology","2578-8086","2578-8094","('PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, MULTIDISCIPLINARY', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","210","2.1","('Q2', 'Q3', 'Q2', 'Q3')","0.80","4.11" +"MARINE BIOLOGY","0025-3162","1432-1793","MARINE & FRESHWATER BIOLOGY","('SCIE',)","15,803","2.1","Q2","0.80","30.65" +"PEDIATRIC RADIOLOGY","0301-0449","1432-1998","('PEDIATRICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","7,293","2.1","('Q2', 'Q2')","0.80","18.10" +"SOCIAL PSYCHOLOGY QUARTERLY","0190-2725","1939-8999","PSYCHOLOGY, SOCIAL","('SSCI',)","3,851","2.1","Q3","0.80","14.10" +"Spatial and Spatio-Temporal Epidemiology","1877-5845","1877-5853","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","787","2.1","Q3","0.80","28.10" +"LIMNOLOGY AND OCEANOGRAPHY-METHODS","1541-5856","1541-5856","('LIMNOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","3,759","2.1","('Q2', 'Q2')","0.79","59.34" +"TEXTILE PROGRESS","0040-5167","1754-2278","MATERIALS SCIENCE, TEXTILES","('ESCI',)","294","2.1","Q2","0.79","0.00" +"Economics & Sociology","2071-789X","2306-3459","ECONOMICS","('ESCI',)","915","2.1","Q2","0.78","97.17" +"EDUCATIONAL AND PSYCHOLOGICAL MEASUREMENT","0013-1644","1552-3888","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PSYCHOLOGY, EDUCATIONAL', 'PSYCHOLOGY, MATHEMATICAL')","('SCIE', 'SSCI', 'SSCI')","11,555","2.1","('Q2', 'Q2', 'Q2')","0.78","23.53" +"PLASMA PHYSICS AND CONTROLLED FUSION","0741-3335","1361-6587","PHYSICS, FLUIDS & PLASMAS","('SCIE',)","10,341","2.1","Q2","0.78","28.30" +"Systems Biology in Reproductive Medicine","1939-6368","1939-6376","('ANDROLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","1,295","2.1","('Q3', 'Q3')","0.78","8.11" +"Cognitive Systems Research","2214-4366","1389-0417","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI')","1,979","2.1","('Q3', 'Q3', 'Q2')","0.77","23.47" +"TREES-STRUCTURE AND FUNCTION","0931-1890","1432-2285","FORESTRY","('SCIE',)","6,027","2.1","Q2","0.77","19.28" +"CONTINENTAL SHELF RESEARCH","0278-4343","1873-6955","OCEANOGRAPHY","('SCIE',)","9,876","2.1","Q2","0.76","28.13" +"Discourse & Communication","1750-4813","1750-4821","COMMUNICATION","('SSCI',)","909","2.1","Q2","0.76","14.02" +"Economies","","2227-7099","ECONOMICS","('ESCI',)","2,220","2.1","Q2","0.76","99.52" +"International Journal of Forest Engineering","1494-2119","1913-2220","FORESTRY","('SCIE',)","592","2.1","Q2","0.76","35.65" +"JOURNAL OF ADVERTISING RESEARCH","0021-8499","1740-1909","('BUSINESS', 'COMMUNICATION')","('SSCI', 'SSCI')","2,715","2.1","('Q3', 'Q2')","0.76","0.00" +"Resuscitation Plus","2666-5204","2666-5204","('CRITICAL CARE MEDICINE', 'EMERGENCY MEDICINE')","('ESCI', 'ESCI')","763","2.1","('Q3', 'Q2')","0.76","95.01" +"ACTA PHARMACEUTICA","1330-0075","1846-9558","PHARMACOLOGY & PHARMACY","('SCIE',)","1,455","2.1","Q3","0.75","98.44" +"HISTOCHEMISTRY AND CELL BIOLOGY","0948-6143","1432-119X","('CELL BIOLOGY', 'MICROSCOPY')","('SCIE', 'SCIE')","4,536","2.1","('Q4', 'Q2')","0.75","44.88" +"JOURNAL OF PSYCHOACTIVE DRUGS","0279-1072","2159-9777","('PSYCHOLOGY, CLINICAL', 'SUBSTANCE ABUSE')","('SSCI', 'SSCI')","2,649","2.1","('Q2', 'Q3')","0.75","7.21" +"UROLOGY","0090-4295","1527-9995","UROLOGY & NEPHROLOGY","('SCIE',)","20,122","2.1","Q2","0.75","7.51" +"INTERNATIONAL JOURNAL OF RADIATION BIOLOGY","0955-3002","1362-3095","('BIOLOGY', 'NUCLEAR SCIENCE & TECHNOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","5,487","2.1","('Q2', 'Q1', 'Q2')","0.74","14.32" +"JOURNAL OF PERSONALITY DISORDERS","0885-579X","1943-2763","PSYCHIATRY","('SSCI',)","3,466","2.1","Q3","0.74","0.00" +"Annals of Rehabilitation Medicine-ARM","","2234-0653","REHABILITATION","('ESCI',)","1,950","2.1","Q1","0.73","99.17" +"Current Research in Physiology","2665-9441","2665-9441","PHYSIOLOGY","('ESCI',)","199","2.1","Q3","0.73","100.00" +"Journal of Neurophysiology","0022-3077","1522-1598","('NEUROSCIENCES', 'PHYSIOLOGY')","('SCIE', 'SCIE')","35,337","2.1","('Q3', 'Q3')","0.73","13.15" +"JOURNAL OF SEA RESEARCH","1385-1101","1873-1414","('MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","3,769","2.1","('Q2', 'Q2')","0.73","80.39" +"WEED SCIENCE","0043-1745","1550-2759","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","5,780","2.1","('Q2', 'Q2')","0.73","55.50" +"CAREER DEVELOPMENT QUARTERLY","0889-4019","2161-0045","PSYCHOLOGY, APPLIED","('SSCI',)","1,446","2.1","Q3","0.71","16.67" +"CONSCIOUSNESS AND COGNITION","1053-8100","1090-2376","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","6,810","2.1","Q2","0.71","33.13" +"DISCOURSE PROCESSES","0163-853X","1532-6950","('PSYCHOLOGY, EDUCATIONAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","2,185","2.1","('Q2', 'Q2')","0.71","32.08" +"Parkinsons Disease","2090-8083","2042-0080","CLINICAL NEUROLOGY","('SCIE',)","2,091","2.1","Q3","0.71","100.00" +"Transgender Health","2688-4887","2380-193X","('PSYCHOLOGY, CLINICAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SCIE, SSCI', 'SSCI')","1,510","2.1","('Q2', 'Q3', 'Q2')","0.71","6.83" +"ACTA PSYCHOLOGICA","0001-6918","1873-6297","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","6,854","2.1","Q2","0.70","95.37" +"European Journal of Obstetrics & Gynecology and Reproductive Biology","0301-2115","1872-7654","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","13,708","2.1","('Q2', 'Q3')","0.70","17.05" +"Swarm Intelligence","1935-3812","1935-3820","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ROBOTICS')","('SCIE', 'SCIE')","1,068","2.1","('Q3', 'Q3')","0.70","45.24" +"JOURNAL OF THE ROYAL SOCIETY OF NEW ZEALAND","0303-6758","1175-8899","MULTIDISCIPLINARY SCIENCES","('SCIE',)","1,110","2.1","Q2","0.69","46.58" +"MAGNETIC RESONANCE IMAGING","0730-725X","1873-5894","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","7,803","2.1","Q2","0.69","27.73" +"PARASITOLOGY","0031-1820","1469-8161","PARASITOLOGY","('SCIE',)","9,972","2.1","Q2","0.69","52.51" +"Science of Nature","0028-1042","1432-1904","MULTIDISCIPLINARY SCIENCES","('SCIE',)","1,136","2.1","Q2","0.69","24.70" +"SIAM-ASA Journal on Uncertainty Quantification","2166-2525","2166-2525","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","1,066","2.1","('Q2', 'Q2')","0.69","1.84" +"APPLIED COGNITIVE PSYCHOLOGY","0888-4080","1099-0720","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","5,262","2.1","Q2","0.68","45.03" +"JOURNAL OF FINANCIAL MARKETS","1386-4181","1878-576X","BUSINESS, FINANCE","('SSCI',)","2,243","2.1","Q2","0.68","14.29" +"LASERS IN MEDICAL SCIENCE","0268-8921","1435-604X","('ENGINEERING, BIOMEDICAL', 'SURGERY')","('SCIE', 'SCIE')","7,094","2.1","('Q3', 'Q2')","0.68","11.37" +"MECHANICS OF TIME-DEPENDENT MATERIALS","1385-2000","1573-2738","('MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MECHANICS')","('SCIE', 'SCIE')","1,297","2.1","('Q2', 'Q3')","0.68","11.17" +"MYCOLOGICAL PROGRESS","1617-416X","1861-8952","MYCOLOGY","('SCIE',)","2,667","2.1","Q3","0.68","28.78" +"BMC Medical Genomics","","1755-8794","GENETICS & HEREDITY","('SCIE',)","4,632","2.1","Q3","0.67","100.00" +"FUNDAMENTAL & CLINICAL PHARMACOLOGY","0767-3981","1472-8206","PHARMACOLOGY & PHARMACY","('SCIE',)","2,834","2.1","Q3","0.67","7.75" +"LOCAL GOVERNMENT STUDIES","0300-3930","1743-9388","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI', 'SSCI')","1,664","2.1","('Q2', 'Q2', 'Q3')","0.67","30.20" +"Pacific Accounting Review","0114-0582","2041-5494","BUSINESS, FINANCE","('ESCI',)","805","2.1","Q2","0.67","3.64" +"Regional Studies in Marine Science","2352-4855","2352-4855","('ECOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","4,388","2.1","('Q3', 'Q2')","0.67","11.65" +"CLINICAL RADIOLOGY","0009-9260","1365-229X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","7,774","2.1","Q2","0.66","7.64" +"ClinicoEconomics and Outcomes Research","1178-6981","1178-6981","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","1,355","2.1","Q3","0.66","97.12" +"Cognitive Behaviour Therapist","1754-470X","1754-470X","PSYCHOLOGY, CLINICAL","('ESCI',)","1,584","2.1","Q2","0.66","54.96" +"Degenerative Neurological and Neuromuscular Disease","","1179-9900","CLINICAL NEUROLOGY","('ESCI',)","371","2.1","Q3","0.66","100.00" +"G3-Genes Genomes Genetics","2160-1836","2160-1836","GENETICS & HEREDITY","('SCIE',)","9,024","2.1","Q3","0.66","93.41" +"WIRELESS NETWORKS","1022-0038","1572-8196","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","4,898","2.1","('Q3', 'Q3', 'Q3')","0.66","6.63" +"Affective Science","2662-2041","2662-205X","('PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('ESCI', 'ESCI')","531","2.1","('Q2', 'Q2')","0.65","19.79" +"ALCOHOL AND ALCOHOLISM","0735-0414","1464-3502","SUBSTANCE ABUSE","('SCIE', 'SSCI')","4,346","2.1","Q3","0.65","22.34" +"European Financial Management","1354-7798","1468-036X","BUSINESS, FINANCE","('SSCI',)","2,119","2.1","Q2","0.65","37.11" +"Health Security","2326-5094","2326-5108","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","850","2.1","Q3","0.65","34.97" +"Information Discovery and Delivery","2398-6247","","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","383","2.1","Q2","0.65","4.13" +"Journal of Empirical Finance","0927-5398","1879-1727","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","3,663","2.1","('Q2', 'Q2')","0.65","15.85" +"Journal of Essential Oil Bearing Plants","0972-060X","0976-5026","PLANT SCIENCES","('SCIE',)","3,144","2.1","Q2","0.65","0.00" +"JOURNAL OF REPRODUCTIVE AND INFANT PSYCHOLOGY","0264-6838","1469-672X","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,884","2.1","Q2","0.65","15.71" +"Journal of the Association for Consumer Research","2378-1815","2378-1823","('BUSINESS', 'PSYCHOLOGY, APPLIED')","('ESCI', 'ESCI')","852","2.1","('Q3', 'Q3')","0.65","0.76" +"Trauma Surgery & Acute Care Open","","2397-5776","('CRITICAL CARE MEDICINE', 'SURGERY')","('ESCI', 'ESCI')","1,079","2.1","('Q3', 'Q2')","0.65","99.19" +"ASIAN JOURNAL OF SOCIAL PSYCHOLOGY","1367-2223","1467-839X","PSYCHOLOGY, SOCIAL","('SSCI',)","1,304","2.1","Q3","0.64","13.39" +"Human Fertility","1464-7273","1742-8149","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","1,301","2.1","('Q2', 'Q3')","0.64","12.93" +"INFANT MENTAL HEALTH JOURNAL","0163-9641","1097-0355","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","2,716","2.1","Q3","0.64","26.16" +"Integrated Pharmacy Research and Practice","2230-5254","2230-5254","PHARMACOLOGY & PHARMACY","('ESCI',)","509","2.1","Q3","0.64","97.92" +"INTERNATIONAL CLINICAL PSYCHOPHARMACOLOGY","0268-1315","1473-5857","('PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE')","1,905","2.1","('Q3', 'Q3')","0.64","18.25" +"International Journal of Financial Studies","2227-7072","2227-7072","BUSINESS, FINANCE","('ESCI',)","1,113","2.1","Q2","0.64","100.00" +"Journal of Criminal Psychology","2009-3829","2009-3829","CRIMINOLOGY & PENOLOGY","('ESCI',)","282","2.1","Q1","0.64","5.26" +"JOURNAL OF GEODYNAMICS","0264-3707","","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","3,044","2.1","Q2","0.64","20.00" +"REQUIREMENTS ENGINEERING","0947-3602","1432-010X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","781","2.1","('Q3', 'Q2')","0.64","43.33" +"World Journal of Oncology","1920-4531","1920-454X","ONCOLOGY","('ESCI',)","1,424","2.1","Q3","0.64","100.00" +"BMJ Neurology Open","","2632-6140","CLINICAL NEUROLOGY","('ESCI',)","279","2.1","Q3","0.63","100.00" +"BRAIN BEHAVIOR AND EVOLUTION","0006-8977","1421-9743","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,009","2.1","('Q3', 'Q3', 'Q1')","0.63","32.89" +"Clocks & Sleep","","2624-5175","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('ESCI', 'ESCI')","450","2.1","('Q3', 'Q3')","0.63","99.32" +"Diversity-Basel","","1424-2818","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","7,632","2.1","('Q2', 'Q3')","0.63","99.80" +"Entropy","","1099-4300","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","21,850","2.1","Q2","0.63","99.61" +"Frontiers in Computational Neuroscience","","1662-5188","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","4,002","2.1","('Q2', 'Q3')","0.63","99.05" +"Journal of Organometallic Chemistry","0022-328X","1872-8561","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","14,025","2.1","('Q3', 'Q2')","0.63","9.48" +"Journal of Tropical Medicine","1687-9686","1687-9694","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","1,160","2.1","('Q3', 'Q2')","0.63","100.00" +"Machines","","2075-1702","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","5,044","2.1","('Q3', 'Q2')","0.63","99.89" +"SIAM Journal on Imaging Sciences","1936-4954","1936-4954","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","3,798","2.1","('Q3', 'Q2', 'Q3', 'Q1')","0.63","1.97" +"Advances in Pharmacological and Pharmaceutical Sciences","2633-4682","2633-4690","PHARMACOLOGY & PHARMACY","('ESCI',)","331","2.1","Q3","0.62","100.00" +"ECONOMICS LETTERS","0165-1765","1873-7374","ECONOMICS","('SSCI',)","14,585","2.1","Q2","0.62","18.77" +"Global Knowledge Memory and Communication","2514-9342","2514-9350","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","670","2.1","Q2","0.62","3.74" +"PFG-Journal of Photogrammetry Remote Sensing and Geoinformation Science","2512-2789","2512-2819","('IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE')","451","2.1","('Q3', 'Q3')","0.62","56.67" +"PHOTOSYNTHETICA","0300-3604","1573-9058","PLANT SCIENCES","('SCIE',)","4,798","2.1","Q2","0.62","95.18" +"Romanian Reports in Physics","1221-1451","1841-8759","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","994","2.1","Q2","0.62","0.00" +"WAVE MOTION","0165-2125","1878-433X","('ACOUSTICS', 'MECHANICS', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","2,987","2.1","('Q2', 'Q3', 'Q2')","0.62","14.11" +"CATHETERIZATION AND CARDIOVASCULAR INTERVENTIONS","1522-1946","1522-726X","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","10,757","2.1","Q3","0.61","18.43" +"Digital Policy Regulation and Governance","2398-5038","2398-5046","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","451","2.1","Q2","0.61","6.48" +"Journal of Property Research","0959-9916","1466-4453","URBAN STUDIES","('ESCI',)","483","2.1","Q2","0.61","25.00" +"Journal of Web Semantics","1570-8268","1873-7749","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE', 'SCIE')","983","2.1","('Q3', 'Q3', 'Q2')","0.61","29.58" +"Journal of Zoological and Botanical Gardens","","2673-5636","BIODIVERSITY CONSERVATION","('ESCI',)","262","2.1","Q2","0.61","100.00" +"Photonics","","2304-6732","OPTICS","('SCIE',)","5,077","2.1","Q2","0.61","99.73" +"REVISTA DE SAUDE PUBLICA","0034-8910","1518-8787","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","4,670","2.1","Q3","0.61","96.55" +"TETRAHEDRON","0040-4020","1464-5416","CHEMISTRY, ORGANIC","('SCIE',)","33,434","2.1","Q2","0.61","10.93" +"BIOLOGICAL BULLETIN","0006-3185","1939-8697","('BIOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","4,383","2.1","('Q2', 'Q2')","0.60","2.94" +"BMC Rheumatology","","2520-1026","RHEUMATOLOGY","('ESCI',)","798","2.1","Q3","0.60","99.48" +"Cogent Engineering","2331-1916","2331-1916","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","3,239","2.1","Q2","0.60","97.44" +"Health Science Reports","","2398-8835","('MEDICINE, GENERAL & INTERNAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","2,046","2.1","('Q2', 'Q3')","0.60","79.78" +"JOM","1047-4838","1543-1851","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING', 'MINERALOGY', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","15,422","2.1","('Q3', 'Q2', 'Q2', 'Q2')","0.60","9.35" +"JOURNAL OF EVALUATION IN CLINICAL PRACTICE","1356-1294","1365-2753","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS', 'MEDICINE, GENERAL & INTERNAL')","('SCIE', 'SCIE', 'SCIE')","5,551","2.1","('Q3', 'Q4', 'Q2')","0.60","32.58" +"JOURNAL OF ULTRASOUND IN MEDICINE","0278-4297","1550-9613","('ACOUSTICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","8,702","2.1","('Q2', 'Q2')","0.60","11.83" +"Applied Clinical Informatics","1869-0327","1869-0327","MEDICAL INFORMATICS","('SCIE',)","2,062","2.1","Q4","0.59","26.90" +"Journal of Plant Diseases and Protection","1861-3829","1861-3837","('AGRICULTURE, MULTIDISCIPLINARY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","1,880","2.1","('Q2', 'Q2')","0.59","18.20" +"PLANTA MEDICA","0032-0943","1439-0221","('CHEMISTRY, MEDICINAL', 'INTEGRATIVE & COMPLEMENTARY MEDICINE', 'PHARMACOLOGY & PHARMACY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","13,284","2.1","('Q3', 'Q2', 'Q3', 'Q2')","0.59","7.07" +"Tourism Planning & Development","2156-8316","2156-8324","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,264","2.1","Q2","0.59","14.63" +"Urban Science","","2413-8851","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('ESCI', 'ESCI', 'ESCI', 'ESCI', 'ESCI')","1,380","2.1","('Q3', 'Q3', 'Q2', 'Q3', 'Q2')","0.59","98.70" +"HEREDITAS","1601-5223","1601-5223","GENETICS & HEREDITY","('SCIE',)","1,912","2.1","Q3","0.58","100.00" +"INTERNATIONAL JOURNAL OF AUDITING","1090-6738","1099-1123","BUSINESS, FINANCE","('SSCI',)","1,179","2.1","Q2","0.58","26.21" +"JOURNAL OF ENVIRONMENTAL PATHOLOGY TOXICOLOGY AND ONCOLOGY","0731-8898","2162-6537","TOXICOLOGY","('SCIE',)","995","2.1","Q3","0.58","1.18" +"JOURNAL OF EVOLUTIONARY BIOLOGY","1010-061X","1420-9101","('ECOLOGY', 'EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","9,444","2.1","('Q3', 'Q3', 'Q3')","0.58","42.32" +"Journal of Huntingtons Disease","1879-6397","1879-6400","NEUROSCIENCES","('ESCI',)","716","2.1","Q3","0.58","49.00" +"Journal of Management Control","2191-4761","2191-477X","MANAGEMENT","('ESCI',)","450","2.1","Q3","0.58","57.78" +"JOURNAL OF RISK AND INSURANCE","0022-4367","1539-6975","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","1,984","2.1","('Q2', 'Q2')","0.58","30.43" +"Sleep and Breathing","1520-9512","1522-1709","('CLINICAL NEUROLOGY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","5,438","2.1","('Q3', 'Q3')","0.58","15.92" +"Statistical Analysis and Data Mining","1932-1864","1932-1872","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","764","2.1","('Q3', 'Q3', 'Q1')","0.58","24.24" +"IET Smart Cities","","2631-7680","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI', 'ESCI')","191","2.1","('Q3', 'Q3', 'Q3')","0.57","87.50" +"International Journal of General Medicine","","1178-7074","MEDICINE, GENERAL & INTERNAL","('SCIE',)","5,697","2.1","Q2","0.57","98.57" +"Journal of Agromedicine","1059-924X","1545-0813","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","1,140","2.1","Q3","0.57","20.41" +"JOURNAL OF ANTIBIOTICS","0021-8820","1881-1469","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'IMMUNOLOGY', 'MICROBIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,687","2.1","('Q3', 'Q4', 'Q3', 'Q3')","0.57","9.40" +"Proteome Science","","1477-5956","BIOCHEMICAL RESEARCH METHODS","('SCIE',)","793","2.1","Q3","0.57","100.00" +"PSYCHIATRY RESEARCH-NEUROIMAGING","0925-4927","1872-7506","('CLINICAL NEUROLOGY', 'NEUROIMAGING', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","5,209","2.1","('Q3', 'Q3', 'Q3')","0.57","22.54" +"CLINICAL HEMORHEOLOGY AND MICROCIRCULATION","1386-0291","1875-8622","('HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","2,776","2.1","('Q3', 'Q3')","0.56","8.45" +"DIAGNOSTIC MICROBIOLOGY AND INFECTIOUS DISEASE","0732-8893","1879-0070","('INFECTIOUS DISEASES', 'MICROBIOLOGY')","('SCIE', 'SCIE')","6,487","2.1","('Q3', 'Q3')","0.56","25.59" +"DRUG AND CHEMICAL TOXICOLOGY","0148-0545","1525-6014","('CHEMISTRY, MULTIDISCIPLINARY', 'PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,847","2.1","('Q3', 'Q3', 'Q3')","0.56","1.18" +"International Journal of Sport Policy and Politics","1940-6940","1940-6959","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,199","2.1","Q2","0.56","39.71" +"JOURNAL OF HYDRAULIC ENGINEERING","0733-9429","1943-7900","('ENGINEERING, CIVIL', 'ENGINEERING, MECHANICAL', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","11,023","2.1","('Q2', 'Q2', 'Q3')","0.56","7.06" +"Mine Water and the Environment","1025-9112","1616-1068","WATER RESOURCES","('SCIE',)","1,687","2.1","Q3","0.56","20.92" +"Radiology and Oncology","1318-2099","1581-3207","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","1,502","2.1","('Q3', 'Q2')","0.56","97.81" +"Behavior Analysis in Practice","1998-1929","2196-8934","PSYCHOLOGY, CLINICAL","('ESCI',)","1,969","2.1","Q2","0.55","5.59" +"Cells & Development","2667-2901","2667-2901","DEVELOPMENTAL BIOLOGY","('SCIE',)","170","2.1","Q3","0.55","66.37" +"GENERAL RELATIVITY AND GRAVITATION","0001-7701","1572-9532","('ASTRONOMY & ASTROPHYSICS', 'PHYSICS, MULTIDISCIPLINARY', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE', 'SCIE')","7,451","2.1","('Q2', 'Q2', 'Q3')","0.55","17.99" +"Nature Conservation-Bulgaria","1314-6947","1314-3301","BIODIVERSITY CONSERVATION","('SCIE',)","668","2.1","Q2","0.55","99.04" +"RENDICONTI LINCEI-SCIENZE FISICHE E NATURALI","2037-4631","1720-0776","MULTIDISCIPLINARY SCIENCES","('SCIE',)","1,462","2.1","Q2","0.55","33.33" +"American Journal of Mens Health","1557-9883","1557-9891","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","3,063","2.1","Q3","0.54","92.20" +"Annals of Thoracic Medicine","1817-1737","1998-3557","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","1,002","2.1","('Q3', 'Q3')","0.54","94.79" +"Bone Reports","2352-1872","2352-1872","ENDOCRINOLOGY & METABOLISM","('ESCI',)","1,261","2.1","Q3","0.54","93.80" +"International Journal of Nephrology and Renovascular Disease","1178-7058","1178-7058","UROLOGY & NEPHROLOGY","('ESCI',)","978","2.1","Q2","0.54","96.00" +"Journal of the Intensive Care Society","1751-1437","1751-1437","CRITICAL CARE MEDICINE","('ESCI',)","907","2.1","Q3","0.54","13.33" +"Journal of Vibration Engineering & Technologies","2523-3920","2523-3939","('ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE')","1,987","2.1","('Q2', 'Q3')","0.54","5.92" +"PHOTOGRAMMETRIC RECORD","0031-868X","1477-9730","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","750","2.1","('Q2', 'Q3', 'Q3', 'Q3')","0.54","18.33" +"RADIOLOGIC CLINICS OF NORTH AMERICA","0033-8389","1557-8275","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","2,465","2.1","Q2","0.54","0.86" +"Research in Pharmaceutical Sciences","1735-5362","1735-9414","CHEMISTRY, MEDICINAL","('ESCI',)","1,847","2.1","Q3","0.54","96.69" +"Rheumatology Advances in Practice","","2514-1775","RHEUMATOLOGY","('ESCI',)","635","2.1","Q3","0.54","93.30" +"ACM Transactions on Storage","1553-3077","1553-3093","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","646","2.1","('Q3', 'Q2')","0.53","2.15" +"Canadian Respiratory Journal","1198-2241","1916-7245","RESPIRATORY SYSTEM","('SCIE',)","1,728","2.1","Q3","0.53","99.32" +"CURRENT OPINION IN UROLOGY","0963-0643","1473-6586","UROLOGY & NEPHROLOGY","('SCIE',)","2,113","2.1","Q2","0.53","4.42" +"IEEE Photonics Journal","1943-0655","1943-0647","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","10,168","2.1","('Q3', 'Q2', 'Q3')","0.53","99.32" +"Iranian Journal of Basic Medical Sciences","2008-3866","2008-3874","('MEDICINE, RESEARCH & EXPERIMENTAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","4,268","2.1","('Q3', 'Q3')","0.53","0.00" +"JOURNAL OF INTERVENTIONAL CARDIAC ELECTROPHYSIOLOGY","1383-875X","1572-8595","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","3,108","2.1","Q3","0.53","21.51" +"Telecom","","2673-4001","TELECOMMUNICATIONS","('ESCI',)","210","2.1","Q3","0.53","100.00" +"BIOCHEMICAL GENETICS","0006-2928","1573-4927","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","1,903","2.1","('Q4', 'Q3')","0.52","7.17" +"Journal of Thoracic Disease","2072-1439","2077-6624","RESPIRATORY SYSTEM","('SCIE',)","15,684","2.1","Q3","0.52","97.85" +"STEROIDS","0039-128X","1878-5867","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","5,894","2.1","('Q4', 'Q3')","0.52","12.58" +"STRUCTURAL CHEMISTRY","1040-0400","1572-9001","('CHEMISTRY, MULTIDISCIPLINARY', 'CHEMISTRY, PHYSICAL', 'CRYSTALLOGRAPHY')","('SCIE', 'SCIE', 'SCIE')","3,501","2.1","('Q3', 'Q3', 'Q2')","0.52","8.50" +"SWISS MEDICAL WEEKLY","1424-7860","1424-3997","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,979","2.1","Q2","0.52","96.09" +"BLOOD CELLS MOLECULES AND DISEASES","1079-9796","1096-0961","HEMATOLOGY","('SCIE',)","2,938","2.1","Q3","0.51","12.70" +"Comprehensive Psychoneuroendocrinology","2666-4976","2666-4976","('ENDOCRINOLOGY & METABOLISM', 'NEUROSCIENCES', 'PSYCHIATRY')","('ESCI', 'ESCI', 'ESCI')","293","2.1","('Q3', 'Q3', 'Q3')","0.51","95.45" +"EUROPEAN JOURNAL OF CANCER PREVENTION","0959-8278","1473-5709","ONCOLOGY","('SCIE',)","2,668","2.1","Q3","0.51","12.92" +"Gerontology and Geriatric Medicine","","2333-7214","GERIATRICS & GERONTOLOGY","('ESCI',)","1,246","2.1","Q3","0.51","91.13" +"JOURNAL OF BIOSCIENCES","0250-5991","0973-7138","BIOLOGY","('SCIE',)","3,635","2.1","Q2","0.51","2.46" +"JOURNAL OF THE RENIN-ANGIOTENSIN-ALDOSTERONE SYSTEM","1470-3203","1752-8976","PERIPHERAL VASCULAR DISEASE","('SCIE',)","896","2.1","Q3","0.51","100.00" +"Proceedings of the ACM on Measurement and Analysis of Computing Systems","","2476-1249","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('ESCI', 'ESCI')","728","2.1","('Q3', 'Q3')","0.51","2.07" +"EUROPEAN NEUROLOGY","0014-3022","1421-9913","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","3,451","2.1","('Q3', 'Q3')","0.50","20.12" +"International Journal for Computational Methods in Engineering Science & Mechanics","1550-2287","1550-2295","MECHANICS","('ESCI',)","530","2.1","Q3","0.50","0.87" +"Journal of Clinical and Translational Science","","2059-8661","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,419","2.1","Q3","0.50","99.64" +"Journal of Macromolecular Science Part A-Pure and Applied Chemistry","1060-1325","1520-5738","POLYMER SCIENCE","('SCIE',)","2,970","2.1","Q3","0.50","0.00" +"JOURNAL OF SOLAR ENERGY ENGINEERING-TRANSACTIONS OF THE ASME","0199-6231","1528-8986","('ENERGY & FUELS', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","3,531","2.1","('Q3', 'Q2')","0.50","0.42" +"Tobacco Use Insights","1179-173X","1179-173X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","238","2.1","Q3","0.50","94.20" +"Advances in Meteorology","1687-9309","1687-9317","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","2,971","2.1","Q3","0.49","98.73" +"AMERICAN JOURNAL OF HEALTH-SYSTEM PHARMACY","1079-2082","1535-2900","PHARMACOLOGY & PHARMACY","('SCIE',)","6,317","2.1","Q3","0.49","10.97" +"Early Intervention in Psychiatry","1751-7885","1751-7893","PSYCHIATRY","('SCIE', 'SSCI')","3,196","2.1","Q3","0.49","32.21" +"Frontiers in Fungal Biology","","2673-6128","MYCOLOGY","('ESCI',)","327","2.1","Q3","0.49","100.00" +"INDIAN JOURNAL OF MICROBIOLOGY","0046-8991","0973-7715","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","2,426","2.1","('Q3', 'Q3')","0.49","4.74" +"INTERNATIONAL JOURNAL OF PHOTOENERGY","1110-662X","1687-529X","('CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'OPTICS', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","3,509","2.1","('Q3', 'Q3', 'Q2', 'Q2')","0.49","100.00" +"Journal of Earthquake and Tsunami","1793-4311","1793-7116","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","654","2.1","Q2","0.49","1.09" +"JOURNAL OF MOLECULAR EVOLUTION","0022-2844","1432-1432","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","7,433","2.1","('Q4', 'Q3', 'Q3')","0.49","38.06" +"Journal of Sustainable Development of Energy Water and Environment Systems-JSDEWES","1848-9257","1848-9257","ENVIRONMENTAL SCIENCES","('ESCI',)","711","2.1","Q3","0.49","92.52" +"MICROBES AND ENVIRONMENTS","1342-6311","1347-4405","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","2,322","2.1","('Q3', 'Q3')","0.49","99.24" +"Proteomics Clinical Applications","1862-8346","1862-8354","BIOCHEMICAL RESEARCH METHODS","('SCIE',)","2,229","2.1","Q3","0.49","20.75" +"SEED SCIENCE RESEARCH","0960-2585","1475-2735","PLANT SCIENCES","('SCIE',)","1,900","2.1","Q2","0.49","19.48" +"Sustainable Water Resources Management","2363-5037","2363-5045","WATER RESOURCES","('ESCI',)","1,892","2.1","Q3","0.49","6.16" +"SYMBIOSIS","0334-5114","1878-7665","MICROBIOLOGY","('SCIE',)","2,131","2.1","Q3","0.49","12.26" +"Trends in Psychiatry and Psychotherapy","2237-6089","2238-0019","PSYCHIATRY","('ESCI',)","800","2.1","Q3","0.49","81.67" +"Geriatrics","","2308-3417","GERIATRICS & GERONTOLOGY","('ESCI',)","1,410","2.1","Q3","0.48","99.46" +"LEUKEMIA RESEARCH","0145-2126","1873-5835","('HEMATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","5,338","2.1","('Q3', 'Q3')","0.48","16.61" +"NUTRITION IN CLINICAL PRACTICE","0884-5336","1941-2452","NUTRITION & DIETETICS","('SCIE',)","4,524","2.1","Q3","0.48","14.84" +"OXIDATION OF METALS","0030-770X","1573-4889","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","4,123","2.1","Q2","0.48","23.73" +"SPE RESERVOIR EVALUATION & ENGINEERING","1094-6470","1930-0212","('ENERGY & FUELS', 'ENGINEERING, PETROLEUM', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","3,161","2.1","('Q3', 'Q2', 'Q3')","0.48","0.00" +"SYSTEMS & CONTROL LETTERS","0167-6911","1872-7956","('AUTOMATION & CONTROL SYSTEMS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","8,337","2.1","('Q3', 'Q2')","0.48","25.21" +"Annals of Gastroenterology","1108-7471","1792-7463","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","2,518","2.1","Q3","0.47","95.27" +"Clinical Endoscopy","2234-2400","2234-2443","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","1,923","2.1","Q3","0.47","97.30" +"EURO Journal on Transportation and Logistics","2192-4376","2192-4384","('OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","643","2.1","('Q2', 'Q3')","0.47","97.06" +"IEEE TRANSACTIONS ON MAGNETICS","0018-9464","1941-0069","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","25,205","2.1","('Q3', 'Q3')","0.47","4.85" +"IEEE TRANSACTIONS ON NANOTECHNOLOGY","1536-125X","1941-0085","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","3,675","2.1","('Q3', 'Q3', 'Q3', 'Q3')","0.47","8.41" +"International Journal of Applied Glass Science","2041-1286","2041-1294","MATERIALS SCIENCE, CERAMICS","('SCIE',)","1,337","2.1","Q2","0.47","23.38" +"JOURNAL OF FOOD PROTECTION","0362-028X","1944-9097","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","12,786","2.1","('Q3', 'Q3')","0.47","96.27" +"Lighting Research & Technology","1477-1535","1477-0938","('CONSTRUCTION & BUILDING TECHNOLOGY', 'OPTICS')","('SCIE', 'SCIE')","1,975","2.1","('Q2', 'Q2')","0.47","20.74" +"METROLOGIA","0026-1394","1681-7575","('INSTRUMENTS & INSTRUMENTATION', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","3,882","2.1","('Q2', 'Q3')","0.47","44.49" +"Universal Access in the Information Society","1615-5289","1615-5297","('COMPUTER SCIENCE, CYBERNETICS', 'ERGONOMICS')","('SCIE', 'SSCI')","2,073","2.1","('Q3', 'Q3')","0.47","34.97" +"Annals of Leisure Research","1174-5398","2159-6816","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,035","2.1","Q2","0.46","22.43" +"AQUA-Water Infrastructure Ecosystems and Society","2709-8028","2709-8036","('ENGINEERING, CIVIL', 'WATER RESOURCES')","('SCIE', 'SCIE')","483","2.1","('Q2', 'Q3')","0.46","96.57" +"BRAZILIAN JOURNAL OF MICROBIOLOGY","1517-8382","1678-4405","MICROBIOLOGY","('SCIE',)","6,655","2.1","Q3","0.46","4.89" +"Cardiovascular Diagnosis and Therapy","2223-3652","2223-3660","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","2,531","2.1","Q3","0.46","93.56" +"FLAVOUR AND FRAGRANCE JOURNAL","0882-5734","1099-1026","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","3,614","2.1","('Q3', 'Q3')","0.46","8.93" +"International Journal of Interactive Design and Manufacturing - IJIDeM","1955-2513","1955-2505","ENGINEERING, MANUFACTURING","('ESCI',)","2,278","2.1","Q3","0.46","7.05" +"JOURNAL OF CLINICAL PHARMACY AND THERAPEUTICS","0269-4727","1365-2710","PHARMACOLOGY & PHARMACY","('SCIE',)","4,096","2.1","Q3","0.46","76.39" +"JOURNAL OF MOLECULAR MODELING","1610-2940","0948-5023","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CHEMISTRY, MULTIDISCIPLINARY', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,478","2.1","('Q4', 'Q3', 'Q3', 'Q3')","0.46","3.88" +"POLYMERS & POLYMER COMPOSITES","0967-3911","1478-2391","('MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MATERIALS SCIENCE, COMPOSITES', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","2,359","2.1","('Q2', 'Q3', 'Q3')","0.46","47.98" +"ADVANCES IN STRUCTURAL ENGINEERING","1369-4332","2048-4011","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","5,236","2.1","('Q2', 'Q2')","0.45","2.59" +"International Journal of Entrepreneurship and Innovation","1465-7503","2043-6882","BUSINESS","('ESCI',)","908","2.1","Q3","0.45","36.28" +"Journal of Advanced Dielectrics","2010-135X","2010-1368","PHYSICS, APPLIED","('ESCI',)","1,121","2.1","Q3","0.45","84.52" +"Journal of Entrepreneurship","0971-3557","0973-0745","BUSINESS","('ESCI',)","474","2.1","Q3","0.45","14.93" +"Vasa-European Journal of Vascular Medicine","0301-1526","1664-2872","PERIPHERAL VASCULAR DISEASE","('SCIE',)","1,135","2.1","Q3","0.45","15.65" +"Journal of Biochemistry","0021-924X","1756-2651","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","7,237","2.1","Q4","0.44","10.13" +"JOURNAL OF EUKARYOTIC MICROBIOLOGY","1066-5234","1550-7408","MICROBIOLOGY","('SCIE',)","2,898","2.1","Q3","0.44","25.15" +"Journal of Indian Business Research","1755-4195","1755-4209","BUSINESS","('ESCI',)","550","2.1","Q3","0.44","0.00" +"ACM Journal on Emerging Technologies in Computing Systems","1550-4832","1550-4840","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","979","2.1","('Q3', 'Q3', 'Q3')","0.43","0.61" +"International Journal of Particle Therapy","","2331-5180","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('ESCI', 'ESCI')","488","2.1","('Q3', 'Q2')","0.43","83.90" +"South Asian Journal of Business Studies","2398-628X","2398-6298","BUSINESS","('ESCI',)","561","2.1","Q3","0.43","0.00" +"ACTA CARDIOLOGICA","0001-5385","1784-973X","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,594","2.1","Q3","0.42","4.53" +"Clinical and Experimental Vaccine Research","2287-3651","2287-366X","IMMUNOLOGY","('ESCI',)","516","2.1","Q4","0.42","100.00" +"EARTH","","2673-4834","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","334","2.1","('Q3', 'Q3')","0.42","100.00" +"European Journal of Transport and Infrastructure Research","1567-7133","1567-7141","TRANSPORTATION","('SSCI',)","677","2.1","Q3","0.42","85.71" +"Stroke-Vascular and Interventional Neurology","2694-5746","2694-5746","('CLINICAL NEUROLOGY', 'PERIPHERAL VASCULAR DISEASE')","('ESCI', 'ESCI')","348","2.1","('Q3', 'Q3')","0.42","88.04" +"AIDS Research and Therapy","1742-6405","1742-6405","INFECTIOUS DISEASES","('SCIE',)","1,381","2.1","Q3","0.41","99.61" +"IEEE Canadian Journal of Electrical and Computer Engineering","","2694-1783","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","197","2.1","('Q3', 'Q3')","0.41","3.13" +"International Journal of Intelligent Robotics and Applications","2366-5971","2366-598X","ROBOTICS","('ESCI',)","538","2.1","Q3","0.41","10.49" +"International Journal of Protective Structures","2041-4196","2041-420X","ENGINEERING, CIVIL","('ESCI',)","804","2.1","Q2","0.41","20.79" +"Journal of Blood Medicine","1179-2736","1179-2736","HEMATOLOGY","('ESCI',)","1,083","2.1","Q3","0.41","97.96" +"Journal of Intelligent Systems","0334-1860","2191-026X","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","916","2.1","Q3","0.41","97.18" +"Advances in Clinical and Experimental Medicine","1899-5276","2451-2680","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","3,302","2.1","Q3","0.40","94.51" +"International Journal of Advanced Robotic Systems","1729-8814","1729-8814","ROBOTICS","('SCIE',)","4,209","2.1","Q3","0.40","90.38" +"Open Chemistry","2391-5420","2391-5420","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","2,080","2.1","Q3","0.40","97.97" +"Applied and Environmental Soil Science","1687-7667","1687-7675","SOIL SCIENCE","('ESCI',)","1,206","2.1","Q3","0.39","100.00" +"BioMedicine-Taiwan","2211-8020","2211-8039","MEDICINE, GENERAL & INTERNAL","('ESCI',)","871","2.1","Q2","0.39","96.51" +"Current Behavioral Neuroscience Reports","","2196-2979","('NEUROSCIENCES', 'PSYCHIATRY')","('ESCI', 'ESCI')","529","2.1","('Q3', 'Q3')","0.39","21.43" +"FULLERENES NANOTUBES AND CARBON NANOSTRUCTURES","1536-383X","1536-4046","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,427","2.1","('Q3', 'Q3', 'Q3', 'Q2')","0.39","0.79" +"JOURNAL OF BIOACTIVE AND COMPATIBLE POLYMERS","0883-9115","1530-8030","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MATERIALS SCIENCE, BIOMATERIALS', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","1,085","2.1","('Q3', 'Q4', 'Q3')","0.39","0.00" +"ACTA AGROBOTANICA","0065-0951","2300-357X","PLANT SCIENCES","('ESCI',)","530","2.1","Q2","0.38","78.38" +"Advances in Building Energy Research","1751-2549","1756-2201","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","568","2.1","Q2","0.38","14.86" +"COMPOSITE INTERFACES","0927-6440","1568-5543","MATERIALS SCIENCE, COMPOSITES","('SCIE',)","1,970","2.1","Q3","0.38","3.00" +"International Journal of Building Pathology and Adaptation","2398-4708","2398-4708","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","765","2.1","Q2","0.38","9.26" +"Journal of African Business","1522-8916","1522-9076","BUSINESS","('ESCI',)","972","2.1","Q3","0.38","9.92" +"Journal of Gastrointestinal and Liver Diseases","1841-8724","1842-1121","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","1,624","2.1","Q3","0.38","96.23" +"Journal of the Egyptian National Cancer Institute","1110-0362","2589-0409","ONCOLOGY","('ESCI',)","671","2.1","Q3","0.38","99.28" +"SOLID STATE COMMUNICATIONS","0038-1098","1879-2766","PHYSICS, CONDENSED MATTER","('SCIE',)","15,228","2.1","Q3","0.38","4.50" +"Biofuels-UK","1759-7269","1759-7277","ENERGY & FUELS","('SCIE',)","1,962","2.1","Q3","0.37","4.32" +"CHEMICAL PAPERS","0366-6352","2585-7290","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","7,026","2.1","Q3","0.37","6.30" +"Frontiers in Soil Science","","2673-8619","SOIL SCIENCE","('ESCI',)","234","2.1","Q3","0.37","99.30" +"Journal of Sulfur Chemistry","1741-5993","1741-6000","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","1,115","2.1","Q3","0.37","2.74" +"Process Integration and Optimization for Sustainability","2509-4238","2509-4246","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI', 'ESCI', 'ESCI')","556","2.1","('Q3', 'Q3', 'Q3', 'Q3', 'Q4')","0.37","9.40" +"Electronic Materials Letters","1738-8090","2093-6788","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","1,678","2.1","Q3","0.36","3.33" +"Environmental Progress & Sustainable Energy","1944-7442","1944-7450","('ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,023","2.1","('Q3', 'Q3', 'Q3', 'Q4')","0.36","2.11" +"Future Virology","1746-0794","1746-0808","VIROLOGY","('SCIE',)","1,247","2.1","Q3","0.36","10.76" +"IEEE TECHNOLOGY AND SOCIETY MAGAZINE","0278-0097","1937-416X","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","716","2.1","Q3","0.36","0.00" +"Journal of Organization Design","","2245-408X","('BUSINESS', 'MANAGEMENT')","('ESCI', 'ESCI')","517","2.1","('Q3', 'Q3')","0.36","55.77" +"JOURNAL OF PLASTIC FILM & SHEETING","8756-0879","1530-8014","MATERIALS SCIENCE, COATINGS & FILMS","('SCIE',)","680","2.1","Q3","0.36","4.84" +"JOURNAL OF THE AIR & WASTE MANAGEMENT ASSOCIATION","1096-2247","2162-2906","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE')","6,285","2.1","('Q3', 'Q3', 'Q3')","0.36","17.73" +"SUPRAMOLECULAR CHEMISTRY","1061-0278","1029-0478","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","1,556","2.1","Q3","0.36","9.64" +"CURRENT DRUG METABOLISM","1389-2002","1875-5453","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","4,301","2.1","('Q4', 'Q3')","0.35","0.78" +"CUTIS","0011-4162","2326-6929","DERMATOLOGY","('SCIE',)","2,049","2.1","Q3","0.35","2.61" +"Intelligent Buildings International","1750-8975","1756-6932","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","446","2.1","Q2","0.35","21.33" +"PLASTICS RUBBER AND COMPOSITES","1465-8011","1743-2898","('MATERIALS SCIENCE, COMPOSITES', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","1,404","2.1","('Q3', 'Q3')","0.35","5.22" +"GOLD BULLETIN","2364-821X","2190-7579","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","1,058","2.1","('Q3', 'Q3', 'Q3')","0.34","9.80" +"JOURNAL OF NANOPARTICLE RESEARCH","1388-0764","1572-896X","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","12,527","2.1","('Q3', 'Q3', 'Q3')","0.33","5.64" +"Current Stem Cell Research & Therapy","1574-888X","2212-3946","('CELL & TISSUE ENGINEERING', 'CELL BIOLOGY')","('SCIE', 'SCIE')","1,825","2.1","('Q4', 'Q4')","0.32","0.42" +"OZONE-SCIENCE & ENGINEERING","0191-9512","1547-6545","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","2,177","2.1","('Q3', 'Q3')","0.32","6.98" +"SURFACE SCIENCE","0039-6028","1879-2758","('CHEMISTRY, PHYSICAL', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","15,801","2.1","('Q3', 'Q3')","0.32","20.54" +"Frontiers in Communications and Networks","","2673-530X","TELECOMMUNICATIONS","('ESCI',)","237","2.1","Q3","0.31","100.00" +"EUROPEAN JOURNAL OF HISTOCHEMISTRY","1121-760X","2038-8306","CELL BIOLOGY","('SCIE',)","1,282","2.1","Q4","0.30","92.81" +"International Journal of Endocrinology and Metabolism","1726-913X","1726-9148","ENDOCRINOLOGY & METABOLISM","('ESCI',)","1,116","2.1","Q3","0.30","100.00" +"Immuno","","2673-5601","IMMUNOLOGY","('ESCI',)","181","2.1","Q4","0.29","100.00" +"NUCLEUS-INDIA","0029-568X","0976-7975","CELL BIOLOGY","('ESCI',)","436","2.1","Q4","0.29","5.45" +"Chinese Clinical Oncology","2304-3865","2304-3873","ONCOLOGY","('ESCI',)","1,219","2.1","Q3","0.28","90.58" +"Energy Systems-Optimization Modeling Simulation and Economic Aspects","1868-3967","1868-3975","ENERGY & FUELS","('ESCI',)","901","2.1","Q3","0.28","19.26" +"Journal of Hazardous Toxic and Radioactive Waste","2153-5493","2153-5515","ENGINEERING, ENVIRONMENTAL","('ESCI',)","1,055","2.1","Q3","0.25","0.91" +"CATALYSIS SURVEYS FROM ASIA","1571-1013","1574-9266","CHEMISTRY, PHYSICAL","('SCIE',)","954","2.1","Q3","0.24","1.02" +"MACHINE TRANSLATION","0922-6567","1573-0573","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","332","2.1","Q3","0.24","26.47" +"PROGRESS IN REACTION KINETICS AND MECHANISM","1468-6783","1471-406X","CHEMISTRY, PHYSICAL","('SCIE',)","292","2.1","Q3","0.23","71.43" +"Geodesy and Cartography","2080-6736","2300-2581","REMOTE SENSING","('ESCI',)","210","2.1","Q3","0.07","90.00" +"MECHANICAL ENGINEERING","0025-6501","1943-5649","ENGINEERING, MECHANICAL","('SCIE',)","1,128","2.1","Q2","0.05","40.00" +"POETICS","0304-422X","1872-7514","('LITERATURE', 'SOCIOLOGY')","('AHCI', 'SSCI')","2,661","2.0","('N/A', 'Q2')","6.30","29.89" +"Heritage","2571-9408","2571-9408","('HUMANITIES, MULTIDISCIPLINARY', 'MULTIDISCIPLINARY SCIENCES')","('ESCI', 'ESCI')","1,806","2.0","('N/A', 'Q2')","4.46","99.66" +"CoDesign-International Journal of CoCreation in Design and the Arts","1571-0882","1745-3755","ART","('AHCI',)","1,068","2.0","","4.30","35.21" +"Phenomenology and the Cognitive Sciences","1568-7759","1572-8676","PHILOSOPHY","('AHCI',)","1,923","2.0","","3.53","54.98" +"JOURNAL OF BROADCASTING & ELECTRONIC MEDIA","0883-8151","1550-6878","COMMUNICATION","('SSCI',)","2,778","2.0","Q2","3.42","7.76" +"Journal of Financial Regulation","2053-4833","2053-4841","LAW","('ESCI',)","202","2.0","Q1","2.85","46.88" +"Journal of Conservation and Museum Studies","2049-4572","1364-0429","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","56","2.0","","2.73","100.00" +"International Journal of Heritage Studies","1352-7258","1470-3610","('HUMANITIES, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('AHCI', 'SSCI')","2,212","2.0","('N/A', 'Q1')","2.67","38.57" +"BULLETIN OF INDONESIAN ECONOMIC STUDIES","0007-4918","1472-7234","('AREA STUDIES', 'ECONOMICS')","('SSCI', 'SSCI')","613","2.0","('Q1', 'Q2')","2.38","17.50" +"JOURNAL OF CONTEMPORARY ASIA","0047-2336","1752-7554","AREA STUDIES","('SSCI',)","1,279","2.0","Q1","2.26","16.39" +"East European Politics","2159-9165","2159-9173","('AREA STUDIES', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","806","2.0","('Q1', 'Q2')","2.23","39.18" +"Campus Virtuales","2255-1514","2255-1514","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","328","2.0","Q2","2.02","66.67" +"NORTHWESTERN UNIVERSITY LAW REVIEW","0029-3571","","LAW","('SSCI',)","1,411","2.0","Q1","1.98","0.00" +"RADIOCARBON","0033-8222","1945-5755","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","7,627","2.0","Q2","1.83","54.89" +"Journal of Mathematics and Computer Science-JMCS","2008-949X","2008-949X","MATHEMATICS","('ESCI',)","788","2.0","Q1","1.80","98.24" +"Ornithology","0004-8038","2732-4613","ORNITHOLOGY","('SCIE',)","317","2.0","Q1","1.79","12.88" +"BULLETIN OF THE AMERICAN MATHEMATICAL SOCIETY","0273-0979","1088-9485","MATHEMATICS","('SCIE',)","5,987","2.0","Q1","1.74","93.22" +"CRITICAL INQUIRY","0093-1896","1539-7858","CULTURAL STUDIES","('AHCI', 'SSCI')","4,261","2.0","Q1","1.73","0.00" +"Demonstratio Mathematica","0420-1213","2391-4661","MATHEMATICS","('SCIE',)","901","2.0","Q1","1.68","98.46" +"Analysis and Applications","0219-5305","1793-6861","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","800","2.0","('Q1', 'Q1')","1.56","2.22" +"Review of European Comparative & International Environmental Law","2050-0386","2050-0394","('ENVIRONMENTAL STUDIES', 'LAW')","('SSCI', 'SSCI')","748","2.0","('Q3', 'Q1')","1.56","52.53" +"International Journal of Multilingualism","1479-0718","1747-7530","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","1,482","2.0","('Q2', 'N/A', 'Q1')","1.50","17.47" +"JOURNAL OF ANTHROPOLOGICAL ARCHAEOLOGY","0278-4165","1090-2686","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","2,868","2.0","('Q1', 'N/A')","1.47","28.05" +"Journal of Semantics","0167-5133","1477-4593","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","802","2.0","('N/A', 'Q1')","1.44","38.46" +"Trends in Organized Crime","1084-4791","1936-4830","CRIMINOLOGY & PENOLOGY","('SSCI',)","656","2.0","Q1","1.44","49.11" +"RESEARCH AND PRACTICE FOR PERSONS WITH SEVERE DISABILITIES","1540-7969","2169-2408","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","805","2.0","('Q1', 'Q2')","1.43","6.67" +"ZDM-Mathematics Education","1863-9690","1863-9704","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,232","2.0","Q2","1.38","40.76" +"TOPICS IN EARLY CHILDHOOD SPECIAL EDUCATION","0271-1214","1538-4845","EDUCATION, SPECIAL","('SSCI',)","1,153","2.0","Q1","1.36","1.28" +"Clinical Neuropsychiatry","1724-4935","2385-0787","('CLINICAL NEUROLOGY', 'PSYCHIATRY')","('ESCI', 'ESCI')","876","2.0","('Q3', 'Q3')","1.34","0.00" +"TIJDSCHRIFT VOOR ECONOMISCHE EN SOCIALE GEOGRAFIE","0040-747X","1467-9663","('ECONOMICS', 'GEOGRAPHY')","('SSCI', 'SSCI')","1,896","2.0","('Q2', 'Q2')","1.33","49.00" +"Journal of Aging & Social Policy","0895-9420","1545-0821","GERONTOLOGY","('SSCI',)","1,268","2.0","Q2","1.32","16.59" +"ANNALS OF ANATOMY-ANATOMISCHER ANZEIGER","0940-9602","1618-0402","ANATOMY & MORPHOLOGY","('SCIE',)","3,190","2.0","Q2","1.28","21.79" +"Feminist Legal Studies","0966-3622","1572-8455","('LAW', 'WOMENS STUDIES')","('SSCI', 'SSCI')","531","2.0","('Q1', 'Q1')","1.26","54.00" +"Supreme Court Review","0081-9557","2158-2459","LAW","('SSCI',)","500","2.0","Q1","1.24","0.00" +"BMC Primary Care","","2731-4553","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","788","2.0","('Q2', 'Q2')","1.22","100.00" +"LANGUAGE IN SOCIETY","0047-4045","1469-8013","('LINGUISTICS', 'SOCIOLOGY')","('SSCI', 'SSCI')","2,624","2.0","('Q1', 'Q2')","1.21","48.78" +"Child Indicators Research","1874-897X","1874-8988","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","2,307","2.0","Q1","1.20","25.25" +"Palaeontographica Abteilung B-Palaeophytologie Palaeobotany-Palaeophytology","2194-900X","2509-839X","PALEONTOLOGY","('SCIE',)","546","2.0","Q1","1.16","0.00" +"ECONOMIC DEVELOPMENT AND CULTURAL CHANGE","0013-0079","1539-2988","('AREA STUDIES', 'DEVELOPMENT STUDIES', 'ECONOMICS')","('SSCI', 'SSCI', 'SSCI')","2,982","2.0","('Q1', 'Q2', 'Q2')","1.15","8.20" +"Journal of Computational Social Science","2432-2717","2432-2725","SOCIAL SCIENCES, MATHEMATICAL METHODS","('ESCI',)","468","2.0","Q2","1.14","43.95" +"AMERICAN JOURNAL OF PRIMATOLOGY","0275-2565","1098-2345","ZOOLOGY","('SCIE',)","5,276","2.0","Q1","1.12","24.91" +"JOURNAL OF GLBT FAMILY STUDIES","1550-428X","1550-4298","FAMILY STUDIES","('ESCI',)","711","2.0","Q2","1.12","16.00" +"African Archaeological Review","0263-0338","1572-9842","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","811","2.0","('Q1', 'N/A')","1.11","48.24" +"Learning Culture and Social Interaction","2210-6561","2210-657X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,037","2.0","Q2","1.11","40.10" +"MEMOIRS OF THE AMERICAN MATHEMATICAL SOCIETY","0065-9266","1947-6221","MATHEMATICS","('SCIE',)","3,316","2.0","Q1","1.11","61.90" +"Policing & Society","1043-9463","1477-2728","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,783","2.0","Q1","1.11","42.86" +"AUSTRALIAN EDUCATIONAL RESEARCHER","0311-6999","2210-5328","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,414","2.0","Q2","1.10","57.92" +"COMPARATIVE POLITICS","0010-4159","2151-6227","POLITICAL SCIENCE","('SSCI',)","2,571","2.0","Q2","1.10","0.00" +"European Journal of Politics and Gender","2515-1088","2515-1096","('POLITICAL SCIENCE', 'WOMENS STUDIES')","('ESCI', 'ESCI')","384","2.0","('Q2', 'Q1')","1.08","14.14" +"GENDER AND EDUCATION","0954-0253","1360-0516","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,119","2.0","Q2","1.08","37.24" +"INTERNATIONAL ORTHOPAEDICS","0341-2695","1432-5195","ORTHOPEDICS","('SCIE',)","12,556","2.0","Q2","1.08","23.39" +"JOURNAL OF LANGUAGE AND SOCIAL PSYCHOLOGY","0261-927X","1552-6526","('COMMUNICATION', 'LINGUISTICS', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI', 'SSCI')","2,442","2.0","('Q2', 'Q1', 'Q3')","1.08","25.74" +"European Journal of Engineering Education","0304-3797","1469-5898","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,572","2.0","Q2","1.07","48.29" +"Engineering Studies","1937-8629","1940-8374","('EDUCATION, SCIENTIFIC DISCIPLINES', 'ENGINEERING, MULTIDISCIPLINARY', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SCIE', 'SCIE', 'SCIE, SSCI')","306","2.0","('Q2', 'Q2', 'Q1')","1.05","27.78" +"MICROSCOPY RESEARCH AND TECHNIQUE","1059-910X","1097-0029","('ANATOMY & MORPHOLOGY', 'BIOLOGY', 'MICROSCOPY')","('SCIE', 'SCIE', 'SCIE')","6,540","2.0","('Q2', 'Q2', 'Q3')","1.05","8.49" +"SAGE Open","2158-2440","2158-2440","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","10,081","2.0","Q1","1.05","92.30" +"Journal of Public Transportation","1077-291X","2375-0901","TRANSPORTATION","('SSCI',)","909","2.0","Q3","1.04","97.50" +"Veterinary Sciences","","2306-7381","VETERINARY SCIENCES","('SCIE',)","3,851","2.0","Q2","1.03","99.77" +"Frontiers in Sociology","","2297-7775","SOCIOLOGY","('ESCI',)","1,669","2.0","Q2","1.02","99.72" +"International Journal of Emergency Medicine","1865-1372","1865-1380","EMERGENCY MEDICINE","('ESCI',)","1,327","2.0","Q2","1.02","98.71" +"JOURNAL OF RESEARCH IN READING","0141-0423","1467-9817","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","1,494","2.0","('Q2', 'Q3')","1.01","28.09" +"READING AND WRITING","0922-4777","1573-0905","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","4,585","2.0","('Q2', 'Q3')","1.01","30.25" +"AMERICAN JOURNAL OF EDUCATION","0195-6744","1549-6511","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,345","2.0","Q2","0.99","1.64" +"Children-Basel","","2227-9067","PEDIATRICS","('SCIE',)","9,374","2.0","Q2","0.98","99.76" +"International Journal of Sport Communication","1936-3915","1936-3907","COMMUNICATION","('ESCI',)","862","2.0","Q2","0.98","0.82" +"INVERSE PROBLEMS","0266-5611","1361-6420","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","8,174","2.0","('Q1', 'Q2')","0.98","29.56" +"Journal of Medical Education and Curricular Development","2382-1205","2382-1205","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","967","2.0","Q2","0.98","96.30" +"Nursing Open","2054-1058","2054-1058","NURSING","('SCIE', 'SSCI')","3,597","2.0","Q2","0.98","75.06" +"JOURNAL OF ELECTROMYOGRAPHY AND KINESIOLOGY","1050-6411","1873-5711","('NEUROSCIENCES', 'PHYSIOLOGY', 'REHABILITATION', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,808","2.0","('Q3', 'Q3', 'Q2', 'Q2')","0.97","23.11" +"Scandinavian Journal of Educational Research","0031-3831","1470-1170","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,131","2.0","Q2","0.97","74.25" +"BMC Pediatrics","","1471-2431","PEDIATRICS","('SCIE',)","11,837","2.0","Q2","0.96","99.85" +"BRITISH DENTAL JOURNAL","0007-0610","1476-5373","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","7,814","2.0","Q2","0.96","21.59" +"COMPARATIVE EDUCATION REVIEW","0010-4086","1545-701X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,420","2.0","Q2","0.96","0.00" +"JOURNAL OF ENVIRONMENTAL LAW","0952-8873","1464-374X","('ENVIRONMENTAL STUDIES', 'LAW')","('SSCI', 'SSCI')","796","2.0","('Q3', 'Q1')","0.96","43.56" +"Journal of University Teaching and Learning Practice","1449-9789","1449-9789","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","908","2.0","Q2","0.96","39.20" +"MEDICAL ANTHROPOLOGY QUARTERLY","0745-5194","1548-1387","('ANTHROPOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI', 'SSCI')","1,536","2.0","('Q1', 'Q3', 'Q2')","0.96","31.17" +"Oral Surgery Oral Medicine Oral Pathology Oral Radiology","2212-4403","2212-4411","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","14,630","2.0","Q2","0.96","8.70" +"Swiss Political Science Review","1424-7755","1662-6370","POLITICAL SCIENCE","('SSCI',)","816","2.0","Q2","0.96","55.45" +"HealthCare-The Journal of Delivery Science and Innovation","2213-0764","2213-0772","HEALTH POLICY & SERVICES","('SSCI',)","720","2.0","Q3","0.95","24.35" +"Journalism and Media","","2673-5172","COMMUNICATION","('ESCI',)","259","2.0","Q2","0.95","98.83" +"AESTHETIC PLASTIC SURGERY","0364-216X","1432-5241","SURGERY","('SCIE',)","6,702","2.0","Q2","0.94","12.06" +"ARCHIVES OF ORTHOPAEDIC AND TRAUMA SURGERY","0936-8051","1434-3916","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","9,889","2.0","('Q2', 'Q2')","0.94","33.55" +"INTERNATIONAL JOURNAL OF COMPARATIVE SOCIOLOGY","0020-7152","1745-2554","SOCIOLOGY","('SSCI',)","1,053","2.0","Q2","0.94","34.04" +"Research & Politics","","2053-1680","POLITICAL SCIENCE","('SSCI',)","1,364","2.0","Q2","0.94","91.79" +"SAGE Open Nursing","2377-9608","2377-9608","NURSING","('ESCI',)","860","2.0","Q2","0.94","93.93" +"VETERINARY PARASITOLOGY","0304-4017","1873-2550","('PARASITOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","15,319","2.0","('Q2', 'Q2')","0.93","23.44" +"YOUTH & SOCIETY","0044-118X","1552-8499","('SOCIAL ISSUES', 'SOCIAL SCIENCES, INTERDISCIPLINARY', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","2,170","2.0","('Q2', 'Q1', 'Q2')","0.93","11.34" +"European Journal of Criminology","1477-3708","1741-2609","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,693","2.0","Q1","0.92","35.26" +"International Journal of Child Care and Education Policy","1976-5681","2288-6729","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","279","2.0","Q2","0.92","100.00" +"Journal of Education for Students Placed at Risk","1082-4669","1532-7671","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","585","2.0","Q2","0.92","13.56" +"Journal of Professions and Organization","2051-8803","2051-8811","MANAGEMENT","('ESCI',)","500","2.0","Q3","0.92","38.57" +"JOURNAL OF SEDIMENTARY RESEARCH","1527-1404","1938-3681","GEOLOGY","('SCIE',)","6,632","2.0","Q1","0.92","4.19" +"OPHTHALMIC RESEARCH","0030-3747","1423-0259","OPHTHALMOLOGY","('SCIE',)","2,168","2.0","Q2","0.92","78.03" +"World","","2673-4060","('ECONOMICS', 'POLITICAL SCIENCE', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","236","2.0","('Q2', 'Q2', 'Q1')","0.92","98.57" +"Journal of Benefit-Cost Analysis","2194-5888","2152-2812","ECONOMICS","('SSCI',)","498","2.0","Q2","0.90","52.86" +"JOURNAL OF EDUCATIONAL RESEARCH","0022-0671","1940-0675","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,517","2.0","Q2","0.90","10.89" +"MARINE MAMMAL SCIENCE","0824-0469","1748-7692","('MARINE & FRESHWATER BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","4,145","2.0","('Q2', 'Q1')","0.90","24.29" +"International Journal of Legal Discourse","2364-8821","2364-883X","LINGUISTICS","('ESCI',)","123","2.0","Q1","0.89","4.65" +"ARCHIVES OF ANIMAL NUTRITION","1745-039X","1477-2817","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,281","2.0","Q1","0.88","12.16" +"Mathematical Thinking and Learning","1098-6065","1532-7833","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","823","2.0","Q2","0.88","22.58" +"NEUROSURGERY CLINICS OF NORTH AMERICA","1042-3680","1558-1349","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","2,623","2.0","('Q3', 'Q2')","0.88","4.49" +"BULLETIN OF MATHEMATICAL BIOLOGY","0092-8240","1522-9602","('BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","5,574","2.0","('Q2', 'Q3')","0.87","36.07" +"Eye & Contact Lens-Science and Clinical Practice","1542-2321","1542-233X","OPHTHALMOLOGY","('SCIE',)","2,793","2.0","Q2","0.87","10.00" +"GEOJOURNAL","0343-2521","1572-9893","GEOGRAPHY","('ESCI',)","5,433","2.0","Q2","0.87","12.77" +"JOURNAL OF GLAUCOMA","1057-0829","1536-481X","OPHTHALMOLOGY","('SCIE',)","5,587","2.0","Q2","0.87","29.41" +"Perioperative Medicine","","2047-0525","('ANESTHESIOLOGY', 'SURGERY')","('SCIE', 'SCIE')","769","2.0","('Q2', 'Q2')","0.87","100.00" +"RENEWABLE AGRICULTURE AND FOOD SYSTEMS","1742-1705","1742-1713","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","2,040","2.0","Q2","0.87","58.29" +"Chiropractic & Manual Therapies","","2045-709X","REHABILITATION","('SCIE',)","958","2.0","Q2","0.86","100.00" +"ECOLOGICAL ENTOMOLOGY","0307-6946","1365-2311","ENTOMOLOGY","('SCIE',)","4,643","2.0","Q2","0.86","29.39" +"GEUS Bulletin","2597-2154","2597-2154","GEOLOGY","('SCIE',)","112","2.0","Q1","0.86","100.00" +"Journal of Plastic Reconstructive and Aesthetic Surgery","1748-6815","1878-0539","SURGERY","('SCIE',)","9,337","2.0","Q2","0.86","10.91" +"SOCIOLOGY OF SPORT JOURNAL","0741-1235","1543-2785","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'SOCIOLOGY', 'SPORT SCIENCES')","('SSCI', 'SSCI', 'SCIE')","1,615","2.0","('Q2', 'Q2', 'Q2')","0.86","4.86" +"Automated Software Engineering","0928-8910","1573-7535","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","649","2.0","Q3","0.85","18.75" +"INTERNATIONAL JOURNAL OF TECHNOLOGY AND DESIGN EDUCATION","0957-7572","1573-1804","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES', 'ENGINEERING, MULTIDISCIPLINARY')","('SSCI', 'SCIE', 'SCIE')","1,621","2.0","('Q2', 'Q2', 'Q2')","0.85","37.19" +"SPACE POLICY","0265-9646","1879-338X","('INTERNATIONAL RELATIONS', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","660","2.0","('Q2', 'Q1')","0.85","19.32" +"Urolithiasis","2194-7228","2194-7236","UROLOGY & NEPHROLOGY","('SCIE',)","1,830","2.0","Q2","0.85","22.49" +"BMJ Open Ophthalmology","2397-3269","2397-3269","OPHTHALMOLOGY","('ESCI',)","1,028","2.0","Q2","0.84","99.65" +"BMJ Supportive & Palliative Care","2045-435X","2045-4368","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","3,039","2.0","Q3","0.84","19.63" +"JCOM-Journal of Science Communication","1824-2049","1824-2049","COMMUNICATION","('ESCI',)","1,219","2.0","Q2","0.84","99.13" +"JOURNAL OF VISION","1534-7362","1534-7362","OPHTHALMOLOGY","('SCIE',)","9,152","2.0","Q2","0.84","98.07" +"AACN Advanced Critical Care","1559-7768","1559-7776","NURSING","('ESCI',)","695","2.0","Q2","0.83","1.04" +"Econometrics and Statistics","2468-0389","2452-3062","('ECONOMICS', 'STATISTICS & PROBABILITY')","('ESCI', 'ESCI')","440","2.0","('Q2', 'Q1')","0.83","18.32" +"Journal of Elections Public Opinion and Parties","1745-7289","1745-7297","POLITICAL SCIENCE","('SSCI',)","977","2.0","Q2","0.83","32.67" +"Journal of Experimental Orthopaedics","","2197-1153","('ORTHOPEDICS', 'SURGERY')","('ESCI', 'ESCI')","1,316","2.0","('Q2', 'Q2')","0.83","100.00" +"JOURNAL OF THORACIC IMAGING","0883-5993","1536-0237","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,685","2.0","Q3","0.83","10.27" +"APPLIED VEGETATION SCIENCE","1402-2001","1654-109X","('ECOLOGY', 'FORESTRY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","2,724","2.0","('Q3', 'Q2', 'Q2')","0.82","35.32" +"GYNECOLOGIC AND OBSTETRIC INVESTIGATION","0378-7346","1423-002X","OBSTETRICS & GYNECOLOGY","('SCIE',)","2,491","2.0","Q2","0.82","21.43" +"JOURNAL OF COMMUNITY PSYCHOLOGY","0090-4392","1520-6629","('PSYCHOLOGY, MULTIDISCIPLINARY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL WORK')","('SSCI', 'SSCI', 'SSCI')","4,740","2.0","('Q2', 'Q3', 'Q1')","0.82","16.17" +"Journal of Holistic Nursing","0898-0101","1552-5724","NURSING","('ESCI',)","1,025","2.0","Q2","0.82","9.91" +"Maxillofacial Plastic and Reconstructive Surgery","2288-8101","2288-8586","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","775","2.0","Q2","0.82","100.00" +"Neotropical Ichthyology","1679-6225","","ZOOLOGY","('SCIE',)","1,805","2.0","Q1","0.82","87.43" +"DEVELOPMENTAL DYNAMICS","1058-8388","1097-0177","('ANATOMY & MORPHOLOGY', 'DEVELOPMENTAL BIOLOGY')","('SCIE', 'SCIE')","8,570","2.0","('Q2', 'Q3')","0.80","26.30" +"Crystallography Reviews","0889-311X","1476-3508","CRYSTALLOGRAPHY","('SCIE',)","372","2.0","Q2","0.79","5.00" +"INFANCY","1525-0008","1532-7078","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","2,085","2.0","Q3","0.79","36.47" +"WESTERN JOURNAL OF NURSING RESEARCH","0193-9459","1552-8456","NURSING","('SCIE', 'SSCI')","3,164","2.0","Q2","0.79","5.41" +"ADVANCES IN CHRONIC KIDNEY DISEASE","1548-5595","1548-5609","UROLOGY & NEPHROLOGY","('SCIE',)","2,787","2.0","Q2","0.78","8.26" +"AGROFORESTRY SYSTEMS","0167-4366","1572-9680","('AGRONOMY', 'FORESTRY')","('SCIE', 'SCIE')","5,609","2.0","('Q2', 'Q2')","0.78","17.63" +"BMJ Paediatrics Open","","2399-9772","PEDIATRICS","('SCIE',)","1,437","2.0","Q2","0.78","99.74" +"CRANIO-The Journal of Craniomandibular & Sleep Practice","0886-9634","2151-0903","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,743","2.0","Q2","0.78","3.65" +"HEALTH & SOCIAL CARE IN THE COMMUNITY","0966-0410","1365-2524","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL WORK')","('SSCI', 'SSCI')","6,264","2.0","('Q3', 'Q1')","0.78","74.31" +"JOURNAL OF ZOOLOGICAL SYSTEMATICS AND EVOLUTIONARY RESEARCH","0947-5745","1439-0469","('EVOLUTIONARY BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","1,422","2.0","('Q3', 'Q1')","0.78","55.12" +"Technical Communication Quarterly","1057-2252","1542-7625","COMMUNICATION","('ESCI',)","824","2.0","Q2","0.78","3.96" +"Canadian Journal of Emergency Medicine","1481-8035","1481-8043","EMERGENCY MEDICINE","('SCIE',)","2,041","2.0","Q2","0.77","8.14" +"ENVIRONMENT AND URBANIZATION","0956-2478","1746-0301","('ENVIRONMENTAL STUDIES', 'URBAN STUDIES')","('SSCI', 'SSCI')","2,778","2.0","('Q3', 'Q2')","0.77","49.28" +"Taiwanese Journal of Obstetrics & Gynecology","1028-4559","","OBSTETRICS & GYNECOLOGY","('SCIE',)","3,166","2.0","Q2","0.77","95.23" +"AUSTRALIAN JOURNAL OF SOCIAL ISSUES","0157-6321","1839-4655","SOCIAL ISSUES","('SSCI',)","806","2.0","Q2","0.76","59.40" +"CROP SCIENCE","0011-183X","1435-0653","AGRONOMY","('SCIE',)","19,845","2.0","Q2","0.76","39.08" +"Pulmonary Medicine","2090-1836","2090-1844","RESPIRATORY SYSTEM","('ESCI',)","571","2.0","Q3","0.76","100.00" +"SKIN RESEARCH AND TECHNOLOGY","0909-752X","1600-0846","DERMATOLOGY","('SCIE',)","3,379","2.0","Q3","0.76","79.37" +"FISHERIES MANAGEMENT AND ECOLOGY","0969-997X","1365-2400","FISHERIES","('SCIE',)","2,079","2.0","Q2","0.75","27.75" +"JOURNAL OF EARLY ADOLESCENCE","0272-4316","1552-5449","('FAMILY STUDIES', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","2,561","2.0","('Q2', 'Q3')","0.75","24.31" +"Journal of Visceral Surgery","1878-7886","1878-7886","SURGERY","('SCIE',)","1,370","2.0","Q2","0.75","33.33" +"Neuropsychologia","0028-3932","1873-3514","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI')","22,115","2.0","('Q3', 'Q3', 'Q3')","0.75","34.68" +"PHYSICS OF PLASMAS","1070-664X","1089-7674","PHYSICS, FLUIDS & PLASMAS","('SCIE',)","31,886","2.0","Q3","0.75","27.88" +"INTERNATIONAL JOURNAL OF SPORTS MEDICINE","0172-4622","1439-3964","SPORT SCIENCES","('SCIE',)","8,319","2.0","Q2","0.74","11.29" +"Marine Resource Economics","0738-1360","2334-5985","('ECONOMICS', 'ENVIRONMENTAL STUDIES', 'FISHERIES')","('SSCI', 'SSCI', 'SCIE')","1,001","2.0","('Q2', 'Q3', 'Q2')","0.74","0.00" +"SCANDINAVIAN POLITICAL STUDIES","0080-6757","1467-9477","POLITICAL SCIENCE","('SSCI',)","892","2.0","Q2","0.74","65.45" +"CAMBRIDGE JOURNAL OF ECONOMICS","0309-166X","1464-3545","ECONOMICS","('SSCI',)","4,091","2.0","Q2","0.73","22.34" +"JOURNAL OF CLINICAL MONITORING AND COMPUTING","1387-1307","1573-2614","ANESTHESIOLOGY","('SCIE',)","3,005","2.0","Q2","0.73","34.21" +"JOURNAL OF SPORT & EXERCISE PSYCHOLOGY","0895-2779","1543-2904","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY', 'PSYCHOLOGY, APPLIED', 'SPORT SCIENCES')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","4,325","2.0","('Q2', 'Q2', 'Q3', 'Q2')","0.73","0.95" +"REAL ESTATE ECONOMICS","1080-8620","1540-6229","('BUSINESS, FINANCE', 'ECONOMICS', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI')","1,487","2.0","('Q2', 'Q2', 'Q2')","0.73","20.26" +"AGRONOMY JOURNAL","0002-1962","1435-0645","AGRONOMY","('SCIE',)","18,887","2.0","Q2","0.72","34.53" +"BEHAVIORAL MEDICINE","0896-4289","1940-4026","('BEHAVIORAL SCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE, SSCI')","1,497","2.0","('Q3', 'Q3')","0.72","7.08" +"HEALTH ECONOMICS","1057-9230","1099-1050","('ECONOMICS', 'HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SSCI', 'SCIE', 'SSCI')","6,810","2.0","('Q2', 'Q3', 'Q3')","0.72","34.75" +"JOURNAL OF SURGICAL ONCOLOGY","0022-4790","1096-9098","('ONCOLOGY', 'SURGERY')","('SCIE', 'SCIE')","12,180","2.0","('Q3', 'Q2')","0.72","13.31" +"Zeitschrift fur Psychologie-Journal of Psychology","2190-8370","2151-2604","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,242","2.0","Q2","0.72","59.49" +"COMPUTER APPLICATIONS IN ENGINEERING EDUCATION","1061-3773","1099-0542","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'EDUCATION, SCIENTIFIC DISCIPLINES', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","1,947","2.0","('Q3', 'Q2', 'Q2')","0.71","16.61" +"EUROPEAN JOURNAL OF PHYCOLOGY","0967-0262","1469-4433","('MARINE & FRESHWATER BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","2,329","2.0","('Q2', 'Q2')","0.71","9.38" +"INTERNATIONAL JOURNAL OF BEHAVIORAL MEDICINE","1070-5503","1532-7558","PSYCHOLOGY, CLINICAL","('SSCI',)","4,131","2.0","Q3","0.71","28.42" +"JOURNAL OF CHILD NEUROLOGY","0883-0738","1708-8283","('CLINICAL NEUROLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","6,200","2.0","('Q3', 'Q2')","0.71","8.97" +"Obstetrics & Gynecology Science","2287-8572","2287-8580","OBSTETRICS & GYNECOLOGY","('ESCI',)","1,206","2.0","Q2","0.71","94.97" +"Organic Agriculture","1879-4238","1879-4246","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","670","2.0","Q2","0.71","33.09" +"Administration and Policy in Mental Health and Mental Health Services Research","0894-587X","1573-3289","('HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","4,635","2.0","('Q3', 'Q3')","0.70","29.09" +"Journal of Hand Surgery-European Volume","1753-1934","2043-6289","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","6,573","2.0","('Q2', 'Q2')","0.70","14.16" +"JOURNAL OF NEURO-OPHTHALMOLOGY","1070-8022","1536-5166","('CLINICAL NEUROLOGY', 'OPHTHALMOLOGY')","('SCIE', 'SCIE')","2,499","2.0","('Q3', 'Q2')","0.70","5.70" +"Journal of Pediatric Urology","1477-5131","1873-4898","('PEDIATRICS', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","4,955","2.0","('Q2', 'Q2')","0.70","8.09" +"Women-A Cultural Review","0957-4042","1470-1367","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","276","2.0","","0.70","35.09" +"Central Bank Review","1303-0701","1305-8800","ECONOMICS","('ESCI',)","249","2.0","Q2","0.69","97.37" +"CMC-Computers Materials & Continua","1546-2218","1546-2226","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","7,846","2.0","('Q3', 'Q3')","0.69","98.65" +"PROCEEDINGS OF THE INSTITUTION OF CIVIL ENGINEERS-GEOTECHNICAL ENGINEERING","1353-2618","1751-8563","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,390","2.0","('Q3', 'Q3')","0.69","1.01" +"World Journal of Orthopedics","2218-5836","2218-5836","ORTHOPEDICS","('ESCI',)","2,392","2.0","Q2","0.69","99.64" +"Journal of Physics A-Mathematical and Theoretical","1751-8113","1751-8121","('PHYSICS, MATHEMATICAL', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","26,103","2.0","('Q2', 'Q2')","0.68","29.96" +"International Review of Social Psychology","2397-8570","2397-8570","PSYCHOLOGY, SOCIAL","('SSCI',)","612","2.0","Q3","0.67","98.21" +"Journal of Obstetrics and Gynaecology Canada","1701-2163","1701-2163","OBSTETRICS & GYNECOLOGY","('ESCI',)","3,878","2.0","Q2","0.67","5.51" +"Software and Systems Modeling","1619-1366","1619-1374","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","1,420","2.0","Q3","0.67","53.04" +"Nordicom Review","1403-1108","2001-5119","COMMUNICATION","('ESCI',)","572","2.0","Q2","0.66","97.37" +"AQUATIC SCIENCES","1015-1621","1420-9055","('ENVIRONMENTAL SCIENCES', 'LIMNOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,213","2.0","('Q3', 'Q2', 'Q2')","0.65","25.61" +"GEOLOGICAL MAGAZINE","0016-7568","1469-5081","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","5,495","2.0","Q3","0.65","30.81" +"INTERNATIONAL JOURNAL OF WATER RESOURCES DEVELOPMENT","0790-0627","1360-0648","WATER RESOURCES","('SCIE',)","2,384","2.0","Q3","0.65","26.21" +"JMIR Formative Research","","2561-326X","('HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('ESCI', 'ESCI')","3,529","2.0","('Q3', 'Q4')","0.65","99.15" +"Journal of Aerosol Medicine and Pulmonary Drug Delivery","1941-2711","1941-2703","RESPIRATORY SYSTEM","('SCIE',)","1,536","2.0","Q3","0.65","17.44" +"JOURNAL OF MAGNETIC RESONANCE","1090-7807","1096-0856","('BIOCHEMICAL RESEARCH METHODS', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE')","10,430","2.0","('Q3', 'Q3', 'Q2')","0.65","37.05" +"JOURNAL OF PHYSIOLOGY AND PHARMACOLOGY","0867-5910","","PHYSIOLOGY","('SCIE',)","3,164","2.0","Q3","0.65","0.00" +"Parasite Epidemiology and Control","2405-6731","2405-6731","('INFECTIOUS DISEASES', 'PARASITOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI', 'ESCI')","589","2.0","('Q3', 'Q2', 'Q3')","0.65","99.11" +"American Journal of Nuclear Medicine and Molecular Imaging","2160-8407","2160-8407","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","819","2.0","Q3","0.64","0.00" +"Cogent Economics & Finance","2332-2039","2332-2039","ECONOMICS","('ESCI',)","2,704","2.0","Q2","0.64","98.35" +"International Journal of Computers Communications & Control","1841-9836","1841-9844","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE')","1,010","2.0","('Q3', 'Q3')","0.64","97.24" +"LIMNOLOGICA","0075-9511","1873-5851","LIMNOLOGY","('SCIE',)","2,067","2.0","Q2","0.64","11.84" +"NEW GENERATION COMPUTING","0288-3635","1882-7055","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","515","2.0","('Q3', 'Q2')","0.64","22.73" +"Personality and Mental Health","1932-8621","1932-863X","('PSYCHIATRY', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI')","823","2.0","('Q3', 'Q3')","0.64","27.91" +"TRANSACTIONS OF THE AMERICAN FISHERIES SOCIETY","0002-8487","1548-8659","FISHERIES","('SCIE',)","6,300","2.0","Q2","0.64","24.52" +"Atmospheric Science Letters","1530-261X","1530-261X","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","1,935","2.0","Q3","0.63","71.43" +"AUSTRALIAN PSYCHOLOGIST","0005-0067","1742-9544","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,753","2.0","Q2","0.63","26.56" +"BEHAVIOR MODIFICATION","0145-4455","1552-4167","PSYCHOLOGY, CLINICAL","('SSCI',)","2,566","2.0","Q3","0.63","11.29" +"EPILEPSY RESEARCH","0920-1211","1872-6844","CLINICAL NEUROLOGY","('SCIE',)","7,339","2.0","Q3","0.63","20.72" +"GERODONTOLOGY","0734-0664","1741-2358","('DENTISTRY, ORAL SURGERY & MEDICINE', 'GERIATRICS & GERONTOLOGY')","('SCIE', 'SCIE')","2,272","2.0","('Q2', 'Q3')","0.63","27.37" +"Journal of Biophotonics","1864-063X","1864-0648","('BIOCHEMICAL RESEARCH METHODS', 'BIOPHYSICS', 'OPTICS')","('SCIE', 'SCIE', 'SCIE')","5,395","2.0","('Q3', 'Q3', 'Q3')","0.63","20.19" +"NEFROLOGIA","0211-6995","1989-2284","UROLOGY & NEPHROLOGY","('SCIE',)","1,603","2.0","Q2","0.63","91.22" +"Sports Biomechanics","1476-3141","1752-6116","('ENGINEERING, BIOMEDICAL', 'SPORT SCIENCES')","('SCIE', 'SCIE')","2,287","2.0","('Q3', 'Q2')","0.63","16.11" +"BEHAVIOURAL AND COGNITIVE PSYCHOTHERAPY","1352-4658","1469-1833","PSYCHOLOGY, CLINICAL","('SSCI',)","2,244","2.0","Q3","0.62","44.89" +"Canadian Journal of Pain-Revue Canadienne de la Douleur","2474-0527","2474-0527","CLINICAL NEUROLOGY","('ESCI',)","379","2.0","Q3","0.62","92.68" +"Critical Care Nurse","0279-5442","1940-8250","('CRITICAL CARE MEDICINE', 'NURSING')","('SCIE', 'SCIE, SSCI')","1,275","2.0","('Q3', 'Q2')","0.62","0.00" +"International Journal for Parasitology-Parasites and Wildlife","2213-2244","2213-2244","('ECOLOGY', 'PARASITOLOGY')","('SCIE', 'SCIE')","1,859","2.0","('Q3', 'Q2')","0.62","94.46" +"Journal of Optics","2040-8978","2040-8986","OPTICS","('SCIE',)","6,504","2.0","Q3","0.62","15.81" +"MARINE GEORESOURCES & GEOTECHNOLOGY","1064-119X","1521-0618","('ENGINEERING, GEOLOGICAL', 'ENGINEERING, OCEAN', 'MINING & MINERAL PROCESSING', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,598","2.0","('Q3', 'Q2', 'Q2', 'Q2')","0.62","1.30" +"Risks","","2227-9091","BUSINESS, FINANCE","('ESCI',)","1,753","2.0","Q2","0.62","100.00" +"Acta Geophysica","1895-6572","1895-7455","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","2,848","2.0","Q2","0.61","8.05" +"AUSTRALIAN JOURNAL OF MANAGEMENT","0312-8962","1327-2020","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","1,555","2.0","('Q3', 'Q3')","0.61","18.70" +"COMPARATIVE IMMUNOLOGY MICROBIOLOGY AND INFECTIOUS DISEASES","0147-9571","1878-1667","('IMMUNOLOGY', 'MICROBIOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE', 'SCIE')","2,528","2.0","('Q4', 'Q4', 'Q2')","0.61","9.18" +"OPTIMIZATION AND ENGINEERING","1389-4420","1573-2924","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","1,572","2.0","('Q2', 'Q2', 'Q2')","0.61","30.74" +"Polish Maritime Research","1233-2585","2083-7429","ENGINEERING, MARINE","('SCIE',)","1,078","2.0","Q2","0.61","100.00" +"BIOSYSTEMS","0303-2647","1872-8324","('BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","3,322","2.0","('Q2', 'Q3')","0.60","21.53" +"INTERNATIONAL JOURNAL OF CLINICAL AND EXPERIMENTAL HYPNOSIS","0020-7144","1744-5183","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","982","2.0","('Q3', 'Q3')","0.60","13.92" +"Journal of Infrastructure Systems","1076-0342","1943-555X","ENGINEERING, CIVIL","('SCIE',)","2,387","2.0","Q2","0.60","9.36" +"Polar Geography","1088-937X","1939-0513","GEOGRAPHY, PHYSICAL","('ESCI',)","458","2.0","Q3","0.60","55.81" +"International Agrophysics","0236-8722","2300-8725","AGRONOMY","('SCIE',)","1,577","2.0","Q2","0.59","99.04" +"Journal of Applied Clinical Medical Physics","1526-9914","1526-9914","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","5,335","2.0","Q3","0.59","69.71" +"Pharmacoeconomics-Open","2509-4262","2509-4254","('ECONOMICS', 'HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PHARMACOLOGY & PHARMACY')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","678","2.0","('Q2', 'Q3', 'Q3', 'Q3')","0.59","98.04" +"Advances in Rheumatology","2523-3106","2523-3106","RHEUMATOLOGY","('SCIE',)","704","2.0","Q3","0.58","100.00" +"APPLIED PHYSICS B-LASERS AND OPTICS","0946-2171","1432-0649","('OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","9,580","2.0","('Q3', 'Q3')","0.58","18.40" +"Arquivos Brasileiros de Cardiologia","0066-782X","1678-4170","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","3,840","2.0","Q3","0.58","98.24" +"Development Policy Review","0950-6764","1467-7679","DEVELOPMENT STUDIES","('SSCI',)","1,756","2.0","Q2","0.58","42.36" +"Ecopsychology","1942-9347","1942-9347","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","743","2.0","Q2","0.58","7.92" +"Frontiers in Earth Science","","2296-6463","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","13,047","2.0","Q3","0.58","99.64" +"Journal of Neuropsychology","1748-6645","1748-6653","('PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI')","772","2.0","('Q2', 'Q3')","0.58","48.57" +"MAGNETIC RESONANCE MATERIALS IN PHYSICS BIOLOGY AND MEDICINE","1352-8661","1352-8661","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,802","2.0","Q3","0.58","49.01" +"OPTIMAL CONTROL APPLICATIONS & METHODS","0143-2087","1099-1514","('AUTOMATION & CONTROL SYSTEMS', 'MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","2,034","2.0","('Q3', 'Q1', 'Q2')","0.58","4.90" +"Trends and Issues in Crime and Criminal Justice","1836-2206","1836-2206","CRIMINOLOGY & PENOLOGY","('ESCI',)","477","2.0","Q1","0.58","0.00" +"AMERICAN JOURNAL OF HEALTH BEHAVIOR","1945-7359","","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","2,482","2.0","Q3","0.57","35.87" +"Contemporary Clinical Trials","1551-7144","1559-2030","('MEDICINE, RESEARCH & EXPERIMENTAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","5,356","2.0","('Q3', 'Q3')","0.57","32.59" +"Health Psychology Research","2420-8124","2420-8124","PSYCHOLOGY, CLINICAL","('ESCI',)","574","2.0","Q3","0.57","100.00" +"Journal of Cancer Policy","","2213-5383","HEALTH POLICY & SERVICES","('ESCI',)","461","2.0","Q3","0.57","28.76" +"JOURNAL OF HETEROCYCLIC CHEMISTRY","0022-152X","1943-5193","CHEMISTRY, ORGANIC","('SCIE',)","6,945","2.0","Q2","0.57","1.72" +"NEOPLASMA","0028-2685","1338-4317","ONCOLOGY","('SCIE',)","2,672","2.0","Q3","0.57","2.49" +"Network Modeling and Analysis in Health Informatics and Bioinformatics","2192-6662","2192-6670","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('ESCI',)","565","2.0","Q3","0.57","5.92" +"Patient Preference and Adherence","1177-889X","","MEDICINE, GENERAL & INTERNAL","('SCIE',)","5,908","2.0","Q2","0.57","98.54" +"Review of Development Economics","1363-6669","1467-9361","('DEVELOPMENT STUDIES', 'ECONOMICS')","('SSCI', 'SSCI')","2,194","2.0","('Q2', 'Q2')","0.57","23.20" +"Current Medical Science","2096-5230","2523-899X","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","1,663","2.0","Q3","0.56","10.99" +"European Journal of Trauma & Dissociation","2468-7499","2468-7499","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('ESCI', 'ESCI')","300","2.0","('Q3', 'Q3')","0.56","26.57" +"Foundations and Trends in Communications and Information Theory","1567-2190","1567-2328","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","440","2.0","Q3","0.56","0.00" +"IBRO Neuroscience Reports","2667-2421","2667-2421","NEUROSCIENCES","('ESCI',)","346","2.0","Q3","0.56","81.60" +"ONCOLOGY RESEARCH","0965-0407","1555-3906","ONCOLOGY","('SCIE',)","2,462","2.0","Q3","0.56","94.57" +"PEDOBIOLOGIA","0031-4056","1873-1511","('ECOLOGY', 'SOIL SCIENCE')","('SCIE', 'SCIE')","2,342","2.0","('Q3', 'Q3')","0.56","25.41" +"Physical Communication","1874-4907","1874-4907","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","2,193","2.0","('Q3', 'Q3')","0.56","4.62" +"BMC Cardiovascular Disorders","1471-2261","1471-2261","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","8,006","2.0","Q3","0.55","99.94" +"ERGONOMICS","0014-0139","1366-5847","('ENGINEERING, INDUSTRIAL', 'ERGONOMICS', 'PSYCHOLOGY', 'PSYCHOLOGY, APPLIED')","('SCIE', 'SSCI', 'SCIE', 'SSCI')","8,810","2.0","('Q3', 'Q3', 'Q2', 'Q3')","0.55","26.03" +"IEEE Journal of the Electron Devices Society","2168-6734","2168-6734","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","2,575","2.0","Q3","0.55","97.60" +"International Journal of Strategic Property Management","1648-715X","1648-9179","MANAGEMENT","('SSCI',)","707","2.0","Q3","0.55","95.79" +"Journal of Nondestructive Evaluation, Diagnostics and Prognostics of Engineering Systems","2572-3901","2572-3898","('ENGINEERING, MULTIDISCIPLINARY', 'INSTRUMENTS & INSTRUMENTATION', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING')","('ESCI', 'ESCI', 'ESCI')","256","2.0","('Q2', 'Q3', 'Q2')","0.55","2.04" +"JOURNAL OF ORGANIZATIONAL COMPUTING AND ELECTRONIC COMMERCE","1091-9392","1532-7744","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","602","2.0","('Q3', 'Q3')","0.55","0.00" +"BIOLOGICAL JOURNAL OF THE LINNEAN SOCIETY","0024-4066","1095-8312","EVOLUTIONARY BIOLOGY","('SCIE',)","9,272","2.0","Q3","0.54","9.57" +"FLOW TURBULENCE AND COMBUSTION","1386-6184","1573-1987","('MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","3,732","2.0","('Q3', 'Q2')","0.54","49.44" +"IEEE Journal on Exploratory Solid-State Computational Devices and Circuits","2329-9231","2329-9231","COMPUTER SCIENCE, HARDWARE & ARCHITECTURE","('ESCI',)","377","2.0","Q3","0.54","97.30" +"Journal of Stroke & Cerebrovascular Diseases","1052-3057","1532-8511","('NEUROSCIENCES', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","10,879","2.0","('Q3', 'Q3')","0.54","14.22" +"Journal of the American Academy of Orthopaedic Surgeons Global Research and Reviews","2474-7661","2474-7661","ORTHOPEDICS","('ESCI',)","1,233","2.0","Q2","0.54","98.35" +"Scandinavian Journal of Management","0956-5221","1873-3387","MANAGEMENT","('SSCI',)","1,688","2.0","Q3","0.54","44.19" +"Applied Spatial Analysis and Policy","1874-463X","1874-4621","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI', 'SSCI')","803","2.0","('Q3', 'Q2', 'Q3')","0.53","33.52" +"BIOMARKERS","1354-750X","1366-5804","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","2,485","2.0","('Q3', 'Q4')","0.53","8.00" +"International Journal of Coal Preparation and Utilization","1939-2699","1939-2702","('ENERGY & FUELS', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE')","1,520","2.0","('Q4', 'Q2')","0.53","0.24" +"Methodology-European Journal of Research Methods for the Behavioral and Social Sciences","1614-1881","1614-2241","('PSYCHOLOGY, MATHEMATICAL', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","1,264","2.0","('Q2', 'Q2')","0.53","100.00" +"Neuropsychopharmacology Reports","","2574-173X","('NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('ESCI', 'ESCI', 'ESCI')","608","2.0","('Q3', 'Q3', 'Q3')","0.53","74.37" +"Review of Regional Research-Jahrbuch fur Regionalwissenschaft","0173-7600","1613-9836","ECONOMICS","('ESCI',)","185","2.0","Q2","0.53","65.85" +"Surface Topography-Metrology and Properties","2051-672X","2051-672X","('ENGINEERING, MECHANICAL', 'INSTRUMENTS & INSTRUMENTATION', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","1,770","2.0","('Q2', 'Q3', 'Q3')","0.53","5.21" +"BIOTECHNOLOGY LETTERS","0141-5492","1573-6776","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","9,506","2.0","Q3","0.52","9.66" +"CHEMOTHERAPY","0009-3157","1421-9794","('ONCOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,554","2.0","('Q3', 'Q3')","0.52","17.00" +"CONSERVATION GENETICS","1566-0621","1572-9737","('BIODIVERSITY CONSERVATION', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","4,159","2.0","('Q2', 'Q3')","0.52","31.47" +"EUROPEAN JOURNAL OF DERMATOLOGY","1167-1122","1952-4013","DERMATOLOGY","('SCIE',)","3,121","2.0","Q3","0.52","2.87" +"GYNECOLOGICAL ENDOCRINOLOGY","0951-3590","1473-0766","('ENDOCRINOLOGY & METABOLISM', 'OBSTETRICS & GYNECOLOGY')","('SCIE', 'SCIE')","5,701","2.0","('Q3', 'Q2')","0.52","35.46" +"IET Generation Transmission & Distribution","1751-8687","1751-8695","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","10,026","2.0","Q3","0.52","82.86" +"INHALATION TOXICOLOGY","0895-8378","1091-7691","TOXICOLOGY","('SCIE',)","2,853","2.0","Q4","0.52","19.10" +"INTERNATIONAL JOURNAL FOR VITAMIN AND NUTRITION RESEARCH","0300-9831","1664-2821","NUTRITION & DIETETICS","('SCIE',)","1,616","2.0","Q3","0.52","6.08" +"INTERNATIONAL JOURNAL OF SYSTEMATIC AND EVOLUTIONARY MICROBIOLOGY","1466-5026","1466-5034","MICROBIOLOGY","('SCIE',)","25,939","2.0","Q4","0.52","0.54" +"Journal of Financial Counseling and Planning","1052-3073","1947-7910","('BUSINESS', 'ECONOMICS')","('ESCI', 'ESCI')","950","2.0","('Q3', 'Q2')","0.52","0.00" +"JOURNAL OF INFORMATION SYSTEMS","0888-7985","1558-7959","BUSINESS, FINANCE","('SSCI',)","924","2.0","Q2","0.52","0.00" +"MARINE GEODESY","0149-0419","1521-060X","('GEOCHEMISTRY & GEOPHYSICS', 'OCEANOGRAPHY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE')","1,246","2.0","('Q2', 'Q2', 'Q3')","0.52","11.25" +"Research and Reports in Urology","2253-2447","2253-2447","UROLOGY & NEPHROLOGY","('ESCI',)","873","2.0","Q2","0.52","97.10" +"ACCOUNTING AND BUSINESS RESEARCH","0001-4788","2159-4260","BUSINESS, FINANCE","('SSCI',)","2,055","2.0","Q2","0.51","37.25" +"EXPERIMENTAL MECHANICS","0014-4851","1741-2765","('MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","6,126","2.0","('Q2', 'Q3', 'Q3')","0.51","22.55" +"GENEVA PAPERS ON RISK AND INSURANCE-ISSUES AND PRACTICE","1018-5895","1468-0440","BUSINESS, FINANCE","('SSCI',)","823","2.0","Q2","0.51","27.17" +"Maritime Business Review","2397-3757","2397-3765","('BUSINESS', 'MANAGEMENT', 'TRANSPORTATION')","('ESCI', 'ESCI', 'ESCI')","351","2.0","('Q3', 'Q3', 'Q3')","0.51","95.65" +"Breast Care","1661-3791","1661-3805","('OBSTETRICS & GYNECOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","1,548","2.0","('Q2', 'Q3')","0.50","31.28" +"COMPUTER","0018-9162","1558-0814","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","7,617","2.0","('Q3', 'Q3')","0.50","6.87" +"HardwareX","","2468-0672","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","928","2.0","('Q3', 'Q3', 'Q3')","0.50","76.20" +"IEEE TRANSACTIONS ON ELECTROMAGNETIC COMPATIBILITY","0018-9375","1558-187X","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","6,264","2.0","('Q3', 'Q3')","0.50","8.73" +"Information Development","0266-6669","1741-6469","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","1,298","2.0","Q2","0.50","8.98" +"Pharmacy","","2226-4787","PHARMACOLOGY & PHARMACY","('ESCI',)","2,254","2.0","Q3","0.50","99.82" +"Revista de Educacion","0034-8082","1988-592X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,160","2.0","Q2","0.50","0.00" +"REVISTA PANAMERICANA DE SALUD PUBLICA-PAN AMERICAN JOURNAL OF PUBLIC HEALTH","1020-4989","1680-5348","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","2,861","2.0","Q3","0.50","99.49" +"Solid Earth Sciences","2451-912X","2451-912X","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","344","2.0","Q3","0.50","98.51" +"Substance Abuse-Research and Treatment","1178-2218","1178-2218","SUBSTANCE ABUSE","('ESCI',)","646","2.0","Q3","0.50","93.66" +"Trials","","1745-6215","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","15,483","2.0","Q3","0.50","99.89" +"Advances in Cancer Biology-Metastasis","","2667-3940","ONCOLOGY","('ESCI',)","160","2.0","Q3","0.49","93.20" +"Cancer Research Communications","","2767-9764","ONCOLOGY","('ESCI',)","425","2.0","Q3","0.49","97.35" +"DIGESTIVE DISEASES","0257-2753","1421-9875","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","2,983","2.0","Q3","0.49","25.26" +"EURASIP Journal on Image and Video Processing","1687-5176","1687-5281","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY')","('SCIE', 'SCIE')","1,608","2.0","('Q3', 'Q3')","0.49","100.00" +"Indian Journal of Gastroenterology","0254-8860","0975-0711","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","1,706","2.0","Q3","0.49","4.96" +"International Journal of Accounting","1094-4060","2213-3933","BUSINESS, FINANCE","('ESCI',)","1,263","2.0","Q2","0.49","3.33" +"JOURNAL OF APPLIED GENETICS","1234-1983","2190-3883","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","1,896","2.0","('Q3', 'Q3')","0.49","38.42" +"JOURNAL OF FOOD PROCESSING AND PRESERVATION","0145-8892","1745-4549","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","12,712","2.0","Q3","0.49","82.77" +"Multidisciplinary Respiratory Medicine","1828-695X","2049-6958","RESPIRATORY SYSTEM","('ESCI',)","1,038","2.0","Q3","0.49","94.19" +"PREPARATIVE BIOCHEMISTRY & BIOTECHNOLOGY","1082-6068","1532-2297","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,351","2.0","('Q3', 'Q4', 'Q3')","0.49","1.17" +"TRIBOLOGY TRANSACTIONS","1040-2004","1547-397X","ENGINEERING, MECHANICAL","('SCIE',)","4,355","2.0","Q2","0.49","7.32" +"ACTA NEUROLOGICA BELGICA","0300-9009","2240-2993","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","2,414","2.0","('Q3', 'Q3')","0.48","11.73" +"CHEMICAL PHYSICS","0301-0104","1873-4421","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","11,638","2.0","('Q4', 'Q3')","0.48","5.65" +"CLAYS AND CLAY MINERALS","0009-8604","1552-8367","('CHEMISTRY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'MINERALOGY', 'SOIL SCIENCE')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,127","2.0","('Q4', 'Q3', 'Q2', 'Q3')","0.48","13.13" +"International Journal of Peptide Research and Therapeutics","1573-3149","1573-3904","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","2,096","2.0","Q4","0.48","7.43" +"JOURNAL OF CLINICAL BIOCHEMISTRY AND NUTRITION","0912-0009","1880-5086","NUTRITION & DIETETICS","('SCIE',)","2,681","2.0","Q3","0.48","96.88" +"NUTRITION AND CANCER-AN INTERNATIONAL JOURNAL","0163-5581","1532-7914","('NUTRITION & DIETETICS', 'ONCOLOGY')","('SCIE', 'SCIE')","7,281","2.0","('Q3', 'Q3')","0.48","6.06" +"SynOpen","2509-9396","2509-9396","CHEMISTRY, ORGANIC","('ESCI',)","255","2.0","Q2","0.48","98.41" +"ACM Transactions on Cyber-Physical Systems","2378-962X","2378-9638","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","528","2.0","Q3","0.47","3.85" +"BREEDING SCIENCE","1344-7610","1347-3735","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","2,577","2.0","('Q2', 'Q2')","0.47","100.00" +"Clinical Neurophysiology Practice","2467-981X","2467-981X","NEUROSCIENCES","('ESCI',)","605","2.0","Q3","0.47","99.08" +"CURRENT NEUROVASCULAR RESEARCH","1567-2026","1875-5739","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","1,464","2.0","('Q3', 'Q3')","0.47","2.23" +"Groundwater","0017-467X","1745-6584","('GEOSCIENCES, MULTIDISCIPLINARY', 'WATER RESOURCES')","('SCIE', 'SCIE')","5,731","2.0","('Q3', 'Q3')","0.47","29.69" +"HORMONE AND METABOLIC RESEARCH","0018-5043","1439-4286","ENDOCRINOLOGY & METABOLISM","('SCIE',)","4,389","2.0","Q3","0.47","9.84" +"International Journal of Cross Cultural Management","1470-5958","1741-2838","MANAGEMENT","('ESCI',)","827","2.0","Q3","0.47","16.22" +"Journal of Immigrant and Minority Health","1557-1912","1557-1920","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","4,603","2.0","Q3","0.47","22.40" +"LETTERS IN APPLIED MICROBIOLOGY","0266-8254","1472-765X","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","8,921","2.0","('Q3', 'Q4')","0.47","7.99" +"PHYSICAL BIOLOGY","1478-3967","1478-3975","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","1,817","2.0","('Q4', 'Q3')","0.47","37.25" +"Sport Marketing Quarterly","1061-6934","1557-2528","('BUSINESS', 'HOSPITALITY, LEISURE, SPORT & TOURISM')","('SSCI', 'SSCI')","1,080","2.0","('Q3', 'Q2')","0.47","0.00" +"ACTA MECHANICA SOLIDA SINICA","0894-9166","1860-2134","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE')","1,630","2.0","('Q3', 'Q3')","0.46","9.13" +"Forensic Science International-Digital Investigation","","2666-2817","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","614","2.0","('Q3', 'Q3')","0.46","59.76" +"Hematology","1024-5332","1607-8454","HEMATOLOGY","('SCIE',)","2,304","2.0","Q3","0.46","98.52" +"Journal of Computer Networks and Communications","2090-7141","2090-715X","TELECOMMUNICATIONS","('ESCI',)","381","2.0","Q3","0.46","97.30" +"Nutrition Research and Practice","1976-1457","2005-6168","NUTRITION & DIETETICS","('SCIE',)","1,952","2.0","Q3","0.46","97.84" +"Technology and Economics of Smart Grids and Sustainable Energy","","2199-4706","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('ESCI', 'ESCI')","265","2.0","('Q4', 'Q3')","0.46","1.82" +"Cardiology in Review","1061-5377","1538-4683","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,395","2.0","Q3","0.45","4.35" +"COMPTES RENDUS GEOSCIENCE","1631-0713","1778-7025","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","2,792","2.0","Q3","0.45","100.00" +"Current Cardiovascular Risk Reports","1932-9520","1932-9563","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","488","2.0","Q3","0.45","7.35" +"CyTA-Journal of Food","1947-6337","1947-6345","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","2,308","2.0","Q3","0.45","98.10" +"Endokrynologia Polska","0423-104X","","ENDOCRINOLOGY & METABOLISM","('SCIE',)","1,267","2.0","Q3","0.45","99.55" +"Entrepreneurship Research Journal","2194-6175","2157-5665","BUSINESS","('SSCI',)","725","2.0","Q3","0.45","5.96" +"Equality Diversity and Inclusion","2040-7149","2040-7157","MANAGEMENT","('ESCI',)","1,361","2.0","Q3","0.45","12.14" +"Journal of Traditional Chinese Medicine","0255-2922","1577-7014","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","2,650","2.0","Q2","0.45","0.00" +"CANADIAN JOURNAL OF REMOTE SENSING","0703-8992","1712-7971","REMOTE SENSING","('SCIE',)","2,300","2.0","Q3","0.44","34.35" +"Cognitive Neuroscience","1758-8928","1758-8936","NEUROSCIENCES","('SCIE',)","838","2.0","Q3","0.44","8.57" +"Journal of Applied Biomedicine","1214-021X","1214-0287","('MEDICINE, RESEARCH & EXPERIMENTAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","720","2.0","('Q3', 'Q3')","0.44","100.00" +"Journal of Political Ecology","1073-0451","1073-0451","ENVIRONMENTAL STUDIES","('ESCI',)","1,051","2.0","Q3","0.44","0.00" +"Signal Image and Video Processing","1863-1703","1863-1711","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY')","('SCIE', 'SCIE')","3,365","2.0","('Q3', 'Q3')","0.44","3.50" +"Cerebrovascular Diseases Extra","1664-5456","1664-5456","PERIPHERAL VASCULAR DISEASE","('ESCI',)","422","2.0","Q3","0.43","98.08" +"Discovery Medicine","1539-6509","1944-7930","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","1,643","2.0","Q3","0.43","0.57" +"JOURNAL OF ADVANCED TRANSPORTATION","0197-6729","2042-3195","('ENGINEERING, CIVIL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","5,800","2.0","('Q2', 'Q3')","0.43","99.74" +"Liver Research","2096-2878","2542-5684","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","618","2.0","Q3","0.43","95.74" +"PARALLEL COMPUTING","0167-8191","1872-7336","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","1,380","2.0","Q2","0.43","40.00" +"Rural and Remote Health","1445-6354","","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","2,485","2.0","Q3","0.43","99.60" +"Asia Pacific Business Review","1360-2381","1743-792X","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","1,173","2.0","('Q3', 'Q3')","0.42","8.70" +"Endocrine Metabolic & Immune Disorders-Drug Targets","1871-5303","2212-3873","('ENDOCRINOLOGY & METABOLISM', 'IMMUNOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","2,408","2.0","('Q3', 'Q4', 'Q3')","0.42","1.65" +"Frontiers in Mechanical Engineering-Switzerland","","2297-3079","('ENGINEERING, MECHANICAL', 'MECHANICS')","('ESCI', 'ESCI')","1,213","2.0","('Q2', 'Q3')","0.42","99.68" +"IISE Transactions","2472-5854","2472-5862","('ENGINEERING, INDUSTRIAL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","1,624","2.0","('Q3', 'Q2')","0.42","5.26" +"Journal of Breast Imaging","2631-6110","2631-6129","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('ESCI', 'ESCI')","603","2.0","('Q3', 'Q3')","0.42","8.33" +"JOURNAL OF CHEMICAL AND ENGINEERING DATA","0021-9568","1520-5134","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","23,117","2.0","('Q3', 'Q3', 'Q2')","0.42","5.23" +"Journal of Computational Biophysics and Chemistry","2737-4165","2737-4173","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","342","2.0","Q3","0.42","1.78" +"Journal of Financial Regulation and Compliance","1358-1988","1740-0279","BUSINESS, FINANCE","('ESCI',)","437","2.0","Q2","0.42","11.70" +"Journal of Gastrointestinal Oncology","2078-6891","2219-679X","('GASTROENTEROLOGY & HEPATOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","3,702","2.0","('Q3', 'Q3')","0.42","97.93" +"Polish Journal of Microbiology","1733-1331","2544-4646","MICROBIOLOGY","('SCIE',)","1,335","2.0","Q4","0.42","99.33" +"Tourism","1332-7461","1849-1545","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","705","2.0","Q2","0.42","100.00" +"Journal of Medical Biochemistry","1452-8258","1452-8266","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","720","2.0","Q4","0.41","100.00" +"Thin Solid Films","0040-6090","1879-2731","('MATERIALS SCIENCE, COATINGS & FILMS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","31,381","2.0","('Q3', 'Q3', 'Q3', 'Q3')","0.41","13.66" +"Advanced Modeling and Simulation in Engineering Sciences","","2213-7467","MECHANICS","('ESCI',)","417","2.0","Q3","0.40","100.00" +"Computer Supported Cooperative Work-The Journal of Collaborative Computing and Work Practices","0925-9724","1573-7551","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","1,089","2.0","Q3","0.40","65.48" +"Critical Perspectives on International Business","1742-2043","1758-6062","BUSINESS","('ESCI',)","576","2.0","Q3","0.40","13.16" +"Gastroenterology Research and Practice","1687-6121","1687-630X","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","3,893","2.0","Q3","0.40","100.00" +"IET Image Processing","1751-9659","1751-9667","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,493","2.0","('Q3', 'Q3', 'Q3')","0.40","83.28" +"JOURNAL OF ENERGY ENGINEERING","0733-9402","1943-7897","('ENERGY & FUELS', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","1,270","2.0","('Q4', 'Q2')","0.40","0.47" +"Journal of Flow Chemistry","2062-249X","2063-0212","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","734","2.0","Q3","0.40","30.77" +"Lifestyle Genomics","2504-3161","2504-3188","('GENETICS & HEREDITY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","139","2.0","('Q3', 'Q3')","0.40","92.31" +"Oncology Research and Treatment","2296-5270","2296-5262","ONCOLOGY","('SCIE',)","1,285","2.0","Q3","0.40","17.65" +"ACM TRANSACTIONS ON COMPUTER SYSTEMS","0734-2071","1557-7333","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","1,193","2.0","Q2","0.39","0.00" +"ACTA ASTRONOMICA","0001-5237","0001-5237","ASTRONOMY & ASTROPHYSICS","('SCIE',)","1,205","2.0","Q2","0.39","0.00" +"AUTONOMOUS AGENTS AND MULTI-AGENT SYSTEMS","1387-2532","1573-7454","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE')","('SCIE', 'SCIE')","1,118","2.0","('Q3', 'Q3')","0.39","44.06" +"CURRENT OPINION IN CARDIOLOGY","0268-4705","1531-7080","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","2,471","2.0","Q3","0.39","5.65" +"Drug Target Insights","1177-3928","1177-3928","PHARMACOLOGY & PHARMACY","('ESCI',)","228","2.0","Q3","0.39","93.10" +"Environmental Chemistry","1448-2517","1449-8979","('CHEMISTRY, ANALYTICAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","2,502","2.0","('Q3', 'Q3')","0.39","23.53" +"Journal of Rehabilitation and Assistive Technologies Engineering","2055-6683","2055-6683","ENGINEERING, BIOMEDICAL","('ESCI',)","464","2.0","Q3","0.39","96.51" +"Spatial Information Research","2366-3286","2366-3294","REMOTE SENSING","('ESCI',)","1,019","2.0","Q3","0.39","6.99" +"ADVANCES IN POLYMER TECHNOLOGY","0730-6679","1098-2329","('ENGINEERING, CHEMICAL', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","2,896","2.0","('Q3', 'Q3')","0.38","99.36" +"CYTOTECHNOLOGY","0920-9069","1573-0778","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","3,042","2.0","('Q3', 'Q4')","0.38","6.25" +"Mediterranean Journal of Hematology and Infectious Diseases","","2035-3006","('HEMATOLOGY', 'INFECTIOUS DISEASES')","('SCIE', 'SCIE')","3,376","2.0","('Q3', 'Q3')","0.38","98.00" +"Therapeutic Innovation & Regulatory Science","2168-4790","2168-4804","('MEDICAL INFORMATICS', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,381","2.0","('Q4', 'Q3')","0.38","42.68" +"COLORATION TECHNOLOGY","1472-3581","1478-4408","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, TEXTILES')","('SCIE', 'SCIE', 'SCIE')","1,628","2.0","('Q3', 'Q3', 'Q2')","0.37","7.32" +"Frontiers in Virology","","2673-818X","VIROLOGY","('ESCI',)","270","2.0","Q4","0.37","100.00" +"Hereditary Cancer in Clinical Practice","1731-2302","1897-4287","ONCOLOGY","('SCIE',)","554","2.0","Q3","0.37","100.00" +"Journal of Research in Marketing and Entrepreneurship","1471-5201","1471-521X","BUSINESS","('ESCI',)","432","2.0","Q3","0.37","5.26" +"Progress in Artificial Intelligence","2192-6352","2192-6360","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","874","2.0","Q3","0.37","17.50" +"Spanish Journal of Soil Science","2253-6574","2253-6574","SOIL SCIENCE","('ESCI',)","156","2.0","Q3","0.37","83.78" +"Tumori Journal","0300-8916","2038-2529","ONCOLOGY","('SCIE',)","2,033","2.0","Q3","0.36","21.64" +"Advances in Materials and Processing Technologies","2374-068X","2374-0698","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","1,974","2.0","Q3","0.35","0.56" +"Journal of Business-to-Business Marketing","1051-712X","1547-0628","BUSINESS","('SSCI',)","533","2.0","Q3","0.34","11.43" +"Membranes and Membrane Technologies","2517-7516","2517-7524","('CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL', 'POLYMER SCIENCE')","('ESCI', 'ESCI', 'ESCI')","355","2.0","('Q4', 'Q3', 'Q3')","0.34","2.16" +"Planning Practice and Research","0269-7459","1360-0583","REGIONAL & URBAN PLANNING","('ESCI',)","1,265","2.0","Q3","0.34","31.53" +"International Journal of Health Sciences-IJHS","1658-3639","1658-7774","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,356","2.0","Q2","0.33","0.00" +"PURE AND APPLIED CHEMISTRY","0033-4545","1365-3075","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","15,581","2.0","Q3","0.33","90.44" +"Information Technology and Control","1392-124X","1392-124X","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('SCIE', 'SCIE', 'SCIE')","509","2.0","('Q3', 'Q3', 'Q3')","0.32","98.85" +"COMPOST SCIENCE & UTILIZATION","1065-657X","2326-2397","('ECOLOGY', 'SOIL SCIENCE')","('SCIE', 'SCIE')","800","2.0","('Q3', 'Q3')","0.31","5.00" +"FIRE AND MATERIALS","0308-0501","1099-1018","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","3,057","2.0","Q3","0.31","15.98" +"International Journal of Sustainable Energy","1478-6451","1478-646X","ENERGY & FUELS","('ESCI',)","1,340","2.0","Q4","0.31","42.11" +"Current Treatment Options in Infectious Diseases","","1534-6250","INFECTIOUS DISEASES","('ESCI',)","259","2.0","Q3","0.30","24.00" +"RADICAL PHILOSOPHY","0300-211X","0030-211X","('ETHICS', 'WOMENS STUDIES')","('SSCI', 'SSCI')","603","2.0","('Q2', 'Q1')","0.29","0.00" +"Journal of Industrial Engineering and Management-JIEM","2013-8423","2013-0953","ENGINEERING, INDUSTRIAL","('ESCI',)","1,060","2.0","Q3","0.28","99.12" +"Infectious Microbes & Diseases","","2641-5917","('INFECTIOUS DISEASES', 'MICROBIOLOGY')","('ESCI', 'ESCI')","160","2.0","('Q3', 'Q4')","0.27","100.00" +"GEN Biotechnology","2768-1572","2768-1556","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('ESCI',)","67","2.0","Q3","0.26","10.31" +"Strategic Management","1821-3448","2334-6191","MANAGEMENT","('ESCI',)","2,134","2.0","Q3","0.26","93.02" +"CELL STRUCTURE AND FUNCTION","0386-7196","1347-3700","CELL BIOLOGY","('SCIE',)","861","2.0","Q4","0.25","100.00" +"Acta Naturae","2075-8251","2075-8251","CELL BIOLOGY","('SCIE',)","1,394","2.0","Q4","0.24","97.54" +"HASELTONIA","1070-0048","1938-2898","PLANT SCIENCES","('SCIE',)","189","2.0","Q2","0.24","0.00" +"Recent Patents on Nanotechnology","1872-2105","2212-4020","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","632","2.0","('Q3', 'Q4', 'Q3')","0.24","0.00" +"AMERICAN HISTORICAL REVIEW","0002-8762","1937-5239","HISTORY","('AHCI', 'SSCI')","3,823","1.9","Q1","4.49","3.21" +"Africa Spectrum","0002-0397","1868-6869","AREA STUDIES","('SSCI',)","463","1.9","Q1","2.17","92.86" +"UNIVERSITY OF CHICAGO LAW REVIEW","0041-9494","","LAW","('SSCI',)","2,598","1.9","Q1","2.03","0.00" +"AFRICAN AFFAIRS","0001-9909","1468-2621","('AREA STUDIES', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,890","1.9","('Q1', 'Q2')","2.02","36.36" +"European Journal of Cultural Studies","1367-5494","1460-3551","CULTURAL STUDIES","('AHCI', 'SSCI')","1,822","1.9","Q1","1.82","48.18" +"Review of Corporate Finance Studies","2046-9128","2046-9136","BUSINESS, FINANCE","('ESCI',)","913","1.9","Q2","1.80","15.84" +"JOURNAL OF PHONETICS","0095-4470","1095-8576","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","3,280","1.9","('N/A', 'Q1')","1.69","40.60" +"LANGUAGE","0097-8507","1535-0665","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","4,675","1.9","('N/A', 'Q1')","1.69","1.83" +"CULTURAL ANTHROPOLOGY","0886-7356","1548-1360","ANTHROPOLOGY","('SSCI',)","3,463","1.9","Q1","1.58","97.92" +"Education in the Knowledge Society","2444-8729","2444-8729","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","365","1.9","Q2","1.47","89.04" +"Journal of Function Spaces","2314-8896","2314-8888","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,379","1.9","('Q1', 'Q1')","1.47","99.44" +"SIAM Journal on Mathematics of Data Science","","2577-0187","MATHEMATICS, APPLIED","('SCIE',)","615","1.9","Q1","1.47","89.68" +"Advances in Life Course Research","1569-4909","1879-6974","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","1,249","1.9","Q1","1.44","46.28" +"Iranian Journal of Fuzzy Systems","1735-0654","2676-4334","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,085","1.9","('Q1', 'Q1')","1.39","0.00" +"Advances in Archaeological Practice","2326-3768","2326-3768","ARCHAEOLOGY","('AHCI',)","702","1.9","","1.38","61.67" +"Mathematical Sciences","2008-1359","2251-7456","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","797","1.9","('Q1', 'Q1')","1.35","5.81" +"Qualitative Theory of Dynamical Systems","1575-5460","1662-3592","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","944","1.9","('Q1', 'Q1')","1.35","5.56" +"ANTIQUITY","0003-598X","1745-1744","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","4,272","1.9","('Q1', 'N/A')","1.34","58.81" +"Journal of Information Technology Education-Research","1547-9714","1539-3585","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","862","1.9","Q2","1.34","91.67" +"THEORETICAL CRIMINOLOGY","1362-4806","1461-7439","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,761","1.9","Q2","1.33","44.09" +"Biological Theory","1555-5542","1555-5550","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","605","1.9","Q1","1.25","37.14" +"Target-International Journal of Translation Studies","0924-1884","1569-9986","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","774","1.9","('N/A', 'Q1')","1.25","7.04" +"AJIDD-American Journal on Intellectual and Developmental Disabilities","1944-7515","1944-7558","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","1,330","1.9","('Q1', 'Q2')","1.24","0.00" +"Axioms","","2075-1680","MATHEMATICS, APPLIED","('SCIE',)","3,352","1.9","Q1","1.24","99.95" +"IDENTITIES-GLOBAL STUDIES IN CULTURE AND POWER","1070-289X","1547-3384","('CULTURAL STUDIES', 'ETHNIC STUDIES')","('AHCI, SSCI', 'SSCI')","1,253","1.9","('Q1', 'Q2')","1.24","42.52" +"INTERNATIONAL JOURNAL OF PRIMATOLOGY","0164-0291","1573-8604","ZOOLOGY","('SCIE',)","3,314","1.9","Q1","1.24","35.20" +"EUROPEAN ARCHIVES OF OTO-RHINO-LARYNGOLOGY","0937-4477","1434-4726","OTORHINOLARYNGOLOGY","('SCIE',)","13,535","1.9","Q2","1.23","31.23" +"Teacher Education and Special Education","0888-4064","1944-4931","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","853","1.9","Q2","1.23","2.13" +"Vocations and Learning","1874-785X","1874-7868","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","630","1.9","Q2","1.23","90.28" +"European Journal of Population-Revue Europeenne de Demographie","0168-6577","1572-9885","DEMOGRAPHY","('SSCI',)","1,653","1.9","Q2","1.21","85.86" +"Pedagogy Culture and Society","1468-1366","1747-5104","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,057","1.9","Q2","1.21","33.33" +"Globalizations","1474-7731","1474-774X","('INTERNATIONAL RELATIONS', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","2,190","1.9","('Q2', 'Q1')","1.20","33.01" +"Learning Disabilities Research & Practice","0938-8982","1540-5826","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","993","1.9","('Q1', 'Q2')","1.20","12.33" +"DYSLEXIA","1076-9242","1099-0909","('EDUCATION, SPECIAL', 'PSYCHOLOGY, EDUCATIONAL', 'REHABILITATION')","('SSCI', 'SSCI', 'SSCI')","1,060","1.9","('Q1', 'Q3', 'Q2')","1.19","29.58" +"RESEARCH IN HIGHER EDUCATION","0361-0365","1573-188X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,784","1.9","Q2","1.17","22.60" +"Research in Learning Technology","2156-7069","2156-7077","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","815","1.9","Q2","1.17","91.80" +"Journal of Experimental Zoology Part A-Ecological and Integrative Physiology","2471-5638","2471-5646","ZOOLOGY","('SCIE',)","2,083","1.9","Q1","1.16","15.95" +"Feminist Theory","1464-7001","1741-2773","WOMENS STUDIES","('SSCI',)","1,277","1.9","Q2","1.15","33.02" +"Numerical Mathematics-Theory Methods and Applications","1004-8979","2079-7338","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","569","1.9","('Q1', 'Q1')","1.15","0.00" +"Teachers and Teaching","1354-0602","1470-1278","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,004","1.9","Q2","1.14","26.52" +"AMERICAN ETHNOLOGIST","0094-0496","1548-1425","ANTHROPOLOGY","('SSCI',)","3,920","1.9","Q1","1.13","42.86" +"JOURNAL OF INTELLECTUAL & DEVELOPMENTAL DISABILITY","1366-8250","1469-9532","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","1,657","1.9","('Q1', 'Q2')","1.13","42.59" +"Journal of Public Policy","0143-814X","1469-7815","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","1,426","1.9","('Q2', 'Q3')","1.13","57.98" +"SIAM JOURNAL ON APPLIED MATHEMATICS","0036-1399","1095-712X","MATHEMATICS, APPLIED","('SCIE',)","7,718","1.9","Q1","1.13","0.96" +"MAMMALIAN BIOLOGY","1616-5047","1618-1476","ZOOLOGY","('SCIE',)","2,415","1.9","Q1","1.11","32.26" +"International Journal of Science and Mathematics Education","1571-0068","1573-1774","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,574","1.9","Q2","1.10","28.52" +"CORNEA","0277-3740","1536-4798","OPHTHALMOLOGY","('SCIE',)","11,823","1.9","Q2","1.09","8.12" +"Youth Justice-An International Journal","1473-2254","1747-6283","CRIMINOLOGY & PENOLOGY","('SSCI',)","440","1.9","Q2","1.08","51.16" +"Fossil Record","","2193-0074","PALEONTOLOGY","('SCIE',)","386","1.9","Q1","1.06","91.80" +"JOURNAL OF SOCIAL POLICY","0047-2794","1469-7823","('PUBLIC ADMINISTRATION', 'SOCIAL ISSUES', 'SOCIAL WORK')","('SSCI', 'SSCI', 'SSCI')","2,288","1.9","('Q3', 'Q2', 'Q1')","1.06","57.96" +"CRETACEOUS RESEARCH","0195-6671","1095-998X","('GEOLOGY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","6,459","1.9","('Q1', 'Q1')","1.05","14.57" +"Empirical Economics","0377-7332","1435-8921","('ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","5,533","1.9","('Q2', 'Q2')","1.05","29.24" +"International Journal of Instruction","1694-609X","1308-1470","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","2,428","1.9","Q2","1.05","77.25" +"Science and Technology Studies","2243-4690","2243-4690","HISTORY & PHILOSOPHY OF SCIENCE","('SSCI',)","402","1.9","Q1","1.05","11.54" +"Agricultural Economics-Zemedelska Ekonomika","0139-570X","1805-9295","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('SCIE', 'SSCI')","1,063","1.9","('Q2', 'Q2')","1.04","100.00" +"Frontiers in Education","","2504-284X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","4,942","1.9","Q2","1.04","99.75" +"Health Systems & Reform","2328-8604","2328-8620","('HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","790","1.9","('Q3', 'Q3')","1.04","92.68" +"International Journal of Technology in Education","","2689-2758","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","205","1.9","Q2","1.04","95.83" +"Biological Research for Nursing","1099-8004","1552-4175","NURSING","('SCIE',)","1,783","1.9","Q2","1.03","3.21" +"European Annals of Otorhinolaryngology-Head and Neck Diseases","1879-7296","1879-730X","OTORHINOLARYNGOLOGY","('SCIE',)","1,603","1.9","Q2","1.03","82.28" +"Foot and Ankle Surgery","1268-7731","1460-9584","ORTHOPEDICS","('SCIE',)","2,694","1.9","Q2","1.03","14.65" +"Depositional Record","","2055-4877","GEOLOGY","('SCIE',)","465","1.9","Q1","1.02","86.55" +"Journal of Cultural Economics","0885-2545","1573-6997","ECONOMICS","('SSCI',)","1,083","1.9","Q2","1.01","34.67" +"Journal of Cultural Economy","1753-0350","1753-0369","('CULTURAL STUDIES', 'ECONOMICS', 'SOCIOLOGY')","('AHCI, SSCI', 'SSCI', 'SSCI')","1,917","1.9","('Q1', 'Q2', 'Q2')","1.01","40.72" +"Teaching and Learning in Nursing","1557-3087","1557-2013","NURSING","('ESCI',)","937","1.9","Q2","1.01","7.24" +"ANIMAL COGNITION","1435-9448","1435-9456","('BEHAVIORAL SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","3,745","1.9","('Q3', 'Q1')","1.00","41.34" +"Clinics in Orthopedic Surgery","2005-291X","2005-4408","ORTHOPEDICS","('SCIE',)","2,068","1.9","Q2","1.00","100.00" +"German Politics","0964-4008","1743-8993","POLITICAL SCIENCE","('SSCI',)","730","1.9","Q2","1.00","23.64" +"Palaeoentomology","2624-2826","2624-2834","('ENTOMOLOGY', 'PALEONTOLOGY')","('ESCI', 'ESCI')","550","1.9","('Q2', 'Q1')","0.99","0.00" +"SECOND LANGUAGE RESEARCH","0267-6583","1477-0326","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('SSCI', 'SSCI')","1,444","1.9","('Q2', 'Q1')","0.99","25.78" +"DISABILITY & SOCIETY","0968-7599","1360-0508","('REHABILITATION', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","4,667","1.9","('Q2', 'Q1')","0.97","34.11" +"European Journal of Trauma and Emergency Surgery","1863-9933","1863-9941","EMERGENCY MEDICINE","('SCIE',)","4,149","1.9","Q2","0.97","44.86" +"Journal of Applied Research in Higher Education","2050-7003","1758-1184","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,096","1.9","Q2","0.97","4.21" +"REHABILITATION PSYCHOLOGY","0090-5550","1939-1544","('PSYCHOLOGY, CLINICAL', 'REHABILITATION')","('SSCI', 'SSCI')","2,407","1.9","('Q3', 'Q2')","0.97","5.85" +"JOURNAL OF ANIMAL BREEDING AND GENETICS","0931-2668","1439-0388","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,846","1.9","Q2","0.96","38.51" +"JOURNAL OF ZOOLOGY","0952-8369","1469-7998","ZOOLOGY","('SCIE',)","8,440","1.9","Q1","0.96","35.66" +"Cooperation and Conflict","0010-8367","1460-3691","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,228","1.9","('Q2', 'Q2')","0.95","57.50" +"COUNSELING PSYCHOLOGIST","0011-0000","1552-3861","PSYCHOLOGY, APPLIED","('SSCI',)","3,789","1.9","Q3","0.95","5.97" +"International Journal of Adolescence and Youth","0267-3843","2164-4527","PSYCHOLOGY, DEVELOPMENTAL","('ESCI',)","1,386","1.9","Q3","0.95","98.51" +"Odontology","1618-1247","1618-1255","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,825","1.9","Q2","0.95","19.31" +"Risk Hazards & Crisis in Public Policy","1944-4079","1944-4079","PUBLIC ADMINISTRATION","('ESCI',)","424","1.9","Q3","0.95","38.33" +"Industry and Higher Education","0950-4222","2043-6858","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,014","1.9","Q2","0.94","21.76" +"International Research in Geographical and Environmental Education","1038-2046","1747-7611","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","667","1.9","Q2","0.94","29.09" +"Journal of Oral & Facial Pain and Headache","2333-0384","2333-0376","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,086","1.9","Q2","0.94","0.00" +"Drug Discoveries and Therapeutics","1881-7831","1881-784X","PHARMACOLOGY & PHARMACY","('ESCI',)","1,088","1.9","Q3","0.93","94.51" +"ACTA VETERINARIA SCANDINAVICA","0044-605X","1751-0147","VETERINARY SCIENCES","('SCIE',)","2,808","1.9","Q2","0.92","100.00" +"AMERICAN JOURNAL OF TROPICAL MEDICINE AND HYGIENE","0002-9637","1476-1645","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","21,019","1.9","('Q3', 'Q2')","0.92","47.15" +"International Journal of Nursing Practice","1322-7114","1440-172X","NURSING","('SCIE', 'SSCI')","2,815","1.9","Q2","0.92","12.79" +"MATHEMATICAL BIOSCIENCES","0025-5564","1879-3134","('BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","6,818","1.9","('Q2', 'Q3')","0.92","37.61" +"JOURNAL OF FELINE MEDICINE AND SURGERY","1098-612X","1532-2750","VETERINARY SCIENCES","('SCIE',)","4,346","1.9","Q2","0.91","43.96" +"ANNALS OF NUCLEAR ENERGY","0306-4549","1873-2100","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","12,165","1.9","Q1","0.90","16.06" +"Higher Education Skills and Work-based Learning","2042-3896","2042-390X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","857","1.9","Q2","0.90","7.41" +"Journal of Political Marketing","1537-7857","1537-7865","POLITICAL SCIENCE","('ESCI',)","513","1.9","Q2","0.90","12.70" +"Turkish Online Journal of Distance Education","1302-6488","1302-6488","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","893","1.9","Q2","0.90","0.51" +"WRITTEN COMMUNICATION","0741-0883","1552-8472","COMMUNICATION","('SSCI',)","1,274","1.9","Q2","0.90","27.14" +"BEHAVIORAL ECOLOGY AND SOCIOBIOLOGY","0340-5443","1432-0762","('BEHAVIORAL SCIENCES', 'ECOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","11,464","1.9","('Q3', 'Q3', 'Q1')","0.89","37.88" +"INNOVATIONS IN EDUCATION AND TEACHING INTERNATIONAL","1470-3297","1470-3300","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,094","1.9","Q2","0.89","23.79" +"International Feminist Journal of Politics","1461-6742","1468-4470","('POLITICAL SCIENCE', 'WOMENS STUDIES')","('SSCI', 'SSCI')","1,330","1.9","('Q2', 'Q2')","0.89","38.00" +"Territory Politics Governance","2162-2671","2162-268X","('GEOGRAPHY', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,107","1.9","('Q2', 'Q2')","0.89","33.63" +"Disaster Medicine and Public Health Preparedness","1935-7893","1938-744X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","3,537","1.9","Q3","0.88","37.28" +"PalZ","0031-0220","1867-6812","PALEONTOLOGY","('SCIE',)","551","1.9","Q1","0.88","55.00" +"VETERINARY CLINICS OF NORTH AMERICA-SMALL ANIMAL PRACTICE","0195-5616","1878-1306","VETERINARY SCIENCES","('SCIE',)","4,262","1.9","Q2","0.88","3.67" +"Asian Journal of Business Ethics","2210-6723","2210-6731","ETHICS","('ESCI',)","222","1.9","Q2","0.87","11.29" +"FUSION ENGINEERING AND DESIGN","0920-3796","1873-7196","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","11,967","1.9","Q1","0.87","21.88" +"International Journal of Lifelong Education","0260-1370","1464-519X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,501","1.9","Q2","0.87","30.48" +"JOURNAL OF WILDLIFE MANAGEMENT","0022-541X","1937-2817","('ECOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","10,536","1.9","('Q3', 'Q1')","0.87","31.37" +"NUCLEAR ENGINEERING AND DESIGN","0029-5493","1872-759X","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","16,038","1.9","Q1","0.87","22.13" +"REVUE SCIENTIFIQUE ET TECHNIQUE-OFFICE INTERNATIONAL DES EPIZOOTIES","0253-1933","1608-0637","VETERINARY SCIENCES","('SCIE',)","2,959","1.9","Q2","0.87","36.25" +"CANADIAN JOURNAL OF FISHERIES AND AQUATIC SCIENCES","0706-652X","1205-7533","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","15,184","1.9","('Q2', 'Q2')","0.86","33.66" +"CURRENT SOCIOLOGY","0011-3921","1461-7064","SOCIOLOGY","('SSCI',)","2,826","1.9","Q2","0.86","34.55" +"Journal of Human Kinetics","1640-5544","1899-7562","SPORT SCIENCES","('SCIE',)","3,356","1.9","Q2","0.86","92.48" +"RACE & CLASS","0306-3968","1741-3125","('ANTHROPOLOGY', 'ETHNIC STUDIES', 'SOCIAL ISSUES', 'SOCIAL SCIENCES, INTERDISCIPLINARY', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI', 'SSCI', 'SSCI')","1,044","1.9","('Q1', 'Q2', 'Q2', 'Q1', 'Q2')","0.86","31.15" +"SCANDINAVIAN JOURNAL OF CARING SCIENCES","0283-9318","1471-6712","NURSING","('SSCI',)","3,954","1.9","Q2","0.86","60.48" +"SOCIOLOGICAL SPECTRUM","0273-2173","1521-0707","SOCIOLOGY","('SSCI',)","903","1.9","Q2","0.86","2.00" +"Studies in Continuing Education","0158-037X","1470-126X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","805","1.9","Q2","0.86","32.14" +"Clinical Medicine Insights-Arthritis and Musculoskeletal Disorders","1179-5441","1179-5441","ORTHOPEDICS","('ESCI',)","367","1.9","Q2","0.85","100.00" +"OTOLOGY & NEUROTOLOGY","1531-7129","1537-4505","('CLINICAL NEUROLOGY', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE')","11,264","1.9","('Q3', 'Q2')","0.85","6.11" +"INTERNATIONAL JOURNAL OF PUBLIC OPINION RESEARCH","0954-2892","1471-6909","('COMMUNICATION', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,614","1.9","('Q2', 'Q2')","0.84","19.59" +"JOURNAL OF OCULAR PHARMACOLOGY AND THERAPEUTICS","1080-7683","1557-7732","('OPHTHALMOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","2,769","1.9","('Q2', 'Q3')","0.84","15.05" +"ORGANISMS DIVERSITY & EVOLUTION","1439-6092","1618-1077","('EVOLUTIONARY BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","1,481","1.9","('Q3', 'Q1')","0.84","27.92" +"RED-Revista de Educacion a Distancia","1578-7680","1578-7680","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","505","1.9","Q2","0.84","97.03" +"Emotion Space and Society","1755-4586","1878-0040","('GEOGRAPHY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","1,458","1.9","('Q2', 'Q1')","0.83","19.17" +"PHYSICIAN AND SPORTSMEDICINE","0091-3847","2326-3660","('ORTHOPEDICS', 'PRIMARY HEALTH CARE', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","2,218","1.9","('Q2', 'Q3', 'Q2')","0.83","5.71" +"STUDIES IN FAMILY PLANNING","0039-3665","1728-4465","('DEMOGRAPHY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","1,840","1.9","('Q2', 'Q3')","0.83","43.68" +"Translational Issues in Psychological Science","2332-2136","2332-2179","('PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","932","1.9","('Q3', 'Q2')","0.83","2.75" +"Veterinary and Animal Science","","2451-943X","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('ESCI', 'ESCI')","591","1.9","('Q2', 'Q2')","0.83","92.55" +"AUSTRALIAN DENTAL JOURNAL","0045-0421","1834-7819","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","3,685","1.9","Q2","0.82","36.55" +"Quantitative Economics","1759-7323","1759-7331","ECONOMICS","('SSCI',)","1,078","1.9","Q2","0.82","98.43" +"SCIENCE & JUSTICE","1355-0306","1876-4452","('MEDICINE, LEGAL', 'PATHOLOGY')","('SCIE', 'SCIE')","1,741","1.9","('Q2', 'Q3')","0.82","27.20" +"SEMINARS IN REPRODUCTIVE MEDICINE","1526-8004","1526-4564","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","2,441","1.9","('Q3', 'Q3')","0.82","0.99" +"Disability and Rehabilitation-Assistive Technology","1748-3107","1748-3115","REHABILITATION","('SSCI',)","2,950","1.9","Q2","0.81","22.43" +"JOURNAL OF NAVIGATION","0373-4633","1469-7785","('ENGINEERING, MARINE', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","2,696","1.9","('Q2', 'Q2')","0.81","18.09" +"PERSPECTIVES IN PSYCHIATRIC CARE","0031-5990","1744-6163","('NURSING', 'PSYCHIATRY')","('SCIE, SSCI', 'SCIE, SSCI')","2,497","1.9","('Q2', 'Q3')","0.81","85.71" +"China Journal of Accounting Research","1755-3091","1755-3091","BUSINESS, FINANCE","('ESCI',)","754","1.9","Q2","0.80","91.67" +"Community Work & Family","1366-8803","1469-3615","SOCIOLOGY","('ESCI',)","1,172","1.9","Q2","0.80","23.31" +"Research in Sports Medicine","1543-8627","1543-8635","SPORT SCIENCES","('SCIE',)","1,474","1.9","Q2","0.80","15.69" +"SCANDINAVIAN JOURNAL OF PRIMARY HEALTH CARE","0281-3432","1502-7724","('HEALTH CARE SCIENCES & SERVICES', 'MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE', 'SCIE')","1,688","1.9","('Q3', 'Q2', 'Q3')","0.80","94.59" +"ACTA ANAESTHESIOLOGICA SCANDINAVICA","0001-5172","1399-6576","ANESTHESIOLOGY","('SCIE',)","6,647","1.9","Q2","0.79","49.78" +"ACTA NEUROCHIRURGICA","0001-6268","0942-0940","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","11,427","1.9","('Q3', 'Q2')","0.79","31.99" +"Critical Policy Studies","1946-0171","1946-018X","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","922","1.9","('Q2', 'Q3')","0.79","46.08" +"DOMESTIC ANIMAL ENDOCRINOLOGY","0739-7240","1879-0054","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","2,381","1.9","('Q2', 'Q3')","0.79","21.61" +"International Journal of Dentistry","1687-8728","1687-8736","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","2,865","1.9","Q2","0.79","100.00" +"Journal of Health Services Research & Policy","1355-8196","1758-1060","HEALTH POLICY & SERVICES","('SSCI',)","2,204","1.9","Q3","0.79","52.75" +"Communication Research Reports","0882-4096","1746-4099","COMMUNICATION","('ESCI',)","1,243","1.9","Q2","0.78","5.75" +"Communications in Applied Mathematics and Computational Science","1559-3940","2157-5452","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","462","1.9","('Q1', 'Q2')","0.78","0.00" +"Facial Plastic Surgery Clinics of North America","1064-7406","1558-1926","SURGERY","('SCIE',)","1,663","1.9","Q2","0.78","0.58" +"FISHERIES OCEANOGRAPHY","1054-6006","1365-2419","('FISHERIES', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","2,302","1.9","('Q2', 'Q2')","0.78","28.21" +"Fungal Ecology","1754-5048","1878-0083","('ECOLOGY', 'MYCOLOGY')","('SCIE', 'SCIE')","3,503","1.9","('Q3', 'Q3')","0.78","31.21" +"International Journal of Performance Analysis in Sport","2474-8668","1474-8185","SPORT SCIENCES","('SCIE',)","2,221","1.9","Q2","0.78","15.43" +"JOURNAL OF GENERAL PSYCHOLOGY","0022-1309","1940-0888","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,587","1.9","Q2","0.78","1.54" +"London Review of Education","1474-8460","1474-8479","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","610","1.9","Q2","0.78","100.00" +"Veterinary Medicine International","2090-8113","2042-0048","VETERINARY SCIENCES","('ESCI',)","1,194","1.9","Q2","0.78","100.00" +"Palliative & Supportive Care","1478-9515","1478-9523","HEALTH POLICY & SERVICES","('SSCI',)","2,897","1.9","Q3","0.77","32.82" +"Bereavement-Journal of Grief and Responses to Death","","2754-7833","SOCIAL WORK","('ESCI',)","30","1.9","Q1","0.76","17.65" +"Mind Brain and Education","1751-2271","1751-228X","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","1,040","1.9","('Q2', 'Q3')","0.76","40.00" +"NEW ZEALAND JOURNAL OF GEOLOGY AND GEOPHYSICS","0028-8306","1175-8791","('GEOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,909","1.9","('Q1', 'Q3')","0.76","22.12" +"Psychological Services","1541-1559","1939-148X","PSYCHOLOGY, CLINICAL","('SSCI',)","2,261","1.9","Q3","0.76","5.41" +"ADDICTION RESEARCH & THEORY","1606-6359","1476-7392","('SOCIAL ISSUES', 'SUBSTANCE ABUSE')","('SSCI', 'SSCI')","1,960","1.9","('Q2', 'Q3')","0.75","22.49" +"COMPARATIVE BIOCHEMISTRY AND PHYSIOLOGY B-BIOCHEMISTRY & MOLECULAR BIOLOGY","1096-4959","1879-1107","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","6,155","1.9","('Q4', 'Q1')","0.75","13.41" +"INSURANCE MATHEMATICS & ECONOMICS","0167-6687","1873-5959","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","4,212","1.9","('Q2', 'Q2', 'Q2', 'Q1')","0.75","19.26" +"Management Communication Quarterly","0893-3189","1552-6798","('COMMUNICATION', 'MANAGEMENT')","('SSCI', 'SSCI')","1,707","1.9","('Q2', 'Q3')","0.75","13.00" +"PROBLEMS OF POST-COMMUNISM","1075-8216","1557-783X","POLITICAL SCIENCE","('SSCI',)","864","1.9","Q2","0.75","22.96" +"Clinical Cosmetic and Investigational Dermatology","1178-7015","1178-7015","DERMATOLOGY","('SCIE',)","3,283","1.9","Q3","0.74","98.43" +"International Journal of Retina and Vitreous","","2056-9920","OPHTHALMOLOGY","('ESCI',)","1,057","1.9","Q2","0.74","100.00" +"Joint Diseases and Related Surgery","","2687-4792","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","793","1.9","('Q2', 'Q2')","0.74","88.85" +"JOURNAL OF REPRODUCTION AND DEVELOPMENT","0916-8818","1348-4400","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE')","2,232","1.9","('Q2', 'Q3')","0.74","97.37" +"Judgment and Decision Making","1930-2975","1930-2975","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","2,997","1.9","Q2","0.74","26.49" +"LETHAIA","0024-1164","1502-3931","PALEONTOLOGY","('SCIE',)","2,280","1.9","Q1","0.74","9.09" +"Archives of Rehabilitation Research and Clinical Translation","2590-1095","2590-1095","REHABILITATION","('ESCI',)","434","1.9","Q2","0.73","86.57" +"CLINICAL TRANSPLANTATION","0902-0063","1399-0012","('SURGERY', 'TRANSPLANTATION')","('SCIE', 'SCIE')","6,729","1.9","('Q2', 'Q3')","0.73","16.22" +"Computation","","2079-3197","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","1,500","1.9","Q2","0.73","99.51" +"INTERNATIONAL JOURNAL OF BIFURCATION AND CHAOS","0218-1274","1793-6551","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MULTIDISCIPLINARY SCIENCES')","('SCIE', 'SCIE')","8,047","1.9","('Q2', 'Q2')","0.73","2.30" +"Journal of Maps","1744-5647","1744-5647","('GEOGRAPHY', 'GEOGRAPHY, PHYSICAL')","('SSCI', 'SCIE')","2,148","1.9","('Q2', 'Q3')","0.73","97.89" +"Journal of the Economics of Ageing","2212-828X","2212-8298","('DEMOGRAPHY', 'ECONOMICS', 'GERONTOLOGY')","('SSCI', 'SSCI', 'SSCI')","617","1.9","('Q2', 'Q2', 'Q2')","0.73","33.91" +"NEW FORESTS","0169-4286","1573-5095","FORESTRY","('SCIE',)","2,262","1.9","Q2","0.73","17.17" +"VETERINARY DERMATOLOGY","0959-4493","1365-3164","('DERMATOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","2,876","1.9","('Q3', 'Q2')","0.73","20.75" +"Clinical and Experimental Emergency Medicine","2383-4625","2383-4625","EMERGENCY MEDICINE","('ESCI',)","711","1.9","Q2","0.72","97.39" +"Couple and Family Psychology-Research and Practice","2160-4096","2160-410X","FAMILY STUDIES","('ESCI',)","416","1.9","Q2","0.72","4.12" +"Medical Science Educator","","2156-8650","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","1,789","1.9","Q2","0.72","19.35" +"International Journal of Communication","1932-8036","1932-8036","COMMUNICATION","('SSCI',)","5,694","1.9","Q2","0.71","0.00" +"JOURNAL OF INSECT CONSERVATION","1366-638X","1572-9753","ENTOMOLOGY","('SCIE',)","2,689","1.9","Q2","0.71","37.60" +"Clinical Pathology","2632-010X","2632-010X","PATHOLOGY","('ESCI',)","174","1.9","Q3","0.70","92.05" +"JOURNAL OF COMPARATIVE PHYSIOLOGY A-NEUROETHOLOGY SENSORY NEURAL AND BEHAVIORAL PHYSIOLOGY","0340-7594","1432-1351","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES', 'PHYSIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,646","1.9","('Q3', 'Q4', 'Q3', 'Q1')","0.70","45.73" +"Journal of Membrane Computing","2523-8906","2523-8914","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","213","1.9","Q2","0.70","24.24" +"Journal of the Chinese Medical Association","1726-4901","1728-7731","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,400","1.9","Q2","0.70","100.00" +"Childrens Geographies","1473-3285","1473-3277","GEOGRAPHY","('SSCI',)","1,895","1.9","Q2","0.69","39.90" +"Current Opinion in Otolaryngology & Head and Neck Surgery","1068-9508","1531-6998","OTORHINOLARYNGOLOGY","('SCIE',)","2,525","1.9","Q2","0.69","4.27" +"JOURNAL OF EDUCATIONAL AND BEHAVIORAL STATISTICS","1076-9986","1935-1054","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, MATHEMATICAL', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI', 'SSCI')","2,816","1.9","('Q2', 'Q3', 'Q2')","0.69","22.83" +"Mathematical and Computational Applications","1300-686X","2297-8747","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","1,185","1.9","Q2","0.69","100.00" +"Transplantation Direct","2373-8731","2373-8731","TRANSPLANTATION","('ESCI',)","1,593","1.9","Q3","0.69","98.43" +"CLINICS IN SPORTS MEDICINE","0278-5919","1556-228X","SPORT SCIENCES","('SCIE',)","2,507","1.9","Q2","0.68","3.55" +"JOURNAL OF PLANKTON RESEARCH","0142-7873","1464-3774","('MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","6,254","1.9","('Q2', 'Q2')","0.68","25.12" +"JOURNAL OF URBAN AFFAIRS","0735-2166","1467-9906","URBAN STUDIES","('SSCI',)","2,703","1.9","Q2","0.68","16.45" +"MIS Quarterly Executive","1540-1960","1540-1979","('INFORMATION SCIENCE & LIBRARY SCIENCE', 'MANAGEMENT')","('SSCI', 'SSCI')","1,425","1.9","('Q2', 'Q3')","0.68","0.00" +"QUATERNARY INTERNATIONAL","1040-6182","1873-4553","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","16,538","1.9","('Q3', 'Q3')","0.68","18.68" +"REHABILITATION COUNSELING BULLETIN","0034-3552","1538-4853","REHABILITATION","('SSCI',)","840","1.9","Q2","0.68","7.06" +"RESPIRATORY PHYSIOLOGY & NEUROBIOLOGY","1569-9048","1878-1519","('PHYSIOLOGY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","5,940","1.9","('Q3', 'Q3')","0.68","21.10" +"Tree Genetics & Genomes","1614-2942","1614-2950","('FORESTRY', 'GENETICS & HEREDITY', 'HORTICULTURE')","('SCIE', 'SCIE', 'SCIE')","2,814","1.9","('Q2', 'Q3', 'Q2')","0.68","23.61" +"World Neurosurgery","1878-8750","1878-8769","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","28,960","1.9","('Q3', 'Q2')","0.68","9.40" +"AQUACULTURE RESEARCH","1355-557X","1365-2109","FISHERIES","('SCIE',)","13,140","1.9","Q2","0.67","80.57" +"DENTAL MATERIALS JOURNAL","0287-4547","0287-4547","('DENTISTRY, ORAL SURGERY & MEDICINE', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","4,192","1.9","('Q2', 'Q4')","0.67","95.70" +"Explore-The Journal of Science and Healing","1550-8307","1878-7541","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","1,411","1.9","Q3","0.67","18.34" +"IEEE TRANSACTIONS ON NUCLEAR SCIENCE","0018-9499","1558-1578","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'NUCLEAR SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","13,438","1.9","('Q3', 'Q1')","0.67","16.44" +"Journal of Family and Community Medicine","2230-8229","2229-340X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","1,021","1.9","Q3","0.67","42.22" +"SKELETAL RADIOLOGY","0364-2348","1432-2161","('ORTHOPEDICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","7,247","1.9","('Q2', 'Q3')","0.67","14.33" +"AMERICAN JOURNAL OF SCIENCE","0002-9599","1945-452X","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","7,833","1.9","Q3","0.66","12.66" +"Applied Mathematics in Science and Engineering","","2769-0911","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","135","1.9","('Q2', 'Q2')","0.66","91.35" +"CANADIAN JOURNAL OF DEVELOPMENT STUDIES-REVUE CANADIENNE D ETUDES DU DEVELOPPEMENT","0225-5189","2158-9100","DEVELOPMENT STUDIES","('SSCI',)","877","1.9","Q2","0.66","34.34" +"INFANT BEHAVIOR & DEVELOPMENT","0163-6383","1879-0453","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","4,230","1.9","Q3","0.66","31.16" +"INTERNATIONAL JOURNAL OF HEALTH PLANNING AND MANAGEMENT","0749-6753","1099-1751","('HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","2,634","1.9","('Q3', 'Q3')","0.66","21.00" +"JOURNAL OF ECONOMIC DYNAMICS & CONTROL","0165-1889","1879-1743","ECONOMICS","('SSCI',)","5,647","1.9","Q2","0.66","23.19" +"Nordic Studies on Alcohol and Drugs","1455-0725","1458-6126","SUBSTANCE ABUSE","('SSCI',)","605","1.9","Q3","0.66","94.17" +"Asian Pacific Journal of Tropical Medicine","1995-7645","2352-4146","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","3,449","1.9","('Q3', 'Q2')","0.65","97.71" +"European Journal of Integrative Medicine","1876-3820","1876-3839","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","1,733","1.9","Q3","0.65","20.28" +"Australian Journal of Rural Health","1038-5282","1440-1584","('NURSING', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE, SSCI', 'SCIE, SSCI')","1,808","1.9","('Q2', 'Q3')","0.64","47.04" +"EPILEPTIC DISORDERS","1294-9361","1950-6945","CLINICAL NEUROLOGY","('SCIE',)","2,183","1.9","Q3","0.64","16.55" +"International Journal of Ophthalmology","2222-3959","2227-4898","OPHTHALMOLOGY","('SCIE',)","4,294","1.9","Q2","0.64","99.74" +"JOURNAL OF MOLLUSCAN STUDIES","0260-1230","1464-3766","('MARINE & FRESHWATER BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","1,755","1.9","('Q2', 'Q1')","0.64","12.04" +"Pediatric Investigation","2096-3726","2574-2272","PEDIATRICS","('ESCI',)","333","1.9","Q2","0.64","77.98" +"Scandinavian Journal of Occupational Therapy","1103-8128","1651-2014","REHABILITATION","('SCIE', 'SSCI')","1,655","1.9","Q2","0.64","52.54" +"BMC Genomic Data","","2730-6844","GENETICS & HEREDITY","('SCIE',)","296","1.9","Q3","0.63","100.00" +"ECOLOGICAL MANAGEMENT & RESTORATION","1442-7001","1442-8903","ECOLOGY","('SCIE',)","963","1.9","Q3","0.63","21.85" +"GEM-International Journal on Geomathematics","1869-2672","1869-2680","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","225","1.9","Q2","0.63","39.44" +"JOURNAL OF MASS SPECTROMETRY","1076-5174","1096-9888","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE')","4,494","1.9","('Q3', 'Q3', 'Q2')","0.63","19.27" +"New Review of Academic Librarianship","1361-4533","1740-7834","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","313","1.9","Q2","0.63","22.58" +"Seminars in Ophthalmology","0882-0538","1744-5205","OPHTHALMOLOGY","('SCIE',)","2,144","1.9","Q2","0.63","10.99" +"TRANSACTIONS OF THE ROYAL SOCIETY OF TROPICAL MEDICINE AND HYGIENE","0035-9203","1878-3503","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","7,319","1.9","('Q3', 'Q2')","0.63","19.55" +"IMA Journal of Management Mathematics","1471-678X","1471-6798","('MANAGEMENT', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SCIE', 'SCIE', 'SSCI')","615","1.9","('Q3', 'Q2', 'Q3', 'Q2')","0.62","14.02" +"JOURNAL OF FUSION ENERGY","0164-0313","1572-9591","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","805","1.9","Q1","0.62","18.28" +"Journal of Genetic Counseling","1059-7700","1573-3599","('GENETICS & HEREDITY', 'HEALTH POLICY & SERVICES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SCIE', 'SSCI', 'SSCI')","3,257","1.9","('Q3', 'Q3', 'Q2')","0.62","24.65" +"Translational Andrology and Urology","2223-4683","2223-4691","('ANDROLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","4,055","1.9","('Q4', 'Q3')","0.62","98.39" +"European Journal of Developmental Psychology","1740-5629","1740-5610","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","1,816","1.9","Q3","0.61","22.14" +"Journal of Interprofessional Care","1356-1820","1469-9567","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","4,138","1.9","('Q3', 'Q3')","0.61","32.77" +"JOURNAL OF VIBRATION AND ACOUSTICS-TRANSACTIONS OF THE ASME","1048-9002","1528-8927","('ACOUSTICS', 'ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","3,899","1.9","('Q2', 'Q3', 'Q3')","0.61","0.86" +"CUAJ-Canadian Urological Association Journal","1911-6470","1920-1214","UROLOGY & NEPHROLOGY","('SCIE',)","2,550","1.9","Q3","0.60","98.55" +"Global Economic Review","1226-508X","1744-3873","ECONOMICS","('SSCI',)","451","1.9","Q2","0.60","0.00" +"Journal of Comparative Effectiveness Research","2042-6305","2042-6313","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","1,421","1.9","Q3","0.60","46.89" +"JOURNAL OF INFECTION AND CHEMOTHERAPY","1341-321X","1437-7780","('INFECTIOUS DISEASES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","4,401","1.9","('Q3', 'Q3')","0.60","26.70" +"Management & Marketing","1842-0206","2069-8887","BUSINESS","('ESCI',)","490","1.9","Q3","0.60","98.82" +"MULTISCALE MODELING & SIMULATION","1540-3459","1540-3467","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","2,683","1.9","('Q2', 'Q2')","0.60","0.57" +"Review of Behavioral Finance","1940-5979","1940-5987","BUSINESS, FINANCE","('ESCI',)","532","1.9","Q2","0.60","4.20" +"AQUATIC BOTANY","0304-3770","1879-1522","('MARINE & FRESHWATER BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","5,369","1.9","('Q2', 'Q2')","0.59","19.05" +"DIATOM RESEARCH","0269-249X","2159-8347","MARINE & FRESHWATER BIOLOGY","('SCIE',)","747","1.9","Q2","0.59","7.69" +"EUROPEAN JOURNAL OF PROTISTOLOGY","0932-4739","1618-0429","MICROBIOLOGY","('SCIE',)","1,399","1.9","Q4","0.59","14.53" +"Innoeduca-International Journal of Technology and Educational Innovation","","2444-2925","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","156","1.9","Q2","0.59","98.44" +"Journal of Medical Imaging","2329-4302","2329-4310","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","2,456","1.9","Q3","0.59","30.08" +"JOURNAL OF THEORETICAL BIOLOGY","0022-5193","1095-8541","('BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","19,918","1.9","('Q2', 'Q3')","0.59","34.91" +"PHYTOPATHOLOGIA MEDITERRANEA","0031-9465","1593-2095","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","1,795","1.9","('Q2', 'Q2')","0.59","97.46" +"PSYCHOPATHOLOGY","0254-4962","1423-033X","PSYCHIATRY","('SCIE', 'SSCI')","2,288","1.9","Q3","0.59","26.12" +"SOCIAL SCIENCE INFORMATION SUR LES SCIENCES SOCIALES","0539-0184","1461-7412","('INFORMATION SCIENCE & LIBRARY SCIENCE', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","1,896","1.9","('Q2', 'Q1')","0.59","40.79" +"Cadernos de Saude Publica","0102-311X","1678-4464","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","6,529","1.9","Q3","0.58","89.77" +"Drugs-Real World Outcomes","2199-1154","2198-9788","PHARMACOLOGY & PHARMACY","('ESCI',)","532","1.9","Q3","0.58","100.00" +"JOURNAL OF ECONOMIC STUDIES","0144-3585","","ECONOMICS","('ESCI',)","1,858","1.9","Q2","0.58","8.02" +"Journal of Marine Science and Application","1671-9433","1993-5048","ENGINEERING, MARINE","('ESCI',)","1,088","1.9","Q2","0.58","21.43" +"LUPUS","0961-2033","1477-0962","RHEUMATOLOGY","('SCIE',)","8,143","1.9","Q3","0.58","7.66" +"Qualitative Research in financial Markets","1755-4179","1755-4179","BUSINESS, FINANCE","('ESCI',)","708","1.9","Q2","0.58","2.82" +"THIRD WORLD QUARTERLY","0143-6597","1360-2241","DEVELOPMENT STUDIES","('SSCI',)","6,159","1.9","Q2","0.58","38.57" +"China Economic Quarterly International","","2666-9331","ECONOMICS","('ESCI',)","122","1.9","Q2","0.57","95.77" +"Computational Economics","0927-7099","1572-9974","('ECONOMICS', 'MANAGEMENT', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SSCI', 'SSCI', 'SCIE')","1,852","1.9","('Q2', 'Q3', 'Q2')","0.57","17.19" +"JOURNAL OF CHEMOMETRICS","0886-9383","1099-128X","('AUTOMATION & CONTROL SYSTEMS', 'CHEMISTRY, ANALYTICAL', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'INSTRUMENTS & INSTRUMENTATION', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","3,848","1.9","('Q3', 'Q3', 'Q3', 'Q3', 'Q2', 'Q1')","0.57","26.76" +"Journal of Pediatric Oncology Nursing","1043-4542","1532-8457","('NURSING', 'ONCOLOGY')","('SCIE, SSCI', 'SCIE')","1,297","1.9","('Q2', 'Q3')","0.57","13.04" +"LEARNING & BEHAVIOR","1543-4494","1543-4508","('BEHAVIORAL SCIENCES', 'PSYCHOLOGY, BIOLOGICAL', 'PSYCHOLOGY, EXPERIMENTAL', 'ZOOLOGY')","('SCIE', 'SSCI', 'SSCI', 'SCIE')","1,064","1.9","('Q3', 'Q2', 'Q3', 'Q1')","0.57","31.86" +"PLANT ECOLOGY","1385-0237","1573-5052","('ECOLOGY', 'FORESTRY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","5,936","1.9","('Q3', 'Q2', 'Q2')","0.57","19.06" +"Psychology Learning and Teaching-PLAT","1475-7257","2057-3022","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","399","1.9","Q2","0.57","41.51" +"PURE AND APPLIED GEOPHYSICS","0033-4553","1420-9136","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","8,694","1.9","Q2","0.57","13.33" +"RESTORATIVE NEUROLOGY AND NEUROSCIENCE","0922-6028","1878-3627","NEUROSCIENCES","('SCIE',)","2,048","1.9","Q4","0.57","19.05" +"REVIEW OF INCOME AND WEALTH","0034-6586","1475-4991","ECONOMICS","('SSCI',)","2,184","1.9","Q2","0.57","41.38" +"ROBOTICA","0263-5747","1469-8668","ROBOTICS","('SCIE',)","3,242","1.9","Q3","0.57","12.44" +"ACM Transactions on Applied Perception","1544-3558","1544-3965","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","797","1.9","Q3","0.56","5.56" +"EUROPEAN JOURNAL OF CONTRACEPTION AND REPRODUCTIVE HEALTH CARE","1362-5187","1473-0782","('OBSTETRICS & GYNECOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","1,541","1.9","('Q3', 'Q3')","0.56","21.69" +"Evolutionary Biology","0071-3260","1934-2845","EVOLUTIONARY BIOLOGY","('SCIE',)","1,657","1.9","Q3","0.56","30.85" +"JOURNAL OF QUATERNARY SCIENCE","0267-8179","1099-1417","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","3,797","1.9","('Q3', 'Q3')","0.56","37.67" +"Managing Sport and Leisure","2375-0472","2375-0480","MANAGEMENT","('ESCI',)","838","1.9","Q3","0.56","32.52" +"MECCANICA","0025-6455","1572-9648","MECHANICS","('SCIE',)","4,484","1.9","Q3","0.56","22.69" +"CRIMINAL JUSTICE STUDIES","1478-601X","1478-6028","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","488","1.9","Q3","0.55","4.69" +"ENERGY JOURNAL","0195-6574","1944-9089","('ECONOMICS', 'ENERGY & FUELS', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SCIE', 'SSCI')","3,315","1.9","('Q2', 'Q4', 'Q3')","0.55","10.65" +"Journal of Biological Research-Thessaloniki","1790-045X","2241-5793","BIOLOGY","('SCIE',)","514","1.9","Q2","0.55","52.27" +"Journal of Computational and Nonlinear Dynamics","1555-1423","1555-1415","('ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE')","2,100","1.9","('Q3', 'Q3')","0.55","0.77" +"Journal of Obsessive-Compulsive and Related Disorders","2211-3649","2211-3657","PSYCHIATRY","('SCIE', 'SSCI')","1,303","1.9","Q3","0.55","11.59" +"Journal of Oral Science","1343-4934","1880-4926","('DENTISTRY, ORAL SURGERY & MEDICINE', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","1,963","1.9","('Q2', 'Q4')","0.55","98.58" +"MECHANICS RESEARCH COMMUNICATIONS","0093-6413","1873-3972","MECHANICS","('SCIE',)","3,613","1.9","Q3","0.55","18.44" +"MICROPROCESSORS AND MICROSYSTEMS","0141-9331","1872-9436","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","3,305","1.9","('Q3', 'Q2', 'Q3')","0.55","4.46" +"PRAMANA-JOURNAL OF PHYSICS","0304-4289","0973-7111","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","3,572","1.9","Q2","0.55","0.15" +"JOURNAL OF ATMOSPHERIC AND OCEANIC TECHNOLOGY","0739-0572","1520-0426","('ENGINEERING, OCEAN', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","9,818","1.9","('Q2', 'Q3')","0.54","3.85" +"Medicinal Chemistry","1573-4064","1875-6638","CHEMISTRY, MEDICINAL","('SCIE',)","2,102","1.9","Q3","0.54","0.41" +"STEREOTACTIC AND FUNCTIONAL NEUROSURGERY","1011-6125","1423-0372","('NEUROIMAGING', 'NEUROSCIENCES', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","1,780","1.9","('Q3', 'Q4', 'Q2')","0.54","22.40" +"WIENER KLINISCHE WOCHENSCHRIFT","0043-5325","1613-7671","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,010","1.9","Q2","0.54","60.22" +"COASTAL ENGINEERING JOURNAL","2166-4250","1793-6292","('ENGINEERING, CIVIL', 'ENGINEERING, OCEAN')","('SCIE', 'SCIE')","936","1.9","('Q3', 'Q2')","0.53","32.73" +"CONTINUUM MECHANICS AND THERMODYNAMICS","0935-1175","1432-0959","('MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","2,137","1.9","('Q3', 'Q3')","0.53","34.08" +"INTERNATIONAL JOURNAL OF SOCIAL ECONOMICS","0306-8293","1758-6712","ECONOMICS","('ESCI',)","2,247","1.9","Q2","0.53","2.80" +"Multiscale and Multidisciplinary Modeling Experiments and Design","2520-8160","2520-8179","('ENGINEERING, MECHANICAL', 'ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","306","1.9","('Q3', 'Q2', 'Q3')","0.53","2.81" +"Cross Cultural & Strategic Management","2059-5794","2059-5794","MANAGEMENT","('SSCI',)","598","1.9","Q3","0.52","2.20" +"EUROPEAN JOURNAL OF DRUG METABOLISM AND PHARMACOKINETICS","0378-7966","2107-0180","PHARMACOLOGY & PHARMACY","('SCIE',)","1,636","1.9","Q3","0.52","27.37" +"Frontiers in Physics","2296-424X","2296-424X","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","8,932","1.9","Q2","0.52","99.70" +"Indian Journal of Psychological Medicine","0253-7176","0975-1564","('PSYCHIATRY', 'PSYCHOLOGY')","('ESCI', 'ESCI')","2,495","1.9","('Q3', 'Q3')","0.52","94.68" +"Journal of Dietary Supplements","1939-0211","1939-022X","('NUTRITION & DIETETICS', 'PHARMACOLOGY & PHARMACY')","('ESCI', 'ESCI')","1,229","1.9","('Q3', 'Q3')","0.52","20.51" +"MDM Policy & Practice","","2381-4683","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('ESCI', 'ESCI')","339","1.9","('Q3', 'Q3')","0.52","89.00" +"Neurodegenerative Diseases","1660-2854","1660-2862","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","1,504","1.9","('Q3', 'Q4')","0.52","18.87" +"PETROLEUM GEOSCIENCE","1354-0793","2041-496X","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","1,433","1.9","Q3","0.52","27.91" +"PHYSIOLOGICAL RESEARCH","0862-8408","1802-9973","PHYSIOLOGY","('SCIE',)","4,032","1.9","Q3","0.52","95.99" +"Plasma","2571-6182","2571-6182","PHYSICS, FLUIDS & PLASMAS","('ESCI',)","166","1.9","Q3","0.52","100.00" +"Polymer Crystallization","","2573-7619","('CRYSTALLOGRAPHY', 'POLYMER SCIENCE')","('ESCI', 'ESCI')","311","1.9","('Q2', 'Q3')","0.52","75.00" +"Review of Quantitative Finance and Accounting","0924-865X","1573-7179","BUSINESS, FINANCE","('ESCI',)","2,098","1.9","Q2","0.52","21.63" +"Saudi Journal of Gastroenterology","1319-3767","1998-4049","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","1,540","1.9","Q3","0.52","97.20" +"Frontiers in Blockchain","2624-7852","2624-7852","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('ESCI', 'ESCI')","463","1.9","('Q3', 'Q3')","0.51","100.00" +"Journal of Public Health-Heidelberg","2198-1833","1613-2238","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","2,301","1.9","Q3","0.51","32.09" +"METEOROLOGY AND ATMOSPHERIC PHYSICS","0177-7971","1436-5065","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","3,036","1.9","Q3","0.51","6.99" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART B-JOURNAL OF ENGINEERING MANUFACTURE","0954-4054","2041-2975","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","6,060","1.9","('Q3', 'Q3')","0.51","4.34" +"BRAZILIAN JOURNAL OF MEDICAL AND BIOLOGICAL RESEARCH","0100-879X","1414-431X","('BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","5,531","1.9","('Q2', 'Q3')","0.50","91.99" +"EGYPTIAN JOURNAL OF SOIL SCIENCE","0302-6701","2357-0369","SOIL SCIENCE","('ESCI',)","415","1.9","Q3","0.50","0.92" +"HEALTH","1363-4593","1461-7196","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI')","1,677","1.9","('Q3', 'Q2')","0.50","41.46" +"Indian Dermatology Online Journal","2229-5178","2249-5673","DERMATOLOGY","('ESCI',)","1,744","1.9","Q3","0.50","99.30" +"JOURNAL OF CHEMOTHERAPY","1120-009X","1973-9478","('INFECTIOUS DISEASES', 'ONCOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","1,813","1.9","('Q3', 'Q3', 'Q3')","0.50","4.91" +"JOURNAL OF CLINICAL NEUROSCIENCE","0967-5868","1532-2653","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","11,631","1.9","('Q3', 'Q4')","0.50","8.70" +"JOURNAL OF RADIATION RESEARCH","0449-3060","1349-9157","('BIOLOGY', 'ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","3,327","1.9","('Q2', 'Q3', 'Q3')","0.50","92.72" +"JOURNAL OF TURBOMACHINERY-TRANSACTIONS OF THE ASME","0889-504X","1528-8900","ENGINEERING, MECHANICAL","('SCIE',)","7,670","1.9","Q3","0.50","7.68" +"ORIGINS OF LIFE AND EVOLUTION OF BIOSPHERES","0169-6149","1573-0875","BIOLOGY","('SCIE',)","1,564","1.9","Q2","0.50","30.77" +"Paddy and Water Environment","1611-2490","1611-2504","('AGRICULTURAL ENGINEERING', 'AGRONOMY')","('SCIE', 'SCIE')","1,540","1.9","('Q2', 'Q2')","0.50","10.32" +"Astronomy and Computing","2213-1337","2213-1345","('ASTRONOMY & ASTROPHYSICS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","1,159","1.9","('Q2', 'Q3')","0.49","31.88" +"Avicenna Journal of Phytomedicine","2228-7930","2228-7949","CHEMISTRY, MEDICINAL","('ESCI',)","1,377","1.9","Q3","0.49","0.00" +"Cerebral Circulation-Cognition and Behavior","2666-2450","2666-2450","('CLINICAL NEUROLOGY', 'PERIPHERAL VASCULAR DISEASE')","('ESCI', 'ESCI')","145","1.9","('Q3', 'Q3')","0.49","99.03" +"DYNAMICS OF ATMOSPHERES AND OCEANS","0377-0265","1872-6879","('GEOCHEMISTRY & GEOPHYSICS', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE')","1,449","1.9","('Q2', 'Q3', 'Q2')","0.49","23.29" +"INDUSTRIAL AND COMMERCIAL TRAINING","0019-7858","1758-5767","MANAGEMENT","('ESCI',)","896","1.9","Q3","0.49","0.00" +"Journal of Environmental Economics and Policy","2160-6544","2160-6552","ENVIRONMENTAL STUDIES","('ESCI',)","469","1.9","Q3","0.49","18.48" +"MANAGERIAL FINANCE","0307-4358","1758-7743","BUSINESS, FINANCE","('ESCI',)","1,667","1.9","Q2","0.49","2.14" +"NUTRITION AND HEALTH","0260-1060","2047-945X","NUTRITION & DIETETICS","('ESCI',)","563","1.9","Q3","0.49","10.61" +"WIRELESS PERSONAL COMMUNICATIONS","0929-6212","1572-834X","TELECOMMUNICATIONS","('SCIE',)","11,317","1.9","Q3","0.49","2.66" +"Global Health & Medicine","2434-9186","2434-9194","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","445","1.9","Q3","0.48","7.41" +"Journal of Medical Ultrasonics","1346-4523","1613-2254","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","981","1.9","Q3","0.48","24.88" +"Optical Switching and Networking","1573-4277","1872-9770","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'OPTICS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","444","1.9","('Q3', 'Q3', 'Q3')","0.48","21.43" +"AIMS Agriculture and Food","2471-2086","2471-2086","('AGRICULTURE, MULTIDISCIPLINARY', 'AGRONOMY', 'FOOD SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","634","1.9","('Q2', 'Q2', 'Q3')","0.47","100.00" +"ALTERNATIVE THERAPIES IN HEALTH AND MEDICINE","1078-6791","1078-6791","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","1,530","1.9","Q3","0.47","0.00" +"Foodborne Pathogens and Disease","1535-3141","1556-7125","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","4,195","1.9","Q3","0.47","7.69" +"Infrastructure Asset Management","2053-0242","2053-0250","MANAGEMENT","('ESCI',)","165","1.9","Q3","0.47","18.97" +"JOURNAL OF ELECTROSTATICS","0304-3886","1873-5738","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","3,541","1.9","Q3","0.47","19.59" +"Manufacturing Letters","2213-8463","2213-8463","('ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","1,874","1.9","('Q3', 'Q3')","0.47","57.87" +"MICROCIRCULATION","1073-9688","1549-8719","('HEMATOLOGY', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","2,412","1.9","('Q3', 'Q3')","0.47","29.27" +"NEW ASTRONOMY","1384-1076","1384-1092","ASTRONOMY & ASTROPHYSICS","('SCIE',)","2,048","1.9","Q2","0.47","10.80" +"PROTEIN JOURNAL","1572-3887","1875-8355","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","1,389","1.9","Q4","0.47","12.92" +"Vibration","","2571-631X","('ENGINEERING, MECHANICAL', 'MECHANICS')","('ESCI', 'ESCI')","381","1.9","('Q3', 'Q3')","0.47","99.38" +"Acoustics Australia","0814-6039","1839-2571","ACOUSTICS","('SCIE',)","480","1.9","Q2","0.46","10.64" +"Acta Crystallographica A-Foundation and Advances","2053-2733","2053-2733","('CHEMISTRY, MULTIDISCIPLINARY', 'CRYSTALLOGRAPHY')","('SCIE', 'SCIE')","10,204","1.9","('Q3', 'Q2')","0.46","39.74" +"Brain and Spine","2772-5294","2772-5294","CLINICAL NEUROLOGY","('ESCI',)","242","1.9","Q3","0.46","99.53" +"Built Environment Project and Asset Management","2044-124X","2044-1258","ENGINEERING, CIVIL","('ESCI',)","920","1.9","Q3","0.46","3.92" +"Chinese Management Studies","1750-614X","1750-6158","MANAGEMENT","('SSCI',)","1,188","1.9","Q3","0.46","0.45" +"Clinical Respiratory Journal","1752-6981","1752-699X","RESPIRATORY SYSTEM","('SCIE',)","2,332","1.9","Q3","0.46","58.48" +"IET Electrical Systems in Transportation","2042-9738","2042-9746","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","643","1.9","('Q3', 'Q3')","0.46","79.55" +"International Transactions on Electrical Energy Systems","2050-7038","2050-7038","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","4,447","1.9","Q3","0.46","77.79" +"Journal of Transportation Engineering Part B-Pavements","","2573-5438","('ENGINEERING, CIVIL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","869","1.9","('Q3', 'Q3')","0.46","0.43" +"Journal of Trust Research","2151-5581","2151-559X","('MANAGEMENT', 'PSYCHOLOGY, SOCIAL')","('ESCI', 'ESCI')","299","1.9","('Q3', 'Q3')","0.46","33.33" +"KSCE Journal of Civil Engineering","1226-7988","1976-3808","ENGINEERING, CIVIL","('SCIE',)","8,422","1.9","Q3","0.46","0.00" +"Obesity Science & Practice","2055-2238","2055-2238","ENDOCRINOLOGY & METABOLISM","('ESCI',)","1,073","1.9","Q3","0.46","77.39" +"PROTIST","1434-4610","1618-0941","MICROBIOLOGY","('SCIE',)","1,647","1.9","Q4","0.46","34.72" +"Sport Business and Management-An International Journal","2042-678X","2042-6798","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","616","1.9","Q3","0.46","2.80" +"Asia-Pacific Journal of Regional Science","2509-7946","2509-7954","('ECONOMICS', 'ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING')","('ESCI', 'ESCI', 'ESCI')","333","1.9","('Q2', 'Q3', 'Q3')","0.45","11.49" +"Balkan Medical Journal","2146-3123","2146-3131","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,151","1.9","Q2","0.45","98.52" +"CARDIOLOGY","0008-6312","1421-9751","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","2,591","1.9","Q3","0.45","25.23" +"Cardiovascular Ultrasound","","1476-7120","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,209","1.9","Q3","0.45","100.00" +"Disaster Prevention and Management","0965-3562","1758-6100","('ENVIRONMENTAL STUDIES', 'MANAGEMENT', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI', 'SSCI')","1,755","1.9","('Q3', 'Q3', 'Q3')","0.45","11.11" +"Empirica","0340-8744","1573-6911","ECONOMICS","('SSCI',)","541","1.9","Q2","0.45","41.41" +"JOURNAL OF FIRE SCIENCES","0734-9041","1530-8049","('ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,077","1.9","('Q2', 'Q3')","0.45","14.75" +"JOURNAL OF FOOD SAFETY","0149-6085","1745-4565","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","2,263","1.9","('Q4', 'Q3')","0.45","9.05" +"NEW ZEALAND JOURNAL OF ECOLOGY","0110-6465","1177-7788","ECOLOGY","('SCIE',)","1,315","1.9","Q3","0.45","90.65" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART K-JOURNAL OF MULTI-BODY DYNAMICS","1464-4193","2041-3068","('ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE')","1,051","1.9","('Q3', 'Q3')","0.45","3.13" +"SOUTH AFRICAN JOURNAL OF PSYCHOLOGY","0081-2463","2078-208X","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,148","1.9","Q2","0.45","40.35" +"Weather Climate and Society","1948-8327","1948-8335","('ENVIRONMENTAL STUDIES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SSCI', 'SCIE')","1,629","1.9","('Q3', 'Q3')","0.45","3.38" +"Biomarkers in Medicine","1752-0363","1752-0371","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","2,513","1.9","Q3","0.44","10.80" +"BMC Nutrition","","2055-0928","NUTRITION & DIETETICS","('ESCI',)","1,527","1.9","Q3","0.44","100.00" +"Breast Journal","1075-122X","1524-4741","('OBSTETRICS & GYNECOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","3,351","1.9","('Q3', 'Q3')","0.44","78.26" +"IEEE Design & Test","2168-2356","2168-2364","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","1,407","1.9","('Q3', 'Q3')","0.44","6.08" +"International Journal of Distributed Sensor Networks","1550-1329","1550-1477","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","3,421","1.9","('Q3', 'Q3')","0.44","88.11" +"Islets","1938-2014","1938-2022","ENDOCRINOLOGY & METABOLISM","('SCIE',)","681","1.9","Q3","0.44","87.50" +"JOURNAL OF COLLEGE STUDENT PSYCHOTHERAPY","8756-8225","1540-4730","PSYCHOLOGY, APPLIED","('ESCI',)","538","1.9","Q3","0.44","1.32" +"NATURAL PRODUCT RESEARCH","1478-6419","1478-6427","('CHEMISTRY, APPLIED', 'CHEMISTRY, MEDICINAL')","('SCIE', 'SCIE')","15,090","1.9","('Q3', 'Q3')","0.44","0.43" +"PHARMACOGENOMICS","1462-2416","1744-8042","PHARMACOLOGY & PHARMACY","('SCIE',)","3,248","1.9","Q3","0.44","11.16" +"Reviews in Cardiovascular Medicine","1530-6550","2153-8174","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,752","1.9","Q3","0.44","99.15" +"Revista Espanola de Quimioterapia","0214-3429","1988-9518","('MICROBIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,036","1.9","('Q4', 'Q3')","0.44","98.51" +"Service Science","2164-3962","2164-3970","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","533","1.9","('Q3', 'Q3')","0.44","0.00" +"STEEL RESEARCH INTERNATIONAL","1611-3683","1869-344X","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","5,554","1.9","Q2","0.44","16.61" +"Tobacco Prevention & Cessation","","2459-3087","SUBSTANCE ABUSE","('ESCI',)","466","1.9","Q3","0.44","97.41" +"MOLECULAR SIMULATION","0892-7022","1029-0435","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","4,135","1.9","('Q4', 'Q3')","0.43","4.25" +"POLAR RESEARCH","0800-0395","1751-8369","('ECOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE')","1,640","1.9","('Q3', 'Q3', 'Q2')","0.43","100.00" +"AMERICAN INDIAN AND ALASKA NATIVE MENTAL HEALTH RESEARCH","1533-7731","1533-7731","PSYCHOLOGY, CLINICAL","('SSCI',)","489","1.9","Q3","0.42","85.71" +"ASSEMBLY AUTOMATION","0144-5154","1758-4078","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, MANUFACTURING')","('SCIE', 'SCIE')","1,315","1.9","('Q3', 'Q3')","0.42","0.81" +"Clinical Parkinsonism & Related Disorders","","2590-1125","CLINICAL NEUROLOGY","('ESCI',)","315","1.9","Q3","0.42","100.00" +"Earthquake Science","1674-4519","1867-8777","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","694","1.9","Q2","0.42","100.00" +"International Journal of Fashion Design Technology and Education","1754-3266","1754-3274","('BUSINESS', 'MATERIALS SCIENCE, TEXTILES')","('ESCI', 'ESCI')","620","1.9","('Q3', 'Q2')","0.42","17.48" +"JAPANESE JOURNAL OF CLINICAL ONCOLOGY","0368-2811","1465-3621","ONCOLOGY","('SCIE',)","5,482","1.9","Q3","0.42","17.38" +"NAVAL RESEARCH LOGISTICS","0894-069X","1520-6750","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","3,541","1.9","Q3","0.42","15.61" +"Production and Manufacturing Research-An Open Access Journal","","2169-3277","ENGINEERING, INDUSTRIAL","('ESCI',)","661","1.9","Q3","0.42","98.81" +"Thyroid Research","","1756-6614","ENDOCRINOLOGY & METABOLISM","('ESCI',)","413","1.9","Q3","0.42","100.00" +"CALPHAD-COMPUTER COUPLING OF PHASE DIAGRAMS AND THERMOCHEMISTRY","0364-5916","1873-2984","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,341","1.9","('Q4', 'Q3', 'Q2', 'Q3')","0.41","14.42" +"IET Systems Biology","1751-8849","1751-8857","('CELL BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","456","1.9","('Q4', 'Q3')","0.41","79.03" +"Journal of Clinical Tuberculosis and Other Mycobacterial Diseases","2405-5794","2405-5794","('INFECTIOUS DISEASES', 'MICROBIOLOGY', 'RESPIRATORY SYSTEM')","('ESCI', 'ESCI', 'ESCI')","720","1.9","('Q3', 'Q4', 'Q3')","0.41","96.20" +"JOURNAL OF PHYSICAL ORGANIC CHEMISTRY","0894-3230","1099-1395","('CHEMISTRY, ORGANIC', 'CHEMISTRY, PHYSICAL')","('SCIE', 'SCIE')","3,126","1.9","('Q2', 'Q4')","0.41","10.06" +"Prion","1933-6896","1933-690X","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","958","1.9","Q4","0.41","100.00" +"Production Engineering Archives","2353-5156","2353-7779","('ENGINEERING, INDUSTRIAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","363","1.9","('Q3', 'Q3')","0.41","100.00" +"Consumption Markets & Culture","1025-3866","1477-223X","BUSINESS","('SSCI',)","1,025","1.9","Q3","0.40","29.63" +"EPJ Photovoltaics","2105-0716","2105-0716","PHYSICS, APPLIED","('ESCI',)","167","1.9","Q3","0.40","97.56" +"Frontiers in Conservation Science","","2673-611X","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('ESCI', 'ESCI', 'ESCI')","521","1.9","('Q2', 'Q3', 'Q3')","0.40","99.72" +"IEEE Systems Man and Cybernetics Magazine","2380-1298","2333-942X","COMPUTER SCIENCE, CYBERNETICS","('ESCI',)","244","1.9","Q3","0.40","0.00" +"International Journal of Cardiology Cardiovascular Risk and Prevention","2772-4875","2772-4875","PERIPHERAL VASCULAR DISEASE","('ESCI',)","117","1.9","Q3","0.40","92.73" +"International Journal of Hypertension","2090-0384","2090-0392","PERIPHERAL VASCULAR DISEASE","('SCIE',)","1,238","1.9","Q3","0.40","100.00" +"Journal of Gay & Lesbian Mental Health","1935-9705","1935-9713","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('ESCI', 'ESCI')","887","1.9","('Q3', 'Q3')","0.40","6.25" +"Journal of Multi-Criteria Decision Analysis","1057-9214","1099-1360","MANAGEMENT","('ESCI',)","713","1.9","Q3","0.40","20.97" +"Journal of the European Optical Society-Rapid Publications","1990-2573","1990-2573","OPTICS","('SCIE',)","617","1.9","Q3","0.40","93.02" +"MAGNETIC RESONANCE IN CHEMISTRY","0749-1581","1097-458X","('CHEMISTRY, MULTIDISCIPLINARY', 'CHEMISTRY, PHYSICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE')","3,569","1.9","('Q3', 'Q4', 'Q2')","0.40","26.41" +"Place Branding and Public Diplomacy","1751-8040","1751-8059","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","897","1.9","Q3","0.40","15.18" +"Precision and Future Medicine","2508-7940","2508-7959","MEDICINE, GENERAL & INTERNAL","('ESCI',)","131","1.9","Q2","0.40","100.00" +"VIRUS GENES","0920-8569","1572-994X","('GENETICS & HEREDITY', 'VIROLOGY')","('SCIE', 'SCIE')","2,745","1.9","('Q3', 'Q4')","0.40","13.96" +"Bioanalysis","1757-6180","1757-6199","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE')","3,650","1.9","('Q3', 'Q3')","0.39","12.42" +"Clinica e Investigacion en Arteriosclerosis","0214-9168","1578-1879","PERIPHERAL VASCULAR DISEASE","('ESCI',)","482","1.9","Q3","0.39","17.50" +"Current Opinion in Supportive and Palliative Care","1751-4258","1751-4266","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","1,485","1.9","Q3","0.39","7.89" +"MICROELECTRONICS JOURNAL","0026-2692","1879-2391","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","4,035","1.9","('Q3', 'Q4')","0.39","2.61" +"SEMICONDUCTOR SCIENCE AND TECHNOLOGY","0268-1242","1361-6641","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","8,533","1.9","('Q3', 'Q3', 'Q3')","0.39","10.23" +"BULLETIN OF THE ATOMIC SCIENTISTS","0096-3402","1938-3282","('INTERNATIONAL RELATIONS', 'SOCIAL ISSUES')","('SSCI', 'SSCI')","980","1.9","('Q2', 'Q2')","0.38","15.04" +"Engineering Management Journal","1042-9247","2377-0643","('ENGINEERING, INDUSTRIAL', 'MANAGEMENT')","('SCIE', 'SSCI')","804","1.9","('Q3', 'Q3')","0.38","2.27" +"Human Nutrition & Metabolism","2666-1497","2666-1497","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('ESCI', 'ESCI')","121","1.9","('Q3', 'Q3')","0.38","90.76" +"Interactive Journal of Medical Research","1929-073X","1929-073X","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","589","1.9","Q3","0.38","100.00" +"JOURNAL OF ENVIRONMENTAL RADIOACTIVITY","0265-931X","1879-1700","ENVIRONMENTAL SCIENCES","('SCIE',)","8,130","1.9","Q3","0.38","30.10" +"Journal of Environmental Studies and Sciences","2190-6483","2190-6491","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('ESCI', 'ESCI')","1,057","1.9","('Q3', 'Q3')","0.38","27.22" +"MODELLING AND SIMULATION IN MATERIALS SCIENCE AND ENGINEERING","0965-0393","1361-651X","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","7,069","1.9","('Q3', 'Q3')","0.38","19.81" +"POWDER METALLURGY","0032-5899","1743-2901","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","1,597","1.9","Q2","0.38","14.38" +"World Journal of Cardiology","1949-8462","1949-8462","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","1,763","1.9","Q3","0.38","100.00" +"Advances in Mechanical Engineering","1687-8132","1687-8140","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","8,622","1.9","('Q3', 'Q3')","0.37","91.65" +"Journal of Global Scholars of Marketing Science","2163-9159","2163-9167","BUSINESS","('ESCI',)","523","1.9","Q3","0.37","0.00" +"REVISTA BRASILEIRA DE CIENCIA DO SOLO","0100-0683","1806-9657","SOIL SCIENCE","('SCIE',)","2,830","1.9","Q3","0.37","93.29" +"AIDS REVIEWS","1139-6121","1698-6997","('IMMUNOLOGY', 'INFECTIOUS DISEASES')","('SCIE', 'SCIE')","593","1.9","('Q4', 'Q3')","0.36","0.00" +"ARID LAND RESEARCH AND MANAGEMENT","1532-4982","1532-4990","('ENVIRONMENTAL SCIENCES', 'SOIL SCIENCE')","('SCIE', 'SCIE')","837","1.9","('Q3', 'Q3')","0.36","1.16" +"JOURNAL OF INTERFERON AND CYTOKINE RESEARCH","1079-9907","1557-7465","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,580","1.9","('Q4', 'Q4', 'Q4')","0.36","6.75" +"Journal of Systems Engineering and Electronics","1004-4132","1004-4132","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","2,314","1.9","('Q3', 'Q3', 'Q3')","0.36","94.26" +"Manufacturing Review","2265-4224","2265-4224","ENGINEERING, MANUFACTURING","('ESCI',)","544","1.9","Q3","0.36","96.39" +"MICROBIOLOGY AND IMMUNOLOGY","0385-5600","1348-0421","('IMMUNOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","3,204","1.9","('Q4', 'Q4')","0.36","10.38" +"SOIL SCIENCE AND PLANT NUTRITION","0038-0768","1747-0765","('ENVIRONMENTAL SCIENCES', 'PLANT SCIENCES', 'SOIL SCIENCE')","('SCIE', 'SCIE', 'SCIE')","4,223","1.9","('Q3', 'Q2', 'Q3')","0.36","5.59" +"Annals of Indian Academy of Neurology","0972-2327","1998-3549","CLINICAL NEUROLOGY","('SCIE',)","2,071","1.9","Q3","0.35","99.04" +"ANTHROPOLOGICAL SCIENCE","0918-7960","1348-8570","EVOLUTIONARY BIOLOGY","('SCIE',)","380","1.9","Q3","0.35","100.00" +"Clinical Medicine Insights-Oncology","","1179-5549","ONCOLOGY","('SCIE',)","677","1.9","Q3","0.35","97.48" +"Industrial Robot-The International Journal of Robotics Research and Application","0143-991X","1758-5791","('ENGINEERING, INDUSTRIAL', 'ROBOTICS')","('SCIE', 'SCIE')","2,050","1.9","('Q3', 'Q3')","0.35","1.57" +"JOURNAL OF THE AMERICAN OIL CHEMISTS SOCIETY","0003-021X","1558-9331","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","10,093","1.9","('Q3', 'Q3')","0.35","10.63" +"TRANSFUSION MEDICINE AND HEMOTHERAPY","1660-3796","1660-3818","('HEMATOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","1,616","1.9","('Q3', 'Q4')","0.35","92.62" +"Advances in Materials Research-An International Journal","2234-0912","2234-179X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","2,700","1.9","Q3","0.34","0.00" +"ChemistrySelect","2365-6549","2365-6549","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","23,221","1.9","Q3","0.34","2.92" +"COMBUSTION THEORY AND MODELLING","1364-7830","1741-3559","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,758","1.9","('Q4', 'Q3', 'Q2', 'Q3')","0.34","10.90" +"Current Treatment Options in Allergy","","2196-3053","ALLERGY","('ESCI',)","252","1.9","Q3","0.34","22.22" +"JOURNAL OF HISTOCHEMISTRY & CYTOCHEMISTRY","0022-1554","1551-5044","CELL BIOLOGY","('SCIE',)","6,421","1.9","Q4","0.34","13.95" +"PHYSICA STATUS SOLIDI A-APPLICATIONS AND MATERIALS SCIENCE","1862-6300","1862-6319","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","12,287","1.9","('Q3', 'Q3', 'Q3')","0.34","19.29" +"ENERGY EXPLORATION & EXPLOITATION","0144-5987","2048-4054","ENERGY & FUELS","('SCIE',)","2,052","1.9","Q4","0.33","94.71" +"European Journal of Industrial Engineering","1751-5254","1751-5262","('ENGINEERING, INDUSTRIAL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","555","1.9","('Q3', 'Q3')","0.33","0.00" +"Water Supply","1606-9749","1607-0798","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","3,125","1.9","('Q4', 'Q3', 'Q3')","0.33","97.24" +"Condensed Matter","2410-3896","2410-3896","PHYSICS, CONDENSED MATTER","('ESCI',)","600","1.9","Q3","0.32","100.00" +"Global Energy Interconnection-China","2096-5117","2590-0358","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('ESCI', 'ESCI')","631","1.9","('Q4', 'Q3')","0.32","94.86" +"Journal of Kidney Cancer and VHL","2203-5826","2203-5826","ONCOLOGY","('ESCI',)","235","1.9","Q3","0.32","94.12" +"Journal of Renewable and Sustainable Energy","1941-7012","1941-7012","('ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","4,287","1.9","('Q4', 'Q4')","0.32","8.10" +"ACI MATERIALS JOURNAL","0889-325X","1944-737X","('CONSTRUCTION & BUILDING TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","7,213","1.9","('Q3', 'Q3')","0.31","0.00" +"BULLETIN OF MATERIALS SCIENCE","0250-4707","0973-7669","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","6,635","1.9","Q3","0.31","0.26" +"International Journal of Energy and Environmental Engineering","2008-9163","2251-6832","ENERGY & FUELS","('ESCI',)","1,258","1.9","Q4","0.31","14.14" +"Minerva Gastroenterology","2724-5985","2724-5365","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","589","1.9","Q3","0.31","0.00" +"Mini-Reviews in Organic Chemistry","1570-193X","1875-6298","CHEMISTRY, ORGANIC","('SCIE',)","1,065","1.9","Q2","0.31","0.00" +"CHEMICAL ENGINEERING COMMUNICATIONS","0098-6445","1563-5201","ENGINEERING, CHEMICAL","('SCIE',)","4,553","1.9","Q3","0.30","0.91" +"JOURNAL OF ENVIRONMENTAL SCIENCE AND HEALTH PART A-TOXIC/HAZARDOUS SUBSTANCES & ENVIRONMENTAL ENGINEERING","1093-4529","1532-4117","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","5,362","1.9","('Q4', 'Q3')","0.30","1.96" +"ABCD-Arquivos Brasileiros de Cirurgia Digestiva-Brazilian Archives of Digestive Surgery","0102-6720","2317-6326","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","977","1.9","Q3","0.28","95.43" +"Frontiers in Electronics","","2673-5857","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","153","1.9","Q3","0.28","100.00" +"JOURNAL OF DISPERSION SCIENCE AND TECHNOLOGY","0193-2691","1532-2351","CHEMISTRY, PHYSICAL","('SCIE',)","5,872","1.9","Q4","0.27","0.45" +"BIOREMEDIATION JOURNAL","1088-9868","1547-6529","ENVIRONMENTAL SCIENCES","('SCIE',)","745","1.9","Q3","0.26","1.77" +"CURRENT PROTEIN & PEPTIDE SCIENCE","1389-2037","1875-5550","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","3,391","1.9","Q4","0.25","0.00" +"International Journal of the Economics of Business","1357-1516","1466-1829","('BUSINESS', 'ECONOMICS')","('ESCI', 'ESCI')","530","1.9","('Q3', 'Q2')","0.25","15.79" +"ESIC Market","0212-1867","1989-3574","BUSINESS","('ESCI',)","112","1.9","Q3","0.23","96.97" +"Brazilian Journal of Operations & Production Management","2237-8960","2237-8960","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","339","1.9","Q3","0.21","94.74" +"Intelligenza Artificiale","1724-8035","2211-0097","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","143","1.9","Q3","0.20","0.00" +"Heart International","2036-2579","2036-2579","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","180","1.9","Q3","0.19","100.00" +"PAST & PRESENT","0031-2746","1477-464X","HISTORY","('AHCI', 'SSCI')","3,217","1.8","Q1","5.25","31.97" +"She Ji-The Journal of Design Economics and Innovation","2405-8726","2405-8718","('HUMANITIES, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","433","1.8","('N/A', 'Q2')","3.55","89.39" +"Archnet-IJAR International Journal of Architectural Research","2631-6862","1938-7806","ARCHITECTURE","('AHCI',)","806","1.8","","3.51","1.92" +"NOUS","0029-4624","1468-0068","PHILOSOPHY","('AHCI',)","3,538","1.8","","3.29","35.46" +"MIND","0026-4423","1460-2113","PHILOSOPHY","('AHCI',)","3,378","1.8","","2.98","19.83" +"Architectural Science Review","0003-8628","1758-9622","ARCHITECTURE","('AHCI',)","1,307","1.8","","2.93","17.14" +"European Journal of Risk Regulation","1867-299X","2190-8249","LAW","('ESCI',)","800","1.8","Q1","2.90","48.48" +"Music Education Research","1461-3808","1469-9893","('EDUCATION & EDUCATIONAL RESEARCH', 'MUSIC')","('SSCI', 'AHCI')","908","1.8","('Q2', 'N/A')","2.31","27.27" +"GEORGETOWN LAW JOURNAL","0016-8092","0016-8092","LAW","('SSCI',)","1,359","1.8","Q1","2.30","1.20" +"Revista de la Real Academia de Ciencias Exactas Fisicas y Naturales Serie A-Matematicas","1578-7303","1579-1505","MATHEMATICS","('SCIE',)","2,039","1.8","Q1","2.20","23.21" +"American Journal of Criminal Justice","1066-2316","1936-1351","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,653","1.8","Q2","2.13","4.64" +"DUKE LAW JOURNAL","0012-7086","1939-9111","LAW","('SSCI',)","1,359","1.8","Q1","2.09","0.00" +"Cambridge Journal of Mathematics","2168-0930","2168-0949","MATHEMATICS","('SCIE',)","271","1.8","Q1","1.94","0.00" +"Journal of Paleolithic Archaeology","","2520-8217","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('ESCI', 'ESCI')","273","1.8","('Q1', 'N/A')","1.85","49.41" +"AIMS Mathematics","","2473-6988","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","6,298","1.8","('Q1', 'Q1')","1.69","98.12" +"Ethnoarchaeology","1944-2904","1944-2890","ARCHAEOLOGY","('ESCI',)","126","1.8","","1.68","20.83" +"Intercultural Pragmatics","1612-295X","1613-365X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","665","1.8","('N/A', 'Q1')","1.68","24.24" +"Japanese Journal of Mathematics","0289-2316","1861-3624","MATHEMATICS","('SCIE',)","563","1.8","Q1","1.67","0.00" +"Interpreting","1384-6647","1569-982X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","663","1.8","('N/A', 'Q1')","1.63","5.71" +"JOURNAL OF PRAGMATICS","0378-2166","1879-1387","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","8,144","1.8","('N/A', 'Q1')","1.61","33.91" +"Linguistic Approaches to Bilingualism","1879-9264","1879-9272","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","723","1.8","('N/A', 'Q1')","1.59","4.08" +"WORLD ARCHAEOLOGY","0043-8243","1470-1375","ARCHAEOLOGY","('AHCI',)","2,597","1.8","","1.56","36.11" +"Information & Communications Technology Law","1360-0834","1469-8404","LAW","('ESCI',)","371","1.8","Q1","1.55","38.30" +"Asia Pacific Viewpoint","1360-7456","1467-8373","('AREA STUDIES', 'GEOGRAPHY')","('SSCI', 'SSCI')","863","1.8","('Q1', 'Q2')","1.51","28.41" +"Language and Intercultural Communication","1470-8477","1747-759X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","871","1.8","('N/A', 'Q1')","1.50","26.09" +"Medical Law Review","0967-0742","1464-3790","('LAW', 'MEDICINE, LEGAL')","('SSCI', 'SCIE')","695","1.8","('Q1', 'Q2')","1.50","47.31" +"IBIS","0019-1019","1474-919X","ORNITHOLOGY","('SCIE',)","5,213","1.8","Q1","1.45","31.38" +"Urban Design International","1357-5317","1468-4519","('ARCHITECTURE', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('AHCI', 'SSCI', 'SSCI')","913","1.8","('N/A', 'Q3', 'Q2')","1.43","19.12" +"Analysis & PDE","1948-206X","","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,465","1.8","('Q1', 'Q1')","1.40","33.51" +"COGNITIVE LINGUISTICS","0936-5907","1613-3641","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","1,615","1.8","('N/A', 'Q1')","1.35","45.31" +"Global Discourse","2326-9995","2043-7897","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE', 'SOCIOLOGY')","('ESCI', 'ESCI', 'ESCI')","444","1.8","('Q2', 'Q2', 'Q2')","1.34","18.68" +"Interpreter and Translator Trainer","1750-399X","1757-0417","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","643","1.8","('N/A', 'Q1')","1.34","20.93" +"European Journal of International Law","0938-5428","1464-3596","('INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI')","2,257","1.8","('Q2', 'Q1')","1.32","24.44" +"Sociology of Race and Ethnicity","2332-6492","2332-6506","('ETHNIC STUDIES', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,372","1.8","('Q2', 'Q2')","1.26","5.61" +"Journal of Experimental Criminology","1573-3750","1572-8315","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,600","1.8","Q2","1.25","28.39" +"NUMERICAL LINEAR ALGEBRA WITH APPLICATIONS","1070-5325","1099-1506","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,747","1.8","('Q1', 'Q1')","1.24","21.08" +"Evidence & Policy","1744-2648","1744-2656","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","931","1.8","Q2","1.22","33.85" +"IRISH JOURNAL OF PSYCHOLOGICAL MEDICINE","0790-9667","2051-6967","PSYCHIATRY","('ESCI',)","922","1.8","Q3","1.21","35.75" +"Anatomical Record-Advances in Integrative Anatomy and Evolutionary Biology","1932-8486","1932-8494","ANATOMY & MORPHOLOGY","('SCIE',)","6,942","1.8","Q2","1.18","22.90" +"Differential and Integral Equations","0893-4983","0893-4983","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,644","1.8","('Q1', 'Q1')","1.18","1.01" +"HIGH ABILITY STUDIES","1359-8139","1469-834X","('EDUCATION, SPECIAL', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","565","1.8","('Q2', 'Q3')","1.18","6.90" +"JOURNAL OF ANATOMY","0021-8782","1469-7580","ANATOMY & MORPHOLOGY","('SCIE',)","10,350","1.8","Q2","1.17","46.46" +"Journal of Linguistic Anthropology","1055-1360","1548-1395","('ANTHROPOLOGY', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","1,127","1.8","('Q1', 'N/A', 'Q1')","1.15","20.55" +"AMERICAN JOURNAL OF OTOLARYNGOLOGY","0196-0709","1532-818X","OTORHINOLARYNGOLOGY","('SCIE',)","4,994","1.8","Q2","1.12","6.25" +"TOPICS IN LANGUAGE DISORDERS","0271-8294","1550-3259","('LINGUISTICS', 'REHABILITATION')","('SSCI', 'SSCI')","811","1.8","('Q1', 'Q2')","1.12","0.00" +"Foundations of Chemistry","1386-4238","1572-8463","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE')","317","1.8","Q1","1.11","35.29" +"International Journal of School & Educational Psychology","2168-3603","2168-3611","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('ESCI', 'ESCI')","505","1.8","('Q2', 'Q3')","1.09","10.71" +"NONLINEAR ANALYSIS-REAL WORLD APPLICATIONS","1468-1218","1878-5719","MATHEMATICS, APPLIED","('SCIE',)","5,220","1.8","Q1","1.09","9.43" +"JOURNAL OF TEACHING IN PHYSICAL EDUCATION","0273-5024","1543-2769","('EDUCATION & EDUCATIONAL RESEARCH', 'SPORT SCIENCES')","('SSCI', 'SCIE')","2,168","1.8","('Q2', 'Q2')","1.07","3.28" +"Mind Culture and Activity","1074-9039","1532-7884","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","873","1.8","Q2","1.07","28.07" +"ANNALES DE L INSTITUT HENRI POINCARE-ANALYSE NON LINEAIRE","0294-1449","1873-1430","MATHEMATICS, APPLIED","('SCIE',)","3,753","1.8","Q1","1.05","62.12" +"Irish Educational Studies","0332-3315","1747-4965","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","725","1.8","Q2","1.05","60.27" +"International Studies Perspectives","1528-3577","1528-3585","INTERNATIONAL RELATIONS","('SSCI',)","904","1.8","Q2","1.04","22.62" +"Cambridge Journal of Education","0305-764X","1469-3577","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,800","1.8","Q2","1.03","43.86" +"CRIME & DELINQUENCY","0011-1287","1552-387X","CRIMINOLOGY & PENOLOGY","('SSCI',)","3,205","1.8","Q2","1.03","10.24" +"EUROPEAN JOURNAL OF COMMUNICATION","0267-3231","1460-3705","COMMUNICATION","('SSCI',)","1,754","1.8","Q2","1.03","36.79" +"International Journal of Inclusive Education","1360-3116","1464-5173","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","3,643","1.8","Q2","1.03","22.76" +"European Early Childhood Education Research Journal","1350-293X","1752-1807","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,505","1.8","Q2","1.02","38.57" +"Feminist Criminology","1557-0851","1557-086X","CRIMINOLOGY & PENOLOGY","('SSCI',)","954","1.8","Q2","1.01","15.00" +"JOURNAL OF PSYCHOTHERAPY INTEGRATION","1053-0479","1573-3696","PSYCHOLOGY, CLINICAL","('ESCI',)","1,014","1.8","Q3","1.01","2.17" +"Western Journal of Emergency Medicine","1936-900X","1936-9018","EMERGENCY MEDICINE","('SCIE',)","3,800","1.8","Q2","1.01","95.95" +"BRITISH JOURNAL OF SOCIAL WORK","0045-3102","1468-263X","SOCIAL WORK","('SSCI',)","4,955","1.8","Q1","1.00","30.61" +"INTERNATIONAL JOURNAL OF AUDIOLOGY","1499-2027","1708-8186","('AUDIOLOGY & SPEECH', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE')","4,931","1.8","('Q2', 'Q2')","0.99","32.43" +"PALAEONTOGRAPHICA ABTEILUNG A-PALAOZOOLOGIE-STRATIGRAPHIE","0375-0442","0375-0442","PALEONTOLOGY","('SCIE',)","646","1.8","Q2","0.99","0.00" +"PHYSIOLOGICAL AND BIOCHEMICAL ZOOLOGY","1522-2152","1537-5293","('PHYSIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","2,927","1.8","('Q3', 'Q1')","0.99","1.77" +"AUSTRALIAN JOURNAL OF INTERNATIONAL AFFAIRS","1035-7718","1465-332X","INTERNATIONAL RELATIONS","('SSCI',)","801","1.8","Q2","0.98","15.53" +"BIOSTATISTICS","1465-4644","1468-4357","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","4,669","1.8","('Q3', 'Q1')","0.98","21.81" +"JOURNAL OF COMPLEXITY","0885-064X","1090-2708","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,083","1.8","('Q1', 'Q1')","0.98","24.62" +"INVERTEBRATE SYSTEMATICS","1445-5226","1447-2600","('EVOLUTIONARY BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","1,305","1.8","('Q3', 'Q1')","0.97","13.79" +"JOURNAL OF COMMUNICATION DISORDERS","0021-9924","1873-7994","('AUDIOLOGY & SPEECH', 'LINGUISTICS', 'REHABILITATION')","('SCIE', 'SSCI', 'SCIE, SSCI')","2,484","1.8","('Q2', 'Q1', 'Q2')","0.97","19.37" +"Political Research Exchange","","2474-736X","POLITICAL SCIENCE","('ESCI',)","153","1.8","Q2","0.96","96.72" +"Social Science Journal","0362-3319","1873-5355","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","1,861","1.8","Q2","0.96","5.88" +"VETERINARY RESEARCH COMMUNICATIONS","0165-7380","1573-7446","VETERINARY SCIENCES","('SCIE',)","2,277","1.8","Q2","0.96","29.28" +"Journal of Bisexuality","1529-9716","1529-9724","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","710","1.8","Q2","0.95","6.06" +"Journal of Emergency Nursing","0099-1767","1527-2966","('EMERGENCY MEDICINE', 'NURSING')","('SCIE', 'SCIE, SSCI')","1,741","1.8","('Q2', 'Q2')","0.93","9.17" +"MCN-The American Journal of Maternal-Child Nursing","0361-929X","1539-0683","NURSING","('SCIE', 'SSCI')","1,132","1.8","Q2","0.93","0.87" +"Risk Management-An International Journal","1460-3799","1743-4637","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","369","1.8","Q2","0.93","15.52" +"Swiss Journal of Geosciences","1661-8726","1661-8734","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","916","1.8","Q3","0.93","100.00" +"EXPERIMENTAL AND APPLIED ACAROLOGY","0168-8162","1572-9702","ENTOMOLOGY","('SCIE',)","4,359","1.8","Q2","0.92","29.90" +"International Journal of Sociology","0020-7659","1557-9336","SOCIOLOGY","('ESCI',)","571","1.8","Q2","0.91","21.43" +"MIND & LANGUAGE","0268-1064","1468-0017","('LINGUISTICS', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","1,984","1.8","('Q1', 'Q3')","0.91","30.43" +"SOCIOLOGICAL FORUM","0884-8971","1573-7861","SOCIOLOGY","('SSCI',)","2,574","1.8","Q2","0.91","26.94" +"Hand-American Association for Hand Surgery","1558-9447","1558-9455","('ORTHOPEDICS', 'SURGERY')","('ESCI', 'ESCI')","2,487","1.8","('Q2', 'Q2')","0.90","7.56" +"Journal of Bioethical Inquiry","1176-7529","1872-4353","('ETHICS', 'MEDICAL ETHICS', 'SOCIAL ISSUES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SCIE', 'SSCI', 'SSCI')","1,154","1.8","('Q2', 'Q2', 'Q2', 'Q3')","0.90","46.48" +"JOURNAL OF NURSING ADMINISTRATION","0002-0443","1539-0721","NURSING","('SCIE', 'SSCI')","2,781","1.8","Q2","0.90","3.12" +"Lithosphere","1941-8264","1947-4253","('GEOCHEMISTRY & GEOPHYSICS', 'GEOLOGY')","('SCIE', 'SCIE')","2,468","1.8","('Q3', 'Q1')","0.90","99.26" +"STUDIES IN COMPARATIVE INTERNATIONAL DEVELOPMENT","0039-3606","1936-6167","('DEVELOPMENT STUDIES', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","1,354","1.8","('Q3', 'Q2', 'Q2')","0.90","35.96" +"ENVIRONMENTAL ENTOMOLOGY","0046-225X","1938-2936","ENTOMOLOGY","('SCIE',)","8,896","1.8","Q2","0.89","24.28" +"FAMILY MEDICINE","0742-3225","1938-3800","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","2,817","1.8","('Q2', 'Q3')","0.89","99.59" +"International Journal for Crime Justice and Social Democracy","2202-7998","2202-8005","CRIMINOLOGY & PENOLOGY","('ESCI',)","605","1.8","Q2","0.89","93.62" +"JOURNAL OF SURGICAL RESEARCH","0022-4804","1095-8673","SURGERY","('SCIE',)","16,764","1.8","Q2","0.89","9.92" +"Social Currents","2329-4965","2329-4973","SOCIOLOGY","('ESCI',)","530","1.8","Q2","0.89","5.81" +"Asian Journal of Criminology","1871-0131","1871-014X","CRIMINOLOGY & PENOLOGY","('SSCI',)","344","1.8","Q2","0.88","18.33" +"CLINICS IN PLASTIC SURGERY","0094-1298","1558-0504","SURGERY","('SCIE',)","3,221","1.8","Q2","0.88","0.00" +"FACIES","0172-9179","1612-4820","('GEOLOGY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","1,626","1.8","('Q1', 'Q2')","0.88","42.37" +"EDUCATIONAL STUDIES","0305-5698","1465-3400","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,526","1.8","Q2","0.87","16.67" +"Pixel-Bit- Revista de Medios y Educacion","1133-8482","2171-7966","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","397","1.8","Q2","0.87","91.75" +"Research in Science & Technological Education","0263-5143","1470-1138","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","892","1.8","Q2","0.87","22.89" +"ACTA PALAEONTOLOGICA POLONICA","0567-7920","1732-2421","PALEONTOLOGY","('SCIE',)","2,385","1.8","Q2","0.86","100.00" +"International Emergency Nursing","1755-599X","1878-013X","NURSING","('SCIE', 'SSCI')","1,412","1.8","Q2","0.86","23.05" +"Journal of Educational Administration and History","0022-0620","1478-7431","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","503","1.8","Q2","0.86","29.76" +"Politics Groups and Identities","2156-5503","2156-5511","POLITICAL SCIENCE","('SSCI',)","1,199","1.8","Q2","0.85","11.34" +"SOCIAL SCIENCE QUARTERLY","0038-4941","1540-6237","('POLITICAL SCIENCE', 'SOCIOLOGY')","('SSCI', 'SSCI')","5,262","1.8","('Q2', 'Q2')","0.85","17.02" +"AMERICAN STATISTICIAN","0003-1305","1537-2731","STATISTICS & PROBABILITY","('SCIE',)","8,460","1.8","Q1","0.84","20.27" +"ARCHIVES OF DERMATOLOGICAL RESEARCH","0340-3696","1432-069X","DERMATOLOGY","('SCIE',)","4,933","1.8","Q3","0.84","14.29" +"COMMUNICATION REVIEW","1071-4421","1547-7487","COMMUNICATION","('ESCI',)","448","1.8","Q2","0.84","19.05" +"VETERINARY RECORD","0042-4900","2042-7670","VETERINARY SCIENCES","('SCIE',)","10,357","1.8","Q2","0.84","35.52" +"HUMAN ECOLOGY","0300-7839","1572-9915","('ANTHROPOLOGY', 'ENVIRONMENTAL STUDIES', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","3,224","1.8","('Q1', 'Q3', 'Q2')","0.83","35.24" +"Studies in Graduate and Postdoctoral Education","2398-4686","2398-4694","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","223","1.8","Q2","0.83","17.11" +"Atencion Primaria","0212-6567","1578-1275","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","1,479","1.8","('Q2', 'Q3')","0.82","98.28" +"AUSTRALIAN GEOGRAPHER","0004-9182","1465-3311","GEOGRAPHY","('SSCI',)","896","1.8","Q2","0.82","35.23" +"Clinics in Shoulder and Elbow","2288-8721","2288-8721","ORTHOPEDICS","('ESCI',)","353","1.8","Q2","0.82","100.00" +"ECONOMICS OF EDUCATION REVIEW","0272-7757","1873-7382","('ECONOMICS', 'EDUCATION & EDUCATIONAL RESEARCH')","('SSCI', 'SSCI')","4,859","1.8","('Q2', 'Q2')","0.82","29.41" +"Livestock Science","1871-1413","1878-0490","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","8,631","1.8","Q2","0.82","27.43" +"SYSTEMS RESEARCH AND BEHAVIORAL SCIENCE","1092-7026","1099-1743","('MANAGEMENT', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","1,624","1.8","('Q3', 'Q2')","0.82","25.40" +"Veterinary Medicine and Science","","2053-1095","VETERINARY SCIENCES","('SCIE',)","1,886","1.8","Q2","0.82","73.26" +"GROUP DYNAMICS-THEORY RESEARCH AND PRACTICE","1089-2699","1930-7802","PSYCHOLOGY, SOCIAL","('SSCI',)","1,120","1.8","Q3","0.81","1.45" +"Orthopaedic Surgery","1757-7853","1757-7861","ORTHOPEDICS","('SCIE',)","3,592","1.8","Q2","0.81","68.19" +"Advances in Medical Education and Practice","1179-7258","1179-7258","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","2,059","1.8","Q2","0.80","96.46" +"Curriculum Studies in Health and Physical Education","2574-2981","2574-299X","('EDUCATION & EDUCATIONAL RESEARCH', 'HOSPITALITY, LEISURE, SPORT & TOURISM')","('ESCI', 'ESCI')","189","1.8","('Q2', 'Q3')","0.80","36.25" +"International Journal of Computerized Dentistry","1463-4201","1463-4201","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","859","1.8","Q2","0.80","0.00" +"INTERNATIONAL JOURNAL OF UROLOGY","0919-8172","1442-2042","UROLOGY & NEPHROLOGY","('SCIE',)","4,844","1.8","Q3","0.80","10.56" +"OTO Open","","2473-974X","OTORHINOLARYNGOLOGY","('ESCI',)","551","1.8","Q2","0.80","93.65" +"Annals of Animal Science","1642-3402","2300-8733","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,593","1.8","Q2","0.79","100.00" +"Clinical Ophthalmology","1177-5483","1177-5483","OPHTHALMOLOGY","('ESCI',)","8,277","1.8","Q3","0.79","98.43" +"EUROPEAN JOURNAL OF ORAL SCIENCES","0909-8836","1600-0722","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","3,722","1.8","Q2","0.79","31.82" +"EUROPEAN JOURNAL OF WILDLIFE RESEARCH","1612-4642","1439-0574","('ECOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","2,816","1.8","('Q3', 'Q1')","0.79","40.75" +"Photobiomodulation Photomedicine and Laser Surgery","","2578-5478","SURGERY","('SCIE',)","1,003","1.8","Q2","0.79","0.40" +"Chinese Journal of Traumatology","1008-1275","1008-1275","ORTHOPEDICS","('ESCI',)","1,435","1.8","Q2","0.78","96.41" +"JOURNAL OF DEVELOPMENTAL AND BEHAVIORAL PEDIATRICS","0196-206X","1536-7312","('BEHAVIORAL SCIENCES', 'PEDIATRICS', 'PSYCHOLOGY, DEVELOPMENTAL')","('SCIE', 'SCIE', 'SSCI')","4,595","1.8","('Q3', 'Q2', 'Q3')","0.78","8.22" +"JOURNAL OF GEOGRAPHY IN HIGHER EDUCATION","0309-8265","1466-1845","('EDUCATION & EDUCATIONAL RESEARCH', 'GEOGRAPHY')","('SSCI', 'SSCI')","1,248","1.8","('Q2', 'Q2')","0.78","40.16" +"Medicina Oral Patologia Oral y Cirugia Bucal","1698-6946","1698-6946","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","3,981","1.8","Q2","0.78","92.72" +"Training and Education in Professional Psychology","1931-3918","1931-3926","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","960","1.8","Q3","0.78","0.72" +"SCIENTIA AGRICOLA","1678-992X","1678-992X","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","2,915","1.8","Q2","0.77","100.00" +"Critical Studies on Security","2162-4887","2162-4909","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('ESCI', 'ESCI')","405","1.8","('Q2', 'Q2')","0.76","41.67" +"Journal of Stomatology Oral and Maxillofacial Surgery","2468-8509","2468-7855","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,558","1.8","Q2","0.76","19.48" +"INTERNATIONAL JOURNAL OF PUBLIC ADMINISTRATION","0190-0692","1532-4265","PUBLIC ADMINISTRATION","('ESCI',)","2,760","1.8","Q3","0.75","9.78" +"JOURNAL OF SCHOOL HEALTH","0022-4391","1746-1561","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES', 'HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SCIE', 'SCIE', 'SCIE, SSCI')","3,898","1.8","('Q2', 'Q2', 'Q3', 'Q3')","0.75","20.33" +"HYSTRIX-Italian Journal of Mammalogy","0394-1914","1825-5272","ZOOLOGY","('SCIE',)","1,068","1.8","Q1","0.74","0.00" +"International Neurourology Journal","2093-4777","2093-6931","UROLOGY & NEPHROLOGY","('SCIE',)","1,003","1.8","Q3","0.74","100.00" +"Journal of Early Childhood Research","1476-718X","1741-2927","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","757","1.8","Q2","0.74","39.32" +"JOURNAL OF ELECTRON SPECTROSCOPY AND RELATED PHENOMENA","0368-2048","1873-2526","SPECTROSCOPY","('SCIE',)","5,373","1.8","Q2","0.74","27.69" +"Journal of Financial Econometrics","1479-8409","1479-8417","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","1,784","1.8","('Q2', 'Q2')","0.74","15.69" +"PSYCHIATRIC REHABILITATION JOURNAL","1095-158X","1559-3126","('PSYCHIATRY', 'REHABILITATION')","('SSCI', 'SSCI')","1,935","1.8","('Q3', 'Q2')","0.74","4.11" +"Foot & Ankle Specialist","1938-6400","1938-7636","ORTHOPEDICS","('ESCI',)","1,159","1.8","Q2","0.73","3.93" +"Journal of Applied Laboratory Medicine","2576-9456","2475-7241","MEDICAL LABORATORY TECHNOLOGY","('ESCI',)","1,330","1.8","Q3","0.73","16.45" +"JOURNAL OF EXPERIMENTAL CHILD PSYCHOLOGY","0022-0965","1096-0457","('PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","8,330","1.8","('Q3', 'Q3')","0.73","35.19" +"Open Access Journal of Contraception","","1179-1527","OBSTETRICS & GYNECOLOGY","('ESCI',)","255","1.8","Q3","0.73","95.56" +"ASCE-ASME Journal of Risk and Uncertainty in Engineering Systems Part B-Mechanical Engineering","2332-9017","2332-9025","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","442","1.8","Q2","0.72","1.64" +"BRITISH JOURNAL OF RADIOLOGY","0007-1285","1748-880X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","13,451","1.8","Q3","0.72","25.29" +"Europes Journal of Psychology","1841-0413","1841-0413","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","1,271","1.8","Q2","0.72","97.89" +"JOURNAL OF FORESTRY","0022-1201","1938-3746","FORESTRY","('SCIE',)","2,657","1.8","Q2","0.72","29.11" +"JOURNAL OF POULTRY SCIENCE","1346-7395","1349-0486","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,099","1.8","Q2","0.72","99.13" +"Review of Philosophy and Psychology","1878-5158","1878-5166","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","1,067","1.8","Q2","0.72","52.33" +"SSM-Qualitative Research in Health","2667-3215","2667-3215","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL')","('ESCI', 'ESCI')","435","1.8","('Q3', 'Q3')","0.72","81.96" +"CHILD CARE HEALTH AND DEVELOPMENT","0305-1862","1365-2214","('PEDIATRICS', 'PSYCHOLOGY, DEVELOPMENTAL')","('SCIE', 'SSCI')","4,817","1.8","('Q2', 'Q3')","0.71","34.10" +"International Orthodontics","1761-7227","1879-680X","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","762","1.8","Q2","0.71","10.14" +"JOURNAL OF ADULT DEVELOPMENT","1068-0667","1573-3440","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","1,132","1.8","Q3","0.71","18.18" +"Journal of Global Sport Management","2470-4067","2470-4075","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'MANAGEMENT')","('ESCI', 'ESCI')","395","1.8","('Q3', 'Q3')","0.71","9.15" +"Letters in Spatial and Resource Sciences","1864-4031","1864-404X","GEOGRAPHY","('ESCI',)","330","1.8","Q2","0.71","17.65" +"Mediterranean Journal of Clinical Psychology","2282-1619","2282-1619","PSYCHOLOGY, CLINICAL","('ESCI',)","549","1.8","Q3","0.71","0.00" +"MENTORING & TUTORING","1361-1267","1469-9745","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","862","1.8","Q2","0.71","14.29" +"Moravian Geographical Reports","1210-8812","2199-6202","GEOGRAPHY","('SSCI',)","391","1.8","Q2","0.71","100.00" +"SICOT-J","2426-8887","2426-8887","ORTHOPEDICS","('ESCI',)","793","1.8","Q2","0.71","95.30" +"ANIMAL GENETICS","0268-9146","1365-2052","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","4,089","1.8","('Q2', 'Q3')","0.70","20.86" +"Asian Geographer","1022-5706","2158-1762","GEOGRAPHY","('ESCI',)","208","1.8","Q2","0.70","16.00" +"COMMUNITY MENTAL HEALTH JOURNAL","0010-3853","1573-2789","('HEALTH POLICY & SERVICES', 'PSYCHIATRY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI', 'SSCI')","4,387","1.8","('Q3', 'Q3', 'Q3')","0.70","22.63" +"DIGESTIVE SURGERY","0253-4886","1421-9883","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","2,149","1.8","('Q3', 'Q2')","0.70","23.40" +"JOURNAL OF DEVELOPMENT STUDIES","0022-0388","1743-9140","('DEVELOPMENT STUDIES', 'ECONOMICS')","('SSCI', 'SSCI')","5,997","1.8","('Q3', 'Q2')","0.70","38.59" +"Journal of Venomous Animals and Toxins including Tropical Diseases","","1678-9199","('TOXICOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","1,324","1.8","('Q4', 'Q3')","0.70","93.75" +"PSYCHOLOGY IN THE SCHOOLS","0033-3085","1520-6807","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","4,592","1.8","Q3","0.70","17.27" +"ETHICS & BEHAVIOR","1050-8422","1532-7019","('ETHICS', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","1,232","1.8","('Q2', 'Q2')","0.69","12.40" +"INTERNATIONAL JOURNAL OF EXPERIMENTAL PATHOLOGY","0959-9673","1365-2613","PATHOLOGY","('SCIE',)","1,976","1.8","Q3","0.69","18.07" +"JOURNAL OF AGING STUDIES","0890-4065","1879-193X","GERONTOLOGY","('SSCI',)","2,234","1.8","Q2","0.69","37.50" +"COMMUNITY DENTISTRY AND ORAL EPIDEMIOLOGY","0301-5661","1600-0528","('DENTISTRY, ORAL SURGERY & MEDICINE', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","4,978","1.8","('Q2', 'Q3')","0.68","40.53" +"International Journal of Health Governance","2059-4631","2059-4631","HEALTH POLICY & SERVICES","('ESCI',)","250","1.8","Q3","0.68","21.35" +"Jornal Brasileiro de Reproducao Assistida","1517-5693","1518-0557","OBSTETRICS & GYNECOLOGY","('ESCI',)","1,034","1.8","Q3","0.68","0.00" +"Marine and Coastal Fisheries","1942-5120","1942-5120","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","999","1.8","('Q2', 'Q2')","0.68","90.00" +"SCANDINAVIAN JOURNAL OF PSYCHOLOGY","0036-5564","1467-9450","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","3,587","1.8","Q2","0.68","41.03" +"JOURNAL OF EXPERIMENTAL ZOOLOGY PART B-MOLECULAR AND DEVELOPMENTAL EVOLUTION","1552-5007","1552-5015","('DEVELOPMENTAL BIOLOGY', 'EVOLUTIONARY BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,498","1.8","('Q3', 'Q3', 'Q1')","0.67","30.25" +"Journal of Spatial Information Science","1948-660X","1948-660X","GEOGRAPHY","('ESCI',)","284","1.8","Q2","0.67","100.00" +"CULTURE HEALTH & SEXUALITY","1369-1058","1464-5351","('FAMILY STUDIES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI')","3,224","1.8","('Q2', 'Q3')","0.66","28.17" +"EUROPEAN JOURNAL OF CANCER CARE","0961-5423","1365-2354","('HEALTH CARE SCIENCES & SERVICES', 'NURSING', 'ONCOLOGY', 'REHABILITATION')","('SCIE', 'SCIE, SSCI', 'SCIE', 'SCIE, SSCI')","4,672","1.8","('Q3', 'Q2', 'Q3', 'Q2')","0.66","73.19" +"HEALTH RISK & SOCIETY","1369-8575","1469-8331","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI')","973","1.8","('Q3', 'Q3')","0.66","39.06" +"International Journal of Managerial Finance","1743-9132","1758-6569","BUSINESS, FINANCE","('ESCI',)","1,043","1.8","Q2","0.66","0.76" +"CLINICAL NEUROLOGY AND NEUROSURGERY","0303-8467","1872-6968","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","8,736","1.8","('Q3', 'Q2')","0.65","9.61" +"Crop & Pasture Science","1836-0947","1836-5795","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","3,083","1.8","Q2","0.65","23.05" +"DEVELOPMENTAL PSYCHOBIOLOGY","0012-1630","1098-2302","('DEVELOPMENTAL BIOLOGY', 'PSYCHOLOGY')","('SCIE', 'SCIE')","4,455","1.8","('Q3', 'Q3')","0.65","15.29" +"JOGNN-JOURNAL OF OBSTETRIC GYNECOLOGIC AND NEONATAL NURSING","0884-2175","1552-6909","('NURSING', 'OBSTETRICS & GYNECOLOGY')","('SCIE, SSCI', 'SCIE')","3,000","1.8","('Q2', 'Q3')","0.64","14.20" +"JOURNAL OF EXPERIMENTAL MARINE BIOLOGY AND ECOLOGY","0022-0981","1879-1697","('ECOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","13,470","1.8","('Q3', 'Q2')","0.64","29.67" +"SCANDINAVIAN JOURNAL OF FOREST RESEARCH","0282-7581","1651-1891","FORESTRY","('SCIE',)","2,649","1.8","Q2","0.64","37.23" +"ANTI-CANCER DRUGS","0959-4973","1473-5741","('ONCOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","4,075","1.8","('Q3', 'Q3')","0.63","18.89" +"Journal of Biological Dynamics","1751-3758","1751-3766","('ECOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","1,150","1.8","('Q3', 'Q3')","0.63","99.10" +"Journal Of Bone And Joint Infection","","2206-3552","('INFECTIOUS DISEASES', 'ORTHOPEDICS', 'SURGERY')","('ESCI', 'ESCI', 'ESCI')","595","1.8","('Q3', 'Q2', 'Q2')","0.63","100.00" +"JOURNAL OF ECT","1095-0680","1533-4112","('BEHAVIORAL SCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE, SSCI')","1,878","1.8","('Q3', 'Q3')","0.63","5.93" +"Journal of Ophthalmology","2090-004X","2090-0058","OPHTHALMOLOGY","('SCIE',)","5,048","1.8","Q3","0.63","100.00" +"MAIN GROUP METAL CHEMISTRY","0792-1241","2191-0219","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","451","1.8","('Q3', 'Q3')","0.63","98.53" +"MARINE AND FRESHWATER RESEARCH","1323-1650","1448-6059","('FISHERIES', 'LIMNOLOGY', 'MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,751","1.8","('Q2', 'Q2', 'Q2', 'Q3')","0.63","39.10" +"PERSONAL RELATIONSHIPS","1350-4126","1475-6811","('COMMUNICATION', 'FAMILY STUDIES', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI', 'SSCI')","2,797","1.8","('Q2', 'Q2', 'Q3')","0.63","25.49" +"Population Health Management","1942-7891","1942-7905","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","1,470","1.8","Q3","0.63","16.49" +"REPRODUCTION FERTILITY AND DEVELOPMENT","1031-3613","1448-5990","('DEVELOPMENTAL BIOLOGY', 'REPRODUCTIVE BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,924","1.8","('Q3', 'Q4', 'Q1')","0.63","21.80" +"SEMINARS IN NEUROLOGY","0271-8235","1098-9021","CLINICAL NEUROLOGY","('SCIE',)","3,042","1.8","Q3","0.63","1.44" +"ALZHEIMER DISEASE & ASSOCIATED DISORDERS","0893-0341","0893-0341","('CLINICAL NEUROLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","3,736","1.8","('Q3', 'Q3')","0.62","10.27" +"CEAS Space Journal","1868-2502","1868-2510","ENGINEERING, AEROSPACE","('ESCI',)","588","1.8","Q2","0.62","54.91" +"Italian Journal of Dermatology and Venereology","2784-8671","2784-8450","DERMATOLOGY","('SCIE',)","273","1.8","Q3","0.62","2.72" +"JOURNAL OF MARITAL AND FAMILY THERAPY","0194-472X","1752-0606","('FAMILY STUDIES', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","2,040","1.8","('Q2', 'Q3')","0.62","16.87" +"MATHEMATICAL AND COMPUTER MODELLING OF DYNAMICAL SYSTEMS","1387-3954","1744-5051","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","520","1.8","('Q3', 'Q1')","0.62","100.00" +"Minerva Surgery","2724-5691","2724-5438","SURGERY","('SCIE',)","286","1.8","Q2","0.62","0.98" +"Clinical Imaging","0899-7071","1873-4499","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","4,061","1.8","Q3","0.61","8.57" +"Data & Policy","","2632-3249","PUBLIC ADMINISTRATION","('ESCI',)","179","1.8","Q3","0.61","98.96" +"HEALTH CARE ANALYSIS","1065-3058","1573-3394","('ETHICS', 'HEALTH POLICY & SERVICES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI', 'SSCI')","699","1.8","('Q2', 'Q3', 'Q3')","0.61","70.00" +"INTERNATIONAL UROGYNECOLOGY JOURNAL","0937-3462","1433-3023","('OBSTETRICS & GYNECOLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","8,021","1.8","('Q3', 'Q3')","0.61","19.69" +"JOURNAL OF CLINICAL AND EXPERIMENTAL NEUROPSYCHOLOGY","1380-3395","1744-411X","('CLINICAL NEUROLOGY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SCIE', 'SSCI')","5,203","1.8","('Q3', 'Q3', 'Q3')","0.61","14.89" +"RESEARCH ON AGING","0164-0275","1552-7573","GERONTOLOGY","('SSCI',)","2,753","1.8","Q2","0.61","15.44" +"Science of Diabetes Self-Management and Care","2635-0106","2635-0114","('ENDOCRINOLOGY & METABOLISM', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI')","140","1.8","('Q4', 'Q3')","0.61","5.66" +"STRAIN","0039-2103","1475-1305","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('SCIE',)","1,374","1.8","Q2","0.61","32.91" +"Area Development and Policy","2379-2949","2379-2957","DEVELOPMENT STUDIES","('ESCI',)","431","1.8","Q3","0.60","12.68" +"COGNITIVE DEVELOPMENT","0885-2014","1879-226X","('PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","2,892","1.8","('Q3', 'Q3')","0.60","24.69" +"European Journal of Radiology Open","","2352-0477","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","790","1.8","Q3","0.60","79.72" +"Forest Science and Technology","2158-0103","2158-0715","FORESTRY","('ESCI',)","630","1.8","Q2","0.60","95.56" +"INTERNATIONAL UROLOGY AND NEPHROLOGY","0301-1623","1573-2584","UROLOGY & NEPHROLOGY","('SCIE',)","6,251","1.8","Q3","0.60","21.08" +"JOURNAL OF THE OPTICAL SOCIETY OF AMERICA B-OPTICAL PHYSICS","0740-3224","1520-8540","OPTICS","('SCIE',)","13,649","1.8","Q3","0.60","5.52" +"JOURNAL OF TROPICAL PEDIATRICS","0142-6338","1465-3664","('PEDIATRICS', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","2,438","1.8","('Q2', 'Q3')","0.60","11.02" +"NEUROUROLOGY AND URODYNAMICS","0733-2467","1520-6777","UROLOGY & NEPHROLOGY","('SCIE',)","7,260","1.8","Q3","0.60","19.93" +"Plant Pathology Journal","1598-2254","2093-9280","PLANT SCIENCES","('SCIE',)","2,015","1.8","Q2","0.60","97.31" +"Advances in Urology","1687-6369","1687-6377","UROLOGY & NEPHROLOGY","('ESCI',)","652","1.8","Q3","0.59","97.06" +"Economic Systems Research","0953-5314","1469-5758","ECONOMICS","('SSCI',)","1,377","1.8","Q2","0.59","30.99" +"JOURNAL OF SOCIAL PSYCHOLOGY","0022-4545","1940-1183","PSYCHOLOGY, SOCIAL","('SSCI',)","4,093","1.8","Q3","0.59","8.37" +"Local Economy","0269-0942","1470-9325","ECONOMICS","('ESCI',)","961","1.8","Q2","0.59","49.57" +"MOLECULAR VISION","1090-0535","","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'OPHTHALMOLOGY')","('SCIE', 'SCIE')","5,215","1.8","('Q4', 'Q3')","0.59","0.00" +"Review of Keynesian Economics","2049-5323","2049-5331","ECONOMICS","('SSCI',)","536","1.8","Q2","0.59","0.00" +"SOUTHERN ECONOMIC JOURNAL","0038-4038","2325-8012","ECONOMICS","('SSCI',)","2,309","1.8","Q2","0.59","18.24" +"Frontiers of Earth Science","2095-0195","2095-0209","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","1,347","1.8","Q3","0.58","0.00" +"LEARNING & MEMORY","1072-0502","1549-5485","NEUROSCIENCES","('SCIE',)","4,678","1.8","Q4","0.58","96.40" +"PARASITOLOGY RESEARCH","0932-0113","1432-1955","PARASITOLOGY","('SCIE',)","13,035","1.8","Q2","0.58","17.01" +"RAPID COMMUNICATIONS IN MASS SPECTROMETRY","0951-4198","1097-0231","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE')","10,634","1.8","('Q4', 'Q3', 'Q2')","0.58","19.37" +"STATISTICS IN MEDICINE","0277-6715","1097-0258","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'MEDICAL INFORMATICS', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","31,831","1.8","('Q3', 'Q4', 'Q3', 'Q3', 'Q1')","0.58","25.84" +"Sugar Tech","0972-1525","0974-0740","AGRONOMY","('SCIE',)","2,242","1.8","Q2","0.58","4.10" +"Annals of Work Exposures and Health","2398-7308","2398-7316","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","1,295","1.8","Q3","0.57","37.14" +"Clinical and Experimental Reproductive Medicine-CERM","2233-8233","2233-8241","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('ESCI', 'ESCI')","695","1.8","('Q3', 'Q4')","0.57","100.00" +"Dynamic Games and Applications","2153-0785","2153-0793","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","682","1.8","Q2","0.57","27.85" +"EUROPEAN JOURNAL OF MINERALOGY","0935-1221","1617-4011","MINERALOGY","('SCIE',)","3,509","1.8","Q2","0.57","100.00" +"Expert Review of Pharmacoeconomics & Outcomes Research","1473-7167","1744-8379","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SSCI', 'SCIE')","2,470","1.8","('Q3', 'Q3', 'Q3')","0.57","27.56" +"Journal of Animal Behaviour and Biometeorology","","2318-1265","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","369","1.8","Q2","0.57","98.11" +"JOURNAL OF BUSINESS AND TECHNICAL COMMUNICATION","1050-6519","1552-4574","('BUSINESS', 'COMMUNICATION')","('SSCI', 'SSCI')","796","1.8","('Q3', 'Q2')","0.57","4.76" +"JOURNAL OF FLUIDS ENGINEERING-TRANSACTIONS OF THE ASME","0098-2202","1528-901X","ENGINEERING, MECHANICAL","('SCIE',)","9,758","1.8","Q3","0.57","1.02" +"JOURNAL OF FUTURES MARKETS","0270-7314","1096-9934","BUSINESS, FINANCE","('SSCI',)","2,285","1.8","Q2","0.57","15.04" +"Journal of Infrared Millimeter and Terahertz Waves","1866-6892","1866-6906","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","2,250","1.8","('Q3', 'Q3', 'Q3')","0.57","24.23" +"Natural Hazards Review","1527-6988","1527-6996","('ENGINEERING, CIVIL', 'ENVIRONMENTAL STUDIES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'WATER RESOURCES')","('SCIE', 'SSCI', 'SCIE', 'SCIE', 'SCIE')","2,058","1.8","('Q3', 'Q3', 'Q3', 'Q3', 'Q3')","0.57","11.33" +"Open Agriculture","2391-9531","2391-9531","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","941","1.8","Q2","0.57","97.86" +"Patient-Related Outcome Measures","1179-271X","1179-271X","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","814","1.8","Q3","0.57","100.00" +"Urban Research & Practice","1753-5069","1753-5077","URBAN STUDIES","('SSCI',)","736","1.8","Q2","0.57","23.81" +"Analyses of Social Issues and Public Policy","1529-7489","1530-2415","('PSYCHOLOGY, SOCIAL', 'SOCIAL ISSUES')","('SSCI', 'SSCI')","819","1.8","('Q3', 'Q2')","0.56","32.09" +"APPLIED ECONOMICS","0003-6846","1466-4283","ECONOMICS","('SSCI',)","12,560","1.8","Q2","0.56","8.11" +"Asiascape-Digital Asia","2214-2304","2214-2312","COMMUNICATION","('ESCI',)","162","1.8","Q2","0.56","24.32" +"JOURNAL OF BEHAVIORAL DECISION MAKING","0894-3257","1099-0771","PSYCHOLOGY, APPLIED","('SSCI',)","3,207","1.8","Q3","0.56","42.28" +"Journal of Developmental Origins of Health and Disease","2040-1744","2040-1752","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","1,744","1.8","Q3","0.56","25.00" +"Journal of Economic and Administrative Sciences","1026-4116","2054-6246","ECONOMICS","('ESCI',)","727","1.8","Q2","0.56","0.00" +"Libyan Journal of Medicine","1993-2820","1819-6357","MEDICINE, GENERAL & INTERNAL","('SCIE',)","588","1.8","Q2","0.56","100.00" +"Pharmacogenomics & Personalized Medicine","","1178-7066","PHARMACOLOGY & PHARMACY","('SCIE',)","984","1.8","Q3","0.56","98.46" +"SOLID STATE NUCLEAR MAGNETIC RESONANCE","0926-2040","1527-3326","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'PHYSICS, CONDENSED MATTER', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,272","1.8","('Q4', 'Q3', 'Q3', 'Q2')","0.56","36.92" +"Canadian Studies in Population","0380-1489","1927-629X","DEMOGRAPHY","('SSCI',)","195","1.8","Q2","0.55","25.81" +"JOURNAL OF INFORMATION SCIENCE","0165-5515","1741-6485","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SCIE', 'SSCI')","2,970","1.8","('Q3', 'Q2')","0.55","11.20" +"Journal of Medical Radiation Sciences","2051-3895","2051-3909","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","886","1.8","Q3","0.55","75.57" +"PLASMID","0147-619X","1095-9890","('GENETICS & HEREDITY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","1,647","1.8","('Q3', 'Q4')","0.55","28.57" +"Current Opinion in Organ Transplantation","1087-2418","1531-7013","TRANSPLANTATION","('SCIE',)","1,962","1.8","Q3","0.54","5.65" +"Information Visualization","1473-8716","1473-8724","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","638","1.8","Q3","0.54","25.42" +"JOURNAL OF CLASSIFICATION","0176-4268","1432-1343","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PSYCHOLOGY, MATHEMATICAL')","('SCIE', 'SSCI')","1,998","1.8","('Q2', 'Q3')","0.54","33.33" +"MATERNAL AND CHILD HEALTH JOURNAL","1092-7875","1573-6628","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","7,732","1.8","Q3","0.54","23.11" +"RUSSIAN JOURNAL OF INORGANIC CHEMISTRY","0036-0236","1531-8613","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","3,924","1.8","Q3","0.54","2.41" +"TSQ-Transgender Studies Quarterly","2328-9252","2328-9260","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","813","1.8","Q2","0.54","1.01" +"Biology Open","2046-6390","2046-6390","BIOLOGY","('SCIE',)","3,713","1.8","Q3","0.53","99.73" +"Fluids","","2311-5521","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('ESCI', 'ESCI')","2,857","1.8","('Q3', 'Q3')","0.53","99.83" +"INTERNATIONAL JOURNAL OF EARTH SCIENCES","1437-3254","1437-3262","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","5,822","1.8","Q3","0.53","29.87" +"International Review of Finance","1369-412X","1468-2443","BUSINESS, FINANCE","('SSCI',)","817","1.8","Q2","0.53","12.28" +"JOURNAL OF PUBLIC HEALTH DENTISTRY","0022-4006","1752-7325","('DENTISTRY, ORAL SURGERY & MEDICINE', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","1,775","1.8","('Q2', 'Q3')","0.53","20.00" +"Journal of Social and Political Psychology","","2195-3325","PSYCHOLOGY, SOCIAL","('ESCI',)","845","1.8","Q3","0.53","100.00" +"JOURNAL OF SPINAL CORD MEDICINE","1079-0268","2045-7723","CLINICAL NEUROLOGY","('SCIE',)","3,691","1.8","Q3","0.53","14.36" +"Modern Rheumatology","1439-7595","1439-7609","RHEUMATOLOGY","('SCIE',)","4,082","1.8","Q3","0.53","23.38" +"New Solutions-A Journal of Environmental and Occupational Health Policy","1048-2911","1541-3772","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","460","1.8","Q3","0.53","18.18" +"OCL-Oilseeds and Fats Crops and Lipids","2272-6977","2257-6614","AGRONOMY","('ESCI',)","1,070","1.8","Q2","0.53","98.33" +"Revista da Sociedade Brasileira de Medicina Tropical","0037-8682","","('PARASITOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","3,131","1.8","('Q2', 'Q3')","0.53","95.74" +"Safety","","2313-576X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","786","1.8","Q3","0.53","99.61" +"SUBSTANCE USE & MISUSE","1082-6084","1532-2491","('PSYCHIATRY', 'PSYCHOLOGY', 'SUBSTANCE ABUSE')","('SCIE', 'SCIE', 'SCIE, SSCI')","5,483","1.8","('Q3', 'Q3', 'Q3')","0.53","8.99" +"SYSTEMATICS AND BIODIVERSITY","1477-2000","1478-0933","BIODIVERSITY CONSERVATION","('SCIE',)","1,216","1.8","Q2","0.53","8.59" +"Cryptography","","2410-387X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('ESCI', 'ESCI')","464","1.8","('Q3', 'Q2')","0.52","99.39" +"Experimental Neurobiology","1226-2560","2093-8144","('MEDICINE, RESEARCH & EXPERIMENTAL', 'NEUROSCIENCES')","('SCIE', 'SCIE')","1,443","1.8","('Q3', 'Q4')","0.52","100.00" +"GEOPHYSICAL PROSPECTING","0016-8025","1365-2478","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","5,475","1.8","Q3","0.52","21.37" +"Journal of International Consumer Marketing","0896-1530","1528-7068","BUSINESS","('ESCI',)","1,356","1.8","Q3","0.52","14.44" +"Molecular Genetics and Metabolism Reports","","2214-4269","GENETICS & HEREDITY","('SCIE',)","1,390","1.8","Q3","0.52","92.19" +"Multisensory Research","2213-4794","2213-4808","('BIOPHYSICS', 'PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI')","697","1.8","('Q3', 'Q3', 'Q3')","0.52","25.29" +"Willdenowia","0511-9618","","PLANT SCIENCES","('SCIE',)","678","1.8","Q2","0.52","100.00" +"BIOTROPICA","0006-3606","1744-7429","ECOLOGY","('SCIE',)","6,367","1.8","Q3","0.51","22.16" +"Chronic Illness","1742-3953","1745-9206","('HEALTH CARE SCIENCES & SERVICES', 'MEDICINE, GENERAL & INTERNAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE', 'SCIE, SSCI')","957","1.8","('Q3', 'Q2', 'Q3')","0.51","16.26" +"Clinical Child Psychology and Psychiatry","1359-1045","1461-7021","('PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, DEVELOPMENTAL')","('SCIE, SSCI', 'SCIE', 'SSCI', 'SSCI')","1,986","1.8","('Q3', 'Q3', 'Q3', 'Q3')","0.51","22.59" +"CRYPTOGAMIE MYCOLOGIE","0181-1584","1776-100X","MYCOLOGY","('SCIE',)","574","1.8","Q3","0.51","0.00" +"ECOLOGICAL PSYCHOLOGY","1040-7413","1532-6969","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","1,080","1.8","Q3","0.51","32.00" +"Physical Mesomechanics","1029-9599","1990-5424","('MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MECHANICS')","('SCIE', 'SCIE')","759","1.8","('Q2', 'Q3')","0.51","3.14" +"ZEITSCHRIFT FUR PADAGOGISCHE PSYCHOLOGIE","1010-0652","1664-2910","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","555","1.8","Q3","0.51","64.20" +"Asian Journal of Technology Innovation","1976-1597","2158-6721","('BUSINESS', 'ECONOMICS')","('SSCI', 'SSCI')","557","1.8","('Q3', 'Q2')","0.50","4.23" +"CIRCUITS SYSTEMS AND SIGNAL PROCESSING","0278-081X","1531-5878","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","4,308","1.8","Q3","0.50","2.41" +"Computational and Mathematical Organization Theory","1381-298X","1572-9346","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SCIE', 'SCIE', 'SSCI')","514","1.8","('Q3', 'Q2', 'Q2')","0.50","23.73" +"European Journal of Translational Myology","2037-7452","2037-7460","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","709","1.8","Q3","0.50","93.14" +"HUMAN PSYCHOPHARMACOLOGY-CLINICAL AND EXPERIMENTAL","0885-6222","1099-1077","('CLINICAL NEUROLOGY', 'PHARMACOLOGY & PHARMACY', 'PSYCHIATRY', 'PSYCHOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,866","1.8","('Q3', 'Q3', 'Q3', 'Q3')","0.50","27.47" +"INTERNAL MEDICINE JOURNAL","1444-0903","1445-5994","MEDICINE, GENERAL & INTERNAL","('SCIE',)","5,118","1.8","Q2","0.50","22.51" +"Journal of the Brazilian Society of Mechanical Sciences and Engineering","1678-5878","1806-3691","ENGINEERING, MECHANICAL","('SCIE',)","7,813","1.8","Q3","0.50","3.68" +"NATIONAL TAX JOURNAL","0028-0283","1944-7477","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","1,802","1.8","('Q2', 'Q2')","0.50","0.99" +"Psychiatry Investigation","1738-3684","1976-3026","PSYCHIATRY","('SCIE', 'SSCI')","3,132","1.8","Q3","0.50","99.50" +"Visceral Medicine","2297-4725","2297-475X","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","940","1.8","('Q3', 'Q2')","0.50","33.33" +"World Journal of Gastrointestinal Surgery","1948-9366","1948-9366","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","1,612","1.8","('Q3', 'Q2')","0.50","99.62" +"ANTONIE VAN LEEUWENHOEK INTERNATIONAL JOURNAL OF GENERAL AND MOLECULAR MICROBIOLOGY","0003-6072","1572-9699","MICROBIOLOGY","('SCIE',)","6,714","1.8","Q4","0.49","12.37" +"EPL","0295-5075","1286-4854","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","19,038","1.8","Q2","0.49","13.05" +"Food Webs","2352-2496","2352-2496","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","585","1.8","('Q2', 'Q3')","0.49","24.31" +"INTERNATIONAL REGIONAL SCIENCE REVIEW","0160-0176","1552-6925","('ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI')","1,384","1.8","('Q3', 'Q3', 'Q2')","0.49","12.86" +"Journal of Modelling in Management","1746-5664","1746-5672","MANAGEMENT","('ESCI',)","1,199","1.8","Q3","0.49","0.00" +"JOURNAL OF VASCULAR RESEARCH","1018-1172","1423-0135","('PERIPHERAL VASCULAR DISEASE', 'PHYSIOLOGY')","('SCIE', 'SCIE')","1,358","1.8","('Q3', 'Q3')","0.49","14.44" +"MODERN PHYSICS LETTERS B","0217-9849","1793-6640","('PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE', 'SCIE')","5,093","1.8","('Q3', 'Q3', 'Q2')","0.49","2.31" +"SYNTHETIC COMMUNICATIONS","0039-7911","1532-2432","CHEMISTRY, ORGANIC","('SCIE',)","7,663","1.8","Q3","0.49","0.53" +"Breast Cancer-Basic and Clinical Research","1178-2234","1178-2234","ONCOLOGY","('ESCI',)","679","1.8","Q3","0.48","96.72" +"European Clinical Respiratory Journal","2001-8525","2001-8525","RESPIRATORY SYSTEM","('ESCI',)","399","1.8","Q3","0.48","100.00" +"EVOLUTIONARY ECOLOGY","0269-7653","1573-8477","('ECOLOGY', 'EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","3,284","1.8","('Q3', 'Q3', 'Q3')","0.48","30.51" +"IN VIVO","0258-851X","1791-7549","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","5,847","1.8","Q3","0.48","99.75" +"INTERNATIONAL JOURNAL OF CIRCUIT THEORY AND APPLICATIONS","0098-9886","1097-007X","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","2,604","1.8","Q3","0.48","2.67" +"Journal of Sports Economics","1527-0025","1552-7794","('ECONOMICS', 'HOSPITALITY, LEISURE, SPORT & TOURISM')","('SSCI', 'SSCI')","1,354","1.8","('Q2', 'Q3')","0.48","17.07" +"JOURNAL OF TOXICOLOGICAL SCIENCES","0388-1350","1880-3989","TOXICOLOGY","('SCIE',)","1,982","1.8","Q4","0.48","99.43" +"MAGAZINE OF CONCRETE RESEARCH","0024-9831","1751-763X","('CONSTRUCTION & BUILDING TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","5,034","1.8","('Q3', 'Q3')","0.48","0.63" +"Open Physics","2391-5471","2391-5471","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","1,178","1.8","Q2","0.48","96.86" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART C-JOURNAL OF MECHANICAL ENGINEERING SCIENCE","0954-4062","2041-2983","ENGINEERING, MECHANICAL","('SCIE',)","8,978","1.8","Q3","0.48","1.52" +"PSYCHIATRIC CLINICS OF NORTH AMERICA","0193-953X","1558-3147","PSYCHIATRY","('SSCI',)","3,423","1.8","Q3","0.48","6.85" +"ZEITSCHRIFT FUR NATURFORSCHUNG SECTION C-A JOURNAL OF BIOSCIENCES","0939-5075","1865-7125","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","3,833","1.8","('Q4', 'Q3')","0.48","3.82" +"Brain-Computer Interfaces","2326-263X","2326-2621","('ENGINEERING, BIOMEDICAL', 'NEUROSCIENCES')","('ESCI', 'ESCI')","315","1.8","('Q3', 'Q4')","0.47","17.50" +"Epilepsy & Behavior Reports","","2589-9864","CLINICAL NEUROLOGY","('ESCI',)","398","1.8","Q3","0.47","99.54" +"JOURNAL OF ATMOSPHERIC AND SOLAR-TERRESTRIAL PHYSICS","1364-6826","1879-1824","('GEOCHEMISTRY & GEOPHYSICS', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","7,386","1.8","('Q3', 'Q3')","0.47","35.41" +"Journal of Diabetes and Metabolic Disorders","","2251-6581","ENDOCRINOLOGY & METABOLISM","('ESCI',)","2,923","1.8","Q4","0.47","8.70" +"JOURNAL OF ELASTICITY","0374-3535","1573-2681","('ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","3,153","1.8","('Q2', 'Q3', 'Q3')","0.47","33.64" +"Journal of Human Development and Capabilities","1945-2829","1945-2837","DEVELOPMENT STUDIES","('SSCI',)","770","1.8","Q3","0.47","30.77" +"Journal of the Australian Ceramic Society","2510-1560","2510-1579","MATERIALS SCIENCE, CERAMICS","('SCIE',)","1,487","1.8","Q2","0.47","2.99" +"Neurotrauma Reports","","2689-288X","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('ESCI', 'ESCI')","314","1.8","('Q3', 'Q4')","0.47","100.00" +"RAIRO-OPERATIONS RESEARCH","0399-0559","2804-7303","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","1,737","1.8","Q3","0.47","68.64" +"Turkish Journal of Pharmaceutical Sciences","1304-530X","2148-6247","PHARMACOLOGY & PHARMACY","('ESCI',)","1,022","1.8","Q3","0.47","100.00" +"VECTOR-BORNE AND ZOONOTIC DISEASES","1530-3667","1557-7759","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","4,215","1.8","('Q3', 'Q3')","0.47","18.15" +"Annals of Telecommunications","0003-4347","1958-9395","TELECOMMUNICATIONS","('SCIE',)","842","1.8","Q3","0.46","12.73" +"Asia-Pacific Journal of Financial Studies","2041-9945","2041-6156","BUSINESS, FINANCE","('SSCI',)","491","1.8","Q2","0.46","3.19" +"Journal of Cognitive Enhancement","2509-3290","2509-3304","NEUROSCIENCES","('ESCI',)","498","1.8","Q4","0.46","44.00" +"JOURNAL OF NEUROGENETICS","0167-7063","1563-5260","('GENETICS & HEREDITY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","757","1.8","('Q3', 'Q4')","0.46","4.92" +"JOURNAL OF PETROLEUM GEOLOGY","0141-6421","1747-5457","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","1,386","1.8","Q3","0.46","15.52" +"Journal of Sustainable Water in the Built Environment","2379-6111","2379-6111","WATER RESOURCES","('ESCI',)","414","1.8","Q3","0.46","13.68" +"Journal of Thermal Science","1003-2169","1993-033X","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","2,380","1.8","('Q3', 'Q3')","0.46","2.21" +"PHOTONIC NETWORK COMMUNICATIONS","1387-974X","1572-8188","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'OPTICS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","711","1.8","('Q3', 'Q3', 'Q3')","0.46","3.53" +"STRUCTURAL DESIGN OF TALL AND SPECIAL BUILDINGS","1541-7794","1541-7808","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","2,601","1.8","('Q3', 'Q3')","0.46","4.08" +"Algorithms","","1999-4893","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('ESCI', 'ESCI')","4,106","1.8","('Q3', 'Q2')","0.45","99.35" +"Arts & Health","1753-3015","1753-3023","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","517","1.8","Q3","0.45","41.54" +"Bio-based and Applied Economics","2280-6180","2280-6172","ECONOMICS","('ESCI',)","262","1.8","Q2","0.45","98.18" +"EUROPEAN JOURNAL OF LIPID SCIENCE AND TECHNOLOGY","1438-7697","1438-9312","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","6,086","1.8","('Q3', 'Q3')","0.45","18.64" +"Exploratory Research in Clinical and Social Pharmacy","","2667-2766","PHARMACOLOGY & PHARMACY","('ESCI',)","389","1.8","Q3","0.45","94.38" +"IIM Kozhikode Society & Management Review","2277-9752","2321-029X","MANAGEMENT","('ESCI',)","220","1.8","Q3","0.45","14.08" +"INDUSTRIAL HEALTH","0019-8366","1880-8026","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,271","1.8","('Q3', 'Q3', 'Q4')","0.45","100.00" +"Infection Prevention in Practice","2590-0889","2590-0889","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","390","1.8","('Q3', 'Q3')","0.45","95.21" +"International Journal of Civil Engineering","1735-0522","2383-3874","ENGINEERING, CIVIL","('SCIE',)","2,170","1.8","Q3","0.45","4.53" +"Journal of Transportation Engineering Part A-Systems","2473-2907","2473-2893","('ENGINEERING, CIVIL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","1,527","1.8","('Q3', 'Q3')","0.45","1.47" +"PLANETARY AND SPACE SCIENCE","0032-0633","1873-5088","ASTRONOMY & ASTROPHYSICS","('SCIE',)","8,392","1.8","Q3","0.45","43.31" +"BIOMEDICAL CHROMATOGRAPHY","0269-3879","1099-0801","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, ANALYTICAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,273","1.8","('Q4', 'Q4', 'Q3', 'Q3')","0.44","3.31" +"CURRENT GENETICS","0172-8083","1432-0983","GENETICS & HEREDITY","('SCIE',)","3,596","1.8","Q3","0.44","24.29" +"Geoscientific Instrumentation Methods and Data Systems","2193-0856","2193-0864","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","513","1.8","('Q3', 'Q3')","0.44","100.00" +"IEEE Journal on Multiscale and Multiphysics Computational Techniques","","2379-8793","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","353","1.8","Q3","0.44","11.11" +"INTERNATIONAL JOURNAL OF MODERN PHYSICS D","0218-2718","1793-6594","ASTRONOMY & ASTROPHYSICS","('SCIE',)","6,310","1.8","Q3","0.44","1.31" +"International Journal of Optics","1687-9384","1687-9392","OPTICS","('SCIE',)","471","1.8","Q3","0.44","100.00" +"Journal of Geriatric Cardiology","1671-5411","1671-5411","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'GERIATRICS & GERONTOLOGY')","('SCIE', 'SCIE')","2,057","1.8","('Q3', 'Q3')","0.44","0.00" +"Journal of Pipeline Systems Engineering and Practice","1949-1190","1949-1204","('ENGINEERING, CIVIL', 'WATER RESOURCES')","('SCIE', 'SCIE')","1,124","1.8","('Q3', 'Q3')","0.44","1.14" +"Medical Ultrasonography","1844-4172","2066-8643","('ACOUSTICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","1,142","1.8","('Q2', 'Q3')","0.44","97.81" +"VOX SANGUINIS","0042-9007","1423-0410","HEMATOLOGY","('SCIE',)","3,325","1.8","Q3","0.44","18.40" +"Applied Bionics and Biomechanics","1176-2322","1754-2103","('ENGINEERING, BIOMEDICAL', 'ROBOTICS')","('SCIE', 'SCIE')","1,730","1.8","('Q3', 'Q3')","0.43","99.58" +"BIOELECTROMAGNETICS","0197-8462","1521-186X","('BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","2,180","1.8","('Q3', 'Q3')","0.43","16.67" +"BUSINESS AND SOCIETY REVIEW","0045-3609","1467-8594","BUSINESS","('ESCI',)","685","1.8","Q3","0.43","22.11" +"CHINA OCEAN ENGINEERING","0890-5487","2191-8945","('ENGINEERING, CIVIL', 'ENGINEERING, MECHANICAL', 'ENGINEERING, OCEAN', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,358","1.8","('Q3', 'Q3', 'Q3', 'Q3')","0.43","82.94" +"Current Alzheimer Research","1567-2050","1875-5828","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","4,773","1.8","('Q3', 'Q4')","0.43","2.99" +"GROUND WATER MONITORING AND REMEDIATION","1069-3629","1745-6592","WATER RESOURCES","('SCIE',)","880","1.8","Q3","0.43","21.65" +"International Journal of Applied Ceramic Technology","1546-542X","1744-7402","MATERIALS SCIENCE, CERAMICS","('SCIE',)","4,966","1.8","Q2","0.43","6.26" +"Iranian Journal of Pharmaceutical Research","1735-0328","1726-6890","PHARMACOLOGY & PHARMACY","('SCIE',)","3,911","1.8","Q3","0.43","45.98" +"JOURNAL OF BIOLOGICAL PHYSICS","0092-0606","1573-0689","BIOPHYSICS","('SCIE',)","895","1.8","Q3","0.43","18.60" +"Journal of Housing and the Built Environment","1566-4910","1573-7772","('ENVIRONMENTAL STUDIES', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI')","1,753","1.8","('Q3', 'Q3', 'Q2')","0.43","30.77" +"Paediatrics & Child Health","1205-7088","1918-1485","PEDIATRICS","('SCIE',)","2,558","1.8","Q2","0.43","4.42" +"Tropical Plant Biology","1935-9756","1935-9764","PLANT SCIENCES","('SCIE',)","530","1.8","Q2","0.43","13.33" +"Cardiology Research and Practice","2090-8016","2090-0597","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,239","1.8","Q3","0.42","99.38" +"CHINESE JOURNAL OF LASERS-ZHONGGUO JIGUANG","0258-7025","0258-7025","OPTICS","('ESCI',)","4,145","1.8","Q3","0.42","0.26" +"Design Science","2053-4701","2053-4701","ENGINEERING, MANUFACTURING","('ESCI',)","484","1.8","Q3","0.42","98.88" +"DESIGNED MONOMERS AND POLYMERS","1385-772X","1568-5551","POLYMER SCIENCE","('SCIE',)","1,092","1.8","Q3","0.42","100.00" +"FOOD AND NUTRITION BULLETIN","0379-5721","1564-8265","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","2,994","1.8","('Q3', 'Q3')","0.42","15.20" +"Journal of Prevention","2731-5533","2731-5541","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","110","1.8","Q3","0.42","30.48" +"REVISTA ARGENTINA DE MICROBIOLOGIA","0325-7541","1851-7617","MICROBIOLOGY","('SCIE',)","983","1.8","Q4","0.42","95.77" +"Social Influence","1553-4510","1553-4529","PSYCHOLOGY, SOCIAL","('SSCI',)","587","1.8","Q3","0.42","96.30" +"WETLANDS","0277-5212","1943-6246","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","5,033","1.8","('Q3', 'Q3')","0.42","16.86" +"Economics of Energy & Environmental Policy","2160-5882","2160-5890","('ECONOMICS', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","394","1.8","('Q2', 'Q3')","0.41","9.84" +"Familial Cancer","1389-9600","1573-7292","('GENETICS & HEREDITY', 'ONCOLOGY')","('SCIE', 'SCIE')","1,732","1.8","('Q3', 'Q3')","0.41","39.47" +"Impact Assessment and Project Appraisal","1461-5517","1471-5465","ENVIRONMENTAL STUDIES","('SSCI',)","1,285","1.8","Q3","0.41","23.48" +"NATURAL RESOURCE MODELING","0890-8575","1939-7445","('ENVIRONMENTAL SCIENCES', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","634","1.8","('Q3', 'Q2')","0.41","81.58" +"Acta Cardiologica Sinica","1011-6842","1011-6842","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","919","1.8","Q3","0.40","0.00" +"Advances in Agriculture","2356-654X","2314-7539","AGRONOMY","('ESCI',)","527","1.8","Q2","0.40","98.84" +"Advances in Traditional Medicine","2662-4052","2662-4060","PHARMACOLOGY & PHARMACY","('ESCI',)","564","1.8","Q3","0.40","4.90" +"Advances in Weed Science","2675-9462","2675-9462","PLANT SCIENCES","('SCIE',)","125","1.8","Q2","0.40","86.17" +"ANTARCTIC SCIENCE","0954-1020","1365-2079","('ENVIRONMENTAL SCIENCES', 'GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","2,162","1.8","('Q3', 'Q3', 'Q3')","0.40","42.02" +"CELL BIOCHEMISTRY AND BIOPHYSICS","1085-9195","1559-0283","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CELL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,579","1.8","('Q4', 'Q3', 'Q4')","0.40","10.62" +"Journal of Place Management and Development","1753-8335","1753-8343","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","836","1.8","Q3","0.40","13.10" +"MATHEMATICS OF CONTROL SIGNALS AND SYSTEMS","0932-4194","1435-568X","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE', 'SCIE')","1,221","1.8","('Q3', 'Q3', 'Q2')","0.40","34.00" +"One Ecosystem","","2367-8194","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('ESCI', 'ESCI')","275","1.8","('Q3', 'Q3')","0.40","95.65" +"Quality Innovation Prosperity-Kvalita Inovacia Prosperita","1335-1745","1335-1745","MANAGEMENT","('ESCI',)","285","1.8","Q3","0.40","97.40" +"Research in Astronomy and Astrophysics","1674-4527","2397-6209","ASTRONOMY & ASTROPHYSICS","('SCIE',)","3,864","1.8","Q3","0.40","0.23" +"Translational Neuroscience","2081-3856","2081-6936","NEUROSCIENCES","('SCIE',)","719","1.8","Q4","0.40","97.56" +"CANADIAN JOURNAL OF MICROBIOLOGY","0008-4166","1480-3275","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","6,121","1.8","('Q4', 'Q4')","0.39","17.43" +"CANCER INVESTIGATION","0735-7907","1532-4192","ONCOLOGY","('SCIE',)","2,543","1.8","Q3","0.39","7.62" +"Construction Economics and Building","1835-6354","1837-9133","MANAGEMENT","('ESCI',)","584","1.8","Q3","0.39","95.24" +"International Journal of Image and Data Fusion","1947-9832","1947-9824","REMOTE SENSING","('ESCI',)","418","1.8","Q3","0.39","7.84" +"International Journal of the Commons","1875-0281","1875-0281","ENVIRONMENTAL STUDIES","('SSCI',)","1,142","1.8","Q3","0.39","98.78" +"JOURNAL OF SURVEYING ENGINEERING","0733-9453","1943-5428","ENGINEERING, CIVIL","('SCIE',)","745","1.8","Q3","0.39","11.54" +"ASTROPHYSICS AND SPACE SCIENCE","0004-640X","1572-946X","ASTRONOMY & ASTROPHYSICS","('SCIE',)","8,095","1.8","Q3","0.38","10.88" +"Cold Spring Harbor Molecular Case Studies","2373-2873","2373-2873","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","866","1.8","Q3","0.38","90.97" +"Engineering Reports","","2577-8196","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","1,101","1.8","('Q3', 'Q2', 'Q3')","0.38","89.96" +"International Journal on Document Analysis and Recognition","1433-2833","1433-2825","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","683","1.8","Q3","0.38","16.48" +"Journal of Ambient Intelligence and Smart Environments","1876-1364","1876-1372","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","513","1.8","('Q3', 'Q3', 'Q3')","0.38","2.90" +"JOURNAL OF MUSCLE RESEARCH AND CELL MOTILITY","0142-4319","1573-2657","CELL BIOLOGY","('SCIE',)","1,483","1.8","Q4","0.38","35.82" +"Materials Research Express","","2053-1591","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","23,198","1.8","Q3","0.38","99.13" +"Radiation Oncology Journal","2234-3156","2234-3156","ONCOLOGY","('ESCI',)","722","1.8","Q3","0.38","97.03" +"Biologia Futura","2676-8615","2676-8607","BIOLOGY","('SCIE',)","336","1.8","Q3","0.37","44.78" +"CRYOGENICS","0011-2275","1879-2235","('PHYSICS, APPLIED', 'THERMODYNAMICS')","('SCIE', 'SCIE')","4,437","1.8","('Q3', 'Q3')","0.37","15.01" +"Current Treatment Options in Neurology","1092-8480","1534-3138","CLINICAL NEUROLOGY","('SCIE',)","1,484","1.8","Q3","0.37","16.51" +"FOOD BIOTECHNOLOGY","0890-5436","1532-4249","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","635","1.8","('Q4', 'Q3')","0.37","0.00" +"GEOSCIENCE CANADA","0315-0941","1911-4850","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","603","1.8","Q3","0.37","95.00" +"HIGH PERFORMANCE POLYMERS","0954-0083","1361-6412","POLYMER SCIENCE","('SCIE',)","2,255","1.8","Q3","0.37","0.00" +"INTERNATIONAL JOURNAL OF CRASHWORTHINESS","1358-8265","1754-2111","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","1,587","1.8","('Q3', 'Q3')","0.37","3.59" +"Journal of Building Physics","1744-2591","1744-2583","CONSTRUCTION & BUILDING TECHNOLOGY","('SCIE',)","684","1.8","Q3","0.37","13.64" +"Journal of Cancer Epidemiology","1687-8558","1687-8566","ONCOLOGY","('ESCI',)","443","1.8","Q3","0.37","100.00" +"Transformations in Business & Economics","1648-4460","","('BUSINESS', 'ECONOMICS')","('SSCI', 'SSCI')","839","1.8","('Q3', 'Q2')","0.37","0.00" +"ZEITSCHRIFT FUR NATURFORSCHUNG SECTION A-A JOURNAL OF PHYSICAL SCIENCES","0932-0784","1865-7109","('CHEMISTRY, PHYSICAL', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","3,514","1.8","('Q4', 'Q2')","0.37","2.27" +"ANALYTICAL SCIENCES","0910-6340","1348-2246","CHEMISTRY, ANALYTICAL","('SCIE',)","4,840","1.8","Q3","0.36","99.13" +"CHINESE JOURNAL OF ORGANIC CHEMISTRY","0253-2786","0253-2786","CHEMISTRY, ORGANIC","('SCIE',)","3,660","1.8","Q3","0.36","0.00" +"Critical Care Research and Practice","2090-1305","2090-1313","CRITICAL CARE MEDICINE","('ESCI',)","834","1.8","Q3","0.36","100.00" +"ECS Journal of Solid State Science and Technology","2162-8769","2162-8777","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","6,537","1.8","('Q3', 'Q3')","0.36","14.46" +"Expert Review of Cardiovascular Therapy","1477-9072","1744-8344","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","2,273","1.8","Q3","0.36","8.40" +"FOOD SCIENCE AND TECHNOLOGY INTERNATIONAL","1082-0132","1532-1738","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","2,928","1.8","('Q3', 'Q3')","0.36","0.75" +"International Review on Public and Nonprofit Marketing","1865-1984","1865-1992","BUSINESS","('ESCI',)","598","1.8","Q3","0.36","25.00" +"JOURNAL OF PEPTIDE SCIENCE","1075-2617","1099-1387","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE')","2,287","1.8","('Q4', 'Q3')","0.36","30.60" +"Lubrication Science","0954-0075","1557-6833","('ENGINEERING, CHEMICAL', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","927","1.8","('Q3', 'Q3')","0.36","4.07" +"Sexual Health","1448-5028","1449-8987","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE, SSCI')","1,547","1.8","('Q3', 'Q3')","0.36","52.88" +"ADVANCED COMPOSITE MATERIALS","0924-3046","1568-5519","MATERIALS SCIENCE, COMPOSITES","('SCIE',)","1,153","1.8","Q3","0.35","5.88" +"COMPUTATIONAL INTELLIGENCE","0824-7935","1467-8640","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","1,482","1.8","Q3","0.35","5.95" +"Cuadernos de Gestion","1131-6837","1988-2157","('BUSINESS', 'MANAGEMENT')","('ESCI', 'ESCI')","189","1.8","('Q3', 'Q3')","0.35","95.38" +"Hematology Transfusion and Cell Therapy","2531-1379","2531-1379","('HEMATOLOGY', 'ONCOLOGY')","('ESCI', 'ESCI')","644","1.8","('Q3', 'Q3')","0.35","97.71" +"MEDICC Review","1555-7960","","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","358","1.8","Q3","0.35","93.18" +"REGE-Revista de Gestao","1809-2276","2177-8736","MANAGEMENT","('ESCI',)","420","1.8","Q3","0.35","97.85" +"Stroke Research and Treatment","2090-8105","2042-0056","PERIPHERAL VASCULAR DISEASE","('ESCI',)","875","1.8","Q3","0.35","100.00" +"COMPUTING IN SCIENCE & ENGINEERING","1521-9615","1558-366X","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","7,086","1.8","Q3","0.34","32.69" +"CURRENT GENOMICS","1389-2029","1875-5488","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","2,328","1.8","('Q4', 'Q3')","0.34","0.92" +"Endocrinologia Diabetes y Nutricion","2530-0180","2530-0180","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","791","1.8","('Q4', 'Q3')","0.34","4.80" +"Green Materials","2049-1220","2049-1239","('GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","449","1.8","('Q4', 'Q3', 'Q3')","0.34","2.56" +"Journal of Chemical Metrology","1307-6183","1307-6183","CHEMISTRY, ANALYTICAL","('ESCI',)","103","1.8","Q3","0.34","98.04" +"LIPIDS","0024-4201","1558-9307","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","5,442","1.8","('Q4', 'Q3')","0.34","23.61" +"SOLVENT EXTRACTION AND ION EXCHANGE","0736-6299","1532-2262","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","2,396","1.8","Q3","0.34","9.26" +"Chromatography","1342-8284","1348-3315","CHEMISTRY, ANALYTICAL","('ESCI',)","259","1.8","Q3","0.33","100.00" +"IEEE Open Journal of Nanotechnology","","2644-1292","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('ESCI', 'ESCI')","137","1.8","('Q3', 'Q4')","0.33","98.53" +"IET Biometrics","2047-4938","2047-4946","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","839","1.8","Q3","0.33","75.93" +"Italian Journal of Food Safety","2239-7132","2239-7132","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","650","1.8","Q3","0.33","99.03" +"MACROMOLECULAR THEORY AND SIMULATIONS","1022-1344","1521-3919","POLYMER SCIENCE","('SCIE',)","1,097","1.8","Q3","0.33","17.74" +"Nankai Business Review International","2040-8749","2040-8757","MANAGEMENT","('ESCI',)","623","1.8","Q3","0.33","0.93" +"Oil & Gas Science and Technology-Revue d IFP Energies nouvelles","1294-4475","1953-8189","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE', 'SCIE')","2,090","1.8","('Q4', 'Q3', 'Q2')","0.33","100.00" +"Advances in Respiratory Medicine","2451-4934","2543-6031","RESPIRATORY SYSTEM","('ESCI',)","569","1.8","Q3","0.32","96.91" +"Euro-Mediterranean Journal for Environmental Integration","2365-6433","2365-7448","ENVIRONMENTAL SCIENCES","('ESCI',)","679","1.8","Q3","0.32","15.21" +"EUROPEAN PHYSICAL JOURNAL E","1292-8941","1292-895X","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,024","1.8","('Q4', 'Q3', 'Q3', 'Q3')","0.32","31.15" +"GROWTH FACTORS","0897-7194","1029-2292","('CELL BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","1,260","1.8","('Q4', 'Q4')","0.32","6.56" +"IFAC Journal of Systems and Control","2468-6018","2468-6018","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","208","1.8","Q3","0.32","11.76" +"ISRAEL MEDICAL ASSOCIATION JOURNAL","1565-1088","1565-1088","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,551","1.8","Q2","0.32","0.00" +"MENDELEEV COMMUNICATIONS","0959-9436","1364-551X","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","2,965","1.8","Q3","0.32","0.13" +"ACM Transactions on Asian and Low-Resource Language Information Processing","2375-4699","2375-4702","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","953","1.8","Q3","0.31","0.63" +"Macromolecular Reaction Engineering","1862-832X","1862-8338","('ENGINEERING, CHEMICAL', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","999","1.8","('Q3', 'Q3')","0.31","13.91" +"MRS Communications","2159-6859","2159-6867","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","2,531","1.8","Q3","0.31","11.93" +"Foundations of Computing and Decision Sciences","0867-6356","2300-3405","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","299","1.8","Q3","0.30","100.00" +"Journal of General and Family Medicine","2189-7948","2189-7948","MEDICINE, GENERAL & INTERNAL","('ESCI',)","556","1.8","Q2","0.30","69.40" +"Mining Technology-Transactions of the Institutions of Mining and Metallurgy","2572-6668","2572-6676","MINING & MINERAL PROCESSING","('ESCI',)","266","1.8","Q3","0.29","10.17" +"Pharmaceutical Patent Analyst","2046-8954","2046-8962","PHARMACOLOGY & PHARMACY","('ESCI',)","253","1.8","Q3","0.29","0.00" +"Advanced Manufacturing-Polymer & Composites Science","2055-0340","2055-0359","ENGINEERING, MANUFACTURING","('ESCI',)","323","1.8","Q3","0.28","96.43" +"Annals of Neurosciences","0972-7531","0976-3260","NEUROSCIENCES","('ESCI',)","917","1.8","Q4","0.28","100.00" +"CHEMICAL ENGINEERING & TECHNOLOGY","0930-7516","1521-4125","ENGINEERING, CHEMICAL","('SCIE',)","7,079","1.8","Q3","0.28","18.34" +"Crohns & Colitis 360","","2631-827X","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","398","1.8","Q3","0.26","95.16" +"ONCOLOGY-NEW YORK","0890-9091","2767-7389","ONCOLOGY","('SCIE',)","1,612","1.8","Q3","0.26","1.15" +"ENVIRONMENTAL ENGINEERING SCIENCE","1092-8758","1557-9018","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","2,959","1.8","('Q4', 'Q3')","0.25","6.17" +"Journal of Quality in Maintenance Engineering","1355-2511","1758-7832","ENGINEERING, INDUSTRIAL","('ESCI',)","1,004","1.8","Q3","0.25","11.70" +"AIMS Energy","2333-8326","2333-8334","ENERGY & FUELS","('ESCI',)","663","1.8","Q4","0.23","99.43" +"JOURNAL OF THE INDIAN INSTITUTE OF SCIENCE","0970-4140","0019-4964","MULTIDISCIPLINARY SCIENCES","('SCIE',)","936","1.8","Q2","0.22","7.47" +"Service Oriented Computing and Applications","1863-2386","1863-2394","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","298","1.8","Q3","0.22","10.17" +"FRONTIERS-A JOURNAL OF WOMEN STUDIES","0160-9009","1536-0334","WOMENS STUDIES","('SSCI',)","712","1.8","Q2","0.19","0.00" +"Performance Measurement and Metrics","1467-8047","1758-6925","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","364","1.8","Q2","0.14","0.00" +"Toxicologie Analytique et Clinique","2352-0078","2352-0086","TOXICOLOGY","('ESCI',)","315","1.8","Q4","0.12","33.33" +"Journal of Global History","1740-0228","1740-0236","HISTORY","('AHCI', 'SSCI')","810","1.7","Q1","5.53","54.65" +"ACTA MISSIOLOGICA","","2453-7160","RELIGION","('ESCI',)","190","1.7","","3.47","0.00" +"CANADIAN JOURNAL OF PHILOSOPHY","0045-5091","1911-0820","PHILOSOPHY","('AHCI',)","1,106","1.7","","2.69","61.86" +"International Journal for the Psychology of Religion","1050-8619","1532-7582","('PSYCHOLOGY, MULTIDISCIPLINARY', 'RELIGION')","('SSCI', 'AHCI')","949","1.7","('Q2', 'N/A')","2.58","18.00" +"Cultural Trends","0954-8963","1469-3690","('CULTURAL STUDIES', 'HUMANITIES, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('AHCI, SSCI', 'AHCI', 'SSCI')","661","1.7","('Q1', 'N/A', 'Q2')","2.48","40.00" +"EURASIAN GEOGRAPHY AND ECONOMICS","1538-7216","1938-2863","('AREA STUDIES', 'GEOGRAPHY')","('SSCI', 'SSCI')","1,379","1.7","('Q1', 'Q2')","2.29","24.77" +"CRITICAL ASIAN STUDIES","1467-2715","1472-6033","AREA STUDIES","('SSCI',)","816","1.7","Q1","2.01","13.19" +"Netherlands Quarterly of Human Rights","0924-0519","2214-7357","LAW","('SSCI',)","367","1.7","Q1","1.94","66.07" +"Roeper Review-A Journal on Gifted Education","0278-3193","1940-865X","EDUCATION, SPECIAL","('ESCI',)","851","1.7","Q2","1.91","8.20" +"BIOLOGY & PHILOSOPHY","0169-3867","1572-8404","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","1,661","1.7","Q1","1.74","48.10" +"Linguistic Typology","1430-0532","1613-415X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","580","1.7","('N/A', 'Q1')","1.71","44.83" +"Journal of Writing Research","2030-1006","2294-3307","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","475","1.7","Q2","1.57","92.86" +"Journal of Language and Politics","1569-2159","1569-9862","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","688","1.7","('N/A', 'Q1')","1.55","8.06" +"AMERICAN JOURNAL OF MATHEMATICS","0002-9327","1080-6377","MATHEMATICS","('SCIE',)","6,072","1.7","Q1","1.52","0.00" +"Current Issues in Language Planning","1466-4208","1747-7506","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","614","1.7","('Q2', 'N/A', 'Q1')","1.52","32.56" +"GEOMETRY & TOPOLOGY","1465-3060","1364-0380","MATHEMATICS","('SCIE',)","2,130","1.7","Q1","1.52","33.52" +"JOURNAL OF FUNCTIONAL ANALYSIS","0022-1236","1096-0783","MATHEMATICS","('SCIE',)","13,014","1.7","Q1","1.49","30.85" +"COMMON MARKET LAW REVIEW","0165-0750","1875-8320","('INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI')","1,252","1.7","('Q2', 'Q1')","1.44","0.00" +"Philosophy Ethics and Humanities in Medicine","1747-5341","1747-5341","('ETHICS', 'HISTORY & PHILOSOPHY OF SCIENCE', 'MEDICAL ETHICS', 'PHILOSOPHY')","('SSCI', 'AHCI, SCIE, SSCI', 'SCIE', 'AHCI')","427","1.7","('Q2', 'Q1', 'Q2', 'N/A')","1.35","100.00" +"LATIN AMERICAN POLITICS AND SOCIETY","1531-426X","1548-2456","('AREA STUDIES', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","894","1.7","('Q1', 'Q2', 'Q2')","1.31","36.96" +"Intellectual and Developmental Disabilities","1934-9491","1934-9556","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","1,329","1.7","('Q2', 'Q2')","1.24","0.00" +"Brazilian Journal of Otorhinolaryngology","1808-8694","1808-8686","OTORHINOLARYNGOLOGY","('SCIE',)","2,650","1.7","Q2","1.22","97.51" +"Foundations and Trends in Signal Processing","1932-8346","1932-8354","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","690","1.7","Q3","1.16","50.00" +"International Journal of Educational Research and Innovation","2386-4303","2386-4303","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","242","1.7","Q2","1.15","99.07" +"Journal of Deaf Studies and Deaf Education","1081-4159","1465-7325","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","1,857","1.7","('Q2', 'Q2')","1.14","20.59" +"URBAN EDUCATION","0042-0859","1552-8340","('EDUCATION & EDUCATIONAL RESEARCH', 'URBAN STUDIES')","('SSCI', 'SSCI')","3,055","1.7","('Q2', 'Q3')","1.12","4.95" +"Canadian Journal of Nursing Research","0844-5621","1705-7051","NURSING","('ESCI',)","815","1.7","Q2","1.05","39.86" +"Journal of Wound Ostomy and Continence Nursing","1071-5754","1528-3976","NURSING","('SCIE', 'SSCI')","2,117","1.7","Q2","1.05","13.13" +"New Perspectives on Turkey","0896-6346","1305-3299","('AREA STUDIES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","333","1.7","('Q1', 'Q2')","1.05","50.00" +"Journal of Gender-Based Violence","2398-6808","2398-6816","('CRIMINOLOGY & PENOLOGY', 'WOMENS STUDIES')","('ESCI', 'ESCI')","327","1.7","('Q2', 'Q2')","1.04","17.24" +"International Journal of Transitional Justice","1752-7716","1752-7724","('INTERNATIONAL RELATIONS', 'LAW', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","970","1.7","('Q2', 'Q1', 'Q2')","1.03","31.18" +"Iranian Journal of Language Teaching Research","2322-1291","2322-1291","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","272","1.7","Q2","1.03","0.00" +"Zoological Letters","2056-306X","2056-306X","ZOOLOGY","('SCIE',)","478","1.7","Q2","1.03","100.00" +"NUMERICAL ALGORITHMS","1017-1398","1572-9265","MATHEMATICS, APPLIED","('SCIE',)","4,602","1.7","Q2","1.02","17.60" +"SOCIAL POLITICS","1072-4745","1468-2893","('SOCIAL ISSUES', 'WOMENS STUDIES')","('SSCI', 'SSCI')","1,486","1.7","('Q2', 'Q2')","1.02","29.83" +"International Sport Coaching Journal","2328-918X","2328-9198","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","777","1.7","Q2","1.00","0.00" +"Palaeoworld","1871-174X","1875-5887","PALEONTOLOGY","('SCIE',)","1,128","1.7","Q2","1.00","5.99" +"ZEITSCHRIFT FUR ANGEWANDTE MATHEMATIK UND PHYSIK","0044-2275","1420-9039","MATHEMATICS, APPLIED","('SCIE',)","4,868","1.7","Q2","1.00","10.50" +"Journal of Research on Educational Effectiveness","1934-5747","1934-5739","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,210","1.7","Q2","0.99","25.19" +"POLITICAL QUARTERLY","0032-3179","1467-923X","POLITICAL SCIENCE","('SSCI',)","1,590","1.7","Q2","0.99","40.09" +"Foreign Policy Analysis","1743-8586","1743-8594","INTERNATIONAL RELATIONS","('SSCI',)","1,070","1.7","Q2","0.98","22.56" +"JOURNAL OF ENVIRONMENTAL EDUCATION","0095-8964","1940-1892","('EDUCATION & EDUCATIONAL RESEARCH', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","1,974","1.7","('Q2', 'Q3')","0.98","17.11" +"Higher Education Policy","0952-8733","1740-3863","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,206","1.7","Q2","0.97","0.65" +"Journal of Mediterranean Archaeology","0952-7648","","ARCHAEOLOGY","('AHCI',)","327","1.7","","0.97","0.00" +"SIGNS","0097-9740","1545-6943","WOMENS STUDIES","('SSCI',)","5,291","1.7","Q2","0.97","1.79" +"Societies","","2075-4698","SOCIOLOGY","('ESCI',)","1,718","1.7","Q2","0.97","99.83" +"Education Finance and Policy","1557-3060","1557-3079","('ECONOMICS', 'EDUCATION & EDUCATIONAL RESEARCH')","('SSCI', 'SSCI')","734","1.7","('Q2', 'Q2')","0.96","2.04" +"HEALTH CARE MANAGEMENT REVIEW","0361-6274","1550-5030","HEALTH POLICY & SERVICES","('SSCI',)","1,426","1.7","Q3","0.96","9.57" +"JOURNAL OF EMOTIONAL AND BEHAVIORAL DISORDERS","1063-4266","1538-4799","('EDUCATION, SPECIAL', 'PSYCHOLOGY, EDUCATIONAL', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","1,088","1.7","('Q2', 'Q3', 'Q2')","0.96","8.96" +"American Journal of Biological Anthropology","2692-7691","2692-7691","('ANTHROPOLOGY', 'EVOLUTIONARY BIOLOGY')","('SSCI', 'SCIE')","431","1.7","('Q1', 'Q4')","0.95","35.76" +"Journal of Global Security Studies","2057-3170","2057-3189","INTERNATIONAL RELATIONS","('ESCI',)","672","1.7","Q2","0.94","23.46" +"Social Sciences-Basel","","2076-0760","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","4,364","1.7","Q2","0.94","99.88" +"Island Studies Journal","","1715-2593","('GEOGRAPHY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","646","1.7","('Q2', 'Q2')","0.93","95.16" +"SIAM JOURNAL ON APPLIED DYNAMICAL SYSTEMS","1536-0040","","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","2,690","1.7","('Q2', 'Q2')","0.93","1.12" +"ADVANCES IN COMPUTATIONAL MATHEMATICS","1019-7168","1572-9044","MATHEMATICS, APPLIED","('SCIE',)","2,633","1.7","Q2","0.92","31.82" +"Education and Treatment of Children","0748-8491","1934-8924","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","993","1.7","('Q2', 'Q2')","0.92","2.82" +"FAMILY RELATIONS","0197-6664","1741-3729","('FAMILY STUDIES', 'SOCIAL WORK')","('SSCI', 'SSCI')","3,774","1.7","('Q2', 'Q1')","0.91","24.60" +"Journal of Ayurveda and Integrative Medicine","0975-9476","0976-2809","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","1,572","1.7","Q3","0.91","98.88" +"Journal of Comparative Physiology B-Biochemical Systems and Environmental Physiology","0174-1578","1432-136X","('PHYSIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","3,772","1.7","('Q4', 'Q2')","0.91","23.81" +"Noise Mapping","","2084-879X","ACOUSTICS","('ESCI',)","234","1.7","Q2","0.91","98.21" +"ADAPTED PHYSICAL ACTIVITY QUARTERLY","0736-5829","1543-2777","('REHABILITATION', 'SPORT SCIENCES')","('SCIE', 'SCIE')","1,352","1.7","('Q2', 'Q3')","0.90","3.33" +"BRITISH JOURNAL OF EDUCATIONAL STUDIES","0007-1005","1467-8527","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,377","1.7","Q2","0.90","53.68" +"Community College Review","0091-5521","1940-2325","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","653","1.7","Q2","0.90","5.63" +"Discourse-Studies in the Cultural Politics of Education","0159-6306","1469-3739","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,002","1.7","Q2","0.90","26.56" +"INTERNATIONAL JOURNAL OF COMPUTER MATHEMATICS","0020-7160","1029-0265","MATHEMATICS, APPLIED","('SCIE',)","2,914","1.7","Q2","0.90","3.58" +"SYSTEM DYNAMICS REVIEW","0883-7066","1099-1727","('MANAGEMENT', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","1,460","1.7","('Q3', 'Q2')","0.90","45.16" +"CONFLICT MANAGEMENT AND PEACE SCIENCE","0738-8942","1549-9219","INTERNATIONAL RELATIONS","('SSCI',)","1,461","1.7","Q2","0.89","20.56" +"Italian Political Science Review-Rivista Italiana di Scienza Politica","0048-8402","2057-4908","POLITICAL SCIENCE","('ESCI',)","242","1.7","Q2","0.89","71.05" +"CLINICAL OTOLARYNGOLOGY","1749-4478","1749-4486","OTORHINOLARYNGOLOGY","('SCIE',)","4,312","1.7","Q2","0.87","18.05" +"INDIAN PEDIATRICS","0019-6061","0974-7559","PEDIATRICS","('SCIE',)","3,635","1.7","Q2","0.87","2.20" +"JOURNAL OF CHILD LANGUAGE","0305-0009","1469-7602","('LINGUISTICS', 'PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI', 'SSCI')","3,519","1.7","('Q1', 'Q3', 'Q3')","0.87","51.79" +"Regional and Federal Studies","1359-7566","1743-9434","POLITICAL SCIENCE","('ESCI',)","856","1.7","Q2","0.87","36.43" +"Global Society","1360-0826","1469-798X","INTERNATIONAL RELATIONS","('ESCI',)","688","1.7","Q2","0.86","50.00" +"Veterinary Medicine-Research and Reports","","2230-2034","VETERINARY SCIENCES","('ESCI',)","566","1.7","Q2","0.86","94.68" +"African Security","1939-2206","1939-2214","POLITICAL SCIENCE","('ESCI',)","235","1.7","Q2","0.85","30.61" +"ANTHROZOOS","0892-7936","1753-0377","('SOCIOLOGY', 'VETERINARY SCIENCES')","('SSCI', 'SCIE')","2,358","1.7","('Q2', 'Q2')","0.85","26.26" +"MOTIVATION AND EMOTION","0146-7239","1573-6644","('PSYCHOLOGY, EXPERIMENTAL', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI')","5,527","1.7","('Q3', 'Q3')","0.85","32.09" +"SURGERY TODAY","0941-1291","1436-2813","SURGERY","('SCIE',)","5,806","1.7","Q2","0.85","8.99" +"CANADIAN PUBLIC POLICY-ANALYSE DE POLITIQUES","0317-0861","1911-9917","('ECONOMICS', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","862","1.7","('Q2', 'Q3')","0.84","7.14" +"Foundations of Data Science","","2639-8001","('MATHEMATICS, APPLIED', 'STATISTICS & PROBABILITY')","('ESCI', 'ESCI')","174","1.7","('Q2', 'Q1')","0.84","96.97" +"ARTHROPOD STRUCTURE & DEVELOPMENT","1467-8039","1873-5495","ENTOMOLOGY","('SCIE',)","1,574","1.7","Q2","0.83","22.22" +"Bilingual Research Journal","1523-5882","1523-5890","LINGUISTICS","('ESCI',)","895","1.7","Q1","0.83","4.62" +"Crime Media Culture","1741-6590","1741-6604","('CRIMINOLOGY & PENOLOGY', 'SOCIOLOGY')","('SSCI', 'SSCI')","718","1.7","('Q2', 'Q2')","0.83","41.67" +"CURRENT EYE RESEARCH","0271-3683","1460-2202","OPHTHALMOLOGY","('SCIE',)","6,341","1.7","Q3","0.83","13.02" +"Journal of Enabling Technologies","2398-6263","2398-6263","REHABILITATION","('ESCI',)","183","1.7","Q2","0.83","10.20" +"Journal of Patient Safety","1549-8417","1549-8425","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","2,074","1.7","('Q3', 'Q3')","0.83","17.42" +"JOURNAL OF PERINATAL MEDICINE","0300-5577","1619-3997","('OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","3,452","1.7","('Q3', 'Q2')","0.83","14.11" +"RESEARCH ON SOCIAL WORK PRACTICE","1049-7315","1552-7581","SOCIAL WORK","('SSCI',)","2,696","1.7","Q1","0.83","13.49" +"European Journal of Dental Education","1396-5883","1600-0579","('DENTISTRY, ORAL SURGERY & MEDICINE', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('SCIE', 'SCIE')","2,314","1.7","('Q3', 'Q2')","0.82","35.02" +"Japan Journal of Nursing Science","1742-7932","1742-7924","NURSING","('SCIE', 'SSCI')","1,019","1.7","Q2","0.82","15.15" +"JOURNAL OF MORAL EDUCATION","0305-7240","1465-3877","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,321","1.7","Q2","0.82","22.22" +"PALAEONTOLOGIA ELECTRONICA","1935-3952","1094-8074","PALEONTOLOGY","('SCIE',)","3,357","1.7","Q2","0.82","96.00" +"Research and Practice in Intellectual and Developmental Disabilities","2329-7018","2329-7026","REHABILITATION","('ESCI',)","134","1.7","Q2","0.82","27.59" +"Clinical Nursing Research","1054-7738","1552-3799","NURSING","('SCIE', 'SSCI')","1,571","1.7","Q2","0.81","5.46" +"Current Research in Parasitology & Vector-Borne Diseases","2667-114X","2667-114X","PARASITOLOGY","('ESCI',)","262","1.7","Q3","0.81","72.49" +"International Relations of the Asia-Pacific","1470-482X","1470-4838","INTERNATIONAL RELATIONS","('SSCI',)","489","1.7","Q2","0.81","15.25" +"INTERNATIONAL STATISTICAL REVIEW","0306-7734","1751-5823","STATISTICS & PROBABILITY","('SCIE',)","2,732","1.7","Q1","0.81","23.68" +"Journal of Media Psychology-Theories Methods and Applications","1864-1105","2151-2388","('COMMUNICATION', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","735","1.7","('Q2', 'Q2')","0.81","11.11" +"State Politics & Policy Quarterly","1532-4400","1946-1607","POLITICAL SCIENCE","('SSCI',)","758","1.7","Q2","0.81","53.85" +"BMC Ophthalmology","","1471-2415","OPHTHALMOLOGY","('SCIE',)","6,432","1.7","Q3","0.80","99.73" +"Journal of Cardiovascular Nursing","0889-4655","1550-5049","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'NURSING')","('SCIE', 'SCIE, SSCI')","2,415","1.7","('Q3', 'Q2')","0.80","7.59" +"Journal of Child & Adolescent Trauma","1936-1521","1936-153X","('FAMILY STUDIES', 'SOCIAL WORK')","('ESCI', 'ESCI')","1,161","1.7","('Q2', 'Q1')","0.80","23.02" +"Scandinavian Journal of Disability Research","1501-7419","1745-3011","REHABILITATION","('ESCI',)","736","1.7","Q2","0.80","98.85" +"World Medical & Health Policy","1948-4682","1948-4682","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","559","1.7","Q3","0.80","26.09" +"ECONOMIC AND INDUSTRIAL DEMOCRACY","0143-831X","1461-7099","INDUSTRIAL RELATIONS & LABOR","('SSCI',)","1,266","1.7","Q2","0.79","36.32" +"JOURNAL OF APPLIED ENTOMOLOGY","0931-2048","1439-0418","ENTOMOLOGY","('SCIE',)","4,009","1.7","Q2","0.79","23.72" +"Qualitative Social Work","1473-3250","1741-3117","SOCIAL WORK","('SSCI',)","2,257","1.7","Q1","0.79","41.18" +"Saudi Dental Journal","1013-9052","1658-3558","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","1,559","1.7","Q3","0.79","98.34" +"ACTA PETROLOGICA SINICA","1000-0569","2095-8927","GEOLOGY","('SCIE',)","9,059","1.7","Q2","0.78","45.48" +"ADVANCES IN PHYSIOLOGY EDUCATION","1043-4046","1522-1229","('EDUCATION, SCIENTIFIC DISCIPLINES', 'PHYSIOLOGY')","('SCIE', 'SCIE')","2,971","1.7","('Q2', 'Q4')","0.78","84.67" +"GEOGRAFISKA ANNALER SERIES B-HUMAN GEOGRAPHY","0435-3684","1468-0467","GEOGRAPHY","('SSCI',)","1,335","1.7","Q2","0.78","53.54" +"INTERNATIONAL JOURNAL OF ORAL & MAXILLOFACIAL IMPLANTS","0882-2786","1942-4434","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","8,830","1.7","Q3","0.78","0.00" +"TROPICAL ANIMAL HEALTH AND PRODUCTION","0049-4747","1573-7438","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","7,095","1.7","('Q2', 'Q2')","0.78","9.63" +"Advances in Skin & Wound Care","1527-7941","1538-8654","('DERMATOLOGY', 'NURSING', 'SURGERY')","('SCIE', 'SCIE, SSCI', 'SCIE')","2,160","1.7","('Q3', 'Q2', 'Q2')","0.77","8.78" +"Emergency Medicine Australasia","1742-6731","1742-6723","EMERGENCY MEDICINE","('SCIE',)","2,477","1.7","Q2","0.77","34.49" +"Imaging Science in Dentistry","2233-7822","2233-7830","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","970","1.7","Q3","0.77","100.00" +"International Journal for Educational and Vocational Guidance","1873-0388","1573-1782","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","659","1.7","('Q2', 'Q3')","0.77","30.43" +"Applied Developmental Science","1088-8691","1532-480X","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","1,683","1.7","Q3","0.76","14.29" +"Clinical and Experimental Dental Research","2057-4347","2057-4347","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","1,244","1.7","Q3","0.76","70.94" +"Journal of Police and Criminal Psychology","0882-0783","1936-6469","CRIMINOLOGY & PENOLOGY","('ESCI',)","944","1.7","Q2","0.76","26.27" +"Journal of Pediatric and Adolescent Gynecology","1083-3188","1873-4332","('OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","2,895","1.7","('Q3', 'Q2')","0.75","6.27" +"Pediatric Health Medicine and Therapeutics","","1179-9927","PEDIATRICS","('ESCI',)","571","1.7","Q2","0.75","99.22" +"Social Work in Public Health","1937-1918","1937-190X","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL WORK')","('SSCI', 'SSCI')","1,146","1.7","('Q3', 'Q1')","0.75","5.56" +"Teaching & Learning Inquiry-The ISSOTL Journal","2167-4779","2167-4787","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","404","1.7","Q2","0.75","91.59" +"BIOETHICS","0269-9702","1467-8519","('ETHICS', 'MEDICAL ETHICS', 'SOCIAL ISSUES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SCIE', 'SSCI', 'SSCI')","2,487","1.7","('Q2', 'Q2', 'Q2', 'Q3')","0.74","46.77" +"Critical Sociology","0896-9205","1569-1632","SOCIOLOGY","('SSCI',)","2,037","1.7","Q2","0.74","26.36" +"REVIEW OF PALAEOBOTANY AND PALYNOLOGY","0034-6667","1879-0615","('PALEONTOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","5,697","1.7","('Q2', 'Q2')","0.74","21.48" +"ANIMAL SCIENCE JOURNAL","1344-3941","1740-0929","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","3,674","1.7","Q2","0.73","11.19" +"CANADIAN JOURNAL OF FOREST RESEARCH","0045-5067","1208-6037","FORESTRY","('SCIE',)","10,372","1.7","Q2","0.73","20.98" +"DEVIANT BEHAVIOR","0163-9625","1521-0456","('CRIMINOLOGY & PENOLOGY', 'PSYCHOLOGY, SOCIAL', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","2,425","1.7","('Q2', 'Q3', 'Q2')","0.73","13.49" +"Measurement in Physical Education and Exercise Science","1091-367X","1532-7841","('EDUCATION & EDUCATIONAL RESEARCH', 'HOSPITALITY, LEISURE, SPORT & TOURISM', 'SPORT SCIENCES')","('SSCI', 'SSCI', 'SCIE')","1,033","1.7","('Q2', 'Q3', 'Q3')","0.73","18.37" +"Operative Neurosurgery","2332-4252","2332-4260","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","2,982","1.7","('Q3', 'Q2')","0.73","5.16" +"Practical Laboratory Medicine","","2352-5517","MEDICAL LABORATORY TECHNOLOGY","('ESCI',)","483","1.7","Q3","0.73","99.32" +"Crisis-The Journal of Crisis Intervention and Suicide Prevention","0227-5910","2151-2396","('PSYCHIATRY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","2,264","1.7","('Q3', 'Q2')","0.72","16.34" +"Regional Studies Regional Science","2168-1376","2168-1376","GEOGRAPHY","('ESCI',)","721","1.7","Q2","0.72","98.67" +"WILDLIFE BIOLOGY","0909-6396","1903-220X","('ECOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","1,795","1.7","('Q3', 'Q2')","0.72","95.28" +"Astin Bulletin-The Journal of the International Actuarial Association","0515-0361","1783-1350","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","957","1.7","('Q2', 'Q2', 'Q2', 'Q1')","0.71","35.42" +"JOURNAL OF WOOD CHEMISTRY AND TECHNOLOGY","0277-3813","1532-2319","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","1,336","1.7","Q2","0.71","3.03" +"SCHOOL PSYCHOLOGY INTERNATIONAL","0143-0343","1461-7374","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","1,805","1.7","Q3","0.71","14.29" +"Adolescent Health Medicine and Therapeutics","1179-318X","1179-318X","PEDIATRICS","('ESCI',)","706","1.7","Q2","0.70","97.30" +"BRITISH JOURNAL OF ORAL & MAXILLOFACIAL SURGERY","0266-4356","1532-1940","('DENTISTRY, ORAL SURGERY & MEDICINE', 'SURGERY')","('SCIE', 'SCIE')","5,375","1.7","('Q3', 'Q2')","0.70","8.67" +"JOURNAL OF SMALL ANIMAL PRACTICE","0022-4510","1748-5827","VETERINARY SCIENCES","('SCIE',)","4,764","1.7","Q2","0.70","25.32" +"Veterinary World","0972-8988","2231-0916","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('ESCI', 'ESCI')","5,590","1.7","('Q2', 'Q2')","0.70","96.96" +"AEM Education and Training","","2472-5390","('EDUCATION, SCIENTIFIC DISCIPLINES', 'EMERGENCY MEDICINE')","('ESCI', 'ESCI')","995","1.7","('Q2', 'Q2')","0.69","11.14" +"Brazilian Journal of Anesthesiology","0104-0014","2352-2291","ANESTHESIOLOGY","('SCIE',)","467","1.7","Q2","0.69","97.83" +"CLINICS IN LABORATORY MEDICINE","0272-2712","1557-9832","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","1,751","1.7","Q3","0.69","2.27" +"Geo-Geography and Environment","2054-4049","2054-4049","GEOGRAPHY","('ESCI',)","222","1.7","Q2","0.69","76.00" +"Journal of Astronomical Telescopes Instruments and Systems","2329-4124","2329-4221","('ENGINEERING, AEROSPACE', 'INSTRUMENTS & INSTRUMENTATION', 'OPTICS')","('SCIE', 'SCIE', 'SCIE')","1,641","1.7","('Q2', 'Q3', 'Q3')","0.69","43.59" +"NUCLEAR PHYSICS A","0375-9474","1873-1554","PHYSICS, NUCLEAR","('SCIE',)","15,289","1.7","Q2","0.69","17.19" +"VISUAL COGNITION","1350-6285","1464-0716","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","2,229","1.7","Q3","0.69","24.82" +"Clinical Medicine Insights-Pediatrics","1179-5565","1179-5565","PEDIATRICS","('ESCI',)","300","1.7","Q2","0.68","90.24" +"Forest and Society","2549-4724","2549-4333","FORESTRY","('ESCI',)","276","1.7","Q2","0.68","99.06" +"International Journal of Spine Surgery","","2211-4599","SURGERY","('ESCI',)","1,604","1.7","Q2","0.68","97.30" +"JOURNAL OF ENDOVASCULAR THERAPY","1526-6028","1545-1550","('PERIPHERAL VASCULAR DISEASE', 'SURGERY')","('SCIE', 'SCIE')","3,982","1.7","('Q3', 'Q2')","0.68","14.29" +"Simulation in Healthcare-Journal of the Society for Simulation in Healthcare","1559-2332","1559-713X","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","2,152","1.7","Q3","0.68","8.50" +"Clinical and Experimental Optometry","0816-4622","1444-0938","OPHTHALMOLOGY","('SCIE',)","3,117","1.7","Q3","0.67","12.19" +"EUROPEAN SURGICAL RESEARCH","0014-312X","1421-9921","SURGERY","('SCIE',)","1,256","1.7","Q2","0.67","50.91" +"Journal of Maternal-Fetal & Neonatal Medicine","1476-7058","1476-4954","OBSTETRICS & GYNECOLOGY","('SCIE',)","12,912","1.7","Q3","0.67","22.39" +"Regional Science Policy and Practice","1757-7802","1757-7802","GEOGRAPHY","('ESCI',)","885","1.7","Q2","0.67","24.30" +"IACR Transactions on Symmetric Cryptology","","2519-173X","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('ESCI', 'ESCI')","720","1.7","('Q3', 'Q2')","0.66","97.69" +"Journal of Gynecology Obstetrics and Human Reproduction","2468-7847","1773-0430","OBSTETRICS & GYNECOLOGY","('SCIE',)","1,812","1.7","Q3","0.66","34.29" +"JOURNAL OF PROPULSION AND POWER","0748-4658","1533-3876","ENGINEERING, AEROSPACE","('SCIE',)","7,587","1.7","Q2","0.66","6.32" +"MINIMALLY INVASIVE THERAPY & ALLIED TECHNOLOGIES","1364-5706","1365-2931","SURGERY","('SCIE',)","1,318","1.7","Q2","0.66","8.02" +"Orthopedic Research and Reviews","","1179-1462","ORTHOPEDICS","('ESCI',)","429","1.7","Q2","0.66","97.03" +"QUATERNARY RESEARCH","0033-5894","1096-0287","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","6,324","1.7","('Q3', 'Q3')","0.66","37.35" +"RUSSIAN JOURNAL OF MATHEMATICAL PHYSICS","1061-9208","1555-6638","PHYSICS, MATHEMATICAL","('SCIE',)","659","1.7","Q2","0.66","0.00" +"Cost Effectiveness and Resource Allocation","1478-7547","1478-7547","HEALTH POLICY & SERVICES","('SSCI',)","1,022","1.7","Q3","0.65","100.00" +"HEALTH & SOCIAL WORK","0360-7283","1545-6854","SOCIAL WORK","('SSCI',)","1,115","1.7","Q1","0.65","1.27" +"JAVNOST-THE PUBLIC","1318-3222","1854-8377","COMMUNICATION","('SSCI',)","679","1.7","Q2","0.65","36.96" +"NEUROREHABILITATION","1053-8135","1878-6448","('CLINICAL NEUROLOGY', 'REHABILITATION')","('SCIE', 'SCIE, SSCI')","3,391","1.7","('Q3', 'Q2')","0.65","10.65" +"OPHTHALMIC EPIDEMIOLOGY","0928-6586","1744-5086","OPHTHALMOLOGY","('SCIE',)","2,352","1.7","Q3","0.65","16.67" +"AQUATIC ECOLOGY","1386-2588","1573-5125","('ECOLOGY', 'LIMNOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,292","1.7","('Q3', 'Q2', 'Q2')","0.64","11.76" +"BJA Education","2058-5349","2058-5357","ANESTHESIOLOGY","('ESCI',)","2,049","1.7","Q2","0.64","72.07" +"BMC Urology","1471-2490","1471-2490","UROLOGY & NEPHROLOGY","('SCIE',)","2,856","1.7","Q3","0.64","99.83" +"COMPLEXITY","1076-2787","1099-0526","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MULTIDISCIPLINARY SCIENCES')","('SCIE', 'SCIE')","9,886","1.7","('Q2', 'Q2')","0.64","99.61" +"SILVA FENNICA","0037-5330","2242-4075","FORESTRY","('SCIE',)","1,926","1.7","Q2","0.64","98.04" +"Advances in Public Health","2356-6868","2314-7784","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","421","1.7","Q3","0.63","97.50" +"ANIMAL BIOTECHNOLOGY","1049-5398","1532-2378","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE')","2,063","1.7","('Q2', 'Q4')","0.63","8.08" +"Asian Pacific Journal of Tropical Biomedicine","2221-1691","2588-9222","TROPICAL MEDICINE","('SCIE',)","4,392","1.7","Q3","0.63","91.91" +"Cambridge Review of International Affairs","0955-7571","1474-449X","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,201","1.7","('Q2', 'Q2')","0.63","26.23" +"CANADIAN JOURNAL OF PHYSIOLOGY AND PHARMACOLOGY","0008-4212","1205-7541","('PHARMACOLOGY & PHARMACY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","4,773","1.7","('Q3', 'Q4')","0.63","7.52" +"European Journal of Psychology Open","2673-8627","2673-8627","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","46","1.7","Q2","0.63","97.73" +"EXPERIMENTAL ECONOMICS","1386-4157","1573-6938","ECONOMICS","('SSCI',)","2,534","1.7","Q2","0.63","55.65" +"Health Policy OPEN","","2590-2296","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('ESCI', 'ESCI')","178","1.7","('Q3', 'Q3')","0.63","86.59" +"INQUIRY-THE JOURNAL OF HEALTH CARE ORGANIZATION PROVISION AND FINANCING","0046-9580","1945-7243","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","1,805","1.7","('Q3', 'Q3')","0.63","91.50" +"JOURNAL OF FISH BIOLOGY","0022-1112","1095-8649","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","15,468","1.7","('Q2', 'Q2')","0.63","22.48" +"Journal of Pathology and Translational Medicine","2383-7837","2383-7845","PATHOLOGY","('ESCI',)","1,011","1.7","Q3","0.63","100.00" +"JTCVS Techniques","2666-2507","2666-2507","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'SURGERY')","('ESCI', 'ESCI')","629","1.7","('Q3', 'Q2')","0.63","92.29" +"PEDIATRIC ANESTHESIA","1155-5645","1460-9592","('ANESTHESIOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","5,356","1.7","('Q2', 'Q2')","0.63","21.23" +"Leadership in Health Services","1751-1879","1751-1887","HEALTH POLICY & SERVICES","('ESCI',)","679","1.7","Q3","0.62","19.51" +"PSYCHOLOGICAL REPORTS","0033-2941","1558-691X","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","8,090","1.7","Q2","0.62","13.83" +"PUBLIC HEALTH NURSING","0737-1209","1525-1446","('NURSING', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE, SSCI', 'SCIE, SSCI')","2,185","1.7","('Q2', 'Q3')","0.62","16.31" +"Quaternary Geochronology","1871-1014","1878-0350","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,967","1.7","('Q3', 'Q3')","0.62","26.85" +"Review of Economics and Political Science","2356-9980","2631-3561","('ECONOMICS', 'POLITICAL SCIENCE')","('ESCI', 'ESCI')","183","1.7","('Q2', 'Q2')","0.62","97.56" +"Environmental Hazards-Human and Policy Dimensions","1747-7891","1878-0059","ENVIRONMENTAL STUDIES","('SSCI',)","1,117","1.7","Q3","0.61","21.13" +"Information Retrieval Journal","1386-4564","1573-7659","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","961","1.7","Q3","0.61","33.33" +"International Journal of Ethics and Systems","2514-9369","2514-9377","ECONOMICS","('ESCI',)","469","1.7","Q2","0.61","0.00" +"JBJS Reviews","2329-9185","2329-9185","SURGERY","('ESCI',)","2,069","1.7","Q2","0.61","3.82" +"Media War and Conflict","1750-6352","1750-6360","COMMUNICATION","('ESCI',)","490","1.7","Q2","0.61","27.85" +"Nepal Journal of Epidemiology","2091-0800","2091-0800","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","233","1.7","Q3","0.61","100.00" +"NEUROPSYCHOLOGICAL REHABILITATION","0960-2011","1464-0694","('NEUROSCIENCES', 'PSYCHOLOGY')","('SCIE', 'SCIE')","2,909","1.7","('Q4', 'Q3')","0.61","29.09" +"Peace Economics Peace Science and Public Policy","1079-2457","1554-8597","POLITICAL SCIENCE","('ESCI',)","274","1.7","Q2","0.61","17.65" +"Psicologia Educativa","1135-755X","2174-0526","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","374","1.7","('Q2', 'Q3', 'Q2')","0.61","98.44" +"Annals of Forest Research","1844-8135","2065-2445","FORESTRY","('SCIE',)","424","1.7","Q2","0.60","93.22" +"Freshwater Science","2161-9549","2161-9565","('ECOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","2,115","1.7","('Q3', 'Q2')","0.60","13.49" +"JOURNAL OF WOMEN & AGING","0895-2841","1540-7322","('GERONTOLOGY', 'WOMENS STUDIES')","('SSCI', 'SSCI')","882","1.7","('Q3', 'Q2')","0.60","10.92" +"NONLINEAR PROCESSES IN GEOPHYSICS","1023-5809","1607-7946","('GEOSCIENCES, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,063","1.7","('Q3', 'Q2', 'Q4', 'Q3')","0.60","100.00" +"Attention Perception & Psychophysics","1943-3921","1943-393X","('PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI')","5,594","1.7","('Q3', 'Q3')","0.59","41.72" +"CONTEMPORARY ECONOMIC POLICY","1074-3529","1465-7287","('ECONOMICS', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","1,178","1.7","('Q2', 'Q3')","0.59","17.31" +"Facts Views and Vision in ObGyn","2032-0418","2032-0418","OBSTETRICS & GYNECOLOGY","('ESCI',)","825","1.7","Q3","0.59","2.08" +"International Journal of Bio-Inspired Computation","1758-0366","1758-0374","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","1,006","1.7","('Q3', 'Q2')","0.59","0.00" +"Journal of X-Ray Science and Technology","0895-3996","1095-9114","('INSTRUMENTS & INSTRUMENTATION', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","1,043","1.7","('Q3', 'Q3', 'Q3')","0.59","5.91" +"Linguistica Antverpiensia New Series-Themes in Translation Studies","2295-5739","2295-5739","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","241","1.7","('N/A', 'Q1')","0.59","0.00" +"APPLIED OPTICS","1559-128X","2155-3165","OPTICS","('SCIE',)","49,592","1.7","Q3","0.58","4.93" +"Emergency Radiology","1070-3004","1438-1435","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,829","1.7","Q3","0.58","11.92" +"EUROPEAN JOURNAL OF PLANT PATHOLOGY","0929-1873","1573-8469","('AGRONOMY', 'HORTICULTURE', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","8,079","1.7","('Q2', 'Q2', 'Q2')","0.58","17.08" +"Issues in Mental Health Nursing","0161-2840","1096-4673","('NURSING', 'PSYCHIATRY')","('SCIE, SSCI', 'SCIE, SSCI')","3,267","1.7","('Q2', 'Q3')","0.58","24.55" +"Journal of Radiation Research and Applied Sciences","1687-8507","1687-8507","MULTIDISCIPLINARY SCIENCES","('SCIE',)","2,319","1.7","Q2","0.58","98.87" +"GMS Hygiene and Infection Control","2196-5226","2196-5226","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","482","1.7","Q3","0.57","0.00" +"Innovative Surgical Sciences","2364-7485","2364-7485","SURGERY","('ESCI',)","270","1.7","Q2","0.57","94.64" +"International Journal of Computer Games Technology","1687-7047","1687-7055","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","245","1.7","Q3","0.57","100.00" +"International Journal of Nephrology","2090-214X","2090-2158","UROLOGY & NEPHROLOGY","('ESCI',)","917","1.7","Q3","0.57","100.00" +"Journal of Empirical Research on Human Research Ethics","1556-2646","1556-2654","('ETHICS', 'MEDICAL ETHICS')","('SSCI', 'SCIE')","1,085","1.7","('Q2', 'Q2')","0.57","18.42" +"Journal of Health Organization and Management","1477-7266","1758-7247","HEALTH POLICY & SERVICES","('SSCI',)","1,400","1.7","Q3","0.57","26.26" +"Pharmacogenetics and Genomics","1744-6872","1744-6880","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","2,393","1.7","('Q4', 'Q3', 'Q3')","0.57","8.79" +"Ships and Offshore Structures","1744-5302","1754-212X","ENGINEERING, MARINE","('SCIE',)","2,381","1.7","Q2","0.57","10.08" +"CANADIAN JOURNAL ON AGING-REVUE CANADIENNE DU VIEILLISSEMENT","0714-9808","1710-1107","GERONTOLOGY","('SSCI',)","1,618","1.7","Q3","0.56","43.41" +"CHILD & YOUTH CARE FORUM","1053-1890","1573-3319","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","1,433","1.7","Q3","0.56","24.61" +"JOURNAL OF BEHAVIOR THERAPY AND EXPERIMENTAL PSYCHIATRY","0005-7916","1873-7943","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","4,197","1.7","('Q3', 'Q3')","0.56","31.92" +"Journal of Behavioral and Cognitive Therapy","2589-9791","2589-9791","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('ESCI', 'ESCI')","174","1.7","('Q3', 'Q3')","0.56","21.33" +"Journal of Computer Languages","2590-1184","2665-9182","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","278","1.7","Q3","0.56","24.18" +"JOURNAL OF HEALTHCARE MANAGEMENT","1096-9012","1944-7396","HEALTH POLICY & SERVICES","('SSCI',)","730","1.7","Q3","0.56","9.76" +"Journal of Rational-Emotive and Cognitive-Behavior Therapy","0894-9085","1573-6563","PSYCHOLOGY, CLINICAL","('SSCI',)","938","1.7","Q3","0.56","17.81" +"GENETIC EPIDEMIOLOGY","0741-0395","1098-2272","('GENETICS & HEREDITY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","4,262","1.7","('Q3', 'Q3')","0.55","28.97" +"Geosphere","1553-040X","1553-040X","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","3,525","1.7","Q3","0.55","81.09" +"Journal of Economic Methodology","1350-178X","1469-9427","ECONOMICS","('SSCI',)","678","1.7","Q2","0.55","36.99" +"Plant Ecology & Diversity","1755-0874","1755-1668","PLANT SCIENCES","('SCIE',)","1,086","1.7","Q2","0.55","18.18" +"Urban Planning","2183-7635","2183-7635","URBAN STUDIES","('ESCI',)","1,244","1.7","Q3","0.55","100.00" +"VETERINARY OPHTHALMOLOGY","1463-5216","1463-5224","VETERINARY SCIENCES","('SCIE',)","2,441","1.7","Q2","0.55","22.02" +"BIOLOGICAL & PHARMACEUTICAL BULLETIN","0918-6158","1347-5215","PHARMACOLOGY & PHARMACY","('SCIE',)","11,486","1.7","Q3","0.54","98.68" +"ECONOMIC INQUIRY","0095-2583","1465-7295","ECONOMICS","('SSCI',)","3,860","1.7","Q2","0.54","30.70" +"Health Psychology Open","","2055-1029","PSYCHOLOGY, CLINICAL","('ESCI',)","822","1.7","Q3","0.54","90.48" +"On the Horizon","1074-8121","2054-1708","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","653","1.7","Q2","0.54","11.63" +"Oral and Maxillofacial Surgery-Heidelberg","1865-1550","1865-1569","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","1,623","1.7","Q3","0.54","15.23" +"SYNLETT","0936-5214","1437-2096","CHEMISTRY, ORGANIC","('SCIE',)","11,444","1.7","Q3","0.54","2.07" +"IISE Transactions on Occupational Ergonomics & Human Factors","2472-5838","2472-5846","ERGONOMICS","('ESCI',)","397","1.7","Q3","0.53","12.28" +"JOURNAL OF CLINICAL DENSITOMETRY","1094-6950","1559-0747","ENDOCRINOLOGY & METABOLISM","('SCIE',)","2,578","1.7","Q4","0.53","13.68" +"JOURNAL OF REAL ESTATE FINANCE AND ECONOMICS","0895-5638","1573-045X","('BUSINESS, FINANCE', 'ECONOMICS', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI')","2,041","1.7","('Q3', 'Q2', 'Q3')","0.53","21.84" +"MATHEMATICS AND MECHANICS OF SOLIDS","1081-2865","1741-3028","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","2,247","1.7","('Q3', 'Q2', 'Q3')","0.53","11.70" +"Japanese Journal of Sociology","2769-1365","2769-1357","SOCIOLOGY","('ESCI',)","8","1.7","Q2","0.52","35.71" +"JOURNAL OF ECONOMIC EDUCATION","0022-0485","2152-4068","('ECONOMICS', 'EDUCATION & EDUCATIONAL RESEARCH')","('SSCI', 'SSCI')","1,155","1.7","('Q2', 'Q2')","0.52","9.91" +"JOURNAL OF GENETIC PSYCHOLOGY","0022-1325","1940-0896","('PSYCHOLOGY', 'PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI', 'SSCI')","1,437","1.7","('Q3', 'Q3', 'Q2')","0.52","3.20" +"Journal of Labor and Society","2471-4607","2667-3657","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","160","1.7","Q2","0.52","17.54" +"JOURNAL OF URBAN PLANNING AND DEVELOPMENT","0733-9488","1943-5444","('ENGINEERING, CIVIL', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SCIE', 'SSCI', 'SSCI')","2,116","1.7","('Q3', 'Q4', 'Q3')","0.52","2.38" +"Landscape and Ecological Engineering","1860-1871","1860-188X","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","805","1.7","('Q2', 'Q3')","0.52","9.09" +"Self and Identity","1529-8868","1529-8876","PSYCHOLOGY, SOCIAL","('SSCI',)","2,934","1.7","Q3","0.52","13.08" +"SOFTWARE QUALITY JOURNAL","0963-9314","1573-1367","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","846","1.7","Q3","0.52","27.19" +"CLINICAL SUPERVISOR","0732-5223","1545-231X","HEALTH POLICY & SERVICES","('ESCI',)","441","1.7","Q3","0.51","4.17" +"Cogent Food & Agriculture","2331-1932","2331-1932","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","2,762","1.7","Q2","0.51","99.20" +"ENVIRONMENTAL FLUID MECHANICS","1567-7419","1573-1510","('ENVIRONMENTAL SCIENCES', 'MECHANICS', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'OCEANOGRAPHY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","1,743","1.7","('Q4', 'Q3', 'Q4', 'Q3', 'Q3')","0.51","28.74" +"European Journal of Hybrid Imaging","","2510-3636","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","293","1.7","Q3","0.51","100.00" +"JOURNAL OF HYDRAULIC RESEARCH","0022-1686","1814-2079","('ENGINEERING, CIVIL', 'WATER RESOURCES')","('SCIE', 'SCIE')","4,719","1.7","('Q3', 'Q3')","0.51","18.42" +"Journal of Optical Microsystems","","2708-5260","OPTICS","('ESCI',)","70","1.7","Q3","0.51","96.72" +"MULTIDIMENSIONAL SYSTEMS AND SIGNAL PROCESSING","0923-6082","1573-0824","('COMPUTER SCIENCE, THEORY & METHODS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","1,088","1.7","('Q2', 'Q3')","0.51","2.96" +"Particles","","2571-712X","('ASTRONOMY & ASTROPHYSICS', 'PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('ESCI', 'ESCI', 'ESCI')","348","1.7","('Q3', 'Q2', 'Q3')","0.51","97.84" +"SINGAPORE MEDICAL JOURNAL","0037-5675","2737-5935","MEDICINE, GENERAL & INTERNAL","('SCIE',)","4,006","1.7","Q2","0.51","97.27" +"WORK-A Journal of Prevention Assessment & Rehabilitation","1051-9815","1875-9270","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","5,765","1.7","Q3","0.51","11.78" +"Annals of Medicine and Surgery","2049-0801","2049-0801","MEDICINE, GENERAL & INTERNAL","('ESCI',)","6,604","1.7","Q2","0.50","95.39" +"FEW-BODY SYSTEMS","0177-7963","1432-5411","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","1,224","1.7","Q2","0.50","11.19" +"IEEE Embedded Systems Letters","1943-0663","1943-0671","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","541","1.7","('Q3', 'Q3')","0.50","7.27" +"JOURNAL OF CRYSTAL GROWTH","0022-0248","1873-5002","('CRYSTALLOGRAPHY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","21,623","1.7","('Q3', 'Q3', 'Q3')","0.50","16.22" +"Journal of International Development","0954-1748","1099-1328","DEVELOPMENT STUDIES","('SSCI',)","2,617","1.7","Q3","0.50","33.23" +"NEUROLOGICAL RESEARCH","0161-6412","1743-1328","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","4,629","1.7","('Q3', 'Q4')","0.50","5.41" +"Personalized Medicine","1741-0541","1744-828X","PHARMACOLOGY & PHARMACY","('SCIE',)","935","1.7","Q3","0.50","10.61" +"Secularism & Nonreligion","2053-6712","2053-6712","SOCIOLOGY","('ESCI',)","99","1.7","Q2","0.50","100.00" +"TELLUS SERIES A-DYNAMIC METEOROLOGY AND OCEANOGRAPHY","","1600-0870","('METEOROLOGY & ATMOSPHERIC SCIENCES', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","2,713","1.7","('Q4', 'Q3')","0.50","92.59" +"World Mycotoxin Journal","1875-0710","1875-0796","('FOOD SCIENCE & TECHNOLOGY', 'MYCOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,221","1.7","('Q3', 'Q4', 'Q4')","0.50","6.60" +"Annals of Phytomedicine-An International Journal","2393-9885","2278-9839","PHARMACOLOGY & PHARMACY","('ESCI',)","1,085","1.7","Q3","0.49","99.65" +"BIOPHARMACEUTICS & DRUG DISPOSITION","0142-2782","1099-081X","PHARMACOLOGY & PHARMACY","('SCIE',)","1,577","1.7","Q3","0.49","13.40" +"ECONOMIC BOTANY","0013-0001","1874-9364","PLANT SCIENCES","('SCIE',)","3,100","1.7","Q2","0.49","24.66" +"FOOD AND AGRICULTURAL IMMUNOLOGY","0954-0105","1465-3443","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY', 'IMMUNOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,457","1.7","('Q3', 'Q3', 'Q4', 'Q4')","0.49","97.87" +"HERD-Health Environments Research & Design Journal","1937-5867","2167-5112","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","1,612","1.7","Q3","0.49","18.18" +"JOURNAL OF AGRICULTURAL SCIENCE","0021-8596","1469-5146","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","6,046","1.7","Q2","0.49","25.49" +"Journal of Central Banking Theory and Practice","1800-9581","2336-9205","BUSINESS, FINANCE","('ESCI',)","295","1.7","Q3","0.49","100.00" +"JOURNAL OF DOCUMENTATION","0022-0418","1758-7379","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","2,808","1.7","Q2","0.49","17.96" +"JOURNAL OF FLUORINE CHEMISTRY","0022-1139","1873-3328","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","5,615","1.7","('Q3', 'Q3')","0.49","12.96" +"JOURNAL OF MUSCULOSKELETAL & NEURONAL INTERACTIONS","1108-7161","","('NEUROSCIENCES', 'PHYSIOLOGY')","('SCIE', 'SCIE')","2,005","1.7","('Q4', 'Q4')","0.49","0.00" +"Journal of Spectroscopy","2314-4920","2314-4939","('BIOCHEMICAL RESEARCH METHODS', 'SPECTROSCOPY')","('SCIE', 'SCIE')","1,273","1.7","('Q4', 'Q3')","0.49","99.02" +"Progress in Development Studies","1464-9934","1477-027X","DEVELOPMENT STUDIES","('SSCI',)","745","1.7","Q3","0.49","36.00" +"Soil and Water Research","1801-5395","1805-9384","('SOIL SCIENCE', 'WATER RESOURCES')","('SCIE', 'SCIE')","711","1.7","('Q4', 'Q3')","0.49","95.06" +"TELECOMMUNICATION SYSTEMS","1018-4864","1572-9451","TELECOMMUNICATIONS","('SCIE',)","1,798","1.7","Q3","0.49","4.22" +"TOXICOLOGY AND INDUSTRIAL HEALTH","0748-2337","1477-0393","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TOXICOLOGY')","('SCIE', 'SCIE')","2,841","1.7","('Q3', 'Q4')","0.49","7.76" +"Worldwide Hospitality and Tourism Themes","1755-4217","1755-4225","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,018","1.7","Q3","0.49","2.09" +"ACTA AGRICULTURAE SCANDINAVICA SECTION B-SOIL AND PLANT SCIENCE","0906-4710","1651-1913","('AGRONOMY', 'SOIL SCIENCE')","('SCIE', 'SCIE')","2,070","1.7","('Q2', 'Q4')","0.48","58.95" +"AQUATIC GEOCHEMISTRY","1380-6165","1573-1421","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","1,118","1.7","Q3","0.48","37.93" +"BMJ Leader","","2398-631X","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","388","1.7","Q3","0.48","27.60" +"Clinics and Practice","2039-7275","2039-7283","MEDICINE, GENERAL & INTERNAL","('ESCI',)","934","1.7","Q2","0.48","99.44" +"EURASIP Journal on Audio Speech and Music Processing","1687-4722","1687-4722","('ACOUSTICS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","501","1.7","('Q2', 'Q3')","0.48","100.00" +"Genetic Programming and Evolvable Machines","1389-2576","1573-7632","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","713","1.7","('Q3', 'Q2')","0.48","49.06" +"IEEE Transactions on Games","2475-1502","2475-1510","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","481","1.7","('Q3', 'Q3')","0.48","9.76" +"Indian Journal of Psychiatry","0019-5545","1998-3794","PSYCHIATRY","('SCIE', 'SSCI')","4,082","1.7","Q3","0.48","98.55" +"INTERNATIONAL JOURNAL FOR NUMERICAL METHODS IN FLUIDS","0271-2091","1097-0363","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,819","1.7","('Q3', 'Q2', 'Q3', 'Q3')","0.48","19.70" +"INTERNATIONAL JOURNAL OF COMMUNICATION SYSTEMS","1074-5351","1099-1131","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","3,534","1.7","('Q3', 'Q3')","0.48","1.58" +"JOURNAL OF COASTAL CONSERVATION","1400-0350","1874-7841","('ENVIRONMENTAL SCIENCES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","1,754","1.7","('Q4', 'Q2')","0.48","22.89" +"JOURNAL OF ECONOMICS AND FINANCE","1055-0925","1938-9744","('BUSINESS, FINANCE', 'ECONOMICS')","('ESCI', 'ESCI')","685","1.7","('Q3', 'Q2')","0.48","17.14" +"JOURNAL OF MATHEMATICAL CHEMISTRY","0259-9791","1572-8897","('CHEMISTRY, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","2,712","1.7","('Q3', 'Q2')","0.48","17.00" +"JOURNAL OF PALEOLIMNOLOGY","0921-2728","1573-0417","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY', 'LIMNOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,383","1.7","('Q4', 'Q3', 'Q2')","0.48","27.21" +"Journal of Software-Evolution and Process","2047-7473","2047-7481","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","1,203","1.7","Q3","0.48","21.05" +"Netherlands Heart Journal","1568-5888","1876-6250","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,718","1.7","Q3","0.48","99.41" +"Open Medicine","2391-5463","2391-5463","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,102","1.7","Q2","0.48","98.60" +"SEED SCIENCE AND TECHNOLOGY","0251-0952","1819-5717","('AGRONOMY', 'HORTICULTURE', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","1,465","1.7","('Q2', 'Q2', 'Q2')","0.48","98.04" +"Aging Brain","","2589-9589","('CLINICAL NEUROLOGY', 'GERIATRICS & GERONTOLOGY', 'NEUROSCIENCES')","('ESCI', 'ESCI', 'ESCI')","115","1.7","('Q3', 'Q3', 'Q4')","0.47","100.00" +"EASTERN MEDITERRANEAN HEALTH JOURNAL","1020-3397","1687-1634","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SCIE')","2,916","1.7","('Q3', 'Q3', 'Q3')","0.47","99.37" +"Journal of Behavioral Finance","1542-7560","1542-7579","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","1,046","1.7","('Q3', 'Q2')","0.47","14.44" +"JOURNAL OF SOUTH AMERICAN EARTH SCIENCES","0895-9811","1873-0647","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","7,684","1.7","Q3","0.47","6.66" +"LEARNING AND MOTIVATION","0023-9690","1095-9122","('PSYCHOLOGY, BIOLOGICAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","1,118","1.7","('Q3', 'Q3')","0.47","15.03" +"PANCREAS","0885-3177","1536-4828","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","7,261","1.7","Q3","0.47","9.78" +"Atoms","","2218-2004","PHYSICS, ATOMIC, MOLECULAR & CHEMICAL","('ESCI',)","1,173","1.7","Q3","0.46","99.27" +"BJPsych Advances","2056-4678","2056-4686","PSYCHIATRY","('ESCI',)","611","1.7","Q3","0.46","23.72" +"Brachytherapy","1538-4721","1873-1449","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","2,268","1.7","('Q4', 'Q3')","0.46","9.07" +"COASTAL MANAGEMENT","0892-0753","1521-0421","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SSCI')","1,167","1.7","('Q4', 'Q3')","0.46","19.44" +"Evolutionary Bioinformatics","1176-9343","1176-9343","('EVOLUTIONARY BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","1,127","1.7","('Q4', 'Q3')","0.46","90.54" +"INTERNATIONAL JOURNAL OF INDUSTRIAL ORGANIZATION","0167-7187","1873-7986","ECONOMICS","('SSCI',)","3,302","1.7","Q2","0.46","20.00" +"JOURNAL OF BIOMECHANICAL ENGINEERING-TRANSACTIONS OF THE ASME","0148-0731","1528-8951","('BIOPHYSICS', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","7,930","1.7","('Q4', 'Q3')","0.46","1.55" +"Journal of Convention & Event Tourism","1547-0148","1547-0156","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","473","1.7","Q3","0.46","10.53" +"JOURNAL OF HORTICULTURAL SCIENCE & BIOTECHNOLOGY","1462-0316","2380-4084","HORTICULTURE","('SCIE',)","3,836","1.7","Q2","0.46","5.24" +"JOURNAL OF MEDICINAL FOOD","1096-620X","1557-7600","('CHEMISTRY, MEDICINAL', 'FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE', 'SCIE')","6,477","1.7","('Q4', 'Q3', 'Q4')","0.46","3.99" +"JOURNAL OF MICROBIOLOGICAL METHODS","0167-7012","1872-8359","('BIOCHEMICAL RESEARCH METHODS', 'MICROBIOLOGY')","('SCIE', 'SCIE')","9,502","1.7","('Q4', 'Q4')","0.46","24.75" +"Landscape Research","0142-6397","1469-9710","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY')","('SSCI', 'SSCI')","2,056","1.7","('Q3', 'Q2')","0.46","33.16" +"Radiological Physics and Technology","1865-0333","1865-0341","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","724","1.7","Q3","0.46","1.86" +"AMERICAN JOURNAL OF MEDICAL GENETICS PART A","1552-4825","1552-4833","GENETICS & HEREDITY","('SCIE',)","12,868","1.7","Q3","0.45","17.04" +"Communications of the Association for Information Systems","1529-3181","1529-3181","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","3,262","1.7","Q3","0.45","1.51" +"ECOLOGICAL RESEARCH","0912-3814","1440-1703","ECOLOGY","('SCIE',)","4,116","1.7","Q3","0.45","25.84" +"EXPERIMENTAL BRAIN RESEARCH","0014-4819","1432-1106","NEUROSCIENCES","('SCIE',)","18,038","1.7","Q4","0.45","27.94" +"INTERNATIONAL JOURNAL OF NEUROSCIENCE","0020-7454","1563-5279","NEUROSCIENCES","('SCIE',)","4,981","1.7","Q4","0.45","5.57" +"IRISH JOURNAL OF MEDICAL SCIENCE","0021-1265","1863-4362","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,716","1.7","Q2","0.45","26.21" +"Journal of Engineering","2314-4912","2314-4904","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","1,112","1.7","Q2","0.45","100.00" +"JOURNAL OF LASER APPLICATIONS","1042-346X","1938-1387","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","2,859","1.7","('Q3', 'Q3', 'Q3')","0.45","17.18" +"Journal of Thyroid Research","2090-8067","2042-0072","ENDOCRINOLOGY & METABOLISM","('ESCI',)","524","1.7","Q4","0.45","100.00" +"Plant Biotechnology Reports","1863-5466","1863-5474","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","1,348","1.7","('Q4', 'Q2')","0.45","3.64" +"PLANT PROTECTION SCIENCE","1212-2580","1805-9341","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","818","1.7","('Q2', 'Q2')","0.45","96.43" +"SAUDI MEDICAL JOURNAL","0379-5284","1658-3175","MEDICINE, GENERAL & INTERNAL","('SCIE',)","4,770","1.7","Q2","0.45","99.38" +"Science Technology and Society","0971-7218","0973-0796","MANAGEMENT","('SSCI',)","495","1.7","Q3","0.45","10.99" +"WATER AND ENVIRONMENT JOURNAL","1747-6585","1747-6593","('ENVIRONMENTAL SCIENCES', 'LIMNOLOGY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","1,594","1.7","('Q4', 'Q2', 'Q3')","0.45","12.25" +"American Journal of Translational Research","1943-8141","1943-8141","('MEDICINE, RESEARCH & EXPERIMENTAL', 'ONCOLOGY')","('SCIE', 'SCIE')","12,773","1.7","('Q3', 'Q4')","0.44","0.07" +"Geotechnical and Geological Engineering","0960-3182","1573-1529","ENGINEERING, GEOLOGICAL","('ESCI',)","7,675","1.7","Q3","0.44","6.56" +"IET Power Electronics","1755-4535","1755-4543","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","5,665","1.7","Q3","0.44","79.48" +"INTERNATIONAL JOURNAL OF DEVELOPMENTAL NEUROSCIENCE","0736-5748","1873-474X","('DEVELOPMENTAL BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","3,004","1.7","('Q3', 'Q4')","0.44","7.61" +"Journal of the Society for Information Display","1071-0922","1938-3657","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,704","1.7","('Q3', 'Q3', 'Q3', 'Q3')","0.44","7.84" +"ACTA CHROMATOGRAPHICA","1233-2356","2083-5736","CHEMISTRY, ANALYTICAL","('SCIE',)","680","1.7","Q3","0.43","94.96" +"ACTA HAEMATOLOGICA","0001-5792","1421-9662","HEMATOLOGY","('SCIE',)","2,145","1.7","Q3","0.43","25.10" +"Cognitive Processing","1612-4782","1612-4790","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","1,813","1.7","Q3","0.43","34.19" +"EURASIP Journal on Advances in Signal Processing","1687-6180","1687-6180","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","2,843","1.7","Q3","0.43","99.45" +"HEAT AND MASS TRANSFER","0947-7411","1432-1181","('MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","6,590","1.7","('Q3', 'Q3')","0.43","9.49" +"INTERNATIONAL JOURNAL OF HEMATOLOGY","0925-5710","1865-3774","HEMATOLOGY","('SCIE',)","4,663","1.7","Q3","0.43","10.70" +"Open Access Rheumatology-Research and Reviews","1179-156X","1179-156X","RHEUMATOLOGY","('ESCI',)","504","1.7","Q3","0.43","97.65" +"Open Life Sciences","2391-5412","2391-5412","BIOLOGY","('SCIE',)","1,240","1.7","Q3","0.43","96.82" +"Plant Health Progress","","1535-1025","PLANT SCIENCES","('ESCI',)","1,215","1.7","Q2","0.43","10.24" +"SHOCK WAVES","0938-1287","1432-2153","MECHANICS","('SCIE',)","2,218","1.7","Q3","0.43","15.29" +"Automatika","0005-1144","1848-3380","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","665","1.7","('Q3', 'Q3')","0.42","96.30" +"Bundesgesundheitsblatt-Gesundheitsforschung-Gesundheitsschutz","1436-9990","1437-1588","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","2,758","1.7","Q3","0.42","84.98" +"CIVIL ENGINEERING AND ENVIRONMENTAL SYSTEMS","1028-6608","1029-0249","ENGINEERING, CIVIL","('SCIE',)","464","1.7","Q3","0.42","33.33" +"Data Technologies and Applications","2514-9288","2514-9318","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SCIE', 'SSCI')","351","1.7","('Q3', 'Q2')","0.42","3.39" +"Ecologies","","2673-4133","ECOLOGY","('ESCI',)","131","1.7","Q3","0.42","99.07" +"Journal of Asian Earth Sciences-X","2590-0560","2590-0560","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","208","1.7","Q3","0.42","92.11" +"Journal of Causal Inference","2193-3677","2193-3685","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SCIE', 'SSCI')","624","1.7","('Q2', 'Q2')","0.42","98.46" +"Language Resources and Evaluation","1574-020X","1574-0218","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","1,186","1.7","Q3","0.42","50.57" +"MEDICAL ENGINEERING & PHYSICS","1350-4533","1873-4030","ENGINEERING, BIOMEDICAL","('SCIE',)","6,656","1.7","Q3","0.42","19.03" +"Pastoralism-Research Policy and Practice","2041-7136","2041-7136","ENVIRONMENTAL STUDIES","('ESCI',)","662","1.7","Q3","0.42","100.00" +"Psychogeriatrics","1346-3500","1479-8301","('GERIATRICS & GERONTOLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE')","1,603","1.7","('Q3', 'Q3')","0.42","14.15" +"TOHOKU JOURNAL OF EXPERIMENTAL MEDICINE","0040-8727","1349-3329","('MEDICINE, GENERAL & INTERNAL', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","3,187","1.7","('Q2', 'Q3')","0.42","99.69" +"Accounting History","1032-3732","1749-3374","BUSINESS, FINANCE","('ESCI',)","619","1.7","Q3","0.41","33.75" +"Journal of Operational Oceanography","1755-876X","1755-8778","('METEOROLOGY & ATMOSPHERIC SCIENCES', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","538","1.7","('Q4', 'Q3')","0.41","21.31" +"Organic Communications","1307-6175","1307-6175","CHEMISTRY, ORGANIC","('ESCI',)","230","1.7","Q3","0.41","98.61" +"RIVER RESEARCH AND APPLICATIONS","1535-1459","1535-1467","('ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE')","5,030","1.7","('Q4', 'Q3')","0.41","31.70" +"ATS Scholar","","2690-7097","('CRITICAL CARE MEDICINE', 'RESPIRATORY SYSTEM')","('ESCI', 'ESCI')","260","1.7","('Q3', 'Q3')","0.40","90.23" +"IEEE COMPUTER GRAPHICS AND APPLICATIONS","0272-1716","1558-1756","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","2,850","1.7","Q3","0.40","14.52" +"JOURNAL OF ASTHMA","0277-0903","1532-4303","('ALLERGY', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE')","4,524","1.7","('Q3', 'Q3')","0.40","14.84" +"Open Geosciences","2391-5447","2391-5447","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","1,204","1.7","Q3","0.40","96.97" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART F-JOURNAL OF RAIL AND RAPID TRANSIT","0954-4097","2041-3017","('ENGINEERING, CIVIL', 'ENGINEERING, MECHANICAL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,445","1.7","('Q3', 'Q3', 'Q3')","0.40","13.42" +"Tropical Conservation Science","1940-0829","1940-0829","BIODIVERSITY CONSERVATION","('SCIE',)","1,458","1.7","Q2","0.40","100.00" +"ANNALES GEOPHYSICAE","0992-7689","1432-0576","('ASTRONOMY & ASTROPHYSICS', 'GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE')","5,428","1.7","('Q3', 'Q3', 'Q4')","0.39","98.67" +"Arhiv za Higijenu Rada i Toksikologiju-Archives of Industrial Hygiene and Toxicology","0004-1254","1848-6312","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TOXICOLOGY')","('SCIE', 'SCIE')","1,156","1.7","('Q3', 'Q4')","0.39","99.04" +"COMBUSTION SCIENCE AND TECHNOLOGY","0010-2202","1563-521X","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, MULTIDISCIPLINARY', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","7,070","1.7","('Q4', 'Q3', 'Q2', 'Q3')","0.39","4.99" +"EUROPEAN HEART JOURNAL SUPPLEMENTS","1520-765X","1554-2815","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,268","1.7","Q3","0.39","99.12" +"Geomechanics and Geoengineering-An International Journal","1748-6025","1748-6033","ENGINEERING, GEOLOGICAL","('ESCI',)","961","1.7","Q3","0.39","0.53" +"HUMAN DIMENSIONS OF WILDLIFE","1087-1209","1533-158X","('BIODIVERSITY CONSERVATION', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","1,724","1.7","('Q2', 'Q4')","0.39","11.36" +"JOURNAL OF AOAC INTERNATIONAL","1060-3271","1944-7922","('CHEMISTRY, ANALYTICAL', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","6,838","1.7","('Q3', 'Q3')","0.39","16.91" +"JOURNAL OF ELECTROCERAMICS","1385-3449","1573-8663","MATERIALS SCIENCE, CERAMICS","('SCIE',)","2,635","1.7","Q2","0.39","2.61" +"Journal of Innovation Economics & Management","","2032-5355","MANAGEMENT","('ESCI',)","393","1.7","Q3","0.39","1.30" +"Multidiscipline Modeling in Materials and Structures","1573-6105","1573-6113","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE')","1,043","1.7","('Q3', 'Q3')","0.39","0.00" +"Proceedings of the Institution of Mechanical Engineers Part O-Journal of Risk and Reliability","1748-006X","1748-0078","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MULTIDISCIPLINARY', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","1,277","1.7","('Q3', 'Q2', 'Q3')","0.39","3.58" +"World Leisure Journal","1607-8055","2333-4509","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","689","1.7","Q3","0.39","12.39" +"Advanced Steel Construction","1816-112X","","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING')","('SCIE', 'SCIE', 'SCIE')","558","1.7","('Q3', 'Q3', 'Q3')","0.38","0.00" +"ELECTRIC POWER COMPONENTS AND SYSTEMS","1532-5008","1532-5016","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","2,577","1.7","Q3","0.38","0.80" +"IIMB Management Review","0970-3896","2212-4446","MANAGEMENT","('ESCI',)","673","1.7","Q3","0.38","96.59" +"Iranian Journal of Science and Technology-Transactions of Civil Engineering","2228-6160","2364-1843","ENGINEERING, CIVIL","('SCIE',)","1,890","1.7","Q3","0.38","1.17" +"IRONMAKING & STEELMAKING","0301-9233","1743-2812","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","3,420","1.7","Q2","0.38","7.88" +"JOURNAL OF DYNAMIC SYSTEMS MEASUREMENT AND CONTROL-TRANSACTIONS OF THE ASME","0022-0434","1528-9028","('AUTOMATION & CONTROL SYSTEMS', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","4,349","1.7","('Q3', 'Q3')","0.38","0.34" +"Social Neuroscience","1747-0919","1747-0927","('NEUROSCIENCES', 'PSYCHOLOGY')","('SCIE', 'SCIE')","2,107","1.7","('Q4', 'Q3')","0.38","18.26" +"SOLA","1349-6476","1349-6476","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","1,106","1.7","Q4","0.38","94.89" +"TRANSACTIONS OF THE INSTITUTE OF MEASUREMENT AND CONTROL","0142-3312","1477-0369","('AUTOMATION & CONTROL SYSTEMS', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","3,772","1.7","('Q3', 'Q3')","0.38","0.96" +"World Journal of Entrepreneurship Management and Sustainable Development","2042-5961","2042-597X","MANAGEMENT","('ESCI',)","523","1.7","Q3","0.38","0.00" +"ACTA POLYMERICA SINICA","","1000-3304","POLYMER SCIENCE","('SCIE',)","1,406","1.7","Q4","0.37","0.00" +"AI EDAM-ARTIFICIAL INTELLIGENCE FOR ENGINEERING DESIGN ANALYSIS AND MANUFACTURING","0890-0604","1469-1760","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, MANUFACTURING', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","786","1.7","('Q3', 'Q3', 'Q4', 'Q2')","0.37","31.40" +"GENETICS AND MOLECULAR BIOLOGY","1415-4757","1678-4685","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","2,934","1.7","('Q4', 'Q3')","0.37","95.20" +"Global Health Promotion","1757-9759","1757-9767","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","974","1.7","Q3","0.37","25.34" +"IEEE TRANSACTIONS ON APPLIED SUPERCONDUCTIVITY","1051-8223","1558-2515","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","14,407","1.7","('Q3', 'Q3')","0.37","4.18" +"International Journal of Astrobiology","1473-5504","1475-3006","('ASTRONOMY & ASTROPHYSICS', 'BIOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","800","1.7","('Q3', 'Q3', 'Q3')","0.37","41.59" +"INTERNATIONAL JOURNAL OF POLYMER ANALYSIS AND CHARACTERIZATION","1023-666X","1563-5341","POLYMER SCIENCE","('SCIE',)","1,696","1.7","Q4","0.37","1.55" +"JOURNAL OF INDUSTRIAL ECONOMICS","0022-1821","1467-6451","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","2,222","1.7","('Q3', 'Q2')","0.37","34.96" +"JOURNAL OF POLYMER ENGINEERING","0334-6447","2191-0340","POLYMER SCIENCE","('SCIE',)","1,548","1.7","Q4","0.37","3.28" +"RESEARCH-TECHNOLOGY MANAGEMENT","0895-6308","1930-0166","('BUSINESS', 'ENGINEERING, INDUSTRIAL', 'MANAGEMENT')","('SSCI', 'SCIE', 'SSCI')","1,726","1.7","('Q3', 'Q3', 'Q3')","0.37","28.75" +"Urban Rail Transit","2199-6687","2199-6679","('TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","316","1.7","('Q4', 'Q3')","0.37","100.00" +"4OR-A Quarterly Journal of Operations Research","1619-4500","1614-2411","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","612","1.7","Q3","0.36","20.00" +"Drug Research","2194-9379","2194-9387","PHARMACOLOGY & PHARMACY","('ESCI',)","1,447","1.7","Q3","0.36","3.75" +"IET Cyber-Physical Systems: Theory & Applications","","2398-3396","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('ESCI', 'ESCI', 'ESCI')","393","1.7","('Q3', 'Q3', 'Q3')","0.36","84.81" +"JGH Open","2397-9070","2397-9070","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","1,335","1.7","Q3","0.36","69.11" +"Natural Computing","1567-7818","1572-9796","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","986","1.7","('Q3', 'Q2')","0.36","33.59" +"Series-Journal of the Spanish Economic Association","1869-4187","1869-4195","ECONOMICS","('SSCI',)","530","1.7","Q2","0.36","100.00" +"SOLDERING & SURFACE MOUNT TECHNOLOGY","0954-0911","1758-6836","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, MANUFACTURING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","474","1.7","('Q3', 'Q4', 'Q3', 'Q2')","0.36","0.00" +"Acute and Critical Care","2586-6052","2586-6060","CRITICAL CARE MEDICINE","('ESCI',)","469","1.7","Q3","0.35","100.00" +"COMPUTER METHODS IN BIOMECHANICS AND BIOMEDICAL ENGINEERING","1025-5842","1476-8259","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","4,023","1.7","('Q3', 'Q3')","0.35","7.69" +"Current Analytical Chemistry","1573-4110","1875-6727","CHEMISTRY, ANALYTICAL","('SCIE',)","1,047","1.7","Q3","0.35","1.17" +"Current Treatment Options in Rheumatology","","2198-6002","RHEUMATOLOGY","('ESCI',)","206","1.7","Q3","0.35","25.53" +"HIV Research & Clinical Practice","2578-7489","2578-7470","('INFECTIOUS DISEASES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","109","1.7","('Q3', 'Q3')","0.35","6.52" +"International Planning Studies","1356-3475","1469-9265","REGIONAL & URBAN PLANNING","('ESCI',)","746","1.7","Q4","0.35","31.25" +"Jordan Journal of Mechanical and Industrial Engineering","1995-6665","1995-6665","ENGINEERING, MECHANICAL","('ESCI',)","722","1.7","Q3","0.35","0.00" +"Journal of Groundwater Science and Engineering","2305-7068","2305-7068","WATER RESOURCES","('ESCI',)","285","1.7","Q3","0.35","32.99" +"JOURNAL OF THE MECHANICAL BEHAVIOR OF MATERIALS","0334-8938","2191-0243","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('ESCI', 'ESCI')","591","1.7","('Q3', 'Q3')","0.35","95.45" +"Neurology Research International","2090-1852","2090-1860","NEUROSCIENCES","('ESCI',)","528","1.7","Q4","0.35","100.00" +"PACE-PACING AND CLINICAL ELECTROPHYSIOLOGY","0147-8389","1540-8159","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","5,441","1.7","('Q3', 'Q3')","0.35","18.67" +"Production Engineering-Research and Development","0944-6524","1863-7353","ENGINEERING, MANUFACTURING","('ESCI',)","1,351","1.7","Q4","0.35","77.35" +"Small Enterprise Research","1321-5906","1175-0979","BUSINESS","('ESCI',)","376","1.7","Q3","0.35","14.75" +"BIOLOGICAL CYBERNETICS","0340-1200","1432-0770","('COMPUTER SCIENCE, CYBERNETICS', 'NEUROSCIENCES')","('SCIE', 'SCIE')","4,218","1.7","('Q3', 'Q4')","0.34","48.04" +"CURRENT ORGANIC SYNTHESIS","1570-1794","1875-6271","CHEMISTRY, ORGANIC","('SCIE',)","1,276","1.7","Q3","0.34","0.61" +"DEVELOPMENT GROWTH & DIFFERENTIATION","0012-1592","1440-169X","('CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY')","('SCIE', 'SCIE')","2,093","1.7","('Q4', 'Q3')","0.34","20.39" +"ECOLOGY OF FOOD AND NUTRITION","0367-0244","1543-5237","NUTRITION & DIETETICS","('SCIE',)","1,140","1.7","Q4","0.34","6.90" +"ECONOMIC DEVELOPMENT QUARTERLY","0891-2424","1552-3543","('DEVELOPMENT STUDIES', 'ECONOMICS', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI')","1,013","1.7","('Q3', 'Q2', 'Q3')","0.34","0.00" +"HEAT TRANSFER RESEARCH","1064-2285","2162-6561","THERMODYNAMICS","('SCIE',)","1,028","1.7","Q3","0.34","0.00" +"International Journal of Preventive Medicine","2008-7802","2008-8213","MEDICINE, GENERAL & INTERNAL","('ESCI',)","3,419","1.7","Q2","0.34","22.11" +"JOURNAL OF INORGANIC MATERIALS","1000-324X","","MATERIALS SCIENCE, CERAMICS","('SCIE',)","1,712","1.7","Q2","0.34","92.29" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART H-JOURNAL OF ENGINEERING IN MEDICINE","0954-4119","2041-3033","ENGINEERING, BIOMEDICAL","('SCIE',)","3,165","1.7","Q3","0.34","9.73" +"Science and Technology for the Built Environment","2374-4731","2374-474X","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","1,379","1.7","('Q3', 'Q3', 'Q3')","0.34","13.39" +"FLORA","0367-2530","1618-0585","('ECOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","4,068","1.7","('Q3', 'Q2')","0.33","7.69" +"Journal of Business Analytics","2573-234X","2573-2358","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('ESCI', 'ESCI')","136","1.7","('Q3', 'Q3')","0.33","14.00" +"Journal of Systems Science and Systems Engineering","1004-3756","1861-9576","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","780","1.7","Q3","0.33","0.00" +"Autoimmune Diseases","2090-0422","2090-0430","IMMUNOLOGY","('ESCI',)","528","1.7","Q4","0.32","100.00" +"Canadian Water Resources Journal","0701-1784","1918-1817","WATER RESOURCES","('SCIE',)","881","1.7","Q3","0.32","0.00" +"China Foundry","1672-6421","2365-9459","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","830","1.7","Q2","0.32","0.00" +"JOURNAL OF CHEMICAL SCIENCES","0974-3626","0973-7103","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","3,069","1.7","Q3","0.32","0.00" +"JOURNAL OF EXPERIMENTAL & THEORETICAL ARTIFICIAL INTELLIGENCE","0952-813X","1362-3079","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","1,279","1.7","Q3","0.32","3.98" +"MOUNTAIN RESEARCH AND DEVELOPMENT","0276-4741","1994-7151","('ENVIRONMENTAL SCIENCES', 'GEOGRAPHY, PHYSICAL')","('SCIE', 'SCIE')","2,113","1.7","('Q4', 'Q3')","0.32","97.01" +"Renewable Energy Research and Applications","2717-252X","2676-7430","('ENERGY & FUELS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","165","1.7","('Q4', 'Q4')","0.32","0.00" +"Stem Cells and Cloning-Advances and Applications","1178-6957","1178-6957","CELL BIOLOGY","('ESCI',)","251","1.7","Q4","0.32","95.45" +"Advances in Natural Sciences-Nanoscience and Nanotechnology","2043-6254","2043-6262","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('ESCI', 'ESCI', 'ESCI')","2,484","1.7","('Q3', 'Q4', 'Q3')","0.31","0.00" +"Current Sports Medicine Reports","1537-890X","1537-8918","SPORT SCIENCES","('SCIE',)","2,404","1.7","Q3","0.31","0.00" +"Hepatoma Research","2394-5079","2454-2520","('GASTROENTEROLOGY & HEPATOLOGY', 'ONCOLOGY')","('ESCI', 'ESCI')","511","1.7","('Q3', 'Q4')","0.31","99.34" +"MONATSHEFTE FUR CHEMIE","0026-9247","1434-4475","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","4,739","1.7","Q3","0.31","19.04" +"Environmental Justice","1939-4071","1937-5174","ENVIRONMENTAL STUDIES","('ESCI',)","876","1.7","Q3","0.30","17.96" +"International Journal of Online and Biomedical Engineering","","2626-8493","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","874","1.7","Q3","0.30","97.60" +"JOURNAL OF INTELLIGENT & FUZZY SYSTEMS","1064-1246","1875-8967","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","12,662","1.7","Q3","0.30","1.11" +"MATERIALS SCIENCE AND TECHNOLOGY","0267-0836","1743-2847","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","10,109","1.7","('Q3', 'Q2')","0.30","4.27" +"Cell Journal","2228-5806","2228-5814","CELL BIOLOGY","('SCIE',)","1,608","1.7","Q4","0.29","0.00" +"CURRENT ORGANIC CHEMISTRY","1385-2728","1875-5348","CHEMISTRY, ORGANIC","('SCIE',)","3,969","1.7","Q3","0.29","0.26" +"Drone Systems and Applications","","2564-4939","REMOTE SENSING","('ESCI',)","41","1.7","Q3","0.29","75.86" +"Argument & Computation","1946-2166","1946-2174","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","229","1.7","Q3","0.28","100.00" +"FOLIA HISTOCHEMICA ET CYTOBIOLOGICA","0239-8508","1897-5631","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","910","1.7","('Q4', 'Q4')","0.28","95.06" +"NUMERICAL HEAT TRANSFER PART B-FUNDAMENTALS","1040-7790","1521-0626","('MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","1,536","1.7","('Q3', 'Q3')","0.28","3.56" +"PROPELLANTS EXPLOSIVES PYROTECHNICS","0721-3115","1521-4087","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","4,377","1.7","('Q3', 'Q3')","0.28","11.83" +"Journal of Energetic Materials","0737-0652","1545-8822","('CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,024","1.7","('Q3', 'Q4', 'Q3', 'Q3')","0.27","0.75" +"JOURNAL OF VISUALIZATION","1343-8875","1875-8975","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY')","('SCIE', 'SCIE')","1,537","1.7","('Q3', 'Q3')","0.27","15.00" +"RUSSIAN CHEMICAL BULLETIN","1066-5285","1573-9171","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","5,139","1.7","Q3","0.27","0.00" +"ACTA CHIMICA SINICA","0567-7351","","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","2,251","1.7","Q3","0.26","0.40" +"Control Theory and Technology","2095-6983","2198-0942","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","387","1.7","Q3","0.26","8.39" +"CYTOGENETIC AND GENOME RESEARCH","1424-8581","1424-859X","('CELL BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","2,527","1.7","('Q4', 'Q3')","0.26","16.00" +"Gastroenterology Review-Przeglad Gastroenterologiczny","1895-5770","1897-4317","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","966","1.7","Q3","0.26","93.53" +"GERMS","2248-2997","2248-2997","INFECTIOUS DISEASES","('ESCI',)","454","1.7","Q3","0.26","0.00" +"Johnson Matthey Technology Review","2056-5135","2056-5135","CHEMISTRY, PHYSICAL","('SCIE',)","700","1.7","Q4","0.26","100.00" +"JOURNAL OF INCLUSION PHENOMENA AND MACROCYCLIC CHEMISTRY","1388-3127","1573-1111","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","2,430","1.7","Q3","0.26","3.49" +"Reaction Kinetics Mechanisms and Catalysis","1878-5190","1878-5204","CHEMISTRY, PHYSICAL","('SCIE',)","2,691","1.7","Q4","0.26","6.95" +"Composites and Advanced Materials","","2634-9833","MATERIALS SCIENCE, COMPOSITES","('SCIE',)","104","1.7","Q3","0.20","91.14" +"ADCAIJ-Advances in Distributed Computing and Artificial Intelligence Journal","2255-2863","2255-2863","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","226","1.7","Q3","0.16","89.33" +"Electrochemical Society Interface","1064-8208","1944-8783","ELECTROCHEMISTRY","('ESCI',)","1,020","1.7","Q4","0.16","81.97" +"HISTORICAL METHODS","0161-5440","1940-1906","HISTORY","('AHCI', 'SSCI')","399","1.6","Q1","3.96","38.71" +"JOURNAL OF PHILOSOPHY","0022-362X","1939-8549","PHILOSOPHY","('AHCI',)","4,360","1.6","","2.33","0.00" +"International & Comparative Law Quarterly","0020-5893","1471-6895","LAW","('SSCI',)","1,577","1.6","Q1","2.32","60.71" +"MUSIC THEORY SPECTRUM","0195-6167","1533-8339","MUSIC","('AHCI',)","345","1.6","","2.32","3.28" +"Journal of Legal Affairs and Dispute Resolution in Engineering and Construction","1943-4162","1943-4170","LAW","('ESCI',)","796","1.6","Q1","2.28","1.84" +"International Journal of Architectural Computing","1478-0771","2048-3988","ARCHITECTURE","('ESCI',)","544","1.6","","2.26","19.61" +"SCIRES-IT-SCIentific RESearch and Information Technology","2239-4303","2239-4303","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","221","1.6","","2.14","0.00" +"BOSTON UNIVERSITY LAW REVIEW","0006-8047","0006-8047","LAW","('SSCI',)","1,081","1.6","Q1","2.00","0.00" +"European Constitutional Law Review","1574-0196","1744-5515","LAW","('SSCI',)","492","1.6","Q1","1.99","66.67" +"Novye Issledovaniya Tuvy-New Research of Tuva","","2079-8482","('HUMANITIES, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","319","1.6","('N/A', 'Q2')","1.98","100.00" +"International Journal of Law and Information Technology","0967-0769","1464-3693","LAW","('ESCI',)","268","1.6","Q1","1.95","36.36" +"Philosophical Perspectives","1520-8583","1758-2245","PHILOSOPHY","('AHCI',)","1,083","1.6","","1.92","35.19" +"Virtual Archaeology Review","1989-9947","1989-9947","ARCHAEOLOGY","('ESCI',)","301","1.6","","1.91","98.00" +"Social Semiotics","1035-0330","1470-1219","('COMMUNICATION', 'HUMANITIES, MULTIDISCIPLINARY', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","1,110","1.6","('Q2', 'N/A', 'Q1')","1.82","23.36" +"Journal of Professional Capital and Community","2056-9548","2056-9556","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","499","1.6","Q2","1.67","8.93" +"Career Development and Transition for Exceptional Individuals","2165-1434","2165-1442","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","788","1.6","('Q2', 'Q2')","1.64","7.69" +"Journal of Language and Sexuality","2211-3770","2211-3789","('COMMUNICATION', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI', 'ESCI')","127","1.6","('Q2', 'N/A', 'Q1')","1.62","5.41" +"GEORGE WASHINGTON LAW REVIEW","0016-8076","0016-8076","LAW","('SSCI',)","756","1.6","Q1","1.53","1.12" +"JOURNAL OF EDUCATION FOR TEACHING","0260-7476","1360-0540","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,793","1.6","Q2","1.52","20.99" +"VETERINARY CLINICS OF NORTH AMERICA-FOOD ANIMAL PRACTICE","0749-0720","1558-4240","VETERINARY SCIENCES","('SCIE',)","3,272","1.6","Q2","1.50","7.55" +"International Journal of Design","1991-3761","1994-036X","('ART', 'ENGINEERING, MANUFACTURING', 'ENGINEERING, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('AHCI', 'SCIE', 'SCIE', 'SSCI')","899","1.6","('N/A', 'Q4', 'Q2', 'Q2')","1.45","0.00" +"CAMBRIDGE ARCHAEOLOGICAL JOURNAL","0959-7743","1474-0540","ARCHAEOLOGY","('AHCI',)","1,206","1.6","","1.42","56.34" +"JOURNAL OF CONSCIOUSNESS STUDIES","1355-8250","","('PHILOSOPHY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('AHCI', 'SSCI')","1,948","1.6","('N/A', 'Q2')","1.42","8.96" +"Avian Research","2053-7166","2053-7166","ORNITHOLOGY","('SCIE',)","691","1.6","Q1","1.38","100.00" +"Human Rights Law Review","1461-7781","1744-1021","('INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI')","751","1.6","('Q2', 'Q1')","1.35","44.44" +"Mathematical Modelling and Analysis","1392-6292","1648-3510","MATHEMATICS","('SCIE',)","587","1.6","Q1","1.31","100.00" +"JOURNAL OF LAW MEDICINE & ETHICS","1073-1105","1748-720X","('ETHICS', 'LAW', 'MEDICAL ETHICS', 'MEDICINE, LEGAL')","('SSCI', 'SSCI', 'SCIE', 'SCIE')","2,095","1.6","('Q2', 'Q1', 'Q3', 'Q2')","1.24","42.91" +"Linguistics and Education","0898-5898","1873-1864","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","1,318","1.6","('Q2', 'N/A', 'Q1')","1.22","27.07" +"Psychology of Music","0305-7356","1741-3087","('MUSIC', 'PSYCHOLOGY, APPLIED', 'PSYCHOLOGY, EDUCATIONAL', 'PSYCHOLOGY, EXPERIMENTAL')","('AHCI', 'SSCI', 'SSCI', 'SSCI')","2,823","1.6","('N/A', 'Q3', 'Q3', 'Q3')","1.22","26.44" +"LEARNING DISABILITY QUARTERLY","0731-9487","2168-376X","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","1,061","1.6","('Q2', 'Q2')","1.17","5.08" +"PaleoAmerica","2055-5563","2055-5571","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('ESCI', 'ESCI')","291","1.6","('Q1', 'N/A')","1.17","1.32" +"HISTORY AND PHILOSOPHY OF THE LIFE SCIENCES","0391-9714","1742-6316","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","714","1.6","Q1","1.15","50.31" +"THEORY AND SOCIETY","0304-2421","1573-7853","SOCIOLOGY","('SSCI',)","3,789","1.6","Q2","1.14","36.19" +"CULTURAL STUDIES","0950-2386","1466-4348","('ANTHROPOLOGY', 'CULTURAL STUDIES')","('SSCI', 'AHCI, SSCI')","2,772","1.6","('Q1', 'Q1')","1.12","15.34" +"International Journal of Corpus Linguistics","1384-6655","1569-9811","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","928","1.6","('N/A', 'Q1')","1.12","12.90" +"Journal of Developmental and Life-Course Criminology","2199-4641","2199-465X","CRIMINOLOGY & PENOLOGY","('SSCI',)","413","1.6","Q2","1.12","26.51" +"Education Inquiry","","2000-4508","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","536","1.6","Q2","1.09","95.04" +"Journal of Energy & Natural Resources Law","0264-6811","2376-4538","('ENVIRONMENTAL STUDIES', 'LAW')","('SSCI', 'SSCI')","432","1.6","('Q4', 'Q1')","1.07","28.57" +"Journal of Research in Nursing","1744-9871","1744-988X","NURSING","('ESCI',)","1,603","1.6","Q2","1.07","18.40" +"Zoosystematics and Evolution","1860-0743","1860-0743","ZOOLOGY","('SCIE',)","356","1.6","Q2","1.06","99.05" +"Current Zoology","1674-5507","2396-9814","ZOOLOGY","('SCIE',)","2,129","1.6","Q2","1.05","92.54" +"EDUCATIONAL POLICY","0895-9048","1552-3896","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,648","1.6","Q2","1.04","5.18" +"LINGUISTIC INQUIRY","0024-3892","1530-9150","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","2,763","1.6","('N/A', 'Q1')","1.04","10.47" +"International Journal of Serious Games","2384-8766","2384-8766","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","409","1.6","Q2","1.03","90.00" +"AURIS NASUS LARYNX","0385-8146","1879-1476","OTORHINOLARYNGOLOGY","('SCIE',)","3,380","1.6","Q2","1.02","13.40" +"JOURNAL OF GEOMETRY AND PHYSICS","0393-0440","1879-1662","('MATHEMATICS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","3,386","1.6","('Q1', 'Q2')","1.02","15.03" +"European Zoological Journal","2475-0263","2475-0263","ZOOLOGY","('SCIE',)","662","1.6","Q2","1.01","97.08" +"International Spectator","0393-2729","1751-9721","INTERNATIONAL RELATIONS","('ESCI',)","653","1.6","Q2","1.01","40.54" +"APPLIED MATHEMATICS AND OPTIMIZATION","0095-4616","1432-0606","MATHEMATICS, APPLIED","('SCIE',)","2,355","1.6","Q2","1.00","26.35" +"Asian Englishes","1348-8678","2331-2548","LINGUISTICS","('ESCI',)","320","1.6","Q1","1.00","6.67" +"ZOOLOGY","0944-2006","1873-2720","ZOOLOGY","('SCIE',)","1,756","1.6","Q2","1.00","18.88" +"RIVISTA ITALIANA DI PALEONTOLOGIA E STRATIGRAFIA","0035-6883","2039-4942","('GEOLOGY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","1,159","1.6","('Q2', 'Q2')","0.99","53.49" +"Compare-A Journal of Comparative and International Education","0305-7925","1469-3623","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,804","1.6","Q2","0.98","23.90" +"JOURNAL OF SOCIAL ARCHAEOLOGY","1469-6053","1741-2951","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","452","1.6","('Q1', 'N/A')","0.98","27.08" +"Transforming Anthropology","1051-0559","1548-7466","ANTHROPOLOGY","('ESCI',)","302","1.6","Q1","0.98","6.90" +"Australian Journal of General Practice","2208-794X","2208-7958","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","1,266","1.6","('Q2', 'Q3')","0.97","15.56" +"European Journal on Criminal Policy and Research","0928-1371","1572-9869","CRIMINOLOGY & PENOLOGY","('SSCI',)","813","1.6","Q2","0.96","60.40" +"International Journal of Engineering Pedagogy","2192-4880","2192-4880","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","659","1.6","Q2","0.94","100.00" +"Journal of Knee Surgery","1538-8506","1938-2480","ORTHOPEDICS","('SCIE',)","3,453","1.6","Q3","0.94","0.48" +"Journal of the Society for Social Work and Research","2334-2315","1948-822X","SOCIAL WORK","('SSCI',)","801","1.6","Q2","0.94","0.90" +"Journal of Mental Health Research in Intellectual Disabilities","1931-5864","1931-5872","('EDUCATION, SPECIAL', 'PSYCHIATRY', 'REHABILITATION')","('SSCI', 'SSCI', 'SSCI')","454","1.6","('Q2', 'Q3', 'Q2')","0.93","27.27" +"Journal of Survey Statistics and Methodology","2325-0984","2325-0992","('SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE')","756","1.6","('Q2', 'Q1')","0.92","19.10" +"Pain Management Nursing","1524-9042","1532-8635","NURSING","('SCIE', 'SSCI')","2,098","1.6","Q2","0.92","13.62" +"Research in Comparative and International Education","1745-4999","1745-4999","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","573","1.6","Q2","0.91","27.59" +"Journal of Microbiology & Biology Education","1935-7877","1935-7885","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","1,089","1.6","Q2","0.90","82.76" +"RESEARCH IN THE TEACHING OF ENGLISH","0034-527X","1943-2348","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","765","1.6","Q2","0.90","0.00" +"ADVANCES IN NURSING SCIENCE","0161-9268","1550-5014","NURSING","('SCIE', 'SSCI')","1,857","1.6","Q2","0.87","4.24" +"JOURNAL OF POPULATION RESEARCH","1443-2447","1835-9469","DEMOGRAPHY","('ESCI',)","480","1.6","Q2","0.87","42.42" +"RADIATION MEASUREMENTS","1350-4487","1879-0925","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","6,292","1.6","Q2","0.87","26.94" +"Advances in Neonatal Care","1536-0903","1536-0911","NURSING","('SCIE', 'SSCI')","1,597","1.6","Q2","0.86","5.47" +"BULLETIN OF ENTOMOLOGICAL RESEARCH","0007-4853","1475-2670","ENTOMOLOGY","('SCIE',)","4,083","1.6","Q2","0.86","15.63" +"Collegian","1322-7696","1876-7575","NURSING","('SCIE', 'SSCI')","1,564","1.6","Q2","0.86","14.74" +"Feminist Media Studies","1468-0777","1471-5902","('COMMUNICATION', 'WOMENS STUDIES')","('SSCI', 'SSCI')","2,895","1.6","('Q2', 'Q2')","0.86","21.00" +"Journal of College Student Retention-Research Theory & Practice","1521-0251","1541-4167","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,143","1.6","Q2","0.86","4.95" +"GEOBIOS","0016-6995","1777-5728","PALEONTOLOGY","('SCIE',)","2,083","1.6","Q2","0.85","27.00" +"JAVMA-JOURNAL OF THE AMERICAN VETERINARY MEDICAL ASSOCIATION","0003-1488","1943-569X","VETERINARY SCIENCES","('SCIE',)","12,571","1.6","Q2","0.85","18.20" +"JOURNAL OF ORTHOPAEDIC TRAUMA","0890-5339","1531-2291","('ORTHOPEDICS', 'SPORT SCIENCES')","('SCIE', 'SCIE')","11,669","1.6","('Q3', 'Q3')","0.85","1.29" +"MEDICAL AND VETERINARY ENTOMOLOGY","0269-283X","1365-2915","('ENTOMOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","3,068","1.6","('Q2', 'Q2')","0.85","25.27" +"AMERICAN JOURNAL OF HUMAN BIOLOGY","1042-0533","1520-6300","('ANTHROPOLOGY', 'BIOLOGY')","('SSCI', 'SCIE')","4,006","1.6","('Q1', 'Q3')","0.84","19.33" +"Asia Europe Journal","1610-2932","1612-1031","INTERNATIONAL RELATIONS","('SSCI',)","436","1.6","Q2","0.84","22.99" +"Asia Pacific Journal of Education","0218-8791","1742-6855","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,332","1.6","Q2","0.84","6.14" +"Asia Pacific Journal of Public Administration","2327-6665","2327-6673","PUBLIC ADMINISTRATION","('ESCI',)","261","1.6","Q3","0.84","3.23" +"PUBLIC CHOICE","0048-5829","1573-7101","('ECONOMICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","4,791","1.6","('Q2', 'Q2')","0.84","24.69" +"JOURNAL OF APPLIED COMMUNICATION RESEARCH","0090-9882","1479-5752","COMMUNICATION","('SSCI',)","1,721","1.6","Q2","0.83","3.94" +"Journal of Child and Adolescent Psychiatric Nursing","1073-6077","1744-6171","NURSING","('ESCI',)","855","1.6","Q2","0.83","10.00" +"Journal of the American College of Emergency Physicians Open","","2688-1152","EMERGENCY MEDICINE","('ESCI',)","1,104","1.6","Q2","0.83","70.95" +"Laryngoscope Investigative Otolaryngology","2378-8038","2378-8038","OTORHINOLARYNGOLOGY","('SCIE',)","2,006","1.6","Q2","0.83","68.58" +"Empirical Research in Vocational Education and Training","","1877-6345","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","225","1.6","Q2","0.82","100.00" +"JOURNAL OF MAMMALIAN EVOLUTION","1064-7554","1573-7055","ZOOLOGY","('SCIE',)","1,202","1.6","Q2","0.82","16.34" +"JOURNAL OF PSYCHOLINGUISTIC RESEARCH","0090-6905","1573-6555","('LINGUISTICS', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","2,036","1.6","('Q1', 'Q3')","0.82","20.86" +"Oral Radiology","0911-6028","1613-9674","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","854","1.6","Q3","0.82","9.72" +"QUEST","0033-6297","1543-2750","('EDUCATION & EDUCATIONAL RESEARCH', 'SPORT SCIENCES')","('SSCI', 'SCIE')","1,748","1.6","('Q2', 'Q3')","0.82","21.43" +"Communication & Society-Spain","2386-7876","2386-7876","COMMUNICATION","('ESCI',)","663","1.6","Q2","0.81","100.00" +"Journal of PeriAnesthesia Nursing","1089-9472","1532-8473","NURSING","('SCIE', 'SSCI')","1,529","1.6","Q2","0.81","7.87" +"Journal of Social Work in End-of-Life & Palliative Care","1552-4256","1552-4264","SOCIAL WORK","('ESCI',)","484","1.6","Q2","0.81","7.35" +"Sport Management Education Journal","1938-6974","2163-2367","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","285","1.6","Q2","0.81","0.00" +"BMC Surgery","","1471-2482","SURGERY","('SCIE',)","4,455","1.6","Q2","0.80","99.76" +"JOURNAL OF NURSING EDUCATION","0148-4834","1938-2421","NURSING","('SCIE', 'SSCI')","3,471","1.6","Q2","0.80","4.02" +"Brock Education-A Journal of Educational Research and Practice","1183-1189","1183-1189","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","136","1.6","Q2","0.79","0.00" +"Child & Family Social Work","1356-7500","1365-2206","('FAMILY STUDIES', 'SOCIAL WORK')","('SSCI', 'SSCI')","2,629","1.6","('Q2', 'Q2')","0.79","41.95" +"International Journal of Medical Education","2042-6372","2042-6372","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","2,179","1.6","Q2","0.79","98.80" +"JOURNAL OF CONTINUING EDUCATION IN THE HEALTH PROFESSIONS","0894-1912","1554-558X","('EDUCATION, SCIENTIFIC DISCIPLINES', 'HEALTH CARE SCIENCES & SERVICES')","('SCIE', 'SCIE')","1,622","1.6","('Q2', 'Q3')","0.79","12.20" +"KNEE","0968-0160","1873-5800","('ORTHOPEDICS', 'SPORT SCIENCES', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","5,610","1.6","('Q3', 'Q3', 'Q2')","0.79","13.77" +"NONLINEARITY","0951-7715","1361-6544","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","6,677","1.6","('Q2', 'Q2')","0.79","23.37" +"Reflective Practice","1462-3943","1470-1103","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,438","1.6","Q2","0.79","19.11" +"Information and Learning Sciences","2398-5348","2398-5356","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","599","1.6","Q2","0.78","8.55" +"INTERNATIONAL MIGRATION","0020-7985","1468-2435","DEMOGRAPHY","('SSCI',)","3,016","1.6","Q2","0.78","39.01" +"Journal of Sexual Aggression","1355-2600","1742-6545","CRIMINOLOGY & PENOLOGY","('SSCI',)","759","1.6","Q2","0.78","24.49" +"Language Cognition and Neuroscience","2327-3798","2327-3801","('AUDIOLOGY & SPEECH', 'BEHAVIORAL SCIENCES', 'LINGUISTICS', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI', 'SSCI')","1,882","1.6","('Q2', 'Q3', 'Q1', 'Q3')","0.78","35.24" +"Surveillance & Society","1477-7487","1477-7487","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","1,342","1.6","Q2","0.78","0.00" +"COMPUTATIONAL OPTIMIZATION AND APPLICATIONS","0926-6003","1573-2894","('MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","3,171","1.6","('Q2', 'Q3')","0.77","31.58" +"Facial Plastic Surgery & Aesthetic Medicine","2689-3614","2689-3622","SURGERY","('SCIE',)","616","1.6","Q2","0.77","2.53" +"Global Public Policy and Governance","2730-6291","2730-6305","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('ESCI', 'ESCI')","91","1.6","('Q2', 'Q3')","0.77","23.88" +"Innovation-The European Journal of Social Science Research","1351-1610","1469-8412","SOCIOLOGY","('SSCI',)","1,012","1.6","Q2","0.77","33.53" +"INTERNATIONAL JOURNAL OF GYNECOLOGICAL PATHOLOGY","0277-1691","1538-7151","('OBSTETRICS & GYNECOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","2,780","1.6","('Q3', 'Q3')","0.77","6.43" +"JOURNAL OF APPLIED POULTRY RESEARCH","1056-6171","1537-0437","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","3,335","1.6","Q2","0.77","100.00" +"WILDLIFE RESEARCH","1035-3712","1448-5494","('ECOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","3,442","1.6","('Q3', 'Q2')","0.77","48.43" +"Alternative-An International Journal of Indigenous Peoples","1177-1801","1174-1740","ETHNIC STUDIES","('ESCI',)","898","1.6","Q2","0.76","34.50" +"Counselling Psychology Quarterly","0951-5070","1469-3674","PSYCHOLOGY, APPLIED","('ESCI',)","1,132","1.6","Q3","0.76","14.53" +"JOURNAL OF AMERICAN COLLEGE HEALTH","0744-8481","1940-3208","('EDUCATION & EDUCATIONAL RESEARCH', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","6,135","1.6","('Q2', 'Q3')","0.76","4.34" +"Multidisciplinary Journal for Education Social and Technological Sciences","2341-2593","2341-2593","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","84","1.6","Q2","0.76","100.00" +"AREA","0004-0894","1475-4762","GEOGRAPHY","('SSCI',)","3,030","1.6","Q2","0.75","54.11" +"Canadian Journal of Occupational Therapy-Revue Canadienne d Ergotherapie","0008-4174","1911-9828","REHABILITATION","('SCIE', 'SSCI')","1,418","1.6","Q2","0.75","46.96" +"Criminology & Criminal Justice","1748-8958","1748-8966","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,254","1.6","Q2","0.75","48.53" +"Critical Studies on Terrorism","1753-9153","1753-9161","POLITICAL SCIENCE","('ESCI',)","670","1.6","Q2","0.75","36.13" +"SIAM Journal on Applied Algebra and Geometry","2470-6566","2470-6566","MATHEMATICS, APPLIED","('SCIE',)","302","1.6","Q2","0.75","2.35" +"BRITISH POULTRY SCIENCE","0007-1668","1466-1799","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","5,388","1.6","Q2","0.74","14.50" +"CURRICULUM INQUIRY","0362-6784","1467-873X","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,092","1.6","Q2","0.74","3.03" +"Du Bois Review-Social Science Research on Race","1742-058X","1742-0598","('ETHNIC STUDIES', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,413","1.6","('Q2', 'Q2')","0.74","37.88" +"JOURNAL OF VERTEBRATE PALEONTOLOGY","0272-4634","1937-2809","PALEONTOLOGY","('SCIE',)","5,470","1.6","Q2","0.74","15.73" +"Videosurgery and Other Miniinvasive Techniques","1895-4588","2299-0054","SURGERY","('SCIE',)","839","1.6","Q2","0.74","100.00" +"AMERICAN POLITICS RESEARCH","1532-673X","1552-3373","POLITICAL SCIENCE","('SSCI',)","1,606","1.6","Q2","0.73","8.62" +"Archives Animal Breeding","0003-9438","2363-9822","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","647","1.6","Q2","0.73","100.00" +"HSS Journal","1556-3316","1556-3324","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","1,297","1.6","('Q3', 'Q2')","0.73","16.43" +"Journal for Labour Market Research","2510-5019","2510-5027","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","424","1.6","Q2","0.73","100.00" +"Journal of Education Culture and Society","","2081-1640","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","442","1.6","Q2","0.73","35.06" +"AGRICULTURAL AND FOREST ENTOMOLOGY","1461-9555","1461-9563","ENTOMOLOGY","('SCIE',)","1,723","1.6","Q2","0.72","33.74" +"Australian Social Work","0312-407X","1447-0748","SOCIAL WORK","('SSCI',)","1,096","1.6","Q2","0.72","22.66" +"Frontiers in Surgery","2296-875X","2296-875X","SURGERY","('SCIE',)","5,993","1.6","Q2","0.72","99.49" +"JANAC-JOURNAL OF THE ASSOCIATION OF NURSES IN AIDS CARE","1055-3290","1552-6917","('NURSING', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE, SSCI', 'SCIE, SSCI')","1,302","1.6","('Q2', 'Q3')","0.72","8.28" +"Journal of Public Procurement","1535-0118","2150-6930","PUBLIC ADMINISTRATION","('ESCI',)","390","1.6","Q3","0.72","12.73" +"Journal of Women Politics & Policy","1554-477X","1554-4788","('POLITICAL SCIENCE', 'WOMENS STUDIES')","('SSCI', 'SSCI')","530","1.6","('Q2', 'Q2')","0.72","10.75" +"PHYSIOTHERAPY THEORY AND PRACTICE","0959-3985","1532-5040","REHABILITATION","('SCIE',)","3,423","1.6","Q2","0.72","16.43" +"Primary Health Care Research and Development","1463-4236","1477-1128","PRIMARY HEALTH CARE","('SCIE',)","1,485","1.6","Q3","0.72","100.00" +"Australian Occupational Therapy Journal","0045-0766","1440-1630","REHABILITATION","('SCIE',)","1,710","1.6","Q2","0.71","45.22" +"Nordic Journal of Music Therapy","0809-8131","1944-8260","REHABILITATION","('SSCI',)","470","1.6","Q2","0.71","33.80" +"ACSMS HEALTH & FITNESS JOURNAL","1091-5397","1536-593X","SPORT SCIENCES","('SCIE',)","645","1.6","Q3","0.70","0.00" +"BJUI Compass","2688-4526","2688-4526","UROLOGY & NEPHROLOGY","('ESCI',)","259","1.6","Q3","0.70","77.13" +"FETAL DIAGNOSIS AND THERAPY","1015-3837","1421-9964","OBSTETRICS & GYNECOLOGY","('SCIE',)","2,713","1.6","Q3","0.70","20.72" +"Geotechnical Research","2052-6156","2052-6156","ENGINEERING, GEOLOGICAL","('ESCI',)","284","1.6","Q3","0.70","97.62" +"OPTIMIZATION","0233-1934","1029-4945","('MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","3,145","1.6","('Q2', 'Q3')","0.70","2.73" +"Public Organization Review","1566-7170","1573-7098","PUBLIC ADMINISTRATION","('ESCI',)","839","1.6","Q3","0.70","20.55" +"Research in Psychotherapy-Psychopathology Process and Outcome","2239-8031","2239-8031","PSYCHOLOGY, CLINICAL","('ESCI',)","317","1.6","Q3","0.70","96.77" +"SMALL RUMINANT RESEARCH","0921-4488","1879-0941","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","7,402","1.6","Q2","0.70","16.84" +"STATISTICS AND COMPUTING","0960-3174","1573-1375","('COMPUTER SCIENCE, THEORY & METHODS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","6,486","1.6","('Q2', 'Q1')","0.70","48.80" +"BIT NUMERICAL MATHEMATICS","0006-3835","1572-9125","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,184","1.6","('Q3', 'Q2')","0.69","39.63" +"Journal of Manual & Manipulative Therapy","1066-9817","2042-6186","REHABILITATION","('ESCI',)","1,165","1.6","Q2","0.69","6.25" +"Journal of Politics in Latin America","1866-802X","1868-4890","POLITICAL SCIENCE","('ESCI',)","324","1.6","Q2","0.69","91.84" +"REPRODUCTION IN DOMESTIC ANIMALS","0936-6768","1439-0531","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'REPRODUCTIVE BIOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE', 'SCIE')","5,738","1.6","('Q2', 'Q4', 'Q2')","0.69","13.97" +"Social Justice Research","0885-7466","1573-6725","('PSYCHOLOGY, SOCIAL', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,477","1.6","('Q4', 'Q2')","0.69","50.79" +"Qualitative Report","1052-0147","2160-3715","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","5,295","1.6","Q2","0.68","96.84" +"Apunts Educacion Fisica y Deportes","1577-4015","2014-0983","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","641","1.6","Q2","0.67","96.40" +"INDUSTRIAL RELATIONS JOURNAL","0019-8692","1468-2338","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","597","1.6","Q2","0.67","47.78" +"OPTOMETRY AND VISION SCIENCE","1040-5488","1538-9235","OPHTHALMOLOGY","('SCIE',)","7,208","1.6","Q3","0.67","14.29" +"Scandinavian Actuarial Journal","0346-1238","1651-2030","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SCIE', 'SSCI', 'SCIE')","1,023","1.6","('Q3', 'Q2', 'Q1')","0.67","19.84" +"STATISTICAL METHODS IN MEDICAL RESEARCH","0962-2802","1477-0334","('HEALTH CARE SCIENCES & SERVICES', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'MEDICAL INFORMATICS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","7,594","1.6","('Q3', 'Q3', 'Q4', 'Q1')","0.67","23.88" +"JOURNAL OF FAMILY ISSUES","0192-513X","1552-5481","FAMILY STUDIES","('SSCI',)","5,146","1.6","Q2","0.66","16.78" +"Audiology and Neurotology","1420-3030","1421-9700","('AUDIOLOGY & SPEECH', 'NEUROSCIENCES', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,210","1.6","('Q2', 'Q4', 'Q2')","0.65","21.60" +"Journal of Aggression Maltreatment & Trauma","1092-6771","1545-083X","('CRIMINOLOGY & PENOLOGY', 'FAMILY STUDIES', 'PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","2,153","1.6","('Q2', 'Q2', 'Q3', 'Q3')","0.65","6.96" +"Journal of Anthropological Sciences","1827-4765","2037-0644","ANTHROPOLOGY","('SSCI',)","327","1.6","Q1","0.65","0.00" +"Monash Bioethics Review","1321-2753","1836-6716","ETHICS","('ESCI',)","225","1.6","Q2","0.65","42.86" +"PHYSIOLOGICAL ENTOMOLOGY","0307-6962","1365-3032","ENTOMOLOGY","('SCIE',)","1,847","1.6","Q2","0.65","26.98" +"Politics Philosophy & Economics","1470-594X","1741-3060","('ETHICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","495","1.6","('Q2', 'Q2')","0.65","45.31" +"Australasian Accounting Business and Finance Journal","1834-2000","1834-2019","BUSINESS, FINANCE","('ESCI',)","625","1.6","Q3","0.64","27.46" +"Clinical Spine Surgery","2380-0186","2380-0186","('CLINICAL NEUROLOGY', 'ORTHOPEDICS')","('SCIE', 'SCIE')","2,554","1.6","('Q3', 'Q3')","0.64","4.81" +"Journal of Child and Family Studies","1062-1024","1573-2843","('FAMILY STUDIES', 'PSYCHIATRY', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI', 'SSCI')","8,941","1.6","('Q2', 'Q3', 'Q3')","0.64","22.84" +"Journal of Information Communication & Ethics in Society","1477-996X","1758-8871","ETHICS","('ESCI',)","453","1.6","Q2","0.64","10.23" +"Journal of Patient-Centered Research and Reviews","2330-068X","2330-0698","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","337","1.6","Q3","0.64","95.45" +"PLANT PRODUCTION SCIENCE","1343-943X","1349-1008","AGRONOMY","('SCIE',)","2,050","1.6","Q2","0.64","96.81" +"Australasian Journal of Early Childhood","1836-9391","1839-5961","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","866","1.6","Q2","0.63","27.78" +"CHILDHOOD-A GLOBAL JOURNAL OF CHILD RESEARCH","0907-5682","1461-7013","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","1,704","1.6","Q2","0.63","45.74" +"JOURNAL OF OBSTETRICS AND GYNAECOLOGY RESEARCH","1341-8076","1447-0756","OBSTETRICS & GYNECOLOGY","('SCIE',)","6,301","1.6","Q3","0.63","7.77" +"JOURNAL OF OPTIMIZATION THEORY AND APPLICATIONS","0022-3239","1573-2878","('MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","7,598","1.6","('Q2', 'Q3')","0.63","21.80" +"AIDS EDUCATION AND PREVENTION","0899-9546","1943-2755","('EDUCATION & EDUCATIONAL RESEARCH', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","1,243","1.6","('Q2', 'Q3')","0.62","0.00" +"Cogent Psychology","2331-1908","2331-1908","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","1,039","1.6","Q2","0.62","97.97" +"International Journal of Dental Hygiene","1601-5029","1601-5037","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,472","1.6","Q3","0.62","22.52" +"JOURNAL OF COLLEGE STUDENT DEVELOPMENT","0897-5264","1543-3382","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","3,537","1.6","('Q2', 'Q3')","0.62","0.00" +"JOURNAL OF PAEDIATRICS AND CHILD HEALTH","1034-4810","1440-1754","PEDIATRICS","('SCIE',)","5,641","1.6","Q2","0.62","19.30" +"MATHEMATICAL FINANCE","0960-1627","1467-9965","('BUSINESS, FINANCE', 'ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI', 'SCIE', 'SSCI')","2,204","1.6","('Q3', 'Q2', 'Q3', 'Q2')","0.62","37.93" +"Psyche-A Journal of Entomology","0033-2615","1687-7438","ENTOMOLOGY","('ESCI',)","323","1.6","Q2","0.62","100.00" +"Dermatopathology","2296-3529","2296-3529","DERMATOLOGY","('ESCI',)","287","1.6","Q3","0.61","99.27" +"ECOLOGY OF FRESHWATER FISH","0906-6691","1600-0633","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","2,328","1.6","('Q3', 'Q2')","0.61","27.67" +"European Endodontic Journal","2548-0839","2548-0839","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","418","1.6","Q3","0.61","81.58" +"HUMAN MOVEMENT SCIENCE","0167-9457","1872-7646","('NEUROSCIENCES', 'PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SSCI', 'SCIE')","5,486","1.6","('Q4', 'Q3', 'Q3', 'Q3')","0.61","23.15" +"International Journal of Occupational Safety and Ergonomics","1080-3548","2376-9130","('ERGONOMICS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","2,318","1.6","('Q3', 'Q3')","0.61","7.43" +"International Journal of Older People Nursing","1748-3735","1748-3743","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY', 'NURSING')","('SCIE', 'SSCI', 'SCIE, SSCI')","1,203","1.6","('Q4', 'Q3', 'Q2')","0.61","42.11" +"Knowledge and Management of Aquatic Ecosystems","1961-9502","1961-9502","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","978","1.6","('Q3', 'Q2')","0.61","97.70" +"PLASMA SCIENCE & TECHNOLOGY","1009-0630","2058-6272","PHYSICS, FLUIDS & PLASMAS","('SCIE',)","2,927","1.6","Q3","0.61","0.48" +"Science Editing","2288-7474","2288-8063","COMMUNICATION","('ESCI',)","271","1.6","Q2","0.61","98.46" +"Womens Health Reports","","2688-4844","OBSTETRICS & GYNECOLOGY","('ESCI',)","407","1.6","Q3","0.61","97.71" +"Applied Radiation and Isotopes","0969-8043","1872-9800","('CHEMISTRY, INORGANIC & NUCLEAR', 'NUCLEAR SCIENCE & TECHNOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","9,886","1.6","('Q3', 'Q2', 'Q3')","0.60","12.28" +"Geriatric Orthopaedic Surgery & Rehabilitation","2151-4585","2151-4593","('GERIATRICS & GERONTOLOGY', 'ORTHOPEDICS', 'REHABILITATION', 'SURGERY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,125","1.6","('Q4', 'Q3', 'Q2', 'Q2')","0.60","88.07" +"INTERNATIONAL JOURNAL OF MASS SPECTROMETRY","1387-3806","1873-2798","('PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE')","6,158","1.6","('Q3', 'Q3')","0.60","28.23" +"TRANSITION METAL CHEMISTRY","0340-4285","1572-901X","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","1,894","1.6","Q3","0.60","1.64" +"Action Research","1476-7503","1741-2617","('MANAGEMENT', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","865","1.6","('Q3', 'Q2')","0.59","23.38" +"Anthropocene Coasts","","2561-4150","('ENVIRONMENTAL SCIENCES', 'OCEANOGRAPHY')","('ESCI', 'ESCI')","209","1.6","('Q4', 'Q3')","0.59","97.67" +"BEHAVIORAL NEUROSCIENCE","0735-7044","1939-0084","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES')","('SCIE', 'SCIE')","4,640","1.6","('Q3', 'Q4')","0.59","10.83" +"Journal of Ophthalmic & Vision Research","2008-2010","2008-322X","OPHTHALMOLOGY","('ESCI',)","1,336","1.6","Q3","0.59","98.51" +"Obstetrics and Gynecology International","1687-9589","1687-9597","OBSTETRICS & GYNECOLOGY","('ESCI',)","833","1.6","Q3","0.59","98.51" +"Spine Deformity","2212-134X","2212-1358","('CLINICAL NEUROLOGY', 'ORTHOPEDICS')","('ESCI', 'ESCI')","2,147","1.6","('Q3', 'Q3')","0.59","12.52" +"Anesthesiology Research and Practice","1687-6962","1687-6970","ANESTHESIOLOGY","('ESCI',)","460","1.6","Q2","0.58","100.00" +"IMA JOURNAL OF MATHEMATICAL CONTROL AND INFORMATION","0265-0754","1471-6887","('AUTOMATION & CONTROL SYSTEMS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","904","1.6","('Q3', 'Q2')","0.58","4.23" +"Journal of Cognition and Development","1524-8372","1532-7647","('PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","1,648","1.6","('Q3', 'Q3')","0.58","15.04" +"ONCOLOGY NURSING FORUM","0190-535X","1538-0688","('NURSING', 'ONCOLOGY')","('SCIE, SSCI', 'SCIE')","3,670","1.6","('Q2', 'Q4')","0.58","0.66" +"Transnational Corporations Review","1918-6444","1925-2099","('BUSINESS', 'ECONOMICS')","('ESCI', 'ESCI')","509","1.6","('Q3', 'Q2')","0.58","23.16" +"Asian Journal of Agriculture and Biology","2307-8553","2307-8553","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","376","1.6","Q2","0.57","97.08" +"Current Anesthesiology Reports","","2167-6275","ANESTHESIOLOGY","('ESCI',)","475","1.6","Q2","0.57","18.45" +"HIGH ALTITUDE MEDICINE & BIOLOGY","1527-0297","1557-8682","('BIOPHYSICS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","1,529","1.6","('Q4', 'Q3', 'Q3')","0.57","8.40" +"JOURNAL OF CONTEMPORARY ETHNOGRAPHY","0891-2416","1552-5414","('SOCIOLOGY', 'URBAN STUDIES')","('SSCI', 'SSCI')","1,511","1.6","('Q2', 'Q3')","0.57","32.98" +"Behavior and Social Issues","1064-9506","2376-6786","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","362","1.6","Q2","0.56","7.92" +"Health Services and Outcomes Research Methodology","1387-3741","1572-9400","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","592","1.6","Q3","0.56","22.09" +"Health Services Management Research","0951-4848","1758-1044","HEALTH POLICY & SERVICES","('ESCI',)","571","1.6","Q3","0.56","16.87" +"IEEE TRANSACTIONS ON PROFESSIONAL COMMUNICATION","0361-1434","1558-1500","COMMUNICATION","('SSCI',)","1,018","1.6","Q2","0.56","4.88" +"JOURNAL OF CUTANEOUS PATHOLOGY","0303-6987","1600-0560","('DERMATOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","4,277","1.6","('Q3', 'Q3')","0.56","11.09" +"JOURNAL OF DAIRY RESEARCH","0022-0299","1469-7629","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","3,510","1.6","('Q2', 'Q3')","0.56","25.25" +"CHILD NEUROPSYCHOLOGY","0929-7049","1744-4136","CLINICAL NEUROLOGY","('SCIE',)","2,721","1.6","Q3","0.55","17.91" +"Critical Finance Review","2164-5744","2164-5760","BUSINESS, FINANCE","('ESCI',)","271","1.6","Q3","0.55","0.00" +"Cutaneous and Ocular Toxicology","1556-9527","1556-9535","('OPHTHALMOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","1,007","1.6","('Q3', 'Q4')","0.55","5.04" +"International Journal of System Assurance Engineering and Management","0975-6809","0976-4348","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","2,566","1.6","Q2","0.55","2.12" +"KOREAN JOURNAL OF PHYSIOLOGY & PHARMACOLOGY","1226-4512","2093-3827","('PHARMACOLOGY & PHARMACY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","1,431","1.6","('Q3', 'Q4')","0.55","100.00" +"Minerva Obstetrics and Gynecology","2724-606X","2724-6450","OBSTETRICS & GYNECOLOGY","('ESCI',)","317","1.6","Q3","0.55","0.38" +"NEUROGENETICS","1364-6745","1364-6753","('CLINICAL NEUROLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","1,132","1.6","('Q3', 'Q3')","0.55","24.74" +"NJAS-Impact in Agricultural and Life Sciences","","2768-5241","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","40","1.6","Q2","0.55","100.00" +"Agrekon","0303-1853","2078-0400","AGRICULTURAL ECONOMICS & POLICY","('SCIE',)","597","1.6","Q2","0.54","16.00" +"Anaesthesiology Intensive Therapy","1642-5758","1731-2531","ANESTHESIOLOGY","('ESCI',)","853","1.6","Q2","0.54","99.31" +"EUPHYTICA","0014-2336","1573-5060","('AGRONOMY', 'HORTICULTURE', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","11,323","1.6","('Q2', 'Q2', 'Q3')","0.54","14.90" +"Frontiers in Health Services","","2813-0146","('HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","278","1.6","('Q3', 'Q3')","0.54","100.00" +"German Journal of Exercise and Sport Research","2509-3142","2509-3150","SPORT SCIENCES","('ESCI',)","535","1.6","Q3","0.54","83.62" +"HOLOCENE","0959-6836","1477-0911","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","6,597","1.6","('Q3', 'Q3')","0.54","19.14" +"International Journal of Applied Mathematics and Computer Science","1641-876X","2083-8492","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","1,085","1.6","('Q3', 'Q4', 'Q2')","0.54","0.00" +"JOURNAL OF EMPLOYMENT COUNSELING","0022-0787","2161-1920","PSYCHOLOGY, APPLIED","('SSCI',)","456","1.6","Q3","0.54","12.24" +"MARINE GEOPHYSICAL RESEARCH","0025-3235","1573-0581","('GEOCHEMISTRY & GEOPHYSICS', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","1,461","1.6","('Q3', 'Q3')","0.54","22.22" +"SOCIAL DEVELOPMENT","0961-205X","1467-9507","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","3,700","1.6","Q3","0.54","31.07" +"GENETIC RESOURCES AND CROP EVOLUTION","0925-9864","1573-5109","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","4,930","1.6","('Q2', 'Q3')","0.53","10.37" +"International Journal of Sports Physical Therapy","2159-2896","2159-2896","SPORT SCIENCES","('ESCI',)","2,782","1.6","Q3","0.53","95.51" +"Journal of Agricultural and Applied Economics","1074-0708","2056-7405","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('ESCI', 'ESCI')","953","1.6","('Q2', 'Q2')","0.53","83.08" +"Journal of Public Health Research","2279-9028","2279-9036","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","1,279","1.6","Q3","0.53","89.52" +"Medical Mycology Case Reports","2211-7539","2211-7539","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","652","1.6","Q3","0.53","90.20" +"SPORT PSYCHOLOGIST","0888-4781","1543-2793","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY', 'PSYCHOLOGY, APPLIED', 'SPORT SCIENCES')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","1,865","1.6","('Q3', 'Q3', 'Q3', 'Q3')","0.53","2.33" +"ACTA CYTOLOGICA","0001-5547","1938-2650","PATHOLOGY","('SCIE',)","2,188","1.6","Q3","0.52","12.21" +"AGING NEUROPSYCHOLOGY AND COGNITION","1382-5585","1744-4128","('PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SSCI')","1,655","1.6","('Q3', 'Q3')","0.52","15.71" +"AMERICAN JOURNAL OF MEDICAL GENETICS PART B-NEUROPSYCHIATRIC GENETICS","1552-4841","1552-485X","('GENETICS & HEREDITY', 'PSYCHIATRY')","('SCIE', 'SCIE')","2,905","1.6","('Q3', 'Q3')","0.52","40.66" +"Anatolia-International Journal of Tourism and Hospitality Research","1303-2917","2156-6909","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,350","1.6","Q3","0.52","9.09" +"Interactive Cardiovascular and Thoracic Surgery","1569-9293","1569-9285","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RESPIRATORY SYSTEM', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","6,066","1.6","('Q3', 'Q3', 'Q2')","0.52","52.64" +"Journal of Emerging Technologies in Accounting","1554-1908","1558-7940","BUSINESS, FINANCE","('ESCI',)","636","1.6","Q3","0.52","0.00" +"OSA Continuum","","2578-7519","OPTICS","('ESCI',)","1,439","1.6","Q3","0.52","99.64" +"TEXTILE RESEARCH JOURNAL","0040-5175","1746-7748","MATERIALS SCIENCE, TEXTILES","('SCIE',)","9,781","1.6","Q2","0.52","5.73" +"BEHAVIOURAL PHARMACOLOGY","0955-8810","1473-5849","('BEHAVIORAL SCIENCES', 'NEUROSCIENCES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","2,290","1.6","('Q3', 'Q4', 'Q3')","0.51","1.23" +"Innovations-Technology and Techniques in Cardiothoracic and Vascular Surgery","1556-9845","1559-0879","SURGERY","('ESCI',)","1,265","1.6","Q2","0.51","9.28" +"Journal of Behavioral and Experimental Economics","2214-8043","2214-8051","ECONOMICS","('SSCI',)","1,538","1.6","Q2","0.51","31.15" +"JOURNAL OF CLINICAL PSYCHOLOGY IN MEDICAL SETTINGS","1068-9583","1573-3572","PSYCHOLOGY, CLINICAL","('SSCI',)","1,679","1.6","Q3","0.51","16.74" +"Journal of Wine Economics","1931-4361","1931-437X","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SSCI', 'SCIE')","566","1.6","('Q2', 'Q2', 'Q3')","0.51","59.65" +"NETHERLANDS JOURNAL OF GEOSCIENCES-GEOLOGIE EN MIJNBOUW","0016-7746","1573-9708","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","587","1.6","Q3","0.51","100.00" +"PHYCOLOGICAL RESEARCH","1322-0829","1440-1835","MARINE & FRESHWATER BIOLOGY","('SCIE',)","900","1.6","Q2","0.51","8.82" +"Sport Ethics and Philosophy","1751-1321","1751-133X","ETHICS","('ESCI',)","525","1.6","Q2","0.51","29.35" +"BOTANICA MARINA","0006-8055","1437-4323","('MARINE & FRESHWATER BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","2,400","1.6","('Q2', 'Q3')","0.50","13.39" +"COMBINATORIAL CHEMISTRY & HIGH THROUGHPUT SCREENING","1386-2073","1875-5402","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, APPLIED', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","2,220","1.6","('Q4', 'Q3', 'Q3')","0.50","3.62" +"DEFENCE AND PEACE ECONOMICS","1024-2694","1476-8267","ECONOMICS","('SSCI',)","1,437","1.6","Q2","0.50","16.04" +"Journal of Optics-India","0972-8821","0974-6900","OPTICS","('ESCI',)","1,349","1.6","Q3","0.50","1.18" +"MYCOBIOLOGY","1229-8093","2092-9323","('AGRONOMY', 'MYCOLOGY')","('SCIE', 'SCIE')","1,856","1.6","('Q2', 'Q4')","0.50","95.27" +"Occupational Health Science","2367-0134","2367-0142","('PSYCHOLOGY, APPLIED', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","299","1.6","('Q3', 'Q3')","0.50","24.72" +"PHLEBOLOGY","0268-3555","1758-1125","PERIPHERAL VASCULAR DISEASE","('SCIE',)","1,880","1.6","Q3","0.50","9.13" +"PLANT BIOSYSTEMS","1126-3504","1724-5575","PLANT SCIENCES","('SCIE',)","2,897","1.6","Q3","0.50","4.05" +"Spatial Cognition and Computation","1387-5868","1542-7633","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","473","1.6","Q3","0.50","17.65" +"Urban Policy and Research","0811-1146","1476-7244","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'REGIONAL & URBAN PLANNING', 'URBAN STUDIES')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","856","1.6","('Q4', 'Q2', 'Q4', 'Q3')","0.50","20.00" +"ARTIFICIAL LIFE","1064-5462","1530-9185","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","839","1.6","('Q4', 'Q2')","0.49","19.12" +"Cardiovascular Revascularization Medicine","1553-8389","1878-0938","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","2,555","1.6","Q3","0.49","11.27" +"CEREAL RESEARCH COMMUNICATIONS","0133-3720","1788-9170","AGRONOMY","('SCIE',)","1,701","1.6","Q2","0.49","9.97" +"Facilities","0263-2772","1758-7131","MANAGEMENT","('ESCI',)","1,587","1.6","Q3","0.49","15.09" +"International Journal of Reproductive Biomedicine","2476-4108","2476-3772","OBSTETRICS & GYNECOLOGY","('ESCI',)","1,420","1.6","Q3","0.49","98.14" +"JOURNAL OF ADDICTIVE DISEASES","1055-0887","1545-0848","SUBSTANCE ABUSE","('SSCI',)","1,350","1.6","Q3","0.49","8.47" +"Journal of Biomedical Semantics","2041-1480","2041-1480","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('SCIE',)","728","1.6","Q3","0.49","100.00" +"PERCEPTION","0301-0066","1468-4233","('OPHTHALMOLOGY', 'PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI')","4,711","1.6","('Q3', 'Q3', 'Q3')","0.49","27.51" +"Urban Water Journal","1573-062X","1744-9006","WATER RESOURCES","('SCIE',)","3,075","1.6","Q3","0.49","16.46" +"Journal of Agriculture Food Systems and Community Development","2152-0798","2152-0801","('AGRICULTURAL ECONOMICS & POLICY', 'DEVELOPMENT STUDIES')","('ESCI', 'ESCI')","909","1.6","('Q2', 'Q3')","0.48","99.35" +"JOURNAL OF ELDER ABUSE & NEGLECT","0894-6566","1540-4129","GERONTOLOGY","('SSCI',)","586","1.6","Q3","0.48","15.79" +"LIBRARY QUARTERLY","0024-2519","1549-652X","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","660","1.6","Q2","0.48","0.00" +"REVIEW OF SOCIAL ECONOMY","0034-6764","1470-1162","ECONOMICS","('ESCI',)","681","1.6","Q2","0.48","30.77" +"Toxicological Research","1976-8257","2234-2753","TOXICOLOGY","('SCIE',)","1,336","1.6","Q4","0.48","16.08" +"Animal Reproduction","1806-9614","1984-3143","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,192","1.6","Q2","0.47","90.17" +"Canadian Journal of Kidney Health and Disease","","2054-3581","UROLOGY & NEPHROLOGY","('ESCI',)","1,052","1.6","Q3","0.47","94.66" +"Earth Interactions","","1087-3562","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","921","1.6","Q3","0.47","88.64" +"European Journal of Hospital Pharmacy","2047-9956","2047-9964","PHARMACOLOGY & PHARMACY","('SCIE',)","1,268","1.6","Q3","0.47","13.67" +"IEEE INSTRUMENTATION & MEASUREMENT MAGAZINE","1094-6969","1941-0123","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","1,152","1.6","('Q3', 'Q3')","0.47","0.00" +"INDIAN JOURNAL OF PHYSICS","0973-1458","0974-9845","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","3,729","1.6","Q2","0.47","3.04" +"INTERNATIONAL JOURNAL OF NUMERICAL MODELLING-ELECTRONIC NETWORKS DEVICES AND FIELDS","0894-3370","1099-1204","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","1,214","1.6","('Q3', 'Q3')","0.47","5.63" +"JOURNAL OF NERVOUS AND MENTAL DISEASE","0022-3018","1539-736X","('CLINICAL NEUROLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE, SSCI')","7,886","1.6","('Q3', 'Q3')","0.47","3.83" +"Journal of Patient Experience","2374-3743","2374-3735","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","1,432","1.6","Q3","0.47","91.50" +"JOURNAL OF PLANT NUTRITION","0190-4167","1532-4087","PLANT SCIENCES","('SCIE',)","8,439","1.6","Q3","0.47","1.88" +"SABRAO Journal of Breeding and Genetics","1029-7073","2224-8978","PLANT SCIENCES","('ESCI',)","830","1.6","Q3","0.47","0.00" +"AMERICAN JOURNAL OF CLINICAL ONCOLOGY-CANCER CLINICAL TRIALS","0277-3732","1537-453X","ONCOLOGY","('SCIE',)","4,483","1.6","Q4","0.46","9.84" +"BMC Research Notes","","1756-0500","MULTIDISCIPLINARY SCIENCES","('ESCI',)","14,827","1.6","Q2","0.46","99.74" +"DEVELOPMENTAL NEUROPSYCHOLOGY","8756-5641","1532-6942","('PSYCHOLOGY', 'PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI', 'SSCI')","2,770","1.6","('Q3', 'Q3', 'Q3')","0.46","20.69" +"European Journal of Medical Genetics","1769-7212","1878-0849","GENETICS & HEREDITY","('SCIE',)","3,332","1.6","Q3","0.46","29.31" +"EXPERIMENTAL AND CLINICAL ENDOCRINOLOGY & DIABETES","0947-7349","1439-3646","ENDOCRINOLOGY & METABOLISM","('SCIE',)","3,335","1.6","Q4","0.46","8.06" +"Health Promotion Practice","1524-8399","1552-6372","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","3,633","1.6","Q3","0.46","12.97" +"High Energy Density Physics","1574-1818","1878-0563","PHYSICS, FLUIDS & PLASMAS","('SCIE',)","811","1.6","Q3","0.46","48.84" +"International Journal on Digital Libraries","1432-5012","1432-1300","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","452","1.6","Q2","0.46","45.35" +"Journal of Eastern European and Central Asian Research","2328-8272","2328-8280","('BUSINESS', 'ECONOMICS')","('ESCI', 'ESCI')","368","1.6","('Q3', 'Q2')","0.46","85.54" +"Journal of Low Power Electronics and Applications","","2079-9268","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","432","1.6","Q3","0.46","100.00" +"JOURNAL OF SEISMOLOGY","1383-4649","1573-157X","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","2,035","1.6","Q3","0.46","27.04" +"Journal of Thermal Science and Engineering Applications","1948-5085","1948-5093","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","1,811","1.6","('Q3', 'Q3')","0.46","0.37" +"Lymphatic Research and Biology","1539-6851","1557-8585","('MEDICINE, RESEARCH & EXPERIMENTAL', 'PHYSIOLOGY')","('SCIE', 'SCIE')","1,316","1.6","('Q3', 'Q4')","0.46","17.26" +"PACIFIC CONSERVATION BIOLOGY","1038-2097","2204-4604","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('ESCI', 'ESCI')","961","1.6","('Q3', 'Q3')","0.46","44.92" +"TOWN PLANNING REVIEW","0041-0020","1478-341X","URBAN STUDIES","('ESCI',)","1,155","1.6","Q3","0.46","15.25" +"ASSAY AND DRUG DEVELOPMENT TECHNOLOGIES","1540-658X","1557-8127","('BIOCHEMICAL RESEARCH METHODS', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,298","1.6","('Q4', 'Q3')","0.45","2.04" +"ATMOSPHERE-OCEAN","0705-5900","1480-9214","('METEOROLOGY & ATMOSPHERIC SCIENCES', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","1,252","1.6","('Q4', 'Q3')","0.45","43.21" +"Birth Defects Research","2472-1727","2472-1727","('DEVELOPMENTAL BIOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","1,993","1.6","('Q4', 'Q4')","0.45","20.65" +"CANADIAN JOURNAL OF PLANT PATHOLOGY","0706-0661","1715-2992","PLANT SCIENCES","('SCIE',)","2,185","1.6","Q3","0.45","25.00" +"CELESTIAL MECHANICS & DYNAMICAL ASTRONOMY","0923-2958","1572-9478","('ASTRONOMY & ASTROPHYSICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","2,977","1.6","('Q3', 'Q3')","0.45","32.73" +"Central European Public Administration Review","2591-2240","2591-2259","PUBLIC ADMINISTRATION","('ESCI',)","81","1.6","Q3","0.45","18.18" +"CULTURAL GEOGRAPHIES","1474-4740","1477-0881","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY')","('SSCI', 'SSCI')","1,609","1.6","('Q4', 'Q2')","0.45","46.09" +"HEAT TRANSFER ENGINEERING","0145-7632","1521-0537","('ENGINEERING, MECHANICAL', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","4,251","1.6","('Q3', 'Q3', 'Q3')","0.45","7.04" +"IEEE PERVASIVE COMPUTING","1536-1268","1558-2590","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE')","1,681","1.6","('Q3', 'Q3', 'Q3')","0.45","17.48" +"International Journal of Industrial Engineering Computations","1923-2926","1923-2934","('ENGINEERING, INDUSTRIAL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","1,006","1.6","('Q4', 'Q3')","0.45","97.96" +"IRRIGATION AND DRAINAGE","1531-0353","1531-0361","('AGRONOMY', 'WATER RESOURCES')","('SCIE', 'SCIE')","2,258","1.6","('Q2', 'Q3')","0.45","6.01" +"JOURNAL OF NEAR INFRARED SPECTROSCOPY","0967-0335","1751-6552","('CHEMISTRY, APPLIED', 'SPECTROSCOPY')","('SCIE', 'SCIE')","1,331","1.6","('Q3', 'Q3')","0.45","7.61" +"Journal of Signal Processing Systems for Signal Image and Video Technology","1939-8018","1939-8115","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","1,215","1.6","('Q3', 'Q3')","0.45","20.22" +"PLANT MOLECULAR BIOLOGY REPORTER","0735-9640","1572-9818","('BIOCHEMICAL RESEARCH METHODS', 'PLANT SCIENCES')","('SCIE', 'SCIE')","3,333","1.6","('Q4', 'Q3')","0.45","9.88" +"SOUTH AFRICAN JOURNAL OF ECONOMICS","0038-2280","1813-6982","ECONOMICS","('SSCI',)","665","1.6","Q2","0.45","29.58" +"SYNAPSE","0887-4476","1098-2396","NEUROSCIENCES","('SCIE',)","2,673","1.6","Q4","0.45","11.48" +"Traffic Injury Prevention","1538-9588","1538-957X","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TRANSPORTATION')","('SCIE, SSCI', 'SSCI')","3,771","1.6","('Q3', 'Q4')","0.45","13.49" +"CLINICAL EEG AND NEUROSCIENCE","1550-0594","2169-5202","('CLINICAL NEUROLOGY', 'NEUROIMAGING', 'NEUROSCIENCES', 'PSYCHIATRY', 'PSYCHOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","1,483","1.6","('Q3', 'Q4', 'Q4', 'Q3', 'Q3')","0.44","8.88" +"Conservation & Society","0972-4923","0975-3133","ENVIRONMENTAL STUDIES","('SSCI',)","1,310","1.6","Q4","0.44","27.85" +"ECONOMICA","0013-0427","1468-0335","ECONOMICS","('SSCI',)","2,896","1.6","Q2","0.44","44.36" +"Journal of Clinical Medicine Research-Canada","1918-3003","1918-3011","MEDICINE, GENERAL & INTERNAL","('ESCI',)","556","1.6","Q2","0.44","98.32" +"Journal of Electromagnetic Engineering and Science","2671-7255","2671-7263","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","457","1.6","Q3","0.44","97.73" +"NEUROREPORT","0959-4965","1473-558X","NEUROSCIENCES","('SCIE',)","10,481","1.6","Q4","0.44","18.49" +"SCANDINAVIAN JOURNAL OF GASTROENTEROLOGY","0036-5521","1502-7708","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","9,013","1.6","Q3","0.44","28.23" +"ANALYTICAL LETTERS","0003-2719","1532-236X","CHEMISTRY, ANALYTICAL","('SCIE',)","5,001","1.6","Q3","0.43","1.05" +"Biointerphases","1934-8630","1559-4106","('BIOPHYSICS', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","1,791","1.6","('Q4', 'Q4')","0.43","19.01" +"Ethnobiology and Conservation","2238-4782","2238-4782","BIODIVERSITY CONSERVATION","('ESCI',)","340","1.6","Q3","0.43","13.33" +"Journal of Mind and Medical Sciences","2392-7674","2392-7674","MEDICINE, GENERAL & INTERNAL","('ESCI',)","218","1.6","Q2","0.43","99.17" +"Journal of Transport and Land Use","1938-7849","1938-7849","TRANSPORTATION","('SSCI',)","1,281","1.6","Q4","0.43","97.44" +"Practice Periodical on Structural Design and Construction","1084-0680","1943-5576","ENGINEERING, CIVIL","('ESCI',)","1,047","1.6","Q3","0.43","1.01" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART J-JOURNAL OF ENGINEERING TRIBOLOGY","1350-6501","2041-305X","ENGINEERING, MECHANICAL","('SCIE',)","3,645","1.6","Q3","0.43","3.48" +"Zdravstveno Varstvo","0351-0026","1854-2476","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","362","1.6","Q3","0.43","96.67" +"ANTICANCER RESEARCH","0250-7005","1791-7530","ONCOLOGY","('SCIE',)","21,152","1.6","Q4","0.42","20.51" +"AUSTRAL ECOLOGY","1442-9985","1442-9993","ECOLOGY","('SCIE',)","4,461","1.6","Q3","0.42","27.34" +"GEMS & GEMOLOGY","0016-626X","2376-4473","MINERALOGY","('SCIE',)","769","1.6","Q2","0.42","87.50" +"Genes & Genomics","1976-9571","2092-9293","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","1,727","1.6","('Q4', 'Q4', 'Q3')","0.42","11.32" +"Information Security Journal","1939-3555","1939-3547","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","522","1.6","Q3","0.42","5.50" +"International Journal of E-Planning Research","2160-9918","2160-9926","REGIONAL & URBAN PLANNING","('ESCI',)","196","1.6","Q4","0.42","96.83" +"JOURNAL OF AMBULATORY CARE MANAGEMENT","0148-9917","1550-3267","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","691","1.6","Q3","0.42","11.24" +"Journal of Electrical Engineering & Technology","1975-0102","2093-7423","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","3,027","1.6","Q3","0.42","2.90" +"JOURNAL OF IMMUNOLOGICAL METHODS","0022-1759","1872-7905","('BIOCHEMICAL RESEARCH METHODS', 'IMMUNOLOGY')","('SCIE', 'SCIE')","9,827","1.6","('Q4', 'Q4')","0.42","30.26" +"NETWORKS & SPATIAL ECONOMICS","1566-113X","1572-9427","('OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","1,254","1.6","('Q3', 'Q3')","0.42","24.27" +"Organogenesis","1547-6278","1555-8592","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'DEVELOPMENTAL BIOLOGY', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE', 'SCIE')","1,113","1.6","('Q4', 'Q4', 'Q4')","0.42","65.52" +"Cardiovascular Engineering and Technology","1869-408X","1869-4098","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","1,042","1.6","('Q3', 'Q4')","0.41","24.08" +"CHEMOECOLOGY","0937-7409","1423-0445","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ECOLOGY')","('SCIE', 'SCIE')","1,181","1.6","('Q4', 'Q3')","0.41","26.79" +"CURRENT THERAPEUTIC RESEARCH-CLINICAL AND EXPERIMENTAL","0011-393X","1879-0313","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","901","1.6","Q3","0.41","97.87" +"Journal of Clinical Virology Plus","2667-0380","2667-0380","('INFECTIOUS DISEASES', 'VIROLOGY')","('ESCI', 'ESCI')","191","1.6","('Q4', 'Q4')","0.41","97.87" +"Journal of Geophysics and Engineering","1742-2132","1742-2140","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","2,441","1.6","Q3","0.41","96.65" +"JOURNAL OF INTERVENTIONAL CARDIOLOGY","0896-4327","1540-8183","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,645","1.6","Q3","0.41","100.00" +"Journal of Medical and Biological Engineering","1609-0985","2199-4757","ENGINEERING, BIOMEDICAL","('SCIE',)","1,475","1.6","Q4","0.41","19.18" +"Journal of Property Investment & Finance","1463-578X","1470-2002","BUSINESS, FINANCE","('ESCI',)","712","1.6","Q3","0.41","5.32" +"Scientific Drilling","1816-8957","1816-3459","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","270","1.6","Q3","0.41","100.00" +"Transplant Immunology","0966-3274","1878-5492","('IMMUNOLOGY', 'TRANSPLANTATION')","('SCIE', 'SCIE')","1,456","1.6","('Q4', 'Q3')","0.41","10.92" +"Accounting Perspectives","1911-382X","1911-3838","BUSINESS, FINANCE","('ESCI',)","279","1.6","Q3","0.40","20.31" +"ACTA OPTICA SINICA","0253-2239","0253-2239","OPTICS","('ESCI',)","4,899","1.6","Q3","0.40","0.24" +"CHINESE JOURNAL OF GEOPHYSICS-CHINESE EDITION","0001-5733","0001-5733","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","7,606","1.6","Q3","0.40","0.00" +"ELECTRICAL ENGINEERING","0948-7921","1432-0487","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","2,563","1.6","Q3","0.40","6.12" +"Information and Computer Security","2056-4961","2056-4961","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","537","1.6","Q3","0.40","10.17" +"International Journal of Breast Cancer","2090-3170","2090-3189","ONCOLOGY","('ESCI',)","517","1.6","Q4","0.40","100.00" +"International Journal of Population Data Science (IJPDS)","","2399-4908","('HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","551","1.6","('Q3', 'Q3', 'Q2')","0.40","82.46" +"Journal of Micro-Bio Robotics","2194-6418","2194-6426","ROBOTICS","('ESCI',)","177","1.6","Q3","0.40","8.70" +"JOURNAL OF SENSORY STUDIES","0887-8250","1745-459X","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,945","1.6","Q3","0.40","20.85" +"MethodsX","","2215-0161","MULTIDISCIPLINARY SCIENCES","('ESCI',)","4,242","1.6","Q2","0.40","84.38" +"Middle East Fertility Society Journal","1110-5690","2090-3251","REPRODUCTIVE BIOLOGY","('ESCI',)","628","1.6","Q4","0.40","100.00" +"Revista Portuguesa de Cardiologia","0870-2551","0304-4750","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,296","1.6","Q3","0.40","98.82" +"WATER INTERNATIONAL","0250-8060","1941-1707","('ENGINEERING, CIVIL', 'WATER RESOURCES')","('SCIE', 'SCIE')","2,434","1.6","('Q3', 'Q3')","0.40","30.91" +"Chinese Journal of Urban and Environmental Studies","2345-7481","2345-752X","URBAN STUDIES","('ESCI',)","186","1.6","Q3","0.39","97.44" +"ELECTROMAGNETIC BIOLOGY AND MEDICINE","1536-8378","1536-8386","('BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","820","1.6","('Q3', 'Q4')","0.39","4.82" +"ISIJ INTERNATIONAL","0915-1559","1347-5460","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","13,900","1.6","Q2","0.39","98.52" +"Journal of Ocean Engineering and Marine Energy","2198-6444","2198-6452","('ENERGY & FUELS', 'ENGINEERING, OCEAN')","('ESCI', 'ESCI')","505","1.6","('Q4', 'Q3')","0.39","42.06" +"Journal of Public Mental Health","1746-5729","2042-8731","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","508","1.6","Q3","0.39","10.67" +"LICHENOLOGIST","0024-2829","1096-1135","('MYCOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","1,354","1.6","('Q4', 'Q3')","0.39","30.63" +"NeuroSci","","2673-4087","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('ESCI', 'ESCI')","148","1.6","('Q3', 'Q4')","0.39","100.00" +"Team Performance Management","1352-7592","1758-6860","MANAGEMENT","('ESCI',)","612","1.6","Q3","0.39","7.25" +"WETLANDS ECOLOGY AND MANAGEMENT","0923-4861","1572-9834","('ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE')","2,173","1.6","('Q4', 'Q3')","0.39","19.70" +"Archives of Endocrinology Metabolism","2359-3997","2359-4292","ENDOCRINOLOGY & METABOLISM","('SCIE',)","1,377","1.6","Q4","0.38","97.70" +"Asia Pacific Allergy","2233-8276","2233-8268","ALLERGY","('ESCI',)","688","1.6","Q3","0.38","96.26" +"INTERNATIONAL JOURNAL OF CONTROL","0020-7179","1366-5820","AUTOMATION & CONTROL SYSTEMS","('SCIE',)","8,417","1.6","Q3","0.38","2.80" +"JOURNAL OF INVASIVE CARDIOLOGY","1042-3931","1557-2501","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,947","1.6","Q3","0.38","0.00" +"Journal of Neuroscience Psychology and Economics","1937-321X","2151-318X","('ECONOMICS', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","398","1.6","('Q2', 'Q2')","0.38","2.13" +"MICROSYSTEM TECHNOLOGIES-MICRO-AND NANOSYSTEMS-INFORMATION STORAGE AND PROCESSING SYSTEMS","0946-7076","1432-1858","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,753","1.6","('Q3', 'Q4', 'Q4', 'Q3')","0.38","4.60" +"AQUATIC MICROBIAL ECOLOGY","0948-3055","1616-1564","('ECOLOGY', 'MARINE & FRESHWATER BIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,384","1.6","('Q3', 'Q2', 'Q4')","0.37","28.85" +"ARCTIC ANTARCTIC AND ALPINE RESEARCH","1523-0430","1938-4246","('ENVIRONMENTAL SCIENCES', 'GEOGRAPHY, PHYSICAL')","('SCIE', 'SCIE')","3,000","1.6","('Q4', 'Q3')","0.37","93.41" +"International Journal of Surgical Oncology","2090-1402","2090-1410","ONCOLOGY","('ESCI',)","416","1.6","Q4","0.37","100.00" +"Journal for Specialists in Group Work","0193-3922","1549-6295","PSYCHOLOGY, CLINICAL","('ESCI',)","437","1.6","Q3","0.37","3.70" +"Journal of Water Sanitation and Hygiene for Development","2043-9083","2408-9362","WATER RESOURCES","('SCIE',)","1,110","1.6","Q3","0.37","99.62" +"Jurnal Tribologi","2289-7232","2289-7232","ENGINEERING, MECHANICAL","('ESCI',)","309","1.6","Q3","0.37","0.00" +"MOLECULAR PHYSICS","0026-8976","1362-3028","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","13,771","1.6","('Q4', 'Q3')","0.37","11.76" +"NETWORKS","0028-3045","1097-0037","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","3,172","1.6","('Q4', 'Q3')","0.37","38.06" +"Qualitative Market Research","1352-2752","1758-7646","BUSINESS","('ESCI',)","1,508","1.6","Q3","0.37","7.45" +"Water Practice and Technology","","1751-231X","WATER RESOURCES","('ESCI',)","1,253","1.6","Q3","0.37","95.94" +"Canadian Geriatrics Journal","","1925-8348","GERIATRICS & GERONTOLOGY","('ESCI',)","547","1.6","Q4","0.36","88.68" +"Technology Innovation Management Review","1927-0321","1927-0321","MANAGEMENT","('ESCI',)","1,387","1.6","Q3","0.36","97.92" +"TRANSPORTATION RESEARCH RECORD","0361-1981","2169-4052","('ENGINEERING, CIVIL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","30,482","1.6","('Q3', 'Q3')","0.36","9.62" +"Collnet Journal of Scientometrics and Information Management","0973-7766","2168-930X","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","225","1.6","Q2","0.35","0.00" +"Iranian Journal of Medical Sciences","0253-0716","1735-3688","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,298","1.6","Q2","0.35","0.00" +"Journal of Advanced Concrete Technology","1346-8014","1347-3913","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","2,477","1.6","('Q3', 'Q3', 'Q4')","0.35","98.10" +"Journal of Aging Research","2090-2204","2090-2212","GERIATRICS & GERONTOLOGY","('ESCI',)","1,239","1.6","Q4","0.35","100.00" +"Journal of Human Capital","1932-8575","1932-8664","ECONOMICS","('SSCI',)","505","1.6","Q2","0.35","3.92" +"JOURNAL OF PLANT BIOCHEMISTRY AND BIOTECHNOLOGY","0971-7811","0974-1275","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","1,310","1.6","('Q4', 'Q3')","0.35","4.05" +"RADIO SCIENCE","0048-6604","1944-799X","('ASTRONOMY & ASTROPHYSICS', 'GEOCHEMISTRY & GEOPHYSICS', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'REMOTE SENSING', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","5,086","1.6","('Q3', 'Q3', 'Q4', 'Q3', 'Q3')","0.35","20.57" +"Revista Espanola de Medicina Nuclear e Imagen Molecular","2253-654X","","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","528","1.6","Q3","0.35","2.80" +"Romanian Journal of Internal Medicine","1582-3296","2501-062X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","554","1.6","Q2","0.35","99.17" +"Statistica","0390-590X","1973-2201","STATISTICS & PROBABILITY","('ESCI',)","379","1.6","Q1","0.35","0.00" +"Visitor Studies","1064-5578","1934-7715","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","360","1.6","Q3","0.35","30.77" +"CHINESE JOURNAL OF ELECTRONICS","1022-4653","2075-5597","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","1,245","1.6","Q3","0.34","24.46" +"IET Energy Systems Integration","","2516-8401","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('ESCI', 'ESCI')","317","1.6","('Q4', 'Q3')","0.34","76.98" +"International Journal of Innovation and Technology Management","0219-8770","1793-6950","MANAGEMENT","('ESCI',)","1,164","1.6","Q3","0.34","3.02" +"International Journal of Intelligent Engineering Informatics","1758-8715","1758-8723","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","202","1.6","Q3","0.34","0.00" +"MATERIALS AND CORROSION-WERKSTOFFE UND KORROSION","0947-5117","1521-4176","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","3,920","1.6","('Q4', 'Q2')","0.34","19.66" +"Toxicology and Environmental Health Sciences","2005-9752","2233-7784","('ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('ESCI', 'ESCI')","494","1.6","('Q4', 'Q4')","0.34","2.56" +"Communicable Diseases Intelligence","0725-3141","2209-6051","INFECTIOUS DISEASES","('ESCI',)","648","1.6","Q4","0.33","91.37" +"ECHOCARDIOGRAPHY-A JOURNAL OF CARDIOVASCULAR ULTRASOUND AND ALLIED TECHNIQUES","0742-2822","1540-8175","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","3,785","1.6","Q3","0.33","12.27" +"International Journal of Food Engineering","2194-5764","1556-3758","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,641","1.6","Q3","0.33","1.40" +"International Maritime Health","1641-9251","2081-3252","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","675","1.6","Q3","0.33","83.33" +"Iranian Journal of Biotechnology","1728-3043","1728-3043","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","730","1.6","Q4","0.33","0.00" +"JOURNAL OF IRRIGATION AND DRAINAGE ENGINEERING","0733-9437","1943-4774","('AGRICULTURAL ENGINEERING', 'ENGINEERING, CIVIL', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","3,916","1.6","('Q3', 'Q3', 'Q3')","0.33","3.86" +"Sensor Review","0260-2288","1758-6828","INSTRUMENTS & INSTRUMENTATION","('SCIE',)","1,221","1.6","Q3","0.33","6.43" +"Australian Journal of Civil Engineering","1448-8353","2204-2245","ENGINEERING, CIVIL","('ESCI',)","347","1.6","Q3","0.32","1.28" +"Canadian Pharmacists Journal","1715-1635","1913-701X","PHARMACOLOGY & PHARMACY","('ESCI',)","801","1.6","Q3","0.32","59.81" +"Central European Business Review","","1805-4862","BUSINESS","('ESCI',)","227","1.6","Q3","0.32","98.88" +"JOURNAL OF ENVIRONMENTAL ENGINEERING","0733-9372","1943-7870","('ENGINEERING, CIVIL', 'ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE')","5,504","1.6","('Q3', 'Q4', 'Q4')","0.32","3.89" +"Journal of Oleo Science","1345-8957","1347-3352","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","3,361","1.6","('Q3', 'Q3')","0.32","97.24" +"Journal of Superconductivity and Novel Magnetism","1557-1939","1557-1947","('PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","6,178","1.6","('Q3', 'Q3')","0.32","4.47" +"Biophysics and Physicobiology","","2189-4779","BIOPHYSICS","('ESCI',)","295","1.6","Q4","0.31","100.00" +"Electrical Engineering & Electromechanics","2074-272X","2309-3404","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","353","1.6","Q3","0.31","97.98" +"Journal of Gastrointestinal Cancer","1941-6628","1941-6636","ONCOLOGY","('ESCI',)","1,933","1.6","Q4","0.31","9.61" +"Organization Technology and Management in Construction","1847-5450","1847-6228","MANAGEMENT","('ESCI',)","193","1.6","Q3","0.31","100.00" +"SOIL & SEDIMENT CONTAMINATION","1532-0383","1549-7887","ENVIRONMENTAL SCIENCES","('SCIE',)","1,632","1.6","Q4","0.31","1.87" +"Advances in Astronomy","1687-7969","1687-7977","ASTRONOMY & ASTROPHYSICS","('SCIE',)","544","1.6","Q3","0.30","100.00" +"Aerosol Science and Engineering","2510-375X","2510-3768","ENVIRONMENTAL SCIENCES","('ESCI',)","282","1.6","Q4","0.30","8.80" +"AIMS Environmental Science","2372-0344","2372-0352","ENVIRONMENTAL SCIENCES","('ESCI',)","513","1.6","Q4","0.30","94.53" +"Future Cardiology","1479-6678","1744-8298","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","1,160","1.6","Q3","0.30","15.04" +"GROWTH HORMONE & IGF RESEARCH","1096-6374","1532-2238","('CELL BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","1,297","1.6","('Q4', 'Q4')","0.30","21.84" +"Italian Journal of Agrometeorology-Rivista Italiana di Agrometeorologia","2038-5625","2038-5625","('AGRONOMY', 'ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE')","169","1.6","('Q2', 'Q4', 'Q4')","0.30","90.48" +"Journal of Vascular Access","1129-7298","1724-6032","PERIPHERAL VASCULAR DISEASE","('SCIE',)","2,478","1.6","Q3","0.30","8.32" +"MICROELECTRONICS RELIABILITY","0026-2714","1872-941X","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","8,290","1.6","('Q3', 'Q4', 'Q3')","0.30","14.36" +"Preventive Nutrition and Food Science","2287-1098","2287-8602","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('ESCI', 'ESCI')","1,190","1.6","('Q3', 'Q4')","0.30","100.00" +"Systems Engineering","1098-1241","1520-6858","('ENGINEERING, INDUSTRIAL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","897","1.6","('Q4', 'Q3')","0.30","34.39" +"ACTA HISTOCHEMICA ET CYTOCHEMICA","0044-5991","1347-5800","CELL BIOLOGY","('SCIE',)","472","1.6","Q4","0.29","100.00" +"Nitrogen","","2504-3129","ENVIRONMENTAL SCIENCES","('ESCI',)","151","1.6","Q4","0.29","99.01" +"BIOTECHNIC & HISTOCHEMISTRY","1052-0295","1473-7760","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","1,770","1.6","('Q4', 'Q4')","0.28","2.68" +"Journal of Economics","0931-8658","1617-7134","ECONOMICS","('SSCI',)","1,143","1.6","Q2","0.28","29.67" +"JOURNAL OF THE CHINESE CHEMICAL SOCIETY","0009-4536","2192-6549","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","3,319","1.6","Q3","0.28","1.47" +"Transactions on Electrical and Electronic Materials","1229-7607","2092-7592","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","880","1.6","Q4","0.28","1.79" +"Bioelectricity","2576-3105","2576-3113","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ELECTROCHEMISTRY')","('ESCI', 'ESCI')","273","1.6","('Q4', 'Q4')","0.27","8.64" +"CANADIAN JOURNAL OF CHEMICAL ENGINEERING","0008-4034","1939-019X","ENGINEERING, CHEMICAL","('SCIE',)","8,069","1.6","Q3","0.27","9.43" +"THEORETICAL CHEMISTRY ACCOUNTS","1432-881X","1432-2234","CHEMISTRY, PHYSICAL","('SCIE',)","6,928","1.6","Q4","0.27","11.96" +"EUROPEAN PHYSICAL JOURNAL B","1434-6028","1434-6036","PHYSICS, CONDENSED MATTER","('SCIE',)","7,911","1.6","Q3","0.25","12.06" +"Reports of Biochemistry and Molecular Biology","2322-3480","2322-3480","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","655","1.6","Q4","0.25","50.23" +"SOUTHERN AFRICAN JOURNAL OF HIV MEDICINE","1608-9693","2078-6751","('INFECTIOUS DISEASES', 'VIROLOGY')","('SCIE', 'SCIE')","455","1.6","('Q4', 'Q4')","0.25","95.45" +"HIGH TEMPERATURE MATERIALS AND PROCESSES","0334-6455","2191-0324","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","1,274","1.6","Q4","0.24","98.14" +"SOFT MATERIALS","1539-445X","1539-4468","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","689","1.6","Q4","0.24","2.04" +"CHEMICAL AND BIOCHEMICAL ENGINEERING QUARTERLY","0352-9568","1846-5153","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","887","1.6","('Q4', 'Q3')","0.23","98.75" +"International Journal of Mycobacteriology","2212-5531","2212-554X","('INFECTIOUS DISEASES', 'MICROBIOLOGY')","('ESCI', 'ESCI')","933","1.6","('Q4', 'Q4')","0.23","78.17" +"JOURNAL OF THE CHILEAN CHEMICAL SOCIETY","0717-9707","0717-9707","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","1,409","1.6","Q3","0.23","38.89" +"Manufacturing Technology","1213-2489","2787-9402","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","911","1.6","('Q4', 'Q3', 'Q4')","0.23","100.00" +"SURFACE AND INTERFACE ANALYSIS","0142-2421","1096-9918","CHEMISTRY, PHYSICAL","('SCIE',)","7,998","1.6","Q4","0.22","13.16" +"Surface Science Spectra","1055-5269","1520-8575","PHYSICS, CONDENSED MATTER","('ESCI',)","1,157","1.6","Q3","0.22","10.68" +"Geomatik","","2564-6761","('GEOSCIENCES, MULTIDISCIPLINARY', 'REMOTE SENSING')","('ESCI', 'ESCI')","159","1.6","('Q3', 'Q3')","0.21","98.72" +"JOURNAL OF SURFACTANTS AND DETERGENTS","1097-3958","1558-9293","('CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE', 'SCIE')","2,596","1.6","('Q3', 'Q4', 'Q3')","0.21","6.48" +"Tribology-Materials Surfaces & Interfaces","1751-5831","1751-584X","MATERIALS SCIENCE, COATINGS & FILMS","('ESCI',)","448","1.6","Q4","0.20","1.64" +"Biosurface and Biotribology","2405-4518","2405-4518","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('ESCI', 'ESCI')","406","1.6","('Q4', 'Q4')","0.19","90.28" +"POLYMER SCIENCE SERIES C","1811-2382","1555-614X","POLYMER SCIENCE","('SCIE',)","305","1.6","Q4","0.14","4.92" +"Wireless Power Transfer","2052-8418","2052-8418","ENERGY & FUELS","('ESCI',)","117","1.6","Q4","0.13","100.00" +"International Journal of RF Technologies-Research and Applications","1754-5730","1754-5749","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","78","1.6","Q3","0.09","0.00" +"LIBRARY JOURNAL","0363-0277","","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","1,629","1.6","Q2","0.02","0.00" +"Theory and Practice of Legislation","2050-8840","2050-8859","LAW","('ESCI',)","197","1.5","Q1","2.95","19.15" +"Nan Nu-Men Women and Gender in China","1387-6805","1568-5268","ASIAN STUDIES","('AHCI',)","118","1.5","","2.67","7.41" +"Empirical Studies of the Arts","0276-2374","1541-4493","('HUMANITIES, MULTIDISCIPLINARY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('AHCI', 'SSCI')","543","1.5","('N/A', 'Q3')","2.50","16.44" +"Nations and Nationalism","1354-5078","1469-8129","('ETHNIC STUDIES', 'HISTORY', 'POLITICAL SCIENCE', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","1,879","1.5","('Q2', 'Q1', 'Q2', 'Q2')","2.21","36.13" +"Journal of Asian Public Policy","1751-6234","1751-6242","AREA STUDIES","('SSCI',)","438","1.5","Q1","2.01","5.49" +"Cliometrica","1863-2505","1863-2513","('ECONOMICS', 'HISTORY', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'AHCI, SSCI', 'SSCI')","337","1.5","('Q2', 'Q1', 'Q1')","1.95","47.37" +"REVIEW OF RELIGIOUS RESEARCH","0034-673X","2211-4866","('RELIGION', 'SOCIOLOGY')","('AHCI', 'SSCI')","943","1.5","('N/A', 'Q2')","1.89","12.82" +"Morphology","1871-5621","1871-5656","LANGUAGE & LINGUISTICS","('ESCI',)","349","1.5","","1.84","55.81" +"German Law Journal","","2071-8322","LAW","('ESCI',)","1,034","1.5","Q1","1.73","100.00" +"International Journal of Cultural Studies","1367-8779","1460-356X","CULTURAL STUDIES","('AHCI', 'SSCI')","1,280","1.5","Q1","1.65","36.88" +"JOURNAL OF CONTEMPORARY PSYCHOTHERAPY","0022-0116","1573-3564","PSYCHOLOGY, CLINICAL","('ESCI',)","806","1.5","Q3","1.61","24.35" +"Education for Primary Care","1473-9879","1475-990X","PRIMARY HEALTH CARE","('ESCI',)","605","1.5","Q3","1.57","46.40" +"JOURNAL OF FIELD ARCHAEOLOGY","0093-4690","2042-4582","ARCHAEOLOGY","('AHCI',)","1,471","1.5","","1.57","36.11" +"ENGINEERING COMPUTATIONS","0264-4401","1758-7077","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,729","1.5","('Q3', 'Q2', 'Q3', 'Q3')","1.53","0.86" +"Russian Journal of Linguistics","2687-0088","2686-8024","LANGUAGE & LINGUISTICS","('ESCI',)","227","1.5","","1.43","97.66" +"MODERN LAW REVIEW","0026-7961","1468-2230","LAW","('SSCI',)","1,669","1.5","Q1","1.40","54.55" +"Language Awareness","0965-8416","1747-7565","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","794","1.5","('N/A', 'Q2')","1.38","18.95" +"ADVANCES IN MATHEMATICS","0001-8708","1090-2082","MATHEMATICS","('SCIE',)","13,596","1.5","Q1","1.35","37.13" +"Journal of Archaeological Science-Reports","2352-409X","2352-409X","ARCHAEOLOGY","('AHCI',)","5,740","1.5","","1.35","30.94" +"PROCEEDINGS OF THE LONDON MATHEMATICAL SOCIETY","0024-6115","1460-244X","MATHEMATICS","('SCIE',)","5,312","1.5","Q1","1.33","34.27" +"Cambridge Law Journal","0008-1973","1469-2139","LAW","('SSCI',)","589","1.5","Q1","1.32","46.48" +"JOURNAL OF AVIAN BIOLOGY","0908-8857","1600-048X","ORNITHOLOGY","('SCIE',)","3,622","1.5","Q1","1.30","64.67" +"Youth Violence and Juvenile Justice","1541-2040","1556-9330","CRIMINOLOGY & PENOLOGY","('SSCI',)","954","1.5","Q2","1.29","6.25" +"INDIANA LAW JOURNAL","0019-6665","2169-3218","LAW","('SSCI',)","872","1.5","Q1","1.27","0.00" +"Journal of International Criminal Justice","1478-1387","1478-1395","LAW","('SSCI',)","931","1.5","Q1","1.26","22.82" +"Dissertationes Mathematicae","0012-3862","1730-6310","MATHEMATICS","('SCIE',)","384","1.5","Q1","1.24","5.71" +"European Journal for Philosophy of Science","1879-4912","1879-4920","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE')","794","1.5","Q1","1.24","61.43" +"Journal of Asian Architecture and Building Engineering","1346-7581","1347-2852","('ARCHITECTURE', 'CONSTRUCTION & BUILDING TECHNOLOGY')","('AHCI', 'SCIE')","1,563","1.5","('N/A', 'Q3')","1.24","98.74" +"Journal of Language Identity and Education","1534-8458","1532-7701","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","1,154","1.5","('Q2', 'N/A', 'Q2')","1.24","11.41" +"EUROPEAN JOURNAL OF MIGRATION AND LAW","1388-364X","1571-8166","('DEMOGRAPHY', 'LAW')","('SSCI', 'SSCI')","429","1.5","('Q2', 'Q1')","1.19","38.71" +"Lithic Technology","0197-7261","2051-6185","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","465","1.5","('Q2', 'N/A')","1.19","13.04" +"CRITIQUE OF ANTHROPOLOGY","0308-275X","1460-3721","ANTHROPOLOGY","('SSCI',)","811","1.5","Q2","1.17","50.68" +"JOURNAL OF INEQUALITIES AND APPLICATIONS","1029-242X","1029-242X","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","4,040","1.5","('Q1', 'Q2')","1.17","99.81" +"FOREIGN LANGUAGE ANNALS","0015-718X","1944-9720","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('SSCI', 'SSCI')","1,799","1.5","('Q2', 'Q2')","1.16","15.64" +"Birds","","2673-6004","ORNITHOLOGY","('ESCI',)","115","1.5","Q1","1.14","98.89" +"International Journal of Applied Linguistics","0802-6106","1473-4192","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","903","1.5","('Q2', 'N/A', 'Q2')","1.12","21.30" +"Journal of Industrial and Business Economics","0391-2078","1972-4977","ECONOMICS","('ESCI',)","420","1.5","Q2","1.11","35.64" +"Reading & Writing Quarterly","1057-3569","1521-0693","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SPECIAL')","('SSCI', 'SSCI')","954","1.5","('Q2', 'Q2')","1.09","5.94" +"Economic and Political Studies-EPS","2095-4816","2470-4024","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","320","1.5","Q2","1.07","6.58" +"International Journal of Developmental Disabilities","2047-3869","2047-3877","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","931","1.5","('Q2', 'Q3')","1.06","14.36" +"Journal of Intellectual Disabilities","1744-6295","1744-6309","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","1,000","1.5","('Q2', 'Q3')","1.05","29.24" +"JOURNAL OF SOCIOLINGUISTICS","1360-6441","1467-9841","LINGUISTICS","('SSCI',)","1,610","1.5","Q2","1.02","32.50" +"Media International Australia","1329-878X","2200-467X","COMMUNICATION","('SSCI',)","1,129","1.5","Q2","1.01","20.23" +"Open House International","0168-2601","2633-9838","('ARCHITECTURE', 'ENVIRONMENTAL STUDIES', 'URBAN STUDIES')","('AHCI', 'SSCI', 'SSCI')","497","1.5","('N/A', 'Q4', 'Q3')","0.99","3.31" +"Journal for Cultural Research","1479-7585","1740-1666","CULTURAL STUDIES","('ESCI',)","331","1.5","Q1","0.98","19.51" +"JOURNAL OF EARLY INTERVENTION","1053-8151","2154-3992","('EDUCATION, SPECIAL', 'PSYCHOLOGY, EDUCATIONAL', 'REHABILITATION')","('SSCI', 'SSCI', 'SSCI')","908","1.5","('Q2', 'Q3', 'Q3')","0.97","8.05" +"BIRD CONSERVATION INTERNATIONAL","0959-2709","1474-0001","('BIODIVERSITY CONSERVATION', 'ORNITHOLOGY')","('SCIE', 'SCIE')","1,478","1.5","('Q3', 'Q1')","0.96","31.98" +"BIOACOUSTICS-THE INTERNATIONAL JOURNAL OF ANIMAL SOUND AND ITS RECORDING","0952-4622","2165-0586","ZOOLOGY","('SCIE',)","939","1.5","Q2","0.95","18.68" +"Classroom Discourse","1946-3014","1946-3022","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","486","1.5","Q2","0.95","33.90" +"JOURNAL OF MAMMALOGY","0022-2372","1545-1542","ZOOLOGY","('SCIE',)","9,155","1.5","Q2","0.95","17.89" +"Quarterly Journal of Political Science","1554-0626","1554-0634","POLITICAL SCIENCE","('SSCI',)","858","1.5","Q2","0.95","0.00" +"Advances in Differential Equations","1079-9389","1079-9389","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","856","1.5","('Q1', 'Q2')","0.94","0.00" +"AUSTRALIAN JOURNAL OF EDUCATION","0004-9441","2050-5884","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","702","1.5","Q2","0.92","28.57" +"INTERNATIONAL JOURNAL OF LANGUAGE & COMMUNICATION DISORDERS","1368-2822","1460-6984","('AUDIOLOGY & SPEECH', 'LINGUISTICS', 'REHABILITATION')","('SCIE', 'SSCI', 'SCIE, SSCI')","3,351","1.5","('Q2', 'Q2', 'Q3')","0.92","47.18" +"Asian-Pacific Journal of Second and Foreign Language Education","","2363-5169","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('ESCI', 'ESCI')","288","1.5","('Q2', 'Q2')","0.91","100.00" +"International Journal of Research & Method in Education","1743-727X","1743-7288","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,026","1.5","Q2","0.91","44.04" +"JOURNAL OF MORPHOLOGY","0362-2525","1097-4687","ANATOMY & MORPHOLOGY","('SCIE',)","5,652","1.5","Q2","0.91","29.11" +"MARINE MICROPALEONTOLOGY","0377-8398","1872-6186","PALEONTOLOGY","('SCIE',)","3,589","1.5","Q2","0.91","20.86" +"Ichthyology and Herpetology","2766-1512","2766-1520","ZOOLOGY","('SCIE',)","215","1.5","Q2","0.90","23.63" +"International Peacekeeping","1353-3312","1743-906X","INTERNATIONAL RELATIONS","('SSCI',)","845","1.5","Q2","0.90","38.57" +"Teoria de la Educacion","1130-3743","2386-5660","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","279","1.5","Q2","0.90","94.37" +"Journal of Vertebrate Biology","2694-7684","2694-7684","ZOOLOGY","('SCIE',)","217","1.5","Q2","0.89","97.03" +"Asian Journal of Communication","0129-2986","1742-0911","COMMUNICATION","('SSCI',)","833","1.5","Q2","0.88","3.23" +"International Review of Victimology","0269-7580","2047-9433","CRIMINOLOGY & PENOLOGY","('ESCI',)","608","1.5","Q2","0.88","37.14" +"Language Learning and Development","1547-5441","1547-3341","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EXPERIMENTAL')","('AHCI', 'SSCI', 'SSCI', 'SSCI')","717","1.5","('N/A', 'Q2', 'Q4', 'Q4')","0.88","21.92" +"ZOOLOGICAL STUDIES","1021-5506","1810-522X","ZOOLOGY","('SCIE',)","1,651","1.5","Q2","0.87","0.00" +"Cogent Education","2331-186X","2331-186X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,994","1.5","Q2","0.86","96.70" +"INTERNATIONAL INTERACTIONS","0305-0629","1547-7444","INTERNATIONAL RELATIONS","('SSCI',)","1,367","1.5","Q2","0.86","23.81" +"Journal of International Education in Business","2046-469X","1836-3261","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","291","1.5","Q2","0.86","5.26" +"JOURNAL OF MICROSCOPY","0022-2720","1365-2818","MICROSCOPY","('SCIE',)","5,733","1.5","Q3","0.86","36.36" +"JOURNAL OF ORTHOPAEDIC SCIENCE","0949-2658","1436-2023","ORTHOPEDICS","('SCIE',)","4,843","1.5","Q3","0.86","15.58" +"WOMENS STUDIES INTERNATIONAL FORUM","0277-5395","1879-243X","WOMENS STUDIES","('SSCI',)","2,769","1.5","Q2","0.86","27.04" +"Journal of Veterinary Cardiology","1760-2734","1875-0834","VETERINARY SCIENCES","('SCIE',)","1,339","1.5","Q2","0.85","18.57" +"Medical Anthropology","0145-9740","1545-5882","('ANTHROPOLOGY', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI')","1,397","1.5","('Q2', 'Q3')","0.85","41.14" +"POLITICAL RESEARCH QUARTERLY","1065-9129","1938-274X","POLITICAL SCIENCE","('SSCI',)","4,662","1.5","Q2","0.85","12.00" +"BERNOULLI","1350-7265","1573-9759","STATISTICS & PROBABILITY","('SCIE',)","3,124","1.5","Q2","0.84","0.57" +"Journal of Veterinary Science","1229-845X","1976-555X","VETERINARY SCIENCES","('SCIE',)","1,949","1.5","Q2","0.84","96.44" +"MEDICINE SCIENCE AND THE LAW","0025-8024","2042-1818","('LAW', 'MEDICINE, LEGAL')","('SSCI', 'SCIE')","883","1.5","('Q1', 'Q2')","0.84","8.46" +"SIAM JOURNAL ON MATRIX ANALYSIS AND APPLICATIONS","0895-4798","1095-7162","MATHEMATICS, APPLIED","('SCIE',)","4,654","1.5","Q2","0.84","2.80" +"EVALUATION AND PROGRAM PLANNING","0149-7189","1873-7870","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","2,813","1.5","Q2","0.83","28.49" +"GEODIVERSITAS","1280-9659","1638-9395","PALEONTOLOGY","('SCIE',)","912","1.5","Q2","0.83","0.00" +"JOURNAL OF DEVELOPMENTAL AND PHYSICAL DISABILITIES","1056-263X","1573-3580","('EDUCATION, SPECIAL', 'PSYCHOLOGY, DEVELOPMENTAL', 'REHABILITATION')","('SSCI', 'SSCI', 'SSCI')","1,428","1.5","('Q2', 'Q4', 'Q3')","0.83","19.35" +"Journal of Statistics and Data Science Education","","2693-9169","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","159","1.5","Q2","0.83","96.80" +"PROBABILITY THEORY AND RELATED FIELDS","0178-8051","1432-2064","STATISTICS & PROBABILITY","('SCIE',)","4,238","1.5","Q2","0.83","37.85" +"SURVIVAL","0039-6338","1468-2699","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,188","1.5","('Q2', 'Q2')","0.83","0.00" +"INTERNATIONAL JOURNAL OF REHABILITATION RESEARCH","0342-5282","1473-5660","REHABILITATION","('SCIE', 'SSCI')","1,882","1.5","Q3","0.82","9.32" +"Journal of Criminology","2633-8076","2633-8084","CRIMINOLOGY & PENOLOGY","('SSCI',)","155","1.5","Q2","0.82","21.74" +"JOURNAL OF FORENSIC SCIENCES","0022-1198","1556-4029","MEDICINE, LEGAL","('SCIE',)","8,930","1.5","Q2","0.82","14.58" +"Microscopy","2050-5698","2050-5701","MICROSCOPY","('SCIE',)","835","1.5","Q3","0.82","21.21" +"SOCIAL SERVICE REVIEW","0037-7961","1537-5404","SOCIAL WORK","('SSCI',)","1,396","1.5","Q2","0.82","3.51" +"AMERICAN JOURNAL OF PERINATOLOGY","0735-1631","1098-8785","('OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","5,977","1.5","('Q3', 'Q2')","0.81","3.83" +"CARNETS DE GEOLOGIE","1634-0744","1765-2553","('GEOLOGY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","271","1.5","('Q2', 'Q2')","0.81","0.00" +"Journal of Adventure Education and Outdoor Learning","1472-9679","1754-0402","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","847","1.5","Q2","0.81","36.67" +"QUALITY ASSURANCE IN EDUCATION","0968-4883","1758-7662","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","972","1.5","Q2","0.81","3.31" +"Zeitschrift fur Erziehungswissenschaft","1434-663X","1862-5215","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","994","1.5","Q2","0.81","95.38" +"Arthropod Systematics & Phylogeny","1863-7221","1864-8312","ENTOMOLOGY","('SCIE',)","496","1.5","Q2","0.80","96.00" +"BRITISH JOURNAL OF MATHEMATICAL & STATISTICAL PSYCHOLOGY","0007-1102","2044-8317","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PSYCHOLOGY, EXPERIMENTAL', 'PSYCHOLOGY, MATHEMATICAL', 'STATISTICS & PROBABILITY')","('SCIE', 'SSCI', 'SSCI', 'SCIE')","2,589","1.5","('Q3', 'Q4', 'Q3', 'Q2')","0.80","29.76" +"Economic and Labour Relations Review","1035-3046","1838-2673","('ECONOMICS', 'INDUSTRIAL RELATIONS & LABOR')","('SSCI', 'SSCI')","717","1.5","('Q2', 'Q3')","0.80","33.63" +"Frontiers in Communication","","2297-900X","COMMUNICATION","('ESCI',)","1,842","1.5","Q2","0.80","99.49" +"Journal of Social Work","1468-0173","1741-296X","SOCIAL WORK","('SSCI',)","1,070","1.5","Q2","0.80","29.25" +"PHYSICAL & OCCUPATIONAL THERAPY IN PEDIATRICS","0194-2638","1541-3144","('PEDIATRICS', 'REHABILITATION')","('SCIE', 'SCIE, SSCI')","1,440","1.5","('Q2', 'Q3')","0.80","8.53" +"International Relations","0047-1178","1741-2862","INTERNATIONAL RELATIONS","('SSCI',)","992","1.5","Q2","0.79","44.12" +"STATISTICA SINICA","1017-0405","1996-8507","STATISTICS & PROBABILITY","('SCIE',)","3,815","1.5","Q2","0.79","0.00" +"GMS Journal for Medical Education","2366-5017","2366-5017","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","781","1.5","Q2","0.78","0.00" +"International Journal of Mentoring and Coaching in Education","2046-6854","2046-6854","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","415","1.5","Q2","0.78","11.24" +"Local and Regional Anesthesia","1178-7112","1178-7112","ANESTHESIOLOGY","('ESCI',)","529","1.5","Q3","0.78","98.04" +"PALAIOS","0883-1351","1938-5323","('GEOLOGY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","3,147","1.5","('Q2', 'Q2')","0.78","0.00" +"Physiotherapy Research International","1358-2267","1471-2865","REHABILITATION","('ESCI',)","1,300","1.5","Q3","0.78","23.23" +"APHASIOLOGY","0268-7038","1464-5041","('AUDIOLOGY & SPEECH', 'CLINICAL NEUROLOGY', 'LINGUISTICS', 'REHABILITATION')","('SCIE', 'SCIE', 'SSCI', 'SCIE, SSCI')","3,311","1.5","('Q2', 'Q4', 'Q2', 'Q3')","0.77","29.26" +"Educational Philosophy and Theory","0013-1857","1469-5812","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,540","1.5","Q2","0.77","15.77" +"CULTURE MEDICINE AND PSYCHIATRY","0165-005X","1573-076X","('ANTHROPOLOGY', 'PSYCHIATRY', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI', 'SSCI')","1,454","1.5","('Q2', 'Q3', 'Q3')","0.76","32.28" +"Journal of International Students","2162-3104","2166-3750","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,136","1.5","Q2","0.76","48.55" +"Journal of School Nursing","1059-8405","1546-8364","NURSING","('SCIE', 'SSCI')","1,333","1.5","Q3","0.76","11.70" +"Statistics and Public Policy","2330-443X","2330-443X","SOCIAL SCIENCES, MATHEMATICAL METHODS","('ESCI',)","131","1.5","Q2","0.76","75.86" +"International Journal for Research in Vocational Education and Training-IJRVET","2197-8638","2197-8646","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","110","1.5","Q2","0.75","100.00" +"Rehabilitation Research and Practice","2090-2867","2090-2875","REHABILITATION","('ESCI',)","417","1.5","Q3","0.75","100.00" +"ORL-Journal for Oto-Rhino-Laryngology Head and Neck Surgery","0301-1569","1423-0275","OTORHINOLARYNGOLOGY","('SCIE',)","626","1.5","Q2","0.74","12.87" +"Translational Pediatrics","2224-4336","2224-4344","PEDIATRICS","('SCIE',)","2,023","1.5","Q2","0.74","97.49" +"Violence and Gender","2326-7836","2326-7852","CRIMINOLOGY & PENOLOGY","('ESCI',)","385","1.5","Q2","0.74","1.33" +"Arthroplasty Today","2352-3441","2352-3441","ORTHOPEDICS","('ESCI',)","1,629","1.5","Q3","0.73","76.26" +"ARTS IN PSYCHOTHERAPY","0197-4556","1873-5878","('PSYCHOLOGY, CLINICAL', 'REHABILITATION')","('SSCI', 'SSCI')","1,784","1.5","('Q3', 'Q3')","0.73","11.54" +"Asia-Pacific Journal of Sport Medicine Arthroscopy Rehabilitation and Technology","2214-6873","2214-6873","('ORTHOPEDICS', 'SPORT SCIENCES')","('ESCI', 'ESCI')","305","1.5","('Q3', 'Q3')","0.73","100.00" +"International Journal for Academic Development","1360-144X","1470-1324","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","951","1.5","Q2","0.73","26.87" +"SIMULATION & GAMING","1046-8781","1552-826X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,434","1.5","Q2","0.73","31.96" +"Brazilian Oral Research","1807-3107","1807-3107","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","3,168","1.5","Q3","0.72","94.04" +"Childhood Obesity","2153-2168","2153-2176","PEDIATRICS","('SCIE',)","1,826","1.5","Q2","0.72","6.03" +"JOURNAL OF BIOSOCIAL SCIENCE","0021-9320","1469-7599","('DEMOGRAPHY', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI')","1,730","1.5","('Q2', 'Q3')","0.72","25.32" +"Journal of Education and Work","1363-9080","1469-9435","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,266","1.5","Q2","0.72","47.22" +"JOURNAL OF GERONTOLOGICAL SOCIAL WORK","1540-4048","0163-4372","('GERONTOLOGY', 'SOCIAL WORK')","('SSCI', 'SSCI')","1,503","1.5","('Q3', 'Q2')","0.72","10.17" +"Clinical Cosmetic and Investigational Dentistry","1179-1357","1179-1357","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","707","1.5","Q3","0.71","97.58" +"Journal of Community Practice","1070-5422","1543-3706","SOCIAL WORK","('ESCI',)","640","1.5","Q2","0.71","10.39" +"JOURNAL OF GEOLOGY","0022-1376","1537-5269","GEOLOGY","('SCIE',)","7,399","1.5","Q2","0.71","0.00" +"Journal of Geriatric Physical Therapy","1539-8412","2152-0895","('GERIATRICS & GERONTOLOGY', 'REHABILITATION')","('SCIE', 'SCIE')","1,583","1.5","('Q4', 'Q3')","0.71","4.49" +"JOURNAL OF NEUROSCIENCE NURSING","0888-0395","1945-2810","('CLINICAL NEUROLOGY', 'NURSING')","('SCIE', 'SCIE, SSCI')","1,227","1.5","('Q4', 'Q3')","0.71","6.45" +"PROBATION JOURNAL","0264-5505","1741-3079","CRIMINOLOGY & PENOLOGY","('ESCI',)","382","1.5","Q2","0.71","45.90" +"SYMBOLIC INTERACTION","0195-6086","1533-8665","SOCIOLOGY","('SSCI',)","1,657","1.5","Q2","0.71","30.91" +"Anthropology Today","0268-540X","1467-8322","ANTHROPOLOGY","('ESCI',)","730","1.5","Q2","0.70","46.84" +"Asian Population Studies","1744-1730","1744-1749","DEMOGRAPHY","('SSCI',)","575","1.5","Q2","0.70","22.95" +"MICROSURGERY","0738-1085","1098-2752","SURGERY","('SCIE',)","3,597","1.5","Q3","0.70","11.78" +"ONDERSTEPOORT JOURNAL OF VETERINARY RESEARCH","0030-2465","2219-0635","VETERINARY SCIENCES","('SCIE',)","1,307","1.5","Q2","0.70","92.68" +"Revista Latino-Americana de Enfermagem","1518-8345","1518-8345","NURSING","('SCIE', 'SSCI')","2,937","1.5","Q3","0.70","96.28" +"Spatial Economic Analysis","1742-1772","1742-1780","ECONOMICS","('SSCI',)","846","1.5","Q2","0.70","21.79" +"ZEITSCHRIFT FUR ENTWICKLUNGSPSYCHOLOGIE UND PADAGOGISCHE PSYCHOLOGIE","0049-8637","2190-6262","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","289","1.5","Q3","0.70","84.21" +"ANALES DE PEDIATRIA","1695-4033","1695-9531","PEDIATRICS","('SCIE',)","1,424","1.5","Q2","0.69","97.00" +"Gland Surgery","2227-684X","2227-8575","SURGERY","('SCIE',)","2,838","1.5","Q3","0.69","99.72" +"ARCHAEOMETRY","0003-813X","1475-4754","('ARCHAEOLOGY', 'CHEMISTRY, ANALYTICAL', 'CHEMISTRY, INORGANIC & NUCLEAR', 'GEOSCIENCES, MULTIDISCIPLINARY')","('AHCI', 'SCIE', 'SCIE', 'SCIE')","3,565","1.5","('N/A', 'Q3', 'Q3', 'Q3')","0.68","33.59" +"JOURNAL OF AIRCRAFT","0021-8669","1533-3868","ENGINEERING, AEROSPACE","('SCIE',)","7,231","1.5","Q2","0.68","6.35" +"JOURNAL OF THE ROYAL STATISTICAL SOCIETY SERIES A-STATISTICS IN SOCIETY","0964-1998","1467-985X","('SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE')","4,109","1.5","('Q2', 'Q2')","0.68","43.23" +"OXFORD BULLETIN OF ECONOMICS AND STATISTICS","0305-9049","1468-0084","('ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SSCI', 'SCIE')","5,179","1.5","('Q2', 'Q2', 'Q2')","0.68","35.40" +"ADULT EDUCATION QUARTERLY","0741-7136","1552-3047","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,007","1.5","Q2","0.67","27.87" +"Communication Culture & Critique","1753-9129","1753-9137","COMMUNICATION","('SSCI',)","774","1.5","Q2","0.67","12.50" +"Foot and Ankle Clinics","1083-7515","1558-1934","ORTHOPEDICS","('SCIE',)","1,800","1.5","Q3","0.67","5.13" +"JOURNAL OF PESTICIDE SCIENCE","1348-589X","1349-0923","ENTOMOLOGY","('SCIE',)","1,241","1.5","Q2","0.67","100.00" +"BULLETIN OF GEOSCIENCES","1214-1119","1802-8225","('GEOSCIENCES, MULTIDISCIPLINARY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","711","1.5","('Q3', 'Q2')","0.66","93.55" +"Computer Assisted Surgery","","2469-9322","SURGERY","('SCIE',)","283","1.5","Q3","0.66","97.37" +"International Journal of Orthopaedic and Trauma Nursing","1878-1241","1878-1292","NURSING","('ESCI',)","432","1.5","Q3","0.66","27.27" +"Journal of Orthopaedics","0972-978X","0972-978X","ORTHOPEDICS","('ESCI',)","2,728","1.5","Q3","0.66","8.25" +"PEDIATRIC SURGERY INTERNATIONAL","0179-0358","1437-9813","('PEDIATRICS', 'SURGERY')","('SCIE', 'SCIE')","5,351","1.5","('Q2', 'Q3')","0.66","15.48" +"Popular Communication","1540-5702","1540-5710","COMMUNICATION","('ESCI',)","515","1.5","Q2","0.66","26.00" +"Critical Discourse Studies","1740-5904","1740-5912","COMMUNICATION","('SSCI',)","1,029","1.5","Q2","0.65","34.43" +"Forensic Science Medicine and Pathology","1547-769X","1556-2891","('MEDICINE, LEGAL', 'PATHOLOGY')","('SCIE', 'SCIE')","1,686","1.5","('Q2', 'Q3')","0.65","37.57" +"Annali di Igiene Medicina Preventiva e di Comunita","1120-9135","1120-9135","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","635","1.5","Q3","0.64","0.00" +"Journal of Creative Communications","0973-2586","0973-2594","COMMUNICATION","('ESCI',)","253","1.5","Q2","0.64","16.09" +"JOURNAL OF TECHNOLOGY IN HUMAN SERVICES","1522-8835","1522-8991","SOCIAL WORK","('ESCI',)","542","1.5","Q2","0.64","16.00" +"JOURNAL OF THE AMERICAN ANIMAL HOSPITAL ASSOCIATION","0587-2871","1547-3317","VETERINARY SCIENCES","('SCIE',)","2,554","1.5","Q2","0.64","0.00" +"REVIEW OF WORLD ECONOMICS","1610-2878","1610-2886","('ECONOMICS', 'INTERNATIONAL RELATIONS')","('SSCI', 'SSCI')","1,215","1.5","('Q2', 'Q2')","0.64","33.03" +"Sports Engineering","1369-7072","1460-2687","SPORT SCIENCES","('ESCI',)","554","1.5","Q3","0.64","55.21" +"Teaching Education","1047-6210","1470-1286","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","828","1.5","Q2","0.64","19.70" +"COMPUTATIONAL STATISTICS & DATA ANALYSIS","0167-9473","1872-7352","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","9,795","1.5","('Q3', 'Q2')","0.63","25.33" +"CRYSTAL RESEARCH AND TECHNOLOGY","0232-1300","1521-4079","CRYSTALLOGRAPHY","('SCIE',)","3,239","1.5","Q3","0.63","4.35" +"EUROPEAN JOURNAL OF PEDIATRIC SURGERY","0939-7248","1439-359X","('PEDIATRICS', 'SURGERY')","('SCIE', 'SCIE')","2,149","1.5","('Q2', 'Q3')","0.63","9.18" +"International Food and Agribusiness Management Review","1559-2448","1559-2448","AGRICULTURAL ECONOMICS & POLICY","('SCIE',)","1,256","1.5","Q3","0.63","100.00" +"NUCLEAR TECHNOLOGY","0029-5450","1943-7471","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","3,524","1.5","Q2","0.63","25.80" +"OTJR-Occupational Therapy Journal of Research","1539-4492","1938-2383","REHABILITATION","('SSCI',)","1,122","1.5","Q3","0.63","14.46" +"Shoulder & Elbow","1758-5732","1758-5740","ORTHOPEDICS","('ESCI',)","1,006","1.5","Q3","0.63","8.28" +"Turkish Journal of Fisheries and Aquatic Sciences","1303-2712","2149-181X","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","1,883","1.5","('Q3', 'Q3')","0.63","95.45" +"Annals of Diagnostic Pathology","1092-9134","1532-8198","PATHOLOGY","('SCIE',)","2,386","1.5","Q3","0.62","11.17" +"BRAIN INJURY","0269-9052","1362-301X","('NEUROSCIENCES', 'REHABILITATION')","('SCIE', 'SCIE, SSCI')","6,659","1.5","('Q4', 'Q3')","0.62","14.39" +"Employee Responsibilities and Rights Journal","0892-7545","1573-3378","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","665","1.5","Q3","0.62","15.60" +"Journal of Advanced Veterinary and Animal Research","","2311-7710","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('ESCI', 'ESCI')","799","1.5","('Q3', 'Q2')","0.62","100.00" +"JOURNAL OF PERINATAL & NEONATAL NURSING","0893-2190","1550-5073","('NURSING', 'OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE, SSCI', 'SCIE', 'SCIE')","977","1.5","('Q3', 'Q3', 'Q2')","0.62","6.03" +"Annals of Actuarial Science","1748-4995","1748-5002","('BUSINESS, FINANCE', 'ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('ESCI', 'ESCI', 'ESCI', 'ESCI', 'ESCI')","241","1.5","('Q3', 'Q2', 'Q3', 'Q2', 'Q2')","0.61","38.27" +"ARCHIVES OF INSECT BIOCHEMISTRY AND PHYSIOLOGY","0739-4462","1520-6327","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENTOMOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,337","1.5","('Q4', 'Q2', 'Q4')","0.61","4.72" +"CAMBRIDGE QUARTERLY OF HEALTHCARE ETHICS","0963-1801","1469-2147","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SCIE', 'SSCI', 'SSCI')","974","1.5","('Q3', 'Q3', 'Q3')","0.61","49.16" +"Global Media and Communication","1742-7665","1742-7673","COMMUNICATION","('ESCI',)","359","1.5","Q2","0.61","30.77" +"International Journal of Lower Extremity Wounds","1534-7346","1552-6941","('DERMATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","1,735","1.5","('Q3', 'Q3')","0.61","2.93" +"Journal of Clinical Research in Pediatric Endocrinology","1308-5727","1308-5735","('ENDOCRINOLOGY & METABOLISM', 'PEDIATRICS')","('SCIE', 'SCIE')","1,510","1.5","('Q4', 'Q2')","0.61","100.00" +"Medical Science Monitor Basic Research","2325-4416","2325-4394","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","648","1.5","Q3","0.61","0.00" +"Open Access Emergency Medicine","1179-1500","1179-1500","EMERGENCY MEDICINE","('ESCI',)","617","1.5","Q3","0.61","98.37" +"Agricultural Finance Review","0002-1466","2041-6326","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","854","1.5","Q3","0.60","8.33" +"European Journal of Midwifery","2585-2906","2585-2906","('NURSING', 'OBSTETRICS & GYNECOLOGY')","('ESCI', 'ESCI')","318","1.5","('Q3', 'Q3')","0.60","100.00" +"International Journal of Cognitive Therapy","1937-1209","1937-1217","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","947","1.5","('Q3', 'Q3')","0.60","28.43" +"Journal of Oral Implantology","0160-6972","1548-1336","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","2,107","1.5","Q3","0.60","0.50" +"Journal of Renal Care","1755-6678","1755-6686","('NURSING', 'UROLOGY & NEPHROLOGY')","('SCIE, SSCI', 'SCIE')","586","1.5","('Q3', 'Q3')","0.60","32.53" +"Plastic and Reconstructive Surgery-Global Open","2169-7574","2169-7574","SURGERY","('ESCI',)","7,067","1.5","Q3","0.60","97.81" +"VISION RESEARCH","0042-6989","1878-5646","('NEUROSCIENCES', 'OPHTHALMOLOGY', 'PSYCHOLOGY')","('SCIE', 'SCIE', 'SCIE')","13,295","1.5","('Q4', 'Q3', 'Q3')","0.60","71.76" +"European Journal of Obstetrics & Gynecology and Reproductive Biology-X","2590-1613","2590-1613","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('ESCI', 'ESCI')","169","1.5","('Q3', 'Q4')","0.59","98.40" +"Global Social Policy","1468-0181","1741-2803","POLITICAL SCIENCE","('ESCI',)","536","1.5","Q2","0.59","36.89" +"JNP- The Journal for Nurse Practitioners","1555-4155","1878-058X","NURSING","('SCIE', 'SSCI')","1,425","1.5","Q3","0.59","6.66" +"JOURNAL OF NUCLEAR SCIENCE AND TECHNOLOGY","0022-3131","1881-1248","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","4,842","1.5","Q2","0.59","14.60" +"Journal of Taibah University Medical Sciences","1658-3612","1658-3612","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,514","1.5","Q2","0.59","96.23" +"Journal of Wound Care","0969-0700","2062-2916","DERMATOLOGY","('SCIE',)","3,773","1.5","Q3","0.59","0.00" +"OPEC Energy Review","1753-0229","1753-0237","ECONOMICS","('ESCI',)","386","1.5","Q2","0.59","7.14" +"Statistics in Biopharmaceutical Research","1946-6315","1946-6315","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","677","1.5","('Q3', 'Q2')","0.59","14.02" +"Subterranean Biology","1768-1448","1314-2615","ZOOLOGY","('SCIE',)","306","1.5","Q2","0.59","98.78" +"ANZ JOURNAL OF SURGERY","1445-1433","1445-2197","SURGERY","('SCIE',)","6,856","1.5","Q3","0.58","21.18" +"Gaceta Sanitaria","0213-9111","1578-1283","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SCIE, SSCI')","2,284","1.5","('Q3', 'Q3', 'Q3')","0.58","97.37" +"iForest-Biogeosciences and Forestry","1971-7458","1971-7458","FORESTRY","('SCIE',)","1,605","1.5","Q2","0.58","77.78" +"JOURNAL OF BEHAVIORAL HEALTH SERVICES & RESEARCH","1094-3412","1556-3308","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SCIE, SSCI')","1,428","1.5","('Q3', 'Q3', 'Q3')","0.58","16.07" +"PEDIATRIC DENTISTRY","0164-1263","1942-5473","('DENTISTRY, ORAL SURGERY & MEDICINE', 'PEDIATRICS')","('SCIE', 'SCIE')","2,749","1.5","('Q3', 'Q2')","0.58","0.00" +"Anthropology & Medicine","1364-8470","1469-2910","('ANTHROPOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI', 'SSCI')","578","1.5","('Q2', 'Q3', 'Q3')","0.57","38.46" +"Dermatology Research and Practice","1687-6105","1687-6113","DERMATOLOGY","('ESCI',)","713","1.5","Q3","0.57","97.96" +"Economics & Politics","0954-1985","1468-0343","('ECONOMICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,007","1.5","('Q2', 'Q2')","0.57","27.66" +"ENVIRONMETRICS","1180-4009","1099-095X","('ENVIRONMENTAL SCIENCES', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","2,063","1.5","('Q4', 'Q3', 'Q2')","0.57","41.48" +"FAMILY & COMMUNITY HEALTH","0160-6379","1550-5057","('FAMILY STUDIES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","1,062","1.5","('Q3', 'Q3')","0.57","14.43" +"Fottea","1802-5439","","PLANT SCIENCES","('SCIE',)","556","1.5","Q3","0.57","100.00" +"International Journal for Uncertainty Quantification","2152-5080","2152-5099","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","548","1.5","('Q2', 'Q3')","0.57","0.00" +"International Journal of Information and Communication Technology Education","1550-1876","1550-1337","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","405","1.5","Q2","0.57","99.02" +"Journal of Clinical Pediatric Dentistry","1053-4628","1557-5268","('DENTISTRY, ORAL SURGERY & MEDICINE', 'PEDIATRICS')","('SCIE', 'SCIE')","1,687","1.5","('Q3', 'Q2')","0.57","0.39" +"Operations Research for Health Care","2211-6923","2211-6923","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","563","1.5","Q3","0.57","28.95" +"PARASITOLOGY INTERNATIONAL","1383-5769","1873-0329","PARASITOLOGY","('SCIE',)","3,116","1.5","Q3","0.57","18.50" +"PEDIATRIC CARDIOLOGY","0172-0643","1432-1971","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PEDIATRICS')","('SCIE', 'SCIE')","5,323","1.5","('Q3', 'Q2')","0.57","13.46" +"PROFESSIONAL GEOGRAPHER","0033-0124","1467-9272","GEOGRAPHY","('SSCI',)","2,814","1.5","Q2","0.57","15.46" +"SINGAPORE ECONOMIC REVIEW","0217-5908","1793-6837","ECONOMICS","('SSCI',)","1,263","1.5","Q2","0.57","1.30" +"UPSALA JOURNAL OF MEDICAL SCIENCES","0300-9734","2000-1967","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,408","1.5","Q2","0.57","98.65" +"Comparative Population Studies","1869-8980","1869-8999","DEMOGRAPHY","('ESCI',)","280","1.5","Q2","0.56","100.00" +"INTERNATIONAL JOURNAL OF PLANT SCIENCES","1058-5893","1537-5315","PLANT SCIENCES","('SCIE',)","3,842","1.5","Q3","0.56","8.98" +"JOURNAL OF AQUATIC ANIMAL HEALTH","0899-7659","1548-8667","('FISHERIES', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","1,338","1.5","('Q3', 'Q2')","0.56","14.67" +"NEW ZEALAND JOURNAL OF FORESTRY SCIENCE","0048-0134","1179-5395","FORESTRY","('SCIE',)","705","1.5","Q2","0.56","54.55" +"Advances in Applied Mathematics and Mechanics","2070-0733","2075-1354","('MATHEMATICS, APPLIED', 'MECHANICS')","('SCIE', 'SCIE')","787","1.5","('Q2', 'Q3')","0.55","0.81" +"Clinical Pharmacology in Drug Development","2160-7648","2160-7648","PHARMACOLOGY & PHARMACY","('SCIE',)","1,473","1.5","Q3","0.55","34.97" +"EDUCATIONAL FORUM","0013-1725","1938-8098","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","754","1.5","Q2","0.55","4.55" +"European Journal of Physiotherapy","2167-9169","2167-9177","REHABILITATION","('ESCI',)","499","1.5","Q3","0.55","30.71" +"JOURNAL OF CHILD AND ADOLESCENT PSYCHOPHARMACOLOGY","1044-5463","1557-8992","('PEDIATRICS', 'PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE', 'SCIE')","2,896","1.5","('Q2', 'Q3', 'Q3')","0.55","16.96" +"Journal of Drugs in Dermatology","1545-9616","1545-9616","DERMATOLOGY","('SCIE',)","3,426","1.5","Q3","0.55","0.00" +"JOURNAL OF PSYCHOEDUCATIONAL ASSESSMENT","0734-2829","1557-5144","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","2,373","1.5","Q3","0.55","19.47" +"JOURNAL OF VETERINARY PHARMACOLOGY AND THERAPEUTICS","0140-7783","1365-2885","('PHARMACOLOGY & PHARMACY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","2,670","1.5","('Q3', 'Q2')","0.55","19.58" +"MELANOMA RESEARCH","0960-8931","1473-5636","('DERMATOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'ONCOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,333","1.5","('Q3', 'Q3', 'Q4')","0.55","14.56" +"Oceans-Switzerland","","2673-1924","('MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('ESCI', 'ESCI')","164","1.5","('Q3', 'Q3')","0.55","99.07" +"Health Services Research and Managerial Epidemiology","2333-3928","2333-3928","HEALTH POLICY & SERVICES","('ESCI',)","240","1.5","Q3","0.54","94.68" +"QUARTERLY JOURNAL OF EXPERIMENTAL PSYCHOLOGY","1747-0218","1747-0226","('PHYSIOLOGY', 'PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SCIE', 'SSCI')","6,484","1.5","('Q4', 'Q3', 'Q4')","0.54","32.96" +"Revista de Ciencia Politica","0718-090X","0718-090X","POLITICAL SCIENCE","('SSCI',)","427","1.5","Q2","0.54","73.26" +"FOREST SCIENCE","0015-749X","1938-3738","FORESTRY","('SCIE',)","4,289","1.5","Q2","0.53","13.40" +"HORTSCIENCE","0018-5345","2327-9834","HORTICULTURE","('SCIE',)","11,502","1.5","Q2","0.53","99.84" +"International Journal of Health Economics and Management","2199-9023","2199-9031","('BUSINESS, FINANCE', 'ECONOMICS', 'HEALTH POLICY & SERVICES')","('SSCI', 'SSCI', 'SSCI')","236","1.5","('Q3', 'Q2', 'Q3')","0.53","31.94" +"Journal of Asset Management","1470-8272","1479-179X","BUSINESS, FINANCE","('ESCI',)","645","1.5","Q3","0.53","24.03" +"JOURNAL OF RADIOANALYTICAL AND NUCLEAR CHEMISTRY","0236-5731","1588-2780","('CHEMISTRY, ANALYTICAL', 'CHEMISTRY, INORGANIC & NUCLEAR', 'NUCLEAR SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","10,690","1.5","('Q3', 'Q3', 'Q2')","0.53","9.27" +"PHYCOLOGIA","0031-8884","2330-2968","('MARINE & FRESHWATER BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","2,959","1.5","('Q3', 'Q3')","0.53","7.26" +"Physical Review Accelerators and Beams","","2469-9888","('PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","2,307","1.5","('Q3', 'Q3')","0.53","98.65" +"PHYTOPARASITICA","0334-2123","1876-7184","('AGRONOMY', 'ENTOMOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","1,948","1.5","('Q2', 'Q2', 'Q3')","0.53","8.82" +"Revista de Contabilidad-Spanish Accounting Review","1138-4891","1988-4672","BUSINESS, FINANCE","('SSCI',)","433","1.5","Q3","0.53","91.78" +"SOFTWARE TESTING VERIFICATION & RELIABILITY","0960-0833","1099-1689","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","701","1.5","Q3","0.53","24.19" +"BULLETIN OF MARINE SCIENCE","0007-4977","1553-6955","('MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","4,323","1.5","('Q3', 'Q3')","0.52","30.00" +"Communications-European Journal of Communication Research","0341-2059","1613-4087","COMMUNICATION","('SSCI',)","929","1.5","Q2","0.52","37.61" +"INTERNATIONAL ECONOMICS AND ECONOMIC POLICY","1612-4804","1612-4812","ECONOMICS","('ESCI',)","497","1.5","Q2","0.52","35.29" +"JBI Evidence Synthesis","","2689-8381","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","2,276","1.5","Q3","0.52","3.15" +"KYKLOS","0023-5962","1467-6435","ECONOMICS","('SSCI',)","1,629","1.5","Q2","0.52","40.82" +"Neurochirurgie","0028-3770","1773-0619","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","1,407","1.5","('Q4', 'Q3')","0.52","24.56" +"NUCLEAR INSTRUMENTS & METHODS IN PHYSICS RESEARCH SECTION A-ACCELERATORS SPECTROMETERS DETECTORS AND ASSOCIATED EQUIPMENT","0168-9002","1872-9576","('INSTRUMENTS & INSTRUMENTATION', 'NUCLEAR SCIENCE & TECHNOLOGY', 'PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","29,028","1.5","('Q3', 'Q2', 'Q3', 'Q3')","0.52","29.24" +"OMEGA-JOURNAL OF DEATH AND DYING","0030-2228","1541-3764","('PSYCHOLOGY, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI')","2,747","1.5","('Q3', 'Q3')","0.52","15.25" +"ACM TRANSACTIONS ON PROGRAMMING LANGUAGES AND SYSTEMS","0164-0925","1558-4593","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","1,396","1.5","Q3","0.51","6.06" +"American Journal of Hospice & Palliative Medicine","1049-9091","1938-2715","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","3,530","1.5","Q3","0.51","11.93" +"Annals of Dermatology","1013-9087","2005-3894","DERMATOLOGY","('SCIE',)","2,128","1.5","Q3","0.51","99.59" +"ANNALS OF SAUDI MEDICINE","0256-4947","1319-9226","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,441","1.5","Q2","0.51","86.75" +"Chilean Journal of Agricultural Research","0718-5839","0718-5839","('AGRICULTURE, MULTIDISCIPLINARY', 'AGRONOMY')","('SCIE', 'SCIE')","1,567","1.5","('Q2', 'Q2')","0.51","97.42" +"CONCURRENCY AND COMPUTATION-PRACTICE & EXPERIENCE","1532-0626","1532-0634","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","5,618","1.5","('Q3', 'Q2')","0.51","3.51" +"DRUGS-EDUCATION PREVENTION AND POLICY","0968-7637","1465-3370","SUBSTANCE ABUSE","('SSCI',)","1,417","1.5","Q3","0.51","42.13" +"INTERNATIONAL JOURNAL OF CARDIOVASCULAR IMAGING","1569-5794","1875-8312","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","4,604","1.5","('Q3', 'Q3')","0.51","31.10" +"Journal of Cardiothoracic Surgery","","1749-8090","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'SURGERY')","('SCIE', 'SCIE')","3,875","1.5","('Q3', 'Q3')","0.51","99.90" +"Marine Ecology-An Evolutionary Perspective","0173-9565","1439-0485","MARINE & FRESHWATER BIOLOGY","('SCIE',)","2,262","1.5","Q3","0.51","23.53" +"PROFESSIONAL PSYCHOLOGY-RESEARCH AND PRACTICE","0735-7028","1939-1323","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","3,664","1.5","Q3","0.51","1.96" +"Sensing and Imaging","1557-2064","1557-2072","INSTRUMENTS & INSTRUMENTATION","('ESCI',)","528","1.5","Q3","0.51","5.38" +"Telemedicine Reports","","2692-4366","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","117","1.5","Q3","0.51","100.00" +"X-RAY SPECTROMETRY","0049-8246","1097-4539","SPECTROSCOPY","('SCIE',)","1,485","1.5","Q3","0.51","20.86" +"BIOCONTROL SCIENCE AND TECHNOLOGY","0958-3157","1360-0478","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'ENTOMOLOGY')","('SCIE', 'SCIE')","3,332","1.5","('Q4', 'Q2')","0.50","7.29" +"ELECTRONIC LIBRARY","0264-0473","1758-616X","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","1,207","1.5","Q2","0.50","2.27" +"International Journal of Micro Air Vehicles","1756-8293","1756-8307","ENGINEERING, AEROSPACE","('SCIE',)","431","1.5","Q2","0.50","93.75" +"Journal of Borderlands Studies","0886-5655","2159-1229","GEOGRAPHY","('ESCI',)","694","1.5","Q2","0.50","17.07" +"Journal of Dual Diagnosis","1550-4263","1550-4271","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL', 'SUBSTANCE ABUSE')","('SSCI', 'SSCI', 'SSCI')","607","1.5","('Q3', 'Q3', 'Q3')","0.50","7.04" +"Journal of Entrepreneurship and Public Policy","2045-2101","2045-211X","ECONOMICS","('ESCI',)","317","1.5","Q2","0.50","1.69" +"Marine Biodiversity","1867-1616","1867-1624","('BIODIVERSITY CONSERVATION', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","1,753","1.5","('Q3', 'Q3')","0.50","29.65" +"NEW ZEALAND JOURNAL OF AGRICULTURAL RESEARCH","0028-8233","1175-8775","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","1,625","1.5","Q2","0.50","26.00" +"Ocnos-Journal of Reading Research","1885-446X","2254-9099","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","230","1.5","Q2","0.50","77.27" +"Proceedings of the Institution of Civil Engineers-Urban Design and Planning","1755-0793","1755-0807","URBAN STUDIES","('ESCI',)","269","1.5","Q3","0.50","9.52" +"State Crime","2046-6056","2046-6064","POLITICAL SCIENCE","('ESCI',)","158","1.5","Q2","0.50","88.89" +"UROLOGIA INTERNATIONALIS","0042-1138","1423-0399","UROLOGY & NEPHROLOGY","('SCIE',)","3,445","1.5","Q3","0.50","19.91" +"CLINICAL AND EXPERIMENTAL HYPERTENSION","1064-1963","1525-6006","('PERIPHERAL VASCULAR DISEASE', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","2,156","1.5","('Q3', 'Q3')","0.49","37.12" +"ENDOCRINE RESEARCH","0743-5800","1532-4206","ENDOCRINOLOGY & METABOLISM","('SCIE',)","804","1.5","Q4","0.49","7.55" +"Geotechnique Letters","2049-825X","2045-2543","ENGINEERING, GEOLOGICAL","('SCIE',)","1,429","1.5","Q3","0.49","11.96" +"International Journal of Housing Markets and Analysis","1753-8270","1753-8289","URBAN STUDIES","('ESCI',)","901","1.5","Q3","0.49","5.02" +"INTERNATIONAL JOURNAL OF MODERN PHYSICS C","0129-1831","1793-6586","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","2,511","1.5","('Q3', 'Q2')","0.49","0.34" +"International Journal of Sports Science & Coaching","1747-9541","2048-397X","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","2,759","1.5","('Q3', 'Q3')","0.49","25.09" +"JOURNAL OF AEROSPACE ENGINEERING","0893-1321","1943-5525","('ENGINEERING, AEROSPACE', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","2,681","1.5","('Q2', 'Q3')","0.49","0.98" +"Journal of Burn Care & Research","1559-047X","1559-0488","('CRITICAL CARE MEDICINE', 'DERMATOLOGY', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","4,297","1.5","('Q3', 'Q3', 'Q3')","0.49","10.85" +"Journal of the American Psychiatric Nurses Association","1078-3903","1532-5725","('NURSING', 'PSYCHIATRY')","('SCIE, SSCI', 'SCIE, SSCI')","1,030","1.5","('Q3', 'Q3')","0.49","3.33" +"JOURNAL OF TURBULENCE","1468-5248","1468-5248","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE')","1,477","1.5","('Q3', 'Q3')","0.49","10.53" +"Psicologia-Reflexao e Critica","0102-7972","1678-7153","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","818","1.5","Q3","0.49","100.00" +"Advances in Tribology","1687-5915","1687-5923","ENGINEERING, MECHANICAL","('ESCI',)","225","1.5","Q3","0.48","100.00" +"Current Problems in Diagnostic Radiology","0363-0188","0363-0188","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,247","1.5","Q3","0.48","3.89" +"Current Radiopharmaceuticals","1874-4710","1874-4729","('PHARMACOLOGY & PHARMACY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","632","1.5","('Q3', 'Q3')","0.48","0.91" +"International Journal of Wireless Information Networks","1068-9605","1572-8129","TELECOMMUNICATIONS","('ESCI',)","438","1.5","Q3","0.48","6.45" +"JPRAS Open","2352-5878","2352-5878","SURGERY","('ESCI',)","499","1.5","Q3","0.48","91.46" +"Management of Biological Invasions","1989-8649","","BIODIVERSITY CONSERVATION","('SCIE',)","852","1.5","Q3","0.48","92.64" +"MUTATION RESEARCH-FUNDAMENTAL AND MOLECULAR MECHANISMS OF MUTAGENESIS","1386-1964","1879-2871","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","5,238","1.5","('Q4', 'Q4', 'Q4')","0.48","19.44" +"POLAR BIOLOGY","0722-4060","1432-2056","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","6,607","1.5","('Q3', 'Q3')","0.48","33.41" +"Proceedings of the Institution of Mechanical Engineers Part M-Journal of Engineering for the Maritime Environment","1475-0902","2041-3084","ENGINEERING, MARINE","('SCIE',)","1,179","1.5","Q3","0.48","4.87" +"TETRAHEDRON LETTERS","0040-4039","1873-3581","CHEMISTRY, ORGANIC","('SCIE',)","43,525","1.5","Q3","0.48","8.31" +"ACM Journal of Data and Information Quality","1936-1955","1936-1955","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","395","1.5","Q3","0.47","6.90" +"AQUATIC LIVING RESOURCES","0990-7440","1765-2952","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","1,422","1.5","('Q3', 'Q3')","0.47","74.32" +"EXPERIMENTAL LUNG RESEARCH","0190-2148","1521-0499","RESPIRATORY SYSTEM","('SCIE',)","1,220","1.5","Q3","0.47","28.38" +"Gastroenterology Insights","2036-7414","2036-7422","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","151","1.5","Q3","0.47","98.33" +"HYPERTENSION IN PREGNANCY","1064-1955","1525-6065","('OBSTETRICS & GYNECOLOGY', 'PERIPHERAL VASCULAR DISEASE', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,303","1.5","('Q3', 'Q3', 'Q4')","0.47","32.47" +"International Journal of Agronomy","1687-8159","1687-8167","AGRONOMY","('ESCI',)","1,145","1.5","Q2","0.47","99.52" +"MODERN PHYSICS LETTERS A","0217-7323","1793-6632","('ASTRONOMY & ASTROPHYSICS', 'PHYSICS, MATHEMATICAL', 'PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,469","1.5","('Q3', 'Q2', 'Q3', 'Q3')","0.47","1.58" +"SA Journal of Industrial Psychology","0258-5200","2071-0763","PSYCHOLOGY, APPLIED","('ESCI',)","1,175","1.5","Q3","0.47","98.88" +"EXPERIMENTAL TECHNIQUES","0732-8818","1747-1567","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","1,317","1.5","('Q3', 'Q3', 'Q3')","0.46","7.69" +"Frontiers in Dental Medicine","","2673-4915","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","313","1.5","Q3","0.46","100.00" +"Journal of Community Genetics","1868-310X","1868-6001","GENETICS & HEREDITY","('ESCI',)","977","1.5","Q4","0.46","24.87" +"Mining Metallurgy & Exploration","2524-3462","2524-3470","('METALLURGY & METALLURGICAL ENGINEERING', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE')","1,356","1.5","('Q3', 'Q3')","0.46","8.21" +"Open Engineering","2391-5439","2391-5439","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","1,123","1.5","Q2","0.46","97.41" +"REVISTA DO INSTITUTO DE MEDICINA TROPICAL DE SAO PAULO","0036-4665","1678-9946","('INFECTIOUS DISEASES', 'PARASITOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE', 'SCIE')","2,032","1.5","('Q4', 'Q3', 'Q3')","0.46","91.67" +"Sport in Society","1743-0437","1743-0445","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'SOCIOLOGY')","('SSCI', 'SSCI')","2,462","1.5","('Q3', 'Q2')","0.46","24.41" +"AUSTRALIAN SYSTEMATIC BOTANY","1030-1887","1446-5701","('EVOLUTIONARY BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","784","1.5","('Q4', 'Q3')","0.45","64.15" +"Cuadernos de Investigacion Geografica","0211-6820","1697-9540","GEOGRAPHY, PHYSICAL","('ESCI',)","389","1.5","Q3","0.45","98.44" +"EUROPEAN PHYSICAL JOURNAL D","1434-6060","1434-6079","('OPTICS', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","5,000","1.5","('Q3', 'Q3')","0.45","20.78" +"FOLIA NEUROPATHOLOGICA","1641-4640","1509-572X","('NEUROSCIENCES', 'PATHOLOGY')","('SCIE', 'SCIE')","914","1.5","('Q4', 'Q3')","0.45","98.57" +"FOLIA PARASITOLOGICA","0015-5683","1803-6465","PARASITOLOGY","('SCIE',)","1,390","1.5","Q3","0.45","100.00" +"INTERNATIONAL FORESTRY REVIEW","1465-5489","2053-7778","FORESTRY","('SCIE',)","1,303","1.5","Q2","0.45","20.87" +"INTERVENTIONAL NEURORADIOLOGY","1591-0199","2385-2011","('CLINICAL NEUROLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","2,373","1.5","('Q4', 'Q3')","0.45","10.61" +"JOURNAL OF THE TEXTILE INSTITUTE","0040-5000","1754-2340","MATERIALS SCIENCE, TEXTILES","('SCIE',)","4,800","1.5","Q2","0.45","2.79" +"PLANT SYSTEMATICS AND EVOLUTION","0378-2697","1615-6110","('EVOLUTIONARY BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","4,397","1.5","('Q4', 'Q3')","0.45","15.44" +"Polar Science","1873-9652","1876-4428","('ECOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,235","1.5","('Q3', 'Q3')","0.45","64.52" +"QUANTITATIVE FINANCE","1469-7688","1469-7696","('BUSINESS, FINANCE', 'ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI', 'SCIE', 'SSCI')","3,552","1.5","('Q3', 'Q2', 'Q3', 'Q2')","0.45","19.66" +"Scandinavian Journal of Pain","1877-8860","1877-8879","CLINICAL NEUROLOGY","('ESCI',)","1,591","1.5","Q4","0.45","25.51" +"Annales de l Institut Henri Poincare D","2308-5827","2308-5835","PHYSICS, MATHEMATICAL","('ESCI',)","209","1.5","Q2","0.44","69.23" +"Cognitive Neuropsychiatry","1354-6805","1464-0619","PSYCHIATRY","('SCIE', 'SSCI')","1,020","1.5","Q3","0.44","24.10" +"COMPUTER JOURNAL","0010-4620","1460-2067","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,414","1.5","('Q4', 'Q3', 'Q3', 'Q2')","0.44","2.78" +"HUMAN SYSTEMS MANAGEMENT","0167-2533","1875-8703","MANAGEMENT","('ESCI',)","515","1.5","Q3","0.44","2.52" +"Iranian Journal of Science and Technology-Transactions of Electrical Engineering","2228-6179","2364-1827","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","907","1.5","Q3","0.44","1.07" +"JOURNAL OF PHYSICS B-ATOMIC MOLECULAR AND OPTICAL PHYSICS","0953-4075","1361-6455","('OPTICS', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL')","('SCIE', 'SCIE')","11,399","1.5","('Q3', 'Q3')","0.44","24.69" +"JOURNAL OF PSYCHOSOCIAL ONCOLOGY","0734-7332","1540-7586","PSYCHOLOGY, SOCIAL","('SSCI',)","1,512","1.5","Q4","0.44","8.98" +"Molecular Genetics & Genomic Medicine","2324-9269","2324-9269","GENETICS & HEREDITY","('SCIE',)","3,487","1.5","Q4","0.44","68.56" +"SEMINARS IN ULTRASOUND CT AND MRI","0887-2171","1558-5034","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,439","1.5","Q3","0.44","4.35" +"ACM Transactions on Architecture and Code Optimization","1544-3566","1544-3973","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","934","1.5","('Q4', 'Q2')","0.43","99.45" +"American Journal of Clinical and Experimental Urology","2330-1910","2330-1910","UROLOGY & NEPHROLOGY","('ESCI',)","402","1.5","Q3","0.43","0.00" +"BRAZILIAN JOURNAL OF PHYSICS","0103-9733","1678-4448","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","1,922","1.5","Q2","0.43","2.46" +"CORONARY ARTERY DISEASE","0954-6928","1473-5830","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,823","1.5","Q3","0.43","10.47" +"Frontiers in Neuroergonomics","","2673-6195","('ERGONOMICS', 'NEUROSCIENCES')","('ESCI', 'ESCI')","128","1.5","('Q3', 'Q4')","0.43","100.00" +"Journal of Berry Research","1878-5093","1878-5123","PLANT SCIENCES","('SCIE',)","641","1.5","Q3","0.43","4.08" +"Journal of Data and Information Science","2096-157X","2543-683X","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","572","1.5","Q2","0.43","100.00" +"JOURNAL OF FINANCIAL SERVICES RESEARCH","0920-8550","1573-0735","BUSINESS, FINANCE","('SSCI',)","1,265","1.5","Q3","0.43","23.61" +"Magnetic Resonance Imaging Clinics of North America","1064-9689","1557-9786","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,203","1.5","Q3","0.43","6.08" +"Middle East Current Psychiatry-MECPsych","","2090-5416","PSYCHIATRY","('ESCI',)","558","1.5","Q3","0.43","100.00" +"Records of Natural Products","1307-6167","1307-6167","('CHEMISTRY, APPLIED', 'CHEMISTRY, MEDICINAL', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","1,381","1.5","('Q3', 'Q4', 'Q3')","0.43","93.55" +"CANADIAN JOURNAL OF SOIL SCIENCE","0008-4271","1918-1841","SOIL SCIENCE","('SCIE',)","3,324","1.5","Q4","0.42","32.43" +"Chinese Physics B","1674-1056","2058-3834","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","12,930","1.5","Q2","0.42","0.22" +"GULF AND CARIBBEAN RESEARCH","1528-0470","2572-1410","MARINE & FRESHWATER BIOLOGY","('ESCI',)","186","1.5","Q3","0.42","0.00" +"INTERNATIONAL ECONOMIC REVIEW","0020-6598","1468-2354","ECONOMICS","('SSCI',)","5,407","1.5","Q2","0.42","24.42" +"International Journal of Engineering","1025-2495","1735-9244","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","2,280","1.5","Q2","0.42","95.70" +"Journal of Computer Virology and Hacking Techniques","2263-8733","2263-8733","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","631","1.5","Q3","0.42","13.01" +"JOURNAL OF ENHANCED HEAT TRANSFER","1065-5131","1563-5074","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","548","1.5","('Q3', 'Q3')","0.42","0.00" +"Journal of Mechanical Science and Technology","1738-494X","1976-3824","ENGINEERING, MECHANICAL","('SCIE',)","10,161","1.5","Q3","0.42","0.06" +"JOURNAL OF OCCUPATIONAL AND ENVIRONMENTAL HYGIENE","1545-9624","1545-9632","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","2,444","1.5","('Q4', 'Q3')","0.42","22.22" +"LUTS-Lower Urinary Tract Symptoms","1757-5664","1757-5672","UROLOGY & NEPHROLOGY","('SCIE',)","656","1.5","Q3","0.42","5.26" +"Organizacija","1318-5454","1581-1832","MANAGEMENT","('ESCI',)","280","1.5","Q3","0.42","100.00" +"Research Journal of Textile and Apparel","1560-6074","1560-6074","MATERIALS SCIENCE, TEXTILES","('ESCI',)","564","1.5","Q2","0.42","3.59" +"Sexual and Relationship Therapy","1468-1994","1468-1749","PSYCHOLOGY, CLINICAL","('SSCI',)","985","1.5","Q3","0.42","7.10" +"BEHAVIOUR CHANGE","0813-4839","2049-7768","PSYCHOLOGY, CLINICAL","('SSCI',)","556","1.5","Q3","0.41","30.16" +"BioInvasions Records","2242-1300","2242-1300","BIODIVERSITY CONSERVATION","('SCIE',)","1,081","1.5","Q3","0.41","100.00" +"BIOLOGICALS","1045-1056","1095-8320","('BIOCHEMICAL RESEARCH METHODS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","1,680","1.5","('Q4', 'Q4', 'Q3')","0.41","42.52" +"Botany Letters","2381-8107","2381-8115","PLANT SCIENCES","('SCIE',)","503","1.5","Q3","0.41","4.90" +"CROATIAN MEDICAL JOURNAL","0353-9504","1332-8166","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,923","1.5","Q2","0.41","96.57" +"Engineering Research Express","2631-8695","2631-8695","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","1,068","1.5","Q2","0.41","39.25" +"IISE Transactions on Healthcare Systems Engineering","2472-5579","2472-5587","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('ESCI', 'ESCI', 'ESCI')","192","1.5","('Q3', 'Q3', 'Q3')","0.41","6.76" +"INDUSTRIAL LUBRICATION AND TRIBOLOGY","0036-8792","1758-5775","ENGINEERING, MECHANICAL","('SCIE',)","2,039","1.5","Q3","0.41","1.01" +"International Journal of Training and Development","1360-3736","1468-2419","MANAGEMENT","('ESCI',)","892","1.5","Q3","0.41","42.05" +"Journal of Integrative Bioinformatics","","1613-4516","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('ESCI',)","513","1.5","Q3","0.41","97.47" +"JOURNAL OF THE PHYSICAL SOCIETY OF JAPAN","0031-9015","","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","16,302","1.5","Q2","0.41","14.69" +"RADIATION AND ENVIRONMENTAL BIOPHYSICS","0301-634X","1432-2099","('BIOLOGY', 'BIOPHYSICS', 'ENVIRONMENTAL SCIENCES', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,521","1.5","('Q3', 'Q4', 'Q4', 'Q3')","0.41","34.27" +"THERAPEUTIC APHERESIS AND DIALYSIS","1744-9979","1744-9987","('HEMATOLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","1,956","1.5","('Q3', 'Q3')","0.41","12.32" +"Urology Journal","1735-1308","1735-546X","UROLOGY & NEPHROLOGY","('SCIE',)","1,208","1.5","Q3","0.41","0.44" +"Current Sleep Medicine Reports","","2198-6401","CLINICAL NEUROLOGY","('ESCI',)","530","1.5","Q4","0.40","25.71" +"EMOTIONAL AND BEHAVIOURAL DIFFICULTIES","1363-2752","1741-2692","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","614","1.5","Q3","0.40","45.71" +"Estudios Sobre Educacion","1578-7001","2386-6292","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","318","1.5","Q2","0.40","98.25" +"Geosystem Engineering","1226-9328","2166-3394","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","497","1.5","Q3","0.40","0.00" +"H2Open Journal","","2616-6518","WATER RESOURCES","('ESCI',)","235","1.5","Q4","0.40","100.00" +"IJID Regions","","2772-7076","INFECTIOUS DISEASES","('ESCI',)","325","1.5","Q4","0.40","93.16" +"Integrated Blood Pressure Control","1178-7104","1178-7104","PERIPHERAL VASCULAR DISEASE","('ESCI',)","337","1.5","Q3","0.40","97.44" +"JMA Journal","2433-328X","2433-3298","MEDICINE, GENERAL & INTERNAL","('ESCI',)","361","1.5","Q2","0.40","100.00" +"Journal of Magnetic Resonance Open","","2666-4410","('BIOCHEMICAL RESEARCH METHODS', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'SPECTROSCOPY')","('ESCI', 'ESCI', 'ESCI')","163","1.5","('Q4', 'Q3', 'Q3')","0.40","94.49" +"SCIENCE OF COMPUTER PROGRAMMING","0167-6423","1872-7964","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","1,355","1.5","Q3","0.40","29.07" +"SOUTH AFRICAN JOURNAL OF SCIENCE","0038-2353","1996-7489","MULTIDISCIPLINARY SCIENCES","('SCIE',)","2,970","1.5","Q2","0.40","98.84" +"Tropical Plant Pathology","1983-2052","1983-2052","PLANT SCIENCES","('SCIE',)","1,294","1.5","Q3","0.40","6.98" +"TURKISH JOURNAL OF BOTANY","1300-008X","1303-6106","PLANT SCIENCES","('SCIE',)","1,492","1.5","Q3","0.40","0.00" +"Zeitschrift der Deutschen Gesellschaft fur Geowissenschaften","1860-1804","1861-4094","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","470","1.5","Q3","0.40","0.00" +"ZYGOTE","0967-1994","1469-8730","('CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY', 'REPRODUCTIVE BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,417","1.5","('Q4', 'Q4', 'Q4')","0.40","8.70" +"Cancer Radiotherapie","1278-3218","1769-6658","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","1,225","1.5","('Q4', 'Q3')","0.39","26.61" +"IN VITRO CELLULAR & DEVELOPMENTAL BIOLOGY-ANIMAL","1071-2690","1543-706X","('CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY')","('SCIE', 'SCIE')","2,543","1.5","('Q4', 'Q4')","0.39","10.53" +"INFORMATION TECHNOLOGY AND LIBRARIES","0730-9295","2163-5226","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('SCIE', 'SSCI')","365","1.5","('Q3', 'Q2')","0.39","98.57" +"INTERNATIONAL JOURNAL OF PHARMACY PRACTICE","0961-7671","2042-7174","PHARMACOLOGY & PHARMACY","('ESCI',)","1,672","1.5","Q3","0.39","36.07" +"Iranian Journal of Science and Technology-Transactions of Mechanical Engineering","2228-6187","2364-1835","ENGINEERING, MECHANICAL","('SCIE',)","909","1.5","Q3","0.39","1.82" +"NORDIC JOURNAL OF PSYCHIATRY","0803-9488","1502-4725","PSYCHIATRY","('SCIE', 'SSCI')","2,620","1.5","Q3","0.39","30.53" +"Physics","","2624-8174","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","420","1.5","Q2","0.39","99.17" +"Pilot and Feasibility Studies","","2055-5784","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","2,160","1.5","Q3","0.39","100.00" +"Water Policy","1366-7017","1996-9759","WATER RESOURCES","('SCIE',)","2,017","1.5","Q4","0.39","98.60" +"Advances in High Energy Physics","1687-7357","1687-7365","PHYSICS, PARTICLES & FIELDS","('SCIE',)","1,602","1.5","Q3","0.38","100.00" +"Comparative Economic Studies","0888-7233","1478-3320","ECONOMICS","('ESCI',)","630","1.5","Q2","0.38","15.85" +"CRITICAL REVIEWS IN EUKARYOTIC GENE EXPRESSION","1045-4403","2162-6502","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","1,298","1.5","('Q4', 'Q4')","0.38","1.80" +"Ethiopian Journal of Health Sciences","1029-1857","2413-7170","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","2,043","1.5","Q3","0.38","27.66" +"Financial Markets and Portfolio Management","1934-4554","2373-8529","BUSINESS, FINANCE","('ESCI',)","323","1.5","Q3","0.38","51.06" +"INDIAN JOURNAL OF BIOCHEMISTRY & BIOPHYSICS","0301-1208","0975-0959","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","1,373","1.5","('Q4', 'Q4')","0.38","45.83" +"International Journal of Hepatology","2090-3448","2090-3456","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","480","1.5","Q3","0.38","100.00" +"INTERNATIONAL JOURNAL OF LEARNING AND INTELLECTUAL CAPITAL","1479-4853","1479-4861","('BUSINESS', 'MANAGEMENT')","('ESCI', 'ESCI')","342","1.5","('Q3', 'Q3')","0.38","0.00" +"Journal of Workplace Behavioral Health","1555-5240","1555-5259","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","401","1.5","Q3","0.38","15.94" +"MAGNESIUM RESEARCH","0953-1424","1952-4021","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","614","1.5","('Q4', 'Q4')","0.38","0.00" +"PLANT BREEDING","0179-9541","1439-0523","('AGRONOMY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","3,933","1.5","('Q2', 'Q4', 'Q3')","0.38","17.48" +"Plant Physiology Reports","2662-253X","2662-2548","PLANT SCIENCES","('ESCI',)","456","1.5","Q3","0.38","0.99" +"ROBOMECH Journal","2197-4225","2197-4225","('INSTRUMENTS & INSTRUMENTATION', 'ROBOTICS')","('ESCI', 'ESCI')","410","1.5","('Q3', 'Q4')","0.38","100.00" +"Current Computer-Aided Drug Design","1573-4099","1875-6697","('CHEMISTRY, MEDICINAL', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","1,104","1.5","('Q4', 'Q3')","0.37","1.26" +"Current Hypertension Reviews","1573-4021","1875-6506","PERIPHERAL VASCULAR DISEASE","('ESCI',)","522","1.5","Q3","0.37","1.37" +"European Journal of Social Security","1388-2627","2399-2948","PUBLIC ADMINISTRATION","('ESCI',)","239","1.5","Q3","0.37","37.88" +"IET Electric Power Applications","1751-8660","1751-8679","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","2,874","1.5","Q3","0.37","76.62" +"International Journal of Analytical Chemistry","1687-8760","1687-8779","CHEMISTRY, ANALYTICAL","('SCIE',)","1,383","1.5","Q3","0.37","100.00" +"International Journal of Network Management","1055-7148","1099-1190","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","420","1.5","('Q3', 'Q3')","0.37","12.94" +"OPEN ECONOMIES REVIEW","0923-7992","1573-708X","ECONOMICS","('SSCI',)","828","1.5","Q2","0.37","34.92" +"Proceedings of the Institution of Civil Engineers-Bridge Engineering","1478-4637","1751-7664","ENGINEERING, CIVIL","('ESCI',)","335","1.5","Q3","0.37","4.08" +"Acute Medicine & Surgery","2052-8817","2052-8817","MEDICINE, GENERAL & INTERNAL","('ESCI',)","986","1.5","Q2","0.36","74.90" +"Dermatologie in Beruf und Umwelt","1438-776X","1616-7090","DERMATOLOGY","('ESCI',)","164","1.5","Q3","0.36","0.00" +"Foundations and Trends in Entrepreneurship","1551-3114","1551-3122","BUSINESS","('ESCI',)","434","1.5","Q3","0.36","0.00" +"IET Software","1751-8806","1751-8814","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","631","1.5","Q3","0.36","88.62" +"IET Wireless Sensor Systems","2043-6386","2043-6394","TELECOMMUNICATIONS","('ESCI',)","365","1.5","Q3","0.36","73.58" +"International Journal of Corrosion","1687-9325","1687-9333","ELECTROCHEMISTRY","('ESCI',)","541","1.5","Q4","0.36","100.00" +"International Journal of Fuzzy Logic and Intelligent Systems","1598-2645","2093-744X","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","380","1.5","Q2","0.36","98.33" +"International Journal of Molecular and Cellular Medicine","2251-9637","2251-9645","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","547","1.5","Q3","0.36","0.00" +"JOURNAL OF ENGINEERING MATERIALS AND TECHNOLOGY-TRANSACTIONS OF THE ASME","0094-4289","1528-8889","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,930","1.5","('Q3', 'Q4')","0.36","3.45" +"JOURNAL OF FINANCIAL RESEARCH","0270-2592","1475-6803","BUSINESS, FINANCE","('SSCI',)","1,171","1.5","Q3","0.36","19.67" +"Journal of Tourism Sustainability and Well-being","2795-5044","2795-5044","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","43","1.5","Q3","0.36","0.00" +"KOEDOE","0075-6458","2071-0771","BIODIVERSITY CONSERVATION","('SCIE',)","520","1.5","Q3","0.36","100.00" +"MYCOSCIENCE","1340-3540","1618-2545","MYCOLOGY","('SCIE',)","1,616","1.5","Q4","0.36","90.70" +"Rock and Soil Mechanics","1000-7598","1000-7598","ENGINEERING, GEOLOGICAL","('ESCI',)","7,942","1.5","Q3","0.36","0.00" +"SAMJ SOUTH AFRICAN MEDICAL JOURNAL","0256-9574","2078-5135","MEDICINE, GENERAL & INTERNAL","('SCIE',)","4,442","1.5","Q2","0.36","85.00" +"Security and Privacy","2475-6725","2475-6725","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI')","474","1.5","('Q3', 'Q3')","0.36","10.00" +"Transportation in Developing Economies","2199-9287","2199-9295","TRANSPORTATION","('ESCI',)","274","1.5","Q4","0.36","2.67" +"ENVIRONMENTAL QUALITY MANAGEMENT","1088-1913","1520-6483","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","830","1.5","('Q4', 'Q4', 'Q4')","0.35","3.03" +"INTERNATIONAL DEVELOPMENT PLANNING REVIEW","1474-6743","1478-3401","('DEVELOPMENT STUDIES', 'REGIONAL & URBAN PLANNING')","('SSCI', 'SSCI')","517","1.5","('Q3', 'Q4')","0.35","7.81" +"JAPANESE ECONOMIC REVIEW","1352-4739","1468-5876","ECONOMICS","('SSCI',)","430","1.5","Q2","0.35","43.28" +"Journal of Micro-Nanopatterning Materials and Metrology-JM3","1932-5150","2708-8340","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'OPTICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","180","1.5","('Q3', 'Q4', 'Q4', 'Q3')","0.35","26.32" +"Journal of Photonics for Energy","1947-7988","1947-7988","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","669","1.5","('Q4', 'Q3', 'Q3')","0.35","8.22" +"Musculoskeletal Care","1478-2189","1557-0681","RHEUMATOLOGY","('ESCI',)","1,123","1.5","Q3","0.35","36.86" +"Peptide Science","2475-8817","2475-8817","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","477","1.5","('Q4', 'Q4')","0.35","24.29" +"REVISTA IBEROAMERICANA DE MICOLOGIA","1130-1406","","MYCOLOGY","('SCIE',)","888","1.5","Q4","0.35","27.45" +"TRANSACTIONS OF THE INDIAN INSTITUTE OF METALS","0972-2815","0975-1645","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","3,972","1.5","Q3","0.35","1.24" +"Turkish Journal of Hematology","1300-7777","1308-5263","HEMATOLOGY","('SCIE',)","615","1.5","Q3","0.35","97.83" +"VIRAL IMMUNOLOGY","0882-8245","1557-8976","('IMMUNOLOGY', 'VIROLOGY')","('SCIE', 'SCIE')","1,696","1.5","('Q4', 'Q4')","0.35","2.65" +"Algorithms for Molecular Biology","","1748-7188","('BIOCHEMICAL RESEARCH METHODS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","777","1.5","('Q4', 'Q4', 'Q3')","0.34","100.00" +"American Journal of Lifestyle Medicine","1559-8276","1559-8284","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","2,299","1.5","Q3","0.34","7.90" +"CHEMICAL & PHARMACEUTICAL BULLETIN","0009-2363","","('CHEMISTRY, MEDICINAL', 'CHEMISTRY, MULTIDISCIPLINARY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","11,507","1.5","('Q4', 'Q3', 'Q3')","0.34","97.36" +"CLEAN-Soil Air Water","1863-0650","1863-0669","('ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'MARINE & FRESHWATER BIOLOGY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","3,247","1.5","('Q4', 'Q4', 'Q3', 'Q4')","0.34","5.38" +"Decision","0304-0941","2197-1722","MANAGEMENT","('ESCI',)","288","1.5","Q3","0.34","16.67" +"IET Communications","1751-8628","1751-8636","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","2,826","1.5","Q3","0.34","76.74" +"INTERNATIONAL JOURNAL OF AUTOMOTIVE TECHNOLOGY","1229-9138","1976-3832","('ENGINEERING, MECHANICAL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","2,290","1.5","('Q3', 'Q3')","0.34","0.00" +"Journal of Cryptographic Engineering","2190-8508","2190-8516","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","623","1.5","Q2","0.34","29.41" +"JOURNAL OF MECHANICS","1727-7191","1811-8216","MECHANICS","('SCIE',)","995","1.5","Q3","0.34","89.54" +"Proceedings of the Institution of Civil Engineers-Engineering Sustainability","1478-4629","1751-7680","('ENGINEERING, CIVIL', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","652","1.5","('Q3', 'Q4')","0.34","3.96" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART D-JOURNAL OF AUTOMOBILE ENGINEERING","0954-4070","2041-2991","('ENGINEERING, MECHANICAL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","4,409","1.5","('Q3', 'Q3')","0.34","2.85" +"Uspekhi Fiziki Metallov-Progress in Physics of Metals","1608-1021","2617-0795","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('ESCI', 'ESCI')","160","1.5","('Q4', 'Q3')","0.34","100.00" +"BIOTECHNOLOGY & BIOTECHNOLOGICAL EQUIPMENT","1310-2818","1314-3530","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","3,272","1.5","Q4","0.33","97.72" +"Bratislava Medical Journal-Bratislavske Lekarske Listy","0006-9248","1336-0345","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,976","1.5","Q2","0.33","96.83" +"Indian Journal of Critical Care Medicine","0972-5229","1998-359X","CRITICAL CARE MEDICINE","('ESCI',)","2,981","1.5","Q3","0.33","94.17" +"Integrative Biology","1757-9694","1757-9708","CELL BIOLOGY","('SCIE',)","2,537","1.5","Q4","0.33","10.71" +"INTERNATIONAL ANGIOLOGY","0392-9590","1827-1839","PERIPHERAL VASCULAR DISEASE","('SCIE',)","1,385","1.5","Q3","0.33","8.38" +"Journal of Astronomical Instrumentation","2251-1717","2251-1725","ASTRONOMY & ASTROPHYSICS","('ESCI',)","348","1.5","Q3","0.33","18.46" +"Natural Product Communications","1934-578X","1555-9475","('CHEMISTRY, MEDICINAL', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","7,564","1.5","('Q4', 'Q4')","0.33","91.94" +"Science and Technology for Energy Transition","","2804-7699","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE', 'SCIE')","47","1.5","('Q4', 'Q3', 'Q2')","0.33","95.38" +"Advances in Civil Engineering","1687-8086","1687-8094","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","8,587","1.5","('Q3', 'Q3')","0.32","99.33" +"Clinical and Experimental Hepatology","2392-1099","2449-8238","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","524","1.5","Q3","0.32","2.08" +"European Journal of Computational Mechanics","1779-7179","1958-5829","MECHANICS","('ESCI',)","285","1.5","Q3","0.32","0.00" +"JOURNAL OF CHROMATOGRAPHIC SCIENCE","0021-9665","1945-239X","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE')","4,053","1.5","('Q4', 'Q3')","0.32","2.15" +"Journal of Research in Medical Sciences","1735-1995","1735-7136","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,380","1.5","Q2","0.32","93.41" +"POPULATION","0032-4663","1957-7966","DEMOGRAPHY","('SSCI',)","626","1.5","Q2","0.32","0.00" +"TRANSFUSION MEDICINE","0958-7578","1365-3148","HEMATOLOGY","('SCIE',)","1,382","1.5","Q3","0.32","18.93" +"Canadian Journal of Respiratory Critical Care and Sleep Medicine","2474-5332","2474-5340","RESPIRATORY SYSTEM","('ESCI',)","274","1.5","Q3","0.31","10.83" +"Cancer Reports","","2573-8348","ONCOLOGY","('ESCI',)","1,076","1.5","Q4","0.31","72.99" +"Hispanic Health Care International","1540-4153","1938-8993","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","283","1.5","Q3","0.31","6.02" +"IET Computer Vision","1751-9632","1751-9640","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","1,033","1.5","('Q4', 'Q3')","0.31","84.81" +"Journal of Architectural Engineering","1076-0431","1943-5568","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","1,102","1.5","Q3","0.31","2.01" +"JOURNAL OF COMPUTATIONAL NEUROSCIENCE","0929-5313","1573-6873","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","1,673","1.5","('Q3', 'Q4')","0.31","28.00" +"PSYCHIATRIC GENETICS","0955-8829","1473-5873","('GENETICS & HEREDITY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","744","1.5","('Q4', 'Q4')","0.31","14.81" +"Structural Monitoring and Maintenance, An International Journal","2288-6605","2288-6613","ENGINEERING, CIVIL","('ESCI',)","260","1.5","Q3","0.31","0.00" +"TECHNICAL COMMUNICATION","0049-3155","","COMMUNICATION","('SSCI',)","607","1.5","Q2","0.31","0.00" +"Top","1134-5764","1863-8279","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","589","1.5","Q3","0.31","32.35" +"Transactions of the Indian Ceramic Society","0371-750X","2165-5456","MATERIALS SCIENCE, CERAMICS","('SCIE',)","511","1.5","Q3","0.31","0.00" +"CORROSION ENGINEERING SCIENCE AND TECHNOLOGY","1478-422X","1743-2782","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","1,851","1.5","('Q4', 'Q3')","0.30","4.92" +"DISTRIBUTED AND PARALLEL DATABASES","0926-8782","1573-7578","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","355","1.5","('Q3', 'Q2')","0.30","28.40" +"Feminist Africa","1726-4596","1726-4596","WOMENS STUDIES","('ESCI',)","169","1.5","Q2","0.30","0.00" +"IET Cyber-systems and Robotics","","2631-6315","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ROBOTICS')","('ESCI', 'ESCI', 'ESCI')","180","1.5","('Q3', 'Q4', 'Q4')","0.30","86.67" +"JAPANESE JOURNAL OF APPLIED PHYSICS","0021-4922","1347-4065","PHYSICS, APPLIED","('SCIE',)","17,488","1.5","Q3","0.30","9.51" +"Journal of Control and Decision","2330-7706","2330-7714","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('ESCI', 'ESCI')","458","1.5","('Q3', 'Q3')","0.30","0.44" +"Journal of Control Automation and Electrical Systems","2195-3880","2195-3899","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","1,115","1.5","Q3","0.30","2.06" +"MECHANICS OF COMPOSITE MATERIALS","0191-5665","1573-8922","('MATERIALS SCIENCE, COMPOSITES', 'MECHANICS', 'POLYMER SCIENCE')","('SCIE', 'SCIE', 'SCIE')","1,626","1.5","('Q4', 'Q3', 'Q4')","0.30","0.00" +"PHILOSOPHICAL MAGAZINE","1478-6435","1478-6443","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","14,977","1.5","('Q4', 'Q3', 'Q3', 'Q3')","0.30","5.17" +"Building Services Engineering Research & Technology","0143-6244","1477-0849","CONSTRUCTION & BUILDING TECHNOLOGY","('SCIE',)","1,000","1.5","Q3","0.29","27.12" +"ENVIRONMENTAL FORENSICS","1527-5922","1527-5930","ENVIRONMENTAL SCIENCES","('SCIE',)","1,040","1.5","Q4","0.29","2.70" +"Glass Structures & Engineering","2363-5142","2363-5150","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","267","1.5","Q3","0.29","51.72" +"Journal for International Business and Entrepreneurship Development","1549-9324","1747-6763","BUSINESS","('ESCI',)","186","1.5","Q3","0.29","0.00" +"PHARMAZIE","0031-7144","0031-7144","('CHEMISTRY, MEDICINAL', 'CHEMISTRY, MULTIDISCIPLINARY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE', 'SCIE')","3,399","1.5","('Q4', 'Q3', 'Q3')","0.29","0.00" +"Revista de Gastroenterologia de Mexico","0375-0906","0375-0906","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","613","1.5","Q3","0.29","95.80" +"AIDS RESEARCH AND HUMAN RETROVIRUSES","0889-2229","1931-8405","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'VIROLOGY')","('SCIE', 'SCIE', 'SCIE')","3,304","1.5","('Q4', 'Q4', 'Q4')","0.28","6.65" +"CORPORATE REPUTATION REVIEW","1363-3589","1479-1889","BUSINESS","('ESCI',)","1,296","1.5","Q3","0.28","17.65" +"Ethics Policy & Environment","2155-0085","2155-0093","ENVIRONMENTAL STUDIES","('ESCI',)","491","1.5","Q4","0.28","32.67" +"HELVETICA CHIMICA ACTA","0018-019X","1522-2675","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","5,320","1.5","Q3","0.28","38.71" +"HIV AIDS-Research and Palliative Care","1179-1373","1179-1373","INFECTIOUS DISEASES","('ESCI',)","865","1.5","Q4","0.28","96.31" +"JOURNAL OF VACUUM SCIENCE & TECHNOLOGY B","2166-2746","2166-2754","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","6,687","1.5","('Q3', 'Q4', 'Q3')","0.28","16.37" +"Molecular Biology Research Communications","2322-181X","2345-2005","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","236","1.5","Q4","0.28","0.00" +"Advances in Materials Science","2083-4799","2083-4799","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","422","1.5","Q4","0.27","100.00" +"Current Trauma Reports","2198-6096","2198-6096","CRITICAL CARE MEDICINE","('ESCI',)","214","1.5","Q3","0.27","12.73" +"JOURNAL OF PHASE EQUILIBRIA AND DIFFUSION","1547-7037","1863-7345","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE', 'SCIE')","3,251","1.5","('Q4', 'Q4', 'Q3')","0.27","17.17" +"Annals of Clinical Psychiatry","1040-1237","1547-3325","PSYCHIATRY","('SCIE', 'SSCI')","1,029","1.5","Q3","0.26","0.00" +"Indian Journal of Clinical Biochemistry","0970-1915","0974-0422","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","2,362","1.5","Q4","0.26","6.25" +"Journal of Anaesthesiology Clinical Pharmacology","0970-9185","2231-2730","PHARMACOLOGY & PHARMACY","('ESCI',)","1,916","1.5","Q3","0.26","97.30" +"Journal of Philanthropy and Marketing","","2691-1361","BUSINESS","('ESCI',)","128","1.5","Q3","0.26","35.58" +"PHYSICA STATUS SOLIDI B-BASIC SOLID STATE PHYSICS","0370-1972","1521-3951","PHYSICS, CONDENSED MATTER","('SCIE',)","10,761","1.5","Q3","0.26","17.37" +"Retos-Revista de Ciencias de la Administracion y Economia","1390-6291","1390-8618","ECONOMICS","('ESCI',)","172","1.5","Q2","0.26","96.67" +"GAIA-Ecological Perspectives for Science and Society","0940-5550","2625-5413","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('SCIE', 'SSCI')","971","1.5","('Q4', 'Q4')","0.25","80.81" +"International Review for Spatial Planning and Sustainable Development","2187-3666","2187-3666","GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY","('ESCI',)","412","1.5","Q4","0.25","63.89" +"New Microbiologica","1121-7138","1121-7138","MICROBIOLOGY","('SCIE',)","1,113","1.5","Q4","0.25","0.00" +"Postepy w Kardiologii Interwencyjnej","1734-9338","1897-4295","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","466","1.5","Q3","0.25","99.27" +"SCIENCE AND ENGINEERING OF COMPOSITE MATERIALS","0792-1233","2191-0359","MATERIALS SCIENCE, COMPOSITES","('SCIE',)","1,182","1.5","Q4","0.25","96.93" +"Blood Science","2543-6368","2543-6368","HEMATOLOGY","('ESCI',)","153","1.5","Q3","0.24","93.59" +"CELLULAR AND MOLECULAR BIOLOGY","0145-5680","1165-158X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CELL BIOLOGY')","('SCIE', 'SCIE')","3,305","1.5","('Q4', 'Q4')","0.24","97.98" +"Journal of Computational Applied Mechanics","2423-6713","2423-6705","MECHANICS","('ESCI',)","342","1.5","Q3","0.24","0.00" +"Advances in Condensed Matter Physics","1687-8108","1687-8124","PHYSICS, CONDENSED MATTER","('SCIE',)","784","1.5","Q3","0.23","100.00" +"INTERNATIONAL JOURNAL OF CHEMICAL KINETICS","0538-8066","1097-4601","CHEMISTRY, PHYSICAL","('SCIE',)","3,500","1.5","Q4","0.23","10.99" +"Mires and Peat","1819-754X","1819-754X","ENVIRONMENTAL SCIENCES","('SCIE',)","832","1.5","Q4","0.23","0.00" +"Wind Engineering","0309-524X","2048-402X","ENERGY & FUELS","('ESCI',)","1,298","1.5","Q4","0.23","4.14" +"BRAZILIAN JOURNAL OF CHEMICAL ENGINEERING","0104-6632","1678-4383","ENGINEERING, CHEMICAL","('SCIE',)","2,639","1.5","Q3","0.22","2.69" +"EPJ Applied Metamaterials","2272-2394","2272-2394","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","136","1.5","Q4","0.22","97.73" +"Materials Research-Ibero-american Journal of Materials","1516-1439","1980-5373","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","5,757","1.5","Q4","0.22","95.30" +"Translational Cancer Research","2218-676X","2219-6803","ONCOLOGY","('SCIE',)","3,929","1.5","Q4","0.22","99.74" +"CHEMIE INGENIEUR TECHNIK","0009-286X","1522-2640","ENGINEERING, CHEMICAL","('SCIE',)","3,172","1.5","Q3","0.21","69.05" +"Journal of Tropical Meteorology","1006-8775","1006-8775","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","745","1.5","Q4","0.21","22.02" +"American Journal of Stem Cells","2160-4150","2160-4150","CELL BIOLOGY","('ESCI',)","187","1.5","Q4","0.20","0.00" +"Central European Journal of Immunology","1426-3912","1644-4124","IMMUNOLOGY","('SCIE',)","1,080","1.5","Q4","0.20","98.65" +"Frontiers of Economics in China","1673-3444","1673-3568","ECONOMICS","('ESCI',)","221","1.5","Q2","0.19","0.00" +"Learning Communities-International Journal of Learning in Social Contexts","1329-1440","1329-1440","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","97","1.5","Q2","0.19","0.00" +"Micro & Nano Letters","","1750-0443","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","2,239","1.5","('Q4', 'Q4')","0.19","78.91" +"ACTA PROTOZOOLOGICA","0065-1583","1689-0027","MICROBIOLOGY","('SCIE',)","567","1.5","Q4","0.17","100.00" +"MOLECULAR BIOLOGY","0026-8933","1608-3245","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","1,662","1.5","Q4","0.17","8.07" +"Journal of Consumer Sciences","","0378-5254","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","90","1.5","Q2","0.15","0.00" +"Journal of Combustion","2090-1968","2090-1976","ENGINEERING, CHEMICAL","('ESCI',)","231","1.5","Q3","0.11","100.00" +"Museum Management and Curatorship","0964-7775","1872-9185","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","914","1.4","","3.88","21.99" +"WALT WHITMAN QUARTERLY REVIEW","0737-0679","2153-3695","POETRY","('AHCI',)","42","1.4","","3.38","33.33" +"Memory Studies","1750-6980","1750-6999","('CULTURAL STUDIES', 'HISTORY')","('AHCI, SSCI', 'AHCI, SSCI')","1,413","1.4","('Q1', 'Q1')","2.53","28.48" +"ECONOMIC HISTORY REVIEW","0013-0117","1468-0289","('ECONOMICS', 'HISTORY', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'AHCI, SSCI', 'SSCI')","2,521","1.4","('Q3', 'Q1', 'Q1')","2.52","48.05" +"Philosophers Imprint","1533-628X","","PHILOSOPHY","('AHCI',)","829","1.4","","2.47","26.44" +"European Law Journal","1351-5993","1468-0386","LAW","('SSCI',)","892","1.4","Q1","2.09","47.06" +"Journal of Empirical Theology","0922-2936","1570-9256","RELIGION","('ESCI',)","120","1.4","","1.99","16.67" +"Multilingua-Journal of Cross-Cultural and Interlanguage Communication","0167-8507","1613-3684","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","751","1.4","('N/A', 'Q2')","1.79","29.09" +"Grotiana","0167-3831","1876-0759","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","112","1.4","","1.74","23.81" +"LAW AND SOCIAL INQUIRY-JOURNAL OF THE AMERICAN BAR FOUNDATION","0897-6546","1747-4469","LAW","('SSCI',)","1,681","1.4","Q1","1.73","38.18" +"Asia & the Pacific Policy Studies","2050-2680","2050-2680","AREA STUDIES","('SSCI',)","507","1.4","Q1","1.66","92.73" +"Oxford Journal of Legal Studies","0143-6503","1464-3820","LAW","('SSCI',)","1,257","1.4","Q1","1.55","38.97" +"SOCIAL & LEGAL STUDIES","0964-6639","1461-7390","('CRIMINOLOGY & PENOLOGY', 'LAW', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","1,251","1.4","('Q2', 'Q1', 'Q2')","1.51","60.48" +"INTERNATIONAL JOURNAL OF LAW AND PSYCHIATRY","0160-2527","1873-6386","('LAW', 'PSYCHIATRY')","('SSCI', 'SSCI')","2,082","1.4","('Q1', 'Q3')","1.46","33.78" +"IRAL-INTERNATIONAL REVIEW OF APPLIED LINGUISTICS IN LANGUAGE TEACHING","0019-042X","1613-4141","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('SSCI', 'SSCI')","939","1.4","('Q2', 'Q2')","1.37","13.89" +"Social Epistemology","0269-1728","1464-5297","('HISTORY & PHILOSOPHY OF SCIENCE', 'PHILOSOPHY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('AHCI, SSCI', 'AHCI', 'SSCI')","1,373","1.4","('Q1', 'N/A', 'Q2')","1.36","32.40" +"Archaeological Dialogues","1380-2038","1478-2294","ARCHAEOLOGY","('AHCI',)","372","1.4","","1.35","56.00" +"Current Legal Problems","0070-1998","2044-8422","LAW","('SSCI',)","371","1.4","Q1","1.35","70.97" +"PHILOSOPHY OF SCIENCE","0031-8248","1539-767X","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","4,259","1.4","Q1","1.28","22.36" +"STUDIES IN HISTORY AND PHILOSOPHY OF SCIENCE","0039-3681","1879-2510","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","1,905","1.4","Q1","1.27","28.70" +"China Perspectives","2070-3449","1996-4617","AREA STUDIES","('SSCI',)","575","1.4","Q1","1.24","1.32" +"PACIFIC AFFAIRS","0030-851X","1715-3379","AREA STUDIES","('SSCI',)","873","1.4","Q1","1.23","0.00" +"Journal of Politeness Research-Language Behaviour Culture","1612-5681","1613-4877","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","541","1.4","('N/A', 'Q2')","1.22","18.64" +"Language Assessment Quarterly","1543-4303","1543-4311","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'PSYCHOLOGY, EDUCATIONAL')","('AHCI', 'SSCI', 'SSCI')","1,008","1.4","('N/A', 'Q2', 'Q3')","1.20","14.52" +"Analysis and Mathematical Physics","1664-2368","1664-235X","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","931","1.4","('Q1', 'Q2')","1.15","18.69" +"Ardeola-International Journal of Ornithology","0570-7358","2341-0825","ORNITHOLOGY","('SCIE',)","505","1.4","Q2","1.15","0.00" +"Journal of Island & Coastal Archaeology","1556-4894","1556-1828","ARCHAEOLOGY","('AHCI',)","596","1.4","","1.15","26.53" +"Journal of Fixed Point Theory and Applications","1661-7738","1661-7746","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,424","1.4","('Q1', 'Q2')","1.13","23.11" +"JOURNAL OF CRIME & JUSTICE","0735-648X","2158-9119","CRIMINOLOGY & PENOLOGY","('SSCI',)","723","1.4","Q2","1.12","5.77" +"Language Policy","1568-4555","1573-1863","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","847","1.4","('Q2', 'N/A', 'Q2')","1.12","30.30" +"JOURNAL OF SPECIAL EDUCATION","0022-4669","1538-4764","EDUCATION, SPECIAL","('SSCI',)","1,331","1.4","Q3","1.09","3.39" +"LGBTQ Family-An Interdisciplinary Journal","2770-3371","2770-338X","('CRIMINOLOGY & PENOLOGY', 'WOMENS STUDIES')","('SSCI', 'SSCI')","54","1.4","('Q2', 'Q2')","1.06","27.42" +"Carpathian Journal of Mathematics","1584-2851","1843-4401","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","584","1.4","('Q1', 'Q2')","1.04","0.00" +"Legal Ethics","1460-728X","1757-8450","LAW","('ESCI',)","88","1.4","Q1","1.04","61.90" +"Review of African Political Economy","0305-6244","1740-1720","('AREA STUDIES', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,269","1.4","('Q1', 'Q2')","1.03","4.08" +"Science China-Mathematics","1674-7283","1869-1862","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,303","1.4","('Q1', 'Q2')","1.01","0.28" +"CALCOLO","0008-0624","1126-5434","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,080","1.4","('Q1', 'Q2')","1.00","19.75" +"Global Crime","1744-0572","1744-0580","CRIMINOLOGY & PENOLOGY","('ESCI',)","455","1.4","Q2","0.99","34.78" +"MILLENNIUM-JOURNAL OF INTERNATIONAL STUDIES","0305-8298","1477-9021","INTERNATIONAL RELATIONS","('SSCI',)","1,928","1.4","Q2","0.98","44.90" +"JOURNAL OF LITERACY RESEARCH","1086-296X","1554-8430","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","863","1.4","('Q2', 'Q3')","0.96","5.97" +"Journal of Dynamics and Differential Equations","1040-7294","1572-9222","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,365","1.4","('Q1', 'Q2')","0.95","17.15" +"Language Variation and Change","0954-3945","1469-8021","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","959","1.4","('N/A', 'Q2')","0.95","56.82" +"Victims & Offenders","1556-4886","1556-4991","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,101","1.4","Q2","0.95","15.74" +"Information and Inference-A Journal of the IMA","2049-8764","2049-8772","MATHEMATICS, APPLIED","('SCIE',)","458","1.4","Q2","0.94","10.46" +"International Journal of Science Education Part B-Communication and Public Engagement","2154-8455","2154-8463","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","460","1.4","Q2","0.94","25.00" +"Australian Journal of Administrative Law","1320-7105","1320-7105","LAW","('ESCI',)","126","1.4","Q1","0.93","0.00" +"Business and Politics","","1469-3569","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","686","1.4","('Q2', 'Q2')","0.93","56.94" +"Critical Criminology","1205-8629","1572-9877","CRIMINOLOGY & PENOLOGY","('SSCI',)","908","1.4","Q2","0.92","36.62" +"Ornithology Research","","2662-673X","ORNITHOLOGY","('SCIE',)","159","1.4","Q2","0.92","4.76" +"JOURNAL OF THE AMERICAN PSYCHOANALYTIC ASSOCIATION","0003-0651","1941-2460","('PSYCHIATRY', 'PSYCHOLOGY, PSYCHOANALYSIS')","('SSCI', 'SSCI')","1,240","1.4","('Q3', 'Q1')","0.91","0.00" +"THEORY AND PRACTICE OF LOGIC PROGRAMMING","1471-0684","1475-3081","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS', 'LOGIC')","('SCIE', 'SCIE', 'SCIE')","687","1.4","('Q3', 'Q3', 'Q1')","0.91","46.51" +"ALTERNATIVES","0304-3754","2163-3150","INTERNATIONAL RELATIONS","('SSCI',)","698","1.4","Q2","0.89","31.48" +"JOURNAL OF SOCIOLOGY","1440-7833","1741-2978","SOCIOLOGY","('SSCI',)","1,665","1.4","Q2","0.89","20.90" +"Results in Applied Mathematics","2590-0374","2590-0374","MATHEMATICS, APPLIED","('ESCI',)","295","1.4","Q2","0.89","99.46" +"BMC Zoology","","2056-3132","ZOOLOGY","('SCIE',)","289","1.4","Q2","0.88","100.00" +"Children & Society","0951-0605","1099-0860","SOCIAL WORK","('SSCI',)","1,651","1.4","Q2","0.87","48.62" +"GEOARCHAEOLOGY-AN INTERNATIONAL JOURNAL","0883-6353","1520-6548","('ARCHAEOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('AHCI', 'SCIE')","1,299","1.4","('N/A', 'Q3')","0.87","31.34" +"JOURNAL OF POSITIVE BEHAVIOR INTERVENTIONS","1098-3007","1538-4772","('EDUCATION, SPECIAL', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","1,302","1.4","('Q3', 'Q3')","0.87","11.67" +"JOURNAL OF COMPUTATIONAL AND GRAPHICAL STATISTICS","1061-8600","1537-2715","STATISTICS & PROBABILITY","('SCIE',)","5,702","1.4","Q2","0.86","19.44" +"Police Practice and Research","1561-4263","1477-271X","CRIMINOLOGY & PENOLOGY","('ESCI',)","1,056","1.4","Q2","0.86","15.70" +"American Journal of Audiology","1059-0889","1558-9137","('AUDIOLOGY & SPEECH', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE')","1,538","1.4","('Q3', 'Q2')","0.85","10.25" +"ANNALS OF APPLIED PROBABILITY","1050-5164","","STATISTICS & PROBABILITY","('SCIE',)","4,033","1.4","Q2","0.85","1.64" +"ANTHROPOLOGY & EDUCATION QUARTERLY","0161-7761","1548-1492","('ANTHROPOLOGY', 'EDUCATION & EDUCATIONAL RESEARCH')","('SSCI', 'SSCI')","1,125","1.4","('Q2', 'Q2')","0.85","15.28" +"Archives of Budo","1643-8698","1643-8698","SPORT SCIENCES","('SCIE',)","521","1.4","Q3","0.85","0.00" +"Child and Adolescent Social Work Journal","0738-0151","1573-2797","SOCIAL WORK","('SSCI',)","1,477","1.4","Q2","0.85","14.75" +"Political Studies Review","1478-9299","1478-9302","POLITICAL SCIENCE","('SSCI',)","971","1.4","Q2","0.85","42.77" +"Journal of Otology","1672-2930","1672-2930","OTORHINOLARYNGOLOGY","('ESCI',)","407","1.4","Q2","0.84","97.39" +"Korean Journal of Family Medicine","2092-6715","2092-6715","PRIMARY HEALTH CARE","('ESCI',)","1,140","1.4","Q4","0.83","99.37" +"QUALITATIVE INQUIRY","1077-8004","1552-7565","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","8,904","1.4","Q2","0.82","28.28" +"RUSSIAN MATHEMATICAL SURVEYS","0036-0279","1468-4829","MATHEMATICS","('SCIE',)","3,066","1.4","Q1","0.82","0.00" +"International Journal of Speech-Language Pathology","1754-9507","1754-9515","('AUDIOLOGY & SPEECH', 'LINGUISTICS', 'REHABILITATION')","('SCIE', 'SSCI', 'SCIE, SSCI')","1,886","1.4","('Q3', 'Q2', 'Q3')","0.81","25.74" +"JOURNAL OF MULTIVARIATE ANALYSIS","0047-259X","","STATISTICS & PROBABILITY","('SCIE',)","5,409","1.4","Q2","0.81","25.84" +"Journal of Vocational Education and Training","1363-6820","1747-5090","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,004","1.4","Q2","0.81","37.23" +"OPERATIVE DENTISTRY","0361-7734","1559-2863","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","4,431","1.4","Q3","0.81","0.00" +"Critical and Radical Social Work","2049-8608","2049-8675","SOCIAL WORK","('ESCI',)","308","1.4","Q2","0.80","8.08" +"Dimensions of Critical Care Nursing","0730-4625","1538-8646","NURSING","('ESCI',)","783","1.4","Q3","0.80","0.00" +"JOURNAL OF SOCIAL SERVICE RESEARCH","0148-8376","1540-7314","SOCIAL WORK","('SSCI',)","1,387","1.4","Q2","0.80","3.61" +"COCHLEAR IMPLANTS INTERNATIONAL","1467-0100","1754-7628","OTORHINOLARYNGOLOGY","('ESCI',)","1,103","1.4","Q2","0.79","9.85" +"Communications on Applied Mathematics and Computation","2096-6385","2661-8893","MATHEMATICS, APPLIED","('ESCI',)","318","1.4","Q2","0.79","17.41" +"EUROPEAN JOURNAL OF WOMENS STUDIES","1350-5068","1461-7420","WOMENS STUDIES","('SSCI',)","1,194","1.4","Q2","0.79","32.93" +"AStA-Advances in Statistical Analysis","1863-8171","1863-818X","STATISTICS & PROBABILITY","('SCIE',)","592","1.4","Q2","0.78","55.00" +"International Criminal Justice Review","1057-5677","1556-3855","CRIMINOLOGY & PENOLOGY","('ESCI',)","464","1.4","Q2","0.78","27.78" +"Learning and Teaching in Higher Education-Gulf Perspectives","2077-5504","2077-5504","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","56","1.4","Q2","0.78","100.00" +"Stochastics and Partial Differential Equations-Analysis and Computations","2194-0401","2194-041X","('MATHEMATICS, APPLIED', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","565","1.4","('Q2', 'Q2')","0.78","41.22" +"European Journal of Social Work","1369-1457","1468-2664","SOCIAL WORK","('SSCI',)","1,290","1.4","Q2","0.77","49.44" +"Kotuitui-New Zealand Journal of Social Sciences Online","","1177-083X","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","314","1.4","Q2","0.77","97.12" +"LAW PROBABILITY & RISK","1470-8396","1470-840X","('LAW', 'MATHEMATICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","234","1.4","('Q1', 'Q1', 'Q3', 'Q2')","0.77","18.52" +"POLICING-AN INTERNATIONAL JOURNAL OF POLICE STRATEGIES & MANAGEMENT","1363-951X","1758-695X","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,718","1.4","Q2","0.77","2.67" +"Social Anthropology","0964-0282","1469-8676","ANTHROPOLOGY","('SSCI',)","1,172","1.4","Q2","0.77","62.50" +"Educational Media International","0952-3987","1469-5790","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","609","1.4","Q2","0.76","6.38" +"ENTOMOLOGIA EXPERIMENTALIS ET APPLICATA","0013-8703","1570-7458","ENTOMOLOGY","('SCIE',)","5,712","1.4","Q2","0.76","19.09" +"Forensic Sciences Research","2096-1790","2471-1411","MEDICINE, LEGAL","('ESCI',)","698","1.4","Q3","0.76","91.89" +"JOURNAL OF APPLIED ANIMAL WELFARE SCIENCE","1088-8705","1532-7604","VETERINARY SCIENCES","('SCIE',)","1,402","1.4","Q2","0.76","17.20" +"JOURNAL OF BACK AND MUSCULOSKELETAL REHABILITATION","1053-8127","1878-6324","('ORTHOPEDICS', 'REHABILITATION')","('SCIE', 'SCIE')","2,190","1.4","('Q3', 'Q3')","0.76","6.00" +"Politics & Policy","1555-5623","1747-1346","POLITICAL SCIENCE","('ESCI',)","791","1.4","Q2","0.76","22.52" +"VETERINARY ANAESTHESIA AND ANALGESIA","1467-2987","1467-2995","VETERINARY SCIENCES","('SCIE',)","2,370","1.4","Q2","0.76","12.11" +"Zebrafish","1545-8547","1557-8542","('DEVELOPMENTAL BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","1,610","1.4","('Q4', 'Q2')","0.76","9.62" +"Revista Matematica Complutense","1139-1138","1988-2807","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","605","1.4","('Q1', 'Q2')","0.75","41.58" +"ANIMAL WELFARE","0962-7286","2054-1538","('VETERINARY SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","2,726","1.4","('Q2', 'Q2')","0.74","43.15" +"Communication Studies","1051-0974","1745-1035","COMMUNICATION","('ESCI',)","1,370","1.4","Q2","0.74","2.11" +"DISCOURSE STUDIES","1461-4456","1461-7080","COMMUNICATION","('SSCI',)","1,776","1.4","Q2","0.74","25.71" +"European Political Science","1680-4333","1682-0983","POLITICAL SCIENCE","('SSCI',)","686","1.4","Q2","0.74","37.27" +"International Politics","1384-5748","1740-3898","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","801","1.4","('Q2', 'Q2')","0.74","25.60" +"International Studies in Sociology of Education","0962-0214","1747-5066","('EDUCATION & EDUCATIONAL RESEARCH', 'SOCIOLOGY')","('ESCI', 'ESCI')","611","1.4","('Q2', 'Q2')","0.74","28.71" +"JOURNAL OF DENTAL EDUCATION","0022-0337","1930-7837","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","4,548","1.4","Q3","0.74","19.29" +"JOURNAL OF HYMENOPTERA RESEARCH","1070-9428","1314-2607","ENTOMOLOGY","('SCIE',)","850","1.4","Q2","0.74","99.59" +"Social Inclusion","","2183-2803","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","1,503","1.4","Q2","0.74","98.47" +"Advances in Data Analysis and Classification","1862-5347","1862-5355","STATISTICS & PROBABILITY","('SCIE',)","832","1.4","Q2","0.73","44.27" +"Journal of Childrens Services","1746-6660","2042-8677","SOCIAL WORK","('ESCI',)","352","1.4","Q2","0.73","10.34" +"Journal of Ethnic & Cultural Diversity in Social Work","1531-3204","1531-3212","SOCIAL WORK","('ESCI',)","576","1.4","Q2","0.73","4.90" +"JOURNAL OF PEDIATRIC ORTHOPAEDICS","0271-6798","1539-2570","('ORTHOPEDICS', 'PEDIATRICS')","('SCIE', 'SCIE')","8,934","1.4","('Q3', 'Q3')","0.73","5.46" +"Mathematical Modelling and Control","","2767-8946","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","77","1.4","('Q1', 'Q2')","0.73","100.00" +"Mathematics Education Research Journal","1033-2170","2211-050X","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","876","1.4","Q3","0.73","39.68" +"Tertiary Education and Management","1358-3883","1573-1936","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","682","1.4","Q2","0.73","49.28" +"Cultural Sociology","1749-9755","1749-9763","SOCIOLOGY","('SSCI',)","802","1.4","Q2","0.72","46.59" +"Focaal-Journal of Global and Historical Anthropology","0920-1297","1558-5263","ANTHROPOLOGY","('SSCI',)","484","1.4","Q2","0.72","93.33" +"LEGISLATIVE STUDIES QUARTERLY","0362-9805","1939-9162","POLITICAL SCIENCE","('SSCI',)","1,429","1.4","Q2","0.72","30.59" +"NUMERICAL FUNCTIONAL ANALYSIS AND OPTIMIZATION","0163-0563","1532-2467","MATHEMATICS, APPLIED","('SCIE',)","1,649","1.4","Q2","0.72","4.07" +"Journal of Digital Media & Policy","2516-3523","2516-3531","COMMUNICATION","('ESCI',)","134","1.4","Q2","0.71","3.03" +"Journal of Psychologists and Counsellors in Schools","2055-6365","2055-6373","('EDUCATION & EDUCATIONAL RESEARCH', 'SOCIAL WORK')","('SSCI', 'SSCI')","229","1.4","('Q2', 'Q2')","0.71","3.13" +"Peacebuilding","2164-7259","2164-7267","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","429","1.4","('Q2', 'Q2')","0.71","42.57" +"Psychiatry Psychology and Law","1321-8719","1934-1687","('CRIMINOLOGY & PENOLOGY', 'LAW', 'PSYCHIATRY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","1,042","1.4","('Q2', 'Q1', 'Q3', 'Q3')","0.71","22.54" +"Ethnicities","1468-7968","1741-2706","ETHNIC STUDIES","('SSCI',)","1,397","1.4","Q2","0.70","35.98" +"Interest Groups & Advocacy","2047-7414","2047-7422","POLITICAL SCIENCE","('ESCI',)","364","1.4","Q2","0.70","29.58" +"ORTHOPEDIC CLINICS OF NORTH AMERICA","0030-5898","1558-1373","ORTHOPEDICS","('SCIE',)","3,407","1.4","Q3","0.70","1.92" +"Anatomy & Cell Biology","2093-3665","2093-3673","ANATOMY & MORPHOLOGY","('ESCI',)","941","1.4","Q3","0.69","87.13" +"Critical Care Nursing Clinics of North America","0899-5885","1558-3481","NURSING","('SCIE', 'SSCI')","818","1.4","Q3","0.69","1.60" +"JOURNAL OF APICULTURAL RESEARCH","0021-8839","2078-6913","ENTOMOLOGY","('SCIE',)","3,800","1.4","Q2","0.69","9.80" +"NEOTROPICAL ENTOMOLOGY","1519-566X","1678-8052","ENTOMOLOGY","('SCIE',)","2,279","1.4","Q2","0.69","7.61" +"Refugee Survey Quarterly","1020-4067","1471-695X","DEMOGRAPHY","('ESCI',)","696","1.4","Q3","0.69","32.98" +"Research in Human Development","1542-7609","1542-7617","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","909","1.4","Q4","0.69","5.00" +"Acta Politica","0001-6810","1741-1416","POLITICAL SCIENCE","('SSCI',)","926","1.4","Q2","0.68","33.61" +"Asia-Pacific Journal of Teacher Education","1359-866X","1469-2945","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,125","1.4","Q2","0.68","19.72" +"Gender Issues","1098-092X","1936-4717","SOCIAL ISSUES","('ESCI',)","517","1.4","Q3","0.68","22.22" +"JOURNAL OF VECTOR ECOLOGY","1081-1710","1948-7134","ENTOMOLOGY","('SCIE',)","1,379","1.4","Q2","0.68","0.00" +"STATISTICA NEERLANDICA","0039-0402","1467-9574","STATISTICS & PROBABILITY","('SCIE',)","820","1.4","Q2","0.68","27.38" +"Studies in Social Justice","1911-4788","1911-4788","POLITICAL SCIENCE","('ESCI',)","372","1.4","Q2","0.68","0.00" +"COMMUNICATION QUARTERLY","0146-3373","1746-4102","COMMUNICATION","('ESCI',)","1,239","1.4","Q2","0.67","4.44" +"JOURNAL OF NEMATOLOGY","0022-300X","2640-396X","ZOOLOGY","('SCIE',)","3,167","1.4","Q2","0.67","94.62" +"Methods Data Analyses","1864-6956","2190-4936","SOCIAL SCIENCES, MATHEMATICAL METHODS","('ESCI',)","282","1.4","Q3","0.67","0.00" +"Palaeobiodiversity and Palaeoenvironments","1867-1594","1867-1608","('BIODIVERSITY CONSERVATION', 'PALEONTOLOGY')","('SCIE', 'SCIE')","630","1.4","('Q3', 'Q3')","0.67","50.38" +"SCOTTISH MEDICAL JOURNAL","0036-9330","2045-6441","MEDICINE, GENERAL & INTERNAL","('SCIE',)","719","1.4","Q2","0.67","9.09" +"ANIMAL BIOLOGY","1570-7555","1570-7563","ZOOLOGY","('SCIE',)","470","1.4","Q2","0.66","6.67" +"European Journal of Orthopaedic Surgery and Traumatology","1633-8065","1432-1068","('ORTHOPEDICS', 'SURGERY')","('ESCI', 'ESCI')","3,731","1.4","('Q3', 'Q3')","0.66","19.26" +"International Journal of Nursing Knowledge","2047-3087","2047-3095","NURSING","('SCIE', 'SSCI')","477","1.4","Q3","0.66","12.71" +"PEDIATRIC EXERCISE SCIENCE","0899-8493","1543-2920","('PEDIATRICS', 'PHYSIOLOGY', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","1,702","1.4","('Q3', 'Q4', 'Q3')","0.66","1.96" +"Seminars in Pediatric Surgery","1055-8586","1532-9453","('PEDIATRICS', 'SURGERY')","('SCIE', 'SCIE')","2,317","1.4","('Q3', 'Q3')","0.66","6.21" +"ACTA ODONTOLOGICA SCANDINAVICA","0001-6357","1502-3850","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","4,030","1.4","Q3","0.65","50.93" +"Acta Stomatologica Croatica","0001-7019","1846-0410","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","511","1.4","Q3","0.65","96.30" +"ANNALS OF PLASTIC SURGERY","0148-7043","1536-3708","SURGERY","('SCIE',)","10,392","1.4","Q3","0.65","2.72" +"IAWA JOURNAL","0928-1541","2294-1932","FORESTRY","('SCIE',)","2,038","1.4","Q2","0.65","16.30" +"Innovation and Development","2157-930X","2157-9318","('DEVELOPMENT STUDIES', 'ECONOMICS')","('ESCI', 'ESCI')","421","1.4","('Q3', 'Q3')","0.65","22.50" +"JOURNAL OF NONLINEAR MATHEMATICAL PHYSICS","1402-9251","1776-0852","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","827","1.4","('Q2', 'Q2')","0.65","90.06" +"Mathematical Population Studies","0889-8480","1547-724X","('DEMOGRAPHY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","242","1.4","('Q3', 'Q3', 'Q3', 'Q2')","0.65","0.00" +"Network Science","2050-1242","2050-1250","('SOCIAL SCIENCES, INTERDISCIPLINARY', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'SOCIOLOGY')","('ESCI', 'ESCI', 'ESCI')","855","1.4","('Q2', 'Q3', 'Q2')","0.65","44.44" +"RADIOCHIMICA ACTA","0033-8230","2193-3405","('CHEMISTRY, INORGANIC & NUCLEAR', 'NUCLEAR SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","3,085","1.4","('Q4', 'Q3')","0.65","5.02" +"Journal of International and Intercultural Communication","1751-3057","1751-3065","COMMUNICATION","('ESCI',)","536","1.4","Q2","0.64","1.85" +"Journal of Research in International Education","1475-2409","1741-2943","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","479","1.4","Q2","0.64","30.61" +"CLINICAL OBSTETRICS AND GYNECOLOGY","0009-9201","1532-5520","OBSTETRICS & GYNECOLOGY","('SCIE',)","3,241","1.4","Q3","0.63","1.28" +"International Journal for Multiscale Computational Engineering","1543-1649","1940-4352","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","500","1.4","('Q2', 'Q3')","0.63","0.00" +"International Journal of Emergency Services","2047-0894","2047-0908","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","238","1.4","Q2","0.63","12.16" +"Revista Paulista de Pediatria","0103-0582","1984-0462","PEDIATRICS","('ESCI',)","1,143","1.4","Q3","0.63","90.53" +"Veterinary Parasitology- Regional Studies and Reports","2405-9390","2405-9390","('PARASITOLOGY', 'VETERINARY SCIENCES')","('ESCI', 'ESCI')","1,199","1.4","('Q3', 'Q2')","0.63","13.95" +"AUSTRALIAN & NEW ZEALAND JOURNAL OF OBSTETRICS & GYNAECOLOGY","0004-8666","1479-828X","OBSTETRICS & GYNECOLOGY","('SCIE',)","3,240","1.4","Q3","0.62","28.42" +"BRAIN & DEVELOPMENT","0387-7604","1872-7131","('CLINICAL NEUROLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","4,092","1.4","('Q4', 'Q3')","0.62","19.36" +"Female Pelvic Medicine and Reconstructive Surgery","2151-8378","2154-4212","OBSTETRICS & GYNECOLOGY","('SCIE',)","1,707","1.4","Q3","0.62","2.32" +"Journal of Hip Preservation Surgery","2054-8397","2054-8397","ORTHOPEDICS","('SCIE',)","732","1.4","Q3","0.62","97.50" +"PHILOSOPHICAL PSYCHOLOGY","0951-5089","1465-394X","('ETHICS', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","1,515","1.4","('Q2', 'Q3')","0.62","28.76" +"READING TEACHER","0034-0561","1936-2714","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,879","1.4","Q2","0.62","18.72" +"Revista Electronica Interuniversitaria de Formacion del Profesorado","","1575-0965","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","658","1.4","Q2","0.62","95.27" +"SMITH COLLEGE STUDIES IN SOCIAL WORK","0037-7317","1553-0426","SOCIAL WORK","('ESCI',)","294","1.4","Q2","0.62","5.77" +"DESIGNS CODES AND CRYPTOGRAPHY","0925-1022","1573-7586","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,902","1.4","('Q3', 'Q2')","0.61","17.93" +"INTERNATIONAL OPHTHALMOLOGY","0165-5701","1573-2630","OPHTHALMOLOGY","('SCIE',)","4,818","1.4","Q3","0.61","15.99" +"Journal of Family Studies","1322-9400","1839-3543","FAMILY STUDIES","('SSCI',)","846","1.4","Q3","0.61","24.88" +"Journal of Human Rights and Social Work","2365-1792","2365-1792","SOCIAL WORK","('ESCI',)","274","1.4","Q2","0.61","17.09" +"OPTIMIZATION METHODS & SOFTWARE","1055-6788","1029-4937","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","2,071","1.4","('Q3', 'Q2', 'Q3')","0.61","9.93" +"Polar-Political and Legal Anthropology Review","1081-6976","1555-2934","ANTHROPOLOGY","('SSCI',)","640","1.4","Q2","0.61","37.50" +"Public Health Ethics","1754-9973","1754-9981","('ETHICS', 'MEDICAL ETHICS', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SCIE', 'SCIE, SSCI')","517","1.4","('Q2', 'Q3', 'Q3')","0.61","48.68" +"Surgery Open Science","2589-8450","2589-8450","SURGERY","('ESCI',)","245","1.4","Q3","0.61","97.18" +"VETERINARY IMMUNOLOGY AND IMMUNOPATHOLOGY","0165-2427","1873-2534","('IMMUNOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","5,672","1.4","('Q4', 'Q2')","0.61","25.00" +"African Journal of Emergency Medicine","2211-419X","2211-4203","EMERGENCY MEDICINE","('SCIE',)","894","1.4","Q3","0.60","89.71" +"Business and Professional Communication Quarterly","2329-4906","2329-4922","COMMUNICATION","('ESCI',)","597","1.4","Q2","0.60","5.71" +"EUROPEAN JOURNAL OF OPHTHALMOLOGY","1120-6721","1724-6016","OPHTHALMOLOGY","('SCIE',)","5,209","1.4","Q3","0.60","5.52" +"GEOGRAPHICAL REVIEW","0016-7428","1931-0846","GEOGRAPHY","('SSCI',)","2,379","1.4","Q2","0.60","12.82" +"International Journal of Healthcare Management","2047-9700","2047-9719","HEALTH POLICY & SERVICES","('ESCI',)","924","1.4","Q4","0.60","5.09" +"Iranian Journal of Science and Technology Transaction A-Science","1028-6276","2364-1819","MULTIDISCIPLINARY SCIENCES","('SCIE',)","1,735","1.4","Q2","0.60","1.78" +"Oral Health & Preventive Dentistry","1602-1622","1757-9996","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,253","1.4","Q3","0.60","0.00" +"Psychology of Consciousness-Theory Research and Practice","2326-5523","2326-5531","PSYCHOLOGY, EXPERIMENTAL","('ESCI',)","606","1.4","Q4","0.60","0.75" +"Journal of Orthodontics","1465-3125","1465-3133","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","1,150","1.4","Q3","0.59","24.10" +"HISTORICAL BIOLOGY","0891-2963","1029-2381","PALEONTOLOGY","('SCIE',)","2,466","1.4","Q3","0.58","4.79" +"IMA JOURNAL OF APPLIED MATHEMATICS","0272-4960","1464-3634","MATHEMATICS, APPLIED","('SCIE',)","1,685","1.4","Q2","0.58","26.05" +"INSECTES SOCIAUX","0020-1812","1420-9098","ENTOMOLOGY","('SCIE',)","2,523","1.4","Q2","0.58","23.58" +"International Journal of Differential Equations","1687-9643","1687-9651","MATHEMATICS, APPLIED","('ESCI',)","376","1.4","Q2","0.58","96.92" +"PALYNOLOGY","0191-6122","1558-9188","('PALEONTOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","1,071","1.4","('Q3', 'Q3')","0.58","8.15" +"Anales de Psicologia","0212-9728","1695-2294","('PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI')","2,150","1.4","('Q3', 'Q3')","0.57","97.06" +"Avian Conservation and Ecology","1712-6568","","('BIODIVERSITY CONSERVATION', 'ORNITHOLOGY')","('SCIE', 'SCIE')","817","1.4","('Q3', 'Q2')","0.57","99.43" +"CLINICAL BIOMECHANICS","0268-0033","1879-1271","('ENGINEERING, BIOMEDICAL', 'ORTHOPEDICS', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","9,076","1.4","('Q4', 'Q3', 'Q3')","0.57","18.14" +"Dementia and Geriatric Cognitive Disorders Extra","","1664-5464","CLINICAL NEUROLOGY","('ESCI',)","996","1.4","Q4","0.57","100.00" +"GEO-MARINE LETTERS","0276-0460","1432-1157","('GEOSCIENCES, MULTIDISCIPLINARY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","1,752","1.4","('Q3', 'Q3')","0.57","23.26" +"International Journal of Game-Based Learning","2155-6849","2155-6857","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","290","1.4","Q2","0.57","34.00" +"Journal of Clinical Sport Psychology","1932-9261","1932-927X","PSYCHOLOGY, APPLIED","('SSCI',)","781","1.4","Q3","0.57","0.91" +"JOURNAL OF THE EXPERIMENTAL ANALYSIS OF BEHAVIOR","0022-5002","1938-3711","('BEHAVIORAL SCIENCES', 'PSYCHOLOGY, BIOLOGICAL', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI', 'SSCI')","3,478","1.4","('Q4', 'Q3', 'Q4')","0.57","20.42" +"New Bioethics-A Multidisciplinary Journal of Biotechnology and the Body","2050-2877","2050-2885","('ETHICS', 'MEDICAL ETHICS', 'SOCIAL SCIENCES, BIOMEDICAL')","('ESCI', 'ESCI', 'ESCI')","217","1.4","('Q2', 'Q3', 'Q4')","0.57","31.34" +"Sex Education-Sexuality Society and Learning","1468-1811","1472-0825","('EDUCATION & EDUCATIONAL RESEARCH', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","1,492","1.4","('Q2', 'Q3')","0.57","24.43" +"Small-Scale Forestry","1873-7617","1873-7854","FORESTRY","('SCIE',)","772","1.4","Q2","0.57","24.73" +"Spirituality in Clinical Practice","2326-4500","2326-4519","PSYCHOLOGY, CLINICAL","('ESCI',)","356","1.4","Q3","0.57","3.23" +"Zeitschrift fur Vergleichende Politikwissenschaft","1865-2646","1865-2654","POLITICAL SCIENCE","('ESCI',)","211","1.4","Q2","0.57","82.43" +"Asian and Pacific Migration Journal","0117-1968","2057-049X","DEMOGRAPHY","('SSCI',)","494","1.4","Q3","0.56","12.00" +"CZECH JOURNAL OF ANIMAL SCIENCE","1212-1819","1805-9309","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,393","1.4","Q3","0.56","97.40" +"Evolutionary Psychological Science","","2198-9885","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","405","1.4","Q3","0.56","19.66" +"Focus on Health Professional Education-A Multidisciplinary Journal","1442-1100","2204-7662","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","206","1.4","Q3","0.56","1.23" +"JOURNAL OF AGRICULTURAL BIOLOGICAL AND ENVIRONMENTAL STATISTICS","1085-7117","1537-2693","('BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","1,493","1.4","('Q3', 'Q4', 'Q2')","0.56","36.09" +"Journal of Applied Economics","1514-0326","1667-6726","ECONOMICS","('SSCI',)","702","1.4","Q3","0.56","99.22" +"Journal of Child Sexual Abuse","1053-8712","1547-0679","('FAMILY STUDIES', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","1,689","1.4","('Q3', 'Q3')","0.56","9.03" +"Journal of Craniovertebral Junction and Spine","0974-8237","0976-9285","OTORHINOLARYNGOLOGY","('ESCI',)","670","1.4","Q2","0.56","82.93" +"JOURNAL OF WOMEN AND MINORITIES IN SCIENCE AND ENGINEERING","1072-8325","1940-431X","('EDUCATION, SCIENTIFIC DISCIPLINES', 'ENGINEERING, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","448","1.4","('Q3', 'Q2')","0.56","0.00" +"Paediatrics and International Child Health","2046-9047","2046-9055","PEDIATRICS","('SCIE',)","806","1.4","Q3","0.56","4.62" +"RESEARCH QUARTERLY FOR EXERCISE AND SPORT","0270-1367","2168-3824","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY', 'PSYCHOLOGY, APPLIED', 'SPORT SCIENCES')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","4,587","1.4","('Q3', 'Q3', 'Q3', 'Q3')","0.56","10.61" +"Applied Animal Science","2590-2873","2590-2865","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","472","1.4","Q3","0.55","32.29" +"Clinical Optometry","1179-2752","1179-2752","OPHTHALMOLOGY","('ESCI',)","366","1.4","Q3","0.55","96.63" +"COUNSELOR EDUCATION AND SUPERVISION","0011-0035","1556-6978","PSYCHOLOGY, APPLIED","('ESCI',)","760","1.4","Q3","0.55","12.05" +"Distinktion-Journal of Social Theory","1600-910X","2159-9149","SOCIOLOGY","('ESCI',)","310","1.4","Q2","0.55","42.68" +"Journal of International Society of Preventive and Community Dentistry","2231-0762","2250-1002","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","1,541","1.4","Q3","0.55","0.00" +"JOURNAL OF THE OPTICAL SOCIETY OF AMERICA A-OPTICS IMAGE SCIENCE AND VISION","1084-7529","1520-8532","OPTICS","('SCIE',)","13,080","1.4","Q3","0.55","7.28" +"MEASUREMENT AND EVALUATION IN COUNSELING AND DEVELOPMENT","0748-1756","1947-6302","('PSYCHOLOGY, APPLIED', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","1,528","1.4","('Q3', 'Q3')","0.55","1.79" +"Pediatric Reports","2036-7503","2036-7503","PEDIATRICS","('ESCI',)","478","1.4","Q3","0.55","100.00" +"RADIOPROTECTION","0033-8451","1769-700X","('ENVIRONMENTAL SCIENCES', 'NUCLEAR SCIENCE & TECHNOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","538","1.4","('Q4', 'Q3', 'Q3', 'Q3')","0.55","18.49" +"CANADIAN GEOGRAPHIES-GEOGRAPHIES CANADIENNES","0008-3658","1541-0064","GEOGRAPHY","('SSCI',)","1,432","1.4","Q2","0.54","27.41" +"JOURNAL OF HOUSING ECONOMICS","1051-1377","1096-0791","('ECONOMICS', 'URBAN STUDIES')","('SSCI', 'SSCI')","1,423","1.4","('Q3', 'Q3')","0.54","15.60" +"Journal of Korean Neurosurgical Society","2005-3711","1598-7876","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","2,661","1.4","('Q4', 'Q3')","0.54","99.27" +"JOURNAL OF MOLECULAR SPECTROSCOPY","0022-2852","1096-083X","('PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE')","4,920","1.4","('Q4', 'Q3')","0.54","36.92" +"MATHEMATICS OF OPERATIONS RESEARCH","0364-765X","1526-5471","('MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","4,448","1.4","('Q2', 'Q3')","0.54","0.00" +"NORTH AMERICAN JOURNAL OF AQUACULTURE","1522-2055","1548-8454","FISHERIES","('SCIE',)","1,148","1.4","Q3","0.54","7.52" +"Ship Technology Research","0937-7255","2056-7111","ENGINEERING, MARINE","('ESCI',)","357","1.4","Q3","0.54","33.33" +"Acta Polytechnica Hungarica","1785-8860","1785-8860","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","1,219","1.4","Q2","0.53","29.77" +"Advances in Fuzzy Systems","1687-7101","1687-711X","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","327","1.4","('Q4', 'Q2')","0.53","100.00" +"AERONAUTICAL JOURNAL","0001-9240","2059-6464","ENGINEERING, AEROSPACE","('SCIE',)","1,888","1.4","Q2","0.53","27.56" +"ANNALS OF VASCULAR SURGERY","0890-5096","1615-5947","('PERIPHERAL VASCULAR DISEASE', 'SURGERY')","('SCIE', 'SCIE')","8,003","1.4","('Q3', 'Q3')","0.53","11.67" +"BIOMETRICS","0006-341X","1541-0420","('BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","25,278","1.4","('Q3', 'Q4', 'Q2')","0.53","24.52" +"EXPERIMENTAL PARASITOLOGY","0014-4894","1090-2449","PARASITOLOGY","('SCIE',)","5,188","1.4","Q3","0.53","11.70" +"International Review of Applied Economics","0269-2171","1465-3486","ECONOMICS","('ESCI',)","1,045","1.4","Q3","0.53","13.39" +"JOURNAL FOR THE THEORY OF SOCIAL BEHAVIOUR","0021-8308","1468-5914","PSYCHOLOGY, SOCIAL","('SSCI',)","1,560","1.4","Q4","0.53","36.84" +"Journal of Behavioral Science","1906-4675","1906-4675","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","272","1.4","Q2","0.53","1.27" +"JOURNAL OF CANCER EDUCATION","0885-8195","1543-0154","('EDUCATION, SCIENTIFIC DISCIPLINES', 'ONCOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE', 'SCIE')","3,545","1.4","('Q3', 'Q4', 'Q3')","0.53","20.50" +"JOURNAL OF EDUCATIONAL MEASUREMENT","0022-0655","1745-3984","('PSYCHOLOGY, APPLIED', 'PSYCHOLOGY, EDUCATIONAL', 'PSYCHOLOGY, MATHEMATICAL')","('SSCI', 'SSCI', 'SSCI')","2,488","1.4","('Q3', 'Q3', 'Q4')","0.53","17.14" +"Journal of Urban Design","1357-4809","1469-9664","URBAN STUDIES","('ESCI',)","1,722","1.4","Q3","0.53","24.79" +"Scandinavian Journal of Urology","2168-1805","2168-1813","UROLOGY & NEPHROLOGY","('SCIE',)","961","1.4","Q3","0.53","51.59" +"Value in Health Regional Issues","2212-1099","2212-1099","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('ESCI', 'ESCI')","979","1.4","('Q3', 'Q4')","0.53","68.42" +"Australian Health Review","0156-5788","1449-8944","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","2,149","1.4","('Q3', 'Q4')","0.52","38.54" +"CHINESE JOURNAL OF PHYSIOLOGY","0304-4920","2666-0059","PHYSIOLOGY","('SCIE',)","662","1.4","Q4","0.52","94.74" +"Diagnostic and Interventional Radiology","1305-3612","1305-3612","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","2,003","1.4","Q3","0.52","60.91" +"DISCRETE EVENT DYNAMIC SYSTEMS-THEORY AND APPLICATIONS","0924-6703","1573-7594","('AUTOMATION & CONTROL SYSTEMS', 'MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","540","1.4","('Q4', 'Q2', 'Q3')","0.52","23.53" +"International Journal of Aeronautical and Space Sciences","2093-274X","2093-2480","ENGINEERING, AEROSPACE","('SCIE',)","1,038","1.4","Q2","0.52","4.42" +"INTERNATIONAL JOURNAL OF NONLINEAR SCIENCES AND NUMERICAL SIMULATION","1565-1339","2191-0294","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, APPLIED', 'MECHANICS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,692","1.4","('Q2', 'Q2', 'Q3', 'Q2')","0.52","4.05" +"LIMNOLOGY","1439-8621","1439-863X","LIMNOLOGY","('SCIE',)","1,008","1.4","Q3","0.52","9.41" +"Surgical Infections","1096-2964","1557-8674","('INFECTIOUS DISEASES', 'SURGERY')","('SCIE', 'SCIE')","3,133","1.4","('Q4', 'Q3')","0.52","2.71" +"Central European Forestry Journal","2454-034X","2454-0358","FORESTRY","('ESCI',)","312","1.4","Q2","0.51","100.00" +"CRYPTOGAMIE ALGOLOGIE","0181-1568","1776-0984","('MARINE & FRESHWATER BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","502","1.4","('Q3', 'Q3')","0.51","0.00" +"ENVIRONMENTAL BIOLOGY OF FISHES","0378-1909","1573-5133","('ECOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","5,840","1.4","('Q3', 'Q3')","0.51","16.46" +"Global Pediatric Health","","2333-794X","PEDIATRICS","('ESCI',)","1,094","1.4","Q3","0.51","91.50" +"International Journal of Computational Methods","0219-8762","1793-6969","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","1,521","1.4","('Q2', 'Q3')","0.51","1.89" +"Journal of Education and Health Promotion","2277-9531","2319-6440","('EDUCATION, SCIENTIFIC DISCIPLINES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","3,376","1.4","('Q3', 'Q3')","0.51","83.26" +"Orthopedic Reviews","2035-8237","2035-8164","ORTHOPEDICS","('ESCI',)","1,037","1.4","Q3","0.51","98.56" +"Pleura and Peritoneum","2364-7671","2364-768X","('ONCOLOGY', 'SURGERY')","('ESCI', 'ESCI')","338","1.4","('Q4', 'Q3')","0.51","95.31" +"Public Library Quarterly","0161-6846","1541-1540","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","366","1.4","Q2","0.51","10.00" +"CHINESE ECONOMY","1097-1475","1558-0954","ECONOMICS","('ESCI',)","423","1.4","Q3","0.50","3.30" +"JOURNAL OF AGING AND PHYSICAL ACTIVITY","1063-8652","1543-267X","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY', 'SPORT SCIENCES')","('SCIE', 'SSCI', 'SCIE')","2,569","1.4","('Q4', 'Q3', 'Q3')","0.50","4.06" +"JOURNAL OF THE AMERICAN HELICOPTER SOCIETY","0002-8711","2161-6027","ENGINEERING, AEROSPACE","('SCIE',)","1,188","1.4","Q2","0.50","2.96" +"NUCLEAR INSTRUMENTS & METHODS IN PHYSICS RESEARCH SECTION B-BEAM INTERACTIONS WITH MATERIALS AND ATOMS","0168-583X","1872-9584","('INSTRUMENTS & INSTRUMENTATION', 'NUCLEAR SCIENCE & TECHNOLOGY', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'PHYSICS, NUCLEAR')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","16,646","1.4","('Q3', 'Q3', 'Q4', 'Q3')","0.50","16.78" +"SYDOWIA","0082-0598","","MYCOLOGY","('SCIE',)","738","1.4","Q4","0.50","0.00" +"TOXICOLOGIC PATHOLOGY","0192-6233","1533-1601","('PATHOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","5,281","1.4","('Q3', 'Q4')","0.50","6.06" +"Archivio Italiano di Urologia e Andrologia","1124-3562","2282-4197","UROLOGY & NEPHROLOGY","('ESCI',)","977","1.4","Q3","0.49","100.00" +"BIOLOGICAL AGRICULTURE & HORTICULTURE","0144-8765","2165-0616","('AGRONOMY', 'HORTICULTURE')","('SCIE', 'SCIE')","711","1.4","('Q3', 'Q3')","0.49","12.50" +"BMJ Innovations","2055-8074","2055-642X","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","487","1.4","Q3","0.49","40.00" +"Chinese Journal of Sociology","2057-150X","2057-1518","SOCIOLOGY","('ESCI',)","478","1.4","Q2","0.49","30.88" +"GEOGRAFISKA ANNALER SERIES A-PHYSICAL GEOGRAPHY","0435-3676","1468-0459","('GEOGRAPHY, PHYSICAL', 'GEOLOGY')","('SCIE', 'SCIE')","1,180","1.4","('Q3', 'Q2')","0.49","46.67" +"International Journal of Occupational Medicine and Environmental Health","1232-1087","1896-494X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","1,670","1.4","Q3","0.49","99.46" +"JOURNAL OF ANIMAL AND FEED SCIENCES","1230-1388","1230-1388","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,057","1.4","Q3","0.49","100.00" +"JOURNAL OF COMPUTATIONAL BIOLOGY","1066-5277","1557-8666","('BIOCHEMICAL RESEARCH METHODS', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","5,105","1.4","('Q4', 'Q4', 'Q4', 'Q4', 'Q2')","0.49","10.00" +"JSLS-Journal of the Society of Laparoendoscopic Surgeons","1086-8089","","SURGERY","('SCIE',)","2,176","1.4","Q3","0.49","85.98" +"Mathematics in Engineering","","2640-3501","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","339","1.4","Q3","0.49","97.96" +"North American Actuarial Journal","1092-0277","2325-0453","BUSINESS, FINANCE","('ESCI',)","920","1.4","Q3","0.49","10.63" +"World Journal of Engineering","1708-5284","1708-5284","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","949","1.4","Q2","0.49","0.60" +"Zeitschrift fur Evidenz Fortbildung und Qualitaet im Gesundheitswesen","1865-9217","2212-0289","HEALTH POLICY & SERVICES","('ESCI',)","894","1.4","Q4","0.49","23.78" +"FISHERIES SCIENCE","0919-9268","1444-2906","FISHERIES","('SCIE',)","3,885","1.4","Q3","0.48","11.97" +"JOURNAL OF WATERWAY PORT COASTAL AND OCEAN ENGINEERING","0733-950X","1943-5460","('ENGINEERING, CIVIL', 'ENGINEERING, OCEAN', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","2,749","1.4","('Q3', 'Q3', 'Q4')","0.48","14.19" +"Management Research-The Journal of the Iberoamerican Academy of Management","1536-5433","1558-0946","MANAGEMENT","('ESCI',)","413","1.4","Q3","0.48","5.17" +"Applied Neuropsychology-Adult","2327-9095","2327-9109","('CLINICAL NEUROLOGY', 'PSYCHOLOGY')","('SCIE', 'SCIE')","1,599","1.4","('Q4', 'Q3')","0.47","8.48" +"Australian Journal of Career Development","1038-4162","2200-6974","PSYCHOLOGY, APPLIED","('ESCI',)","316","1.4","Q3","0.47","15.00" +"BMJ Military Health","2633-3767","2633-3775","MEDICINE, GENERAL & INTERNAL","('SCIE',)","685","1.4","Q2","0.47","15.25" +"Chemical Biology Letters","","2347-9825","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, MEDICINAL')","('ESCI', 'ESCI')","264","1.4","('Q4', 'Q4')","0.47","0.00" +"INTERNATIONAL JOURNAL OF MODERN PHYSICS A","0217-751X","1793-656X","('PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","6,829","1.4","('Q3', 'Q3')","0.47","1.79" +"NEW ZEALAND JOURNAL OF MARINE AND FRESHWATER RESEARCH","0028-8330","1175-8805","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE')","2,030","1.4","('Q3', 'Q3', 'Q3')","0.47","22.12" +"Pharmaceutical Sciences","1735-403X","2383-2886","PHARMACOLOGY & PHARMACY","('ESCI',)","584","1.4","Q4","0.47","92.13" +"PSYCHOLOGISCHE RUNDSCHAU","0033-3042","2190-6238","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","195","1.4","Q3","0.47","45.83" +"Scientia Iranica","1026-3098","","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","3,807","1.4","Q2","0.47","82.43" +"EXPERIMENTAL AGING RESEARCH","0361-073X","1096-4657","('GERIATRICS & GERONTOLOGY', 'PSYCHOLOGY')","('SCIE', 'SCIE')","1,233","1.4","('Q4', 'Q3')","0.46","8.70" +"INTERNATIONAL JOURNAL OF MENTAL HEALTH","0020-7411","1557-9328","PSYCHOLOGY, CLINICAL","('ESCI',)","538","1.4","Q3","0.46","9.86" +"JOURNAL OF LIBRARIANSHIP AND INFORMATION SCIENCE","0961-0006","1741-6477","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","1,200","1.4","Q2","0.46","20.58" +"Sexual & Reproductive Healthcare","1877-5756","1877-5764","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","1,296","1.4","Q3","0.46","51.26" +"SIAM Journal on Financial Mathematics","1945-497X","1945-497X","('BUSINESS, FINANCE', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SCIE', 'SSCI')","773","1.4","('Q3', 'Q3', 'Q3')","0.46","1.26" +"Tourism Analysis","1083-5423","1943-3999","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,254","1.4","Q3","0.46","9.68" +"Current Genetic Medicine Reports","","2167-4876","GENETICS & HEREDITY","('ESCI',)","247","1.4","Q4","0.45","50.00" +"Ingegneria Sismica","0393-1420","","('ENGINEERING, CIVIL', 'ENGINEERING, GEOLOGICAL')","('SCIE', 'SCIE')","213","1.4","('Q3', 'Q3')","0.45","0.00" +"JMIR Research Protocols","1929-0748","1929-0748","('HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","4,072","1.4","('Q3', 'Q3')","0.45","98.77" +"JOURNAL OF ENGINEERING MATHEMATICS","0022-0833","1573-2703","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","2,097","1.4","('Q2', 'Q3')","0.45","25.97" +"JOURNAL OF RADIOLOGICAL PROTECTION","0952-4746","1361-6498","('ENVIRONMENTAL SCIENCES', 'NUCLEAR SCIENCE & TECHNOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,687","1.4","('Q4', 'Q3', 'Q3', 'Q3')","0.45","27.09" +"MARRIAGE AND FAMILY REVIEW","0149-4929","1540-9635","FAMILY STUDIES","('ESCI',)","1,145","1.4","Q3","0.45","5.80" +"Minerva Cardiology and Angiology","2724-5683","2724-5772","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","592","1.4","Q3","0.45","2.90" +"OR SPECTRUM","0171-6468","1436-6304","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","1,757","1.4","Q3","0.45","51.26" +"PERCEPTUAL AND MOTOR SKILLS","0031-5125","1558-688X","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","6,499","1.4","Q4","0.45","11.14" +"PSYCHOLOGICAL STUDIES","0033-2968","0974-9861","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","716","1.4","Q3","0.45","10.53" +"REVIEWS IN MATHEMATICAL PHYSICS","0129-055X","1793-6659","PHYSICS, MATHEMATICAL","('SCIE',)","1,219","1.4","Q2","0.45","2.35" +"SEMINARS IN DIALYSIS","0894-0959","1525-139X","UROLOGY & NEPHROLOGY","('SCIE',)","2,635","1.4","Q3","0.45","10.09" +"AGRICULTURAL RESEARCH","2249-720X","2249-7218","AGRONOMY","('ESCI',)","1,206","1.4","Q3","0.44","1.80" +"Applied Neuropsychology-Child","2162-2965","2162-2973","('CLINICAL NEUROLOGY', 'PSYCHOLOGY')","('SCIE', 'SCIE')","726","1.4","('Q4', 'Q3')","0.44","7.53" +"COLLEGE & RESEARCH LIBRARIES","0010-0870","2150-6701","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","1,118","1.4","Q2","0.44","0.71" +"Dendrobiology","1641-1307","2083-8387","FORESTRY","('SCIE',)","376","1.4","Q2","0.44","98.25" +"International Journal of Burns and Trauma","2160-2026","2160-2026","EMERGENCY MEDICINE","('ESCI',)","383","1.4","Q3","0.44","0.85" +"JOURNAL OF ECONOMIC THEORY","0022-0531","1095-7235","ECONOMICS","('SSCI',)","8,448","1.4","Q3","0.44","27.71" +"Journal of Parasitology Research","2090-0023","2090-0031","PARASITOLOGY","('ESCI',)","705","1.4","Q3","0.44","99.29" +"Pain Management","1758-1869","1758-1877","CLINICAL NEUROLOGY","('ESCI',)","1,275","1.4","Q4","0.44","25.00" +"Skin Appendage Disorders","2296-9195","2296-9160","DERMATOLOGY","('ESCI',)","837","1.4","Q3","0.44","13.94" +"Acta Geodaetica et Geophysica","2213-5812","2213-5820","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","586","1.4","Q3","0.43","30.30" +"ACTA OCEANOLOGICA SINICA","0253-505X","1869-1099","OCEANOGRAPHY","('SCIE',)","3,447","1.4","Q3","0.43","0.00" +"GEOLOGICAL JOURNAL","0072-1050","1099-1034","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","4,736","1.4","Q3","0.43","2.64" +"JOURNAL OF ENVIRONMENTAL SCIENCE AND HEALTH PART B-PESTICIDES FOOD CONTAMINANTS AND AGRICULTURAL WASTES","0360-1234","1532-4109","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","3,057","1.4","('Q4', 'Q3')","0.43","1.15" +"Journal of Management Accounting Research","1049-2127","1558-8033","BUSINESS, FINANCE","('ESCI',)","994","1.4","Q3","0.43","0.00" +"Journal of Ocean University of China","1672-5182","1993-5021","OCEANOGRAPHY","('SCIE',)","2,191","1.4","Q3","0.43","0.00" +"JOURNAL OF STRAIN ANALYSIS FOR ENGINEERING DESIGN","0309-3247","2041-3130","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","1,597","1.4","('Q3', 'Q3', 'Q3')","0.43","7.94" +"MINERALOGY AND PETROLOGY","0930-0708","1438-1168","('GEOCHEMISTRY & GEOPHYSICS', 'MINERALOGY')","('SCIE', 'SCIE')","2,661","1.4","('Q3', 'Q3')","0.43","34.51" +"SADHANA-ACADEMY PROCEEDINGS IN ENGINEERING SCIENCES","0256-2499","0973-7677","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","3,273","1.4","Q2","0.43","0.12" +"World Journal of Radiology","1949-8470","1949-8470","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,388","1.4","Q3","0.43","100.00" +"WOUNDS-A COMPENDIUM OF CLINICAL RESEARCH AND PRACTICE","1044-7946","1943-2704","('DERMATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","1,416","1.4","('Q3', 'Q3')","0.43","0.00" +"ANNALES HENRI POINCARE","1424-0637","1424-0661","('PHYSICS, MATHEMATICAL', 'PHYSICS, MULTIDISCIPLINARY', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE', 'SCIE')","1,954","1.4","('Q2', 'Q3', 'Q3')","0.42","43.15" +"Hungarian Geographical Bulletin","2064-5031","2064-5147","('GEOGRAPHY', 'GEOGRAPHY, PHYSICAL')","('ESCI', 'ESCI')","199","1.4","('Q2', 'Q3')","0.42","74.63" +"KOREAN JOURNAL OF PARASITOLOGY","0023-4001","1738-0006","PARASITOLOGY","('SCIE',)","1,674","1.4","Q3","0.42","98.46" +"TECHNOLOGY AND HEALTH CARE","0928-7329","1878-7401","('ENGINEERING, BIOMEDICAL', 'HEALTH CARE SCIENCES & SERVICES')","('SCIE', 'SCIE')","1,944","1.4","('Q4', 'Q3')","0.42","22.26" +"THEORETICAL ISSUES IN ERGONOMICS SCIENCE","1463-922X","1464-536X","ERGONOMICS","('ESCI',)","1,147","1.4","Q4","0.42","16.67" +"Womens Studies in Communication","0749-1409","2152-999X","COMMUNICATION","('ESCI',)","603","1.4","Q2","0.42","0.00" +"ZEITSCHRIFT FUR GEOMORPHOLOGIE","0372-8854","1864-1687","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,013","1.4","('Q3', 'Q3')","0.42","0.00" +"Advances in Mental Health","1838-7357","1837-4905","PSYCHIATRY","('ESCI',)","586","1.4","Q3","0.41","22.62" +"African Journal of Economic and Management Studies","2040-0705","2040-0713","ECONOMICS","('ESCI',)","579","1.4","Q3","0.41","10.85" +"AFRICAN JOURNAL OF RANGE & FORAGE SCIENCE","1022-0119","1727-9380","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","751","1.4","('Q3', 'Q4')","0.41","12.87" +"Asia-Pacific Journal of Public Health","1010-5395","1941-2479","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","2,215","1.4","Q3","0.41","10.66" +"BIOLOGIA","0006-3088","1336-9563","BIOLOGY","('SCIE',)","3,961","1.4","Q3","0.41","7.64" +"BUILDING ACOUSTICS","1351-010X","2059-8025","ACOUSTICS","('ESCI',)","449","1.4","Q3","0.41","23.81" +"Central European Journal of Urology","2080-4806","2080-4873","UROLOGY & NEPHROLOGY","('ESCI',)","982","1.4","Q3","0.41","0.00" +"Current Emergency and Hospital Medicine Reports","2167-4884","2167-4884","EMERGENCY MEDICINE","('ESCI',)","160","1.4","Q3","0.41","10.53" +"Decisions in Economics and Finance","1593-8883","1129-6569","SOCIAL SCIENCES, MATHEMATICAL METHODS","('ESCI',)","271","1.4","Q3","0.41","43.69" +"IEEE Computer Architecture Letters","1556-6056","1556-6064","COMPUTER SCIENCE, HARDWARE & ARCHITECTURE","('SCIE',)","669","1.4","Q4","0.41","10.77" +"Journal of the Asia Pacific Economy","1354-7860","1469-9648","ECONOMICS","('SSCI',)","960","1.4","Q3","0.41","1.54" +"LASER PHYSICS LETTERS","1612-2011","1612-202X","('OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","3,730","1.4","('Q3', 'Q4')","0.41","1.34" +"SPE Production & Operations","1930-1855","1930-1863","ENGINEERING, PETROLEUM","('SCIE',)","1,394","1.4","Q2","0.41","0.57" +"Techniques in Vascular and Interventional Radiology","1089-2516","1557-9808","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","949","1.4","Q3","0.41","6.42" +"ACTA BIOTHEORETICA","0001-5342","1572-8358","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('SCIE',)","738","1.4","Q4","0.40","18.84" +"Acta Geochimica","2096-0956","2365-7499","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","1,054","1.4","Q3","0.40","3.76" +"AFRICAN JOURNAL OF MARINE SCIENCE","1814-232X","1814-2338","MARINE & FRESHWATER BIOLOGY","('SCIE',)","1,075","1.4","Q3","0.40","10.20" +"Cancer Genetics","2210-7762","2210-7770","('GENETICS & HEREDITY', 'ONCOLOGY')","('SCIE', 'SCIE')","1,279","1.4","('Q4', 'Q4')","0.40","15.05" +"E & M Ekonomie a Management","1212-3609","2336-5064","('ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI')","535","1.4","('Q3', 'Q3')","0.40","99.30" +"FARMACIA","0014-8237","2065-0019","PHARMACOLOGY & PHARMACY","('SCIE',)","1,290","1.4","Q4","0.40","98.89" +"Gynecology and Minimally Invasive Therapy-GMIT","2213-3070","2213-3089","OBSTETRICS & GYNECOLOGY","('ESCI',)","475","1.4","Q3","0.40","95.95" +"Health Promotion Journal of Australia","1036-1073","2201-1617","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","1,450","1.4","Q3","0.40","51.03" +"HEART AND VESSELS","0910-8327","1615-2573","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","2,941","1.4","('Q3', 'Q3')","0.40","16.01" +"International Journal of Asia Pacific Studies","1823-6243","1823-6243","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","108","1.4","Q2","0.40","97.73" +"Periodica Polytechnica-Civil Engineering","0553-6626","1587-3773","ENGINEERING, CIVIL","('SCIE',)","1,365","1.4","Q3","0.40","99.17" +"Proceedings of the ACM on Computer Graphics and Interactive Techniques","","2577-6193","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","336","1.4","Q3","0.40","6.38" +"AUSTRALASIAN JOURNAL ON AGEING","1440-6381","1741-6612","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY')","('SCIE', 'SSCI')","1,642","1.4","('Q4', 'Q3')","0.39","34.85" +"Cardiology Research","1923-2829","1923-2837","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","550","1.4","Q3","0.39","97.97" +"FORMAL ASPECTS OF COMPUTING","0934-5043","1433-299X","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","407","1.4","Q3","0.39","37.50" +"International Aquatic Research","2008-4935","2008-6970","MARINE & FRESHWATER BIOLOGY","('ESCI',)","595","1.4","Q3","0.39","0.00" +"JETP LETTERS","0021-3640","1090-6487","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","7,240","1.4","Q3","0.39","38.59" +"JOURNAL OF CARDIOVASCULAR SURGERY","0021-9509","1827-191X","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PERIPHERAL VASCULAR DISEASE', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","1,888","1.4","('Q3', 'Q3', 'Q3')","0.39","4.45" +"JOURNAL OF ENGINEERING FOR GAS TURBINES AND POWER-TRANSACTIONS OF THE ASME","0742-4795","1528-8919","ENGINEERING, MECHANICAL","('SCIE',)","7,357","1.4","Q3","0.39","1.98" +"Medical Mycology Journal","2185-6486","2186-165X","MYCOLOGY","('ESCI',)","181","1.4","Q4","0.39","100.00" +"Notulae Botanicae Horti Agrobotanici Cluj-Napoca","0255-965X","1842-4309","PLANT SCIENCES","('SCIE',)","2,398","1.4","Q3","0.39","90.22" +"Remote Sensing Letters","2150-704X","2150-7058","('IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE')","2,593","1.4","('Q3', 'Q3')","0.39","5.45" +"Scandinavian Journal of Child and Adolescent Psychiatry and Psychology","2245-8875","2245-8875","PSYCHIATRY","('ESCI',)","188","1.4","Q3","0.39","98.00" +"SOCIETY","0147-2011","1936-4725","('SOCIAL SCIENCES, INTERDISCIPLINARY', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,061","1.4","('Q2', 'Q2')","0.39","22.37" +"WILDERNESS & ENVIRONMENTAL MEDICINE","1080-6032","1545-1534","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SPORT SCIENCES')","('SCIE', 'SCIE')","1,596","1.4","('Q3', 'Q3')","0.39","20.63" +"BIOCHEMICAL SYSTEMATICS AND ECOLOGY","0305-1978","1873-2925","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ECOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,583","1.4","('Q4', 'Q3', 'Q4')","0.38","5.00" +"Brazilian Journal of Botany","0100-8404","1806-9959","PLANT SCIENCES","('SCIE',)","1,920","1.4","Q3","0.38","4.56" +"Chemistry of Heterocyclic Compounds","0009-3122","1573-8353","CHEMISTRY, ORGANIC","('SCIE',)","2,437","1.4","Q3","0.38","0.26" +"Earthquakes and Structures","2092-7614","2092-7622","('ENGINEERING, CIVIL', 'ENGINEERING, GEOLOGICAL')","('SCIE', 'SCIE')","1,618","1.4","('Q3', 'Q3')","0.38","0.00" +"EJVES Vascular Forum","2666-688X","2666-688X","('PERIPHERAL VASCULAR DISEASE', 'SURGERY')","('ESCI', 'ESCI')","130","1.4","('Q3', 'Q3')","0.38","100.00" +"Genetics Research","0016-6723","1469-5073","GENETICS & HEREDITY","('SCIE',)","1,822","1.4","Q4","0.38","100.00" +"INDIAN JOURNAL OF PHARMACOLOGY","0253-7613","1998-3751","PHARMACOLOGY & PHARMACY","('SCIE',)","2,486","1.4","Q4","0.38","0.00" +"INTERNATIONAL JOURNAL OF ARTIFICIAL ORGANS","0391-3988","1724-6040","('ENGINEERING, BIOMEDICAL', 'TRANSPLANTATION')","('SCIE', 'SCIE')","2,433","1.4","('Q4', 'Q3')","0.38","8.88" +"INTERNATIONAL JOURNAL OF TECHNOLOGY MANAGEMENT","0267-5730","1741-5276","('ENGINEERING, MULTIDISCIPLINARY', 'MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SSCI', 'SCIE')","1,717","1.4","('Q2', 'Q3', 'Q3')","0.38","0.79" +"JOURNAL OF CONSUMER POLICY","0168-7034","1573-0700","BUSINESS","('ESCI',)","1,159","1.4","Q3","0.38","57.97" +"Journal of Consumer Protection and Food Safety","1661-5751","1661-5867","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","705","1.4","Q4","0.38","38.79" +"Journal of Osteopathic Medicine","","2702-3648","MEDICINE, GENERAL & INTERNAL","('ESCI',)","321","1.4","Q2","0.38","97.89" +"Journal of the British Blockchain Association","","2516-3957","ECONOMICS","('ESCI',)","136","1.4","Q3","0.38","84.85" +"New Review of Hypermedia and Multimedia","1361-4568","1740-7842","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","235","1.4","Q3","0.38","32.26" +"Oxford Development Studies","1360-0818","1469-9966","DEVELOPMENT STUDIES","('ESCI',)","1,191","1.4","Q3","0.38","35.71" +"PHOSPHORUS SULFUR AND SILICON AND THE RELATED ELEMENTS","1042-6507","1563-5325","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","2,912","1.4","('Q4', 'Q3')","0.38","0.55" +"Postepy Dermatologii i Alergologii","1642-395X","2299-0046","('ALLERGY', 'DERMATOLOGY')","('SCIE', 'SCIE')","1,828","1.4","('Q3', 'Q3')","0.38","98.06" +"Trends in Anaesthesia and Critical Care","2210-8440","2210-8467","ANESTHESIOLOGY","('ESCI',)","296","1.4","Q3","0.38","14.77" +"ADVANCED ROBOTICS","0169-1864","1568-5535","ROBOTICS","('SCIE',)","2,808","1.4","Q4","0.37","24.74" +"Archives of Environmental & Occupational Health","1933-8244","2154-4700","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","2,091","1.4","('Q4', 'Q3')","0.37","5.11" +"Central European Journal of Operations Research","1435-246X","1613-9178","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","1,131","1.4","Q3","0.37","44.75" +"IET Radar Sonar and Navigation","1751-8784","1751-8792","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","2,940","1.4","('Q3', 'Q4')","0.37","79.50" +"International Journal of Central Banking","1815-4654","1815-7556","BUSINESS, FINANCE","('SSCI',)","1,222","1.4","Q3","0.37","0.00" +"JOURNAL OF AFRICAN ECONOMIES","0963-8024","1464-3723","ECONOMICS","('SSCI',)","1,313","1.4","Q3","0.37","40.52" +"Journal of Lasers in Medical Sciences","2008-9783","2228-6721","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,119","1.4","Q3","0.37","96.40" +"Journal of Sensors","1687-725X","1687-7268","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","5,796","1.4","('Q3', 'Q3')","0.37","99.23" +"Minerva Orthopedics","2784-8469","2784-871X","ORTHOPEDICS","('ESCI',)","205","1.4","Q3","0.37","1.09" +"MOLECULAR AND BIOCHEMICAL PARASITOLOGY","0166-6851","1872-9428","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'PARASITOLOGY')","('SCIE', 'SCIE')","4,176","1.4","('Q4', 'Q3')","0.37","20.90" +"Organics","","2673-401X","CHEMISTRY, ORGANIC","('ESCI',)","109","1.4","Q3","0.37","100.00" +"American Health and Drug Benefits","1942-2962","1942-2970","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","869","1.4","('Q3', 'Q4')","0.36","0.00" +"ARCHIVAL SCIENCE","1389-0166","1573-7500","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","688","1.4","Q2","0.36","42.42" +"Contemporary Clinical Trials Communications","","2451-8654","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,641","1.4","Q4","0.36","95.19" +"Journal of Infection in Developing Countries","1972-2680","1972-2680","INFECTIOUS DISEASES","('SCIE',)","3,586","1.4","Q4","0.36","95.67" +"JOURNAL OF REGULATORY ECONOMICS","0922-680X","1573-0468","ECONOMICS","('SSCI',)","794","1.4","Q3","0.36","22.22" +"Journal of Scleroderma and Related Disorders","2397-1983","2397-1991","RHEUMATOLOGY","('ESCI',)","580","1.4","Q3","0.36","19.00" +"PROTEIN EXPRESSION AND PURIFICATION","1046-5928","1096-0279","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,412","1.4","('Q4', 'Q4', 'Q4')","0.36","18.37" +"Reviews on Recent Clinical Trials","1574-8871","1876-1038","PHARMACOLOGY & PHARMACY","('ESCI',)","592","1.4","Q4","0.36","2.44" +"TRANSFUSION AND APHERESIS SCIENCE","1473-0502","1878-1683","HEMATOLOGY","('SCIE',)","2,594","1.4","Q4","0.36","12.03" +"Canadian Journal of Human Sexuality","1188-4517","2291-7063","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","616","1.4","Q3","0.35","0.00" +"GEOGRAPHY","0016-7487","2043-6564","GEOGRAPHY","('SSCI',)","611","1.4","Q2","0.35","0.00" +"Indian Geotechnical Journal","0971-9555","2277-3347","ENGINEERING, GEOLOGICAL","('ESCI',)","1,118","1.4","Q3","0.35","2.25" +"International Journal of Prognostics and Health Management","2153-2648","2153-2648","('ENGINEERING, MULTIDISCIPLINARY', 'INSTRUMENTS & INSTRUMENTATION')","('ESCI', 'ESCI')","428","1.4","('Q2', 'Q3')","0.35","96.63" +"JOURNAL OF GENETICS","0022-1333","0973-7731","GENETICS & HEREDITY","('SCIE',)","2,118","1.4","Q4","0.35","0.52" +"Russian Journal of Physical Chemistry B","1990-7931","1990-7923","PHYSICS, ATOMIC, MOLECULAR & CHEMICAL","('SCIE',)","1,626","1.4","Q4","0.35","1.90" +"ADVANCES IN CEMENT RESEARCH","0951-7197","1751-7605","('CONSTRUCTION & BUILDING TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,858","1.4","('Q3', 'Q4')","0.34","1.75" +"Anatolian Journal of Cardiology","2149-2263","2149-2271","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,734","1.4","Q3","0.34","70.92" +"Atherosclerosis Plus","2667-0909","2667-0895","PERIPHERAL VASCULAR DISEASE","('SCIE',)","81","1.4","Q3","0.34","91.18" +"BIOCATALYSIS AND BIOTRANSFORMATION","1024-2422","1029-2446","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE')","1,188","1.4","('Q4', 'Q4')","0.34","1.44" +"Critical Care and Resuscitation","1441-2772","1441-2772","CRITICAL CARE MEDICINE","('SCIE',)","966","1.4","Q3","0.34","75.23" +"Decision Science Letters","1929-5804","1929-5812","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","513","1.4","Q3","0.34","27.10" +"International Journal of Microwave and Wireless Technologies","1759-0787","1759-0795","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","1,363","1.4","('Q3', 'Q4')","0.34","15.92" +"PARASITE IMMUNOLOGY","0141-9838","1365-3024","('IMMUNOLOGY', 'PARASITOLOGY')","('SCIE', 'SCIE')","2,459","1.4","('Q4', 'Q3')","0.34","18.75" +"Revista Brasileira de Farmacognosia-Brazilian Journal of Pharmacognosy","0102-695X","1981-528X","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","3,403","1.4","('Q4', 'Q4')","0.34","9.60" +"Timing & Time Perception","2213-445X","2213-4468","('NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('ESCI', 'ESCI')","268","1.4","('Q4', 'Q4')","0.34","18.97" +"ARP Rheumatology","2795-4552","2795-4552","RHEUMATOLOGY","('SCIE',)","43","1.4","Q3","0.33","0.00" +"Asia-Pacific Journal of Accounting & Economics","1608-1625","2164-2257","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","778","1.4","('Q3', 'Q3')","0.33","3.70" +"Clinical Teacher","1743-4971","1743-498X","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,300","1.4","Q4","0.33","36.44" +"Indian Heart Journal","0019-4832","2213-3763","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","2,297","1.4","Q3","0.33","97.01" +"INTERNATIONAL JOURNAL OF MEDICINAL MUSHROOMS","1521-9437","1940-4344","('MYCOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,887","1.4","('Q4', 'Q4')","0.33","0.75" +"JOURNAL OF AGRICULTURAL METEOROLOGY","0021-8588","1881-0136","('AGRICULTURE, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","394","1.4","('Q2', 'Q4')","0.33","96.55" +"Journal of Applied Water Engineering and Research","2324-9676","2324-9676","WATER RESOURCES","('ESCI',)","283","1.4","Q4","0.33","5.43" +"JOURNAL OF INTERNATIONAL MEDICAL RESEARCH","0300-0605","1473-2300","('MEDICINE, RESEARCH & EXPERIMENTAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","10,135","1.4","('Q4', 'Q4')","0.33","91.19" +"JOURNAL OF SCHEDULING","1094-6136","1099-1425","('ENGINEERING, MANUFACTURING', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","1,407","1.4","('Q4', 'Q3')","0.33","31.36" +"JRSM Cardiovascular Disease","","2048-0040","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","371","1.4","Q3","0.33","100.00" +"Plant Biotechnology","1342-4580","","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","1,470","1.4","('Q4', 'Q3')","0.33","100.00" +"SCIENCE OF SINTERING","0350-820X","","('MATERIALS SCIENCE, CERAMICS', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","655","1.4","('Q3', 'Q3')","0.33","99.16" +"SOLID-STATE ELECTRONICS","0038-1101","1879-2405","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","6,096","1.4","('Q3', 'Q4', 'Q4')","0.33","18.40" +"Asia-Pacific Journal of Clinical Oncology","1743-7555","1743-7563","ONCOLOGY","('SCIE',)","1,954","1.4","Q4","0.32","19.35" +"Economic Computation and Economic Cybernetics Studies and Research","0424-267X","1842-3264","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SSCI', 'SCIE')","632","1.4","('Q3', 'Q3')","0.32","92.67" +"International Journal of Enterprise Information Systems","1548-1115","1548-1123","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","234","1.4","Q3","0.32","25.71" +"JOURNAL OF CERAMIC PROCESSING RESEARCH","1229-9162","1229-9162","MATERIALS SCIENCE, CERAMICS","('SCIE',)","1,302","1.4","Q3","0.32","0.00" +"Journal of Research in Health Sciences","2228-7795","2228-7809","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","604","1.4","Q3","0.32","95.74" +"REHABILITATION","0034-3536","1439-1309","REHABILITATION","('SCIE',)","882","1.4","Q3","0.32","8.05" +"Special Topics & Reviews in Porous Media-An International Journal","2151-4798","2151-562X","ENGINEERING, MECHANICAL","('ESCI',)","423","1.4","Q3","0.32","0.00" +"ACTA NEUROBIOLOGIAE EXPERIMENTALIS","0065-1400","1689-0035","NEUROSCIENCES","('SCIE',)","1,128","1.4","Q4","0.31","89.57" +"Egyptian Heart Journal","1110-2608","2090-911X","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","615","1.4","Q3","0.31","100.00" +"IET Science Measurement & Technology","1751-8822","1751-8830","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","1,486","1.4","Q3","0.31","68.46" +"Inorganic and Nano-Metal Chemistry","2470-1556","2470-1564","('CHEMISTRY, INORGANIC & NUCLEAR', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","1,840","1.4","('Q4', 'Q4')","0.31","0.22" +"International Journal of Entrepreneurial Venturing","1742-5360","1742-5379","MANAGEMENT","('ESCI',)","422","1.4","Q3","0.31","0.00" +"International Journal of Spray and Combustion Dynamics","1756-8277","1756-8285","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","333","1.4","('Q3', 'Q3')","0.31","48.94" +"Journal of Echocardiography","1349-0222","1880-344X","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","358","1.4","Q3","0.31","10.84" +"Management Systems in Production Engineering","2299-0461","2450-5781","ENGINEERING, INDUSTRIAL","('ESCI',)","317","1.4","Q4","0.31","100.00" +"Opsearch","0030-3887","0975-0320","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","795","1.4","Q3","0.31","2.82" +"POLISH JOURNAL OF ENVIRONMENTAL STUDIES","1230-1485","2083-5906","ENVIRONMENTAL SCIENCES","('SCIE',)","6,385","1.4","Q4","0.31","99.73" +"Rambam Maimonides Medical Journal","2076-9172","2076-9172","MEDICINE, GENERAL & INTERNAL","('ESCI',)","594","1.4","Q2","0.31","100.00" +"Reumatologia","0034-6233","2084-9834","RHEUMATOLOGY","('ESCI',)","736","1.4","Q3","0.31","98.82" +"South Asian Journal of Human Resource Management","2322-0937","2349-5790","MANAGEMENT","('ESCI',)","212","1.4","Q3","0.31","9.84" +"Tzu Chi Medical Journal","1016-3190","2223-8956","MEDICINE, GENERAL & INTERNAL","('ESCI',)","780","1.4","Q2","0.31","95.63" +"ACTA BIOCHIMICA POLONICA","0001-527X","1734-154X","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","3,159","1.4","Q4","0.30","97.14" +"BIOSCIENCE BIOTECHNOLOGY AND BIOCHEMISTRY","0916-8451","1347-6947","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","13,250","1.4","('Q4', 'Q4', 'Q3', 'Q4')","0.30","10.14" +"DEN Open","2692-4609","2692-4609","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","247","1.4","Q4","0.30","65.20" +"EURASIAN SOIL SCIENCE","1064-2293","1556-195X","SOIL SCIENCE","('SCIE',)","2,810","1.4","Q4","0.30","6.88" +"Gastroenterology Research","1918-2805","1918-2813","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","747","1.4","Q4","0.30","99.20" +"JOURNAL OF CLINICAL APHERESIS","0733-2459","1098-1101","HEMATOLOGY","('SCIE',)","1,541","1.4","Q4","0.30","19.47" +"JOURNAL OF ELASTOMERS AND PLASTICS","0095-2443","1530-8006","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","1,001","1.4","('Q4', 'Q4')","0.30","2.42" +"Journal of Robotics","1687-9600","1687-9619","ROBOTICS","('ESCI',)","610","1.4","Q4","0.30","98.79" +"POLAR RECORD","0032-2474","1475-3057","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","803","1.4","('Q3', 'Q4')","0.30","57.14" +"REAL-TIME SYSTEMS","0922-6443","1573-1383","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","570","1.4","Q3","0.30","31.25" +"Journal of Applied Remote Sensing","","1931-3195","('ENVIRONMENTAL SCIENCES', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE')","3,796","1.4","('Q4', 'Q3', 'Q3')","0.29","13.56" +"Latin American Journal of Solids and Structures","1679-7825","1679-7825","('ENGINEERING, CIVIL', 'ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","1,514","1.4","('Q3', 'Q3', 'Q3')","0.29","95.06" +"Molecular and Clinical Oncology","2049-9450","2049-9469","ONCOLOGY","('ESCI',)","2,984","1.4","Q4","0.29","99.61" +"TRANSFUSION CLINIQUE ET BIOLOGIQUE","1246-7820","","('HEMATOLOGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","744","1.4","('Q4', 'Q4')","0.29","13.66" +"Turkish Journal of Physics","1300-0101","1303-6122","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","473","1.4","Q3","0.29","1.82" +"Journal of the Anus Rectum and Colon","","2432-3853","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","373","1.4","Q4","0.28","98.43" +"MEDICAL LETTER ON DRUGS AND THERAPEUTICS","0025-732X","1523-2859","PHARMACOLOGY & PHARMACY","('SCIE',)","449","1.4","Q4","0.28","0.00" +"Physical Chemistry Research","2322-5521","2345-2625","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","505","1.4","Q3","0.28","0.00" +"Turkish Journal of Gastroenterology","","2148-5607","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","1,888","1.4","Q4","0.28","56.46" +"International Journal of Shipping and Transport Logistics","1756-6517","1756-6525","('MANAGEMENT', 'TRANSPORTATION')","('SSCI', 'SSCI')","496","1.4","('Q3', 'Q4')","0.27","3.74" +"INTERNATIONAL JOURNAL OF STD & AIDS","0956-4624","1758-1052","('IMMUNOLOGY', 'INFECTIOUS DISEASES')","('SCIE', 'SCIE')","3,069","1.4","('Q4', 'Q4')","0.27","9.73" +"Intervention-International Journal of Mental Health Psychosocial Work and Counselling in Areas of Armed Conflict","1571-8883","1872-1001","PSYCHIATRY","('ESCI',)","439","1.4","Q3","0.27","96.61" +"Open Access Journal of Clinical Trials","1179-1519","1179-1519","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","96","1.4","Q4","0.27","100.00" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART I-JOURNAL OF SYSTEMS AND CONTROL ENGINEERING","0959-6518","2041-3041","AUTOMATION & CONTROL SYSTEMS","('SCIE',)","1,820","1.4","Q4","0.27","2.00" +"Soil Science Annual","2300-4967","2300-4975","SOIL SCIENCE","('ESCI',)","398","1.4","Q4","0.27","100.00" +"Structural Heart-The Journal of the Heart Team","2474-8706","2474-8714","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","380","1.4","Q3","0.27","80.14" +"World Journal of Gastrointestinal Endoscopy","1948-5190","1948-5190","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","1,516","1.4","Q4","0.27","100.00" +"AIP Advances","","2158-3226","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","19,581","1.4","('Q4', 'Q4', 'Q4')","0.26","91.51" +"Archives of Environmental Protection","2083-4772","2083-4810","ENVIRONMENTAL SCIENCES","('SCIE',)","658","1.4","Q4","0.26","91.27" +"International Journal of Computational Science and Engineering","1742-7185","1742-7193","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","1,310","1.4","Q4","0.26","0.00" +"Oncologie","1292-3818","1765-2839","ONCOLOGY","('SCIE',)","211","1.4","Q4","0.26","78.57" +"Revista de la Construccion","0718-915X","0718-915X","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","437","1.4","('Q3', 'Q3')","0.26","86.23" +"SARCOIDOSIS VASCULITIS AND DIFFUSE LUNG DISEASES","1124-0490","","RESPIRATORY SYSTEM","('SCIE',)","1,205","1.4","Q4","0.26","0.00" +"Transactions of FAMENA","1333-1124","1333-1124","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","333","1.4","('Q3', 'Q4')","0.26","91.67" +"Indian Journal of Medical Microbiology","0255-0857","1998-3646","IMMUNOLOGY","('SCIE',)","1,944","1.4","Q4","0.25","99.49" +"Journal of Cancer Research and Therapeutics","0973-1482","1998-4138","ONCOLOGY","('SCIE',)","4,416","1.4","Q4","0.25","93.08" +"Asia-Pacific Journal of Chemical Engineering","1932-2135","1932-2143","ENGINEERING, CHEMICAL","('SCIE',)","2,053","1.4","Q3","0.24","2.06" +"PERIODICA POLYTECHNICA-CHEMICAL ENGINEERING","0324-5853","1587-3765","ENGINEERING, CHEMICAL","('SCIE',)","680","1.4","Q3","0.24","97.22" +"Revista Brasileira de Engenharia Agricola e Ambiental","1415-4366","1807-1929","AGRICULTURAL ENGINEERING","('SCIE',)","2,224","1.4","Q3","0.24","96.17" +"Advances in Civil Engineering Materials","2379-1357","2165-3984","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","565","1.4","Q4","0.23","0.00" +"AI COMMUNICATIONS","0921-7126","1875-8452","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","519","1.4","Q4","0.23","4.41" +"Environmental and Climate Technologies","1691-5208","2255-8837","GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY","('ESCI',)","752","1.4","Q4","0.23","94.18" +"Transactions of the ASABE","2151-0032","2151-0040","AGRICULTURAL ENGINEERING","('SCIE',)","10,368","1.4","Q3","0.23","0.00" +"ZEITSCHRIFT FUR GASTROENTEROLOGIE","0044-2771","1439-7803","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","1,453","1.4","Q4","0.23","7.81" +"CELL AND TISSUE BANKING","1389-9333","1573-6814","('CELL BIOLOGY', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","1,412","1.4","('Q4', 'Q4')","0.22","20.44" +"International Journal of Computational Materials Science and Engineering","2047-6841","2047-685X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","334","1.4","Q4","0.22","0.87" +"Journal of Cancer Metastasis and Treatment","2394-4722","2454-2857","ONCOLOGY","('ESCI',)","647","1.4","Q4","0.22","98.71" +"Russian Meteorology and Hydrology","1068-3739","1934-8096","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","1,213","1.4","Q4","0.22","0.00" +"Southern African Journal of Infectious Diseases","2312-0053","2313-1810","INFECTIOUS DISEASES","('ESCI',)","245","1.4","Q4","0.22","93.68" +"AIMS Materials Science","2372-0468","2372-0484","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","909","1.4","Q4","0.21","98.25" +"ALLERGOLOGIE","0344-5062","0344-5062","ALLERGY","('SCIE',)","278","1.4","Q3","0.21","0.00" +"CHEMISTRY LETTERS","0366-7022","1348-0715","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","11,165","1.4","Q3","0.21","0.22" +"American Journal of Clinical and Experimental Immunology","","2164-7712","IMMUNOLOGY","('ESCI',)","257","1.4","Q4","0.20","0.00" +"JOURNAL OF SOLUTION CHEMISTRY","0095-9782","1572-8927","CHEMISTRY, PHYSICAL","('SCIE',)","3,662","1.4","Q4","0.20","11.66" +"METROPOLITAN MUSEUM OF ART BULLETIN","0026-1521","2325-6915","ART","('AHCI',)","142","1.4","","0.20","0.00" +"Nanomedicine Journal","2322-3049","2322-5904","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","474","1.4","Q4","0.20","0.00" +"WPOM-Working Papers on Operations Management","1989-9068","1989-9068","BUSINESS","('ESCI',)","59","1.4","Q3","0.20","90.48" +"COLLOID JOURNAL","1061-933X","1608-3067","CHEMISTRY, PHYSICAL","('SCIE',)","1,420","1.4","Q4","0.19","4.05" +"Current Nanoscience","1573-4137","1875-6786","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,408","1.4","('Q4', 'Q4', 'Q4')","0.19","0.49" +"Journal of Nanostructures","2251-7871","2251-788X","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","891","1.4","Q4","0.17","0.00" +"Region","2166-4307","2165-0659","AREA STUDIES","('ESCI',)","142","1.4","Q1","0.16","0.00" +"Turkish Journal of Physiotherapy Rehabilitation-Turk Fizyoterapi ve Rehabilitasyon Dergisi","2651-4451","2651-446X","REHABILITATION","('ESCI',)","252","1.4","Q3","0.12","0.85" +"CIVIL ENGINEERING","0885-7024","0885-7024","ENGINEERING, CIVIL","('SCIE',)","462","1.4","Q3","0.01","0.00" +"Episteme-A Journal of Individual and Social Epistemology","1742-3600","1750-0117","PHILOSOPHY","('AHCI',)","1,035","1.3","","3.24","45.28" +"Research Studies in Music Education","1321-103X","1834-5530","MUSIC","('ESCI',)","568","1.3","","3.09","25.23" +"DIGITAL CREATIVITY","1462-6268","1744-3806","ART","('AHCI',)","407","1.3","","2.84","18.64" +"JOURNAL OF ASIAN STUDIES","0021-9118","1752-0401","('AREA STUDIES', 'ASIAN STUDIES')","('SSCI', 'AHCI')","1,848","1.3","('Q1', 'N/A')","2.53","1.39" +"Nationalities Papers-The Journal of Nationalism and Ethnicity","0090-5992","1465-3923","('AREA STUDIES', 'ETHNIC STUDIES', 'HISTORY', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","1,179","1.3","('Q1', 'Q2', 'Q1', 'Q2')","2.50","44.84" +"TOPOI-AN INTERNATIONAL REVIEW OF PHILOSOPHY","0167-7411","1572-8749","PHILOSOPHY","('AHCI',)","1,229","1.3","","2.41","48.47" +"Religion State & Society","0963-7494","1465-3974","RELIGION","('ESCI',)","406","1.3","","2.33","46.27" +"MUSIC PERCEPTION","0730-7829","","('MUSIC', 'PSYCHOLOGY, EXPERIMENTAL')","('AHCI', 'SSCI')","1,829","1.3","('N/A', 'Q4')","2.21","2.70" +"PHILOSOPHY AND PHENOMENOLOGICAL RESEARCH","0031-8205","1933-1592","PHILOSOPHY","('AHCI',)","3,589","1.3","","2.15","29.78" +"Politics and Religion","1755-0483","1755-0491","('POLITICAL SCIENCE', 'RELIGION')","('SSCI', 'AHCI')","539","1.3","('Q2', 'N/A')","2.01","44.55" +"SYNTHESE","0039-7857","1573-0964","('HISTORY & PHILOSOPHY OF SCIENCE', 'PHILOSOPHY')","('AHCI, SCIE, SSCI', 'AHCI')","8,135","1.3","('Q1', 'N/A')","1.98","43.14" +"Journal of Language Aggression and Conflict","2213-1272","2213-1280","LANGUAGE & LINGUISTICS","('ESCI',)","198","1.3","","1.78","0.00" +"Laws","","2075-471X","LAW","('ESCI',)","569","1.3","Q1","1.77","99.23" +"Millennial Asia","0976-3996","2321-7081","AREA STUDIES","('ESCI',)","265","1.3","Q1","1.76","5.13" +"International Journal of Marine and Coastal Law","0927-3522","1571-8085","LAW","('SSCI',)","544","1.3","Q1","1.72","24.44" +"International Journal of Music Education","0255-7614","1744-795X","('EDUCATION & EDUCATIONAL RESEARCH', 'MUSIC')","('SSCI', 'AHCI')","938","1.3","('Q2', 'N/A')","1.67","18.85" +"Leiden Journal of International Law","0922-1565","1478-9698","LAW","('SSCI',)","1,099","1.3","Q1","1.63","56.21" +"Journal of World Investment & Trade","1660-7112","2211-9000","LAW","('ESCI',)","416","1.3","Q1","1.62","28.05" +"Landscape Journal","0277-2426","1553-2704","ARCHITECTURE","('ESCI',)","393","1.3","","1.62","10.53" +"JOURNAL OF DIFFERENTIAL GEOMETRY","0022-040X","1945-743X","MATHEMATICS","('SCIE',)","5,156","1.3","Q1","1.58","0.00" +"International Journal of Cultural Policy","1028-6632","1477-2833","CULTURAL STUDIES","('AHCI', 'SSCI')","1,329","1.3","Q2","1.55","31.87" +"POPULAR MUSIC AND SOCIETY","0300-7766","1740-1712","MUSIC","('AHCI',)","469","1.3","","1.55","38.27" +"SLAVIC REVIEW","0037-6779","2325-7784","('AREA STUDIES', 'HUMANITIES, MULTIDISCIPLINARY')","('SSCI', 'AHCI')","1,084","1.3","('Q1', 'N/A')","1.52","32.00" +"International Journal of Law and Management","1754-243X","1754-2448","LAW","('ESCI',)","765","1.3","Q1","1.48","4.30" +"Griffith Law Review","1038-3441","1839-4205","LAW","('ESCI',)","444","1.3","Q1","1.46","25.68" +"Journal for the Study of the Historical Jesus","1476-8690","1745-5197","RELIGION","('AHCI',)","331","1.3","","1.45","5.88" +"International Journal of Bilingualism","1367-0069","1756-6878","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","1,763","1.3","('N/A', 'Q2')","1.39","29.17" +"International Sports Law Journal","1567-7559","2213-5154","LAW","('ESCI',)","168","1.3","Q1","1.39","44.83" +"Netherlands International Law Review","0165-070X","1741-6191","LAW","('ESCI',)","233","1.3","Q1","1.35","55.56" +"ANNALES SCIENTIFIQUES DE L ECOLE NORMALE SUPERIEURE","0012-9593","1873-2151","MATHEMATICS","('SCIE',)","2,648","1.3","Q1","1.32","0.00" +"Advances in Calculus of Variations","1864-8258","1864-8266","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","499","1.3","('Q1', 'Q2')","1.31","17.90" +"COMPOSITIO MATHEMATICA","0010-437X","1570-5846","MATHEMATICS","('SCIE',)","3,545","1.3","Q1","1.28","36.89" +"International Journal of Refugee Law","0953-8186","1464-3715","LAW","('ESCI',)","567","1.3","Q1","1.27","37.70" +"Journal of Research in Special Educational Needs","1471-3802","1471-3802","EDUCATION, SPECIAL","('ESCI',)","826","1.3","Q3","1.27","41.41" +"Canadian Journal of Science Mathematics and Technology Education","1492-6156","1942-4051","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","467","1.3","Q3","1.26","18.94" +"JOURNAL OF MODERN AFRICAN STUDIES","0022-278X","1469-7777","AREA STUDIES","('SSCI',)","1,513","1.3","Q1","1.24","49.33" +"Mediterranean Politics","1362-9395","1743-9418","('AREA STUDIES', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","786","1.3","('Q1', 'Q2', 'Q2')","1.24","29.09" +"HERPETOLOGICA","0018-0831","1938-5099","ZOOLOGY","('SCIE',)","2,636","1.3","Q2","1.22","0.00" +"INTERNATIONAL JOURNAL OF EARLY CHILDHOOD","0020-7187","1878-4658","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","606","1.3","Q2","1.22","40.78" +"ASIAN SURVEY","0004-4687","1533-838X","AREA STUDIES","('SSCI',)","1,767","1.3","Q1","1.19","0.00" +"Canadian Slavonic Papers","0008-5006","2375-2475","ETHNIC STUDIES","('ESCI',)","241","1.3","Q2","1.19","14.06" +"Trabajos de Prehistoria","0082-5638","1988-3218","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","521","1.3","('Q2', 'N/A')","1.19","96.15" +"JOURNAL OF LAW AND SOCIETY","0263-323X","1467-6478","('LAW', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,159","1.3","('Q1', 'Q3')","1.18","47.79" +"AMERICAN JOURNAL OF COMPARATIVE LAW","0002-919X","2326-9197","LAW","('SSCI',)","962","1.3","Q1","1.16","18.31" +"INTERNATIONAL JOURNAL OF MIDDLE EAST STUDIES","0020-7438","1471-6380","AREA STUDIES","('SSCI',)","1,781","1.3","Q1","1.16","57.61" +"Cultural Studies of Science Education","1871-1502","1871-1510","('CULTURAL STUDIES', 'EDUCATION & EDUCATIONAL RESEARCH')","('AHCI, SSCI', 'SSCI')","1,077","1.3","('Q2', 'Q2')","1.15","24.08" +"European Company and Financial Law Review","1613-2548","1613-2556","LAW","('ESCI',)","205","1.3","Q1","1.15","3.30" +"EMS Surveys in Mathematical Sciences","2308-2151","2308-216X","MATHEMATICS","('ESCI',)","201","1.3","Q1","1.14","100.00" +"REVISTA MATEMATICA IBEROAMERICANA","0213-2230","","MATHEMATICS","('SCIE',)","1,828","1.3","Q1","1.14","68.81" +"Journal de l Ecole Polytechnique-Mathematiques","2429-7100","2270-518X","MATHEMATICS","('SCIE',)","241","1.3","Q1","1.13","100.00" +"Journal of Mathematics","2314-4629","2314-4785","MATHEMATICS","('SCIE',)","2,789","1.3","Q1","1.12","99.56" +"Laboratory Phonology","1868-6346","1868-6354","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","440","1.3","('N/A', 'Q2')","1.12","95.65" +"MATHEMATISCHE ANNALEN","0025-5831","1432-1807","MATHEMATICS","('SCIE',)","9,998","1.3","Q1","1.12","32.11" +"Language Acquisition","1048-9223","1532-7817","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","798","1.3","('N/A', 'Q2')","1.09","19.40" +"OCEAN DEVELOPMENT AND INTERNATIONAL LAW","0090-8320","1521-0642","('INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI')","451","1.3","('Q2', 'Q1')","1.09","34.55" +"Tel Aviv-Journal of the Institute of Archaeology of Tel Aviv University","0334-4355","2040-4786","ARCHAEOLOGY","('AHCI',)","427","1.3","","1.08","28.21" +"JOURNAL OF ORNITHOLOGY","2193-7192","2193-7206","ORNITHOLOGY","('SCIE',)","3,363","1.3","Q2","1.07","48.76" +"Nordic Social Work Research","2156-857X","2156-8588","SOCIAL WORK","('ESCI',)","171","1.3","Q2","1.07","70.37" +"LANGUAGE SCIENCES","0388-0001","1873-5746","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","1,103","1.3","('N/A', 'Q2')","1.05","26.02" +"NONLINEAR ANALYSIS-THEORY METHODS & APPLICATIONS","0362-546X","1873-5215","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","11,742","1.3","('Q1', 'Q2')","1.05","19.90" +"Election Law Journal","1533-1296","1557-8062","('LAW', 'POLITICAL SCIENCE')","('ESCI', 'ESCI')","347","1.3","('Q1', 'Q2')","1.04","13.64" +"Journal of Advanced Academics","1932-202X","2162-9536","EDUCATION, SPECIAL","('ESCI',)","556","1.3","Q3","1.04","11.11" +"Critical African Studies","2168-1392","2040-7211","('ANTHROPOLOGY', 'AREA STUDIES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","273","1.3","('Q2', 'Q1', 'Q2')","1.03","19.35" +"Evolution Equations and Control Theory","2163-2480","2163-2480","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","653","1.3","('Q1', 'Q2')","0.99","99.00" +"Asian Bioethics Review","1793-8759","1793-9453","('ETHICS', 'MEDICAL ETHICS')","('ESCI', 'ESCI')","345","1.3","('Q3', 'Q3')","0.98","38.14" +"PROCEEDINGS OF THE ROYAL SOCIETY OF EDINBURGH SECTION A-MATHEMATICS","0308-2105","1473-7124","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,706","1.3","('Q1', 'Q2')","0.98","16.76" +"Corpus Pragmatics","2509-9507","2509-9515","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","113","1.3","('N/A', 'Q2')","0.97","52.08" +"Journal of Competition Law & Economics","1744-6414","1744-6422","('ECONOMICS', 'LAW')","('SSCI', 'SSCI')","452","1.3","('Q3', 'Q1')","0.97","15.00" +"Journal of Teaching in Travel & Tourism","1531-3220","1531-3239","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","480","1.3","Q2","0.96","6.58" +"Probability Surveys","1549-5787","1549-5787","STATISTICS & PROBABILITY","('ESCI',)","538","1.3","Q2","0.95","100.00" +"Journal of Forest Research","1341-6979","1610-7403","FORESTRY","('SCIE',)","1,297","1.3","Q3","0.94","9.60" +"OSTRICH","0030-6525","1727-947X","ORNITHOLOGY","('SCIE',)","873","1.3","Q2","0.94","1.09" +"Discrete and Continuous Dynamical Systems-Series S","1937-1632","1937-1179","MATHEMATICS, APPLIED","('SCIE',)","1,834","1.3","Q2","0.93","98.60" +"LINGUISTICS","0024-3949","1613-396X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","1,659","1.3","('N/A', 'Q2')","0.93","78.32" +"Quantitative Methods for Psychology","1913-4126","2292-1354","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","711","1.3","Q2","0.93","95.38" +"Justice Evaluation Journal","2475-1979","2475-1987","CRIMINOLOGY & PENOLOGY","('ESCI',)","102","1.3","Q3","0.90","4.08" +"Mammal Research","2199-2401","2199-241X","ZOOLOGY","('SCIE',)","760","1.3","Q2","0.90","25.29" +"Journal of Early Childhood Literacy","1468-7984","1741-2919","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","856","1.3","Q2","0.89","16.22" +"JOURNAL OF LAW ECONOMICS & ORGANIZATION","8756-6222","1465-7341","('ECONOMICS', 'LAW')","('SSCI', 'SSCI')","2,276","1.3","('Q3', 'Q1')","0.89","9.82" +"JOURNAL OF RISK AND UNCERTAINTY","0895-5646","1573-0476","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","2,893","1.3","('Q3', 'Q3')","0.89","51.35" +"JOURNAL OF STRATEGIC STUDIES","0140-2390","1743-937X","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,128","1.3","('Q2', 'Q2')","0.89","23.58" +"Advances in Neurodevelopmental Disorders","2366-7532","2366-7540","('EDUCATION, SPECIAL', 'PSYCHOLOGY, DEVELOPMENTAL', 'REHABILITATION')","('ESCI', 'ESCI', 'ESCI')","398","1.3","('Q3', 'Q4', 'Q3')","0.88","30.32" +"JOURNAL OF HISTORICAL GEOGRAPHY","0305-7488","1095-8614","('GEOGRAPHY', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","964","1.3","('Q2', 'Q1')","0.88","39.47" +"POLITISCHE VIERTELJAHRESSCHRIFT","0032-3470","1862-2860","POLITICAL SCIENCE","('SSCI',)","355","1.3","Q2","0.88","95.56" +"SOUTH AFRICAN ARCHAEOLOGICAL BULLETIN","0038-1969","2224-4654","ARCHAEOLOGY","('AHCI',)","730","1.3","","0.88","0.00" +"International Journal of Numerical Analysis and Modeling","1705-5105","1705-5105","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","710","1.3","('Q1', 'Q2')","0.86","0.00" +"Set-Valued and Variational Analysis","1877-0533","1877-0541","MATHEMATICS, APPLIED","('SCIE',)","636","1.3","Q2","0.86","29.17" +"Research in Mathematics Education","1479-4802","1754-0178","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","422","1.3","Q2","0.84","32.47" +"MICROPALEONTOLOGY","0026-2803","1937-2795","PALEONTOLOGY","('SCIE',)","1,494","1.3","Q3","0.83","0.00" +"AMERICAN BUSINESS LAW JOURNAL","0002-7766","1744-1714","('BUSINESS', 'LAW')","('SSCI', 'SSCI')","288","1.3","('Q3', 'Q1')","0.82","25.53" +"Global Social Welfare","2196-8799","2196-8799","SOCIAL WORK","('ESCI',)","305","1.3","Q2","0.82","7.87" +"Journal of Contemporary Criminal Justice","1043-9862","1552-5406","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,061","1.3","Q3","0.82","12.26" +"JOURNAL OF GAY & LESBIAN SOCIAL SERVICES","1053-8720","1540-4056","SOCIAL WORK","('ESCI',)","788","1.3","Q2","0.82","3.92" +"Behavioral Sciences of Terrorism and Political Aggression","1943-4472","1943-4480","POLITICAL SCIENCE","('ESCI',)","325","1.3","Q2","0.81","27.27" +"Homicide Studies","1088-7679","1552-6720","CRIMINOLOGY & PENOLOGY","('SSCI',)","719","1.3","Q3","0.81","12.94" +"LANGUAGE & COMMUNICATION","0271-5309","1873-3395","('COMMUNICATION', 'LINGUISTICS')","('SSCI', 'SSCI')","1,646","1.3","('Q2', 'Q2')","0.80","37.08" +"International Journal of Education in Mathematics Science and Technology","2147-611X","2147-611X","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","451","1.3","Q3","0.79","99.47" +"Policing-A Journal of Policy and Practice","1752-4512","1752-4520","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,111","1.3","Q3","0.79","26.18" +"Jamba-Journal of Disaster Risk Studies","1996-1421","2072-845X","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","694","1.3","Q2","0.78","93.81" +"ZooKeys","1313-2989","1313-2970","ZOOLOGY","('SCIE',)","6,713","1.3","Q2","0.77","98.43" +"Chinese Journal of International Law","1540-1650","1746-9937","('INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI')","368","1.3","('Q2', 'Q1')","0.76","20.97" +"Cogent Social Sciences","2331-1886","2331-1886","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","1,920","1.3","Q2","0.76","97.19" +"INTERNATIONAL JOURNAL OF PERIODONTICS & RESTORATIVE DENTISTRY","0198-7569","1945-3388","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","4,051","1.3","Q3","0.76","0.00" +"PRIMATES","0032-8332","1610-7365","ZOOLOGY","('SCIE',)","2,327","1.3","Q2","0.76","26.86" +"Annals of Applied Statistics","1932-6157","1941-7330","STATISTICS & PROBABILITY","('SCIE',)","4,707","1.3","Q2","0.75","3.11" +"CANADIAN JOURNAL OF BEHAVIOURAL SCIENCE-REVUE CANADIENNE DES SCIENCES DU COMPORTEMENT","0008-400X","1879-2669","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,741","1.3","Q3","0.75","0.00" +"JOURNAL OF PALEONTOLOGY","0022-3360","1937-2337","PALEONTOLOGY","('SCIE',)","5,094","1.3","Q3","0.75","35.53" +"BRITISH JOURNAL OF INDUSTRIAL RELATIONS","0007-1080","1467-8543","INDUSTRIAL RELATIONS & LABOR","('SSCI',)","1,541","1.3","Q3","0.74","47.25" +"Journal of Veterinary Behavior-Clinical Applications and Research","1558-7878","1878-7517","('BEHAVIORAL SCIENCES', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","1,990","1.3","('Q4', 'Q2')","0.74","16.30" +"BOLLETTINO DELLA SOCIETA PALEONTOLOGICA ITALIANA","0375-7633","","PALEONTOLOGY","('SCIE',)","513","1.3","Q3","0.73","0.00" +"Critical Philosophy of Race","2165-8684","2165-8692","ETHNIC STUDIES","('ESCI',)","200","1.3","Q2","0.73","0.00" +"Journal of Sport Rehabilitation","1056-6716","1543-3072","('REHABILITATION', 'SPORT SCIENCES')","('SCIE', 'SCIE')","2,609","1.3","('Q3', 'Q3')","0.73","0.22" +"QUINTESSENCE INTERNATIONAL","0033-6572","1936-7163","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","3,078","1.3","Q3","0.73","0.00" +"Nurse Leader","1541-4612","1541-4620","NURSING","('ESCI',)","585","1.3","Q3","0.72","7.91" +"E&G Quaternary Science Journal","0424-7116","2199-9090","GEOLOGY","('ESCI',)","218","1.3","Q2","0.71","95.65" +"International Journal of Early Years Education","0966-9760","1469-8463","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","837","1.3","Q2","0.71","22.15" +"JOURNAL OF IBERIAN GEOLOGY","1698-6180","1886-7995","GEOLOGY","('SCIE',)","594","1.3","Q2","0.71","36.36" +"Theory and Research in Education","1477-8785","1741-3192","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","786","1.3","Q2","0.71","28.81" +"VETERINARY SURGERY","0161-3499","1532-950X","VETERINARY SCIENCES","('SCIE',)","5,343","1.3","Q2","0.71","20.00" +"APPLIED IMMUNOHISTOCHEMISTRY & MOLECULAR MORPHOLOGY","1541-2016","1533-4058","('ANATOMY & MORPHOLOGY', 'MEDICAL LABORATORY TECHNOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","2,273","1.3","('Q3', 'Q3', 'Q3')","0.70","11.24" +"DISCRETE AND CONTINUOUS DYNAMICAL SYSTEMS-SERIES B","1531-3492","1553-524X","MATHEMATICS, APPLIED","('SCIE',)","4,102","1.3","Q2","0.70","98.74" +"Early Years","0957-5146","1472-4421","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","772","1.3","Q2","0.70","25.97" +"Fuzzy Information and Engineering","1616-8658","1616-8666","MATHEMATICS, APPLIED","('ESCI',)","447","1.3","Q2","0.70","96.77" +"Journal of Orofacial Orthopedics-Fortschritte der Kieferorthopadie","1434-5293","1615-6714","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,484","1.3","Q3","0.70","36.18" +"Journal of Research in Childhood Education","0256-8543","2150-2641","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,013","1.3","Q2","0.70","19.13" +"Leadership and Policy in Schools","1570-0763","1744-5043","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","817","1.3","Q2","0.70","7.78" +"Mobilization","1086-671X","","SOCIOLOGY","('SSCI',)","944","1.3","Q3","0.70","0.00" +"PARLIAMENTARY AFFAIRS","0031-2290","1460-2482","POLITICAL SCIENCE","('SSCI',)","1,216","1.3","Q2","0.70","34.94" +"VETERINARY RADIOLOGY & ULTRASOUND","1058-8183","1740-8261","VETERINARY SCIENCES","('SCIE',)","2,947","1.3","Q2","0.70","25.35" +"Veterinary Record Open","2399-2050","2052-6113","VETERINARY SCIENCES","('ESCI',)","302","1.3","Q2","0.70","73.91" +"ACTA SOCIOLOGICA","0001-6993","1502-3869","SOCIOLOGY","('SSCI',)","1,390","1.3","Q3","0.69","56.96" +"BUSINESS HISTORY REVIEW","0007-6805","2044-768X","('BUSINESS', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","1,013","1.3","('Q3', 'Q1')","0.69","22.22" +"International Review of Economics Education","1477-3880","2352-4421","('ECONOMICS', 'EDUCATION & EDUCATIONAL RESEARCH')","('SSCI', 'SSCI')","463","1.3","('Q3', 'Q2')","0.69","14.04" +"Issues in Educational Research","1837-6290","1837-6290","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","903","1.3","Q2","0.69","0.00" +"Journal of Veterinary Research","2450-7393","2450-8608","VETERINARY SCIENCES","('SCIE',)","954","1.3","Q2","0.69","99.53" +"OTOLARYNGOLOGIC CLINICS OF NORTH AMERICA","0030-6665","1557-8259","OTORHINOLARYNGOLOGY","('SCIE',)","3,584","1.3","Q3","0.69","1.91" +"Reading in a Foreign Language","1539-0578","1539-0578","LINGUISTICS","('ESCI',)","649","1.3","Q2","0.69","1.96" +"TURKISH JOURNAL OF ZOOLOGY","1300-0179","1303-6114","ZOOLOGY","('SCIE',)","1,251","1.3","Q2","0.69","0.00" +"ARCHIVES DE PEDIATRIE","0929-693X","1769-664X","PEDIATRICS","('SCIE',)","1,738","1.3","Q3","0.68","35.43" +"JOURNAL OF MEDICINE AND PHILOSOPHY","0360-5310","1744-5019","('ETHICS', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI')","1,244","1.3","('Q3', 'Q4')","0.68","23.02" +"PEDIATRIC AND DEVELOPMENTAL PATHOLOGY","1093-5266","1615-5742","('PATHOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","1,633","1.3","('Q3', 'Q3')","0.68","10.57" +"ANNALS OF OTOLOGY RHINOLOGY AND LARYNGOLOGY","0003-4894","1943-572X","OTORHINOLARYNGOLOGY","('SCIE',)","7,466","1.3","Q3","0.67","6.99" +"BULLETIN DES SCIENCES MATHEMATIQUES","0007-4497","1952-4773","MATHEMATICS, APPLIED","('SCIE',)","1,425","1.3","Q2","0.67","10.83" +"COMPUTER AIDED GEOMETRIC DESIGN","0167-8396","1879-2332","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,100","1.3","('Q3', 'Q2')","0.67","25.17" +"Journal of Immigrant & Refugee Studies","1556-2948","1556-2956","('DEMOGRAPHY', 'ETHNIC STUDIES', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","966","1.3","('Q3', 'Q2', 'Q3')","0.67","25.79" +"Occupational Therapy International","0966-7903","1557-0703","REHABILITATION","('SCIE', 'SSCI')","999","1.3","Q3","0.67","100.00" +"Policy Futures in Education","1478-2103","1478-2103","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,247","1.3","Q2","0.67","27.20" +"TESOL Journal","1056-7941","1949-3533","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","824","1.3","Q2","0.67","20.92" +"AUSTRALIAN FEMINIST STUDIES","0816-4649","1465-3303","WOMENS STUDIES","('SSCI',)","613","1.3","Q2","0.66","42.86" +"JOURNAL OF EQUINE VETERINARY SCIENCE","0737-0806","1542-7412","VETERINARY SCIENCES","('SCIE',)","3,323","1.3","Q2","0.66","16.03" +"Contemporary Issues in Early Childhood","1463-9491","1463-9491","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","833","1.3","Q2","0.65","30.84" +"European Journal of Political Theory","1474-8851","1741-2730","POLITICAL SCIENCE","('ESCI',)","707","1.3","Q2","0.65","35.53" +"HEC Forum","0956-2737","1572-8498","ETHICS","('SSCI',)","479","1.3","Q3","0.65","20.73" +"Nawpa Pacha","0077-6297","2051-6207","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('ESCI', 'ESCI')","116","1.3","('Q2', 'N/A')","0.65","0.00" +"PHI DELTA KAPPAN","0031-7217","1940-6487","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,070","1.3","Q2","0.65","0.00" +"Revista de Comunicacion-Peru","1684-0933","2227-1465","COMMUNICATION","('ESCI',)","204","1.3","Q2","0.65","96.55" +"SALAMANDRA","0036-3375","0036-3375","ZOOLOGY","('SCIE',)","608","1.3","Q2","0.65","1.05" +"Educational Studies-AESA","0013-1946","1532-6993","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","669","1.3","Q2","0.64","3.57" +"ETHOLOGY ECOLOGY & EVOLUTION","0394-9370","1828-7131","('BEHAVIORAL SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","1,113","1.3","('Q4', 'Q2')","0.64","6.25" +"European Journal of Health Psychology","2512-8442","2512-8450","PSYCHOLOGY, CLINICAL","('SSCI',)","184","1.3","Q3","0.64","29.09" +"Hip International","1120-7000","1724-6067","ORTHOPEDICS","('SCIE',)","2,209","1.3","Q3","0.64","10.57" +"International Journal of Pediatrics","1687-9740","1687-9759","PEDIATRICS","('ESCI',)","1,077","1.3","Q3","0.64","100.00" +"Journal of Eye Movement Research","1995-8692","1995-8692","OPHTHALMOLOGY","('SCIE',)","739","1.3","Q3","0.64","98.70" +"JOURNAL OF HELMINTHOLOGY","0022-149X","1475-2697","('PARASITOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","2,467","1.3","('Q4', 'Q2')","0.64","23.48" +"NEW GENETICS AND SOCIETY","1463-6778","1469-9915","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'GENETICS & HEREDITY', 'HISTORY & PHILOSOPHY OF SCIENCE', 'SOCIAL ISSUES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SCIE', 'SCIE', 'SSCI', 'SSCI', 'SSCI')","484","1.3","('Q4', 'Q4', 'Q1', 'Q3', 'Q4')","0.64","75.68" +"AMERICAN JOURNAL OF VETERINARY RESEARCH","0002-9645","1943-5681","VETERINARY SCIENCES","('SCIE',)","7,571","1.3","Q2","0.63","58.10" +"Australian Endodontic Journal","1329-1947","1747-4477","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,097","1.3","Q3","0.62","10.60" +"Fennia-International Journal of Geography","0015-0010","1798-5617","GEOGRAPHY","('ESCI',)","363","1.3","Q2","0.62","96.61" +"International Communication Gazette","1748-0485","1748-0493","COMMUNICATION","('SSCI',)","1,209","1.3","Q2","0.62","16.50" +"Investigacion y Educacion en Enfermeria","0120-5307","2216-0280","NURSING","('ESCI',)","415","1.3","Q3","0.62","81.45" +"JOURNAL OF APPLIED ANIMAL RESEARCH","0971-2119","0974-1844","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,950","1.3","Q3","0.62","97.54" +"Journal of Child Health Care","1367-4935","1741-2889","('NURSING', 'PEDIATRICS')","('SCIE, SSCI', 'SCIE')","1,304","1.3","('Q3', 'Q3')","0.62","30.16" +"Journal of International Migration and Integration","1488-3473","1874-6365","DEMOGRAPHY","('ESCI',)","1,601","1.3","Q3","0.62","42.09" +"Legal Medicine","1344-6223","1344-6223","MEDICINE, LEGAL","('SCIE',)","1,817","1.3","Q3","0.62","20.10" +"Pediatric Physical Therapy","0898-5669","1538-005X","('PEDIATRICS', 'REHABILITATION')","('SCIE', 'SCIE')","1,533","1.3","('Q3', 'Q3')","0.62","1.39" +"BELGIAN JOURNAL OF ZOOLOGY","0777-6276","2295-0451","ZOOLOGY","('SCIE',)","412","1.3","Q2","0.61","100.00" +"GEOLOGICA ACTA","1695-6133","1696-5728","GEOLOGY","('SCIE',)","789","1.3","Q2","0.61","100.00" +"LABORATORY ANIMALS","0023-6772","1758-1117","('VETERINARY SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","2,465","1.3","('Q2', 'Q2')","0.61","20.27" +"Pediatric Gastroenterology Hepatology & Nutrition","2234-8646","2234-8840","PEDIATRICS","('ESCI',)","788","1.3","Q3","0.61","100.00" +"AUSTRALIAN VETERINARY JOURNAL","0005-0423","1751-0813","VETERINARY SCIENCES","('SCIE',)","3,282","1.3","Q2","0.60","36.97" +"INTERNATIONAL JOURNAL OF OFFENDER THERAPY AND COMPARATIVE CRIMINOLOGY","0306-624X","1552-6933","('CRIMINOLOGY & PENOLOGY', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","2,757","1.3","('Q3', 'Q3')","0.60","20.36" +"Journal of Childrens Orthopaedics","1863-2521","1863-2548","('ORTHOPEDICS', 'PEDIATRICS')","('SCIE', 'SCIE')","2,063","1.3","('Q3', 'Q3')","0.60","89.22" +"Animal Production Science","1836-0939","1836-5787","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","4,050","1.3","Q3","0.59","37.81" +"Journal of Education for Business","0883-2323","1940-3356","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,363","1.3","Q2","0.59","3.21" +"JOURNAL OF STATISTICAL PHYSICS","0022-4715","1572-9613","PHYSICS, MATHEMATICAL","('SCIE',)","10,079","1.3","Q3","0.59","33.33" +"SYSTEMATIC AND APPLIED ACAROLOGY","1362-1971","2056-6069","ENTOMOLOGY","('SCIE',)","1,787","1.3","Q2","0.59","0.00" +"AMPHIBIAN & REPTILE CONSERVATION","1083-446X","1525-9153","ZOOLOGY","('SCIE',)","311","1.3","Q2","0.58","0.00" +"AVIAN DISEASES","0005-2086","1938-4351","VETERINARY SCIENCES","('SCIE',)","4,505","1.3","Q2","0.58","0.00" +"International Journal of Mathematical Engineering and Management Sciences","2455-7749","2455-7749","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('ESCI', 'ESCI', 'ESCI')","587","1.3","('Q3', 'Q2', 'Q4')","0.58","100.00" +"JOURNAL OF SOCIAL WORK EDUCATION","1043-7797","2163-5811","('EDUCATION & EDUCATIONAL RESEARCH', 'SOCIAL WORK')","('SSCI', 'SSCI')","1,863","1.3","('Q2', 'Q2')","0.58","5.58" +"Oral and Maxillofacial Surgery Clinics of North America","1042-3699","1558-1365","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,738","1.3","Q3","0.58","0.63" +"Revista Complutense de Educacion","1130-2496","1988-2793","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","800","1.3","Q2","0.58","93.44" +"Asian Social Work and Policy Review","1753-1403","1753-1411","SOCIAL WORK","('ESCI',)","264","1.3","Q2","0.57","8.33" +"COMPARATIVE MEDICINE","1532-0820","1532-0820","('VETERINARY SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","1,541","1.3","('Q2', 'Q2')","0.57","0.00" +"Data Intelligence","","2641-435X","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","384","1.3","Q3","0.57","100.00" +"ELECTRONIC JOURNAL OF PROBABILITY","1083-6489","1083-6489","STATISTICS & PROBABILITY","('SCIE',)","2,436","1.3","Q2","0.57","98.66" +"Frontiers in Rehabilitation Sciences","","2673-6861","REHABILITATION","('ESCI',)","556","1.3","Q3","0.57","99.81" +"INVERTEBRATE BIOLOGY","1077-8306","1744-7410","('MARINE & FRESHWATER BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","847","1.3","('Q3', 'Q2')","0.57","18.89" +"Journal of Foot & Ankle Surgery","1067-2516","1542-2224","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","4,686","1.3","('Q3', 'Q3')","0.57","7.84" +"Journal of Money Laundering Control","1758-7808","1368-5201","CRIMINOLOGY & PENOLOGY","('ESCI',)","829","1.3","Q3","0.57","8.97" +"Journal of Orthopaedic Surgery","1022-5536","2309-4990","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","2,593","1.3","('Q3', 'Q3')","0.57","86.42" +"JOURNAL OF SPACECRAFT AND ROCKETS","0022-4650","1533-6794","ENGINEERING, AEROSPACE","('SCIE',)","5,179","1.3","Q2","0.57","6.31" +"PALEONTOLOGICAL RESEARCH","1342-8144","","PALEONTOLOGY","('SCIE',)","444","1.3","Q3","0.57","0.00" +"Proceedings of the Institution of Civil Engineers-Ground Improvement","1755-0750","1755-0769","ENGINEERING, GEOLOGICAL","('ESCI',)","808","1.3","Q3","0.57","4.12" +"Acta Crystallographica Section B-Structural Science Crystal Engineering and Materials","","2052-5206","('CHEMISTRY, MULTIDISCIPLINARY', 'CRYSTALLOGRAPHY')","('SCIE', 'SCIE')","10,964","1.3","('Q3', 'Q3')","0.56","28.57" +"Behavioural Processes","0376-6357","1872-8308","('BEHAVIORAL SCIENCES', 'PSYCHOLOGY, BIOLOGICAL', 'ZOOLOGY')","('SCIE', 'SSCI', 'SCIE')","5,209","1.3","('Q4', 'Q3', 'Q2')","0.56","22.03" +"BIOMETRICAL JOURNAL","0323-3847","1521-4036","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","4,156","1.3","('Q4', 'Q2')","0.56","38.24" +"Currents in Pharmacy Teaching and Learning","1877-1297","1877-1300","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","2,299","1.3","Q3","0.56","4.38" +"ETHOLOGY","0179-1613","1439-0310","('BEHAVIORAL SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","4,227","1.3","('Q4', 'Q2')","0.56","32.64" +"International Journal of Paleopathology","1879-9817","1879-9825","('PALEONTOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","842","1.3","('Q3', 'Q3')","0.56","32.16" +"INTERNATIONAL JOURNAL OF SPELEOLOGY","0392-6672","1827-806X","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","793","1.3","Q3","0.56","98.11" +"Journal of Ethnicity in Criminal Justice","1537-7938","1537-7946","CRIMINOLOGY & PENOLOGY","('ESCI',)","275","1.3","Q3","0.56","0.00" +"JOURNAL OF GLOBAL OPTIMIZATION","0925-5001","1573-2916","('MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","6,576","1.3","('Q2', 'Q4')","0.56","22.64" +"Journal of Spatial and Organizational Dynamics","2183-1912","1647-3183","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","121","1.3","Q2","0.56","0.00" +"Public Integrity","1099-9922","1558-0989","PUBLIC ADMINISTRATION","('ESCI',)","637","1.3","Q3","0.56","10.55" +"Social Theory & Health","1477-8211","1477-822X","SOCIAL SCIENCES, BIOMEDICAL","('SSCI',)","718","1.3","Q4","0.56","36.36" +"BULLETIN OF INSECTOLOGY","1721-8861","2283-0332","ENTOMOLOGY","('SCIE',)","1,033","1.3","Q2","0.55","0.00" +"CIRUGIA ESPANOLA","0009-739X","1578-147X","SURGERY","('SCIE',)","1,005","1.3","Q3","0.55","0.87" +"DEUTSCHE ENTOMOLOGISCHE ZEITSCHRIFT","1435-1951","1522-2403","ENTOMOLOGY","('SCIE',)","689","1.3","Q2","0.55","100.00" +"INSECT SYSTEMATICS & EVOLUTION","1399-560X","1876-312X","('ENTOMOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE')","449","1.3","('Q2', 'Q4')","0.55","4.08" +"JOURNAL OF MATHEMATICAL IMAGING AND VISION","0924-9907","1573-7683","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","2,170","1.3","('Q4', 'Q3', 'Q2')","0.55","29.11" +"Journal of Neurosurgical Sciences","0390-5616","1827-1855","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","1,207","1.3","('Q4', 'Q3')","0.55","3.34" +"JOURNAL OF OCEANOGRAPHY","0916-8370","1573-868X","OCEANOGRAPHY","('SCIE',)","2,667","1.3","Q4","0.55","29.51" +"Marine Genomics","1874-7787","1876-7478","GENETICS & HEREDITY","('SCIE',)","1,132","1.3","Q4","0.55","15.04" +"Montenegrin Journal of Sports Science and Medicine","1800-8755","1800-8763","SPORT SCIENCES","('ESCI',)","169","1.3","Q3","0.55","85.92" +"Sucht-Zeitschrift fur Wissenschaft und Praxis","0939-5911","1664-2856","SUBSTANCE ABUSE","('ESCI',)","236","1.3","Q4","0.55","61.04" +"TEACHERS COLLEGE RECORD","0161-4681","1467-9620","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","5,217","1.3","Q2","0.55","5.94" +"Topics in Companion Animal Medicine","1938-9736","1946-9837","VETERINARY SCIENCES","('SCIE',)","813","1.3","Q2","0.55","14.84" +"Turkish Archives of Pediatrics","","2757-6256","PEDIATRICS","('ESCI',)","269","1.3","Q3","0.55","30.77" +"JOURNAL OF HUMANISTIC PSYCHOLOGY","0022-1678","1552-650X","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,512","1.3","Q3","0.54","10.31" +"Journal of Research on Leadership Education","1942-7751","1942-7751","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","311","1.3","Q2","0.54","8.06" +"PHARMACEUTICAL STATISTICS","1539-1604","1539-1612","('PHARMACOLOGY & PHARMACY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","1,986","1.3","('Q4', 'Q2')","0.54","14.41" +"RELIEVE-Revista Electronica de Investigacion y Evaluacion Educativa","1134-4032","1134-4032","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","274","1.3","Q2","0.54","91.84" +"Archives of Plastic Surgery-APS","2234-6163","2234-6171","SURGERY","('ESCI',)","1,743","1.3","Q3","0.53","98.43" +"Egyptian Journal of Forensic Sciences","2090-536X","2090-5939","MEDICINE, LEGAL","('ESCI',)","597","1.3","Q3","0.53","100.00" +"ENDOCRINE JOURNAL","0918-8959","1348-4540","ENDOCRINOLOGY & METABOLISM","('SCIE',)","4,375","1.3","Q4","0.53","98.35" +"ESAIM-CONTROL OPTIMISATION AND CALCULUS OF VARIATIONS","1292-8119","1262-3377","('AUTOMATION & CONTROL SYSTEMS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,910","1.3","('Q4', 'Q2')","0.53","77.45" +"Journal of Cross-Cultural Gerontology","0169-3816","1573-0719","GERONTOLOGY","('ESCI',)","940","1.3","Q3","0.53","24.64" +"Optimization Letters","1862-4472","1862-4480","('MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","2,252","1.3","('Q2', 'Q4')","0.53","16.47" +"Translational Animal Science","","2573-2102","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","1,540","1.3","Q3","0.53","92.65" +"Quality Engineering","0898-2112","1532-4222","('ENGINEERING, INDUSTRIAL', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","1,293","1.3","('Q4', 'Q2')","0.52","7.19" +"Statistics & Risk Modeling","2193-1402","2196-7040","STATISTICS & PROBABILITY","('ESCI',)","161","1.3","Q2","0.52","0.00" +"Ultrasound International Open","2509-596X","2199-7152","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","255","1.3","Q3","0.52","95.24" +"Acoustics","","2624-599X","ACOUSTICS","('ESCI',)","457","1.3","Q3","0.51","100.00" +"ANNALES ZOOLOGICI","0003-4541","1734-1833","ENTOMOLOGY","('SCIE',)","835","1.3","Q2","0.51","0.00" +"APPLIED ENTOMOLOGY AND ZOOLOGY","0003-6862","1347-605X","ENTOMOLOGY","('SCIE',)","2,250","1.3","Q2","0.51","11.11" +"Asian Myrmecology","1985-1944","","ENTOMOLOGY","('SCIE',)","131","1.3","Q2","0.51","0.00" +"Asian Perspective","0258-9184","2288-2871","INTERNATIONAL RELATIONS","('SSCI',)","454","1.3","Q2","0.51","0.00" +"CONTRIBUTIONS TO PLASMA PHYSICS","0863-1042","1521-3986","PHYSICS, FLUIDS & PLASMAS","('SCIE',)","1,719","1.3","Q3","0.51","13.75" +"Journal of Aerospace Information Systems","1940-3151","2327-3097","ENGINEERING, AEROSPACE","('SCIE',)","741","1.3","Q2","0.51","4.31" +"Journal of the American Taxation Association","0198-9073","1558-8017","BUSINESS, FINANCE","('ESCI',)","619","1.3","Q3","0.51","0.00" +"NORTH AMERICAN JOURNAL OF FISHERIES MANAGEMENT","0275-5947","1548-8675","FISHERIES","('SCIE',)","4,505","1.3","Q3","0.51","18.00" +"Open Access Journal of Sports Medicine","1179-1543","1179-1543","SPORT SCIENCES","('ESCI',)","712","1.3","Q3","0.51","94.59" +"RATIONALITY AND SOCIETY","1043-4631","1461-7358","SOCIOLOGY","('SSCI',)","893","1.3","Q3","0.51","36.07" +"BioResources","1930-2126","1930-2126","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","11,995","1.3","Q2","0.50","91.15" +"EMERGENCY MEDICINE CLINICS OF NORTH AMERICA","0733-8627","1558-0539","EMERGENCY MEDICINE","('SCIE',)","1,644","1.3","Q3","0.50","0.00" +"FOREST PATHOLOGY","1437-4781","1439-0329","FORESTRY","('SCIE',)","1,663","1.3","Q3","0.50","17.79" +"Journal of Oceanology and Limnology","2096-5508","2523-3521","('LIMNOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","1,531","1.3","('Q3', 'Q4')","0.50","0.41" +"Journal of Population Ageing","1874-7884","1874-7876","GERONTOLOGY","('ESCI',)","604","1.3","Q3","0.50","29.52" +"Journal of Ultrasound","1971-3495","1876-7931","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,297","1.3","Q3","0.50","18.71" +"Modelling","","2673-3951","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","132","1.3","Q3","0.50","100.00" +"OPEN SYSTEMS & INFORMATION DYNAMICS","1230-1612","1793-7191","('PHYSICS, MATHEMATICAL', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","415","1.3","('Q3', 'Q2')","0.50","0.00" +"POLITICAL THEORY","0090-5917","1552-7476","POLITICAL SCIENCE","('SSCI',)","2,053","1.3","Q2","0.50","25.96" +"Sociology of Development","","2374-538X","('DEVELOPMENT STUDIES', 'SOCIOLOGY')","('ESCI', 'ESCI')","192","1.3","('Q3', 'Q3')","0.50","0.00" +"African Journal of Disability","2223-9170","2226-7220","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","533","1.3","Q4","0.49","96.55" +"British Journal of Occupational Therapy","0308-0226","1477-6006","REHABILITATION","('SCIE', 'SSCI')","1,971","1.3","Q3","0.49","22.67" +"CLINICAL PHYSIOLOGY AND FUNCTIONAL IMAGING","1475-0961","1475-097X","PHYSIOLOGY","('SCIE',)","2,276","1.3","Q4","0.49","40.00" +"Current Pediatric Reviews","1573-3963","1875-6336","PEDIATRICS","('ESCI',)","788","1.3","Q3","0.49","1.39" +"HETEROCYCLIC COMMUNICATIONS","0793-0283","2191-0197","CHEMISTRY, ORGANIC","('SCIE',)","654","1.3","Q3","0.49","94.00" +"Holistic Nursing Practice","0887-9311","1550-5138","('INTEGRATIVE & COMPLEMENTARY MEDICINE', 'NURSING')","('SCIE', 'SCIE, SSCI')","938","1.3","('Q3', 'Q3')","0.49","2.74" +"Journal of China Tourism Research","1938-8160","1938-8179","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","674","1.3","Q3","0.49","3.01" +"JOURNAL OF PSYCHOPATHOLOGY AND BEHAVIORAL ASSESSMENT","0882-2689","1573-3505","PSYCHOLOGY, CLINICAL","('SSCI',)","4,341","1.3","Q3","0.49","19.38" +"LETTERS IN MATHEMATICAL PHYSICS","0377-9017","1573-0530","PHYSICS, MATHEMATICAL","('SCIE',)","2,801","1.3","Q3","0.49","37.25" +"QUARTERLY JOURNAL OF NUCLEAR MEDICINE AND MOLECULAR IMAGING","1824-4785","1827-1936","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","735","1.3","Q3","0.49","2.73" +"Ethics & International Affairs","0892-6794","1747-7093","('ETHICS', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","803","1.3","('Q3', 'Q2', 'Q2')","0.48","60.53" +"Information Polity","1570-1255","1875-8754","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","794","1.3","Q2","0.48","31.82" +"International Journal of Nursing Education Scholarship","2194-5772","1548-923X","NURSING","('ESCI',)","623","1.3","Q3","0.48","4.08" +"Journal of Integrative and Complementary Medicine","2768-3605","2768-3613","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","198","1.3","Q3","0.48","13.57" +"Journal of Sport Psychology in Action","2152-0704","2152-0712","PSYCHOLOGY, APPLIED","('ESCI',)","386","1.3","Q3","0.48","26.67" +"NEUROPATHOLOGY","0919-6544","1440-1789","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'PATHOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,918","1.3","('Q4', 'Q4', 'Q3')","0.48","11.23" +"THORACIC AND CARDIOVASCULAR SURGEON","0171-6425","1439-1902","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RESPIRATORY SYSTEM', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","2,119","1.3","('Q3', 'Q4', 'Q3')","0.48","14.24" +"BioSocieties","1745-8552","1745-8560","SOCIAL SCIENCES, BIOMEDICAL","('SSCI',)","784","1.3","Q4","0.47","46.32" +"BULLETIN OF THE GEOLOGICAL SOCIETY OF FINLAND","0367-5211","1799-4632","GEOLOGY","('SCIE',)","257","1.3","Q2","0.47","100.00" +"CHILDS NERVOUS SYSTEM","0256-7040","1433-0350","('CLINICAL NEUROLOGY', 'PEDIATRICS', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","7,742","1.3","('Q4', 'Q3', 'Q3')","0.47","15.82" +"Global Labour Journal","1918-6711","1918-6711","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","300","1.3","Q3","0.47","0.00" +"IEEE TRANSACTIONS ON PLASMA SCIENCE","0093-3813","1939-9375","PHYSICS, FLUIDS & PLASMAS","('SCIE',)","11,561","1.3","Q3","0.47","3.86" +"JOURNAL OF CARDIAC SURGERY","0886-0440","1540-8191","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'SURGERY')","('SCIE', 'SCIE')","4,108","1.3","('Q3', 'Q3')","0.47","73.29" +"JOURNAL OF DATABASE MANAGEMENT","1063-8016","1533-8010","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","335","1.3","('Q3', 'Q3')","0.47","55.00" +"JOURNAL OF EVOLUTIONARY ECONOMICS","0936-9937","1432-1386","ECONOMICS","('SSCI',)","1,814","1.3","Q3","0.47","53.78" +"JOURNAL OF OFFSHORE MECHANICS AND ARCTIC ENGINEERING-TRANSACTIONS OF THE ASME","0892-7219","1528-896X","('ENGINEERING, MECHANICAL', 'ENGINEERING, OCEAN')","('SCIE', 'SCIE')","1,946","1.3","('Q3', 'Q3')","0.47","1.33" +"Minimally Invasive Surgery","2090-1445","2090-1453","SURGERY","('ESCI',)","236","1.3","Q3","0.47","100.00" +"QUARTERLY JOURNAL OF SPEECH","0033-5630","1479-5779","COMMUNICATION","('SSCI',)","1,347","1.3","Q2","0.47","3.95" +"Software Impacts","2665-9638","2665-9638","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","455","1.3","Q3","0.47","77.84" +"Applied Network Science","","2364-8228","('COMPUTER SCIENCE, THEORY & METHODS', 'MULTIDISCIPLINARY SCIENCES')","('ESCI', 'ESCI')","1,018","1.3","('Q3', 'Q2')","0.46","100.00" +"Aquatic Biology","1864-7790","1864-7782","MARINE & FRESHWATER BIOLOGY","('SCIE',)","1,250","1.3","Q3","0.46","100.00" +"BMJ Open Quality","","2399-6641","('HEALTH CARE SCIENCES & SERVICES', 'MEDICINE, GENERAL & INTERNAL')","('ESCI', 'ESCI')","1,601","1.3","('Q4', 'Q2')","0.46","98.91" +"Cardiovascular Endocrinology & Metabolism","2574-0954","2574-0954","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","220","1.3","Q3","0.46","98.36" +"Family & Consumer Sciences Research Journal","1077-727X","1552-3934","FAMILY STUDIES","('ESCI',)","624","1.3","Q3","0.46","13.33" +"Frontiers of Business Research in China","1673-7326","1673-7431","BUSINESS","('ESCI',)","404","1.3","Q3","0.46","20.00" +"JOURNAL OF APPLIED AQUACULTURE","1045-4438","1545-0805","FISHERIES","('ESCI',)","703","1.3","Q3","0.46","4.90" +"Journal of Demographic Economics","2054-0892","2054-0906","('DEMOGRAPHY', 'ECONOMICS')","('SSCI', 'SSCI')","233","1.3","('Q3', 'Q3')","0.46","30.59" +"Journal of Technology and Chinese Language Teaching","1949-260X","1949-260X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","50","1.3","Q2","0.46","0.00" +"NEUROIMAGING CLINICS OF NORTH AMERICA","1052-5149","1557-9867","('NEUROIMAGING', 'NEUROSCIENCES', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE')","1,575","1.3","('Q4', 'Q4', 'Q3')","0.46","2.80" +"Noise & Health","1463-1741","1998-4030","('AUDIOLOGY & SPEECH', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","1,297","1.3","('Q3', 'Q4')","0.46","51.52" +"Papers in Language Testing and Assessment","2201-0009","2201-0009","LINGUISTICS","('ESCI',)","70","1.3","Q2","0.46","0.00" +"PsyCh Journal","2046-0252","2046-0260","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","827","1.3","Q3","0.46","25.69" +"APPLIED STOCHASTIC MODELS IN BUSINESS AND INDUSTRY","1524-1904","1526-4025","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","1,274","1.3","('Q3', 'Q4', 'Q2')","0.45","28.48" +"CANADIAN JOURNAL OF ECONOMICS-REVUE CANADIENNE D ECONOMIQUE","0008-4085","1540-5982","ECONOMICS","('SSCI',)","2,249","1.3","Q3","0.45","18.00" +"CELLULOSE CHEMISTRY AND TECHNOLOGY","0576-9787","0576-9787","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","1,598","1.3","Q2","0.45","66.00" +"Diabetology International","2190-1678","2190-1686","ENDOCRINOLOGY & METABOLISM","('ESCI',)","730","1.3","Q4","0.45","1.68" +"DISCRETE DYNAMICS IN NATURE AND SOCIETY","1026-0226","1607-887X","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MULTIDISCIPLINARY SCIENCES')","('SCIE', 'SCIE')","3,789","1.3","('Q3', 'Q2')","0.45","99.42" +"Drugs Habits and Social Policy","2752-6739","2752-6747","SUBSTANCE ABUSE","('ESCI',)","47","1.3","Q4","0.45","18.18" +"JAPAN AND THE WORLD ECONOMY","0922-1425","1879-2006","ECONOMICS","('SSCI',)","687","1.3","Q3","0.45","27.50" +"JAPANESE JOURNAL OF INFECTIOUS DISEASES","1344-6304","1884-2836","INFECTIOUS DISEASES","('SCIE',)","1,890","1.3","Q4","0.45","85.04" +"Journal of Accounting Auditing and Finance","0148-558X","2160-4061","BUSINESS, FINANCE","('ESCI',)","1,482","1.3","Q3","0.45","6.94" +"JOURNAL OF PEDIATRIC ENDOCRINOLOGY & METABOLISM","0334-018X","2191-0251","('ENDOCRINOLOGY & METABOLISM', 'PEDIATRICS')","('SCIE', 'SCIE')","3,890","1.3","('Q4', 'Q3')","0.45","7.58" +"JOURNAL OF PHARMACOLOGICAL AND TOXICOLOGICAL METHODS","1056-8719","1873-488X","('PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE')","2,381","1.3","('Q4', 'Q4')","0.45","33.57" +"Journal of Simulation","1747-7778","1747-7786","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","728","1.3","('Q4', 'Q4')","0.45","19.35" +"METHODS OF INFORMATION IN MEDICINE","0026-1270","2511-705X","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'HEALTH CARE SCIENCES & SERVICES', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE', 'SCIE')","1,477","1.3","('Q3', 'Q4', 'Q4')","0.45","48.42" +"PHASE TRANSITIONS","0141-1594","1029-0338","('CRYSTALLOGRAPHY', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","2,058","1.3","('Q3', 'Q4')","0.45","0.88" +"Acta Psychologica Sinica","0439-755X","","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","2,217","1.3","Q3","0.44","2.82" +"Agricultural and Resource Economics Review","1068-2805","2372-2614","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","730","1.3","Q3","0.44","100.00" +"Biomedical Physics & Engineering Express","2057-1976","2057-1976","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,692","1.3","Q3","0.44","21.48" +"EUROPEAN REVIEW OF APPLIED PSYCHOLOGY-REVUE EUROPEENNE DE PSYCHOLOGIE APPLIQUEE","1162-9088","1162-9088","PSYCHOLOGY, APPLIED","('SSCI',)","816","1.3","Q3","0.44","31.00" +"LAND ECONOMICS","0023-7639","1543-8325","('ECONOMICS', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","2,940","1.3","('Q3', 'Q4')","0.44","12.90" +"WEED TECHNOLOGY","0890-037X","1550-2740","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","3,970","1.3","('Q3', 'Q3')","0.44","52.60" +"Agrosystems Geosciences & Environment","","2639-6696","AGRONOMY","('ESCI',)","612","1.3","Q3","0.43","92.66" +"CIN-COMPUTERS INFORMATICS NURSING","1538-2931","1538-9774","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MEDICAL INFORMATICS', 'NURSING')","('SCIE', 'SCIE', 'SCIE, SSCI')","1,612","1.3","('Q4', 'Q4', 'Q3')","0.43","9.42" +"Cognitive and Behavioral Neurology","1543-3633","1543-3641","('BEHAVIORAL SCIENCES', 'CLINICAL NEUROLOGY')","('SCIE', 'SCIE')","854","1.3","('Q4', 'Q4')","0.43","3.80" +"European Journal of Rheumatology","2147-9720","2148-4279","RHEUMATOLOGY","('ESCI',)","914","1.3","Q4","0.43","98.06" +"International Journal of Forensic Mental Health","1499-9013","1932-9903","('CRIMINOLOGY & PENOLOGY', 'PSYCHIATRY')","('SSCI', 'SSCI')","759","1.3","('Q3', 'Q3')","0.43","18.48" +"JOURNAL OF BIOLOGICAL SYSTEMS","0218-3390","1793-6470","('BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","605","1.3","('Q3', 'Q4')","0.43","1.59" +"Journal of Theoretical and Computational Acoustics","2591-7285","2591-7811","('ACOUSTICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","205","1.3","('Q3', 'Q3')","0.43","30.53" +"Journal of Unmanned Vehicle Systems","2291-3467","2291-3467","REMOTE SENSING","('ESCI',)","427","1.3","Q3","0.43","31.25" +"PhytoKeys","1314-2011","1314-2003","PLANT SCIENCES","('SCIE',)","1,601","1.3","Q3","0.43","98.02" +"SCANDINAVIAN JOURNAL OF ECONOMICS","0347-0520","1467-9442","ECONOMICS","('SSCI',)","2,203","1.3","Q3","0.43","53.85" +"ACTA OECOLOGICA-INTERNATIONAL JOURNAL OF ECOLOGY","1146-609X","1873-6238","ECOLOGY","('SCIE',)","3,123","1.3","Q3","0.42","13.50" +"Acta Technologica Agriculturae","1335-2555","1338-5267","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","199","1.3","Q2","0.42","100.00" +"British Journal of Pain","2049-4637","2049-4645","CLINICAL NEUROLOGY","('ESCI',)","842","1.3","Q4","0.42","42.07" +"Frontiers in Applied Mathematics and Statistics","","2297-4687","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","693","1.3","Q3","0.42","99.44" +"International Trade Journal","0885-3908","1521-0545","ECONOMICS","('ESCI',)","363","1.3","Q3","0.42","4.65" +"Jornal Brasileiro de Nefrologia","0101-2800","2175-8239","UROLOGY & NEPHROLOGY","('ESCI',)","828","1.3","Q3","0.42","85.52" +"Journal of Cultural Cognitive Science","2520-100X","2520-1018","PSYCHOLOGY, EXPERIMENTAL","('ESCI',)","166","1.3","Q4","0.42","36.51" +"JOURNAL OF MACROECONOMICS","0164-0704","1873-152X","ECONOMICS","('SSCI',)","2,019","1.3","Q3","0.42","9.73" +"JOURNAL OF MATHEMATICAL SOCIOLOGY","0022-250X","1545-5874","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'SOCIOLOGY')","('SCIE', 'SSCI', 'SSCI')","1,235","1.3","('Q3', 'Q3', 'Q3')","0.42","36.67" +"JOURNAL OF PALLIATIVE CARE","0825-8597","2369-5293","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SSCI')","1,179","1.3","('Q4', 'Q4', 'Q4')","0.42","19.41" +"JOURNAL OF SHELLFISH RESEARCH","0730-8000","1943-6319","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","3,025","1.3","('Q3', 'Q3')","0.42","0.00" +"MICROGRAVITY SCIENCE AND TECHNOLOGY","0938-0108","1875-0494","('ENGINEERING, AEROSPACE', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","1,413","1.3","('Q2', 'Q3', 'Q3')","0.42","10.04" +"NUCLEAR MEDICINE COMMUNICATIONS","0143-3636","1473-5628","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","2,834","1.3","Q3","0.42","13.60" +"QME-Quantitative Marketing and Economics","1570-7156","1573-711X","('BUSINESS', 'ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI', 'SSCI')","580","1.3","('Q3', 'Q3', 'Q3')","0.42","28.21" +"Saudi Journal of Medicine & Medical Sciences","1658-631X","2321-4856","MEDICINE, GENERAL & INTERNAL","('ESCI',)","400","1.3","Q2","0.42","86.07" +"SPE DRILLING & COMPLETION","1064-6671","1930-0204","ENGINEERING, PETROLEUM","('SCIE',)","1,425","1.3","Q3","0.42","0.68" +"XENOBIOTICA","0049-8254","1366-5928","('PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE')","3,444","1.3","('Q4', 'Q4')","0.42","9.52" +"Brain Hemorrhages","","2589-238X","CLINICAL NEUROLOGY","('ESCI',)","172","1.3","Q4","0.41","90.70" +"CANADIAN JOURNAL OF SOCIOLOGY-CAHIERS CANADIENS DE SOCIOLOGIE","0318-6431","0318-6431","SOCIOLOGY","('SSCI',)","502","1.3","Q3","0.41","0.00" +"CHEMISTRY AND ECOLOGY","0275-7540","1029-0370","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","1,476","1.3","('Q3', 'Q4')","0.41","0.00" +"COMMUNICATIONS IN SOIL SCIENCE AND PLANT ANALYSIS","0010-3624","1532-2416","('AGRONOMY', 'CHEMISTRY, ANALYTICAL', 'PLANT SCIENCES', 'SOIL SCIENCE')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","8,525","1.3","('Q3', 'Q4', 'Q3', 'Q4')","0.41","1.57" +"Current Reviews in Clinical and Experimental Pharmacology","2772-4328","2772-4336","PHARMACOLOGY & PHARMACY","('ESCI',)","107","1.3","Q4","0.41","4.55" +"EASTERN EUROPEAN ECONOMICS","0012-8775","1557-9298","ECONOMICS","('SSCI',)","511","1.3","Q3","0.41","13.16" +"International Finance","1367-0271","1468-2362","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","413","1.3","('Q3', 'Q3')","0.41","6.00" +"Journal of Earth System Science","2347-4327","0973-774X","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","4,060","1.3","Q3","0.41","0.58" +"Journal of European Real Estate Research","1753-9269","1753-9269","BUSINESS, FINANCE","('ESCI',)","280","1.3","Q3","0.41","26.67" +"JOURNAL OF FRESHWATER ECOLOGY","0270-5060","2156-6941","('ECOLOGY', 'LIMNOLOGY')","('SCIE', 'SCIE')","1,176","1.3","('Q3', 'Q3')","0.41","98.00" +"Mental Health Religion & Culture","1367-4676","1469-9737","PSYCHIATRY","('ESCI',)","1,636","1.3","Q3","0.41","19.25" +"Metabolic Syndrome and Related Disorders","1540-4196","1557-8518","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","2,129","1.3","Q4","0.41","2.44" +"Public Health Genomics","1662-4246","1662-8063","('GENETICS & HEREDITY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE, SSCI')","749","1.3","('Q4', 'Q4')","0.41","77.08" +"SCANDINAVIAN JOURNAL OF CLINICAL & LABORATORY INVESTIGATION","0036-5513","1502-7686","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","3,460","1.3","Q4","0.41","22.22" +"SCOTTISH GEOGRAPHICAL JOURNAL","1470-2541","1751-665X","GEOGRAPHY","('SSCI',)","570","1.3","Q2","0.41","59.46" +"COMPTES RENDUS PHYSIQUE","1631-0705","1878-1535","('ASTRONOMY & ASTROPHYSICS', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,374","1.3","('Q3', 'Q3')","0.40","97.33" +"CONGENITAL ANOMALIES","0914-3505","1741-4520","PEDIATRICS","('SCIE',)","690","1.3","Q3","0.40","13.75" +"Culture Agriculture Food and Environment","2153-9553","2153-9561","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","178","1.3","Q3","0.40","21.21" +"EVENT MANAGEMENT","1525-9951","1943-4308","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,110","1.3","Q3","0.40","12.45" +"GEOTECHNICAL TESTING JOURNAL","0149-6115","1945-7545","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","3,530","1.3","('Q3', 'Q3')","0.40","0.00" +"International Journal of Circumpolar Health","1239-9736","2242-3982","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","1,518","1.3","Q4","0.40","99.11" +"International Journal of Turbomachinery Propulsion and Power","","2504-186X","('ENGINEERING, AEROSPACE', 'ENGINEERING, MECHANICAL')","('ESCI', 'ESCI')","282","1.3","('Q2', 'Q3')","0.40","99.25" +"International Wood Products Journal","2042-6445","2042-6453","MATERIALS SCIENCE, PAPER & WOOD","('ESCI',)","362","1.3","Q2","0.40","13.04" +"Journal of Banking Regulation","1745-6452","1750-2071","BUSINESS, FINANCE","('ESCI',)","321","1.3","Q3","0.40","23.60" +"Journal of the American College of Clinical Pharmacy","","2574-9870","PHARMACOLOGY & PHARMACY","('ESCI',)","880","1.3","Q4","0.40","13.86" +"Phytochemistry Letters","1874-3900","1876-7486","('CHEMISTRY, MEDICINAL', 'PLANT SCIENCES')","('SCIE', 'SCIE')","3,626","1.3","('Q4', 'Q3')","0.40","4.32" +"Proceedings of the Institution of Civil Engineers-Management Procurement and Law","1751-4304","1751-4312","MANAGEMENT","('ESCI',)","238","1.3","Q3","0.40","1.67" +"ROFO-FORTSCHRITTE AUF DEM GEBIET DER RONTGENSTRAHLEN UND DER BILDGEBENDEN VERFAHREN","1438-9029","1438-9010","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,792","1.3","Q3","0.40","3.88" +"Art Therapy","0742-1656","2159-9394","PSYCHOLOGY, CLINICAL","('ESCI',)","920","1.3","Q3","0.39","7.78" +"Computational Management Science","1619-697X","1619-6988","SOCIAL SCIENCES, MATHEMATICAL METHODS","('ESCI',)","667","1.3","Q3","0.39","58.51" +"FLUID DYNAMICS RESEARCH","0169-5983","1873-7005","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE')","1,623","1.3","('Q3', 'Q3')","0.39","10.17" +"GENETICA","0016-6707","1573-6857","GENETICS & HEREDITY","('SCIE',)","2,381","1.3","Q4","0.39","8.79" +"Indian Journal of Urology","0970-1591","1998-3824","UROLOGY & NEPHROLOGY","('ESCI',)","1,127","1.3","Q3","0.39","95.31" +"Journal of Financial Economic Policy","1757-6385","1757-6393","ECONOMICS","('ESCI',)","633","1.3","Q3","0.39","2.80" +"PHYTON-INTERNATIONAL JOURNAL OF EXPERIMENTAL BOTANY","0031-9457","1851-5657","PLANT SCIENCES","('SCIE',)","929","1.3","Q3","0.39","99.41" +"Acta Geographica Slovenica-Geografski Zbornik","1581-6613","1854-5106","GEOGRAPHY, PHYSICAL","('SCIE',)","288","1.3","Q3","0.38","98.46" +"Bioinspired Biomimetic and Nanobiomaterials","2045-9858","2045-9866","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","244","1.3","('Q4', 'Q4')","0.38","7.84" +"Community Development","1557-5330","1944-7485","DEVELOPMENT STUDIES","('ESCI',)","967","1.3","Q3","0.38","8.16" +"GENERAL PHYSIOLOGY AND BIOPHYSICS","0231-5882","1338-4325","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,048","1.3","('Q4', 'Q4', 'Q4')","0.38","98.64" +"INSTRUMENTATION SCIENCE & TECHNOLOGY","1073-9149","1525-6030","('CHEMISTRY, ANALYTICAL', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","720","1.3","('Q4', 'Q3')","0.38","3.25" +"International Journal of Innovation Management","1363-9196","1757-5877","MANAGEMENT","('ESCI',)","2,354","1.3","Q3","0.38","5.60" +"Israel Journal of Ecology & Evolution","1565-9801","2224-4662","('ECOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE')","337","1.3","('Q3', 'Q4')","0.38","0.00" +"OIL SHALE","0208-189X","1736-7492","('ENERGY & FUELS', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE')","632","1.3","('Q4', 'Q3')","0.38","98.11" +"Proceedings of the Institution of Civil Engineers-Construction Materials","1747-650X","1747-6518","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","509","1.3","Q3","0.38","1.22" +"Quantum Beam Science","","2412-382X","('INSTRUMENTS & INSTRUMENTATION', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'QUANTUM SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","246","1.3","('Q3', 'Q3', 'Q4')","0.38","99.00" +"Sao Paulo Medical Journal","1516-3180","","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,469","1.3","Q2","0.38","90.59" +"Saudi Journal of Anaesthesia","1658-354X","0975-3125","ANESTHESIOLOGY","('ESCI',)","2,148","1.3","Q3","0.38","99.20" +"Advances in Applied Ceramics","1743-6753","1743-6761","MATERIALS SCIENCE, CERAMICS","('SCIE',)","1,584","1.3","Q3","0.37","4.21" +"Clinical Journal of Oncology Nursing","1092-1095","1538-067X","('NURSING', 'ONCOLOGY')","('SCIE, SSCI', 'SCIE')","1,846","1.3","('Q3', 'Q4')","0.37","2.20" +"Development Southern Africa","0376-835X","1470-3637","DEVELOPMENT STUDIES","('SSCI',)","1,411","1.3","Q3","0.37","10.17" +"IETE JOURNAL OF RESEARCH","0377-2063","0974-780X","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","2,805","1.3","('Q3', 'Q4')","0.37","0.07" +"JOURNAL OF SHIP RESEARCH","0022-4502","1542-0604","('ENGINEERING, CIVIL', 'ENGINEERING, MARINE')","('SCIE', 'SCIE')","1,103","1.3","('Q3', 'Q3')","0.37","0.00" +"Quarterly Journal of Engineering Geology and Hydrogeology","1470-9236","2041-4803","('ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,417","1.3","('Q3', 'Q3')","0.37","17.32" +"Arab Journal of Urology","2090-598X","2090-5998","UROLOGY & NEPHROLOGY","('ESCI',)","988","1.3","Q3","0.36","100.00" +"Coupled Systems Mechanics","2234-2184","2234-2192","MECHANICS","('ESCI',)","260","1.3","Q3","0.36","0.00" +"ECOSCIENCE","1195-6860","2376-7626","ECOLOGY","('SCIE',)","1,654","1.3","Q3","0.36","19.70" +"ETRI JOURNAL","1225-6463","2233-7326","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","1,134","1.3","('Q3', 'Q4')","0.36","68.58" +"JOURNAL OF ASIAN NATURAL PRODUCTS RESEARCH","1028-6020","1477-2213","('CHEMISTRY, APPLIED', 'CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY', 'PLANT SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","3,184","1.3","('Q3', 'Q4', 'Q4', 'Q3')","0.36","0.30" +"Journal of International Commerce Economics and Policy","1793-9933","1793-9941","ECONOMICS","('ESCI',)","219","1.3","Q3","0.36","1.69" +"Library Management","0143-5124","1758-7921","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","624","1.3","Q2","0.36","6.96" +"New Zealand Geographer","0028-8144","1745-7939","GEOGRAPHY","('SSCI',)","331","1.3","Q2","0.36","56.86" +"REFERENCE SERVICES REVIEW","0090-7324","2054-1716","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","484","1.3","Q2","0.36","2.67" +"REVIEW OF SCIENTIFIC INSTRUMENTS","0034-6748","1089-7623","('INSTRUMENTS & INSTRUMENTATION', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","31,953","1.3","('Q3', 'Q4')","0.36","24.62" +"SIMULATION-TRANSACTIONS OF THE SOCIETY FOR MODELING AND SIMULATION INTERNATIONAL","0037-5497","1741-3133","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","1,614","1.3","('Q4', 'Q3')","0.36","11.43" +"Australian Journal of Mechanical Engineering","1448-4846","2204-2253","ENGINEERING, MECHANICAL","('ESCI',)","835","1.3","Q3","0.35","1.06" +"CANADIAN JOURNAL OF EARTH SCIENCES","0008-4077","1480-3313","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","5,713","1.3","Q3","0.35","20.78" +"GENES TO CELLS","1356-9597","1365-2443","('CELL BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","3,503","1.3","('Q4', 'Q4')","0.35","13.49" +"INTERNATIONAL JOURNAL OF THEORETICAL PHYSICS","0020-7748","1572-9575","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","6,428","1.3","Q3","0.35","4.69" +"Journal of Electrocardiology","0022-0736","1532-8430","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","3,109","1.3","Q3","0.35","18.42" +"Journal of Medical Imaging and Radiation Sciences","1939-8654","1939-8654","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","986","1.3","Q3","0.35","9.54" +"Mathematical Foundations of Computing","","2577-8838","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","227","1.3","Q3","0.35","98.16" +"MEDICINE","0025-7974","1536-5964","MEDICINE, GENERAL & INTERNAL","('SCIE',)","59,749","1.3","Q2","0.35","99.42" +"PERIODICA POLYTECHNICA-MECHANICAL ENGINEERING","0324-6051","1587-379X","ENGINEERING, MECHANICAL","('ESCI',)","338","1.3","Q3","0.35","94.40" +"Romanian Journal of Communication and Public Relations","1454-8100","2344-5440","COMMUNICATION","('ESCI',)","84","1.3","Q2","0.35","0.00" +"Crop Breeding and Applied Biotechnology","1984-7033","1518-7853","('AGRONOMY', 'BIOTECHNOLOGY & APPLIED MICROBIOLOGY')","('SCIE', 'SCIE')","994","1.3","('Q3', 'Q4')","0.34","85.62" +"Journal of Psychiatric Practice","1527-4160","1538-1145","PSYCHIATRY","('SCIE',)","1,267","1.3","Q3","0.34","3.42" +"JOURNAL OF THE AMERICAN SOCIETY OF BREWING CHEMISTS","0361-0470","1943-7854","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","1,218","1.3","('Q4', 'Q4')","0.34","26.52" +"Metallography Microstructure and Analysis","2192-9262","2192-9270","METALLURGY & METALLURGICAL ENGINEERING","('ESCI',)","1,047","1.3","Q3","0.34","7.56" +"Molecular Cytogenetics","","1755-8166","GENETICS & HEREDITY","('SCIE',)","839","1.3","Q4","0.34","100.00" +"OCEANOLOGY","0001-4370","1531-8508","OCEANOGRAPHY","('SCIE',)","1,724","1.3","Q4","0.34","3.87" +"THEORY IN BIOSCIENCES","1431-7613","1611-7530","('BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","640","1.3","('Q3', 'Q4')","0.34","36.36" +"Egyptian Journal of Botany","0375-9237","2357-0350","PLANT SCIENCES","('ESCI',)","530","1.3","Q3","0.33","0.00" +"Emerging Materials Research","2046-0147","2046-0155","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","674","1.3","Q4","0.33","0.00" +"IEEE Latin America Transactions","1548-0992","1548-0992","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","1,929","1.3","('Q3', 'Q3')","0.33","0.18" +"International Journal of E-Health and Medical Communications","1947-315X","1947-3168","MEDICAL INFORMATICS","('ESCI',)","171","1.3","Q4","0.33","98.53" +"International Journal of Production Management and Engineering","2340-5317","2340-4876","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","118","1.3","Q3","0.33","95.65" +"Journal of Power Electronics","1598-2092","2093-4718","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","1,602","1.3","Q3","0.33","0.93" +"JOURNAL OF RESEARCH OF THE NATIONAL INSTITUTE OF STANDARDS AND TECHNOLOGY","1044-677X","2165-7254","('INSTRUMENTS & INSTRUMENTATION', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","1,785","1.3","('Q3', 'Q4')","0.33","89.09" +"MEASUREMENT & CONTROL","0020-2940","2051-8730","('AUTOMATION & CONTROL SYSTEMS', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","1,444","1.3","('Q4', 'Q3')","0.33","91.97" +"Medizinische Klinik-Intensivmedizin und Notfallmedizin","2193-6218","2193-6226","MEDICINE, GENERAL & INTERNAL","('SCIE',)","591","1.3","Q2","0.33","34.63" +"Nuclear Medicine and Molecular Imaging","1869-3474","1869-3482","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","875","1.3","Q3","0.33","5.93" +"REVISTA CHILENA DE HISTORIA NATURAL","0716-078X","0717-6317","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","1,232","1.3","('Q3', 'Q3')","0.33","100.00" +"ACTA GASTRO-ENTEROLOGICA BELGICA","1784-3227","1784-3227","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","876","1.3","Q4","0.32","0.00" +"Biomedical Engineering-Biomedizinische Technik","0013-5585","1862-278X","('ENGINEERING, BIOMEDICAL', 'MEDICAL INFORMATICS')","('SCIE', 'SCIE')","1,321","1.3","('Q4', 'Q4')","0.32","10.06" +"Brazilian Journal of Geology","2317-4889","2317-4692","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","749","1.3","Q3","0.32","90.32" +"IET Information Security","1751-8709","1751-8717","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","700","1.3","('Q3', 'Q3')","0.32","82.64" +"IET Networks","2047-4954","2047-4962","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","409","1.3","Q3","0.32","76.60" +"Invasive Plant Science and Management","1939-7291","1939-747X","PLANT SCIENCES","('SCIE',)","837","1.3","Q3","0.32","53.75" +"Journal of Gambling Issues","1910-7595","1910-7595","SUBSTANCE ABUSE","('ESCI',)","374","1.3","Q4","0.32","72.58" +"Lung India","0970-2113","0974-598X","RESPIRATORY SYSTEM","('ESCI',)","1,477","1.3","Q4","0.32","99.61" +"Ochsner Journal","1524-5012","2831-4107","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,650","1.3","Q2","0.32","99.47" +"Public Health Action","2220-8372","2220-8372","RESPIRATORY SYSTEM","('ESCI',)","509","1.3","Q4","0.32","100.00" +"STAR Protocols","2666-1667","2666-1667","BIOCHEMICAL RESEARCH METHODS","('ESCI',)","2,969","1.3","Q4","0.32","92.64" +"TURKISH JOURNAL OF EARTH SCIENCES","1300-0985","1300-0985","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","1,151","1.3","Q3","0.32","0.00" +"WEED BIOLOGY AND MANAGEMENT","1444-6162","1445-6664","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","617","1.3","('Q3', 'Q3')","0.32","7.69" +"ACTA MICROBIOLOGICA ET IMMUNOLOGICA HUNGARICA","1217-8950","1588-2640","('IMMUNOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","701","1.3","('Q4', 'Q4')","0.31","13.33" +"ANNALS OF AGRICULTURAL AND ENVIRONMENTAL MEDICINE","1232-1966","1898-2263","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","2,703","1.3","('Q4', 'Q4')","0.31","100.00" +"CANADIAN METALLURGICAL QUARTERLY","0008-4433","1879-1395","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","1,721","1.3","Q3","0.31","2.17" +"Chinese Optics","2097-1842","2097-1842","OPTICS","('ESCI',)","766","1.3","Q3","0.31","0.00" +"Data Science in Finance and Economics","","2769-2140","('BUSINESS, FINANCE', 'ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('ESCI', 'ESCI', 'ESCI')","66","1.3","('Q3', 'Q3', 'Q3')","0.31","100.00" +"European Journal of Breast Health","","2587-0831","ONCOLOGY","('ESCI',)","477","1.3","Q4","0.31","100.00" +"International Arab Journal of Information Technology","1683-3198","1683-3198","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","882","1.3","('Q4', 'Q3', 'Q3')","0.31","68.65" +"Journal of Aquatic Food Product Technology","1049-8850","1547-0636","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,599","1.3","Q4","0.31","4.64" +"Journal of Instrumentation","1748-0221","1748-0221","INSTRUMENTS & INSTRUMENTATION","('SCIE',)","11,010","1.3","Q3","0.31","23.00" +"Journal of Project Management","2371-8366","2371-8374","('ENGINEERING, INDUSTRIAL', 'MANAGEMENT')","('ESCI', 'ESCI')","201","1.3","('Q4', 'Q3')","0.31","89.04" +"Neuroradiology Journal","1971-4009","2385-1996","NEUROIMAGING","('ESCI',)","1,401","1.3","Q4","0.31","10.34" +"RAUSP Management Journal","2531-0488","2531-0488","('BUSINESS', 'MANAGEMENT')","('ESCI', 'ESCI')","373","1.3","('Q3', 'Q3')","0.31","92.65" +"SPIN","2010-3247","2010-3255","PHYSICS, APPLIED","('SCIE',)","390","1.3","Q4","0.31","0.76" +"TRANSPORTATION PLANNING AND TECHNOLOGY","0308-1060","1029-0354","TRANSPORTATION SCIENCE & TECHNOLOGY","('SCIE',)","1,183","1.3","Q3","0.31","14.00" +"ACI STRUCTURAL JOURNAL","0889-3241","1944-7361","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","8,086","1.3","('Q3', 'Q3', 'Q4')","0.30","0.00" +"American Heart Journal Plus: Cardiology Research and Practice","","2666-6022","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","299","1.3","Q3","0.30","95.64" +"Analisi-Quaderns de Comunicacio i Cultura","0211-2175","2340-5236","COMMUNICATION","('ESCI',)","156","1.3","Q2","0.30","98.04" +"Physicochemical Problems of Mineral Processing","1643-1049","2084-4735","('CHEMISTRY, PHYSICAL', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE')","1,375","1.3","('Q4', 'Q3')","0.30","98.84" +"Separation Science Plus","2573-1815","2573-1815","CHEMISTRY, ANALYTICAL","('ESCI',)","367","1.3","Q4","0.30","3.83" +"Acta Scientiarum Polonorum-Technologia Alimentaria","1644-0730","1898-9594","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","980","1.3","Q4","0.29","91.67" +"Environment and Urbanization ASIA","0975-4253","0976-3546","ENVIRONMENTAL STUDIES","('ESCI',)","336","1.3","Q4","0.29","2.70" +"International Journal of Engineering and Technology Innovation","2223-5329","2226-809X","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","202","1.3","Q3","0.29","86.81" +"Journal of Engineering Thermophysics","1810-2328","1990-5432","('ENGINEERING, MECHANICAL', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","581","1.3","('Q3', 'Q3', 'Q3')","0.29","0.00" +"Journal of Hematology","1927-1212","1927-1220","HEMATOLOGY","('ESCI',)","253","1.3","Q4","0.29","85.71" +"Journal of Ultrasonography","2084-8404","2451-070X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","484","1.3","Q3","0.29","100.00" +"PHYSICA C-SUPERCONDUCTIVITY AND ITS APPLICATIONS","0921-4534","1873-2143","('PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","4,838","1.3","('Q4', 'Q4')","0.29","14.04" +"Alpha Psychiatry","","2757-8038","PSYCHIATRY","('SCIE',)","133","1.3","Q3","0.28","0.00" +"BIOMEDICAL RESEARCH-TOKYO","0388-6107","1880-313X","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","956","1.3","Q4","0.28","100.00" +"DISTRIBUTED COMPUTING","0178-2770","1432-0452","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","749","1.3","Q3","0.28","42.86" +"INTERNATIONAL JOURNAL OF CAST METALS RESEARCH","1364-0461","1743-1336","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","942","1.3","Q3","0.28","1.54" +"International Journal of Networked and Distributed Computing","2211-7938","2211-7946","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","73","1.3","Q3","0.28","84.00" +"MICROBIOLOGY","0026-2617","1608-3237","MICROBIOLOGY","('SCIE',)","2,438","1.3","Q4","0.28","4.64" +"Nutrition and Dietary Supplements","1179-1489","1179-1489","NUTRITION & DIETETICS","('ESCI',)","169","1.3","Q4","0.28","96.00" +"OPTO-ELECTRONICS REVIEW","1230-3402","1896-3757","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","896","1.3","('Q3', 'Q3', 'Q4')","0.28","9.52" +"WIND AND STRUCTURES","1226-6116","1598-6225","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","1,377","1.3","('Q3', 'Q3', 'Q3')","0.28","0.00" +"Academia-Revista Latinoamericana de Administracion","1012-8255","2056-5127","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","396","1.3","('Q3', 'Q3')","0.27","8.75" +"African Journal of Science Technology Innovation & Development","2042-1338","2042-1346","MULTIDISCIPLINARY SCIENCES","('ESCI',)","966","1.3","Q2","0.27","5.91" +"CELLULAR POLYMERS","0262-4893","1478-2421","('MATERIALS SCIENCE, BIOMATERIALS', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","332","1.3","('Q4', 'Q4')","0.27","8.11" +"Computer Methods in Biomechanics and Biomedical Engineering-Imaging and Visualization","2168-1163","2168-1171","ENGINEERING, BIOMEDICAL","('ESCI',)","830","1.3","Q4","0.27","10.60" +"Frontiers in Future Transportation","","2673-5210","('TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","98","1.3","('Q4', 'Q3')","0.27","100.00" +"Iranian Journal of Public Health","2251-6085","2251-6093","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","4,007","1.3","Q4","0.27","57.98" +"Journal of Nucleic Acids","2090-0201","2090-021X","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","481","1.3","Q4","0.27","100.00" +"Journal of Smoking Cessation","","1834-2612","SUBSTANCE ABUSE","('ESCI',)","213","1.3","Q4","0.27","97.96" +"PETROLEUM SCIENCE AND TECHNOLOGY","1091-6466","1532-2459","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE', 'SCIE')","4,200","1.3","('Q4', 'Q3', 'Q3')","0.27","0.31" +"CCF Transactions on High Performance Computing","2524-4922","2524-4930","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, THEORY & METHODS')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","153","1.3","('Q4', 'Q3', 'Q4', 'Q3')","0.26","4.63" +"Computational Thermal Sciences","1940-2503","1940-2554","THERMODYNAMICS","('ESCI',)","324","1.3","Q3","0.26","0.00" +"Environmental Health Engineering and Management Journal","2423-3765","2423-4311","ENVIRONMENTAL SCIENCES","('ESCI',)","365","1.3","Q4","0.26","97.60" +"International Journal of Agricultural and Environmental Information Systems","1947-3192","1947-3206","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","132","1.3","Q4","0.26","93.94" +"JOURNAL OF THE CERAMIC SOCIETY OF JAPAN","1882-0743","1348-6535","MATERIALS SCIENCE, CERAMICS","('SCIE',)","3,279","1.3","Q3","0.26","99.00" +"ASIA PACIFIC JOURNAL OF CLINICAL NUTRITION","0964-7058","1440-6047","NUTRITION & DIETETICS","('SCIE',)","3,509","1.3","Q4","0.25","0.00" +"Astrophysical Bulletin","1990-3413","1990-3421","ASTRONOMY & ASTROPHYSICS","('SCIE',)","557","1.3","Q3","0.25","0.00" +"Hospitality & Society","2042-7913","2042-7921","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","215","1.3","Q3","0.25","5.71" +"International Journal of Knowledge Management Studies","1743-8268","1743-8276","MANAGEMENT","('ESCI',)","187","1.3","Q3","0.25","0.00" +"Iranian Journal of Microbiology","2008-3289","2008-4447","MICROBIOLOGY","('ESCI',)","1,264","1.3","Q4","0.25","79.81" +"MAIN GROUP CHEMISTRY","1024-1221","1745-1167","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","414","1.3","Q3","0.25","0.54" +"SOMATOSENSORY AND MOTOR RESEARCH","0899-0220","1369-1651","NEUROSCIENCES","('SCIE',)","873","1.3","Q4","0.25","2.88" +"Transport","1648-4142","1648-3480","TRANSPORTATION SCIENCE & TECHNOLOGY","('SCIE',)","1,009","1.3","Q3","0.25","97.73" +"Water Conservation Science and Engineering","2366-3340","2364-5687","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'WATER RESOURCES')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","405","1.3","('Q4', 'Q4', 'Q4', 'Q4')","0.25","6.15" +"Journal of Medical Signals & Sensors","2228-7477","2228-7477","ENGINEERING, BIOMEDICAL","('ESCI',)","480","1.3","Q4","0.24","66.04" +"Medical Devices-Evidence and Research","1179-1470","1179-1470","ENGINEERING, BIOMEDICAL","('ESCI',)","1,015","1.3","Q4","0.24","99.01" +"PETROLEUM CHEMISTRY","0965-5441","1555-6239","('CHEMISTRY, ORGANIC', 'CHEMISTRY, PHYSICAL', 'ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","1,794","1.3","('Q3', 'Q4', 'Q4', 'Q3', 'Q3')","0.24","13.28" +"Archives and Manuscripts","0157-6895","2164-6058","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","168","1.3","Q2","0.23","79.31" +"BULLETIN OF THE CHEMICAL SOCIETY OF ETHIOPIA","1011-3924","1726-801X","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","997","1.3","Q3","0.23","98.01" +"Current Radiology Reports","","2167-4825","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","289","1.3","Q3","0.23","41.30" +"Foods and Raw Materials","2308-4057","2310-9599","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","283","1.3","Q4","0.23","98.29" +"Frontiers in Signal Processing","","2673-8198","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","113","1.3","Q3","0.23","100.00" +"Journal of Nonprofit & Public Sector Marketing","1049-5142","1540-6997","BUSINESS","('ESCI',)","643","1.3","Q3","0.23","13.04" +"ANTIVIRAL THERAPY","1359-6535","2040-2058","('INFECTIOUS DISEASES', 'PHARMACOLOGY & PHARMACY', 'VIROLOGY')","('SCIE', 'SCIE', 'SCIE')","1,736","1.3","('Q4', 'Q4', 'Q4')","0.22","61.84" +"Bulletin of Chemical Reaction Engineering and Catalysis","1978-2993","1978-2993","ENGINEERING, CHEMICAL","('ESCI',)","740","1.3","Q3","0.22","98.60" +"International Journal of Automation and Control","1740-7516","1740-7524","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","325","1.3","Q4","0.22","0.00" +"JOURNAL OF THE BRAZILIAN CHEMICAL SOCIETY","0103-5053","1678-4790","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","5,855","1.3","Q3","0.22","98.52" +"Pigment & Resin Technology","0369-9420","1758-6941","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, COATINGS & FILMS')","('SCIE', 'SCIE', 'SCIE')","1,053","1.3","('Q3', 'Q3', 'Q4')","0.22","0.34" +"International Journal of Electrochemical Science","1452-3981","1452-3981","ELECTROCHEMISTRY","('SCIE',)","12,942","1.3","Q4","0.21","95.73" +"INTERNATIONAL JOURNAL OF INTERNET MARKETING AND ADVERTISING","1477-5212","1741-8100","BUSINESS","('ESCI',)","290","1.3","Q3","0.21","0.00" +"JOURNAL OF WUHAN UNIVERSITY OF TECHNOLOGY-MATERIALS SCIENCE EDITION","1000-2413","1993-0437","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","3,513","1.3","Q4","0.21","0.00" +"NIHON REOROJI GAKKAISHI","0387-1533","0387-1533","('MECHANICS', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","301","1.3","('Q3', 'Q4')","0.21","98.08" +"International Journal of Innovative Computing Information and Control","1349-4198","1349-418X","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","1,309","1.3","Q4","0.20","0.00" +"Journal of Developmental Entrepreneurship","1084-9467","1793-706X","BUSINESS","('ESCI',)","737","1.3","Q3","0.20","0.00" +"TURKISH JOURNAL OF CHEMISTRY","1300-0527","1300-0527","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","2,035","1.3","('Q3', 'Q3')","0.20","0.64" +"Emission Control Science and Technology","2199-3629","2199-3637","('ENGINEERING, CHEMICAL', 'ENGINEERING, ENVIRONMENTAL')","('ESCI', 'ESCI')","367","1.3","('Q3', 'Q4')","0.19","31.58" +"Functional Foods in Health and Disease","2160-3855","2160-3855","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","612","1.3","Q4","0.19","84.35" +"Industrial Biotechnology","1550-9087","1931-8421","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('ESCI',)","729","1.3","Q4","0.19","0.85" +"Appeal","1205-612X","1925-4938","LAW","('ESCI',)","63","1.3","Q1","0.18","0.00" +"Elastomers and Composites","2092-9676","2288-7725","POLYMER SCIENCE","('ESCI',)","202","1.3","Q4","0.18","0.00" +"Materiaux & Techniques","0032-6895","1778-3771","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","232","1.3","Q4","0.18","39.29" +"Vietnam Journal of Chemistry","0866-7144","2572-8288","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","700","1.3","Q3","0.18","0.29" +"Central European Management Journal","2658-0845","2658-2430","MANAGEMENT","('ESCI',)","143","1.3","Q3","0.17","98.88" +"KINETICS AND CATALYSIS","0023-1584","1608-3210","CHEMISTRY, PHYSICAL","('SCIE',)","1,668","1.3","Q4","0.17","1.55" +"Nanoscience and Technology-An International Journal","2572-4258","2572-4266","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","727","1.3","Q4","0.16","0.00" +"Progress in Neurology and Psychiatry","1367-7543","1931-227X","NEUROSCIENCES","('ESCI',)","206","1.3","Q4","0.16","3.23" +"Journal of Ecological Engineering","2299-8993","2299-8993","ENGINEERING, ENVIRONMENTAL","('ESCI',)","2,339","1.3","Q4","0.15","99.91" +"MATERIALS SCIENCE-POLAND","2083-134X","2083-134X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","1,487","1.3","Q4","0.14","97.97" +"FERROELECTRICS LETTERS SECTION","0731-5171","1563-5228","PHYSICS, CONDENSED MATTER","('SCIE',)","345","1.3","Q4","0.13","0.00" +"JOURNAL OF FAMILY PRACTICE","0094-3509","","('MEDICINE, GENERAL & INTERNAL', 'PRIMARY HEALTH CARE')","('SCIE', 'SCIE')","1,729","1.3","('Q2', 'Q4')","0.13","0.00" +"SAE International Journal of Passenger Cars-Mechanical Systems","1946-3995","1946-4002","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","588","1.3","Q3","0.13","0.00" +"Active and Passive Electronic Components","0882-7516","1563-5031","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","122","1.3","Q3","0.11","100.00" +"JOURNAL OF ENGINEERING TECHNOLOGY","0747-9964","","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","212","1.3","Q3","0.04","0.00" +"SPECULUM-A JOURNAL OF MEDIEVAL STUDIES","0038-7134","2040-8072","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","1,053","1.2","","6.28","3.57" +"RENAISSANCE QUARTERLY","0034-4338","1935-0236","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","563","1.2","","4.05","41.27" +"Environmental Humanities","2201-1919","2201-1919","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","863","1.2","","3.69","98.98" +"Medical Humanities","1468-215X","1473-4265","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","943","1.2","","3.15","31.22" +"Journal of Medical Humanities","1041-3545","1573-3645","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","537","1.2","","2.58","27.66" +"Journal of the History of Economic Thought","1053-8372","1469-9656","('HISTORY', 'HISTORY OF SOCIAL SCIENCES')","('AHCI, SSCI', 'SSCI')","356","1.2","('Q1', 'Q1')","2.27","31.48" +"International Journal of Childrens Spirituality","1364-436X","1469-8455","RELIGION","('AHCI',)","217","1.2","","2.26","14.29" +"Yale Journal on Regulation","0741-9457","2376-5925","LAW","('SSCI',)","477","1.2","Q1","2.18","0.00" +"Social Text","0164-2472","1527-1951","CULTURAL STUDIES","('ESCI',)","2,238","1.2","Q2","2.08","0.00" +"AMERICAN INDIAN CULTURE AND RESEARCH JOURNAL","0161-6463","0161-6463","HISTORY","('AHCI',)","349","1.2","Q1","1.95","58.06" +"JOURNAL OF SCHOLARLY PUBLISHING","1198-9742","1710-1166","('HUMANITIES, MULTIDISCIPLINARY', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('AHCI', 'SSCI')","234","1.2","('N/A', 'Q3')","1.94","3.70" +"Journal of Interior Design","1071-7641","1939-1668","ARCHITECTURE","('AHCI',)","238","1.2","","1.89","2.13" +"Postcolonial Studies","1368-8790","1466-1888","('CULTURAL STUDIES', 'HISTORY')","('AHCI, SSCI', 'AHCI, SSCI')","803","1.2","('Q2', 'Q1')","1.88","28.36" +"China Review-An Interdisciplinary Journal on Greater China","1680-2012","1680-2012","AREA STUDIES","('SSCI',)","678","1.2","Q1","1.77","0.00" +"Asian Studies Review","1035-7823","1467-8403","('AREA STUDIES', 'ASIAN STUDIES', 'CULTURAL STUDIES')","('SSCI', 'AHCI', 'AHCI, SSCI')","730","1.2","('Q1', 'N/A', 'Q2')","1.75","13.82" +"Law & Policy","0265-8240","1467-9930","LAW","('SSCI',)","853","1.2","Q1","1.74","32.79" +"Turkish Studies","1468-3849","1743-9663","AREA STUDIES","('SSCI',)","826","1.2","Q1","1.73","9.78" +"JOURNAL OF RESEARCH IN MUSIC EDUCATION","0022-4294","1945-0095","('EDUCATION & EDUCATIONAL RESEARCH', 'MUSIC')","('SSCI', 'AHCI')","1,169","1.2","('Q2', 'N/A')","1.72","6.94" +"Journal of Empirical Legal Studies","1740-1453","1740-1461","LAW","('SSCI',)","998","1.2","Q1","1.71","30.68" +"Human Rights Review","1524-8879","1874-6306","LAW","('ESCI',)","361","1.2","Q1","1.65","52.38" +"Projections-The Journal for Movies and Mind","1934-9688","1934-9696","FILM, RADIO, TELEVISION","('ESCI',)","167","1.2","","1.56","0.00" +"CONTINENTAL PHILOSOPHY REVIEW","1387-2842","1573-1103","PHILOSOPHY","('AHCI',)","404","1.2","","1.55","37.65" +"Psychoanalytic Psychotherapy","0266-8734","1474-9734","PSYCHOLOGY, PSYCHOANALYSIS","('ESCI',)","254","1.2","Q1","1.46","20.29" +"JOURNAL FOR THE EDUCATION OF THE GIFTED","0162-3532","2162-9501","EDUCATION, SPECIAL","('ESCI',)","695","1.2","Q3","1.39","10.64" +"Journal of Behavioral Education","1053-0819","1573-3513","EDUCATION, SPECIAL","('SSCI',)","1,114","1.2","Q3","1.36","6.11" +"WASHINGTON QUARTERLY","0163-660X","1530-9177","('INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI')","878","1.2","('Q2', 'Q1')","1.35","18.10" +"British Journal of Learning Disabilities","1354-4187","1468-3156","EDUCATION, SPECIAL","('SSCI',)","903","1.2","Q3","1.34","44.59" +"AJIL Unbound","","2398-7723","('INTERNATIONAL RELATIONS', 'LAW')","('ESCI', 'ESCI')","565","1.2","('Q2', 'Q1')","1.33","99.38" +"CANADIAN JOURNAL OF POLITICAL SCIENCE-REVUE CANADIENNE DE SCIENCE POLITIQUE","0008-4239","1744-9324","POLITICAL SCIENCE","('SSCI',)","1,355","1.2","Q3","1.29","53.02" +"UNIVERSITY OF NEW SOUTH WALES LAW JOURNAL","0313-0096","1839-2881","LAW","('ESCI',)","700","1.2","Q1","1.29","0.00" +"International Journal of Discrimination and the Law","1358-2291","2047-9468","LAW","('ESCI',)","155","1.2","Q1","1.27","38.64" +"Journal of Corporate Law Studies","1473-5970","1757-8426","LAW","('SSCI',)","212","1.2","Q1","1.27","50.94" +"Utilitas","0953-8208","1741-6183","PHILOSOPHY","('AHCI',)","426","1.2","","1.25","55.26" +"European Journal of Archaeology","1461-9571","1741-2722","ARCHAEOLOGY","('AHCI',)","638","1.2","","1.23","64.86" +"International Multilingual Research Journal","1931-3152","1931-3160","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","451","1.2","('Q2', 'N/A', 'Q2')","1.23","11.29" +"JOURNAL FUR DIE REINE UND ANGEWANDTE MATHEMATIK","0075-4102","1435-5345","MATHEMATICS","('SCIE',)","6,515","1.2","Q1","1.22","9.76" +"JOURNAL OF COMBINATORIAL THEORY SERIES B","0095-8956","1096-0902","MATHEMATICS","('SCIE',)","3,635","1.2","Q1","1.21","36.10" +"Literacy","1741-4350","1741-4369","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","418","1.2","('Q2', 'N/A', 'Q2')","1.20","43.53" +"First Language","0142-7237","1740-2344","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'PSYCHOLOGY, DEVELOPMENTAL')","('AHCI', 'SSCI', 'SSCI')","1,047","1.2","('N/A', 'Q2', 'Q4')","1.19","24.74" +"English Today","0266-0784","1474-0567","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","544","1.2","('N/A', 'Q2')","1.17","29.13" +"ACTA MATHEMATICA SCIENTIA","0252-9602","1572-9087","MATHEMATICS","('SCIE',)","1,908","1.2","Q1","1.15","0.24" +"Algebraic Geometry","2313-1691","2214-2584","MATHEMATICS","('SCIE',)","601","1.2","Q1","1.15","98.57" +"Journal for European Environmental & Planning Law","1613-7272","1876-0104","LAW","('ESCI',)","130","1.2","Q1","1.15","27.27" +"Legal Theory","1352-3252","1469-8048","LAW","('ESCI',)","416","1.2","Q1","1.15","59.46" +"IIC-INTERNATIONAL REVIEW OF INTELLECTUAL PROPERTY AND COMPETITION LAW","0018-9855","2195-0237","LAW","('ESCI',)","331","1.2","Q1","1.13","57.75" +"COMMUNICATIONS IN CONTEMPORARY MATHEMATICS","0219-1997","1793-6683","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,625","1.2","('Q1', 'Q2')","1.11","1.93" +"Research in the Mathematical Sciences","2522-0144","2197-9847","MATHEMATICS","('SCIE',)","481","1.2","Q1","1.10","29.31" +"INTERNATIONAL JOURNAL OF PSYCHOANALYSIS","0020-7578","1745-8315","PSYCHOLOGY, PSYCHOANALYSIS","('SSCI',)","2,842","1.2","Q1","1.09","7.28" +"JOURNAL OF GEOMETRIC ANALYSIS","1050-6926","1559-002X","MATHEMATICS","('SCIE',)","2,773","1.2","Q1","1.09","20.27" +"Journal of Specialised Translation","1740-357X","1740-357X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","528","1.2","('N/A', 'Q2')","1.09","0.00" +"TRANSACTIONS OF THE AMERICAN MATHEMATICAL SOCIETY","0002-9947","1088-6850","MATHEMATICS","('SCIE',)","18,183","1.2","Q1","1.08","65.23" +"East Asia","1096-6838","1874-6284","AREA STUDIES","('ESCI',)","246","1.2","Q1","1.02","22.73" +"Revista Electronica Complutense de Investigacion en Educacion Musical-RECIEM","1698-7454","1698-7454","('EDUCATION & EDUCATIONAL RESEARCH', 'MUSIC')","('ESCI', 'ESCI')","93","1.2","('Q2', 'N/A')","1.02","72.00" +"American Journal of Distance Education","0892-3647","1538-9286","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,272","1.2","Q2","1.01","9.59" +"Journal of Special Education Technology","0162-6434","2381-3121","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","752","1.2","('Q3', 'Q3')","1.01","4.00" +"JOURNAL OF PALESTINE STUDIES","0377-919X","1533-8614","AREA STUDIES","('SSCI',)","903","1.2","Q1","1.00","13.64" +"Milan Journal of Mathematics","1424-9286","1424-9294","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","454","1.2","('Q1', 'Q2')","1.00","55.74" +"Focus on Autism and Other Developmental Disabilities","1088-3576","1538-4829","('EDUCATION, SPECIAL', 'PSYCHOLOGY, DEVELOPMENTAL', 'REHABILITATION')","('SSCI', 'SSCI', 'SSCI')","1,209","1.2","('Q3', 'Q4', 'Q3')","0.99","7.14" +"HUMOR-INTERNATIONAL JOURNAL OF HUMOR RESEARCH","0933-1719","1613-3722","('LANGUAGE & LINGUISTICS', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('AHCI', 'SSCI')","1,017","1.2","('N/A', 'Q3')","0.99","21.84" +"European Review of Economic History","1361-4916","1474-0044","('ECONOMICS', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","724","1.2","('Q3', 'Q1')","0.97","27.62" +"Social Science Japan Journal","1369-1465","1468-2680","('AREA STUDIES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","212","1.2","('Q1', 'Q2')","0.96","21.95" +"INDIANA UNIVERSITY MATHEMATICS JOURNAL","0022-2518","1943-5258","MATHEMATICS","('SCIE',)","4,189","1.2","Q1","0.95","0.00" +"FOLIA PRIMATOLOGICA","0015-5713","1421-9980","ZOOLOGY","('SCIE',)","1,392","1.2","Q2","0.93","12.00" +"Forum of Mathematics Sigma","","2050-5094","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","617","1.2","('Q1', 'Q2')","0.93","99.34" +"JOURNAL OF MATHEMATICAL ANALYSIS AND APPLICATIONS","0022-247X","1096-0813","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","26,087","1.2","('Q1', 'Q2')","0.92","12.95" +"Language Teaching for Young Learners","2589-2053","2589-207X","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI', 'ESCI')","54","1.2","('Q2', 'N/A', 'Q2')","0.92","18.18" +"Journal of Contemporary European Studies","1478-2804","1478-2790","('AREA STUDIES', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","653","1.2","('Q1', 'Q2', 'Q3')","0.91","29.22" +"SOUTH AFRICAN JOURNAL OF GEOLOGY","1012-0750","1996-8590","GEOLOGY","('SCIE',)","1,143","1.2","Q2","0.91","0.00" +"ANNALI DELLA SCUOLA NORMALE SUPERIORE DI PISA-CLASSE DI SCIENZE","0391-173X","2036-2145","MATHEMATICS","('SCIE',)","2,374","1.2","Q1","0.88","0.00" +"Selecta Mathematica-New Series","1022-1824","1420-9020","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,395","1.2","('Q1', 'Q2')","0.88","39.03" +"AFRICA","0001-9720","1750-0184","('ANTHROPOLOGY', 'AREA STUDIES')","('SSCI', 'SSCI')","1,400","1.2","('Q2', 'Q1')","0.87","41.67" +"International Journal of Sociology and Social Policy","0144-333X","1758-6720","SOCIOLOGY","('ESCI',)","1,599","1.2","Q3","0.87","19.02" +"ELEMENTARY SCHOOL JOURNAL","0013-5984","1554-8279","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","2,141","1.2","Q2","0.86","0.00" +"Journal of Transcultural Nursing","1043-6596","1552-7832","NURSING","('SCIE', 'SSCI')","1,928","1.2","Q3","0.86","12.05" +"Citizenship Studies","1362-1025","1469-3593","POLITICAL SCIENCE","('SSCI',)","2,010","1.2","Q3","0.85","41.18" +"Communications in Number Theory and Physics","1931-4523","1931-4531","('MATHEMATICS', 'MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE', 'SCIE')","467","1.2","('Q1', 'Q2', 'Q3')","0.85","0.00" +"INTERNATIONAL SOCIAL WORK","0020-8728","1461-7234","SOCIAL WORK","('SSCI',)","1,808","1.2","Q3","0.85","22.86" +"EUROPE-ASIA STUDIES","0966-8136","1465-3427","('AREA STUDIES', 'ECONOMICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","1,836","1.2","('Q1', 'Q3', 'Q3')","0.83","24.09" +"JOURNAL OF RAPTOR RESEARCH","0892-1016","2162-4569","ORNITHOLOGY","('SCIE',)","1,224","1.2","Q2","0.83","0.00" +"JOURNAL OF THE ROYAL ANTHROPOLOGICAL INSTITUTE","1359-0987","1467-9655","ANTHROPOLOGY","('SSCI',)","2,619","1.2","Q2","0.83","41.83" +"ZOOLOGISCHER ANZEIGER","0044-5231","0044-5231","ZOOLOGY","('SCIE',)","2,341","1.2","Q2","0.83","14.34" +"ENVIRONMENTAL ARCHAEOLOGY","1461-4103","1749-6314","('ARCHAEOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('AHCI', 'SCIE')","802","1.2","('N/A', 'Q3')","0.81","21.88" +"FINITE FIELDS AND THEIR APPLICATIONS","1071-5797","1090-2465","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,860","1.2","('Q1', 'Q2')","0.81","15.74" +"Studies in Conflict & Terrorism","1057-610X","1521-0731","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,960","1.2","('Q2', 'Q3')","0.81","26.98" +"Journal for General Philosophy of Science","0925-4560","1572-8587","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI',)","314","1.2","Q2","0.80","46.53" +"JOURNAL OF NURSING CARE QUALITY","1057-3631","1550-5065","NURSING","('SCIE', 'SSCI')","1,189","1.2","Q3","0.80","6.60" +"ACTA APPLICANDAE MATHEMATICAE","0167-8019","1572-9036","MATHEMATICS, APPLIED","('SCIE',)","1,763","1.2","Q2","0.79","11.02" +"African Journal of Primary Health Care & Family Medicine","2071-2928","2071-2936","PRIMARY HEALTH CARE","('ESCI',)","1,235","1.2","Q4","0.79","96.34" +"FOLIA MORPHOLOGICA","0015-5659","1644-3284","ANATOMY & MORPHOLOGY","('SCIE',)","1,601","1.2","Q3","0.79","100.00" +"GEOLOGICA BELGICA","1374-8505","2034-1954","GEOLOGY","('SCIE',)","393","1.2","Q2","0.79","96.15" +"International Journal of Care and Caring","2397-8821","2397-883X","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","352","1.2","Q2","0.79","21.48" +"Annals of Functional Analysis","2639-7390","2008-8752","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","513","1.2","('Q1', 'Q2')","0.78","8.82" +"Food and Foodways","0740-9710","1542-3484","ANTHROPOLOGY","('ESCI',)","361","1.2","Q2","0.78","30.77" +"Gender Technology & Development","0971-8524","0973-0656","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","540","1.2","Q2","0.78","23.53" +"INTERFACES AND FREE BOUNDARIES","1463-9963","1463-9971","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","547","1.2","('Q1', 'Q2')","0.78","100.00" +"INTERNATIONAL JOURNAL OF SOCIAL WELFARE","1369-6866","1468-2397","SOCIAL WORK","('SSCI',)","1,317","1.2","Q3","0.78","38.06" +"Journal of Hospice & Palliative Nursing","1522-2179","1539-0705","NURSING","('SCIE', 'SSCI')","970","1.2","Q3","0.78","7.73" +"NEMATOLOGY","1388-5545","1388-5545","ZOOLOGY","('SCIE',)","2,244","1.2","Q2","0.78","7.58" +"Journal of Second Language Studies","2542-3835","2542-3843","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI', 'ESCI')","64","1.2","('Q2', 'N/A', 'Q2')","0.77","4.76" +"COMPUTERS IN THE SCHOOLS","0738-0569","1528-7033","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","437","1.2","Q2","0.76","11.84" +"Journal of the American Association for Laboratory Animal Science","1559-6109","1559-6109","('VETERINARY SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","2,225","1.2","('Q3', 'Q2')","0.76","0.00" +"Economic Anthropology","2330-4847","2330-4847","ANTHROPOLOGY","('SSCI',)","352","1.2","Q2","0.75","33.80" +"JOURNAL OF DISCRETE MATHEMATICAL SCIENCES & CRYPTOGRAPHY","0972-0529","2169-0065","MATHEMATICS, APPLIED","('ESCI',)","1,199","1.2","Q2","0.75","0.00" +"Educational Research for Policy and Practice","1570-2081","1573-1723","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","304","1.2","Q2","0.74","20.55" +"SOCIAL WORK RESEARCH","1070-5309","1545-6838","SOCIAL WORK","('SSCI',)","1,079","1.2","Q3","0.74","0.00" +"COLUMBIA JOURNAL OF TRANSNATIONAL LAW","0010-1931","2159-1814","('INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI')","342","1.2","('Q2', 'Q1')","0.73","0.00" +"CSIAM Transactions on Applied Mathematics","2708-0560","2708-0579","MATHEMATICS, APPLIED","('ESCI',)","160","1.2","Q2","0.73","100.00" +"International Journal of Research in Undergraduate Mathematics Education","2198-9745","2198-9753","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","325","1.2","Q2","0.73","37.63" +"Sexuality & Culture-An Interdisciplinary Journal","1095-5143","1936-4822","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","1,561","1.2","Q2","0.73","29.08" +"ZOO BIOLOGY","0733-3188","1098-2361","('VETERINARY SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","2,745","1.2","('Q3', 'Q2')","0.73","24.37" +"Contemporary Nurse","1037-6178","1839-3535","NURSING","('SCIE', 'SSCI')","1,541","1.2","Q3","0.72","19.44" +"East Asian Journal on Applied Mathematics","2079-7362","2079-7370","MATHEMATICS, APPLIED","('SCIE',)","364","1.2","Q2","0.72","0.00" +"Journal of Human Behavior in the Social Environment","1091-1359","1540-3556","SOCIAL WORK","('ESCI',)","1,700","1.2","Q3","0.72","2.06" +"ANTHROPOLOGY OF CONSCIOUSNESS","1053-4202","1556-3537","ANTHROPOLOGY","('ESCI',)","217","1.2","Q2","0.71","11.48" +"Emotions and Society","2631-6897","2631-6900","SOCIOLOGY","('ESCI',)","122","1.2","Q3","0.71","27.27" +"English Teaching and Learning","1023-7267","2522-8560","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('ESCI', 'ESCI')","264","1.2","('Q2', 'Q2')","0.71","9.52" +"JOURNAL OF VETERINARY DIAGNOSTIC INVESTIGATION","1040-6387","1943-4936","VETERINARY SCIENCES","('SCIE',)","4,648","1.2","Q3","0.71","16.16" +"Security Journal","0955-1662","1743-4645","CRIMINOLOGY & PENOLOGY","('SSCI',)","733","1.2","Q3","0.71","16.44" +"ANNALES DE L INSTITUT HENRI POINCARE-PROBABILITES ET STATISTIQUES","0246-0203","","STATISTICS & PROBABILITY","('SCIE',)","1,878","1.2","Q2","0.70","1.21" +"Asian Herpetological Research","2095-0357","2095-0357","ZOOLOGY","('SCIE',)","407","1.2","Q2","0.70","0.00" +"AUSTRALIAN JOURNAL OF POLITICAL SCIENCE","1036-1146","1363-030X","POLITICAL SCIENCE","('SSCI',)","724","1.2","Q3","0.70","30.38" +"Curriculum Journal","0958-5176","1469-3704","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","785","1.2","Q2","0.70","47.27" +"Journal of Public Child Welfare","1554-8732","1554-8740","SOCIAL WORK","('SSCI',)","642","1.2","Q3","0.70","7.20" +"Communication Reports","0893-4215","1745-1043","COMMUNICATION","('ESCI',)","395","1.2","Q3","0.69","4.55" +"COMPTES RENDUS PALEVOL","1631-0683","1777-571X","PALEONTOLOGY","('SCIE',)","1,491","1.2","Q3","0.69","93.55" +"PEDIATRIC EMERGENCY CARE","0749-5161","1535-1815","('EMERGENCY MEDICINE', 'PEDIATRICS')","('SCIE', 'SCIE')","4,706","1.2","('Q3', 'Q3')","0.69","2.66" +"ASSESSMENT FOR EFFECTIVE INTERVENTION","1534-5084","1938-7458","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","523","1.2","Q2","0.68","7.94" +"Journal of Mathematics in Industry","2190-5983","2190-5983","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","173","1.2","Q3","0.68","100.00" +"Journal of Radio & Audio Media","1937-6529","1937-6537","COMMUNICATION","('ESCI',)","378","1.2","Q3","0.68","9.09" +"Journal of Exercise Rehabilitation","2288-176X","2288-1778","REHABILITATION","('ESCI',)","1,314","1.2","Q3","0.67","100.00" +"ACTA OTO-LARYNGOLOGICA","0001-6489","1651-2251","OTORHINOLARYNGOLOGY","('SCIE',)","7,068","1.2","Q3","0.66","17.36" +"ALCHERINGA","0311-5518","1752-0754","PALEONTOLOGY","('SCIE',)","1,127","1.2","Q3","0.66","28.16" +"ANNALES SOCIETATIS GEOLOGORUM POLONIAE","0208-9068","0208-9068","GEOLOGY","('SCIE',)","573","1.2","Q2","0.66","100.00" +"INTERNATIONAL JOURNAL OF PEDIATRIC OTORHINOLARYNGOLOGY","0165-5876","1872-8464","('OTORHINOLARYNGOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","10,213","1.2","('Q3', 'Q3')","0.66","9.11" +"Journal of Statistics and Management Systems","0972-0510","2169-0014","STATISTICS & PROBABILITY","('ESCI',)","922","1.2","Q2","0.66","0.00" +"Malaysian Journal of Learning & Instruction","1675-8110","2180-2483","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","220","1.2","Q2","0.66","73.58" +"SOCIOLOGICAL RESEARCH ONLINE","1360-7804","1360-7804","SOCIOLOGY","('SSCI',)","1,699","1.2","Q3","0.66","43.48" +"STATISTICAL PAPERS","0932-5026","1613-9798","STATISTICS & PROBABILITY","('SCIE',)","1,646","1.2","Q2","0.66","22.70" +"ANATOMICAL SCIENCE INTERNATIONAL","1447-6959","1447-073X","ANATOMY & MORPHOLOGY","('SCIE',)","970","1.2","Q3","0.65","19.35" +"OPHTHALMIC PLASTIC AND RECONSTRUCTIVE SURGERY","0740-9303","1537-2677","('OPHTHALMOLOGY', 'SURGERY')","('SCIE', 'SCIE')","3,739","1.2","('Q3', 'Q3')","0.65","2.12" +"Current Issues in Criminal Justice","1034-5329","2206-9542","CRIMINOLOGY & PENOLOGY","('ESCI',)","431","1.2","Q3","0.64","21.43" +"EDMETIC","2254-0059","2254-0059","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","201","1.2","Q2","0.64","78.43" +"Journal of Civil Engineering Education","2643-9107","2643-9115","('EDUCATION, SCIENTIFIC DISCIPLINES', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","108","1.2","('Q3', 'Q3')","0.64","4.84" +"AMEGHINIANA","0002-7014","1851-8044","PALEONTOLOGY","('SCIE',)","1,924","1.2","Q3","0.63","0.00" +"American Journal of Sexuality Education","1554-6128","1554-6136","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","474","1.2","Q2","0.63","8.16" +"Civil Wars","1369-8249","1743-968X","POLITICAL SCIENCE","('ESCI',)","722","1.2","Q3","0.63","44.79" +"JOURNAL OF FOURIER ANALYSIS AND APPLICATIONS","1069-5869","1531-5851","MATHEMATICS, APPLIED","('SCIE',)","1,947","1.2","Q2","0.63","38.84" +"JOURNAL OF SPORTS MEDICINE AND PHYSICAL FITNESS","0022-4707","1827-1928","SPORT SCIENCES","('SCIE',)","4,227","1.2","Q3","0.63","2.77" +"Studying Teacher Education","1742-5964","1742-5972","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","522","1.2","Q2","0.63","6.06" +"Annals of Surgical Treatment and Research","2288-6575","2288-6796","SURGERY","('SCIE',)","1,238","1.2","Q3","0.62","98.47" +"Anti-Trafficking Review","2286-7511","2287-0113","CRIMINOLOGY & PENOLOGY","('ESCI',)","312","1.2","Q3","0.62","92.73" +"International Journal of Mobile Learning and Organisation","1746-725X","1746-7268","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'EDUCATION & EDUCATIONAL RESEARCH')","('ESCI', 'ESCI')","338","1.2","('Q4', 'Q2')","0.62","1.35" +"Journal of East Asian Studies","1598-2408","2234-6643","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","466","1.2","Q2","0.62","46.27" +"Journal of Forensic and Legal Medicine","1752-928X","1532-2009","MEDICINE, LEGAL","('SCIE',)","2,373","1.2","Q3","0.62","13.78" +"Juridicas CUC","1692-3030","2389-7716","LAW","('ESCI',)","75","1.2","Q1","0.62","98.51" +"OFIOLITI","0391-2612","","GEOLOGY","('SCIE',)","393","1.2","Q2","0.62","0.00" +"Studies in the Education of Adults-NIACE","0266-0830","1478-9833","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","380","1.2","Q2","0.62","38.98" +"TEST","1133-0686","1863-8260","STATISTICS & PROBABILITY","('SCIE',)","1,845","1.2","Q2","0.62","31.58" +"GFF","1103-5897","2000-0863","('GEOLOGY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","751","1.2","('Q2', 'Q3')","0.61","56.25" +"JOURNAL OF NEUROLINGUISTICS","0911-6044","1873-8052","('LINGUISTICS', 'NEUROSCIENCES', 'PSYCHOLOGY, EXPERIMENTAL')","('SSCI', 'SCIE', 'SSCI')","1,403","1.2","('Q2', 'Q4', 'Q4')","0.61","21.13" +"Journal of the American Association of Nurse Practitioners","2327-6886","2327-6924","('HEALTH CARE SCIENCES & SERVICES', 'NURSING')","('SCIE', 'SCIE, SSCI')","1,558","1.2","('Q4', 'Q3')","0.61","2.93" +"Sexes","","2411-5118","('MEDICINE, GENERAL & INTERNAL', 'PSYCHOLOGY, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY', 'WOMENS STUDIES')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","118","1.2","('Q2', 'Q3', 'Q2', 'Q2')","0.61","100.00" +"ARCHIVES EUROPEENNES DE SOCIOLOGIE","0003-9756","1474-0583","SOCIOLOGY","('SSCI',)","900","1.2","Q3","0.60","35.71" +"Bulletin of the History of Archaeology","1062-4740","2047-6930","ARCHAEOLOGY","('ESCI',)","55","1.2","","0.60","100.00" +"Communication and the Public","2057-0473","2057-0481","COMMUNICATION","('ESCI',)","355","1.2","Q3","0.60","24.44" +"Communication Research and Practice","2204-1451","2206-3374","COMMUNICATION","('ESCI',)","356","1.2","Q3","0.60","14.71" +"Counselling & Psychotherapy Research","1473-3145","1746-1405","PSYCHOLOGY, CLINICAL","('ESCI',)","1,717","1.2","Q3","0.60","34.43" +"Emergency Medicine International","2090-2840","2090-2859","EMERGENCY MEDICINE","('SCIE',)","833","1.2","Q3","0.60","99.70" +"JOURNAL OF AAPOS","1091-8531","1528-3933","('OPHTHALMOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","3,263","1.2","('Q3', 'Q3')","0.60","5.88" +"JOURNAL OF BODYWORK AND MOVEMENT THERAPIES","1360-8592","1532-9283","REHABILITATION","('ESCI',)","3,047","1.2","Q3","0.60","5.74" +"Longitudinal and Life Course Studies","1757-9597","1757-9597","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","531","1.2","('Q4', 'Q2')","0.60","22.89" +"Children & Schools","1532-8759","1545-682X","SOCIAL WORK","('ESCI',)","536","1.2","Q3","0.59","4.29" +"Communications in Mathematical Sciences","1539-6746","1539-6746","MATHEMATICS, APPLIED","('SCIE',)","2,021","1.2","Q2","0.59","0.00" +"Gender Place and Culture","0966-369X","1360-0524","('GEOGRAPHY', 'WOMENS STUDIES')","('SSCI', 'SSCI')","3,086","1.2","('Q3', 'Q2')","0.59","29.08" +"JOURNAL OF APPLIED STATISTICS","0266-4763","1360-0532","STATISTICS & PROBABILITY","('SCIE',)","3,924","1.2","Q2","0.59","7.03" +"JOURNAL OF EXPERIMENTAL PSYCHOLOGY-ANIMAL LEARNING AND COGNITION","2329-8456","2329-8464","('BEHAVIORAL SCIENCES', 'PSYCHOLOGY', 'PSYCHOLOGY, BIOLOGICAL', 'PSYCHOLOGY, EXPERIMENTAL', 'ZOOLOGY')","('SCIE', 'SCIE', 'SSCI', 'SSCI', 'SCIE')","1,736","1.2","('Q4', 'Q4', 'Q3', 'Q4', 'Q2')","0.58","4.85" +"SURGICAL AND RADIOLOGIC ANATOMY","0930-1038","1279-8517","('ANATOMY & MORPHOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","4,622","1.2","('Q3', 'Q3', 'Q3')","0.58","16.67" +"ACTA PARASITOLOGICA","1230-2821","1896-1851","('PARASITOLOGY', 'VETERINARY SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,830","1.2","('Q4', 'Q3', 'Q2')","0.57","11.11" +"JOURNAL OF EMERGENCY MEDICINE","0736-4679","1090-1280","EMERGENCY MEDICINE","('SCIE',)","6,454","1.2","Q3","0.57","9.44" +"Advances in Orthopedics","2090-3464","2090-3472","ORTHOPEDICS","('ESCI',)","551","1.2","Q3","0.56","100.00" +"Digital Education Review","2013-9144","2013-9144","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","374","1.2","Q2","0.56","31.33" +"Inverse Problems and Imaging","1930-8337","1930-8345","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","1,075","1.2","('Q2', 'Q3')","0.56","0.00" +"JASA Express Letters","","2691-1191","('ACOUSTICS', 'AUDIOLOGY & SPEECH')","('ESCI', 'ESCI')","403","1.2","('Q3', 'Q3')","0.56","92.64" +"JOURNAL OF CRUSTACEAN BIOLOGY","0278-0372","1937-240X","('MARINE & FRESHWATER BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","2,545","1.2","('Q3', 'Q2')","0.56","9.52" +"JOURNAL OF SOCIAL WORK PRACTICE","0265-0533","1465-3885","SOCIAL WORK","('SSCI',)","567","1.2","Q3","0.56","20.73" +"JOURNAL OF THE AMERICAN SOCIETY FOR HORTICULTURAL SCIENCE","0003-1062","2327-9788","HORTICULTURE","('SCIE',)","4,994","1.2","Q3","0.56","100.00" +"LIMNETICA","0213-8409","1989-1806","('LIMNOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","736","1.2","('Q4', 'Q3')","0.56","72.00" +"PEDIATRIC DERMATOLOGY","0736-8046","1525-1470","('DERMATOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","4,875","1.2","('Q3', 'Q3')","0.56","10.78" +"SIAM JOURNAL ON COMPUTING","0097-5397","1095-7111","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","6,910","1.2","('Q3', 'Q2')","0.56","2.25" +"Translation & Interpreting-The International Journal of Translation and Interpreting","1836-9324","1836-9324","LINGUISTICS","('ESCI',)","285","1.2","Q2","0.56","93.10" +"Visual Communication","1470-3572","1741-3214","COMMUNICATION","('SSCI',)","865","1.2","Q3","0.56","34.40" +"ANNALS OF HUMAN BIOLOGY","0301-4460","1464-5033","('ANTHROPOLOGY', 'BIOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SCIE', 'SCIE, SSCI')","2,053","1.2","('Q2', 'Q3', 'Q4')","0.55","34.86" +"Applied Mathematics-A Journal of Chinese Universities Series B","1005-1031","1993-0445","MATHEMATICS, APPLIED","('SCIE',)","376","1.2","Q2","0.55","25.78" +"Arthroscopy Techniques","2212-6287","2212-6287","ORTHOPEDICS","('ESCI',)","3,110","1.2","Q3","0.55","79.54" +"Australian Journal of Advanced Nursing","0813-0531","1447-4328","NURSING","('SCIE', 'SSCI')","598","1.2","Q3","0.55","3.17" +"Cleft Palate Craniofacial Journal","1055-6656","1545-1569","('DENTISTRY, ORAL SURGERY & MEDICINE', 'SURGERY')","('SCIE', 'SCIE')","5,246","1.2","('Q3', 'Q3')","0.55","9.40" +"Cryptography and Communications-Discrete-Structures Boolean Functions and Sequences","1936-2447","1936-2455","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","674","1.2","('Q3', 'Q2')","0.55","11.21" +"Health Systems","2047-6965","2047-6973","HEALTH POLICY & SERVICES","('ESCI',)","320","1.2","Q4","0.55","35.21" +"HISTORY OF POLITICAL ECONOMY","0018-2702","1527-1919","('ECONOMICS', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","1,014","1.2","('Q3', 'Q1')","0.55","0.00" +"JOURNAL OF NONVERBAL BEHAVIOR","0191-5886","1573-3653","PSYCHOLOGY, SOCIAL","('SSCI',)","1,844","1.2","Q4","0.55","37.04" +"ENTOMOLOGICAL RESEARCH","1738-2297","1748-5967","ENTOMOLOGY","('SCIE',)","854","1.2","Q3","0.54","2.44" +"Journal for Specialists in Pediatric Nursing","1539-0136","1744-6155","('NURSING', 'PEDIATRICS')","('SCIE, SSCI', 'SCIE')","782","1.2","('Q3', 'Q3')","0.54","8.70" +"Journal of Cosmetic and Laser Therapy","1476-4172","1476-4180","('DERMATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","1,323","1.2","('Q3', 'Q3')","0.54","6.67" +"VETERINARY CLINICAL PATHOLOGY","0275-6382","1939-165X","VETERINARY SCIENCES","('SCIE',)","2,224","1.2","Q3","0.54","26.09" +"ARMED FORCES & SOCIETY","0095-327X","1556-0848","('POLITICAL SCIENCE', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,173","1.2","('Q3', 'Q3')","0.53","12.42" +"European Journal for Research on the Education and Learning of Adults","2000-7426","2000-7426","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","181","1.2","Q2","0.53","87.04" +"GEOFLUIDS","1468-8115","1468-8123","('GEOCHEMISTRY & GEOPHYSICS', 'GEOLOGY')","('SCIE', 'SCIE')","5,006","1.2","('Q3', 'Q2')","0.53","99.70" +"Hepatic Oncology","2045-0923","2045-0931","ONCOLOGY","('ESCI',)","263","1.2","Q4","0.53","93.33" +"JOURNAL OF PSYCHOSOCIAL NURSING AND MENTAL HEALTH SERVICES","0279-3695","1938-2413","NURSING","('SCIE', 'SSCI')","1,143","1.2","Q3","0.53","3.61" +"Journal of Sustainable Forestry","1054-9811","1540-756X","FORESTRY","('SCIE',)","1,073","1.2","Q3","0.53","7.29" +"Labour and Industry","1030-1763","2325-5676","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","316","1.2","Q3","0.53","18.18" +"National Institute Economic Review","0027-9501","1741-3036","ECONOMICS","('ESCI',)","473","1.2","Q3","0.53","30.77" +"NUCLEAR SCIENCE AND ENGINEERING","0029-5639","1943-748X","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","2,991","1.2","Q3","0.53","21.35" +"RAFFLES BULLETIN OF ZOOLOGY","0217-2445","2345-7600","ZOOLOGY","('SCIE',)","1,578","1.2","Q2","0.53","0.00" +"Sport Sciences for Health","1824-7490","1825-1234","SPORT SCIENCES","('ESCI',)","990","1.2","Q3","0.53","20.44" +"AIRCRAFT ENGINEERING AND AEROSPACE TECHNOLOGY","1748-8842","1758-4213","ENGINEERING, AEROSPACE","('SCIE',)","1,622","1.2","Q3","0.52","3.41" +"Arthropod-Plant Interactions","1872-8855","1872-8847","ENTOMOLOGY","('SCIE',)","1,535","1.2","Q3","0.52","16.74" +"BEHAVIOUR","0005-7959","1568-539X","('BEHAVIORAL SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","4,539","1.2","('Q4', 'Q2')","0.52","13.79" +"Food Culture & Society","1552-8014","1751-7443","SOCIOLOGY","('SSCI',)","791","1.2","Q3","0.52","19.50" +"Journal of Vocational Rehabilitation","1052-2263","1878-6316","REHABILITATION","('ESCI',)","1,248","1.2","Q3","0.52","10.06" +"Montenegrin Journal of Economics","1800-5845","1800-6698","ECONOMICS","('ESCI',)","403","1.2","Q3","0.52","100.00" +"Pakistan Journal of Medical Sciences","1682-024X","1681-715X","MEDICINE, GENERAL & INTERNAL","('SCIE',)","5,097","1.2","Q2","0.52","99.46" +"Archives of Budo Science of Martial Arts and Extreme Sports","2300-8822","2300-8822","SPORT SCIENCES","('ESCI',)","191","1.2","Q3","0.51","0.00" +"ATLANTIC GEOLOGY","0843-5561","1718-7885","GEOLOGY","('SCIE',)","244","1.2","Q2","0.51","0.00" +"Ethnopolitics","1744-9057","1744-9065","('ETHNIC STUDIES', 'POLITICAL SCIENCE')","('ESCI', 'ESCI')","653","1.2","('Q3', 'Q3')","0.51","26.96" +"European Countryside","1803-8417","1803-8417","GEOGRAPHY","('ESCI',)","461","1.2","Q3","0.51","95.69" +"International Journal of Physical Modelling in Geotechnics","1346-213X","2042-6550","ENGINEERING, GEOLOGICAL","('SCIE',)","609","1.2","Q4","0.51","1.33" +"Journal of Biopharmaceutical Statistics","1054-3406","1520-5711","('PHARMACOLOGY & PHARMACY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","1,555","1.2","('Q4', 'Q2')","0.51","9.77" +"Pediatric Quality & Safety","","2472-0054","PEDIATRICS","('ESCI',)","732","1.2","Q3","0.51","99.28" +"Research in Education","0034-5237","2050-4608","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","299","1.2","Q2","0.51","40.91" +"Social Psychology","1864-9335","2151-2590","PSYCHOLOGY, SOCIAL","('SSCI',)","1,459","1.2","Q4","0.51","22.92" +"ADAPTIVE BEHAVIOR","1059-7123","1741-2633","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'PSYCHOLOGY, EXPERIMENTAL', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SCIE', 'SSCI', 'SSCI')","875","1.2","('Q4', 'Q4', 'Q2')","0.50","25.22" +"Australian Journal of Primary Health","1448-7527","1836-7399","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES', 'PRIMARY HEALTH CARE', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SSCI', 'SCIE', 'SCIE, SSCI')","1,285","1.2","('Q4', 'Q4', 'Q4', 'Q4')","0.50","55.75" +"BERLINER JOURNAL FUR SOZIOLOGIE","0863-1808","1862-2593","SOCIOLOGY","('SSCI',)","187","1.2","Q3","0.50","94.64" +"ENCEPHALE-REVUE DE PSYCHIATRIE CLINIQUE BIOLOGIQUE ET THERAPEUTIQUE","0013-7006","2589-4935","('NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE')","1,631","1.2","('Q4', 'Q4')","0.50","37.55" +"Health Care for Women International","0739-9332","1096-4665","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'WOMENS STUDIES')","('SSCI', 'SSCI')","2,228","1.2","('Q4', 'Q2')","0.50","10.65" +"Homeopathy","1475-4916","1476-4245","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","539","1.2","Q3","0.50","13.21" +"International Social Security Review","0020-871X","1468-246X","PUBLIC ADMINISTRATION","('ESCI',)","363","1.2","Q3","0.50","8.77" +"Maderas-Ciencia y Tecnologia","0717-3644","0718-221X","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","979","1.2","Q3","0.50","96.50" +"Spine Surgery and Related Research","2432-261X","2432-261X","SURGERY","('ESCI',)","523","1.2","Q3","0.50","99.55" +"STATISTICAL MODELLING","1471-082X","1477-0342","STATISTICS & PROBABILITY","('SCIE',)","832","1.2","Q2","0.50","24.32" +"AUSTRALIAN ECONOMIC PAPERS","0004-900X","1467-8454","ECONOMICS","('SSCI',)","551","1.2","Q3","0.49","22.73" +"Geographica Pannonica","0354-8724","1820-7138","GEOGRAPHY","('ESCI',)","318","1.2","Q3","0.49","97.56" +"Journal of Mathematical Fluid Mechanics","1422-6928","1422-6952","('MATHEMATICS, APPLIED', 'MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE', 'SCIE')","1,319","1.2","('Q2', 'Q4', 'Q4')","0.49","22.59" +"JOURNAL OF THE ASTRONAUTICAL SCIENCES","0021-9142","2195-0571","ENGINEERING, AEROSPACE","('SCIE',)","1,007","1.2","Q3","0.49","24.28" +"Medical Molecular Morphology","1860-1480","1860-1499","PATHOLOGY","('SCIE',)","639","1.2","Q3","0.49","10.10" +"SOCIOLOGICAL QUARTERLY","0038-0253","1533-8525","SOCIOLOGY","('SSCI',)","2,543","1.2","Q3","0.49","11.94" +"Teaching Statistics","0141-982X","1467-9639","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","251","1.2","Q2","0.49","30.88" +"WOMEN & HEALTH","0363-0242","1541-0331","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'WOMENS STUDIES')","('SSCI', 'SSCI')","2,148","1.2","('Q4', 'Q2')","0.49","5.39" +"BRAGANTIA","0006-8705","1678-4499","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","1,285","1.2","Q2","0.48","94.16" +"ECONOMICS AND PHILOSOPHY","0266-2671","1474-0028","('ECONOMICS', 'ETHICS')","('SSCI', 'SSCI')","741","1.2","('Q3', 'Q3')","0.48","48.72" +"Families In Society-The Journal of Contemporary Social Services","1044-3894","1945-1350","('FAMILY STUDIES', 'SOCIAL WORK')","('SSCI', 'SSCI')","1,252","1.2","('Q3', 'Q3')","0.48","6.06" +"Ginekologia Polska","0017-0011","2543-6767","OBSTETRICS & GYNECOLOGY","('SCIE',)","1,719","1.2","Q3","0.48","95.48" +"HOME HEALTH CARE SERVICES QUARTERLY","0162-1424","1545-0856","HEALTH POLICY & SERVICES","('ESCI',)","332","1.2","Q4","0.48","17.74" +"INTERNATIONAL JOURNAL OF AGING & HUMAN DEVELOPMENT","0091-4150","1541-3535","('GERONTOLOGY', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","2,058","1.2","('Q3', 'Q4')","0.48","12.75" +"International Journal of Electronic Government Research","1548-3886","1548-3894","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","315","1.2","Q3","0.48","23.61" +"JOURNAL OF THE CANADIAN DENTAL ASSOCIATION","1488-2159","1488-2159","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,137","1.2","Q3","0.48","0.00" +"Networks and Heterogeneous Media","1556-1801","1556-181X","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","695","1.2","Q3","0.48","100.00" +"PEDIATRIC TRANSPLANTATION","1397-3142","1399-3046","('PEDIATRICS', 'TRANSPLANTATION')","('SCIE', 'SCIE')","3,887","1.2","('Q3', 'Q3')","0.48","14.43" +"Surgical Innovation","1553-3506","1553-3514","SURGERY","('SCIE',)","1,587","1.2","Q3","0.48","14.52" +"Archives of Bone and Joint Surgery-ABJS","2345-4644","2345-461X","ORTHOPEDICS","('ESCI',)","1,227","1.2","Q3","0.47","0.00" +"Aula Abierta","0210-2773","2341-2313","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","498","1.2","Q2","0.47","86.89" +"Journal of Emergencies Trauma and Shock","0974-2700","0974-519X","EMERGENCY MEDICINE","('ESCI',)","970","1.2","Q3","0.47","92.08" +"LIFETIME DATA ANALYSIS","1380-7870","1572-9249","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","935","1.2","('Q3', 'Q2')","0.47","16.00" +"PEDIATRICS IN REVIEW","0191-9601","1526-3347","PEDIATRICS","('ESCI',)","1,995","1.2","Q3","0.47","0.00" +"AMERICAN JOURNAL OF POTATO RESEARCH","1099-209X","1874-9380","AGRONOMY","('SCIE',)","1,579","1.2","Q3","0.46","21.10" +"Archives of Control Sciences","2300-2611","2300-2611","('AUTOMATION & CONTROL SYSTEMS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","309","1.2","('Q4', 'Q2')","0.46","99.07" +"ERDE","0013-9998","0013-9998","('GEOGRAPHY', 'GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SSCI', 'SCIE', 'SCIE')","317","1.2","('Q3', 'Q3', 'Q3')","0.46","0.00" +"German Economic Review","1465-6485","1468-0475","ECONOMICS","('SSCI',)","546","1.2","Q3","0.46","17.65" +"Gynecologic Oncology Reports","2352-5789","2352-5789","OBSTETRICS & GYNECOLOGY","('ESCI',)","1,161","1.2","Q3","0.46","96.45" +"JOURNAL OF AGRICULTURAL AND RESOURCE ECONOMICS","1068-5502","2327-8285","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('SCIE', 'SSCI')","1,111","1.2","('Q3', 'Q3')","0.46","0.00" +"JOURNAL OF BRYOLOGY","0373-6687","1743-2820","PLANT SCIENCES","('SCIE',)","749","1.2","Q3","0.46","3.53" +"JOURNAL OF MANIPULATIVE AND PHYSIOLOGICAL THERAPEUTICS","0161-4754","","('HEALTH CARE SCIENCES & SERVICES', 'INTEGRATIVE & COMPLEMENTARY MEDICINE', 'REHABILITATION')","('SCIE', 'SCIE', 'SCIE')","2,831","1.2","('Q4', 'Q3', 'Q3')","0.46","0.65" +"JOURNAL OF MATHEMATICAL PHYSICS","0022-2488","1089-7658","PHYSICS, MATHEMATICAL","('SCIE',)","19,710","1.2","Q3","0.46","11.20" +"Public Administration and Policy-An Asia-Pacific Journal","1727-2645","2517-679X","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('ESCI', 'ESCI')","138","1.2","('Q3', 'Q3')","0.46","97.26" +"Theoretical Economics","1933-6837","1555-7561","ECONOMICS","('SSCI',)","966","1.2","Q3","0.46","99.35" +"ANNALES DE LA SOCIETE ENTOMOLOGIQUE DE FRANCE","0037-9271","2168-6351","ENTOMOLOGY","('SCIE',)","1,630","1.2","Q3","0.45","1.14" +"Families Systems & Health","1091-7527","1939-0602","('FAMILY STUDIES', 'HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SCIE', 'SCIE, SSCI')","1,057","1.2","('Q3', 'Q4', 'Q4')","0.45","11.68" +"JOURNAL OF DRUG ISSUES","0022-0426","1945-1369","SUBSTANCE ABUSE","('SSCI',)","1,214","1.2","Q4","0.45","16.34" +"Journal of the Turkish-German Gynecological Association","1309-0399","1309-0380","OBSTETRICS & GYNECOLOGY","('ESCI',)","662","1.2","Q3","0.45","99.19" +"Notfall & Rettungsmedizin","1434-6222","1436-0578","EMERGENCY MEDICINE","('SCIE',)","566","1.2","Q3","0.45","40.68" +"Revista Brasileira de Enfermagem","0034-7167","1984-0446","NURSING","('ESCI',)","3,598","1.2","Q3","0.45","94.09" +"Revista da Escola de Enfermagem da USP","0080-6234","1980-220X","NURSING","('SCIE', 'SSCI')","2,094","1.2","Q3","0.45","91.55" +"CANADIAN JOURNAL OF ANIMAL SCIENCE","0008-3984","1918-1825","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","2,662","1.2","Q3","0.44","16.83" +"International Journal of Human Rights in Health Care","2056-4902","2056-4902","HEALTH POLICY & SERVICES","('ESCI',)","368","1.2","Q4","0.44","2.58" +"INTERNATIONAL JOURNAL OF TOXICOLOGY","1091-5818","1092-874X","('PHARMACOLOGY & PHARMACY', 'TOXICOLOGY')","('SCIE', 'SCIE')","2,274","1.2","('Q4', 'Q4')","0.44","8.33" +"Nature Conservation Research","2500-008X","2500-008X","BIODIVERSITY CONSERVATION","('ESCI',)","339","1.2","Q3","0.44","96.88" +"SOCIAL COGNITION","0278-016X","","PSYCHOLOGY, SOCIAL","('SSCI',)","2,606","1.2","Q4","0.44","0.00" +"AIDS CARE-PSYCHOLOGICAL AND SOCIO-MEDICAL ASPECTS OF AIDS/HIV","0954-0121","1360-0451","('HEALTH POLICY & SERVICES', 'PSYCHOLOGY, MULTIDISCIPLINARY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","6,065","1.2","('Q4', 'Q3', 'Q4', 'Q4')","0.43","15.54" +"Clinical Psychologist","1328-4207","1742-9552","('PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SSCI')","629","1.2","('Q4', 'Q3')","0.43","13.83" +"COMMUNITY DEVELOPMENT JOURNAL","0010-3802","1468-2656","DEVELOPMENT STUDIES","('SSCI',)","1,067","1.2","Q3","0.43","17.91" +"ECONOMIC THEORY","0938-2259","1432-0479","ECONOMICS","('SSCI',)","2,317","1.2","Q3","0.43","27.80" +"Erwerbs-Obstbau","0014-0309","1439-0302","HORTICULTURE","('SCIE',)","873","1.2","Q3","0.43","4.59" +"International Journal of Pharmaceutical and Healthcare Marketing","1750-6123","1750-6131","HEALTH POLICY & SERVICES","('ESCI',)","449","1.2","Q4","0.43","3.03" +"JOURNAL OF ECONOMICS & MANAGEMENT STRATEGY","1058-6407","1530-9134","('ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI')","2,351","1.2","('Q3', 'Q4')","0.43","28.89" +"Journal of Financial Management of Property and Construction","1366-4387","1759-8443","BUSINESS, FINANCE","('ESCI',)","443","1.2","Q3","0.43","1.32" +"REVISTA BRASILEIRA DE PARASITOLOGIA VETERINARIA","0103-846X","1984-2961","('PARASITOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","1,619","1.2","('Q4', 'Q3')","0.43","95.55" +"Survey Methodology","0714-0045","","('SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE')","879","1.2","('Q3', 'Q2')","0.43","0.00" +"ANNALS OF MATHEMATICS AND ARTIFICIAL INTELLIGENCE","1012-2443","1573-7470","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","995","1.2","('Q4', 'Q2')","0.42","37.65" +"Clinics in Colon and Rectal Surgery","1531-0043","1530-9681","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('SCIE', 'SCIE')","1,852","1.2","('Q4', 'Q3')","0.42","0.44" +"FLUCTUATION AND NOISE LETTERS","0219-4775","1793-6780","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","610","1.2","('Q3', 'Q4')","0.42","1.44" +"International Journal of Psychological Research","2011-7922","2011-2084","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","652","1.2","Q3","0.42","98.36" +"Journal of Naval Architecture and Marine Engineering","1813-8535","2070-8998","ENGINEERING, MARINE","('ESCI',)","202","1.2","Q3","0.42","36.17" +"Journal of Perioperative Practice","1750-4589","2515-7949","SURGERY","('ESCI',)","431","1.2","Q3","0.42","15.89" +"NURSING ECONOMICS","0746-1739","","NURSING","('SCIE', 'SSCI')","568","1.2","Q3","0.42","0.00" +"PUBLISHING RESEARCH QUARTERLY","1053-8801","1936-4792","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","360","1.2","Q3","0.42","23.33" +"Rudarsko-Geolosko-Naftni Zbornik","0353-4529","1849-0409","('GEOSCIENCES, MULTIDISCIPLINARY', 'MINING & MINERAL PROCESSING')","('ESCI', 'ESCI')","446","1.2","('Q3', 'Q3')","0.42","98.95" +"Translational Sports Medicine","","2573-8488","SPORT SCIENCES","('ESCI',)","309","1.2","Q3","0.42","79.84" +"ACTA SCIENTIARUM-AGRONOMY","1679-9275","1807-8621","AGRONOMY","('SCIE',)","1,150","1.2","Q3","0.41","100.00" +"Advances in Accounting","0882-6110","1046-5715","BUSINESS, FINANCE","('ESCI',)","909","1.2","Q3","0.41","2.63" +"Advances in Integrative Medicine","2212-9588","2212-9596","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","234","1.2","Q3","0.41","4.17" +"AMERICAN JOURNAL OF CLINICAL HYPNOSIS","0002-9157","2160-0562","PSYCHOLOGY, CLINICAL","('SSCI',)","550","1.2","Q3","0.41","4.94" +"Annual Plant Reviews Online","","2639-3832","PLANT SCIENCES","('ESCI',)","413","1.2","Q3","0.41","0.00" +"Bulletin of the Polish Academy of Sciences-Technical Sciences","0239-7528","2300-1917","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","1,484","1.2","Q3","0.41","97.01" +"COMMUNITY ECOLOGY","1585-8553","1588-2756","ECOLOGY","('SCIE',)","852","1.2","Q4","0.41","15.63" +"Geological Field Trips and Maps","2611-6189","2611-6189","GEOLOGY","('ESCI',)","26","1.2","Q2","0.41","0.00" +"HIGH PRESSURE RESEARCH","0895-7959","1477-2299","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","1,640","1.2","Q3","0.41","12.33" +"Journal of Applied Mathematics","1110-757X","1687-0042","('MATHEMATICS, APPLIED', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('ESCI', 'ESCI')","2,273","1.2","('Q2', 'Q3')","0.41","100.00" +"JOURNAL OF COMPUTER SCIENCE AND TECHNOLOGY","1000-9000","1860-4749","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","1,518","1.2","('Q4', 'Q3')","0.41","0.77" +"Journal of Individual Differences","1614-0001","2151-2299","PSYCHOLOGY, SOCIAL","('SSCI',)","888","1.2","Q4","0.41","15.29" +"Journal of Pharmacy & Pharmacognosy Research","0719-4250","0719-4250","PHARMACOLOGY & PHARMACY","('ESCI',)","411","1.2","Q4","0.41","48.25" +"Journal of the Geographical Institute Jovan Cvijic SASA","0350-7599","1821-2808","GEOGRAPHY","('ESCI',)","218","1.2","Q3","0.41","98.65" +"JOURNAL OF TIME SERIES ANALYSIS","0143-9782","1467-9892","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","2,222","1.2","('Q3', 'Q2')","0.41","26.50" +"New Medit","1594-5685","2611-1128","('AGRICULTURAL ECONOMICS & POLICY', 'AGRICULTURE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","457","1.2","('Q3', 'Q2')","0.41","90.83" +"ACM Transactions on Spatial Algorithms and Systems","2374-0353","2374-0361","REMOTE SENSING","('ESCI',)","267","1.2","Q4","0.40","5.00" +"APPLIED ECONOMICS LETTERS","1350-4851","1466-4291","ECONOMICS","('SSCI',)","5,809","1.2","Q3","0.40","6.63" +"Hemodialysis International","1492-7535","1542-4758","UROLOGY & NEPHROLOGY","('SCIE',)","1,699","1.2","Q3","0.40","19.37" +"International Journal of Technology","2086-9614","2087-2100","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","1,411","1.2","Q3","0.40","94.47" +"ISJ-Invertebrate Survival Journal","1824-307X","","('IMMUNOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","536","1.2","('Q4', 'Q2')","0.40","0.00" +"Journal of Environmental Science and Health Part C-Toxicology and Carcinogenesis","2689-6583","2689-6591","('ENVIRONMENTAL SCIENCES', 'ONCOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","101","1.2","('Q4', 'Q4', 'Q4')","0.40","2.33" +"JOURNAL OF THE PHILOSOPHY OF SPORT","0094-8705","1543-2939","('ETHICS', 'HOSPITALITY, LEISURE, SPORT & TOURISM')","('SSCI', 'SSCI')","609","1.2","('Q3', 'Q3')","0.40","27.54" +"REC-Interventional Cardiology","2604-7306","2604-7276","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","133","1.2","Q3","0.40","91.11" +"Turkish Journal Of Medical Sciences","1300-0144","1303-6165","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,360","1.2","Q2","0.40","6.73" +"ANNALS OF GEOPHYSICS","1593-5213","2037-416X","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","1,611","1.2","Q3","0.39","92.14" +"Archives of Mining Sciences","0860-7001","1689-0469","MINING & MINERAL PROCESSING","('SCIE',)","696","1.2","Q3","0.39","1.64" +"Canadian Journal of Urology","1195-9479","","UROLOGY & NEPHROLOGY","('SCIE',)","1,075","1.2","Q3","0.39","0.00" +"Constellations-An International Journal of Critical and Democratic Theory","1351-0487","1467-8675","POLITICAL SCIENCE","('ESCI',)","1,155","1.2","Q3","0.39","47.29" +"European Journal of Education and Psychology","1888-8992","1989-2209","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","265","1.2","Q4","0.39","94.59" +"International Review of Environmental and Resource Economics","1932-1465","1932-1473","ECONOMICS","('ESCI',)","361","1.2","Q3","0.39","0.00" +"Journal of Current Ophthalmology","2452-2325","2452-2325","OPHTHALMOLOGY","('ESCI',)","758","1.2","Q3","0.39","64.63" +"JOURNAL OF HERBS SPICES AND MEDICINAL PLANTS","1049-6475","1540-3580","('PHARMACOLOGY & PHARMACY', 'PLANT SCIENCES')","('ESCI', 'ESCI')","632","1.2","('Q4', 'Q3')","0.39","2.00" +"Journal of Hunger & Environmental Nutrition","1932-0248","1932-0256","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","1,056","1.2","Q4","0.39","7.62" +"JOURNAL OF MODERN OPTICS","0950-0340","1362-3044","OPTICS","('SCIE',)","4,737","1.2","Q4","0.39","2.39" +"JOURNAL OF MONEY CREDIT AND BANKING","0022-2879","1538-4616","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","5,806","1.2","('Q3', 'Q3')","0.39","21.75" +"Journal of Skin Cancer","2090-2905","2090-2913","DERMATOLOGY","('ESCI',)","268","1.2","Q3","0.39","100.00" +"Ocean Science Journal","1738-5261","2005-7172","('MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","792","1.2","('Q3', 'Q4')","0.39","4.27" +"PROCEEDINGS OF THE INSTITUTION OF CIVIL ENGINEERS-STRUCTURES AND BUILDINGS","0965-0911","1751-7702","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","1,483","1.2","('Q3', 'Q3')","0.39","0.78" +"PROCESAMIENTO DEL LENGUAJE NATURAL","1135-5948","1989-7553","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'LINGUISTICS')","('ESCI', 'ESCI')","237","1.2","('Q4', 'Q2')","0.39","0.00" +"STROJNISKI VESTNIK-JOURNAL OF MECHANICAL ENGINEERING","0039-2480","","ENGINEERING, MECHANICAL","('SCIE',)","1,103","1.2","Q3","0.39","98.80" +"Actas Urologicas Espanolas","0210-4806","1699-7980","UROLOGY & NEPHROLOGY","('SCIE',)","950","1.2","Q3","0.38","0.41" +"Australasian Psychiatry","1039-8562","1440-1665","PSYCHIATRY","('SCIE', 'SSCI')","1,919","1.2","Q4","0.38","20.89" +"BIOCHEMISTRY AND MOLECULAR BIOLOGY EDUCATION","1470-8175","1539-3429","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('SCIE', 'SCIE')","1,386","1.2","('Q4', 'Q3')","0.38","24.31" +"Investigaciones sobre Lectura","2340-8685","2340-8685","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('ESCI', 'ESCI')","96","1.2","('Q2', 'Q2')","0.38","87.50" +"Investment Analysts Journal","1029-3523","2077-0227","BUSINESS, FINANCE","('SSCI',)","242","1.2","Q3","0.38","1.52" +"Journal of Emerging Market Finance","0972-6527","0973-0710","BUSINESS, FINANCE","('ESCI',)","257","1.2","Q3","0.38","3.92" +"NEW ZEALAND JOURNAL OF CROP AND HORTICULTURAL SCIENCE","0114-0671","1175-8783","('AGRONOMY', 'HORTICULTURE')","('SCIE', 'SCIE')","1,180","1.2","('Q3', 'Q3')","0.38","6.62" +"REVIEW OF POLITICAL ECONOMY","0953-8259","1465-3982","ECONOMICS","('ESCI',)","913","1.2","Q3","0.38","16.51" +"Revista Eureka sobre Ensenanza y Divulgacion de las Ciencias","1697-011X","1697-011X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","479","1.2","Q2","0.38","95.24" +"SCANDINAVIAN CARDIOVASCULAR JOURNAL","1401-7431","1651-2006","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,043","1.2","Q3","0.38","80.67" +"STATISTICS","0233-1888","1029-4910","STATISTICS & PROBABILITY","('SCIE',)","1,522","1.2","Q2","0.38","3.06" +"Theoretical Ecology","1874-1738","1874-1746","ECOLOGY","('SCIE',)","880","1.2","Q4","0.38","40.51" +"Urban Forum","1015-3802","1874-6330","URBAN STUDIES","('ESCI',)","619","1.2","Q3","0.38","40.63" +"Adaptive Human Behavior and Physiology","2198-7335","2198-7335","PSYCHOLOGY, BIOLOGICAL","('ESCI',)","362","1.2","Q3","0.37","29.41" +"Baltic Journal of Economics","1406-099X","2334-4385","ECONOMICS","('SSCI',)","145","1.2","Q3","0.37","100.00" +"CHROMATOGRAPHIA","0009-5893","1612-1112","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE')","4,068","1.2","('Q4', 'Q4')","0.37","11.07" +"Clinical Practice in Pediatric Psychology","2169-4826","2169-4834","('PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, DEVELOPMENTAL')","('ESCI', 'ESCI')","478","1.2","('Q3', 'Q4')","0.37","4.10" +"Computer Science and Information Systems","1820-0214","1820-0214","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","530","1.2","('Q4', 'Q3')","0.37","99.55" +"International Journal of Indigenous Health","2291-9368","2291-9376","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","352","1.2","Q4","0.37","86.96" +"International Journal of Knowledge Management","1548-0666","1548-0658","MANAGEMENT","('ESCI',)","259","1.2","Q4","0.37","98.33" +"International Journal of Managerial and Financial Accounting","1753-6715","1753-6723","BUSINESS, FINANCE","('ESCI',)","214","1.2","Q3","0.37","0.00" +"Italian Economic Journal","2199-322X","2199-3238","ECONOMICS","('ESCI',)","226","1.2","Q3","0.37","52.99" +"JOURNAL FRANCAIS D OPHTALMOLOGIE","0181-5512","1773-0597","OPHTHALMOLOGY","('SCIE',)","1,601","1.2","Q3","0.37","21.54" +"Journal of Industrial and Management Optimization","1547-5816","1553-166X","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE', 'SCIE')","1,867","1.2","('Q3', 'Q3', 'Q4')","0.37","99.62" +"PHYSICS AND CHEMISTRY OF MINERALS","0342-1791","1432-2021","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MINERALOGY')","('SCIE', 'SCIE')","3,603","1.2","('Q4', 'Q3')","0.37","37.01" +"POLITICAL SCIENCE","0032-3187","2041-0611","POLITICAL SCIENCE","('SSCI',)","249","1.2","Q3","0.37","26.83" +"Review of Financial Economics","1058-3300","1873-5924","BUSINESS, FINANCE","('ESCI',)","722","1.2","Q3","0.37","26.67" +"AdComunica-Revista Cientifica de Estrategias Tendencias e Innovacion en Communicacion","2174-0992","2254-2728","COMMUNICATION","('ESCI',)","156","1.2","Q3","0.36","93.24" +"Annals of Occupational and Environmental Medicine","2052-4374","2052-4374","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","768","1.2","Q4","0.36","98.41" +"eCancerMedicalScience","1754-6605","1754-6605","ONCOLOGY","('ESCI',)","2,158","1.2","Q4","0.36","96.95" +"FME Transactions","1451-2092","2406-128X","ENGINEERING, MECHANICAL","('ESCI',)","834","1.2","Q3","0.36","100.00" +"FOUNDATIONS OF PHYSICS","0015-9018","1572-9516","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","2,576","1.2","Q3","0.36","29.90" +"HISPANIC JOURNAL OF BEHAVIORAL SCIENCES","0739-9863","1552-6364","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,406","1.2","Q3","0.36","7.50" +"Journal of Cognitive Psychology","2044-5911","2044-592X","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","1,395","1.2","Q4","0.36","20.00" +"Journal of Economic Integration","1225-651X","1976-5525","ECONOMICS","('ESCI',)","512","1.2","Q3","0.36","100.00" +"Journal of Electrical and Computer Engineering","2090-0147","2090-0155","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","1,088","1.2","Q4","0.36","100.00" +"Journal of Pharmaceutical Health Care and Sciences","2055-0294","2055-0294","PHARMACOLOGY & PHARMACY","('ESCI',)","400","1.2","Q4","0.36","100.00" +"MILITARY MEDICINE","0026-4075","1930-613X","MEDICINE, GENERAL & INTERNAL","('SCIE',)","7,257","1.2","Q2","0.36","55.70" +"OPHTHALMIC GENETICS","1381-6810","1744-5094","('GENETICS & HEREDITY', 'OPHTHALMOLOGY')","('SCIE', 'SCIE')","1,366","1.2","('Q4', 'Q3')","0.36","12.13" +"Papers in Physics","1852-4249","1852-4249","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","83","1.2","Q3","0.36","88.89" +"Quality Management in Health Care","1063-8628","1550-5154","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","524","1.2","('Q4', 'Q4')","0.36","9.62" +"Biopreservation and Biobanking","1947-5535","1947-5543","('CELL BIOLOGY', 'MEDICAL LABORATORY TECHNOLOGY')","('SCIE', 'SCIE')","1,200","1.2","('Q4', 'Q3')","0.35","9.01" +"Bradleya","0265-086X","0265-086X","PLANT SCIENCES","('SCIE',)","363","1.2","Q3","0.35","0.00" +"CIENCIA E AGROTECNOLOGIA","1413-7054","1981-1829","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","1,702","1.2","Q2","0.35","90.00" +"Epidemiologia & Prevenzione","1120-9763","2385-1937","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","706","1.2","Q4","0.35","0.00" +"Index Comunicacion","2444-3239","2174-1859","COMMUNICATION","('ESCI',)","136","1.2","Q3","0.35","92.11" +"International Heart Journal","1349-2365","1349-3299","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","2,254","1.2","Q3","0.35","100.00" +"Journal of Mid-life Health","0976-7800","0976-7819","OBSTETRICS & GYNECOLOGY","('ESCI',)","607","1.2","Q3","0.35","99.35" +"LogForum","1895-2038","1734-459X","MANAGEMENT","('ESCI',)","348","1.2","Q4","0.35","86.40" +"Neurointervention","2093-9043","2233-6273","CLINICAL NEUROLOGY","('ESCI',)","284","1.2","Q4","0.35","100.00" +"Romanian Journal of Physics","1221-146X","1221-146X","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","869","1.2","Q3","0.35","0.00" +"SHOCK AND VIBRATION","1070-9622","1875-9203","('ACOUSTICS', 'ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","6,792","1.2","('Q3', 'Q3', 'Q4')","0.35","99.24" +"THEORETICAL POPULATION BIOLOGY","0040-5809","1096-0325","('ECOLOGY', 'EVOLUTIONARY BIOLOGY', 'GENETICS & HEREDITY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","3,616","1.2","('Q4', 'Q4', 'Q4', 'Q4')","0.35","54.55" +"Academic Pathology","2374-2895","2374-2895","PATHOLOGY","('ESCI',)","416","1.2","Q3","0.34","97.28" +"AFRICAN ENTOMOLOGY","1021-3589","2254-8854","ENTOMOLOGY","('SCIE',)","971","1.2","Q3","0.34","36.88" +"CALIFORNIA AGRICULTURE","0008-0845","2160-8091","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","794","1.2","Q2","0.34","84.21" +"Current Rheumatology Reviews","1573-3971","1875-6360","RHEUMATOLOGY","('ESCI',)","661","1.2","Q4","0.34","1.67" +"Journal of Dynamic Behavior of Materials","2199-7446","2199-7454","('MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('ESCI', 'ESCI', 'ESCI')","505","1.2","('Q3', 'Q4', 'Q4')","0.34","19.44" +"JOURNAL OF GENERAL MANAGEMENT","0306-3070","1759-6106","MANAGEMENT","('ESCI',)","594","1.2","Q4","0.34","12.14" +"JOURNAL OF HEALTH CARE FOR THE POOR AND UNDERSERVED","1049-2089","1548-6869","('HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","3,572","1.2","('Q4', 'Q4')","0.34","0.48" +"JOURNAL OF NIPPON MEDICAL SCHOOL","1345-4676","1347-3409","MEDICINE, GENERAL & INTERNAL","('SCIE',)","848","1.2","Q2","0.34","96.67" +"Journal of Pharmacopuncture","2093-6966","2234-6856","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","542","1.2","Q3","0.34","99.01" +"KLINISCHE PADIATRIE","0300-8630","1439-3824","PEDIATRICS","('SCIE',)","885","1.2","Q3","0.34","8.82" +"LASER PHYSICS","1054-660X","1555-6611","('OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","2,971","1.2","('Q4', 'Q4')","0.34","1.23" +"PEDIATRIC HEMATOLOGY AND ONCOLOGY","0888-0018","1521-0669","('HEMATOLOGY', 'ONCOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE', 'SCIE')","1,505","1.2","('Q4', 'Q4', 'Q3')","0.34","4.35" +"Psychosis-Psychological Social and Integrative Approaches","1752-2439","1752-2447","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","618","1.2","('Q4', 'Q3')","0.34","30.58" +"Reading Psychology","0270-2711","1521-0685","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","820","1.2","Q4","0.34","7.89" +"Soil Research","1838-675X","1838-6768","SOIL SCIENCE","('SCIE',)","1,830","1.2","Q4","0.34","27.11" +"Entrepreneurship and Sustainability Issues","2345-0282","2345-0282","BUSINESS","('ESCI',)","1,343","1.2","Q4","0.33","87.14" +"European Journal of International Management","1751-6757","1751-6765","MANAGEMENT","('SSCI',)","940","1.2","Q4","0.33","2.09" +"JOURNAL OF APPLIED BOTANY AND FOOD QUALITY","1439-040X","1439-040X","PLANT SCIENCES","('SCIE',)","871","1.2","Q3","0.33","0.00" +"JOURNAL OF THE GEOLOGICAL SOCIETY OF INDIA","0016-7622","0974-6889","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","3,983","1.2","Q3","0.33","0.37" +"KSII Transactions on Internet and Information Systems","1976-7277","1976-7277","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","1,820","1.2","('Q4', 'Q4')","0.33","95.18" +"Marketing and Management of Innovations","2218-4511","2227-6718","MANAGEMENT","('ESCI',)","553","1.2","Q4","0.33","96.05" +"Maternal-Fetal Medicine","2096-6954","2641-5895","OBSTETRICS & GYNECOLOGY","('ESCI',)","153","1.2","Q3","0.33","100.00" +"NEW ZEALAND MEDICAL JOURNAL","0028-8446","1175-8716","MEDICINE, GENERAL & INTERNAL","('ESCI',)","2,980","1.2","Q2","0.33","0.19" +"ORGANIC PREPARATIONS AND PROCEDURES INTERNATIONAL","0030-4948","1945-5453","CHEMISTRY, ORGANIC","('SCIE',)","1,228","1.2","Q4","0.33","0.56" +"Physical Culture and Sport Studies and Research","2081-2221","1899-4849","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","259","1.2","Q3","0.33","98.91" +"RANGELAND JOURNAL","1036-9872","1834-7541","ECOLOGY","('SCIE',)","1,007","1.2","Q4","0.33","45.57" +"Research in Economics","1090-9443","1090-9451","ECONOMICS","('ESCI',)","600","1.2","Q3","0.33","18.89" +"Tourism and Hospitality Management-Croatia","1330-7533","1847-3377","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","405","1.2","Q3","0.33","99.11" +"Africa Journal of Management","2332-2373","2332-2381","MANAGEMENT","('ESCI',)","220","1.2","Q4","0.32","15.63" +"Cellular Reprogramming","2152-4971","2152-4998","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CELL & TISSUE ENGINEERING', 'GENETICS & HEREDITY')","('SCIE', 'SCIE', 'SCIE')","636","1.2","('Q4', 'Q4', 'Q4')","0.32","6.02" +"International Journal of Aeroacoustics","1475-472X","2048-4003","('ACOUSTICS', 'ENGINEERING, AEROSPACE', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","585","1.2","('Q3', 'Q3', 'Q4')","0.32","10.19" +"Journal of Adolescent and Young Adult Oncology","2156-5333","2156-535X","ONCOLOGY","('SCIE',)","1,539","1.2","Q4","0.32","5.02" +"Journal of Practical Ethics","2051-655X","2051-655X","ETHICS","('ESCI',)","55","1.2","Q3","0.32","100.00" +"Psychiatry International","","2673-5318","PSYCHIATRY","('ESCI',)","96","1.2","Q4","0.32","97.87" +"Reumatologia Clinica","1699-258X","1885-1398","RHEUMATOLOGY","('ESCI',)","1,066","1.2","Q4","0.32","3.30" +"REVISTA MEXICANA DE FISICA","0035-001X","0035-001X","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","1,210","1.2","Q3","0.32","91.44" +"Advances in Hospitality and Tourism Research-AHTR","2147-9100","2148-7316","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","162","1.2","Q3","0.31","100.00" +"AUSTRALIAN JOURNAL OF EARTH SCIENCES","0812-0099","1440-0952","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","2,503","1.2","Q3","0.31","24.84" +"BLOOD PRESSURE MONITORING","1359-5237","1473-5725","PERIPHERAL VASCULAR DISEASE","('SCIE',)","1,191","1.2","Q4","0.31","16.67" +"Culture and Organization","1475-9551","1477-2760","MANAGEMENT","('SSCI',)","596","1.2","Q4","0.31","48.48" +"Czech Journal of Genetics and Plant Breeding","1212-1975","1805-9325","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","440","1.2","('Q3', 'Q3')","0.31","98.57" +"Egyptian Journal of Medical Human Genetics","1110-8630","2090-2441","GENETICS & HEREDITY","('ESCI',)","844","1.2","Q4","0.31","100.00" +"Journal of Location Based Services","1748-9725","1748-9733","TELECOMMUNICATIONS","('ESCI',)","207","1.2","Q4","0.31","27.27" +"Mechanics & Industry","2257-7777","2257-7750","('ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE')","834","1.2","('Q3', 'Q4')","0.31","93.70" +"Reumatismo","0048-7449","2240-2683","RHEUMATOLOGY","('ESCI',)","570","1.2","Q4","0.31","93.83" +"Revista da Associacao Medica Brasileira","0104-4230","1806-9282","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,862","1.2","Q2","0.31","97.62" +"Accounting Historians Journal","0148-4184","2327-4468","BUSINESS, FINANCE","('ESCI',)","285","1.2","Q3","0.30","0.00" +"ANALOG INTEGRATED CIRCUITS AND SIGNAL PROCESSING","0925-1030","1573-1979","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","1,946","1.2","('Q4', 'Q4')","0.30","5.05" +"COLOR RESEARCH AND APPLICATION","0361-2317","1520-6378","('CHEMISTRY, APPLIED', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'OPTICS')","('SCIE', 'SCIE', 'SCIE')","2,936","1.2","('Q4', 'Q4', 'Q4')","0.30","16.54" +"CVIR Endovascular","","2520-8934","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PERIPHERAL VASCULAR DISEASE', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('ESCI', 'ESCI', 'ESCI')","445","1.2","('Q3', 'Q4', 'Q3')","0.30","99.51" +"Journal of Real Estate Research","0896-5803","2691-1175","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","768","1.2","('Q3', 'Q3')","0.30","7.41" +"Letters in Drug Design & Discovery","1570-1808","1875-628X","CHEMISTRY, MEDICINAL","('SCIE',)","1,258","1.2","Q4","0.30","1.10" +"METEOROLOGISCHE ZEITSCHRIFT","0941-2948","1610-1227","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","3,497","1.2","Q4","0.30","97.00" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART A-JOURNAL OF POWER AND ENERGY","0957-6509","2041-2967","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","2,474","1.2","('Q3', 'Q3')","0.30","2.13" +"Reports of Practical Oncology and Radiotherapy","1507-1367","2083-4640","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('ESCI', 'ESCI')","1,361","1.2","('Q4', 'Q3')","0.30","5.75" +"RUBBER CHEMISTRY AND TECHNOLOGY","0035-9475","1943-4804","POLYMER SCIENCE","('SCIE',)","3,637","1.2","Q4","0.30","0.00" +"Russian Geology and Geophysics","1068-7971","1878-030X","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","3,066","1.2","Q3","0.30","6.90" +"South African Journal of Economic and Management Sciences","1015-8812","2222-3436","('ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI')","599","1.2","('Q3', 'Q4')","0.30","93.90" +"Boletin de la Asociacion de Geografos Espanoles","0212-9426","2605-3322","GEOGRAPHY","('SSCI',)","722","1.2","Q3","0.29","100.00" +"CHINESE JOURNAL OF CHEMICAL PHYSICS","1674-0068","2327-2244","PHYSICS, ATOMIC, MOLECULAR & CHEMICAL","('SCIE',)","1,149","1.2","Q4","0.29","21.36" +"Cybernetics and Information Technologies","1311-9702","1314-4081","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","505","1.2","Q4","0.29","100.00" +"Economics of Governance","1435-6104","1435-8131","ECONOMICS","('SSCI',)","468","1.2","Q3","0.29","14.81" +"Global Medical Genetics","2699-9404","2699-9404","GENETICS & HEREDITY","('ESCI',)","141","1.2","Q4","0.29","99.22" +"International Journal of Design Creativity and Innovation","2165-0349","2165-0357","ENGINEERING, MANUFACTURING","('ESCI',)","202","1.2","Q4","0.29","36.11" +"Journal of Agricultural Science and Technology","1680-7073","2345-3737","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","2,413","1.2","Q2","0.29","15.26" +"JOURNAL OF CLINICAL ULTRASOUND","0091-2751","1097-0096","('ACOUSTICS', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","2,415","1.2","('Q3', 'Q3')","0.29","8.97" +"Kuwait Journal of Science","2307-4108","2307-4116","MULTIDISCIPLINARY SCIENCES","('SCIE',)","622","1.2","Q3","0.29","28.99" +"PNEUMOLOGIE","0934-8387","1438-8790","RESPIRATORY SYSTEM","('ESCI',)","714","1.2","Q4","0.29","6.49" +"Psychology Society & Education","2171-2085","1989-709X","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","295","1.2","Q3","0.29","56.58" +"Revista Fuentes","2172-7775","2172-7775","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","203","1.2","Q2","0.29","85.56" +"Steel Construction-Design and Research","1867-0520","1867-0539","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","443","1.2","Q3","0.29","37.35" +"SURVEY REVIEW","0039-6265","1752-2706","('ENGINEERING, CIVIL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE')","880","1.2","('Q3', 'Q3', 'Q4')","0.29","4.32" +"Techniques and Innovations in Gastrointestinal Endoscopy","2666-5107","2590-0307","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","152","1.2","Q4","0.29","9.45" +"Traitement du Signal","0765-0019","1958-5608","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","838","1.2","('Q4', 'Q4')","0.29","14.60" +"Advances in Mental Health and Intellectual Disabilities","2044-1282","2044-1290","PSYCHIATRY","('ESCI',)","295","1.2","Q4","0.28","4.17" +"Archives of Electrical Engineering","1427-4221","2300-2506","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","383","1.2","Q4","0.28","94.82" +"CHINESE JOURNAL OF ANALYTICAL CHEMISTRY","0253-3820","1872-2040","CHEMISTRY, ANALYTICAL","('SCIE',)","2,515","1.2","Q4","0.28","9.01" +"CLIMATE RESEARCH","0936-577X","1616-1572","('ENVIRONMENTAL SCIENCES', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE')","4,611","1.2","('Q4', 'Q4')","0.28","29.29" +"COMPTES RENDUS CHIMIE","1631-0748","1878-1543","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","3,622","1.2","Q3","0.28","99.39" +"CYTOPATHOLOGY","0956-5507","1365-2303","('CELL BIOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","1,286","1.2","('Q4', 'Q3')","0.28","13.95" +"Economics and Business Review","2392-1641","2450-0097","ECONOMICS","('ESCI',)","152","1.2","Q3","0.28","89.87" +"FORESTRY CHRONICLE","0015-7546","1499-9315","FORESTRY","('SCIE',)","1,295","1.2","Q3","0.28","59.65" +"International Journal of Advances in Engineering Sciences and Applied Mathematics","0975-0770","0975-5616","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","241","1.2","Q3","0.28","8.24" +"International Journal of Antennas and Propagation","1687-5869","1687-5877","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","2,032","1.2","('Q4', 'Q4')","0.28","99.53" +"JOURNAL OF CARBOHYDRATE CHEMISTRY","0732-8303","1532-2327","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","683","1.2","('Q4', 'Q4')","0.28","0.00" +"Journal of Macromolecular Science Part B-Physics","0022-2348","1525-609X","POLYMER SCIENCE","('SCIE',)","2,133","1.2","Q4","0.28","0.43" +"Obstetrician & Gynaecologist","1467-2561","1744-4667","OBSTETRICS & GYNECOLOGY","('ESCI',)","472","1.2","Q3","0.28","14.29" +"Plant Genetic Resources-Characterization and Utilization","1479-2621","1479-263X","PLANT SCIENCES","('SCIE',)","1,024","1.2","Q3","0.28","6.60" +"South African Journal of Information Management","2078-1865","1560-683X","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","333","1.2","Q3","0.28","97.67" +"TRANSACTIONS OF THE INSTITUTE OF METAL FINISHING","0020-2967","1745-9192","('ELECTROCHEMISTRY', 'MATERIALS SCIENCE, COATINGS & FILMS', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE', 'SCIE')","999","1.2","('Q4', 'Q4', 'Q3')","0.28","6.06" +"Archive of Mechanical Engineering","0004-0738","2300-1895","ENGINEERING, MECHANICAL","('ESCI',)","272","1.2","Q3","0.27","98.81" +"CANADIAN JOURNAL OF ADMINISTRATIVE SCIENCES-REVUE CANADIENNE DES SCIENCES DE L ADMINISTRATION","0825-0383","1936-4490","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","1,100","1.2","('Q4', 'Q4')","0.27","6.06" +"Frattura ed Integrita Strutturale-Fracture and Structural Integrity","","1971-8993","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","1,138","1.2","Q4","0.27","90.83" +"Journal Of Cardiovascular and Thoracic Research","2008-5117","2008-6830","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","589","1.2","Q3","0.27","93.48" +"JOURNAL OF ELECTROMAGNETIC WAVES AND APPLICATIONS","0920-5071","1569-3937","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","2,276","1.2","('Q4', 'Q4')","0.27","1.28" +"Journal of Rubber Research","1511-1768","2524-3993","POLYMER SCIENCE","('SCIE',)","395","1.2","Q4","0.27","6.58" +"Jove-Journal of Visualized Experiments","1940-087X","1940-087X","MULTIDISCIPLINARY SCIENCES","('SCIE',)","23,221","1.2","Q3","0.27","0.64" +"Neurosciences","1319-6138","1658-3183","CLINICAL NEUROLOGY","('SCIE',)","834","1.2","Q4","0.27","100.00" +"Rheumatology & Autoimmunity","2767-1410","2767-1429","('IMMUNOLOGY', 'RHEUMATOLOGY')","('ESCI', 'ESCI')","49","1.2","('Q4', 'Q4')","0.27","89.23" +"International Journal of Sustainable Agricultural Management and Informatics","2054-5819","2054-5827","('AGRICULTURE, MULTIDISCIPLINARY', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","140","1.2","('Q2', 'Q4', 'Q4')","0.26","0.00" +"Journal of Water Management Modeling","2292-6062","2292-6062","WATER RESOURCES","('ESCI',)","186","1.2","Q4","0.26","94.44" +"Retos-Nuevas Tendencias en Educacion Fisica Deporte y Recreacion","1579-1726","1988-2041","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","2,349","1.2","Q3","0.26","29.72" +"SA Journal of Human Resource Management","1683-7584","2071-078X","MANAGEMENT","('ESCI',)","626","1.2","Q4","0.26","96.36" +"Studies in Informatics and Control","1220-1766","","('AUTOMATION & CONTROL SYSTEMS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","426","1.2","('Q4', 'Q4')","0.26","0.00" +"BLOOD COAGULATION & FIBRINOLYSIS","0957-5235","1473-5733","HEMATOLOGY","('SCIE',)","2,359","1.2","Q4","0.25","7.95" +"EuroBiotech Journal","","2564-615X","MULTIDISCIPLINARY SCIENCES","('ESCI',)","188","1.2","Q3","0.25","98.11" +"Hepatology Forum","1307-5888","2757-7392","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","111","1.2","Q4","0.25","2.56" +"Iranian Journal of Allergy Asthma and Immunology","1735-1502","1735-5249","('ALLERGY', 'IMMUNOLOGY')","('SCIE', 'SCIE')","908","1.2","('Q4', 'Q4')","0.25","99.05" +"Journal of Applied Geodesy","1862-9016","1862-9024","REMOTE SENSING","('ESCI',)","368","1.2","Q4","0.25","16.81" +"Malawi Medical Journal","1995-7262","1995-7270","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","1,318","1.2","Q4","0.25","90.98" +"REVUE D EPIDEMIOLOGIE ET DE SANTE PUBLIQUE","0398-7620","1773-0627","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","856","1.2","Q4","0.25","31.73" +"Business Systems Research Journal","1847-8344","1847-9375","BUSINESS","('ESCI',)","216","1.2","Q4","0.24","100.00" +"Clinical Medicine & Research","1539-4182","1554-6179","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,141","1.2","Q2","0.24","100.00" +"CZECH JOURNAL OF FOOD SCIENCES","1212-1800","1805-9317","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","1,913","1.2","Q4","0.24","91.30" +"Hipertension y Riesgo Vascular","1889-1837","1989-4805","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PERIPHERAL VASCULAR DISEASE')","('ESCI', 'ESCI')","161","1.2","('Q3', 'Q4')","0.24","5.63" +"Journal of Sedimentary Environments","2662-5571","2447-9462","ENVIRONMENTAL SCIENCES","('ESCI',)","263","1.2","Q4","0.24","2.56" +"JOURNAL OF STRUCTURAL CHEMISTRY","0022-4766","1573-8779","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, PHYSICAL')","('SCIE', 'SCIE')","2,306","1.2","('Q4', 'Q4')","0.24","0.00" +"MATERIALS TRANSACTIONS","1345-9678","1347-5320","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","10,774","1.2","('Q4', 'Q3')","0.24","1.46" +"Middle East Journal of Management","2050-3636","2050-3644","MANAGEMENT","('ESCI',)","184","1.2","Q4","0.24","0.00" +"Periodico di Mineralogia","0369-8963","2239-1002","('GEOCHEMISTRY & GEOPHYSICS', 'MINERALOGY')","('SCIE', 'SCIE')","449","1.2","('Q3', 'Q3')","0.24","0.00" +"Recent Advances in Inflammation & Allergy Drug Discovery","2772-2708","2772-2716","PHARMACOLOGY & PHARMACY","('ESCI',)","30","1.2","Q4","0.24","0.00" +"ACTA CHIMICA SLOVENICA","1318-0207","1580-3155","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","1,803","1.2","Q3","0.23","90.94" +"Asian Academy of Management Journal","1394-2603","1985-8280","MANAGEMENT","('ESCI',)","290","1.2","Q4","0.23","98.48" +"Baghdad Science Journal","2078-8665","2411-7986","MULTIDISCIPLINARY SCIENCES","('ESCI',)","1,037","1.2","Q3","0.23","97.61" +"Forensische Psychiatrie Psychologie Kriminologie","1862-7072","1862-7080","PSYCHIATRY","('ESCI',)","328","1.2","Q4","0.23","69.23" +"Gravitation & Cosmology","0202-2893","1995-0721","ASTRONOMY & ASTROPHYSICS","('SCIE',)","710","1.2","Q3","0.23","0.00" +"Innovative Marketing","1814-2427","1816-6326","BUSINESS","('ESCI',)","383","1.2","Q4","0.23","99.53" +"International Journal of Masonry Research and Innovation","2056-9459","2056-9467","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","184","1.2","Q3","0.23","1.20" +"International Journal Of Recycling of Organic Waste in Agriculture","2195-3228","2251-7715","ENVIRONMENTAL SCIENCES","('ESCI',)","1,088","1.2","Q4","0.23","0.00" +"Journal of Oil Palm Research","","2811-4701","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","898","1.2","Q4","0.23","100.00" +"MATERIALWISSENSCHAFT UND WERKSTOFFTECHNIK","0933-5137","1521-4052","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","1,588","1.2","Q4","0.23","14.67" +"MERRILL-PALMER QUARTERLY-JOURNAL OF DEVELOPMENTAL PSYCHOLOGY","0272-930X","1535-0266","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","1,548","1.2","Q4","0.23","0.00" +"PHILOSOPHICAL MAGAZINE LETTERS","0950-0839","1362-3036","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,901","1.2","('Q4', 'Q3', 'Q4', 'Q4')","0.23","14.29" +"Romanian Journal of Morphology and Embryology","1220-0522","2066-8279","DEVELOPMENTAL BIOLOGY","('SCIE',)","1,937","1.2","Q4","0.23","99.21" +"World Cancer Research Journal","2372-3416","2372-3416","ONCOLOGY","('ESCI',)","325","1.2","Q4","0.23","0.00" +"Chalcogenide Letters","1584-8663","1584-8663","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","927","1.2","('Q4', 'Q4')","0.22","0.00" +"e-Informatica Software Engineering Journal","1897-7979","2084-4840","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","92","1.2","Q3","0.22","88.00" +"Functional Materials Letters","1793-6047","1793-7213","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","1,133","1.2","Q4","0.22","1.34" +"Journal of Applied Glycoscience","1344-7882","1880-7291","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","313","1.2","Q4","0.22","100.00" +"NATIONAL ACADEMY SCIENCE LETTERS-INDIA","0250-541X","2250-1754","MULTIDISCIPLINARY SCIENCES","('SCIE',)","988","1.2","Q3","0.22","1.05" +"Nutricion Hospitalaria","0212-1611","1699-5198","NUTRITION & DIETETICS","('SCIE',)","4,390","1.2","Q4","0.22","93.03" +"South African Family Practice","2078-6190","2078-6204","MEDICINE, GENERAL & INTERNAL","('ESCI',)","748","1.2","Q2","0.22","97.24" +"Turkish Journal of Electrical Engineering and Computer Sciences","1300-0632","1303-6203","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","1,927","1.2","('Q4', 'Q4')","0.22","1.35" +"Chinese Journal of Chromatography","1000-8713","1000-8713","CHEMISTRY, ANALYTICAL","('ESCI',)","962","1.2","Q4","0.21","46.35" +"Medwave","0717-6384","0717-6384","MEDICINE, GENERAL & INTERNAL","('ESCI',)","492","1.2","Q2","0.21","84.76" +"Analytical & Bioanalytical Electrochemistry","2008-4226","2008-4226","ELECTROCHEMISTRY","('ESCI',)","737","1.2","Q4","0.20","0.00" +"ARO-The Scientific Journal of Koya University","2307-549X","2410-9355","MULTIDISCIPLINARY SCIENCES","('ESCI',)","166","1.2","Q3","0.20","100.00" +"Cognitive Computation and Systems","","2517-7567","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ROBOTICS')","('ESCI', 'ESCI')","112","1.2","('Q4', 'Q4')","0.20","81.32" +"International Journal for Quality Research","1800-6450","1800-7473","ENGINEERING, INDUSTRIAL","('ESCI',)","618","1.2","Q4","0.20","96.39" +"INTERNATIONAL JOURNAL OF COMPUTER APPLICATIONS IN TECHNOLOGY","0952-8091","1741-5047","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","675","1.2","Q4","0.20","0.00" +"JOURNAL OF AQUATIC PLANT MANAGEMENT","0146-6623","0146-6623","('MARINE & FRESHWATER BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","492","1.2","('Q3', 'Q3')","0.20","0.00" +"PHYSICS AND CHEMISTRY OF LIQUIDS","0031-9104","1029-0451","('CHEMISTRY, PHYSICAL', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","1,216","1.2","('Q4', 'Q4')","0.20","0.68" +"Acta Epileptologica","2096-9384","2524-4434","CLINICAL NEUROLOGY","('ESCI',)","126","1.2","Q4","0.19","100.00" +"Clinical and Investigative Medicine","0147-958X","1488-2353","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","913","1.2","Q4","0.19","0.00" +"HEMOGLOBIN","0363-0269","1532-432X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'HEMATOLOGY')","('SCIE', 'SCIE')","1,298","1.2","('Q4', 'Q4')","0.19","2.78" +"International Journal of Chemical Reactor Engineering","2194-5748","1542-6580","ENGINEERING, CHEMICAL","('SCIE',)","1,695","1.2","Q4","0.19","2.31" +"International Journal of Nano Dimension","2008-8868","2228-5059","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","503","1.2","Q4","0.19","0.00" +"Journal of the ASABE","2769-3295","2769-3287","AGRICULTURAL ENGINEERING","('SCIE',)","175","1.2","Q3","0.18","0.40" +"Proceedings of the Indian National Science Academy","0370-0046","2454-9983","MULTIDISCIPLINARY SCIENCES","('ESCI',)","707","1.2","Q3","0.18","2.84" +"SURFACE REVIEW AND LETTERS","0218-625X","1793-6667","('CHEMISTRY, PHYSICAL', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","1,723","1.2","('Q4', 'Q4')","0.18","0.55" +"Journal of Physical Science","1675-3402","2180-4230","MULTIDISCIPLINARY SCIENCES","('ESCI',)","642","1.2","Q3","0.17","93.06" +"Journal of Thermal Science and Technology","1880-5566","1880-5566","THERMODYNAMICS","('SCIE',)","453","1.2","Q3","0.17","93.51" +"Revista INVI","0718-1299","0718-8358","URBAN STUDIES","('ESCI',)","374","1.2","Q3","0.17","100.00" +"Applied Science and Convergence Technology","2288-6559","2288-6559","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('ESCI', 'ESCI')","306","1.2","('Q4', 'Q4')","0.16","100.00" +"Journal of Superhard Materials","1063-4576","1934-9408","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","628","1.2","Q4","0.16","0.00" +"TENSIDE SURFACTANTS DETERGENTS","0932-3414","2195-8564","('CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE', 'SCIE')","658","1.2","('Q4', 'Q4', 'Q4')","0.16","3.47" +"Hydrologie und Wasserbewirtschaftung","1439-1783","","WATER RESOURCES","('SCIE',)","101","1.2","Q4","0.15","3.13" +"Journal of East-West Business","1066-9868","1528-6959","BUSINESS","('ESCI',)","246","1.2","Q4","0.15","5.45" +"Detritus","2611-4127","2611-4135","ENGINEERING, ENVIRONMENTAL","('ESCI',)","411","1.2","Q4","0.13","96.00" +"INTERNATIONAL JOURNAL OF INDUSTRIAL ENGINEERING-THEORY APPLICATIONS AND PRACTICE","1072-4761","1943-670X","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING')","('SCIE', 'SCIE')","534","1.2","('Q4', 'Q4')","0.13","0.53" +"3C Empresa","2254-3376","2254-3376","BUSINESS","('ESCI',)","92","1.2","Q4","0.11","98.95" +"Economia-Journal of the Latin American and Caribbean Economic Association","","1533-6239","ECONOMICS","('ESCI',)","236","1.2","Q3","0.07","53.85" +"TIDSSKRIFT FOR DEN NORSKE LAEGEFORENING","0029-2001","0807-7096","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,277","1.2","Q2","0.06","17.46" +"ARCHAEOLOGY IN OCEANIA","0728-4896","1834-4453","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","538","1.1","('Q2', 'N/A')","5.24","43.40" +"HISTORY AND THEORY","0018-2656","1468-2303","HISTORY","('AHCI', 'SSCI')","1,653","1.1","Q1","3.95","37.07" +"WILLIAM AND MARY QUARTERLY","0043-5597","1933-7698","HISTORY","('AHCI',)","1,519","1.1","Q1","3.28","0.00" +"JOURNAL OF AMERICAN HISTORY","0021-8723","1945-2314","HISTORY","('AHCI', 'SSCI')","1,967","1.1","Q1","3.18","0.00" +"SOCIAL HISTORY","0307-1022","1470-1200","HISTORY","('AHCI',)","540","1.1","Q1","2.96","50.98" +"Twentieth Century British History","0955-2359","1477-4674","HISTORY","('AHCI',)","495","1.1","Q1","2.86","48.75" +"Art & Perception","2213-4905","2213-4913","ART","('ESCI',)","101","1.1","","2.43","28.57" +"Cogent Arts & Humanities","2331-1983","2331-1983","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","465","1.1","","2.38","96.48" +"PHILOSOPHICAL STUDIES","0031-8116","1573-0883","PHILOSOPHY","('AHCI',)","5,365","1.1","","1.97","44.27" +"Scientia et Fides","2300-7648","2353-5636","RELIGION","('ESCI',)","115","1.1","","1.94","100.00" +"JOURNAL OF THE BRITISH SOCIETY FOR PHENOMENOLOGY","0007-1773","2332-0486","PHILOSOPHY","('AHCI',)","256","1.1","","1.91","19.35" +"PHILOSOPHICAL QUARTERLY","0031-8094","1467-9213","PHILOSOPHY","('AHCI',)","1,648","1.1","","1.81","27.27" +"Rhetoric Society Quarterly","0277-3945","1930-322X","('COMMUNICATION', 'LITERATURE', 'PHILOSOPHY')","('SSCI', 'AHCI', 'AHCI')","523","1.1","('Q3', 'N/A', 'N/A')","1.77","8.18" +"Journal of Religious Education","1442-018X","2199-4625","RELIGION","('ESCI',)","126","1.1","","1.61","51.35" +"COMPARATIVE STUDIES IN SOCIETY AND HISTORY","0010-4175","1475-2999","('ANTHROPOLOGY', 'HISTORY', 'SOCIOLOGY')","('SSCI', 'AHCI, SSCI', 'SSCI')","2,559","1.1","('Q2', 'Q1', 'Q3')","1.56","66.06" +"ANALYSIS","0003-2638","1467-8284","PHILOSOPHY","('AHCI',)","2,163","1.1","","1.53","24.86" +"INTERNATIONAL JOURNAL OF ART & DESIGN EDUCATION","1476-8062","1476-8070","('ART', 'EDUCATION & EDUCATIONAL RESEARCH')","('AHCI', 'SSCI')","548","1.1","('N/A', 'Q3')","1.50","26.19" +"NOTES","0027-4380","1534-150X","MUSIC","('AHCI',)","257","1.1","","1.48","0.00" +"Central Asian Survey","0263-4937","1465-3354","AREA STUDIES","('SSCI',)","689","1.1","Q2","1.44","28.85" +"Kantian Review","1369-4154","2044-2394","PHILOSOPHY","('AHCI',)","295","1.1","","1.42","50.00" +"International Journal of Human Rights","1364-2987","1744-053X","LAW","('SSCI',)","1,223","1.1","Q2","1.41","34.10" +"Journal of Mathematical Inequalities","1846-579X","1846-579X","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","957","1.1","('Q1', 'Q2')","1.33","99.36" +"Southern African Humanities","1681-5564","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","237","1.1","","1.29","0.00" +"European Labour Law Journal","2031-9525","2399-5556","LAW","('ESCI',)","173","1.1","Q2","1.27","28.16" +"ICON-INTERNATIONAL JOURNAL OF CONSTITUTIONAL LAW","1474-2640","1474-2659","LAW","('SSCI',)","1,376","1.1","Q2","1.27","17.96" +"JOURNAL OF THE AMERICAN MUSICOLOGICAL SOCIETY","0003-0139","1547-3848","MUSIC","('AHCI',)","486","1.1","","1.25","0.00" +"JOURNAL OF CONFLICT & SECURITY LAW","1467-7954","1467-7962","LAW","('ESCI',)","228","1.1","Q2","1.24","27.27" +"JOURNAL OF NEW MUSIC RESEARCH","0929-8215","1744-5027","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MUSIC')","('SCIE', 'AHCI')","612","1.1","('Q4', 'N/A')","1.24","40.74" +"KENNEDY INSTITUTE OF ETHICS JOURNAL","1054-6863","1086-3249","('ETHICS', 'PHILOSOPHY', 'SOCIAL ISSUES')","('SSCI', 'AHCI', 'SSCI')","541","1.1","('Q3', 'N/A', 'Q3')","1.21","2.27" +"JOURNAL OF INTERDISCIPLINARY MATHEMATICS","0972-0502","2169-012X","MATHEMATICS","('ESCI',)","1,118","1.1","Q1","1.20","0.00" +"JOURNAL OF ASIAN AND AFRICAN STUDIES","0021-9096","1745-2538","AREA STUDIES","('SSCI',)","1,320","1.1","Q2","1.17","10.70" +"Bulletin of Mathematical Sciences","1664-3607","1664-3615","MATHEMATICS","('SCIE',)","310","1.1","Q1","1.12","90.00" +"Communication and Critical-Cultural Studies","1479-1420","1479-4233","('COMMUNICATION', 'CULTURAL STUDIES')","('SSCI', 'AHCI, SSCI')","712","1.1","('Q3', 'Q2')","1.12","6.45" +"Journal of Balkan and Near Eastern Studies","1944-8953","1944-8961","AREA STUDIES","('SSCI',)","545","1.1","Q2","1.12","11.18" +"Language and Cognition","1866-9808","1866-9859","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'PSYCHOLOGY, EXPERIMENTAL')","('AHCI', 'SSCI', 'SSCI')","560","1.1","('N/A', 'Q2', 'Q4')","1.11","76.07" +"Ming Studies","0147-037X","1759-7595","ASIAN STUDIES","('ESCI',)","67","1.1","","1.10","16.67" +"Pragmatics","1018-2101","2406-4238","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","1,049","1.1","('N/A', 'Q2')","1.10","0.99" +"PUBLIC CULTURE","0899-2363","1527-8018","('ANTHROPOLOGY', 'CULTURAL STUDIES')","('SSCI', 'AHCI, SSCI')","2,903","1.1","('Q2', 'Q2')","1.10","0.00" +"International Journal of Learner Corpus Research","2215-1478","2215-1486","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","82","1.1","('N/A', 'Q2')","1.09","11.54" +"LINGUISTICS AND PHILOSOPHY","0165-0157","1573-0549","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","1,735","1.1","('N/A', 'Q2')","1.08","40.86" +"WASHINGTON LAW REVIEW","0043-0617","","LAW","('SSCI',)","722","1.1","Q2","1.07","0.00" +"Journal of Open Archaeology Data","2049-1565","2049-1565","ARCHAEOLOGY","('ESCI',)","42","1.1","","1.06","94.12" +"Journal of the Institute of Mathematics of Jussieu","1474-7480","1475-3030","MATHEMATICS","('SCIE',)","692","1.1","Q1","1.06","28.93" +"International and Multidisciplinary Journal of Social Sciences-RIMCIS","2014-3680","2014-3680","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","108","1.1","Q2","1.04","91.67" +"Journal of Contemporary European Research","1815-347X","1815-347X","AREA STUDIES","('ESCI',)","230","1.1","Q2","1.03","96.30" +"Journal of Moral Philosophy","1740-4681","1745-5243","('ETHICS', 'PHILOSOPHY')","('SSCI', 'AHCI')","373","1.1","('Q3', 'N/A')","1.02","25.00" +"HERPETOLOGICAL MONOGRAPHS","0733-1347","1938-5137","ZOOLOGY","('SCIE',)","336","1.1","Q3","0.99","0.00" +"LINGUA","0024-3841","1872-6135","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","2,805","1.1","('N/A', 'Q2')","0.99","17.58" +"Child Care in Practice","1357-5279","1476-489X","('FAMILY STUDIES', 'SOCIAL WORK')","('ESCI', 'ESCI')","540","1.1","('Q3', 'Q3')","0.97","23.53" +"Anthropological Theory","1463-4996","1741-2641","ANTHROPOLOGY","('SSCI',)","1,250","1.1","Q2","0.96","32.26" +"ICSID Review-Foreign Investment Law Journal","0258-3690","2049-1999","LAW","('SSCI',)","481","1.1","Q2","0.96","19.18" +"JOURNAL OF CRIMINAL LAW & CRIMINOLOGY","0091-4169","2160-0325","('CRIMINOLOGY & PENOLOGY', 'LAW')","('SSCI', 'SSCI')","1,574","1.1","('Q3', 'Q2')","0.96","0.00" +"Internet Pragmatics","2542-3851","2542-386X","('COMMUNICATION', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI', 'ESCI')","86","1.1","('Q3', 'N/A', 'Q2')","0.95","11.11" +"Azania-Archaeological Research in Africa","0067-270X","1945-5534","ARCHAEOLOGY","('AHCI',)","541","1.1","","0.94","21.43" +"Linguistics Vanguard","2199-174X","2199-174X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","439","1.1","('N/A', 'Q2')","0.92","31.96" +"International Journal of Work-Integrated Learning","2538-1032","2538-1032","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","389","1.1","Q3","0.90","0.00" +"Results in Mathematics","1422-6383","1420-9012","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,179","1.1","('Q1', 'Q2')","0.88","23.20" +"Journal of Adult and Continuing Education","1477-9714","1479-7194","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","272","1.1","Q3","0.86","11.90" +"Journal of European Competition Law & Practice","2041-7764","2041-7772","LAW","('ESCI',)","322","1.1","Q2","0.86","13.75" +"Journal of Nonlinear Functional Analysis","","2052-532X","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","184","1.1","('Q1', 'Q2')","0.86","0.00" +"Mediterranean Journal of Mathematics","1660-5446","1660-5454","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,377","1.1","('Q1', 'Q2')","0.86","18.89" +"PSYCHOLOGY CRIME & LAW","1068-316X","1477-2744","('CRIMINOLOGY & PENOLOGY', 'LAW', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","1,693","1.1","('Q3', 'Q2', 'Q3')","0.86","27.27" +"Journal of Primary Health Care","1172-6164","1172-6156","PRIMARY HEALTH CARE","('ESCI',)","698","1.1","Q4","0.85","100.00" +"Communications in Mathematics and Statistics","2194-6701","2194-671X","MATHEMATICS","('SCIE',)","630","1.1","Q1","0.84","5.99" +"Journal of Social Philosophy","0047-2786","1467-9833","('ETHICS', 'PHILOSOPHY', 'SOCIAL ISSUES')","('SSCI', 'AHCI', 'SSCI')","760","1.1","('Q3', 'N/A', 'Q3')","0.84","36.07" +"European Journal of Contemporary Education","2304-9650","2305-6746","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","602","1.1","Q3","0.83","0.00" +"Improving Schools","1365-4802","1475-7583","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","481","1.1","Q3","0.83","13.04" +"INTERNATIONAL JOURNAL OF OSTEOARCHAEOLOGY","1047-482X","1099-1212","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","2,343","1.1","('Q2', 'N/A')","0.83","26.00" +"Constructive Mathematical Analysis","","2651-2939","MATHEMATICS","('ESCI',)","171","1.1","Q1","0.82","98.48" +"JOURNAL OF EVOLUTION EQUATIONS","1424-3199","1424-3202","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,221","1.1","('Q1', 'Q2')","0.82","37.80" +"Journal of Fractal Geometry","2308-1309","2308-1317","MATHEMATICS","('SCIE',)","99","1.1","Q1","0.82","93.18" +"PUBLICATIONS OF THE RESEARCH INSTITUTE FOR MATHEMATICAL SCIENCES","0034-5318","1663-4926","MATHEMATICS","('SCIE',)","1,173","1.1","Q1","0.82","30.51" +"RICERCHE DI MATEMATICA","0035-5038","1827-3491","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","781","1.1","('Q1', 'Q2')","0.82","14.09" +"Banach Journal of Mathematical Analysis","2662-2033","1735-8787","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","573","1.1","('Q1', 'Q2')","0.81","15.35" +"COMMENTARII MATHEMATICI HELVETICI","0010-2571","1420-8946","MATHEMATICS","('SCIE',)","1,915","1.1","Q1","0.81","67.92" +"DISCRETE AND CONTINUOUS DYNAMICAL SYSTEMS","1078-0947","1553-5231","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","5,406","1.1","('Q1', 'Q2')","0.81","96.67" +"Revista Internacional de Educacion para la Justicia Social","2254-3139","2254-3139","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","383","1.1","Q3","0.80","79.73" +"Spatial Demography","2364-2289","2164-7070","DEMOGRAPHY","('ESCI',)","200","1.1","Q3","0.80","30.23" +"AUSTRALIAN ARCHAEOLOGY","0312-2417","2470-0363","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","459","1.1","('Q2', 'N/A')","0.79","36.17" +"JOURNAL OF THE HISTORY OF INTERNATIONAL LAW","1388-199X","1571-8050","LAW","('ESCI',)","190","1.1","Q2","0.79","26.53" +"Semantics & Pragmatics","1937-8912","1937-8912","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","521","1.1","('N/A', 'Q2')","0.79","94.59" +"Canadian Review of Sociology-Revue Canadienne de Sociologie","1755-6171","1755-618X","SOCIOLOGY","('SSCI',)","775","1.1","Q3","0.78","17.70" +"Field Methods","1525-822X","1552-3969","('ANTHROPOLOGY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","3,223","1.1","('Q2', 'Q2')","0.78","22.47" +"NanoEthics","1871-4757","1871-4765","('ETHICS', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SSCI', 'SCIE, SSCI')","327","1.1","('Q3', 'Q2')","0.78","75.47" +"Transactions of the London Mathematical Society","2052-4986","2052-4986","MATHEMATICS","('ESCI',)","48","1.1","Q1","0.78","57.14" +"Computational Methods for Differential Equations","2345-3982","2383-2533","MATHEMATICS, APPLIED","('ESCI',)","358","1.1","Q2","0.77","0.00" +"Infants & Young Children","0896-3746","1550-5081","('EDUCATION, SPECIAL', 'PSYCHOLOGY, DEVELOPMENTAL', 'REHABILITATION')","('SSCI', 'SSCI', 'SSCI')","857","1.1","('Q3', 'Q4', 'Q3')","0.77","4.92" +"LATIN AMERICAN ANTIQUITY","1045-6635","2325-5080","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","1,350","1.1","('Q2', 'N/A')","0.77","29.23" +"WOMEN & THERAPY","0270-3149","1541-0315","('PSYCHOLOGY, MULTIDISCIPLINARY', 'WOMENS STUDIES')","('SSCI', 'SSCI')","689","1.1","('Q3', 'Q3')","0.77","3.57" +"JOURNAL OF LARYNGOLOGY AND OTOLOGY","0022-2151","1748-5460","OTORHINOLARYNGOLOGY","('SCIE',)","6,607","1.1","Q3","0.76","8.78" +"JOURNAL OF WORLD TRADE","1011-6702","2210-2795","('ECONOMICS', 'INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI', 'SSCI')","600","1.1","('Q3', 'Q3', 'Q2')","0.75","0.00" +"SOCIAL WORK EDUCATION","0261-5479","1470-1227","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,889","1.1","Q3","0.74","24.00" +"Anthropology in Action-Journal for Applied Anthropology in Policy and Practice","0967-201X","1752-2285","ANTHROPOLOGY","('ESCI',)","240","1.1","Q2","0.73","96.00" +"HISTORY OF SCIENCE","0073-2753","1753-8564","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","759","1.1","Q2","0.73","21.92" +"International Journal of Childrens Rights","0927-5568","1571-8182","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","678","1.1","Q2","0.73","37.86" +"International Journal of the Sociology of Language","0165-2516","1613-3668","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'SOCIOLOGY')","('ESCI', 'ESCI', 'ESCI')","1,026","1.1","('N/A', 'Q2', 'Q3')","0.73","22.93" +"ASYMPTOTIC ANALYSIS","0921-7134","1875-8576","MATHEMATICS, APPLIED","('SCIE',)","1,178","1.1","Q2","0.72","0.37" +"Electronic Journal of Qualitative Theory of Differential Equations","1417-3875","1417-3875","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,087","1.1","('Q1', 'Q2')","0.72","99.07" +"Alteridad-Revista de Educacion","1390-325X","1390-8642","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","156","1.1","Q3","0.71","98.33" +"Literacy Research and Instruction","1938-8071","1938-8063","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","349","1.1","Q3","0.70","2.70" +"ZOOMORPHOLOGY","0720-213X","1432-234X","('ANATOMY & MORPHOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","1,023","1.1","('Q4', 'Q3')","0.70","35.45" +"Numerical Algebra Control and Optimization","2155-3289","2155-3297","MATHEMATICS, APPLIED","('ESCI',)","361","1.1","Q2","0.69","94.67" +"Physical Medicine and Rehabilitation Clinics of North America","1047-9651","1558-1381","REHABILITATION","('SCIE',)","2,200","1.1","Q3","0.69","1.12" +"Journal of Lithic Studies","2055-0472","2055-0472","ARCHAEOLOGY","('ESCI',)","223","1.1","","0.68","97.62" +"STOCHASTIC PROCESSES AND THEIR APPLICATIONS","0304-4149","1879-209X","STATISTICS & PROBABILITY","('SCIE',)","6,033","1.1","Q3","0.68","34.85" +"ACTA ZOOLOGICA","0001-7272","1463-6395","('ANATOMY & MORPHOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","1,131","1.1","('Q4', 'Q3')","0.67","13.68" +"Journal of Lesbian Studies","1089-4160","1540-3548","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","598","1.1","Q2","0.67","8.33" +"Pedagogy in Health Promotion","2373-3799","2373-3802","('EDUCATION & EDUCATIONAL RESEARCH', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","376","1.1","('Q3', 'Q4')","0.67","13.60" +"Teaching Public Administration","0144-7394","2047-8720","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","238","1.1","Q3","0.67","18.75" +"AMERICAN JOURNAL OF EVALUATION","1098-2140","1557-0878","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","2,180","1.1","Q2","0.66","14.78" +"Architecture and Culture","2050-7828","2050-7836","ARCHITECTURE","('ESCI',)","164","1.1","","0.66","26.67" +"JOURNAL OF WILDLIFE DISEASES","0090-3558","1943-3700","VETERINARY SCIENCES","('SCIE',)","4,858","1.1","Q3","0.66","0.00" +"PHONETICA","0031-8388","1423-0321","('ACOUSTICS', 'AUDIOLOGY & SPEECH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SCIE', 'SCIE', 'AHCI', 'SSCI')","747","1.1","('Q3', 'Q3', 'N/A', 'Q2')","0.66","31.37" +"Research in Gerontological Nursing","1940-4921","1938-2464","NURSING","('SCIE', 'SSCI')","548","1.1","Q3","0.66","10.64" +"SEXUALITY AND DISABILITY","0146-1044","1573-6717","REHABILITATION","('SSCI',)","1,168","1.1","Q3","0.66","18.75" +"International Journal of Comparative and Applied Criminal Justice","0192-4036","2157-6475","CRIMINOLOGY & PENOLOGY","('ESCI',)","397","1.1","Q3","0.65","15.85" +"International Journal of Qualitative Studies in Education","0951-8398","1366-5898","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","3,151","1.1","Q3","0.65","7.93" +"Japanese Journal of Statistics and Data Science","2520-8756","2520-8764","STATISTICS & PROBABILITY","('ESCI',)","176","1.1","Q3","0.65","28.79" +"Journal of Osteoporosis","2090-8059","2042-0064","ORTHOPEDICS","('ESCI',)","328","1.1","Q3","0.65","94.74" +"Comprehensive Child and Adolescent Nursing-Building Evidence for Practice","2469-4193","2469-4207","NURSING","('ESCI',)","428","1.1","Q3","0.64","25.00" +"Conflict Security & Development","1467-8802","1478-1174","INTERNATIONAL RELATIONS","('ESCI',)","589","1.1","Q3","0.64","45.56" +"Frontiers in Emergency Medicine","","2717-3593","EMERGENCY MEDICINE","('ESCI',)","98","1.1","Q3","0.64","2.65" +"History of Psychology","1093-4510","1939-0610","('HISTORY OF SOCIAL SCIENCES', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","359","1.1","('Q1', 'Q3')","0.64","0.00" +"JOURNAL OF ASIA-PACIFIC ENTOMOLOGY","1226-8615","1876-7990","ENTOMOLOGY","('SCIE',)","2,603","1.1","Q3","0.64","7.06" +"JOURNAL OF COMPARATIVE PSYCHOLOGY","0735-7036","1939-2087","('BEHAVIORAL SCIENCES', 'PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SSCI', 'SCIE')","2,451","1.1","('Q4', 'Q4', 'Q3', 'Q3')","0.64","2.68" +"Violence and Victims","0886-6708","1945-7073","CRIMINOLOGY & PENOLOGY","('SSCI',)","2,682","1.1","Q3","0.64","0.00" +"APPLICABLE ANALYSIS","0003-6811","1563-504X","MATHEMATICS, APPLIED","('SCIE',)","3,188","1.1","Q2","0.63","2.28" +"Critical Arts-South-North Cultural and Media Studies","0256-0046","1992-6049","CULTURAL STUDIES","('AHCI', 'SSCI')","415","1.1","Q2","0.63","8.77" +"HERPETOLOGICAL JOURNAL","0268-0130","0268-0130","ZOOLOGY","('SCIE',)","801","1.1","Q3","0.63","3.39" +"Journal of Family Medicine and Primary Care","2249-4863","2278-7135","PRIMARY HEALTH CARE","('ESCI',)","6,177","1.1","Q4","0.63","97.60" +"Journal of International Political Theory","1755-0882","1755-1722","POLITICAL SCIENCE","('ESCI',)","251","1.1","Q3","0.63","43.06" +"Journal of Public and Nonprofit Affairs","2381-3717","2381-3717","PUBLIC ADMINISTRATION","('ESCI',)","146","1.1","Q3","0.63","77.05" +"Dynamics of Partial Differential Equations","1548-159X","1548-159X","MATHEMATICS, APPLIED","('SCIE',)","276","1.1","Q2","0.62","0.00" +"Electronic Journal of Information Systems in Developing Countries","1681-4835","1681-4835","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","933","1.1","Q2","0.62","18.33" +"FOLIA PHONIATRICA ET LOGOPAEDICA","1021-7762","1421-9972","('AUDIOLOGY & SPEECH', 'OTORHINOLARYNGOLOGY', 'REHABILITATION')","('SCIE', 'SCIE', 'SCIE, SSCI')","1,351","1.1","('Q3', 'Q3', 'Q3')","0.62","19.75" +"Minerva Dental and Oral Science","2724-6329","2724-6337","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","126","1.1","Q3","0.62","4.84" +"Pakistan Journal of Statistics and Operation Research","1816-2711","2220-5810","STATISTICS & PROBABILITY","('ESCI',)","558","1.1","Q3","0.62","96.32" +"Advances in Applied Clifford Algebras","0188-7009","1661-4909","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","1,059","1.1","('Q2', 'Q3')","0.61","11.58" +"GEOLOGIA CROATICA","1330-030X","1333-4875","GEOLOGY","('SCIE',)","559","1.1","Q3","0.61","96.67" +"Journal of Applied Security Research","1936-1610","1936-1629","CRIMINOLOGY & PENOLOGY","('ESCI',)","291","1.1","Q3","0.61","4.63" +"Journal of Disability Policy Studies","1044-2073","1538-4802","REHABILITATION","('SSCI',)","721","1.1","Q3","0.61","10.67" +"Journal of Social Distress and the Homeless","1053-0789","1573-658X","SOCIAL WORK","('ESCI',)","430","1.1","Q3","0.61","10.48" +"LANGUAGE AND SPEECH","0023-8309","1756-6053","('AUDIOLOGY & SPEECH', 'LINGUISTICS', 'PSYCHOLOGY, EXPERIMENTAL')","('SCIE', 'SSCI', 'SSCI')","1,655","1.1","('Q3', 'Q2', 'Q4')","0.61","29.69" +"JOURNAL OF DIFFERENCE EQUATIONS AND APPLICATIONS","1023-6198","1563-5120","MATHEMATICS, APPLIED","('SCIE',)","1,526","1.1","Q2","0.60","3.81" +"Journal of Vascular Nursing","1062-0303","1532-6578","NURSING","('ESCI',)","378","1.1","Q3","0.60","10.59" +"Rehabilitation Nursing","0278-4807","2048-7940","('NURSING', 'REHABILITATION')","('SCIE, SSCI', 'SCIE, SSCI')","901","1.1","('Q3', 'Q3')","0.60","4.82" +"Teaching Mathematics and Its Applications","0268-3679","1471-6976","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","288","1.1","Q3","0.60","29.11" +"CARBONATES AND EVAPORITES","0891-2556","1878-5212","GEOLOGY","('SCIE',)","1,245","1.1","Q3","0.59","6.47" +"Culture and Education","1135-6405","1578-4118","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","560","1.1","Q3","0.59","4.00" +"DISEASES OF AQUATIC ORGANISMS","0177-5103","1616-1580","('FISHERIES', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","5,897","1.1","('Q3', 'Q3')","0.59","25.47" +"Families Relationships and Societies","2046-7435","2046-7443","FAMILY STUDIES","('SSCI',)","462","1.1","Q3","0.59","12.50" +"International Journal of Disability Development and Education","1034-912X","1465-346X","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","1,417","1.1","('Q3', 'Q3')","0.59","7.59" +"NODEA-NONLINEAR DIFFERENTIAL EQUATIONS AND APPLICATIONS","1021-9722","1420-9004","MATHEMATICS, APPLIED","('SCIE',)","1,212","1.1","Q2","0.59","31.65" +"Women & Criminal Justice","0897-4454","1541-0323","('CRIMINOLOGY & PENOLOGY', 'WOMENS STUDIES')","('SSCI', 'SSCI')","695","1.1","('Q3', 'Q3')","0.59","12.17" +"European Journal of Prosthodontics and Restorative Dentistry","0965-7452","2396-8893","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","523","1.1","Q3","0.58","0.00" +"JOURNAL OF VETERINARY EMERGENCY AND CRITICAL CARE","1479-3261","1476-4431","VETERINARY SCIENCES","('SCIE',)","1,941","1.1","Q3","0.58","13.60" +"JOURNAL OF VETERINARY MEDICAL SCIENCE","0916-7250","1347-7439","VETERINARY SCIENCES","('SCIE',)","5,863","1.1","Q3","0.58","99.49" +"NETWORK-COMPUTATION IN NEURAL SYSTEMS","0954-898X","1361-6536","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'NEUROSCIENCES')","('SCIE', 'SCIE', 'SCIE')","713","1.1","('Q4', 'Q4', 'Q4')","0.58","5.13" +"NOMADIC PEOPLES","0822-7942","1752-2366","ANTHROPOLOGY","('ESCI',)","337","1.1","Q2","0.58","34.38" +"Austral Entomology","2052-1758","2052-174X","ENTOMOLOGY","('SCIE',)","696","1.1","Q3","0.57","22.31" +"Belitung Nursing Journal","2528-181X","2477-4073","NURSING","('ESCI',)","276","1.1","Q3","0.57","21.70" +"Journal of Baltic Science Education","1648-3898","1648-3898","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","722","1.1","Q3","0.57","96.57" +"Journal of Health Care Chaplaincy","0885-4726","1528-6916","HEALTH POLICY & SERVICES","('ESCI',)","318","1.1","Q4","0.57","19.48" +"Journal of Music Teacher Education","1057-0837","1945-0079","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","385","1.1","Q3","0.57","3.13" +"Journal of Poverty and Social Justice","1759-8273","1759-8281","('SOCIAL ISSUES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","327","1.1","('Q3', 'Q2')","0.57","25.93" +"Deafness & Education International","1464-3154","1557-069X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","275","1.1","Q3","0.56","17.07" +"HIMALAYAN GEOLOGY","0971-8966","","GEOLOGY","('SCIE',)","410","1.1","Q3","0.56","0.00" +"Human Arenas","2522-5790","2522-5804","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","286","1.1","Q3","0.56","26.98" +"JOURNAL OF CONTINUING EDUCATION IN NURSING","0022-0124","1938-2472","NURSING","('SCIE', 'SSCI')","1,275","1.1","Q3","0.56","3.27" +"NEW ZEALAND VETERINARY JOURNAL","0048-0169","1176-0710","VETERINARY SCIENCES","('SCIE',)","1,985","1.1","Q3","0.56","24.56" +"ACTA GEOLOGICA POLONICA","0001-5709","2300-1887","GEOLOGY","('SCIE',)","844","1.1","Q3","0.55","97.44" +"Action Learning","1476-7333","1476-7341","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","298","1.1","Q3","0.55","32.76" +"EDUCATIONAL GERONTOLOGY","0360-1277","1521-0472","('EDUCATION & EDUCATIONAL RESEARCH', 'GERONTOLOGY')","('SSCI', 'SSCI')","1,609","1.1","('Q3', 'Q3')","0.55","9.18" +"JOURNAL OF VETERINARY MEDICAL EDUCATION","0748-321X","1943-7218","('EDUCATION, SCIENTIFIC DISCIPLINES', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","1,638","1.1","('Q3', 'Q3')","0.55","0.82" +"Quality in Higher Education","1353-8322","1470-1081","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","637","1.1","Q3","0.55","23.94" +"Social Work in Mental Health","1533-2985","1533-2993","SOCIAL WORK","('ESCI',)","568","1.1","Q3","0.55","10.69" +"SPECTROSCOPY LETTERS","0038-7010","1532-2289","SPECTROSCOPY","('SCIE',)","1,391","1.1","Q3","0.55","0.00" +"THEORETICAL MEDICINE AND BIOETHICS","1386-7415","1573-1200","('ETHICS', 'SOCIAL ISSUES', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI', 'SSCI')","659","1.1","('Q3', 'Q3', 'Q4')","0.55","44.59" +"COMMUNIST AND POST-COMMUNIST STUDIES","0967-067X","1873-6920","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","810","1.1","('Q3', 'Q3')","0.54","0.00" +"EUROPEAN JOURNAL OF ENTOMOLOGY","","1802-8829","ENTOMOLOGY","('SCIE',)","1,844","1.1","Q3","0.54","98.35" +"European Journal of Taxonomy","","2118-9773","('ENTOMOLOGY', 'PLANT SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,343","1.1","('Q3', 'Q3', 'Q3')","0.54","98.73" +"International Journal of Mechanical Engineering Education","0306-4190","2050-4586","('EDUCATION, SCIENTIFIC DISCIPLINES', 'ENGINEERING, MECHANICAL')","('ESCI', 'ESCI')","231","1.1","('Q3', 'Q4')","0.54","14.61" +"Journal of Audiology and Otology","2384-1621","2384-1710","OTORHINOLARYNGOLOGY","('ESCI',)","339","1.1","Q3","0.54","100.00" +"Law Teacher","0306-9400","1943-0353","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","354","1.1","Q3","0.54","45.98" +"Multicultural Education Review","2005-615X","2377-0031","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","251","1.1","Q3","0.54","16.67" +"British Politics","1746-918X","1746-9198","POLITICAL SCIENCE","('SSCI',)","440","1.1","Q3","0.53","22.47" +"Clinical Nurse Specialist","0887-6274","1538-9782","NURSING","('SCIE', 'SSCI')","716","1.1","Q3","0.53","1.85" +"Japanese Journal of Political Science","1468-1099","1474-0060","POLITICAL SCIENCE","('SSCI',)","293","1.1","Q3","0.53","42.67" +"Journal of Evidence-Based Social Work","2640-8066","2640-8074","SOCIAL WORK","('ESCI',)","331","1.1","Q3","0.53","7.25" +"Thoracic Surgery Clinics","1547-4127","1558-5069","('RESPIRATORY SYSTEM', 'SURGERY')","('SCIE', 'SCIE')","1,250","1.1","('Q4', 'Q3')","0.53","2.45" +"Turkish Journal of Physical Medicine and Rehabilitation","","2587-1250","REHABILITATION","('SCIE',)","670","1.1","Q3","0.53","87.61" +"ANNALS OF THE ROYAL COLLEGE OF SURGEONS OF ENGLAND","0035-8843","1478-7083","SURGERY","('SCIE',)","4,738","1.1","Q3","0.52","0.22" +"CANADIAN ENTOMOLOGIST","0008-347X","1918-3240","ENTOMOLOGY","('SCIE',)","3,075","1.1","Q3","0.52","25.87" +"FINANCE AND STOCHASTICS","0949-2984","1432-1122","('BUSINESS, FINANCE', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","1,162","1.1","('Q3', 'Q3', 'Q3', 'Q3')","0.52","46.25" +"Journal of Aging and Environment","2689-2618","2689-2626","GERONTOLOGY","('ESCI',)","149","1.1","Q3","0.52","16.50" +"Journal of Laparoendoscopic & Advanced Surgical Techniques","1092-6429","1557-9034","SURGERY","('SCIE',)","3,804","1.1","Q3","0.52","1.29" +"Journal of Offender Rehabilitation","1050-9674","1540-8558","SOCIAL WORK","('ESCI',)","869","1.1","Q3","0.52","7.41" +"Presidential Studies Quarterly","0360-4918","1741-5705","POLITICAL SCIENCE","('SSCI',)","706","1.1","Q3","0.52","14.81" +"SEARCH-Journal of Media and Communication Research","","2672-7080","COMMUNICATION","('ESCI',)","141","1.1","Q3","0.52","0.00" +"African Security Review","1024-6029","2154-0128","INTERNATIONAL RELATIONS","('ESCI',)","349","1.1","Q3","0.51","7.41" +"CRITICAL STUDIES IN MEDIA COMMUNICATION","1529-5036","1479-5809","COMMUNICATION","('SSCI',)","939","1.1","Q3","0.51","5.00" +"Developmental Neurorehabilitation","1751-8423","1751-8431","('CLINICAL NEUROLOGY', 'PEDIATRICS', 'REHABILITATION')","('SCIE', 'SCIE', 'SCIE')","1,355","1.1","('Q4', 'Q3', 'Q3')","0.51","22.63" +"Evolutionary Behavioral Sciences","2330-2925","2330-2933","('BEHAVIORAL SCIENCES', 'PSYCHOLOGY')","('ESCI', 'ESCI')","349","1.1","('Q4', 'Q4')","0.51","2.48" +"Journal of Comparative Politics","1338-1385","1338-1385","POLITICAL SCIENCE","('ESCI',)","70","1.1","Q3","0.51","0.00" +"Mljekarstvo","0026-704X","0026-704X","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","429","1.1","Q3","0.51","97.47" +"Research in Mathematics","","2768-4830","('MATHEMATICS', 'STATISTICS & PROBABILITY')","('ESCI', 'ESCI')","82","1.1","('Q1', 'Q3')","0.51","98.67" +"Rural Society","1037-1656","2204-0536","SOCIOLOGY","('ESCI',)","283","1.1","Q3","0.51","10.81" +"APPLIED MEASUREMENT IN EDUCATION","0895-7347","1532-4818","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, EDUCATIONAL', 'PSYCHOLOGY, MATHEMATICAL')","('SSCI', 'SSCI', 'SSCI')","957","1.1","('Q3', 'Q4', 'Q4')","0.50","6.45" +"INTERNATIONAL JOURNAL OF TROPICAL INSECT SCIENCE","1742-7584","1742-7592","ENTOMOLOGY","('SCIE',)","1,582","1.1","Q3","0.50","5.26" +"Journal of Applied School Psychology","1537-7903","1537-7911","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","447","1.1","Q4","0.50","3.17" +"Journal of Chinese Economic and Foreign Trade Studies","1754-4408","1754-4416","ECONOMICS","('ESCI',)","222","1.1","Q3","0.50","2.08" +"Settler Colonial Studies","2201-473X","1838-0743","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","760","1.1","Q2","0.50","14.29" +"Ethnography and Education","1745-7823","1745-7831","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","491","1.1","Q3","0.49","32.86" +"HEALTH EDUCATION JOURNAL","0017-8969","1748-8176","('EDUCATION & EDUCATIONAL RESEARCH', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","1,172","1.1","('Q3', 'Q4')","0.49","23.74" +"INTERNATIONAL JOURNAL OF PEST MANAGEMENT","0967-0874","1366-5863","ENTOMOLOGY","('SCIE',)","1,612","1.1","Q3","0.49","3.04" +"Journal for Nurses in Professional Development","2169-9798","2169-981X","NURSING","('ESCI',)","742","1.1","Q3","0.49","3.06" +"ORTHOPEDICS","0147-7447","1938-2367","ORTHOPEDICS","('SCIE',)","5,435","1.1","Q3","0.49","1.48" +"Statistical Methods and Applications","1618-2510","1613-981X","STATISTICS & PROBABILITY","('SCIE',)","643","1.1","Q3","0.49","50.91" +"Acta Cirurgica Brasileira","0102-8650","1678-2674","SURGERY","('SCIE',)","1,532","1.1","Q3","0.48","92.86" +"Agricultural and Resource Economics-International Scientific E-Journal","","2414-584X","('AGRICULTURAL ECONOMICS & POLICY', 'ECONOMICS')","('ESCI', 'ESCI')","199","1.1","('Q3', 'Q3')","0.48","94.52" +"Anaesthesiologie","2731-6858","2731-6866","ANESTHESIOLOGY","('SCIE',)","1,442","1.1","Q3","0.48","39.12" +"Educar","0211-819X","2014-8801","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","341","1.1","Q3","0.48","98.81" +"Enfermeria Intensiva","1130-2399","1578-1291","NURSING","('ESCI',)","258","1.1","Q3","0.48","5.06" +"International Journal on Software Tools for Technology Transfer","1433-2779","1433-2787","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","714","1.1","Q4","0.48","54.26" +"SURGICAL LAPAROSCOPY ENDOSCOPY & PERCUTANEOUS TECHNIQUES","1530-4515","1534-4908","SURGERY","('SCIE',)","2,596","1.1","Q3","0.48","8.44" +"Acta Orthopaedica et Traumatologica Turcica","1017-995X","2589-1294","ORTHOPEDICS","('SCIE',)","1,590","1.1","Q3","0.47","82.82" +"AMERICAN MUSEUM NOVITATES","0003-0082","1937-352X","('BIODIVERSITY CONSERVATION', 'ZOOLOGY')","('SCIE', 'SCIE')","2,038","1.1","('Q3', 'Q3')","0.47","0.00" +"Annals of Thoracic and Cardiovascular Surgery","1341-1098","2186-1005","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'SURGERY')","('SCIE', 'SCIE')","1,184","1.1","('Q4', 'Q3')","0.47","100.00" +"FLORIDA ENTOMOLOGIST","0015-4040","1938-5102","ENTOMOLOGY","('SCIE',)","3,672","1.1","Q3","0.47","78.95" +"JOURNAL OF FAMILY THERAPY","0163-4445","1467-6427","('FAMILY STUDIES', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","836","1.1","('Q3', 'Q3')","0.47","19.10" +"RUSSIAN JOURNAL OF COORDINATION CHEMISTRY","1070-3284","1608-3318","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","1,200","1.1","Q4","0.47","6.13" +"Tree-Ring Research","1536-1098","2162-4585","FORESTRY","('SCIE',)","406","1.1","Q3","0.47","0.00" +"Turkish Journal of Emergency Medicine","2452-2473","2452-2473","EMERGENCY MEDICINE","('ESCI',)","1,146","1.1","Q3","0.47","95.69" +"ULTRASTRUCTURAL PATHOLOGY","0191-3123","1521-0758","('MICROSCOPY', 'PATHOLOGY')","('SCIE', 'SCIE')","922","1.1","('Q4', 'Q4')","0.47","7.94" +"ACTA ETHOLOGICA","0873-9749","1437-9546","('BEHAVIORAL SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","516","1.1","('Q4', 'Q3')","0.46","17.14" +"Apunts Sports Medicine","","2666-5069","SPORT SCIENCES","('ESCI',)","55","1.1","Q3","0.46","66.67" +"International Journal of Osteopathic Medicine","1746-0689","1878-0164","('MEDICINE, GENERAL & INTERNAL', 'REHABILITATION')","('SCIE', 'SCIE')","551","1.1","('Q2', 'Q3')","0.46","6.54" +"NURSING SCIENCE QUARTERLY","0894-3184","1552-7409","NURSING","('SCIE', 'SSCI')","1,031","1.1","Q3","0.46","1.18" +"Seminars in Cardiothoracic and Vascular Anesthesia","1089-2532","1940-5596","ANESTHESIOLOGY","('ESCI',)","651","1.1","Q3","0.46","7.06" +"AFRICAN JOURNAL OF AQUATIC SCIENCE","1608-5914","1727-9364","MARINE & FRESHWATER BIOLOGY","('SCIE',)","879","1.1","Q3","0.45","1.90" +"KOLNER ZEITSCHRIFT FUR SOZIOLOGIE UND SOZIALPSYCHOLOGIE","0023-2653","1861-891X","('PSYCHOLOGY, SOCIAL', 'SOCIOLOGY')","('SSCI', 'SSCI')","906","1.1","('Q4', 'Q3')","0.45","93.20" +"Papeles del Psicologo","0214-7823","1886-1415","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","522","1.1","Q3","0.45","98.18" +"PEDIATRIC ANNALS","0090-4481","1938-2359","PEDIATRICS","('SCIE',)","1,279","1.1","Q3","0.45","0.43" +"RESOURCE GEOLOGY","1344-1698","1751-3928","('GEOLOGY', 'MINERALOGY')","('SCIE', 'SCIE')","986","1.1","('Q3', 'Q3')","0.45","10.77" +"AMERICAN JOURNAL OF DERMATOPATHOLOGY","0193-1091","1533-0311","DERMATOLOGY","('SCIE',)","3,481","1.1","Q4","0.44","1.45" +"Child & Youth Services","0145-935X","1545-2298","SOCIAL WORK","('ESCI',)","337","1.1","Q3","0.44","22.67" +"FACIAL PLASTIC SURGERY","0736-6825","1098-8793","SURGERY","('SCIE',)","1,816","1.1","Q3","0.44","2.44" +"Journal of Childhood Studies","2371-4107","2371-4115","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","166","1.1","Q3","0.44","0.00" +"JOURNAL OF HEURISTICS","1381-1231","1572-9397","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","1,205","1.1","('Q4', 'Q3')","0.44","23.53" +"NISPAcee Journal of Public Administration and Policy","1337-9038","1338-4309","PUBLIC ADMINISTRATION","('ESCI',)","205","1.1","Q3","0.44","100.00" +"REVISTA BRASILEIRA DE ZOOTECNIA-BRAZILIAN JOURNAL OF ANIMAL SCIENCE","1516-3598","1806-9290","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","3,060","1.1","('Q3', 'Q3')","0.44","94.89" +"Turk Oftalmoloji Dergisi-Turkish Journal of Ophthalmology","1300-0659","2147-2661","OPHTHALMOLOGY","('ESCI',)","637","1.1","Q3","0.44","92.89" +"Annals of Transplantation","1425-9524","","('SURGERY', 'TRANSPLANTATION')","('SCIE', 'SCIE')","1,142","1.1","('Q3', 'Q3')","0.43","10.59" +"JOURNAL OF THE MARINE BIOLOGICAL ASSOCIATION OF THE UNITED KINGDOM","0025-3154","1469-7769","MARINE & FRESHWATER BIOLOGY","('SCIE',)","5,901","1.1","Q3","0.43","22.35" +"NEUROPEDIATRICS","0174-304X","1439-1899","('CLINICAL NEUROLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","1,802","1.1","('Q4', 'Q3')","0.43","8.54" +"Norsk Geografisk Tidsskrift-Norwegian Journal of Geography","0029-1951","1502-5292","GEOGRAPHY","('SSCI',)","605","1.1","Q3","0.43","62.71" +"Revista Brasileira de Politica Internacional","0034-7329","1983-3121","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","339","1.1","('Q3', 'Q3')","0.43","90.28" +"STUDIA PSYCHOLOGICA","0039-3320","2585-8815","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","425","1.1","Q3","0.43","97.37" +"THEORY & PSYCHOLOGY","0959-3543","1461-7447","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,451","1.1","Q3","0.43","23.36" +"VETERINARY CLINICS OF NORTH AMERICA-EQUINE PRACTICE","0749-0739","1558-4224","VETERINARY SCIENCES","('SCIE',)","1,600","1.1","Q3","0.43","3.54" +"African Journalism Studies","2374-3670","2374-3689","COMMUNICATION","('SSCI',)","234","1.1","Q3","0.42","10.71" +"ANNALI DELL ISTITUTO SUPERIORE DI SANITA","0021-2571","2384-8553","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","1,310","1.1","Q4","0.42","0.00" +"ANNALS OF CLINICAL AND LABORATORY SCIENCE","0091-7370","1550-8080","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","1,956","1.1","Q4","0.42","0.32" +"CANADIAN PUBLIC ADMINISTRATION-ADMINISTRATION PUBLIQUE DU CANADA","0008-4840","1754-7121","PUBLIC ADMINISTRATION","('SSCI',)","521","1.1","Q3","0.42","23.81" +"Digital Library Perspectives","2059-5816","2054-1694","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","251","1.1","Q3","0.42","8.00" +"EUROPEAN JOURNAL OF MASS SPECTROMETRY","1469-0667","1751-6838","('PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE')","660","1.1","('Q4', 'Q3')","0.42","12.66" +"Extremes","1386-1999","1572-915X","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","632","1.1","('Q3', 'Q3')","0.42","38.67" +"FOREST PRODUCTS JOURNAL","0015-7473","0015-7473","('FORESTRY', 'MATERIALS SCIENCE, PAPER & WOOD')","('SCIE', 'SCIE')","1,926","1.1","('Q3', 'Q3')","0.42","3.88" +"Journal of Gerontological Nursing","0098-9134","1938-243X","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY', 'NURSING')","('SCIE', 'SSCI', 'SCIE, SSCI')","1,495","1.1","('Q4', 'Q3', 'Q3')","0.42","6.91" +"Journal of Science in Sport and Exercise","2096-6709","2662-1371","SPORT SCIENCES","('ESCI',)","189","1.1","Q3","0.42","29.45" +"Palliative Medicine Reports","2689-2820","2689-2820","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","214","1.1","Q4","0.42","100.00" +"South African Geographical Journal","0373-6245","2151-2418","GEOGRAPHY","('SSCI',)","540","1.1","Q3","0.42","8.11" +"Austrian Journal of Forest Science","0379-5292","0375-524X","FORESTRY","('SCIE',)","133","1.1","Q3","0.41","0.00" +"Autex Research Journal","1470-9589","2300-0929","MATERIALS SCIENCE, TEXTILES","('SCIE',)","854","1.1","Q3","0.41","96.72" +"Brazilian Journal of Poultry Science","1516-635X","1806-9061","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,535","1.1","Q3","0.41","92.07" +"Criminal Behaviour and Mental Health","0957-9664","1471-2857","('CRIMINOLOGY & PENOLOGY', 'PSYCHIATRY')","('SSCI', 'SSCI')","951","1.1","('Q3', 'Q4')","0.41","32.58" +"Global Health Epidemiology and Genomics","2054-4200","2054-4200","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","207","1.1","Q4","0.41","100.00" +"HELMINTHOLOGIA","0440-6605","1336-9083","('PARASITOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","700","1.1","('Q4', 'Q3')","0.41","99.22" +"INVERSE PROBLEMS IN SCIENCE AND ENGINEERING","1741-5977","1741-5985","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","1,112","1.1","('Q3', 'Q3')","0.41","2.41" +"JAHRBUCHER FUR NATIONALOKONOMIE UND STATISTIK","0021-4027","2366-049X","('ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","507","1.1","('Q3', 'Q3')","0.41","41.24" +"JOURNAL OF INFORMATION & OPTIMIZATION SCIENCES","0252-2667","2169-0103","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","972","1.1","Q3","0.41","0.00" +"Journal of Public Economic Theory","1097-3923","1467-9779","ECONOMICS","('SSCI',)","787","1.1","Q3","0.41","26.28" +"Near Surface Geophysics","1569-4445","1873-0604","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","1,245","1.1","Q3","0.41","31.45" +"TURKISH JOURNAL OF BIOLOGY","1300-0152","1303-6092","BIOLOGY","('SCIE',)","1,508","1.1","Q3","0.41","93.89" +"Annals of Cardiac Anaesthesia","0971-9784","0974-5181","ANESTHESIOLOGY","('ESCI',)","1,537","1.1","Q3","0.40","91.27" +"Complementary Medicine Research","2504-2092","2504-2106","INTEGRATIVE & COMPLEMENTARY MEDICINE","('SCIE',)","349","1.1","Q3","0.40","15.89" +"Indian Journal of Orthopaedics","0019-5413","1998-3727","ORTHOPEDICS","('SCIE',)","2,414","1.1","Q3","0.40","8.20" +"International Journal of Educational Leadership and Management","2014-9018","2014-9018","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","178","1.1","Q3","0.40","54.17" +"Journal of Laboratory Medicine","2567-9430","2567-9449","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","331","1.1","Q4","0.40","100.00" +"Journal of Revenue and Pricing Management","1476-6930","1477-657X","BUSINESS, FINANCE","('ESCI',)","645","1.1","Q3","0.40","13.04" +"JOURNAL OF THE AUDIO ENGINEERING SOCIETY","1549-4950","1549-4950","('ACOUSTICS', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,405","1.1","('Q3', 'Q3')","0.40","4.86" +"LAKE AND RESERVOIR MANAGEMENT","1040-2381","2151-5530","('LIMNOLOGY', 'MARINE & FRESHWATER BIOLOGY', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","1,218","1.1","('Q4', 'Q3', 'Q4')","0.40","25.37" +"ZEITSCHRIFT FUR ANORGANISCHE UND ALLGEMEINE CHEMIE","0044-2313","1521-3749","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","7,292","1.1","Q4","0.40","48.52" +"Aquaculture, Fish and Fisheries","2693-8847","2693-8847","FISHERIES","('ESCI',)","94","1.1","Q3","0.39","92.11" +"Ciencia & Saude Coletiva","1413-8123","1678-4561","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","6,148","1.1","Q4","0.39","99.36" +"CLINICAL NEPHROLOGY","0301-0430","0301-0430","UROLOGY & NEPHROLOGY","('SCIE',)","2,637","1.1","Q3","0.39","0.00" +"East Asian Policy","1793-9305","2251-3175","POLITICAL SCIENCE","('ESCI',)","134","1.1","Q3","0.39","33.33" +"Evolutionary Psychology","1474-7049","1474-7049","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","1,183","1.1","Q4","0.39","92.77" +"Geographia Polonica","0016-7282","2300-7362","GEOGRAPHY","('ESCI',)","510","1.1","Q3","0.39","93.33" +"International Journal of Surgery Protocols","2468-3574","2468-3574","SURGERY","('ESCI',)","97","1.1","Q3","0.39","96.49" +"Journal of Quantitative Analysis in Sports","2194-6388","1559-0410","SOCIAL SCIENCES, MATHEMATICAL METHODS","('ESCI',)","444","1.1","Q3","0.39","14.29" +"JOURNAL OF STATISTICAL COMPUTATION AND SIMULATION","0094-9655","1563-5163","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","3,772","1.1","('Q4', 'Q3')","0.39","5.53" +"Revista Espanola de Educacion Comparada","1137-8654","2174-5382","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","213","1.1","Q3","0.39","97.74" +"ANNALS OF THE MISSOURI BOTANICAL GARDEN","0026-6493","2162-4372","PLANT SCIENCES","('SCIE',)","2,515","1.1","Q3","0.38","0.00" +"ARQUIVOS BRASILEIROS DE OFTALMOLOGIA","0004-2749","1678-2925","OPHTHALMOLOGY","('SCIE',)","1,255","1.1","Q3","0.38","78.95" +"Brazilian Journal of Cardiovascular Surgery","0102-7638","1678-9741","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'SURGERY')","('SCIE', 'SCIE')","1,389","1.1","('Q4', 'Q3')","0.38","99.72" +"CANADIAN JOURNAL OF EXPERIMENTAL PSYCHOLOGY-REVUE CANADIENNE DE PSYCHOLOGIE EXPERIMENTALE","1196-1961","1878-7290","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","1,005","1.1","Q4","0.38","0.00" +"GRASSLAND SCIENCE","1744-6961","1744-697X","('AGRICULTURE, MULTIDISCIPLINARY', 'AGRONOMY')","('SCIE', 'SCIE')","671","1.1","('Q3', 'Q3')","0.38","16.09" +"HUMAN HEREDITY","0001-5652","1423-0062","GENETICS & HEREDITY","('SCIE',)","679","1.1","Q4","0.38","61.11" +"International Journal of Aerospace Engineering","1687-5966","1687-5974","ENGINEERING, AEROSPACE","('SCIE',)","1,616","1.1","Q3","0.38","99.81" +"International Journal of Yoga","0973-6131","2231-2714","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","636","1.1","Q3","0.38","86.36" +"Journal of Applied Science and Engineering","2708-9967","2708-9975","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","716","1.1","Q3","0.38","0.00" +"Journal of Dance Medicine & Science","1089-313X","2374-8060","SPORT SCIENCES","('ESCI',)","515","1.1","Q3","0.38","0.00" +"Journal of Forest Science","1212-4834","1805-935X","FORESTRY","('ESCI',)","569","1.1","Q3","0.38","96.05" +"JOURNAL OF PHYTOPATHOLOGY","0931-1785","1439-0434","PLANT SCIENCES","('SCIE',)","3,234","1.1","Q3","0.38","4.58" +"MILITARY PSYCHOLOGY","0899-5605","1532-7876","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,169","1.1","Q3","0.38","14.09" +"Pacific Economic Review","1361-374X","1468-0106","ECONOMICS","('SSCI',)","556","1.1","Q3","0.38","6.85" +"Proceedings of the Institution of Mechanical Engineers Part P-Journal of Sports Engineering and Technology","1754-3371","1754-338X","('ENGINEERING, MECHANICAL', 'SPORT SCIENCES')","('SCIE', 'SCIE')","561","1.1","('Q4', 'Q3')","0.38","8.24" +"SCHMERZ","0932-433X","1432-2129","('ANESTHESIOLOGY', 'CLINICAL NEUROLOGY')","('SCIE', 'SCIE')","885","1.1","('Q3', 'Q4')","0.38","44.52" +"TROPICAL ECOLOGY","0564-3295","2661-8982","ECOLOGY","('SCIE',)","1,253","1.1","Q4","0.38","2.07" +"ANAESTHESIA AND INTENSIVE CARE","0310-057X","1448-0271","('ANESTHESIOLOGY', 'CRITICAL CARE MEDICINE')","('SCIE', 'SCIE')","2,816","1.1","('Q3', 'Q3')","0.37","8.97" +"CANADIAN MINERALOGIST","0008-4476","1499-1276","MINERALOGY","('SCIE',)","5,414","1.1","Q3","0.37","1.38" +"Econometrics","","2225-1146","ECONOMICS","('ESCI',)","681","1.1","Q3","0.37","99.03" +"EXPERIMENTAL PSYCHOLOGY","1618-3169","2190-5142","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","1,186","1.1","Q4","0.37","35.71" +"General Thoracic and Cardiovascular Surgery","1863-6705","1863-6713","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'SURGERY')","('SCIE', 'SCIE')","2,232","1.1","('Q4', 'Q3')","0.37","12.35" +"IET Microwaves Antennas & Propagation","1751-8725","1751-8733","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","3,662","1.1","('Q4', 'Q4')","0.37","78.54" +"International Journal of Prisoner Health","1744-9200","1744-9219","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","481","1.1","Q4","0.37","13.04" +"Journal of Applied Biomechanics","1065-8483","1543-2688","('ENGINEERING, BIOMEDICAL', 'SPORT SCIENCES')","('SCIE', 'SCIE')","2,387","1.1","('Q4', 'Q3')","0.37","0.51" +"JOURNAL OF ETHNICITY IN SUBSTANCE ABUSE","1533-2640","1533-2659","SUBSTANCE ABUSE","('SCIE', 'SSCI')","773","1.1","Q4","0.37","3.52" +"JOURNAL OF PORTFOLIO MANAGEMENT","0095-4918","2168-8656","BUSINESS, FINANCE","('SSCI',)","2,581","1.1","Q3","0.37","0.00" +"Monaldi Archives for Chest Disease","1122-0643","2532-5264","RESPIRATORY SYSTEM","('ESCI',)","1,067","1.1","Q4","0.37","96.25" +"PLANT SPECIES BIOLOGY","0913-557X","1442-1984","('ECOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","800","1.1","('Q4', 'Q3')","0.37","19.35" +"VITIS","0042-7500","0042-7500","HORTICULTURE","('SCIE',)","1,238","1.1","Q3","0.37","0.00" +"ANAIS DA ACADEMIA BRASILEIRA DE CIENCIAS","0001-3765","1678-2690","MULTIDISCIPLINARY SCIENCES","('SCIE',)","5,346","1.1","Q3","0.36","88.74" +"Annals of Hepato-Biliary-Pancreatic Surgery","2508-5778","2508-5859","('GASTROENTEROLOGY & HEPATOLOGY', 'SURGERY')","('ESCI', 'ESCI')","455","1.1","('Q4', 'Q3')","0.36","99.48" +"ANNALS OF NONINVASIVE ELECTROCARDIOLOGY","1082-720X","1542-474X","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,592","1.1","Q4","0.36","62.87" +"JOURNAL OF THERMOPHYSICS AND HEAT TRANSFER","0887-8722","1533-6808","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","3,096","1.1","('Q4', 'Q4')","0.36","2.29" +"PHARMACIA","0428-0296","2603-557X","PHARMACOLOGY & PHARMACY","('ESCI',)","445","1.1","Q4","0.36","95.08" +"PSYCHIATRISCHE PRAXIS","0303-4259","1439-0876","PSYCHIATRY","('SSCI',)","793","1.1","Q4","0.36","5.66" +"TRANSPORTATION JOURNAL","0041-1612","2157-328X","('MANAGEMENT', 'TRANSPORTATION')","('SSCI', 'SSCI')","475","1.1","('Q4', 'Q4')","0.36","0.00" +"Analytical and Bioanalytical Chemistry Research","2383-093X","2383-093X","CHEMISTRY, ANALYTICAL","('ESCI',)","260","1.1","Q4","0.35","0.00" +"Computer Optics","0134-2452","2412-6179","OPTICS","('ESCI',)","940","1.1","Q4","0.35","73.99" +"Current Medical Imaging","1573-4056","1875-6603","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,118","1.1","Q3","0.35","6.94" +"i2 Investigacion e Innovacion en Arquitectura y Territorio","","2341-0515","ARCHITECTURE","('ESCI',)","73","1.1","","0.35","96.88" +"Information Resources Management Journal","1040-1628","1533-7979","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","365","1.1","Q3","0.35","9.09" +"International Journal of Clinical and Experimental Pathology","1936-2625","1936-2625","('ONCOLOGY', 'PATHOLOGY')","('ESCI', 'ESCI')","8,597","1.1","('Q4', 'Q4')","0.35","0.00" +"JOURNAL OF MOTOR BEHAVIOR","0022-2895","1940-1027","('NEUROSCIENCES', 'PSYCHOLOGY', 'PSYCHOLOGY, EXPERIMENTAL', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SSCI', 'SCIE')","2,354","1.1","('Q4', 'Q4', 'Q4', 'Q3')","0.35","7.24" +"Journal of Pathogens","2090-3057","2090-3065","MICROBIOLOGY","('ESCI',)","463","1.1","Q4","0.35","100.00" +"Journal of Stem Cells & Regenerative Medicine","0973-7154","0973-7154","CELL & TISSUE ENGINEERING","('ESCI',)","128","1.1","Q4","0.35","82.35" +"KEIO JOURNAL OF MEDICINE","0022-9717","1880-1293","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","431","1.1","Q4","0.35","80.85" +"Optics Continuum","","2770-0208","OPTICS","('ESCI',)","328","1.1","Q4","0.35","99.56" +"POPULATION ECOLOGY","1438-3896","1438-390X","ECOLOGY","('SCIE',)","1,322","1.1","Q4","0.35","36.00" +"South African Journal of Accounting Research","1029-1954","2376-3981","BUSINESS, FINANCE","('ESCI',)","132","1.1","Q3","0.35","0.00" +"ACTA BOTANICA CROATICA","0365-0588","1847-8476","PLANT SCIENCES","('SCIE',)","485","1.1","Q3","0.34","94.74" +"Advances in Autism","2056-3868","2056-3868","PSYCHOLOGY, DEVELOPMENTAL","('ESCI',)","273","1.1","Q4","0.34","1.37" +"Curved and Layered Structures","2353-7396","2353-7396","MECHANICS","('ESCI',)","224","1.1","Q4","0.34","96.97" +"Innovations in Systems and Software Engineering","1614-5046","1614-5054","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","356","1.1","Q4","0.34","11.18" +"INTERNATIONAL JOURNAL OF COMPUTATIONAL FLUID DYNAMICS","1061-8562","1029-0257","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE')","913","1.1","('Q4', 'Q4')","0.34","4.90" +"International Journal of Educational Psychology","2014-3591","2014-3591","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","196","1.1","Q4","0.34","89.47" +"JOURNAL OF FUNCTIONAL PROGRAMMING","0956-7968","1469-7653","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","466","1.1","Q4","0.34","64.71" +"Journal of Healthcare Quality Research","","2603-6479","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","180","1.1","Q4","0.34","0.00" +"Journal of Intergenerational Relationships","1535-0770","1535-0932","GERONTOLOGY","('ESCI',)","631","1.1","Q3","0.34","16.04" +"Journal of Mining and Environment","2251-8592","2251-8606","MINING & MINERAL PROCESSING","('ESCI',)","494","1.1","Q3","0.34","0.00" +"NEUROLOGIST","1074-7931","2331-2637","CLINICAL NEUROLOGY","('SCIE',)","1,058","1.1","Q4","0.34","14.22" +"SOUNDINGS","0038-1861","2161-6302","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","392","1.1","","0.34","4.55" +"Terra Economicus","2073-6606","2073-6606","ECONOMICS","('ESCI',)","198","1.1","Q3","0.34","99.06" +"Turkish Journal of Pathology","1018-5615","1309-5730","PATHOLOGY","('ESCI',)","397","1.1","Q4","0.34","100.00" +"Brain Impairment","1443-9646","1839-5252","('CLINICAL NEUROLOGY', 'NEUROSCIENCES', 'REHABILITATION')","('SCIE', 'SCIE', 'SCIE')","494","1.1","('Q4', 'Q4', 'Q3')","0.33","41.05" +"ECONOMIC RECORD","0013-0249","1475-4932","ECONOMICS","('SSCI',)","1,117","1.1","Q3","0.33","46.88" +"IET Signal Processing","1751-9675","1751-9683","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","1,129","1.1","Q4","0.33","83.26" +"Journal of Geosciences","1802-6222","1803-1943","('GEOCHEMISTRY & GEOPHYSICS', 'MINERALOGY')","('SCIE', 'SCIE')","521","1.1","('Q3', 'Q3')","0.33","100.00" +"Medical Dosimetry","0958-3947","1873-4022","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","952","1.1","('Q4', 'Q3')","0.33","5.85" +"NEUROPSYCHIATRIE","0948-6259","2194-1327","PSYCHIATRY","('ESCI',)","348","1.1","Q4","0.33","59.65" +"OPTICAL ENGINEERING","0091-3286","1560-2303","OPTICS","('SCIE',)","10,234","1.1","Q4","0.33","11.98" +"Psychology in Russia-State of the Art","2074-6857","2307-2202","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","320","1.1","Q3","0.33","95.76" +"Radiation Effects and Defects in Solids","1042-0150","1029-4953","('NUCLEAR SCIENCE & TECHNOLOGY', 'PHYSICS, CONDENSED MATTER', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE', 'SCIE')","1,606","1.1","('Q3', 'Q4', 'Q4')","0.33","1.01" +"Reproductive Medicine","","2673-3897","('OBSTETRICS & GYNECOLOGY', 'REPRODUCTIVE BIOLOGY')","('ESCI', 'ESCI')","67","1.1","('Q4', 'Q4')","0.33","100.00" +"Translational Journal of the American College of Sports Medicine","","2379-2868","SPORT SCIENCES","('ESCI',)","246","1.1","Q3","0.33","3.03" +"ACTA RADIOLOGICA","0284-1851","1600-0455","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","4,939","1.1","Q3","0.32","4.20" +"AJAR-African Journal of AIDS Research","1608-5906","1727-9445","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","602","1.1","Q4","0.32","27.59" +"Botanical Sciences","2007-4298","2007-4476","PLANT SCIENCES","('SCIE',)","869","1.1","Q3","0.32","81.85" +"CANADIAN JOURNAL OF CIVIL ENGINEERING","0315-1468","1208-6029","ENGINEERING, CIVIL","('SCIE',)","4,355","1.1","Q3","0.32","3.30" +"Eastern Economic Journal","0094-5056","1939-4632","ECONOMICS","('ESCI',)","597","1.1","Q3","0.32","3.80" +"Forests Trees and Livelihoods","1472-8028","2164-3075","('ENVIRONMENTAL STUDIES', 'FORESTRY')","('ESCI', 'ESCI')","426","1.1","('Q4', 'Q3')","0.32","13.79" +"GEOPHYSICAL AND ASTROPHYSICAL FLUID DYNAMICS","0309-1929","1029-0419","('ASTRONOMY & ASTROPHYSICS', 'GEOCHEMISTRY & GEOPHYSICS', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","888","1.1","('Q3', 'Q3', 'Q4')","0.32","34.62" +"Integrative Psychological and Behavioral Science","1932-4502","1936-3567","PSYCHOLOGY, BIOLOGICAL","('SSCI',)","758","1.1","Q4","0.32","19.81" +"Interpretation-A Journal of Subsurface Characterization","2324-8858","2324-8866","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","1,922","1.1","Q3","0.32","2.37" +"Journal of Seed Science","2317-1537","2317-1545","AGRONOMY","('SCIE',)","479","1.1","Q3","0.32","83.87" +"Journal of Social and Economic Development","0972-5792","2199-6873","('DEVELOPMENT STUDIES', 'ECONOMICS')","('ESCI', 'ESCI')","237","1.1","('Q3', 'Q3')","0.32","17.71" +"OPTICAL REVIEW","1340-6000","1349-9432","OPTICS","('SCIE',)","1,027","1.1","Q4","0.32","6.98" +"PHYSICAL GEOGRAPHY","0272-3646","1930-0557","('ENVIRONMENTAL SCIENCES', 'GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,272","1.1","('Q4', 'Q4', 'Q4', 'Q4')","0.32","6.10" +"REVISTA LATINOAMERICANA DE PSICOLOGIA","0120-0534","0120-0534","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","588","1.1","Q3","0.32","45.21" +"RUSSIAN JOURNAL OF PLANT PHYSIOLOGY","1021-4437","1608-3407","PLANT SCIENCES","('SCIE',)","2,876","1.1","Q3","0.32","4.01" +"Tropical Life Sciences Research","1985-3718","2180-4249","BIOLOGY","('ESCI',)","456","1.1","Q3","0.32","92.17" +"VISUAL NEUROSCIENCE","0952-5238","1469-8714","('NEUROSCIENCES', 'OPHTHALMOLOGY')","('SCIE', 'SCIE')","1,800","1.1","('Q4', 'Q3')","0.32","39.13" +"WIENER MEDIZINISCHE WOCHENSCHRIFT","0043-5341","1563-258X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,184","1.1","Q2","0.32","43.65" +"Acta Crystallographica Section F-Structural Biology Communications","","2053-230X","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS', 'CRYSTALLOGRAPHY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,855","1.1","('Q4', 'Q4', 'Q4', 'Q3')","0.31","46.31" +"AFRICAN JOURNAL OF ECOLOGY","0141-6707","1365-2028","ECOLOGY","('SCIE',)","2,421","1.1","Q4","0.31","19.72" +"Ager-Revista de Estudios sobre Despoblacion y Desarrollo Rural","1578-7168","2340-4655","SOCIOLOGY","('ESCI',)","177","1.1","Q3","0.31","0.00" +"AIMS Biophysics","2377-9098","2377-9098","BIOPHYSICS","('ESCI',)","350","1.1","Q4","0.31","96.05" +"APPLIED MAGNETIC RESONANCE","0937-9347","1613-7507","('PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE')","1,540","1.1","('Q4', 'Q3')","0.31","21.97" +"Arab Journal of Gastroenterology","1687-1979","2090-2387","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","528","1.1","Q4","0.31","3.55" +"Central European Journal of Public Health","1210-7778","1803-1048","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","951","1.1","Q4","0.31","2.48" +"CLAY MINERALS","0009-8558","1471-8030","('CHEMISTRY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'MINERALOGY')","('SCIE', 'SCIE', 'SCIE')","2,733","1.1","('Q4', 'Q4', 'Q3')","0.31","12.64" +"Current Drug Safety","1574-8863","2212-3911","PHARMACOLOGY & PHARMACY","('ESCI',)","755","1.1","Q4","0.31","2.82" +"Foreign Trade Review","0015-7325","0971-7625","('BUSINESS', 'ECONOMICS')","('ESCI', 'ESCI')","240","1.1","('Q4', 'Q3')","0.31","9.09" +"Indian Journal of Palliative Care","0973-1075","1998-3735","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","1,210","1.1","Q4","0.31","96.26" +"International Journal of Intelligent Transportation Systems Research","1348-8503","1868-8659","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","390","1.1","Q3","0.31","18.94" +"INTERNATIONAL JOURNAL OF PSYCHIATRY IN MEDICINE","0091-2174","1541-3527","PSYCHIATRY","('SCIE', 'SSCI')","1,596","1.1","Q4","0.31","7.04" +"ISOTOPES IN ENVIRONMENTAL AND HEALTH STUDIES","1025-6016","1477-2639","('CHEMISTRY, INORGANIC & NUCLEAR', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","1,065","1.1","('Q4', 'Q4')","0.31","11.11" +"Journal of Agricultural Sciences-Tarim Bilimleri Dergisi","1300-7580","2148-9297","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","681","1.1","Q3","0.31","94.40" +"JOURNAL OF ARTIFICIAL ORGANS","1434-7229","1619-0904","('ENGINEERING, BIOMEDICAL', 'TRANSPLANTATION')","('SCIE', 'SCIE')","926","1.1","('Q4', 'Q3')","0.31","18.33" +"Journal of Physics Communications","2399-6528","2399-6528","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","1,366","1.1","Q3","0.31","99.18" +"Journal of Transport and Supply Chain Management","2310-8789","1995-5235","MANAGEMENT","('ESCI',)","210","1.1","Q4","0.31","98.70" +"Macroeconomics and Finance in Emerging Market Economies","1752-0843","1752-0851","ECONOMICS","('ESCI',)","250","1.1","Q3","0.31","0.92" +"Mathematics in Computer Science","1661-8270","1661-8289","MATHEMATICS, APPLIED","('ESCI',)","313","1.1","Q2","0.31","19.05" +"Open Computer Science","2299-1093","2299-1093","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","250","1.1","Q3","0.31","95.70" +"Optics","","2673-3269","OPTICS","('ESCI',)","120","1.1","Q4","0.31","100.00" +"Physics of Wave Phenomena","1541-308X","1934-807X","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","348","1.1","Q3","0.31","0.00" +"Plant Ecology and Evolution","2032-3913","2032-3921","PLANT SCIENCES","('SCIE',)","522","1.1","Q3","0.31","100.00" +"RISK MANAGEMENT AND INSURANCE REVIEW","1098-1616","1540-6296","('BUSINESS, FINANCE', 'ECONOMICS')","('ESCI', 'ESCI')","268","1.1","('Q3', 'Q3')","0.31","27.27" +"SAE International Journal of Engines","1946-3936","1946-3944","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","2,341","1.1","Q3","0.31","0.00" +"South African Journal of Plant and Soil","0257-1862","2167-034X","AGRONOMY","('ESCI',)","681","1.1","Q3","0.31","3.88" +"CANADIAN JOURNAL OF PHYSICS","0008-4204","1208-6045","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","4,574","1.1","Q3","0.30","1.86" +"FORUM FOR DEVELOPMENT STUDIES","0803-9410","1891-1765","DEVELOPMENT STUDIES","('ESCI',)","402","1.1","Q3","0.30","32.35" +"Health SA Gesondheid","1025-9848","2071-9736","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","543","1.1","Q4","0.30","96.38" +"HERZ","0340-9937","1615-6692","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,403","1.1","Q4","0.30","15.12" +"INFORMS Journal on Applied Analytics","2644-0865","2644-0873","('MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SSCI', 'SCIE')","188","1.1","('Q4', 'Q4')","0.30","0.00" +"INTERNATIONAL JOURNAL OF ELECTRONICS","0020-7217","1362-3060","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","1,560","1.1","Q4","0.30","0.00" +"International Journal of Sensor Networks","1748-1279","1748-1287","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","423","1.1","('Q4', 'Q4')","0.30","0.50" +"Journal of Accounting Literature","0737-4607","2452-1469","BUSINESS, FINANCE","('ESCI',)","887","1.1","Q3","0.30","8.33" +"Journal of Basic and Applied Zoology","2090-9896","2090-990X","BIOLOGY","('ESCI',)","596","1.1","Q3","0.30","100.00" +"JOURNAL OF COLD REGIONS ENGINEERING","0887-381X","1943-5495","('ENGINEERING, CIVIL', 'ENGINEERING, ENVIRONMENTAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","732","1.1","('Q3', 'Q4', 'Q4')","0.30","4.76" +"JOURNAL OF COMPUTER AND SYSTEM SCIENCES","0022-0000","1090-2724","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","4,248","1.1","('Q4', 'Q3')","0.30","30.73" +"Journal of Contemporary Brachytherapy","1689-832X","2081-2841","('ONCOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE')","858","1.1","('Q4', 'Q3')","0.30","99.02" +"Journal of Dynamics and Games","2164-6066","2164-6074","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","148","1.1","Q3","0.30","100.00" +"Journal of Sport for Development","2330-0574","2330-0574","('DEVELOPMENT STUDIES', 'HOSPITALITY, LEISURE, SPORT & TOURISM')","('ESCI', 'ESCI')","107","1.1","('Q3', 'Q3')","0.30","0.00" +"JPC-JOURNAL OF PLANAR CHROMATOGRAPHY-MODERN TLC","0933-4173","1789-0993","CHEMISTRY, ANALYTICAL","('SCIE',)","819","1.1","Q4","0.30","13.81" +"Medeniyet Medical Journal","2149-2042","2149-4606","MEDICINE, GENERAL & INTERNAL","('ESCI',)","225","1.1","Q2","0.30","96.99" +"META","0026-0452","0026-0452","LANGUAGE & LINGUISTICS","('AHCI',)","1,032","1.1","","0.30","9.09" +"Mitochondrial DNA Part A","2470-1394","2470-1408","GENETICS & HEREDITY","('SCIE',)","1,355","1.1","Q4","0.30","0.00" +"Polish Journal of Management Studies","2081-7452","2081-7452","MANAGEMENT","('ESCI',)","961","1.1","Q4","0.30","82.58" +"Progress in Rubber Plastics and Recycling Technology","1477-7606","1478-2413","('MATERIALS SCIENCE, COMPOSITES', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","373","1.1","('Q4', 'Q4')","0.30","6.49" +"RADIOLOGIA","0033-8338","1578-178X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","503","1.1","Q3","0.30","1.37" +"Revista Electronica de LEEME","1575-9563","1575-9563","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","115","1.1","Q3","0.30","90.91" +"Revista Iberoamericana de Automatica e Informatica Industrial","1697-7912","1697-7920","('AUTOMATION & CONTROL SYSTEMS', 'ROBOTICS')","('SCIE', 'SCIE')","277","1.1","('Q4', 'Q4')","0.30","88.18" +"TUEXENIA","0722-494X","0722-494X","PLANT SCIENCES","('SCIE',)","341","1.1","Q3","0.30","0.00" +"ZEITSCHRIFT FUR GERONTOLOGIE UND GERIATRIE","0948-6704","1435-1269","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY')","('SCIE', 'SSCI')","1,219","1.1","('Q4', 'Q3')","0.30","47.70" +"ACTA CLINICA BELGICA","1784-3286","2295-3337","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,250","1.1","Q2","0.29","3.43" +"Acta Paulista de Enfermagem","0103-2100","1982-0194","NURSING","('SCIE', 'SSCI')","1,134","1.1","Q3","0.29","59.03" +"Advances in Virology","1687-8639","1687-8647","VIROLOGY","('ESCI',)","296","1.1","Q4","0.29","100.00" +"BEHAVIORAL INTERVENTIONS","1072-0847","1099-078X","PSYCHOLOGY, CLINICAL","('SSCI',)","858","1.1","Q3","0.29","13.89" +"Ciencia e Tecnica Vitivinicola","","2416-3953","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","187","1.1","Q4","0.29","97.67" +"Frontiers in Heat and Mass Transfer","2151-8629","2151-8629","THERMODYNAMICS","('ESCI',)","585","1.1","Q4","0.29","96.91" +"International Journal of Ventilation","1473-3315","2044-4044","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENERGY & FUELS')","('SCIE', 'SCIE')","560","1.1","('Q3', 'Q4')","0.29","16.22" +"INTERNATIONAL STUDIES OF MANAGEMENT & ORGANIZATION","0020-8825","1558-0911","MANAGEMENT","('ESCI',)","668","1.1","Q4","0.29","18.75" +"JOURNAL OF LOW TEMPERATURE PHYSICS","0022-2291","1573-7357","('PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","3,589","1.1","('Q4', 'Q4')","0.29","16.89" +"Pediatric Allergy Immunology and Pulmonology","2151-321X","2151-3228","('ALLERGY', 'IMMUNOLOGY', 'PEDIATRICS', 'RESPIRATORY SYSTEM')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","386","1.1","('Q4', 'Q4', 'Q3', 'Q4')","0.29","0.00" +"Proceedings of the Institution of Civil Engineers-Engineering and Computational Mechanics","1755-0777","1755-0785","ENGINEERING, CIVIL","('ESCI',)","132","1.1","Q3","0.29","0.00" +"SILVAE GENETICA","0037-5349","2509-8934","('FORESTRY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","853","1.1","('Q3', 'Q4')","0.29","100.00" +"Thermal Science","0354-9836","2334-7163","THERMODYNAMICS","('SCIE',)","4,887","1.1","Q4","0.29","98.82" +"TOXICOLOGICAL AND ENVIRONMENTAL CHEMISTRY","0277-2248","1029-0486","('ENVIRONMENTAL SCIENCES', 'TOXICOLOGY')","('SCIE', 'SCIE')","1,815","1.1","('Q4', 'Q4')","0.29","6.67" +"Translational and Clinical Pharmacology","2289-0882","2383-5427","PHARMACOLOGY & PHARMACY","('ESCI',)","229","1.1","Q4","0.29","100.00" +"ASIA-PACIFIC JOURNAL OF OPERATIONAL RESEARCH","0217-5959","1793-7019","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","771","1.1","Q4","0.28","0.00" +"International Advances in Economic Research","1083-0898","1573-966X","ECONOMICS","('ESCI',)","453","1.1","Q3","0.28","22.03" +"Journal of Developing Societies","0169-796X","1745-2546","DEVELOPMENT STUDIES","('ESCI',)","375","1.1","Q3","0.28","31.67" +"Molecular & Cellular Toxicology","1738-642X","2092-8467","TOXICOLOGY","('SCIE',)","686","1.1","Q4","0.28","7.24" +"Palabra Clave","0122-8285","2027-534X","COMMUNICATION","('ESCI',)","279","1.1","Q3","0.28","98.77" +"PERFUSION-UK","0267-6591","1477-111X","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PERIPHERAL VASCULAR DISEASE')","('SCIE', 'SCIE')","2,146","1.1","('Q4', 'Q4')","0.28","13.68" +"POLIMERY","0032-2725","0032-2725","POLYMER SCIENCE","('SCIE',)","1,002","1.1","Q4","0.28","72.56" +"REVISTA DE LA FACULTAD DE CIENCIAS AGRARIAS","","1853-8665","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","322","1.1","Q3","0.28","70.09" +"Archives of Disease in Childhood-Education and Practice Edition","1743-0585","1743-0593","PEDIATRICS","('SCIE',)","888","1.1","Q3","0.27","5.81" +"Asian Journal of Atmospheric Environment","1976-6912","2287-1160","METEOROLOGY & ATMOSPHERIC SCIENCES","('ESCI',)","342","1.1","Q4","0.27","84.16" +"Asian-Pacific Economic Literature","0818-9935","1467-8411","ECONOMICS","('SSCI',)","215","1.1","Q3","0.27","2.08" +"CORROSION","0010-9312","1938-159X","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","6,433","1.1","('Q4', 'Q3')","0.27","4.02" +"Egyptian Journal of Neurology Psychiatry and Neurosurgery","1687-8329","1687-8329","NEUROSCIENCES","('ESCI',)","796","1.1","Q4","0.27","99.80" +"Genetic Testing and Molecular Biomarkers","1945-0265","1945-0257","GENETICS & HEREDITY","('SCIE',)","1,440","1.1","Q4","0.27","4.21" +"IDCases","2214-2509","2214-2509","INFECTIOUS DISEASES","('ESCI',)","1,587","1.1","Q4","0.27","98.95" +"IEEE Magnetics Letters","1949-307X","1949-3088","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","811","1.1","('Q4', 'Q4')","0.27","18.31" +"International Journal of Steel Structures","1598-2351","2093-6311","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","1,955","1.1","('Q3', 'Q3')","0.27","3.42" +"Journal of Clinical Imaging Science","2156-7514","2156-5597","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","761","1.1","Q3","0.27","59.28" +"Journal of Gemmology","1355-4565","2632-1718","MINERALOGY","('SCIE',)","294","1.1","Q3","0.27","0.00" +"MATERIALES DE CONSTRUCCION","0465-2746","1988-3226","('CONSTRUCTION & BUILDING TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,174","1.1","('Q3', 'Q4')","0.27","100.00" +"Pollution","2383-451X","2383-4501","ENVIRONMENTAL SCIENCES","('ESCI',)","645","1.1","Q4","0.27","0.00" +"PROCEEDINGS OF THE INSTITUTION OF CIVIL ENGINEERS-WATER MANAGEMENT","1741-7589","1751-7729","('ENGINEERING, CIVIL', 'WATER RESOURCES')","('SCIE', 'SCIE')","774","1.1","('Q3', 'Q4')","0.27","3.81" +"Toxicology Communications","","2473-4306","TOXICOLOGY","('ESCI',)","123","1.1","Q4","0.27","98.48" +"ARCHIVES OF MECHANICS","0373-2029","0373-2029","('MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MECHANICS')","('SCIE', 'SCIE')","608","1.1","('Q3', 'Q4')","0.26","0.00" +"Archives of Rheumatology","","2618-6500","RHEUMATOLOGY","('SCIE',)","617","1.1","Q4","0.26","90.73" +"Australasian Journal of Environmental Management","1448-6563","2159-5356","ENVIRONMENTAL STUDIES","('SSCI',)","514","1.1","Q4","0.26","22.41" +"B E Journal of Economic Analysis & Policy","2194-6108","1935-1682","ECONOMICS","('SSCI',)","1,174","1.1","Q3","0.26","24.41" +"Civil and Environmental Engineering","1336-5835","2199-6512","ENGINEERING, CIVIL","('ESCI',)","322","1.1","Q3","0.26","98.56" +"Economics of Peace and Security Journal","1749-852X","1749-852X","ECONOMICS","('ESCI',)","125","1.1","Q3","0.26","100.00" +"Iraqi Journal of Agricultural Sciences","0075-0530","2410-0862","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","1,144","1.1","Q3","0.26","81.57" +"Journal of Brachial Plexus and Peripheral Nerve Injury","1749-7221","1749-7221","CLINICAL NEUROLOGY","('ESCI',)","155","1.1","Q4","0.26","100.00" +"Journal of Nanophotonics","1934-2608","","('NANOSCIENCE & NANOTECHNOLOGY', 'OPTICS')","('SCIE', 'SCIE')","916","1.1","('Q4', 'Q4')","0.26","2.07" +"Malaysian Journal of Computer Science","0127-9084","0127-9084","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","196","1.1","('Q4', 'Q3')","0.26","0.00" +"NUCLEOSIDES NUCLEOTIDES & NUCLEIC ACIDS","1525-7770","1532-2335","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","1,576","1.1","Q4","0.26","3.15" +"PHYSICS OF METALS AND METALLOGRAPHY","0031-918X","1555-6190","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","2,393","1.1","Q3","0.26","4.27" +"SOUTH AFRICAN JOURNAL OF ENOLOGY AND VITICULTURE","0253-939X","2224-7904","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","788","1.1","Q4","0.26","92.16" +"AIDS Research and Treatment","2090-1240","2090-1259","INFECTIOUS DISEASES","('ESCI',)","411","1.1","Q4","0.25","100.00" +"Annals of Corporate Governance","2381-6732","2381-6732","MANAGEMENT","('ESCI',)","33","1.1","Q4","0.25","88.89" +"Einstein-Sao Paulo","1679-4508","2317-6385","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,482","1.1","Q2","0.25","97.28" +"IET Computers and Digital Techniques","1751-8601","1751-861X","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","294","1.1","('Q4', 'Q3')","0.25","69.64" +"Intractable & Rare Diseases Research","2186-3644","2186-361X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","742","1.1","Q2","0.25","100.00" +"Journal of Applied Fluid Mechanics","1735-3572","1735-3645","('MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","1,785","1.1","('Q4', 'Q4')","0.25","96.74" +"Journal of Object Technology","1660-1769","","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","246","1.1","Q4","0.25","73.02" +"Journal of the Korean Astronomical Society","1225-4614","1225-4614","ASTRONOMY & ASTROPHYSICS","('SCIE',)","342","1.1","Q3","0.25","0.00" +"Malaysian Journal of Medical Sciences","1394-195X","2180-4303","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,841","1.1","Q4","0.25","96.59" +"Ornamental Horticulture-Revista Brasileira de Horticultura Ornamental","","2447-536X","('HORTICULTURE', 'PLANT SCIENCES')","('ESCI', 'ESCI')","355","1.1","('Q3', 'Q3')","0.25","97.79" +"Research Journal of Pharmacognosy","2345-4458","2345-5977","PHARMACOLOGY & PHARMACY","('ESCI',)","436","1.1","Q4","0.25","0.00" +"Transport and Telecommunication Journal","1407-6160","1407-6179","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","258","1.1","Q3","0.25","100.00" +"Acta Metallurgica Slovaca","1335-1532","1338-1156","METALLURGY & METALLURGICAL ENGINEERING","('ESCI',)","257","1.1","Q3","0.24","100.00" +"ACTA SOCIETATIS BOTANICORUM POLONIAE","0001-6977","2083-9480","PLANT SCIENCES","('SCIE',)","943","1.1","Q3","0.24","95.71" +"ACTA VIROLOGICA","0001-723X","1336-2305","VIROLOGY","('SCIE',)","930","1.1","Q4","0.24","34.43" +"ASTRONOMISCHE NACHRICHTEN","0004-6337","1521-3994","ASTRONOMY & ASTROPHYSICS","('SCIE',)","2,194","1.1","Q3","0.24","22.17" +"ASTRONOMY REPORTS","1063-7729","1562-6881","ASTRONOMY & ASTROPHYSICS","('SCIE',)","2,025","1.1","Q3","0.24","7.22" +"Current Geriatrics Reports","","2196-7865","GERIATRICS & GERONTOLOGY","('ESCI',)","323","1.1","Q4","0.24","3.77" +"JOURNAL OF ASTROPHYSICS AND ASTRONOMY","0250-6335","0973-7758","ASTRONOMY & ASTROPHYSICS","('SCIE',)","1,015","1.1","Q3","0.24","0.00" +"Journal of the Royal College of Physicians of Edinburgh","1478-2715","2042-8189","MEDICINE, GENERAL & INTERNAL","('ESCI',)","878","1.1","Q2","0.24","5.00" +"Korean Journal of Metals and Materials","1738-8228","","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","643","1.1","('Q4', 'Q3')","0.24","99.69" +"Property Management","0263-7472","1758-731X","MANAGEMENT","('ESCI',)","635","1.1","Q4","0.24","3.88" +"Protection of Metals and Physical Chemistry of Surfaces","2070-2051","2070-206X","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","1,524","1.1","Q3","0.24","0.68" +"Tec Empresarial","1659-2395","1659-2395","MANAGEMENT","('ESCI',)","83","1.1","Q4","0.24","77.78" +"Translational Medicine at UniSa","2239-9747","2239-9747","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","206","1.1","Q4","0.24","64.29" +"Advances in Laboratory Medicine-Avances en Medicina de Laboratorio","","2628-491X","MEDICAL LABORATORY TECHNOLOGY","('ESCI',)","111","1.1","Q4","0.23","97.39" +"Allergo Journal","0941-8849","2195-6405","ALLERGY","('ESCI',)","386","1.1","Q4","0.23","32.10" +"ASTRONOMY LETTERS-A JOURNAL OF ASTRONOMY AND SPACE ASTROPHYSICS","1063-7737","1562-6873","ASTRONOMY & ASTROPHYSICS","('SCIE',)","1,300","1.1","Q3","0.23","0.47" +"Brazilian Journal of Analytical Chemistry","2179-3425","2179-3433","CHEMISTRY, ANALYTICAL","('ESCI',)","137","1.1","Q4","0.23","81.48" +"Chinese Science Bulletin-Chinese","0023-074X","2095-9419","MULTIDISCIPLINARY SCIENCES","('ESCI',)","2,185","1.1","Q3","0.23","0.81" +"EAI Endorsed Transactions on Scalable Information Systems","2032-9407","2032-9407","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","308","1.1","Q4","0.23","99.27" +"International Journal of Online Marketing","2156-1753","2156-1745","BUSINESS","('ESCI',)","116","1.1","Q4","0.23","50.00" +"JOURNAL OF ELECTRONIC TESTING-THEORY AND APPLICATIONS","0923-8174","1573-0727","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","509","1.1","Q4","0.23","9.56" +"Journal of the Mexican Chemical Society","1870-249X","1665-9686","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","636","1.1","Q3","0.23","97.90" +"RUSSIAN JOURNAL OF BIOORGANIC CHEMISTRY","1068-1620","1608-330X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","1,488","1.1","('Q4', 'Q4')","0.23","7.47" +"Semiconductor Physics Quantum Electronics & Optoelectronics","1560-8034","1605-6582","QUANTUM SCIENCE & TECHNOLOGY","('ESCI',)","365","1.1","Q4","0.23","90.96" +"World Journal for Pediatric and Congenital Heart Surgery","2150-1351","2150-0136","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","1,200","1.1","Q4","0.23","5.23" +"Australian Journal of Emergency Management","1324-1540","1324-1540","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","687","1.1","Q4","0.22","0.00" +"Cuadernos Geograficos","0210-5462","2340-0129","GEOGRAPHY","('ESCI',)","386","1.1","Q3","0.22","93.58" +"CURRENT SCIENCE","0011-3891","0011-3891","MULTIDISCIPLINARY SCIENCES","('SCIE',)","12,194","1.1","Q3","0.22","64.20" +"EGYPTIAN JOURNAL OF CHEMISTRY","0449-2285","2357-0245","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","3,836","1.1","Q3","0.22","0.20" +"Insights-The UKSG Journal","2048-7754","2048-7754","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","267","1.1","Q3","0.22","84.85" +"International Journal of Exergy","1742-8297","1742-8300","('ENERGY & FUELS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","831","1.1","('Q4', 'Q4')","0.22","2.16" +"JOURNAL OF PHARMACY TECHNOLOGY","8755-1225","1549-4810","PHARMACOLOGY & PHARMACY","('ESCI',)","422","1.1","Q4","0.22","6.50" +"Journal of the Global Power and Propulsion Society","","2515-3080","ENGINEERING, MECHANICAL","('ESCI',)","141","1.1","Q4","0.22","100.00" +"ACM Transactions on Economics and Computation","2167-8375","2167-8383","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","279","1.1","Q4","0.21","2.08" +"Current Pulmonology Reports","","2199-2428","RESPIRATORY SYSTEM","('ESCI',)","158","1.1","Q4","0.21","20.00" +"ENVIRONMENTAL ETHICS","0163-4275","2153-7895","('ENVIRONMENTAL STUDIES', 'ETHICS')","('SSCI', 'SSCI')","715","1.1","('Q4', 'Q3')","0.21","0.00" +"Grundwasser","1430-483X","1432-1165","('ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('SCIE', 'SCIE')","187","1.1","('Q4', 'Q4')","0.21","78.33" +"Hematology Reports","2038-8322","2038-8330","HEMATOLOGY","('ESCI',)","321","1.1","Q4","0.21","99.30" +"INFOR","0315-5986","1916-0615","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","577","1.1","('Q4', 'Q4')","0.21","4.48" +"INTERNATIONAL POLYMER PROCESSING","0930-777X","2195-8602","('ENGINEERING, CHEMICAL', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","1,045","1.1","('Q4', 'Q4')","0.21","2.34" +"Journal of Mechanical Engineering and Sciences","2289-4659","2231-8380","ENGINEERING, MECHANICAL","('ESCI',)","1,434","1.1","Q4","0.21","75.42" +"MIKROBIYOLOJI BULTENI","0374-9096","0374-9096","MICROBIOLOGY","('SCIE',)","607","1.1","Q4","0.21","90.86" +"Archives of Civil Engineering","1230-2945","2300-3103","ENGINEERING, CIVIL","('ESCI',)","825","1.1","Q3","0.20","63.94" +"Canadian Journal of Chemistry","0008-4042","1480-3291","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","6,925","1.1","Q3","0.20","4.83" +"CHIMIA","0009-4293","0009-4293","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","1,764","1.1","Q3","0.20","83.81" +"CYBERNETICS AND SYSTEMS","0196-9722","1087-6553","COMPUTER SCIENCE, CYBERNETICS","('SCIE',)","844","1.1","Q3","0.20","2.29" +"IMAGING SCIENCE JOURNAL","1368-2199","1743-131X","IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY","('SCIE',)","475","1.1","Q4","0.20","1.52" +"Structural Engineering International","1016-8664","1683-0350","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","1,365","1.1","('Q3', 'Q3')","0.20","4.32" +"International Journal of Business Environment","1740-0589","1740-0597","BUSINESS","('ESCI',)","165","1.1","Q4","0.19","3.28" +"LASER AND PARTICLE BEAMS","0263-0346","1469-803X","PHYSICS, APPLIED","('SCIE',)","1,093","1.1","Q4","0.19","100.00" +"Management","1286-4692","1286-4692","MANAGEMENT","('ESCI',)","1,127","1.1","Q4","0.19","93.88" +"BULLETIN DU CANCER","0007-4551","1769-6917","ONCOLOGY","('SCIE',)","1,338","1.1","Q4","0.18","40.00" +"Current Green Chemistry","2213-3461","2213-347X","('CHEMISTRY, MULTIDISCIPLINARY', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","254","1.1","('Q3', 'Q4')","0.18","0.00" +"FOLIA BIOLOGICA","0015-5500","0015-5500","('BIOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","478","1.1","('Q3', 'Q4')","0.18","0.00" +"Journal of Cultural Heritage Management and Sustainable Development","2044-1266","2044-1274","GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY","('ESCI',)","591","1.1","Q4","0.18","12.68" +"Journal of Global Entrepreneurship Research","2228-7566","2251-7316","BUSINESS","('ESCI',)","783","1.1","Q4","0.18","6.93" +"Clinical Advances in Hematology & Oncology","1543-0790","1543-0790","ONCOLOGY","('ESCI',)","795","1.1","Q4","0.17","0.00" +"Gadjah Mada international journal of business","1411-1128","2338-7238","BUSINESS","('ESCI',)","181","1.1","Q4","0.17","15.56" +"Hormone Molecular Biology and Clinical Investigation","1868-1883","1868-1891","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","1,204","1.1","Q4","0.17","0.58" +"International Journal of Applied Pattern Recognition","2049-887X","2049-8888","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","149","1.1","Q4","0.17","0.00" +"Iranian Journal of Immunology","1735-1383","1735-367X","IMMUNOLOGY","('SCIE',)","477","1.1","Q4","0.17","0.00" +"REVISTA MEXICANA DE ASTRONOMIA Y ASTROFISICA","0185-1101","","ASTRONOMY & ASTROPHYSICS","('SCIE',)","955","1.1","Q3","0.17","0.00" +"RUSSIAN JOURNAL OF ELECTROCHEMISTRY","1023-1935","1608-3342","ELECTROCHEMISTRY","('SCIE',)","2,138","1.1","Q4","0.17","0.28" +"Soils and Rocks","1980-9743","2675-5475","ENGINEERING, GEOLOGICAL","('ESCI',)","308","1.1","Q4","0.17","100.00" +"American Journal of Business","1935-519X","1935-5181","BUSINESS","('ESCI',)","228","1.1","Q4","0.16","2.94" +"Cultura Ciencia y Deporte","1696-5043","1989-7413","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","422","1.1","Q3","0.16","62.89" +"Immunopathologia Persa","2423-8015","2423-8015","IMMUNOLOGY","('ESCI',)","158","1.1","Q4","0.16","99.03" +"INTERNATIONAL JOURNAL OF APPLIED ELECTROMAGNETICS AND MECHANICS","1383-5416","1875-8800","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MECHANICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","1,330","1.1","('Q4', 'Q4', 'Q4')","0.16","0.85" +"Journal of Cutaneous Immunology and Allergy","","2574-4593","('ALLERGY', 'DERMATOLOGY', 'IMMUNOLOGY')","('ESCI', 'ESCI', 'ESCI')","88","1.1","('Q4', 'Q4', 'Q4')","0.16","85.96" +"Journal of the International Association for Shell and Spatial Structures","1028-365X","1996-9015","ENGINEERING, CIVIL","('ESCI',)","283","1.1","Q3","0.16","0.00" +"Macedonian Journal of Chemistry and Chemical engineering","1857-5552","1857-5625","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","293","1.1","('Q3', 'Q4')","0.16","96.77" +"Kidney Cancer","2468-4562","2468-4570","('ONCOLOGY', 'UROLOGY & NEPHROLOGY')","('ESCI', 'ESCI')","163","1.1","('Q4', 'Q3')","0.15","97.96" +"SURFACE ENGINEERING AND APPLIED ELECTROCHEMISTRY","1068-3755","1934-8002","ELECTROCHEMISTRY","('ESCI',)","863","1.1","Q4","0.15","0.00" +"Portugaliae Electrochimica Acta","0872-1904","0872-1904","ELECTROCHEMISTRY","('ESCI',)","619","1.1","Q4","0.14","98.10" +"Iranian Journal of Materials Science and Engineering","1735-0808","1735-0808","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","268","1.1","Q4","0.13","0.00" +"Sovremennye Tehnologii v Medicine","2076-4243","2076-4243","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","318","1.1","Q4","0.13","97.97" +"TECHNICAL PHYSICS","1063-7842","1090-6525","PHYSICS, APPLIED","('SCIE',)","2,483","1.1","Q4","0.13","0.00" +"Biochemistry Moscow Supplement Series A-Membrane and Cell Biology","1990-7478","1990-7494","CELL BIOLOGY","('ESCI',)","259","1.1","Q4","0.12","4.24" +"DOKLADY PHYSICAL CHEMISTRY","0012-5016","1608-3121","CHEMISTRY, PHYSICAL","('SCIE',)","396","1.1","Q4","0.12","2.99" +"HETEROATOM CHEMISTRY","1042-7163","1098-1071","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","908","1.1","Q3","0.07","100.00" +"Advances in Environmental Research-An International Journal","2234-1722","2234-1730","ENGINEERING, ENVIRONMENTAL","('ESCI',)","701","1.1","Q4","0.05","0.00" +"NATION","0027-8378","0027-8378","POLITICAL SCIENCE","('SSCI',)","1,040","1.1","Q3","0.01","0.00" +"History and Technology","0734-1512","1477-2620","HISTORY","('AHCI',)","491","1.0","Q1","3.45","29.09" +"Sign Systems Studies","1406-4243","1736-7409","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","341","1.0","","3.18","100.00" +"Global Sixties","2770-8888","2770-890X","HISTORY","('ESCI',)","8","1.0","Q1","3.02","10.53" +"HISTORY WORKSHOP JOURNAL","1363-3554","1477-4569","HISTORY","('AHCI', 'SSCI')","997","1.0","Q1","2.63","38.81" +"JOURNAL OF AFRICAN HISTORY","0021-8537","1469-5138","HISTORY","('AHCI', 'SSCI')","1,299","1.0","Q1","2.63","63.16" +"Contemporary Islam-Dynamics of Muslim Life","1872-0218","1872-0226","RELIGION","('ESCI',)","292","1.0","","2.36","36.59" +"Rural Theology-International Ecumencial and Interdisciplinary Perspectives","1470-4994","2042-1273","RELIGION","('ESCI',)","81","1.0","","2.28","34.48" +"Slavery & Abolition","0144-039X","1743-9523","HISTORY","('AHCI',)","719","1.0","Q1","2.27","38.83" +"Senses & Society","1745-8927","1745-8935","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","408","1.0","","2.16","38.46" +"Curator-The Museum Journal","0011-3069","2151-6952","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","702","1.0","","2.06","29.10" +"Translation Spaces","2211-3711","2211-372X","LANGUAGE & LINGUISTICS","('ESCI',)","289","1.0","","1.90","4.35" +"JOURNAL OF AESTHETICS AND ART CRITICISM","0021-8529","1540-6245","('ART', 'PHILOSOPHY')","('AHCI', 'AHCI')","1,395","1.0","('N/A', 'N/A')","1.82","19.33" +"Ethical Theory and Moral Practice","1386-2820","1572-8447","PHILOSOPHY","('AHCI',)","1,123","1.0","","1.74","53.69" +"AUSTRALASIAN JOURNAL OF PHILOSOPHY","0004-8402","1471-6828","PHILOSOPHY","('AHCI',)","1,810","1.0","","1.63","25.17" +"Asia Pacific Law Review","1019-2557","1875-8444","LAW","('SSCI',)","158","1.0","Q2","1.52","24.18" +"Corpus Linguistics and Linguistic Theory","1613-7027","1613-7035","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","429","1.0","('N/A', 'Q2')","1.51","27.85" +"Journal of Holy Land and Palestine Studies","2054-1988","2054-1996","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","71","1.0","","1.51","0.00" +"British Journal of Music Education","0265-0517","1469-2104","('EDUCATION & EDUCATIONAL RESEARCH', 'MUSIC')","('SSCI', 'AHCI')","596","1.0","('Q3', 'N/A')","1.43","39.74" +"SOCIAL COMPASS","0037-7686","1461-7404","('RELIGION', 'SOCIOLOGY')","('AHCI', 'SSCI')","717","1.0","('N/A', 'Q3')","1.40","22.58" +"IOWA LAW REVIEW","0021-0552","","LAW","('SSCI',)","1,051","1.0","Q2","1.35","0.00" +"UNIVERSITY OF TORONTO QUARTERLY","0042-0247","1712-5278","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","179","1.0","","1.27","0.00" +"NOTRE DAME LAW REVIEW","0745-3515","","LAW","('SSCI',)","1,073","1.0","Q2","1.24","0.00" +"FORDHAM LAW REVIEW","0015-704X","0015-704X","LAW","('SSCI',)","1,463","1.0","Q2","1.22","0.00" +"Hypatia-A Journal of Feminist Philosophy","0887-5367","1527-2001","('PHILOSOPHY', 'WOMENS STUDIES')","('AHCI', 'SSCI')","3,107","1.0","('N/A', 'Q3')","1.21","30.83" +"MODERN ASIAN STUDIES","0026-749X","1469-8099","AREA STUDIES","('SSCI',)","2,076","1.0","Q2","1.18","45.18" +"Journal of Legislative Studies","1357-2334","1743-9337","LAW","('ESCI',)","710","1.0","Q2","1.17","26.42" +"Asian Affairs","0306-8374","1477-1500","AREA STUDIES","('ESCI',)","404","1.0","Q2","1.16","24.51" +"BULLETIN OF THE MENNINGER CLINIC","0025-9284","1943-2828","('PSYCHIATRY', 'PSYCHOLOGY, PSYCHOANALYSIS')","('SSCI', 'SSCI')","526","1.0","('Q4', 'Q1')","1.14","0.00" +"INQUIRY-AN INTERDISCIPLINARY JOURNAL OF PHILOSOPHY","0020-174X","1502-3923","('ETHICS', 'PHILOSOPHY')","('SSCI', 'AHCI')","1,874","1.0","('Q3', 'N/A')","1.13","27.59" +"Legal Studies","0261-3875","1748-121X","LAW","('SSCI',)","576","1.0","Q2","1.13","64.46" +"Open Mathematics","2391-5455","2391-5455","MATHEMATICS","('SCIE',)","1,011","1.0","Q1","1.11","90.29" +"AFRICAN STUDIES","0002-0184","1469-2872","AREA STUDIES","('SSCI',)","449","1.0","Q2","1.08","9.68" +"Argumentation","0920-427X","1572-8374","('COMMUNICATION', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'PHILOSOPHY')","('SSCI', 'AHCI', 'SSCI', 'AHCI')","758","1.0","('Q3', 'N/A', 'Q2', 'N/A')","1.08","45.59" +"Journal of African Media Studies","2040-199X","1751-7974","('COMMUNICATION', 'CULTURAL STUDIES', 'FILM, RADIO, TELEVISION')","('SSCI', 'AHCI, SSCI', 'AHCI')","196","1.0","('Q3', 'Q2', 'N/A')","1.07","8.57" +"UNIVERSITY OF ILLINOIS LAW REVIEW","0276-9948","1942-9231","LAW","('SSCI',)","782","1.0","Q2","1.02","0.00" +"Bulletin of the Malaysian Mathematical Sciences Society","0126-6705","2180-4206","MATHEMATICS","('SCIE',)","1,836","1.0","Q1","1.01","9.07" +"MODERN CHINA","0097-7004","1552-6836","AREA STUDIES","('SSCI',)","982","1.0","Q2","1.01","15.00" +"Boundary Value Problems","1687-2770","1687-2770","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,149","1.0","('Q1', 'Q3')","0.99","100.00" +"Journal of Multicultural Discourses","1744-7143","1747-6615","('COMMUNICATION', 'CULTURAL STUDIES', 'ETHNIC STUDIES', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI', 'ESCI', 'ESCI', 'ESCI')","346","1.0","('Q3', 'Q2', 'Q3', 'N/A', 'Q2')","0.98","21.31" +"International Journal of Law Crime and Justice","1756-0616","1876-763X","('CRIMINOLOGY & PENOLOGY', 'LAW')","('SSCI', 'SSCI')","466","1.0","('Q3', 'Q2')","0.97","21.90" +"Journal of African Archaeology","1612-1651","2191-5784","ARCHAEOLOGY","('AHCI',)","291","1.0","","0.97","18.92" +"Journal of International Trade Law and Policy","1477-0024","2045-4376","LAW","('ESCI',)","97","1.0","Q2","0.97","10.81" +"Electronic Research Archive","","2688-1594","MATHEMATICS","('SCIE',)","669","1.0","Q1","0.94","98.17" +"JOURNAL OF THE LONDON MATHEMATICAL SOCIETY-SECOND SERIES","0024-6107","1469-7750","MATHEMATICS","('SCIE',)","4,664","1.0","Q1","0.93","33.77" +"PSYCHOANALYTIC PSYCHOLOGY","0736-9735","1939-1331","('PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, PSYCHOANALYSIS')","('SSCI', 'SSCI')","876","1.0","('Q3', 'Q1')","0.93","0.00" +"COMBINATORICA","0209-9683","1439-6912","MATHEMATICS","('SCIE',)","2,217","1.0","Q1","0.92","17.68" +"International Journal of Testing","1530-5058","1532-7574","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","995","1.0","Q2","0.92","23.08" +"Kragujevac Journal of Mathematics","1450-9628","1450-9628","MATHEMATICS","('ESCI',)","405","1.0","Q1","0.91","100.00" +"European Journal of Law and Economics","0929-1261","1572-9990","('ECONOMICS', 'LAW')","('SSCI', 'SSCI')","642","1.0","('Q3', 'Q2')","0.90","40.78" +"GLQ-A JOURNAL OF LESBIAN AND GAY STUDIES","1064-2684","1527-9375","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","1,610","1.0","Q2","0.89","0.00" +"POTENTIAL ANALYSIS","0926-2601","1572-929X","MATHEMATICS","('SCIE',)","1,299","1.0","Q1","0.89","35.27" +"History of the Family","1081-602X","1873-5398","('FAMILY STUDIES', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","517","1.0","('Q3', 'Q2')","0.88","40.22" +"ASIA PACIFIC JOURNAL OF SOCIAL WORK AND DEVELOPMENT","0218-5385","2165-0993","SOCIAL WORK","('SSCI',)","334","1.0","Q3","0.87","2.60" +"BEHAVIORAL SCIENCES & THE LAW","0735-3936","1099-0798","('LAW', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","1,828","1.0","('Q2', 'Q4')","0.87","14.17" +"Signs and Society","2326-4489","2326-4497","('ANTHROPOLOGY', 'COMMUNICATION', 'HUMANITIES, MULTIDISCIPLINARY', 'LINGUISTICS')","('SSCI', 'SSCI', 'AHCI', 'SSCI')","249","1.0","('Q2', 'Q3', 'N/A', 'Q2')","0.86","81.82" +"Journal of Applied Analysis and Computation","2156-907X","2158-5644","MATHEMATICS, APPLIED","('SCIE',)","1,159","1.0","Q3","0.84","98.83" +"INTERNATIONAL SOCIOLOGY","0268-5809","1461-7242","SOCIOLOGY","('SSCI',)","1,764","1.0","Q3","0.83","11.11" +"Perspectives-Studies in Translation Theory and Practice","0907-676X","1747-6623","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","974","1.0","('N/A', 'Q2')","0.83","23.76" +"SOUTHERN CALIFORNIA LAW REVIEW","0038-3910","0038-3910","LAW","('SSCI',)","1,000","1.0","Q2","0.83","0.00" +"INDUSTRIAL LAW JOURNAL","0305-9332","1464-3669","('INDUSTRIAL RELATIONS & LABOR', 'LAW')","('SSCI', 'SSCI')","385","1.0","('Q3', 'Q2')","0.82","35.58" +"MATHEMATISCHE ZEITSCHRIFT","0025-5874","1432-1823","MATHEMATICS","('SCIE',)","6,851","1.0","Q1","0.82","31.05" +"EUROPEAN JOURNAL OF COMBINATORICS","0195-6698","1095-9971","MATHEMATICS","('SCIE',)","2,535","1.0","Q1","0.81","23.67" +"International Journal of Historical Archaeology","1092-7697","1573-7748","ARCHAEOLOGY","('AHCI',)","557","1.0","","0.80","25.76" +"Journal of Human Rights","1475-4835","1475-4843","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","726","1.0","('Q3', 'Q3')","0.80","22.41" +"LINEAR ALGEBRA AND ITS APPLICATIONS","0024-3795","1873-1856","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","12,244","1.0","('Q1', 'Q3')","0.80","19.03" +"American Law and Economics Review","1465-7252","1465-7260","('ECONOMICS', 'LAW')","('SSCI', 'SSCI')","425","1.0","('Q3', 'Q2')","0.78","8.57" +"Sociologica-International Journal for Sociological Debate","","1971-8853","SOCIOLOGY","('ESCI',)","564","1.0","Q3","0.78","0.00" +"Journal of Outdoor and Environmental Education","2206-3110","2522-879X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","291","1.0","Q3","0.77","40.28" +"Across Languages and Cultures","1585-1923","1588-2519","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","244","1.0","('N/A', 'Q2')","0.76","7.89" +"Applicable Analysis and Discrete Mathematics","1452-8630","1452-8630","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","539","1.0","('Q1', 'Q3')","0.76","100.00" +"Journal of Mathematical Behavior","0732-3123","1873-8028","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,387","1.0","Q3","0.76","30.11" +"Opuscula Mathematica","1232-9274","2300-6919","MATHEMATICS","('ESCI',)","367","1.0","Q1","0.76","100.00" +"ORNIS FENNICA","0030-5685","0030-5685","ORNITHOLOGY","('SCIE',)","524","1.0","Q2","0.76","2.33" +"ETHNOS","0014-1844","1469-588X","ANTHROPOLOGY","('SSCI',)","1,362","1.0","Q2","0.75","37.79" +"Melbourne Journal of International Law","1444-8602","1444-8610","LAW","('ESCI',)","361","1.0","Q2","0.75","0.00" +"Translation and Translanguaging in Multilingual Contexts","2352-1805","2352-1813","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI', 'ESCI')","90","1.0","('Q3', 'N/A', 'Q2')","0.75","6.67" +"Journal of Spectral Theory","1664-039X","1664-0403","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","406","1.0","('Q1', 'Q3')","0.74","99.30" +"Mathematical Control and Related Fields","2156-8472","2156-8499","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","525","1.0","('Q1', 'Q3')","0.74","94.61" +"Space and Culture","1206-3312","1552-8308","('CULTURAL STUDIES', 'GEOGRAPHY')","('AHCI, SSCI', 'SSCI')","859","1.0","('Q2', 'Q3')","0.74","22.35" +"AMERICAN SPEECH","0003-1283","1527-2133","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","615","1.0","('N/A', 'Q2')","0.72","0.00" +"CANADIAN JOURNAL OF ZOOLOGY","0008-4301","1480-3283","ZOOLOGY","('SCIE',)","9,930","1.0","Q3","0.72","11.28" +"European Journal of Pure and Applied Mathematics","1307-5543","1307-5543","MATHEMATICS","('ESCI',)","709","1.0","Q1","0.72","96.13" +"Journal of Experiential Education","1053-8259","2169-009X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","785","1.0","Q3","0.72","20.51" +"Translation and Interpreting Studies","1932-2798","1876-2700","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","287","1.0","('N/A', 'Q2')","0.72","4.88" +"BUSINESS HISTORY","0007-6791","1743-7938","('BUSINESS', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","1,252","1.0","('Q4', 'Q2')","0.71","37.86" +"AMPHIBIA-REPTILIA","0173-5373","1568-5381","ZOOLOGY","('SCIE',)","1,540","1.0","Q3","0.70","17.78" +"Engaging Science Technology and Society","2413-8053","2413-8053","SOCIAL ISSUES","('ESCI',)","470","1.0","Q3","0.70","94.03" +"Capital and Class","0309-8168","2041-0980","POLITICAL SCIENCE","('ESCI',)","749","1.0","Q3","0.69","37.93" +"Contemporary Southeast Asia","0129-797X","1793-284X","('AREA STUDIES', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","638","1.0","('Q2', 'Q3', 'Q3')","0.69","0.00" +"Journal of World Energy Law & Business","1754-9957","1754-9965","('BUSINESS', 'LAW')","('SSCI', 'SSCI')","243","1.0","('Q4', 'Q2')","0.69","23.85" +"COMMUNICATIONS ON PURE AND APPLIED ANALYSIS","1534-0392","1553-5258","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,094","1.0","('Q1', 'Q3')","0.68","96.74" +"Discrete Analysis","","2397-3129","MATHEMATICS","('SCIE',)","195","1.0","Q1","0.68","50.00" +"Revista Espanola de Pedagogia","0034-9461","2174-0909","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","384","1.0","Q3","0.68","0.00" +"Journal of Formative Design in Learning","","2509-8039","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","74","1.0","Q3","0.67","16.67" +"ANNALI DI MATEMATICA PURA ED APPLICATA","0373-3114","1618-1891","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,718","1.0","('Q1', 'Q3')","0.66","39.77" +"FORUM MATHEMATICUM","0933-7741","1435-5337","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,173","1.0","('Q1', 'Q3')","0.66","6.58" +"Kinetic and Related Models","1937-5093","1937-5077","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","816","1.0","('Q1', 'Q3')","0.66","97.86" +"Psychotherapie","2731-7161","2731-717X","PSYCHOLOGY, CLINICAL","('SSCI',)","424","1.0","Q3","0.66","53.14" +"Carpathian Mathematical Publications","2075-9827","2313-0210","MATHEMATICS","('ESCI',)","208","1.0","Q1","0.64","99.35" +"HEALTH PHYSICS","0017-9078","1538-5159","('ENVIRONMENTAL SCIENCES', 'NUCLEAR SCIENCE & TECHNOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","4,185","1.0","('Q4', 'Q3', 'Q4', 'Q4')","0.64","15.36" +"PROCEEDINGS OF THE INSTITUTION OF CIVIL ENGINEERS-MARITIME ENGINEERING","1741-7597","1751-7737","('ENGINEERING, CIVIL', 'ENGINEERING, OCEAN', 'WATER RESOURCES')","('SCIE', 'SCIE', 'SCIE')","246","1.0","('Q4', 'Q4', 'Q4')","0.64","3.03" +"TEACHING SOCIOLOGY","0092-055X","1939-862X","('EDUCATION & EDUCATIONAL RESEARCH', 'SOCIOLOGY')","('SSCI', 'SSCI')","872","1.0","('Q3', 'Q3')","0.64","12.64" +"AMERICAN ANNALS OF THE DEAF","0002-726X","1543-0375","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","889","1.0","('Q3', 'Q4')","0.63","0.00" +"COMPUTATIONAL STATISTICS","0943-4062","1613-9658","STATISTICS & PROBABILITY","('SCIE',)","1,990","1.0","Q3","0.63","22.31" +"DISCRETE APPLIED MATHEMATICS","0166-218X","1872-6771","MATHEMATICS, APPLIED","('SCIE',)","7,119","1.0","Q3","0.63","16.45" +"Discrete Mathematics Letters","","2664-2557","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","143","1.0","('Q1', 'Q3')","0.63","98.03" +"International Review of Sociology-Revue Internationale de Sociologie","0390-6701","1469-9273","SOCIOLOGY","('ESCI',)","606","1.0","Q3","0.63","12.50" +"JOURNAL OF ANTHROPOLOGICAL RESEARCH","0091-7710","2153-3806","ANTHROPOLOGY","('SSCI',)","1,085","1.0","Q2","0.63","0.00" +"JOURNAL OF THE ROYAL STATISTICAL SOCIETY SERIES C-APPLIED STATISTICS","0035-9254","1467-9876","STATISTICS & PROBABILITY","('SCIE',)","4,654","1.0","Q3","0.63","29.52" +"Law Technology and Humans","","2652-4074","('LAW', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","90","1.0","('Q2', 'Q2')","0.63","97.06" +"Novum Jus","1692-6013","2500-8692","LAW","('ESCI',)","160","1.0","Q2","0.63","90.74" +"Speech Language and Hearing","2050-571X","2050-5728","AUDIOLOGY & SPEECH","('ESCI',)","214","1.0","Q3","0.63","13.86" +"Australian Journal of Language and Literacy","1038-1562","1839-4728","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","285","1.0","Q3","0.62","50.00" +"AKCE International Journal of Graphs and Combinatorics","0972-8600","2543-3474","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","372","1.0","('Q1', 'Q3')","0.60","90.28" +"International Journal for Lesson and Learning Studies","2046-8253","2016-8261","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","248","1.0","Q3","0.60","15.07" +"Journal of the American Academy of Audiology","1050-0545","2157-3107","('AUDIOLOGY & SPEECH', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE')","2,594","1.0","('Q3', 'Q3')","0.60","2.34" +"Social Analysis","0155-977X","1558-5727","ANTHROPOLOGY","('SSCI',)","725","1.0","Q2","0.60","91.18" +"ADVANCES IN APPLIED MATHEMATICS","0196-8858","1090-2074","MATHEMATICS, APPLIED","('SCIE',)","1,659","1.0","Q3","0.59","24.44" +"Intercultural Education","1467-5986","1469-8439","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","889","1.0","Q3","0.59","17.60" +"JOURNAL OF POLITICAL IDEOLOGIES","1356-9317","1469-9613","POLITICAL SCIENCE","('SSCI',)","866","1.0","Q3","0.59","35.79" +"Computational Methods in Applied Mathematics","1609-4840","1609-9389","MATHEMATICS, APPLIED","('SCIE',)","710","1.0","Q3","0.58","11.24" +"ISIS","0021-1753","1545-6994","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","1,913","1.0","Q2","0.58","1.94" +"Italian Journal of Geosciences","2038-1719","2038-1727","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","612","1.0","Q4","0.58","0.00" +"Journal of Chinese Sociology","","2198-2635","SOCIOLOGY","('ESCI',)","246","1.0","Q3","0.58","100.00" +"Formalized Mathematics","1898-9934","1898-9934","MATHEMATICS","('ESCI',)","134","1.0","Q1","0.57","100.00" +"Journal of Forensic Nursing","1556-3693","1939-3938","('CRIMINOLOGY & PENOLOGY', 'NURSING')","('SSCI', 'SCIE, SSCI')","565","1.0","('Q3', 'Q3')","0.57","7.84" +"POLITY","0032-3497","1744-1684","POLITICAL SCIENCE","('SSCI',)","1,098","1.0","Q3","0.57","0.00" +"Poverty & Public Policy","1944-2858","1944-2858","SOCIAL WORK","('ESCI',)","191","1.0","Q3","0.57","9.68" +"Quantum Topology","1663-487X","1664-073X","('MATHEMATICS', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","300","1.0","('Q1', 'Q4')","0.57","100.00" +"SEMINARS IN SPEECH AND LANGUAGE","0734-0478","1098-9056","('AUDIOLOGY & SPEECH', 'REHABILITATION')","('SCIE', 'SCIE')","958","1.0","('Q3', 'Q4')","0.57","4.88" +"Asian Journal of Social Science","1568-4849","1568-5314","('AREA STUDIES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","526","1.0","('Q2', 'Q2')","0.56","3.37" +"EDUCATIONAL THEORY","0013-2004","1741-5446","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","945","1.0","Q3","0.56","32.20" +"NEW ZEALAND JOURNAL OF EDUCATIONAL STUDIES","0028-8276","2199-4714","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","309","1.0","Q3","0.56","46.51" +"Probability Uncertainty and Quantitative Risk","2095-9672","2367-0126","STATISTICS & PROBABILITY","('ESCI',)","124","1.0","Q3","0.56","0.00" +"CRIME LAW AND SOCIAL CHANGE","0925-4994","1573-0751","('CRIMINOLOGY & PENOLOGY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","1,351","1.0","('Q3', 'Q2')","0.55","31.91" +"Electronic Journal of Statistics","1935-7524","1935-7524","STATISTICS & PROBABILITY","('SCIE',)","2,515","1.0","Q3","0.55","99.51" +"INTERDISCIPLINARY SCIENCE REVIEWS","0308-0188","1743-2790","('MULTIDISCIPLINARY SCIENCES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SCIE', 'SSCI')","509","1.0","('Q3', 'Q2')","0.55","25.23" +"Journal of Health Management","0972-0634","0973-0729","HEALTH POLICY & SERVICES","('ESCI',)","664","1.0","Q4","0.55","7.78" +"Chinese Journal of Applied Linguistics","2192-9505","2192-9513","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","301","1.0","Q3","0.54","1.05" +"INTERNATIONAL JOURNAL OF MATHEMATICS AND MATHEMATICAL SCIENCES","0161-1712","1687-0425","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","1,331","1.0","('Q1', 'Q3')","0.54","99.17" +"Current Physical Medicine and Rehabilitation Reports","","2167-4833","REHABILITATION","('ESCI',)","414","1.0","Q4","0.53","8.40" +"International Journal of Comparative Education and Development","2396-7404","2309-4907","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","122","1.0","Q3","0.53","8.51" +"International Journal of Politics Culture and Society","0891-4486","1573-3416","POLITICAL SCIENCE","('ESCI',)","707","1.0","Q3","0.53","43.94" +"SOUTH AFRICAN JOURNAL OF COMMUNICATION DISORDERS","0379-8046","2225-4765","AUDIOLOGY & SPEECH","('ESCI',)","302","1.0","Q3","0.53","98.61" +"Decision-Washington","2325-9965","2325-9973","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","380","1.0","Q3","0.52","6.17" +"Iranian Journal of Nursing and Midwifery Research","1735-9066","2228-5504","NURSING","('ESCI',)","1,544","1.0","Q3","0.52","30.45" +"Journal of Intercultural Studies","0725-6868","1469-9540","SOCIOLOGY","('ESCI',)","1,086","1.0","Q3","0.52","23.86" +"Journal of International Advanced Otology","1308-7649","2148-3817","OTORHINOLARYNGOLOGY","('SCIE',)","929","1.0","Q3","0.52","28.67" +"VETERINARY AND COMPARATIVE ORTHOPAEDICS AND TRAUMATOLOGY","0932-0814","2567-6911","('VETERINARY SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","1,700","1.0","('Q3', 'Q3')","0.52","2.82" +"ANNALES DE PALEONTOLOGIE","0753-3969","1778-3666","PALEONTOLOGY","('SCIE',)","498","1.0","Q4","0.51","25.00" +"INTERNATIONAL JOURNAL OF ODONATOLOGY","1388-7890","2159-6719","ENTOMOLOGY","('SCIE',)","361","1.0","Q3","0.51","93.55" +"Journal of Korean Academy of Nursing","2005-3673","2093-758X","NURSING","('SCIE', 'SSCI')","1,083","1.0","Q3","0.51","0.00" +"Journal of Pension Economics & Finance","1474-7472","1475-3022","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","862","1.0","('Q3', 'Q3')","0.51","38.74" +"METHODOLOGY AND COMPUTING IN APPLIED PROBABILITY","1387-5841","1573-7713","STATISTICS & PROBABILITY","('SCIE',)","867","1.0","Q3","0.51","17.09" +"Revista Mediterranea Comunicacion-Journal of Communication","1989-872X","1989-872X","COMMUNICATION","('ESCI',)","273","1.0","Q3","0.51","96.55" +"Scientia Agropecuaria","2077-9917","2306-6741","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","432","1.0","Q3","0.51","90.85" +"ASTERISQUE","0303-1179","2492-5926","MATHEMATICS","('SCIE',)","1,567","1.0","Q1","0.50","0.00" +"AUSTRALIAN JOURNAL OF ZOOLOGY","0004-959X","1446-5698","ZOOLOGY","('SCIE',)","1,794","1.0","Q3","0.50","65.43" +"Dialogic Pedagogy","2325-3290","2325-3290","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","157","1.0","Q3","0.50","97.87" +"GEOCHEMISTRY-EXPLORATION ENVIRONMENT ANALYSIS","1467-7873","2041-4943","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","919","1.0","Q3","0.50","27.38" +"Signa Vitae","1334-5605","1845-206X","EMERGENCY MEDICINE","('SCIE',)","401","1.0","Q3","0.50","4.99" +"Arts and Humanities in Higher Education","1474-0222","1741-265X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","453","1.0","Q3","0.49","40.00" +"ENT-EAR NOSE & THROAT JOURNAL","0145-5613","1942-7522","OTORHINOLARYNGOLOGY","('SCIE',)","3,380","1.0","Q3","0.49","93.98" +"IDS BULLETIN-INSTITUTE OF DEVELOPMENT STUDIES","0265-5012","1759-5436","('AREA STUDIES', 'DEVELOPMENT STUDIES')","('SSCI', 'SSCI')","1,243","1.0","('Q2', 'Q4')","0.49","93.33" +"International Archives of Otorhinolaryngology","1809-9777","1809-4864","OTORHINOLARYNGOLOGY","('ESCI',)","1,142","1.0","Q3","0.49","99.65" +"Journal of the Australian Library and Information Association","2475-0158","2475-0166","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","243","1.0","Q3","0.49","8.11" +"CLINICAL PEDIATRICS","0009-9228","1938-2707","PEDIATRICS","('SCIE',)","3,819","1.0","Q3","0.48","8.69" +"Howard Journal of Communications","1064-6175","1096-4649","COMMUNICATION","('ESCI',)","721","1.0","Q3","0.48","3.88" +"Journal of Adult Protection","1466-8203","2042-8669","SOCIAL WORK","('ESCI',)","284","1.0","Q3","0.48","10.61" +"LABORATORY MEDICINE","0007-5027","1943-7730","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","1,429","1.0","Q4","0.48","8.13" +"PEDIATRICS INTERNATIONAL","1328-8067","1442-200X","PEDIATRICS","('SCIE',)","3,946","1.0","Q3","0.48","5.26" +"Revista de Administracao Publica","0034-7612","1982-3134","PUBLIC ADMINISTRATION","('ESCI',)","829","1.0","Q3","0.48","98.63" +"STRATIGRAPHY AND GEOLOGICAL CORRELATION","0869-5938","1555-6263","('GEOLOGY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","974","1.0","('Q3', 'Q4')","0.48","9.92" +"Asian Journal of Comparative Politics","2057-8911","2057-892X","POLITICAL SCIENCE","('ESCI',)","256","1.0","Q3","0.47","11.46" +"Asian Politics & Policy","1943-0779","1943-0787","POLITICAL SCIENCE","('ESCI',)","346","1.0","Q3","0.47","10.87" +"Community College Journal of Research and Practice","1066-8926","1521-0413","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,102","1.0","Q3","0.47","3.74" +"DIALECTICAL ANTHROPOLOGY","0304-4092","1573-0786","ANTHROPOLOGY","('ESCI',)","436","1.0","Q2","0.47","34.00" +"Early Child Development and Care","0300-4430","1476-8275","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","3,172","1.0","('Q3', 'Q4')","0.47","12.06" +"Internet Histories","2470-1475","2470-1483","COMMUNICATION","('ESCI',)","154","1.0","Q3","0.47","17.39" +"JOURNAL OF ARACHNOLOGY","0161-8202","1937-2396","ENTOMOLOGY","('SCIE',)","1,362","1.0","Q3","0.47","2.86" +"JOURNAL OF INSECT BEHAVIOR","0892-7553","1572-8889","ENTOMOLOGY","('SCIE',)","1,456","1.0","Q3","0.47","21.25" +"Journal of Statistical Theory and Applications","","2214-1766","STATISTICS & PROBABILITY","('ESCI',)","316","1.0","Q3","0.47","92.42" +"Nurse Researcher","1351-5578","2047-8992","NURSING","('ESCI',)","1,331","1.0","Q3","0.47","10.00" +"Revista Espanola de Investigaciones Sociologicas","0210-5233","1988-5903","SOCIOLOGY","('SSCI',)","565","1.0","Q3","0.47","90.48" +"Scientific Papers-Series Management Economic Engineering in Agriculture and Rural Development","2284-7995","2285-3952","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","1,717","1.0","Q3","0.47","0.00" +"Transylvanian Review of Administrative Sciences","1842-2845","2247-8310","PUBLIC ADMINISTRATION","('SSCI',)","363","1.0","Q3","0.47","93.14" +"AMERICAN JOURNAL OF FORENSIC MEDICINE AND PATHOLOGY","0195-7910","1533-404X","('MEDICINE, LEGAL', 'PATHOLOGY')","('SCIE', 'SCIE')","1,670","1.0","('Q3', 'Q4')","0.46","3.27" +"Current Sexual Health Reports","1548-3584","1548-3592","UROLOGY & NEPHROLOGY","('ESCI',)","599","1.0","Q4","0.46","17.81" +"English in Education","0425-0494","1754-8845","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","212","1.0","Q3","0.46","31.15" +"JOURNAL OF ADDICTIONS & OFFENDER COUNSELING","1055-3835","2161-1874","PSYCHOLOGY, APPLIED","('ESCI',)","128","1.0","Q4","0.46","16.67" +"JOURNAL OF BIOLOGICAL EDUCATION","0021-9266","2157-6009","('BIOLOGY', 'EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('SCIE', 'SSCI', 'SCIE')","1,003","1.0","('Q3', 'Q3', 'Q3')","0.46","15.09" +"Journal of Neutron Research","1023-8166","1477-2655","NUCLEAR SCIENCE & TECHNOLOGY","('ESCI',)","235","1.0","Q3","0.46","32.26" +"Sleep Science","1984-0659","1984-0063","CLINICAL NEUROLOGY","('ESCI',)","1,106","1.0","Q4","0.46","58.44" +"South African Journal of Physiotherapy","0379-6175","2410-8219","REHABILITATION","('ESCI',)","360","1.0","Q4","0.46","98.26" +"AMERICAN SURGEON","0003-1348","1555-9823","SURGERY","('SCIE',)","6,789","1.0","Q3","0.45","4.24" +"Bordon-Revista de Pedagogia","0210-5934","2340-6577","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","407","1.0","Q3","0.45","44.57" +"JBJS Essential Surgical Techniques","2160-2204","2160-2204","SURGERY","('ESCI',)","426","1.0","Q3","0.45","10.23" +"JOURNAL OF CRANIOFACIAL SURGERY","1049-2275","1536-3732","SURGERY","('SCIE',)","11,673","1.0","Q3","0.45","5.54" +"Journal of Minimal Access Surgery","0972-9941","1998-3921","SURGERY","('SCIE',)","850","1.0","Q3","0.45","94.44" +"Journal of Plastic Surgery and Hand Surgery","2000-656X","2000-6764","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","1,111","1.0","('Q3', 'Q3')","0.45","41.90" +"Zeitschrift fur Orthopadie und Unfallchirurgie","1864-6697","1864-6743","ORTHOPEDICS","('SCIE',)","656","1.0","Q3","0.45","4.74" +"Journal of Language and Education","","2411-7390","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('ESCI', 'ESCI')","221","1.0","('Q3', 'Q2')","0.44","98.11" +"JOURNAL OF VISUAL IMPAIRMENT & BLINDNESS","0145-482X","1559-1476","REHABILITATION","('SSCI',)","1,480","1.0","Q4","0.44","7.27" +"Operative Orthopadie und Traumatologie","0934-6694","1439-0981","ORTHOPEDICS","('SCIE',)","649","1.0","Q3","0.44","24.80" +"Polish Journal of Otolaryngology","0030-6657","2300-8423","OTORHINOLARYNGOLOGY","('ESCI',)","171","1.0","Q3","0.44","0.00" +"SCIENCE & SOCIETY","0036-8237","1943-2801","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","614","1.0","Q2","0.44","0.00" +"Science and Technology of Nuclear Installations","1687-6075","1687-6083","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","727","1.0","Q3","0.44","98.52" +"Wound Management & Prevention","2640-5237","2640-5245","('DERMATOLOGY', 'NURSING')","('SCIE', 'SCIE, SSCI')","197","1.0","('Q4', 'Q3')","0.44","0.00" +"APPLIED PSYCHOLOGICAL MEASUREMENT","0146-6216","1552-3497","('PSYCHOLOGY, MATHEMATICAL', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","4,722","1.0","('Q4', 'Q3')","0.43","18.52" +"Family Journal","1066-4807","1552-3950","FAMILY STUDIES","('ESCI',)","1,063","1.0","Q3","0.43","8.30" +"Indian Journal of Labour Economics","0971-7927","0019-5308","('ECONOMICS', 'INDUSTRIAL RELATIONS & LABOR')","('ESCI', 'ESCI')","537","1.0","('Q3', 'Q3')","0.43","7.89" +"INTERNATIONAL JOURNAL OF HEALTH CARE QUALITY ASSURANCE","0952-6862","1758-6542","HEALTH POLICY & SERVICES","('ESCI',)","1,124","1.0","Q4","0.43","18.18" +"Journal of Multiscale Modelling","1756-9737","1756-9745","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","154","1.0","Q4","0.43","0.00" +"JOURNAL OF PEDIATRIC OPHTHALMOLOGY & STRABISMUS","0191-3913","1938-2405","('OPHTHALMOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","1,494","1.0","('Q4', 'Q3')","0.43","3.39" +"ACTA ACUSTICA","","2681-4617","ACOUSTICS","('SCIE',)","295","1.0","Q4","0.42","96.05" +"Cultura Lenguaje y Representacion-Revista de Estudios Culturales de la Universitat Jaume I","1697-7750","1697-7750","CULTURAL STUDIES","('ESCI',)","115","1.0","Q2","0.42","97.89" +"International Journal of Biostatistics","2194-573X","1557-4679","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","925","1.0","('Q4', 'Q3')","0.42","12.26" +"International Journal of Mental Health Promotion","1462-3730","2049-8543","('PSYCHIATRY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","494","1.0","('Q4', 'Q4')","0.42","97.65" +"JOURNAL OF LABOR RESEARCH","0195-3613","1936-4768","INDUSTRIAL RELATIONS & LABOR","('SSCI',)","546","1.0","Q3","0.42","13.89" +"Journal of Pediatric Hematology-Oncology Nursing","2752-7530","2752-7549","('NURSING', 'ONCOLOGY')","('SCIE, SSCI', 'SCIE')","55","1.0","('Q3', 'Q4')","0.42","7.41" +"Strategies in Trauma and Limb Reconstruction","","1828-8928","ORTHOPEDICS","('ESCI',)","518","1.0","Q3","0.42","79.55" +"Tapuya-Latin American Science Technology and Society","","2572-9861","('HISTORY & PHILOSOPHY OF SCIENCE', 'SOCIAL ISSUES')","('ESCI', 'ESCI')","185","1.0","('Q2', 'Q3')","0.42","96.81" +"ANNALS OF HUMAN GENETICS","0003-4800","1469-1809","GENETICS & HEREDITY","('SCIE',)","1,561","1.0","Q4","0.41","23.47" +"ECONOMETRIC THEORY","0266-4666","1469-4360","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","3,419","1.0","('Q3', 'Q4', 'Q3', 'Q3')","0.41","25.81" +"Geospatial Health","1827-1987","1970-7096","('HEALTH CARE SCIENCES & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","774","1.0","('Q4', 'Q4')","0.41","98.60" +"INTERNATIONAL JOURNAL FOR THE ADVANCEMENT OF COUNSELLING","0165-0653","1573-3246","PSYCHOLOGY, APPLIED","('ESCI',)","781","1.0","Q4","0.41","6.78" +"JOURNAL OF SOCIAL AND CLINICAL PSYCHOLOGY","0736-7236","","('PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI')","3,554","1.0","('Q3', 'Q4')","0.41","0.00" +"L1 Educational Studies in Language and Literature","1573-1731","1573-1731","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","201","1.0","Q3","0.41","84.42" +"PROCEEDINGS OF THE INSTITUTION OF CIVIL ENGINEERS-MUNICIPAL ENGINEER","0965-0903","1751-7699","ENGINEERING, CIVIL","('SCIE',)","340","1.0","Q4","0.41","3.23" +"TeMA-Journal of Land Use Mobility and Environment","1970-9889","1970-9870","URBAN STUDIES","('ESCI',)","411","1.0","Q3","0.41","0.00" +"Advances in Mathematical Physics","1687-9120","1687-9139","PHYSICS, MATHEMATICAL","('SCIE',)","1,237","1.0","Q3","0.40","99.33" +"AILA Review","1461-0213","1570-5595","LINGUISTICS","('ESCI',)","277","1.0","Q2","0.40","2.56" +"Canadian Journal of Higher Education","0316-1218","0316-1218","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","537","1.0","Q3","0.40","0.00" +"CARTOGRAPHIC JOURNAL","0008-7041","1743-2774","GEOGRAPHY","('SSCI',)","732","1.0","Q3","0.40","19.67" +"Forum-A Journal of Applied Research in Contemporary Politics","2194-6183","1540-8884","POLITICAL SCIENCE","('SSCI',)","297","1.0","Q3","0.40","6.02" +"International Journal of Alcohol and Drug Research","1925-7066","1925-7066","BEHAVIORAL SCIENCES","('ESCI',)","127","1.0","Q4","0.40","69.57" +"Journal of Geometric Mechanics","1941-4889","1941-4897","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","244","1.0","('Q3', 'Q3')","0.40","98.39" +"Journal of Indian Prosthodontic Society","0972-4052","1998-4057","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","1,076","1.0","Q3","0.40","100.00" +"Journal of Information Policy","2381-5892","2158-3897","COMMUNICATION","('ESCI',)","204","1.0","Q3","0.40","83.33" +"Journal of Probability and Statistics","1687-952X","1687-9538","STATISTICS & PROBABILITY","('ESCI',)","224","1.0","Q3","0.40","100.00" +"Journal of World-Systems Research","","1076-156X","SOCIOLOGY","('ESCI',)","486","1.0","Q3","0.40","97.10" +"Korean Journal of Women Health Nursing","2287-1640","2093-7695","NURSING","('ESCI',)","243","1.0","Q3","0.40","100.00" +"Quaestiones Geographicae","0137-477X","2081-6383","GEOGRAPHY","('ESCI',)","657","1.0","Q3","0.40","84.09" +"SYSTEMATIC PARASITOLOGY","0165-5752","1573-5192","PARASITOLOGY","('SCIE',)","1,665","1.0","Q4","0.40","15.29" +"Thesis Eleven","0725-5136","1461-7455","SOCIOLOGY","('ESCI',)","791","1.0","Q3","0.40","10.71" +"AMERICAN JOURNAL OF MEDICAL QUALITY","1062-8606","1555-824X","HEALTH CARE SCIENCES & SERVICES","('SCIE',)","1,350","1.0","Q4","0.39","13.18" +"Clinical Medicine Insights-Circulatory Respiratory and Pulmonary Medicine","1179-5484","1179-5484","RESPIRATORY SYSTEM","('ESCI',)","197","1.0","Q4","0.39","80.00" +"DIAGNOSTIC CYTOPATHOLOGY","8755-1039","1097-0339","('MEDICAL LABORATORY TECHNOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","3,257","1.0","('Q4', 'Q4')","0.39","8.04" +"International Journal of Spatial Data Infrastructures Research","1725-0463","1725-0463","GEOGRAPHY","('ESCI',)","67","1.0","Q3","0.39","0.00" +"Journal for the Study of Education and Development","0210-3702","1578-4126","('PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EDUCATIONAL')","('SSCI', 'SSCI')","140","1.0","('Q4', 'Q4')","0.39","9.21" +"JOURNAL OF ORTHOPTERA RESEARCH","1082-6467","1937-2426","ENTOMOLOGY","('ESCI',)","417","1.0","Q3","0.39","96.77" +"Pacific Journalism Review","1023-9499","2324-2035","COMMUNICATION","('ESCI',)","186","1.0","Q3","0.39","0.00" +"Public Works Management & Policy","1087-724X","1552-7549","PUBLIC ADMINISTRATION","('ESCI',)","420","1.0","Q3","0.39","19.05" +"Rivista di Psichiatria","0035-6484","2038-2502","PSYCHIATRY","('SCIE', 'SSCI')","635","1.0","Q4","0.39","0.00" +"Scandinavian Journal of Forensic Science","2353-0707","2353-0707","MEDICINE, LEGAL","('ESCI',)","26","1.0","Q3","0.39","100.00" +"Turkish Journal of Obstetrics and Gynecology","2149-9322","2149-9330","OBSTETRICS & GYNECOLOGY","('ESCI',)","497","1.0","Q4","0.39","100.00" +"ANZIAM JOURNAL","1446-1811","1446-8735","MATHEMATICS, APPLIED","('SCIE',)","466","1.0","Q3","0.38","25.00" +"Conflict Resolution Quarterly","1536-5581","1541-1508","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","523","1.0","Q2","0.38","31.71" +"CONTEMPORARY FAMILY THERAPY","0892-2764","1573-3335","PSYCHOLOGY, CLINICAL","('ESCI',)","789","1.0","Q3","0.38","9.45" +"CULTURE & PSYCHOLOGY","1354-067X","1461-7056","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,057","1.0","Q3","0.38","20.28" +"JOMR-Journal of Oral & Maxillofacial Research","2029-283X","2029-283X","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","596","1.0","Q3","0.38","87.93" +"Minerva Pediatrics","2724-5276","2724-5780","PEDIATRICS","('SCIE',)","932","1.0","Q3","0.38","0.88" +"PROCEEDINGS OF THE INSTITUTION OF CIVIL ENGINEERS-TRANSPORT","0965-092X","1751-7710","('ENGINEERING, CIVIL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","565","1.0","('Q4', 'Q4')","0.38","3.25" +"PSYCHOLOGICAL RECORD","0033-2933","2163-3452","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","1,663","1.0","Q3","0.38","12.40" +"Tourism Review International","1544-2721","1943-4421","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","380","1.0","Q3","0.38","10.29" +"Basic Income Studies","2194-6094","1932-0183","ECONOMICS","('ESCI',)","168","1.0","Q3","0.37","17.24" +"Danish Medical Journal","","2245-1919","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,329","1.0","Q3","0.37","0.00" +"Electronic Journal of General Medicine","2516-3507","2516-3507","MEDICINE, GENERAL & INTERNAL","('ESCI',)","413","1.0","Q3","0.37","98.87" +"HORTTECHNOLOGY","1063-0198","1943-7714","HORTICULTURE","('SCIE',)","2,673","1.0","Q3","0.37","99.18" +"INDIAN JOURNAL OF DERMATOLOGY","0019-5154","1998-3611","DERMATOLOGY","('SCIE',)","2,681","1.0","Q4","0.37","29.22" +"Journal of Classical Sociology","1468-795X","1741-2897","SOCIOLOGY","('ESCI',)","411","1.0","Q3","0.37","41.46" +"Journal of Cytology","0970-9371","0974-5165","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","616","1.0","Q4","0.37","77.17" +"Journal of Optimization","2356-752X","2314-6486","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","76","1.0","Q3","0.37","100.00" +"Nordic Journal of Working Life Studies","2245-0157","2245-0157","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","337","1.0","Q3","0.37","13.51" +"Residential Treatment for Children & Youth","0886-571X","1541-0358","PSYCHOLOGY, CLINICAL","('ESCI',)","395","1.0","Q3","0.37","24.72" +"Ageing International","0163-5158","1936-606X","GERONTOLOGY","('ESCI',)","796","1.0","Q4","0.36","17.04" +"BULLETIN OF THE GEOLOGICAL SOCIETY OF DENMARK","2245-7070","2245-7070","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","471","1.0","Q4","0.36","91.18" +"Gene Reports","","2452-0144","GENETICS & HEREDITY","('ESCI',)","1,568","1.0","Q4","0.36","2.48" +"Journal of Experimental Psychopathology","","2043-8087","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","715","1.0","('Q4', 'Q3')","0.36","91.23" +"Journal of Library Administration","0193-0826","1540-3564","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","649","1.0","Q3","0.36","5.21" +"JOURNAL OF MATHEMATICAL ECONOMICS","0304-4068","1873-1538","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SCIE', 'SSCI')","1,623","1.0","('Q3', 'Q4', 'Q3')","0.36","25.00" +"JOURNAL OF PARASITOLOGY","0022-3395","1937-2345","PARASITOLOGY","('SCIE',)","7,351","1.0","Q4","0.36","1.28" +"Journal of Theoretical and Philosophical Psychology","1068-8471","2151-3341","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","284","1.0","Q3","0.36","0.00" +"Marine Biology Research","1745-1000","1745-1019","('ECOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","1,600","1.0","('Q4', 'Q3')","0.36","7.65" +"Metroeconomica","0026-1386","1467-999X","ECONOMICS","('SSCI',)","810","1.0","Q3","0.36","16.67" +"MONTHLY REVIEW-AN INDEPENDENT SOCIALIST MAGAZINE","0027-0520","0027-0520","POLITICAL SCIENCE","('SSCI',)","881","1.0","Q3","0.36","0.00" +"PETROLOGY","0869-5911","1556-2085","('GEOCHEMISTRY & GEOPHYSICS', 'MINERALOGY')","('SCIE', 'SCIE')","1,029","1.0","('Q3', 'Q4')","0.36","8.18" +"REPORTS ON MATHEMATICAL PHYSICS","0034-4877","1879-0674","PHYSICS, MATHEMATICAL","('SCIE',)","1,341","1.0","Q3","0.36","0.70" +"Review of Socionetwork Strategies","2523-3173","1867-3236","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","100","1.0","Q4","0.36","32.47" +"Taiwan Journal of Ophthalmology","2211-5056","2211-5072","OPHTHALMOLOGY","('ESCI',)","508","1.0","Q4","0.36","88.31" +"Archives of Iranian Medicine","1029-2977","1735-3947","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,342","1.0","Q3","0.35","95.87" +"CEN Case Reports","2192-4449","2192-4449","UROLOGY & NEPHROLOGY","('ESCI',)","529","1.0","Q4","0.35","10.04" +"Educational Psychology in Practice","0266-7363","1469-5839","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","539","1.0","Q4","0.35","21.25" +"IEEJ Journal of Industry Applications","2187-1094","2187-1108","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","640","1.0","Q4","0.35","100.00" +"Industria Textila","1222-5347","","MATERIALS SCIENCE, TEXTILES","('SCIE',)","492","1.0","Q3","0.35","98.52" +"INTERNATIONAL JOURNAL OF GROUP PSYCHOTHERAPY","0020-7284","1943-2836","PSYCHOLOGY, CLINICAL","('SSCI',)","397","1.0","Q3","0.35","5.00" +"INTERNATIONAL JOURNAL OF POLITICAL ECONOMY","0891-1916","1558-0970","ECONOMICS","('ESCI',)","386","1.0","Q3","0.35","11.48" +"ISLAND ARC","1038-4871","1440-1738","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","1,430","1.0","Q4","0.35","13.68" +"JOURNAL OF COMPUTER ASSISTED TOMOGRAPHY","0363-8715","1532-3145","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","4,454","1.0","Q4","0.35","8.11" +"REVIEW OF RADICAL POLITICAL ECONOMICS","0486-6134","1552-8502","ECONOMICS","('SSCI',)","845","1.0","Q3","0.35","7.34" +"Revista Brasileira de Ginecologia e Obstetricia","0100-7203","1806-9339","OBSTETRICS & GYNECOLOGY","('ESCI',)","1,292","1.0","Q4","0.35","99.44" +"AIMS Bioengineering","2375-1495","2375-1495","ENGINEERING, BIOMEDICAL","('ESCI',)","283","1.0","Q4","0.34","97.10" +"BRITISH JOURNAL OF NEUROSURGERY","0268-8697","1360-046X","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","3,651","1.0","('Q4', 'Q3')","0.34","7.01" +"CANADIAN JOURNAL OF PLANT SCIENCE","0008-4220","1918-1833","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","4,397","1.0","('Q3', 'Q3')","0.34","37.59" +"Comparative Cytogenetics","1993-0771","1993-078X","('GENETICS & HEREDITY', 'PLANT SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","399","1.0","('Q4', 'Q3', 'Q3')","0.34","93.85" +"FOLIA GEOBOTANICA","1211-9520","1874-9348","PLANT SCIENCES","('SCIE',)","1,050","1.0","Q3","0.34","22.41" +"GENE EXPRESSION PATTERNS","1567-133X","1872-7298","('DEVELOPMENTAL BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","1,262","1.0","('Q4', 'Q4')","0.34","15.79" +"Health Education","0965-4283","1758-714X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","812","1.0","Q4","0.34","8.05" +"International Journal of Clothing Science and Technology","0955-6222","1758-5953","MATERIALS SCIENCE, TEXTILES","('SCIE',)","1,041","1.0","Q3","0.34","1.91" +"International Journal of Web and Grid Services","1741-1106","1741-1114","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","471","1.0","('Q4', 'Q4')","0.34","0.00" +"Journal of Crop Improvement","1542-7528","1542-7536","('AGRONOMY', 'PLANT SCIENCES')","('ESCI', 'ESCI')","964","1.0","('Q3', 'Q3')","0.34","11.30" +"Journal of EMDR Practice and Research","1933-3196","1933-320X","('PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL')","('ESCI', 'ESCI')","399","1.0","('Q4', 'Q3')","0.34","1.75" +"Journal of Grey System","0957-3720","","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('SCIE',)","607","1.0","Q4","0.34","0.00" +"Journal of Spatial Science","1449-8596","1836-5655","('GEOGRAPHY, PHYSICAL', 'REMOTE SENSING')","('SCIE', 'SCIE')","501","1.0","('Q4', 'Q4')","0.34","9.82" +"JOURNAL OF THE CHINESE INSTITUTE OF ENGINEERS","0253-3839","2158-7299","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","1,020","1.0","Q3","0.34","0.00" +"Journal of the Faculty of Engineering and Architecture of Gazi University","1300-1884","1304-4915","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","1,152","1.0","Q3","0.34","98.10" +"NUKLEARMEDIZIN-NUCLEAR MEDICINE","0029-5566","2567-6407","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","506","1.0","Q4","0.34","8.60" +"OXFORD ECONOMIC PAPERS-NEW SERIES","0030-7653","1464-3812","ECONOMICS","('SSCI',)","2,830","1.0","Q3","0.34","22.03" +"Pedagogia Social Revista Interuniversitaria","1989-9742","1989-9742","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","224","1.0","Q3","0.34","83.13" +"Research in Education and Learning Innovation Archives-REALIA","2659-9031","2659-9031","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","43","1.0","Q3","0.34","92.11" +"SOCIAL BEHAVIOR AND PERSONALITY","0301-2212","1179-6391","PSYCHOLOGY, SOCIAL","('SSCI',)","4,122","1.0","Q4","0.34","5.68" +"Turkish Journal of Urology","","2149-3057","UROLOGY & NEPHROLOGY","('ESCI',)","851","1.0","Q4","0.34","0.00" +"Advances in Science and Technology-Research Journal","2080-4075","2299-8624","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","835","1.0","Q3","0.33","99.40" +"Annali di Botanica","0365-0812","2239-3129","('ENVIRONMENTAL SCIENCES', 'PLANT SCIENCES')","('SCIE', 'SCIE')","147","1.0","('Q4', 'Q3')","0.33","0.00" +"Asian Development Review","0116-1105","1996-7241","('DEVELOPMENT STUDIES', 'ECONOMICS')","('ESCI', 'ESCI')","300","1.0","('Q4', 'Q3')","0.33","87.72" +"Biodiversity Data Journal","1314-2836","1314-2828","BIODIVERSITY CONSERVATION","('SCIE',)","1,558","1.0","Q3","0.33","98.95" +"GAMES AND ECONOMIC BEHAVIOR","0899-8256","1090-2473","ECONOMICS","('SSCI',)","5,260","1.0","Q3","0.33","30.98" +"Human Genome Variation","","2054-345X","GENETICS & HEREDITY","('ESCI',)","449","1.0","Q4","0.33","98.35" +"International Journal of AEROSPACE Psychology","2472-1832","2472-1840","PSYCHOLOGY, APPLIED","('SSCI',)","129","1.0","Q4","0.33","13.56" +"INTERNATIONAL JOURNAL OF DEVELOPMENTAL BIOLOGY","0214-6282","1696-3547","DEVELOPMENTAL BIOLOGY","('SCIE',)","3,258","1.0","Q4","0.33","92.00" +"INTERNATIONAL TAX AND PUBLIC FINANCE","0927-5940","1573-6970","ECONOMICS","('SSCI',)","1,458","1.0","Q3","0.33","37.87" +"JOURNAL OF GENERAL PLANT PATHOLOGY","1345-2630","1610-739X","PLANT SCIENCES","('SCIE',)","1,469","1.0","Q3","0.33","5.92" +"Journal of Mental Health Policy and Economics","1091-4358","1099-176X","('HEALTH POLICY & SERVICES', 'PSYCHIATRY')","('SSCI', 'SSCI')","440","1.0","('Q4', 'Q4')","0.33","0.00" +"Journal of Yeungnam Medical Science","","2799-8010","MEDICINE, GENERAL & INTERNAL","('ESCI',)","90","1.0","Q3","0.33","100.00" +"Revista de Artes Marciales Asiaticas","2174-0747","2174-0747","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","100","1.0","Q3","0.33","100.00" +"ZEITSCHRIFT FUR ARBEITS-UND ORGANISATIONSPSYCHOLOGIE","0932-4089","2190-6270","PSYCHOLOGY, APPLIED","('SSCI',)","259","1.0","Q4","0.33","67.27" +"Adoption and Fostering","0308-5759","1740-469X","FAMILY STUDIES","('ESCI',)","518","1.0","Q3","0.32","41.10" +"Advances in Theoretical and Mathematical Physics","1095-0761","1095-0753","('PHYSICS, MATHEMATICAL', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","2,337","1.0","('Q3', 'Q4')","0.32","0.00" +"ATMOSFERA","0187-6236","2395-8812","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","663","1.0","Q4","0.32","95.83" +"FARMACIA HOSPITALARIA","1130-6343","2171-8695","PHARMACOLOGY & PHARMACY","('ESCI',)","529","1.0","Q4","0.32","39.79" +"Foresight and STI Governance","1995-459X","2500-2597","('ECONOMICS', 'MANAGEMENT')","('ESCI', 'ESCI')","323","1.0","('Q3', 'Q4')","0.32","94.51" +"INTERNATIONAL JOURNAL OF MODERN PHYSICS E","0218-3013","1793-6608","('PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","1,683","1.0","('Q4', 'Q4')","0.32","0.31" +"Journal of Nuclear Medicine Technology","0091-4916","1535-5675","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,095","1.0","Q4","0.32","4.32" +"Journal of Space Safety Engineering","2468-8975","2468-8967","ENGINEERING, AEROSPACE","('ESCI',)","337","1.0","Q3","0.32","15.88" +"Journal of Visual Communication in Medicine","1745-3054","1745-3062","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","188","1.0","Q4","0.32","26.67" +"Mathematics and Mechanics of Complex Systems","2326-7186","2325-3444","MECHANICS","('ESCI',)","164","1.0","Q4","0.32","100.00" +"Melanoma Management","2045-0885","2045-0893","ONCOLOGY","('ESCI',)","204","1.0","Q4","0.32","90.91" +"MICROWAVE AND OPTICAL TECHNOLOGY LETTERS","0895-2477","1098-2760","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS')","('SCIE', 'SCIE')","6,130","1.0","('Q4', 'Q4')","0.32","1.99" +"New Perspectives","2336-825X","2336-8268","POLITICAL SCIENCE","('ESCI',)","188","1.0","Q3","0.32","18.06" +"SEMINARS IN INTERVENTIONAL RADIOLOGY","0739-9529","1098-8963","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,863","1.0","Q4","0.32","0.00" +"Sleep and Biological Rhythms","1446-9235","1479-8425","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","940","1.0","('Q4', 'Q4')","0.32","17.34" +"WATER SA","0378-4738","1816-7950","WATER RESOURCES","('SCIE',)","2,165","1.0","Q4","0.32","100.00" +"Advances in Cognitive Psychology","1895-1171","1895-1171","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","540","1.0","Q4","0.31","97.73" +"Asian Economic Journal","1351-3958","1467-8381","ECONOMICS","('SSCI',)","351","1.0","Q3","0.31","8.33" +"BIOTA NEOTROPICA","1676-0603","1676-0611","BIODIVERSITY CONSERVATION","('SCIE',)","1,792","1.0","Q3","0.31","92.20" +"BRITISH JOURNAL OF GUIDANCE & COUNSELLING","0306-9885","1469-3534","PSYCHOLOGY, APPLIED","('SSCI',)","1,255","1.0","Q4","0.31","25.23" +"GMS Interdisciplinary Plastic and Reconstructive Surgery DGPW","2193-8091","2193-8091","SURGERY","('ESCI',)","138","1.0","Q3","0.31","0.00" +"HORTICULTURAL SCIENCE","0862-867X","1805-9333","HORTICULTURE","('SCIE',)","574","1.0","Q3","0.31","97.44" +"Horticultural Science & Technology","1226-8763","2465-8588","HORTICULTURE","('SCIE',)","453","1.0","Q3","0.31","100.00" +"IEEE Revista Iberoamericana de Tecnologias del Aprendizaje-IEEE RITA","","1932-8540","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","290","1.0","Q4","0.31","0.00" +"Mediterranean Botany","2603-9109","2603-9109","PLANT SCIENCES","('SCIE',)","118","1.0","Q3","0.31","90.14" +"Review of International Economics","0965-7576","1467-9396","ECONOMICS","('SSCI',)","1,682","1.0","Q3","0.31","22.46" +"Soccer & Society","1466-0970","1743-9590","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","1,265","1.0","Q3","0.31","30.23" +"THEORETICAL AND MATHEMATICAL PHYSICS","0040-5779","1573-9333","('PHYSICS, MATHEMATICAL', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,651","1.0","('Q3', 'Q3')","0.31","0.00" +"Twin Research and Human Genetics","1832-4274","1839-2628","('GENETICS & HEREDITY', 'OBSTETRICS & GYNECOLOGY')","('SCIE', 'SCIE')","1,765","1.0","('Q4', 'Q4')","0.31","51.04" +"Water Economics and Policy","2382-624X","2382-6258","('ECONOMICS', 'ENVIRONMENTAL STUDIES', 'WATER RESOURCES')","('SSCI', 'SSCI', 'SCIE')","210","1.0","('Q3', 'Q4', 'Q4')","0.31","4.82" +"Australian Economic Review","0004-9018","1467-8462","ECONOMICS","('SSCI',)","514","1.0","Q3","0.30","41.44" +"BIOLOGICAL RHYTHM RESEARCH","0929-1016","1744-4179","('BIOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","1,215","1.0","('Q3', 'Q4')","0.30","3.38" +"Botany","1916-2790","1916-2804","PLANT SCIENCES","('SCIE',)","1,879","1.0","Q3","0.30","11.71" +"Bulletin of Glaciological Research","1345-3807","1884-8044","GEOGRAPHY, PHYSICAL","('ESCI',)","88","1.0","Q4","0.30","100.00" +"CRYOLETTERS","0143-2044","1742-0644","('BIOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","1,106","1.0","('Q3', 'Q4')","0.30","11.36" +"Current Issues in Personality Psychology","2353-4192","2353-561X","PSYCHOLOGY, SOCIAL","('ESCI',)","217","1.0","Q4","0.30","100.00" +"Economics of Transition and Institutional Change","2577-6975","2577-6983","ECONOMICS","('SSCI',)","133","1.0","Q3","0.30","10.34" +"Egyptian Rheumatologist","1110-1164","2090-2433","RHEUMATOLOGY","('ESCI',)","494","1.0","Q4","0.30","97.96" +"Geohumanities","2373-566X","2373-5678","GEOGRAPHY","('ESCI',)","262","1.0","Q3","0.30","37.25" +"GEOLOGICA CARPATHICA","1335-0552","1336-8052","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","1,045","1.0","Q4","0.30","100.00" +"IFLA JOURNAL-INTERNATIONAL FEDERATION OF LIBRARY ASSOCIATIONS","0340-0352","1745-2651","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","438","1.0","Q3","0.30","17.39" +"Internal Medicine","0918-2918","1349-7235","MEDICINE, GENERAL & INTERNAL","('SCIE',)","7,802","1.0","Q3","0.30","98.98" +"JOURNAL OF LIQUID CHROMATOGRAPHY & RELATED TECHNOLOGIES","1082-6076","1520-572X","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL')","('SCIE', 'SCIE')","2,679","1.0","('Q4', 'Q4')","0.30","2.11" +"JOURNAL OF TROPICAL ECOLOGY","0266-4674","1469-7831","ECOLOGY","('SCIE',)","2,724","1.0","Q4","0.30","25.00" +"Ocean and Coastal Research","","2675-2824","('MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","161","1.0","('Q3', 'Q4')","0.30","93.98" +"PROCEEDINGS OF THE INSTITUTION OF MECHANICAL ENGINEERS PART G-JOURNAL OF AEROSPACE ENGINEERING","0954-4100","2041-3025","('ENGINEERING, AEROSPACE', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","2,995","1.0","('Q3', 'Q4')","0.30","2.61" +"RESEARCH IN NONDESTRUCTIVE EVALUATION","0934-9847","1432-2110","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('SCIE',)","419","1.0","Q3","0.30","0.00" +"Tehnicki Vjesnik-Technical Gazette","1330-3651","1848-6339","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","1,958","1.0","Q3","0.30","99.74" +"Western Pacific Surveillance and Response","2094-7321","2094-7313","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","312","1.0","Q4","0.30","88.12" +"ACTA ADRIATICA","0001-5113","1846-0453","('MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","468","1.0","('Q3', 'Q4')","0.29","51.61" +"ARQUIVOS DE NEURO-PSIQUIATRIA","0004-282X","1678-4227","('NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE')","3,445","1.0","('Q4', 'Q4')","0.29","95.08" +"Basic and Clinical Neuroscience","2008-126X","2228-7442","NEUROSCIENCES","('ESCI',)","842","1.0","Q4","0.29","99.50" +"Gazi University Journal of Science","2147-1762","2147-1762","MULTIDISCIPLINARY SCIENCES","('ESCI',)","781","1.0","Q3","0.29","100.00" +"GEOSCIENCES JOURNAL","1226-4806","1598-7477","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","1,472","1.0","Q4","0.29","0.00" +"INDIAN JOURNAL OF GENETICS AND PLANT BREEDING","0019-5200","0975-6906","PLANT SCIENCES","('SCIE',)","1,003","1.0","Q3","0.29","21.08" +"JOURNAL OF CONSTRUCTIVIST PSYCHOLOGY","1072-0537","1521-0650","PSYCHOLOGY, CLINICAL","('SSCI',)","515","1.0","Q3","0.29","15.31" +"Journal of Defense Modeling and Simulation-Applications Methodology Technology-JDMS","1548-5129","1557-380X","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","388","1.0","Q3","0.29","5.00" +"JOURNAL OF PHARMACY PRACTICE","0897-1900","1531-1937","PHARMACOLOGY & PHARMACY","('ESCI',)","1,684","1.0","Q4","0.29","4.44" +"Journal of Postgraduate Medicine","0022-3859","0972-2823","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,423","1.0","Q3","0.29","96.55" +"Mechanical Sciences","2191-9151","2191-916X","ENGINEERING, MECHANICAL","('SCIE',)","621","1.0","Q4","0.29","100.00" +"Phytotaxa","1179-3155","1179-3163","PLANT SCIENCES","('SCIE',)","7,804","1.0","Q3","0.29","0.00" +"QUATERNAIRE","1142-2904","","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","415","1.0","Q4","0.29","0.00" +"Revista Ciencia Agronomica","0045-6888","1806-6690","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","1,197","1.0","Q3","0.29","80.75" +"AGRICULTURAL AND FOOD SCIENCE","1459-6067","1795-1895","('AGRICULTURE, MULTIDISCIPLINARY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","772","1.0","('Q3', 'Q4')","0.28","98.31" +"Aloma-Revista de Psicologia Ciencies de l Educacio i de l Esport","1138-3194","2339-9694","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","164","1.0","Q3","0.28","95.74" +"American Journal of Case Reports","","1941-5923","MEDICINE, GENERAL & INTERNAL","('ESCI',)","2,782","1.0","Q3","0.28","10.18" +"ATOMIZATION AND SPRAYS","1044-5110","1936-2684","('ENGINEERING, CHEMICAL', 'ENGINEERING, MECHANICAL', 'ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","1,613","1.0","('Q4', 'Q4', 'Q3', 'Q4', 'Q4')","0.28","0.00" +"Biomedical and Biotechnology Research Journal","2588-9834","2588-9842","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('ESCI', 'ESCI')","387","1.0","('Q4', 'Q4')","0.28","79.30" +"COMPEL-THE INTERNATIONAL JOURNAL FOR COMPUTATION AND MATHEMATICS IN ELECTRICAL AND ELECTRONIC ENGINEERING","0332-1649","0332-1649","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","954","1.0","('Q4', 'Q4', 'Q3')","0.28","7.12" +"Cureus Journal of Medical Science","","2168-8184","MEDICINE, GENERAL & INTERNAL","('ESCI',)","40,667","1.0","Q3","0.28","99.71" +"Data in Brief","2352-3409","2352-3409","MULTIDISCIPLINARY SCIENCES","('ESCI',)","8,611","1.0","Q3","0.28","95.75" +"Development in Practice","0961-4524","1364-9213","DEVELOPMENT STUDIES","('ESCI',)","1,910","1.0","Q4","0.28","22.82" +"Egyptian Journal of Bronchology","1687-8426","2314-8551","RESPIRATORY SYSTEM","('ESCI',)","247","1.0","Q4","0.28","100.00" +"European Burn Journal","","2673-1991","('CRITICAL CARE MEDICINE', 'DERMATOLOGY')","('ESCI', 'ESCI')","72","1.0","('Q4', 'Q4')","0.28","100.00" +"ISSUES IN ACCOUNTING EDUCATION","0739-3172","1558-7983","BUSINESS, FINANCE","('ESCI',)","736","1.0","Q3","0.28","0.00" +"Journal of Global Infectious Diseases","0974-777X","0974-8245","INFECTIOUS DISEASES","('ESCI',)","1,006","1.0","Q4","0.28","88.42" +"Journal of Transportation Security","1938-7741","1938-775X","TRANSPORTATION","('ESCI',)","170","1.0","Q4","0.28","30.56" +"MATERIALS AT HIGH TEMPERATURES","0960-3409","1878-6413","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","1,268","1.0","('Q4', 'Q3')","0.28","19.14" +"Measurement Science Review","1335-8871","1335-8871","INSTRUMENTS & INSTRUMENTATION","('SCIE',)","562","1.0","Q4","0.28","100.00" +"Medical Bulletin of Sisli Etfal Hospital","1302-7123","1308-5123","MEDICINE, GENERAL & INTERNAL","('ESCI',)","446","1.0","Q3","0.28","75.83" +"Mental Health Review Journal","1361-9322","2042-8758","PSYCHIATRY","('ESCI',)","473","1.0","Q4","0.28","4.30" +"NATURAL AREAS JOURNAL","0885-8608","2162-4399","('ECOLOGY', 'FORESTRY')","('SCIE', 'SCIE')","914","1.0","('Q4', 'Q3')","0.28","1.16" +"PERFORMANCE EVALUATION","0166-5316","1872-745X","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","840","1.0","('Q4', 'Q3')","0.28","32.00" +"Philosophy of Management","1740-3812","2052-9597","MANAGEMENT","('ESCI',)","254","1.0","Q4","0.28","30.86" +"Problemy Ekorozwoju","1895-6912","2080-1971","ENVIRONMENTAL STUDIES","('SSCI',)","316","1.0","Q4","0.28","68.18" +"Annales Pharmaceutiques Francaises","0003-4509","0003-4509","PHARMACOLOGY & PHARMACY","('ESCI',)","615","1.0","Q4","0.27","27.95" +"ARCHIVES OF PHYTOPATHOLOGY AND PLANT PROTECTION","0323-5408","1477-2906","PLANT SCIENCES","('ESCI',)","881","1.0","Q3","0.27","0.31" +"International Journal on Information Technologies and Security","1313-8251","1313-8251","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","162","1.0","Q4","0.27","0.00" +"JOURNAL OF ECONOMIC ISSUES","0021-3624","1946-326X","ECONOMICS","('SSCI',)","1,842","1.0","Q3","0.27","13.89" +"JOURNAL OF ENVIRONMENTAL AND ENGINEERING GEOPHYSICS","1083-1363","1943-2658","('ENGINEERING, GEOLOGICAL', 'GEOCHEMISTRY & GEOPHYSICS')","('SCIE', 'SCIE')","655","1.0","('Q4', 'Q3')","0.27","0.00" +"Journal of Information and Communication Technology-Malaysia","1675-414X","2180-3862","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","178","1.0","Q4","0.27","88.89" +"Journal of Korean Society for Atmospheric Environment","1598-7132","2383-5346","METEOROLOGY & ATMOSPHERIC SCIENCES","('ESCI',)","537","1.0","Q4","0.27","1.10" +"JOURNAL OF PRESSURE VESSEL TECHNOLOGY-TRANSACTIONS OF THE ASME","0094-9930","1528-8978","ENGINEERING, MECHANICAL","('SCIE',)","2,561","1.0","Q4","0.27","0.99" +"NORDIC JOURNAL OF BOTANY","0107-055X","1756-1051","PLANT SCIENCES","('SCIE',)","1,784","1.0","Q3","0.27","12.60" +"OPTICAL MEMORY AND NEURAL NETWORKS","1060-992X","1934-7898","OPTICS","('ESCI',)","212","1.0","Q4","0.27","1.94" +"SAIEE Africa Research Journal","1991-1696","1991-1696","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","120","1.0","Q4","0.27","13.33" +"SYSTEMIC PRACTICE AND ACTION RESEARCH","1094-429X","1573-9295","MANAGEMENT","('SSCI',)","662","1.0","Q4","0.27","37.14" +"Turkish Journal of Field Crops","1301-1111","1301-1111","AGRONOMY","('SCIE',)","617","1.0","Q3","0.27","75.81" +"Acta Neuropsychologica","1730-7503","2084-4298","PSYCHOLOGY","('ESCI',)","172","1.0","Q4","0.26","0.00" +"All Life","2689-5293","2689-5307","MULTIDISCIPLINARY SCIENCES","('SCIE',)","299","1.0","Q3","0.26","98.88" +"Analytical Chemistry Letters","2229-7928","2230-7532","CHEMISTRY, ANALYTICAL","('ESCI',)","511","1.0","Q4","0.26","0.00" +"ANIMAL BIODIVERSITY AND CONSERVATION","1578-665X","2014-928X","BIODIVERSITY CONSERVATION","('SCIE',)","573","1.0","Q3","0.26","100.00" +"California Fish and Wildlife Journal","2689-419X","2689-4203","('FISHERIES', 'ZOOLOGY')","('SCIE', 'SCIE')","42","1.0","('Q3', 'Q3')","0.26","93.10" +"Clinical Pediatric Endocrinology","0918-5739","1347-7358","ENDOCRINOLOGY & METABOLISM","('ESCI',)","432","1.0","Q4","0.26","30.69" +"Critical Care Nursing Quarterly","0887-9303","1550-5111","CRITICAL CARE MEDICINE","('ESCI',)","598","1.0","Q4","0.26","0.00" +"EPJ Techniques and Instrumentation","2195-7045","2195-7045","INSTRUMENTS & INSTRUMENTATION","('ESCI',)","212","1.0","Q4","0.26","97.78" +"GEOTECTONICS","0016-8521","1556-1976","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","997","1.0","Q3","0.26","4.03" +"Global Economy Journal","2194-5659","1553-5304","ECONOMICS","('ESCI',)","233","1.0","Q3","0.26","0.00" +"IET Circuits Devices & Systems","1751-858X","1751-8598","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","945","1.0","Q4","0.26","69.13" +"International Journal of Communication Networks and Distributed Systems","1754-3916","1754-3924","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","177","1.0","Q4","0.26","1.00" +"JOURNAL OF EXPERIMENTAL AND THEORETICAL PHYSICS","1063-7761","1090-6509","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","11,588","1.0","Q3","0.26","0.55" +"Journal of Poetry Therapy","0889-3675","1567-2344","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","218","1.0","Q3","0.26","17.07" +"Metrology and Measurement Systems","0860-8229","2300-1941","INSTRUMENTS & INSTRUMENTATION","('SCIE',)","629","1.0","Q4","0.26","100.00" +"PHOTOGRAMMETRIC ENGINEERING AND REMOTE SENSING","0099-1112","2374-8079","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'REMOTE SENSING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","5,630","1.0","('Q4', 'Q4', 'Q4', 'Q4')","0.26","19.46" +"Revista Mexicana de Ingenieria Quimica","1665-2738","","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","864","1.0","('Q4', 'Q4')","0.26","75.00" +"South African Journal of Psychiatry","1608-9685","2078-6786","PSYCHIATRY","('SCIE', 'SSCI')","428","1.0","Q4","0.26","97.14" +"World Journal of Clinical Cases","2307-8960","2307-8960","MEDICINE, GENERAL & INTERNAL","('SCIE',)","5,873","1.0","Q3","0.26","97.14" +"Acta Mechanica et Automatica","1898-4088","2300-5319","ENGINEERING, MECHANICAL","('ESCI',)","301","1.0","Q4","0.25","99.34" +"BRAZILIAN ARCHIVES OF BIOLOGY AND TECHNOLOGY","1516-8913","1678-4324","BIOLOGY","('SCIE',)","3,155","1.0","Q3","0.25","89.18" +"Etikonomi","1412-8969","2461-0771","ECONOMICS","('ESCI',)","105","1.0","Q3","0.25","86.36" +"International Journal of Asian Business and Information Management","1947-9638","1947-9646","BUSINESS","('ESCI',)","211","1.0","Q4","0.25","99.07" +"International Journal of Automotive And Mechanical Engineering","2229-8649","2180-1606","ENGINEERING, MECHANICAL","('ESCI',)","695","1.0","Q4","0.25","70.87" +"Iranian Journal of Earth Sciences","2008-8779","2228-785X","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","121","1.0","Q4","0.25","0.00" +"JOURNAL OF ELECTRONIC IMAGING","1017-9909","1560-229X","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'OPTICS')","('SCIE', 'SCIE', 'SCIE')","2,751","1.0","('Q4', 'Q4', 'Q4')","0.25","3.76" +"JOURNAL OF ONCOLOGY PHARMACY PRACTICE","1078-1552","1477-092X","('ONCOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","2,396","1.0","('Q4', 'Q4')","0.25","6.45" +"Noropsikiyatri Arsivi-Archives of Neuropsychiatry","1300-0667","1309-4866","CLINICAL NEUROLOGY","('SCIE',)","956","1.0","Q4","0.25","0.00" +"Revista Electronica de Investigacion Educativa","","1607-4041","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","471","1.0","Q3","0.25","97.26" +"Revista Espanola de Documentacion Cientifica","0210-0614","1988-4621","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","347","1.0","Q3","0.25","97.70" +"SOUTHERN MEDICAL JOURNAL","0038-4348","1541-8243","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,792","1.0","Q3","0.25","0.00" +"Beton- und Stahlbetonbau","0005-9900","1437-1006","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MATERIALS SCIENCE, COMPOSITES')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","973","1.0","('Q4', 'Q4', 'Q3', 'Q4')","0.24","0.00" +"Bladder Cancer","2352-3727","2352-3735","('ONCOLOGY', 'UROLOGY & NEPHROLOGY')","('SCIE', 'SCIE')","494","1.0","('Q4', 'Q4')","0.24","66.33" +"CAHIERS AGRICULTURES","1166-7699","1777-5949","('AGRICULTURE, MULTIDISCIPLINARY', 'AGRONOMY')","('SCIE', 'SCIE')","591","1.0","('Q3', 'Q3')","0.24","97.06" +"CIRIEC-Espana Revista de Economia Publica Social y Cooperativa","0213-8093","1989-6816","ECONOMICS","('ESCI',)","337","1.0","Q3","0.24","97.96" +"Diabetes Epidemiology and Management","","2666-9706","ENDOCRINOLOGY & METABOLISM","('ESCI',)","88","1.0","Q4","0.24","98.21" +"Fluid Dynamics","0015-4628","1573-8507","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE')","1,507","1.0","('Q4', 'Q4')","0.24","6.39" +"GEOCHEMICAL JOURNAL","0016-7002","1880-5973","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","1,877","1.0","Q3","0.24","100.00" +"GRASAS Y ACEITES","0017-3495","1988-4214","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","1,393","1.0","('Q4', 'Q4')","0.24","96.53" +"IT-Information Technology","1611-2776","2196-7032","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","248","1.0","Q4","0.24","23.88" +"Jordan Journal of Civil Engineering","1993-0461","2225-157X","ENGINEERING, CIVIL","('ESCI',)","464","1.0","Q4","0.24","0.00" +"JOURNAL OF ANALYTICAL CHEMISTRY","1061-9348","1608-3199","CHEMISTRY, ANALYTICAL","('SCIE',)","2,428","1.0","Q4","0.24","3.17" +"Journal of Tax Reform","2412-8872","2414-9497","BUSINESS, FINANCE","('ESCI',)","86","1.0","Q3","0.24","95.45" +"Revista Latinoamericana de Tecnologia Educativa-RELATEC","1695-288X","1695-288X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","147","1.0","Q3","0.24","90.57" +"SENSORS AND MATERIALS","0914-4935","0914-4935","('INSTRUMENTS & INSTRUMENTATION', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,864","1.0","('Q4', 'Q4')","0.24","98.39" +"African Journal of Laboratory Medicine","2225-2002","2225-2010","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","359","1.0","Q4","0.23","96.55" +"Aging Medicine and Healthcare","","2663-8851","GERIATRICS & GERONTOLOGY","('ESCI',)","96","1.0","Q4","0.23","97.37" +"Anales del Sistema Sanitario De Navarra","1137-6627","2340-3527","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","462","1.0","Q4","0.23","69.29" +"East Asian Economic Review","2508-1640","2508-1667","ECONOMICS","('ESCI',)","71","1.0","Q3","0.23","100.00" +"East European Journal of Physics","2312-4334","2312-4539","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","326","1.0","Q3","0.23","99.15" +"INTERACTING WITH COMPUTERS","0953-5438","1873-7951","('COMPUTER SCIENCE, CYBERNETICS', 'ERGONOMICS')","('SCIE', 'SSCI')","1,688","1.0","('Q3', 'Q4')","0.23","25.44" +"International Journal of Geophysics","1687-885X","1687-8868","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","353","1.0","Q3","0.23","100.00" +"IRANIAN JOURNAL OF CHEMISTRY & CHEMICAL ENGINEERING-INTERNATIONAL ENGLISH EDITION","1021-9986","1021-9986","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","1,481","1.0","('Q4', 'Q4')","0.23","0.00" +"Journal of Eta Maritime Science","","2148-9386","('ENGINEERING, MARINE', 'TRANSPORTATION', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI', 'ESCI')","133","1.0","('Q3', 'Q4', 'Q4')","0.23","100.00" +"Journal of the Belgian Society of Radiology","2514-8281","2514-8281","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","347","1.0","Q4","0.23","94.59" +"Jundishapur Journal of Natural Pharmaceutical Products","1735-7780","2228-7876","PHARMACOLOGY & PHARMACY","('ESCI',)","556","1.0","Q4","0.23","99.26" +"MAPAN-Journal of Metrology Society of India","0970-3950","0974-9853","('INSTRUMENTS & INSTRUMENTATION', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","541","1.0","('Q4', 'Q4')","0.23","3.23" +"Polimeros-Ciencia e Tecnologia","0104-1428","1678-5169","POLYMER SCIENCE","('SCIE',)","1,431","1.0","Q4","0.23","99.14" +"Proceedings of the Estonian Academy of Sciences","1736-6046","1736-7530","MULTIDISCIPLINARY SCIENCES","('SCIE',)","477","1.0","Q3","0.23","100.00" +"PROTEIN AND PEPTIDE LETTERS","0929-8665","1875-5305","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","2,154","1.0","Q4","0.23","1.75" +"RUSSIAN JOURNAL OF ECOLOGY","1067-4136","1608-3334","ECOLOGY","('SCIE',)","1,167","1.0","Q4","0.23","0.00" +"SCIENCEASIA","1513-1874","","MULTIDISCIPLINARY SCIENCES","('SCIE',)","1,023","1.0","Q3","0.23","84.93" +"Vascular","1708-5381","1708-539X","PERIPHERAL VASCULAR DISEASE","('SCIE',)","1,517","1.0","Q4","0.23","3.75" +"BIO-MEDICAL MATERIALS AND ENGINEERING","0959-2989","1878-3619","('ENGINEERING, BIOMEDICAL', 'MATERIALS SCIENCE, BIOMATERIALS')","('SCIE', 'SCIE')","1,588","1.0","('Q4', 'Q4')","0.22","4.39" +"Bio-protocol","","2331-8325","BIOLOGY","('ESCI',)","4,587","1.0","Q3","0.22","26.15" +"BIORHEOLOGY","0006-355X","1878-5034","('BIOPHYSICS', 'ENGINEERING, BIOMEDICAL', 'HEMATOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,311","1.0","('Q4', 'Q4', 'Q4')","0.22","0.00" +"BOREAL ENVIRONMENT RESEARCH","1239-6095","1797-2469","ENVIRONMENTAL SCIENCES","('SCIE',)","1,066","1.0","Q4","0.22","0.00" +"DISSOLUTION TECHNOLOGIES","1521-298X","2376-869X","PHARMACOLOGY & PHARMACY","('SCIE',)","480","1.0","Q4","0.22","0.00" +"ECONOMIC AFFAIRS","0265-0665","1468-0270","ECONOMICS","('ESCI',)","337","1.0","Q3","0.22","29.27" +"GENES & GENETIC SYSTEMS","1341-7568","1880-5779","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","875","1.0","('Q4', 'Q4')","0.22","93.55" +"IEEJ Transactions on Electrical and Electronic Engineering","1931-4973","1931-4981","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","1,538","1.0","Q4","0.22","1.77" +"Intangible Capital","2014-3214","1697-9818","MANAGEMENT","('ESCI',)","326","1.0","Q4","0.22","100.00" +"Journal of Control Science and Engineering","1687-5249","1687-5257","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","431","1.0","Q4","0.22","98.92" +"Journal of Infrastructure Policy and Development","2572-7923","2572-7931","MANAGEMENT","('ESCI',)","118","1.0","Q4","0.22","96.00" +"JOURNAL OF PHARMACY PRACTICE AND RESEARCH","1445-937X","2055-2335","PHARMACOLOGY & PHARMACY","('ESCI',)","546","1.0","Q4","0.22","27.21" +"Nutrition & Food Science","0034-6659","1758-6917","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","1,365","1.0","Q4","0.22","1.67" +"POLYMER SCIENCE SERIES B","1560-0904","1555-6123","POLYMER SCIENCE","('SCIE',)","885","1.0","Q4","0.22","1.87" +"Proceedings of the Institution of Civil Engineers-Energy","1751-4223","1751-4231","ENERGY & FUELS","('SCIE',)","286","1.0","Q4","0.22","8.82" +"ACTAS ESPANOLAS DE PSIQUIATRIA","1139-9287","1578-2735","('NEUROSCIENCES', 'PSYCHIATRY')","('SCIE', 'SCIE')","686","1.0","('Q4', 'Q4')","0.21","0.00" +"BRITISH JOURNAL OF HOSPITAL MEDICINE","1750-8460","1759-7390","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,549","1.0","Q3","0.21","4.97" +"COMPTES RENDUS MECANIQUE","1631-0721","1873-7234","MECHANICS","('SCIE',)","1,719","1.0","Q4","0.21","99.10" +"Desalination and Water Treatment","1944-3994","1944-3986","('ENGINEERING, CHEMICAL', 'WATER RESOURCES')","('SCIE', 'SCIE')","17,895","1.0","('Q4', 'Q4')","0.21","0.00" +"INTERNATIONAL JOURNAL OF UNCERTAINTY FUZZINESS AND KNOWLEDGE-BASED SYSTEMS","0218-4885","1793-6411","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","1,834","1.0","Q4","0.21","1.62" +"OBSERVATORY","0029-7704","","ASTRONOMY & ASTROPHYSICS","('SCIE',)","321","1.0","Q4","0.21","2.56" +"Scientific Papers of the University of Pardubice-Series D-Faculty of Economics and Administration","1211-555X","1804-8048","('BUSINESS', 'ECONOMICS', 'MANAGEMENT')","('ESCI', 'ESCI', 'ESCI')","107","1.0","('Q4', 'Q3', 'Q4')","0.21","98.86" +"ACTA CARSOLOGICA","0583-6050","1580-2612","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","520","1.0","Q4","0.20","95.56" +"APPLIED BIOCHEMISTRY AND MICROBIOLOGY","0003-6838","1608-3024","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","1,978","1.0","('Q4', 'Q4')","0.20","4.96" +"Case Reports in Infectious Diseases","2090-6625","2090-6633","INFECTIOUS DISEASES","('ESCI',)","772","1.0","Q4","0.20","100.00" +"INSIGHT","1354-2575","1754-4904","('INSTRUMENTS & INSTRUMENTATION', 'MATERIALS SCIENCE, CHARACTERIZATION & TESTING')","('SCIE', 'SCIE')","1,264","1.0","('Q4', 'Q3')","0.20","0.00" +"International Journal of Knowledge-Based Development","2040-4468","2040-4476","URBAN STUDIES","('ESCI',)","191","1.0","Q3","0.20","0.00" +"Iranian Journal of Mathematical Chemistry","2228-6489","2008-9015","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","271","1.0","Q4","0.20","0.00" +"JOURNAL OF CHEMICAL RESEARCH","1747-5198","2047-6507","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","2,000","1.0","Q4","0.20","95.90" +"Journal of Environmental Engineering and Landscape Management","1648-6897","1822-4199","ENVIRONMENTAL SCIENCES","('SCIE',)","586","1.0","Q4","0.20","97.54" +"Journal of the International Council for Small Business","2643-7015","2643-7023","('BUSINESS', 'MANAGEMENT')","('ESCI', 'ESCI')","133","1.0","('Q4', 'Q4')","0.20","12.24" +"Journal of Usability Studies","1931-3357","1931-3357","COMPUTER SCIENCE, CYBERNETICS","('ESCI',)","914","1.0","Q3","0.20","0.00" +"Plant Root","1881-6754","1881-6754","PLANT SCIENCES","('ESCI',)","86","1.0","Q3","0.20","100.00" +"POLYMER SCIENCE SERIES A","0965-545X","1555-6107","POLYMER SCIENCE","('SCIE',)","1,728","1.0","Q4","0.20","2.36" +"REVESCO-Revista de Estudios Cooperativos","1885-8031","1135-6618","ECONOMICS","('ESCI',)","254","1.0","Q3","0.20","95.92" +"Revue Roumaine des Sciences Techniques-Serie Electrotechnique et Energetique","0035-4066","","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","397","1.0","Q4","0.20","0.00" +"Acta Reumatologica Portuguesa","0303-464X","0303-464X","RHEUMATOLOGY","('SCIE',)","516","1.0","Q4","0.19","0.00" +"E-Balonmano com","1885-7019","1885-7019","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","173","1.0","Q3","0.19","32.84" +"ENVIRONMENTAL & ENGINEERING GEOSCIENCE","1078-7275","1558-9161","('ENGINEERING, ENVIRONMENTAL', 'ENGINEERING, GEOLOGICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","678","1.0","('Q4', 'Q4', 'Q4')","0.19","0.00" +"Gradevinar","0350-2465","1333-9095","ENGINEERING, CIVIL","('SCIE',)","647","1.0","Q4","0.19","76.77" +"International Journal of Global Warming","1758-2083","1758-2091","ENVIRONMENTAL SCIENCES","('SCIE',)","679","1.0","Q4","0.19","0.00" +"SAE International Journal of Fuels and Lubricants","1946-3952","1946-3960","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","927","1.0","Q4","0.19","0.00" +"Chemical Industry & Chemical Engineering Quarterly","1451-9372","2217-7434","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","649","1.0","('Q4', 'Q4')","0.18","100.00" +"Current Breast Cancer Reports","1943-4588","1943-4596","ONCOLOGY","('ESCI',)","371","1.0","Q4","0.18","12.28" +"International Journal on Artificial Intelligence Tools","0218-2130","1793-6349","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","722","1.0","('Q4', 'Q4')","0.18","3.66" +"Investigaciones Turisticas","2174-5609","2174-5609","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","184","1.0","Q3","0.18","98.90" +"Journal of Electrical Engineering-Elektrotechnicky Casopis","1335-3632","1339-309X","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","683","1.0","Q4","0.18","94.44" +"Journal of Research in Applied Linguistics","2345-3303","2588-3887","LINGUISTICS","('ESCI',)","145","1.0","Q2","0.18","0.00" +"Chemistry & Chemical Technology","1996-4196","1996-4196","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","673","1.0","Q4","0.17","0.00" +"Egyptian Journal of Internal Medicine","1110-7782","2090-9098","MEDICINE, GENERAL & INTERNAL","('ESCI',)","224","1.0","Q3","0.17","100.00" +"Estudios Fronterizos","0187-6961","2395-9134","GEOGRAPHY","('ESCI',)","166","1.0","Q3","0.17","100.00" +"Indonesian Journal of Chemistry","1411-9420","1411-9420","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","1,095","1.0","Q4","0.17","95.37" +"International Journal of Surface Science and Engineering","1749-785X","1749-7868","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, COATINGS & FILMS', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","264","1.0","('Q4', 'Q4', 'Q4', 'Q4')","0.17","0.00" +"Journal of Micro and Nano-Manufacturing","2166-0468","2166-0476","ENGINEERING, MANUFACTURING","('ESCI',)","391","1.0","Q4","0.17","0.00" +"JOURNAL OF THE SERBIAN CHEMICAL SOCIETY","0352-5139","0352-5139","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","2,022","1.0","Q4","0.17","98.39" +"NANO","1793-2920","1793-7094","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","1,528","1.0","('Q4', 'Q4', 'Q4')","0.17","0.24" +"Rehabilitation Oncology","2168-3808","2381-2427","ONCOLOGY","('ESCI',)","222","1.0","Q4","0.17","98.67" +"AUSTRALIAN JOURNAL OF CHEMISTRY","0004-9425","1445-0038","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","3,870","1.0","Q4","0.16","39.38" +"Civil Engineering Infrastructures Journal-CEIJ","2322-2093","2423-6691","ENGINEERING, CIVIL","('ESCI',)","181","1.0","Q4","0.16","0.00" +"Cuadernos de Turismo","1139-7861","1989-4635","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","481","1.0","Q3","0.16","98.94" +"Expert Review of Precision Medicine and Drug Development","2380-8993","2380-8993","PHARMACOLOGY & PHARMACY","('ESCI',)","251","1.0","Q4","0.16","17.50" +"GE Portuguese Journal of Gastroenterology","2341-4545","2387-1954","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","449","1.0","Q4","0.16","100.00" +"Global NEST Journal","1790-7632","","ENVIRONMENTAL SCIENCES","('SCIE',)","1,235","1.0","Q4","0.16","0.00" +"HIGH TEMPERATURE","0018-151X","1608-3156","PHYSICS, APPLIED","('SCIE',)","1,894","1.0","Q4","0.16","0.00" +"Journal of Applied Engineering Sciences","2247-3769","2284-7197","ENGINEERING, CIVIL","('ESCI',)","163","1.0","Q4","0.16","100.00" +"Journal of Outdoor Recreation Education and Leadership","2381-0696","1948-5123","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","228","1.0","Q3","0.16","1.54" +"Macroheterocycles","1998-9539","1998-9539","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","490","1.0","Q4","0.16","63.16" +"PROCESS SAFETY PROGRESS","1066-8527","1547-5913","ENGINEERING, CHEMICAL","('SCIE',)","1,131","1.0","Q4","0.16","6.27" +"Chemical Product and Process Modeling","1934-2659","2194-6159","ENGINEERING, CHEMICAL","('ESCI',)","382","1.0","Q4","0.15","0.00" +"Geodynamics","1992-142X","2519-2663","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","479","1.0","Q3","0.15","0.00" +"International Journal of Innovation and Learning","1471-8197","1741-8089","MANAGEMENT","('ESCI',)","327","1.0","Q4","0.15","0.67" +"Ovidius University Annals of Chemistry","1583-2430","2286-038X","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","163","1.0","Q4","0.15","95.52" +"Revue des Composites et des Materiaux Avances-Journal of Composite and Advanced Materials","1169-7954","1958-5799","MATERIALS SCIENCE, COMPOSITES","('ESCI',)","177","1.0","Q4","0.15","22.96" +"Tropics","0917-415X","1882-5729","ECOLOGY","('ESCI',)","297","1.0","Q4","0.15","100.00" +"Digest Journal of Nanomaterials and Biostructures","1842-3582","1842-3582","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","1,987","1.0","('Q4', 'Q4')","0.14","51.74" +"Ekonomia i Srodowisko-Economics and Environment","0867-8898","2300-6420","ENVIRONMENTAL STUDIES","('ESCI',)","180","1.0","Q4","0.14","88.76" +"International Journal of Renewable Energy Research","","1309-0127","ENERGY & FUELS","('ESCI',)","1,863","1.0","Q4","0.14","0.00" +"Enterprise Modelling and Information Systems Architectures-An International Journal","1866-3621","1866-3621","ENGINEERING, INDUSTRIAL","('ESCI',)","78","1.0","Q4","0.13","0.00" +"Heart and Mind","2468-6476","2468-6484","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PSYCHIATRY')","('ESCI', 'ESCI')","110","1.0","('Q4', 'Q4')","0.13","100.00" +"Nanotechnologies in Construction-A Scientific Internet-Journal","2075-8545","2075-8545","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","198","1.0","Q4","0.13","98.45" +"ENGINEERING ECONOMIST","0013-791X","1547-2701","('BUSINESS', 'ENGINEERING, INDUSTRIAL', 'MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","327","1.0","('Q4', 'Q4', 'Q4', 'Q4')","0.12","9.09" +"International Journal of Management Studies","2232-1608","2180-2467","MANAGEMENT","('ESCI',)","187","1.0","Q4","0.12","69.05" +"Mechatronic Systems and Control","2561-1771","2561-178X","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","133","1.0","Q4","0.12","0.00" +"Journal of Environmental Engineering and Science","1496-2551","1496-256X","ENGINEERING, ENVIRONMENTAL","('ESCI',)","512","1.0","Q4","0.09","2.67" +"PROGRESS IN CHEMISTRY","1005-281X","1005-281X","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","1,591","1.0","Q4","0.09","0.00" +"CLASSICAL ANTIQUITY","0278-6656","","CLASSICS","('AHCI',)","624","0.9","","4.49","0.00" +"COLLEGE ENGLISH","0010-0994","2161-8178","LITERATURE","('AHCI',)","697","0.9","","4.37","0.00" +"Economic History of Developing Regions","2078-0389","2078-0397","HISTORY","('ESCI',)","196","0.9","Q1","2.33","36.54" +"Studies in American Humor","2333-9934","0095-280X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","95","0.9","","2.14","0.00" +"RELIGION","0048-721X","1096-1151","RELIGION","('AHCI',)","756","0.9","","2.11","45.35" +"Historical Social Research-Historische Sozialforschung","0172-6404","","('HISTORY', 'HISTORY OF SOCIAL SCIENCES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI', 'SSCI')","1,135","0.9","('Q1', 'Q2', 'Q3')","1.98","0.00" +"International Journal of Community Music","1752-6299","1752-6302","MUSIC","('AHCI',)","333","0.9","","1.90","1.85" +"Critical Studies in Television","1749-6020","1749-6039","FILM, RADIO, TELEVISION","('AHCI',)","242","0.9","","1.85","37.78" +"MEDICAL PROBLEMS OF PERFORMING ARTISTS","0885-1158","1938-2766","('MEDICINE, GENERAL & INTERNAL', 'MUSIC')","('SCIE', 'AHCI')","864","0.9","('Q3', 'N/A')","1.81","6.90" +"Journal of Islamic Studies","0955-2340","1471-6917","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","282","0.9","","1.66","7.14" +"South Asian History and Culture","1947-2498","1947-2501","ASIAN STUDIES","('ESCI',)","239","0.9","","1.60","15.38" +"Philosophical Explorations","1386-9795","1741-5918","PHILOSOPHY","('AHCI',)","481","0.9","","1.56","19.75" +"Rock Art Research","0813-0426","0813-0426","('ARCHAEOLOGY', 'ART')","('AHCI', 'AHCI')","285","0.9","('N/A', 'N/A')","1.54","0.00" +"Creative Industries Journal","1751-0694","1751-0708","('HUMANITIES, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","247","0.9","('N/A', 'Q3')","1.47","27.36" +"Res Publica-A Journal of Moral Legal and Political Philosophy","1356-4765","1572-8692","PHILOSOPHY","('AHCI',)","430","0.9","","1.45","51.26" +"JOURNAL OF LEGAL STUDIES","0047-2530","1537-5366","LAW","('SSCI',)","1,668","0.9","Q2","1.29","0.00" +"Informal Logic","0824-2577","0824-2577","PHILOSOPHY","('AHCI',)","502","0.9","","1.28","1.47" +"Review of Symbolic Logic","1755-0203","1755-0211","('LOGIC', 'MATHEMATICS', 'MATHEMATICS, APPLIED', 'PHILOSOPHY')","('SCIE', 'SCIE', 'SCIE', 'AHCI')","521","0.9","('Q1', 'Q2', 'Q3', 'N/A')","1.28","22.01" +"British Journal of Special Education","0952-3383","1467-8578","EDUCATION, SPECIAL","('ESCI',)","544","0.9","Q3","1.24","34.12" +"Survey Research Methods","1864-3361","1864-3361","SOCIAL SCIENCES, MATHEMATICAL METHODS","('SSCI',)","1,099","0.9","Q4","1.23","0.00" +"Journal of Eastern African Studies","1753-1055","1753-1063","AREA STUDIES","('SSCI',)","858","0.9","Q2","1.22","42.22" +"JOURNAL OF ALGEBRAIC GEOMETRY","1056-3911","1534-7486","MATHEMATICS","('SCIE',)","1,032","0.9","Q2","1.20","79.17" +"Ancient Mesoamerica","0956-5361","1469-1787","ARCHAEOLOGY","('AHCI',)","1,014","0.9","","1.15","39.26" +"URBAN MORPHOLOGY","1027-4278","1027-4278","ARCHITECTURE","('AHCI',)","346","0.9","","1.13","0.00" +"Islamiyyat-The International Journal of Islamic Studies","0126-5636","0126-5636","RELIGION","('ESCI',)","208","0.9","","1.12","0.00" +"Journal of the Indian Ocean Region","1948-0881","1948-108X","AREA STUDIES","('ESCI',)","232","0.9","Q2","1.11","4.44" +"Archaeological Research in Asia","2352-2267","2352-2275","ARCHAEOLOGY","('AHCI',)","400","0.9","","1.09","20.92" +"Journal of Mathematical Logic","0219-0613","1793-6691","('LOGIC', 'MATHEMATICS')","('SCIE', 'SCIE')","226","0.9","('Q1', 'Q2')","1.08","1.12" +"SEMIOTICA","0037-1998","1613-3692","('HUMANITIES, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('AHCI', 'SSCI')","1,385","0.9","('N/A', 'Q3')","1.07","10.29" +"JOURNAL OF COMBINATORIAL THEORY SERIES A","0097-3165","1096-0899","MATHEMATICS","('SCIE',)","3,438","0.9","Q2","1.03","23.77" +"STUDIES IN PHILOSOPHY AND EDUCATION","0039-3746","1573-191X","('EDUCATION & EDUCATIONAL RESEARCH', 'PHILOSOPHY')","('SSCI', 'AHCI')","837","0.9","('Q3', 'N/A')","1.03","39.81" +"Gender and Language","1747-6321","1747-633X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'WOMENS STUDIES')","('AHCI', 'SSCI', 'SSCI')","252","0.9","('N/A', 'Q2', 'Q3')","1.02","2.44" +"Teaching Exceptional Children","0040-0599","2163-5684","EDUCATION, SPECIAL","('ESCI',)","844","0.9","Q3","1.01","0.00" +"Juridical Tribune-Tribuna Juridica","2247-7195","2248-0382","LAW","('ESCI',)","163","0.9","Q2","0.99","78.79" +"Mathematica Slovaca","0139-9918","1337-2211","MATHEMATICS","('SCIE',)","1,243","0.9","Q2","0.99","12.20" +"AMERICAN JOURNAL OF ARCHAEOLOGY","0002-9114","1939-828X","ARCHAEOLOGY","('AHCI',)","1,377","0.9","","0.98","0.00" +"Journal of Ethics","1382-4554","1572-8609","('ETHICS', 'PHILOSOPHY')","('ESCI', 'ESCI')","502","0.9","('Q3', 'N/A')","0.96","42.20" +"INTERNATIONAL MATHEMATICS RESEARCH NOTICES","1073-7928","1687-0247","MATHEMATICS","('SCIE',)","5,920","0.9","Q2","0.95","8.36" +"CANADIAN JOURNAL OF AFRICAN STUDIES","0008-3968","1923-3051","AREA STUDIES","('ESCI',)","373","0.9","Q2","0.93","9.21" +"Anthropological Forum","0066-4677","1469-2902","ANTHROPOLOGY","('SSCI',)","395","0.9","Q3","0.92","41.54" +"Journal of International Dispute Settlement","2040-3593","2040-3585","LAW","('SSCI',)","362","0.9","Q2","0.91","26.32" +"RUSSIAN LINGUISTICS","0304-3487","1572-8714","LANGUAGE & LINGUISTICS","('AHCI',)","162","0.9","","0.91","44.68" +"Anuario De Psicologia Juridica","1133-0740","2174-0542","('LAW', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","160","0.9","('Q2', 'Q3')","0.90","100.00" +"Languages","","2226-471X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","779","0.9","('N/A', 'Q2')","0.90","99.74" +"Natural Language Semantics","0925-854X","1572-865X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","696","0.9","('N/A', 'Q2')","0.90","30.23" +"Journal of African Cultural Studies","1369-6815","1469-9346","CULTURAL STUDIES","('AHCI', 'SSCI')","348","0.9","Q2","0.89","17.71" +"Rural Special Education Quarterly","8756-8705","2168-8605","EDUCATION, SPECIAL","('ESCI',)","360","0.9","Q3","0.89","3.64" +"Emu-Austral Ornithology","0158-4197","1448-5540","ORNITHOLOGY","('SCIE',)","1,218","0.9","Q3","0.88","14.71" +"Contrastive Pragmatics","2666-0385","2666-0393","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","46","0.9","('N/A', 'Q2')","0.87","80.95" +"English Language & Linguistics","1360-6743","1469-4379","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","461","0.9","('N/A', 'Q2')","0.87","58.82" +"KANT-STUDIEN","0022-8877","1613-1134","PHILOSOPHY","('AHCI',)","437","0.9","","0.87","13.51" +"Rendiconti del Circolo Matematico di Palermo","0009-725X","1973-4409","MATHEMATICS","('ESCI',)","1,082","0.9","Q2","0.87","12.05" +"Arabian Journal of Mathematics","2193-5343","2193-5351","MATHEMATICS","('ESCI',)","285","0.9","Q2","0.86","100.00" +"Asian Ethnicity","1463-1369","1469-2953","ETHNIC STUDIES","('ESCI',)","489","0.9","Q3","0.86","8.26" +"Estonian Journal of Archaeology","1406-2933","1736-7484","ARCHAEOLOGY","('AHCI',)","100","0.9","","0.86","100.00" +"MATHEMATICAL INEQUALITIES & APPLICATIONS","1331-4343","1331-4343","MATHEMATICS","('SCIE',)","1,087","0.9","Q2","0.86","99.01" +"Afrika Matematika","1012-9405","2190-7668","MATHEMATICS","('ESCI',)","767","0.9","Q2","0.85","4.10" +"Algebra & Number Theory","1937-0652","1944-7833","MATHEMATICS","('SCIE',)","968","0.9","Q2","0.85","28.57" +"Australian Journal of Learning Difficulties","1940-4158","1940-4166","EDUCATION, SPECIAL","('ESCI',)","194","0.9","Q3","0.85","25.00" +"Body & Society","1357-034X","1460-3632","SOCIOLOGY","('SSCI',)","1,304","0.9","Q3","0.85","48.89" +"Journal of Inverse and Ill-Posed Problems","0928-0219","1569-3945","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","857","0.9","('Q2', 'Q3')","0.85","4.98" +"LINEAR & MULTILINEAR ALGEBRA","0308-1087","1563-5139","MATHEMATICS","('SCIE',)","3,006","0.9","Q2","0.85","3.03" +"Analysis and Geometry in Metric Spaces","2299-3274","2299-3274","MATHEMATICS","('SCIE',)","164","0.9","Q2","0.84","100.00" +"VIAL-Vigo International Journal of Applied Linguistics","1697-0381","","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","92","0.9","('N/A', 'Q2')","0.84","0.00" +"American Journal of Cultural Sociology","2049-7113","2049-7121","SOCIOLOGY","('SSCI',)","398","0.9","Q3","0.83","17.11" +"INTERNATIONAL JOURNAL FOR THE SEMIOTICS OF LAW-REVUE INTERNATIONALE DE SEMIOTIQUE JURIDIQUE","0952-8059","1572-8722","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","425","0.9","Q3","0.81","48.67" +"FEMINIST REVIEW","0141-7789","1466-4380","WOMENS STUDIES","('SSCI',)","1,359","0.9","Q3","0.80","24.62" +"Fixed Point Theory","1583-5022","2066-9208","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","833","0.9","('Q2', 'Q3')","0.80","72.85" +"Annales Fennici Mathematici","2737-0690","2737-114X","MATHEMATICS","('SCIE',)","123","0.9","Q2","0.79","90.80" +"JOURNAL OF APPROXIMATION THEORY","0021-9045","1096-0430","MATHEMATICS","('SCIE',)","2,283","0.9","Q2","0.78","19.43" +"JOURNAL OF GRAPH THEORY","0364-9024","1097-0118","MATHEMATICS","('SCIE',)","2,475","0.9","Q2","0.78","19.41" +"Journal of Human Rights Practice","1757-9619","1757-9627","('INTERNATIONAL RELATIONS', 'LAW', 'POLITICAL SCIENCE')","('ESCI', 'ESCI', 'ESCI')","522","0.9","('Q3', 'Q2', 'Q3')","0.77","26.40" +"Australian Review of Applied Linguistics","0155-0640","1833-7139","LINGUISTICS","('ESCI',)","301","0.9","Q2","0.76","5.26" +"Climate Law","1878-6553","1878-6561","('ENVIRONMENTAL STUDIES', 'LAW')","('ESCI', 'ESCI')","186","0.9","('Q4', 'Q2')","0.76","40.00" +"Journal of Pseudo-Differential Operators and Applications","1662-9981","1662-999X","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","399","0.9","('Q2', 'Q3')","0.76","7.58" +"Moral Philosophy and Politics","2194-5616","2194-5624","('ETHICS', 'PHILOSOPHY', 'POLITICAL SCIENCE')","('ESCI', 'ESCI', 'ESCI')","115","0.9","('Q3', 'N/A', 'Q3')","0.76","32.81" +"Interaction Studies","1572-0373","1572-0381","('COMMUNICATION', 'LINGUISTICS')","('SSCI', 'SSCI')","611","0.9","('Q3', 'Q2')","0.75","16.33" +"JOURNAL OF ENGLISH LINGUISTICS","0075-4242","1552-5457","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","422","0.9","('N/A', 'Q2')","0.75","35.00" +"NARRATIVE INQUIRY","1387-6740","1569-9935","('COMMUNICATION', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","607","0.9","('Q3', 'N/A', 'Q2')","0.75","8.70" +"Open Archaeology","2300-6560","2300-6560","ARCHAEOLOGY","('AHCI',)","348","0.9","","0.75","95.50" +"Cultural Studies-Critical Methodologies","1532-7086","1552-356X","CULTURAL STUDIES","('AHCI', 'SSCI')","899","0.9","Q2","0.74","25.57" +"International Forum of Psychoanalysis","0803-706X","1651-2324","PSYCHOLOGY, PSYCHOANALYSIS","('ESCI',)","174","0.9","Q2","0.74","8.96" +"BOLETIN DE LA SOCIEDAD MATEMATICA MEXICANA","1405-213X","2296-4495","MATHEMATICS","('ESCI',)","467","0.9","Q2","0.73","11.29" +"INTERNATIONAL REVIEW OF LAW AND ECONOMICS","0144-8188","1873-6394","('ECONOMICS', 'LAW')","('SSCI', 'SSCI')","971","0.9","('Q3', 'Q2')","0.73","24.80" +"Journal of Elliptic and Parabolic Equations","2296-9020","2296-9039","MATHEMATICS","('ESCI',)","174","0.9","Q2","0.73","10.13" +"Miskolc Mathematical Notes","1787-2405","1787-2413","MATHEMATICS","('SCIE',)","702","0.9","Q2","0.73","80.90" +"Capital Markets Law Journal","1750-7219","1750-7227","LAW","('ESCI',)","154","0.9","Q2","0.71","21.52" +"Child Abuse Review","0952-9136","1099-0852","('FAMILY STUDIES', 'SOCIAL WORK')","('SSCI', 'SSCI')","1,118","0.9","('Q3', 'Q3')","0.71","36.43" +"Documenta Mathematica","1431-0643","1431-0643","MATHEMATICS","('SCIE',)","903","0.9","Q2","0.71","24.22" +"Glossa-A Journal of General Linguistics","","2397-1835","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","919","0.9","('N/A', 'Q2')","0.71","97.06" +"COMMUNICATION EDUCATION","0363-4523","1479-5795","('COMMUNICATION', 'EDUCATION & EDUCATIONAL RESEARCH')","('ESCI', 'ESCI')","1,616","0.9","('Q3', 'Q3')","0.70","0.00" +"Australian Journal of Indigenous Education","1326-0111","2049-7784","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","423","0.9","Q3","0.69","58.24" +"BULLETIN OF THE BRAZILIAN MATHEMATICAL SOCIETY","1678-7544","1678-7714","MATHEMATICS","('SCIE',)","507","0.9","Q2","0.68","10.49" +"Developing World Bioethics","1471-8731","1471-8847","('ETHICS', 'MEDICAL ETHICS')","('SSCI', 'SCIE')","474","0.9","('Q3', 'Q3')","0.68","27.08" +"Foundations of Science","1233-1821","1572-8471","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE')","538","0.9","Q2","0.68","47.19" +"Epijournal de Geometrie Algebrique","2491-6765","2491-6765","MATHEMATICS","('ESCI',)","106","0.9","Q2","0.67","2.53" +"AUSTRALIAN MAMMALOGY","0310-0049","1836-7402","ZOOLOGY","('SCIE',)","690","0.9","Q3","0.65","9.57" +"EC Tax Review","0928-2750","1875-8363","LAW","('ESCI',)","200","0.9","Q2","0.65","0.00" +"Historical Materialism-Research in Critical Marxist Theory","1465-4466","1569-206X","('PHILOSOPHY', 'POLITICAL SCIENCE')","('AHCI', 'SSCI')","586","0.9","('N/A', 'Q3')","0.65","10.58" +"Journal fur Mathematik-Didaktik","0173-5322","1869-2699","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","210","0.9","Q3","0.64","92.68" +"JOURNAL OF MATERIAL CULTURE","1359-1835","1460-3586","('ANTHROPOLOGY', 'ARCHAEOLOGY', 'CULTURAL STUDIES')","('SSCI', 'AHCI', 'AHCI, SSCI')","815","0.9","('Q3', 'N/A', 'Q2')","0.64","35.62" +"Journal of Transplantation","2090-0007","2090-0015","SURGERY","('ESCI',)","295","0.9","Q3","0.64","100.00" +"AUSTRALIAN FORESTRY","0004-9158","2325-6087","FORESTRY","('SCIE',)","803","0.9","Q3","0.63","17.31" +"ESP Today-Journal of English for Specific Purposes at Tertiary Level","2334-9050","2334-9050","LINGUISTICS","('ESCI',)","129","0.9","Q2","0.63","93.48" +"Hague Journal of Diplomacy","1871-1901","1871-191X","INTERNATIONAL RELATIONS","('ESCI',)","453","0.9","Q3","0.63","21.79" +"Porta Linguarum","1697-7467","","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","379","0.9","('Q3', 'N/A', 'Q2')","0.63","94.04" +"Criminal Law Forum","1046-8374","1572-9850","('CRIMINOLOGY & PENOLOGY', 'LAW')","('ESCI', 'ESCI')","211","0.9","('Q3', 'Q2')","0.62","43.90" +"INTERNATIONAL REVIEW OF HYDROBIOLOGY","1434-2944","1522-2632","MARINE & FRESHWATER BIOLOGY","('SCIE',)","1,028","0.9","Q3","0.62","36.67" +"Names-A Journal of Onomastics","0027-7738","1756-2279","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","288","0.9","('N/A', 'Q2')","0.62","91.84" +"Qualitative Research in Education","2014-6418","2014-6418","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","141","0.9","Q3","0.62","96.97" +"SIAM JOURNAL ON DISCRETE MATHEMATICS","0895-4801","1095-7146","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,500","0.9","('Q2', 'Q3')","0.62","0.98" +"Aequationes Mathematicae","0001-9054","1420-8903","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,323","0.9","('Q2', 'Q3')","0.61","36.65" +"Iberica","1139-7241","2340-2784","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","329","0.9","('N/A', 'Q2')","0.61","52.63" +"International Journal of Mobile and Blended Learning","1941-8647","1941-8655","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","192","0.9","Q3","0.61","93.44" +"JOURNAL OF FORAMINIFERAL RESEARCH","0096-1191","","PALEONTOLOGY","('SCIE',)","1,505","0.9","Q4","0.60","0.00" +"Symmetry Integrability and Geometry-Methods and Applications","1815-0659","","('MATHEMATICS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","1,342","0.9","('Q2', 'Q4')","0.60","99.38" +"International Journal of Law Policy and the Family","1360-9939","1464-3707","('FAMILY STUDIES', 'LAW')","('SSCI', 'SSCI')","334","0.9","('Q3', 'Q2')","0.59","26.39" +"ZOOLOGICAL SCIENCE","0289-0003","0289-0003","ZOOLOGY","('SCIE',)","2,329","0.9","Q3","0.59","0.56" +"EJournal of Tax Research","1448-2398","1448-2398","LAW","('ESCI',)","169","0.9","Q2","0.58","0.00" +"QUARTERLY OF APPLIED MATHEMATICS","0033-569X","1552-4485","MATHEMATICS, APPLIED","('SCIE',)","3,184","0.9","Q3","0.58","71.17" +"ADVANCES IN APPLIED PROBABILITY","0001-8678","1475-6064","STATISTICS & PROBABILITY","('SCIE',)","2,092","0.9","Q3","0.57","0.00" +"Hong Kong Physiotherapy Journal","1013-7025","1876-441X","REHABILITATION","('ESCI',)","273","0.9","Q4","0.57","78.18" +"MEDICAL HISTORY","0025-7273","2048-8343","('HEALTH CARE SCIENCES & SERVICES', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SCIE', 'AHCI, SCIE, SSCI')","903","0.9","('Q4', 'Q2')","0.57","50.85" +"Open Praxis","2304-070X","2304-070X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","471","0.9","Q3","0.57","80.77" +"Journal of Student Affairs Research and Practice","1949-6591","1949-6605","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","780","0.9","Q3","0.56","2.99" +"Metaphor and the Social World","2210-4070","2210-4097","LINGUISTICS","('ESCI',)","203","0.9","Q2","0.56","8.33" +"ZOOSYSTEMA","1280-9551","1638-9387","ZOOLOGY","('SCIE',)","512","0.9","Q3","0.56","0.00" +"ACAROLOGIA","0044-586X","2107-7207","ENTOMOLOGY","('SCIE',)","1,508","0.9","Q3","0.55","92.05" +"Anthropology Southern Africa","2332-3256","2332-3264","ANTHROPOLOGY","('SSCI',)","198","0.9","Q3","0.55","6.52" +"Small Wars and Insurgencies","0959-2318","1743-9558","INTERNATIONAL RELATIONS","('ESCI',)","697","0.9","Q3","0.55","16.87" +"GEOCHEMICAL TRANSACTIONS","1467-4866","1467-4866","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","610","0.9","Q4","0.54","100.00" +"Journal of Communication Inquiry","0196-8599","1552-4612","COMMUNICATION","('ESCI',)","589","0.9","Q3","0.54","15.00" +"JOURNAL OF COMPUTATIONAL MATHEMATICS","0254-9409","1991-7139","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,060","0.9","('Q2', 'Q3')","0.54","1.41" +"JOURNAL OF CRIMINAL JUSTICE EDUCATION","1051-1253","1745-9117","CRIMINOLOGY & PENOLOGY","('ESCI',)","695","0.9","Q3","0.54","8.15" +"Journal of Information Technology Education-Innovations in Practice","2165-3151","2165-316X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","175","0.9","Q3","0.54","100.00" +"Journal of Integral Equations and Applications","0897-3962","1938-2626","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","483","0.9","('Q2', 'Q3')","0.54","0.00" +"NORA-Nordic Journal of Feminist and Gender Research","0803-8740","1502-394X","WOMENS STUDIES","('ESCI',)","455","0.9","Q3","0.54","74.32" +"Pastoral Care in Education","0264-3944","1468-0122","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","393","0.9","Q3","0.54","45.45" +"JOURNAL OF PEDIATRIC ORTHOPAEDICS-PART B","1060-152X","1473-5865","('ORTHOPEDICS', 'PEDIATRICS')","('SCIE', 'SCIE')","1,963","0.9","('Q4', 'Q3')","0.53","5.77" +"Music Therapy Perspectives","0734-6875","2053-7387","REHABILITATION","('ESCI',)","370","0.9","Q4","0.53","8.24" +"Adult Learning","1045-1595","2162-4070","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","314","0.9","Q3","0.52","7.35" +"COMBINATORICS PROBABILITY & COMPUTING","0963-5483","1469-2163","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","1,353","0.9","('Q3', 'Q2', 'Q3')","0.52","35.23" +"International Journal of Social Psychology","0213-4748","1579-3680","PSYCHOLOGY, SOCIAL","('SSCI',)","125","0.9","Q4","0.52","8.93" +"Media Literacy and Academic Research","2585-8726","2585-9188","COMMUNICATION","('ESCI',)","68","0.9","Q3","0.52","0.00" +"OSIRIS","0369-7827","1933-8287","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","818","0.9","Q2","0.52","0.00" +"RANDOM STRUCTURES & ALGORITHMS","1042-9832","1098-2418","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","1,820","0.9","('Q4', 'Q2', 'Q3')","0.52","24.08" +"Adoption Quarterly","1092-6755","1544-452X","SOCIAL WORK","('ESCI',)","452","0.9","Q3","0.51","8.97" +"Andean Geology","0718-7106","0718-7106","GEOLOGY","('SCIE',)","484","0.9","Q3","0.51","86.76" +"INTERNATIONAL JOURNAL OF ACAROLOGY","0164-7954","1945-3892","ENTOMOLOGY","('SCIE',)","1,265","0.9","Q3","0.51","3.45" +"LATIN AMERICAN PERSPECTIVES","0094-582X","1552-678X","('AREA STUDIES', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","1,346","0.9","('Q2', 'Q3')","0.51","9.64" +"PRISON JOURNAL","0032-8855","1552-7522","CRIMINOLOGY & PENOLOGY","('SSCI',)","1,054","0.9","Q3","0.51","5.50" +"TRaNS-Trans-Regional and -National Studies of Southeast Asia","2051-364X","2051-3658","AREA STUDIES","('ESCI',)","232","0.9","Q2","0.51","17.54" +"JOURNAL OF LATINOS AND EDUCATION","1534-8431","1532-771X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","677","0.9","Q3","0.50","4.82" +"Journal of Media Ethics","2373-6992","2373-700X","('COMMUNICATION', 'ETHICS')","('SSCI', 'SSCI')","423","0.9","('Q3', 'Q3')","0.50","15.00" +"Journal on Efficiency and Responsibility in Education and Science","2336-2375","1803-1617","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","137","0.9","Q3","0.50","98.63" +"Nursing Education Perspectives","1536-5026","1943-4685","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,808","0.9","Q3","0.50","1.70" +"Stratigraphy","1547-139X","2331-656X","('GEOLOGY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","381","0.9","('Q3', 'Q4')","0.50","0.00" +"AMERICAN JOURNAL OF DENTISTRY","0894-8275","","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,664","0.9","Q3","0.49","0.00" +"FUSION SCIENCE AND TECHNOLOGY","1536-1055","1943-7641","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","2,513","0.9","Q3","0.49","10.65" +"GEOLOGICAL QUARTERLY","1641-7291","2082-5099","GEOLOGY","('SCIE',)","1,114","0.9","Q3","0.49","68.45" +"Nuclear Technology & Radiation Protection","1451-3994","1452-8185","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","322","0.9","Q3","0.49","99.12" +"Partecipazione e Conflitto","1972-7623","2035-6609","POLITICAL SCIENCE","('ESCI',)","376","0.9","Q3","0.49","0.00" +"Turkish Journal of Education","2147-2858","2147-2858","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","85","0.9","Q3","0.49","100.00" +"BULLETIN OF THE HISTORY OF MEDICINE","0007-5140","1086-3176","('HEALTH CARE SCIENCES & SERVICES', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SCIE', 'AHCI, SCIE, SSCI')","1,148","0.9","('Q4', 'Q2')","0.48","1.75" +"Central and Eastern European Migration Review","","2300-1682","DEMOGRAPHY","('ESCI',)","164","0.9","Q3","0.48","74.55" +"Education 3-13","0300-4279","1475-7575","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","978","0.9","Q3","0.48","28.32" +"NEW ZEALAND JOURNAL OF ZOOLOGY","0301-4223","1175-8821","ZOOLOGY","('SCIE',)","968","0.9","Q3","0.48","39.19" +"Terminology","0929-9971","1569-9994","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","191","0.9","('N/A', 'Q2')","0.48","8.82" +"ACM Transactions on Algorithms","1549-6325","1549-6333","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","987","0.9","('Q3', 'Q3')","0.47","0.88" +"CANADIAN JOURNAL OF CRIMINOLOGY AND CRIMINAL JUSTICE","1707-7753","1911-0219","CRIMINOLOGY & PENOLOGY","('SSCI',)","563","0.9","Q3","0.47","0.00" +"COMMUNITY DENTAL HEALTH","0265-539X","0265-539X","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","1,245","0.9","Q3","0.47","0.00" +"International Journal of Esthetic Dentistry","2198-591X","2198-591X","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","685","0.9","Q3","0.47","0.00" +"International Journal of Knowledge and Learning","1741-1009","1741-1017","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","134","0.9","Q3","0.47","0.00" +"Journal of Student Financial Aid","0884-9153","0884-9153","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","167","0.9","Q3","0.47","2.56" +"MATHEMATICAL PHYSICS ANALYSIS AND GEOMETRY","1385-0172","1572-9656","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","452","0.9","('Q3', 'Q4')","0.47","29.90" +"Tuning Journal for Higher Education","2340-8170","2386-3137","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","99","0.9","Q3","0.47","98.25" +"Alter-European Journal of Disability Research","1875-0672","1875-0680","REHABILITATION","('ESCI',)","344","0.9","Q4","0.46","14.29" +"ASIAN JOURNAL OF WOMENS STUDIES","1225-9276","2377-004X","WOMENS STUDIES","('SSCI',)","351","0.9","Q3","0.46","7.79" +"Biodemography and Social Biology","1948-5565","1948-5573","('DEMOGRAPHY', 'SOCIAL SCIENCES, BIOMEDICAL', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","329","0.9","('Q3', 'Q4', 'Q3')","0.46","7.69" +"NEUES JAHRBUCH FUR GEOLOGIE UND PALAONTOLOGIE-ABHANDLUNGEN","0077-7749","0077-7749","PALEONTOLOGY","('SCIE',)","1,401","0.9","Q4","0.46","0.00" +"REPRESENTATIONS","0734-6018","1533-855X","CULTURAL STUDIES","('AHCI', 'SSCI')","1,371","0.9","Q2","0.46","1.23" +"Acta Mathematicae Applicatae Sinica-English Series","0168-9673","1618-3932","MATHEMATICS, APPLIED","('SCIE',)","777","0.9","Q3","0.45","0.00" +"Acta Otorrinolaringologica Espanola","0001-6519","1988-3013","OTORHINOLARYNGOLOGY","('ESCI',)","747","0.9","Q3","0.45","0.00" +"African Geographical Review","1937-6812","2163-2642","GEOGRAPHY","('ESCI',)","399","0.9","Q3","0.45","3.28" +"Archaeological Journal","0066-5983","2373-2288","ARCHAEOLOGY","('ESCI',)","222","0.9","","0.45","36.36" +"Cambridge Journal of Anthropology","0305-7674","2047-7716","ANTHROPOLOGY","('ESCI',)","357","0.9","Q3","0.45","94.29" +"Hand Surgery & Rehabilitation","2468-1229","2468-1210","('ORTHOPEDICS', 'SURGERY')","('SCIE', 'SCIE')","734","0.9","('Q4', 'Q3')","0.45","22.68" +"JOURNAL OF ADOLESCENT & ADULT LITERACY","1081-3004","1936-2706","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,293","0.9","Q3","0.45","11.94" +"Journal of Early Childhood Teacher Education","1090-1027","1745-5642","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","525","0.9","Q3","0.45","3.45" +"Journal of the South African Veterinary Association","1019-9128","2224-9435","VETERINARY SCIENCES","('SCIE',)","1,031","0.9","Q3","0.45","29.31" +"Mathematics and Financial Economics","1862-9679","1862-9660","('BUSINESS, FINANCE', 'ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI', 'SCIE', 'SSCI')","361","0.9","('Q3', 'Q3', 'Q4', 'Q4')","0.45","35.38" +"Mineral Processing and Extractive Metallurgy-Transactions of the Institutions of Mining and Metallurgy","2572-6641","2572-665X","MINING & MINERAL PROCESSING","('ESCI',)","221","0.9","Q3","0.45","4.71" +"Politikon","0258-9346","1470-1014","POLITICAL SCIENCE","('SSCI',)","334","0.9","Q3","0.45","7.50" +"Psychology of Leaders and Leadership","2769-6863","2769-6898","PSYCHOLOGY, APPLIED","('ESCI',)","13","0.9","Q4","0.45","0.00" +"Special Care in Dentistry","0275-1879","1754-4505","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","1,395","0.9","Q3","0.45","16.52" +"CHELONIAN CONSERVATION AND BIOLOGY","1071-8443","1943-3956","ZOOLOGY","('SCIE',)","1,049","0.9","Q3","0.44","1.09" +"Chinese Journal of Dental Research","1462-6446","1867-5646","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","450","0.9","Q3","0.44","0.00" +"Computational and Mathematical Methods","","2577-7408","MATHEMATICS, APPLIED","('ESCI',)","186","0.9","Q3","0.44","81.76" +"Geologos","1426-8981","2080-6574","GEOLOGY","('ESCI',)","228","0.9","Q3","0.44","100.00" +"Journal of Family Social Work","1052-2158","1540-4072","SOCIAL WORK","('ESCI',)","509","0.9","Q3","0.44","6.45" +"Journal of Political Science Education","1551-2169","1551-2177","POLITICAL SCIENCE","('ESCI',)","771","0.9","Q3","0.44","5.86" +"Journal of Poverty","1087-5549","1540-7608","SOCIAL WORK","('ESCI',)","501","0.9","Q3","0.44","5.08" +"Open Veterinary Journal","2226-4485","2218-6050","VETERINARY SCIENCES","('ESCI',)","693","0.9","Q3","0.44","96.48" +"Physiotherapy Canada","0300-0508","1708-8313","REHABILITATION","('SCIE',)","1,198","0.9","Q4","0.44","0.00" +"Profile-Issues in Teachers Professional Development","1657-0790","2256-5760","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","336","0.9","Q3","0.44","100.00" +"Stats","","2571-905X","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'STATISTICS & PROBABILITY')","('ESCI', 'ESCI')","239","0.9","('Q4', 'Q3')","0.44","100.00" +"TURKIYE ENTOMOLOJI DERGISI-TURKISH JOURNAL OF ENTOMOLOGY","1010-6960","2536-491X","ENTOMOLOGY","('SCIE',)","658","0.9","Q3","0.44","99.19" +"Acta Facultatis Xylologiae Zvolen","1336-3824","1336-3824","MATERIALS SCIENCE, PAPER & WOOD","('ESCI',)","202","0.9","Q3","0.43","0.00" +"Critical Review of International Social and Political Philosophy","1369-8230","1743-8772","POLITICAL SCIENCE","('ESCI',)","890","0.9","Q3","0.43","28.38" +"International Journal of Computer Mathematics- Computer Systems Theory","2379-9927","2379-9935","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS')","('ESCI', 'ESCI')","74","0.9","('Q3', 'Q2')","0.43","1.59" +"International Journal of Training Research","1448-0220","2204-0544","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","198","0.9","Q3","0.43","14.81" +"Lexikos","1684-4904","2224-0039","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","200","0.9","('N/A', 'Q2')","0.43","85.71" +"Ophthalmic Surgery Lasers & Imaging Retina","2325-8160","2325-8179","('OPHTHALMOLOGY', 'SURGERY')","('SCIE', 'SCIE')","2,501","0.9","('Q4', 'Q3')","0.43","4.49" +"ALGORITHMICA","0178-4617","1432-0541","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,787","0.9","('Q4', 'Q3')","0.42","39.29" +"Australian Journalism Review","0810-2686","2517-620X","COMMUNICATION","('ESCI',)","22","0.9","Q3","0.42","0.00" +"Croatian International Relations Review","","1848-5782","INTERNATIONAL RELATIONS","('ESCI',)","98","0.9","Q3","0.42","0.00" +"Discrete Optimization","1572-5286","1873-636X","('MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","657","0.9","('Q3', 'Q4')","0.42","25.32" +"Estonian Journal of Earth Sciences","1736-4728","1736-7557","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","340","0.9","Q4","0.42","98.61" +"JOURNAL OF LIMNOLOGY","1129-5767","1723-8633","LIMNOLOGY","('SCIE',)","1,354","0.9","Q4","0.42","98.95" +"Journal of the Korean Association of Oral and Maxillofacial Surgeons","2234-7550","2234-5930","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","826","0.9","Q3","0.42","99.40" +"NORDIC PULP & PAPER RESEARCH JOURNAL","0283-2631","2000-0669","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","1,509","0.9","Q3","0.42","17.46" +"Random Matrices-Theory and Applications","2010-3263","2010-3271","('PHYSICS, MATHEMATICAL', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","309","0.9","('Q4', 'Q3')","0.42","1.77" +"RUSSIAN JOURNAL OF HERPETOLOGY","1026-2296","1026-2296","ZOOLOGY","('SCIE',)","537","0.9","Q3","0.42","0.00" +"Zeitschrift fur Kristallographie-Crystalline Materials","2194-4946","2196-7105","CRYSTALLOGRAPHY","('SCIE',)","5,407","0.9","Q3","0.42","8.20" +"Advances in Computational Design, An International Journal","2383-8477","2466-0523","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","179","0.9","Q4","0.41","0.00" +"Business Management and Economics Engineering","2669-2481","2669-249X","('BUSINESS', 'ECONOMICS', 'MANAGEMENT')","('ESCI', 'ESCI', 'ESCI')","51","0.9","('Q4', 'Q3', 'Q4')","0.41","100.00" +"Contemporary Clinical Dentistry","0976-237X","0976-2361","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","1,669","0.9","Q3","0.41","88.66" +"Ensenanza de Las Ciencias","0212-4521","2174-6486","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","486","0.9","Q3","0.41","90.43" +"Journal for Healthcare Quality","1062-2551","1945-1474","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","677","0.9","('Q4', 'Q4')","0.41","6.72" +"JOURNAL OF ETHOLOGY","0289-0771","1439-5444","('BEHAVIORAL SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","947","0.9","('Q4', 'Q3')","0.41","24.47" +"Journal of Reliability and Statistical Studies","0974-8024","2229-5666","STATISTICS & PROBABILITY","('ESCI',)","121","0.9","Q3","0.41","98.15" +"Kinesiology","1331-1441","1848-638X","('REHABILITATION', 'SPORT SCIENCES')","('SCIE, SSCI', 'SCIE')","689","0.9","('Q4', 'Q4')","0.41","100.00" +"LATERALITY","1357-650X","1464-0678","('PSYCHOLOGY, EXPERIMENTAL', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","927","0.9","('Q4', 'Q3')","0.41","25.71" +"STATISTICS & PROBABILITY LETTERS","0167-7152","1879-2103","STATISTICS & PROBABILITY","('SCIE',)","4,710","0.9","Q3","0.41","16.50" +"ACM Transactions on Parallel Computing","2329-4949","2329-4957","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","246","0.9","Q3","0.40","7.02" +"AMERICAN JOURNAL OF FAMILY THERAPY","0192-6187","1521-0383","('FAMILY STUDIES', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","850","0.9","('Q3', 'Q4')","0.40","5.26" +"ANNALS OF SCIENCE","0003-3790","1464-505X","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","427","0.9","Q2","0.40","37.70" +"Asian Journal of Endoscopic Surgery","1758-5902","1758-5910","ORTHOPEDICS","('ESCI',)","955","0.9","Q4","0.40","5.34" +"CANADIAN VETERINARY JOURNAL-REVUE VETERINAIRE CANADIENNE","0008-5286","0008-5286","VETERINARY SCIENCES","('SCIE',)","3,809","0.9","Q3","0.40","0.00" +"Florence Nightingale Journal of Nursing","2687-6442","2687-6442","NURSING","('ESCI',)","357","0.9","Q4","0.40","97.46" +"HAND CLINICS","0749-0712","1558-1969","ORTHOPEDICS","('SCIE',)","2,525","0.9","Q4","0.40","5.71" +"INTERNATIONAL JOURNAL OF SURGICAL PATHOLOGY","1066-8969","1940-2465","('PATHOLOGY', 'SURGERY')","('SCIE', 'SCIE')","1,961","0.9","('Q4', 'Q3')","0.40","5.69" +"International Negotiation-A Journal of Theory and Practice","1382-340X","1571-8069","INTERNATIONAL RELATIONS","('ESCI',)","425","0.9","Q3","0.40","8.70" +"Journal of Health Research","0857-4421","2586-940X","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","502","0.9","Q4","0.40","94.03" +"JOURNAL OF OBSTETRICS AND GYNAECOLOGY","0144-3615","1364-6893","OBSTETRICS & GYNECOLOGY","('SCIE',)","4,154","0.9","Q4","0.40","20.88" +"LARYNGO-RHINO-OTOLOGIE","0935-8943","1438-8685","OTORHINOLARYNGOLOGY","('SCIE',)","843","0.9","Q3","0.40","13.33" +"NATIONAL IDENTITIES","1460-8944","1469-9907","POLITICAL SCIENCE","('ESCI',)","382","0.9","Q3","0.40","31.34" +"Refuge","0229-5113","1920-7336","DEMOGRAPHY","('ESCI',)","591","0.9","Q3","0.40","96.61" +"Revista Espanola de Anestesiologia y Reanimacion","0034-9356","2340-3284","ANESTHESIOLOGY","('ESCI',)","694","0.9","Q3","0.40","1.41" +"Acta Gymnica","2336-4912","2336-4920","SPORT SCIENCES","('ESCI',)","194","0.9","Q4","0.39","100.00" +"ANNALES ZOOLOGICI FENNICI","0003-455X","1797-2450","('ECOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","1,474","0.9","('Q4', 'Q3')","0.39","0.00" +"Current Urology","1661-7649","1661-7657","UROLOGY & NEPHROLOGY","('ESCI',)","544","0.9","Q4","0.39","100.00" +"European Oral Research","2630-6158","2651-2823","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","132","0.9","Q3","0.39","54.05" +"Geografie","","1212-0014","GEOGRAPHY","('SSCI',)","246","0.9","Q3","0.39","100.00" +"JOURNAL OF THE AMERICAN MOSQUITO CONTROL ASSOCIATION","8756-971X","1943-6270","ENTOMOLOGY","('SCIE',)","1,970","0.9","Q3","0.39","98.35" +"Journal of Web Librarianship","1932-2909","1932-2917","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","111","0.9","Q3","0.39","4.17" +"METRIKA","0026-1335","1435-926X","STATISTICS & PROBABILITY","('SCIE',)","999","0.9","Q3","0.39","19.12" +"Peace and Conflict-Journal of Peace Psychology","1078-1919","1532-7949","PSYCHOLOGY, SOCIAL","('ESCI',)","855","0.9","Q4","0.39","1.06" +"Psihologija","0048-5705","","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","341","0.9","Q3","0.39","98.63" +"RUSSIAN JOURNAL OF NEMATOLOGY","0869-6918","0869-6918","ZOOLOGY","('SCIE',)","245","0.9","Q3","0.39","0.00" +"AMERICAN SOCIOLOGIST","0003-1232","1936-4784","SOCIOLOGY","('ESCI',)","647","0.9","Q3","0.38","27.97" +"Asia-Pacific Science Education","","2364-1177","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('ESCI', 'ESCI')","95","0.9","('Q3', 'Q3')","0.38","93.75" +"Coaching-An International Journal of Theory Research and Practice","1752-1882","1752-1890","PSYCHOLOGY, APPLIED","('ESCI',)","266","0.9","Q4","0.38","23.91" +"IJoLE-International Journal of Language Education","2548-8457","2548-8465","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('ESCI', 'ESCI')","145","0.9","('Q3', 'Q2')","0.38","84.62" +"Journal of Spirituality in Mental Health","1934-9637","1934-9645","PSYCHOLOGY, APPLIED","('ESCI',)","210","0.9","Q4","0.38","14.67" +"JOURNAL OF THE HISTORY OF MEDICINE AND ALLIED SCIENCES","0022-5045","1468-4373","('HEALTH CARE SCIENCES & SERVICES', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SCIE', 'AHCI, SCIE, SSCI')","732","0.9","('Q4', 'Q2')","0.38","23.68" +"OCCUPATIONAL THERAPY IN HEALTH CARE","0738-0577","1541-3098","REHABILITATION","('ESCI',)","570","0.9","Q4","0.38","6.04" +"Orbit-The International Journal on Orbital Disorders-Oculoplastic and Lacrimal Surgery","0167-6830","1744-5108","OPHTHALMOLOGY","('ESCI',)","1,540","0.9","Q4","0.38","1.73" +"Psychology and Developing Societies","0971-3336","0973-0761","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","276","0.9","Q3","0.38","10.26" +"Tropical Animal Science Journal","2615-787X","2615-790X","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","268","0.9","Q3","0.38","96.65" +"World Journal of Plastic Surgery","2228-7914","2252-0724","SURGERY","('ESCI',)","606","0.9","Q3","0.38","59.49" +"MATHEMATICAL METHODS OF OPERATIONS RESEARCH","1432-2994","1432-5217","('MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","985","0.9","('Q3', 'Q4')","0.37","39.81" +"Ocular Oncology and Pathology","2296-4681","2296-4657","OPHTHALMOLOGY","('ESCI',)","374","0.9","Q4","0.37","5.88" +"PLASMA PHYSICS REPORTS","1063-780X","1562-6938","PHYSICS, FLUIDS & PLASMAS","('SCIE',)","1,824","0.9","Q4","0.37","6.24" +"WOOD RESEARCH","1336-4561","","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","1,040","0.9","Q3","0.37","99.16" +"Consulting Psychology Journal-Practice and Research","1065-9293","1939-0149","PSYCHOLOGY, APPLIED","('ESCI',)","651","0.9","Q4","0.36","1.47" +"Fundamental and Applied Limnology","1863-9135","1863-9135","('LIMNOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","745","0.9","('Q4', 'Q3')","0.36","0.00" +"INTERNATIONAL JOURNAL OF PARALLEL PROGRAMMING","0885-7458","1573-7640","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","459","0.9","Q3","0.36","35.94" +"Journal of Latin American Geography","1545-2476","1548-5811","GEOGRAPHY","('ESCI',)","472","0.9","Q3","0.36","0.00" +"Research in Post-Compulsory Education","1359-6748","1747-5112","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","331","0.9","Q3","0.36","25.27" +"SCOTTISH JOURNAL OF POLITICAL ECONOMY","0036-9292","1467-9485","('ECONOMICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","835","0.9","('Q3', 'Q3')","0.36","24.69" +"Current Ophthalmology Reports","","2167-4868","OPHTHALMOLOGY","('ESCI',)","276","0.9","Q4","0.35","4.92" +"Earth and Environmental Science Transactions of the Royal Society of Edinburgh","1755-6910","1755-6929","('GEOSCIENCES, MULTIDISCIPLINARY', 'PALEONTOLOGY')","('SCIE', 'SCIE')","2,251","0.9","('Q4', 'Q4')","0.35","33.85" +"Horticulture Journal","2189-0102","2189-0110","HORTICULTURE","('SCIE',)","536","0.9","Q4","0.35","99.36" +"INTERNATIONAL JOURNAL OF RISK & SAFETY IN MEDICINE","0924-6479","1878-6847","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","315","0.9","Q4","0.35","20.59" +"INTERNATIONAL JOURNAL OF SATELLITE COMMUNICATIONS AND NETWORKING","1542-0973","1542-0981","('ENGINEERING, AEROSPACE', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","526","0.9","('Q3', 'Q4')","0.35","20.41" +"MARINE AND FRESHWATER BEHAVIOUR AND PHYSIOLOGY","1023-6244","1029-0362","MARINE & FRESHWATER BIOLOGY","('SCIE',)","727","0.9","Q3","0.35","6.06" +"Medicina de Familia-SEMERGEN","1138-3593","1578-8865","PRIMARY HEALTH CARE","('ESCI',)","443","0.9","Q4","0.35","0.00" +"Revista Icono 14-Revista Cientifica de Comunicacion y Tecnologias","1697-8293","1697-8293","COMMUNICATION","('ESCI',)","288","0.9","Q3","0.35","97.37" +"Turkish Neurosurgery","1019-5149","1019-5149","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","1,715","0.9","('Q4', 'Q3')","0.35","0.47" +"Accounting Economics and Law-A Convivium","2194-6051","2152-2820","BUSINESS, FINANCE","('ESCI',)","253","0.9","Q3","0.34","9.18" +"AUSTRALASIAN PLANT PATHOLOGY","0815-3191","1448-6032","PLANT SCIENCES","('SCIE',)","2,258","0.9","Q4","0.34","14.43" +"Australian Journal of Teacher Education","1835-517X","1835-517X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,685","0.9","Q3","0.34","24.14" +"Bulletin of Geophysics and Oceanography","2785-339X","2785-2970","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","85","0.9","Q4","0.34","0.00" +"Clinical Advances in Periodontics","2573-8046","2163-0097","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","257","0.9","Q3","0.34","18.80" +"Gospodarka Surowcami Mineralnymi-Mineral Resources Management","0860-0953","2299-2324","('MINERALOGY', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE')","369","0.9","('Q4', 'Q3')","0.34","3.23" +"Hand Therapy","1758-9983","1758-9991","REHABILITATION","('ESCI',)","254","0.9","Q4","0.34","15.00" +"Journal of Prevention & Intervention in the Community","1085-2352","1540-7330","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","518","0.9","Q3","0.34","2.67" +"MOTOR CONTROL","1087-1640","1543-2696","('NEUROSCIENCES', 'SPORT SCIENCES')","('SCIE', 'SCIE')","808","0.9","('Q4', 'Q4')","0.34","0.00" +"PAKISTAN JOURNAL OF BOTANY","0556-3321","2070-3368","PLANT SCIENCES","('SCIE',)","5,393","0.9","Q4","0.34","0.00" +"Qualitative Research in Organizations and Management","1746-5648","1746-5656","MANAGEMENT","('ESCI',)","697","0.9","Q4","0.34","22.39" +"Sahara J-Journal of Social Aspects of HIV-AIDS","1729-0376","1813-4424","('HEALTH POLICY & SERVICES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SSCI', 'SSCI')","339","0.9","('Q4', 'Q4')","0.34","100.00" +"SEMINARS IN MUSCULOSKELETAL RADIOLOGY","1089-7860","1098-898X","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","1,280","0.9","Q4","0.34","3.06" +"ACTA ENTOMOLOGICA MUSEI NATIONALIS PRAGAE","0374-1036","1804-6487","ENTOMOLOGY","('SCIE',)","421","0.9","Q3","0.33","0.00" +"AMERICAN JOURNAL OF ECONOMICS AND SOCIOLOGY","0002-9246","1536-7150","('ECONOMICS', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,106","0.9","('Q3', 'Q3')","0.33","12.82" +"CARDIOLOGY IN THE YOUNG","1047-9511","1467-1107","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'PEDIATRICS')","('SCIE', 'SCIE')","3,915","0.9","('Q4', 'Q3')","0.33","17.73" +"Case Reports in Dermatology","1662-6567","1662-6567","DERMATOLOGY","('ESCI',)","562","0.9","Q4","0.33","100.00" +"Comparative Cognition & Behavior Reviews","1911-4745","1911-4745","BEHAVIORAL SCIENCES","('ESCI',)","196","0.9","Q4","0.33","84.62" +"Demografie","0011-8265","1805-2991","DEMOGRAPHY","('ESCI',)","105","0.9","Q3","0.33","0.00" +"Folia Oecologica","1336-5266","1338-7014","ECOLOGY","('ESCI',)","179","0.9","Q4","0.33","100.00" +"Gateways-International Journal of Community Research and Engagement","1836-3393","1836-3393","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","103","0.9","Q3","0.33","100.00" +"International Journal of Wavelets Multiresolution and Information Processing","0219-6913","1793-690X","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","741","0.9","('Q4', 'Q4')","0.33","0.45" +"Journal of Internet Technology","1607-9264","2079-4029","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","820","0.9","('Q4', 'Q4')","0.33","0.00" +"Revista Facultad de Ingenieria-Universidad de Antioquia","0120-6230","2422-2844","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","369","0.9","Q3","0.33","88.52" +"Studies in Agricultural Economics","1418-2106","2063-0476","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","251","0.9","Q4","0.33","97.87" +"Acta Geodynamica et Geomaterialia","1214-9705","","('GEOCHEMISTRY & GEOPHYSICS', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE')","434","0.9","('Q4', 'Q3')","0.32","96.10" +"BMS-Bulletin of Sociological Methodology-Bulletin de Methodologie Sociologique","0759-1063","2070-2779","SOCIOLOGY","('ESCI',)","129","0.9","Q3","0.32","13.46" +"Eurasian Journal of Medicine","","1308-8742","MEDICINE, GENERAL & INTERNAL","('ESCI',)","904","0.9","Q3","0.32","42.25" +"JOURNAL OF COMBINATORIAL OPTIMIZATION","1382-6905","1573-2886","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,602","0.9","('Q4', 'Q3')","0.32","6.85" +"Journal of Failure Analysis and Prevention","1547-7029","1864-1245","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","1,849","0.9","Q3","0.32","3.20" +"Journal of Information & Knowledge Management","0219-6492","1793-6926","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","574","0.9","Q3","0.32","1.57" +"JOURNAL OF LABELLED COMPOUNDS & RADIOPHARMACEUTICALS","0362-4803","1099-1344","('BIOCHEMICAL RESEARCH METHODS', 'CHEMISTRY, ANALYTICAL', 'CHEMISTRY, MEDICINAL')","('SCIE', 'SCIE', 'SCIE')","1,702","0.9","('Q4', 'Q4', 'Q4')","0.32","26.05" +"Journal of Neurological Surgery Part A-Central European Neurosurgery","2193-6315","2193-6323","('CLINICAL NEUROLOGY', 'SURGERY')","('SCIE', 'SCIE')","977","0.9","('Q4', 'Q3')","0.32","3.92" +"Lung Cancer Management","1758-1966","1758-1974","RESPIRATORY SYSTEM","('ESCI',)","161","0.9","Q4","0.32","100.00" +"NERVENARZT","0028-2804","1433-0407","('CLINICAL NEUROLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE')","1,623","0.9","('Q4', 'Q4')","0.32","38.33" +"Renal Replacement Therapy","","2059-1381","UROLOGY & NEPHROLOGY","('ESCI',)","509","0.9","Q4","0.32","100.00" +"Revista Caatinga","0100-316X","1983-2125","AGRONOMY","('SCIE',)","1,215","0.9","Q3","0.32","100.00" +"WILDLIFE SOCIETY BULLETIN","2328-5540","2328-5540","BIODIVERSITY CONSERVATION","('SCIE',)","3,770","0.9","Q4","0.32","52.65" +"ANNALES DE LIMNOLOGIE-INTERNATIONAL JOURNAL OF LIMNOLOGY","0003-4088","2100-000X","LIMNOLOGY","('SCIE',)","827","0.9","Q4","0.31","16.00" +"Immigrants and Minorities","0261-9288","1744-0521","DEMOGRAPHY","('ESCI',)","170","0.9","Q3","0.31","14.29" +"INTERNATIONAL ECONOMIC JOURNAL","1016-8737","1743-517X","ECONOMICS","('ESCI',)","528","0.9","Q3","0.31","1.11" +"International Journal of Modeling Simulation and Scientific Computing","1793-9623","1793-9615","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","480","0.9","Q3","0.31","2.47" +"Internet Technology Letters","","2476-1508","TELECOMMUNICATIONS","('ESCI',)","394","0.9","Q4","0.31","4.04" +"Journal of International Accounting Research","1542-6297","1558-8025","BUSINESS, FINANCE","('ESCI',)","433","0.9","Q3","0.31","0.00" +"JOURNAL OF PEDIATRIC HEMATOLOGY ONCOLOGY","1077-4114","1536-3678","('HEMATOLOGY', 'ONCOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE', 'SCIE')","4,253","0.9","('Q4', 'Q4', 'Q3')","0.31","3.05" +"Polish Journal of Radiology","0137-7183","1899-0967","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,185","0.9","Q4","0.31","98.76" +"Psychiatria Polska","0033-2674","","PSYCHIATRY","('SCIE',)","1,385","0.9","Q4","0.31","98.86" +"Acta Radiologica Open","","2058-4601","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","481","0.9","Q4","0.30","86.33" +"Atmospheric and Oceanic Optics","1024-8560","2070-0393","OPTICS","('ESCI',)","782","0.9","Q4","0.30","2.90" +"CoDAS","2317-1782","2317-1782","AUDIOLOGY & SPEECH","('ESCI',)","1,055","0.9","Q4","0.30","90.98" +"Journal of Agricultural Safety and Health","1074-7583","1943-7846","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","305","0.9","Q4","0.30","0.00" +"Journal of Engineering and Technological Sciences","2337-5779","2338-5502","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","535","0.9","Q3","0.30","96.17" +"Journal of Management History","1751-1348","1758-7751","MANAGEMENT","('ESCI',)","458","0.9","Q4","0.30","5.95" +"OCEANOLOGICAL AND HYDROBIOLOGICAL STUDIES","1730-413X","1897-3191","OCEANOGRAPHY","('SCIE',)","498","0.9","Q4","0.30","82.88" +"PROGRESS IN PALLIATIVE CARE","0969-9260","1743-291X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","307","0.9","Q4","0.30","14.86" +"Transactions on Data Privacy","1888-5063","2013-1631","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","190","0.9","Q3","0.30","0.00" +"ACOUSTICAL PHYSICS","1063-7710","1562-6865","ACOUSTICS","('SCIE',)","1,162","0.9","Q4","0.29","4.86" +"Acta Botanica Brasilica","0102-3306","1677-941X","PLANT SCIENCES","('SCIE',)","1,768","0.9","Q4","0.29","90.28" +"ANIMAL SCIENCE PAPERS AND REPORTS","0860-4037","2300-8342","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","409","0.9","Q3","0.29","21.84" +"AUSTRALIAN JOURNAL OF BOTANY","0067-1924","1444-9862","PLANT SCIENCES","('SCIE',)","3,193","0.9","Q4","0.29","51.59" +"Case Reports in Neurological Medicine","2090-6668","2090-6676","CLINICAL NEUROLOGY","('ESCI',)","460","0.9","Q4","0.29","97.26" +"Conservation Genetics Resources","1877-7252","1877-7260","('BIODIVERSITY CONSERVATION', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","1,834","0.9","('Q4', 'Q4')","0.29","22.82" +"EPJ Nuclear Sciences & Technologies","2491-9292","2491-9292","NUCLEAR SCIENCE & TECHNOLOGY","('ESCI',)","300","0.9","Q3","0.29","97.14" +"Indian Journal of Public Health","0019-557X","2229-7693","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","1,058","0.9","Q4","0.29","78.55" +"International Journal of Humanoid Robotics","0219-8436","1793-6942","ROBOTICS","('SCIE',)","656","0.9","Q4","0.29","3.53" +"International Journal of Information Systems and Supply Chain Management","1935-5726","1935-5734","MANAGEMENT","('ESCI',)","172","0.9","Q4","0.29","69.88" +"International Journal of Reliability Quality and Safety Engineering","0218-5393","1793-6446","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","404","0.9","Q3","0.29","0.70" +"JOURNAL OF CIRCUITS SYSTEMS AND COMPUTERS","0218-1266","1793-6454","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","2,037","0.9","('Q4', 'Q4')","0.29","1.07" +"Journal of Electronic Commerce in Organizations","1539-2937","1539-2929","BUSINESS","('ESCI',)","226","0.9","Q4","0.29","55.32" +"Panoeconomicus","1452-595X","2217-2386","ECONOMICS","('SSCI',)","323","0.9","Q3","0.29","97.65" +"Revista Electronica Educare","1409-4258","1409-4258","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","545","0.9","Q3","0.29","99.24" +"SPUR-Scholarship and Practice of Undergraduate Research","2476-101X","2476-101X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","124","0.9","Q3","0.29","1.92" +"Traditional Medicine Research","2413-3973","2413-3973","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","182","0.9","Q4","0.29","78.16" +"ZEITSCHRIFT FUR RHEUMATOLOGIE","0340-1855","1435-1250","RHEUMATOLOGY","('SCIE',)","1,165","0.9","Q4","0.29","28.10" +"AIMS Geosciences","2471-2132","2471-2132","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","233","0.9","Q4","0.28","98.36" +"Bangladesh Journal of Pharmacology","1991-007X","1991-0088","PHARMACOLOGY & PHARMACY","('SCIE',)","698","0.9","Q4","0.28","51.11" +"COMPUTER ANIMATION AND VIRTUAL WORLDS","1546-4261","1546-427X","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","669","0.9","Q4","0.28","12.68" +"Engineering Journal-Thailand","0125-8281","0125-8281","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","907","0.9","Q3","0.28","98.14" +"INTERNATIONAL JOURNAL OF CLINICAL PHARMACOLOGY AND THERAPEUTICS","0946-1965","0946-1965","PHARMACOLOGY & PHARMACY","('SCIE',)","1,690","0.9","Q4","0.28","0.00" +"Journal of Medical Case Reports","","1752-1947","MEDICINE, GENERAL & INTERNAL","('ESCI',)","4,538","0.9","Q3","0.28","99.88" +"Journal of Mineralogical and Petrological Sciences","1345-6296","1349-3825","MINERALOGY","('SCIE',)","721","0.9","Q4","0.28","88.00" +"Journal of Mining and Metallurgy Section B-Metallurgy","1450-5339","2217-7175","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","469","0.9","Q3","0.28","99.25" +"JOURNAL OF PAIN & PALLIATIVE CARE PHARMACOTHERAPY","1536-0288","1536-0539","ANESTHESIOLOGY","('ESCI',)","658","0.9","Q3","0.28","6.60" +"Journal of South Asian Development","0973-1741","0973-1733","DEVELOPMENT STUDIES","('SSCI',)","202","0.9","Q4","0.28","10.94" +"Migraciones","1138-5774","2341-0833","DEMOGRAPHY","('ESCI',)","182","0.9","Q3","0.28","77.53" +"Molecular Imaging and Radionuclide Therapy","2146-1414","2147-1959","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","247","0.9","Q4","0.28","100.00" +"Public Budgeting and Finance","0275-1100","1540-5850","PUBLIC ADMINISTRATION","('ESCI',)","493","0.9","Q4","0.28","18.37" +"THEORY AND DECISION","0040-5833","1573-7187","('ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","1,288","0.9","('Q3', 'Q4')","0.28","40.61" +"Advancements in Life Sciences","2310-5380","2310-5380","BIOLOGY","('ESCI',)","278","0.9","Q3","0.27","0.00" +"CONCEPTS IN MAGNETIC RESONANCE PART B-MAGNETIC RESONANCE ENGINEERING","1552-5031","1552-504X","('CHEMISTRY, PHYSICAL', 'INSTRUMENTS & INSTRUMENTATION', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","323","0.9","('Q4', 'Q4', 'Q4', 'Q4')","0.27","100.00" +"Economic Papers","0812-0439","1759-3441","ECONOMICS","('ESCI',)","401","0.9","Q3","0.27","25.37" +"Economics and Business Letters","2254-4380","2254-4380","ECONOMICS","('ESCI',)","192","0.9","Q3","0.27","95.10" +"International Journal of Engineering Systems Modelling and SImulation","1755-9758","1755-9766","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","122","0.9","Q3","0.27","0.00" +"International Journal of Rotating Machinery","1023-621X","1542-3034","ENGINEERING, MECHANICAL","('ESCI',)","682","0.9","Q4","0.27","100.00" +"Iranian Journal of Parasitology","1735-7020","2008-238X","PARASITOLOGY","('SCIE',)","992","0.9","Q4","0.27","75.58" +"Journal of Acupuncture and Meridian Studies","2005-2901","2093-8152","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","681","0.9","Q4","0.27","100.00" +"Journal of Advanced Manufacturing Systems","0219-6867","1793-6896","ENGINEERING, MANUFACTURING","('ESCI',)","359","0.9","Q4","0.27","0.00" +"Modern Rheumatology Case Reports","","2472-5625","RHEUMATOLOGY","('ESCI',)","282","0.9","Q4","0.27","9.57" +"NEUROLOGY INDIA","0028-3886","1998-4022","NEUROSCIENCES","('SCIE',)","3,281","0.9","Q4","0.27","0.00" +"Organizations and Markets in Emerging Economies","2029-4581","2345-0037","ECONOMICS","('ESCI',)","185","0.9","Q3","0.27","100.00" +"PEDIATRIC NEUROSURGERY","1016-2291","1423-0305","('CLINICAL NEUROLOGY', 'PEDIATRICS', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","1,992","0.9","('Q4', 'Q3', 'Q3')","0.27","30.39" +"Scientific Annals of Economics and Business","2501-1960","2501-3165","ECONOMICS","('ESCI',)","191","0.9","Q3","0.27","97.06" +"Solar-Terrestrial Physics","2500-0535","2500-0535","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","244","0.9","Q4","0.27","85.82" +"SYSTEMATIC BOTANY","0363-6445","1548-2324","('EVOLUTIONARY BIOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","2,634","0.9","('Q4', 'Q4')","0.27","2.61" +"Theoretical Computer Science","0304-3975","1879-2294","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","9,170","0.9","Q3","0.27","22.21" +"Tropical Grasslands-Forrajes Tropicales","2346-3775","2346-3775","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'AGRONOMY')","('SCIE', 'SCIE')","301","0.9","('Q3', 'Q3')","0.27","82.61" +"AMERICAN JOURNAL OF PSYCHOLOGY","0002-9556","1939-8298","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","3,141","0.9","Q3","0.26","0.00" +"BIOCONTROL SCIENCE","1342-4815","1884-0205","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","614","0.9","Q4","0.26","100.00" +"Communications in Information Literacy","1933-5954","1933-5954","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","283","0.9","Q3","0.26","25.53" +"International Journal of Disaster Resilience in the Built Environment","1759-5908","1759-5916","ENVIRONMENTAL STUDIES","('ESCI',)","571","0.9","Q4","0.26","1.61" +"International Journal of Human Capital and Information Technology Professionals","1947-3478","1947-3486","MANAGEMENT","('ESCI',)","135","0.9","Q4","0.26","55.56" +"INTERNATIONAL JOURNAL OF RF AND MICROWAVE COMPUTER-AIDED ENGINEERING","1096-4290","1099-047X","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","3,050","0.9","('Q4', 'Q4')","0.26","80.42" +"IRISH JOURNAL OF AGRICULTURAL AND FOOD RESEARCH","0791-6833","2009-9029","('AGRICULTURE, MULTIDISCIPLINARY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","410","0.9","('Q3', 'Q4')","0.26","95.00" +"Journal of Investigative Medicine High Impact Case Reports","2324-7096","2324-7096","MEDICINE, GENERAL & INTERNAL","('ESCI',)","878","0.9","Q3","0.26","93.53" +"Journal of Mental Health Training Education and Practice","1755-6228","2042-8707","PSYCHIATRY","('ESCI',)","402","0.9","Q4","0.26","6.93" +"Journal of the Operations Research Society of China","2194-668X","2194-6698","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","425","0.9","Q4","0.26","4.37" +"Journal of Toxicologic Pathology","0914-9198","1881-915X","('PATHOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE')","644","0.9","('Q4', 'Q4')","0.26","98.06" +"KEW BULLETIN","0075-5974","1874-933X","PLANT SCIENCES","('SCIE',)","1,522","0.9","Q4","0.26","37.38" +"Neurohospitalist","1941-8744","1941-8752","CLINICAL NEUROLOGY","('ESCI',)","627","0.9","Q4","0.26","6.38" +"POLISH POLAR RESEARCH","0138-0338","2081-8262","('ECOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","601","0.9","('Q4', 'Q4')","0.26","100.00" +"RUSSIAN JOURNAL OF NONDESTRUCTIVE TESTING","1061-8309","1608-3385","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('SCIE',)","926","0.9","Q4","0.26","3.60" +"SOUND AND VIBRATION","1541-0161","1541-0161","ACOUSTICS","('ESCI',)","397","0.9","Q4","0.26","100.00" +"Annali Italiani di Chirurgia","0003-469X","2239-253X","SURGERY","('SCIE',)","848","0.9","Q3","0.25","0.00" +"Education for Health","1357-6283","1469-5804","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","677","0.9","Q3","0.25","25.53" +"Elektronika Ir Elektrotechnika","1392-1215","1392-1215","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","754","0.9","Q4","0.25","97.48" +"Hellenic Journal of Nuclear Medicine","1108-1430","1790-5427","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","467","0.9","Q4","0.25","0.00" +"IEEE Letters on Electromagnetic Compatibility Practice and Applications","","2637-6423","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","93","0.9","Q4","0.25","22.37" +"Journal of Medical Ultrasound","0929-6441","2212-1552","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","494","0.9","Q4","0.25","100.00" +"Journal of Robotics and Mechatronics","0915-3942","1883-8049","ROBOTICS","('ESCI',)","1,134","0.9","Q4","0.25","97.76" +"Revista Brasileira de Fruticultura","0100-2945","1806-9967","HORTICULTURE","('SCIE',)","1,548","0.9","Q4","0.25","93.65" +"SIGMOD RECORD","0163-5808","1943-5835","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","1,826","0.9","('Q4', 'Q4')","0.25","0.00" +"Spanish Journal of Finance and Accounting-Revista Espanola de Financiacion y Contabilidad","0210-2412","2332-0753","BUSINESS, FINANCE","('SSCI',)","269","0.9","Q3","0.25","1.64" +"Tribology Online","1881-2198","1881-2198","ENGINEERING, MECHANICAL","('ESCI',)","492","0.9","Q4","0.25","99.17" +"African Review of Economics and Finance-AREF","2042-1478","2410-4906","ECONOMICS","('ESCI',)","157","0.9","Q3","0.24","0.00" +"ARCTIC","0004-0843","1923-1245","('ENVIRONMENTAL SCIENCES', 'GEOGRAPHY, PHYSICAL')","('SCIE', 'SCIE')","1,859","0.9","('Q4', 'Q4')","0.24","95.65" +"Botanica Serbica","1821-2158","1821-2638","PLANT SCIENCES","('SCIE',)","265","0.9","Q4","0.24","100.00" +"GRANA","0017-3134","1651-2049","PLANT SCIENCES","('SCIE',)","1,256","0.9","Q4","0.24","8.57" +"Infocommunications Journal","2061-2079","2061-2125","TELECOMMUNICATIONS","('ESCI',)","139","0.9","Q4","0.24","0.91" +"International Journal of Healthcare Information Systems and Informatics","1555-3396","1555-340X","MEDICAL INFORMATICS","('ESCI',)","182","0.9","Q4","0.24","89.16" +"International Journal of Hydrology Science and Technology","2042-7808","2042-7816","('ENVIRONMENTAL SCIENCES', 'WATER RESOURCES')","('ESCI', 'ESCI')","279","0.9","('Q4', 'Q4')","0.24","0.00" +"International Journal of Multimedia Data Engineering & Management","1947-8534","1947-8542","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","41","0.9","Q4","0.24","18.18" +"IZVESTIYA-PHYSICS OF THE SOLID EARTH","1069-3513","1555-6506","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","839","0.9","Q4","0.24","7.83" +"Jordanian Journal of Computers and Information Technology","2413-9351","2415-1076","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI')","126","0.9","('Q4', 'Q4')","0.24","54.12" +"Journal of Advances in Information Technology","1798-2340","1798-2340","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS')","('ESCI', 'ESCI')","269","0.9","('Q4', 'Q4')","0.24","94.98" +"Journal of Aeronautics Astronautics and Aviation","1990-7710","1990-7710","ENGINEERING, AEROSPACE","('ESCI',)","194","0.9","Q3","0.24","0.00" +"Journal of Corporate Accounting and Finance","1044-8136","1097-0053","BUSINESS, FINANCE","('ESCI',)","431","0.9","Q3","0.24","10.47" +"Journal of Culinary Science & Technology","1542-8052","1542-8044","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","587","0.9","Q4","0.24","2.17" +"Journal of Development Effectiveness","1943-9342","1943-9407","DEVELOPMENT STUDIES","('SSCI',)","652","0.9","Q4","0.24","25.30" +"Journal of Engineering Research","2307-1877","2307-1885","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","868","0.9","Q3","0.24","95.04" +"JOURNAL OF PSYCHOPHYSIOLOGY","0269-8803","2151-2124","('NEUROSCIENCES', 'PSYCHOLOGY, BIOLOGICAL')","('SCIE', 'SSCI')","600","0.9","('Q4', 'Q4')","0.24","9.38" +"Molecular Syndromology","1661-8769","1661-8777","GENETICS & HEREDITY","('SCIE',)","889","0.9","Q4","0.24","8.00" +"Northern Clinics of Istanbul","2148-4902","2536-4553","MEDICINE, GENERAL & INTERNAL","('ESCI',)","711","0.9","Q3","0.24","87.21" +"Pan African Medical Journal","","1937-8688","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","6,621","0.9","Q4","0.24","80.63" +"Quantum Studies-Mathematics and Foundations","2196-5609","2196-5617","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","198","0.9","Q3","0.24","19.05" +"Quarterly Journal of Finance","2010-1392","2010-1406","BUSINESS, FINANCE","('ESCI',)","355","0.9","Q3","0.24","0.00" +"Aerospace Medicine and Human Performance","2375-6314","2375-6322","('BIOPHYSICS', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE', 'SCIE')","1,069","0.9","('Q4', 'Q4', 'Q4')","0.23","5.15" +"Carpathian Journal of Earth and Environmental Sciences","1842-4090","1844-489X","ENVIRONMENTAL SCIENCES","('SCIE',)","641","0.9","Q4","0.23","0.00" +"Estudios Gerenciales","0123-5923","0123-5923","ECONOMICS","('ESCI',)","424","0.9","Q3","0.23","86.57" +"International Journal of E-Business Research","1548-1131","1548-114X","BUSINESS","('ESCI',)","239","0.9","Q4","0.23","93.15" +"International Journal of Evidence Based Coaching & Mentoring","1741-8305","1741-8305","PSYCHOLOGY, APPLIED","('ESCI',)","367","0.9","Q4","0.23","0.00" +"Journal of Bioinformatics and Computational Biology","0219-7200","1757-6334","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('SCIE',)","756","0.9","Q4","0.23","19.05" +"Journal of Industry Competition & Trade","1566-1679","1573-7012","BUSINESS","('ESCI',)","462","0.9","Q4","0.23","26.79" +"Journal of Infection Prevention","1757-1774","1757-1782","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","356","0.9","('Q4', 'Q4')","0.23","21.36" +"JOURNAL OF TRANSPORT ECONOMICS AND POLICY","0022-5258","1754-5951","('ECONOMICS', 'TRANSPORTATION')","('SSCI', 'SSCI')","919","0.9","('Q3', 'Q4')","0.23","0.00" +"Management Theory and Studies for Rural Business and Infrastructure Development","1822-6760","2345-0355","BUSINESS","('ESCI',)","230","0.9","Q4","0.23","96.08" +"Metallurgical Research & Technology","2271-3646","2271-3654","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","819","0.9","Q3","0.23","3.28" +"Neotropical Biodiversity","","2376-6808","ECOLOGY","('ESCI',)","226","0.9","Q4","0.23","97.50" +"RADIOCHEMISTRY","1066-3622","1608-3288","CHEMISTRY, INORGANIC & NUCLEAR","('ESCI',)","1,148","0.9","Q4","0.23","4.44" +"Scalable Computing-Practice and Experience","1895-1767","1895-1767","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","269","0.9","Q4","0.23","98.84" +"Vavilovskii Zhurnal Genetiki i Selektsii","2500-0462","2500-3259","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","542","0.9","Q3","0.23","93.31" +"Applied Earth Science-Transactions of the Institutions of Mining and Metallurgy","2572-6838","2572-6846","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","124","0.9","Q4","0.22","4.08" +"Australian Journal of Structural Engineering","1328-7982","2204-2261","ENGINEERING, CIVIL","('ESCI',)","444","0.9","Q4","0.22","8.70" +"DESIGN AUTOMATION FOR EMBEDDED SYSTEMS","0929-5585","1572-8080","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","166","0.9","('Q4', 'Q4')","0.22","12.90" +"Electrica","2619-9831","2619-9831","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","157","0.9","Q4","0.22","98.76" +"Expert Review of Ophthalmology","1746-9899","1746-9902","OPHTHALMOLOGY","('ESCI',)","467","0.9","Q4","0.22","11.21" +"Human-Wildlife Interactions","2155-3858","2155-3874","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","478","0.9","('Q4', 'Q4')","0.22","0.00" +"Indian Journal of Community Medicine","0970-0218","1998-3581","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","1,781","0.9","Q4","0.22","91.95" +"Indian Journal of Radiology and Imaging","0971-3026","1998-3808","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,360","0.9","Q4","0.22","98.25" +"INTERNATIONAL JOURNAL OF OFFSHORE AND POLAR ENGINEERING","1053-5381","1053-5381","('ENGINEERING, CIVIL', 'ENGINEERING, MECHANICAL', 'ENGINEERING, OCEAN')","('SCIE', 'SCIE', 'SCIE')","828","0.9","('Q4', 'Q4', 'Q4')","0.22","0.00" +"International Journal of Sport Finance","1558-6235","1930-076X","HOSPITALITY, LEISURE, SPORT & TOURISM","('SSCI',)","397","0.9","Q4","0.22","0.00" +"IZA Journal of Labor Policy","2193-9004","2193-9004","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","341","0.9","Q3","0.22","100.00" +"Journal of Biologically Active Products from Nature","2231-1866","2231-1874","CHEMISTRY, MEDICINAL","('ESCI',)","401","0.9","Q4","0.22","0.00" +"Journal of Clinical and Experimental Hematopathology","1346-4280","1880-9952","HEMATOLOGY","('ESCI',)","438","0.9","Q4","0.22","99.04" +"Journal of Computer Security","0926-227X","1875-8924","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","595","0.9","Q4","0.22","4.23" +"Journal of Fish and Wildlife Management","1944-687X","1944-687X","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","571","0.9","('Q4', 'Q4')","0.22","96.67" +"Journal of Laboratory Physicians","0974-2727","0974-7826","MEDICINE, GENERAL & INTERNAL","('ESCI',)","943","0.9","Q3","0.22","99.28" +"JOURNAL OF MICROWAVE POWER AND ELECTROMAGNETIC ENERGY","0832-7823","0832-7823","('ENGINEERING, CHEMICAL', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","542","0.9","('Q4', 'Q4', 'Q4')","0.22","3.51" +"Journal of Organizational Ethnography","2046-6749","2046-6757","MANAGEMENT","('ESCI',)","269","0.9","Q4","0.22","15.52" +"JOURNAL OF PORPHYRINS AND PHTHALOCYANINES","1088-4246","1099-1409","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","2,124","0.9","Q4","0.22","2.01" +"Middle East Development Journal","1793-8120","1793-8171","DEVELOPMENT STUDIES","('ESCI',)","171","0.9","Q4","0.22","6.12" +"Processing and Application of Ceramics","1820-6131","2406-1034","MATERIALS SCIENCE, CERAMICS","('SCIE',)","668","0.9","Q3","0.22","50.68" +"Romanian Agricultural Research","1222-4227","","AGRONOMY","('SCIE',)","379","0.9","Q3","0.22","0.00" +"Salmand-Iranian Journal of Ageing","1735-806X","1735-806X","GERIATRICS & GERONTOLOGY","('ESCI',)","380","0.9","Q4","0.22","90.55" +"Tire Science and Technology","0090-8657","1945-5852","ENGINEERING, MECHANICAL","('ESCI',)","352","0.9","Q4","0.22","0.00" +"Turk Kardiyoloji Dernegi Arsivi-Archives of the Turkish Society of Cardiology","1016-5169","1308-4488","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","791","0.9","Q4","0.22","58.68" +"Turk Psikiyatri Dergisi","1300-2163","1300-2163","PSYCHIATRY","('SSCI',)","1,144","0.9","Q4","0.22","97.89" +"Annals of Pediatric Cardiology","0974-2069","0974-5149","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","688","0.9","Q4","0.21","94.27" +"Atmosphere-Korea","1598-3560","2288-3266","METEOROLOGY & ATMOSPHERIC SCIENCES","('ESCI',)","497","0.9","Q4","0.21","0.00" +"Case Reports in Endocrinology","2090-6501","2090-651X","ENDOCRINOLOGY & METABOLISM","('ESCI',)","464","0.9","Q4","0.21","100.00" +"Environmental & Socio-Economic Studies","2354-0079","2354-0079","ENVIRONMENTAL STUDIES","('ESCI',)","223","0.9","Q4","0.21","93.33" +"EUROPEAN PHYSICAL JOURNAL-APPLIED PHYSICS","1286-0042","1286-0050","PHYSICS, APPLIED","('SCIE',)","1,777","0.9","Q4","0.21","14.04" +"Ideggyogyaszati Szemle-Clinical Neuroscience","0019-1442","2498-6208","('CLINICAL NEUROLOGY', 'NEUROSCIENCES')","('SCIE', 'SCIE')","269","0.9","('Q4', 'Q4')","0.21","0.68" +"ISRAEL JOURNAL OF PLANT SCIENCES","0792-9978","2223-8980","PLANT SCIENCES","('SCIE',)","581","0.9","Q4","0.21","9.86" +"IZVESTIYA ATMOSPHERIC AND OCEANIC PHYSICS","0001-4338","1555-628X","('METEOROLOGY & ATMOSPHERIC SCIENCES', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","1,472","0.9","('Q4', 'Q4')","0.21","0.40" +"Journal of Aerospace Technology and Management","1984-9648","2175-9146","ENGINEERING, AEROSPACE","('ESCI',)","542","0.9","Q3","0.21","92.59" +"Journal of Contemporary Water Research & Education","1936-7031","1936-704X","WATER RESOURCES","('ESCI',)","474","0.9","Q4","0.21","0.00" +"Journal of Pediatric Neuropsychology","2199-2681","2199-2673","('CLINICAL NEUROLOGY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, DEVELOPMENTAL')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","84","0.9","('Q4', 'Q4', 'Q4', 'Q4')","0.21","22.22" +"Obra Digital-Revista de Comunicacion","2014-5039","2014-5039","COMMUNICATION","('ESCI',)","51","0.9","Q3","0.21","79.63" +"POWDER METALLURGY AND METAL CERAMICS","1068-1302","1573-9066","('MATERIALS SCIENCE, CERAMICS', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","998","0.9","('Q3', 'Q3')","0.21","0.00" +"SALUD MENTAL","0185-3325","","PSYCHIATRY","('SSCI',)","564","0.9","Q4","0.21","92.23" +"Social Sciences in China","0252-9203","1940-5952","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","812","0.9","Q3","0.21","0.00" +"Structural Integrity and Life-Integritet I Vek Konstrukcija","1451-3749","1820-7863","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","264","0.9","Q3","0.21","0.00" +"INTERNATIONAL JOURNAL OF PATTERN RECOGNITION AND ARTIFICIAL INTELLIGENCE","0218-0014","1793-6381","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","2,136","0.9","Q4","0.20","2.19" +"JOURNAL OF AUTOMATED REASONING","0168-7433","1573-0670","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","828","0.9","Q4","0.20","53.41" +"Journal of Community Hospital Internal Medicine Perspectives","2000-9666","2000-9666","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,016","0.9","Q3","0.20","98.31" +"Journal of Critical Care Medicine","2393-1809","2393-1817","CRITICAL CARE MEDICINE","('ESCI',)","225","0.9","Q4","0.20","100.00" +"Journal of Ovonic Research","1842-2403","1584-9953","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","502","0.9","('Q4', 'Q4')","0.20","0.00" +"Laser & Optoelectronics Progress","1006-4125","1006-4125","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS')","('ESCI', 'ESCI')","3,287","0.9","('Q4', 'Q4')","0.20","0.16" +"Nagoya Journal of Medical Science","2186-3326","0027-7622","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","870","0.9","Q4","0.20","0.00" +"Pathologie","2731-7188","2731-7196","PATHOLOGY","('SCIE',)","699","0.9","Q4","0.20","27.91" +"Pravention und Gesundheitsforderung","1861-6755","1861-6763","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","356","0.9","Q4","0.20","86.29" +"RBRH-Revista Brasileira de Recursos Hidricos","1414-381X","2318-0331","WATER RESOURCES","('ESCI',)","417","0.9","Q4","0.20","95.38" +"Russian Journal of Pacific Geology","1819-7140","1819-7159","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","393","0.9","Q4","0.20","0.65" +"YONAGO ACTA MEDICA","0513-5710","1346-8049","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","500","0.9","Q4","0.20","98.71" +"Zagadnienia Ekonomiki Rolnej","0044-1600","2392-3458","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","110","0.9","Q4","0.20","94.87" +"BULLETIN OF EXPERIMENTAL BIOLOGY AND MEDICINE","0007-4888","1573-8221","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","2,969","0.9","Q4","0.19","0.22" +"Geofizika","0352-3659","1846-6346","('GEOCHEMISTRY & GEOPHYSICS', 'GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES')","('SCIE', 'SCIE', 'SCIE')","224","0.9","('Q4', 'Q4', 'Q4')","0.19","100.00" +"INDIAN JOURNAL OF CANCER","0019-509X","1998-4774","ONCOLOGY","('SCIE',)","1,501","0.9","Q4","0.19","26.42" +"Journal of Geodetic Science","2081-9919","2081-9943","REMOTE SENSING","('ESCI',)","206","0.9","Q4","0.19","93.33" +"Journal of Pancreatology","2096-5664","2577-3577","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","121","0.9","Q4","0.19","100.00" +"Review of Network Economics","2194-5993","1446-9022","ECONOMICS","('SSCI',)","273","0.9","Q3","0.19","4.17" +"South African Journal of Business Management","2078-5585","2078-5976","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","393","0.9","('Q4', 'Q4')","0.19","97.73" +"Water Resources","0097-8078","1608-344X","WATER RESOURCES","('SCIE',)","1,199","0.9","Q4","0.19","1.13" +"Bali Medical Journal","2089-1180","2302-2914","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,326","0.9","Q3","0.18","49.10" +"COMBUSTION EXPLOSION AND SHOCK WAVES","0010-5082","1573-8345","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE', 'SCIE')","2,338","0.9","('Q4', 'Q4', 'Q3', 'Q4', 'Q4')","0.18","0.39" +"Gastrointestinal Disorders","","2624-5647","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","109","0.9","Q4","0.18","100.00" +"Intelligent Data Analysis","1088-467X","1571-4128","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","1,290","0.9","Q4","0.18","3.44" +"PCI JOURNAL","0887-9672","0887-9672","CONSTRUCTION & BUILDING TECHNOLOGY","('SCIE',)","1,454","0.9","Q4","0.18","0.00" +"Rare Tumors","2036-3605","2036-3613","ONCOLOGY","('ESCI',)","438","0.9","Q4","0.18","97.37" +"ACTA PHYSICA POLONICA B","0587-4254","1509-5770","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","1,839","0.9","Q3","0.17","98.77" +"Artery Research","1872-9312","1876-4401","PERIPHERAL VASCULAR DISEASE","('SCIE',)","298","0.9","Q4","0.17","96.08" +"Current Research in Nutrition and Food Science","2347-467X","2322-0007","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","854","0.9","Q4","0.17","97.05" +"Environmental Engineering and Management Journal","1582-9596","1843-3707","ENVIRONMENTAL SCIENCES","('SCIE',)","2,012","0.9","Q4","0.17","0.00" +"Hemato","","2673-6357","HEMATOLOGY","('ESCI',)","96","0.9","Q4","0.17","99.22" +"International Journal of GEOMATE","2186-2982","2186-2990","ENGINEERING, CIVIL","('ESCI',)","1,694","0.9","Q4","0.17","95.66" +"International Journal of Thermodynamics","1301-9724","2146-1511","THERMODYNAMICS","('ESCI',)","299","0.9","Q4","0.17","95.24" +"Journal of Mechanics of Materials and Structures","1559-3959","","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MECHANICS')","('SCIE', 'SCIE')","896","0.9","('Q4', 'Q4')","0.17","0.00" +"Journal of Structural Fire Engineering","2040-2317","2040-2317","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","370","0.9","Q4","0.17","5.83" +"Management and Production Engineering Review","2080-8208","2082-1344","ENGINEERING, INDUSTRIAL","('ESCI',)","439","0.9","Q4","0.17","96.43" +"European Journal of Sustainable Development","2239-5938","2239-6101","ENVIRONMENTAL SCIENCES","('ESCI',)","888","0.9","Q4","0.16","97.48" +"International Journal of Automation Technology","1881-7629","1883-8022","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","750","0.9","Q4","0.16","88.98" +"Journal of Medical Ethics and History of Medicine","2008-0387","2008-0387","MEDICAL ETHICS","('ESCI',)","307","0.9","Q3","0.16","34.48" +"Journal of the Canadian Health Libraries Association","1708-6892","1708-6892","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","168","0.9","Q3","0.16","100.00" +"Review of Business","0034-6454","0034-6454","BUSINESS","('ESCI',)","92","0.9","Q4","0.16","0.00" +"Revista Espanola de Salud Publica","1135-5727","2173-9110","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","1,054","0.9","Q4","0.16","0.00" +"3C Tic","2254-6529","2254-6529","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","73","0.9","Q3","0.15","98.85" +"Acta Chimica Slovaca","1337-978X","1339-3065","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","274","0.9","Q4","0.15","100.00" +"Cardiovascular Innovations and Applications","2009-8618","2009-8782","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","125","0.9","Q4","0.15","100.00" +"Indian Chemical Engineer","0019-4506","0975-007X","ENGINEERING, CHEMICAL","('ESCI',)","384","0.9","Q4","0.15","0.00" +"INORGANIC MATERIALS","0020-1685","1608-3172","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","3,232","0.9","Q4","0.15","0.00" +"Journal of Optoelectronic and Biomedical Materials","2066-0049","2066-0049","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","135","0.9","Q4","0.15","0.00" +"RUSSIAN JOURNAL OF GENERAL CHEMISTRY","1070-3632","1608-3350","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","3,946","0.9","Q4","0.15","2.74" +"3c Tecnologia","2254-4143","2254-4143","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","105","0.9","Q3","0.14","92.16" +"Engenharia Agricola","0100-6916","1809-4430","AGRICULTURAL ENGINEERING","('SCIE',)","1,083","0.9","Q3","0.14","97.21" +"Gestion y Politica Publica","1405-1079","","PUBLIC ADMINISTRATION","('SSCI',)","157","0.9","Q4","0.14","2.22" +"Journal of Intelligence Studies in Business","2001-015X","2001-015X","BUSINESS","('ESCI',)","112","0.9","Q4","0.14","2.13" +"Journal of Inter-Organizational Relationships","2694-3980","2694-3999","BUSINESS","('ESCI',)","12","0.9","Q4","0.14","5.88" +"MOMENTO-Revista de Fisica","0121-4470","0121-4470","PHYSICS, APPLIED","('ESCI',)","29","0.9","Q4","0.14","97.22" +"Prisma Social","1989-3469","1989-3469","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","379","0.9","Q3","0.14","0.61" +"University of Toronto Medical Journal","0833-2207","1913-5440","MEDICINE, GENERAL & INTERNAL","('ESCI',)","88","0.9","Q3","0.14","4.69" +"Canadian Liver Journal","","2561-4444","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","128","0.9","Q4","0.13","3.30" +"Physics and Chemistry of Solid State","1729-4428","2309-8589","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, CONDENSED MATTER')","('ESCI', 'ESCI', 'ESCI')","371","0.9","('Q4', 'Q4', 'Q4')","0.13","90.29" +"Physio-Geo","1958-573X","1958-573X","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","94","0.9","Q4","0.13","85.71" +"Condensed Matter Physics","1607-324X","2224-9079","PHYSICS, CONDENSED MATTER","('SCIE',)","548","0.9","Q4","0.12","96.80" +"Current Organocatalysis","2213-3372","2213-3380","CHEMISTRY, PHYSICAL","('ESCI',)","221","0.9","Q4","0.12","0.00" +"AIMS Allergy and Immunology","2575-615X","2575-615X","IMMUNOLOGY","('ESCI',)","54","0.9","Q4","0.11","100.00" +"HIGH ENERGY CHEMISTRY","0018-1439","1608-3148","CHEMISTRY, PHYSICAL","('SCIE',)","697","0.9","Q4","0.11","0.59" +"International Journal of Nanoscience","0219-581X","1793-5350","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","640","0.9","Q4","0.11","0.50" +"KYBERNETIKA","0023-5954","","COMPUTER SCIENCE, CYBERNETICS","('SCIE',)","999","0.9","Q4","0.11","1.38" +"PHYSICS OF THE SOLID STATE","1063-7834","1090-6460","PHYSICS, CONDENSED MATTER","('SCIE',)","4,278","0.9","Q4","0.11","0.00" +"THERMAL ENGINEERING","0040-6015","1555-6301","('ENERGY & FUELS', 'THERMODYNAMICS')","('ESCI', 'ESCI')","984","0.9","('Q4', 'Q4')","0.11","0.00" +"Current Microwave Chemistry","2213-3356","2213-3364","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","150","0.9","Q4","0.10","4.44" +"CHEMIE IN UNSERER ZEIT","0009-2851","1521-3781","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","327","0.9","Q4","0.07","1.04" +"JOURNAL OF ROMAN STUDIES","0075-4358","1753-528X","CLASSICS","('AHCI',)","1,225","0.8","","5.43","54.17" +"International Journal of Performance Arts and Digital Media","1479-4713","2040-0934","THEATER","('ESCI',)","127","0.8","","3.63","36.71" +"NEW LITERARY HISTORY","0028-6087","1080-661X","LITERATURE","('AHCI',)","1,678","0.8","","3.31","0.00" +"Research in Dance Education","1464-7893","1470-1111","DANCE","('AHCI',)","329","0.8","","3.06","22.02" +"POETICS TODAY","0333-5372","","LITERATURE","('AHCI',)","975","0.8","","2.88","0.00" +"HISTORICAL JOURNAL","0018-246X","1469-5103","HISTORY","('AHCI', 'SSCI')","1,775","0.8","Q1","2.71","63.33" +"Acta Borealia","0800-3831","1503-111X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","119","0.8","","2.67","52.17" +"Contemporary European History","0960-7773","1469-2171","HISTORY","('AHCI', 'SSCI')","629","0.8","Q1","2.48","53.85" +"Journal of Pastoral Care & Counseling","1542-3050","2167-776X","RELIGION","('ESCI',)","285","0.8","","2.29","17.58" +"INTERNATIONAL REVIEW OF SOCIAL HISTORY","0020-8590","1469-512X","HISTORY","('AHCI', 'SSCI')","702","0.8","Q1","2.28","55.70" +"THEATRE JOURNAL","0192-2882","1086-332X","THEATER","('AHCI',)","760","0.8","","2.17","0.00" +"Design Journal","1460-6925","1756-3062","ART","('AHCI',)","1,069","0.8","","2.04","24.84" +"GESTA-INTERNATIONAL CENTER OF MEDIEVAL ART","0016-920X","2169-3099","('ART', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI', 'AHCI')","249","0.8","('N/A', 'N/A')","1.99","0.00" +"Medieval Archaeology","0076-6097","1745-817X","('ARCHAEOLOGY', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI', 'AHCI')","230","0.8","('N/A', 'N/A')","1.91","37.21" +"Heritage and Society","2159-032X","2159-0338","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","232","0.8","","1.89","29.49" +"Journal of Property Planning and Environmental Law","2514-9407","2514-9415","LAW","('ESCI',)","85","0.8","Q2","1.88","7.50" +"Review of Religion and Chinese Society","2214-3947","2214-3955","('ASIAN STUDIES', 'RELIGION')","('ESCI', 'ESCI')","53","0.8","('N/A', 'N/A')","1.84","4.76" +"Journal of the American Philosophical Association","2053-4477","2053-4485","PHILOSOPHY","('AHCI',)","451","0.8","","1.81","44.31" +"JOURNAL OF SOUTHERN HISTORY","0022-4642","2325-6893","HISTORY","('AHCI',)","661","0.8","Q1","1.79","0.00" +"Journal of the Civil War Era","2154-4727","2159-9807","HISTORY","('SSCI',)","192","0.8","Q1","1.76","0.00" +"Journal of Contemporary Religion","1353-7903","1469-9419","RELIGION","('AHCI',)","477","0.8","","1.74","32.47" +"Estetika-The European Journal of Aesthetics","","2571-0915","('ART', 'PHILOSOPHY')","('AHCI', 'AHCI')","59","0.8","('N/A', 'N/A')","1.67","100.00" +"BULLETIN OF THE COUNCIL FOR RESEARCH IN MUSIC EDUCATION","0010-9894","2162-7223","MUSIC","('AHCI',)","402","0.8","","1.65","0.00" +"JOURNAL OF THE AMERICAN ACADEMY OF RELIGION","0002-7189","1477-4585","RELIGION","('AHCI',)","961","0.8","","1.64","14.89" +"JOURNAL OF THE EARLY REPUBLIC","0275-1275","1553-0620","HISTORY","('AHCI',)","487","0.8","Q1","1.63","0.00" +"ENVIRONMENT AND HISTORY","0967-3407","1752-7023","('ENVIRONMENTAL STUDIES', 'HISTORY')","('SSCI', 'AHCI, SSCI')","349","0.8","('Q4', 'Q1')","1.61","1.47" +"Planning Perspectives","0266-5433","1466-4518","('ARCHITECTURE', 'HISTORY', 'HISTORY OF SOCIAL SCIENCES')","('AHCI', 'AHCI', 'SSCI')","708","0.8","('N/A', 'Q1', 'Q2')","1.58","24.07" +"Quaerendo-A Journal Devoted to Manuscripts and Printed Books","0014-9527","1570-0690","LITERATURE","('ESCI',)","82","0.8","","1.58","27.03" +"Journal of Transport History","0022-5266","1759-3999","HISTORY","('ESCI',)","189","0.8","Q1","1.57","40.38" +"Critical Studies in Fashion & Beauty","2040-4417","2040-4425","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","74","0.8","","1.55","0.00" +"ERKENNTNIS","0165-0106","1572-8420","PHILOSOPHY","('AHCI',)","1,829","0.8","","1.54","45.24" +"Middle East Critique","1943-6149","1943-6157","AREA STUDIES","('SSCI',)","378","0.8","Q2","1.53","27.59" +"New Global Studies","1940-0004","1940-0004","HISTORY","('ESCI',)","112","0.8","Q1","1.50","13.04" +"HUSSERL STUDIES","0167-9848","1572-8501","PHILOSOPHY","('AHCI',)","210","0.8","","1.45","26.83" +"AMERICAN PHILOSOPHICAL QUARTERLY","0003-0481","2152-1123","PHILOSOPHY","('AHCI',)","1,253","0.8","","1.35","0.00" +"Archives and Records-The Journal of the Archives and Records Association","2325-7962","2325-7989","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","126","0.8","","1.34","34.78" +"SOUTHERN JOURNAL OF PHILOSOPHY","0038-4283","2041-6962","PHILOSOPHY","('AHCI',)","663","0.8","","1.34","29.57" +"Law and History Review","0738-2480","1939-9022","('HISTORY', 'HISTORY OF SOCIAL SCIENCES', 'LAW')","('AHCI, SSCI', 'SSCI', 'SSCI')","683","0.8","('Q1', 'Q2', 'Q2')","1.33","49.04" +"PHILOSOPHY","0031-8191","1469-817X","PHILOSOPHY","('AHCI',)","1,071","0.8","","1.33","26.39" +"Japan Architectural Review","2475-8876","2475-8876","ARCHITECTURE","('ESCI',)","254","0.8","","1.32","89.18" +"Archive for the Psychology of Religion-Archiv fur Religionspsychologie","0084-6724","1573-6121","('PSYCHOLOGY, MULTIDISCIPLINARY', 'RELIGION')","('SSCI', 'AHCI')","290","0.8","('Q3', 'N/A')","1.31","11.11" +"Journal of Law and Courts","2164-6570","2164-6589","LAW","('ESCI',)","272","0.8","Q2","1.31","21.31" +"LAW AND CRITIQUE","0957-8536","1572-8617","LAW","('ESCI',)","366","0.8","Q2","1.31","58.44" +"African Studies Review","0002-0206","1555-2462","AREA STUDIES","('SSCI',)","1,144","0.8","Q2","1.28","44.09" +"Southeast European and Black Sea Studies","1468-3857","1743-9639","AREA STUDIES","('SSCI',)","675","0.8","Q2","1.28","16.08" +"Childhood in the Past","1758-5716","2040-8528","('ANTHROPOLOGY', 'ARCHAEOLOGY', 'HISTORY')","('ESCI', 'ESCI', 'ESCI')","34","0.8","('Q3', 'N/A', 'Q1')","1.25","30.77" +"Management & Organizational History","1744-9359","1744-9367","('HISTORY', 'HISTORY OF SOCIAL SCIENCES', 'MANAGEMENT')","('SSCI', 'SSCI', 'SSCI')","289","0.8","('Q1', 'Q2', 'Q4')","1.23","26.19" +"Philosophia Mathematica","0031-8019","1744-6406","('HISTORY & PHILOSOPHY OF SCIENCE', 'PHILOSOPHY')","('SCIE', 'AHCI')","264","0.8","('Q2', 'N/A')","1.23","13.64" +"International Journal of the History of Sport","0952-3367","1743-9035","('HISTORY', 'HOSPITALITY, LEISURE, SPORT & TOURISM')","('AHCI, SSCI', 'SSCI')","1,435","0.8","('Q1', 'Q4')","1.19","13.36" +"INTELLIGENCE AND NATIONAL SECURITY","0268-4527","1743-9019","('HISTORY', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI', 'SSCI')","845","0.8","('Q1', 'Q3', 'Q3')","1.18","34.74" +"Journal of Beliefs & Values-Studies in Religion & Education","1361-7672","1469-9362","('EDUCATION & EDUCATIONAL RESEARCH', 'RELIGION')","('SSCI', 'AHCI')","382","0.8","('Q3', 'N/A')","1.17","27.82" +"World Englishes","0883-2919","1467-971X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","1,220","0.8","('N/A', 'Q3')","1.10","44.44" +"Australian Feminist Law Journal","1320-0968","2204-0064","LAW","('ESCI',)","255","0.8","Q2","1.06","30.23" +"Constitutional Political Economy","1043-4062","1572-9966","LAW","('ESCI',)","891","0.8","Q2","1.06","41.57" +"European Law Review","0307-5400","","LAW","('SSCI',)","402","0.8","Q2","1.04","0.00" +"Insight on Africa","0975-0878","0976-3465","AREA STUDIES","('ESCI',)","92","0.8","Q2","1.04","18.42" +"Middle East Law and Governance","1876-3367","1876-3375","LAW","('ESCI',)","207","0.8","Q2","1.04","15.69" +"JOURNAL OF LINGUISTICS","0022-2267","1469-7742","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","967","0.8","('N/A', 'Q3')","1.02","50.53" +"British Journal for the History of Philosophy","0960-8788","1469-3526","PHILOSOPHY","('AHCI',)","605","0.8","","1.00","31.18" +"Bulletin of Latin American Research","0261-3050","1470-9856","AREA STUDIES","('SSCI',)","630","0.8","Q2","0.98","29.46" +"Journal of Contemporary African Studies","0258-9001","1469-9397","AREA STUDIES","('ESCI',)","524","0.8","Q2","0.97","8.16" +"NATURAL LANGUAGE & LINGUISTIC THEORY","0167-806X","1573-0859","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","1,540","0.8","('N/A', 'Q3')","0.97","50.00" +"Mediterranean Archaeology & Archaeometry","1108-9628","2241-8121","ARCHAEOLOGY","('AHCI',)","560","0.8","","0.94","0.00" +"Modern Theology","0266-7177","1468-0025","RELIGION","('AHCI',)","394","0.8","","0.94","40.00" +"Journal of the International Phonetic Association","0025-1003","1475-3502","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","659","0.8","('N/A', 'Q3')","0.92","39.82" +"London Review of International Law","2050-6325","2050-6333","LAW","('ESCI',)","235","0.8","Q2","0.92","30.51" +"Journal of North African Studies","1362-9387","1743-9345","AREA STUDIES","('ESCI',)","648","0.8","Q2","0.91","14.88" +"Continuum-Journal of Media & Cultural Studies","1030-4312","1469-3666","('COMMUNICATION', 'CULTURAL STUDIES', 'FILM, RADIO, TELEVISION')","('SSCI', 'AHCI, SSCI', 'AHCI')","1,054","0.8","('Q3', 'Q3', 'N/A')","0.89","25.99" +"Journal of Applied Mathematics and Computational Mechanics","2299-9965","2353-0588","MATHEMATICS","('ESCI',)","188","0.8","Q2","0.89","100.00" +"PUBLICACIONS MATEMATIQUES","0214-1493","0214-1493","MATHEMATICS","('SCIE',)","535","0.8","Q2","0.89","0.00" +"Communications in Combinatorics and Optimization","2538-2128","2538-2136","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","207","0.8","('Q2', 'Q3')","0.88","0.00" +"HISTORY OF THE HUMAN SCIENCES","0952-6951","1461-720X","('HISTORY & PHILOSOPHY OF SCIENCE', 'HISTORY OF SOCIAL SCIENCES')","('AHCI, SCIE, SSCI', 'SSCI')","783","0.8","('Q2', 'Q2')","0.88","40.59" +"Decision Sciences-Journal of Innovative Education","1540-4595","1540-4609","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","539","0.8","Q3","0.87","12.96" +"Constructions and Frames","1876-1933","1876-1941","LANGUAGE & LINGUISTICS","('ESCI',)","110","0.8","","0.86","10.34" +"Journal of Topology","1753-8416","1753-8424","MATHEMATICS","('SCIE',)","696","0.8","Q2","0.86","26.52" +"Democratic Theory-An Interdisciplinary Journal","2332-8894","2332-8908","POLITICAL SCIENCE","('ESCI',)","166","0.8","Q3","0.85","85.71" +"Pastoral Psychology","0031-2789","1573-6679","('PSYCHOLOGY, MULTIDISCIPLINARY', 'RELIGION')","('ESCI', 'ESCI')","638","0.8","('Q3', 'N/A')","0.85","21.18" +"European Review","1062-7987","1474-0575","AREA STUDIES","('SSCI',)","616","0.8","Q2","0.84","40.98" +"Child Language Teaching & Therapy","0265-6590","1477-0865","('EDUCATION, SPECIAL', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","554","0.8","('Q4', 'N/A', 'Q3')","0.83","31.91" +"Journal of Comparative Germanic Linguistics","1383-4924","1572-8552","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","133","0.8","('N/A', 'Q3')","0.82","80.00" +"Melbourne University Law Review","0025-8938","1839-3810","LAW","('SSCI',)","504","0.8","Q2","0.82","0.00" +"Norwegian Archaeological Review","0029-3652","1502-7678","ARCHAEOLOGY","('AHCI',)","248","0.8","","0.82","52.00" +"Tunisian Journal of Mathematics","2576-7658","2576-7666","MATHEMATICS","('ESCI',)","72","0.8","Q2","0.81","0.00" +"Jurnal Cita Hukum-Indonesian Law Journal","2356-1440","2502-230X","LAW","('ESCI',)","64","0.8","Q2","0.80","84.54" +"Turkish Journal of Mathematics","1300-0098","1303-6149","MATHEMATICS","('SCIE',)","1,662","0.8","Q2","0.80","0.00" +"MATHEMATISCHE NACHRICHTEN","0025-584X","1522-2616","MATHEMATICS","('SCIE',)","3,220","0.8","Q2","0.78","19.42" +"JOURNAL D ANALYSE MATHEMATIQUE","0021-7670","1565-8538","MATHEMATICS","('SCIE',)","1,828","0.8","Q2","0.77","12.83" +"JOURNAL OF ALGEBRA","0021-8693","1090-266X","MATHEMATICS","('SCIE',)","10,264","0.8","Q2","0.77","19.74" +"Comparative Studies of South Asia Africa and the Middle East","1089-201X","1548-226X","AREA STUDIES","('ESCI',)","815","0.8","Q2","0.76","0.00" +"Georgian Mathematical Journal","1072-947X","1572-9176","MATHEMATICS","('SCIE',)","672","0.8","Q2","0.76","1.32" +"POSITIVITY","1385-1292","1572-9281","MATHEMATICS","('SCIE',)","799","0.8","Q2","0.76","14.02" +"EXPOSITIONES MATHEMATICAE","0723-0869","1878-0792","MATHEMATICS","('SCIE',)","623","0.8","Q2","0.74","29.32" +"Advances in Operator Theory","2662-2009","2538-225X","MATHEMATICS","('ESCI',)","278","0.8","Q2","0.73","6.70" +"Vietnam Journal of Mathematics","2305-221X","2305-2228","MATHEMATICS","('ESCI',)","442","0.8","Q2","0.73","29.65" +"BULLETIN OF THE LONDON MATHEMATICAL SOCIETY","0024-6093","1469-2120","MATHEMATICS","('SCIE',)","2,544","0.8","Q2","0.72","29.46" +"ISRAEL JOURNAL OF MATHEMATICS","0021-2172","1565-8511","MATHEMATICS","('SCIE',)","4,031","0.8","Q2","0.72","3.51" +"MONATSHEFTE FUR MATHEMATIK","0026-9255","1436-5081","MATHEMATICS","('SCIE',)","1,753","0.8","Q2","0.72","21.32" +"NAGOYA MATHEMATICAL JOURNAL","0027-7630","2152-6842","MATHEMATICS","('SCIE',)","1,112","0.8","Q2","0.72","25.78" +"OSGOODE HALL LAW JOURNAL","0030-6185","0030-6185","LAW","('ESCI',)","339","0.8","Q2","0.72","0.00" +"SBORNIK MATHEMATICS","1064-5616","1468-4802","MATHEMATICS","('SCIE',)","3,038","0.8","Q2","0.72","0.47" +"Differential Equations and Dynamical Systems","0971-3514","0974-6870","MATHEMATICS, APPLIED","('ESCI',)","859","0.8","Q3","0.71","3.98" +"Global Responsibility to Protect","1875-9858","1875-984X","('INTERNATIONAL RELATIONS', 'LAW', 'POLITICAL SCIENCE')","('ESCI', 'ESCI', 'ESCI')","212","0.8","('Q3', 'Q2', 'Q3')","0.71","39.66" +"HESPERIA","0018-098X","1553-5622","ARCHAEOLOGY","('AHCI',)","764","0.8","","0.71","0.00" +"Journal of English as a Lingua Franca","2191-9216","2191-933X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","198","0.8","('N/A', 'Q3')","0.71","21.21" +"JOURNAL OF PHILOSOPHY OF EDUCATION","0309-8249","1467-9752","('EDUCATION & EDUCATIONAL RESEARCH', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","1,041","0.8","('Q3', 'Q2')","0.70","34.67" +"Frontiers of Mathematics in China","1673-3452","1673-3576","MATHEMATICS","('SCIE',)","654","0.8","Q2","0.69","0.00" +"Global Constitutionalism","2045-3817","2045-3825","('INTERNATIONAL RELATIONS', 'LAW', 'POLITICAL SCIENCE')","('ESCI', 'ESCI', 'ESCI')","137","0.8","('Q3', 'Q2', 'Q3')","0.69","58.90" +"INTEGRAL EQUATIONS AND OPERATOR THEORY","0378-620X","1420-8989","MATHEMATICS","('SCIE',)","1,552","0.8","Q2","0.69","29.55" +"International Journal of Technology Enhanced Learning","1753-5255","1753-5263","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","362","0.8","Q3","0.69","0.00" +"IZVESTIYA MATHEMATICS","1064-5632","1468-4810","MATHEMATICS","('SCIE',)","764","0.8","Q2","0.68","0.00" +"LAW AND PHILOSOPHY","0167-5249","1573-0522","('ETHICS', 'LAW')","('SSCI', 'SSCI')","645","0.8","('Q3', 'Q2')","0.68","33.33" +"COMPTES RENDUS MATHEMATIQUE","1631-073X","1778-3569","MATHEMATICS","('SCIE',)","2,720","0.8","Q2","0.67","99.74" +"Language and Dialogue","2210-4119","2210-4127","LANGUAGE & LINGUISTICS","('ESCI',)","163","0.8","","0.67","5.17" +"Lobachevskii Journal of Mathematics","1995-0802","1818-9962","MATHEMATICS","('ESCI',)","1,205","0.8","Q2","0.67","0.43" +"ZEITSCHRIFT FUR PSYCHOSOMATISCHE MEDIZIN UND PSYCHOTHERAPIE","1438-3608","2196-8349","('PSYCHIATRY', 'PSYCHOLOGY', 'PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, MULTIDISCIPLINARY', 'PSYCHOLOGY, PSYCHOANALYSIS')","('SCIE', 'SCIE', 'SSCI', 'SSCI', 'SSCI')","414","0.8","('Q4', 'Q4', 'Q4', 'Q3', 'Q2')","0.67","33.90" +"ARDEA","0373-2266","2213-1175","ORNITHOLOGY","('SCIE',)","1,177","0.8","Q3","0.66","0.00" +"English Teaching-Practice and Critique","1175-8708","1175-8708","('EDUCATION & EDUCATIONAL RESEARCH', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","405","0.8","('Q3', 'N/A', 'Q3')","0.66","0.00" +"ERGODIC THEORY AND DYNAMICAL SYSTEMS","0143-3857","1469-4417","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,770","0.8","('Q2', 'Q3')","0.66","24.54" +"European Journal of Applied Linguistics","2192-9521","2192-953X","LINGUISTICS","('ESCI',)","190","0.8","Q3","0.66","24.14" +"Special Matrices","2300-7451","2300-7451","MATHEMATICS","('ESCI',)","159","0.8","Q2","0.66","97.37" +"English World-Wide","0172-8865","1569-9730","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","391","0.8","('N/A', 'Q3')","0.65","4.65" +"MATHEMATIKA","0025-5793","2041-7942","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,065","0.8","('Q2', 'Q3')","0.65","28.48" +"MICHIGAN MATHEMATICAL JOURNAL","0026-2285","1945-2365","MATHEMATICS","('SCIE',)","1,404","0.8","Q2","0.65","0.00" +"AFRICAN JOURNAL OF HERPETOLOGY","2156-4574","2153-3660","ZOOLOGY","('SCIE',)","193","0.8","Q3","0.64","9.52" +"PROCEEDINGS OF THE AMERICAN MATHEMATICAL SOCIETY","0002-9939","1088-6826","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","14,468","0.8","('Q2', 'Q3')","0.64","67.69" +"ANNALES DE L INSTITUT FOURIER","0373-0956","1777-5310","MATHEMATICS","('SCIE',)","2,612","0.8","Q2","0.63","50.00" +"Journal of Mathematical Study","2096-9856","2617-8702","MATHEMATICS","('ESCI',)","142","0.8","Q2","0.63","98.65" +"TECHNOLOGY AND CULTURE","0040-165X","1097-3729","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","1,187","0.8","Q2","0.63","4.51" +"ELECTRONIC TRANSACTIONS ON NUMERICAL ANALYSIS","1068-9613","1068-9613","MATHEMATICS, APPLIED","('SCIE',)","755","0.8","Q3","0.62","0.00" +"GERONTOLOGY & GERIATRICS EDUCATION","0270-1960","1545-3847","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","676","0.8","Q3","0.62","10.74" +"International Criminal Law Review","1567-536X","1571-8123","LAW","('ESCI',)","356","0.8","Q2","0.62","20.69" +"Journal of Nietzsche Studies","0968-8005","1538-4594","PHILOSOPHY","('AHCI',)","179","0.8","","0.62","0.00" +"INTERNATIONAL JOURNAL OF LEXICOGRAPHY","0950-3846","1477-4577","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","451","0.8","('N/A', 'Q3')","0.61","13.89" +"Texto Livre-Linguagem e Tecnologia","1983-3652","1983-3652","LANGUAGE & LINGUISTICS","('ESCI',)","163","0.8","","0.61","95.86" +"ACTA ORNITHOLOGICA","0001-6454","1734-8471","ORNITHOLOGY","('SCIE',)","589","0.8","Q3","0.60","0.00" +"Ethnography","1466-1381","1741-2714","('ANTHROPOLOGY', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,554","0.8","('Q3', 'Q3')","0.60","19.86" +"JMM-International Journal on Media Management","1424-1277","1424-1250","COMMUNICATION","('ESCI',)","290","0.8","Q3","0.59","0.00" +"MAMMALIA","0025-1461","1864-1547","ZOOLOGY","('SCIE',)","1,618","0.8","Q3","0.59","4.40" +"New Zealand Economic Papers","0077-9954","1943-4863","ECONOMICS","('ESCI',)","192","0.8","Q3","0.59","16.46" +"Nursing-Research and Reviews","2230-522X","2230-522X","NURSING","('ESCI',)","95","0.8","Q4","0.59","100.00" +"International Journal of Care Coordination","2053-4345","2053-4353","NURSING","('ESCI',)","143","0.8","Q4","0.58","21.95" +"International Journal of Public Leadership","2056-4929","2042-8642","PUBLIC ADMINISTRATION","('ESCI',)","214","0.8","Q4","0.58","6.67" +"Intertax","0165-2826","1875-8347","LAW","('ESCI',)","412","0.8","Q2","0.58","0.00" +"Israel Studies Review","2159-0370","2159-0389","AREA STUDIES","('ESCI',)","152","0.8","Q2","0.58","0.00" +"ISSUES & STUDIES","1013-2511","2529-802X","('AREA STUDIES', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('ESCI', 'ESCI', 'ESCI')","188","0.8","('Q2', 'Q3', 'Q3')","0.58","0.00" +"STUDIES IN CONSERVATION","0039-3630","2047-0584","('ARCHAEOLOGY', 'ART', 'CHEMISTRY, ANALYTICAL', 'CHEMISTRY, APPLIED', 'SPECTROSCOPY')","('AHCI', 'AHCI', 'SCIE', 'SCIE', 'SCIE')","2,215","0.8","('N/A', 'N/A', 'Q4', 'Q4', 'Q4')","0.58","25.13" +"CLINICAL LINGUISTICS & PHONETICS","0269-9206","1464-5076","('AUDIOLOGY & SPEECH', 'LINGUISTICS', 'REHABILITATION')","('SCIE', 'SSCI', 'SCIE, SSCI')","1,632","0.8","('Q4', 'Q3', 'Q4')","0.57","19.57" +"Revista de Psicologia Clinica con Ninos y Adolescentes","2340-8340","2340-8340","PSYCHOLOGY, DEVELOPMENTAL","('ESCI',)","255","0.8","Q4","0.57","79.17" +"Stochastics and Dynamics","0219-4937","1793-6799","STATISTICS & PROBABILITY","('SCIE',)","816","0.8","Q3","0.57","3.45" +"GLOBAL GOVERNANCE","1075-2846","1942-6720","INTERNATIONAL RELATIONS","('SSCI',)","1,025","0.8","Q3","0.56","27.63" +"ARKIV FOR MATEMATIK","0004-2080","1871-2487","MATHEMATICS","('SCIE',)","884","0.8","Q2","0.55","83.64" +"Journal for Multicultural Education","2053-535X","2053-535X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","272","0.8","Q3","0.55","10.43" +"Journal of Continuing Higher Education","0737-7363","1948-4801","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","256","0.8","Q3","0.55","1.85" +"Qualitative Research Journal","1443-9883","1448-0980","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","1,458","0.8","Q3","0.55","8.47" +"THEORIA-REVISTA DE TEORIA HISTORIA Y FUNDAMENTOS DE LA CIENCIA","0495-4548","2171-679X","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI',)","887","0.8","Q2","0.55","88.33" +"ACTA MATHEMATICA SINICA-ENGLISH SERIES","1439-8516","1439-7617","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,859","0.8","('Q2', 'Q3')","0.54","0.00" +"Australian Journal of Forensic Sciences","0045-0618","1834-562X","MEDICINE, LEGAL","('SCIE',)","683","0.8","Q4","0.54","12.80" +"Bulletin of Irkutsk State University-Series Mathematics","1997-7670","2541-8785","MATHEMATICS","('ESCI',)","123","0.8","Q2","0.54","100.00" +"Encuentro-Revista de Investigacion e Innovacion en la Clase de Idiomas","1989-0796","1989-0796","LINGUISTICS","('ESCI',)","88","0.8","Q3","0.54","0.00" +"PROSTHETICS AND ORTHOTICS INTERNATIONAL","0309-3646","1746-1553","('ORTHOPEDICS', 'REHABILITATION')","('SCIE', 'SCIE')","2,548","0.8","('Q4', 'Q4')","0.54","8.37" +"Student Success","2205-0795","2205-0795","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","264","0.8","Q3","0.54","98.70" +"TRIPLEC-Communication Capitalism & Critique","1726-670X","1726-670X","COMMUNICATION","('ESCI',)","1,384","0.8","Q3","0.54","4.44" +"Analele Stiintifice ale Universitatii Ovidius Constanta-Seria Matematica","1224-1784","1844-0835","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","359","0.8","('Q2', 'Q3')","0.53","47.24" +"DIFFERENTIAL EQUATIONS","0012-2661","1608-3083","MATHEMATICS","('SCIE',)","3,001","0.8","Q2","0.53","1.53" +"Educational Action Research","0965-0792","1747-5074","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,073","0.8","Q3","0.53","33.33" +"Fat Studies-An Interdisciplinary Journal of Body Weight and Society","2160-4851","2160-486X","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","199","0.8","Q3","0.53","18.82" +"Geografisk Tidsskrift-Danish Journal of Geography","0016-7223","1903-2471","('ENVIRONMENTAL STUDIES', 'GEOGRAPHY')","('SSCI', 'SSCI')","351","0.8","('Q4', 'Q3')","0.53","13.04" +"Journal of Pediatric Rehabilitation Medicine","1874-5393","1875-8894","PEDIATRICS","('ESCI',)","846","0.8","Q4","0.53","16.24" +"Zootaxa","1175-5326","1175-5334","ZOOLOGY","('SCIE',)","24,858","0.8","Q3","0.53","0.05" +"Mental Health and Social Inclusion","2042-8316","2042-8308","SOCIAL WORK","('ESCI',)","355","0.8","Q4","0.52","4.12" +"Text & Talk","1860-7330","1860-7349","('COMMUNICATION', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","766","0.8","('Q3', 'N/A', 'Q3')","0.52","18.75" +"Econometric Reviews","0747-4938","1532-4168","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","2,705","0.8","('Q3', 'Q4', 'Q4', 'Q3')","0.51","19.05" +"Filomat","0354-5180","0354-5180","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","3,854","0.8","('Q2', 'Q3')","0.51","81.20" +"HERPETOZOA","1013-4425","1013-4425","ZOOLOGY","('SCIE',)","393","0.8","Q3","0.51","95.33" +"Interaction Design and Architectures","1826-9745","2283-2998","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","246","0.8","Q3","0.51","17.65" +"Voluntary Sector Review","2040-8056","2040-8064","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","306","0.8","Q3","0.51","16.35" +"CANADIAN JOURNAL OF VETERINARY RESEARCH-REVUE CANADIENNE DE RECHERCHE VETERINAIRE","","1928-9022","VETERINARY SCIENCES","('SCIE',)","1,474","0.8","Q3","0.50","0.00" +"Electronic Journal of Differential Equations","1072-6691","","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,367","0.8","('Q2', 'Q3')","0.50","15.67" +"JOURNAL OF COMPARATIVE FAMILY STUDIES","0047-2328","1929-9850","FAMILY STUDIES","('SSCI',)","1,042","0.8","Q4","0.50","0.00" +"Journal of Statistical Planning and Inference","0378-3758","1873-1171","STATISTICS & PROBABILITY","('SCIE',)","4,406","0.8","Q3","0.50","18.37" +"STOCHASTIC ANALYSIS AND APPLICATIONS","0736-2994","1532-9356","('MATHEMATICS, APPLIED', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","1,197","0.8","('Q3', 'Q3')","0.50","6.25" +"European Journal of Probation","2066-2203","2066-2203","CRIMINOLOGY & PENOLOGY","('ESCI',)","164","0.8","Q4","0.49","40.54" +"Preventing School Failure","1045-988X","1940-4387","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","723","0.8","Q3","0.49","4.44" +"Tejuelo-Didactica de la Lengua y la Literatura","1988-8430","1988-8430","LANGUAGE & LINGUISTICS","('ESCI',)","145","0.8","","0.49","93.06" +"AUSTRALIAN & NEW ZEALAND JOURNAL OF STATISTICS","1369-1473","1467-842X","STATISTICS & PROBABILITY","('SCIE',)","704","0.8","Q3","0.48","14.10" +"Disegnarecon","1828-5961","1828-5961","ARCHITECTURE","('ESCI',)","128","0.8","","0.48","0.00" +"Eurasian Journal of Educational Research","1302-597X","2528-8911","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","891","0.8","Q3","0.48","27.70" +"Homology Homotopy and Applications","1532-0073","1532-0081","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","468","0.8","('Q2', 'Q3')","0.48","0.00" +"JOURNAL OF NONPARAMETRIC STATISTICS","1048-5252","1029-0311","STATISTICS & PROBABILITY","('SCIE',)","1,013","0.8","Q3","0.48","12.08" +"REGULAR & CHAOTIC DYNAMICS","1560-3547","1468-4845","('MATHEMATICS, APPLIED', 'MECHANICS', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE', 'SCIE')","759","0.8","('Q3', 'Q4', 'Q4')","0.48","2.21" +"South African Journal of International Affairs-SAJIA","1022-0461","1938-0275","INTERNATIONAL RELATIONS","('ESCI',)","249","0.8","Q3","0.48","25.56" +"Stochastics-An International Journal of Probability and Stochastic Processes","1744-2508","1744-2516","('MATHEMATICS, APPLIED', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","961","0.8","('Q3', 'Q3')","0.48","10.56" +"JOURNAL OF HERPETOLOGY","0022-1511","1937-2418","ZOOLOGY","('SCIE',)","3,476","0.8","Q3","0.47","0.65" +"Journal of Transformative Education","1541-3446","1552-7840","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","908","0.8","Q3","0.47","22.97" +"MAMMAL STUDY","1343-4152","1348-6160","ZOOLOGY","('SCIE',)","495","0.8","Q3","0.47","0.00" +"Public Archaeology","1465-5187","1753-5530","ARCHAEOLOGY","('AHCI',)","196","0.8","","0.47","37.50" +"SCANDINAVIAN JOURNAL OF STATISTICS","0303-6898","1467-9469","STATISTICS & PROBABILITY","('SCIE',)","3,822","0.8","Q3","0.47","35.88" +"European Physical Journal H","2102-6459","2102-6467","('HISTORY & PHILOSOPHY OF SCIENCE', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","224","0.8","('Q2', 'Q3')","0.46","42.11" +"Journal of Community Health Nursing","0737-0016","1532-7655","NURSING","('SCIE', 'SSCI')","432","0.8","Q4","0.46","1.30" +"Teacher Development","1366-4530","1747-5120","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","672","0.8","Q3","0.46","19.01" +"ANATOMIA HISTOLOGIA EMBRYOLOGIA","0340-2096","1439-0264","('ANATOMY & MORPHOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","1,333","0.8","('Q4', 'Q3')","0.45","8.72" +"ANNALS OF THE INSTITUTE OF STATISTICAL MATHEMATICS","0020-3157","1572-9052","STATISTICS & PROBABILITY","('SCIE',)","1,917","0.8","Q3","0.45","0.00" +"International Journal of Assessment Tools in Education","2148-7456","2148-7456","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","343","0.8","Q3","0.45","93.55" +"JOURNAL OF EDUCATIONAL AND PSYCHOLOGICAL CONSULTATION","1047-4412","1532-768X","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","615","0.8","Q4","0.45","3.57" +"Journal of the Indian Society for Probability and Statistics","","2364-9569","STATISTICS & PROBABILITY","('ESCI',)","98","0.8","Q3","0.45","3.75" +"School Science and Mathematics","0036-6803","1949-8594","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,221","0.8","Q3","0.45","21.77" +"South African Journal of Childhood Education","2223-7674","2223-7682","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","378","0.8","Q3","0.45","98.21" +"STUDIES ON NEOTROPICAL FAUNA AND ENVIRONMENT","0165-0521","1744-5140","ZOOLOGY","('SCIE',)","809","0.8","Q3","0.45","4.26" +"Ulusal Travma ve Acil Cerrahi Dergisi-Turkish Journal of Trauma & Emergency Surgery","1306-696X","1307-7945","EMERGENCY MEDICINE","('SCIE',)","1,430","0.8","Q4","0.45","32.62" +"Veterinary Research Forum","2008-8140","2322-3618","ZOOLOGY","('SCIE',)","878","0.8","Q3","0.45","0.00" +"Corpora","1749-5032","1755-1676","LINGUISTICS","('ESCI',)","355","0.8","Q3","0.44","3.64" +"DREAMING","1053-0797","1573-3351","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","541","0.8","Q3","0.44","0.99" +"EDUCATION AND URBAN SOCIETY","0013-1245","1552-3535","('EDUCATION & EDUCATIONAL RESEARCH', 'URBAN STUDIES')","('SSCI', 'SSCI')","1,018","0.8","('Q3', 'Q3')","0.44","5.76" +"HNO","0017-6192","1433-0458","OTORHINOLARYNGOLOGY","('SCIE',)","1,288","0.8","Q4","0.44","49.15" +"Home Health Care Management and Practice","1084-8223","1552-6739","NURSING","('ESCI',)","432","0.8","Q4","0.44","15.65" +"ICHNOS-AN INTERNATIONAL JOURNAL FOR PLANT AND ANIMAL TRACES","1042-0940","1563-5236","PALEONTOLOGY","('SCIE',)","803","0.8","Q4","0.44","9.26" +"Pegem Egitim ve Ogretim Dergisi","2148-239X","2148-239X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","250","0.8","Q3","0.44","15.32" +"SCHWEIZER ARCHIV FUR TIERHEILKUNDE","0036-7281","1664-2848","VETERINARY SCIENCES","('SCIE',)","664","0.8","Q3","0.44","0.00" +"ANTHROPOLOGICAL QUARTERLY","0003-5491","1534-1518","ANTHROPOLOGY","('SSCI',)","1,247","0.8","Q3","0.43","0.00" +"Colombia Internacional","0121-5612","1900-6004","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('ESCI', 'ESCI')","246","0.8","('Q3', 'Q3')","0.43","100.00" +"DEVELOPMENT GENES AND EVOLUTION","0949-944X","1432-041X","('CELL BIOLOGY', 'DEVELOPMENTAL BIOLOGY', 'EVOLUTIONARY BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,396","0.8","('Q4', 'Q4', 'Q4')","0.43","37.84" +"MARINE ORNITHOLOGY","1018-3337","2074-1235","ORNITHOLOGY","('SCIE',)","577","0.8","Q3","0.43","0.00" +"Nordic Journal of Migration Research","1799-649X","1799-649X","DEMOGRAPHY","('ESCI',)","373","0.8","Q4","0.43","98.72" +"Nursing and Midwifery Studies","2322-1488","2322-1674","NURSING","('ESCI',)","407","0.8","Q4","0.43","27.19" +"Pflege","1012-5302","1664-283X","NURSING","('SCIE', 'SSCI')","247","0.8","Q4","0.43","12.03" +"Power and Education","","1757-7438","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","243","0.8","Q3","0.43","48.84" +"ACTA ICHTHYOLOGICA ET PISCATORIA","0137-1592","1734-1515","('FISHERIES', 'ZOOLOGY')","('SCIE', 'SCIE')","604","0.8","('Q3', 'Q3')","0.42","99.13" +"Canadian Ethnic Studies-Etudes Ethniques au Canada","0008-3496","1913-8253","ETHNIC STUDIES","('ESCI',)","321","0.8","Q3","0.42","0.00" +"COMMUNICATIONS IN STATISTICS-SIMULATION AND COMPUTATION","0361-0918","1532-4141","STATISTICS & PROBABILITY","('SCIE',)","4,347","0.8","Q3","0.42","2.49" +"Education as Change","1682-3206","1947-9417","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","312","0.8","Q3","0.42","86.89" +"International Indigenous Policy Journal","1916-5781","1916-5781","('ANTHROPOLOGY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","444","0.8","('Q3', 'Q3')","0.42","78.85" +"International Journal of Health Promotion and Education","1463-5240","2164-9545","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","353","0.8","Q3","0.42","18.25" +"Iranian Journal of Veterinary Research","1728-1997","","VETERINARY SCIENCES","('SCIE',)","799","0.8","Q3","0.42","0.00" +"Journal of Asian Security and International Affairs","2347-7970","2349-0039","INTERNATIONAL RELATIONS","('ESCI',)","111","0.8","Q3","0.42","5.17" +"PERSPECTIVES IN BIOLOGY AND MEDICINE","0031-5982","1529-8795","('HISTORY & PHILOSOPHY OF SCIENCE', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","1,166","0.8","('Q2', 'Q4')","0.42","0.00" +"AJP Reports","2157-6998","2157-7005","PEDIATRICS","('ESCI',)","472","0.8","Q4","0.41","100.00" +"Communication Today","1338-130X","1338-130X","COMMUNICATION","('ESCI',)","140","0.8","Q3","0.41","0.00" +"EQUINE VETERINARY EDUCATION","0957-7734","2042-3292","VETERINARY SCIENCES","('SCIE',)","1,828","0.8","Q3","0.41","27.17" +"FWU Journal of Social Sciences","1995-1272","1995-1272","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","218","0.8","Q3","0.41","0.00" +"Iranian Journal of Kidney Diseases","1735-8582","1735-8604","UROLOGY & NEPHROLOGY","('SCIE',)","789","0.8","Q4","0.41","0.70" +"Journal of Investigative Psychology and Offender Profiling","1544-4759","1544-4767","('CRIMINOLOGY & PENOLOGY', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","377","0.8","('Q4', 'Q4')","0.41","35.56" +"JOURNAL OF RELIGION AND SPIRITUALITY IN SOCIAL WORK","1542-6432","1542-6440","SOCIAL WORK","('ESCI',)","340","0.8","Q4","0.41","6.85" +"Journal of Teaching in Social Work","0884-1233","1540-7349","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","562","0.8","Q3","0.41","2.04" +"Rethinking Marxism-A Journal of Economics Culture & Society","0893-5696","1475-8059","POLITICAL SCIENCE","('ESCI',)","534","0.8","Q3","0.41","13.54" +"Somatechnics","2044-0138","2044-0146","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","134","0.8","Q3","0.41","0.00" +"Advanced Emergency Nursing Journal","1931-4485","1931-4493","NURSING","('ESCI',)","370","0.8","Q4","0.40","2.59" +"CANADIAN JOURNAL OF STATISTICS-REVUE CANADIENNE DE STATISTIQUE","0319-5724","1708-945X","STATISTICS & PROBABILITY","('SCIE',)","1,289","0.8","Q3","0.40","13.76" +"Heritage Language Journal","1550-7076","1550-7076","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","264","0.8","('N/A', 'Q3')","0.40","5.41" +"Herpetological Conservation and Biology","2151-0733","1931-7603","ZOOLOGY","('SCIE',)","1,068","0.8","Q3","0.40","0.00" +"Journal of Australian Political Economy","0156-5826","1839-3675","('ECONOMICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","229","0.8","('Q3', 'Q3')","0.40","0.00" +"Journal of Chiropractic Medicine","0899-3467","1556-3715","REHABILITATION","('ESCI',)","3,885","0.8","Q4","0.40","1.83" +"Journal of Technical Education and Training","2229-8932","2600-7932","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","249","0.8","Q3","0.40","81.07" +"Learning and Teaching-The International Journal of Higher Education in the Social Sciences","1755-2273","1755-2281","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","142","0.8","Q3","0.40","92.86" +"Physical Education of Students","2075-5279","2308-7250","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","197","0.8","Q3","0.40","95.90" +"TRANSACTIONS OF THE ROYAL SOCIETY OF SOUTH AUSTRALIA","0372-1426","2204-0293","MULTIDISCIPLINARY SCIENCES","('SCIE',)","472","0.8","Q3","0.40","13.64" +"AQUATIC MAMMALS","0167-5427","","('MARINE & FRESHWATER BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","1,504","0.8","('Q4', 'Q3')","0.39","0.00" +"Economic Notes","0391-5026","1468-0300","ECONOMICS","('ESCI',)","287","0.8","Q3","0.39","10.26" +"European Actuarial Journal","2190-9733","2190-9741","('BUSINESS, FINANCE', 'STATISTICS & PROBABILITY')","('ESCI', 'ESCI')","272","0.8","('Q4', 'Q3')","0.39","39.80" +"HUMAN RIGHTS QUARTERLY","0275-0392","1085-794X","('POLITICAL SCIENCE', 'SOCIAL ISSUES')","('SSCI', 'SSCI')","1,557","0.8","('Q3', 'Q3')","0.39","1.23" +"International Journal of Surgery Open","2405-8572","2405-8572","ORTHOPEDICS","('ESCI',)","454","0.8","Q4","0.39","97.57" +"Journal of Museum Education","1059-8650","2051-6169","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","361","0.8","Q3","0.39","10.00" +"Journal of Social Work Practice in the Addictions","1533-256X","1533-2578","SOCIAL WORK","('ESCI',)","400","0.8","Q4","0.39","2.59" +"Kafkas Universitesi Veteriner Fakultesi Dergisi","1300-6045","1309-2251","VETERINARY SCIENCES","('SCIE',)","1,182","0.8","Q3","0.39","99.02" +"Netnomics","1385-9587","1573-7071","ECONOMICS","('ESCI',)","154","0.8","Q3","0.39","12.50" +"Physical Activity Review","2300-5076","2300-5076","SPORT SCIENCES","('ESCI',)","159","0.8","Q4","0.39","83.72" +"Polar Journal","2154-896X","2154-8978","('AREA STUDIES', 'ENVIRONMENTAL STUDIES', 'GEOGRAPHY', 'INTERNATIONAL RELATIONS')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","240","0.8","('Q2', 'Q4', 'Q3', 'Q3')","0.39","39.34" +"Problems of Education in the 21st Century","1822-7864","2538-7111","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","406","0.8","Q3","0.39","92.73" +"WOOD AND FIBER SCIENCE","0735-6161","0735-6161","('FORESTRY', 'MATERIALS SCIENCE, PAPER & WOOD', 'MATERIALS SCIENCE, TEXTILES')","('SCIE', 'SCIE', 'SCIE')","1,665","0.8","('Q3', 'Q3', 'Q3')","0.39","0.00" +"World Rabbit Science","1257-5011","1989-8886","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","535","0.8","Q3","0.39","97.37" +"Defence and Security Analysis","1475-1798","1475-1801","INTERNATIONAL RELATIONS","('ESCI',)","224","0.8","Q3","0.38","21.33" +"Freshwater Crayfish","2076-4324","2076-4332","MARINE & FRESHWATER BIOLOGY","('ESCI',)","258","0.8","Q4","0.38","0.00" +"Genealogy","","2313-5778","('ETHNIC STUDIES', 'FAMILY STUDIES', 'SOCIOLOGY')","('ESCI', 'ESCI', 'ESCI')","348","0.8","('Q3', 'Q4', 'Q3')","0.38","98.95" +"JOURNAL OF COMPARATIVE PATHOLOGY","0021-9975","1532-3129","('PATHOLOGY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","3,341","0.8","('Q4', 'Q3')","0.38","27.52" +"POLISH JOURNAL OF VETERINARY SCIENCES","1505-1773","2300-2557","VETERINARY SCIENCES","('SCIE',)","1,182","0.8","Q3","0.38","28.88" +"POLITICAL SCIENCE QUARTERLY","0032-3195","1538-165X","POLITICAL SCIENCE","('SSCI',)","1,641","0.8","Q3","0.38","6.00" +"ACTA AGRICULTURAE SCANDINAVICA SECTION A-ANIMAL SCIENCE","0906-4702","1651-1972","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","618","0.8","Q3","0.37","39.62" +"Hong Kong Journal of Occupational Therapy","1569-1861","1876-4398","REHABILITATION","('SCIE',)","222","0.8","Q4","0.37","84.44" +"HUMAN STUDIES","0163-8548","1572-851X","('ETHICS', 'SOCIOLOGY')","('SSCI', 'SSCI')","913","0.8","('Q3', 'Q3')","0.37","49.15" +"INFORMATION AND COMPUTATION","0890-5401","1090-2651","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,335","0.8","('Q3', 'Q3')","0.37","26.99" +"International Area Studies Review","2233-8659","2049-1123","INTERNATIONAL RELATIONS","('ESCI',)","288","0.8","Q3","0.37","11.76" +"Irish Political Studies","0790-7184","1743-9078","POLITICAL SCIENCE","('SSCI',)","309","0.8","Q3","0.37","61.29" +"KINDHEIT UND ENTWICKLUNG","0942-5403","2190-6246","PSYCHOLOGY, DEVELOPMENTAL","('SSCI',)","258","0.8","Q4","0.37","65.38" +"MOLLUSCAN RESEARCH","1323-5818","1448-6067","ZOOLOGY","('SCIE',)","359","0.8","Q3","0.37","4.82" +"Strabismus","0927-3972","1744-5132","OPHTHALMOLOGY","('ESCI',)","589","0.8","Q4","0.37","13.73" +"African Health Sciences","1680-6905","1729-0503","MEDICINE, GENERAL & INTERNAL","('SCIE',)","3,612","0.8","Q3","0.36","99.39" +"AORN JOURNAL","0001-2092","1878-0369","NURSING","('SCIE', 'SSCI')","1,532","0.8","Q4","0.36","0.00" +"Eurasian Journal of Medicine and Oncology","","2587-196X","('MEDICINE, GENERAL & INTERNAL', 'ONCOLOGY')","('ESCI', 'ESCI')","211","0.8","('Q3', 'Q4')","0.36","92.48" +"JA Clinical Reports","2363-9024","2363-9024","ANESTHESIOLOGY","('ESCI',)","406","0.8","Q3","0.36","100.00" +"JOURNAL OF MEDICAL PRIMATOLOGY","0047-2565","1600-0684","('VETERINARY SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","825","0.8","('Q3', 'Q3')","0.36","10.76" +"JOURNAL OF TESTING AND EVALUATION","0090-3973","1945-7553","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('SCIE',)","2,845","0.8","Q4","0.36","0.00" +"KLINISCHE MONATSBLATTER FUR AUGENHEILKUNDE","0023-2165","1439-3999","OPHTHALMOLOGY","('SCIE',)","1,457","0.8","Q4","0.36","3.19" +"PNA-Revista de Investigacion en Didactica de la Matematica","1886-1350","1887-3987","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","105","0.8","Q3","0.36","85.42" +"Profesorado-Revista de Curriculum y Formacion de Profesorado","1138-414X","1989-6395","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","892","0.8","Q3","0.36","72.62" +"QUARTERLY JOURNAL OF MECHANICS AND APPLIED MATHEMATICS","0033-5614","1464-3855","('MATHEMATICS, APPLIED', 'MECHANICS')","('SCIE', 'SCIE')","1,275","0.8","('Q3', 'Q4')","0.36","23.64" +"RASP-Research on Ageing and Social Policy","2014-671X","2014-671X","GERONTOLOGY","('ESCI',)","48","0.8","Q4","0.36","37.50" +"Research and Theory for Nursing Practice","1541-6577","1945-7286","NURSING","('SCIE', 'SSCI')","411","0.8","Q4","0.36","0.00" +"Revista Internacional de Andrologia","1698-031X","","ANDROLOGY","('SCIE',)","183","0.8","Q4","0.36","1.65" +"CHILD WELFARE","0009-4021","","('FAMILY STUDIES', 'SOCIAL WORK')","('SSCI', 'SSCI')","1,182","0.8","('Q4', 'Q4')","0.35","0.00" +"Erdkunde","0014-0015","0014-0015","('GEOGRAPHY', 'GEOGRAPHY, PHYSICAL')","('SSCI', 'SCIE')","579","0.8","('Q3', 'Q4')","0.35","0.00" +"International Journal of Comparative Labour Law and Industrial Relations","0952-617X","1875-838X","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","186","0.8","Q3","0.35","0.00" +"JOURNAL OF THEORETICAL PROBABILITY","0894-9840","1572-9230","STATISTICS & PROBABILITY","('SCIE',)","1,170","0.8","Q3","0.35","25.10" +"Latin American Policy","2041-7365","2041-7373","POLITICAL SCIENCE","('ESCI',)","152","0.8","Q3","0.35","13.04" +"Nauplius","0104-6497","2358-2936","('MARINE & FRESHWATER BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","421","0.8","('Q4', 'Q3')","0.35","93.86" +"Orthopaedic Nursing","0744-6020","1542-538X","('NURSING', 'ORTHOPEDICS')","('SCIE, SSCI', 'SCIE')","672","0.8","('Q4', 'Q4')","0.35","7.63" +"Revista Espanola de Ciencia Politica-RECP","1575-6548","2173-9870","POLITICAL SCIENCE","('ESCI',)","120","0.8","Q3","0.35","95.45" +"SCIENTIA MARINA","0214-8358","1886-8134","MARINE & FRESHWATER BIOLOGY","('SCIE',)","2,397","0.8","Q4","0.35","98.63" +"Turkish Journal of Orthodontics","","2148-9505","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","278","0.8","Q4","0.35","54.05" +"Water Waves","2523-367X","2523-3688","('MATHEMATICS, APPLIED', 'PHYSICS, FLUIDS & PLASMAS')","('ESCI', 'ESCI')","86","0.8","('Q3', 'Q4')","0.35","22.00" +"Advances in Aircraft and Spacecraft Science","2287-528X","2287-5271","ENGINEERING, AEROSPACE","('ESCI',)","235","0.8","Q3","0.34","0.00" +"Advances in Dual Diagnosis","1757-0972","2042-8324","PSYCHOLOGY, CLINICAL","('ESCI',)","164","0.8","Q4","0.34","0.00" +"Catalan Journal of Communication & Cultural Studies","1757-1898","1757-1901","COMMUNICATION","('ESCI',)","112","0.8","Q3","0.34","0.00" +"CESifo Economic Studies","1610-241X","1612-7501","ECONOMICS","('SSCI',)","476","0.8","Q3","0.34","10.87" +"Journal of Motor Learning and Development","2325-3193","2325-3215","('PSYCHOLOGY, DEVELOPMENTAL', 'PSYCHOLOGY, EXPERIMENTAL', 'SPORT SCIENCES')","('ESCI', 'ESCI', 'ESCI')","385","0.8","('Q4', 'Q4', 'Q4')","0.34","3.88" +"Surgery Journal","2378-5128","2378-5136","SURGERY","('ESCI',)","359","0.8","Q4","0.34","97.73" +"AFRICAN INVERTEBRATES","1681-5556","2305-2562","('ENTOMOLOGY', 'PALEONTOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","235","0.8","('Q3', 'Q4', 'Q3')","0.33","97.14" +"AUSTRAL JOURNAL OF VETERINARY SCIENCES","0719-8000","0719-8132","VETERINARY SCIENCES","('SCIE',)","124","0.8","Q3","0.33","38.10" +"Housing Care and Support","1460-8790","2042-8375","URBAN STUDIES","('ESCI',)","141","0.8","Q3","0.33","7.32" +"Indian Growth and Development Review","1753-8254","1753-8262","DEVELOPMENT STUDIES","('ESCI',)","118","0.8","Q4","0.33","0.00" +"Journal of Maxillofacial & Oral Surgery","0972-8279","0974-942X","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","1,832","0.8","Q4","0.33","5.38" +"Modelling and Simulation in Engineering","1687-5591","1687-5605","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","448","0.8","Q3","0.33","100.00" +"Monte Carlo Methods and Applications","1569-3961","0929-9629","STATISTICS & PROBABILITY","('ESCI',)","878","0.8","Q3","0.33","5.19" +"Quality in Ageing and Older Adults","1471-7794","2044-1835","GERONTOLOGY","('ESCI',)","280","0.8","Q4","0.33","8.16" +"Redia-Journal of Zoology","0370-4327","0370-4327","ZOOLOGY","('SCIE',)","578","0.8","Q3","0.33","97.14" +"SCM Studies in Communication and Media","","2192-4007","COMMUNICATION","('ESCI',)","185","0.8","Q3","0.33","94.64" +"Urogynecology","","2771-1897","OBSTETRICS & GYNECOLOGY","('SCIE',)","94","0.8","Q4","0.33","4.76" +"AMERICAN JOURNAL OF PHYSICS","0002-9505","1943-2909","('EDUCATION, SCIENTIFIC DISCIPLINES', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","9,021","0.8","('Q3', 'Q3')","0.32","11.02" +"BRAIN-Broad Research in Artificial Intelligence and Neuroscience","2067-3957","","NEUROSCIENCES","('ESCI',)","378","0.8","Q4","0.32","98.93" +"Bulletin of the New Zealand Society for Earthquake Engineering","1174-9857","2324-1543","ENGINEERING, GEOLOGICAL","('ESCI',)","821","0.8","Q4","0.32","35.09" +"Journal of African American Studies","1559-1646","1936-4741","ETHNIC STUDIES","('ESCI',)","423","0.8","Q3","0.32","6.02" +"Journal of Psychology in Africa","1433-0237","1815-5626","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","984","0.8","Q3","0.32","0.37" +"PROGRES EN UROLOGIE","1166-7087","2405-5131","UROLOGY & NEPHROLOGY","('SCIE',)","1,112","0.8","Q4","0.32","43.30" +"TURKISH JOURNAL OF PEDIATRICS","0041-4301","0041-4301","PEDIATRICS","('SCIE',)","1,499","0.8","Q4","0.32","99.48" +"Urology Practice","2352-0779","2352-0787","UROLOGY & NEPHROLOGY","('ESCI',)","489","0.8","Q4","0.32","3.86" +"ZEITSCHRIFT FUR SOZIOLOGIE","0340-1804","2366-0325","SOCIOLOGY","('SSCI',)","1,101","0.8","Q3","0.32","70.42" +"Anaesthesia Reports","","2637-3726","ANESTHESIOLOGY","('ESCI',)","96","0.8","Q3","0.31","10.71" +"Assistenza Infermieristica e Ricerca","1592-5986","2038-1778","NURSING","('SCIE', 'SSCI')","141","0.8","Q4","0.31","0.00" +"CONTRIBUTIONS TO INDIAN SOCIOLOGY","0069-9667","0973-0648","SOCIOLOGY","('SSCI',)","466","0.8","Q3","0.31","3.13" +"ESTUDIOS GEOLOGICOS-MADRID","0367-0449","1988-3250","GEOLOGY","('SCIE',)","491","0.8","Q3","0.31","95.83" +"European Poultry Science","1612-9199","1612-9199","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","382","0.8","Q3","0.31","0.00" +"FISHERY BULLETIN","0090-0656","1937-4518","FISHERIES","('SCIE',)","2,804","0.8","Q3","0.31","87.10" +"Humanity-An International Journal of Human Rights Humanitarianism and Development","2151-4364","2151-4372","SOCIAL ISSUES","('ESCI',)","405","0.8","Q3","0.31","0.00" +"IRANIAN JOURNAL OF FISHERIES SCIENCES","1562-2916","1562-2916","FISHERIES","('SCIE',)","994","0.8","Q3","0.31","0.00" +"Journal of Integrated Care","1476-9018","2042-8685","HEALTH POLICY & SERVICES","('ESCI',)","282","0.8","Q4","0.31","26.21" +"JOURNAL OF MULTICULTURAL COUNSELING AND DEVELOPMENT","0883-8534","2161-1912","PSYCHOLOGY, APPLIED","('SSCI',)","813","0.8","Q4","0.31","8.57" +"Journal of the Korean Academy of Child and Adolescent Psychiatry","1225-729X","2233-9183","PSYCHIATRY","('ESCI',)","218","0.8","Q4","0.31","100.00" +"NEGOTIATION JOURNAL","0748-4526","1571-9979","('MANAGEMENT', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","529","0.8","('Q4', 'Q3')","0.31","32.76" +"Professional Case Management","1932-8087","1932-8095","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","258","0.8","Q4","0.31","3.37" +"Records Management Journal","0956-5698","1758-7689","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","272","0.8","Q3","0.31","8.51" +"Revista de Comunicacion de la SEECI","1576-3420","2695-5156","COMMUNICATION","('ESCI',)","124","0.8","Q3","0.31","95.38" +"Tradumatica-Traduccio i Tecnologies de la Informacio i la Comunicacio","1578-7559","1578-7559","LINGUISTICS","('ESCI',)","104","0.8","Q3","0.31","97.87" +"Uluslararasi Iliskiler-International Relations","1304-7310","1304-7175","INTERNATIONAL RELATIONS","('SSCI',)","275","0.8","Q3","0.31","98.81" +"Zeitschrift fur Sexualforschung","0932-8114","1438-9460","('PSYCHOLOGY, CLINICAL', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","127","0.8","('Q4', 'Q3')","0.31","1.82" +"Zemdirbyste-Agriculture","1392-3196","2335-8947","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","744","0.8","Q3","0.31","94.96" +"BIOCELL","0327-9545","1667-5746","BIOLOGY","('SCIE',)","708","0.8","Q4","0.30","92.56" +"Canadian Foreign Policy","1192-6422","2157-0817","INTERNATIONAL RELATIONS","('ESCI',)","265","0.8","Q3","0.30","6.35" +"Craniomaxillofacial Trauma & Reconstruction","1943-3875","1943-3883","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","908","0.8","Q4","0.30","5.56" +"Forest Systems","2171-5068","2171-9845","FORESTRY","('SCIE',)","722","0.8","Q3","0.30","97.50" +"GeroPsych-The Journal of Gerontopsychology and Geriatric Psychiatry","1662-9647","1662-971X","PSYCHOLOGY, DEVELOPMENTAL","('ESCI',)","309","0.8","Q4","0.30","28.40" +"Intersecciones en Antropologia","1850-373X","1850-373X","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","384","0.8","('Q3', 'N/A')","0.30","95.12" +"Journal of Applied Spectroscopy","0021-9037","1573-8647","SPECTROSCOPY","('SCIE',)","1,794","0.8","Q4","0.30","0.00" +"Journal of Neurosciences in Rural Practice","0976-3147","0976-3155","CLINICAL NEUROLOGY","('ESCI',)","1,571","0.8","Q4","0.30","99.16" +"MATHEMATICAL MEDICINE AND BIOLOGY-A JOURNAL OF THE IMA","1477-8599","1477-8602","('BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY')","('SCIE', 'SCIE')","509","0.8","('Q4', 'Q4')","0.30","34.55" +"New Horizons in Adult Education and Human Resource Development","1939-4225","1939-4225","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","232","0.8","Q3","0.30","0.00" +"SCIENCE & SPORTS","0765-1597","0765-1597","SPORT SCIENCES","('SCIE',)","838","0.8","Q4","0.30","14.33" +"SOCIOLOGIA","0049-1225","1336-8613","SOCIOLOGY","('SSCI',)","208","0.8","Q3","0.30","98.46" +"Terapia Psicologica","0718-4808","0718-4808","PSYCHOLOGY, CLINICAL","('SSCI',)","407","0.8","Q4","0.30","87.72" +"TERRESTRIAL ATMOSPHERIC AND OCEANIC SCIENCES","1017-0839","2311-7680","('GEOSCIENCES, MULTIDISCIPLINARY', 'METEOROLOGY & ATMOSPHERIC SCIENCES', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE')","1,077","0.8","('Q4', 'Q4', 'Q4')","0.30","99.28" +"Acta Informatica Pragensia","","1805-4951","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","55","0.8","('Q4', 'Q3')","0.29","98.59" +"Annals of Finance","1614-2446","1614-2454","BUSINESS, FINANCE","('ESCI',)","314","0.8","Q4","0.29","32.08" +"BIOLOGIA PLANTARUM","0006-3134","1573-8264","PLANT SCIENCES","('SCIE',)","3,863","0.8","Q4","0.29","100.00" +"Biomolecular NMR Assignments","1874-2718","1874-270X","('BIOPHYSICS', 'SPECTROSCOPY')","('SCIE', 'SCIE')","330","0.8","('Q4', 'Q4')","0.29","35.33" +"COLEOPTERISTS BULLETIN","0010-065X","1938-4394","ENTOMOLOGY","('SCIE',)","1,160","0.8","Q3","0.29","0.00" +"Differences-A Journal of Feminist Cultural Studies","1040-7391","1527-1986","('CULTURAL STUDIES', 'WOMENS STUDIES')","('AHCI, SSCI', 'SSCI')","698","0.8","('Q3', 'Q3')","0.29","0.00" +"Indian Journal of Pharmaceutical Education and Research","0019-5464","0019-5464","('EDUCATION, SCIENTIFIC DISCIPLINES', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,227","0.8","('Q3', 'Q4')","0.29","97.78" +"JAPANESE PSYCHOLOGICAL RESEARCH","0021-5368","1468-5884","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","695","0.8","Q3","0.29","0.68" +"Journal of Evidence-Based Psychotherapies","2360-0853","","PSYCHOLOGY, CLINICAL","('SSCI',)","129","0.8","Q4","0.29","0.00" +"Journal of Information Processing Systems","1976-913X","2092-805X","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","715","0.8","Q4","0.29","0.00" +"Journal of Urban and Regional Analysis","2067-4082","2068-9969","GEOGRAPHY","('ESCI',)","100","0.8","Q3","0.29","100.00" +"Latin American Journal of Aquatic Research","0718-560X","0718-560X","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","1,121","0.8","('Q3', 'Q4')","0.29","85.99" +"Mathematical Methods of Statistics","1066-5307","1934-8045","STATISTICS & PROBABILITY","('ESCI',)","363","0.8","Q3","0.29","0.00" +"Medical Acupuncture","1933-6586","1933-6594","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","447","0.8","Q4","0.29","4.58" +"Nephrology Nursing Journal","1526-744X","2163-5390","('NURSING', 'UROLOGY & NEPHROLOGY')","('SCIE, SSCI', 'SCIE')","500","0.8","('Q4', 'Q4')","0.29","0.00" +"PROCEEDINGS OF THE NATIONAL ACADEMY OF SCIENCES INDIA SECTION A-PHYSICAL SCIENCES","0369-8203","2250-1762","MULTIDISCIPLINARY SCIENCES","('SCIE',)","694","0.8","Q3","0.29","3.31" +"REVIEW OF INDUSTRIAL ORGANIZATION","0889-938X","1573-7160","('ECONOMICS', 'MANAGEMENT')","('SSCI', 'SSCI')","1,195","0.8","('Q3', 'Q4')","0.29","32.03" +"Romanian Journal of Economic Forecasting","1582-6163","2537-6071","ECONOMICS","('SSCI',)","359","0.8","Q3","0.29","0.00" +"TRANSPLANTATION PROCEEDINGS","0041-1345","1873-2623","('IMMUNOLOGY', 'SURGERY', 'TRANSPLANTATION')","('SCIE', 'SCIE', 'SCIE')","10,384","0.8","('Q4', 'Q4', 'Q4')","0.29","15.09" +"Vivat Academia","1575-2844","1575-2844","COMMUNICATION","('ESCI',)","144","0.8","Q3","0.29","89.58" +"World Journal of Pediatric Surgery","","2516-5410","('PEDIATRICS', 'SURGERY')","('ESCI', 'ESCI')","100","0.8","('Q4', 'Q4')","0.29","100.00" +"GEOLOGY OF ORE DEPOSITS","1075-7015","1555-6476","('GEOLOGY', 'MINERALOGY')","('SCIE', 'SCIE')","1,051","0.8","('Q3', 'Q4')","0.28","8.90" +"Hong Kong Journal of Emergency Medicine","1024-9079","2309-5407","EMERGENCY MEDICINE","('SCIE',)","385","0.8","Q4","0.28","96.51" +"INTERNATIONAL ANESTHESIOLOGY CLINICS","0020-5907","1537-1913","ANESTHESIOLOGY","('ESCI',)","757","0.8","Q3","0.28","0.85" +"International Journal of Applied and Basic Medical Research","2229-516X","2248-9606","MEDICINE, GENERAL & INTERNAL","('ESCI',)","840","0.8","Q3","0.28","34.93" +"Journal of Economic Interaction and Coordination","1860-711X","1860-7128","ECONOMICS","('SSCI',)","286","0.8","Q3","0.28","43.53" +"Journal of Humanistic Counseling","2159-0311","2161-1939","PSYCHOLOGY, APPLIED","('ESCI',)","263","0.8","Q4","0.28","25.00" +"JOURNAL OF NATURAL HISTORY","0022-2933","1464-5262","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","3,494","0.8","('Q4', 'Q4', 'Q3')","0.28","6.99" +"Range Management and Agroforestry","0971-2070","","AGRONOMY","('SCIE',)","362","0.8","Q3","0.28","0.00" +"Revista de Estudios Sociales","0123-885X","1900-5180","('SOCIAL ISSUES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","520","0.8","('Q3', 'Q3')","0.28","98.89" +"Revista Internacional de Sociologia","0034-9712","1988-429X","SOCIOLOGY","('SSCI',)","375","0.8","Q3","0.28","89.86" +"Statistics in Biosciences","1867-1764","1867-1772","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('ESCI',)","347","0.8","Q4","0.28","12.15" +"Universitas-Revista de Ciencias Sociales y Humanas","1390-3837","1390-8634","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","110","0.8","Q3","0.28","100.00" +"ZEITSCHRIFT FUR NATURFORSCHUNG SECTION B-A JOURNAL OF CHEMICAL SCIENCES","0932-0776","1865-7117","('CHEMISTRY, INORGANIC & NUCLEAR', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","3,078","0.8","('Q4', 'Q4')","0.28","7.92" +"AMERICAN JOURNAL OF DANCE THERAPY","0146-3721","1573-3262","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","218","0.8","Q3","0.27","22.58" +"Case Studies in the Environment","2473-9510","2473-9510","('EDUCATION & EDUCATIONAL RESEARCH', 'ENVIRONMENTAL STUDIES')","('ESCI', 'ESCI')","138","0.8","('Q3', 'Q4')","0.27","0.00" +"CLINICAL NEUROPATHOLOGY","0722-5091","0722-5091","('CLINICAL NEUROLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","724","0.8","('Q4', 'Q4')","0.27","0.00" +"Drewno","1644-3985","1644-3985","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","206","0.8","Q3","0.27","17.31" +"European Journal of Economics and Economic Policies-Intervention","2052-7764","2052-7772","ECONOMICS","('ESCI',)","268","0.8","Q3","0.27","47.76" +"Gastrointestinal Tumors","2296-3774","2296-3766","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","248","0.8","Q4","0.27","100.00" +"Geochronometria","1897-1695","1897-1695","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","502","0.8","Q4","0.27","89.47" +"Ido Movement for Culture-Journal of Martial Arts Anthropology","2084-3763","2082-7571","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","297","0.8","Q4","0.27","0.00" +"International Journal of Image and Graphics","0219-4678","1793-6756","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","359","0.8","Q4","0.27","0.00" +"Journal of Correctional Health Care","1078-3458","1940-5200","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","610","0.8","Q4","0.27","0.00" +"PESQUISA VETERINARIA BRASILEIRA","0100-736X","1678-5150","VETERINARY SCIENCES","('SCIE',)","1,879","0.8","Q3","0.27","88.02" +"Progress in Community Health Partnerships-Research Education and Action","1557-0541","1557-055X","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","898","0.8","Q4","0.27","0.00" +"REVISTA DE NEUROLOGIA","0210-0010","1576-6578","CLINICAL NEUROLOGY","('SCIE',)","1,590","0.8","Q4","0.27","0.00" +"TAIWANIA","0372-333X","","PLANT SCIENCES","('SCIE',)","632","0.8","Q4","0.27","0.00" +"TROPICAL BIOMEDICINE","0127-5720","","('PARASITOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","1,239","0.8","('Q4', 'Q4')","0.27","0.00" +"ZEITSCHRIFT FUR KINDER-UND JUGENDPSYCHIATRIE UND PSYCHOTHERAPIE","1422-4917","1664-2880","PSYCHIATRY","('SSCI',)","417","0.8","Q4","0.27","56.25" +"Aquatic Sciences and Engineering","","2602-473X","MARINE & FRESHWATER BIOLOGY","('ESCI',)","103","0.8","Q4","0.26","57.30" +"Biomedical Human Kinetics","0043-9630","2080-2234","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","200","0.8","Q4","0.26","100.00" +"BRYOLOGIST","0007-2745","1938-4378","PLANT SCIENCES","('SCIE',)","1,407","0.8","Q4","0.26","0.00" +"BULLETIN OF ECONOMIC RESEARCH","0307-3378","1467-8586","ECONOMICS","('SSCI',)","532","0.8","Q3","0.26","20.75" +"Chirurgia","1221-9118","1842-368X","SURGERY","('ESCI',)","816","0.8","Q4","0.26","85.77" +"CIENCIA RURAL","0103-8478","1678-4596","AGRONOMY","('SCIE',)","3,432","0.8","Q3","0.26","90.74" +"Clinical Case Studies","1534-6501","1552-3802","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","360","0.8","('Q4', 'Q4')","0.26","10.87" +"Indian Journal of Pathology and Microbiology","0377-4929","0974-5130","PATHOLOGY","('SCIE',)","1,660","0.8","Q4","0.26","25.77" +"Inland Water Biology","1995-0829","1995-0837","MARINE & FRESHWATER BIOLOGY","('SCIE',)","608","0.8","Q4","0.26","4.72" +"International Journal of Engineering Research in Africa","1663-3571","1663-4144","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","606","0.8","Q3","0.26","0.49" +"International Journal of Swarm Intelligence Research","1947-9263","1947-9271","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","210","0.8","Q4","0.26","14.17" +"Journal of Acute Medicine","2211-5587","2211-5595","EMERGENCY MEDICINE","('ESCI',)","204","0.8","Q4","0.26","0.00" +"Journal of Sensors and Sensor Systems","2194-8771","2194-878X","INSTRUMENTS & INSTRUMENTATION","('ESCI',)","486","0.8","Q4","0.26","98.78" +"Optoelectronics Letters","1673-1905","1993-5013","OPTICS","('ESCI',)","638","0.8","Q4","0.26","0.00" +"Papers-Revista de Sociologia","0210-2862","2013-9004","SOCIOLOGY","('ESCI',)","499","0.8","Q3","0.26","92.41" +"Urologia Journal","0391-5603","1724-6075","UROLOGY & NEPHROLOGY","('ESCI',)","546","0.8","Q4","0.26","4.26" +"ARCHIVES ITALIENNES DE BIOLOGIE","0003-9829","0003-9829","NEUROSCIENCES","('SCIE',)","569","0.8","Q4","0.25","0.00" +"BOTHALIA","0006-8241","2311-9284","PLANT SCIENCES","('SCIE',)","537","0.8","Q4","0.25","97.92" +"Democracy & Security","1741-9166","1555-5860","POLITICAL SCIENCE","('ESCI',)","205","0.8","Q3","0.25","19.30" +"Diving and Hyperbaric Medicine","1833-3516","1833-3516","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","525","0.8","Q4","0.25","0.00" +"Ekonomika Poljoprivreda-Economics of Agriculture","0352-3462","0352-3462","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","434","0.8","Q4","0.25","91.84" +"Forensic Imaging","2666-2264","2666-2256","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","138","0.8","Q4","0.25","18.03" +"FREQUENZ","0016-1136","2191-6349","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","414","0.8","Q4","0.25","1.97" +"Heroin Addiction and Related Clinical Problems","1592-1638","1592-1638","SUBSTANCE ABUSE","('SSCI',)","392","0.8","Q4","0.25","0.00" +"Image Analysis & Stereology","1580-3139","","('IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","353","0.8","('Q4', 'Q4', 'Q3')","0.25","75.56" +"Indian Journal of Nephrology","0971-4065","1998-3662","UROLOGY & NEPHROLOGY","('ESCI',)","1,092","0.8","Q4","0.25","90.31" +"Journal of Business & Finance Librarianship","0896-3568","1547-0644","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","182","0.8","Q3","0.25","4.00" +"JOURNAL OF DRUG EDUCATION","0047-2379","1541-4159","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","338","0.8","Q3","0.25","0.00" +"JOURNAL OF GENERAL AND APPLIED MICROBIOLOGY","0022-1260","1349-8037","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","1,557","0.8","('Q4', 'Q4')","0.25","98.15" +"Journal of Religion Spirituality & Aging","1552-8030","1552-8049","GERIATRICS & GERONTOLOGY","('ESCI',)","230","0.8","Q4","0.25","13.70" +"Journal of Research in Pharmacy Practice","2319-9644","2279-042X","PHARMACOLOGY & PHARMACY","('ESCI',)","500","0.8","Q4","0.25","88.68" +"NOVA HEDWIGIA","0029-5035","2363-7188","PLANT SCIENCES","('SCIE',)","1,818","0.8","Q4","0.25","0.00" +"Plasma and Fusion Research","1880-6821","1880-6821","PHYSICS, FLUIDS & PLASMAS","('ESCI',)","956","0.8","Q4","0.25","99.67" +"Psicologica","0211-2159","1576-8597","PSYCHOLOGY, EXPERIMENTAL","('SSCI',)","288","0.8","Q4","0.25","32.26" +"RADIATION PROTECTION DOSIMETRY","0144-8420","1742-3406","('ENVIRONMENTAL SCIENCES', 'NUCLEAR SCIENCE & TECHNOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","6,086","0.8","('Q4', 'Q4', 'Q4', 'Q4')","0.25","8.34" +"Transactions of the Canadian Society for Mechanical Engineering","0315-8977","2816-5691","ENGINEERING, MECHANICAL","('SCIE',)","520","0.8","Q4","0.25","4.92" +"Acta Medica Portuguesa","0870-399X","1646-0758","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,278","0.8","Q3","0.24","94.41" +"Aestimum","1592-6117","1724-2118","ECONOMICS","('ESCI',)","108","0.8","Q3","0.24","86.36" +"Alexandria Journal of Medicine","2090-5068","2090-5076","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,077","0.8","Q3","0.24","98.28" +"Dermatologie","2731-7005","2731-7013","DERMATOLOGY","('SCIE',)","1,286","0.8","Q4","0.24","26.30" +"Georesursy","1608-5043","1608-5078","ENGINEERING, PETROLEUM","('ESCI',)","316","0.8","Q3","0.24","97.31" +"Journal of Operational Meteorology","2325-6184","2325-6184","METEOROLOGY & ATMOSPHERIC SCIENCES","('ESCI',)","155","0.8","Q4","0.24","89.47" +"Kastamonu University Journal of Forestry Faculty","1303-2399","1309-4181","FORESTRY","('ESCI',)","220","0.8","Q3","0.24","100.00" +"Magallania","0718-2244","0718-2244","ANTHROPOLOGY","('SSCI',)","358","0.8","Q3","0.24","85.29" +"Medycyna Pracy-Workers Health and Safety","0465-5893","2353-1339","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","599","0.8","Q4","0.24","95.68" +"NEURO-OPHTHALMOLOGY","0165-8107","1744-506X","CLINICAL NEUROLOGY","('ESCI',)","610","0.8","Q4","0.24","3.45" +"NEW ZEALAND JOURNAL OF BOTANY","0028-825X","1175-8643","PLANT SCIENCES","('SCIE',)","1,013","0.8","Q4","0.24","13.40" +"Nigerian Postgraduate Medical Journal","1117-1936","2468-6875","MEDICINE, GENERAL & INTERNAL","('ESCI',)","599","0.8","Q3","0.24","99.28" +"Ophthalmologie","2731-720X","2731-7218","OPHTHALMOLOGY","('SCIE',)","1,431","0.8","Q4","0.24","45.93" +"PORTAL-LIBRARIES AND THE ACADEMY","1531-2542","1530-7131","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","658","0.8","Q3","0.24","0.00" +"Respiratory Medicine Case Reports","2213-0071","2213-0071","RESPIRATORY SYSTEM","('ESCI',)","1,354","0.8","Q4","0.24","99.68" +"SPANISH JOURNAL OF AGRICULTURAL RESEARCH","1695-971X","2171-9292","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","2,033","0.8","Q3","0.24","99.49" +"ACCESS-Access to science business innovation in the digital economy","","2683-1007","('BUSINESS', 'COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'ECONOMICS', 'MANAGEMENT')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","77","0.8","('Q4', 'Q4', 'Q3', 'Q4')","0.23","96.05" +"Agri-The Journal of the Turkish Society of Algology","1300-0012","1300-0012","MEDICINE, GENERAL & INTERNAL","('ESCI',)","413","0.8","Q3","0.23","91.87" +"Caspian Journal of Internal Medicine","2008-6164","2008-6172","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,437","0.8","Q3","0.23","0.00" +"Economics and Finance Letters","2312-6310","2312-430X","('BUSINESS, FINANCE', 'ECONOMICS')","('ESCI', 'ESCI')","61","0.8","('Q4', 'Q3')","0.23","96.97" +"Ecosistemas","1697-2473","","ECOLOGY","('ESCI',)","542","0.8","Q4","0.23","89.86" +"Geopersia","2228-7817","2228-7817","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","215","0.8","Q4","0.23","0.00" +"GIO-Gruppe-Interaktion-Organisation-Zeitschrift fuer Angewandte Organisationspsychologie","2366-6145","2366-6218","PSYCHOLOGY, SOCIAL","('ESCI',)","180","0.8","Q4","0.23","75.17" +"International Journal of Acoustics and Vibration","1027-5851","","('ACOUSTICS', 'ENGINEERING, MECHANICAL', 'MECHANICS')","('SCIE', 'SCIE', 'SCIE')","371","0.8","('Q4', 'Q4', 'Q4')","0.23","0.00" +"Iranian Journal of Management Studies","2008-7055","2345-3745","MANAGEMENT","('ESCI',)","252","0.8","Q4","0.23","0.00" +"JAAPA-Journal of the American Academy of Physician Assistants","1547-1896","0893-7400","MEDICINE, GENERAL & INTERNAL","('SCIE',)","994","0.8","Q3","0.23","1.85" +"LIBRI-International Journal of Libraries and Information Studies","0024-2667","1865-8423","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","435","0.8","Q3","0.23","10.11" +"Pathology and Laboratory Medicine International","","1179-2698","PATHOLOGY","('ESCI',)","75","0.8","Q4","0.23","94.44" +"PHYTOCOENOLOGIA","0340-269X","2363-7153","('ECOLOGY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","504","0.8","('Q4', 'Q4')","0.23","0.00" +"SPECTROSCOPY","0887-6703","","SPECTROSCOPY","('SCIE',)","686","0.8","Q4","0.23","0.00" +"Teknik Dergi","1300-3453","1300-3453","ENGINEERING, CIVIL","('SCIE',)","256","0.8","Q4","0.23","95.73" +"Acta of Bioengineering and Biomechanics","1509-409X","","('BIOPHYSICS', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","864","0.8","('Q4', 'Q4')","0.22","74.68" +"AQUATIC ECOSYSTEM HEALTH & MANAGEMENT","1463-4988","1539-4077","('ENVIRONMENTAL SCIENCES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","992","0.8","('Q4', 'Q4')","0.22","0.00" +"Aviation","1648-7788","1822-4180","ENGINEERING, AEROSPACE","('ESCI',)","179","0.8","Q3","0.22","98.81" +"CHEMISTRY OF NATURAL COMPOUNDS","0009-3130","1573-8388","('CHEMISTRY, MEDICINAL', 'CHEMISTRY, ORGANIC')","('SCIE', 'SCIE')","4,142","0.8","('Q4', 'Q4')","0.22","0.00" +"CHINESE JOURNAL OF INORGANIC CHEMISTRY","1001-4861","1001-4861","CHEMISTRY, INORGANIC & NUCLEAR","('SCIE',)","1,180","0.8","Q4","0.22","0.00" +"Crop Forage & Turfgrass Management","","2374-3832","AGRONOMY","('ESCI',)","382","0.8","Q3","0.22","55.19" +"Current Treatment Options in Cardiovascular Medicine","1092-8464","1534-3189","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","1,020","0.8","Q4","0.22","10.81" +"European Heart Journal-Case Reports","","2514-2119","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","1,407","0.8","Q4","0.22","90.56" +"International Journal of E-Adoption","1937-9633","1937-9641","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","88","0.8","Q3","0.22","25.00" +"International Journal of Web Services Research","1545-7362","1546-5004","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","107","0.8","('Q4', 'Q4')","0.22","56.52" +"Journal of Engineering-JOE","","2051-3305","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","1,598","0.8","Q3","0.22","81.42" +"Kompleksnoe Ispolzovanie Mineralnogo Syra","2224-5243","2616-6445","('METALLURGY & METALLURGICAL ENGINEERING', 'MINING & MINERAL PROCESSING')","('ESCI', 'ESCI')","174","0.8","('Q4', 'Q4')","0.22","100.00" +"KOREAN JOURNAL OF PLANT TAXONOMY","1225-8318","2466-1546","PLANT SCIENCES","('ESCI',)","279","0.8","Q4","0.22","100.00" +"Legume Research","0250-5371","","AGRONOMY","('SCIE',)","1,325","0.8","Q3","0.22","20.25" +"Medizinische Genetik","0936-5931","1863-5490","GENETICS & HEREDITY","('SCIE',)","214","0.8","Q4","0.22","90.28" +"PHARMACEUTICAL CHEMISTRY JOURNAL","0091-150X","1573-9031","('CHEMISTRY, MEDICINAL', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","2,265","0.8","('Q4', 'Q4')","0.22","0.00" +"Physical Therapy Reviews","1083-3196","1743-288X","REHABILITATION","('ESCI',)","651","0.8","Q4","0.22","20.62" +"Stem Cell Research","1873-5061","1876-7753","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'CELL & TISSUE ENGINEERING', 'CELL BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","4,046","0.8","('Q4', 'Q4', 'Q4')","0.22","95.95" +"Transactions on Maritime Science-ToMS","1848-3305","1848-3313","ENGINEERING, MARINE","('ESCI',)","149","0.8","Q3","0.22","98.41" +"Accounting History Review","2155-2851","2155-286X","BUSINESS","('ESCI',)","148","0.8","Q4","0.21","0.00" +"Acque Sotterranee-Italian Journal of Groundwater","1828-454X","1828-454X","WATER RESOURCES","('ESCI',)","139","0.8","Q4","0.21","81.54" +"ACTA PHYSICA SINICA","1000-3290","","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","7,119","0.8","Q3","0.21","97.52" +"Asian Journal of Business and Accounting","1985-4064","2180-3137","BUSINESS, FINANCE","('ESCI',)","208","0.8","Q4","0.21","11.67" +"Biomedica","0120-4157","2590-7379","TROPICAL MEDICINE","('SCIE',)","1,055","0.8","Q4","0.21","66.44" +"Canadian Journal of Communication","0705-3657","1499-6642","COMMUNICATION","('ESCI',)","466","0.8","Q3","0.21","4.00" +"Clinical Journal of Gastroenterology","1865-7257","1865-7265","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","1,503","0.8","Q4","0.21","9.66" +"Egyptian Rheumatology and Rehabilitation","1110-161X","2090-3235","RHEUMATOLOGY","('ESCI',)","198","0.8","Q4","0.21","100.00" +"Iranian Journal of Child Neurology","1735-4668","2008-0700","CLINICAL NEUROLOGY","('ESCI',)","501","0.8","Q4","0.21","0.00" +"Meta Gene","","2214-5400","GENETICS & HEREDITY","('ESCI',)","762","0.8","Q4","0.21","3.23" +"OPERATIONS RESEARCH LETTERS","0167-6377","1872-7468","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","3,313","0.8","Q4","0.21","26.01" +"RUSSIAN JOURNAL OF ORGANIC CHEMISTRY","1070-4280","1608-3393","CHEMISTRY, ORGANIC","('SCIE',)","2,621","0.8","Q4","0.21","1.91" +"Teknokultura: Revista de Cultura Digital y Movimientos Sociales","1549-2230","1549-2230","('COMMUNICATION', 'SOCIOLOGY')","('ESCI', 'ESCI')","131","0.8","('Q3', 'Q3')","0.21","97.26" +"Ultrasound","1742-271X","1743-1344","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","438","0.8","Q4","0.21","9.62" +"Urological Science","1879-5226","1879-5234","UROLOGY & NEPHROLOGY","('ESCI',)","258","0.8","Q4","0.21","92.71" +"Vascular Specialist International","2288-7970","2288-7989","('PERIPHERAL VASCULAR DISEASE', 'SURGERY')","('ESCI', 'ESCI')","237","0.8","('Q4', 'Q4')","0.21","100.00" +"Bangladesh Journal of Medical Science","2223-4721","2076-0299","MEDICINE, GENERAL & INTERNAL","('ESCI',)","670","0.8","Q3","0.20","92.36" +"Case Reports in Medicine","1687-9627","1687-9635","MEDICINE, GENERAL & INTERNAL","('ESCI',)","1,344","0.8","Q3","0.20","98.13" +"Dyna","0012-7361","1989-1490","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","333","0.8","Q3","0.20","3.26" +"Geodynamics & Tectonophysics","2078-502X","2078-502X","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","414","0.8","Q4","0.20","100.00" +"Idojaras","0324-6329","0324-6329","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","268","0.8","Q4","0.20","97.65" +"International Journal of Air-Conditioning and Refrigeration","2010-1325","2010-1333","THERMODYNAMICS","('ESCI',)","348","0.8","Q4","0.20","50.00" +"International Journal of Emerging Electric Power Systems","2194-5756","1553-779X","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","417","0.8","Q4","0.20","0.78" +"Journal of Advanced Mechanical Design Systems and Manufacturing","1881-3054","1881-3054","('ENGINEERING, MANUFACTURING', 'ENGINEERING, MECHANICAL')","('SCIE', 'SCIE')","827","0.8","('Q4', 'Q4')","0.20","96.33" +"Journal of Computational Finance","1460-1559","1755-2850","BUSINESS, FINANCE","('SSCI',)","371","0.8","Q4","0.20","0.00" +"Journal of Nano Research","1662-5250","1661-9897","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","779","0.8","('Q4', 'Q4', 'Q4')","0.20","0.00" +"Meteorology Hydrology and Water Management-Research and Operational Applications","2299-3835","2353-5652","WATER RESOURCES","('ESCI',)","111","0.8","Q4","0.20","100.00" +"Obstetric Medicine","1753-495X","1753-4968","OBSTETRICS & GYNECOLOGY","('ESCI',)","686","0.8","Q4","0.20","18.01" +"OPTICS AND SPECTROSCOPY","0030-400X","1562-6911","('OPTICS', 'SPECTROSCOPY')","('SCIE', 'SCIE')","2,340","0.8","('Q4', 'Q4')","0.20","0.00" +"ORVOSI HETILAP","0030-6002","1788-6120","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,469","0.8","Q3","0.20","83.17" +"Respirology Case Reports","2051-3380","2051-3380","RESPIRATORY SYSTEM","('ESCI',)","647","0.8","Q4","0.20","66.67" +"REVISTA DE BIOLOGIA TROPICAL","0034-7744","2215-2075","BIOLOGY","('SCIE',)","2,857","0.8","Q4","0.20","75.81" +"Russian Journal of Biological Invasions","2075-1117","2075-1125","ECOLOGY","('ESCI',)","442","0.8","Q4","0.20","0.00" +"SEMINARS IN ROENTGENOLOGY","0037-198X","1558-4658","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","370","0.8","Q4","0.20","7.53" +"Soil Mechanics and Foundation Engineering","0038-0741","1573-9279","ENGINEERING, GEOLOGICAL","('SCIE',)","723","0.8","Q4","0.20","0.00" +"SOUTH AFRICAN JOURNAL OF CHEMISTRY-SUID-AFRIKAANSE TYDSKRIF VIR CHEMIE","0379-4350","1996-840X","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","487","0.8","Q4","0.20","86.96" +"Statistical Applications in Genetics and Molecular Biology","2194-6302","1544-6115","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","1,407","0.8","('Q4', 'Q4', 'Q3')","0.20","10.71" +"tm-Technisches Messen","0171-8096","2196-7113","INSTRUMENTS & INSTRUMENTATION","('SCIE',)","475","0.8","Q4","0.20","13.50" +"Turkish Thoracic Journal","","2149-2530","RESPIRATORY SYSTEM","('ESCI',)","387","0.8","Q4","0.20","40.29" +"Workplace-A Journal for Academic Labor","1715-0094","1715-0094","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","40","0.8","Q3","0.20","0.00" +"ACTA ALIMENTARIA","0139-3006","1588-2535","('FOOD SCIENCE & TECHNOLOGY', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","814","0.8","('Q4', 'Q4')","0.19","40.11" +"Advances in Operations Research","1687-9147","1687-9155","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","204","0.8","Q4","0.19","100.00" +"Artificial Life and Robotics","1433-5298","1614-7456","ROBOTICS","('ESCI',)","579","0.8","Q4","0.19","13.82" +"Cataloging & Classification Quarterly","0163-9374","1544-4554","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","364","0.8","Q3","0.19","11.61" +"CRITICAL REVIEWS IN IMMUNOLOGY","1040-8401","2162-6472","IMMUNOLOGY","('SCIE',)","1,430","0.8","Q4","0.19","1.33" +"DEFENCE SCIENCE JOURNAL","0011-748X","0976-464X","MULTIDISCIPLINARY SCIENCES","('SCIE',)","1,166","0.8","Q3","0.19","85.09" +"FDMP-Fluid Dynamics & Materials Processing","1555-256X","1555-2578","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","456","0.8","Q4","0.19","99.76" +"HETEROCYCLES","0385-5414","1881-0942","CHEMISTRY, ORGANIC","('SCIE',)","3,162","0.8","Q4","0.19","0.00" +"History of Economics Review","1037-0196","1838-6318","('ECONOMICS', 'HISTORY OF SOCIAL SCIENCES')","('ESCI', 'ESCI')","96","0.8","('Q3', 'Q2')","0.19","21.62" +"IEICE Electronics Express","1349-2543","1349-2543","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","1,447","0.8","Q4","0.19","82.62" +"Indian Journal of Occupational and Environmental Medicine","0973-2284","1998-3670","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","743","0.8","Q4","0.19","11.02" +"International Journal of Information System Modeling and Design","1947-8186","1947-8194","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","112","0.8","Q4","0.19","67.21" +"International Journal of Microgravity Science and Application","0915-3616","2188-9783","PHYSICS, APPLIED","('ESCI',)","128","0.8","Q4","0.19","0.00" +"LEPROSY REVIEW","0305-7518","2162-8807","('DERMATOLOGY', 'INFECTIOUS DISEASES', 'PATHOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","754","0.8","('Q4', 'Q4', 'Q4', 'Q4')","0.19","100.00" +"Praxis-Colombia","1657-4915","2389-7856","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","87","0.8","Q3","0.19","73.91" +"Theoretical Biology Forum","2282-2593","2283-7175","BIOLOGY","('SCIE',)","38","0.8","Q4","0.19","0.00" +"Therapeutic Hypothermia and Temperature Management","2153-7658","2153-7933","CRITICAL CARE MEDICINE","('SCIE',)","278","0.8","Q4","0.19","6.80" +"ACCREDITATION AND QUALITY ASSURANCE","0949-1775","1432-0517","('CHEMISTRY, ANALYTICAL', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","723","0.8","('Q4', 'Q4')","0.18","21.21" +"Advanced Electromagnetics","2119-0275","2119-0275","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","204","0.8","Q4","0.18","1.18" +"Archive of Clinical Cases","","2360-6975","MEDICINE, GENERAL & INTERNAL","('ESCI',)","59","0.8","Q3","0.18","100.00" +"Clinical Medicine Insights-Case Reports","1179-5476","1179-5476","MEDICINE, GENERAL & INTERNAL","('ESCI',)","255","0.8","Q3","0.18","89.07" +"Current Issues in Auditing","1936-1270","1936-1270","BUSINESS, FINANCE","('ESCI',)","221","0.8","Q4","0.18","97.73" +"Doklady Biochemistry and Biophysics","1607-6729","1608-3091","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","719","0.8","('Q4', 'Q4')","0.18","22.61" +"Human Ecology Review","1074-4827","2204-0919","('ENVIRONMENTAL STUDIES', 'SOCIOLOGY')","('SSCI', 'SSCI')","1,019","0.8","('Q4', 'Q3')","0.18","100.00" +"International Journal of Intelligent Unmanned Systems","2049-6427","2049-6435","ROBOTICS","('ESCI',)","204","0.8","Q4","0.18","0.00" +"International Journal of Womens Health and Reproduction Sciences","2330-4456","2330-4456","REPRODUCTIVE BIOLOGY","('ESCI',)","348","0.8","Q4","0.18","94.21" +"Journal of Laser Micro Nanoengineering","1880-0688","1880-0688","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","596","0.8","('Q4', 'Q4', 'Q4', 'Q4')","0.18","100.00" +"Journal of Wildlife and Biodiversity","","2588-3526","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('ESCI', 'ESCI')","117","0.8","('Q4', 'Q4')","0.18","0.00" +"Magazine of Civil Engineering","2712-8172","2071-0305","ENGINEERING, CIVIL","('ESCI',)","534","0.8","Q4","0.18","0.00" +"Radiophysics and Quantum Electronics","0033-8443","1573-9120","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE', 'SCIE')","1,041","0.8","('Q4', 'Q4', 'Q4')","0.18","0.00" +"Serbian Journal of Management","1452-4864","1452-4864","MANAGEMENT","('ESCI',)","237","0.8","Q4","0.18","98.82" +"Smart and Sustainable Manufacturing Systems","2520-6478","2572-3928","ENGINEERING, MANUFACTURING","('ESCI',)","168","0.8","Q4","0.18","0.00" +"ACM Transactions on Computation Theory","1942-3454","1942-3462","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","256","0.8","Q3","0.17","2.13" +"Acta Logistica","","1339-5629","('ENGINEERING, INDUSTRIAL', 'MANAGEMENT')","('ESCI', 'ESCI')","144","0.8","('Q4', 'Q4')","0.17","96.71" +"Archives of Thermodynamics","1231-0956","2083-6023","THERMODYNAMICS","('ESCI',)","335","0.8","Q4","0.17","94.69" +"ARKIVOC","1551-7004","1551-7012","CHEMISTRY, ORGANIC","('SCIE',)","2,288","0.8","Q4","0.17","95.70" +"Ciudad y Territorio-Estudios Territoriales-CyTET","1133-4762","","URBAN STUDIES","('ESCI',)","291","0.8","Q3","0.17","87.89" +"CLINICAL NEUROPHARMACOLOGY","0362-5664","1537-162X","('CLINICAL NEUROLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","1,911","0.8","('Q4', 'Q4')","0.17","8.22" +"Clinical Reviews in Bone and Mineral Metabolism","1534-8644","1559-0119","ENDOCRINOLOGY & METABOLISM","('ESCI',)","248","0.8","Q4","0.17","23.08" +"CURRENT HIV RESEARCH","1570-162X","1873-4251","('IMMUNOLOGY', 'INFECTIOUS DISEASES', 'VIROLOGY')","('SCIE', 'SCIE', 'SCIE')","835","0.8","('Q4', 'Q4', 'Q4')","0.17","2.63" +"Economic Issues","1363-7029","1363-7029","ECONOMICS","('ESCI',)","130","0.8","Q3","0.17","0.00" +"Electronic Journal of Structural Engineering","1443-9255","1443-9255","ENGINEERING, CIVIL","('ESCI',)","251","0.8","Q4","0.17","73.77" +"FOLIA BIOLOGICA-KRAKOW","0015-5497","1734-9168","BIOLOGY","('SCIE',)","357","0.8","Q4","0.17","91.38" +"HOSPITAL PHARMACY","0018-5787","1945-1253","PHARMACOLOGY & PHARMACY","('ESCI',)","918","0.8","Q4","0.17","4.63" +"International Journal of Computational Intelligence and Applications","1469-0268","1757-5885","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","571","0.8","Q4","0.17","0.00" +"JOURNAL OF BIOLOGICAL REGULATORS AND HOMEOSTATIC AGENTS","0393-974X","1724-6083","('ENDOCRINOLOGY & METABOLISM', 'IMMUNOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","2,954","0.8","('Q4', 'Q4', 'Q4', 'Q4')","0.17","0.00" +"JOURNAL OF FLOW VISUALIZATION AND IMAGE PROCESSING","1065-3090","1940-4336","('ENGINEERING, MECHANICAL', 'MECHANICS')","('ESCI', 'ESCI')","105","0.8","('Q4', 'Q4')","0.17","0.00" +"Journal of Medical Devices-Transactions of the ASME","1932-6181","1932-619X","ENGINEERING, BIOMEDICAL","('SCIE',)","731","0.8","Q4","0.17","1.23" +"Journal of Prison Education and Reentry","2387-2306","2387-2306","SOCIAL ISSUES","('ESCI',)","65","0.8","Q3","0.17","0.00" +"JOURNAL OF VECTOR BORNE DISEASES","0972-9062","0972-9062","('INFECTIOUS DISEASES', 'PARASITOLOGY', 'TROPICAL MEDICINE')","('SCIE', 'SCIE', 'SCIE')","974","0.8","('Q4', 'Q4', 'Q4')","0.17","89.66" +"Management-Journal of Contemporary Management Issues","1331-0194","1846-3363","MANAGEMENT","('ESCI',)","270","0.8","Q4","0.17","100.00" +"Membrane and Water Treatment","2005-8624","2092-7037","('ENGINEERING, CHEMICAL', 'WATER RESOURCES')","('SCIE', 'SCIE')","343","0.8","('Q4', 'Q4')","0.17","0.00" +"Pesquisa Agropecuaria Tropical","1517-6398","1983-4063","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","840","0.8","Q3","0.17","84.15" +"Serbian Astronomical Journal","1450-698X","1820-9289","ASTRONOMY & ASTROPHYSICS","('SCIE',)","96","0.8","Q4","0.17","100.00" +"Challenges in Sustainability","2297-6477","2297-6477","GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY","('ESCI',)","64","0.8","Q4","0.16","85.71" +"CIRCUIT WORLD","0305-6120","1758-602X","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","373","0.8","('Q4', 'Q4')","0.16","0.00" +"Egyptian Liver Journal","2090-6218","2090-6226","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","207","0.8","Q4","0.16","99.57" +"Fonseca-Journal of Communication","2172-9077","2172-9077","COMMUNICATION","('ESCI',)","112","0.8","Q3","0.16","98.55" +"GLASS PHYSICS AND CHEMISTRY","1087-6596","1608-313X","MATERIALS SCIENCE, CERAMICS","('SCIE',)","1,022","0.8","Q4","0.16","1.95" +"Journal of Creativity in Mental Health","1540-1383","1540-1391","PSYCHOLOGY, CLINICAL","('ESCI',)","408","0.8","Q4","0.16","3.23" +"JOURNAL OF ENTERPRISING CULTURE","0218-4958","1793-6330","BUSINESS","('ESCI',)","375","0.8","Q4","0.16","2.17" +"Journal of Mechanics in Medicine and Biology","0219-5194","1793-6810","('BIOPHYSICS', 'ENGINEERING, BIOMEDICAL')","('SCIE', 'SCIE')","1,242","0.8","('Q4', 'Q4')","0.16","34.81" +"Journal of Southeast Asian Economies","2339-5095","2339-5206","ECONOMICS","('ESCI',)","169","0.8","Q3","0.16","0.00" +"JOURNAL OF THE KOREAN PHYSICAL SOCIETY","0374-4884","1976-8524","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","3,819","0.8","Q3","0.16","1.56" +"LCGC EUROPE","1471-6577","1471-6577","CHEMISTRY, ANALYTICAL","('SCIE',)","301","0.8","Q4","0.16","0.00" +"Materials Science-Medziagotyra","1392-1320","2029-7289","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","882","0.8","Q4","0.16","99.10" +"Promet-Traffic & Transportation","0353-5320","1848-4069","TRANSPORTATION SCIENCE & TECHNOLOGY","('SCIE',)","580","0.8","Q4","0.16","43.14" +"Reports","","2571-841X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","178","0.8","Q3","0.16","100.00" +"Revista Mexicana de Biodiversidad","1870-3453","2007-8706","BIODIVERSITY CONSERVATION","('SCIE',)","1,736","0.8","Q4","0.16","98.83" +"South African Journal of Clinical Nutrition","1607-0658","2221-1268","NUTRITION & DIETETICS","('ESCI',)","439","0.8","Q4","0.16","97.50" +"TEXAS HEART INSTITUTE JOURNAL","0730-2347","1526-6702","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,938","0.8","Q4","0.16","95.59" +"Economics-The Open Access Open-Assessment E-Journal","1864-6042","1864-6042","ECONOMICS","('SSCI',)","458","0.8","Q3","0.15","96.08" +"International Journal of Environment and Sustainable Development","1474-6778","1478-7466","ENVIRONMENTAL STUDIES","('ESCI',)","379","0.8","Q4","0.15","1.37" +"ISeCure-ISC International Journal of Information Security","2008-2045","2008-3076","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","83","0.8","Q4","0.15","0.00" +"Journal of Construction in Developing Countries","1823-6499","1985-8329","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","304","0.8","Q4","0.15","100.00" +"METALLURGIST","0026-0894","1573-8892","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","1,047","0.8","Q4","0.15","0.00" +"MRS Advances","2731-5894","2059-8521","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","1,736","0.8","Q4","0.15","16.10" +"Studies in Psychology","0210-9395","1579-3699","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","58","0.8","Q3","0.15","11.59" +"Advanced Biomedical Engineering","2187-5219","2187-5219","ENGINEERING, BIOMEDICAL","('ESCI',)","119","0.8","Q4","0.14","100.00" +"Annals of Applied Sport Science","2322-4479","2322-4479","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","227","0.8","Q4","0.14","60.65" +"APPLIED ENGINEERING IN AGRICULTURE","0883-8542","1943-7838","AGRICULTURAL ENGINEERING","('SCIE',)","2,462","0.8","Q4","0.14","0.00" +"BIOTECHNOLOGIE AGRONOMIE SOCIETE ET ENVIRONNEMENT","1370-6233","1780-4507","('AGRONOMY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","710","0.8","('Q3', 'Q4')","0.14","50.75" +"Corrosion Science and Technology-Korea","1598-6462","2288-6524","ELECTROCHEMISTRY","('ESCI',)","295","0.8","Q4","0.14","0.00" +"Current Nutrition & Food Science","1573-4013","2212-3881","NUTRITION & DIETETICS","('ESCI',)","737","0.8","Q4","0.14","3.13" +"Expert Opinion on Orphan Drugs","2167-8707","2167-8707","PHARMACOLOGY & PHARMACY","('SCIE',)","339","0.8","Q4","0.14","30.77" +"International Journal of Business Performance Management","1368-4892","1741-5039","MANAGEMENT","('ESCI',)","214","0.8","Q4","0.14","0.00" +"International Journal of Cardiology Congenital Heart Disease","2666-6685","2666-6685","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","184","0.8","Q4","0.14","94.92" +"International Journal of Public Administration in the Digital Age","2334-4520","2334-4539","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","92","0.8","Q3","0.14","84.62" +"Journal of Algorithms & Computational Technology","1748-3018","1748-3026","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","298","0.8","Q4","0.14","98.28" +"JOURNAL OF THE PAKISTAN MEDICAL ASSOCIATION","0030-9982","0030-9982","('MEDICINE, GENERAL & INTERNAL', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","4,846","0.8","('Q3', 'Q4')","0.14","83.51" +"Management-Poland","1429-9321","2299-193X","MANAGEMENT","('ESCI',)","149","0.8","Q4","0.14","96.72" +"Recherche et Applications en Marketing-English Edition","2051-5707","2051-5707","BUSINESS","('ESCI',)","419","0.8","Q4","0.14","1.92" +"Southern African Journal of Critical Care","1562-8264","2078-676X","CRITICAL CARE MEDICINE","('ESCI',)","139","0.8","Q4","0.14","95.65" +"Advances in Civil and Architectural Engineering","2975-3848","2975-3848","ENGINEERING, CIVIL","('ESCI',)","14","0.8","Q4","0.13","100.00" +"Annals of the University Dunarea de Jos of Galati, Fascicle VI-Food Technology","1843-5157","2068-259X","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","209","0.8","Q4","0.13","87.18" +"British Columbia Medical Journal","0007-0556","0007-0556","MEDICINE, GENERAL & INTERNAL","('ESCI',)","220","0.8","Q3","0.13","0.00" +"Hemijska Industrija","0367-598X","2217-7426","ENGINEERING, CHEMICAL","('SCIE',)","527","0.8","Q4","0.13","83.53" +"Interdisciplinaria","1668-7027","1668-7027","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","319","0.8","Q3","0.13","97.60" +"International Journal of Engineering Social Justice and Peace","1927-9434","1927-9434","SOCIAL ISSUES","('ESCI',)","33","0.8","Q3","0.13","96.00" +"INTERNATIONAL JOURNAL OF ROBOTICS & AUTOMATION","0826-8185","1925-7090","('AUTOMATION & CONTROL SYSTEMS', 'ROBOTICS')","('SCIE', 'SCIE')","524","0.8","('Q4', 'Q4')","0.13","0.00" +"LATIN AMERICAN APPLIED RESEARCH","0327-0793","1851-8796","ENGINEERING, CHEMICAL","('SCIE',)","439","0.8","Q4","0.13","92.95" +"Letters on Materials","2218-5046","2410-3535","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","429","0.8","Q4","0.13","26.25" +"Nano LIFE","1793-9844","1793-9852","MATERIALS SCIENCE, BIOMATERIALS","('ESCI',)","221","0.8","Q4","0.13","1.28" +"Revista de Osteoporosis y Metabolismo Mineral","1889-836X","2173-2345","ENDOCRINOLOGY & METABOLISM","('ESCI',)","85","0.8","Q4","0.13","72.00" +"DOKLADY CHEMISTRY","0012-5008","1608-3113","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","531","0.8","Q4","0.12","0.85" +"International Journal of Electrical and Computer Engineering Systems","1847-6996","1847-7003","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","368","0.8","Q4","0.12","1.21" +"JOURNAL OF ENVIRONMENTAL HEALTH","0022-0892","0022-0892","('ENVIRONMENTAL SCIENCES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","900","0.8","('Q4', 'Q4')","0.12","0.00" +"Makara Journal of Science","2339-1995","2356-0851","MULTIDISCIPLINARY SCIENCES","('ESCI',)","209","0.8","Q3","0.12","98.99" +"Nanosystems-Physics Chemistry Mathematics","2220-8054","2305-7971","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","551","0.8","Q4","0.12","95.90" +"Proceedings of the Institution of Civil Engineers-Waste and Resource Management","1747-6526","1747-6534","ENGINEERING, ENVIRONMENTAL","('ESCI',)","312","0.8","Q4","0.12","6.25" +"Romanian Astronomical Journal","1220-5168","2285-3758","ASTRONOMY & ASTROPHYSICS","('ESCI',)","73","0.8","Q4","0.12","0.00" +"Solid Fuel Chemistry","0361-5219","1934-8029","('CHEMISTRY, MULTIDISCIPLINARY', 'ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE', 'SCIE')","566","0.8","('Q4', 'Q4', 'Q4')","0.12","3.86" +"TECHNICAL PHYSICS LETTERS","1063-7850","1090-6533","PHYSICS, APPLIED","('SCIE',)","1,939","0.8","Q4","0.12","0.22" +"ASTRONOMY & GEOPHYSICS","1366-8781","1468-4004","('ASTRONOMY & ASTROPHYSICS', 'GEOCHEMISTRY & GEOPHYSICS')","('SCIE', 'SCIE')","305","0.8","('Q4', 'Q4')","0.11","3.13" +"China Surface Engineering","1007-9289","1007-9289","MATERIALS SCIENCE, COATINGS & FILMS","('ESCI',)","492","0.8","Q4","0.11","0.00" +"ENGINEERING JOURNAL-AMERICAN INSTITUTE OF STEEL CONSTRUCTION","0013-8029","0013-8029","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","503","0.8","('Q4', 'Q4')","0.11","0.00" +"Italian Journal of Engineering Geology and Environment","1825-6635","2035-5688","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","170","0.8","Q4","0.11","0.00" +"Jornal Vascular Brasileiro","1677-5449","1677-7301","PERIPHERAL VASCULAR DISEASE","('ESCI',)","539","0.8","Q4","0.11","94.37" +"Malaysian Journal of Fundamental and Applied Sciences","2289-5981","2289-599X","MULTIDISCIPLINARY SCIENCES","('ESCI',)","602","0.8","Q3","0.11","36.19" +"Revista Peruana de Investigacion Educativa","2076-6300","2077-4168","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","44","0.8","Q3","0.11","88.46" +"Agua y Territorio","2340-7743","2340-7743","WATER RESOURCES","('ESCI',)","147","0.8","Q4","0.09","94.23" +"Progress on Chemistry and Application of Chitin and its Derivatives","1896-5644","1896-5644","MATERIALS SCIENCE, BIOMATERIALS","('ESCI',)","203","0.8","Q4","0.09","98.00" +"Teoria y Realidad Constitucional","1139-5583","1139-5583","POLITICAL SCIENCE","('ESCI',)","198","0.8","Q3","0.09","0.00" +"Journal of New Technology and Materials","2170-161X","2170-161X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","85","0.8","Q4","0.08","0.00" +"Panorama","1909-7433","2145-308X","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","104","0.8","Q3","0.08","40.35" +"Surgical Technology International-International Developments in Surgery and Surgical Research","","1090-3941","SURGERY","('ESCI',)","1,045","0.8","Q4","0.08","0.00" +"Urbano","0717-3997","0718-3607","REGIONAL & URBAN PLANNING","('ESCI',)","99","0.8","Q4","0.05","100.00" +"ADVANCED MATERIALS & PROCESSES","0882-7958","2161-9425","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","529","0.8","Q4","0.04","0.00" +"Revista de Filosofia","0034-8236","0718-4360","PHILOSOPHY","('AHCI',)","230","0.8","","0.02","0.00" +"PACHYDERM","1026-2881","","('BIODIVERSITY CONSERVATION', 'ZOOLOGY')","('SCIE', 'SCIE')","180","0.8","('Q4', 'Q3')","0.00","3.45" +"Early Medieval Europe","0963-9462","1468-0254","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","345","0.7","","3.58","40.28" +"Anuario Lope de Vega-Texto Literatura Cultura","2014-8860","2014-8860","LITERATURE, ROMANCE","('ESCI',)","84","0.7","","3.45","89.13" +"Transactions of the American Philological Association","0360-5949","1533-0699","CLASSICS","('AHCI',)","906","0.7","","3.31","0.00" +"PMLA-PUBLICATIONS OF THE MODERN LANGUAGE ASSOCIATION OF AMERICA","0030-8129","1938-1530","LITERATURE","('AHCI',)","2,161","0.7","","3.16","1.08" +"CHILDRENS LITERATURE IN EDUCATION","0045-6713","1573-1693","LITERATURE","('AHCI',)","405","0.7","","2.67","39.52" +"CLASSICAL PHILOLOGY","0009-837X","1546-072X","CLASSICS","('AHCI',)","953","0.7","","2.67","4.17" +"Modern Intellectual History","1479-2443","1479-2451","HISTORY","('AHCI',)","492","0.7","Q1","2.65","27.62" +"NUMEN-INTERNATIONAL REVIEW FOR THE HISTORY OF RELIGIONS","0029-5973","1568-5276","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","450","0.7","('Q1', 'N/A')","2.52","30.51" +"JOURNAL OF WORLD HISTORY","1045-6007","1527-8050","HISTORY","('AHCI',)","757","0.7","Q1","2.27","0.00" +"Oral History Review","0094-0798","1533-8592","HISTORY","('AHCI', 'SSCI')","263","0.7","Q1","2.27","19.51" +"JOURNAL OF MODERN HISTORY","0022-2801","1537-5358","HISTORY","('AHCI', 'SSCI')","1,026","0.7","Q1","2.26","0.00" +"JOURNAL OF BRITISH STUDIES","0021-9371","1545-6986","HISTORY","('AHCI', 'SSCI')","932","0.7","Q1","2.22","58.62" +"Journal for the Study of Spirituality","2044-0243","2044-0251","RELIGION","('ESCI',)","107","0.7","","2.17","20.00" +"Politics Religion & Ideology","2156-7689","2156-7697","('HISTORY', 'POLITICAL SCIENCE', 'RELIGION')","('AHCI, SSCI', 'SSCI', 'AHCI')","367","0.7","('Q1', 'Q3', 'N/A')","2.06","27.27" +"Journal of Management Spirituality & Religion","1476-6086","1942-258X","RELIGION","('ESCI',)","609","0.7","","2.03","8.70" +"South East Asia Research","0967-828X","2043-6874","ASIAN STUDIES","('AHCI',)","377","0.7","","1.93","7.89" +"BRITISH JOURNAL OF AESTHETICS","0007-0904","1468-2842","('ART', 'PHILOSOPHY')","('AHCI', 'AHCI')","828","0.7","('N/A', 'N/A')","1.87","27.68" +"Fashion Theory-The Journal of Dress Body & Culture","1362-704X","1751-7419","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","639","0.7","","1.86","17.31" +"JOURNAL OF PHILOSOPHICAL LOGIC","0022-3611","1573-0433","PHILOSOPHY","('AHCI',)","1,297","0.7","","1.86","46.90" +"JOURNAL OF HELLENIC STUDIES","0075-4269","2041-4099","CLASSICS","('AHCI',)","766","0.7","","1.82","43.59" +"JOURNAL OF CONTEMPORARY HISTORY","0022-0094","1461-7250","HISTORY","('AHCI', 'SSCI')","1,256","0.7","Q1","1.77","29.06" +"SCANDINAVIAN JOURNAL OF HISTORY","0346-8755","1502-7716","HISTORY","('AHCI',)","370","0.7","Q1","1.77","63.95" +"Fashion Practice-The Journal of Design Creative Process & the Fashion Industry","1756-9370","1756-9389","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","262","0.7","","1.76","17.39" +"Indonesia and the Malay World","1363-9811","1469-8382","ASIAN STUDIES","('AHCI',)","275","0.7","","1.76","14.29" +"DICKENS QUARTERLY","0742-5473","","LITERATURE, BRITISH ISLES","('AHCI',)","108","0.7","","1.72","0.00" +"Religions","","2077-1444","RELIGION","('AHCI',)","4,258","0.7","","1.71","99.74" +"International Journal of Latin American Religions","2509-9957","2509-9965","RELIGION","('ESCI',)","90","0.7","","1.69","14.63" +"JOURNAL OF LATIN AMERICAN STUDIES","0022-216X","1469-767X","('AREA STUDIES', 'HUMANITIES, MULTIDISCIPLINARY')","('SSCI', 'AHCI')","989","0.7","('Q2', 'N/A')","1.66","31.08" +"Philosophy of Music Education Review","1063-5734","1543-3412","MUSIC","('ESCI',)","167","0.7","","1.65","0.00" +"Journal of Green Building","1552-6100","1943-4618","ARCHITECTURE","('AHCI',)","638","0.7","","1.63","0.00" +"Design and Culture","1754-7075","1754-7083","ART","('AHCI',)","287","0.7","","1.62","13.56" +"Bogoslovni Vestnik-Theological Quarterly-Ephemerides Theologicae","0006-5722","1581-2987","RELIGION","('ESCI',)","204","0.7","","1.54","95.34" +"PACIFIC PHILOSOPHICAL QUARTERLY","0279-0750","1468-0114","PHILOSOPHY","('AHCI',)","874","0.7","","1.54","23.36" +"RADICAL HISTORY REVIEW","0163-6545","","HISTORY","('AHCI',)","700","0.7","Q1","1.52","0.00" +"Rhetoric Review","0735-0198","1532-7981","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","238","0.7","('N/A', 'N/A')","1.51","4.92" +"Journal of Media and Religion","1534-8423","1534-8415","RELIGION","('ESCI',)","123","0.7","","1.50","13.79" +"Konstantinove Listy-Constantines Letters","1337-8740","2453-7675","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","76","0.7","","1.47","100.00" +"JOURNAL OF MUSIC THEORY","0022-2909","1941-7497","MUSIC","('AHCI',)","292","0.7","","1.45","0.00" +"International Journal of Evidence & Proof","1365-7127","1740-5572","LAW","('SSCI',)","298","0.7","Q2","1.41","43.64" +"Mortality","1357-6275","1469-9885","('HUMANITIES, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","590","0.7","('N/A', 'Q3')","1.40","33.33" +"Visual Studies","1472-586X","1472-5878","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","736","0.7","","1.40","26.17" +"European Journal of Analytic Philosophy","1845-8475","1849-0514","('ETHICS', 'PHILOSOPHY')","('ESCI', 'ESCI')","72","0.7","('Q4', 'N/A')","1.36","93.88" +"JOURNAL OF THE AMERICAN INSTITUTE FOR CONSERVATION","0197-1360","1945-2330","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","508","0.7","","1.33","9.68" +"Critical Research on Religion","2050-3032","2050-3040","RELIGION","('ESCI',)","157","0.7","","1.31","25.42" +"DICKENSIAN","0012-2440","0012-2440","LITERATURE, BRITISH ISLES","('AHCI',)","95","0.7","","1.31","0.00" +"EUROPEAN JOURNAL OF PHILOSOPHY","0966-8373","1468-0378","PHILOSOPHY","('AHCI',)","955","0.7","","1.25","40.58" +"Journal of Korean Studies","0731-1613","2158-1665","('ASIAN STUDIES', 'HISTORY')","('AHCI', 'AHCI')","151","0.7","('N/A', 'Q1')","1.25","0.00" +"AFRICAN ECONOMIC HISTORY","0145-2258","2163-9108","HISTORY","('AHCI',)","162","0.7","Q1","1.24","0.00" +"Popular Music","0261-1430","1474-0095","MUSIC","('AHCI',)","536","0.7","","1.22","50.00" +"Welt des Islams","0043-2539","","RELIGION","('AHCI',)","270","0.7","","1.21","18.42" +"PSYCHOANALYTIC QUARTERLY","0033-2828","2167-4086","PSYCHOLOGY, PSYCHOANALYSIS","('SSCI',)","838","0.7","Q2","1.20","4.76" +"JOURNAL OF THE HISTORY OF PHILOSOPHY","0022-5053","1538-4586","PHILOSOPHY","('AHCI',)","754","0.7","","1.19","0.00" +"Museums & Social Issues-A Journal of Reflective Discourse","1559-6893","2051-6193","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","69","0.7","","1.19","35.00" +"Culture Theory and Critique","1473-5784","1473-5776","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","238","0.7","","1.17","22.58" +"Journal of Cold War Studies","1520-3972","1531-3298","('HISTORY', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('AHCI, SSCI', 'SSCI', 'SSCI')","392","0.7","('Q1', 'Q3', 'Q3')","1.16","1.41" +"Digital Scholarship in the Humanities","2055-7671","2055-768X","('HUMANITIES, MULTIDISCIPLINARY', 'LINGUISTICS')","('AHCI', 'SSCI')","622","0.7","('N/A', 'Q3')","1.15","21.87" +"AJS Review-The Journal of the Association for Jewish Studies","0364-0094","1475-4541","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","279","0.7","('Q1', 'N/A')","1.14","0.00" +"British Journal of Religious Education","0141-6200","1740-7931","('EDUCATION & EDUCATIONAL RESEARCH', 'RELIGION')","('SSCI', 'AHCI')","386","0.7","('Q3', 'N/A')","1.14","37.38" +"Muqarnas-An Annual on the Visual Cultures of the Islamic World","0732-2992","2211-8993","('ARCHITECTURE', 'ART')","('AHCI', 'AHCI')","366","0.7","('N/A', 'N/A')","1.12","17.39" +"East Asian Science Technology and Society-An International Journal","1875-2160","1875-2152","('AREA STUDIES', 'ASIAN STUDIES', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SSCI', 'AHCI', 'AHCI, SSCI')","326","0.7","('Q2', 'N/A', 'Q2')","1.09","48.75" +"JOURNAL OF CANADIAN STUDIES-REVUE D ETUDES CANADIENNES","0021-9495","1911-0251","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","272","0.7","","1.06","0.00" +"REMIE-Multidisciplinary Journal of Educational Research","2014-2862","2014-2862","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","110","0.7","Q3","1.05","21.88" +"Journal of Applied Philosophy","0264-3758","1468-5930","('ETHICS', 'PHILOSOPHY')","('SSCI', 'AHCI')","1,018","0.7","('Q4', 'N/A')","1.04","43.68" +"LABOR HISTORY","0023-656X","1469-9702","('HISTORY', 'HISTORY OF SOCIAL SCIENCES', 'INDUSTRIAL RELATIONS & LABOR')","('AHCI', 'SSCI', 'SSCI')","450","0.7","('Q1', 'Q2', 'Q4')","1.00","21.09" +"JOURNAL OF BALTIC STUDIES","0162-9778","1751-7877","AREA STUDIES","('SSCI',)","355","0.7","Q2","0.98","9.17" +"Journal of Quantitative Linguistics","0929-6174","1744-5035","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","420","0.7","('N/A', 'Q3')","0.97","4.55" +"European Journal of English Studies","1382-5577","1744-4233","('CULTURAL STUDIES', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'LITERATURE')","('AHCI, SSCI', 'AHCI', 'SSCI', 'AHCI')","219","0.7","('Q3', 'N/A', 'Q3', 'N/A')","0.94","25.37" +"Humana Mente-Journal of Philosophical Studies","1972-1293","1972-1293","PHILOSOPHY","('ESCI',)","127","0.7","","0.94","0.00" +"Journal of World Intellectual Property","1422-2213","1747-1796","LAW","('ESCI',)","260","0.7","Q2","0.93","21.00" +"Access to Justice in Eastern Europe","2663-0575","2663-0583","LAW","('ESCI',)","111","0.7","Q2","0.92","17.22" +"Journal of Pastoral Theology","1064-9867","2161-4504","RELIGION","('ESCI',)","57","0.7","","0.89","8.70" +"Asian Journal of International Law","2044-2513","2044-2521","LAW","('ESCI',)","138","0.7","Q2","0.88","45.45" +"Word Structure","1750-1245","1755-2036","LANGUAGE & LINGUISTICS","('ESCI',)","166","0.7","","0.88","13.16" +"Alternative Law Journal","1037-969X","2398-9084","LAW","('ESCI',)","342","0.7","Q2","0.87","27.48" +"Phonology","0952-6757","1469-8188","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","698","0.7","('N/A', 'Q3')","0.87","69.23" +"Phronimon","1561-4018","2413-3086","PHILOSOPHY","('ESCI',)","82","0.7","","0.87","100.00" +"Papers of the British School at Rome","0068-2462","2045-239X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","448","0.7","","0.85","13.51" +"Liquid Crystals Today","1358-314X","1464-5181","CRYSTALLOGRAPHY","('ESCI',)","115","0.7","Q3","0.84","100.00" +"SYDNEY LAW REVIEW","0082-0512","1444-9528","LAW","('ESCI',)","368","0.7","Q2","0.84","0.00" +"Baltic Region","2079-8555","2310-0524","AREA STUDIES","('ESCI',)","170","0.7","Q2","0.83","87.62" +"INTERNATIONAL JOURNAL OF PHILOSOPHICAL STUDIES","0967-2559","1466-4542","PHILOSOPHY","('AHCI',)","410","0.7","","0.83","32.99" +"Dead Sea Discoveries","0929-0761","1568-5179","RELIGION","('AHCI',)","244","0.7","","0.82","23.26" +"Israel Studies","1084-9513","1527-201X","AREA STUDIES","('ESCI',)","447","0.7","Q2","0.80","0.00" +"Journal of Logical and Algebraic Methods in Programming","2352-2208","2352-2216","('COMPUTER SCIENCE, THEORY & METHODS', 'LOGIC')","('SCIE', 'SCIE')","310","0.7","('Q3', 'Q1')","0.78","41.51" +"LINGUISTIC REVIEW","0167-6318","1613-3676","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","513","0.7","('N/A', 'Q3')","0.78","16.67" +"Nexus Network Journal","1590-5896","1522-4600","('ARCHITECTURE', 'HISTORY & PHILOSOPHY OF SCIENCE')","('AHCI', 'SCIE')","426","0.7","('N/A', 'Q2')","0.78","40.64" +"World Competition","1011-4548","1875-8436","LAW","('ESCI',)","201","0.7","Q2","0.78","0.00" +"HASTINGS LAW JOURNAL","0017-8322","0017-8322","LAW","('SSCI',)","839","0.7","Q2","0.77","0.00" +"ARABIAN ARCHAEOLOGY AND EPIGRAPHY","0905-7196","1600-0471","ARCHAEOLOGY","('AHCI',)","300","0.7","","0.76","26.15" +"Gesture","1568-1475","1569-9773","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","469","0.7","('N/A', 'Q3')","0.76","4.17" +"Polis-Politicheskiye Issledovaniya","1026-9487","1684-0070","POLITICAL SCIENCE","('ESCI',)","539","0.7","Q3","0.76","0.94" +"JOURNAL OF SOUTHERN AFRICAN STUDIES","0305-7070","1465-3893","AREA STUDIES","('SSCI',)","1,622","0.7","Q2","0.75","22.90" +"WISCONSIN LAW REVIEW","0043-650X","1943-1120","LAW","('SSCI',)","703","0.7","Q2","0.75","0.00" +"Criminal Law and Philosophy","1871-9791","1871-9805","LAW","('ESCI',)","383","0.7","Q2","0.74","40.31" +"Proceedings of the Institute of Mathematics and Mechanics","2409-4986","2409-4994","MATHEMATICS","('ESCI',)","101","0.7","Q2","0.74","44.44" +"Tamkang Journal of Mathematics","0049-2930","2073-9826","MATHEMATICS","('ESCI',)","408","0.7","Q2","0.72","86.75" +"UNIVERSITY OF TORONTO LAW JOURNAL","0042-0220","1710-1174","LAW","('SSCI',)","472","0.7","Q2","0.72","0.00" +"YEARBOOK FOR TRADITIONAL MUSIC","0740-1558","2304-3857","MUSIC","('AHCI',)","144","0.7","","0.72","5.88" +"LATIN AMERICAN RESEARCH REVIEW","","1542-4278","AREA STUDIES","('SSCI',)","1,301","0.7","Q2","0.71","95.41" +"SEMIGROUP FORUM","0037-1912","1432-2137","MATHEMATICS","('SCIE',)","1,228","0.7","Q2","0.71","21.19" +"Syntax-A Journal of Theoretical Experimental and Interdisciplinary Research","1368-0005","1467-9612","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","411","0.7","('N/A', 'Q3')","0.71","35.71" +"Eastern Journal of European Studies","2068-651X","2068-6633","AREA STUDIES","('ESCI',)","193","0.7","Q2","0.70","100.00" +"JOURNAL OF FIELD ORNITHOLOGY","0273-8570","1557-9263","ORNITHOLOGY","('SCIE',)","1,466","0.7","Q3","0.70","65.35" +"Oxford Journal of Archaeology","0262-5253","1468-0092","ARCHAEOLOGY","('AHCI',)","507","0.7","","0.70","46.15" +"DISCRETE MATHEMATICS","0012-365X","1872-681X","MATHEMATICS","('SCIE',)","8,361","0.7","Q2","0.69","15.12" +"INTERVENTION IN SCHOOL AND CLINIC","1053-4512","1538-4810","EDUCATION, SPECIAL","('SSCI',)","724","0.7","Q4","0.69","2.14" +"Catalan Journal of Linguistics","1695-6885","2014-9719","LANGUAGE & LINGUISTICS","('ESCI',)","150","0.7","","0.68","100.00" +"Journal of Geometry","0047-2468","1420-8997","MATHEMATICS","('ESCI',)","581","0.7","Q2","0.67","15.49" +"ZEITSCHRIFT FUR ANALYSIS UND IHRE ANWENDUNGEN","0232-2064","1661-4534","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","520","0.7","('Q2', 'Q3')","0.67","0.00" +"BIRD STUDY","0006-3657","1944-6705","ORNITHOLOGY","('SCIE',)","1,836","0.7","Q3","0.66","14.75" +"ACM Transactions on Computational Logic","1529-3785","1557-945X","('COMPUTER SCIENCE, THEORY & METHODS', 'LOGIC')","('SCIE', 'SCIE')","434","0.7","('Q3', 'Q1')","0.65","3.41" +"Collectanea Mathematica","0010-0757","2038-4815","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","540","0.7","('Q2', 'Q3')","0.65","29.41" +"Pamatky Archeologicke","0031-0506","","ARCHAEOLOGY","('AHCI',)","172","0.7","","0.65","81.82" +"Register Studies","2542-9477","2542-9485","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","74","0.7","('N/A', 'Q3')","0.65","15.38" +"STUDIA MATHEMATICA","0039-3223","1730-6337","MATHEMATICS","('SCIE',)","3,023","0.7","Q2","0.65","0.00" +"Ethics & Bioethics","1338-5615","2453-7829","('ETHICS', 'PHILOSOPHY')","('ESCI', 'ESCI')","50","0.7","('Q4', 'N/A')","0.63","100.00" +"International Journal of the Legal Profession","0969-5958","1469-9257","LAW","('ESCI',)","199","0.7","Q2","0.63","21.82" +"International Studies in the Philosophy of Science","0269-8595","1469-9281","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI',)","337","0.7","Q2","0.63","19.61" +"Journal of Nonlinear and Convex Analysis","1345-4773","1880-5221","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,324","0.7","('Q2', 'Q3')","0.63","0.19" +"JOURNAL OF OPERATOR THEORY","0379-4024","1841-7744","MATHEMATICS","('SCIE',)","987","0.7","Q2","0.63","0.00" +"JOURNAL OF THE MATHEMATICAL SOCIETY OF JAPAN","0025-5645","","MATHEMATICS","('SCIE',)","1,664","0.7","Q2","0.63","0.00" +"PROCEEDINGS OF THE EDINBURGH MATHEMATICAL SOCIETY","0013-0915","1464-3839","MATHEMATICS","('SCIE',)","1,067","0.7","Q2","0.63","13.79" +"BOLLETTINO DELLA UNIONE MATEMATICA ITALIANA","1972-6724","2198-2759","MATHEMATICS","('ESCI',)","525","0.7","Q2","0.62","38.40" +"BULLETIN OF SYMBOLIC LOGIC","1079-8986","1943-5894","('LOGIC', 'MATHEMATICS')","('SCIE', 'SCIE')","291","0.7","('Q1', 'Q2')","0.62","15.69" +"International Journal of Analysis and Applications","2291-8639","2291-8639","MATHEMATICS","('ESCI',)","431","0.7","Q2","0.62","99.23" +"International Journal of Mobile Communications","1470-949X","1741-5217","COMMUNICATION","('SSCI',)","602","0.7","Q3","0.62","0.86" +"Iranian Studies","0021-0862","1475-4819","('AREA STUDIES', 'ASIAN STUDIES')","('SSCI', 'AHCI')","868","0.7","('Q2', 'N/A')","0.62","45.78" +"JOURNAL OF LOGIC AND COMPUTATION","0955-792X","1465-363X","('COMPUTER SCIENCE, THEORY & METHODS', 'LOGIC')","('SCIE', 'SCIE')","853","0.7","('Q3', 'Q1')","0.62","14.34" +"Bulletin of the Iranian Mathematical Society","1017-060X","1735-8515","MATHEMATICS","('SCIE',)","864","0.7","Q2","0.61","5.71" +"Communications Faculty of Sciences University of Ankara-Series A1 Mathematics and Statistics","1303-5991","1303-5991","MATHEMATICS","('ESCI',)","469","0.7","Q2","0.61","95.83" +"EXPERIMENTAL MATHEMATICS","1058-6458","1944-950X","MATHEMATICS","('SCIE',)","848","0.7","Q2","0.61","12.22" +"Journal of Maritime Archaeology","1557-2285","1557-2293","ARCHAEOLOGY","('AHCI',)","226","0.7","","0.61","32.26" +"Journal of Postsecondary Education and Disability","2379-7762","2328-3343","EDUCATION, SPECIAL","('ESCI',)","609","0.7","Q4","0.61","0.00" +"Jurisprudence-An International Journal of Legal and Political Thought","2040-3313","2040-3321","LAW","('ESCI',)","195","0.7","Q2","0.61","31.67" +"MUSIC EDUCATORS JOURNAL","0027-4321","1945-0087","('EDUCATION & EDUCATIONAL RESEARCH', 'MUSIC')","('ESCI', 'ESCI')","361","0.7","('Q3', 'N/A')","0.61","2.70" +"Annals of Anthropological Practice","2153-957X","2153-9588","ANTHROPOLOGY","('ESCI',)","268","0.7","Q3","0.60","10.42" +"BRITISH JOURNAL FOR THE HISTORY OF SCIENCE","0007-0874","1474-001X","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SSCI')","723","0.7","Q2","0.60","54.32" +"Journal of Zoo and Aquarium Research","2214-7594","2214-7594","ZOOLOGY","('ESCI',)","312","0.7","Q4","0.60","0.00" +"All Azimuth-A Journal of Foreign Policy and Peace","2146-7757","2146-7757","INTERNATIONAL RELATIONS","('ESCI',)","97","0.7","Q3","0.59","0.00" +"Family Court Review","1531-2445","1744-1617","('FAMILY STUDIES', 'LAW')","('ESCI', 'ESCI')","693","0.7","('Q4', 'Q2')","0.59","8.38" +"INTEGRAL TRANSFORMS AND SPECIAL FUNCTIONS","1065-2469","1476-8291","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,374","0.7","('Q2', 'Q3')","0.59","5.85" +"Journal of Analysis","0971-3611","2367-2501","MATHEMATICS","('ESCI',)","441","0.7","Q2","0.59","2.04" +"ROCKY MOUNTAIN JOURNAL OF MATHEMATICS","0035-7596","1945-3795","MATHEMATICS","('SCIE',)","1,738","0.7","Q2","0.59","0.00" +"Journal of Logic Language and Information","0925-8531","1572-9583","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'LANGUAGE & LINGUISTICS', 'LOGIC', 'PHILOSOPHY')","('SCIE', 'AHCI', 'SCIE', 'AHCI')","270","0.7","('Q4', 'N/A', 'Q1', 'N/A')","0.58","37.65" +"REVUE DE MICROPALEONTOLOGIE","0035-1598","","PALEONTOLOGY","('ESCI',)","493","0.7","Q4","0.58","15.09" +"Sahand Communications in Mathematical Analysis","2423-3900","2423-3900","MATHEMATICS","('ESCI',)","151","0.7","Q2","0.58","0.00" +"COMMUNICATIONS IN ANALYSIS AND GEOMETRY","1019-8385","1944-9992","MATHEMATICS","('SCIE',)","1,059","0.7","Q2","0.57","0.00" +"Journal of Modern Dynamics","1930-5311","1930-532X","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","309","0.7","('Q2', 'Q3')","0.56","95.24" +"JOURNAL OF PURE AND APPLIED ALGEBRA","0022-4049","1873-1376","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","4,089","0.7","('Q2', 'Q3')","0.56","21.33" +"Online Journal of Communication and Media Technologies","1986-3497","1986-3497","COMMUNICATION","('ESCI',)","258","0.7","Q3","0.56","98.43" +"Pragmatics and Society","1878-9714","1878-9722","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","269","0.7","('N/A', 'Q3')","0.56","1.55" +"Behavioral Research in Accounting","1050-4753","1558-8009","BUSINESS, FINANCE","('ESCI',)","687","0.7","Q4","0.55","0.00" +"Historical Studies in the Natural Sciences","1939-1811","1939-182X","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","192","0.7","Q2","0.55","3.92" +"Analysis-International Mathematical Journal of Analysis and its Applications","0174-4747","2196-6753","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","167","0.7","('Q2', 'Q3')","0.54","5.13" +"Bulletin of the Karaganda University-Mathematics","2518-7929","","MATHEMATICS","('ESCI',)","207","0.7","Q2","0.54","93.22" +"EAST EUROPEAN POLITICS AND SOCIETIES","0888-3254","1533-8371","('AREA STUDIES', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","813","0.7","('Q2', 'Q3')","0.54","19.87" +"Education and Training in Autism and Developmental Disabilities","2154-1647","","('EDUCATION, SPECIAL', 'REHABILITATION')","('SSCI', 'SSCI')","779","0.7","('Q4', 'Q4')","0.54","0.00" +"Time & Mind-The Journal of Archaeology Consciousness and Culture","1751-696X","1751-6978","ARCHAEOLOGY","('AHCI',)","163","0.7","","0.54","30.56" +"Topological Methods in Nonlinear Analysis","1230-3429","1230-3429","MATHEMATICS","('SCIE',)","872","0.7","Q2","0.54","68.13" +"Hacettepe Journal of Mathematics and Statistics","","2651-477X","('MATHEMATICS', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","1,247","0.7","('Q2', 'Q3')","0.53","89.21" +"Journal of Immersion and Content-Based Language Education","2212-8433","2212-8441","LINGUISTICS","('ESCI',)","181","0.7","Q3","0.53","2.38" +"PACIFIC JOURNAL OF MATHEMATICS","0030-8730","1945-5844","MATHEMATICS","('SCIE',)","5,415","0.7","Q2","0.53","23.49" +"Representation Theory","1088-4165","1088-4165","MATHEMATICS","('SCIE',)","426","0.7","Q2","0.53","67.59" +"Asian Perspectives-The Journal of Archaeology for Asia and the Pacific","0066-8435","1535-8283","ARCHAEOLOGY","('AHCI',)","381","0.7","","0.52","0.00" +"International Journal of Group Theory","2251-7650","2251-7669","MATHEMATICS","('ESCI',)","99","0.7","Q2","0.52","0.00" +"Journal of Homotopy and Related Structures","2193-8407","1512-2891","MATHEMATICS","('SCIE',)","166","0.7","Q2","0.52","31.25" +"Complex Analysis and Operator Theory","1661-8254","1661-8262","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","880","0.7","('Q2', 'Q3')","0.51","19.05" +"Journal of Roman Archaeology","1047-7594","2331-5709","ARCHAEOLOGY","('AHCI',)","588","0.7","","0.51","44.78" +"Muenster Journal of Mathematics","1867-5778","1867-5786","MATHEMATICS","('ESCI',)","113","0.7","Q2","0.51","0.00" +"TROPICAL ZOOLOGY","0394-6975","1970-9528","ZOOLOGY","('SCIE',)","334","0.7","Q4","0.51","100.00" +"Journal of Latin American and Caribbean Anthropology","1935-4932","1935-4940","ANTHROPOLOGY","('SSCI',)","461","0.7","Q3","0.50","23.30" +"Pacific Focus","1225-4657","1976-5118","('AREA STUDIES', 'INTERNATIONAL RELATIONS')","('SSCI', 'SSCI')","155","0.7","('Q2', 'Q3')","0.50","7.27" +"SIBERIAN MATHEMATICAL JOURNAL","0037-4466","1573-9260","MATHEMATICS","('SCIE',)","1,631","0.7","Q2","0.50","1.48" +"Translator","1355-6509","1757-0409","('COMMUNICATION', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('SSCI', 'AHCI', 'SSCI')","661","0.7","('Q3', 'N/A', 'Q3')","0.50","26.80" +"Asia Pacific Journal of Anthropology","1444-2213","1740-9314","ANTHROPOLOGY","('SSCI',)","337","0.7","Q3","0.49","23.88" +"Contemporary Review of the Middle East","2347-7989","2349-0055","('AREA STUDIES', 'INTERNATIONAL RELATIONS')","('ESCI', 'ESCI')","104","0.7","('Q2', 'Q3')","0.49","9.09" +"ENTERPRISE & SOCIETY","1467-2227","1467-2235","('BUSINESS', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","471","0.7","('Q4', 'Q2')","0.49","41.83" +"Feminist Media Histories","","2373-7492","('COMMUNICATION', 'HUMANITIES, MULTIDISCIPLINARY', 'WOMENS STUDIES')","('ESCI', 'ESCI', 'ESCI')","171","0.7","('Q3', 'N/A', 'Q3')","0.49","0.00" +"Geneva Risk and Insurance Review","1554-964X","1554-9658","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","134","0.7","('Q4', 'Q3')","0.49","21.43" +"Museum Anthropology","0892-8339","1548-1379","ANTHROPOLOGY","('ESCI',)","154","0.7","Q3","0.49","14.81" +"ACE-Architecture City and Environment","1886-4805","1886-4805","('ARCHITECTURE', 'URBAN STUDIES')","('ESCI', 'ESCI')","265","0.7","('N/A', 'Q4')","0.48","87.01" +"Annales Polonici Mathematici","0066-2216","1730-6272","MATHEMATICS","('SCIE',)","602","0.7","Q2","0.48","1.20" +"Atlantic Journal of Communication","1545-6870","1545-6889","COMMUNICATION","('ESCI',)","446","0.7","Q3","0.48","0.00" +"Ethics and Social Welfare","1749-6535","1749-6543","SOCIAL WORK","('ESCI',)","470","0.7","Q4","0.48","42.86" +"JOURNAL OF BLACK STUDIES","0021-9347","1552-4566","('ETHNIC STUDIES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","1,523","0.7","('Q3', 'Q3')","0.48","8.18" +"JOURNAL OF THE HISTORY OF BIOLOGY","0022-5010","1573-0387","('BIOLOGY', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SCIE', 'AHCI, SCIE, SSCI')","855","0.7","('Q4', 'Q2')","0.48","26.92" +"ACTA CHIROPTEROLOGICA","1508-1109","1733-5329","ZOOLOGY","('SCIE',)","909","0.7","Q4","0.47","0.98" +"International Journal of Computer-Assisted Language Learning and Teaching","2155-7098","2155-7101","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","197","0.7","Q3","0.47","25.27" +"JAPAN JOURNAL OF INDUSTRIAL AND APPLIED MATHEMATICS","0916-7005","1868-937X","MATHEMATICS, APPLIED","('SCIE',)","545","0.7","Q3","0.47","23.50" +"Crime Prevention & Community Safety","1460-3780","1743-4629","CRIMINOLOGY & PENOLOGY","('ESCI',)","301","0.7","Q4","0.46","28.79" +"Ethics and Education","1744-9642","1744-9650","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","349","0.7","Q3","0.46","35.23" +"Journal of Noncommutative Geometry","1661-6952","1661-6960","('MATHEMATICS', 'MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE', 'SCIE')","352","0.7","('Q2', 'Q3', 'Q4')","0.46","100.00" +"ANTHROPOZOOLOGICA","0761-3032","2107-0881","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","282","0.7","('Q3', 'N/A')","0.45","0.00" +"JOURNAL OF MULTIPLE-VALUED LOGIC AND SOFT COMPUTING","1542-3980","1542-3999","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS', 'LOGIC')","('SCIE', 'SCIE', 'SCIE')","538","0.7","('Q4', 'Q3', 'Q1')","0.45","0.00" +"Language-Culture and Society","2543-3164","2543-3156","('COMMUNICATION', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI', 'ESCI')","25","0.7","('Q3', 'N/A', 'Q3')","0.45","8.33" +"LYMPHOLOGY","0024-7766","","('IMMUNOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE')","807","0.7","('Q4', 'Q4')","0.45","0.00" +"RMS-Research in Mathematics & Statistics","","2765-8449","('MATHEMATICS', 'STATISTICS & PROBABILITY')","('ESCI', 'ESCI')","7","0.7","('Q2', 'Q3')","0.45","100.00" +"Sophia-Coleccion de Filosofia de la Educacion","1390-3861","1390-8626","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","102","0.7","Q3","0.45","100.00" +"British Journal of Music Therapy","1359-4575","2059-9773","REHABILITATION","('ESCI',)","67","0.7","Q4","0.44","20.83" +"HISTORY OF EDUCATION QUARTERLY","0018-2680","1748-5959","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","450","0.7","Q3","0.44","53.23" +"Journal of Family Trauma Child Custody & Child Development","2690-4586","2690-4594","FAMILY STUDIES","('ESCI',)","74","0.7","Q4","0.44","6.74" +"JOURNAL OF THE KOREAN MATHEMATICAL SOCIETY","0304-9914","2234-3008","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","934","0.7","('Q2', 'Q3')","0.44","0.00" +"Landbauforschung-Journal of Sustainable and Organic Agricultural Systems","0458-6859","2700-8711","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","151","0.7","Q3","0.44","0.00" +"Logopedics Phoniatrics Vocology","1401-5439","1651-2022","('AUDIOLOGY & SPEECH', 'OTORHINOLARYNGOLOGY')","('SCIE', 'SCIE')","566","0.7","('Q4', 'Q4')","0.44","30.77" +"Mathematical Communications","1331-0623","1331-0623","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","283","0.7","('Q2', 'Q3')","0.44","0.00" +"Persian Journal of Acarology","","2251-8169","ENTOMOLOGY","('ESCI',)","183","0.7","Q4","0.44","0.00" +"Tbilisi Mathematical Journal","1875-158X","1512-0139","MATHEMATICS","('ESCI',)","198","0.7","Q2","0.44","0.00" +"Therapeutic Recreation Journal","0040-5914","2159-6433","REHABILITATION","('ESCI',)","430","0.7","Q4","0.44","0.00" +"ARCHIVE FOR HISTORY OF EXACT SCIENCES","0003-9519","1432-0657","('HISTORY & PHILOSOPHY OF SCIENCE', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('AHCI, SCIE', 'SCIE')","539","0.7","('Q2', 'Q4')","0.43","43.14" +"Global Change Peace & Security","1478-1158","1478-1166","POLITICAL SCIENCE","('ESCI',)","266","0.7","Q3","0.43","10.53" +"Journal of E-Learning and Knowledge Society","1826-6223","1971-8829","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","362","0.7","Q3","0.43","0.00" +"Journal of Teaching in International Business","0897-5930","1528-6991","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","257","0.7","Q3","0.43","9.38" +"MALACOLOGIA","0076-2997","2168-9075","ZOOLOGY","('SCIE',)","693","0.7","Q4","0.43","0.00" +"NORTH AMERICAN ARCHAEOLOGIST","0197-6931","1541-3543","ARCHAEOLOGY","('AHCI',)","143","0.7","","0.43","0.00" +"SORT-Statistics and Operations Research Transactions","1696-2281","2013-8830","('OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE')","237","0.7","('Q4', 'Q3')","0.43","2.63" +"St Petersburg Mathematical Journal","1061-0022","1547-7371","MATHEMATICS","('SCIE',)","794","0.7","Q2","0.43","69.59" +"WATERBIRDS","1524-4695","1938-5390","ORNITHOLOGY","('SCIE',)","1,230","0.7","Q3","0.43","0.00" +"Advanced Education","2409-3351","2410-8286","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","131","0.7","Q3","0.42","92.05" +"International Journal of Japanese Sociology","0918-7545","1475-6781","SOCIOLOGY","('ESCI',)","90","0.7","Q3","0.42","11.11" +"INTERNATIONAL JOURNAL OF TURBO & JET-ENGINES","0334-0082","2191-0332","ENGINEERING, AEROSPACE","('SCIE',)","543","0.7","Q4","0.42","0.37" +"JOURNAL OF APPLIED PROBABILITY","0021-9002","1475-6072","STATISTICS & PROBABILITY","('SCIE',)","3,092","0.7","Q3","0.42","1.18" +"Journal of Civil Society","1744-8689","1744-8697","POLITICAL SCIENCE","('ESCI',)","468","0.7","Q3","0.42","37.84" +"South American Journal of Herpetology","1808-9798","","ZOOLOGY","('SCIE',)","397","0.7","Q4","0.42","0.00" +"Statistical Inference for Stochastic Processes","1387-0874","1572-9311","STATISTICS & PROBABILITY","('ESCI',)","300","0.7","Q3","0.42","23.38" +"Balneo and PRM Research Journal","2734-844X","2734-8458","REHABILITATION","('ESCI',)","98","0.7","Q4","0.41","98.23" +"ELECTRONIC JOURNAL OF COMBINATORICS","1077-8926","1077-8926","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,725","0.7","('Q2', 'Q3')","0.41","98.00" +"Electronic News","1931-2431","1931-244X","COMMUNICATION","('ESCI',)","136","0.7","Q3","0.41","5.56" +"Journal of Aggression Conflict and Peace Research","1759-6599","2042-8715","CRIMINOLOGY & PENOLOGY","('ESCI',)","321","0.7","Q4","0.41","5.88" +"Spinal Cord Series and Cases","2058-6124","2058-6124","('CLINICAL NEUROLOGY', 'REHABILITATION')","('ESCI', 'ESCI')","594","0.7","('Q4', 'Q4')","0.41","9.91" +"ACTA VETERINARIA HUNGARICA","0236-6290","1588-2705","VETERINARY SCIENCES","('SCIE',)","862","0.7","Q3","0.40","29.17" +"Communication Disorders Quarterly","1525-7401","1538-4837","REHABILITATION","('SSCI',)","552","0.7","Q4","0.40","6.10" +"International Journal of Cyber Criminology","0974-2891","0974-2891","CRIMINOLOGY & PENOLOGY","('ESCI',)","401","0.7","Q4","0.40","0.00" +"Journal of Physical Education Recreation and Dance","0730-3084","2168-3816","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,145","0.7","Q3","0.40","3.21" +"Metron-International Journal of Statistics","0026-1424","2281-695X","STATISTICS & PROBABILITY","('ESCI',)","448","0.7","Q3","0.40","40.00" +"Nationalism and Ethnic Politics","1353-7113","1557-2986","ETHNIC STUDIES","('ESCI',)","519","0.7","Q3","0.40","25.00" +"Review of Education Pedagogy and Cultural Studies","1071-4413","1556-3022","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","370","0.7","Q3","0.40","11.27" +"REVISTA BRASILEIRA DE PALEONTOLOGIA","1519-7530","2236-1715","PALEONTOLOGY","('SCIE',)","555","0.7","Q4","0.40","97.37" +"Science & Global Security","0892-9882","1547-7800","INTERNATIONAL RELATIONS","('ESCI',)","147","0.7","Q3","0.40","0.00" +"WESTERN JOURNAL OF COMMUNICATION","1057-0314","1745-1027","COMMUNICATION","('ESCI',)","934","0.7","Q3","0.40","0.63" +"Zoologia","1984-4689","1984-4689","ZOOLOGY","('SCIE',)","819","0.7","Q4","0.40","96.00" +"ACM Transactions on Modeling and Computer Simulation","1049-3301","1558-1195","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","642","0.7","('Q4', 'Q3')","0.39","1.49" +"Education Citizenship and Social Justice","1746-1979","1746-1987","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","370","0.7","Q3","0.39","28.41" +"International Journal of Palliative Nursing","1357-6321","1357-6321","NURSING","('ESCI',)","1,017","0.7","Q4","0.39","5.23" +"Journal of Academic Language and Learning","1835-5196","1835-5196","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","200","0.7","Q3","0.39","0.00" +"TEACHING OF PSYCHOLOGY","0098-6283","1532-8023","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","1,518","0.7","('Q3', 'Q4')","0.39","10.06" +"ARCHAEOFAUNA","1132-6891","1132-6891","ARCHAEOLOGY","('AHCI',)","227","0.7","","0.38","66.67" +"Changing English-Studies in Culture and Education","1358-684X","1469-3585","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","259","0.7","Q3","0.38","29.90" +"International Journal of Mathematical Education in Science and Technology","0020-739X","1464-5211","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,482","0.7","Q3","0.38","16.95" +"JOURNAL OF FORENSIC PSYCHIATRY & PSYCHOLOGY","1478-9949","1478-9957","('CRIMINOLOGY & PENOLOGY', 'PSYCHIATRY')","('SSCI', 'SSCI')","1,179","0.7","('Q4', 'Q4')","0.38","22.61" +"Journal of Islamic Archaeology","2051-9710","2051-9729","ARCHAEOLOGY","('ESCI',)","72","0.7","","0.38","6.90" +"Pacific Rim International Journal of Nursing Research","1906-8107","1906-8107","NURSING","('ESCI',)","376","0.7","Q4","0.38","8.81" +"PALEONTOLOGICAL JOURNAL","0031-0301","1555-6174","PALEONTOLOGY","('SCIE',)","2,099","0.7","Q4","0.38","0.77" +"Psikhologicheskaya Nauka i Obrazovanie-Psychological Science and Education","1814-2052","2311-7273","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","280","0.7","('Q3', 'Q4')","0.38","96.15" +"Reading & Writing-Journal of the Reading Association of South Africa","2079-8245","2308-1422","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","59","0.7","Q3","0.38","100.00" +"Social Identities","1350-4630","1363-0296","ETHNIC STUDIES","('ESCI',)","960","0.7","Q3","0.38","16.67" +"Ankara Universitesi Veteriner Fakultesi Dergisi","1300-0861","1308-2817","VETERINARY SCIENCES","('SCIE',)","500","0.7","Q3","0.37","98.31" +"Cuadernos Info","0719-3661","0719-367X","COMMUNICATION","('ESCI',)","219","0.7","Q3","0.37","94.83" +"Funkcialaj Ekvacioj-Serio Internacia","0532-8721","","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","642","0.7","('Q2', 'Q3')","0.37","0.00" +"Journal of Peace Education","1740-0201","1740-021X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","281","0.7","Q3","0.37","28.57" +"JOURNAL OF VETERINARY DENTISTRY","0898-7564","2470-4083","VETERINARY SCIENCES","('SCIE',)","637","0.7","Q3","0.37","5.11" +"Pedagogies","1554-480X","1554-4818","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","374","0.7","Q3","0.37","8.33" +"Russian Politics","2451-8913","2451-8921","POLITICAL SCIENCE","('ESCI',)","118","0.7","Q3","0.37","11.43" +"Visual Anthropology Review","1058-7187","1548-7458","ANTHROPOLOGY","('ESCI',)","254","0.7","Q3","0.37","29.51" +"African Journal of Research in Mathematics Science and Technology Education","1811-7295","2469-7656","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","288","0.7","Q4","0.36","19.48" +"COMPTES RENDUS BIOLOGIES","1631-0691","1768-3238","BIOLOGY","('SCIE',)","2,622","0.7","Q4","0.36","100.00" +"Drvna Industrija","0012-6772","1847-1153","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","499","0.7","Q4","0.36","100.00" +"ENTOMOLOGICAL SCIENCE","1343-8786","1479-8298","ENTOMOLOGY","('SCIE',)","916","0.7","Q4","0.36","7.37" +"Journal of Forensic Psychology Research and Practice","2473-2850","2473-2842","('CRIMINOLOGY & PENOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","182","0.7","('Q4', 'Q4')","0.36","18.87" +"JOURNAL OF ZOO AND WILDLIFE MEDICINE","1042-7260","1937-2825","VETERINARY SCIENCES","('SCIE',)","2,346","0.7","Q3","0.36","0.00" +"Subjectivity","1755-6341","1755-635X","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","572","0.7","Q3","0.36","28.00" +"Voprosy Obrazovaniya-Educational Studies Moscow","1814-9545","1814-9545","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","211","0.7","Q4","0.36","84.44" +"Bulletin of Geography-Socio-Economic Series","1732-4254","2083-8298","GEOGRAPHY","('ESCI',)","320","0.7","Q3","0.35","94.26" +"COMPUTATIONAL COMPLEXITY","1016-3328","1420-8954","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS')","('SCIE', 'SCIE')","533","0.7","('Q3', 'Q2')","0.35","29.55" +"GeoScape","1802-1115","1802-1115","GEOGRAPHY","('ESCI',)","101","0.7","Q3","0.35","100.00" +"INTERNATIONAL JOURNAL OF ENGINEERING EDUCATION","0949-149X","0949-149X","('EDUCATION, SCIENTIFIC DISCIPLINES', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,756","0.7","('Q4', 'Q3')","0.35","0.25" +"International Journal of Multicultural Education","1934-5267","1934-5267","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","308","0.7","Q3","0.35","0.00" +"INVERTEBRATE REPRODUCTION & DEVELOPMENT","0792-4259","2157-0272","('REPRODUCTIVE BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","728","0.7","('Q4', 'Q4')","0.35","1.72" +"Journal of International and Comparative Education","2232-1802","2289-2567","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","74","0.7","Q3","0.35","81.82" +"Journal of Nursing Measurement","1061-3749","1945-7049","NURSING","('ESCI',)","999","0.7","Q4","0.35","0.00" +"Latino Studies","1476-3435","1476-3443","SOCIOLOGY","('ESCI',)","585","0.7","Q3","0.35","6.85" +"Nordic Journal of Human Rights","1891-8131","1891-814X","POLITICAL SCIENCE","('ESCI',)","210","0.7","Q3","0.35","46.99" +"Nursing Practice Today","2383-1154","2383-1162","NURSING","('ESCI',)","181","0.7","Q4","0.35","57.00" +"REVSTAT-Statistical Journal","1645-6726","2183-0371","STATISTICS & PROBABILITY","('SCIE',)","348","0.7","Q3","0.35","0.00" +"Stat","2049-1573","2049-1573","STATISTICS & PROBABILITY","('SCIE',)","866","0.7","Q3","0.35","18.85" +"Vulnerable Children and Youth Studies","1745-0128","1745-0136","FAMILY STUDIES","('ESCI',)","527","0.7","Q4","0.35","9.32" +"Ethnobiology Letters","2159-8126","2159-8126","ANTHROPOLOGY","('ESCI',)","182","0.7","Q3","0.34","93.55" +"Journal of Settlements and Spatial Planning","2069-3419","2248-2199","GEOGRAPHY","('ESCI',)","114","0.7","Q3","0.34","86.21" +"Reviews and Research in Medical Microbiology","2770-3150","2770-3169","MICROBIOLOGY","('ESCI',)","44","0.7","Q4","0.34","0.00" +"REVISTA BRASILEIRA DE ENTOMOLOGIA","0085-5626","1806-9665","ENTOMOLOGY","('SCIE',)","1,271","0.7","Q4","0.34","92.14" +"RUSI Journal","0307-1847","1744-0378","POLITICAL SCIENCE","('ESCI',)","507","0.7","Q3","0.34","29.41" +"University Politehnica of Bucharest Scientific Bulletin-Series A-Applied Mathematics and Physics","1223-7027","","('MATHEMATICS, APPLIED', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","562","0.7","('Q3', 'Q3')","0.34","0.00" +"British Journal of Visual Impairment","0264-6196","1744-5809","OPHTHALMOLOGY","('ESCI',)","506","0.7","Q4","0.33","25.29" +"Chungara-Revista de Antropologia Chilena","0717-7356","0717-7356","ANTHROPOLOGY","('SSCI',)","799","0.7","Q3","0.33","76.03" +"Circulo de Linguistica Aplicada a la Comunicacion","1576-4737","1576-4737","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","346","0.7","('N/A', 'Q3')","0.33","90.37" +"North-Western Journal of Zoology","1584-9074","1842-6441","ZOOLOGY","('SCIE',)","489","0.7","Q4","0.33","0.00" +"Queensland Review","1321-8166","2049-7792","AREA STUDIES","('ESCI',)","53","0.7","Q2","0.33","0.00" +"SOCIOBIOLOGY","0361-6525","","ENTOMOLOGY","('SCIE',)","1,264","0.7","Q4","0.33","91.54" +"AD ALTA-Journal of Interdisciplinary Research","1804-7890","1804-7890","MULTIDISCIPLINARY SCIENCES","('ESCI',)","769","0.7","Q3","0.32","0.09" +"HOMO-JOURNAL OF COMPARATIVE HUMAN BIOLOGY","0018-442X","1618-1301","ANTHROPOLOGY","('SSCI',)","516","0.7","Q3","0.32","0.00" +"JOURNAL OF ENTOMOLOGICAL SCIENCE","0749-8004","","ENTOMOLOGY","('SCIE',)","829","0.7","Q4","0.32","1.68" +"PROBABILITY IN THE ENGINEERING AND INFORMATIONAL SCIENCES","0269-9648","1469-8951","('ENGINEERING, INDUSTRIAL', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE')","609","0.7","('Q4', 'Q4', 'Q3')","0.32","13.47" +"RICYDE-Revista Internacional de Ciencias del Deporte","1885-3137","1885-3137","SPORT SCIENCES","('ESCI',)","363","0.7","Q4","0.32","100.00" +"SOUTH AFRICAN JOURNAL OF ANIMAL SCIENCE","0375-1589","2221-4062","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,558","0.7","Q3","0.32","71.92" +"South African Journal of Education","0256-0100","2076-3433","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,291","0.7","Q3","0.32","98.66" +"Surgical Case Reports","2198-7793","2198-7793","SURGERY","('ESCI',)","1,116","0.7","Q4","0.32","100.00" +"Turkish Archives of Otorhinolaryngology","2667-7466","2667-7474","OTORHINOLARYNGOLOGY","('ESCI',)","371","0.7","Q4","0.32","99.03" +"Atlantis-Critical Studies in Gender Culture & Social Justice","0702-7818","1715-0698","WOMENS STUDIES","('ESCI',)","168","0.7","Q3","0.31","0.00" +"Australian and New Zealand Journal of Family Therapy","0814-723X","1467-8438","FAMILY STUDIES","('SSCI',)","455","0.7","Q4","0.31","29.91" +"Case Reports in Dentistry","2090-6447","2090-6455","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","941","0.7","Q4","0.31","100.00" +"Case Reports in Pediatrics","2090-6803","2090-6811","PEDIATRICS","('ESCI',)","492","0.7","Q4","0.31","99.40" +"COMPUTATIONAL MATHEMATICS AND MATHEMATICAL PHYSICS","0965-5425","1555-6662","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","2,713","0.7","('Q3', 'Q4')","0.31","0.40" +"Fetal and Pediatric Pathology","1551-3815","1551-3823","('PATHOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","639","0.7","('Q4', 'Q4')","0.31","4.33" +"International Journal of Education and the Arts","1529-8094","1529-8094","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","223","0.7","Q3","0.31","0.00" +"International Journal of Special Education","0827-3383","0827-3383","EDUCATION, SPECIAL","('ESCI',)","545","0.7","Q4","0.31","100.00" +"JOURNAL OF APICULTURAL SCIENCE","1643-4439","2299-4831","ENTOMOLOGY","('SCIE',)","484","0.7","Q4","0.31","100.00" +"JOURNAL OF APPLIED ICHTHYOLOGY","0175-8659","1439-0426","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","4,230","0.7","('Q4', 'Q4')","0.31","86.73" +"Journal of Vascular Surgery Cases Innovations and Techniques","2468-4287","2468-4287","SURGERY","('ESCI',)","618","0.7","Q4","0.31","76.63" +"MACROECONOMIC DYNAMICS","1365-1005","1469-8056","ECONOMICS","('SSCI',)","1,279","0.7","Q3","0.31","16.10" +"PACIFIC SCIENCE","0030-8870","1534-6188","('MARINE & FRESHWATER BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","1,266","0.7","('Q4', 'Q4')","0.31","7.04" +"Romanian Journal of European Affairs","1582-8271","1841-4273","INTERNATIONAL RELATIONS","('ESCI',)","81","0.7","Q3","0.31","0.00" +"ACTA VETERINARIA-BEOGRAD","0567-8315","1820-7448","VETERINARY SCIENCES","('SCIE',)","460","0.7","Q3","0.30","99.17" +"Advances in Mathematics of Communications","1930-5346","1930-5338","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","594","0.7","('Q3', 'Q3')","0.30","98.55" +"ARTHROPODA SELECTA","0136-006X","","ENTOMOLOGY","('SCIE',)","371","0.7","Q4","0.30","83.01" +"Case Reports in Ophthalmological Medicine","2090-6722","2090-6730","OPHTHALMOLOGY","('ESCI',)","342","0.7","Q4","0.30","100.00" +"Enfermeria Clinica","1130-8621","1579-2013","NURSING","('ESCI',)","1,083","0.7","Q4","0.30","3.75" +"International Journal of Limnology","","2823-1465","LIMNOLOGY","('SCIE',)","13","0.7","Q4","0.30","12.00" +"Journal of Chiropractic Education","1042-5055","2374-250X","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","199","0.7","Q4","0.30","98.70" +"Journal of Computational and Theoretical Transport","2332-4309","2332-4325","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","421","0.7","('Q3', 'Q4')","0.30","14.58" +"Journal of Education","0259-479X","2520-9868","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","843","0.7","Q3","0.30","100.00" +"Journal of Feline Medicine and Surgery Open Reports","2055-1169","2055-1169","VETERINARY SCIENCES","('ESCI',)","352","0.7","Q3","0.30","89.73" +"Journal of Gaming and Virtual Worlds","1757-191X","1757-1928","COMMUNICATION","('ESCI',)","150","0.7","Q3","0.30","0.00" +"Journal of Wrist Surgery","2163-3916","2163-3924","ORTHOPEDICS","('ESCI',)","1,183","0.7","Q4","0.30","4.45" +"Jurnal Komunikasi-Malaysian Journal of Communication","2289-151X","2289-1528","COMMUNICATION","('ESCI',)","438","0.7","Q3","0.30","2.85" +"Labour-England","1121-7081","1467-9914","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","416","0.7","Q4","0.30","30.00" +"Language Learning in Higher Education","2191-611X","2191-6128","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","150","0.7","Q3","0.30","19.78" +"MCS-Masculinities and Social Change","2014-3605","2014-3605","SOCIOLOGY","('ESCI',)","117","0.7","Q3","0.30","30.56" +"NOTA LEPIDOPTEROLOGICA","0342-7536","2367-5365","ENTOMOLOGY","('SCIE',)","175","0.7","Q4","0.30","97.87" +"Recht & Psychiatrie","0724-2247","","('CRIMINOLOGY & PENOLOGY', 'PSYCHIATRY')","('SSCI', 'SCIE, SSCI')","111","0.7","('Q4', 'Q4')","0.30","0.00" +"Revista Internacional de Medicina y Ciencias de la Actividad Fisica y del Deporte","1577-0354","1577-0354","SPORT SCIENCES","('SCIE',)","704","0.7","Q4","0.30","37.86" +"Southern Forests-A Journal of Forest Science","2070-2620","2070-2639","FORESTRY","('SCIE',)","493","0.7","Q3","0.30","2.35" +"Ultrasound Quarterly","0894-8771","1536-0253","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","768","0.7","Q4","0.30","4.60" +"ACTA AMAZONICA","0044-5967","1809-4392","('ECOLOGY', 'PLANT SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,417","0.7","('Q4', 'Q4', 'Q4')","0.29","100.00" +"Asia Pacific Translation and Intercultural Studies","2330-6343","2330-6351","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","66","0.7","('N/A', 'Q3')","0.29","13.21" +"Bollettino di Geofisica Teorica ed Applicata","0006-6729","2239-5695","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","561","0.7","Q4","0.29","0.00" +"Cartographica","0317-7173","1911-9925","GEOGRAPHY","('ESCI',)","613","0.7","Q3","0.29","0.00" +"Educational Research for Social Change","2221-4070","2221-4070","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","124","0.7","Q3","0.29","95.56" +"HARVARD ENVIRONMENTAL LAW REVIEW","0147-8257","0147-8257","('ENVIRONMENTAL STUDIES', 'LAW')","('SSCI', 'SSCI')","299","0.7","('Q4', 'Q2')","0.29","0.00" +"INTERNATIONAL JOURNAL OF QUANTUM INFORMATION","0219-7499","1793-6918","('COMPUTER SCIENCE, THEORY & METHODS', 'PHYSICS, MATHEMATICAL', 'PHYSICS, PARTICLES & FIELDS', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,154","0.7","('Q3', 'Q4', 'Q4', 'Q4')","0.29","2.24" +"Journal of Forest Economics","1104-6899","1618-1530","('ECONOMICS', 'FORESTRY')","('SSCI', 'SCIE')","609","0.7","('Q3', 'Q3')","0.29","0.00" +"Journal of Radiosurgery and SBRT","2156-4639","2156-4647","SURGERY","('ESCI',)","250","0.7","Q4","0.29","0.00" +"Journal of Teaching English for Specific and Academic Purposes","2334-9182","2334-9212","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","180","0.7","Q3","0.29","95.60" +"MANCHESTER SCHOOL","1463-6786","1467-9957","ECONOMICS","('SSCI',)","1,202","0.7","Q3","0.29","23.40" +"Modern Stochastics-Theory and Applications","2351-6054","2351-6054","STATISTICS & PROBABILITY","('ESCI',)","115","0.7","Q3","0.29","96.77" +"Nigerian Journal of Clinical Practice","1119-3077","2229-7731","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,700","0.7","Q3","0.29","24.37" +"NUKLEONIKA","0029-5922","1508-5791","('CHEMISTRY, INORGANIC & NUCLEAR', 'PHYSICS, NUCLEAR')","('SCIE', 'SCIE')","497","0.7","('Q4', 'Q4')","0.29","100.00" +"REDU-Revista de Docencia Universitaria","1696-1412","1887-4592","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","350","0.7","Q3","0.29","98.18" +"Statistical Theory and Related Fields","2475-4269","2475-4277","STATISTICS & PROBABILITY","('ESCI',)","114","0.7","Q3","0.29","70.83" +"Canadian Journal of Rural Medicine","1203-7796","1488-237X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","211","0.7","Q3","0.28","0.00" +"Clinics in Podiatric Medicine and Surgery","0891-8422","1558-2302","ORTHOPEDICS","('SCIE',)","881","0.7","Q4","0.28","0.00" +"Differential Equations & Applications","1847-120X","1848-9605","MATHEMATICS, APPLIED","('ESCI',)","257","0.7","Q3","0.28","100.00" +"EDUCATION FOR INFORMATION","0167-8329","1875-8649","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","1,264","0.7","Q3","0.28","8.75" +"Financial and Credit Activity-Problems of Theory and Practice","2306-4994","2310-8770","BUSINESS, FINANCE","('ESCI',)","802","0.7","Q4","0.28","50.12" +"International Medical Case Reports Journal","1179-142X","1179-142X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","587","0.7","Q3","0.28","96.69" +"Journal of Homeland Security and Emergency Management","2194-6361","1547-7355","PUBLIC ADMINISTRATION","('SSCI',)","696","0.7","Q4","0.28","9.43" +"Journal of LGBTQ Issues in Counseling","2692-4951","2692-496X","PSYCHOLOGY, APPLIED","('ESCI',)","461","0.7","Q4","0.28","1.49" +"Microbiology Australia","1324-4272","2201-9189","MICROBIOLOGY","('ESCI',)","294","0.7","Q4","0.28","99.15" +"Sportis-Scientific Technical Journal of School Sport Physical Education and Psychomotricity","2386-8333","2386-8333","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","142","0.7","Q3","0.28","78.08" +"STUDIES IN NONLINEAR DYNAMICS AND ECONOMETRICS","1081-1826","1558-3708","('ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","559","0.7","('Q3', 'Q4')","0.28","13.77" +"TPM-Testing Psychometrics Methodology in Applied Psychology","1972-6325","","PSYCHOLOGY, APPLIED","('ESCI',)","506","0.7","Q4","0.28","0.00" +"Voprosy Ekonomiki","0042-8736","0042-8736","ECONOMICS","('ESCI',)","553","0.7","Q3","0.28","0.00" +"ZEITSCHRIFT FUR GEBURTSHILFE UND NEONATOLOGIE","0948-2393","1439-1651","('OBSTETRICS & GYNECOLOGY', 'PEDIATRICS')","('SCIE', 'SCIE')","297","0.7","('Q4', 'Q4')","0.28","3.43" +"Agrarian South-Journal of Political Economy","2277-9760","2321-0281","('DEVELOPMENT STUDIES', 'ECONOMICS')","('ESCI', 'ESCI')","48","0.7","('Q4', 'Q3')","0.27","9.43" +"Baltic Journal of Health and Physical Activity","2080-1297","2080-9999","SPORT SCIENCES","('ESCI',)","302","0.7","Q4","0.27","92.59" +"Case Reports in Nephrology and Dialysis","2296-9705","2296-9705","UROLOGY & NEPHROLOGY","('ESCI',)","198","0.7","Q4","0.27","100.00" +"Chinese Journal of Liquid Crystals and Displays","1007-2780","2097-3217","CRYSTALLOGRAPHY","('ESCI',)","442","0.7","Q3","0.27","0.00" +"Indian Journal of Plastic Surgery","0970-0358","1998-376X","SURGERY","('ESCI',)","1,181","0.7","Q4","0.27","99.54" +"International Journal of Agriculture and Natural Resources","2452-5731","2452-5731","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","83","0.7","Q3","0.27","95.65" +"Journal of Couple & Relationship Therapy-Innovations in Clinical and Educational Interventions","1533-2691","1533-2683","PSYCHOLOGY, CLINICAL","('ESCI',)","283","0.7","Q4","0.27","6.98" +"Journal of Occupational Therapy Schools and Early Intervention","1941-1243","1941-1251","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","353","0.7","Q4","0.27","15.44" +"Journal of Park and Recreation Administration","0735-1968","2160-6862","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","773","0.7","Q4","0.27","0.00" +"Maejo International Journal of Science and Technology","1905-7873","","MULTIDISCIPLINARY SCIENCES","('SCIE',)","268","0.7","Q3","0.27","1.43" +"Margin-Journal of Applied Economic Research","0973-8010","0973-8029","ECONOMICS","('ESCI',)","256","0.7","Q3","0.27","4.88" +"New Mathematics and Natural Computation","1793-0057","1793-7027","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","349","0.7","Q4","0.27","0.56" +"Psyecology-Bilingual Journal of Environmental Psychology-Revista Bilingue de Psicologia Ambiental","2171-1976","1989-9386","('ENVIRONMENTAL STUDIES', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","197","0.7","('Q4', 'Q4')","0.27","4.76" +"RECORDS OF THE AUSTRALIAN MUSEUM","0067-1975","0067-1975","ZOOLOGY","('SCIE',)","651","0.7","Q4","0.27","98.48" +"Relaciones","0325-2221","1852-1479","ANTHROPOLOGY","('ESCI',)","544","0.7","Q3","0.27","67.39" +"Reproductive and Developmental Medicine","2096-2924","2589-8728","OBSTETRICS & GYNECOLOGY","('ESCI',)","119","0.7","Q4","0.27","100.00" +"THALASSAS","0212-5919","2366-1674","('MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","491","0.7","('Q4', 'Q4')","0.27","5.04" +"Analysis of Verbal Behavior","0889-9401","2196-8926","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","502","0.7","Q4","0.26","7.27" +"Archivos Argentinos de Pediatria","0325-0075","1668-3501","PEDIATRICS","('SCIE',)","1,243","0.7","Q4","0.26","91.16" +"BOIS ET FORETS DES TROPIQUES","0006-579X","1777-5760","FORESTRY","('SCIE',)","327","0.7","Q3","0.26","91.78" +"Chemistry-Didactics-Ecology-Metrology","1640-9019","2084-4506","MULTIDISCIPLINARY SCIENCES","('ESCI',)","74","0.7","Q3","0.26","100.00" +"Current Surgery Reports","2167-4817","2167-4817","SURGERY","('ESCI',)","183","0.7","Q4","0.26","3.88" +"Journal of Cultural Geography","0887-3631","1940-6320","GEOGRAPHY","('ESCI',)","310","0.7","Q3","0.26","11.76" +"Journal of Insect Biodiversity","2538-1318","2147-7612","ENTOMOLOGY","('ESCI',)","121","0.7","Q4","0.26","0.00" +"JOURNAL OF PLANT PROTECTION RESEARCH","1427-4345","1899-007X","('AGRONOMY', 'PLANT SCIENCES')","('ESCI', 'ESCI')","943","0.7","('Q3', 'Q4')","0.26","99.27" +"Journal of Trauma Nursing","1078-7496","1932-3883","('CRITICAL CARE MEDICINE', 'NURSING')","('SCIE', 'SCIE, SSCI')","633","0.7","('Q4', 'Q4')","0.26","3.40" +"JOURNAL OF UNIVERSAL COMPUTER SCIENCE","0948-695X","0948-6968","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","849","0.7","('Q4', 'Q3')","0.26","99.46" +"PSYCHOTHERAPIE PSYCHOSOMATIK MEDIZINISCHE PSYCHOLOGIE","0937-2032","1439-1058","PSYCHOLOGY, CLINICAL","('SSCI',)","943","0.7","Q4","0.26","1.97" +"Review of Economic Analysis","1973-3909","1973-3909","ECONOMICS","('ESCI',)","91","0.7","Q3","0.26","0.00" +"Revista de Psicologia del Deporte","1132-239X","1988-5636","PSYCHOLOGY, APPLIED","('SSCI',)","955","0.7","Q4","0.26","0.26" +"Revista Espanola de Sociologia","1578-2824","1578-2824","SOCIOLOGY","('ESCI',)","354","0.7","Q3","0.26","88.08" +"TECHNOLOGY AND DISABILITY","1055-4181","1878-643X","REHABILITATION","('ESCI',)","349","0.7","Q4","0.26","14.49" +"TRANSACTIONS OF THE JAPAN SOCIETY FOR AERONAUTICAL AND SPACE SCIENCES","0549-3811","0549-3811","ENGINEERING, AEROSPACE","('SCIE',)","374","0.7","Q4","0.26","100.00" +"American Journal of Health Education","1932-5037","2168-3751","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","682","0.7","Q4","0.25","2.56" +"Cerne","0104-7760","","FORESTRY","('SCIE',)","716","0.7","Q3","0.25","89.80" +"Clinical Laboratory","1433-6510","1433-6510","MEDICAL LABORATORY TECHNOLOGY","('SCIE',)","2,514","0.7","Q4","0.25","0.00" +"Current Obstetrics and Gynecology Reports","2161-3303","2161-3303","OBSTETRICS & GYNECOLOGY","('ESCI',)","273","0.7","Q4","0.25","13.24" +"Ergonomics in Design","1064-8046","2169-5083","ERGONOMICS","('ESCI',)","261","0.7","Q4","0.25","4.92" +"EUROPEAN JOURNAL OF HORTICULTURAL SCIENCE","1611-4426","1611-4434","HORTICULTURE","('SCIE',)","779","0.7","Q4","0.25","0.62" +"Experimental and Clinical Transplantation","1304-0855","2146-8427","TRANSPLANTATION","('SCIE',)","1,412","0.7","Q4","0.25","0.00" +"Gastroenterology Nursing","1042-895X","1538-9766","('GASTROENTEROLOGY & HEPATOLOGY', 'NURSING')","('SCIE', 'SCIE, SSCI')","651","0.7","('Q4', 'Q4')","0.25","10.18" +"GESUNDHEITSWESEN","0941-3790","1439-4421","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","1,388","0.7","Q4","0.25","18.69" +"International Journal of Unconventional Computing","1548-7199","1548-7202","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","84","0.7","Q3","0.25","0.00" +"Journal of Obstetrics and Gynecology of India","0971-9202","0975-6434","OBSTETRICS & GYNECOLOGY","('ESCI',)","1,314","0.7","Q4","0.25","4.28" +"JOURNAL OF RUSSIAN LASER RESEARCH","1071-2836","1573-8760","OPTICS","('SCIE',)","448","0.7","Q4","0.25","0.00" +"Legal Education Review","1033-2839","1839-3713","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","95","0.7","Q3","0.25","0.00" +"LITHOLOGY AND MINERAL RESOURCES","0024-4902","1608-3229","('GEOCHEMISTRY & GEOPHYSICS', 'GEOLOGY', 'MINERALOGY')","('SCIE', 'SCIE', 'SCIE')","639","0.7","('Q4', 'Q4', 'Q4')","0.25","0.00" +"New Space-The Journal of Space Entrepreneurship and Innovation","2168-0256","2168-0264","ENGINEERING, AEROSPACE","('ESCI',)","206","0.7","Q4","0.25","6.58" +"Ocean Systems Engineering-An International Journal","2093-6702","2093-677X","ENGINEERING, OCEAN","('ESCI',)","177","0.7","Q4","0.25","0.00" +"Petrophysics","1529-9074","1529-9074","('ENGINEERING, PETROLEUM', 'GEOCHEMISTRY & GEOPHYSICS')","('SCIE', 'SCIE')","725","0.7","('Q3', 'Q4')","0.25","0.00" +"QUANTUM INFORMATION & COMPUTATION","1533-7146","1533-7146","('COMPUTER SCIENCE, THEORY & METHODS', 'PHYSICS, MATHEMATICAL', 'PHYSICS, PARTICLES & FIELDS', 'QUANTUM SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,862","0.7","('Q3', 'Q4', 'Q4', 'Q4')","0.25","0.00" +"Raumforschung und Raumordnung-Spatial Research and Planning","0034-0111","1869-4179","GEOGRAPHY","('ESCI',)","412","0.7","Q3","0.25","100.00" +"ACTA CRYSTALLOGRAPHICA SECTION C-STRUCTURAL CHEMISTRY","2053-2296","2053-2296","('CHEMISTRY, MULTIDISCIPLINARY', 'CRYSTALLOGRAPHY')","('SCIE', 'SCIE')","10,308","0.7","('Q4', 'Q3')","0.24","21.48" +"Asian Academy of Management Journal of Accounting and Finance","1823-4992","2180-4192","BUSINESS, FINANCE","('ESCI',)","200","0.7","Q4","0.24","98.33" +"Behavioral Psychology-Psicologia Conductual","1132-9483","1132-9483","PSYCHOLOGY, CLINICAL","('SSCI',)","447","0.7","Q4","0.24","1.71" +"Documents d Analisi Geografica","0212-1573","2014-4512","GEOGRAPHY","('ESCI',)","328","0.7","Q3","0.24","87.32" +"Egyptian Journal of Radiology and Nuclear Medicine","","2090-4762","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","1,220","0.7","Q4","0.24","100.00" +"Emirates Journal of Food and Agriculture","2079-052X","2079-0538","('AGRONOMY', 'FOOD SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","1,856","0.7","('Q3', 'Q4')","0.24","81.94" +"Fukushima Journal of Medical Science","0016-2590","2185-4610","MEDICINE, GENERAL & INTERNAL","('ESCI',)","274","0.7","Q3","0.24","96.00" +"Journal of Central European Agriculture","1332-9049","1332-9049","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","813","0.7","Q3","0.24","99.62" +"Recreational Sports Journal","1558-8661","1558-867X","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","241","0.7","Q4","0.24","8.51" +"SPECTROSCOPY AND SPECTRAL ANALYSIS","1000-0593","1000-0593","SPECTROSCOPY","('SCIE',)","4,105","0.7","Q4","0.24","0.00" +"Vascular and Endovascular Surgery","1538-5744","1938-9116","('PERIPHERAL VASCULAR DISEASE', 'SURGERY')","('SCIE', 'SCIE')","1,637","0.7","('Q4', 'Q4')","0.24","8.30" +"ACTA OECONOMICA","0001-6373","1588-2659","ECONOMICS","('SSCI',)","306","0.7","Q3","0.23","35.00" +"Anthropology & Aging","2374-2267","2374-2267","GERONTOLOGY","('ESCI',)","122","0.7","Q4","0.23","92.68" +"BALTIC FORESTRY","1392-1355","1392-1355","FORESTRY","('SCIE',)","437","0.7","Q3","0.23","0.00" +"Biosystems Diversity","2519-8513","2520-2529","ECOLOGY","('ESCI',)","276","0.7","Q4","0.23","96.88" +"Case Reports in Womens Health","2214-9112","2214-9112","OBSTETRICS & GYNECOLOGY","('ESCI',)","324","0.7","Q4","0.23","95.67" +"CHILDRENS HEALTH CARE","0273-9615","1532-6888","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","512","0.7","Q4","0.23","6.73" +"Comparative Economic Research-Central and Eastern Europe","1508-2008","2082-6737","ECONOMICS","('ESCI',)","206","0.7","Q3","0.23","98.13" +"Counseling and Values","0160-7960","2161-007X","PSYCHOLOGY, APPLIED","('ESCI',)","356","0.7","Q4","0.23","0.00" +"ELECTRONICS LETTERS","0013-5194","1350-911X","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","12,243","0.7","Q4","0.23","77.70" +"FIBRES & TEXTILES IN EASTERN EUROPE","1230-3666","2300-7354","MATERIALS SCIENCE, TEXTILES","('SCIE',)","1,355","0.7","Q3","0.23","93.84" +"FORMAL METHODS IN SYSTEM DESIGN","0925-9856","1572-8102","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","489","0.7","Q3","0.23","46.75" +"Geographia Technica","1842-5135","2065-4421","GEOGRAPHY, PHYSICAL","('ESCI',)","202","0.7","Q4","0.23","98.11" +"International Journal of Gaming and Computer-Mediated Simulations","1942-3888","1942-3896","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","340","0.7","Q4","0.23","93.55" +"JOURNAL OF MINING SCIENCE","1062-7391","1573-8736","MINING & MINERAL PROCESSING","('SCIE',)","1,273","0.7","Q4","0.23","0.00" +"Journal of Psychological and Educational Research","2247-1537","2247-1537","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","106","0.7","Q4","0.23","0.00" +"Nase More","0469-6255","1848-6320","ENGINEERING, MARINE","('ESCI',)","227","0.7","Q4","0.23","95.52" +"NEUROCIRUGIA","1130-1473","2340-6305","('NEUROSCIENCES', 'SURGERY')","('SCIE', 'SCIE')","378","0.7","('Q4', 'Q4')","0.23","0.81" +"PAKISTAN JOURNAL OF AGRICULTURAL SCIENCES","0552-9034","2076-0906","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","1,489","0.7","Q3","0.23","0.00" +"Plastic Surgery","2292-5503","2292-5511","SURGERY","('SCIE',)","602","0.7","Q4","0.23","35.12" +"PSL Quarterly Review","2037-3635","2037-3643","ECONOMICS","('ESCI',)","205","0.7","Q3","0.23","0.00" +"Rural Extension and Innovation Systems Journal","2204-8758","2204-8766","AGRONOMY","('ESCI',)","39","0.7","Q3","0.23","0.00" +"Russian Journal of Earth Sciences","1681-1208","1681-1208","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","321","0.7","Q4","0.23","3.45" +"SEEFOR-South-East European Forestry","1847-6481","1849-0891","FORESTRY","('ESCI',)","130","0.7","Q3","0.23","98.08" +"Strategic Analysis","0970-0161","1754-0054","INTERNATIONAL RELATIONS","('ESCI',)","375","0.7","Q3","0.23","1.11" +"TEHNICKI GLASNIK-TECHNICAL JOURNAL","1846-6168","1848-5588","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","279","0.7","Q3","0.23","99.21" +"Undersea and Hyperbaric Medicine","1066-2936","","('MARINE & FRESHWATER BIOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","941","0.7","('Q4', 'Q4')","0.23","0.00" +"Urology Annals","0974-7796","0974-7834","UROLOGY & NEPHROLOGY","('ESCI',)","875","0.7","Q4","0.23","74.58" +"GEOCHEMISTRY INTERNATIONAL","0016-7029","1556-1968","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","1,978","0.7","Q4","0.22","5.00" +"HEART SURGERY FORUM","1098-3511","1522-6662","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'SURGERY')","('SCIE', 'SCIE')","832","0.7","('Q4', 'Q4')","0.22","94.57" +"Horticultura Brasileira","0102-0536","1806-9991","HORTICULTURE","('SCIE',)","1,122","0.7","Q4","0.22","97.53" +"Image Processing On Line","2105-1232","2105-1232","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","631","0.7","Q4","0.22","98.39" +"Indian Journal of Traditional Knowledge","0972-5938","0975-1068","PLANT SCIENCES","('SCIE',)","1,660","0.7","Q4","0.22","30.25" +"International Journal of Aviation Aeronautics and Aerospace","2374-6793","2374-6793","ENGINEERING, AEROSPACE","('ESCI',)","214","0.7","Q4","0.22","36.17" +"Intersections-Gender and Sexuality in Asia and the Pacific","1440-9151","1440-9151","WOMENS STUDIES","('ESCI',)","94","0.7","Q3","0.22","0.00" +"Journal of Agricultural Sciences","1391-9318","2386-1363","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","237","0.7","Q3","0.22","100.00" +"Journal of Engineering Science and Technology","","1823-4690","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","1,889","0.7","Q3","0.22","0.00" +"Journal of Military Veteran and Family Health","","2368-7924","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","323","0.7","Q4","0.22","6.13" +"MARINE TECHNOLOGY SOCIETY JOURNAL","0025-3324","1948-1209","('ENGINEERING, OCEAN', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","1,035","0.7","('Q4', 'Q4')","0.22","0.52" +"MODELING IDENTIFICATION AND CONTROL","0332-7353","1890-1328","('AUTOMATION & CONTROL SYSTEMS', 'COMPUTER SCIENCE, CYBERNETICS')","('SCIE', 'SCIE')","389","0.7","('Q4', 'Q4')","0.22","88.57" +"Neotropical Biology and Conservation","","2236-3777","('BIODIVERSITY CONSERVATION', 'ECOLOGY', 'ZOOLOGY')","('ESCI', 'ESCI', 'ESCI')","260","0.7","('Q4', 'Q4', 'Q4')","0.22","94.37" +"PESQUISA AGROPECUARIA BRASILEIRA","0100-204X","1678-3921","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","3,201","0.7","Q3","0.22","86.16" +"Review of Derivatives Research","1380-6645","1573-7144","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","182","0.7","('Q4', 'Q3')","0.22","44.00" +"Revista Iberoamericana de Educacion","1022-6508","1681-5653","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","560","0.7","Q3","0.22","94.69" +"Revista Virtual Universidad Catolica del Norte","0124-5821","2389-7333","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","181","0.7","Q3","0.22","96.91" +"STRENGTH OF MATERIALS","0039-2316","1573-9325","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('SCIE',)","1,077","0.7","Q4","0.22","0.00" +"Deturope-The Central European journal of Regional Development and Tourism","1821-2506","1821-2506","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","105","0.7","Q4","0.21","2.90" +"EARTH MOON AND PLANETS","0167-9295","1573-0794","('ASTRONOMY & ASTROPHYSICS', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","601","0.7","('Q4', 'Q4')","0.21","20.00" +"German Journal of Agricultural Economics","0515-6866","2191-4028","AGRICULTURAL ECONOMICS & POLICY","('SCIE',)","187","0.7","Q4","0.21","0.00" +"JCPSP-Journal of the College of Physicians and Surgeons Pakistan","1022-386X","1681-7168","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,885","0.7","Q3","0.21","86.72" +"Journal of Cases on Information Technology","1548-7717","1548-7725","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","171","0.7","Q4","0.21","98.81" +"Journal of Medical Physics","0971-6203","1998-3913","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","680","0.7","Q4","0.21","69.28" +"JOURNAL OF SCIENTIFIC & INDUSTRIAL RESEARCH","0022-4456","0975-1084","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","1,570","0.7","Q3","0.21","47.40" +"Journal of Volcanology and Seismology","0742-0463","1819-7108","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","415","0.7","Q4","0.21","2.75" +"Journal of Web Engineering","1540-9589","1544-5976","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","261","0.7","('Q4', 'Q3')","0.21","0.81" +"LETTERS IN ORGANIC CHEMISTRY","1570-1786","1875-6255","CHEMISTRY, ORGANIC","('SCIE',)","1,005","0.7","Q4","0.21","0.82" +"Pakistan Journal of Pharmaceutical Sciences","1011-601X","1011-601X","PHARMACOLOGY & PHARMACY","('SCIE',)","3,110","0.7","Q4","0.21","0.00" +"Pharmacognosy Research","0974-8490","0976-4836","PHARMACOLOGY & PHARMACY","('ESCI',)","1,435","0.7","Q4","0.21","91.79" +"Physical Oceanography","0928-5105","1573-160X","OCEANOGRAPHY","('ESCI',)","288","0.7","Q4","0.21","40.58" +"POLISH JOURNAL OF PATHOLOGY","1233-9687","1233-9687","PATHOLOGY","('SCIE',)","511","0.7","Q4","0.21","88.70" +"Progress in Electromagnetics Research M","","1937-8726","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","1,077","0.7","Q4","0.21","14.99" +"Revista Mexicana de Ciencias Pecuarias","2007-1124","2448-6698","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","576","0.7","Q3","0.21","100.00" +"Romanian Journal of Acoustics and Vibration","1584-7284","1584-7284","ACOUSTICS","('ESCI',)","104","0.7","Q4","0.21","0.00" +"Traditional & Kampo Medicine","","2053-4515","('INTEGRATIVE & COMPLEMENTARY MEDICINE', 'PHARMACOLOGY & PHARMACY')","('ESCI', 'ESCI')","93","0.7","('Q4', 'Q4')","0.21","29.55" +"Zbornik Radova Ekonomskog Fakulteta u Rijeci-Proceedings of Rijeka Faculty of Economics","1331-8004","1846-7520","ECONOMICS","('ESCI',)","231","0.7","Q3","0.21","85.00" +"ADANSONIA","1280-8571","1639-4798","PLANT SCIENCES","('SCIE',)","280","0.7","Q4","0.20","96.15" +"Boletin Latinoamericano y del Caribe de Plantas Medicinales y Aromaticas","0717-7917","0717-7917","('INTEGRATIVE & COMPLEMENTARY MEDICINE', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","487","0.7","('Q4', 'Q4')","0.20","89.81" +"CANADIAN JOURNAL OF DIETETIC PRACTICE AND RESEARCH","1486-3847","2292-9592","NUTRITION & DIETETICS","('SCIE',)","677","0.7","Q4","0.20","4.95" +"Case Reports in Pathology","2090-6781","2090-679X","PATHOLOGY","('ESCI',)","381","0.7","Q4","0.20","100.00" +"Colombia Medica","1657-9534","","MEDICINE, GENERAL & INTERNAL","('SCIE',)","491","0.7","Q3","0.20","90.00" +"DOKLADY EARTH SCIENCES","1028-334X","1531-8354","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","2,799","0.7","Q4","0.20","12.55" +"International Journal of Diabetes in Developing Countries","0973-3930","1998-3832","ENDOCRINOLOGY & METABOLISM","('SCIE',)","821","0.7","Q4","0.20","9.46" +"International Journal of Fluid Power","1439-9776","2332-1180","ENGINEERING, MECHANICAL","('ESCI',)","319","0.7","Q4","0.20","0.00" +"International Journal of Migration Health and Social Care","1747-9894","2042-8650","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","335","0.7","Q4","0.20","12.63" +"International Journal of Psychology and Psychological Therapy","1577-7057","1989-2780","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","468","0.7","Q4","0.20","0.00" +"Journal of Applied Corporate Finance","1078-1196","1745-6622","BUSINESS, FINANCE","('ESCI',)","1,125","0.7","Q4","0.20","17.17" +"JOURNAL OF NUTRITIONAL SCIENCE AND VITAMINOLOGY","0301-4800","1881-7742","NUTRITION & DIETETICS","('SCIE',)","2,623","0.7","Q4","0.20","98.75" +"Journal of Pharmacy and Bioallied Sciences","0976-4879","0975-7406","PHARMACOLOGY & PHARMACY","('ESCI',)","3,434","0.7","Q4","0.20","98.11" +"JOURNAL OF QUANTITATIVE ECONOMICS","0971-1554","2364-1045","ECONOMICS","('ESCI',)","299","0.7","Q3","0.20","5.84" +"Journal of the Southern African Institute of Mining and Metallurgy","2225-6253","2411-9717","('METALLURGY & METALLURGICAL ENGINEERING', 'MINING & MINERAL PROCESSING')","('SCIE', 'SCIE')","2,240","0.7","('Q4', 'Q4')","0.20","90.24" +"Neuropsychological Trends","1970-321X","1970-3201","PSYCHOLOGY","('ESCI',)","91","0.7","Q4","0.20","93.10" +"Notarzt","0177-2309","1438-8693","EMERGENCY MEDICINE","('SCIE',)","104","0.7","Q4","0.20","0.00" +"Pedagogy of Physical Culture and Sports","","2664-9837","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","123","0.7","Q4","0.20","97.44" +"Plant Science Today","2348-1900","2348-1900","PLANT SCIENCES","('ESCI',)","564","0.7","Q4","0.20","97.56" +"Proceedings of the Romanian Academy Series A-Mathematics Physics Technical Sciences Information Science","1454-9069","","MULTIDISCIPLINARY SCIENCES","('SCIE',)","271","0.7","Q3","0.20","0.00" +"PROGRAMMING AND COMPUTER SOFTWARE","0361-7688","1608-3261","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","361","0.7","Q4","0.20","0.40" +"Progress in Electromagnetics Research Letters","1937-6480","1937-6480","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","843","0.7","Q4","0.20","21.49" +"RESTAURATOR-INTERNATIONAL JOURNAL FOR THE PRESERVATION OF LIBRARY AND ARCHIVAL MATERIAL","0034-5806","1865-8431","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","382","0.7","Q3","0.20","6.98" +"Revista Espanola de Orientacion y Psicopedagogia","1989-7448","1989-7448","PSYCHOLOGY, APPLIED","('ESCI',)","286","0.7","Q4","0.20","94.44" +"Tekstilec","0351-3386","2350-3696","MATERIALS SCIENCE, TEXTILES","('ESCI',)","203","0.7","Q3","0.20","96.51" +"Acta Botanica Mexicana","","2448-7589","PLANT SCIENCES","('SCIE',)","682","0.7","Q4","0.19","90.59" +"Acta Colombiana de Psicologia","0123-9155","1909-9711","PSYCHOLOGY, CLINICAL","('ESCI',)","243","0.7","Q4","0.19","100.00" +"African Journal of Reproductive Health","1118-4841","2141-3606","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","1,359","0.7","Q4","0.19","0.00" +"AMERICAN FERN JOURNAL","0002-8444","1938-422X","PLANT SCIENCES","('SCIE',)","395","0.7","Q4","0.19","0.00" +"ANALES DEL JARDIN BOTANICO DE MADRID","0211-1322","1988-3196","PLANT SCIENCES","('SCIE',)","296","0.7","Q4","0.19","92.31" +"BIOMEDICAL PAPERS-OLOMOUC","1213-8118","1804-7521","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","1,302","0.7","Q4","0.19","100.00" +"Contributions to Geophysics and Geodesy","1338-0540","1338-0540","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","171","0.7","Q4","0.19","87.50" +"Current Pharmaceutical Analysis","1573-4129","1875-676X","PHARMACOLOGY & PHARMACY","('SCIE',)","581","0.7","Q4","0.19","1.45" +"Economic Journal of Emerging Markets","2086-3128","2502-180X","ECONOMICS","('ESCI',)","93","0.7","Q3","0.19","98.15" +"Egyptian Journal of Neurosurgery","","2520-8225","('CLINICAL NEUROLOGY', 'SURGERY')","('ESCI', 'ESCI')","101","0.7","('Q4', 'Q4')","0.19","100.00" +"Endocrinology Diabetes and Metabolism Case Reports","","2052-0573","ENDOCRINOLOGY & METABOLISM","('ESCI',)","563","0.7","Q4","0.19","91.98" +"GEOMAGNETISM AND AERONOMY","0016-7932","1555-645X","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","1,247","0.7","Q4","0.19","3.43" +"INDIAN JOURNAL OF EXPERIMENTAL BIOLOGY","0019-5189","0975-1009","BIOLOGY","('SCIE',)","2,759","0.7","Q4","0.19","44.98" +"International Journal of Ad Hoc and Ubiquitous Computing","1743-8225","1743-8233","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","321","0.7","('Q4', 'Q4')","0.19","0.00" +"International Journal of Structural Engineering","1758-7328","1758-7336","ENGINEERING, CIVIL","('ESCI',)","133","0.7","Q4","0.19","0.00" +"Journal of Disaster Research","1881-2473","1883-8030","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","888","0.7","Q4","0.19","89.69" +"Nephrologie & Therapeutique","1769-7255","1872-9177","UROLOGY & NEPHROLOGY","('SCIE',)","491","0.7","Q4","0.19","13.12" +"Perspectiva Educacional","0718-9729","0718-9729","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","157","0.7","Q3","0.19","96.00" +"Revista Interuniversitaria de Formacion del Profesorado-RIFOP","0213-8646","2530-3791","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","372","0.7","Q3","0.19","94.07" +"SA Journal of Radiology","1027-202X","2078-6778","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","217","0.7","Q4","0.19","96.97" +"Sains Malaysiana","0126-6039","","MULTIDISCIPLINARY SCIENCES","('SCIE',)","2,853","0.7","Q3","0.19","99.67" +"Vestnik Samarskogo Gosudarstvennogo Tekhnicheskogo Universiteta-Seriya-Fiziko-Matematicheskiye Nauki","1991-8615","2310-7081","('PHYSICS, MATHEMATICAL', 'PHYSICS, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","229","0.7","('Q4', 'Q3')","0.19","99.21" +"Acta Endocrinologica-Bucharest","1841-0987","1843-066X","ENDOCRINOLOGY & METABOLISM","('SCIE',)","606","0.7","Q4","0.18","0.00" +"Acta Medica Indonesiana","0125-9326","2338-2732","MEDICINE, GENERAL & INTERNAL","('ESCI',)","742","0.7","Q3","0.18","0.00" +"Advances in Multimedia","1687-5680","1687-5699","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","495","0.7","Q4","0.18","99.53" +"Applied Geophysics","1672-7975","1993-0658","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","1,094","0.7","Q4","0.18","0.00" +"Archives of Biological Sciences","0354-4664","1821-4339","BIOLOGY","('SCIE',)","987","0.7","Q4","0.18","100.00" +"Cardiovascular Journal of Africa","1995-1892","1680-0745","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,164","0.7","Q4","0.18","0.00" +"Contemporary Problems of Ecology","1995-4255","1995-4263","ECOLOGY","('SCIE',)","834","0.7","Q4","0.18","1.51" +"Egyptian Pharmaceutical Journal","1687-4315","2090-9853","PHARMACOLOGY & PHARMACY","('ESCI',)","259","0.7","Q4","0.18","0.00" +"Financial Internet Quarterly","","2719-3454","('BUSINESS, FINANCE', 'ECONOMICS')","('ESCI', 'ESCI')","63","0.7","('Q4', 'Q3')","0.18","96.67" +"Giornale Italiano di Cardiologia","1827-6806","1972-6481","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","705","0.7","Q4","0.18","0.00" +"Indonesian Biomedical Journal","2355-9179","2355-9179","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","223","0.7","Q4","0.18","98.77" +"INFORMATION PROCESSING LETTERS","0020-0190","1872-6119","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","3,264","0.7","Q4","0.18","26.32" +"International Journal of Advanced Computer Science and Applications","2158-107X","2156-5570","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","6,782","0.7","Q3","0.18","1.09" +"International Journal of System Dynamics Applications","2160-9772","2160-9799","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","105","0.7","Q4","0.18","96.23" +"Jordan Journal of Electrical Engineering","2409-9600","2409-9619","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('ESCI', 'ESCI')","82","0.7","('Q4', 'Q4')","0.18","0.00" +"JOURNAL OF HIGH SPEED NETWORKS","0926-6801","1875-8940","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","98","0.7","Q4","0.18","0.00" +"Journal of the Saudi Heart Association","1016-7315","2212-5043","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","434","0.7","Q4","0.18","97.27" +"Management Research and Practice","2067-2462","2067-2462","MANAGEMENT","('ESCI',)","170","0.7","Q4","0.18","0.00" +"Mediterranean Journal of Nutrition and Metabolism","1973-798X","1973-7998","NUTRITION & DIETETICS","('ESCI',)","324","0.7","Q4","0.18","2.78" +"MOLECULAR CRYSTALS AND LIQUID CRYSTALS","1542-1406","1563-5287","('CHEMISTRY, MULTIDISCIPLINARY', 'CRYSTALLOGRAPHY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE')","4,164","0.7","('Q4', 'Q3', 'Q4')","0.18","0.76" +"Nonlinear Optics Quantum Optics-Concepts in Modern Optics","1543-0537","1944-8325","QUANTUM SCIENCE & TECHNOLOGY","('ESCI',)","142","0.7","Q4","0.18","0.00" +"RBGN-Revista Brasileira de Gestao de Negocios","1806-4892","1983-0807","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","405","0.7","('Q4', 'Q4')","0.18","98.18" +"Research in Cold and Arid Regions","2097-1583","2949-7302","GEOGRAPHY, PHYSICAL","('ESCI',)","19","0.7","Q4","0.18","93.75" +"Studies in Business and Economics","1842-4120","2344-5416","ECONOMICS","('ESCI',)","327","0.7","Q3","0.18","96.81" +"Tuberkuloz ve Toraks-Tuberculosis and Thorax","0494-1373","0494-1373","RESPIRATORY SYSTEM","('ESCI',)","412","0.7","Q4","0.18","98.70" +"Acta Clinica Croatica","0353-9466","1333-9451","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,277","0.7","Q3","0.17","88.60" +"Advanced Biomedical Research","2277-9175","2277-9175","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","1,672","0.7","Q4","0.17","92.74" +"ADVANCES IN COMPLEX SYSTEMS","0219-5259","1793-6802","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MULTIDISCIPLINARY SCIENCES')","('SCIE', 'SCIE')","565","0.7","('Q4', 'Q3')","0.17","7.94" +"AME Case Reports","2523-1995","2523-1995","MEDICINE, GENERAL & INTERNAL","('ESCI',)","146","0.7","Q3","0.17","98.52" +"ARCHIVES OF METALLURGY AND MATERIALS","1733-3490","2300-1909","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","2,097","0.7","Q4","0.17","98.42" +"Artificial Satellites-Journal of Planetary Geodesy","0208-841X","2083-6104","ASTRONOMY & ASTROPHYSICS","('ESCI',)","123","0.7","Q4","0.17","85.71" +"Bahrain Medical Bulletin","1012-8298","1012-8298","MEDICINE, GENERAL & INTERNAL","('ESCI',)","250","0.7","Q3","0.17","0.00" +"Case Reports in Hematology","2090-6560","2090-6579","HEMATOLOGY","('ESCI',)","471","0.7","Q4","0.17","100.00" +"Chinese Public Administration Review","1539-6754","2573-1483","PUBLIC ADMINISTRATION","('ESCI',)","77","0.7","Q4","0.17","79.69" +"Diabetologie und Stoffwechsel","1861-9002","1861-9010","ENDOCRINOLOGY & METABOLISM","('SCIE',)","217","0.7","Q4","0.17","4.06" +"Dusunen Adam-Journal of Psychiatry and Neurological Sciences","1018-8681","1309-5749","PSYCHIATRY","('ESCI',)","423","0.7","Q4","0.17","100.00" +"FLUORIDE","0015-4725","2253-4083","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TOXICOLOGY')","('SCIE', 'SCIE')","784","0.7","('Q4', 'Q4')","0.17","0.00" +"Hacienda Publica Espanola-Review of Public Economics","0210-1173","2386-4176","ECONOMICS","('SSCI',)","165","0.7","Q3","0.17","75.76" +"IEICE TRANSACTIONS ON COMMUNICATIONS","0916-8516","1745-1345","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","1,227","0.7","('Q4', 'Q4')","0.17","0.43" +"Informacios Tarsadalom","1587-8694","","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","79","0.7","Q3","0.17","100.00" +"INFORMATION RESEARCH-AN INTERNATIONAL ELECTRONIC JOURNAL","1368-1613","1368-1613","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","968","0.7","Q3","0.17","99.41" +"Journal of Insurance Issues","1531-6076","2332-4244","BUSINESS, FINANCE","('ESCI',)","94","0.7","Q4","0.17","0.00" +"Journal of Vibroengineering","1392-8716","1392-8716","ENGINEERING, MECHANICAL","('ESCI',)","1,629","0.7","Q4","0.17","98.54" +"Led i Sneg-Ice and Snow","2076-6734","2412-3765","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","333","0.7","Q4","0.17","70.29" +"Leukemia Research Reports","2213-0489","2213-0489","('HEMATOLOGY', 'ONCOLOGY')","('ESCI', 'ESCI')","242","0.7","('Q4', 'Q4')","0.17","93.04" +"Metallurgical & Materials Engineering","2217-8961","2812-9105","METALLURGY & METALLURGICAL ENGINEERING","('ESCI',)","278","0.7","Q4","0.17","96.26" +"Microbiology Resource Announcements","2576-098X","2576-098X","MICROBIOLOGY","('ESCI',)","2,885","0.7","Q4","0.17","68.38" +"MICROELECTRONICS INTERNATIONAL","1356-5362","1758-812X","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","267","0.7","('Q4', 'Q4')","0.17","1.10" +"ORGANIC SYNTHESES","0078-6209","2333-3553","CHEMISTRY, ORGANIC","('ESCI',)","998","0.7","Q4","0.17","5.56" +"Polish Journal of Medical Physics and Engineering","1898-0309","1898-0309","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","139","0.7","Q4","0.17","100.00" +"Power Electronics and Drives","2451-0262","2543-4292","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","59","0.7","Q4","0.17","100.00" +"QUEUEING SYSTEMS","0257-0130","1572-9443","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","1,126","0.7","('Q4', 'Q4')","0.17","15.03" +"Studia Geotechnica et Mechanica","0137-6365","2083-831X","MECHANICS","('ESCI',)","331","0.7","Q4","0.17","100.00" +"Tecciencia","1909-3667","2422-3670","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","56","0.7","Q3","0.17","80.77" +"Case Reports in Oncology","1662-6575","1662-6575","ONCOLOGY","('ESCI',)","1,354","0.7","Q4","0.16","99.79" +"disP","0251-3625","2166-8604","REGIONAL & URBAN PLANNING","('SSCI',)","319","0.7","Q4","0.16","30.88" +"Earth Sciences Research Journal","1794-6190","2339-3459","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","392","0.7","Q4","0.16","85.59" +"European Transport-Trasporti Europei","1825-3997","1825-3997","TRANSPORTATION","('ESCI',)","288","0.7","Q4","0.16","0.00" +"GetMobile-Mobile Computing & Communications Review","2375-0529","2375-0537","TELECOMMUNICATIONS","('ESCI',)","201","0.7","Q4","0.16","0.00" +"Indian Journal of Natural Products and Resources","0976-0504","0976-0512","PLANT SCIENCES","('ESCI',)","561","0.7","Q4","0.16","62.78" +"International Journal of Business and Society","1511-6670","1511-6670","BUSINESS","('ESCI',)","723","0.7","Q4","0.16","97.46" +"International Journal of Maritime Engineering","1479-8751","1740-0716","ENGINEERING, MARINE","('SCIE',)","249","0.7","Q4","0.16","2.04" +"International Journal of Organizational Leadership","2383-1103","2345-6744","MANAGEMENT","('ESCI',)","254","0.7","Q4","0.16","65.79" +"Journal of Cardiovascular Echography","2211-4122","2347-193X","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","257","0.7","Q4","0.16","3.15" +"Journal of Pure and Applied Microbiology","0973-7510","2581-690X","MICROBIOLOGY","('ESCI',)","1,748","0.7","Q4","0.16","97.82" +"Natural Products Journal","2210-3155","2210-3163","CHEMISTRY, MEDICINAL","('ESCI',)","386","0.7","Q4","0.16","2.11" +"OPTICA APPLICATA","0078-5466","1899-7015","OPTICS","('SCIE',)","507","0.7","Q4","0.16","0.00" +"PATTERN RECOGNITION AND IMAGE ANALYSIS","1054-6618","1555-6212","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","546","0.7","Q4","0.16","0.35" +"PRESENCE-Virtual and Augmented Reality","1054-7460","1531-3263","('COMPUTER SCIENCE, CYBERNETICS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","3,241","0.7","('Q4', 'Q4')","0.16","6.25" +"Zeitschrift fur Palliativmedizin","1615-2921","1615-293X","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","65","0.7","Q4","0.16","3.28" +"ACM Transactions on Modeling and Performance Evaluation of Computing Systems","2376-3639","2376-3647","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","122","0.7","Q4","0.15","0.00" +"Advances in Electrical and Computer Engineering","1582-7445","1844-7600","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE')","430","0.7","('Q4', 'Q4')","0.15","71.21" +"Arts and the Market","2056-4945","2056-4953","BUSINESS","('ESCI',)","74","0.7","Q4","0.15","17.39" +"AT-Automatisierungstechnik","0178-2312","2196-677X","AUTOMATION & CONTROL SYSTEMS","('SCIE',)","479","0.7","Q4","0.15","24.50" +"Case Reports in Immunology","2090-6609","2090-6617","IMMUNOLOGY","('ESCI',)","96","0.7","Q4","0.15","100.00" +"Eco mont-Journal on Protected Mountain Areas Research","2073-106X","2073-1558","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","118","0.7","('Q4', 'Q4')","0.15","98.39" +"Engineering Review","1330-9587","1849-0433","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","126","0.7","Q3","0.15","96.51" +"FOOD SCIENCE AND TECHNOLOGY RESEARCH","1344-6606","1881-3984","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","2,056","0.7","Q4","0.15","0.00" +"INDIAN JOURNAL OF ENGINEERING AND MATERIALS SCIENCES","0971-4588","0975-1017","('ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","916","0.7","('Q3', 'Q4')","0.15","1.14" +"Indian Journal of Hematology and Blood Transfusion","0971-4502","0974-0449","HEMATOLOGY","('SCIE',)","1,027","0.7","Q4","0.15","10.95" +"INTEGRATED FERROELECTRICS","1058-4587","1607-8489","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","1,775","0.7","('Q4', 'Q4', 'Q4')","0.15","0.16" +"INTERNATIONAL APPLIED MECHANICS","1063-7095","1573-8582","MECHANICS","('ESCI',)","627","0.7","Q4","0.15","0.00" +"International Food Research Journal","1985-4668","2231-7546","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","4,513","0.7","Q4","0.15","0.00" +"International Journal of Heat and Technology","0392-8764","0392-8764","THERMODYNAMICS","('ESCI',)","1,139","0.7","Q4","0.15","16.05" +"International Journal of Materials Research","1862-5282","2195-8556","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","2,027","0.7","Q4","0.15","0.00" +"Journal of Climate Change","2395-7611","2395-7697","METEOROLOGY & ATMOSPHERIC SCIENCES","('ESCI',)","110","0.7","Q4","0.15","0.00" +"Journal of Investment Management","1545-9144","1545-9152","BUSINESS, FINANCE","('ESCI',)","276","0.7","Q4","0.15","0.00" +"JOURNAL OF MEDICAL INVESTIGATION","1343-1420","1349-6867","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","901","0.7","Q4","0.15","89.32" +"Journal of Reports in Pharmaceutical Sciences","2322-1232","2322-5106","PHARMACOLOGY & PHARMACY","('ESCI',)","175","0.7","Q4","0.15","0.00" +"Journal of Sport and Health Research","1989-6239","1989-6239","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","311","0.7","Q4","0.15","39.53" +"Journal of the Geological Society of Korea","0435-4036","2288-7377","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","620","0.7","Q4","0.15","0.00" +"KOVOVE MATERIALY-METALLIC MATERIALS","0023-432X","1338-4252","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","455","0.7","('Q4', 'Q4')","0.15","86.36" +"Radiologic Technology","0033-8397","1943-5657","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","571","0.7","Q4","0.15","0.00" +"Review of Development Finance","1879-9337","1879-9337","BUSINESS, FINANCE","('ESCI',)","508","0.7","Q4","0.15","0.00" +"REVUE D ECONOMIE POLITIQUE","0373-2630","2105-2883","('ECONOMICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","319","0.7","('Q3', 'Q3')","0.15","0.00" +"REVUE DE MEDECINE INTERNE","0248-8663","","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,253","0.7","Q3","0.15","43.09" +"SAE International Journal of Transportation Safety","2327-5626","2327-5634","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","128","0.7","Q4","0.15","0.00" +"AD-minister","1692-0279","2256-4322","BUSINESS","('ESCI',)","102","0.7","Q4","0.14","83.87" +"Clinical Diabetology","2450-8187","2450-8187","ENDOCRINOLOGY & METABOLISM","('ESCI',)","197","0.7","Q4","0.14","96.43" +"COMPUTING AND INFORMATICS","1335-9150","1335-9150","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","358","0.7","Q4","0.14","0.00" +"International Journal of Biomedical Engineering and Technology","1752-6418","1752-6426","ENGINEERING, BIOMEDICAL","('ESCI',)","445","0.7","Q4","0.14","0.00" +"International Journal of Energy Optimization and Engineering","2160-9500","2160-9543","ENERGY & FUELS","('ESCI',)","90","0.7","Q4","0.14","27.59" +"International Journal of Indian Culture and Business Management","1753-0806","1753-0814","BUSINESS","('ESCI',)","418","0.7","Q4","0.14","0.00" +"Journal AWWA","0003-150X","1551-8833","('ENGINEERING, CIVIL', 'WATER RESOURCES')","('SCIE', 'SCIE')","3,208","0.7","('Q4', 'Q4')","0.14","0.00" +"Journal of Elementology","1644-2296","1644-2296","ENVIRONMENTAL SCIENCES","('SCIE',)","916","0.7","Q4","0.14","0.00" +"Journal of Fluid Science and Technology","1880-5558","1880-5558","MECHANICS","('ESCI',)","316","0.7","Q4","0.14","94.12" +"JOURNAL OF THE TORREY BOTANICAL SOCIETY","1095-5674","1940-0616","PLANT SCIENCES","('SCIE',)","716","0.7","Q4","0.14","0.00" +"LCGC North America","1527-5949","1939-1889","CHEMISTRY, ANALYTICAL","('SCIE',)","514","0.7","Q4","0.14","0.00" +"MATERIALS SCIENCE","1068-820X","1573-885X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","992","0.7","Q4","0.14","0.00" +"Mausam","0252-9416","0252-9416","METEOROLOGY & ATMOSPHERIC SCIENCES","('SCIE',)","1,083","0.7","Q4","0.14","58.08" +"Methods and Objects of Chemical Analysis","1991-0290","2413-6166","CHEMISTRY, ANALYTICAL","('ESCI',)","62","0.7","Q4","0.14","98.15" +"Radiologie","2731-7048","2731-7056","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","648","0.7","Q4","0.14","16.77" +"Research Reports in Clinical Cardiology","1179-8475","1179-8475","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","79","0.7","Q4","0.14","100.00" +"SAE International Journal of Electrified Vehicles","2691-3747","2691-3755","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","45","0.7","Q4","0.14","0.00" +"VIROLOGIE","1267-8694","","VIROLOGY","('SCIE',)","110","0.7","Q4","0.14","0.00" +"Central European Journal of Energetic Materials","1733-7178","","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","540","0.7","('Q4', 'Q4')","0.13","97.18" +"Estudios Geograficos","0014-1496","1988-8546","GEOGRAPHY","('ESCI',)","303","0.7","Q3","0.13","96.39" +"European Journal of Tourism Hospitality and Recreation","2182-4924","2182-4916","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","108","0.7","Q4","0.13","98.08" +"IEEE INDUSTRY APPLICATIONS MAGAZINE","1077-2618","1558-0598","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'ENGINEERING, INDUSTRIAL')","('SCIE', 'SCIE')","824","0.7","('Q4', 'Q4')","0.13","0.00" +"Indian Journal of Thoracic and Cardiovascular Surgery","0970-9134","0973-7723","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","555","0.7","Q4","0.13","8.90" +"Irish Journal of Management","1649-248X","2451-2834","MANAGEMENT","('ESCI',)","100","0.7","Q4","0.13","93.55" +"Journal of Environmental Accounting and Management","2325-6192","2325-6206","GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY","('ESCI',)","149","0.7","Q4","0.13","0.00" +"Journal of Metals Materials and Minerals","0857-6149","0857-6149","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","437","0.7","Q4","0.13","64.22" +"JOURNAL OF NEW MATERIALS FOR ELECTROCHEMICAL SYSTEMS","1480-2422","2292-1168","('ELECTROCHEMISTRY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","399","0.7","('Q4', 'Q4')","0.13","10.48" +"Journal of Physical Studies","1027-4642","2310-0052","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","155","0.7","Q3","0.13","0.00" +"Journal of Sustainable Mining","2543-4950","2300-3960","('GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY', 'MINING & MINERAL PROCESSING')","('ESCI', 'ESCI')","474","0.7","('Q4', 'Q4')","0.13","97.47" +"Minerva Biotechnology and Biomolecular Research","2724-542X","2724-5934","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","37","0.7","Q4","0.13","2.86" +"Polish Journal of Chemical Technology","1509-8117","1899-4741","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","799","0.7","('Q4', 'Q4')","0.13","90.83" +"Ukrainian Food Journal","2304-974X","2313-5891","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","259","0.7","Q4","0.13","65.29" +"VERHALTENSTHERAPIE","1016-6262","1423-0402","('PSYCHIATRY', 'PSYCHOLOGY, CLINICAL')","('SCIE', 'SSCI')","307","0.7","('Q4', 'Q4')","0.13","25.40" +"ARCHIVOS DE CARDIOLOGIA DE MEXICO","1405-9940","1405-9940","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","345","0.7","Q4","0.12","99.05" +"Bridge Structures","1573-2487","1744-8999","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","118","0.7","Q4","0.12","3.33" +"CHEMICAL JOURNAL OF CHINESE UNIVERSITIES-CHINESE","0251-0790","0251-0790","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","1,562","0.7","Q4","0.12","0.00" +"Foundation Review","1944-5660","1944-5679","SOCIAL ISSUES","('ESCI',)","141","0.7","Q3","0.12","36.00" +"Interfacial Phenomena and Heat Transfer","2169-2785","2167-857X","THERMODYNAMICS","('ESCI',)","225","0.7","Q4","0.12","0.00" +"Journal of Advanced Computational Intelligence and Intelligent Informatics","1343-0130","1883-8014","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","526","0.7","Q4","0.12","92.45" +"Journal of the Korean Society of Combustion","1226-0959","2466-2089","ENGINEERING, MECHANICAL","('ESCI',)","75","0.7","Q4","0.12","0.00" +"Malaysian Journal of Soil Science","1394-7990","1394-7990","SOIL SCIENCE","('ESCI',)","76","0.7","Q4","0.12","0.00" +"Nordic Concrete Research","0800-6377","2545-2819","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","162","0.7","Q4","0.12","100.00" +"Nusantara Bioscience","2087-3948","2087-3956","BIOLOGY","('ESCI',)","220","0.7","Q4","0.12","98.97" +"Ocean Yearbook","0191-8575","2211-6001","ENVIRONMENTAL STUDIES","('ESCI',)","180","0.7","Q4","0.12","13.56" +"TransNav-International Journal on Marine Navigation and Safety of Sea Transportation","2083-6473","2083-6481","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","670","0.7","Q4","0.12","94.66" +"AIMS Molecular Science","2372-0301","2372-0301","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","171","0.7","Q4","0.11","100.00" +"Catalysis in Industry","2070-0504","2070-0555","ENGINEERING, CHEMICAL","('ESCI',)","400","0.7","Q4","0.11","0.00" +"Indonesian Journal of Pharmacy","2338-9486","2338-9427","PHARMACOLOGY & PHARMACY","('ESCI',)","249","0.7","Q4","0.11","40.14" +"Journal of Cotton Science","1523-6919","1524-3303","AGRICULTURAL ENGINEERING","('ESCI',)","522","0.7","Q4","0.11","0.00" +"Moscow University Chemistry Bulletin","0027-1314","1935-0260","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","327","0.7","Q4","0.11","0.75" +"Neural Network World","1210-0552","","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('SCIE',)","328","0.7","Q4","0.11","0.00" +"Postepy Psychiatrii i Neurologii","1230-2813","1230-2813","PSYCHIATRY","('ESCI',)","98","0.7","Q4","0.11","100.00" +"Russian Journal of Physical Chemistry A","0036-0244","1531-863X","CHEMISTRY, PHYSICAL","('SCIE',)","3,763","0.7","Q4","0.11","2.70" +"Socialist Studies","1918-2821","1918-2821","POLITICAL SCIENCE","('ESCI',)","45","0.7","Q3","0.11","0.00" +"Theoretical and Applied Mechanics","1450-5584","1450-5584","MECHANICS","('ESCI',)","206","0.7","Q4","0.11","100.00" +"Theoretical and Experimental Chemistry","0040-5760","1573-935X","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","502","0.7","Q4","0.11","0.00" +"THEORETICAL FOUNDATIONS OF CHEMICAL ENGINEERING","0040-5795","1608-3431","ENGINEERING, CHEMICAL","('SCIE',)","1,119","0.7","Q4","0.11","0.00" +"Operations Research and Decisions","2081-8858","2391-6060","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","121","0.7","Q4","0.10","90.32" +"Orbital-The Electronic Journal of Chemistry","1984-6428","1984-6428","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","281","0.7","Q4","0.10","80.80" +"Diabetes Mellitus","2072-0351","2072-0378","ENDOCRINOLOGY & METABOLISM","('ESCI',)","264","0.7","Q4","0.09","91.85" +"HIGH TEMPERATURE MATERIAL PROCESSES","1093-3611","1940-4360","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","179","0.7","Q4","0.09","0.00" +"Imaging","","2732-0960","MEDICINE, GENERAL & INTERNAL","('ESCI',)","61","0.7","Q3","0.09","96.49" +"International Journal of Nanoelectronics and Materials","1985-5761","2232-1535","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","526","0.7","Q4","0.09","0.00" +"Interface-Comunicacao Saude Educacao","1414-3283","1807-5762","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","814","0.7","Q4","0.08","93.28" +"Technology and Innovation","1949-8241","1949-825X","MULTIDISCIPLINARY SCIENCES","('ESCI',)","168","0.7","Q3","0.08","15.00" +"CROATICA CHEMICA ACTA","0011-1643","1334-417X","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","1,361","0.7","Q4","0.06","100.00" +"PSYCHOLOGIST","0952-8229","0952-8229","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","684","0.7","Q4","0.05","0.00" +"BiD-Textos Universitaris de Biblioteconomia i Documentacio","1575-5886","1575-5886","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","81","0.7","Q3","0.03","85.71" +"APERTURE","0003-6420","0003-6420","ART","('AHCI',)","51","0.7","","0.00","0.00" +"Celestinesca","0147-3085","2695-7183","('LITERATURE, ROMANCE', 'MEDIEVAL & RENAISSANCE STUDIES')","('ESCI', 'ESCI')","54","0.6","('N/A', 'N/A')","3.88","100.00" +"AMERICAN JOURNAL OF PHILOLOGY","0002-9475","1086-3168","CLASSICS","('AHCI',)","1,034","0.6","","3.45","0.00" +"Journal of Literary Theory","1862-5290","1862-8990","LITERARY THEORY & CRITICISM","('ESCI',)","118","0.6","","2.62","84.85" +"Shaw-The Journal of Bernard Shaw Studies","0741-5842","1529-1480","('LITERATURE, BRITISH ISLES', 'THEATER')","('AHCI', 'AHCI')","33","0.6","('N/A', 'N/A')","2.55","0.00" +"AMERICAN LITERARY HISTORY","0896-7148","1468-4365","LITERATURE, AMERICAN","('AHCI',)","655","0.6","","2.45","2.19" +"JOURNAL OF SOCIAL HISTORY","0022-4529","1527-1897","HISTORY","('AHCI', 'SSCI')","1,160","0.6","Q1","2.44","10.71" +"Contemporary British History","1361-9462","1743-7997","HISTORY","('AHCI',)","309","0.6","Q1","2.33","52.05" +"JOURNAL OF IMPERIAL AND COMMONWEALTH HISTORY","0308-6534","1743-9329","HISTORY","('AHCI',)","851","0.6","Q1","2.18","34.43" +"Journal of Chinese History","2059-1632","2059-1640","('ASIAN STUDIES', 'HISTORY')","('ESCI', 'ESCI')","90","0.6","('N/A', 'Q1')","1.98","27.12" +"MONIST","0026-9662","2153-3601","PHILOSOPHY","('AHCI',)","1,379","0.6","","1.97","13.73" +"AUSTRALIAN HISTORICAL STUDIES","1031-461X","1940-5049","HISTORY","('AHCI',)","414","0.6","Q1","1.94","13.00" +"Dickens Studies Annual","0084-9812","2167-8510","LITERATURE, BRITISH ISLES","('ESCI',)","96","0.6","","1.92","0.00" +"ENGLISH LITERARY RENAISSANCE","0013-8312","1475-6757","('LITERATURE, BRITISH ISLES', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI', 'AHCI')","382","0.6","('N/A', 'N/A')","1.84","0.00" +"Journal of Legal History","0144-0365","1744-0564","HISTORY","('AHCI',)","185","0.6","Q1","1.82","50.00" +"HAHR-Hispanic American Historical Review","0018-2168","1527-1900","HISTORY","('AHCI', 'SSCI')","871","0.6","Q1","1.79","0.00" +"International Journal of Conservation Science","2067-533X","2067-8223","ART","('ESCI',)","651","0.6","","1.78","22.92" +"HISTORY","0018-2648","1468-229X","HISTORY","('AHCI',)","421","0.6","Q1","1.68","38.14" +"Forum for World Literature Studies","1949-8519","2154-6711","LITERATURE","('ESCI',)","97","0.6","","1.66","0.00" +"VICTORIAN LITERATURE AND CULTURE","1060-1503","1470-1553","LITERATURE","('AHCI',)","376","0.6","","1.63","38.81" +"AGRICULTURAL HISTORY REVIEW","0002-1490","0002-1490","HISTORY","('AHCI',)","259","0.6","Q1","1.62","0.00" +"LATE IMPERIAL CHINA","0884-3236","1086-3257","HISTORY","('AHCI',)","176","0.6","Q1","1.59","4.17" +"JOURNAL OF MODERN ITALIAN STUDIES","1354-571X","1469-9583","HISTORY","('AHCI', 'SSCI')","331","0.6","Q1","1.58","12.04" +"British Journal of Middle Eastern Studies","1353-0194","1469-3542","('AREA STUDIES', 'HISTORY')","('SSCI', 'AHCI')","653","0.6","('Q2', 'Q1')","1.53","22.50" +"Journal of Law and Religion","0748-0814","2163-3088","RELIGION","('ESCI',)","259","0.6","","1.49","54.24" +"Alabe-Revista de Investigacion sobre Lectura y Escritura","2171-9624","2171-9624","LITERATURE","('ESCI',)","87","0.6","","1.46","86.49" +"HISTORICAL RESEARCH","0950-3471","1468-2281","HISTORY","('AHCI',)","496","0.6","Q1","1.46","44.55" +"AMERICAN LITERATURE","0002-9831","1527-2117","LITERATURE, AMERICAN","('AHCI',)","549","0.6","","1.45","1.25" +"Contemporary Buddhism","1463-9947","1476-7953","('PHILOSOPHY', 'RELIGION')","('AHCI', 'AHCI')","366","0.6","('N/A', 'N/A')","1.41","10.26" +"Ibsen Studies","1502-1866","1741-8720","THEATER","('ESCI',)","66","0.6","","1.41","52.38" +"SOCIAL HISTORY OF MEDICINE","0951-631X","1477-4666","('HISTORY', 'HISTORY & PHILOSOPHY OF SCIENCE')","('AHCI, SSCI', 'AHCI, SCIE, SSCI')","766","0.6","('Q1', 'Q2')","1.41","37.58" +"AMERICAS","0003-1615","1533-6247","HISTORY","('AHCI', 'SSCI')","568","0.6","Q1","1.39","33.33" +"International Journal of Taiwan Studies","2468-8797","2468-8800","('AREA STUDIES', 'ASIAN STUDIES')","('ESCI', 'ESCI')","56","0.6","('Q2', 'N/A')","1.38","8.00" +"Journal of Global Slavery","2405-8351","2405-836X","HISTORY","('ESCI',)","57","0.6","Q1","1.37","29.41" +"THEOLOGICAL STUDIES","0040-5639","2169-1304","RELIGION","('AHCI',)","504","0.6","","1.36","4.60" +"History and Anthropology","0275-7206","1477-2612","('ANTHROPOLOGY', 'HISTORY')","('SSCI', 'AHCI, SSCI')","615","0.6","('Q3', 'Q1')","1.34","36.11" +"TULSA STUDIES IN WOMENS LITERATURE","0732-7730","","LITERATURE","('AHCI',)","164","0.6","","1.34","0.00" +"JOURNAL OF BIBLICAL LITERATURE","0021-9231","1934-3876","RELIGION","('AHCI',)","1,321","0.6","","1.33","0.86" +"RUSSIAN REVIEW","0036-0341","1467-9434","HISTORY","('AHCI',)","432","0.6","Q1","1.33","20.19" +"Revista de Historia Economica","0212-6109","2041-3335","('ECONOMICS', 'HISTORY', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI', 'SSCI')","311","0.6","('Q4', 'Q1', 'Q3')","1.30","13.21" +"Indonesian Journal of Islam and Muslim Societies","2089-1490","2406-825X","RELIGION","('ESCI',)","97","0.6","","1.29","89.58" +"Muzeologia a Kulturne Dedicstvo-Museology and Cultural Heritage","1339-2204","2453-9759","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","68","0.6","","1.27","92.86" +"Psychomusicology","0275-3987","2162-1535","('MUSIC', 'PSYCHOLOGY, EXPERIMENTAL')","('ESCI', 'ESCI')","333","0.6","('N/A', 'Q4')","1.27","0.00" +"JOURNAL OF THE HISTORY OF IDEAS","0022-5037","1086-3222","PHILOSOPHY","('AHCI',)","1,578","0.6","","1.23","0.00" +"Small Axe","0799-0537","1534-6714","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","1,034","0.6","","1.22","0.00" +"ETHNOMUSICOLOGY","0014-1836","2156-7417","MUSIC","('AHCI',)","527","0.6","","1.21","0.00" +"South Asia Research","0262-7280","1741-3141","('AREA STUDIES', 'ASIAN STUDIES')","('ESCI', 'ESCI')","287","0.6","('Q2', 'N/A')","1.20","4.69" +"Text and Performance Quarterly","1046-2937","1479-5760","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","356","0.6","","1.19","5.68" +"TOUNG PAO","0082-5433","","ASIAN STUDIES","('AHCI',)","330","0.6","","1.18","6.25" +"Information & Culture","2164-8034","2166-3033","('HISTORY', 'HISTORY OF SOCIAL SCIENCES', 'INFORMATION SCIENCE & LIBRARY SCIENCE')","('AHCI', 'SSCI', 'SSCI')","95","0.6","('Q1', 'Q3', 'Q3')","1.17","0.00" +"International Journal of Cultural Property","0940-7391","1465-7317","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","372","0.6","","1.17","41.79" +"Currents in Biblical Research","1476-993X","1745-5200","RELIGION","('ESCI',)","219","0.6","","1.16","19.23" +"JOURNAL OF SOCIAL WELFARE AND FAMILY LAW","0964-9069","1469-9621","LAW","('ESCI',)","409","0.6","Q2","1.16","54.26" +"ENVIRONMENTAL HISTORY","1084-5453","1930-8892","('ENVIRONMENTAL STUDIES', 'HISTORY')","('SSCI', 'AHCI, SSCI')","737","0.6","('Q4', 'Q1')","1.14","4.04" +"Journal for the Study of Judaism","0047-2212","1570-0631","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","482","0.6","('Q1', 'N/A')","1.12","21.43" +"Philosophies","","2409-9287","('HISTORY & PHILOSOPHY OF SCIENCE', 'PHILOSOPHY')","('ESCI', 'ESCI')","344","0.6","('Q2', 'N/A')","1.12","100.00" +"Legal Issues of Economic Integration","1566-6573","1875-6433","LAW","('ESCI',)","146","0.6","Q2","1.09","0.00" +"JOURNAL OF NEAR EASTERN STUDIES","0022-2968","1545-6978","('ARCHAEOLOGY', 'ASIAN STUDIES')","('AHCI', 'AHCI')","579","0.6","('N/A', 'N/A')","1.07","2.22" +"Palestine Exploration Quarterly","0031-0328","1743-1301","('ARCHAEOLOGY', 'HISTORY')","('AHCI', 'AHCI')","264","0.6","('N/A', 'Q1')","1.07","15.09" +"Philosophical Issues","1533-6077","1758-2237","PHILOSOPHY","('AHCI',)","507","0.6","","1.05","40.91" +"Diplomatica","2589-1766","2589-1774","('HISTORY', 'INTERNATIONAL RELATIONS')","('ESCI', 'ESCI')","52","0.6","('Q1', 'Q3')","1.04","24.44" +"Journal of Music Technology & Education","1752-7066","1752-7074","MUSIC","('ESCI',)","119","0.6","","1.03","0.00" +"Scripta Theologica","0036-9764","2254-6227","RELIGION","('ESCI',)","92","0.6","","1.03","94.12" +"PSYCHOANALYTIC DIALOGUES","1048-1885","1940-9222","PSYCHOLOGY, PSYCHOANALYSIS","('SSCI',)","917","0.6","Q2","1.02","3.05" +"Ratio","0034-0006","1467-9329","PHILOSOPHY","('AHCI',)","591","0.6","","1.00","40.00" +"Studia Logica","0039-3215","1572-8730","('LOGIC', 'MATHEMATICS', 'PHILOSOPHY')","('SCIE', 'SCIE', 'AHCI')","950","0.6","('Q2', 'Q3', 'N/A')","0.95","35.56" +"Journal of Iberian and Latin American Studies","1470-1847","1469-9524","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","89","0.6","","0.94","12.90" +"Journal of Sufi Studies","2210-5948","2210-5956","RELIGION","('ESCI',)","56","0.6","","0.94","6.25" +"Dolomites Research Notes on Approximation","2035-6803","2035-6803","MATHEMATICS","('ESCI',)","126","0.6","Q3","0.91","0.00" +"Comparative Legal History","2049-677X","2049-6788","LAW","('ESCI',)","38","0.6","Q2","0.90","45.00" +"International Journal of Intangible Heritage","1975-3586","1975-4019","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","122","0.6","","0.90","0.00" +"Landscape Architecture Frontiers","2096-336X","2095-5413","ARCHITECTURE","('ESCI',)","210","0.6","","0.90","0.00" +"Praehistorische Zeitschrift","0079-4848","1613-0804","('ANTHROPOLOGY', 'ARCHAEOLOGY')","('SSCI', 'AHCI')","229","0.6","('Q3', 'N/A')","0.90","11.93" +"Computational Methods and Function Theory","1617-9447","2195-3724","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","483","0.6","('Q3', 'Q4')","0.87","25.00" +"GEMA Online Journal of Language Studies","1675-8021","1675-8021","LANGUAGE & LINGUISTICS","('ESCI',)","365","0.6","","0.87","52.49" +"International Journal of Law in Context","1744-5523","1744-5531","LAW","('SSCI',)","426","0.6","Q2","0.86","55.24" +"Journal of Religion in Japan","2211-8330","2211-8349","RELIGION","('ESCI',)","53","0.6","","0.86","16.67" +"Logic and Logical Philosophy","1425-3305","2300-9802","('LOGIC', 'PHILOSOPHY')","('ESCI', 'ESCI')","176","0.6","('Q2', 'N/A')","0.86","100.00" +"Theology and Science","1474-6700","1474-6719","('HISTORY & PHILOSOPHY OF SCIENCE', 'RELIGION')","('AHCI, SCIE', 'AHCI')","234","0.6","('Q2', 'N/A')","0.86","22.22" +"Analytic Philosophy","2153-9596","2153-960X","PHILOSOPHY","('AHCI',)","311","0.6","","0.85","23.53" +"Digest of Middle East Studies","1060-4367","1949-3606","AREA STUDIES","('ESCI',)","162","0.6","Q2","0.85","31.67" +"Empirical Musicology Review","1559-5749","1559-5749","MUSIC","('ESCI',)","170","0.6","","0.84","97.50" +"Arab World English Journal","2229-9327","2229-9327","LANGUAGE & LINGUISTICS","('ESCI',)","851","0.6","","0.83","88.83" +"PHILOSOPHY OF THE SOCIAL SCIENCES","0048-3931","1552-7441","('ETHICS', 'PHILOSOPHY')","('SSCI', 'AHCI')","784","0.6","('Q4', 'N/A')","0.83","20.29" +"Journal of Architecture","1360-2365","1466-4410","ARCHITECTURE","('AHCI',)","501","0.6","","0.82","40.40" +"Journal of Architecture and Urbanism","2029-7955","2029-7947","ARCHITECTURE","('ESCI',)","146","0.6","","0.82","96.36" +"Studies in World Christianity","1354-9901","1750-0230","RELIGION","('AHCI',)","103","0.6","","0.82","5.41" +"AMERICAN BANKRUPTCY LAW JOURNAL","0027-9048","","LAW","('SSCI',)","99","0.6","Q2","0.81","0.00" +"International Review of the Red Cross","1816-3831","1607-5889","LAW","('SSCI',)","954","0.6","Q2","0.80","8.72" +"LOGIC JOURNAL OF THE IGPL","1367-0751","1368-9894","('LOGIC', 'MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","491","0.6","('Q2', 'Q3', 'Q4')","0.79","10.95" +"PHILOSOPHY & SOCIAL CRITICISM","0191-4537","1461-734X","PHILOSOPHY","('AHCI',)","970","0.6","","0.78","28.99" +"Cambridge International Law Journal","2398-9173","2398-9181","LAW","('ESCI',)","153","0.6","Q2","0.77","0.00" +"Celebrity Studies","1939-2397","1939-2400","CULTURAL STUDIES","('AHCI', 'SSCI')","578","0.6","Q3","0.77","25.98" +"Journal of Antitrust Enforcement","2050-0688","2050-0696","LAW","('ESCI',)","161","0.6","Q2","0.76","20.35" +"Opuscula-Annual of the Swedish Institutes at Athens and Rome","2000-0898","2000-0898","ARCHAEOLOGY","('AHCI',)","97","0.6","","0.76","0.00" +"3L-Language Linguistics Literature-The Southeast Asian Journal of English Language Studies","0128-5157","2550-2247","LANGUAGE & LINGUISTICS","('ESCI',)","387","0.6","","0.74","64.48" +"Ecclesiastical Law Journal","0956-618X","1751-8539","RELIGION","('AHCI',)","108","0.6","","0.74","11.54" +"HARVARD JOURNAL OF LAW AND PUBLIC POLICY","0193-4872","0193-4872","LAW","('SSCI',)","443","0.6","Q2","0.74","0.00" +"AUSTRALIAN JOURNAL OF POLITICS AND HISTORY","0004-9522","1467-8497","('HISTORY', 'POLITICAL SCIENCE')","('AHCI, SSCI', 'SSCI')","402","0.6","('Q1', 'Q3')","0.73","40.78" +"MATHEMATICAL PROCEEDINGS OF THE CAMBRIDGE PHILOSOPHICAL SOCIETY","0305-0041","1469-8064","MATHEMATICS","('SCIE',)","2,500","0.6","Q3","0.73","24.48" +"Notre Dame Journal of Formal Logic","0029-4527","1939-0726","('LOGIC', 'MATHEMATICS', 'PHILOSOPHY')","('SCIE', 'SCIE', 'AHCI')","557","0.6","('Q2', 'Q3', 'N/A')","0.73","0.00" +"Australasian Journal of Special and Inclusive Education","2515-0731","2515-074X","EDUCATION, SPECIAL","('ESCI',)","63","0.6","Q4","0.72","33.33" +"ANNALS OF PURE AND APPLIED LOGIC","0168-0072","1873-2461","('LOGIC', 'MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","1,301","0.6","('Q2', 'Q3', 'Q4')","0.71","29.81" +"BUFFALO LAW REVIEW","0023-9356","0023-9356","LAW","('SSCI',)","367","0.6","Q2","0.71","0.00" +"CANADIAN JOURNAL OF MATHEMATICS-JOURNAL CANADIEN DE MATHEMATIQUES","0008-414X","1496-4279","MATHEMATICS","('SCIE',)","2,792","0.6","Q3","0.71","23.66" +"Asian Journal of Law and Society","2052-9015","2052-9023","LAW","('ESCI',)","187","0.6","Q2","0.70","12.68" +"EUROPEAN JOURNAL OF HEALTH LAW","0929-0273","1571-8093","LAW","('ESCI',)","244","0.6","Q2","0.70","35.90" +"Hokkaido Mathematical Journal","0385-4035","","MATHEMATICS","('SCIE',)","408","0.6","Q3","0.70","0.00" +"ACTA MATHEMATICA HUNGARICA","0236-5294","1588-2632","MATHEMATICS","('SCIE',)","1,801","0.6","Q3","0.69","0.00" +"Arqueologia y Territorio Medieval","1134-3184","2386-5423","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","109","0.6","","0.69","100.00" +"Australasian Journal of Logic","1448-5052","1448-5052","LOGIC","('ESCI',)","99","0.6","Q2","0.69","0.00" +"Ecclesiology","1744-1366","1745-5316","RELIGION","('ESCI',)","40","0.6","","0.69","23.26" +"International Organizations Law Review","1572-3739","1572-3747","LAW","('ESCI',)","194","0.6","Q2","0.69","22.92" +"JOURNAL OF THE HISTORY OF THE BEHAVIORAL SCIENCES","0022-5061","1520-6696","HISTORY OF SOCIAL SCIENCES","('SSCI',)","522","0.6","Q3","0.69","27.94" +"FILM QUARTERLY","0015-1386","1533-8630","FILM, RADIO, TELEVISION","('AHCI',)","604","0.6","","0.68","0.00" +"Japan Forum","0955-5803","1469-932X","AREA STUDIES","('ESCI',)","239","0.6","Q2","0.68","22.54" +"JOURNAL OF ALGEBRAIC COMBINATORICS","0925-9899","1572-9192","MATHEMATICS","('SCIE',)","1,145","0.6","Q3","0.68","22.73" +"Punjab University Journal of Mathematics","","1016-2526","MATHEMATICS","('ESCI',)","274","0.6","Q3","0.68","0.00" +"Exceptionality","0936-2835","1532-7035","EDUCATION, SPECIAL","('SSCI',)","454","0.6","Q4","0.67","0.00" +"Fascism","2211-6249","2211-6257","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","106","0.6","","0.67","73.17" +"ZYGON","0591-2385","1467-9744","('RELIGION', 'SOCIAL ISSUES')","('AHCI', 'SSCI')","528","0.6","('N/A', 'Q3')","0.67","30.41" +"Azerbaijan Journal of Mathematics","2218-6816","2218-6816","MATHEMATICS","('ESCI',)","152","0.6","Q3","0.66","0.00" +"Change Over Time-An International Journal of Conservation and the Built Environment","2153-053X","2153-0548","ARCHITECTURE","('AHCI',)","73","0.6","","0.66","0.00" +"INTERNATIONAL JOURNAL OF NAUTICAL ARCHAEOLOGY","1057-2414","1095-9270","ARCHAEOLOGY","('AHCI',)","658","0.6","","0.66","23.81" +"JOURNAL OF EUROPEAN STUDIES","0047-2441","1740-2379","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","200","0.6","","0.66","40.98" +"International Journal of Arts Management","1480-8986","1480-8986","('HUMANITIES, MULTIDISCIPLINARY', 'MANAGEMENT')","('AHCI', 'SSCI')","302","0.6","('N/A', 'Q4')","0.65","0.00" +"Language and Literature","0963-9470","1461-7293","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","405","0.6","('N/A', 'Q3')","0.65","35.94" +"Journal of Law and Medicine","1320-159X","1320-159X","LAW","('ESCI',)","404","0.6","Q2","0.64","0.00" +"JOURNAL OF THE SOCIETY OF ARCHITECTURAL HISTORIANS","0037-9808","2150-5926","ARCHITECTURE","('AHCI',)","454","0.6","","0.64","0.00" +"JOURNAL OF WOMENS HISTORY","1042-7961","1527-2036","('HISTORY', 'WOMENS STUDIES')","('AHCI, SSCI', 'SSCI')","633","0.6","('Q1', 'Q3')","0.64","0.00" +"TalTech Journal of European Studies","2674-4600","2674-4619","('LAW', 'POLITICAL SCIENCE')","('ESCI', 'ESCI')","28","0.6","('Q2', 'Q3')","0.64","100.00" +"Complex Variables and Elliptic Equations","1747-6933","1747-6941","MATHEMATICS","('SCIE',)","1,236","0.6","Q3","0.63","3.74" +"Eurasian Mathematical Journal","2077-9879","2077-9879","MATHEMATICS","('ESCI',)","203","0.6","Q3","0.63","0.00" +"FOLIA LINGUISTICA","0165-4004","1614-7308","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","418","0.6","('N/A', 'Q3')","0.63","26.85" +"JOURNAL OF NUMBER THEORY","0022-314X","1096-1658","MATHEMATICS","('SCIE',)","3,155","0.6","Q3","0.63","18.77" +"Diachronica","0176-4225","1569-9714","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","267","0.6","('N/A', 'Q3')","0.62","19.23" +"Revista Romaneasca Pentru Educatie Multidimensionala","2066-7329","2067-9270","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","462","0.6","Q3","0.62","99.56" +"Beyond Behavior","1074-2956","2163-5323","EDUCATION, SPECIAL","('ESCI',)","175","0.6","Q4","0.61","0.00" +"Korean Journal of International and Comparative Law","2213-4476","2213-4484","LAW","('ESCI',)","33","0.6","Q2","0.61","8.33" +"LIBRARY","0024-2160","1744-8581","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","343","0.6","","0.61","17.54" +"Support for Learning","0268-2141","1467-9604","EDUCATION, SPECIAL","('ESCI',)","425","0.6","Q4","0.61","30.86" +"Teaching Philosophy","0145-5788","2153-6619","PHILOSOPHY","('AHCI',)","165","0.6","","0.61","0.00" +"Applied General Topology","1989-4147","1989-4147","MATHEMATICS","('ESCI',)","197","0.6","Q3","0.60","100.00" +"University of Pennsylvania Journal of International Law","1938-0283","","LAW","('SSCI',)","208","0.6","Q2","0.59","0.00" +"Berichte zur Wissenschaftsgeschichte","0170-6233","1522-2365","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","136","0.6","Q2","0.58","28.77" +"Common Knowledge","0961-754X","1538-4578","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","331","0.6","","0.58","0.00" +"APPLIED CATEGORICAL STRUCTURES","0927-2852","1572-9095","MATHEMATICS","('SCIE',)","485","0.6","Q3","0.57","23.77" +"BULLETIN OF THE AUSTRALIAN MATHEMATICAL SOCIETY","0004-9727","1755-1633","MATHEMATICS","('SCIE',)","1,880","0.6","Q3","0.57","13.49" +"Categories and General Algebraic Structures with Applications","2345-5853","2345-5861","MATHEMATICS","('ESCI',)","57","0.6","Q3","0.57","41.03" +"Electronic Journal of Linear Algebra","1537-9582","1081-3810","MATHEMATICS","('SCIE',)","656","0.6","Q3","0.57","3.52" +"JOURNAL OF CONVEX ANALYSIS","0944-6532","0944-6532","MATHEMATICS","('SCIE',)","843","0.6","Q3","0.57","0.00" +"Journal of Intellectual Property Law & Practice","1747-1532","1747-1540","LAW","('ESCI',)","303","0.6","Q2","0.57","21.05" +"Kyungpook Mathematical Journal","1225-6951","0454-8124","MATHEMATICS","('ESCI',)","539","0.6","Q3","0.57","0.00" +"MATHEMATICAL RESEARCH LETTERS","1073-2780","1945-001X","MATHEMATICS","('SCIE',)","1,912","0.6","Q3","0.57","0.00" +"Quantitative Biology","2095-4689","2095-4697","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('ESCI',)","567","0.6","Q4","0.57","96.59" +"RAMANUJAN JOURNAL","1382-4090","1572-9303","MATHEMATICS","('SCIE',)","1,235","0.6","Q3","0.57","13.32" +"Annual of the British School at Athens","0068-2454","2045-2403","ARCHAEOLOGY","('AHCI',)","329","0.6","","0.56","41.46" +"Arheoloski Vestnik","0570-8966","0570-8966","ARCHAEOLOGY","('AHCI',)","283","0.6","","0.56","98.25" +"Iran-Journal of the British Institute of Persian Studies","0578-6967","2396-9202","('ARCHAEOLOGY', 'ASIAN STUDIES')","('AHCI', 'AHCI')","416","0.6","('N/A', 'N/A')","0.56","21.43" +"QUARTERLY JOURNAL OF MATHEMATICS","0033-5606","1464-3847","MATHEMATICS","('SCIE',)","1,760","0.6","Q3","0.56","15.73" +"Research in Number Theory","2522-0160","2363-9555","MATHEMATICS","('ESCI',)","231","0.6","Q3","0.56","30.77" +"ANNALS OF GLOBAL ANALYSIS AND GEOMETRY","0232-704X","1572-9060","MATHEMATICS","('SCIE',)","838","0.6","Q3","0.55","31.61" +"Global Studies of Childhood","2043-6106","2043-6106","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","370","0.6","Q3","0.55","25.97" +"INTERNATIONAL JOURNAL OF MATHEMATICS","0129-167X","1793-6519","MATHEMATICS","('SCIE',)","1,435","0.6","Q3","0.55","1.19" +"Legal Pluralism and Critical Social Analysis","2770-6869","2770-6877","LAW","('ESCI',)","10","0.6","Q2","0.55","28.13" +"THEORIA","0040-5817","1558-5816","SOCIOLOGY","('ESCI',)","316","0.6","Q4","0.55","92.59" +"ARS Mathematica Contemporanea","1855-3966","1855-3974","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","418","0.6","('Q3', 'Q4')","0.54","76.79" +"Journal of Religion Media and Digital Culture","2588-8099","2165-9214","('COMMUNICATION', 'RELIGION')","('ESCI', 'ESCI')","74","0.6","('Q3', 'N/A')","0.54","13.73" +"AFRICAN ZOOLOGY","1562-7020","2224-073X","ZOOLOGY","('SCIE',)","629","0.6","Q4","0.53","3.28" +"Biolinguistics","1450-3417","1450-3417","LANGUAGE & LINGUISTICS","('ESCI',)","118","0.6","","0.53","80.00" +"Journal of Symplectic Geometry","1527-5256","1540-2347","MATHEMATICS","('SCIE',)","436","0.6","Q3","0.53","0.00" +"Quaestiones Mathematicae","1607-3606","1727-933X","MATHEMATICS","('SCIE',)","912","0.6","Q3","0.53","3.66" +"Review of Cognitive Linguistics","1877-9751","1877-976X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","205","0.6","('N/A', 'Q3')","0.53","2.67" +"ANNALS OF CARNEGIE MUSEUM","0097-4463","1943-6300","('PALEONTOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","475","0.6","('Q4', 'Q4')","0.52","0.00" +"Anthropology of Work Review","0883-024X","1548-1417","ANTHROPOLOGY","('ESCI',)","157","0.6","Q3","0.52","31.03" +"COMMUNICATIONS IN ALGEBRA","0092-7872","1532-4125","MATHEMATICS","('SCIE',)","4,881","0.6","Q3","0.52","5.06" +"Journal for Educational Research Online-JERO","1866-6671","1866-6671","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","269","0.6","Q3","0.52","0.00" +"Journal of Criminal Law","0022-0183","1740-5580","('CRIMINOLOGY & PENOLOGY', 'LAW')","('ESCI', 'ESCI')","225","0.6","('Q4', 'Q2')","0.52","47.89" +"Logical Methods in Computer Science","1860-5974","1860-5974","('COMPUTER SCIENCE, THEORY & METHODS', 'LOGIC')","('SCIE', 'SCIE')","808","0.6","('Q4', 'Q2')","0.52","78.21" +"Southern African Linguistics and Applied Language Studies","1607-3614","1727-9461","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","284","0.6","('N/A', 'Q3')","0.52","9.09" +"Zeitschrift fur Sprachwissenschaft","0721-9067","1613-3706","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","157","0.6","('N/A', 'Q3')","0.52","100.00" +"French Colonial History","1539-3402","1543-7787","HISTORY","('ESCI',)","55","0.6","Q1","0.51","0.00" +"GRAPHS AND COMBINATORICS","0911-0119","1435-5914","MATHEMATICS","('SCIE',)","1,405","0.6","Q3","0.51","10.18" +"Journal of French Language Studies","0959-2695","1474-0079","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","198","0.6","('N/A', 'Q3')","0.51","56.36" +"Open Linguistics","2300-9969","2300-9969","LINGUISTICS","('ESCI',)","250","0.6","Q3","0.51","98.44" +"Algebraic and Geometric Topology","1472-2739","1472-2739","MATHEMATICS","('SCIE',)","1,383","0.6","Q3","0.50","31.62" +"Analysis Mathematica","0133-3852","1588-273X","MATHEMATICS","('SCIE',)","460","0.6","Q3","0.50","0.00" +"Lingue e Linguaggio","1720-9331","1720-9331","LANGUAGE & LINGUISTICS","('ESCI',)","142","0.6","","0.50","0.00" +"MATHEMATICAL NOTES","0001-4346","1573-8876","MATHEMATICS","('SCIE',)","2,444","0.6","Q3","0.50","0.00" +"Ratio Juris","1794-6638","2619-4066","LAW","('ESCI',)","372","0.6","Q2","0.50","34.67" +"Revista Educacion","0379-7082","2215-2644","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","355","0.6","Q3","0.50","97.94" +"Groups Geometry and Dynamics","1661-7207","1661-7215","MATHEMATICS","('SCIE',)","432","0.6","Q3","0.49","100.00" +"History of Education Review","0819-8691","0819-8691","HISTORY OF SOCIAL SCIENCES","('ESCI',)","115","0.6","Q3","0.49","6.67" +"Mir Rossii-Universe of Russia","1811-038X","1811-0398","AREA STUDIES","('ESCI',)","111","0.6","Q2","0.49","100.00" +"New Journal of European Criminal Law","2032-2844","2399-293X","('CRIMINOLOGY & PENOLOGY', 'LAW')","('ESCI', 'ESCI')","139","0.6","('Q4', 'Q2')","0.49","30.12" +"Periodica Mathematica Hungarica","0031-5303","1588-2829","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","616","0.6","('Q3', 'Q4')","0.49","20.73" +"Bulletin of the Korean Mathematical Society","1015-8634","1015-8634","MATHEMATICS","('SCIE',)","1,003","0.6","Q3","0.48","0.00" +"Functions of Language","0929-998X","1569-9765","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","225","0.6","('N/A', 'Q3')","0.48","5.56" +"Interdisciplinary Journal of Problem-Based Learning","1541-5015","1541-5015","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","453","0.6","Q3","0.48","96.67" +"Moscow Mathematical Journal","1609-3321","1609-4514","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","576","0.6","('Q3', 'Q4')","0.48","0.00" +"Written Language and Literacy","1387-6732","1570-6001","LANGUAGE & LINGUISTICS","('ESCI',)","160","0.6","","0.48","0.00" +"ALGEBRA UNIVERSALIS","0002-5240","1420-8911","MATHEMATICS","('SCIE',)","695","0.6","Q3","0.47","20.30" +"AMERICAN JOURNAL OF LEGAL HISTORY","0002-9319","2161-797X","LAW","('ESCI',)","322","0.6","Q2","0.47","12.24" +"Asian Journal of Political Science","0218-5377","1750-7812","POLITICAL SCIENCE","('ESCI',)","239","0.6","Q3","0.47","4.44" +"Chronic Wound Care Management and Research","2324-481X","2324-481X","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","148","0.6","Q4","0.47","100.00" +"JOURNAL OF VALUE INQUIRY","0022-5363","1573-0492","('ETHICS', 'PHILOSOPHY')","('SSCI', 'AHCI')","496","0.6","('Q4', 'N/A')","0.47","33.33" +"MIDDLE EAST JOURNAL","0026-3141","1940-3461","AREA STUDIES","('SSCI',)","939","0.6","Q2","0.47","0.00" +"Stability-International Journal of Security and Development","2165-2627","2165-2627","INTERNATIONAL RELATIONS","('ESCI',)","226","0.6","Q3","0.47","66.67" +"Unterrichtspraxis-Teaching German","0042-062X","1756-1221","LANGUAGE & LINGUISTICS","('ESCI',)","120","0.6","","0.47","19.40" +"URSUS","1537-6176","1938-5439","ZOOLOGY","('SCIE',)","491","0.6","Q4","0.47","0.00" +"Journal of Combinatorial Algebra","2415-6302","2415-6310","MATHEMATICS","('SCIE',)","70","0.6","Q3","0.46","100.00" +"Measurement-Interdisciplinary Research and Perspectives","1536-6367","1536-6359","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","637","0.6","Q3","0.46","0.00" +"Transactions on Combinatorics","2251-8657","2251-8665","MATHEMATICS","('ESCI',)","118","0.6","Q3","0.46","0.00" +"Journal for the Study of Sports and Athletes in Education","1935-7397","1935-7400","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","166","0.6","Q3","0.45","5.00" +"TAIWANESE JOURNAL OF MATHEMATICS","1027-5487","2224-6851","MATHEMATICS","('SCIE',)","1,227","0.6","Q3","0.45","97.35" +"Voprosy Leksikografii-Russian Journal of Lexicography","2227-4200","2311-3758","LANGUAGE & LINGUISTICS","('ESCI',)","51","0.6","","0.45","8.47" +"City & Society","0893-0465","1548-744X","ANTHROPOLOGY","('ESCI',)","577","0.6","Q3","0.44","23.81" +"Critical Education","1920-4175","1920-4175","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","113","0.6","Q3","0.44","0.00" +"JOURNAL OF THEORETICAL POLITICS","0951-6298","1460-3667","POLITICAL SCIENCE","('SSCI',)","743","0.6","Q3","0.44","16.98" +"Recerca-Revista de Pensament & Analisi","1130-6149","2254-4135","PHILOSOPHY","('ESCI',)","126","0.6","","0.44","98.33" +"Rendiconti Lincei-Matematica e Applicazioni","1120-6330","1720-0768","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","356","0.6","('Q3', 'Q4')","0.44","31.78" +"Vestnik Udmurtskogo Universiteta-Matematika Mekhanika Kompyuternye Nauki","1994-9197","2076-5959","MATHEMATICS","('ESCI',)","139","0.6","Q3","0.44","99.19" +"Journal of Eastern Mediterranean Archaeology and Heritage Studies","2166-3548","2166-3556","ARCHAEOLOGY","('ESCI',)","128","0.6","","0.43","4.00" +"Kyushu Journal of Mathematics","1340-6116","1883-2032","MATHEMATICS","('SCIE',)","226","0.6","Q3","0.43","78.72" +"Operators and Matrices","1846-3886","1846-3886","MATHEMATICS","('SCIE',)","454","0.6","Q3","0.43","100.00" +"ORDER-A JOURNAL ON THE THEORY OF ORDERED SETS AND ITS APPLICATIONS","0167-8094","1572-9273","MATHEMATICS","('SCIE',)","488","0.6","Q3","0.43","19.27" +"Policy & Practice-A Development Education Review","1748-135X","2053-4272","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","195","0.6","Q3","0.43","0.00" +"ACTA ZOOLOGICA ACADEMIAE SCIENTIARUM HUNGARICAE","1217-8837","","ZOOLOGY","('SCIE',)","704","0.6","Q4","0.42","98.75" +"ANTHROPOLOGIE","0003-5521","1873-5827","ANTHROPOLOGY","('SSCI',)","743","0.6","Q3","0.42","13.71" +"British Journal for the History of Mathematics","2637-5451","2637-5494","MATHEMATICS","('ESCI',)","21","0.6","Q3","0.42","30.30" +"DISCRETE & COMPUTATIONAL GEOMETRY","0179-5376","1432-0444","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS')","('SCIE', 'SCIE')","2,498","0.6","('Q4', 'Q3')","0.42","34.57" +"European Journal of the History of Economic Thought","0967-2567","1469-5936","('ECONOMICS', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","490","0.6","('Q4', 'Q3')","0.42","14.40" +"French Politics","1476-3419","1476-3427","POLITICAL SCIENCE","('ESCI',)","221","0.6","Q3","0.42","11.29" +"ILLINOIS JOURNAL OF MATHEMATICS","0019-2082","1945-6581","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","1,539","0.6","('Q3', 'Q4')","0.42","0.00" +"Mental Lexicon","1871-1340","1871-1375","LINGUISTICS","('ESCI',)","342","0.6","Q3","0.42","22.73" +"Minimax Theory and its Applications","2199-1413","2199-1421","MATHEMATICS, APPLIED","('ESCI',)","95","0.6","Q4","0.42","0.00" +"ZOOLOGY IN THE MIDDLE EAST","0939-7140","2326-2680","ZOOLOGY","('SCIE',)","596","0.6","Q4","0.42","4.13" +"Discrete Mathematics Algorithms and Applications","1793-8309","1793-8317","MATHEMATICS, APPLIED","('ESCI',)","604","0.6","Q4","0.41","1.05" +"Journal of Computer Science & Technology","1666-6046","1666-6038","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","56","0.6","Q4","0.41","75.56" +"MIDDLE EAST POLICY","1061-1924","1475-4967","('AREA STUDIES', 'INTERNATIONAL RELATIONS')","('SSCI', 'SSCI')","387","0.6","('Q2', 'Q3')","0.41","10.53" +"Revista Espanola de Linguistica Aplicada","0213-2028","2254-6774","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","279","0.6","('N/A', 'Q3')","0.41","1.30" +"TOPOLOGY AND ITS APPLICATIONS","0166-8641","1879-3207","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","3,062","0.6","('Q3', 'Q4')","0.41","11.48" +"Brazilian Journal of Probability and Statistics","0103-0752","0103-0752","STATISTICS & PROBABILITY","('SCIE',)","407","0.6","Q4","0.40","4.03" +"COMMONWEALTH & COMPARATIVE POLITICS","1466-2043","1743-9094","POLITICAL SCIENCE","('ESCI',)","411","0.6","Q3","0.40","26.92" +"DIFFERENTIAL GEOMETRY AND ITS APPLICATIONS","0926-2245","1872-6984","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,126","0.6","('Q3', 'Q4')","0.40","12.89" +"ETHOS","0091-2131","1548-1352","('ANTHROPOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SSCI', 'SSCI')","1,272","0.6","('Q3', 'Q4')","0.40","36.73" +"SOCIETY & ANIMALS","1063-1119","1568-5306","('SOCIOLOGY', 'VETERINARY SCIENCES')","('SSCI', 'SCIE')","804","0.6","('Q4', 'Q3')","0.40","6.96" +"Acta Universitatis Sapientiae-Mathematica","1844-6094","2066-7752","MATHEMATICS","('ESCI',)","137","0.6","Q3","0.39","100.00" +"Creative Nursing","1078-4535","1946-1895","NURSING","('ESCI',)","314","0.6","Q4","0.39","7.63" +"Honam Mathematical Journal","1225-293X","2288-6176","MATHEMATICS","('ESCI',)","236","0.6","Q3","0.39","0.00" +"International Journal of Education through Art","1743-5234","2040-090X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","163","0.6","Q3","0.39","2.94" +"Journal of Contemporary Archaeology","2051-3429","2051-3437","ARCHAEOLOGY","('ESCI',)","135","0.6","","0.39","2.86" +"Sequential Analysis-Design Methods and Applications","0747-4946","1532-4176","STATISTICS & PROBABILITY","('SCIE',)","371","0.6","Q4","0.39","5.06" +"Chilean Journal of Statistics","0718-7912","0718-7920","STATISTICS & PROBABILITY","('ESCI',)","122","0.6","Q4","0.38","0.00" +"Comparative Exercise Physiology","1755-2540","1755-2559","VETERINARY SCIENCES","('ESCI',)","300","0.6","Q3","0.38","5.23" +"Revista de la Union Matematica Argentina","0041-6932","1669-9637","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","234","0.6","('Q3', 'Q4')","0.38","100.00" +"Acta Herpetologica","1827-9635","1827-9643","ZOOLOGY","('SCIE',)","316","0.6","Q4","0.37","100.00" +"Applications of Mathematics","0862-7940","1572-9109","MATHEMATICS, APPLIED","('SCIE',)","490","0.6","Q4","0.37","0.00" +"ICHTHYOLOGICAL RESEARCH","1341-8998","1616-3915","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE', 'SCIE')","840","0.6","('Q4', 'Q4', 'Q4')","0.37","9.02" +"Journal of Applied Analysis","1425-6908","1869-6082","MATHEMATICS, APPLIED","('ESCI',)","170","0.6","Q4","0.37","2.11" +"NATURAL RESOURCES JOURNAL","0028-0739","0028-0739","('ENVIRONMENTAL STUDIES', 'LAW')","('SSCI', 'SSCI')","399","0.6","('Q4', 'Q2')","0.37","0.00" +"Safer Communities","1757-8043","2042-8774","CRIMINOLOGY & PENOLOGY","('ESCI',)","195","0.6","Q4","0.37","4.41" +"JOURNAL OF BAND RESEARCH","0021-9207","","MUSIC","('AHCI',)","33","0.6","","0.36","0.00" +"Media Education-Mediaobrazovanie","1994-4160","1994-4195","COMMUNICATION","('ESCI',)","144","0.6","Q3","0.36","0.00" +"Neonatal Network","0730-0832","1539-2880","NURSING","('ESCI',)","713","0.6","Q4","0.36","2.56" +"Public Law Review","1034-3024","1034-3024","LAW","('ESCI',)","102","0.6","Q2","0.36","0.00" +"THEORETICAL LINGUISTICS","0301-4428","1613-4060","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","436","0.6","('N/A', 'Q3')","0.36","40.00" +"ALEA-Latin American Journal of Probability and Mathematical Statistics","1980-0436","","STATISTICS & PROBABILITY","('SCIE',)","458","0.6","Q4","0.35","0.00" +"COMMUNICATIONS IN STATISTICS-THEORY AND METHODS","0361-0926","1532-415X","STATISTICS & PROBABILITY","('SCIE',)","6,550","0.6","Q4","0.35","3.32" +"CURRENT HERPETOLOGY","1345-5834","1881-1019","ZOOLOGY","('SCIE',)","202","0.6","Q4","0.35","0.00" +"JOURNAL OF EGYPTIAN ARCHAEOLOGY","0307-5133","2514-0582","ARCHAEOLOGY","('AHCI',)","384","0.6","","0.35","21.67" +"Journal of Statistical Theory and Practice","1559-8608","1559-8616","STATISTICS & PROBABILITY","('ESCI',)","519","0.6","Q4","0.35","14.50" +"Miscellanea Geographica","0867-6046","2084-6118","GEOGRAPHY","('ESCI',)","195","0.6","Q3","0.35","90.41" +"Sankhya-Series A-Mathematical Statistics and Probability","0976-836X","0976-8378","STATISTICS & PROBABILITY","('ESCI',)","630","0.6","Q4","0.35","9.22" +"South African Journal of Higher Education","1011-3487","1753-5913","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","859","0.6","Q3","0.35","94.52" +"Thailand Statistician","1685-9057","2351-0676","STATISTICS & PROBABILITY","('ESCI',)","159","0.6","Q4","0.35","0.00" +"American Journal of Play","1938-0399","1938-0402","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","372","0.6","Q3","0.34","0.00" +"Archaeologia Baltica","1392-5520","2351-6534","ARCHAEOLOGY","('ESCI',)","91","0.6","","0.34","100.00" +"California Archaeology","1947-461X","1947-4628","ARCHAEOLOGY","('ESCI',)","96","0.6","","0.34","4.76" +"CUBO-A Mathematical Journal","0716-7776","0719-0646","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","171","0.6","('Q3', 'Q4')","0.34","90.00" +"Electronic Journal of Applied Statistical Analysis","2070-5948","2070-5948","STATISTICS & PROBABILITY","('ESCI',)","295","0.6","Q4","0.34","0.00" +"International Journal of Play","2159-4937","2159-4953","('EDUCATION & EDUCATIONAL RESEARCH', 'PSYCHOLOGY, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","263","0.6","('Q3', 'Q4', 'Q3')","0.34","23.60" +"Journal of Forensic Practice","2050-8794","2050-8808","CRIMINOLOGY & PENOLOGY","('ESCI',)","179","0.6","Q4","0.34","3.16" +"JOURNAL OF SYMBOLIC COMPUTATION","0747-7171","1095-855X","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,087","0.6","('Q4', 'Q4')","0.34","25.36" +"Journal of the Korean Statistical Society","1226-3192","2005-2863","STATISTICS & PROBABILITY","('SCIE',)","496","0.6","Q4","0.34","6.94" +"Latin American and Caribbean Ethnic Studies","1744-2222","1744-2230","ETHNIC STUDIES","('ESCI',)","225","0.6","Q4","0.34","11.69" +"Malaysian Journal of Pathology","0126-8635","0126-8635","PATHOLOGY","('SCIE',)","493","0.6","Q4","0.34","0.00" +"Research and Reports in Neonatology","","1179-9935","PEDIATRICS","('ESCI',)","109","0.6","Q4","0.34","100.00" +"Sankhya-Series B-Applied and Interdisciplinary Statistics","0976-8386","0976-8394","STATISTICS & PROBABILITY","('ESCI',)","372","0.6","Q4","0.34","10.99" +"Acta Dermatovenerologica Alpina Pannonica et Adriatica","1318-4458","1581-2979","DERMATOLOGY","('ESCI',)","471","0.6","Q4","0.33","0.00" +"Dutch Journal of Applied Linguistics","2211-7245","2211-7253","LINGUISTICS","('ESCI',)","72","0.6","Q3","0.33","100.00" +"EARLY MUSIC","0306-1078","1741-7260","MUSIC","('AHCI',)","350","0.6","","0.33","29.41" +"Journal of Patient Safety and Risk Management","2516-0435","2516-0443","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('ESCI', 'ESCI')","162","0.6","('Q4', 'Q4')","0.33","15.22" +"Journal of Vietnamese Studies","1559-372X","1559-3738","AREA STUDIES","('ESCI',)","136","0.6","Q2","0.33","0.00" +"Jurnal Penelitian dan Pembelajaran IPA","2477-1422","2477-2038","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","41","0.6","Q4","0.33","95.83" +"Rhetoric & Public Affairs","1094-8392","1534-5238","COMMUNICATION","('ESCI',)","427","0.6","Q3","0.33","0.00" +"Studies in Art Education","0039-3541","2325-8039","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","359","0.6","Q3","0.33","6.45" +"International Journal of Pervasive Computing and Communications","1742-7371","1742-738X","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","312","0.6","Q4","0.32","0.79" +"Journal of Perinatal Education","1058-1243","1548-8519","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","724","0.6","Q3","0.32","0.00" +"KOME-An International Journal of Pure Communication Inquiry","2063-7330","2063-7330","COMMUNICATION","('ESCI',)","57","0.6","Q3","0.32","96.15" +"Open Access Surgery","","1178-7082","SURGERY","('ESCI',)","58","0.6","Q4","0.32","100.00" +"THEORY OF COMPUTING SYSTEMS","1432-4350","1433-0490","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS')","('SCIE', 'SCIE')","755","0.6","('Q4', 'Q3')","0.32","40.00" +"VETERINARNI MEDICINA","0375-8427","1805-9392","VETERINARY SCIENCES","('SCIE',)","1,733","0.6","Q3","0.32","97.09" +"Zephyrus-Revista de Prehistoria y Arqueologia","0514-7336","2386-3943","ARCHAEOLOGY","('AHCI',)","323","0.6","","0.32","91.23" +"Annals of Combinatorics","0218-0006","0219-3094","MATHEMATICS, APPLIED","('SCIE',)","532","0.6","Q4","0.31","21.88" +"Arqueologia de la Arquitectura","1695-2731","1989-5313","ARCHAEOLOGY","('ESCI',)","116","0.6","","0.31","94.87" +"Dependence Modeling","2300-2298","2300-2298","STATISTICS & PROBABILITY","('ESCI',)","163","0.6","Q4","0.31","100.00" +"Education Policy Analysis Archives","","1068-2341","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","1,425","0.6","Q3","0.31","95.00" +"FUNCTIONAL ANALYSIS AND ITS APPLICATIONS","0016-2663","1573-8485","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","2,154","0.6","('Q3', 'Q4')","0.31","0.00" +"INRAE Productions Animales","","2824-3633","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","235","0.6","('Q4', 'Q3')","0.31","97.18" +"Journal of Addictions Nursing","1088-4602","1548-7148","('NURSING', 'SUBSTANCE ABUSE')","('SCIE, SSCI', 'SCIE, SSCI')","452","0.6","('Q4', 'Q4')","0.31","4.58" +"Journal of Time Series Econometrics","2194-6507","1941-1928","SOCIAL SCIENCES, MATHEMATICAL METHODS","('ESCI',)","73","0.6","Q4","0.31","13.64" +"Religion and Society-Advances in Research","2150-9298","2150-9301","RELIGION","('ESCI',)","185","0.6","","0.31","84.62" +"Romanian Journal of Oral Rehabilitation","","2066-7000","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","441","0.6","Q4","0.31","0.00" +"ACTA VETERINARIA BRNO","0001-7213","1801-7576","VETERINARY SCIENCES","('SCIE',)","1,002","0.6","Q3","0.30","100.00" +"Czech Journal of International Relations","2788-2985","2788-2993","INTERNATIONAL RELATIONS","('ESCI',)","56","0.6","Q3","0.30","72.13" +"European Journal of Pediatric Surgery Reports","2194-7619","2194-7627","SURGERY","('ESCI',)","128","0.6","Q4","0.30","100.00" +"European Review of International Studies","2196-6923","2196-7415","INTERNATIONAL RELATIONS","('ESCI',)","94","0.6","Q3","0.30","13.89" +"INFINITE DIMENSIONAL ANALYSIS QUANTUM PROBABILITY AND RELATED TOPICS","0219-0257","1793-6306","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL', 'QUANTUM SCIENCE & TECHNOLOGY', 'STATISTICS & PROBABILITY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","1,027","0.6","('Q4', 'Q4', 'Q4', 'Q4')","0.30","0.00" +"International Journal of Cognitive Research in Science Engineering and Education-IJCRSEE","2334-847X","2334-8496","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","183","0.6","Q3","0.30","96.75" +"JOURNAL OF DYNAMICAL AND CONTROL SYSTEMS","1079-2724","1573-8698","('AUTOMATION & CONTROL SYSTEMS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","613","0.6","('Q4', 'Q4')","0.30","12.77" +"JOURNAL OF TROPICAL FOREST SCIENCE","0128-1283","2521-9847","FORESTRY","('SCIE',)","917","0.6","Q4","0.30","0.00" +"Partner Abuse","1946-6560","1946-6579","FAMILY STUDIES","('ESCI',)","699","0.6","Q4","0.30","0.00" +"Review of Behavioral Economics","2326-6198","2326-6201","ECONOMICS","('ESCI',)","158","0.6","Q4","0.30","0.00" +"South East European Journal of Economics and Business","1840-118X","2233-1999","ECONOMICS","('ESCI',)","219","0.6","Q4","0.30","100.00" +"SPORTVERLETZUNG-SPORTSCHADEN","0932-0555","1439-1236","('ORTHOPEDICS', 'SPORT SCIENCES')","('SCIE', 'SCIE')","251","0.6","('Q4', 'Q4')","0.30","0.00" +"Austrian Journal of Statistics","1026-597X","1026-597X","STATISTICS & PROBABILITY","('ESCI',)","309","0.6","Q4","0.29","94.40" +"FISH PATHOLOGY","0388-788X","1881-7335","('FISHERIES', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","802","0.6","('Q4', 'Q3')","0.29","0.00" +"Games","","2073-4336","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('ESCI', 'ESCI', 'ESCI')","485","0.6","('Q4', 'Q4', 'Q4')","0.29","98.76" +"Gynecologie Obstetrique Fertilite & Senologie","2468-7197","2468-7189","OBSTETRICS & GYNECOLOGY","('SCIE',)","908","0.6","Q4","0.29","46.55" +"India Quarterly-A Journal of International Affairs","0974-9284","0975-2684","INTERNATIONAL RELATIONS","('ESCI',)","241","0.6","Q3","0.29","3.96" +"International Journal of Happiness and Development","2049-2790","2049-2804","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","114","0.6","Q3","0.29","0.00" +"Journal of Argumentation in Context","2211-4742","2211-4750","COMMUNICATION","('ESCI',)","101","0.6","Q3","0.29","7.32" +"Politologicky Casopis-Czech Journal of Political Science","1211-3247","1805-9503","POLITICAL SCIENCE","('ESCI',)","80","0.6","Q3","0.29","0.00" +"Southern Communication Journal","1041-794X","1930-3203","COMMUNICATION","('ESCI',)","533","0.6","Q3","0.29","0.91" +"Studia Universitatis Vasile Goldis Arad Seria Stiinte Economice","1584-2339","2285-3065","ECONOMICS","('ESCI',)","96","0.6","Q4","0.29","98.36" +"ACTA CHIRURGICA BELGICA","0001-5458","2577-0160","SURGERY","('SCIE',)","1,048","0.6","Q4","0.28","5.06" +"Austrian Journal of Earth Sciences","2072-7151","2072-7151","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","302","0.6","Q4","0.28","100.00" +"Dental Hypotheses","2155-8213","2155-8213","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","170","0.6","Q4","0.28","99.02" +"Forum for Social Economics","0736-0932","1874-6381","ECONOMICS","('ESCI',)","235","0.6","Q4","0.28","11.11" +"International Journal of Surgery Case Reports","2210-2612","2210-2612","SURGERY","('ESCI',)","5,185","0.6","Q4","0.28","96.98" +"International Shipbuilding Progress","0020-868X","1566-2829","ENGINEERING, MARINE","('ESCI',)","463","0.6","Q4","0.28","100.00" +"Journal of Plant Registrations","1936-5209","1940-3496","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","652","0.6","('Q4', 'Q4')","0.28","20.35" +"Malaysian Orthopaedic Journal","1985-2533","2232-111X","ORTHOPEDICS","('ESCI',)","484","0.6","Q4","0.28","95.85" +"Nonlinear Dynamics Psychology and Life Sciences","1090-0578","1573-6652","('PSYCHOLOGY, MATHEMATICAL', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","382","0.6","('Q4', 'Q4')","0.28","0.00" +"NURSE PRACTITIONER","0361-1817","1538-8662","NURSING","('ESCI',)","463","0.6","Q4","0.28","3.78" +"Oral Science International","1348-8643","1881-4204","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","195","0.6","Q4","0.28","10.64" +"Sintagma","0214-9141","2013-6455","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","51","0.6","('N/A', 'Q3')","0.28","59.09" +"Studia Philosophica Kantiana","1338-7758","1338-7758","PHILOSOPHY","('ESCI',)","18","0.6","","0.28","0.00" +"ZEITSCHRIFT FUR KLINISCHE PSYCHOLOGIE UND PSYCHOTHERAPIE","1616-3443","2190-6297","PSYCHOLOGY, CLINICAL","('SSCI',)","529","0.6","Q4","0.28","82.35" +"Arqueologia","0327-5159","1853-8126","ARCHAEOLOGY","('AHCI',)","286","0.6","","0.27","96.00" +"Boletin Medico del Hospital Infantil de Mexico","0539-6115","1665-1146","PEDIATRICS","('ESCI',)","432","0.6","Q4","0.27","98.99" +"EGYPTIAN JOURNAL OF ANAESTHESIA","","1110-1849","ANESTHESIOLOGY","('ESCI',)","472","0.6","Q3","0.27","98.21" +"EUROPEAN JOURNAL OF PHYSICS","0143-0807","1361-6404","('EDUCATION, SCIENTIFIC DISCIPLINES', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","2,656","0.6","('Q4', 'Q4')","0.27","20.66" +"Forestist","2602-4039","2602-4039","FORESTRY","('ESCI',)","90","0.6","Q4","0.27","98.95" +"Journal of Measurements in Engineering","2335-2124","2335-2124","ENGINEERING, MECHANICAL","('ESCI',)","119","0.6","Q4","0.27","100.00" +"Journal of Sports Analytics","2215-020X","2215-0218","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'SPORT SCIENCES')","('ESCI', 'ESCI', 'ESCI')","125","0.6","('Q4', 'Q4', 'Q4')","0.27","98.33" +"Kulturno-Istoricheskaya Psikhologiya-Cultural-Historical Psychology","1816-5435","2224-8935","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","324","0.6","Q4","0.27","100.00" +"Nordic Psychology","1901-2276","1904-0016","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","414","0.6","Q4","0.27","55.29" +"Surgery in Practice and Science","2666-2620","2666-2620","SURGERY","('ESCI',)","99","0.6","Q4","0.27","88.04" +"Educacao & Formacao","","2448-3583","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","97","0.6","Q3","0.26","87.50" +"International Journal of Cuban Studies","1756-3461","1756-347X","AREA STUDIES","('ESCI',)","63","0.6","Q2","0.26","82.50" +"Journal of Cognition and Culture","1567-7095","1568-5373","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","536","0.6","Q4","0.26","8.47" +"Journal of Education-US","0022-0574","2515-5741","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","185","0.6","Q3","0.26","9.60" +"NEMATROPICA","0099-5444","2220-5608","ZOOLOGY","('SCIE',)","430","0.6","Q4","0.26","0.00" +"Orthopadie","2731-7145","2731-7153","ORTHOPEDICS","('SCIE',)","1,371","0.6","Q4","0.26","24.67" +"Polish Journal of Surgery","0032-373X","2299-2847","SURGERY","('ESCI',)","295","0.6","Q4","0.26","0.00" +"Progress in Transplantation","1526-9248","2164-6708","('SURGERY', 'TRANSPLANTATION')","('SCIE', 'SCIE')","843","0.6","('Q4', 'Q4')","0.26","12.59" +"Applications and Applied Mathematics-An International Journal","1932-9466","1932-9466","MATHEMATICS, APPLIED","('ESCI',)","418","0.6","Q4","0.25","0.00" +"Canadian Journal of Addiction","2368-4720","2368-4739","SUBSTANCE ABUSE","('ESCI',)","148","0.6","Q4","0.25","7.35" +"Case Reports in Surgery","2090-6900","2090-6919","SURGERY","('ESCI',)","730","0.6","Q4","0.25","100.00" +"Chirurgie","2731-6971","2731-698X","SURGERY","('SCIE',)","1,310","0.6","Q4","0.25","22.67" +"CINEASTE","0009-7004","0009-7004","FILM, RADIO, TELEVISION","('AHCI',)","135","0.6","","0.25","0.00" +"CRYSTALLOGRAPHY REPORTS","1063-7745","1562-689X","CRYSTALLOGRAPHY","('SCIE',)","2,223","0.6","Q4","0.25","2.62" +"Current Cardiovascular Imaging Reports","1941-9066","1941-9074","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","234","0.6","Q4","0.25","28.57" +"ESAIM-Probability and Statistics","1292-8100","1262-3318","STATISTICS & PROBABILITY","('SCIE',)","360","0.6","Q4","0.25","93.22" +"EUROPEAN JOURNAL OF PLASTIC SURGERY","0930-343X","1435-0130","SURGERY","('ESCI',)","842","0.6","Q4","0.25","16.67" +"Evolutionary and Institutional Economics Review","1349-4961","2188-2096","ECONOMICS","('ESCI',)","161","0.6","Q4","0.25","21.54" +"Indian Journal of Otolaryngology and Head & Neck Surgery","2231-3796","0973-7707","SURGERY","('ESCI',)","2,884","0.6","Q4","0.25","5.28" +"Ingenieria e Investigacion","0120-5609","2248-8723","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","385","0.6","Q3","0.25","97.53" +"Journal of Advanced Oral Research","2320-2068","2320-2076","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","158","0.6","Q4","0.25","1.06" +"Kardiochirurgia i Torakochirurgia Polska-Polish Journal of Thoracic and Cardiovascular Surgery","1731-5530","1897-4252","SURGERY","('ESCI',)","349","0.6","Q4","0.25","98.98" +"Methods and Applications of Analysis","1073-2772","1945-0001","MATHEMATICS, APPLIED","('ESCI',)","390","0.6","Q4","0.25","0.00" +"Movimento","0104-754X","1982-8918","('EDUCATION & EDUCATIONAL RESEARCH', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","545","0.6","('Q3', 'Q3')","0.25","67.98" +"PHYLLOMEDUSA","1519-1397","2316-9079","ZOOLOGY","('SCIE',)","227","0.6","Q4","0.25","97.14" +"RLA-Revista de Linguistica Teorica y Aplicada","0718-4883","0718-4883","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","138","0.6","('N/A', 'Q3')","0.25","0.00" +"Saudi Journal of Ophthalmology","1319-4534","2542-6680","OPHTHALMOLOGY","('ESCI',)","842","0.6","Q4","0.25","13.16" +"Sexual Health & Compulsivity","2692-9953","2692-9996","PSYCHOLOGY, CLINICAL","('ESCI',)","19","0.6","Q4","0.25","8.89" +"Somnologie","1432-9123","1439-054X","CLINICAL NEUROLOGY","('ESCI',)","344","0.6","Q4","0.25","48.96" +"Southeastern Geographer","0038-366X","1549-6929","GEOGRAPHY","('ESCI',)","340","0.6","Q3","0.25","0.00" +"Spal","1133-4525","2255-3924","ARCHAEOLOGY","('ESCI',)","171","0.6","","0.25","98.55" +"Taiwan Journal of TESOL","1814-9448","2076-7617","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","46","0.6","Q3","0.25","0.00" +"Agrivita","0126-0537","0126-0537","AGRONOMY","('ESCI',)","302","0.6","Q4","0.24","95.88" +"Archives of Acoustics","0137-5075","2300-262X","ACOUSTICS","('SCIE',)","586","0.6","Q4","0.24","100.00" +"ATOM INDONESIA","0126-1568","2356-5322","NUCLEAR SCIENCE & TECHNOLOGY","('ESCI',)","137","0.6","Q4","0.24","96.67" +"Australasian Plant Disease Notes","1833-928X","1833-928X","PLANT SCIENCES","('ESCI',)","466","0.6","Q4","0.24","5.66" +"Bulletin of Geography-Physical Geography Series","2080-7686","2300-8490","GEOGRAPHY, PHYSICAL","('ESCI',)","105","0.6","Q4","0.24","96.55" +"European Surgery-Acta Chirurgica Austriaca","1682-8631","1682-4016","SURGERY","('SCIE',)","286","0.6","Q4","0.24","45.83" +"Hydrological Research Letters","1882-3416","1882-3416","WATER RESOURCES","('ESCI',)","234","0.6","Q4","0.24","97.50" +"Interdisciplinary Description of Complex Systems","1334-4684","1334-4676","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","278","0.6","Q3","0.24","87.41" +"International Journal of Decision Support System Technology","1941-6296","1941-630X","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","110","0.6","Q4","0.24","54.22" +"International Journal of Parallel Emergent and Distributed Systems","1744-5760","1744-5779","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","285","0.6","Q4","0.24","7.56" +"International Journal of the Inclusive Museum","1835-2014","1835-2022","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","72","0.6","('Q4', 'Q3')","0.24","22.45" +"ISOKINETICS AND EXERCISE SCIENCE","0959-3020","1878-5913","('ENGINEERING, BIOMEDICAL', 'ORTHOPEDICS', 'SPORT SCIENCES')","('SCIE', 'SCIE', 'SCIE')","570","0.6","('Q4', 'Q4', 'Q4')","0.24","5.60" +"Journal of Animal and Plant Sciences-JAPS","1018-7081","2309-8694","('AGRICULTURE, MULTIDISCIPLINARY', 'VETERINARY SCIENCES')","('SCIE', 'SCIE')","2,331","0.6","('Q3', 'Q3')","0.24","65.09" +"Journal of Media Business Studies","1652-2354","2376-2977","BUSINESS","('ESCI',)","336","0.6","Q4","0.24","20.93" +"MEDICINA DELLO SPORT","0025-7826","1827-1863","('MEDICINE, GENERAL & INTERNAL', 'SPORT SCIENCES')","('SCIE', 'SCIE')","311","0.6","('Q3', 'Q4')","0.24","0.00" +"Plankton & Benthos Research","1880-8247","1882-627X","('MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","327","0.6","('Q4', 'Q4')","0.24","94.95" +"SOCIAL RESEARCH","0037-783X","0037-783X","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","2,434","0.6","Q3","0.24","0.00" +"South Asian Journal of Macroeconomics and Public Finance","2277-9787","2321-0273","ECONOMICS","('ESCI',)","45","0.6","Q4","0.24","3.45" +"Theoretical and Practical Issues of Journalism","2308-6203","2308-6211","COMMUNICATION","('ESCI',)","92","0.6","Q3","0.24","80.92" +"Unfallchirurgie","2731-7021","2731-703X","('EMERGENCY MEDICINE', 'SURGERY')","('SCIE', 'SCIE')","1,396","0.6","('Q4', 'Q4')","0.24","23.53" +"Acta Polytechnica","","1805-2363","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","436","0.6","Q3","0.23","97.74" +"Alcoholism Treatment Quarterly","0734-7324","1544-4538","SUBSTANCE ABUSE","('ESCI',)","471","0.6","Q4","0.23","11.65" +"Atti Accademia Peloritana dei Pericolanti-Classe di Scienze Fisiche Matematiche e Naturali","0365-0359","1825-1242","MULTIDISCIPLINARY SCIENCES","('ESCI',)","448","0.6","Q3","0.23","0.00" +"BRITTONIA","0007-196X","1938-436X","PLANT SCIENCES","('SCIE',)","1,312","0.6","Q4","0.23","4.17" +"CRUSTACEANA","0011-216X","1568-5403","MARINE & FRESHWATER BIOLOGY","('SCIE',)","2,181","0.6","Q4","0.23","3.46" +"DRUGS & THERAPY PERSPECTIVES","1172-0360","1179-1977","PHARMACOLOGY & PHARMACY","('ESCI',)","295","0.6","Q4","0.23","11.73" +"INTERNATIONAL JOURNAL OF GAME THEORY","0020-7276","1432-1270","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","1,314","0.6","('Q4', 'Q4', 'Q4', 'Q4')","0.23","32.06" +"International Journal of Information Systems in the Service Sector","1935-5688","1935-5696","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","95","0.6","Q4","0.23","4.41" +"International Journal of Intelligent Information Technologies","1548-3657","1548-3665","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","104","0.6","Q4","0.23","73.47" +"Journal of Cognitive Psychotherapy","0889-8391","1938-887X","PSYCHOLOGY, CLINICAL","('SSCI',)","1,028","0.6","Q4","0.23","0.00" +"NORWEGIAN JOURNAL OF GEOLOGY","2387-5844","2387-5852","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","975","0.6","Q4","0.23","64.29" +"Pediatric Dental Journal","0917-2394","1880-3997","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","167","0.6","Q4","0.23","12.90" +"Revista Iberoamericana de Diagnostico y Evaluacion-e Avaliacao Psicologica","2183-6051","2183-6051","PSYCHOLOGY, CLINICAL","('SSCI',)","415","0.6","Q4","0.23","0.00" +"Turkish Journal of Anaesthesiology and Reanimation","","2667-6370","ANESTHESIOLOGY","('ESCI',)","581","0.6","Q3","0.23","78.99" +"World Journal of Acupuncture-Moxibustion","1003-5257","1972-019X","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","263","0.6","Q4","0.23","2.53" +"Applied Economics Journal","2586-9124","2586-9132","ECONOMICS","('ESCI',)","45","0.6","Q4","0.22","0.00" +"Brazilian Journal of Pharmaceutical Sciences","1984-8250","2175-9790","PHARMACOLOGY & PHARMACY","('SCIE',)","2,115","0.6","Q4","0.22","91.63" +"Case Reports in Obstetrics and Gynecology","2090-6684","2090-6692","OBSTETRICS & GYNECOLOGY","('ESCI',)","703","0.6","Q4","0.22","100.00" +"Check List","1809-127X","1809-127X","('BIODIVERSITY CONSERVATION', 'ZOOLOGY')","('ESCI', 'ESCI')","1,209","0.6","('Q4', 'Q4')","0.22","95.93" +"DESIDOC Journal of Library & Information Technology","0974-0643","0976-4658","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","359","0.6","Q3","0.22","42.68" +"DIAGNOSTICA","0012-1924","2190-622X","PSYCHOLOGY, CLINICAL","('SSCI',)","1,229","0.6","Q4","0.22","68.25" +"Fruhe Bildung","2191-9186","2191-9194","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","120","0.6","Q3","0.22","64.29" +"Future Neurology","1479-6708","1748-6971","CLINICAL NEUROLOGY","('ESCI',)","419","0.6","Q4","0.22","100.00" +"International Journal of Digital Multimedia Broadcasting","1687-7578","1687-7586","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","75","0.6","Q4","0.22","100.00" +"JOURNAL OF POST KEYNESIAN ECONOMICS","0160-3477","1557-7821","ECONOMICS","('SSCI',)","1,060","0.6","Q4","0.22","11.36" +"NEUROCASE","1355-4794","1465-3656","('CLINICAL NEUROLOGY', 'PSYCHIATRY', 'PSYCHOLOGY')","('SCIE', 'SCIE', 'SCIE')","1,003","0.6","('Q4', 'Q4', 'Q4')","0.22","10.87" +"NUCLEAR MEDICINE REVIEW","1506-9680","1644-4345","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","233","0.6","Q4","0.22","100.00" +"REVISTA ARVORE","0100-6762","1806-9088","FORESTRY","('SCIE',)","1,059","0.6","Q4","0.22","95.19" +"Science of Gymnastics Journal","1855-7171","1855-7171","SPORT SCIENCES","('ESCI',)","197","0.6","Q4","0.22","10.64" +"TAPPI JOURNAL","0734-1415","","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","933","0.6","Q4","0.22","0.00" +"Uniciencia","1011-0275","2215-3470","MULTIDISCIPLINARY SCIENCES","('ESCI',)","131","0.6","Q3","0.22","100.00" +"Bioagro","1316-3361","2521-9693","AGRONOMY","('SCIE',)","173","0.6","Q4","0.21","86.42" +"Communications in Information and Systems","1526-7555","2163-4548","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","346","0.6","Q4","0.21","0.00" +"COMPARATIVE SOCIOLOGY","1569-1322","1569-1330","SOCIOLOGY","('ESCI',)","597","0.6","Q4","0.21","16.47" +"EURE-REVISTA LATINOAMERICANA DE ESTUDIOS URBANO REGIONALES","0250-7161","0717-6236","URBAN STUDIES","('SSCI',)","860","0.6","Q4","0.21","90.68" +"Innere Medizin","2731-7080","2731-7099","MEDICINE, GENERAL & INTERNAL","('SCIE',)","549","0.6","Q3","0.21","17.77" +"Insight Turkey","1302-177X","1302-177X","POLITICAL SCIENCE","('ESCI',)","360","0.6","Q3","0.21","1.02" +"International Journal of Built Environment and Sustainability","1511-1369","2289-8948","URBAN STUDIES","('ESCI',)","213","0.6","Q4","0.21","98.85" +"INTERNATIONAL JOURNAL OF SPORT PSYCHOLOGY","0047-0767","","('HOSPITALITY, LEISURE, SPORT & TOURISM', 'PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY', 'SPORT SCIENCES')","('SSCI', 'SCIE', 'SSCI', 'SCIE')","970","0.6","('Q4', 'Q4', 'Q4', 'Q4')","0.21","0.00" +"JOURNAL OF AVIAN MEDICINE AND SURGERY","1082-6742","1938-2871","VETERINARY SCIENCES","('SCIE',)","699","0.6","Q3","0.21","0.00" +"Journal of Endometriosis and Pelvic Pain Disorders","2284-0265","2284-0273","OBSTETRICS & GYNECOLOGY","('ESCI',)","261","0.6","Q4","0.21","10.98" +"Journal of Radiation Protection and Research","2508-1888","2466-2461","('NUCLEAR SCIENCE & TECHNOLOGY', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING')","('ESCI', 'ESCI')","150","0.6","('Q4', 'Q4')","0.21","100.00" +"Journal of Research in Pharmacy","2630-6344","2630-6344","PHARMACOLOGY & PHARMACY","('ESCI',)","480","0.6","Q4","0.21","89.06" +"Journal of Scientometric Research","2321-6654","2320-0057","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","241","0.6","Q3","0.21","95.93" +"Pertanika Journal of Social Science and Humanities","0128-7702","2231-8534","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","854","0.6","Q3","0.21","97.46" +"Revista CIDOB d Afers Internationals","1133-6595","2013-035X","INTERNATIONAL RELATIONS","('ESCI',)","220","0.6","Q3","0.21","98.75" +"Wound Practice and Research","1837-6304","2202-9729","DERMATOLOGY","('ESCI',)","296","0.6","Q4","0.21","35.62" +"Acta Scientiarum Polonorum-Hortorum Cultus","1644-0692","2545-1405","HORTICULTURE","('SCIE',)","966","0.6","Q4","0.20","96.59" +"AgroLife Scientific Journal","2285-5718","2286-0126","AGRONOMY","('ESCI',)","362","0.6","Q4","0.20","15.56" +"Baltic Journal of Road and Bridge Engineering","1822-427X","1822-4288","ENGINEERING, CIVIL","('SCIE',)","422","0.6","Q4","0.20","97.35" +"BLUMEA","0006-5196","0373-4293","PLANT SCIENCES","('SCIE',)","621","0.6","Q4","0.20","100.00" +"BMJ Case Reports","","1757-790X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","12,176","0.6","Q3","0.20","8.38" +"CAHIERS DE BIOLOGIE MARINE","0007-9723","2262-3094","MARINE & FRESHWATER BIOLOGY","('SCIE',)","934","0.6","Q4","0.20","0.00" +"Case Reports in Neurology","","1662-680X","CLINICAL NEUROLOGY","('ESCI',)","455","0.6","Q4","0.20","99.13" +"Contemporary Mathematics","2705-1064","2705-1056","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","764","0.6","('Q3', 'Q4')","0.20","18.88" +"Current Optics and Photonics","2508-7266","2508-7274","OPTICS","('SCIE',)","259","0.6","Q4","0.20","0.00" +"Eurasian Journal of Mathematical and Computer Applications","2306-6172","2308-9822","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","102","0.6","Q4","0.20","0.00" +"Exploration Geophysics","0812-3985","1834-7533","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","1,229","0.6","Q4","0.20","4.51" +"Hacquetia","1581-4661","1854-9829","('ECOLOGY', 'PLANT SCIENCES')","('ESCI', 'ESCI')","169","0.6","('Q4', 'Q4')","0.20","98.36" +"IEICE TRANSACTIONS ON INFORMATION AND SYSTEMS","0916-8532","1745-1361","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING')","('SCIE', 'SCIE')","2,079","0.6","('Q4', 'Q4')","0.20","99.59" +"IIUM Engineering Journal","1511-788X","2289-7860","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","252","0.6","Q3","0.20","98.72" +"International Journal of Education and Information Technologies","2074-1316","2074-1316","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","85","0.6","Q3","0.20","98.51" +"International Journal of Financial Engineering","2424-7863","2424-7944","BUSINESS, FINANCE","('ESCI',)","217","0.6","Q4","0.20","0.60" +"INTERNATIONAL JOURNAL OF FOUNDATIONS OF COMPUTER SCIENCE","0129-0541","1793-6373","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","596","0.6","Q4","0.20","1.42" +"Journal of Asia-Pacific Biodiversity","","2287-9544","BIODIVERSITY CONSERVATION","('ESCI',)","611","0.6","Q4","0.20","93.64" +"Journal of Substance Use","1465-9891","1475-9942","SUBSTANCE ABUSE","('SSCI',)","1,223","0.6","Q4","0.20","8.23" +"Journal of Tekirdag Agriculture Faculty-Tekirdag Ziraat Fakultesi Dergisi","1302-7050","2146-5894","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","337","0.6","Q3","0.20","0.51" +"Jurnal Teknologi-Sciences & Engineering","0127-9696","2180-3722","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","2,048","0.6","Q3","0.20","95.17" +"Monatsschrift fur Kriminologie und Strafrechtsreform","0026-9301","2366-1968","CRIMINOLOGY & PENOLOGY","('SSCI',)","101","0.6","Q4","0.20","14.47" +"Pratiques Psychologiques","1269-1763","","('PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('SCIE', 'SSCI')","154","0.6","('Q4', 'Q4')","0.20","38.78" +"Review of Regional Studies","0048-749X","1553-0892","ECONOMICS","('ESCI',)","318","0.6","Q4","0.20","0.00" +"ANNALES BOTANICI FENNICI","0003-3847","1797-2442","PLANT SCIENCES","('SCIE',)","854","0.6","Q4","0.19","0.00" +"Annals of African Medicine","1596-3519","0975-5764","MEDICINE, GENERAL & INTERNAL","('ESCI',)","889","0.6","Q3","0.19","0.00" +"APPLICABLE ALGEBRA IN ENGINEERING COMMUNICATION AND COMPUTING","0938-1279","1432-0622","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","555","0.6","('Q4', 'Q4', 'Q4')","0.19","14.37" +"ARCHIVOS ESPANOLES DE UROLOGIA","0004-0614","1576-8260","UROLOGY & NEPHROLOGY","('SCIE',)","603","0.6","Q4","0.19","0.00" +"Argumenta Oeconomica","1233-5835","2720-5088","ECONOMICS","('SSCI',)","119","0.6","Q4","0.19","100.00" +"Clinical Case Reports","2050-0904","2050-0904","MEDICINE, GENERAL & INTERNAL","('ESCI',)","3,577","0.6","Q3","0.19","72.55" +"Ecological Questions","1644-7298","2083-5469","ECOLOGY","('ESCI',)","215","0.6","Q4","0.19","80.00" +"Electronic Journal of Research in Educational Psychology","1699-5880","1696-2095","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","568","0.6","Q4","0.19","0.00" +"HERZOGIA","0018-0971","","PLANT SCIENCES","('SCIE',)","350","0.6","Q4","0.19","0.00" +"INDIAN JOURNAL OF FIBRE & TEXTILE RESEARCH","0971-0426","0975-1025","MATERIALS SCIENCE, TEXTILES","('SCIE',)","983","0.6","Q4","0.19","49.39" +"International Journal of Information Technology and Web Engineering","1554-1045","1554-1053","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","102","0.6","Q4","0.19","76.81" +"International Journal of Knowledge and Systems Science","1947-8208","1947-8216","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('ESCI',)","124","0.6","Q4","0.19","56.41" +"Investigaciones Regionales-Journal of Regional Research","1695-7253","2340-2717","ECONOMICS","('ESCI',)","301","0.6","Q4","0.19","85.00" +"Journal of Mens Health","1875-6867","1875-6859","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","462","0.6","Q4","0.19","77.59" +"Journal of Neurological Surgery Reports","2193-6358","2193-6366","CLINICAL NEUROLOGY","('ESCI',)","219","0.6","Q4","0.19","100.00" +"Mehran University Research Journal of Engineering and Technology","0254-7821","2413-7219","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","342","0.6","Q3","0.19","96.17" +"NEW ZEALAND ENTOMOLOGIST","0077-9962","1179-3430","ENTOMOLOGY","('SCIE',)","187","0.6","Q4","0.19","11.76" +"Prague Economic Papers","1210-0455","2336-730X","ECONOMICS","('SSCI',)","290","0.6","Q4","0.19","100.00" +"SAGE Open Medical Case Reports","2050-313X","2050-313X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","831","0.6","Q3","0.19","92.65" +"Salud Colectiva","1669-2381","1851-8265","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","351","0.6","Q4","0.19","95.70" +"SERIALS REVIEW","0098-7913","1879-095X","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","256","0.6","Q3","0.19","4.00" +"Urbani Izziv-Urban Challenge","0353-6483","1855-8399","URBAN STUDIES","('ESCI',)","188","0.6","Q4","0.19","89.19" +"AATCC Journal of Research","2472-3444","2330-5517","MATERIALS SCIENCE, TEXTILES","('SCIE',)","237","0.6","Q4","0.18","1.18" +"Acoustical Science and Technology","1346-3969","1347-5177","ACOUSTICS","('ESCI',)","534","0.6","Q4","0.18","92.86" +"Ad Hoc & Sensor Wireless Networks","1551-9899","1552-0633","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","207","0.6","('Q4', 'Q4')","0.18","0.00" +"Arid Ecosystems","2079-0961","2079-0988","ECOLOGY","('ESCI',)","313","0.6","Q4","0.18","0.00" +"Bangladesh Journal of Plant Taxonomy","1028-2092","2224-7297","PLANT SCIENCES","('SCIE',)","235","0.6","Q4","0.18","98.80" +"CERAMICS-SILIKATY","0862-5468","1804-5847","MATERIALS SCIENCE, CERAMICS","('SCIE',)","875","0.6","Q4","0.18","95.88" +"ELECTROMAGNETICS","0272-6343","1532-527X","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","501","0.6","Q4","0.18","1.42" +"International Journal of Grid and High Performance Computing","1938-0259","1938-0267","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","86","0.6","Q4","0.18","31.75" +"Journal of Applied Nonlinear Dynamics","2164-6457","2164-6473","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'PHYSICS, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","184","0.6","('Q3', 'Q4', 'Q4')","0.18","0.00" +"Journal of Cardiovascular Emergencies","2457-5518","2457-550X","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'EMERGENCY MEDICINE')","('ESCI', 'ESCI')","42","0.6","('Q4', 'Q4')","0.18","100.00" +"Journal of Communications Software and Systems","1845-6421","1846-6079","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI')","133","0.6","('Q4', 'Q4')","0.18","100.00" +"Journal of International Studies-JIS","1823-691X","2289-666X","INTERNATIONAL RELATIONS","('ESCI',)","89","0.6","Q3","0.18","85.00" +"Journal of Radiology Case Reports","1943-0922","1943-0922","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","509","0.6","Q4","0.18","89.41" +"PROGRESS IN PEDIATRIC CARDIOLOGY","1058-9813","1558-1519","PEDIATRICS","('ESCI',)","447","0.6","Q4","0.18","5.91" +"Real Estate Management and Valuation","1733-2478","2300-5289","('BUSINESS, FINANCE', 'MANAGEMENT')","('ESCI', 'ESCI')","175","0.6","('Q4', 'Q4')","0.18","100.00" +"Salus Journal","2202-5677","2202-5677","CRIMINOLOGY & PENOLOGY","('ESCI',)","33","0.6","Q4","0.18","0.00" +"Sciences in Cold and Arid Regions","1674-3822","1674-3822","GEOGRAPHY, PHYSICAL","('ESCI',)","345","0.6","Q4","0.18","0.00" +"Studia Quaternaria","1641-5558","2300-0384","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","113","0.6","Q4","0.18","0.00" +"Tekstil ve Konfeksiyon","1300-3356","1300-3356","MATERIALS SCIENCE, TEXTILES","('SCIE',)","398","0.6","Q4","0.18","0.00" +"TROPICAL JOURNAL OF PHARMACEUTICAL RESEARCH","1596-5996","","PHARMACOLOGY & PHARMACY","('SCIE',)","3,359","0.6","Q4","0.18","91.94" +"Vietnam Journal of Computer Science","2196-8888","2196-8896","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'COMPUTER SCIENCE, THEORY & METHODS')","('ESCI', 'ESCI', 'ESCI')","165","0.6","('Q4', 'Q4', 'Q4')","0.18","91.11" +"Cadernos Brasileiros de Terapia Ocupacional-Brazilian Journal of Occupational Therapy","2526-8910","2526-8910","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","365","0.6","Q4","0.17","93.07" +"CALIFORNIA FISH AND GAME","0008-1078","2331-0405","('FISHERIES', 'ZOOLOGY')","('SCIE', 'SCIE')","361","0.6","('Q4', 'Q4')","0.17","93.10" +"CANADIAN JOURNAL OF HOSPITAL PHARMACY","0008-4123","0008-4123","PHARMACOLOGY & PHARMACY","('ESCI',)","736","0.6","Q4","0.17","0.00" +"CANDOLLEA","0373-2967","","PLANT SCIENCES","('SCIE',)","294","0.6","Q4","0.17","1.67" +"CIS Iron and Steel Review","2072-0815","2414-1089","METALLURGY & METALLURGICAL ENGINEERING","('ESCI',)","105","0.6","Q4","0.17","0.00" +"Collection and Curation","2514-9326","2514-9326","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","51","0.6","Q3","0.17","15.91" +"College & Undergraduate Libraries","1069-1316","1545-2530","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","211","0.6","Q3","0.17","1.79" +"COSMIC RESEARCH","0010-9525","1608-3075","('ASTRONOMY & ASTROPHYSICS', 'ENGINEERING, AEROSPACE')","('SCIE', 'SCIE')","561","0.6","('Q4', 'Q4')","0.17","6.77" +"CYTOLOGIA","0011-4545","0011-4545","('CELL BIOLOGY', 'GENETICS & HEREDITY')","('SCIE', 'SCIE')","916","0.6","('Q4', 'Q4')","0.17","60.57" +"European Journal of Mental Health","1788-4934","1788-7119","PSYCHOLOGY, CLINICAL","('ESCI',)","108","0.6","Q4","0.17","96.43" +"Geofizicheskiy Zhurnal-Geophysical Journal","0203-3100","2524-1052","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","322","0.6","Q4","0.17","99.47" +"INDIAN JOURNAL OF PURE & APPLIED PHYSICS","0019-5596","0975-1041","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","1,372","0.6","Q4","0.17","37.67" +"INTERNATIONAL JOURNAL OF SOFTWARE ENGINEERING AND KNOWLEDGE ENGINEERING","0218-1940","1793-6403","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","525","0.6","('Q4', 'Q4', 'Q4')","0.17","2.14" +"International Research in Early Childhood Education","1838-0689","1838-0689","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","84","0.6","Q3","0.17","0.00" +"Investigacion Economica","0185-1667","","ECONOMICS","('SSCI',)","216","0.6","Q4","0.17","100.00" +"Journal of Arthropod-Borne Diseases","2322-1984","2322-2271","('PARASITOLOGY', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('SCIE', 'SCIE')","449","0.6","('Q4', 'Q4')","0.17","53.57" +"Journal of Food and Nutrition Research","1336-8672","1338-4260","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","535","0.6","Q4","0.17","0.00" +"JOURNAL OF INFRARED AND MILLIMETER WAVES","1001-9014","","OPTICS","('SCIE',)","617","0.6","Q4","0.17","0.00" +"Journal of Public Health in Africa","2038-9922","2038-9930","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","411","0.6","Q4","0.17","95.49" +"JOURNAL OF THE AMERICAN LEATHER CHEMISTS ASSOCIATION","0002-9726","","('CHEMISTRY, APPLIED', 'MATERIALS SCIENCE, TEXTILES')","('SCIE', 'SCIE')","596","0.6","('Q4', 'Q4')","0.17","0.00" +"JOURNAL OF THE JAPAN PETROLEUM INSTITUTE","1346-8804","1349-273X","('ENERGY & FUELS', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE')","528","0.6","('Q4', 'Q4')","0.17","98.00" +"KNOWLEDGE ORGANIZATION","0943-7444","","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","435","0.6","Q3","0.17","0.00" +"Liberabit-Revista de Psicologia","1729-4827","2223-7666","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","235","0.6","Q4","0.17","97.44" +"LIBRARY RESOURCES & TECHNICAL SERVICES","0024-2527","2159-9610","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","121","0.6","Q3","0.17","0.00" +"MM Science Journal","1803-1269","1805-0476","ENGINEERING, MECHANICAL","('ESCI',)","478","0.6","Q4","0.17","92.24" +"Molbank","","1422-8599","CHEMISTRY, ORGANIC","('ESCI',)","339","0.6","Q4","0.17","98.94" +"NEUROPHYSIOLOGY","0090-2977","1573-9007","('NEUROSCIENCES', 'PHYSIOLOGY')","('SCIE', 'SCIE')","304","0.6","('Q4', 'Q4')","0.17","0.00" +"PERTANIKA JOURNAL OF TROPICAL AGRICULTURAL SCIENCE","1511-3701","2231-8542","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","482","0.6","Q3","0.17","98.46" +"Pharmacognosy Magazine","0973-1296","0976-4062","CHEMISTRY, MEDICINAL","('SCIE',)","2,672","0.6","Q4","0.17","29.67" +"Prace Komisji Geografii Przemyslu Polskiego Towarzystwa Geograficznego-Studies of the Industrial Geography Commission of the Polish Geographical Society","2080-1653","2449-903X","GEOGRAPHY","('ESCI',)","208","0.6","Q3","0.17","95.20" +"REVISTA DE METALURGIA","0034-8570","1988-4222","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","286","0.6","Q4","0.17","95.59" +"SOLAR SYSTEM RESEARCH","0038-0946","1608-3423","ASTRONOMY & ASTROPHYSICS","('SCIE',)","784","0.6","Q4","0.17","4.71" +"TEM Journal-Technology Education Management Informatics","2217-8309","2217-8333","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","819","0.6","Q4","0.17","94.70" +"AGRONOMIA MESOAMERICANA","","2215-3608","AGRONOMY","('ESCI',)","415","0.6","Q4","0.16","96.68" +"Bulletin of the Tomsk Polytechnic University-Geo Assets Engineering","2500-1019","2413-1830","ENGINEERING, GEOLOGICAL","('ESCI',)","632","0.6","Q4","0.16","82.20" +"CANADIAN JOURNAL OF INFORMATION AND LIBRARY SCIENCE-REVUE CANADIENNE DES SCIENCES DE L INFORMATION ET DE BIBLIOTHECONOMIE","1195-096X","1920-7239","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","112","0.6","Q3","0.16","50.00" +"DOKLADY PHYSICS","1028-3358","1562-6903","('MECHANICS', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","747","0.6","('Q4', 'Q4')","0.16","1.38" +"FORTSCHRITTE DER NEUROLOGIE PSYCHIATRIE","0720-4299","1439-3522","('CLINICAL NEUROLOGY', 'PSYCHIATRY')","('SCIE', 'SCIE')","609","0.6","('Q4', 'Q4')","0.16","6.58" +"Health Scope","2251-8959","2251-9513","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","399","0.6","Q4","0.16","97.32" +"INFORMACIJE MIDEM-JOURNAL OF MICROELECTRONICS ELECTRONIC COMPONENTS AND MATERIALS","0352-9045","2232-6979","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","165","0.6","('Q4', 'Q4')","0.16","98.48" +"International Journal of Business Analytics","2334-4547","2334-4555","BUSINESS","('ESCI',)","89","0.6","Q4","0.16","64.91" +"Journal of Investing","1068-0896","2168-8613","BUSINESS, FINANCE","('ESCI',)","493","0.6","Q4","0.16","0.00" +"Journal of Rural and Community Development","1712-8277","1712-8277","DEVELOPMENT STUDIES","('ESCI',)","306","0.6","Q4","0.16","0.00" +"Jurnal Kejuruteraan","0128-0198","2289-7526","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","523","0.6","Q3","0.16","91.32" +"METALURGIJA","0543-5846","1334-2576","METALLURGY & METALLURGICAL ENGINEERING","('ESCI',)","844","0.6","Q4","0.16","0.00" +"Multiagent and Grid Systems","1574-1702","1875-9076","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","107","0.6","Q4","0.16","0.00" +"Politica y Sociedad","1130-8001","1988-3129","POLITICAL SCIENCE","('ESCI',)","497","0.6","Q3","0.16","96.35" +"Revista Brasileira de Pesquisa em Turismo","","1982-6125","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","145","0.6","Q4","0.16","91.15" +"Revista de Pedagogia Universitaria y Didactica del Derecho","0719-5885","0719-5885","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","90","0.6","Q3","0.16","87.78" +"Russian Journal of Non-Ferrous Metals","1067-8212","1934-970X","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","661","0.6","Q4","0.16","0.00" +"Sigma Journal of Engineering and Natural Sciences-Sigma Muhendislik ve Fen Bilimleri Dergisi","1304-7205","1304-7191","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","511","0.6","Q3","0.16","84.38" +"SOUTHEASTERN NATURALIST","1528-7092","1938-5412","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","1,054","0.6","('Q4', 'Q4')","0.16","0.00" +"Ter es Tarsadalom","2062-9923","2062-9923","GEOGRAPHY","('ESCI',)","224","0.6","Q3","0.16","96.81" +"Theory of Computing","1557-2862","1557-2862","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","225","0.6","Q4","0.16","78.05" +"Acta Photonica Sinica","1004-4213","1004-4213","OPTICS","('ESCI',)","1,113","0.6","Q4","0.15","0.00" +"Annals of Vascular Diseases","1881-641X","1881-6428","PERIPHERAL VASCULAR DISEASE","('ESCI',)","719","0.6","Q4","0.15","100.00" +"APPLIED ECOLOGY AND ENVIRONMENTAL RESEARCH","1589-1623","1785-0037","('ECOLOGY', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE')","3,332","0.6","('Q4', 'Q4')","0.15","99.36" +"Asia Pacific Scholar","2424-9335","2424-9270","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","85","0.6","Q4","0.15","99.06" +"AUTOMATION AND REMOTE CONTROL","0005-1179","1608-3032","('AUTOMATION & CONTROL SYSTEMS', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","1,686","0.6","('Q4', 'Q4')","0.15","25.65" +"Boletin de la Sociedad Argentina de Botanica","1851-2372","1851-2372","PLANT SCIENCES","('SCIE',)","448","0.6","Q4","0.15","97.44" +"Bulletin of the Lebedev Physics Institute","1068-3356","1934-838X","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","427","0.6","Q4","0.15","0.44" +"Case Reports in Cardiology","2090-6404","2090-6412","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","469","0.6","Q4","0.15","100.00" +"Case Reports in Oncological Medicine","2090-6706","2090-6714","ONCOLOGY","('ESCI',)","492","0.6","Q4","0.15","97.96" +"Civil and Environmental Engineering Reports","2080-5187","2450-8594","ENGINEERING, CIVIL","('ESCI',)","278","0.6","Q4","0.15","99.40" +"Comunicacion y Hombre","1885-365X","1885-9542","COMMUNICATION","('ESCI',)","71","0.6","Q3","0.15","82.00" +"Economics Ecology Socium","2616-7107","2786-8958","('BUSINESS', 'ECONOMICS')","('ESCI', 'ESCI')","52","0.6","('Q4', 'Q4')","0.15","97.26" +"FinanzArchiv-European Journal of Public Finance","0015-2218","1614-0974","('BUSINESS, FINANCE', 'ECONOMICS')","('SSCI', 'SSCI')","244","0.6","('Q4', 'Q4')","0.15","2.70" +"Ingenieria del Agua","1134-2196","1886-4996","ENGINEERING, CIVIL","('ESCI',)","100","0.6","Q4","0.15","84.75" +"INTERNATIONAL JOURNAL OF VEHICLE DESIGN","0143-3369","1741-5314","('ENGINEERING, MECHANICAL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","875","0.6","('Q4', 'Q4')","0.15","38.76" +"JOURNAL OF EVOLUTIONARY BIOCHEMISTRY AND PHYSIOLOGY","0022-0930","1608-3202","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'EVOLUTIONARY BIOLOGY', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","559","0.6","('Q4', 'Q4', 'Q4')","0.15","1.43" +"Journal of Hematopathology","1868-9256","1865-5785","('HEMATOLOGY', 'PATHOLOGY')","('SCIE', 'SCIE')","159","0.6","('Q4', 'Q4')","0.15","17.17" +"JOURNAL OF HISTOTECHNOLOGY","0147-8885","2046-0236","CELL BIOLOGY","('SCIE',)","281","0.6","Q4","0.15","12.07" +"Journal of Microbiology Biotechnology and Food Sciences","1338-5178","1338-5178","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","1,521","0.6","Q4","0.15","73.14" +"Journal of Theoretical and Applied Mechanics","1429-2955","1429-2955","MECHANICS","('SCIE',)","847","0.6","Q4","0.15","98.82" +"Mechanika","1392-1207","2029-6983","MECHANICS","('SCIE',)","555","0.6","Q4","0.15","97.80" +"PAN-PACIFIC ENTOMOLOGIST","0031-0603","2162-0237","ENTOMOLOGY","('SCIE',)","520","0.6","Q4","0.15","0.00" +"Parasitologists United Journal","1687-7942","2090-2646","PARASITOLOGY","('ESCI',)","102","0.6","Q4","0.15","97.85" +"PHYSICS ESSAYS","0836-1398","2371-2236","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","208","0.6","Q4","0.15","0.00" +"PROGRESS IN COMPUTATIONAL FLUID DYNAMICS","1468-4349","1741-5233","('MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE')","615","0.6","('Q4', 'Q4')","0.15","1.15" +"Revista Finanzas y Politica Economica","2248-6046","2011-7663","ECONOMICS","('ESCI',)","78","0.6","Q4","0.15","100.00" +"REVISTA MEXICANA DE CIENCIAS GEOLOGICAS","1026-8774","2007-2902","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","625","0.6","Q4","0.15","66.67" +"RUSSIAN JOURNAL OF GENETICS","1022-7954","1608-3369","GENETICS & HEREDITY","('SCIE',)","1,772","0.6","Q4","0.15","0.42" +"Trauma-England","1460-4086","1477-0350","EMERGENCY MEDICINE","('ESCI',)","364","0.6","Q4","0.15","12.75" +"Ukrainian Journal of Physics","2071-0186","2071-0194","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","626","0.6","Q4","0.15","0.00" +"World Journal of Nuclear Medicine","1450-1147","1607-3312","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","396","0.6","Q4","0.15","97.81" +"ACG Case Reports Journal","","2326-3253","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","738","0.6","Q4","0.14","98.96" +"ACTA SCIENTIARUM-TECHNOLOGY","1806-2563","1807-8664","MULTIDISCIPLINARY SCIENCES","('SCIE',)","518","0.6","Q3","0.14","96.09" +"Acta Structilia","1023-0564","2415-0487","MANAGEMENT","('ESCI',)","103","0.6","Q4","0.14","70.73" +"Advances in Geodesy and Geoinformation","2720-7242","2720-7242","REMOTE SENSING","('ESCI',)","15","0.6","Q4","0.14","100.00" +"Anuario de Psicologia","0066-5126","1988-5253","('PSYCHOLOGY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","218","0.6","('Q4', 'Q4')","0.14","0.00" +"APPLIED COMPUTATIONAL ELECTROMAGNETICS SOCIETY JOURNAL","1054-4887","1943-5711","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","873","0.6","('Q4', 'Q4')","0.14","1.58" +"Archives of Foundry Engineering","1897-3310","2299-2944","METALLURGY & METALLURGICAL ENGINEERING","('ESCI',)","667","0.6","Q4","0.14","98.98" +"BIOMEDICAL ENGINEERING-APPLICATIONS BASIS COMMUNICATIONS","1016-2372","1793-7132","ENGINEERING, BIOMEDICAL","('ESCI',)","382","0.6","Q4","0.14","0.66" +"Biomedical Research and Therapy","2198-4093","2198-4093","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","421","0.6","Q4","0.14","94.05" +"Case Reports in Gastrointestinal Medicine","2090-6528","2090-6536","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","393","0.6","Q4","0.14","99.08" +"Communitas","1023-0556","2415-0525","COMMUNICATION","('ESCI',)","59","0.6","Q3","0.14","27.78" +"Current Traditional Medicine","2215-0838","2215-0846","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","164","0.6","Q4","0.14","0.56" +"Empiria","1139-5737","2174-0682","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","215","0.6","Q3","0.14","24.32" +"Enfoque UTE","1390-9363","1390-6542","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","125","0.6","Q3","0.14","98.61" +"Facta Universitatis-Series Electronics and Energetics","0353-3670","2217-5997","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","196","0.6","Q4","0.14","99.17" +"International Journal of Applied Metaheuristic Computing","1947-8283","1947-8291","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","132","0.6","Q4","0.14","63.92" +"International Journal of Management and Economics","2299-9701","2543-5361","ECONOMICS","('ESCI',)","305","0.6","Q4","0.14","100.00" +"Journal of Astronomy and Space Sciences","2093-5587","2093-1409","ASTRONOMY & ASTROPHYSICS","('ESCI',)","207","0.6","Q4","0.14","100.00" +"Journal of the ASEAN Federation of Endocrine Societies","0857-1074","2308-118X","ENDOCRINOLOGY & METABOLISM","('ESCI',)","191","0.6","Q4","0.14","85.31" +"Kvasny Prumysl","2571-3868","2570-8619","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","119","0.6","Q4","0.14","100.00" +"LHB-Hydroscience Journal","","2767-8490","WATER RESOURCES","('SCIE',)","33","0.6","Q4","0.14","100.00" +"Materials Performance and Characterization","2379-1365","2165-3992","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","462","0.6","Q4","0.14","0.00" +"Mechanics of Solids","0025-6544","1934-7936","MECHANICS","('SCIE',)","935","0.6","Q4","0.14","2.00" +"MEDICINA-BUENOS AIRES","0025-7680","1669-9106","MEDICINE, GENERAL & INTERNAL","('SCIE',)","882","0.6","Q3","0.14","0.00" +"Pertanika Journal of Science and Technology","0128-7680","0128-7680","MULTIDISCIPLINARY SCIENCES","('ESCI',)","790","0.6","Q3","0.14","99.00" +"PHYSICS OF PARTICLES AND NUCLEI","1063-7796","1531-8559","PHYSICS, PARTICLES & FIELDS","('SCIE',)","731","0.6","Q4","0.14","2.69" +"Revista Argentina de Historiografia Linguistica","1852-1495","1852-1495","LANGUAGE & LINGUISTICS","('ESCI',)","24","0.6","","0.14","0.00" +"SAE International Journal of Materials and Manufacturing","1946-3979","1946-3987","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","492","0.6","Q4","0.14","0.00" +"SPIXIANA","0341-8391","","ZOOLOGY","('SCIE',)","311","0.6","Q4","0.14","0.00" +"Thalassemia Reports","2039-4357","2039-4365","HEMATOLOGY","('ESCI',)","43","0.6","Q4","0.14","100.00" +"ACM SIGecom Exchanges","1551-9031","1551-9031","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","107","0.6","Q4","0.13","0.00" +"ACTA MEDICA OKAYAMA","0386-300X","0386-300X","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","994","0.6","Q4","0.13","0.00" +"AUTOMATIC CONTROL AND COMPUTER SCIENCES","0146-4116","1558-108X","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","474","0.6","Q4","0.13","0.00" +"Bioscience Journal","1981-3163","1981-3163","('AGRICULTURE, MULTIDISCIPLINARY', 'AGRONOMY', 'BIOLOGY')","('SCIE', 'SCIE', 'SCIE')","999","0.6","('Q3', 'Q4', 'Q4')","0.13","98.10" +"International Journal of Oil Gas and Coal Technology","1753-3309","1753-3317","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE', 'SCIE')","512","0.6","('Q4', 'Q4', 'Q4')","0.13","0.00" +"International Journal of Software Innovation","2166-7160","2166-7179","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","129","0.6","Q4","0.13","20.91" +"Journal of Fisheries","2311-729X","2311-3111","FISHERIES","('ESCI',)","213","0.6","Q4","0.13","48.61" +"Journal of Futures Studies","1027-6084","1027-6084","REGIONAL & URBAN PLANNING","('ESCI',)","364","0.6","Q4","0.13","0.00" +"JOURNAL OF OPTOELECTRONICS AND ADVANCED MATERIALS","1454-4164","1841-7132","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'OPTICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","1,565","0.6","('Q4', 'Q4', 'Q4')","0.13","0.00" +"Kardiologie","2731-7129","2731-7137","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","172","0.6","Q4","0.13","9.23" +"Korean Journal of Gastroenterology","1598-9992","2233-6869","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","725","0.6","Q4","0.13","98.76" +"LASERS IN ENGINEERING","0898-1507","1029-029X","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'OPTICS')","('SCIE', 'SCIE')","303","0.6","('Q4', 'Q4')","0.13","0.00" +"Ledger","","2379-5980","ECONOMICS","('ESCI',)","136","0.6","Q4","0.13","86.67" +"METAL SCIENCE AND HEAT TREATMENT","0026-0673","1573-8973","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","1,440","0.6","Q4","0.13","0.00" +"NEUROENDOCRINOLOGY LETTERS","0172-780X","2354-4716","('ENDOCRINOLOGY & METABOLISM', 'NEUROSCIENCES')","('SCIE', 'SCIE')","1,806","0.6","('Q4', 'Q4')","0.13","0.00" +"South Asian Journal of Cancer","2278-330X","2278-4306","ONCOLOGY","('ESCI',)","645","0.6","Q4","0.13","98.65" +"Anales de Documentacion","1575-2437","1697-7904","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","68","0.6","Q3","0.12","84.62" +"ASTROPHYSICS","0571-7256","1573-8191","ASTRONOMY & ASTROPHYSICS","('SCIE',)","408","0.6","Q4","0.12","0.00" +"BIOLOGY AND ENVIRONMENT-PROCEEDINGS OF THE ROYAL IRISH ACADEMY","0791-7945","2009-003X","ENVIRONMENTAL SCIENCES","('SCIE',)","278","0.6","Q4","0.12","31.43" +"Biznes Informatika-Business Informatics","1998-0663","1998-0663","BUSINESS","('ESCI',)","78","0.6","Q4","0.12","100.00" +"Brewing Science","1866-5195","1613-2041","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","232","0.6","Q4","0.12","0.00" +"CHEMISTRY AND TECHNOLOGY OF FUELS AND OILS","0009-3092","1573-8310","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE', 'SCIE')","666","0.6","('Q4', 'Q4', 'Q4')","0.12","0.00" +"China Petroleum Processing & Petrochemical Technology","1008-6234","1008-6234","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE', 'SCIE')","252","0.6","('Q4', 'Q4', 'Q4')","0.12","0.00" +"CRITIQUE","0011-1600","1968-3901","LITERARY REVIEWS","('AHCI',)","251","0.6","","0.12","0.00" +"DISSENT","0012-3846","1946-0910","('POLITICAL SCIENCE', 'SOCIAL ISSUES')","('SSCI', 'SSCI')","435","0.6","('Q3', 'Q3')","0.12","0.00" +"FERROELECTRICS","0015-0193","1563-5112","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE')","5,425","0.6","('Q4', 'Q4')","0.12","0.60" +"GLASS AND CERAMICS","0361-7610","1573-8515","MATERIALS SCIENCE, CERAMICS","('SCIE',)","873","0.6","Q4","0.12","0.00" +"IEICE TRANSACTIONS ON ELECTRONICS","0916-8524","1745-1353","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","913","0.6","Q4","0.12","0.00" +"International Journal of Cognitive Informatics and Natural Intelligence","1557-3958","1557-3966","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","133","0.6","Q4","0.12","100.00" +"International Journal of Digital Crime and Forensics","1941-6210","1941-6229","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","141","0.6","Q4","0.12","97.33" +"International Journal of Modelling Identification and Control","1746-6172","1746-6180","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","515","0.6","Q4","0.12","0.00" +"Journal of Endocrinology Metabolism and Diabetes of South Africa","1608-9677","2220-1009","ENDOCRINOLOGY & METABOLISM","('ESCI',)","129","0.6","Q4","0.12","96.36" +"JOURNAL OF ENVIRONMENTAL BIOLOGY","0254-8704","2394-0379","ENVIRONMENTAL SCIENCES","('ESCI',)","2,553","0.6","Q4","0.12","0.00" +"JOURNAL OF IMAGING SCIENCE AND TECHNOLOGY","1062-3701","1943-3522","IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY","('SCIE',)","573","0.6","Q4","0.12","5.32" +"LOW TEMPERATURE PHYSICS","1063-777X","1090-6517","PHYSICS, APPLIED","('SCIE',)","1,964","0.6","Q4","0.12","0.65" +"MATERIALE PLASTICE","0025-5289","2668-8220","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","678","0.6","Q4","0.12","82.05" +"Materiali in Tehnologije","1580-2949","1580-3414","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","918","0.6","('Q4', 'Q4')","0.12","96.44" +"OBETS-Revista de Ciencias Sociales","1989-1385","1989-1385","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","117","0.6","Q3","0.12","100.00" +"SAE International Journal of Commercial Vehicles","1946-391X","1946-3928","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","317","0.6","Q4","0.12","0.00" +"Slovak Journal of Civil Engineering","1210-3896","1338-3973","ENGINEERING, CIVIL","('ESCI',)","191","0.6","Q4","0.12","100.00" +"SOLVENT EXTRACTION RESEARCH AND DEVELOPMENT-JAPAN","1341-7215","1341-7215","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","186","0.6","('Q4', 'Q4')","0.12","34.88" +"Turkish Journal of Biochemistry-Turk Biyokimya Dergisi","0250-4685","1303-829X","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","595","0.6","Q4","0.12","98.04" +"ANNALES DE CHIMIE-SCIENCE DES MATERIAUX","0151-9107","1958-5934","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","593","0.6","Q4","0.11","20.28" +"Asian Journal of Transfusion Science","0973-6247","1998-3565","HEMATOLOGY","('ESCI',)","495","0.6","Q4","0.11","82.18" +"Chiang Mai Journal of Science","0125-2526","0125-2526","MULTIDISCIPLINARY SCIENCES","('SCIE',)","1,040","0.6","Q3","0.11","1.63" +"DEUTSCHE MEDIZINISCHE WOCHENSCHRIFT","0012-0472","1439-4413","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,729","0.6","Q3","0.11","8.39" +"European Journal of Environmental Sciences","1805-0174","2336-1964","ENVIRONMENTAL SCIENCES","('ESCI',)","132","0.6","Q4","0.11","100.00" +"Indian Journal of Surgical Oncology","0975-7651","0976-6952","ONCOLOGY","('ESCI',)","999","0.6","Q4","0.11","3.27" +"Industrial Engineering and Management Systems","1598-7248","2234-6473","ENGINEERING, INDUSTRIAL","('ESCI',)","365","0.6","Q4","0.11","0.00" +"INMATEH-Agricultural Engineering","2068-4215","2068-2239","AGRICULTURAL ENGINEERING","('ESCI',)","444","0.6","Q4","0.11","92.41" +"International Journal of Biometrics","1755-8301","1755-831X","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","173","0.6","Q4","0.11","0.00" +"Izvestiya Vysshikh Uchebnykh Zavedenii Khimiya i Khimicheskaya Tekhnologiya","0579-2991","2500-3070","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","621","0.6","Q4","0.11","0.00" +"Journal of Endocrinology and Metabolism","1923-2861","1923-287X","ENDOCRINOLOGY & METABOLISM","('ESCI',)","168","0.6","Q4","0.11","97.14" +"Journal of Energy in Southern Africa","1021-447X","2413-3051","ENERGY & FUELS","('SCIE',)","367","0.6","Q4","0.11","70.83" +"Journal of Nanoelectronics and Optoelectronics","1555-130X","1555-1318","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","881","0.6","('Q4', 'Q4', 'Q4')","0.11","0.00" +"JOURNAL OF THE CHEMICAL SOCIETY OF PAKISTAN","0253-5106","0253-5106","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","940","0.6","Q4","0.11","0.00" +"M S-MEDECINE SCIENCES","0767-0974","1958-5381","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","960","0.6","Q4","0.11","70.28" +"Psychologica","0871-4657","1647-8606","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","107","0.6","Q4","0.11","95.65" +"RARE METAL MATERIALS AND ENGINEERING","1002-185X","1875-5372","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'METALLURGY & METALLURGICAL ENGINEERING')","('SCIE', 'SCIE')","4,314","0.6","('Q4', 'Q4')","0.11","0.00" +"Revista de Nutricao-Brazilian Journal of Nutrition","1415-5273","1678-9865","NUTRITION & DIETETICS","('SCIE',)","796","0.6","Q4","0.11","79.25" +"Revista Investigaciones Altoandinas-Journal of High Andean Research","2306-8582","2313-2957","MULTIDISCIPLINARY SCIENCES","('ESCI',)","93","0.6","Q3","0.11","95.71" +"RUSSIAN JOURNAL OF APPLIED CHEMISTRY","1070-4272","1608-3296","CHEMISTRY, APPLIED","('SCIE',)","2,658","0.6","Q4","0.11","0.00" +"Schools-Studies in Education","1550-1175","2153-0327","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","93","0.6","Q3","0.11","0.00" +"SEMICONDUCTORS","1063-7826","1090-6479","PHYSICS, CONDENSED MATTER","('SCIE',)","2,164","0.6","Q4","0.11","0.00" +"Town and Regional Planning","1012-280X","2415-0495","REGIONAL & URBAN PLANNING","('ESCI',)","73","0.6","Q4","0.11","58.54" +"Acta Dermatovenerologica Croatica","1330-027X","1847-6538","DERMATOLOGY","('SCIE',)","516","0.6","Q4","0.10","0.00" +"European Journal of Inflammation","1721-727X","2058-7392","IMMUNOLOGY","('SCIE',)","410","0.6","Q4","0.10","93.46" +"EVOLUTION PSYCHIATRIQUE","0014-3855","1769-6674","PSYCHIATRY","('SSCI',)","211","0.6","Q4","0.10","41.40" +"Gaceta Medica de Mexico","0016-3813","0016-3813","MEDICINE, GENERAL & INTERNAL","('SCIE',)","763","0.6","Q3","0.10","95.65" +"Intelligent Decision Technologies-Netherlands","1872-4981","1875-8843","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","278","0.6","Q4","0.10","2.06" +"International Journal of Knowledge-Based and Intelligent Engineering Systems","1327-2314","1875-8827","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","205","0.6","Q4","0.10","2.11" +"JOURNAL OF CHEMICAL ENGINEERING OF JAPAN","0021-9592","1881-1299","ENGINEERING, CHEMICAL","('SCIE',)","2,184","0.6","Q4","0.10","35.20" +"JOURNAL OF ENGINEERING PHYSICS AND THERMOPHYSICS","1062-0125","1573-871X","THERMODYNAMICS","('ESCI',)","1,272","0.6","Q4","0.10","0.18" +"Journal of Magnetics","1226-1750","2233-6656","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'PHYSICS, APPLIED', 'PHYSICS, CONDENSED MATTER')","('SCIE', 'SCIE', 'SCIE')","458","0.6","('Q4', 'Q4', 'Q4')","0.10","0.00" +"Kemija u Industriji-Journal of Chemists and Chemical Engineers","0022-9830","1334-9090","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","227","0.6","Q4","0.10","80.29" +"MHSalud-Revista en Ciencias del Movimiento Humano y la Salud","1659-097X","1659-097X","SPORT SCIENCES","('ESCI',)","56","0.6","Q4","0.10","95.38" +"New Materials Compounds and Applications","2521-7194","2523-4773","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","51","0.6","('Q4', 'Q4')","0.10","0.00" +"Rivista Italiana delle Sostanze Grasse","0035-6808","","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","163","0.6","Q4","0.10","0.00" +"Advances in Radio Science","1684-9965","1684-9973","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","300","0.6","Q4","0.09","100.00" +"African Journal of Business Ethics","1817-7417","0976-3600","BUSINESS","('ESCI',)","66","0.6","Q4","0.09","75.00" +"AGROCHIMICA","0002-1857","","('CHEMISTRY, APPLIED', 'SOIL SCIENCE')","('SCIE', 'SCIE')","270","0.6","('Q4', 'Q4')","0.09","0.00" +"Biochemistry Moscow-Supplement Series B-Biomedical Chemistry","1990-7508","1990-7516","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","195","0.6","Q4","0.09","2.13" +"Bulletin of the University of Karaganda-Chemistry","2518-718X","2663-4872","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","115","0.6","Q4","0.09","0.00" +"Future of Food-Journal on Food Agriculture and Society","2197-411X","2197-411X","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","140","0.6","Q4","0.09","0.00" +"Granja-Revista de Ciencias de la Vida","1390-3799","1390-8596","ENVIRONMENTAL SCIENCES","('ESCI',)","108","0.6","Q4","0.09","98.33" +"International Journal of Sustainable Construction Engineering and Technology","2180-3242","2180-3242","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","368","0.6","Q4","0.09","88.80" +"Journal of Digital Forensics Security and Law","1558-7215","1558-7223","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","128","0.6","Q4","0.09","0.00" +"Journal of Mental Health and Human Behaviour","0971-8990","2543-1897","PSYCHIATRY","('ESCI',)","81","0.6","Q4","0.09","48.53" +"Journal of the Australasian Tax Teachers Association","1832-911X","1832-911X","ECONOMICS","('ESCI',)","36","0.6","Q4","0.09","0.00" +"Materials Physics and Mechanics","1605-2730","1605-8119","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","502","0.6","Q4","0.09","0.00" +"Recent Advances in Electrical & Electronic Engineering","2352-0965","2352-0973","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","184","0.6","Q4","0.09","1.84" +"Advances in Gerontology","2079-0570","2079-0589","GERIATRICS & GERONTOLOGY","('ESCI',)","264","0.6","Q4","0.08","2.33" +"Cailiao Gongcheng-Journal of Materials Engineering","1001-4381","1001-4381","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","605","0.6","Q4","0.08","0.00" +"Indian Journal of Sexually Transmitted Diseases and AIDS","2589-0557","2589-0565","INFECTIOUS DISEASES","('ESCI',)","395","0.6","Q4","0.08","0.00" +"International Journal of Services Technology and Management","1460-6720","1741-525X","MANAGEMENT","('ESCI',)","198","0.6","Q4","0.08","0.00" +"Science and Innovation","2409-9066","2413-4996","MULTIDISCIPLINARY SCIENCES","('ESCI',)","162","0.6","Q3","0.08","39.52" +"Space Science and Technology-Kosmicna Nauka i Tehnologia","1561-8889","2518-1459","ASTRONOMY & ASTROPHYSICS","('ESCI',)","139","0.6","Q4","0.08","0.00" +"GENETICS AND MOLECULAR RESEARCH","","1676-5680","GENETICS & HEREDITY","('ESCI',)","5,689","0.6","Q4","0.07","0.00" +"Electronic Journal of the Faculty of Civil Engineering Osijek-e-GFOS","","1847-8948","ENGINEERING, CIVIL","('ESCI',)","43","0.6","Q4","0.06","100.00" +"Journal of the Korean Electrochemical Society","1229-1935","1229-1935","ELECTROCHEMISTRY","('ESCI',)","74","0.6","Q4","0.06","0.00" +"Revista de Gestao e Projetos","2236-0972","2236-0972","BUSINESS","('ESCI',)","123","0.6","Q4","0.06","97.33" +"Ambitos-Revista de Estudios de Ciencias Sociales y Humanidades","1575-2100","1575-2100","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","104","0.6","","0.05","0.00" +"Annual Review of CyberTherapy and Telemedicine","1554-8716","2352-927X","COMPUTER SCIENCE, CYBERNETICS","('ESCI',)","236","0.6","Q4","0.05","0.00" +"Encontros Bibli-Revista Eletronica de Biblioteconomia e Ciencia da Informacao","","1518-2924","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","166","0.6","Q3","0.05","93.28" +"Farmaceuticos Comunitarios","1885-8619","2173-9218","HEALTH POLICY & SERVICES","('ESCI',)","67","0.6","Q4","0.05","90.00" +"CHEMICKE LISTY","0009-2770","1213-7103","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","436","0.6","Q4","0.04","0.00" +"Noema-Rivista Online di Filosofia","2239-5474","2239-5474","PHILOSOPHY","('ESCI',)","22","0.6","","0.03","3.13" +"Global Media Journal-Canadian Edition","1918-5901","1918-5901","COMMUNICATION","('ESCI',)","197","0.6","Q3","0.02","0.00" +"Neizvestnyi Dostoevskii-The Unknown Dostoevsky","","2409-5788","LITERATURE, SLAVIC","('ESCI',)","108","0.5","","6.50","85.26" +"JOURNAL OF AMERICAN FOLKLORE","0021-8715","1535-1882","FOLKLORE","('AHCI',)","861","0.5","","4.50","0.00" +"Drama Therapy Review","2054-7668","2054-7676","THEATER","('ESCI',)","91","0.5","","3.16","2.13" +"NARRATIVE","1063-3685","1538-974X","LITERATURE","('AHCI',)","560","0.5","","2.79","0.00" +"CounterText-A Journal for the Study of the Post-Literary","2056-4406","2056-4414","LITERARY THEORY & CRITICISM","('ESCI',)","33","0.5","","2.69","1.82" +"Cambridge Classical Journal","1750-2705","2047-993X","CLASSICS","('AHCI',)","126","0.5","","2.64","50.00" +"Journal of the Economic and Social History of the Orient","0022-4995","1568-5209","HISTORY","('AHCI', 'SSCI')","674","0.5","Q1","1.98","32.91" +"STYLE","0039-4238","2374-6629","('LANGUAGE & LINGUISTICS', 'LITERARY THEORY & CRITICISM', 'LITERATURE')","('AHCI', 'AHCI', 'AHCI')","470","0.5","('N/A', 'N/A', 'N/A')","1.95","0.00" +"MFS-Modern Fiction Studies","0026-7724","1080-658X","LITERATURE","('AHCI',)","538","0.5","","1.92","0.00" +"COLLEGE COMPOSITION AND COMMUNICATION","0010-096X","1939-9006","LITERATURE","('AHCI',)","829","0.5","","1.89","0.00" +"Review of Faith & International Affairs","1557-0274","1931-7743","RELIGION","('AHCI',)","388","0.5","","1.88","29.23" +"CHAUCER REVIEW","0009-2002","1528-4204","('LITERATURE, BRITISH ISLES', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI', 'AHCI')","281","0.5","('N/A', 'N/A')","1.81","0.00" +"Journal of the Institute of Conservation","1945-5224","1945-5232","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","131","0.5","","1.78","16.00" +"Journal of Chinese Religions","0737-769X","2050-8999","('ASIAN STUDIES', 'RELIGION')","('ESCI', 'ESCI')","73","0.5","('N/A', 'N/A')","1.77","0.00" +"RELIGIOUS STUDIES","0034-4125","1469-901X","RELIGION","('AHCI',)","495","0.5","","1.72","40.44" +"Bylye Gody","2073-9745","2310-0028","HISTORY","('ESCI',)","547","0.5","Q1","1.71","92.21" +"ENGLISH HISTORICAL REVIEW","0013-8266","1477-4534","HISTORY","('AHCI', 'SSCI')","963","0.5","Q1","1.71","58.82" +"Plainsong & Medieval Music","0961-1371","1474-0087","('MEDIEVAL & RENAISSANCE STUDIES', 'MUSIC')","('AHCI', 'AHCI')","45","0.5","('N/A', 'N/A')","1.70","10.53" +"PATTERNS OF PREJUDICE","0031-322X","1461-7331","('ETHNIC STUDIES', 'HUMANITIES, MULTIDISCIPLINARY')","('SSCI', 'AHCI')","877","0.5","('Q4', 'N/A')","1.69","48.84" +"Cultural & Social History","1478-0038","1478-0046","HISTORY","('AHCI',)","333","0.5","Q1","1.66","59.38" +"SOUTH ASIA-JOURNAL OF SOUTH ASIAN STUDIES","0085-6401","1479-0270","('AREA STUDIES', 'ASIAN STUDIES', 'HISTORY')","('SSCI', 'AHCI', 'SSCI')","835","0.5","('Q3', 'N/A', 'Q1')","1.66","15.51" +"European Review of History-Revue Europeenne d Histoire","1350-7486","1469-8293","HISTORY","('AHCI',)","419","0.5","Q1","1.64","29.82" +"History & Memory","0935-560X","1527-1994","HISTORY","('AHCI',)","125","0.5","Q1","1.64","0.00" +"Method & Theory in the Study of Religion","0943-3058","1570-0682","RELIGION","('AHCI',)","373","0.5","","1.63","16.00" +"Historical Encounters-A Journal of Historical Consciousness Historical Cultures and History Education","2203-7543","2203-7543","HISTORY","('ESCI',)","58","0.5","Q1","1.62","88.71" +"COMPARATIVE LITERATURE","0010-4124","1945-8517","LITERATURE","('AHCI',)","439","0.5","","1.60","0.00" +"WOMENS HISTORY REVIEW","0961-2025","1747-583X","HISTORY","('AHCI',)","864","0.5","Q1","1.60","42.59" +"RIDE-The Journal of Applied Theatre and Performance","1356-9783","1470-112X","('EDUCATION & EDUCATIONAL RESEARCH', 'THEATER')","('SSCI', 'AHCI')","433","0.5","('Q4', 'N/A')","1.58","29.63" +"International Journal of Asian Studies","1479-5914","1479-5922","ASIAN STUDIES","('AHCI',)","92","0.5","","1.56","40.21" +"Twentieth-Century China","1521-5385","1940-5065","HISTORY","('ESCI',)","123","0.5","Q1","1.55","2.04" +"SEMINAR-A JOURNAL OF GERMANIC STUDIES","0037-1939","1911-026X","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","208","0.5","","1.54","0.00" +"RETHINKING HISTORY","1364-2529","1470-1154","HISTORY","('AHCI', 'SSCI')","446","0.5","Q1","1.52","25.93" +"TEXTUAL PRACTICE","0950-236X","1470-1308","LITERATURE","('AHCI',)","542","0.5","","1.52","32.65" +"SOCIAL SCIENCE HISTORY","0145-5532","1527-8034","('HISTORY', 'HISTORY OF SOCIAL SCIENCES')","('AHCI, SSCI', 'SSCI')","781","0.5","('Q1', 'Q3')","1.49","43.69" +"Contemporary South Asia","0958-4935","1469-364X","('AREA STUDIES', 'ASIAN STUDIES')","('SSCI', 'AHCI')","560","0.5","('Q3', 'N/A')","1.48","25.00" +"JOURNAL OF ARTS MANAGEMENT LAW AND SOCIETY","1063-2921","1930-7799","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","305","0.5","","1.48","21.21" +"History Compass","1478-0542","1478-0542","HISTORY","('ESCI',)","830","0.5","Q1","1.47","25.93" +"HISTORY OF POLITICAL THOUGHT","0143-781X","2051-2988","HISTORY","('AHCI',)","586","0.5","Q1","1.43","0.00" +"INTERNATIONAL HISTORY REVIEW","0707-5332","1949-6540","HISTORY","('AHCI',)","744","0.5","Q1","1.43","34.88" +"Adaptation-The Journal of Literature on Screen Studies","1755-0637","1755-0645","('FILM, RADIO, TELEVISION', 'LITERATURE')","('AHCI', 'AHCI')","150","0.5","('N/A', 'N/A')","1.37","17.44" +"SHAKESPEARE QUARTERLY","0037-3222","1538-3555","('LITERATURE, BRITISH ISLES', 'THEATER')","('AHCI', 'AHCI')","723","0.5","('N/A', 'N/A')","1.37","0.00" +"TEXTILE HISTORY","0040-4969","1743-2952","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","119","0.5","","1.35","15.38" +"Acta Histriae","1318-0185","2591-1767","HISTORY","('AHCI', 'SSCI')","176","0.5","Q1","1.33","0.00" +"INTERNATIONAL JOURNAL FOR PHILOSOPHY OF RELIGION","0020-7047","1572-8684","('PHILOSOPHY', 'RELIGION')","('AHCI', 'AHCI')","376","0.5","('N/A', 'N/A')","1.25","26.67" +"JCMS-Journal of Cinema and Media Studies","2578-4900","2578-4919","FILM, RADIO, TELEVISION","('AHCI',)","146","0.5","","1.24","0.00" +"Analisis Filosofico","0326-1301","1851-9636","PHILOSOPHY","('ESCI',)","40","0.5","","1.23","97.92" +"German History","0266-3554","1477-089X","HISTORY","('AHCI', 'SSCI')","307","0.5","Q1","1.23","25.32" +"HELIOS","0160-0923","1935-0228","CLASSICS","('AHCI',)","165","0.5","","1.23","0.00" +"Journal of Israeli History","1353-1042","1744-0548","HISTORY","('AHCI', 'SSCI')","149","0.5","Q1","1.23","27.91" +"STUDIES IN THE NOVEL","0039-3827","1934-1512","LITERATURE","('AHCI',)","329","0.5","","1.23","0.00" +"Historia y Comunicacion Social","1137-0734","1988-3056","('FILM, RADIO, TELEVISION', 'HISTORY')","('AHCI', 'AHCI')","293","0.5","('N/A', 'Q1')","1.21","95.27" +"Public History Review","1037-9851","1833-4989","HISTORY","('ESCI',)","59","0.5","Q1","1.21","69.05" +"Exemplaria-Medieval Early Modern Theory","1041-2573","1753-3074","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","192","0.5","","1.18","20.00" +"JEWISH SOCIAL STUDIES","0021-6704","1527-2028","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","440","0.5","","1.18","0.00" +"Journal of Early Modern History","1385-3783","1570-0658","HISTORY","('AHCI', 'SSCI')","292","0.5","Q1","1.18","18.75" +"Studies in Documentary Film","1750-3280","1750-3299","FILM, RADIO, TELEVISION","('ESCI',)","139","0.5","","1.18","21.05" +"Translation and Literature","0968-1361","1750-0214","LITERATURE","('AHCI',)","87","0.5","","1.18","3.23" +"Interventions-International Journal of Postcolonial Studies","1369-801X","1469-929X","('CULTURAL STUDIES', 'HISTORY')","('AHCI, SSCI', 'AHCI, SSCI')","795","0.5","('Q3', 'Q1')","1.17","17.62" +"Journal for the Academic Study of Religion","2047-704X","2047-7058","RELIGION","('ESCI',)","40","0.5","","1.16","7.50" +"Language Dynamics and Change","2210-5824","2210-5832","LANGUAGE & LINGUISTICS","('ESCI',)","123","0.5","","1.15","30.43" +"Oriens","0078-6527","1877-8372","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","209","0.5","","1.15","16.13" +"Nova Religio-Journal of Alternative and Emergent Religions","1092-6690","1541-8480","RELIGION","('AHCI',)","186","0.5","","1.13","0.00" +"Panta Rei-Digital Journal of History and Didactics of History","1136-2464","2386-8864","HISTORY","('ESCI',)","27","0.5","Q1","1.12","80.65" +"Philosophical Papers","0556-8641","1996-8523","PHILOSOPHY","('AHCI',)","654","0.5","","1.12","13.16" +"Arte Individuo y Sociedad","1131-5598","1988-2408","ART","('AHCI',)","277","0.5","","1.09","96.85" +"Arthuriana","1078-6279","1934-1539","('LITERATURE, BRITISH ISLES', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI', 'AHCI')","110","0.5","('N/A', 'N/A')","1.09","0.00" +"Colonial Latin American Review","1060-9164","1466-1802","HISTORY","('AHCI',)","379","0.5","Q1","1.09","11.69" +"JOURNAL OF RELIGIOUS ETHICS","0384-9694","1467-9795","RELIGION","('AHCI',)","606","0.5","","1.09","18.10" +"Comics Grid-Journal of Comics Scholarship","2048-0792","2048-0792","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","31","0.5","","1.08","100.00" +"Dao-A Journal of Comparative Philosophy","1540-3009","1569-7274","('ASIAN STUDIES', 'PHILOSOPHY')","('AHCI', 'AHCI')","306","0.5","('N/A', 'N/A')","1.06","3.41" +"ASIAN PHILOSOPHY","0955-2367","1469-2961","('ASIAN STUDIES', 'PHILOSOPHY')","('AHCI', 'AHCI')","250","0.5","('N/A', 'N/A')","1.05","3.49" +"AMERICAN QUARTERLY","0003-0678","1080-6490","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","1,724","0.5","","1.03","0.00" +"Axiomathes","1122-1151","1572-8390","PHILOSOPHY","('AHCI',)","235","0.5","","1.03","32.85" +"HTS Teologiese Studies-Theological Studies","0259-9422","2072-8050","RELIGION","('AHCI',)","1,222","0.5","","1.03","97.48" +"JOURNAL OF THE AMERICAN ORIENTAL SOCIETY","0003-0279","2169-2289","ASIAN STUDIES","('AHCI',)","1,218","0.5","","1.02","0.00" +"NEW TESTAMENT STUDIES","0028-6885","1469-8145","RELIGION","('AHCI',)","839","0.5","","1.02","40.22" +"Chinese Journal of Comparative Law","2050-4802","2050-4810","LAW","('ESCI',)","94","0.5","Q3","1.01","12.96" +"Journal of Architectural Conservation","1355-6207","2326-6384","ARCHITECTURE","('AHCI',)","207","0.5","","0.99","26.19" +"JOURNAL OF EARLY CHRISTIAN STUDIES","1067-6341","1086-3184","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","489","0.5","('Q1', 'N/A')","0.99","0.00" +"Journal of Mathematics and Music","1745-9737","1745-9745","('MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'MUSIC')","('SCIE', 'AHCI')","121","0.5","('Q4', 'N/A')","0.99","15.00" +"Midwest Studies in Philosophy","0363-6550","1475-4975","PHILOSOPHY","('AHCI',)","659","0.5","","0.98","0.00" +"MUSLIM WORLD","0027-4909","1478-1913","('ASIAN STUDIES', 'RELIGION')","('AHCI', 'AHCI')","509","0.5","('N/A', 'N/A')","0.97","15.58" +"CENTAURUS","0008-8994","1600-0498","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","321","0.5","Q3","0.96","9.52" +"MODERN JUDAISM","0276-1114","1086-3273","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","210","0.5","","0.96","2.33" +"Terrae Incognitae-The Journal of the Society for the History of Discoveries","0082-2884","2040-8706","HISTORY","('ESCI',)","59","0.5","Q1","0.96","20.00" +"Religion Compass","1749-8171","1749-8171","RELIGION","('ESCI',)","329","0.5","","0.95","21.82" +"URBAN HISTORY REVIEW-REVUE D HISTOIRE URBAINE","0703-0428","1918-5138","HISTORY","('AHCI',)","104","0.5","Q1","0.93","0.00" +"OPERA QUARTERLY","0736-0053","1476-2870","MUSIC","('AHCI',)","95","0.5","","0.91","21.43" +"Twentieth-Century Music","1478-5722","1478-5730","MUSIC","('AHCI',)","150","0.5","","0.91","33.82" +"HARVARD JOURNAL OF ASIATIC STUDIES","0073-0548","1944-6454","('ASIAN STUDIES', 'HISTORY')","('AHCI', 'AHCI')","428","0.5","('N/A', 'Q1')","0.88","0.00" +"Journal for the Study of the New Testament","0142-064X","1745-5294","RELIGION","('AHCI',)","581","0.5","","0.87","27.38" +"Digital Humanities Quarterly","1938-4122","1938-4122","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","460","0.5","","0.85","0.00" +"Lege Artis-Language Yesterday Today Tomorrow","2453-8035","2453-8035","LANGUAGE & LINGUISTICS","('ESCI',)","72","0.5","","0.85","0.00" +"MUSIC ANALYSIS","0262-5245","1468-2249","MUSIC","('AHCI',)","194","0.5","","0.85","25.58" +"Canadian Journal of Law and Society","0829-3201","1911-0227","LAW","('ESCI',)","259","0.5","Q3","0.84","40.00" +"HARVARD THEOLOGICAL REVIEW","0017-8160","1475-4517","RELIGION","('AHCI',)","930","0.5","","0.84","36.78" +"Mediterranean Historical Review","0951-8967","1743-940X","HISTORY","('AHCI', 'SSCI')","162","0.5","Q1","0.84","20.00" +"South Asian Studies","0266-6030","2153-2699","ASIAN STUDIES","('ESCI',)","200","0.5","","0.84","7.89" +"Journal of Late Antiquity","1939-6716","1942-1273","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","191","0.5","","0.83","0.00" +"China Report","0009-4455","0973-063X","AREA STUDIES","('ESCI',)","204","0.5","Q3","0.81","1.45" +"Ergo-An Open Access Journal of Philosophy","2330-4014","2330-4014","PHILOSOPHY","('AHCI',)","362","0.5","","0.81","100.00" +"India Review","1473-6489","1557-3036","AREA STUDIES","('SSCI',)","232","0.5","Q3","0.79","8.97" +"INTERNATIONAL LABOR AND WORKING-CLASS HISTORY","0147-5479","1471-6445","('HISTORY', 'INDUSTRIAL RELATIONS & LABOR')","('AHCI, SSCI', 'SSCI')","525","0.5","('Q1', 'Q4')","0.78","46.67" +"PHILOSOPHIA","0048-3893","1574-9274","PHILOSOPHY","('AHCI',)","763","0.5","","0.78","32.98" +"Discussiones Mathematicae Graph Theory","1234-3099","2083-5892","MATHEMATICS","('SCIE',)","653","0.5","Q3","0.77","99.38" +"JOURNAL OF URBAN HISTORY","0096-1442","1552-6771","('HISTORY', 'HISTORY OF SOCIAL SCIENCES', 'URBAN STUDIES')","('AHCI', 'SSCI', 'SSCI')","951","0.5","('Q1', 'Q3', 'Q4')","0.77","13.81" +"European Journal of Legal Studies","","1973-2937","LAW","('ESCI',)","102","0.5","Q3","0.76","0.00" +"Book History","1098-7371","1529-1499","HISTORY","('ESCI',)","211","0.5","Q1","0.75","0.00" +"Music Sound and the Moving Image","1753-0768","1753-0776","FILM, RADIO, TELEVISION","('ESCI',)","70","0.5","","0.75","0.00" +"Transnational Screens","2578-5273","2578-5265","FILM, RADIO, TELEVISION","('ESCI',)","38","0.5","","0.75","37.50" +"ISLAM-ZEITSCHRIFT FUR GESCHICHTE UND KULTUR DES ISLAMISCHEN ORIENTS","0021-1818","1613-0928","('ASIAN STUDIES', 'RELIGION')","('AHCI', 'AHCI')","391","0.5","('N/A', 'N/A')","0.74","19.15" +"Law & Practice of International Courts and Tribunals","1569-1853","1571-8034","LAW","('ESCI',)","137","0.5","Q3","0.74","27.87" +"Levant","0075-8914","1756-3801","ARCHAEOLOGY","('AHCI',)","394","0.5","","0.74","30.00" +"AMERICAN JOURNAL OF SEMIOTICS","0277-7126","2153-2990","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","91","0.5","","0.73","0.00" +"Anuario de Estudios Americanos","0210-5810","1988-4273","HISTORY","('AHCI',)","258","0.5","Q1","0.72","95.38" +"STUF-Language Typology and Universals","1867-8319","2196-7148","LANGUAGE & LINGUISTICS","('ESCI',)","197","0.5","","0.72","29.69" +"Home Cultures","1740-6315","1751-7427","ARCHITECTURE","('AHCI',)","225","0.5","","0.71","35.48" +"Zeitschrift fur Assyriologie und Vorderasiatische Archaologie","0084-5299","1613-1150","('ARCHAEOLOGY', 'HISTORY', 'LANGUAGE & LINGUISTICS')","('AHCI', 'AHCI', 'AHCI')","161","0.5","('N/A', 'Q1', 'N/A')","0.71","14.29" +"ARCHIV FUR GESCHICHTE DER PHILOSOPHIE","0003-9101","1613-0650","PHILOSOPHY","('AHCI',)","272","0.5","","0.69","18.00" +"Journal of Nusantara Studies-JONUS","0127-9319","0127-9386","AREA STUDIES","('ESCI',)","91","0.5","Q3","0.69","95.83" +"WILDFOWL","0954-6324","2052-6458","ORNITHOLOGY","('SCIE',)","383","0.5","Q4","0.69","0.00" +"Asian Journal of Law and Economics","2194-6086","2154-4611","LAW","('ESCI',)","53","0.5","Q3","0.68","12.00" +"Ethics and the Environment","1085-6633","1535-5306","PHILOSOPHY","('ESCI',)","287","0.5","","0.68","0.00" +"JOURNAL OF ANALYTICAL PSYCHOLOGY","0021-8774","1468-5922","PSYCHOLOGY, PSYCHOANALYSIS","('ESCI',)","405","0.5","Q2","0.68","4.86" +"JOURNAL OF THE AUSTRALIAN MATHEMATICAL SOCIETY","1446-7887","1446-8107","MATHEMATICS","('SCIE',)","791","0.5","Q3","0.68","18.80" +"Eurasian Journal of Applied Linguistics","2149-1135","2149-1135","LINGUISTICS","('ESCI',)","161","0.5","Q3","0.66","14.11" +"Journal of Topology and Analysis","1793-5253","1793-7167","MATHEMATICS","('SCIE',)","307","0.5","Q3","0.66","1.12" +"JOURNAL OF SYMBOLIC LOGIC","0022-4812","1943-5886","('LOGIC', 'MATHEMATICS')","('SCIE', 'SCIE')","2,356","0.5","('Q3', 'Q3')","0.65","14.33" +"AMERICAN JOURNAL OF LAW & MEDICINE","0098-8588","2375-835X","LAW","('SSCI',)","302","0.5","Q3","0.64","3.61" +"European Journal of Crime Criminal Law and Criminal Justice","0928-9569","1571-8174","LAW","('ESCI',)","143","0.5","Q3","0.64","28.13" +"ISSUES IN LAW & MEDICINE","8756-8160","","LAW","('SSCI',)","91","0.5","Q3","0.64","0.00" +"Tizard Learning Disability Review","1359-5474","2042-8782","EDUCATION, SPECIAL","('ESCI',)","228","0.5","Q4","0.64","6.12" +"ARBOR-CIENCIA PENSAMIENTO Y CULTURA","0210-1963","1988-303X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","440","0.5","","0.63","99.06" +"Boletin del Museo Chileno de Arte Precolombino","0716-1530","0718-6894","('ARCHAEOLOGY', 'ART')","('AHCI', 'AHCI')","202","0.5","('N/A', 'N/A')","0.63","58.49" +"HISTORY OF EUROPEAN IDEAS","0191-6599","1873-541X","PHILOSOPHY","('AHCI',)","734","0.5","","0.63","29.30" +"Journal of Historical Linguistics","2210-2116","2210-2124","LANGUAGE & LINGUISTICS","('ESCI',)","76","0.5","","0.63","1.96" +"Journal of Philosophical Research","1053-8364","2153-7984","PHILOSOPHY","('AHCI',)","196","0.5","","0.63","0.00" +"EGE-Revista de Expresion Grafica en la Edificacion","1888-8143","2605-082X","ARCHITECTURE","('ESCI',)","24","0.5","","0.62","100.00" +"Anthropological Measurements of Philosophical Research","2227-7242","2304-9685","PHILOSOPHY","('ESCI',)","54","0.5","","0.61","84.78" +"Economy of Region","2072-6414","2411-1406","AREA STUDIES","('ESCI',)","336","0.5","Q3","0.60","99.28" +"South Asian Diaspora","1943-8192","1943-8184","AREA STUDIES","('ESCI',)","99","0.5","Q3","0.60","22.92" +"Languages in Contrast","1387-6759","1569-9897","LANGUAGE & LINGUISTICS","('ESCI',)","110","0.5","","0.59","12.90" +"Social Dynamics-A Journal of African Studies","0253-3952","1940-7874","AREA STUDIES","('SSCI',)","436","0.5","Q3","0.59","4.21" +"TRAMES-Journal of the Humanities and Social Sciences","1406-0922","1736-7514","('HUMANITIES, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('AHCI', 'SSCI')","190","0.5","('N/A', 'Q3')","0.59","100.00" +"Asian-European Journal of Mathematics","1793-5571","1793-7183","MATHEMATICS","('ESCI',)","673","0.5","Q3","0.58","0.15" +"INDAGATIONES MATHEMATICAE-NEW SERIES","0019-3577","1872-6100","MATHEMATICS","('SCIE',)","776","0.5","Q3","0.58","30.00" +"Comparative Southeast European Studies","2701-8199","2701-8202","AREA STUDIES","('ESCI',)","44","0.5","Q3","0.57","97.40" +"Complex Manifolds","2300-7443","2300-7443","MATHEMATICS","('ESCI',)","88","0.5","Q3","0.57","95.83" +"CANADIAN MATHEMATICAL BULLETIN-BULLETIN CANADIEN DE MATHEMATIQUES","0008-4395","1496-4287","MATHEMATICS","('SCIE',)","1,288","0.5","Q3","0.56","21.47" +"Israel Affairs","1353-7121","1743-9086","AREA STUDIES","('SSCI',)","376","0.5","Q3","0.56","15.30" +"Onati Socio-Legal Series","","2079-5971","LAW","('ESCI',)","317","0.5","Q3","0.56","99.59" +"European Public Law","1354-3725","1875-8207","LAW","('ESCI',)","153","0.5","Q3","0.55","0.00" +"International Journal of Sociology of Education","2014-3575","2014-3575","SOCIOLOGY","('ESCI',)","105","0.5","Q4","0.55","44.44" +"Journal of Ancient Near Eastern History","2328-9554","2328-9562","('ARCHAEOLOGY', 'HISTORY')","('ESCI', 'ESCI')","43","0.5","('N/A', 'Q1')","0.55","18.18" +"Journal of Language Contact","1877-4091","1955-2629","LANGUAGE & LINGUISTICS","('ESCI',)","144","0.5","","0.55","84.78" +"Journal of Popular Music Studies","1524-2226","1533-1598","MUSIC","('AHCI',)","192","0.5","","0.55","1.33" +"Metal Music Studies","2052-3998","2052-4005","('CULTURAL STUDIES', 'HUMANITIES, MULTIDISCIPLINARY', 'MUSIC')","('ESCI', 'ESCI', 'ESCI')","97","0.5","('Q3', 'N/A', 'N/A')","0.55","2.27" +"Revista Juridica Portucalense","2183-5799","2183-5705","LAW","('ESCI',)","52","0.5","Q3","0.54","0.80" +"ALGEBRAS AND REPRESENTATION THEORY","1386-923X","1572-9079","MATHEMATICS","('SCIE',)","730","0.5","Q3","0.53","28.63" +"China-An International Journal","0219-7472","0219-8614","AREA STUDIES","('SSCI',)","349","0.5","Q3","0.53","0.00" +"GERMAN POLITICS AND SOCIETY","1045-0300","1558-5441","AREA STUDIES","('ESCI',)","228","0.5","Q3","0.53","0.00" +"International Journal of Humanities and Arts Computing-A Journal of Digital Humanities","1753-8548","1755-1706","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","102","0.5","","0.53","8.57" +"JOURNAL OF ALGEBRA AND ITS APPLICATIONS","0219-4988","1793-6829","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,729","0.5","('Q3', 'Q4')","0.53","1.04" +"JOURNAL OF PIDGIN AND CREOLE LANGUAGES","0920-9034","1569-9870","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","151","0.5","('N/A', 'Q3')","0.53","4.55" +"Washington International Law Journal","2377-0872","2377-0872","LAW","('ESCI',)","107","0.5","Q3","0.53","0.00" +"ENDEAVOUR","0160-9327","1873-1929","('HISTORY & PHILOSOPHY OF SCIENCE', 'MULTIDISCIPLINARY SCIENCES')","('SCIE', 'SCIE')","686","0.5","('Q3', 'Q4')","0.52","19.15" +"European Journal of Mathematics","2199-675X","2199-6768","MATHEMATICS","('ESCI',)","341","0.5","Q3","0.52","31.66" +"INTERNATIONAL JOURNAL OF ALGEBRA AND COMPUTATION","0218-1967","1793-6500","MATHEMATICS","('SCIE',)","699","0.5","Q3","0.52","0.94" +"International Journal of Number Theory","1793-0421","1793-7310","MATHEMATICS","('SCIE',)","890","0.5","Q3","0.52","0.96" +"JOURNAL OF POPULAR FILM AND TELEVISION","0195-6051","1930-6458","FILM, RADIO, TELEVISION","('AHCI',)","222","0.5","","0.52","8.51" +"Politics and Religion Journal","1820-6581","1820-659X","RELIGION","('ESCI',)","42","0.5","","0.52","72.73" +"ZEITSCHRIFT FUR GERMANISTISCHE LINGUISTIK","0301-3294","1613-0626","LANGUAGE & LINGUISTICS","('AHCI',)","416","0.5","","0.52","10.91" +"ACTA ARITHMETICA","0065-1036","1730-6264","MATHEMATICS","('SCIE',)","2,021","0.5","Q3","0.51","3.27" +"Canadian Journal of Applied Linguistics","1481-868X","1481-868X","LANGUAGE & LINGUISTICS","('ESCI',)","187","0.5","","0.51","0.00" +"DOKLADY MATHEMATICS","1064-5624","1531-8362","MATHEMATICS","('SCIE',)","865","0.5","Q3","0.51","14.29" +"Journal of Language and Literacy Education","1559-9035","1559-9035","LANGUAGE & LINGUISTICS","('ESCI',)","194","0.5","","0.51","0.00" +"Learning Disabilities-A Multidisciplinary Journal","1046-6819","2374-7846","EDUCATION, SPECIAL","('ESCI',)","93","0.5","Q4","0.51","0.00" +"Nazariyat-Journal for the History of Islamic Philosophy and Sciences","2528-8563","2547-9415","RELIGION","('ESCI',)","45","0.5","","0.51","67.65" +"Open Cultural Studies","2451-3474","2451-3474","CULTURAL STUDIES","('ESCI',)","115","0.5","Q3","0.51","94.87" +"Psychoanalysis Self and Context","2472-0038","2472-0046","PSYCHOLOGY, PSYCHOANALYSIS","('ESCI',)","97","0.5","Q2","0.51","0.00" +"Rad Hrvatske Akademije Znanosti i Umjetnosti-Matematicke Znanosti","1849-2215","1849-2215","MATHEMATICS","('ESCI',)","56","0.5","Q3","0.51","0.00" +"Tang Studies","0737-5034","1759-7633","ASIAN STUDIES","('ESCI',)","39","0.5","","0.51","0.00" +"Asian Journal of Middle Eastern and Islamic Studies","2576-5949","2576-5957","('AREA STUDIES', 'INTERNATIONAL RELATIONS')","('ESCI', 'ESCI')","131","0.5","('Q3', 'Q4')","0.50","4.82" +"GLASGOW MATHEMATICAL JOURNAL","0017-0895","1469-509X","MATHEMATICS","('SCIE',)","806","0.5","Q3","0.50","29.11" +"JOURNAL OF COMBINATORIAL DESIGNS","1063-8539","1520-6610","MATHEMATICS","('SCIE',)","428","0.5","Q3","0.50","13.89" +"MANUSCRIPTA MATHEMATICA","0025-2611","1432-1785","MATHEMATICS","('SCIE',)","1,913","0.5","Q3","0.50","26.84" +"Annals of K-Theory","2379-1683","2379-1691","MATHEMATICS","('ESCI',)","70","0.5","Q3","0.49","0.00" +"Journal of Greek Linguistics","1566-5844","1569-9846","LANGUAGE & LINGUISTICS","('ESCI',)","86","0.5","","0.49","90.00" +"Journal of Legal Studies Education","0896-5811","1744-1722","LAW","('ESCI',)","94","0.5","Q3","0.49","9.52" +"LABOUR-LE TRAVAIL","0700-3862","1911-4842","('HISTORY', 'INDUSTRIAL RELATIONS & LABOR')","('AHCI, SSCI', 'SSCI')","198","0.5","('Q1', 'Q4')","0.49","0.00" +"REVUE BIBLIQUE","0035-0907","2466-8583","RELIGION","('AHCI',)","346","0.5","","0.49","0.00" +"ARCHIV DER MATHEMATIK","0003-889X","1420-8938","MATHEMATICS","('SCIE',)","2,284","0.5","Q3","0.48","25.26" +"Nordic Journal of Linguistics","0332-5865","1502-4717","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","148","0.5","('N/A', 'Q3')","0.48","67.27" +"Rabels Zeitschrift fur Auslandisches und Internationales Privatrecht","0033-7250","1868-7059","LAW","('ESCI',)","77","0.5","Q3","0.48","6.45" +"ADVANCES IN GEOMETRY","1615-715X","1615-7168","MATHEMATICS","('SCIE',)","356","0.5","Q3","0.47","4.80" +"American Review of Canadian Studies","0272-2011","1943-9954","AREA STUDIES","('ESCI',)","191","0.5","Q3","0.47","7.23" +"AUSTRALIAN ECONOMIC HISTORY REVIEW","0004-8992","1467-8446","('ECONOMICS', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","210","0.5","('Q4', 'Q3')","0.47","13.33" +"Communications of the Korean Mathematical Society","1225-1763","2234-3024","MATHEMATICS","('ESCI',)","423","0.5","Q3","0.47","0.00" +"Annals of the University of Craiova-Mathematics and Computer Science Series","1223-6934","2246-9958","MATHEMATICS","('ESCI',)","218","0.5","Q3","0.46","0.00" +"Journal of Conflict Archaeology","1574-0773","1574-0781","ARCHAEOLOGY","('ESCI',)","85","0.5","","0.46","34.48" +"Kyoto Journal of Mathematics","2156-2261","2154-3321","MATHEMATICS","('SCIE',)","313","0.5","Q3","0.46","0.00" +"Language Matters","1022-8195","1753-5395","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","153","0.5","('N/A', 'Q3')","0.46","9.26" +"Sign Language Studies","0302-1475","1533-6263","LINGUISTICS","('ESCI',)","550","0.5","Q3","0.46","0.00" +"TESL Canada Journal","0826-435X","1925-8917","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","333","0.5","Q4","0.46","73.53" +"Annales Mathematiques du Quebec","2195-4755","2195-4763","MATHEMATICS","('ESCI',)","114","0.5","Q3","0.45","20.90" +"Caucasus Survey","2376-1199","2376-1202","('AREA STUDIES', 'INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('ESCI', 'ESCI', 'ESCI')","70","0.5","('Q3', 'Q4', 'Q4')","0.45","11.11" +"Sophia","0038-1527","1873-930X","PHILOSOPHY","('AHCI',)","308","0.5","","0.45","22.08" +"FUNDAMENTA MATHEMATICAE","0016-2736","1730-6329","MATHEMATICS","('SCIE',)","2,088","0.5","Q3","0.44","2.00" +"Journal of War & Culture Studies","1752-6272","1752-6280","CULTURAL STUDIES","('ESCI',)","137","0.5","Q3","0.44","40.00" +"MIDDLE EASTERN STUDIES","0026-3206","1743-7881","AREA STUDIES","('SSCI',)","1,325","0.5","Q3","0.44","13.78" +"Poznan Studies in Contemporary Linguistics","0137-2459","1897-7499","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","224","0.5","('N/A', 'Q3')","0.44","5.19" +"Psycholinguistics","2309-1797","2415-3397","LINGUISTICS","('ESCI',)","115","0.5","Q3","0.44","91.84" +"STUDIES IN LANGUAGE","0378-4177","1569-9978","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","684","0.5","('N/A', 'Q3')","0.44","5.68" +"HUMAN ORGANIZATION","0018-7259","1938-3525","('ANTHROPOLOGY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","1,371","0.5","('Q3', 'Q3')","0.43","0.00" +"Malaysian Journal of Mathematical Sciences","1823-8343","1823-8343","MATHEMATICS","('ESCI',)","222","0.5","Q3","0.43","2.17" +"OSAKA JOURNAL OF MATHEMATICS","0030-6126","","MATHEMATICS","('SCIE',)","1,070","0.5","Q3","0.43","0.00" +"Lithuanian Mathematical Journal","0363-1672","1573-8825","MATHEMATICS","('SCIE',)","307","0.5","Q3","0.42","16.50" +"Review of Central and East European Law","0925-9880","","LAW","('SSCI',)","85","0.5","Q3","0.42","20.41" +"Avian Biology Research","1758-1559","1758-1567","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'ORNITHOLOGY')","('SCIE', 'SCIE')","369","0.5","('Q4', 'Q4')","0.41","6.00" +"CYBIUM","0399-0974","2101-0315","ZOOLOGY","('SCIE',)","764","0.5","Q4","0.41","0.00" +"European Integration Studies","1822-8402","2335-8831","AREA STUDIES","('ESCI',)","71","0.5","Q3","0.41","73.47" +"Information Technologies and Learning Tools","2076-8184","2076-8184","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","375","0.5","Q4","0.41","99.35" +"International Electronic Journal of Algebra","1306-6048","1306-6048","MATHEMATICS","('ESCI',)","142","0.5","Q3","0.41","98.86" +"ORNITHOLOGICAL SCIENCE","1347-0558","1347-0558","ORNITHOLOGY","('SCIE',)","243","0.5","Q4","0.41","0.00" +"Ufa Mathematical Journal","2074-1863","2074-1871","MATHEMATICS","('ESCI',)","159","0.5","Q3","0.41","79.84" +"Acta Crystallographica Section E-Crystallographic Communications","2056-9890","2056-9890","CRYSTALLOGRAPHY","('ESCI',)","4,450","0.5","Q4","0.40","97.61" +"ACTA SCIENTIARUM MATHEMATICARUM","0001-6969","2064-8316","MATHEMATICS","('ESCI',)","796","0.5","Q3","0.40","10.43" +"Facta Universitatis-Series Mathematics and Informatics","0352-9665","2406-047X","MATHEMATICS","('ESCI',)","348","0.5","Q3","0.40","48.37" +"FUNCTIONES ET APPROXIMATIO COMMENTARII MATHEMATICI","0208-6573","0208-6573","MATHEMATICS","('ESCI',)","208","0.5","Q3","0.40","0.00" +"GEOMETRIAE DEDICATA","0046-5755","1572-9168","MATHEMATICS","('SCIE',)","1,844","0.5","Q3","0.40","28.29" +"Pure and Applied Mathematics Quarterly","1558-8599","1558-8602","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","448","0.5","('Q3', 'Q4')","0.40","0.00" +"CHINESE ANNALS OF MATHEMATICS SERIES B","0252-9599","1860-6261","MATHEMATICS","('SCIE',)","847","0.5","Q3","0.39","0.00" +"HORIZONS","0360-9669","2050-8557","RELIGION","('AHCI',)","61","0.5","","0.39","0.00" +"Journal of Public Finance and Public Choice","2515-6918","2515-6926","('ECONOMICS', 'POLITICAL SCIENCE')","('ESCI', 'ESCI')","57","0.5","('Q4', 'Q4')","0.39","7.32" +"SCOTTISH JOURNAL OF GEOLOGY","0036-9276","2041-4951","GEOLOGY","('SCIE',)","289","0.5","Q4","0.39","21.74" +"Armenian Journal of Mathematics","1829-1163","1829-1163","MATHEMATICS","('ESCI',)","40","0.5","Q3","0.38","95.00" +"CANADIAN MODERN LANGUAGE REVIEW-REVUE CANADIENNE DES LANGUES VIVANTES","0008-4506","1710-1131","LINGUISTICS","('SSCI',)","804","0.5","Q3","0.38","0.00" +"JOURNAL OF EAST ASIAN LINGUISTICS","0925-8558","1572-8560","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","357","0.5","('N/A', 'Q3')","0.38","26.67" +"Problemy Analiza-Issues of Analysis","2306-3424","2306-3432","MATHEMATICS","('ESCI',)","86","0.5","Q3","0.38","85.71" +"South African Review of Sociology","2152-8586","2072-1978","SOCIOLOGY","('ESCI',)","231","0.5","Q4","0.38","3.92" +"SOZIALE WELT-ZEITSCHRIFT FUR SOZIALWISSENSCHAFTLICHE FORSCHUNG UND PRAXIS","0038-6073","0038-6073","SOCIOLOGY","('SSCI',)","296","0.5","Q4","0.38","17.24" +"Acta Linguistica Academica","2559-8201","2560-1016","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","65","0.5","('N/A', 'Q3')","0.37","41.79" +"Babel-Revue Internationale de la Traduction-International Journal of Translation","0521-9744","1569-9668","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","286","0.5","('N/A', 'Q3')","0.37","1.83" +"Baltica","0067-3064","1648-858X","GEOLOGY","('SCIE',)","188","0.5","Q4","0.37","95.83" +"Bulletin of Mathematical Analysis and Applications","1821-1291","1821-1291","MATHEMATICS","('ESCI',)","214","0.5","Q3","0.37","0.00" +"Cognitive Semantics","2352-6408","2352-6416","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","177","0.5","('N/A', 'Q3')","0.37","19.51" +"Obrazovanie i Nauka-Education and Science","1994-5639","2310-5828","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","210","0.5","Q4","0.37","98.11" +"PROCEEDINGS OF THE ACADEMY OF NATURAL SCIENCES OF PHILADELPHIA","0097-3157","","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","1,071","0.5","('Q4', 'Q4')","0.37","0.00" +"Review of Middle East Studies","2151-3481","2329-3225","AREA STUDIES","('ESCI',)","105","0.5","Q3","0.37","38.10" +"STUDIES IN AMERICAN POLITICAL DEVELOPMENT","0898-588X","1469-8692","POLITICAL SCIENCE","('SSCI',)","335","0.5","Q4","0.37","44.19" +"Archivum Mathematicum","1212-5059","1212-5059","MATHEMATICS","('ESCI',)","285","0.5","Q3","0.36","100.00" +"Australian Journal of Anthropology","1035-8811","1757-6547","ANTHROPOLOGY","('SSCI',)","328","0.5","Q3","0.36","31.58" +"BULLETIN DE LA SOCIETE MATHEMATIQUE DE FRANCE","0037-9484","2102-622X","MATHEMATICS","('SCIE',)","1,392","0.5","Q3","0.36","0.00" +"CANADIAN JOURNAL OF LINGUISTICS-REVUE CANADIENNE DE LINGUISTIQUE","0008-4131","1710-1115","LANGUAGE & LINGUISTICS","('AHCI',)","189","0.5","","0.36","31.67" +"HAU-Journal of Ethnographic Theory","2575-1433","2049-1115","ANTHROPOLOGY","('SSCI',)","1,355","0.5","Q3","0.36","0.58" +"HISTORIA MATHEMATICA","0315-0860","1090-249X","('HISTORY & PHILOSOPHY OF SCIENCE', 'MATHEMATICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('AHCI, SCIE, SSCI', 'SCIE', 'SCIE')","431","0.5","('Q3', 'Q3', 'Q4')","0.36","34.04" +"Journal of Asian Pacific Communication","0957-6851","1569-9838","COMMUNICATION","('ESCI',)","162","0.5","Q4","0.36","0.00" +"Technology-Architecture + Design","2475-1448","2475-143X","('ARCHITECTURE', 'CONSTRUCTION & BUILDING TECHNOLOGY')","('ESCI', 'ESCI')","53","0.5","('N/A', 'Q4')","0.36","8.65" +"TEMPO","0040-2982","1478-2286","MUSIC","('AHCI',)","198","0.5","","0.36","16.18" +"AQUATIC INSECTS","0165-0424","1744-4152","ENTOMOLOGY","('SCIE',)","431","0.5","Q4","0.35","2.63" +"Asian Journal of Agriculture and Development","1656-4383","1656-4383","AGRONOMY","('ESCI',)","120","0.5","Q4","0.35","0.00" +"Journal of Human Values","0971-6858","0973-0737","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","219","0.5","Q3","0.35","10.91" +"Russian Mathematics","1066-369X","1934-810X","MATHEMATICS","('ESCI',)","523","0.5","Q3","0.35","0.00" +"Amazonia Investiga","","2322-6307","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","618","0.5","Q3","0.34","99.42" +"History of Geo- and Space Sciences","2190-5010","2190-5029","('GEOSCIENCES, MULTIDISCIPLINARY', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SCIE', 'SCIE, SSCI')","77","0.5","('Q4', 'Q3')","0.34","100.00" +"IEEE ANNALS OF THE HISTORY OF COMPUTING","1058-6180","1934-1547","('COMPUTER SCIENCE, THEORY & METHODS', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SCIE', 'AHCI, SCIE')","368","0.5","('Q4', 'Q3')","0.34","5.06" +"International Journal of Technoethics","1947-3451","1947-346X","ETHICS","('ESCI',)","97","0.5","Q4","0.34","25.81" +"Journal of Official Statistics","0282-423X","2001-7367","('SOCIAL SCIENCES, MATHEMATICAL METHODS', 'STATISTICS & PROBABILITY')","('SSCI', 'SCIE')","1,320","0.5","('Q4', 'Q4')","0.34","98.26" +"REVUE SUISSE DE ZOOLOGIE","0035-418X","0035-418X","ZOOLOGY","('SCIE',)","1,073","0.5","Q4","0.34","94.87" +"Australian Journal of Competition and Consumer Law","1838-9260","1838-9260","LAW","('ESCI',)","34","0.5","Q3","0.33","0.00" +"Ethics & Global Politics","1654-4951","1654-6369","('ETHICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","147","0.5","('Q4', 'Q4')","0.33","100.00" +"Glasnik Matematicki","0017-095X","1846-7989","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","305","0.5","('Q3', 'Q4')","0.33","0.00" +"HISTORY AND PHILOSOPHY OF LOGIC","0144-5340","1464-5149","('HISTORY & PHILOSOPHY OF SCIENCE', 'LOGIC', 'PHILOSOPHY')","('AHCI, SCIE', 'SCIE', 'AHCI')","195","0.5","('Q3', 'Q3', 'N/A')","0.33","14.29" +"International Insolvency Review","1180-0518","1099-1107","('BUSINESS, FINANCE', 'LAW')","('SSCI', 'SSCI')","81","0.5","('Q4', 'Q3')","0.33","31.75" +"Journal for Peace and Nuclear Disarmament","","2575-1654","INTERNATIONAL RELATIONS","('ESCI',)","106","0.5","Q4","0.33","93.07" +"Studi Kantiani","1123-4938","1724-1812","PHILOSOPHY","('ESCI',)","28","0.5","","0.33","0.00" +"Con-textos Kantianos-International Journal of Philosophy","2386-7655","2386-7655","PHILOSOPHY","('ESCI',)","64","0.5","","0.32","25.26" +"Family Medicine and Primary Care Review","1734-3402","2449-8580","PRIMARY HEALTH CARE","('ESCI',)","360","0.5","Q4","0.32","96.55" +"FRAGMENTA ENTOMOLOGICA","0429-288X","2284-4880","('ENTOMOLOGY', 'ZOOLOGY')","('ESCI', 'ESCI')","246","0.5","('Q4', 'Q4')","0.32","0.00" +"Portugaliae Mathematica","0032-5155","1662-2758","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","423","0.5","('Q3', 'Q4')","0.32","80.00" +"PROCEEDINGS OF THE YORKSHIRE GEOLOGICAL SOCIETY","0044-0604","2041-4811","GEOLOGY","('SCIE',)","280","0.5","Q4","0.32","10.71" +"Scottish Affairs","0966-0356","2053-888X","POLITICAL SCIENCE","('ESCI',)","149","0.5","Q4","0.32","0.00" +"Veterinaria Italiana","0505-401X","1828-1427","VETERINARY SCIENCES","('SCIE',)","727","0.5","Q4","0.32","0.00" +"Advances in Pure and Applied Mathematics","1867-1152","1869-6090","MATHEMATICS","('ESCI',)","110","0.5","Q3","0.31","0.00" +"CONTEMPORARY PSYCHOANALYSIS","0010-7530","2330-9091","('PSYCHIATRY', 'PSYCHOLOGY, PSYCHOANALYSIS')","('SSCI', 'SSCI')","387","0.5","('Q4', 'Q2')","0.31","1.52" +"International Electronic Journal of Mathematics Education","1306-3030","1306-3030","('EDUCATION & EDUCATIONAL RESEARCH', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('ESCI', 'ESCI')","294","0.5","('Q4', 'Q4')","0.31","100.00" +"Kiva-Journal of Southwestern Anthropology and History","0023-1940","2051-6177","ARCHAEOLOGY","('ESCI',)","322","0.5","","0.31","1.37" +"ODONATOLOGICA","0375-0183","0375-0183","ENTOMOLOGY","('SCIE',)","434","0.5","Q4","0.31","0.00" +"THEORY OF PROBABILITY AND ITS APPLICATIONS","0040-585X","1095-7219","STATISTICS & PROBABILITY","('SCIE',)","1,899","0.5","Q4","0.31","0.00" +"Archives of Pediatric Infectious Diseases","2322-1828","2322-1836","PEDIATRICS","('ESCI',)","188","0.5","Q4","0.30","98.10" +"Arqueologia Iberoamericana","1989-4104","1989-4104","ARCHAEOLOGY","('ESCI',)","144","0.5","","0.30","0.00" +"Asian Journal of Mathematics","1093-6106","1945-0036","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","692","0.5","('Q3', 'Q4')","0.30","0.00" +"Cuadernos de Prehistoria y Arqueologia-Universidad Autonoma de Madrid","0211-1608","0211-1608","ARCHAEOLOGY","('ESCI',)","225","0.5","","0.30","0.00" +"Early Science and Medicine","1383-7427","1573-3823","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE')","358","0.5","Q3","0.30","24.64" +"Estudios Atacamenos","0718-1043","0718-1043","('ANTHROPOLOGY', 'ARCHAEOLOGY', 'HISTORY')","('SSCI', 'AHCI', 'AHCI, SSCI')","510","0.5","('Q3', 'N/A', 'Q1')","0.30","91.00" +"European Company Law","1572-4999","1875-6530","LAW","('ESCI',)","64","0.5","Q3","0.30","0.00" +"Historia Ciencias Saude-Manguinhos","0104-5970","1678-4758","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI',)","605","0.5","Q3","0.30","96.97" +"International Journal of Emotional Education","2073-7629","2073-7629","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","246","0.5","Q4","0.30","75.00" +"JOURNAL OF FEMINIST FAMILY THERAPY","0895-2833","1540-4099","FAMILY STUDIES","('ESCI',)","186","0.5","Q4","0.30","2.04" +"Journal of Human Sport and Exercise","1988-5202","1988-5202","SPORT SCIENCES","('ESCI',)","1,017","0.5","Q4","0.30","97.42" +"Journal of Ichthyology","0032-9452","1555-6425","('FISHERIES', 'ZOOLOGY')","('SCIE', 'SCIE')","1,425","0.5","('Q4', 'Q4')","0.30","8.03" +"PAKISTAN JOURNAL OF ZOOLOGY","0030-9923","0030-9923","ZOOLOGY","('SCIE',)","2,269","0.5","Q4","0.30","97.88" +"Problems of Information Transmission","0032-9460","1608-3253","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","683","0.5","('Q4', 'Q4')","0.30","0.00" +"RENDICONTI DEL SEMINARIO MATEMATICO DELLA UNIVERSITA DI PADOVA","0041-8994","2240-2926","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","470","0.5","('Q3', 'Q4')","0.30","33.33" +"Aotearoa New Zealand Social Work","2463-4131","2463-4131","SOCIAL WORK","('ESCI',)","204","0.5","Q4","0.29","2.04" +"Boletin de la Sociedad Geologica Mexicana","1405-3322","","GEOLOGY","('SCIE',)","563","0.5","Q4","0.29","97.01" +"Journal of Arab & Muslim Media Research","1751-9411","1751-942X","COMMUNICATION","('ESCI',)","86","0.5","Q4","0.29","2.44" +"Journal of Nursing and Midwifery Sciences","2345-5756","2345-5764","NURSING","('ESCI',)","174","0.5","Q4","0.29","68.25" +"Journal of Youth Development","2325-4017","2325-4017","PSYCHOLOGY, DEVELOPMENTAL","('ESCI',)","350","0.5","Q4","0.29","87.96" +"Language and Sociocultural Theory","2051-9699","2051-9702","LINGUISTICS","('ESCI',)","84","0.5","Q3","0.29","0.00" +"Physical Educator-US","0031-8981","2160-1682","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","467","0.5","Q4","0.29","0.00" +"Pragmatics & Cognition","0929-0907","1569-9943","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","375","0.5","('N/A', 'Q3')","0.29","7.69" +"Psicologia Sociale","1827-2517","2612-2006","PSYCHOLOGY, SOCIAL","('ESCI',)","145","0.5","Q4","0.29","0.00" +"Reformation","1357-4175","1752-0738","RELIGION","('ESCI',)","51","0.5","","0.29","22.73" +"Ankara Universitesi Egitim Bilimleri Fakultesi Ozel Egitim Dergisi-Ankara University Faculty of Educational Sciences Journal of Special Education","1304-7639","2149-8261","EDUCATION, SPECIAL","('ESCI',)","322","0.5","Q4","0.28","99.09" +"Canadian Bulletin of Medical History","0823-2105","2371-0179","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","144","0.5","Q3","0.28","0.00" +"Canadian Journal for the Scholarship of Teaching and Learning","1918-2902","1918-2902","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","200","0.5","Q4","0.28","80.70" +"DISCRETE MATHEMATICS AND THEORETICAL COMPUTER SCIENCE","1462-7264","1365-8050","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","450","0.5","('Q4', 'Q3', 'Q4')","0.28","0.74" +"Journal of Middle East Womens Studies","1552-5864","1558-9579","WOMENS STUDIES","('SSCI',)","300","0.5","Q3","0.28","0.00" +"Multicultural Perspectives","1521-0960","1532-7892","SOCIOLOGY","('ESCI',)","420","0.5","Q4","0.28","2.78" +"New Political Science","0739-3148","1469-9931","POLITICAL SCIENCE","('ESCI',)","490","0.5","Q4","0.28","8.25" +"Open Dentistry Journal","1874-2106","1874-2106","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","1,289","0.5","Q4","0.28","97.98" +"RUSSIAN JOURNAL OF NUMERICAL ANALYSIS AND MATHEMATICAL MODELLING","0927-6467","1569-3988","MATHEMATICS, APPLIED","('SCIE',)","290","0.5","Q4","0.28","0.00" +"TURKISH JOURNAL OF VETERINARY & ANIMAL SCIENCES","1300-0128","1300-0128","VETERINARY SCIENCES","('SCIE',)","1,576","0.5","Q4","0.28","94.91" +"ACTA BIOLOGICA CRACOVIENSIA SERIES BOTANICA","0001-5296","1898-0295","PLANT SCIENCES","('SCIE',)","525","0.5","Q4","0.27","100.00" +"Applied Biosafety","1535-6760","2470-1246","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","250","0.5","Q4","0.27","27.59" +"BLACK SCHOLAR","0006-4246","2162-5387","ETHNIC STUDIES","('ESCI',)","627","0.5","Q4","0.27","0.00" +"Central European Journal of Communication","1899-5101","1899-5101","COMMUNICATION","('ESCI',)","93","0.5","Q4","0.27","100.00" +"Discours-Revue de Linguistique Psycholinguistique et Informatique","1963-1723","1963-1723","LINGUISTICS","('ESCI',)","69","0.5","Q3","0.27","24.00" +"Journal of Leadership Studies","1935-2611","1935-262X","MANAGEMENT","('ESCI',)","539","0.5","Q4","0.27","29.67" +"PHARMACY EDUCATION","1560-2214","1477-2701","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","439","0.5","Q4","0.27","99.42" +"A & A Practice","2575-3126","2575-3126","ANESTHESIOLOGY","('ESCI',)","533","0.5","Q4","0.26","8.96" +"Communicatio-South African Journal for Communication Theory and Research","0250-0167","1753-5379","COMMUNICATION","('ESCI',)","184","0.5","Q4","0.26","4.62" +"Egitim ve Bilim-Education and Science","1300-1337","1300-1337","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","831","0.5","Q4","0.26","98.88" +"IHERINGIA SERIE ZOOLOGIA","0073-4721","1678-4766","ZOOLOGY","('SCIE',)","656","0.5","Q4","0.26","91.30" +"International Journal of Data Warehousing and Mining","1548-3924","1548-3932","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","219","0.5","Q4","0.26","69.51" +"International Journal of Information Security and Privacy","1930-1650","1930-1669","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","160","0.5","Q4","0.26","14.52" +"Journal of Hyperbolic Differential Equations","0219-8916","1793-6993","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","491","0.5","('Q4', 'Q4')","0.26","0.00" +"Journal of Nuclear Engineering and Radiation Science","2332-8983","2332-8975","NUCLEAR SCIENCE & TECHNOLOGY","('ESCI',)","352","0.5","Q4","0.26","2.61" +"Journal of the Indian Academy of Wood Science","0972-172X","0976-8432","FORESTRY","('ESCI',)","218","0.5","Q4","0.26","3.57" +"Mathematical and Computational Forestry & Natural-Resource Sciences","1946-7664","1946-7664","FORESTRY","('ESCI',)","81","0.5","Q4","0.26","0.00" +"MLTJ-Muscles Ligaments and Tendons Journal","2240-4554","2240-4554","ORTHOPEDICS","('ESCI',)","1,267","0.5","Q4","0.26","0.42" +"RUSSIAN JOURNAL OF THERIOLOGY","1682-3559","","ZOOLOGY","('SCIE',)","210","0.5","Q4","0.26","79.66" +"South African Journal of Bioethics and Law","1999-7639","1999-7639","MEDICAL ETHICS","('ESCI',)","142","0.5","Q4","0.26","70.37" +"Tripodos","1138-3305","2340-5007","COMMUNICATION","('ESCI',)","158","0.5","Q4","0.26","96.97" +"Ukrainian Mathematical Journal","0041-5995","1573-9376","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,124","0.5","('Q3', 'Q4')","0.26","0.00" +"ZENTRALBLATT FUR CHIRURGIE","0044-409X","1438-9592","SURGERY","('SCIE',)","636","0.5","Q4","0.26","3.01" +"Arab Law Quarterly","0268-0556","1573-0255","LAW","('ESCI',)","191","0.5","Q3","0.25","8.47" +"DDS-Die Deutsche Schule","0012-0731","0012-0731","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","107","0.5","Q4","0.25","88.79" +"ELECTRONIC COMMUNICATIONS IN PROBABILITY","","1083-589X","STATISTICS & PROBABILITY","('SCIE',)","934","0.5","Q4","0.25","92.53" +"GEOGRAFICKY CASOPIS-Geographical Journal","0016-7193","2453-8787","GEOGRAPHY","('ESCI',)","141","0.5","Q3","0.25","100.00" +"Hiroshima Mathematical Journal","0018-2079","0018-2079","MATHEMATICS","('SCIE',)","419","0.5","Q3","0.25","95.92" +"Indonesian Journal of Sustainability Accounting and Management","2597-6214","2597-6222","('BUSINESS, FINANCE', 'MANAGEMENT')","('ESCI', 'ESCI')","110","0.5","('Q4', 'Q4')","0.25","95.71" +"Journal of Pediatric Intensive Care","2146-4618","2146-4626","PEDIATRICS","('ESCI',)","507","0.5","Q4","0.25","3.03" +"Journal of VitreoRetinal Diseases","2474-1264","2474-1272","OPHTHALMOLOGY","('ESCI',)","253","0.5","Q4","0.25","8.54" +"Negotiation and Conflict Management Research","1750-4708","1750-4716","('MANAGEMENT', 'PSYCHOLOGY, APPLIED')","('SSCI', 'SSCI')","353","0.5","('Q4', 'Q4')","0.25","12.50" +"Person-Centered and Experiential Psychotherapies","1477-9757","1752-9182","PSYCHOLOGY, CLINICAL","('ESCI',)","267","0.5","Q4","0.25","21.05" +"STOCHASTIC MODELS","1532-6349","1532-4214","STATISTICS & PROBABILITY","('SCIE',)","407","0.5","Q4","0.25","7.84" +"Turkish Journal of Surgery","2564-6850","2564-7032","SURGERY","('ESCI',)","501","0.5","Q4","0.25","99.43" +"ANNEE PSYCHOLOGIQUE","0003-5033","1955-2580","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","445","0.5","Q4","0.24","0.00" +"Australian Journal of Adult Learning","1443-1394","","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","349","0.5","Q4","0.24","0.00" +"Case Reports in Ophthalmology","1663-2699","1663-2699","OPHTHALMOLOGY","('ESCI',)","633","0.5","Q4","0.24","100.00" +"Complex Systems","0891-2513","0891-2513","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","831","0.5","Q4","0.24","0.00" +"CULTURAL DYNAMICS","0921-3740","1461-7048","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","331","0.5","Q3","0.24","3.08" +"Dubai Medical Journal","","2571-726X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","142","0.5","Q3","0.24","99.38" +"International Journal of Economic Policy Studies","2524-4892","1881-4387","ECONOMICS","('ESCI',)","92","0.5","Q4","0.24","10.00" +"Investigaciones Geograficas-Spain","0213-4691","1989-9890","GEOGRAPHY","('ESCI',)","140","0.5","Q3","0.24","100.00" +"Journal of Acute Care Physical Therapy","2158-8686","2159-0524","REHABILITATION","('ESCI',)","83","0.5","Q4","0.24","3.03" +"Journal of Hand Surgery-Asian-Pacific Volume","2424-8355","2424-8363","SURGERY","('ESCI',)","886","0.5","Q4","0.24","0.27" +"Journal of Intellectual Disabilities and Offending Behaviour","2050-8824","2050-8832","CRIMINOLOGY & PENOLOGY","('ESCI',)","107","0.5","Q4","0.24","0.00" +"KEDI Journal of Educational Policy","1739-4341","1739-4341","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","150","0.5","Q4","0.24","0.00" +"Lex Localis-Journal of Local Self-Government","1581-5374","1855-363X","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","285","0.5","('Q4', 'Q4')","0.24","2.68" +"MonTI","1889-4178","1989-9335","LINGUISTICS","('ESCI',)","230","0.5","Q3","0.24","100.00" +"Revista de Derecho Comunitario Europeo","1138-4026","1138-4026","LAW","('ESCI',)","120","0.5","Q3","0.24","0.00" +"Acta Ortopedica Brasileira","1413-7852","1809-4406","ORTHOPEDICS","('SCIE',)","681","0.5","Q4","0.23","88.85" +"Agenda-Empowering Women for Gender Equity","1013-0950","2158-978X","WOMENS STUDIES","('ESCI',)","556","0.5","Q3","0.23","10.32" +"Asia-Pacific Journal of Ocean Law and Policy","2451-9367","2451-9391","('INTERNATIONAL RELATIONS', 'LAW')","('ESCI', 'ESCI')","46","0.5","('Q4', 'Q3')","0.23","4.00" +"Bulletin of Tokyo Dental College","0040-8891","0040-8891","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","312","0.5","Q4","0.23","100.00" +"Chinese Space Science and Technology","1000-758X","1000-758X","ENGINEERING, AEROSPACE","('ESCI',)","300","0.5","Q4","0.23","0.00" +"CRYPTOGAMIE BRYOLOGIE","1290-0796","1776-0992","PLANT SCIENCES","('SCIE',)","264","0.5","Q4","0.23","0.00" +"Egyptian Pediatric Association Gazette","1110-6638","2090-9942","PEDIATRICS","('ESCI',)","164","0.5","Q4","0.23","100.00" +"Ethik in der Medizin","0935-7335","1437-1618","MEDICAL ETHICS","('SCIE',)","132","0.5","Q4","0.23","86.41" +"FEMINIST STUDIES","0046-3663","2153-3873","WOMENS STUDIES","('SSCI',)","2,117","0.5","Q3","0.23","0.00" +"Journal of Criminological Research Policy and Practice","2056-3841","2056-385X","CRIMINOLOGY & PENOLOGY","('ESCI',)","157","0.5","Q4","0.23","3.57" +"Journal of Exotic Pet Medicine","1557-5063","1931-6283","VETERINARY SCIENCES","('SCIE',)","563","0.5","Q4","0.23","8.41" +"Journal of Mathematical Physics Analysis Geometry","1812-9471","1817-5805","('MATHEMATICS', 'MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE', 'SCIE')","189","0.5","('Q3', 'Q4', 'Q4')","0.23","0.00" +"Journal of Measurement and Evaluation in Education and Psychology-EPOD","1309-6575","1309-6575","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","176","0.5","Q4","0.23","100.00" +"Journal of Research in Education Sciences","2073-753X","2073-753X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","150","0.5","Q4","0.23","0.00" +"Jurnal Ilmiah Peuradeun","2338-8617","2443-2067","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","111","0.5","Q3","0.23","99.34" +"Malaysian Journal of Library & Information Science","1394-6234","1394-6234","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","286","0.5","Q3","0.23","0.00" +"MATHEMATICAL SOCIAL SCIENCES","0165-4896","1879-3118","('ECONOMICS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SCIE', 'SSCI')","1,056","0.5","('Q4', 'Q4', 'Q4')","0.23","33.68" +"Odovtos International Journal of Dental Sciences","1659-1046","2215-3411","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","124","0.5","Q4","0.23","96.58" +"Poljoprivreda","1330-7142","1848-8080","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","167","0.5","Q4","0.23","100.00" +"Psychoanalysis Culture & Society","1088-0763","1543-3390","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","216","0.5","Q3","0.23","7.76" +"PSYCHOLOGIA","0033-2852","1347-5916","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","319","0.5","Q4","0.23","100.00" +"SOCIAL CHOICE AND WELFARE","0176-1714","1432-217X","('ECONOMICS', 'SOCIAL SCIENCES, MATHEMATICAL METHODS')","('SSCI', 'SSCI')","1,375","0.5","('Q4', 'Q4')","0.23","34.57" +"ACTA BIOLOGICA COLOMBIANA","0120-548X","1900-1649","('PLANT SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","448","0.5","('Q4', 'Q4')","0.22","93.08" +"Ansiedad y Estres-Anxiety and Stress","1134-7937","2174-0437","PSYCHOLOGY, CLINICAL","('ESCI',)","317","0.5","Q4","0.22","6.35" +"Australasian Orthodontic Journal","2207-7472","2207-7480","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","99","0.5","Q4","0.22","88.29" +"Avances de Investigacion en Educacion Matematica","2254-4313","2254-4313","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","43","0.5","Q4","0.22","66.67" +"Communications for Statistical Applications and Methods","2287-7843","2383-4757","STATISTICS & PROBABILITY","('ESCI',)","380","0.5","Q4","0.22","100.00" +"DYNAMICAL SYSTEMS-AN INTERNATIONAL JOURNAL","1468-9367","1468-9375","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","485","0.5","('Q4', 'Q4')","0.22","5.17" +"International Journal of Fluid Mechanics Research","1064-2277","2152-5110","MECHANICS","('ESCI',)","405","0.5","Q4","0.22","0.00" +"Intersections-East European Journal of Society and Politics","","2416-089X","POLITICAL SCIENCE","('ESCI',)","265","0.5","Q4","0.22","86.32" +"Journal of Mathematical Cryptology","1862-2976","1862-2984","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","228","0.5","Q4","0.22","100.00" +"Journal of Muslim Mental Health","1556-4908","1556-5009","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","307","0.5","Q4","0.22","100.00" +"Journal of Pharmaceutical Health Services Research","1759-8885","1759-8893","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","357","0.5","Q4","0.22","8.16" +"JOURNAL OF THE PALAEONTOLOGICAL SOCIETY OF INDIA","0552-9360","0552-9360","PALEONTOLOGY","('SCIE',)","386","0.5","Q4","0.22","32.39" +"PHYSIKALISCHE MEDIZIN REHABILITATIONSMEDIZIN KURORTMEDIZIN","0940-6689","1439-085X","('REHABILITATION', 'SPORT SCIENCES')","('SCIE', 'SCIE')","183","0.5","('Q4', 'Q4')","0.22","6.54" +"REVISTA DE LA SOCIEDAD ENTOMOLOGICA ARGENTINA","0373-5680","1851-7471","ENTOMOLOGY","('SCIE',)","423","0.5","Q4","0.22","82.40" +"STUDIA GEOPHYSICA ET GEODAETICA","0039-3169","1573-1626","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","679","0.5","Q4","0.22","7.32" +"Turk Gogus Kalp Damar Cerrahisi Dergisi-Turkish Journal of Thoracic and Cardiovascular Surgery","1301-5680","1301-5680","SURGERY","('SCIE',)","399","0.5","Q4","0.22","0.00" +"Brazilian Journalism Research","1808-4079","1981-9854","COMMUNICATION","('ESCI',)","107","0.5","Q4","0.21","100.00" +"CIENCIAS MARINAS","0185-3880","","MARINE & FRESHWATER BIOLOGY","('SCIE',)","761","0.5","Q4","0.21","96.67" +"Communications in Mathematical Biology and Neuroscience","2052-2541","2052-2541","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","242","0.5","Q4","0.21","99.32" +"International Journal of Business Data Communications and Networking","1548-0631","1548-064X","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","40","0.5","Q4","0.21","91.67" +"International Journal of Computing Science and Mathematics","1752-5055","1752-5063","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","248","0.5","Q4","0.21","0.00" +"Iranian Journal of Applied Animal Science","2251-628X","2251-631X","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","588","0.5","Q4","0.21","0.40" +"Journal of International Oral Health","0976-7428","0976-1799","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","965","0.5","Q4","0.21","0.00" +"Journal of Qualitative Research in Education-Egitimde Nitel Arastirmalar Dergisi","2148-2624","2148-2624","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","94","0.5","Q4","0.21","98.56" +"Language and Literacy","","1496-0974","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","136","0.5","Q4","0.21","1.96" +"Middle East African Journal of Ophthalmology","0974-9233","0975-1599","OPHTHALMOLOGY","('ESCI',)","923","0.5","Q4","0.21","20.95" +"Photonics Letters of Poland","2080-2242","2080-2242","OPTICS","('ESCI',)","173","0.5","Q4","0.21","97.59" +"SOTSIOLOGICHESKIE ISSLEDOVANIYA","0132-1625","0132-1625","SOCIOLOGY","('SSCI',)","1,017","0.5","Q4","0.21","0.00" +"Andes Pediatrica","","2452-6053","PEDIATRICS","('ESCI',)","111","0.5","Q4","0.20","96.60" +"ANNALES DE PATHOLOGIE","0242-6498","2213-008X","PATHOLOGY","('SCIE',)","349","0.5","Q4","0.20","42.03" +"APOS Trends in Orthodontics","2321-4600","2321-1407","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","174","0.5","Q4","0.20","98.23" +"AUC Geographica","0300-5402","2336-1980","GEOGRAPHY","('ESCI',)","119","0.5","Q3","0.20","100.00" +"Boletin de Geologia","0120-0283","2145-8553","GEOLOGY","('ESCI',)","229","0.5","Q4","0.20","100.00" +"Bulletin of the Technical Committee on Learning Technology","2306-0212","2306-0212","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","34","0.5","Q4","0.20","0.00" +"Canadian Journal of Nonprofit and Social Economy Research","1920-9355","1920-9355","PUBLIC ADMINISTRATION","('ESCI',)","99","0.5","Q4","0.20","95.59" +"Convergencia-Revista de Ciencias Sociales","2448-5799","2448-5799","SOCIOLOGY","('SSCI',)","230","0.5","Q4","0.20","94.74" +"Cosmopolitan Civil Societies-An Interdisciplinary Journal","1837-5391","1837-5391","SOCIOLOGY","('ESCI',)","117","0.5","Q4","0.20","88.89" +"Current Trends in Translation Teaching and Learning E","2342-7205","2342-7205","LINGUISTICS","('ESCI',)","41","0.5","Q3","0.20","81.82" +"Educatio Siglo XXI","1699-2105","1989-466X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","310","0.5","Q4","0.20","98.10" +"Floresta e Ambiente","2179-8087","2179-8087","FORESTRY","('ESCI',)","703","0.5","Q4","0.20","90.91" +"Indian Journal of Gender Studies","0971-5215","0973-0672","WOMENS STUDIES","('SSCI',)","318","0.5","Q3","0.20","8.06" +"International Journal of Information Retrieval Research","2155-6377","2155-6385","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","94","0.5","Q4","0.20","73.49" +"International Journal of Therapy and Rehabilitation","1741-1645","1759-779X","REHABILITATION","('ESCI',)","711","0.5","Q4","0.20","6.80" +"JOURNAL OF CAVE AND KARST STUDIES","1090-6924","2331-3714","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","556","0.5","Q4","0.20","89.66" +"JOURNAL OF INTERCONNECTION NETWORKS","0219-2659","1793-6713","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","168","0.5","Q4","0.20","0.00" +"Journal of Osseointegration","2036-413X","2036-4121","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","136","0.5","Q4","0.20","0.00" +"Large Animal Review","1124-4593","1124-4593","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","189","0.5","Q4","0.20","0.00" +"Present Environment and Sustainable Development","1843-5971","2284-7820","GEOGRAPHY","('ESCI',)","168","0.5","Q3","0.20","100.00" +"PUBLIC FINANCE REVIEW","1091-1421","1552-7530","ECONOMICS","('ESCI',)","686","0.5","Q4","0.20","5.68" +"Social Psychology and Society","2221-1527","2311-7052","PSYCHOLOGY, APPLIED","('ESCI',)","163","0.5","Q4","0.20","100.00" +"TOPICS IN GERIATRIC REHABILITATION","0882-7524","1550-2414","('GERONTOLOGY', 'REHABILITATION')","('SSCI', 'SSCI')","401","0.5","('Q4', 'Q4')","0.20","1.04" +"ANNALES MEDICO-PSYCHOLOGIQUES","0003-4487","1769-6631","('PSYCHIATRY', 'PSYCHOLOGY')","('SCIE', 'SCIE')","712","0.5","('Q4', 'Q4')","0.19","32.56" +"ARCHIV FUR MOLLUSKENKUNDE","1869-0963","2367-0622","MARINE & FRESHWATER BIOLOGY","('SCIE',)","228","0.5","Q4","0.19","0.00" +"Archives of Clinical Infectious Diseases","2345-2641","2008-1081","INFECTIOUS DISEASES","('ESCI',)","321","0.5","Q4","0.19","96.00" +"Argumentation and Advocacy","1051-1431","2576-8476","COMMUNICATION","('ESCI',)","237","0.5","Q4","0.19","2.50" +"Asian Pacific Journal of Reproduction","2305-0500","2305-0519","REPRODUCTIVE BIOLOGY","('ESCI',)","401","0.5","Q4","0.19","92.73" +"ATLANTIC ECONOMIC JOURNAL","0197-4254","1573-9678","ECONOMICS","('ESCI',)","399","0.5","Q4","0.19","20.63" +"Baltic Journal of Economic Studies","2256-0742","2256-0963","ECONOMICS","('ESCI',)","375","0.5","Q4","0.19","98.16" +"CALDASIA","0366-5232","2357-3759","('PLANT SCIENCES', 'ZOOLOGY')","('SCIE', 'SCIE')","495","0.5","('Q4', 'Q4')","0.19","96.75" +"DRUSTVENA ISTRAZIVANJA","1330-0288","1848-6096","('SOCIAL ISSUES', 'SOCIOLOGY')","('SSCI', 'SSCI')","304","0.5","('Q3', 'Q4')","0.19","98.98" +"Foro Internacional","0185-013X","2448-6523","INTERNATIONAL RELATIONS","('ESCI',)","156","0.5","Q4","0.19","100.00" +"INTERNATIONAL JOURNAL OF COOPERATIVE INFORMATION SYSTEMS","0218-8430","1793-6365","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","119","0.5","Q4","0.19","0.00" +"Italian Journal of Linguistics","1120-2726","1120-2726","LINGUISTICS","('ESCI',)","270","0.5","Q3","0.19","0.00" +"JOURNAL OF INFORMATION SCIENCE AND ENGINEERING","1016-2364","","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","553","0.5","Q4","0.19","0.00" +"Journal of Language Teaching and Learning","2146-1732","2146-1732","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","57","0.5","Q4","0.19","0.00" +"Journal of Tourism Management Research","2408-9117","2313-4178","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","83","0.5","Q4","0.19","93.48" +"Konsultativnaya Psikhologiya i Psikhoterapiya-Counseling Psychology and Psychotherapy","2075-3470","2311-9446","PSYCHOLOGY, CLINICAL","('ESCI',)","134","0.5","Q4","0.19","91.75" +"NEUES JAHRBUCH FUR MINERALOGIE-ABHANDLUNGEN","0077-7757","0077-7757","MINERALOGY","('SCIE',)","771","0.5","Q4","0.19","0.00" +"Revista de Educacion Inclusiva","1889-4208","1989-4643","EDUCATION, SPECIAL","('ESCI',)","156","0.5","Q4","0.19","0.00" +"Technical Services Quarterly","0731-7131","1555-3337","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","118","0.5","Q3","0.19","1.85" +"Academia y Virtualidad","2011-0731","2011-0731","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","66","0.5","Q4","0.18","98.18" +"Advances in Data Science and Adaptive Analysis","2424-922X","2424-9238","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","1,124","0.5","Q4","0.18","0.00" +"Annals of Laparoscopic and Endoscopic Surgery","2518-6973","2518-6973","SURGERY","('ESCI',)","184","0.5","Q4","0.18","89.19" +"Baltic Journal of Modern Computing","2255-8942","2255-8950","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('ESCI',)","217","0.5","Q4","0.18","100.00" +"BERLINER UND MUNCHENER TIERARZTLICHE WOCHENSCHRIFT","0005-9366","1439-0299","VETERINARY SCIENCES","('SCIE',)","564","0.5","Q4","0.18","0.00" +"Cardiogenetics","2035-8253","2035-8148","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","41","0.5","Q4","0.18","98.33" +"Cirugia y Cirujanos","0009-7411","0009-7411","SURGERY","('SCIE',)","680","0.5","Q4","0.18","99.06" +"Comptabilite Controle Audit","1262-2788","","BUSINESS, FINANCE","('SSCI',)","134","0.5","Q4","0.18","0.00" +"Giornale Italiano di Endodonzia","1971-1425","1971-1425","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","147","0.5","Q4","0.18","0.00" +"IEICE Nonlinear Theory and Its Applications","2185-4106","2185-4106","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","202","0.5","Q4","0.18","98.55" +"International Journal of Economic Theory","1742-7355","1742-7363","ECONOMICS","('SSCI',)","170","0.5","Q4","0.18","17.05" +"International Journal of Speech Language and the Law","1748-8885","1748-8893","('CRIMINOLOGY & PENOLOGY', 'LINGUISTICS')","('SSCI', 'SSCI')","259","0.5","('Q4', 'Q3')","0.18","4.00" +"Investigaciones Feministas","2171-6080","2171-6080","WOMENS STUDIES","('ESCI',)","204","0.5","Q3","0.18","91.40" +"Journal of Institutional Studies","2076-6297","2412-6039","ECONOMICS","('ESCI',)","85","0.5","Q4","0.18","96.70" +"Obere Extremitaet-Schulter-Ellenbogen-Hand-Upper Extremity-Shoulder Elbow Hand","1862-6599","1862-6602","ORTHOPEDICS","('ESCI',)","170","0.5","Q4","0.18","44.09" +"Radioengineering","1210-2512","","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","1,023","0.5","Q4","0.18","100.00" +"SOUTH AFRICAN JOURNAL FOR RESEARCH IN SPORT PHYSICAL EDUCATION AND RECREATION","0379-9069","","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","278","0.5","Q3","0.18","0.00" +"Symploke","1069-0697","1534-0627","CULTURAL STUDIES","('ESCI',)","160","0.5","Q3","0.18","0.00" +"TELOPEA","0312-9764","2200-4025","PLANT SCIENCES","('SCIE',)","234","0.5","Q4","0.18","100.00" +"TELOS-Revista de Estudios Interdisciplinarios en Ciencias Sociales","2343-5763","1317-0570","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","138","0.5","Q3","0.18","94.20" +"Acta Orthopaedica Belgica","0001-6462","0001-6462","ORTHOPEDICS","('SCIE',)","1,789","0.5","Q4","0.17","0.57" +"ACTA PHYSICA POLONICA A","0587-4246","1898-794X","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","3,925","0.5","Q4","0.17","99.47" +"Asia Pacific Journal of Health Management","","2204-3136","HEALTH POLICY & SERVICES","('ESCI',)","194","0.5","Q4","0.17","68.44" +"BOLETIM DO INSTITUTO DE PESCA","0046-9939","1678-2305","('FISHERIES', 'ZOOLOGY')","('SCIE', 'SCIE')","553","0.5","('Q4', 'Q4')","0.17","96.51" +"Commonwealth Journal of Local Governance","1836-0394","1836-0394","PUBLIC ADMINISTRATION","('ESCI',)","103","0.5","Q4","0.17","100.00" +"CONSTRAINTS","1383-7133","1572-9354","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE')","328","0.5","('Q4', 'Q4')","0.17","43.24" +"Croatian Operational Research Review","1848-0225","1848-9931","ECONOMICS","('ESCI',)","174","0.5","Q4","0.17","97.96" +"Czech Polar Reports","1805-0689","1805-0697","('ECOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","121","0.5","('Q4', 'Q4')","0.17","98.48" +"Economic and Social Changes-Facts Trends Forecast","2307-0331","2312-9824","ECONOMICS","('ESCI',)","225","0.5","Q4","0.17","98.77" +"Interaccion y Perspectiva","2244-808X","2244-808X","SOCIAL WORK","('ESCI',)","30","0.5","Q4","0.17","0.00" +"International Journal of Embedded Systems","1741-1068","1741-1076","COMPUTER SCIENCE, HARDWARE & ARCHITECTURE","('ESCI',)","215","0.5","Q4","0.17","0.81" +"International Journal of Sustainable Aviation","2050-0467","2050-0475","ENGINEERING, AEROSPACE","('ESCI',)","103","0.5","Q4","0.17","1.67" +"International Journal of Theoretical and Applied Finance","0219-0249","1793-6322","BUSINESS, FINANCE","('ESCI',)","658","0.5","Q4","0.17","3.88" +"International Studies of Economics","","2831-3224","ECONOMICS","('ESCI',)","18","0.5","Q4","0.17","87.93" +"ITE Transactions on Media Technology and Applications","2186-7364","2186-7364","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","140","0.5","Q4","0.17","60.00" +"Journal of Agricultural & Food Information","1049-6505","1540-4722","AGRONOMY","('ESCI',)","176","0.5","Q4","0.17","7.14" +"MATERIALS EVALUATION","0025-5327","0025-5327","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('SCIE',)","424","0.5","Q4","0.17","0.00" +"Orthodontic Waves","1344-0241","1878-1837","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","137","0.5","Q4","0.17","11.54" +"Revista de Humanidades","1130-5029","2340-8995","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","136","0.5","","0.17","0.00" +"Revista Espanola de Antropologia Americana","0556-6533","1988-2718","ANTHROPOLOGY","('ESCI',)","229","0.5","Q3","0.17","100.00" +"REVUE FRANCAISE DE SOCIOLOGIE","0035-2969","1958-5691","SOCIOLOGY","('SSCI',)","700","0.5","Q4","0.17","0.00" +"SCANDINAVIAN ECONOMIC HISTORY REVIEW","0358-5522","1750-2837","ECONOMICS","('ESCI',)","240","0.5","Q4","0.17","72.50" +"Sylwan","0039-7660","","FORESTRY","('SCIE',)","738","0.5","Q4","0.17","0.00" +"TROPICAL DOCTOR","0049-4755","1758-1133","('PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TROPICAL MEDICINE')","('SCIE', 'SCIE')","1,099","0.5","('Q4', 'Q4')","0.17","1.00" +"Addicta-The Turkish Journal on Addictions","2148-7286","2149-1305","SUBSTANCE ABUSE","('ESCI',)","222","0.5","Q4","0.16","47.32" +"Administration","0001-8325","2449-9471","PUBLIC ADMINISTRATION","('ESCI',)","70","0.5","Q4","0.16","97.33" +"African Journal of Urology","1110-5704","1961-9987","UROLOGY & NEPHROLOGY","('ESCI',)","364","0.5","Q4","0.16","100.00" +"Ain Shams Journal of Anesthesiology","1687-7934","2090-925X","ANESTHESIOLOGY","('ESCI',)","214","0.5","Q4","0.16","99.59" +"Antropologia Portuguesa","0870-0990","2182-7982","ANTHROPOLOGY","('ESCI',)","20","0.5","Q3","0.16","100.00" +"Applied Computer Systems","2255-8683","2255-8691","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","81","0.5","Q4","0.16","100.00" +"Current Proteomics","1570-1646","1875-6247","('BIOCHEMICAL RESEARCH METHODS', 'BIOCHEMISTRY & MOLECULAR BIOLOGY')","('SCIE', 'SCIE')","171","0.5","('Q4', 'Q4')","0.16","0.83" +"Foro de Educacion","1698-7799","1698-7802","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","164","0.5","Q4","0.16","77.27" +"Geografia Fisica e Dinamica Quaternaria","0391-9838","1724-4781","GEOGRAPHY, PHYSICAL","('SCIE',)","384","0.5","Q4","0.16","0.00" +"IARTEM e-Journal","1837-2104","1837-2104","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","15","0.5","Q4","0.16","0.00" +"International Journal of Abdominal Wall and Hernia Surgery","2589-8736","2589-8078","SURGERY","('ESCI',)","85","0.5","Q4","0.16","69.57" +"International Journal of Technology and Human Interaction","1548-3908","1548-3916","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","206","0.5","Q3","0.16","68.89" +"ISRAELI JOURNAL OF AQUACULTURE-BAMIDGEH","0792-156X","","FISHERIES","('SCIE',)","666","0.5","Q4","0.16","96.77" +"Jordan Journal of Physics","1994-7607","1994-7615","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","119","0.5","Q4","0.16","0.00" +"Journal of Agriculture and Environment for International Development","2240-2802","2240-2802","AGRONOMY","('ESCI',)","169","0.5","Q4","0.16","73.53" +"Journal of Geometry and Symmetry in Physics","1312-5192","1314-5673","PHYSICS, MATHEMATICAL","('ESCI',)","104","0.5","Q4","0.16","0.00" +"Journal of Judicial Administration","1036-7918","1036-7918","PUBLIC ADMINISTRATION","('ESCI',)","56","0.5","Q4","0.16","0.00" +"Malaysian Journal of Economic Studies","1511-4554","1511-4554","ECONOMICS","('ESCI',)","98","0.5","Q4","0.16","0.00" +"Mitochondrial DNA Part B-Resources","","2380-2359","GENETICS & HEREDITY","('SCIE',)","3,771","0.5","Q4","0.16","97.75" +"PHYSICS TEACHER","0031-921X","1943-4928","('EDUCATION, SCIENTIFIC DISCIPLINES', 'PHYSICS, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","1,521","0.5","('Q4', 'Q4')","0.16","2.48" +"Psychotherapy and Politics International","1476-9263","1556-9195","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","108","0.5","Q4","0.16","52.73" +"Russian Journal of Marine Biology","1063-0740","1608-3377","MARINE & FRESHWATER BIOLOGY","('SCIE',)","808","0.5","Q4","0.16","1.30" +"Sumarski List","0373-1332","1846-9140","FORESTRY","('SCIE',)","329","0.5","Q4","0.16","95.08" +"Tecnoscienza-Italian Journal of Science & Technology Studies","2038-3460","2038-3460","SOCIAL ISSUES","('ESCI',)","108","0.5","Q3","0.16","0.00" +"TIDSSKRIFT FOR SAMFUNNSFORSKNING","0040-716X","1504-291X","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","66","0.5","Q3","0.16","63.64" +"TOURISM CULTURE & COMMUNICATION","1098-304X","1943-4146","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","151","0.5","Q4","0.16","24.68" +"African Journal of Nursing and Midwifery","1682-5055","1682-5055","NURSING","('ESCI',)","149","0.5","Q4","0.15","1.79" +"BJR Case Reports","2055-7159","2055-7159","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","384","0.5","Q4","0.15","89.71" +"Ceska Gynekologie-Czech Gynaecology","1210-7832","1805-4455","OBSTETRICS & GYNECOLOGY","('ESCI',)","288","0.5","Q4","0.15","0.00" +"CESKOSLOVENSKA PSYCHOLOGIE","0009-062X","1804-6436","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","165","0.5","Q4","0.15","98.10" +"Cytology and Genetics","0095-4527","1934-9440","GENETICS & HEREDITY","('SCIE',)","411","0.5","Q4","0.15","0.53" +"DADOS-REVISTA DE CIENCIAS SOCIAIS","0011-5258","1678-4588","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","333","0.5","Q3","0.15","94.87" +"Egyptian Journal of Agronomy","0379-3575","2357-0288","AGRONOMY","('ESCI',)","170","0.5","Q4","0.15","0.00" +"European Journal of Human Movement","","2386-4095","SPORT SCIENCES","('ESCI',)","199","0.5","Q4","0.15","49.15" +"Geographia Cassoviensis","1337-6748","2454-0005","GEOGRAPHY","('ESCI',)","58","0.5","Q3","0.15","100.00" +"Grounded Theory Review","1556-1550","1556-1550","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","267","0.5","Q3","0.15","7.69" +"Health Behavior and Policy Review","2326-4403","2326-4403","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","238","0.5","Q4","0.15","38.84" +"Human Gene","2773-0441","2773-0441","GENETICS & HEREDITY","('ESCI',)","80","0.5","Q4","0.15","0.45" +"International Education Journal-Comparative Perspectives","1443-1475","2202-493X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","470","0.5","Q4","0.15","0.00" +"International Journal of Electronics and Telecommunications","2081-8491","2300-1933","TELECOMMUNICATIONS","('ESCI',)","334","0.5","Q4","0.15","97.59" +"International Journal of Energetic Materials and Chemical Propulsion","2150-766X","2150-7678","('ENGINEERING, AEROSPACE', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","242","0.5","('Q4', 'Q4')","0.15","0.00" +"International Journal of Human Factors and Ergonomics","2045-7804","2045-7812","ERGONOMICS","('ESCI',)","66","0.5","Q4","0.15","1.67" +"Iranian Journal of Psychiatry and Behavioral Sciences","1735-8639","1735-9287","PSYCHIATRY","('ESCI',)","662","0.5","Q4","0.15","97.55" +"Journal of Computational Methods in Sciences and Engineering","1472-7978","1875-8983","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","433","0.5","Q4","0.15","0.00" +"Journal of Contemporary Physics-Armenian Academy of Sciences","1068-3372","1934-9378","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","227","0.5","Q4","0.15","0.54" +"Journal of Electronics & Information Technology","1009-5896","1009-5896","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","1,375","0.5","Q4","0.15","0.00" +"Journal of Ship Production and Design","2158-2866","2158-2874","ENGINEERING, MARINE","('SCIE',)","225","0.5","Q4","0.15","0.00" +"Journal of Turkish Sleep Medicine-Turk Uyku Tibbi Dergisi","2148-1504","2757-850X","CLINICAL NEUROLOGY","('ESCI',)","112","0.5","Q4","0.15","100.00" +"NIPPON SUISAN GAKKAISHI","0021-5392","1349-998X","FISHERIES","('SCIE',)","1,004","0.5","Q4","0.15","93.39" +"NOVON","1055-3177","1945-6174","PLANT SCIENCES","('SCIE',)","528","0.5","Q4","0.15","0.00" +"P-Adic Numbers Ultrametric Analysis and Applications","2070-0466","2070-0474","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","186","0.5","Q4","0.15","0.00" +"Primenjena Psihologija","1821-0147","2334-7287","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","93","0.5","Q4","0.15","88.71" +"Psychology-Journal of the Higher School of Economics","1813-8918","1813-8918","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","181","0.5","Q4","0.15","100.00" +"Revista de Investigacion en Educacion","1697-5200","2172-3427","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","85","0.5","Q4","0.15","96.77" +"Revista Espanola de Discapacidad-REDIS","2340-5104","2340-5104","REHABILITATION","('ESCI',)","142","0.5","Q4","0.15","94.59" +"Sport in History","1746-0263","1746-0271","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","208","0.5","Q4","0.15","25.42" +"TRAVAIL HUMAIN","0041-1868","2104-3663","('ENGINEERING, INDUSTRIAL', 'ERGONOMICS', 'PSYCHOLOGY', 'PSYCHOLOGY, APPLIED')","('SCIE', 'SSCI', 'SCIE', 'SSCI')","248","0.5","('Q4', 'Q4', 'Q4', 'Q4')","0.15","0.00" +"Urology Case Reports","","2214-4420","UROLOGY & NEPHROLOGY","('ESCI',)","1,043","0.5","Q4","0.15","98.57" +"Zeitschrift fur Neuropsychologie","1016-264X","1664-2902","('CLINICAL NEUROLOGY', 'PSYCHOLOGY')","('SCIE', 'SCIE')","127","0.5","('Q4', 'Q4')","0.15","63.04" +"Annals of Joint","2415-6809","2415-6809","ORTHOPEDICS","('ESCI',)","197","0.5","Q4","0.14","96.26" +"AUTOMATIC DOCUMENTATION AND MATHEMATICAL LINGUISTICS","0005-1055","1934-8371","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","120","0.5","Q4","0.14","0.00" +"Bulletin of the Mineral Research and Exploration","0026-4563","0026-4563","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","272","0.5","Q4","0.14","94.00" +"Cuadernos de Relaciones Laborales","1131-8635","1988-2572","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","145","0.5","Q4","0.14","79.63" +"Finisterra-Revista Portuguesa de Geografia","0430-5027","2182-2905","GEOGRAPHY","('ESCI',)","241","0.5","Q3","0.14","0.00" +"Geofisica Internacional","0016-7169","2954-436X","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","435","0.5","Q4","0.14","73.21" +"Gomal Journal of Medical Sciences","1819-7973","1997-2067","MEDICINE, GENERAL & INTERNAL","('ESCI',)","162","0.5","Q3","0.14","38.79" +"International Journal of Value Chain Management","1741-5357","1741-5365","MANAGEMENT","('ESCI',)","110","0.5","Q4","0.14","0.00" +"Iranian Journal of Psychiatry and Clinical Psychology","1735-4315","2228-7515","PSYCHIATRY","('ESCI',)","260","0.5","Q4","0.14","89.25" +"Journal of Astronomical History and Heritage","1440-2807","1440-2807","ASTRONOMY & ASTROPHYSICS","('ESCI',)","194","0.5","Q4","0.14","0.00" +"Journal of East European Management Studies","0949-6181","1862-0019","MANAGEMENT","('SSCI',)","268","0.5","Q4","0.14","1.20" +"Journal of Verification, Validation and Uncertainty Quantification","2377-2158","2377-2166","('ENGINEERING, MECHANICAL', 'ENGINEERING, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","104","0.5","('Q4', 'Q4')","0.14","2.99" +"Latin American Economic Review","2198-3526","2196-436X","ECONOMICS","('SSCI',)","194","0.5","Q4","0.14","39.29" +"Latvian Journal of Physics and Technical Sciences","0868-8257","2255-8896","PHYSICS, APPLIED","('ESCI',)","205","0.5","Q4","0.14","100.00" +"Mineralogical Journal-Ukraine","2519-2396","2519-447X","MINERALOGY","('ESCI',)","144","0.5","Q4","0.14","0.00" +"MITTEILUNGEN KLOSTERNEUBURG","0007-5922","0007-5922","('FOOD SCIENCE & TECHNOLOGY', 'HORTICULTURE')","('SCIE', 'SCIE')","154","0.5","('Q4', 'Q4')","0.14","0.00" +"Open Astronomy","","2543-6376","ASTRONOMY & ASTROPHYSICS","('SCIE',)","118","0.5","Q4","0.14","95.96" +"Pneumon","1105-848X","1791-4914","RESPIRATORY SYSTEM","('ESCI',)","48","0.5","Q4","0.14","96.00" +"PSIKHOLOGICHESKII ZHURNAL","0205-9592","","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","346","0.5","Q4","0.14","0.00" +"Psychiatry and Clinical Psychopharmacology","2475-0573","2475-0581","('PHARMACOLOGY & PHARMACY', 'PSYCHIATRY')","('SCIE', 'SCIE')","444","0.5","('Q4', 'Q4')","0.14","99.32" +"Russian Journal of Developmental Biology","1062-3604","1608-3326","DEVELOPMENTAL BIOLOGY","('SCIE',)","392","0.5","Q4","0.14","6.25" +"Saudi Journal of Kidney Diseases and Transplantation","1319-2442","2320-3838","UROLOGY & NEPHROLOGY","('ESCI',)","1,747","0.5","Q4","0.14","84.92" +"Scientific Annals of Computer Science","1843-8121","1843-8121","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","17","0.5","Q4","0.14","100.00" +"Upravlenets-The Manager","2218-5003","2218-5003","MANAGEMENT","('ESCI',)","96","0.5","Q4","0.14","67.74" +"Acta Bioethica","0717-5906","1726-569X","('ETHICS', 'MEDICAL ETHICS', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SCIE', 'SSCI')","198","0.5","('Q4', 'Q4', 'Q4')","0.13","3.80" +"ARYA Atherosclerosis","1735-3955","2251-6638","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","525","0.5","Q4","0.13","0.00" +"Athenea Digital","1578-8946","1578-8946","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","314","0.5","Q3","0.13","100.00" +"B E Journal of Macroeconomics","2194-6116","1935-1690","ECONOMICS","('SSCI',)","387","0.5","Q4","0.13","5.68" +"Balkan Journal of Medical Genetics","1311-0160","2199-5761","GENETICS & HEREDITY","('SCIE',)","198","0.5","Q4","0.13","100.00" +"Bautechnik","0932-8351","1437-0999","ENGINEERING, CIVIL","('SCIE',)","481","0.5","Q4","0.13","0.00" +"Cardiothoracic Surgeon","2636-333X","2662-2203","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","47","0.5","Q4","0.13","100.00" +"Case Reports in Gastroenterology","","1662-0631","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","840","0.5","Q4","0.13","99.03" +"China Quarterly of International Strategic Studies","2377-7400","2377-7419","POLITICAL SCIENCE","('ESCI',)","187","0.5","Q4","0.13","81.58" +"CYBERNETICS AND SYSTEMS ANALYSIS","1060-0396","1573-8337","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","858","0.5","Q4","0.13","0.32" +"Economia Agraria y Recursos Naturales","1578-0732","2174-7350","ECONOMICS","('ESCI',)","128","0.5","Q4","0.13","100.00" +"EGE ACADEMIC REVIEW","1303-099X","1303-099X","ECONOMICS","('ESCI',)","227","0.5","Q4","0.13","1.85" +"Ekonomski Vjesnik","0353-359X","1847-2206","ECONOMICS","('ESCI',)","135","0.5","Q4","0.13","89.80" +"Electrical Control and Communication Engineering","2255-9140","2255-9159","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","69","0.5","Q4","0.13","96.97" +"Elektrotechnik und Informationstechnik","0932-383X","1613-7620","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","316","0.5","Q4","0.13","59.56" +"Forensic Science International Genetics Supplement Series","1875-1768","1875-175X","GENETICS & HEREDITY","('ESCI',)","646","0.5","Q4","0.13","9.68" +"Foundations and Trends in Marketing","1555-0753","1555-0761","BUSINESS","('ESCI',)","111","0.5","Q4","0.13","56.52" +"Geotechnik","0172-6145","2190-6653","ENGINEERING, GEOLOGICAL","('ESCI',)","134","0.5","Q4","0.13","0.00" +"International Cancer Conference Journal","2192-3183","2192-3183","ONCOLOGY","('ESCI',)","226","0.5","Q4","0.13","10.47" +"International Journal of Critical Infrastructures","1475-3219","1741-8038","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","239","0.5","Q4","0.13","1.30" +"International Journal of Embedded and Real-Time Communication Systems (IJERTCS)","1947-3176","1947-3184","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI')","39","0.5","('Q4', 'Q4')","0.13","19.35" +"Istanbul Journal of Pharmacy","","2587-2087","PHARMACOLOGY & PHARMACY","('ESCI',)","161","0.5","Q4","0.13","45.39" +"Journal of Agricultural Extension","1119-944X","2408-6851","AGRONOMY","('ESCI',)","241","0.5","Q4","0.13","96.00" +"Journal of ICT Research and Applications","2337-5787","2338-5499","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","68","0.5","Q4","0.13","98.44" +"Journal of Medicinal Plants and By-products-JMPB","2322-1399","2588-3739","PLANT SCIENCES","('ESCI',)","180","0.5","Q4","0.13","0.00" +"Journal of the Serbian Society for Computational Mechanics","1820-6530","1820-6530","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","114","0.5","Q4","0.13","96.67" +"KARDIOLOGIYA","0022-9040","","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","553","0.5","Q4","0.13","55.33" +"NORTHEASTERN NATURALIST","1092-6194","1938-5307","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","864","0.5","('Q4', 'Q4')","0.13","0.00" +"Problems of Atomic Science and Technology","1562-6016","1562-6016","PHYSICS, NUCLEAR","('ESCI',)","785","0.5","Q4","0.13","0.00" +"Quality-Access to Success","1582-2559","2668-4861","MANAGEMENT","('ESCI',)","767","0.5","Q4","0.13","0.00" +"Regulatory Mechanisms in Biosystems","2519-8521","2520-2588","BIOLOGY","('ESCI',)","231","0.5","Q4","0.13","87.69" +"REVISTA COLOMBIANA DE ENTOMOLOGIA","0120-0488","0120-0488","ENTOMOLOGY","('SCIE',)","508","0.5","Q4","0.13","95.77" +"REVISTA PERUANA DE BIOLOGIA","1561-0837","1727-9933","BIOLOGY","('ESCI',)","277","0.5","Q4","0.13","95.17" +"Revista Romana de Medicina de Laborator","1841-6624","2284-5623","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","155","0.5","Q4","0.13","100.00" +"REVMAR-Revista Ciencias Marinas y Costeras","1659-407X","1659-407X","MARINE & FRESHWATER BIOLOGY","('ESCI',)","64","0.5","Q4","0.13","100.00" +"SAINS TANAH","1412-3606","2356-1424","('AGRONOMY', 'ENVIRONMENTAL SCIENCES', 'SOIL SCIENCE')","('ESCI', 'ESCI', 'ESCI')","54","0.5","('Q4', 'Q4', 'Q4')","0.13","94.52" +"Scientia Forestalis","1413-9324","1413-9324","FORESTRY","('SCIE',)","620","0.5","Q4","0.13","91.98" +"Theoretical and Applied Ecology","1995-4301","2618-8406","ECOLOGY","('ESCI',)","303","0.5","Q4","0.13","0.00" +"Trakya University Journal of Natural Sciences","","2528-9691","MULTIDISCIPLINARY SCIENCES","('ESCI',)","84","0.5","Q4","0.13","94.59" +"WESTERN NORTH AMERICAN NATURALIST","1527-0904","1944-8341","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","704","0.5","('Q4', 'Q4')","0.13","0.00" +"World Review of Political Economy","2042-891X","2042-8928","ECONOMICS","('ESCI',)","122","0.5","Q4","0.13","82.61" +"Zeitschrift fur Tourismuswissenschaft","1867-9501","2366-0406","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","56","0.5","Q4","0.13","29.82" +"Acta Geotechnica Slovenica","1854-0171","1854-0171","ENGINEERING, GEOLOGICAL","('SCIE',)","124","0.5","Q4","0.12","0.00" +"Advances in Electrical and Electronic Engineering","1336-1376","1804-3119","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","322","0.5","Q4","0.12","92.24" +"Bewegungstherapie und Gesundheitssport","1613-0863","1613-3269","SPORT SCIENCES","('ESCI',)","73","0.5","Q4","0.12","0.00" +"BIOLOGY BULLETIN","1062-3590","1608-3059","BIOLOGY","('SCIE',)","1,264","0.5","Q4","0.12","2.43" +"British Journal of Psychotherapy","0265-9883","1752-0118","PSYCHIATRY","('ESCI',)","315","0.5","Q4","0.12","16.26" +"CT&F-Ciencia Tecnologia y Futuro","0122-5383","","('ENERGY & FUELS', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE')","180","0.5","('Q4', 'Q4')","0.12","96.43" +"Current Journal of Neurology","2717-011X","2717-011X","CLINICAL NEUROLOGY","('ESCI',)","65","0.5","Q4","0.12","88.78" +"Doxa Comunicacion","1696-019X","2386-3978","COMMUNICATION","('ESCI',)","191","0.5","Q4","0.12","81.74" +"Ekonomska Misao i Praksa-Economic Thought and Practice","1330-1039","1848-963X","ECONOMICS","('ESCI',)","102","0.5","Q4","0.12","98.89" +"International Journal of Grid and Utility Computing","1741-847X","1741-8488","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","156","0.5","Q4","0.12","0.00" +"International Journal of Heavy Vehicle Systems","1744-232X","1741-5152","('ENGINEERING, MECHANICAL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","312","0.5","('Q4', 'Q4')","0.12","0.00" +"International Journal of Manufacturing Materials and Mechanical Engineering","2156-1680","2156-1672","ENGINEERING, MANUFACTURING","('ESCI',)","83","0.5","Q4","0.12","46.15" +"Internet Journal of Allied Health Sciences and Practice","1540-580X","1540-580X","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","319","0.5","Q4","0.12","0.00" +"Istanbul Business Research","","2630-5488","BUSINESS, FINANCE","('ESCI',)","57","0.5","Q4","0.12","57.14" +"Jokull","0449-0576","0449-0576","GEOSCIENCES, MULTIDISCIPLINARY","('SCIE',)","199","0.5","Q4","0.12","0.00" +"Journal of Applied Mechanics and Technical Physics","0021-8944","1573-8620","('MECHANICS', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","1,679","0.5","('Q4', 'Q4')","0.12","0.00" +"Journal of Biomimetics Biomaterials and Biomedical Engineering","2296-9837","2296-9845","ENGINEERING, BIOMEDICAL","('ESCI',)","246","0.5","Q4","0.12","0.00" +"JOURNAL OF COMPUTER AND SYSTEMS SCIENCES INTERNATIONAL","1064-2307","1555-6530","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, CYBERNETICS', 'COMPUTER SCIENCE, THEORY & METHODS')","('SCIE', 'SCIE', 'SCIE')","473","0.5","('Q4', 'Q4', 'Q4')","0.12","0.00" +"Journal of Electrical Systems","1112-5209","1112-5209","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","215","0.5","Q4","0.12","8.84" +"Journal of Friction and Wear","1068-3666","1934-9386","('ENGINEERING, MECHANICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","570","0.5","('Q4', 'Q4')","0.12","0.00" +"Journal of Mathematical and Fundamental Sciences","2337-5760","2337-5760","MULTIDISCIPLINARY SCIENCES","('ESCI',)","174","0.5","Q4","0.12","97.87" +"Jundishapur Journal of Microbiology","2008-3645","2008-4161","MICROBIOLOGY","('SCIE',)","1,275","0.5","Q4","0.12","96.33" +"Medical Journal of Indonesia","0853-1773","2252-8083","MEDICINE, GENERAL & INTERNAL","('ESCI',)","289","0.5","Q3","0.12","100.00" +"NORTHWEST SCIENCE","0029-344X","2161-9859","ECOLOGY","('SCIE',)","691","0.5","Q4","0.12","0.00" +"Optoelectronics Instrumentation and Data Processing","8756-6990","1934-7944","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","365","0.5","Q4","0.12","0.00" +"Pomorstvo-Scientific Journal of Maritime Research","1332-0718","1846-8438","TRANSPORTATION","('ESCI',)","168","0.5","Q4","0.12","100.00" +"Practical Diabetes","2047-2897","2047-2900","ENDOCRINOLOGY & METABOLISM","('ESCI',)","325","0.5","Q4","0.12","2.33" +"REICE-Revista Electronica de Investigacion en Ciencias Economicas","2308-782X","2308-782X","ECONOMICS","('ESCI',)","166","0.5","Q4","0.12","53.09" +"Revista de Derecho Politico","0211-979X","2174-5625","LAW","('ESCI',)","161","0.5","Q3","0.12","0.00" +"Revista de Urbanismo","0717-5051","0717-5051","URBAN STUDIES","('ESCI',)","118","0.5","Q4","0.12","95.16" +"REVUE DES MALADIES RESPIRATOIRES","0761-8425","1776-2588","RESPIRATORY SYSTEM","('SCIE',)","850","0.5","Q4","0.12","42.01" +"Roads and Bridges-Drogi i Mosty","1643-1618","2449-769X","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","161","0.5","Q4","0.12","0.00" +"SAE International Journal of Passenger Vehicle Systems","2770-3460","2770-3479","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","9","0.5","Q4","0.12","0.00" +"Scientia Sinica-Physica Mechanica & Astronomica","1674-7275","2095-9478","('ASTRONOMY & ASTROPHYSICS', 'PHYSICS, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","711","0.5","('Q4', 'Q4')","0.12","0.62" +"Scientific Journals of the Maritime University of Szczecin-Zeszyty Naukowe Akademii Morskiej w Szczecinie","1733-8670","2392-0378","ENGINEERING, MARINE","('ESCI',)","235","0.5","Q4","0.12","0.00" +"Transport Problems","1896-0596","2300-861X","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","308","0.5","Q4","0.12","100.00" +"Activitas Nervosa Superior Rediviva","1337-933X","1338-4015","CLINICAL NEUROLOGY","('ESCI',)","71","0.5","Q4","0.11","0.00" +"Almatourism-Journal of Tourism Culture and Territorial Development","2036-5195","2036-5195","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","107","0.5","Q4","0.11","0.00" +"Architecture Civil Engineering Environment","1899-0142","2720-6947","ENGINEERING, CIVIL","('ESCI',)","228","0.5","Q4","0.11","83.92" +"Carpathian Journal of Food Science and Technology","2066-6845","2344-5459","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","232","0.5","Q4","0.11","92.23" +"Cement Wapno Beton","1425-8129","","('CONSTRUCTION & BUILDING TECHNOLOGY', 'MATERIALS SCIENCE, COMPOSITES')","('SCIE', 'SCIE')","232","0.5","('Q4', 'Q4')","0.11","2.15" +"Central European Journal of Economic Modelling and Econometrics","2080-0886","2080-119X","ECONOMICS","('ESCI',)","51","0.5","Q4","0.11","0.00" +"Epitoanyag-Journal of Silicate Based and Composite Materials","0013-970X","0013-970X","MATERIALS SCIENCE, COMPOSITES","('ESCI',)","145","0.5","Q4","0.11","94.94" +"EQA-International Journal of Environmental Quality","2039-9898","2281-4485","ENVIRONMENTAL SCIENCES","('ESCI',)","108","0.5","Q4","0.11","0.00" +"Feminismo-s","","1989-9998","WOMENS STUDIES","('ESCI',)","147","0.5","Q3","0.11","97.62" +"Geoadria","1331-2294","1848-9710","GEOGRAPHY","('ESCI',)","70","0.5","Q3","0.11","61.90" +"Indian Journal of Rheumatology","0973-3698","0973-3701","RHEUMATOLOGY","('ESCI',)","286","0.5","Q4","0.11","87.50" +"International Journal of Angiology","1061-1711","1615-5939","PERIPHERAL VASCULAR DISEASE","('ESCI',)","747","0.5","Q4","0.11","1.80" +"INTERNATIONAL JOURNAL OF GLOBAL ENERGY ISSUES","0954-7118","1741-5128","ENVIRONMENTAL STUDIES","('ESCI',)","201","0.5","Q4","0.11","0.00" +"International Journal on Smart Sensing and Intelligent Systems","1178-5608","1178-5608","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","378","0.5","Q4","0.11","98.73" +"Izvestiya Vysshikh Uchebnykh Zavedeniy-Prikladnaya Nelineynaya Dinamika","0869-6632","2542-1905","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","120","0.5","Q4","0.11","99.33" +"Journal of Biological Research-Bollettino della Societa Italiana di Biologia Sperimentale","1826-8838","2284-0230","BIOLOGY","('ESCI',)","117","0.5","Q4","0.11","98.39" +"Journal of New Zealand Studies","1176-306X","2324-3740","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","51","0.5","Q3","0.11","92.68" +"JOURNAL OF OPTICAL TECHNOLOGY","1070-9762","1091-0786","OPTICS","('SCIE',)","622","0.5","Q4","0.11","0.00" +"Journal of Planning History","1538-5132","1552-6585","REGIONAL & URBAN PLANNING","('ESCI',)","228","0.5","Q4","0.11","7.89" +"Kinematics and Physics of Celestial Bodies","0884-5913","1934-8401","ASTRONOMY & ASTROPHYSICS","('SCIE',)","178","0.5","Q4","0.11","0.00" +"Nutrition Clinique et Metabolisme","0985-0562","1768-3092","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","129","0.5","('Q4', 'Q4')","0.11","14.04" +"Optoelectronics and Advanced Materials-Rapid Communications","1842-6573","2065-3824","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'OPTICS')","('SCIE', 'SCIE')","662","0.5","('Q4', 'Q4')","0.11","0.00" +"Oxford Medical Case Reports","2053-8855","2053-8855","MEDICINE, GENERAL & INTERNAL","('ESCI',)","575","0.5","Q3","0.11","87.81" +"Paginas de Educacion","1688-5287","1688-7468","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","67","0.5","Q4","0.11","97.50" +"Papeles del CEIC-International Journal on Collective Identity Research","1695-6494","1695-6494","SOCIAL ISSUES","('ESCI',)","119","0.5","Q3","0.11","98.51" +"Pasos-Revista de Turismo y Patrimonio Cultural","1695-7121","1695-7121","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","515","0.5","Q4","0.11","98.39" +"Przeglad Dermatologiczny","0033-2526","2084-9893","DERMATOLOGY","('ESCI',)","188","0.5","Q4","0.11","99.18" +"QUIMICA NOVA","0100-4042","1678-7064","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","4,109","0.5","Q4","0.11","99.15" +"RAE-Revista de Administracao de Empresas","0034-7590","2178-938X","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","674","0.5","('Q4', 'Q4')","0.11","82.82" +"Revista Brasileira de Geomorfologia","1519-1540","2236-5664","GEOGRAPHY, PHYSICAL","('ESCI',)","431","0.5","Q4","0.11","71.27" +"Revista Iberoamericana de Psicologia del Ejercicio y el Deporte","1886-8576","2340-7700","PSYCHOLOGY, APPLIED","('ESCI',)","306","0.5","Q4","0.11","0.00" +"REVISTA MEDICA DE CHILE","0034-9887","0717-6163","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,032","0.5","Q3","0.11","58.94" +"Saude e Sociedade","0104-1290","1984-0470","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SSCI',)","805","0.5","Q4","0.11","90.11" +"Scientific Papers-Series A-Agronomy","2285-5785","2285-5807","AGRONOMY","('ESCI',)","410","0.5","Q4","0.11","0.00" +"SMART-Journal of Business Management Studies","0973-1598","2321-2012","MANAGEMENT","('ESCI',)","52","0.5","Q4","0.11","4.76" +"Thermophysics and Aeromechanics","0869-8643","1531-8699","('ENGINEERING, AEROSPACE', 'ENGINEERING, MECHANICAL', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","637","0.5","('Q4', 'Q4', 'Q4', 'Q4')","0.11","0.00" +"Transinformacao","0103-3786","","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","176","0.5","Q3","0.11","81.08" +"Urologie","2731-7064","2731-7072","UROLOGY & NEPHROLOGY","('SCIE',)","662","0.5","Q4","0.11","21.20" +"AGROCIENCIA","1405-3195","2521-9766","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","829","0.5","Q4","0.10","0.00" +"AMERICAN SCIENTIST","0003-0996","1545-2786","MULTIDISCIPLINARY SCIENCES","('SCIE',)","2,740","0.5","Q4","0.10","0.00" +"ANASTHESIOLOGIE & INTENSIVMEDIZIN","0170-5334","1439-0256","('ANESTHESIOLOGY', 'CRITICAL CARE MEDICINE')","('SCIE', 'SCIE')","323","0.5","('Q4', 'Q4')","0.10","0.00" +"Biotecnia","1665-1456","1665-1456","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('ESCI',)","210","0.5","Q4","0.10","64.95" +"CARIBBEAN JOURNAL OF SCIENCE","0008-6452","0008-6452","BIODIVERSITY CONSERVATION","('SCIE',)","439","0.5","Q4","0.10","0.00" +"Chemija","0235-7216","0235-7216","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","240","0.5","Q4","0.10","33.33" +"Composites Theory and Practice","2084-6096","2299-128X","MATERIALS SCIENCE, COMPOSITES","('ESCI',)","110","0.5","Q4","0.10","0.00" +"Cuaternario y Geomorfologia","0214-1744","0214-1744","GEOLOGY","('ESCI',)","128","0.5","Q4","0.10","96.08" +"Eurasian Chemico-Technological Journal","1562-3920","1562-3920","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","286","0.5","Q4","0.10","82.35" +"EUROPEAN JOURNAL OF GYNAECOLOGICAL ONCOLOGY","0392-2936","2709-0086","('OBSTETRICS & GYNECOLOGY', 'ONCOLOGY')","('SCIE', 'SCIE')","1,091","0.5","('Q4', 'Q4')","0.10","98.21" +"Galen Medical Journal","2588-2767","2322-2379","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","364","0.5","Q4","0.10","62.41" +"International Energy Journal","1513-718X","1513-718X","ENERGY & FUELS","('ESCI',)","247","0.5","Q4","0.10","0.00" +"Journal of Applied Sport Management","2327-0179","2327-0187","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","146","0.5","Q4","0.10","3.92" +"Journal of Health and Safety at Work","2251-807X","2383-2088","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","141","0.5","Q4","0.10","0.00" +"Journal of Research Administration","1539-1590","1539-1590","MANAGEMENT","('ESCI',)","133","0.5","Q4","0.10","0.00" +"Journal of Semiconductor Technology and Science","1598-1657","2233-4866","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'PHYSICS, APPLIED')","('SCIE', 'SCIE')","249","0.5","('Q4', 'Q4')","0.10","0.00" +"Journal of the Japan Institute of Metals and Materials","0021-4876","1880-6880","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","1,082","0.5","Q4","0.10","90.40" +"MEASUREMENT TECHNIQUES","0543-1972","1573-8906","INSTRUMENTS & INSTRUMENTATION","('ESCI',)","774","0.5","Q4","0.10","0.00" +"Neurochemical Journal","1819-7124","1819-7132","NEUROSCIENCES","('SCIE',)","256","0.5","Q4","0.10","3.33" +"Perspectives on Global Development and Technology","1569-1500","1569-1497","DEVELOPMENT STUDIES","('ESCI',)","181","0.5","Q4","0.10","3.17" +"Research and Reviews in Parkinsonism","","2624-3733","CLINICAL NEUROLOGY","('ESCI',)","9","0.5","Q4","0.10","100.00" +"Revista Brasileira de Ciencias Ambientais","1808-4524","2176-9478","('ENVIRONMENTAL SCIENCES', 'ENVIRONMENTAL STUDIES')","('ESCI', 'ESCI')","98","0.5","('Q4', 'Q4')","0.10","99.39" +"Revista Chilena de Nutricion","0717-7518","0717-7518","NUTRITION & DIETETICS","('ESCI',)","549","0.5","Q4","0.10","99.14" +"Romanian Journal of Information Technology and Automatic Control-Revista Romana de Informatica si Automatica","1220-1758","1841-4303","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","78","0.5","Q4","0.10","99.15" +"STAPS-Sciences et Techniques des Activites Physiques et Sportives","0247-106X","1782-1568","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","157","0.5","Q3","0.10","0.00" +"AMERICAN CERAMIC SOCIETY BULLETIN","0002-7812","1945-2705","MATERIALS SCIENCE, CERAMICS","('SCIE',)","894","0.5","Q4","0.09","2.22" +"Boletim Paranaense de Geociencias","0067-964X","0067-964X","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","47","0.5","Q4","0.09","0.00" +"EPIDEMIOLOGIE MIKROBIOLOGIE IMUNOLOGIE","1210-7913","","MICROBIOLOGY","('SCIE',)","132","0.5","Q4","0.09","0.00" +"Ethiopian Journal of Health Development","1021-6790","1021-6790","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE', 'SSCI')","732","0.5","Q4","0.09","0.00" +"FIBRE CHEMISTRY","0015-0541","1573-8493","('CHEMISTRY, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, TEXTILES')","('SCIE', 'SCIE', 'SCIE')","589","0.5","('Q4', 'Q4', 'Q4')","0.09","0.00" +"Inorganic Materials-Applied Research","2075-1133","2075-115X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","627","0.5","Q4","0.09","0.00" +"International Journal of Self-Propagating High-Temperature Synthesis","1061-3862","1934-788X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","377","0.5","Q4","0.09","0.00" +"ISRAEL JOURNAL OF PSYCHIATRY AND RELATED SCIENCES","0333-7308","0333-7308","PSYCHIATRY","('SCIE', 'SSCI')","553","0.5","Q4","0.09","0.00" +"Journal of Ceramic Science and Technology","2190-9385","2190-9385","MATERIALS SCIENCE, CERAMICS","('SCIE',)","482","0.5","Q4","0.09","0.00" +"JOURNAL OF THE AMERICAN PODIATRIC MEDICAL ASSOCIATION","8750-7315","1930-8264","ORTHOPEDICS","('SCIE',)","1,830","0.5","Q4","0.09","0.00" +"Journal of Water Chemistry and Technology","1063-455X","1934-936X","('CHEMISTRY, ANALYTICAL', 'CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL')","('SCIE', 'SCIE', 'SCIE')","380","0.5","('Q4', 'Q4', 'Q4')","0.09","0.00" +"Life Span and Disability","1721-0151","2035-5963","RESPIRATORY SYSTEM","('ESCI',)","102","0.5","Q4","0.09","0.00" +"Parallel Processing Letters","0129-6264","1793-642X","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","181","0.5","Q4","0.09","1.59" +"Pharmacy & Pharmacology-Farmatsiya i Farmakologiya","2307-9266","2413-2241","PHARMACOLOGY & PHARMACY","('ESCI',)","345","0.5","Q4","0.09","98.35" +"Psychiatry and Behavioral Sciences","","2636-834X","PSYCHIATRY","('ESCI',)","70","0.5","Q4","0.09","45.92" +"PTERIDINES","0933-4807","2195-4720","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","136","0.5","('Q4', 'Q4')","0.09","88.46" +"QED-A Journal in GLBTQ Worldmaking","2327-1574","2327-1590","SOCIAL ISSUES","('ESCI',)","176","0.5","Q3","0.09","0.00" +"Revista Bio Ciencias","2007-3380","2007-3380","BIOLOGY","('ESCI',)","125","0.5","Q4","0.09","82.35" +"Revista de la Facultad de Agronomia de la Universidad del Zulia","0378-7818","2477-9407","AGRONOMY","('SCIE',)","186","0.5","Q4","0.09","79.14" +"UCJC Business and Society Review","2659-3270","2659-3270","BUSINESS","('ESCI',)","24","0.5","Q4","0.09","0.00" +"Chemical and Process Engineering-New Frontiers","0208-6425","2300-1925","ENGINEERING, CHEMICAL","('SCIE',)","290","0.5","Q4","0.08","96.40" +"e-Journal of Surface Science and Nanotechnology","1348-0391","1348-0391","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","364","0.5","Q4","0.08","90.98" +"Electronics and Communications in Japan","1942-9533","1942-9541","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","380","0.5","Q4","0.08","0.83" +"Etic net-Revista Cientifica Electronica de Educacion y Comunicacion en la Sociedad del Conocimiento","1695-324X","1695-324X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","49","0.5","Q4","0.08","87.10" +"Gradevnski Materijiali I Konstrukcije-Building Materials and Structures","2217-8139","2217-8139","ENGINEERING, CIVIL","('ESCI',)","48","0.5","Q4","0.08","100.00" +"INDIAN JOURNAL OF CHEMICAL TECHNOLOGY","0971-457X","0975-0991","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","787","0.5","('Q4', 'Q4')","0.08","0.00" +"Ingenieria y Competitividad","0123-3033","0123-3033","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","133","0.5","Q4","0.08","37.38" +"International Journal of Innovation","2318-9975","2318-9975","BUSINESS","('ESCI',)","195","0.5","Q4","0.08","73.75" +"International Journal of Manufacturing Research","1750-0591","1750-0605","('ENGINEERING, INDUSTRIAL', 'ENGINEERING, MANUFACTURING')","('ESCI', 'ESCI')","177","0.5","('Q4', 'Q4')","0.08","9.84" +"INTERNATIONAL JOURNAL OF MATERIALS & PRODUCT TECHNOLOGY","0268-1900","1741-5209","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","530","0.5","Q4","0.08","0.00" +"Journal of Chemistry and Technologies","2663-2934","2663-2942","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","121","0.5","Q4","0.08","97.69" +"Journal of Historical Research in Marketing","1755-750X","1755-7518","BUSINESS","('ESCI',)","207","0.5","Q4","0.08","12.77" +"Journal of Regional and City Planning","2502-6429","2502-6429","REGIONAL & URBAN PLANNING","('ESCI',)","102","0.5","Q4","0.08","92.16" +"Journal of Siberian Federal University-Chemistry","1998-2836","2313-6049","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","184","0.5","Q4","0.08","0.00" +"Journal of Surface Investigation","1027-4510","1819-7094","PHYSICS, CONDENSED MATTER","('ESCI',)","992","0.5","Q4","0.08","0.00" +"Plasmatology","2634-8535","2634-8535","HEMATOLOGY","('ESCI',)","11","0.5","Q4","0.08","100.00" +"Quaderni di Geofisica","1590-2595","1590-2595","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","35","0.5","Q4","0.08","0.00" +"Revista de Estudios Politicos","0048-7694","1989-0613","POLITICAL SCIENCE","('SSCI',)","423","0.5","Q4","0.08","96.43" +"Sudan Journal of Medical Sciences","","1858-5051","MEDICINE, GENERAL & INTERNAL","('ESCI',)","146","0.5","Q3","0.08","97.10" +"Acciones e Investigaciones Sociales","1132-192X","2340-4507","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","41","0.5","Q3","0.07","93.75" +"Bulgarian Journal of Agricultural Science","1310-0351","1310-0351","ENVIRONMENTAL SCIENCES","('ESCI',)","1,339","0.5","Q4","0.07","0.00" +"Chemistry Journal of Moldova","1857-1727","2345-1688","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","152","0.5","Q4","0.07","95.00" +"Desafios","0124-4035","2145-5112","POLITICAL SCIENCE","('ESCI',)","101","0.5","Q4","0.07","94.83" +"International Journal of Environment and Waste Management","1478-9876","1478-9868","('ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('ESCI', 'ESCI')","398","0.5","('Q4', 'Q4')","0.07","0.00" +"Korean Chemical Engineering Research","0304-128X","2233-9558","ENGINEERING, CHEMICAL","('ESCI',)","408","0.5","Q4","0.07","0.00" +"Materia-Rio de Janeiro","1517-7076","1517-7076","MATERIALS SCIENCE, MULTIDISCIPLINARY","('SCIE',)","999","0.5","Q4","0.07","93.62" +"Revista Argentina de Ciencias del Comportamiento","1852-4206","1852-4206","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","186","0.5","Q4","0.07","1.15" +"Revue Francaise d Allergologie","1877-0320","","ALLERGY","('SCIE',)","384","0.5","Q4","0.07","31.82" +"South African Journal of Industrial Engineering","1012-277X","2224-7890","ENGINEERING, INDUSTRIAL","('SCIE',)","443","0.5","Q4","0.07","98.39" +"Sri Lanka Journal of Social Sciences","0258-9710","2478-1169","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","51","0.5","Q3","0.07","95.35" +"Studia Universitatis Babes-Bolyai Chemia","1224-7154","","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","373","0.5","Q4","0.07","78.54" +"Advances in Energy Research","2287-6316","2287-6324","ENERGY & FUELS","('ESCI',)","55","0.5","Q4","0.06","0.00" +"ARCHIVOS LATINOAMERICANOS DE NUTRICION","0004-0622","2309-5806","NUTRITION & DIETETICS","('SCIE',)","559","0.5","Q4","0.06","97.85" +"Composites Research","2288-2103","2288-2111","MATERIALS SCIENCE, COMPOSITES","('ESCI',)","232","0.5","Q4","0.06","0.00" +"Environment Protection Engineering","0324-8828","","ENGINEERING, ENVIRONMENTAL","('SCIE',)","399","0.5","Q4","0.06","0.00" +"Hungarian Journal of Industry and Chemistry","0133-0276","0133-0276","ENGINEERING, CHEMICAL","('ESCI',)","132","0.5","Q4","0.06","100.00" +"International Journal of Business","1083-4346","1083-4346","BUSINESS","('ESCI',)","219","0.5","Q4","0.06","0.00" +"MILITARY OPERATIONS RESEARCH","1082-5983","2163-2758","OPERATIONS RESEARCH & MANAGEMENT SCIENCE","('SCIE',)","142","0.5","Q4","0.06","0.00" +"Nanobiotechnology Reports","2635-1676","2635-1684","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","131","0.5","Q4","0.06","3.84" +"Revista Mexicana de Neurociencia","1665-5044","1665-5044","CLINICAL NEUROLOGY","('ESCI',)","92","0.5","Q4","0.06","98.80" +"Territorios","0123-8418","2215-7484","URBAN STUDIES","('ESCI',)","163","0.5","Q4","0.06","83.70" +"BULLETIN MONUMENTAL","0007-473X","","('ARCHAEOLOGY', 'ARCHITECTURE')","('AHCI', 'AHCI')","114","0.5","('N/A', 'N/A')","0.05","0.00" +"INTERNATIONAL JOURNAL OF ENVIRONMENT AND POLLUTION","0957-4352","1741-5101","ENVIRONMENTAL SCIENCES","('SCIE',)","790","0.5","Q4","0.05","0.00" +"International Journal of Environmental Technology and Management","1466-2132","1741-511X","ENGINEERING, ENVIRONMENTAL","('ESCI',)","298","0.5","Q4","0.05","0.00" +"International Journal of Geotechnical Earthquake Engineering","1947-8488","1947-8496","ENGINEERING, GEOLOGICAL","('ESCI',)","68","0.5","Q4","0.05","13.64" +"NAUTILUS","0028-1344","0028-1344","('MARINE & FRESHWATER BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","352","0.5","('Q4', 'Q4')","0.05","0.00" +"Podium-Sport Leisure and Tourism Review","2316-932X","2316-932X","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","81","0.5","Q4","0.05","100.00" +"Revista Iteckne","1692-1798","2339-3483","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","36","0.5","Q4","0.05","87.88" +"Revue Internationale PME","0776-5436","0776-5436","BUSINESS","('ESCI',)","109","0.5","Q4","0.05","0.00" +"Transition","0041-1191","1527-8042","ETHNIC STUDIES","('ESCI',)","254","0.5","Q4","0.05","0.00" +"Cuadernos de Desarrollo Rural","0122-1450","2215-7727","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","148","0.5","Q4","0.04","93.33" +"PHYSICS WORLD","0953-8585","2058-7058","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","656","0.5","Q4","0.04","0.00" +"Revista de Educacion y Derecho-Educational and Law Review","2013-584X","2386-4885","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","73","0.5","Q4","0.04","14.44" +"Zona Proxima","1657-2416","2145-9444","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","59","0.5","Q4","0.04","0.00" +"Culturales","1870-1191","2448-539X","SOCIOLOGY","('ESCI',)","51","0.5","Q4","0.03","92.31" +"Pharmaceutical Care Espana","1139-6202","1139-6202","PHARMACOLOGY & PHARMACY","('ESCI',)","62","0.5","Q4","0.03","13.79" +"Eria-Revista cuatrimestral de Geografia","0211-0563","0211-0563","GEOGRAPHY","('ESCI',)","132","0.5","Q3","0.02","0.00" +"Gestao e Desenvolvimento","1807-5436","2446-6875","BUSINESS","('ESCI',)","88","0.5","Q4","0.01","98.57" +"Region et Developpement","1267-5059","2117-0843","ECONOMICS","('ESCI',)","115","0.5","Q4","0.01","0.00" +"MILTON QUARTERLY","0026-4326","1094-348X","POETRY","('AHCI',)","93","0.4","","3.09","12.50" +"Literator-Journal of Literary Criticism Comparative Linguistics and Literary Studies","0258-2279","2219-8237","LITERARY THEORY & CRITICISM","('ESCI',)","76","0.4","","2.93","100.00" +"NEW GERMAN CRITIQUE","0094-033X","1558-1462","LITERARY THEORY & CRITICISM","('AHCI',)","901","0.4","","2.87","0.00" +"Studia Aurea-Revista de Literatura Espanola y Teoria Literaria del Renacimiento y Siglo de Oro","1988-1088","1988-1088","LITERATURE, ROMANCE","('ESCI',)","82","0.4","","2.44","98.41" +"Journal of Medieval Iberian Studies","1754-6559","1754-6567","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","143","0.4","","2.41","18.57" +"Comedia Performance","1553-6505","2572-4428","('LITERATURE, ROMANCE', 'THEATER')","('ESCI', 'ESCI')","11","0.4","('N/A', 'N/A')","2.40","0.00" +"Urban History","0963-9268","1469-8706","HISTORY","('AHCI',)","407","0.4","Q1","2.13","49.66" +"TDR-The Drama Review-The Journal of Performance Studies","1054-2043","1531-4715","THEATER","('AHCI',)","637","0.4","","2.05","19.86" +"TRADITIO-STUDIES IN ANCIENT AND MEDIEVAL HISTORY THOUGHT AND RELIGION","0362-1529","2166-5508","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","331","0.4","","2.00","33.33" +"Partial Answers-Journal of Literature and the History of Ideas","1565-3668","1936-9247","LITERARY THEORY & CRITICISM","('AHCI',)","108","0.4","","1.94","0.00" +"Cormac McCarthy Journal","2333-3073","2333-3065","LITERATURE, AMERICAN","('ESCI',)","53","0.4","","1.91","3.45" +"Journal of World Literature","2405-6472","2405-6480","LITERATURE","('ESCI',)","141","0.4","","1.85","22.99" +"DEUTSCHE VIERTELJAHRSSCHRIFT FUR LITERATURWISSENSCHAFT UND GEISTESGESCHICHTE","0012-0936","2365-9521","LITERARY THEORY & CRITICISM","('AHCI',)","444","0.4","","1.84","70.54" +"DESIGN ISSUES","0747-9360","1531-4790","ARCHITECTURE","('AHCI',)","1,051","0.4","","1.70","5.56" +"STUDIES IN ROMANTICISM","0039-3762","2330-118X","LITERATURE","('AHCI',)","346","0.4","","1.66","0.00" +"Journal of Early Modern Studies","2279-7149","2279-7149","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","34","0.4","","1.63","35.29" +"JOURNAL OF MEDIEVAL AND EARLY MODERN STUDIES","1082-9636","","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","383","0.4","","1.58","0.00" +"Law & Literature","1535-685X","1541-2601","LITERATURE","('AHCI',)","199","0.4","","1.58","25.00" +"Theatre Dance and Performance Training","1944-3927","1944-3919","('DANCE', 'THEATER')","('AHCI', 'AHCI')","118","0.4","('N/A', 'N/A')","1.55","22.94" +"DANCE RESEARCH JOURNAL","0149-7677","1940-509X","DANCE","('AHCI',)","314","0.4","","1.54","25.00" +"DIPLOMATIC HISTORY","0145-2096","1467-7709","HISTORY","('AHCI', 'SSCI')","905","0.4","Q1","1.47","17.54" +"Eighteenth-Century Fiction","0840-6286","1911-0243","LITERATURE","('AHCI',)","285","0.4","","1.46","0.00" +"COMPARATIVE LITERATURE STUDIES","0010-4132","1528-4212","LITERATURE","('AHCI',)","330","0.4","","1.44","0.00" +"JOURNAL OF FOLKLORE RESEARCH","0737-7037","1543-0413","FOLKLORE","('AHCI',)","204","0.4","","1.44","0.00" +"MODERN DRAMA","0026-7694","1712-5286","THEATER","('AHCI',)","215","0.4","","1.44","0.00" +"Cold War History","1468-2745","1743-7962","HISTORY","('AHCI', 'SSCI')","389","0.4","Q1","1.43","18.07" +"Journal of the Philosophy of History","1872-261X","1872-2636","('HISTORY', 'PHILOSOPHY')","('AHCI', 'AHCI')","128","0.4","('Q1', 'N/A')","1.42","18.87" +"MNEMOSYNE","0026-7074","1568-525X","CLASSICS","('AHCI',)","861","0.4","","1.42","22.93" +"THEATRE NOTEBOOK","0040-5523","2051-8358","THEATER","('AHCI',)","68","0.4","","1.42","0.00" +"ARIEL-A REVIEW OF INTERNATIONAL ENGLISH LITERATURE","0004-1327","1920-1222","LITERATURE","('AHCI',)","256","0.4","","1.41","0.00" +"Music Theory Online","1067-3040","1067-3040","MUSIC","('AHCI',)","320","0.4","","1.36","31.63" +"JOURNAL OF VISUAL CULTURE","1470-4129","1741-2994","('ART', 'CULTURAL STUDIES')","('AHCI', 'AHCI, SSCI')","366","0.4","('N/A', 'Q3')","1.33","20.41" +"Tydskrif vir letterkunde","0041-476X","","LITERATURE","('AHCI',)","83","0.4","","1.33","98.59" +"ENGLISH","0013-8215","1756-1124","LITERATURE","('AHCI',)","98","0.4","","1.31","25.76" +"Islam and Christian-Muslim Relations","0959-6410","1469-9311","RELIGION","('AHCI',)","266","0.4","","1.30","20.45" +"Journal of Contemporary Drama in English","2195-0156","2195-0164","THEATER","('ESCI',)","47","0.4","","1.29","20.00" +"Eastern African Literary and Cultural Studies","2327-7408","2327-7416","('HUMANITIES, MULTIDISCIPLINARY', 'LITERATURE, AFRICAN, AUSTRALIAN, CANADIAN')","('ESCI', 'ESCI')","44","0.4","('N/A', 'N/A')","1.28","9.80" +"SOUTH AFRICAN HISTORICAL JOURNAL","0258-2473","1726-1686","HISTORY","('AHCI', 'SSCI')","336","0.4","Q1","1.26","11.11" +"Ab Imperio-Studies of New Imperial History and Nationalism in the Post-Soviet Space","2166-4072","2164-9731","HISTORY","('AHCI',)","318","0.4","Q1","1.25","0.00" +"ART BULLETIN","0004-3079","1559-6478","ART","('AHCI',)","951","0.4","","1.25","0.00" +"Critical Historical Studies","2326-4462","2326-4470","HISTORY","('ESCI',)","192","0.4","Q1","1.22","0.00" +"JOURNAL OF PACIFIC HISTORY","0022-3344","1469-9605","HISTORY","('AHCI',)","353","0.4","Q1","1.22","16.67" +"Shakespeare","1745-0918","1745-0926","('LITERATURE, BRITISH ISLES', 'THEATER')","('AHCI', 'AHCI')","165","0.4","('N/A', 'N/A')","1.18","21.00" +"PACIFIC HISTORICAL REVIEW","0030-8684","","HISTORY","('AHCI',)","561","0.4","Q1","1.17","1.82" +"Modern Italy","1353-2944","1469-9877","('AREA STUDIES', 'HISTORY')","('SSCI', 'AHCI, SSCI')","205","0.4","('Q3', 'Q1')","1.16","65.22" +"Sound Studies","2055-1940","2055-1959","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","71","0.4","","1.13","17.07" +"Sport History Review","1087-1659","1543-2947","HISTORY","('AHCI',)","60","0.4","Q1","1.11","0.00" +"HISTORIA-ZEITSCHRIFT FUR ALTE GESCHICHTE","0018-2311","0018-2311","HISTORY","('AHCI',)","541","0.4","Q1","1.10","0.00" +"JOURNAL OF HISTORICAL SOCIOLOGY","0952-1909","1467-6443","('ANTHROPOLOGY', 'HISTORY', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","686","0.4","('Q3', 'Q1', 'Q4')","1.09","20.51" +"Journal of Muslim Minority Affairs","1360-2004","1469-9591","RELIGION","('ESCI',)","471","0.4","","1.06","12.50" +"HOLOCAUST AND GENOCIDE STUDIES","8756-6583","1476-7937","HISTORY","('AHCI',)","197","0.4","Q1","1.05","19.67" +"Acta Neophilologica","0567-784X","2350-417X","LITERATURE","('ESCI',)","37","0.4","","1.04","100.00" +"Aramaic Studies","1477-8351","1745-5227","RELIGION","('ESCI',)","61","0.4","","1.03","8.82" +"MODERN PHILOLOGY","0026-8232","1545-6951","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","430","0.4","('N/A', 'N/A')","1.03","0.00" +"CENTRAL EUROPEAN HISTORY","0008-9389","1569-1616","HISTORY","('AHCI', 'SSCI')","400","0.4","Q1","1.02","33.78" +"JOURNAL FOR THE STUDY OF RELIGIONS AND IDEOLOGIES","1583-0039","1583-0039","RELIGION","('AHCI',)","132","0.4","","1.02","0.00" +"Journal of Screenwriting","1759-7137","1759-7145","('FILM, RADIO, TELEVISION', 'LITERATURE')","('AHCI', 'AHCI')","79","0.4","('N/A', 'N/A')","1.01","0.00" +"Religion & Education","1550-7394","1949-8381","RELIGION","('ESCI',)","108","0.4","","1.00","26.32" +"RELIGIOUS EDUCATION","0034-4087","1547-3201","RELIGION","('AHCI',)","312","0.4","","1.00","6.54" +"RHETORICA-A JOURNAL OF THE HISTORY OF RHETORIC","0734-8584","1533-8541","('HISTORY', 'LITERATURE')","('AHCI', 'AHCI')","207","0.4","('Q1', 'N/A')","1.00","0.00" +"Journal of Urban Culture Research","2228-8279","2408-1213","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","73","0.4","","0.99","0.00" +"LEONARDO","0024-094X","1530-9282","ART","('AHCI',)","1,129","0.4","","0.99","9.24" +"PAPERS OF THE BIBLIOGRAPHICAL SOCIETY OF AMERICA","0006-128X","2377-6528","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","166","0.4","","0.98","2.04" +"Philosophy and Cosmology-Filosofiya i Kosmologiya","2307-3705","2518-1866","PHILOSOPHY","('ESCI',)","52","0.4","","0.98","100.00" +"Revista de Cancioneros Impresos y Manuscritos","2254-7444","2254-7444","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","19","0.4","","0.97","61.11" +"Journal for the Study of Religion Nature and Culture","1749-4907","1749-4915","RELIGION","('ESCI',)","189","0.4","","0.94","1.89" +"Journal of the Gilded Age and Progressive Era","1537-7814","1943-3557","HISTORY","('AHCI', 'SSCI')","197","0.4","Q1","0.94","16.92" +"Conservar Patrimonio","1646-043X","2182-9942","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","93","0.4","","0.93","96.97" +"International Journal of Applied Psychoanalytic Studies","1742-3341","1556-9187","PSYCHOLOGY, PSYCHOANALYSIS","('ESCI',)","223","0.4","Q3","0.92","17.14" +"Transfers-Interdisciplinary Journal of Mobility Studies","2045-4813","2045-4821","HISTORY","('ESCI',)","126","0.4","Q1","0.92","0.00" +"WORD-JOURNAL OF THE INTERNATIONAL LINGUISTIC ASSOCIATION","0043-7956","2373-5112","LINGUISTICS","('ESCI',)","739","0.4","Q4","0.92","6.00" +"VITRUVIO-International Journal of Architectural Technology and Sustainability","2444-9091","2444-9091","ARCHITECTURE","('ESCI',)","57","0.4","","0.91","89.71" +"Logica Universalis","1661-8297","1661-8300","LOGIC","('SCIE',)","148","0.4","Q4","0.90","24.32" +"Nordic Journal of Religion and Society","0809-7291","1890-7008","RELIGION","('AHCI',)","117","0.4","","0.90","0.00" +"Studies in Australasian Cinema","1750-3175","1750-3183","FILM, RADIO, TELEVISION","('ESCI',)","84","0.4","","0.89","40.74" +"Annales-Anali za Istrske in Mediteranske Studije-Series Historia et Sociologia","1408-5348","2591-1775","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","146","0.4","","0.88","0.00" +"Emotions-History Culture Society","2206-7485","2208-522X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","297","0.4","","0.88","28.26" +"Law Culture and the Humanities","1743-8721","1743-9752","LAW","('ESCI',)","256","0.4","Q3","0.88","15.32" +"JEWISH QUARTERLY REVIEW","0021-6682","1553-0604","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","600","0.4","","0.87","0.00" +"JOURNAL OF SOUTHEAST ASIAN STUDIES","0022-4634","1474-0680","('AREA STUDIES', 'ASIAN STUDIES')","('SSCI', 'AHCI')","608","0.4","('Q3', 'N/A')","0.87","4.29" +"METAPHILOSOPHY","0026-1068","1467-9973","PHILOSOPHY","('AHCI',)","795","0.4","","0.87","31.97" +"LION AND THE UNICORN","0147-2593","1080-6563","LITERATURE","('AHCI',)","154","0.4","","0.86","0.00" +"SOUTHEASTERN EUROPE","0094-4467","1876-3332","AREA STUDIES","('ESCI',)","112","0.4","Q3","0.86","5.13" +"Erasmus Studies","0276-2854","1874-9275","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","25","0.4","","0.85","15.00" +"Fashion Style & Popular Culture","2050-0726","2050-0734","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","93","0.4","","0.85","7.41" +"SOUTHERN CULTURES","1068-8218","1534-1488","HISTORY","('AHCI',)","164","0.4","Q1","0.85","0.00" +"Historia Agraria","1139-1472","2340-3659","HISTORY","('AHCI', 'SSCI')","237","0.4","Q1","0.84","91.03" +"International Journal of Conflict and Violence","1864-1385","1864-1385","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","319","0.4","('Q4', 'Q4')","0.84","0.00" +"Journal of Anglican Studies","1740-3553","1745-5278","RELIGION","('AHCI',)","56","0.4","","0.84","34.38" +"Journal of Modern Jewish Studies","1472-5886","1472-5894","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","174","0.4","","0.84","16.67" +"Dutch Crossing-Journal of Low Countries Studies","0309-6564","1759-7854","('HISTORY', 'HUMANITIES, MULTIDISCIPLINARY')","('AHCI, SSCI', 'AHCI')","49","0.4","('Q1', 'N/A')","0.83","39.39" +"JOURNAL OF AESTHETIC EDUCATION","0021-8510","1543-7809","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","461","0.4","","0.83","0.00" +"JOURNAL OF INDIAN PHILOSOPHY","0022-1791","1573-0395","('ASIAN STUDIES', 'PHILOSOPHY')","('AHCI', 'AHCI')","422","0.4","('N/A', 'N/A')","0.83","28.72" +"Positions-Asia Critique","1067-9847","1527-8271","ASIAN STUDIES","('AHCI',)","265","0.4","","0.83","0.99" +"Practical Theology","1756-073X","1756-0748","RELIGION","('ESCI',)","150","0.4","","0.83","26.72" +"Sungkyun Journal of East Asian Studies","1598-2661","","ASIAN STUDIES","('AHCI',)","50","0.4","","0.83","100.00" +"International Journal of Public Theology","1872-5171","1569-7320","RELIGION","('AHCI',)","92","0.4","","0.82","11.11" +"Studia Historica-Historia Medieval","0213-2060","0213-2060","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","137","0.4","","0.82","92.45" +"Skhidnoievropeiskyi Istorychnyi Visnyk-East European Historical Bulletin","2519-058X","2519-058X","HISTORY","('ESCI',)","141","0.4","Q1","0.81","99.58" +"Contributions to the History of Concepts","1807-9326","1874-656X","HISTORY","('ESCI',)","145","0.4","Q1","0.80","0.00" +"Journal of Australian Studies","1444-3058","1835-6419","('AREA STUDIES', 'CULTURAL STUDIES', 'HISTORY')","('SSCI', 'AHCI, SSCI', 'AHCI, SSCI')","483","0.4","('Q3', 'Q3', 'Q1')","0.80","28.32" +"WESTERN HISTORICAL QUARTERLY","0043-3810","1939-8603","HISTORY","('AHCI',)","340","0.4","Q1","0.80","0.00" +"European Journal for Philosophy of Religion","1689-8311","1689-8311","('PHILOSOPHY', 'RELIGION')","('AHCI', 'AHCI')","136","0.4","('N/A', 'N/A')","0.79","0.00" +"Religion and Theology-A Journal of Contemporary Religious Discourse","1023-0807","1574-3012","RELIGION","('ESCI',)","88","0.4","","0.79","4.44" +"VSWG-Vierteljahrschrift fur Sozial-und Wirtschaftsgeschichte","0340-8728","0340-8728","HISTORY","('ESCI',)","218","0.4","Q1","0.79","0.00" +"Mission Studies","0168-9789","1573-3831","RELIGION","('ESCI',)","52","0.4","","0.77","17.39" +"AGRICULTURAL HISTORY","0002-1482","1533-8290","('HISTORY', 'HISTORY & PHILOSOPHY OF SCIENCE')","('AHCI, SSCI', 'AHCI, SCIE, SSCI')","644","0.4","('Q1', 'Q3')","0.75","1.69" +"AMERASIA JOURNAL","0044-7471","0044-7471","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","319","0.4","","0.75","3.39" +"JOURNAL OF RELIGION","0022-4189","1549-6538","RELIGION","('AHCI',)","391","0.4","","0.75","0.00" +"PHRONESIS-A JOURNAL FOR ANCIENT PHILOSOPHY","0031-8868","1568-5284","PHILOSOPHY","('AHCI',)","601","0.4","","0.75","13.95" +"Journal for the Cognitive Science of Religion","2049-7555","2049-7563","RELIGION","('ESCI',)","59","0.4","","0.74","0.00" +"MEXICAN STUDIES-ESTUDIOS MEXICANOS","0742-9797","","HISTORY","('AHCI',)","132","0.4","Q1","0.73","0.00" +"HARVARD CIVIL RIGHTS-CIVIL LIBERTIES LAW REVIEW","0017-8039","1943-5061","LAW","('SSCI',)","503","0.4","Q3","0.72","0.00" +"Reti Saperi Linguaggi-Italian Journal of Cognitive Sciences","1826-8889","2279-7777","PHILOSOPHY","('ESCI',)","46","0.4","","0.72","0.00" +"Journal of Al-Tamaddun","1823-7517","1823-7517","RELIGION","('ESCI',)","84","0.4","","0.71","78.35" +"ACTA MUSICOLOGICA","0001-6241","","MUSIC","('AHCI',)","113","0.4","","0.70","0.00" +"ISRAEL LAW REVIEW","0021-2237","2047-9336","LAW","('ESCI',)","287","0.4","Q3","0.70","54.24" +"Journal for the Study of the Pseudepigrapha","0951-8207","1745-5286","RELIGION","('ESCI',)","148","0.4","","0.70","28.30" +"EIGHTEENTH-CENTURY STUDIES","0013-2586","1086-315X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","566","0.4","","0.69","1.18" +"Afkar-Jurnal Akidah & Pemikiran Islam-Journal of Aqidah & Islamic Thought","1511-8819","2550-1755","RELIGION","('ESCI',)","62","0.4","","0.68","44.30" +"Faith and Philosophy","0739-7046","2153-3393","('PHILOSOPHY', 'RELIGION')","('ESCI', 'ESCI')","310","0.4","('N/A', 'N/A')","0.68","19.35" +"JOURNAL OF FAMILY HISTORY","0363-1990","1552-5473","('ANTHROPOLOGY', 'FAMILY STUDIES', 'HISTORY', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI', 'SSCI', 'SSCI')","426","0.4","('Q3', 'Q4', 'Q1', 'Q3')","0.68","14.71" +"Approaching Religion","1799-3121","1799-3121","RELIGION","('ESCI',)","55","0.4","","0.67","98.44" +"International Journal of Islamic Thought","2232-1314","2289-6023","RELIGION","('ESCI',)","87","0.4","","0.67","100.00" +"International Journal of Persian Literature","2376-5739","2376-5755","('ASIAN STUDIES', 'LITERATURE')","('ESCI', 'ESCI')","17","0.4","('N/A', 'N/A')","0.67","0.00" +"MUSIC & LETTERS","0027-4224","1477-4631","MUSIC","('AHCI',)","311","0.4","","0.67","26.09" +"Muziki-Journal of Music Research in Africa","1812-5980","1753-593X","MUSIC","('ESCI',)","62","0.4","","0.67","0.00" +"JOURNAL OF JEWISH STUDIES","0022-2097","0022-2097","RELIGION","('AHCI',)","415","0.4","","0.66","0.00" +"JOURNAL OF THE HISTORY OF SEXUALITY","1043-4070","1535-3605","('HISTORY', 'SOCIOLOGY')","('AHCI, SSCI', 'SSCI')","545","0.4","('Q1', 'Q4')","0.66","0.00" +"Luxury-History Culture Consumption","2051-1817","2051-1825","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","33","0.4","","0.66","41.94" +"PHILOSOPHY EAST & WEST","0031-8221","1529-1898","('ASIAN STUDIES', 'PHILOSOPHY')","('AHCI', 'AHCI')","874","0.4","('N/A', 'N/A')","0.66","0.00" +"Review of Law & Economics","2194-6000","1555-5879","LAW","('ESCI',)","175","0.4","Q3","0.66","12.28" +"Aboriginal History","0314-8769","1837-9389","HISTORY","('ESCI',)","179","0.4","Q1","0.65","40.00" +"JOURNAL OF PSYCHOLOGY AND THEOLOGY","0091-6471","2328-1162","('PSYCHOLOGY, MULTIDISCIPLINARY', 'RELIGION')","('SSCI', 'AHCI')","645","0.4","('Q4', 'N/A')","0.65","7.37" +"Theology & Sexuality","1355-8358","1745-5170","RELIGION","('ESCI',)","88","0.4","","0.65","19.05" +"Problemy Muzykalnoi Nauki-Music Scholarship","2782-358X","2782-3598","MUSIC","('ESCI',)","108","0.4","","0.64","97.45" +"Culture & History Digital Journal","2253-797X","2253-797X","HISTORY","('AHCI', 'SSCI')","91","0.4","Q1","0.63","95.52" +"Journal of Landscape Architecture","1862-6033","2164-604X","ARCHITECTURE","('AHCI',)","217","0.4","","0.63","9.76" +"EUROPEAN HISTORY QUARTERLY","0265-6914","1461-7110","('HISTORY', 'POLITICAL SCIENCE')","('AHCI, SSCI', 'SSCI')","298","0.4","('Q1', 'Q4')","0.62","37.50" +"Intellectual Discourse","0128-4878","2289-5639","RELIGION","('ESCI',)","208","0.4","","0.62","0.00" +"Journal of Policy History","0898-0306","1528-4190","('HISTORY', 'POLITICAL SCIENCE')","('AHCI, SSCI', 'SSCI')","276","0.4","('Q1', 'Q4')","0.62","15.79" +"Architectural Histories","2050-5833","2050-5833","ARCHITECTURE","('ESCI',)","81","0.4","","0.61","100.00" +"Atlantis-Journal of the Spanish Association of Anglo-American Studies","0210-6124","1989-6840","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'LITERATURE')","('AHCI', 'SSCI', 'AHCI')","218","0.4","('N/A', 'Q4', 'N/A')","0.61","98.36" +"Environmental and Planning Law Journal","0813-300X","0813-300X","LAW","('ESCI',)","135","0.4","Q3","0.61","0.00" +"Journal of Religion in Europe","1874-8910","1874-8929","RELIGION","('ESCI',)","76","0.4","","0.61","5.77" +"PSYCHOANALYTIC INQUIRY","0735-1690","1940-9133","PSYCHOLOGY, PSYCHOANALYSIS","('SSCI',)","552","0.4","Q3","0.61","1.39" +"Apeiron-A Journal for Ancient Philosophy and Science","0003-6390","2156-7093","PHILOSOPHY","('ESCI',)","222","0.4","","0.60","10.71" +"Canadian Journal of Law and Jurisprudence","0841-8209","2056-4260","LAW","('ESCI',)","222","0.4","Q3","0.60","41.79" +"Journal of Aesthetics & Culture","2000-4214","2000-4214","('CULTURAL STUDIES', 'HUMANITIES, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","136","0.4","('Q3', 'N/A')","0.60","100.00" +"Journal of Applied Logics-IfCoLoG Journal of Logics and their Applications","2631-9810","2631-9829","LOGIC","('ESCI',)","185","0.4","Q4","0.60","0.00" +"Journal of Popular Television","2046-9861","2046-987X","FILM, RADIO, TELEVISION","('ESCI',)","62","0.4","","0.60","0.00" +"Algebra and Logic","0002-5232","1573-8302","('LOGIC', 'MATHEMATICS')","('SCIE', 'SCIE')","626","0.4","('Q4', 'Q4')","0.59","0.00" +"European Journal of Cultural Management and Policy","2663-5771","2663-5771","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","13","0.4","","0.59","60.00" +"Financial History Review","0968-5650","1474-0052","HISTORY OF SOCIAL SCIENCES","('ESCI',)","194","0.4","Q3","0.59","47.62" +"Investigaciones de Historia Economica","1698-6989","2340-3373","('ECONOMICS', 'HISTORY')","('ESCI', 'ESCI')","135","0.4","('Q4', 'Q1')","0.58","88.71" +"Occasional Papers on Religion in Eastern Europe","","1069-4781","RELIGION","('ESCI',)","97","0.4","","0.58","0.00" +"Psychoanalytic Study of the Child","0079-7308","2474-3356","('PSYCHIATRY', 'PSYCHOLOGY, PSYCHOANALYSIS')","('SSCI', 'SSCI')","445","0.4","('Q4', 'Q3')","0.58","1.18" +"PUBLICATIONES MATHEMATICAE DEBRECEN","0033-3883","2064-2849","MATHEMATICS","('SCIE',)","1,166","0.4","Q4","0.58","0.00" +"STUDIA LINGUISTICA","0039-3193","1467-9582","LANGUAGE & LINGUISTICS","('AHCI',)","429","0.4","","0.58","25.93" +"HISTORICAL ARCHAEOLOGY","0440-9213","2328-1103","ARCHAEOLOGY","('AHCI',)","897","0.4","","0.57","23.13" +"JUVENILE AND FAMILY COURT JOURNAL","0161-7109","1755-6988","LAW","('SSCI',)","198","0.4","Q3","0.57","8.33" +"Oxford Journal of Law and Religion","2047-0770","2047-0789","LAW","('ESCI',)","122","0.4","Q3","0.57","33.96" +"Fieldwork in Religion","1743-0615","1743-0623","RELIGION","('ESCI',)","54","0.4","","0.56","0.00" +"International Community Law Review","1871-9740","1871-9732","LAW","('ESCI',)","207","0.4","Q3","0.56","13.16" +"Journal of Germanic Linguistics","1470-5427","1475-3014","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","109","0.4","('N/A', 'Q4')","0.56","64.71" +"Journal of Iberian and Latin American Research","1326-0219","2151-9668","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","104","0.4","","0.56","2.78" +"REGISTER Journal","1979-8903","2503-040X","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('ESCI', 'ESCI')","62","0.4","('Q4', 'Q4')","0.56","68.75" +"Cognitive Studies-Etudes Cognitives","2080-7147","2392-2397","LANGUAGE & LINGUISTICS","('ESCI',)","51","0.4","","0.55","89.83" +"Boletim Sociedade Paranaense de Matematica","0037-8712","2175-1188","MATHEMATICS","('ESCI',)","339","0.4","Q4","0.54","93.54" +"JOURNAL OF AMERICAN ETHNIC HISTORY","0278-5927","1936-4695","HISTORY","('AHCI',)","292","0.4","Q1","0.54","0.00" +"Linguistic Research","1229-1374","1229-1374","LANGUAGE & LINGUISTICS","('ESCI',)","111","0.4","","0.54","0.00" +"Film-Philosophy","1466-4615","1466-4615","('FILM, RADIO, TELEVISION', 'PHILOSOPHY')","('AHCI', 'AHCI')","136","0.4","('N/A', 'N/A')","0.53","91.53" +"Sign Language & Linguistics","1387-9316","1569-996X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","180","0.4","('N/A', 'Q4')","0.52","5.56" +"Diametros","1733-5566","1733-5566","PHILOSOPHY","('ESCI',)","73","0.4","","0.51","98.33" +"Journal of Dynamical Systems and Geometric Theories","1726-037X","2169-0057","MATHEMATICS","('ESCI',)","95","0.4","Q4","0.51","0.00" +"Utopian Studies","1045-991X","2154-9648","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","303","0.4","","0.51","0.00" +"Wacana Seni-Journal of Art Discourse","1675-3410","1985-8418","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","14","0.4","","0.51","100.00" +"Air & Space Law","0927-3379","1875-8339","LAW","('ESCI',)","115","0.4","Q3","0.50","0.00" +"ANTHROPOLOGISCHER ANZEIGER","0003-5548","0003-5548","ANTHROPOLOGY","('SSCI',)","391","0.4","Q3","0.50","0.00" +"OCEANIC LINGUISTICS","0029-8115","1527-9421","LANGUAGE & LINGUISTICS","('AHCI',)","351","0.4","","0.50","0.00" +"PHILOSOPHICAL INVESTIGATIONS","0190-0536","1467-9205","PHILOSOPHY","('AHCI',)","898","0.4","","0.50","28.57" +"Secular Studies","2589-2517","2589-2525","('PHILOSOPHY', 'RELIGION')","('ESCI', 'ESCI')","17","0.4","('N/A', 'N/A')","0.50","15.79" +"University of Western Australia Law Review","0042-0328","0042-0328","LAW","('ESCI',)","89","0.4","Q3","0.50","0.00" +"Acta Mathematica Universitatis Comenianae","0231-6986","0862-9544","MATHEMATICS","('ESCI',)","271","0.4","Q4","0.49","0.00" +"European Journal of Comparative Economics","1824-2979","1824-2979","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","129","0.4","Q4","0.49","0.00" +"Journal of International and Comparative Law","","2313-3775","LAW","('ESCI',)","54","0.4","Q3","0.49","0.00" +"STUDIA SCIENTIARUM MATHEMATICARUM HUNGARICA","0081-6906","1588-2896","MATHEMATICS","('SCIE',)","468","0.4","Q4","0.49","1.43" +"Studies in Ethnicity and Nationalism","1473-8481","1754-9469","ETHNIC STUDIES","('ESCI',)","270","0.4","Q4","0.49","32.14" +"ARCHIVE FOR MATHEMATICAL LOGIC","0933-5846","1432-0665","('LOGIC', 'MATHEMATICS')","('SCIE', 'SCIE')","469","0.4","('Q4', 'Q4')","0.48","32.39" +"Journal of Scottish Philosophy","1479-6651","1755-2001","PHILOSOPHY","('ESCI',)","92","0.4","","0.48","2.44" +"BULLETIN OF THE BELGIAN MATHEMATICAL SOCIETY-SIMON STEVIN","1370-1444","2034-1970","MATHEMATICS","('SCIE',)","601","0.4","Q4","0.47","0.00" +"INDIAN JOURNAL OF PURE & APPLIED MATHEMATICS","0019-5588","0975-7465","MATHEMATICS","('SCIE',)","1,122","0.4","Q4","0.47","0.20" +"MUSEUM INTERNATIONAL","1350-0775","1468-0033","ART","('AHCI',)","445","0.4","","0.47","2.74" +"Studia Metrica et Poetica","2346-6901","2346-691X","LANGUAGE & LINGUISTICS","('ESCI',)","38","0.4","","0.47","100.00" +"TRANSFORMATION GROUPS","1083-4362","1531-586X","MATHEMATICS","('SCIE',)","732","0.4","Q4","0.47","34.18" +"Voprosy Yazykoznaniya","0373-658X","0373-658X","LANGUAGE & LINGUISTICS","('ESCI',)","216","0.4","","0.47","0.00" +"Journal of Historical Pragmatics","1566-5852","1569-9854","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","259","0.4","('N/A', 'Q4')","0.46","6.25" +"TOPIA-Canadian Journal of Cultural Studies","1206-0143","1916-0194","CULTURAL STUDIES","('AHCI', 'SSCI')","123","0.4","Q3","0.46","0.00" +"China and WTO Review","2383-8221","2384-4388","LAW","('ESCI',)","31","0.4","Q3","0.45","81.82" +"Connecticut Insurance Law Journal","1081-9436","1081-9436","LAW","('ESCI',)","55","0.4","Q3","0.45","0.00" +"International Journal of African Renaissance Studies","1818-6874","1753-7274","AREA STUDIES","('ESCI',)","102","0.4","Q3","0.45","0.00" +"JOURNAL OF RELIGION IN AFRICA","0022-4200","1570-0666","RELIGION","('AHCI',)","420","0.4","","0.45","16.22" +"Frontiers of Education in China","1673-341X","1673-3533","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","340","0.4","Q4","0.44","2.13" +"International Journal of Mathematics and Computer Science","1814-0424","1814-0432","MATHEMATICS","('ESCI',)","445","0.4","Q4","0.44","0.00" +"Journal of International Arbitration","0255-8106","2212-182X","LAW","('ESCI',)","228","0.4","Q3","0.44","0.00" +"Law and Development Review","2194-6523","1943-3867","LAW","('ESCI',)","102","0.4","Q3","0.44","0.00" +"New York Journal of Mathematics","1076-9803","","MATHEMATICS","('SCIE',)","529","0.4","Q4","0.44","0.00" +"AUSTRALIAN BUSINESS LAW REVIEW","0310-1053","0310-1053","LAW","('ESCI',)","72","0.4","Q3","0.43","0.00" +"Estudos Historicos","0103-2186","2178-1494","HISTORY","('ESCI',)","266","0.4","Q1","0.43","92.96" +"ICL Journal-Vienna Journal on International Constitutional Law","2306-3734","1995-5855","LAW","('ESCI',)","58","0.4","Q3","0.43","17.78" +"Japanese Studies","1037-1397","1469-9338","AREA STUDIES","('ESCI',)","207","0.4","Q3","0.43","11.11" +"Language Problems & Language Planning","0272-2690","1569-9889","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","167","0.4","('N/A', 'Q4')","0.43","18.92" +"Electronic Journal of Graph Theory and Applications","2338-2287","2338-2287","MATHEMATICS","('ESCI',)","155","0.4","Q4","0.42","93.75" +"NOVUM TESTAMENTUM","0048-1009","","RELIGION","('AHCI',)","302","0.4","","0.42","14.29" +"Revista de Estudios Andaluces","0212-8594","2340-2776","AREA STUDIES","('ESCI',)","78","0.4","Q3","0.42","93.22" +"Southeast Asian Studies","2186-7275","2423-8686","AREA STUDIES","('ESCI',)","201","0.4","Q3","0.42","0.00" +"Anuario de Historia de la Iglesia","1133-0104","2174-0887","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","115","0.4","('Q1', 'N/A')","0.41","98.00" +"International Electronic Journal of Geometry","1307-5624","1307-5624","MATHEMATICS","('ESCI',)","241","0.4","Q4","0.41","0.00" +"JOURNAL OF GROUP THEORY","1433-5883","1435-4446","MATHEMATICS","('SCIE',)","488","0.4","Q4","0.41","11.89" +"Journal of Pacific Archaeology","1179-4704","1179-4712","ARCHAEOLOGY","('ESCI',)","80","0.4","","0.41","0.00" +"Matematicki Vesnik","0025-5165","2406-0682","MATHEMATICS","('ESCI',)","346","0.4","Q4","0.41","37.04" +"MATHEMATICAL LOGIC QUARTERLY","0942-5616","1521-3870","('LOGIC', 'MATHEMATICS')","('SCIE', 'SCIE')","388","0.4","('Q4', 'Q4')","0.41","15.45" +"PROCEEDINGS OF THE JAPAN ACADEMY SERIES A-MATHEMATICAL SCIENCES","0386-2194","","MATHEMATICS","('SCIE',)","551","0.4","Q4","0.41","88.46" +"Queen Mary Journal of Intellectual Property","2045-9807","2045-9815","LAW","('SSCI',)","75","0.4","Q3","0.41","2.78" +"TOHOKU MATHEMATICAL JOURNAL","0040-8735","0040-8735","MATHEMATICS","('SCIE',)","1,315","0.4","Q4","0.41","0.00" +"COLLOQUIUM MATHEMATICUM","0010-1354","1730-6302","MATHEMATICS","('SCIE',)","1,242","0.4","Q4","0.40","1.65" +"Deutsch als Fremdsprache-Zeitschrift zur Theorie und Praxis des Faches Deutsch als Fremdsprache","0011-9741","2198-2430","LANGUAGE & LINGUISTICS","('ESCI',)","14","0.4","","0.40","0.00" +"Journal of Law and Social Deviance","2165-5219","2164-4721","LAW","('ESCI',)","18","0.4","Q3","0.40","0.00" +"Theory and Applications of Categories","1201-561X","","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","546","0.4","('Q4', 'Q4')","0.40","0.80" +"Advanced Studies-Euro-Tbilisi Mathematical Journal","","2667-9930","MATHEMATICS","('ESCI',)","33","0.4","Q4","0.39","0.00" +"Contributions to Discrete Mathematics","1715-0868","1715-0868","MATHEMATICS","('SCIE',)","135","0.4","Q4","0.39","0.00" +"Denver Law Review","2469-6463","2469-6463","LAW","('SSCI',)","97","0.4","Q3","0.39","0.00" +"Eugene O Neill Review","1040-9483","2161-4318","LITERATURE, AMERICAN","('ESCI',)","22","0.4","","0.39","0.00" +"Kodai Mathematical Journal","0386-5991","0386-5991","MATHEMATICS","('SCIE',)","486","0.4","Q4","0.39","0.00" +"Notes and Records-The Royal Society Journal of the History of Science","0035-9149","1743-0178","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE')","497","0.4","Q3","0.39","25.58" +"Revista Brasileira de Direito Processual Penal","2359-3881","2525-510X","LAW","('ESCI',)","81","0.4","Q3","0.39","93.71" +"Sixties-A Journal of History Politics and Culture","1754-1328","1754-1336","HISTORY","('ESCI',)","69","0.4","Q1","0.39","0.00" +"Techne-Journal of Technology for Architecture and Environment","2239-0243","2239-0243","ARCHITECTURE","('ESCI',)","269","0.4","","0.39","70.47" +"ACTA ARCHAEOLOGICA","0065-101X","1600-0390","ARCHAEOLOGY","('AHCI',)","229","0.4","","0.38","12.12" +"Australasian Journal of Combinatorics","2202-3518","2202-3518","MATHEMATICS","('ESCI',)","651","0.4","Q4","0.38","0.00" +"Canadian Journal of Health History","0823-2105","2371-0179","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","8","0.4","Q3","0.38","0.00" +"CZECHOSLOVAK MATHEMATICAL JOURNAL","0011-4642","1572-9141","MATHEMATICS","('SCIE',)","1,283","0.4","Q4","0.38","0.00" +"History of Education","0046-760X","1464-5130","('EDUCATION & EDUCATIONAL RESEARCH', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","525","0.4","('Q4', 'Q3')","0.38","30.97" +"HOPOS-The Journal of the International Society for the History of Philosophy of Science","2152-5188","2156-6240","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","123","0.4","Q3","0.38","0.00" +"JOURNAL OF LIE THEORY","0949-5932","0949-5932","MATHEMATICS","('SCIE',)","413","0.4","Q4","0.38","0.00" +"JOURNAL OF MUSICOLOGICAL RESEARCH","0141-1896","1547-7304","MUSIC","('AHCI',)","113","0.4","","0.38","20.00" +"Matematiche","0373-3505","2037-5298","MATHEMATICS","('ESCI',)","201","0.4","Q4","0.38","0.00" +"OCEANIA","0029-8077","1834-4461","ANTHROPOLOGY","('SSCI',)","548","0.4","Q3","0.38","44.64" +"Beitrage zur Algebra und Geometrie-Contributions to Algebra and Geometry","0138-4821","2191-0383","MATHEMATICS","('ESCI',)","325","0.4","Q4","0.37","25.44" +"Enseignement Mathematique","0013-8584","2309-4672","MATHEMATICS","('ESCI',)","524","0.4","Q4","0.37","29.79" +"FIBONACCI QUARTERLY","0015-0517","0015-0517","MATHEMATICS","('ESCI',)","925","0.4","Q4","0.37","0.00" +"Iranian Journal of Mathematical Sciences and Informatics","1735-4463","2008-9473","MATHEMATICS","('ESCI',)","128","0.4","Q4","0.37","55.10" +"JOURNAL OF THE POLYNESIAN SOCIETY","0032-4000","2230-5955","ANTHROPOLOGY","('SSCI',)","394","0.4","Q3","0.37","0.00" +"Linguistics of the Tibeto-Burman Area","0731-3500","2214-5907","LANGUAGE & LINGUISTICS","('ESCI',)","89","0.4","","0.37","2.94" +"OCTOBER","0162-2870","1536-013X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","1,171","0.4","","0.37","0.00" +"Sao Paulo Journal of Mathematical Sciences","1982-6907","2316-9028","MATHEMATICS","('ESCI',)","183","0.4","Q4","0.37","9.14" +"Siberian Electronic Mathematical Reports-Sibirskie Elektronnye Matematicheskie Izvestiya","1813-3304","1813-3304","MATHEMATICS","('ESCI',)","422","0.4","Q4","0.37","42.68" +"Advances in Group Theory and Applications","2499-1287","2499-1287","MATHEMATICS","('ESCI',)","39","0.4","Q4","0.36","0.00" +"AMERICAN MATHEMATICAL MONTHLY","0002-9890","1930-0972","MATHEMATICS","('SCIE',)","4,747","0.4","Q4","0.36","11.16" +"CRITICAL REVIEW","0891-3811","1933-8007","POLITICAL SCIENCE","('SSCI',)","575","0.4","Q4","0.36","11.27" +"Gaming Law Review-Economics Regulation Compliance and Policy","2572-5300","2572-5327","LAW","('ESCI',)","192","0.4","Q3","0.36","0.94" +"Journal of Applied Economics and Business Research","1927-033X","1927-033X","ECONOMICS","('ESCI',)","117","0.4","Q4","0.36","0.00" +"Language Documentation & Conservation","1934-5275","1934-5275","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","270","0.4","('N/A', 'Q4')","0.36","0.00" +"Missouri Journal of Mathematical Sciences","0899-6180","1085-2581","MATHEMATICS","('ESCI',)","93","0.4","Q4","0.36","0.00" +"RACAR-REVUE D ART CANADIENNE-CANADIAN ART REVIEW","0315-9906","1918-4778","ART","('ESCI',)","55","0.4","","0.36","0.00" +"REVUE DE LINGUISTIQUE ROMANE","0035-1458","","LANGUAGE & LINGUISTICS","('AHCI',)","105","0.4","","0.36","0.00" +"Spanish in Context","1571-0718","1571-0726","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","176","0.4","('N/A', 'Q4')","0.36","0.00" +"Applied Mathematics E-Notes","","1607-2510","MATHEMATICS","('ESCI',)","269","0.4","Q4","0.35","0.00" +"Review of Austrian Economics","0889-3047","1573-7128","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","474","0.4","Q4","0.35","10.23" +"English Academy Review-Southern African Journal of English Studies","1013-1752","1753-5360","LANGUAGE & LINGUISTICS","('ESCI',)","65","0.4","","0.34","2.08" +"International Journal of Continuing Engineering Education and Life-Long Learning","1560-4624","1741-5055","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","126","0.4","Q4","0.34","0.00" +"Notes on Number Theory and Discrete Mathematics","1310-5132","2367-8275","MATHEMATICS","('ESCI',)","195","0.4","Q4","0.34","92.24" +"Revista Signos","0718-0934","0718-0934","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","289","0.4","('N/A', 'Q4')","0.34","96.55" +"Studies in Self-Access Learning Journal","2185-3762","2185-3762","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","126","0.4","Q4","0.34","89.71" +"Alpine Entomology","","2535-0889","ENTOMOLOGY","('ESCI',)","50","0.4","Q4","0.33","100.00" +"Anuario Colombiano de Derecho Internacional-ACDI","2027-1131","2145-4493","LAW","('ESCI',)","25","0.4","Q3","0.33","78.95" +"COMPUTATIONAL GEOMETRY-THEORY AND APPLICATIONS","0925-7721","1879-081X","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","917","0.4","('Q4', 'Q4')","0.33","29.59" +"HERALD OF THE RUSSIAN ACADEMY OF SCIENCES","1019-3316","1555-6492","('HISTORY & PHILOSOPHY OF SCIENCE', 'MULTIDISCIPLINARY SCIENCES')","('SCIE', 'SCIE')","529","0.4","('Q3', 'Q4')","0.33","22.28" +"Korean Journal of Mathematics","1976-8605","2288-1433","MATHEMATICS","('ESCI',)","170","0.4","Q4","0.33","0.00" +"South African Journal of African Languages","0257-2117","2305-1159","LANGUAGE & LINGUISTICS","('ESCI',)","171","0.4","","0.33","2.63" +"ABHANDLUNGEN AUS DEM MATHEMATISCHEN SEMINAR DER UNIVERSITAT HAMBURG","0025-5858","1865-8784","MATHEMATICS","('SCIE',)","551","0.4","Q4","0.32","36.84" +"Australian Journal of Linguistics","0726-8602","1469-2996","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","282","0.4","('N/A', 'Q4')","0.32","25.49" +"Girlhood Studies-An Interdisciplinary Journal","1938-8209","1938-8322","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","233","0.4","Q3","0.32","0.00" +"Journal of Computational Geometry","1920-180X","1920-180X","MATHEMATICS","('ESCI',)","137","0.4","Q4","0.32","0.00" +"Journal of HIV-AIDS & Social Services","1538-1501","1538-151X","SOCIAL WORK","('ESCI',)","188","0.4","Q4","0.32","0.00" +"ORNIS HUNGARICA","1215-1610","2061-9588","ORNITHOLOGY","('ESCI',)","168","0.4","Q4","0.32","100.00" +"Theory of Probability and Mathematical Statistics","0094-9000","1547-7363","STATISTICS & PROBABILITY","('ESCI',)","146","0.4","Q4","0.32","51.79" +"Critical Horizons","1440-9917","1568-5160","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","190","0.4","Q3","0.31","28.38" +"Journal of Asia TEFL","1738-3102","2466-1511","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","524","0.4","Q4","0.31","98.95" +"JOURNAL OF CHEMICAL CRYSTALLOGRAPHY","1074-1542","1572-8854","('CRYSTALLOGRAPHY', 'SPECTROSCOPY')","('SCIE', 'SCIE')","787","0.4","('Q4', 'Q4')","0.31","5.30" +"Proceedings of the Steklov Institute of Mathematics","0081-5438","1531-8605","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,150","0.4","('Q4', 'Q4')","0.31","2.38" +"Tokyo Journal of Mathematics","0387-3870","","MATHEMATICS","('SCIE',)","411","0.4","Q4","0.31","0.00" +"Torres de Lucca-Revista Internacional de Filosofia Politica","2255-3827","2255-3827","PHILOSOPHY","('ESCI',)","44","0.4","","0.31","63.01" +"Vestnik St Petersburg University-Mathematics","1063-4541","1934-7855","MATHEMATICS","('ESCI',)","135","0.4","Q4","0.31","0.00" +"Cognitive Linguistic Studies","2213-8722","2213-8730","('COMMUNICATION', 'LANGUAGE & LINGUISTICS')","('ESCI', 'ESCI')","26","0.4","('Q4', 'N/A')","0.30","1.89" +"European Journal of Pragmatism and American Philosophy","2036-4091","2036-4091","PHILOSOPHY","('ESCI',)","142","0.4","","0.30","10.71" +"Human Affairs-Postdisciplinary Humanities & Social Sciences Quarterly","1210-3055","1337-401X","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","318","0.4","Q3","0.30","13.11" +"Journal of Applied Journalism & Media Studies","2001-0818","2049-9531","COMMUNICATION","('ESCI',)","103","0.4","Q4","0.30","0.00" +"Journal of Economic Sociology-Ekonomicheskaya Sotsiologiya","1726-3247","1726-3247","SOCIOLOGY","('ESCI',)","219","0.4","Q4","0.30","76.25" +"Journal of Siberian Federal University-Mathematics & Physics","1997-1397","2313-6022","MATHEMATICS","('ESCI',)","215","0.4","Q4","0.30","0.00" +"Tyndale Bulletin","0082-7118","0082-7118","RELIGION","('AHCI',)","134","0.4","","0.30","100.00" +"Wilson Journal of Ornithology","1559-4491","1938-5447","ORNITHOLOGY","('SCIE',)","1,075","0.4","Q4","0.30","0.00" +"Analysis in Theory and Applications","1672-4070","1573-8175","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","127","0.4","('Q4', 'Q4')","0.29","90.67" +"Archeologia e Calcolatori","1120-6861","2385-1953","ARCHAEOLOGY","('ESCI',)","160","0.4","","0.29","0.00" +"Chinese Journal of Environmental Law","2468-6034","2468-6042","('ENVIRONMENTAL STUDIES', 'LAW')","('ESCI', 'ESCI')","60","0.4","('Q4', 'Q3')","0.29","35.00" +"CONTINUITY AND CHANGE","0268-4160","1469-218X","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","272","0.4","Q3","0.29","48.65" +"Current Otorhinolaryngology Reports","","2167-583X","OTORHINOLARYNGOLOGY","('ESCI',)","291","0.4","Q4","0.29","14.75" +"French Cultural Studies","0957-1558","1740-2352","CULTURAL STUDIES","('AHCI', 'SSCI')","148","0.4","Q3","0.29","24.44" +"International Journal of Ethics Education","2363-9997","2364-0006","('EDUCATION & EDUCATIONAL RESEARCH', 'ETHICS')","('ESCI', 'ESCI')","71","0.4","('Q4', 'Q4')","0.29","31.25" +"International Journal of Whole Schooling","1710-2146","1710-2146","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","112","0.4","Q4","0.29","0.00" +"Korean Linguistics","0257-3784","2212-9731","LANGUAGE & LINGUISTICS","('ESCI',)","34","0.4","","0.29","93.33" +"Metode Science Studies Journal","2174-3487","2174-9221","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","68","0.4","Q3","0.29","95.52" +"Obradoiro de Historia Moderna","1133-0481","2340-0013","HISTORY","('ESCI',)","83","0.4","Q1","0.29","100.00" +"JOURNAL OF MEDIA ECONOMICS","0899-7764","1532-7736","('COMMUNICATION', 'ECONOMICS')","('SSCI', 'SSCI')","251","0.4","('Q4', 'Q4')","0.28","0.00" +"Post-Medieval Archaeology","0079-4236","1745-8137","ARCHAEOLOGY","('AHCI',)","121","0.4","","0.28","29.09" +"Rechtsmedizin","0937-9819","1434-5196","MEDICINE, LEGAL","('SCIE',)","261","0.4","Q4","0.28","66.67" +"Revista de Historia Industrial","1132-7200","2385-3247","('BUSINESS', 'ECONOMICS', 'HISTORY', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI', 'AHCI, SSCI', 'SSCI')","186","0.4","('Q4', 'Q4', 'Q1', 'Q3')","0.28","62.79" +"Vestnik Mezhdunarodnykh Organizatsii-International Organisations Research Journal","1996-7845","1996-7845","INTERNATIONAL RELATIONS","('ESCI',)","118","0.4","Q4","0.28","1.53" +"ZEITSCHRIFT FUR DIALEKTOLOGIE UND LINGUISTIK","0044-1449","2366-2395","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","51","0.4","('N/A', 'Q4')","0.28","3.85" +"ALGEBRA COLLOQUIUM","1005-3867","0219-1733","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","477","0.4","('Q4', 'Q4')","0.27","0.00" +"Annales de Chirurgie Plastique Esthetique","0294-1260","1768-319X","SURGERY","('SCIE',)","808","0.4","Q4","0.27","43.17" +"Dixi","0124-7255","2357-5891","LAW","('ESCI',)","26","0.4","Q3","0.27","100.00" +"International Critical Thought","2159-8282","2159-8312","POLITICAL SCIENCE","('ESCI',)","180","0.4","Q4","0.27","8.74" +"Mathematics in Applied Sciences and Engineering","","2563-1926","MATHEMATICS, APPLIED","('ESCI',)","33","0.4","Q4","0.27","98.15" +"Proyecto Progreso Arquitectura","2171-6897","2173-1616","ARCHITECTURE","('AHCI',)","80","0.4","","0.27","92.86" +"Christian Higher Education","1536-3759","1539-4107","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","126","0.4","Q4","0.26","3.13" +"COMPUTER MUSIC JOURNAL","0148-9267","1531-5169","('COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS', 'MUSIC')","('SCIE', 'AHCI')","409","0.4","('Q4', 'N/A')","0.26","3.57" +"EGYPTIAN JOURNAL OF VETERINARY SCIENCE","1110-0222","2357-089X","VETERINARY SCIENCES","('ESCI',)","125","0.4","Q4","0.26","97.93" +"INTERNATIONAL JOURNAL OF MORPHOLOGY","0717-9502","0717-9367","ANATOMY & MORPHOLOGY","('SCIE',)","1,795","0.4","Q4","0.26","0.26" +"Journal of Livestock Science","","2277-6214","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","138","0.4","Q4","0.26","96.27" +"Journal of Peer Learning","2200-2359","2200-2359","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","43","0.4","Q4","0.26","0.00" +"Journal of Singularities","1949-2006","1949-2006","MATHEMATICS","('ESCI',)","170","0.4","Q4","0.26","0.00" +"Papers on Social Representations","1021-5573","1819-3978","PSYCHOLOGY, SOCIAL","('ESCI',)","193","0.4","Q4","0.26","0.00" +"ACTA ZOOLOGICA BULGARICA","0324-0770","","ZOOLOGY","('SCIE',)","600","0.4","Q4","0.25","0.00" +"AL-QANTARA","0211-3589","1988-2955","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","287","0.4","('Q1', 'N/A')","0.25","96.88" +"FUNDAMENTA INFORMATICAE","0169-2968","1875-8681","('COMPUTER SCIENCE, SOFTWARE ENGINEERING', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","1,524","0.4","('Q4', 'Q4')","0.25","0.00" +"Historia y Politica","1575-0361","1989-063X","('HISTORY', 'POLITICAL SCIENCE')","('AHCI, SSCI', 'SSCI')","289","0.4","('Q1', 'Q4')","0.25","98.51" +"JOURNAL OF DENTISTRY FOR CHILDREN","1551-8949","1935-5068","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","764","0.4","Q4","0.25","0.00" +"Memoirs on Differential Equations and Mathematical Physics","1512-0015","1512-0015","MATHEMATICS, APPLIED","('ESCI',)","107","0.4","Q4","0.25","0.00" +"Review of Agrarian Studies","2249-4405","2248-9002","DEVELOPMENT STUDIES","('ESCI',)","107","0.4","Q4","0.25","0.00" +"Revista Espanola de Comunicacion en Salud","","1989-9882","COMMUNICATION","('ESCI',)","135","0.4","Q4","0.25","100.00" +"Science Activities-Projects and Curriculum Ideas in STEM Classrooms","0036-8121","1940-1302","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","86","0.4","Q4","0.25","1.92" +"Case Reports in Otolaryngology","2090-6765","2090-6773","OTORHINOLARYNGOLOGY","('ESCI',)","412","0.4","Q4","0.24","100.00" +"Egyptian Journal of Otolaryngology","1012-5574","2090-8539","OTORHINOLARYNGOLOGY","('ESCI',)","291","0.4","Q4","0.24","100.00" +"Estudos Kantianos","2318-0501","2318-0501","PHILOSOPHY","('ESCI',)","33","0.4","","0.24","80.30" +"International Journal of Intelligence and Counterintelligence","0885-0607","1521-0561","INTERNATIONAL RELATIONS","('ESCI',)","328","0.4","Q4","0.24","16.67" +"MATHEMATICAL INTELLIGENCER","0343-6993","1866-7414","MATHEMATICS","('SCIE',)","536","0.4","Q4","0.24","26.19" +"Numerical Analysis and Applications","1995-4239","1995-4247","MATHEMATICS, APPLIED","('ESCI',)","166","0.4","Q4","0.24","0.00" +"Nuncius-Journal of the History of Science","0394-7394","1825-3911","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","125","0.4","Q3","0.24","23.88" +"Occupational Therapy in Mental Health","0164-212X","1541-3101","REHABILITATION","('ESCI',)","360","0.4","Q4","0.24","14.63" +"Shima-The International Journal of Research into Island Cultures","1834-6049","1834-6057","GEOGRAPHY","('ESCI',)","205","0.4","Q4","0.24","88.78" +"Social Work-Maatskaplike Werk","0037-8054","2312-7198","SOCIAL WORK","('ESCI',)","333","0.4","Q4","0.24","64.58" +"Anthropological Notebooks","1408-032X","","ANTHROPOLOGY","('SSCI',)","164","0.4","Q3","0.23","0.00" +"Asian Oncology Nursing","2287-2434","2093-7776","NURSING","('ESCI',)","129","0.4","Q4","0.23","100.00" +"Canadian Journal of Educational Administration and Policy","1207-7798","1207-7798","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","140","0.4","Q4","0.23","0.00" +"Communication Sciences and Disorders-CSD","2288-1328","2288-0917","AUDIOLOGY & SPEECH","('ESCI',)","293","0.4","Q4","0.23","98.98" +"Handchirurgie Mikrochirurgie Plastische Chirurgie","0722-1819","1439-3980","SURGERY","('SCIE',)","631","0.4","Q4","0.23","2.47" +"How-A Colombian Journal for Teachers of English","0120-5927","0120-5927","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","151","0.4","Q4","0.23","98.25" +"International Journal of Criminal Justice Sciences","0973-5089","0973-5089","CRIMINOLOGY & PENOLOGY","('ESCI',)","177","0.4","Q4","0.23","0.00" +"JAPANESE JOURNAL OF VETERINARY RESEARCH","0047-1917","0047-1917","VETERINARY SCIENCES","('SCIE',)","306","0.4","Q4","0.23","0.00" +"Journal of Ancient History and Archaeology","2360-266X","2360-266X","ARCHAEOLOGY","('ESCI',)","99","0.4","","0.23","64.93" +"Journal of Applied Mathematics & Informatics","2734-1194","2234-8417","MATHEMATICS, APPLIED","('ESCI',)","264","0.4","Q4","0.23","0.00" +"Journal of Christian Nursing","0743-2550","1931-7662","NURSING","('ESCI',)","195","0.4","Q4","0.23","0.00" +"KERNTECHNIK","0932-3902","2195-8580","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","246","0.4","Q4","0.23","0.42" +"Mirovaya Ekonomika i Mezhdunarodnye Otnosheniya","0131-2227","0131-2227","INTERNATIONAL RELATIONS","('ESCI',)","336","0.4","Q4","0.23","0.00" +"PROCEEDINGS OF THE INSTITUTION OF CIVIL ENGINEERS-CIVIL ENGINEERING","0965-089X","1751-7672","ENGINEERING, CIVIL","('SCIE',)","490","0.4","Q4","0.23","4.76" +"Research in Educational Administration & Leadership","2564-7261","2564-7261","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","86","0.4","Q4","0.23","88.73" +"Revista Chilena de Derecho y Tecnologia","0719-2576","0719-2584","LAW","('ESCI',)","72","0.4","Q3","0.23","74.29" +"TIERAERZTLICHE PRAXIS AUSGABE GROSSTIERE NUTZTIERE","1434-1220","2567-5834","VETERINARY SCIENCES","('SCIE',)","256","0.4","Q4","0.23","6.96" +"TIERAERZTLICHE PRAXIS AUSGABE KLEINTIERE HEIMTIERE","1434-1239","2567-5842","VETERINARY SCIENCES","('SCIE',)","365","0.4","Q4","0.23","1.55" +"Asian Women","1225-925X","2586-5714","WOMENS STUDIES","('SSCI',)","152","0.4","Q4","0.22","1.59" +"Eduweb-Revista de Tecnologia de Informacion y Comunicacion en Educacion","1856-7576","1856-7576","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","110","0.4","Q4","0.22","94.29" +"Geopoliticas-Revista de Estudios sobre Espacio y Poder","2172-3958","2172-7155","POLITICAL SCIENCE","('ESCI',)","105","0.4","Q4","0.22","100.00" +"ISRAEL JOURNAL OF VETERINARY MEDICINE","0334-9152","2304-8859","VETERINARY SCIENCES","('SCIE',)","178","0.4","Q4","0.22","0.00" +"Laboratorium-Russian Review of Social Research","2076-8214","2078-1938","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","105","0.4","Q3","0.22","100.00" +"Population Review","1549-0955","1549-0955","DEMOGRAPHY","('ESCI',)","103","0.4","Q4","0.22","0.00" +"Rehabilitation Research Policy and Education","2168-6653","2168-6661","REHABILITATION","('ESCI',)","128","0.4","Q4","0.22","0.00" +"Resonance-Journal of Science Education","0971-8044","0973-712X","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","746","0.4","Q4","0.22","0.00" +"Review of Economic Perspectives","1213-2446","1804-1663","ECONOMICS","('ESCI',)","128","0.4","Q4","0.22","100.00" +"Acta Veterinaria Eurasia","2618-639X","2619-905X","VETERINARY SCIENCES","('ESCI',)","60","0.4","Q4","0.21","97.53" +"Applied Computing Review","1559-6915","","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","123","0.4","Q4","0.21","0.00" +"Case Reports in Plastic Surgery and Hand Surgery","2332-0885","2332-0885","SURGERY","('ESCI',)","131","0.4","Q4","0.21","97.52" +"ENTOMOLOGICAL NEWS","0013-872X","2162-3236","ENTOMOLOGY","('SCIE',)","816","0.4","Q4","0.21","0.00" +"International Journal of Learning Technology","1477-8386","1741-8119","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","152","0.4","Q4","0.21","0.00" +"Journal of Combinatorics","2156-3527","2150-959X","MATHEMATICS, APPLIED","('ESCI',)","148","0.4","Q4","0.21","0.00" +"Journal of Mathematical Extension","1735-8299","1735-8299","MATHEMATICS","('ESCI',)","198","0.4","Q4","0.21","0.00" +"Macedonian Veterinary Review","1409-7621","1857-7415","VETERINARY SCIENCES","('ESCI',)","103","0.4","Q4","0.21","100.00" +"ORIENTAL INSECTS","0030-5316","2157-8745","ENTOMOLOGY","('SCIE',)","422","0.4","Q4","0.21","1.03" +"Pesquisa Brasileira em Odontopediatria e Clinica Integrada","1519-0501","1983-4632","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","414","0.4","Q4","0.21","88.79" +"Polish Sociological Review","1231-1413","1231-1413","SOCIOLOGY","('SSCI',)","220","0.4","Q4","0.21","0.00" +"Poultry Science Journal","2345-6604","2345-6566","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","184","0.4","Q4","0.21","0.00" +"SOCIOLOGICKY CASOPIS-CZECH SOCIOLOGICAL REVIEW","0038-0288","2336-128X","SOCIOLOGY","('SSCI',)","313","0.4","Q4","0.21","91.43" +"Stellenbosch Papers in Linguistics Plus-SPiL Plus","1726-541X","2224-3380","LINGUISTICS","('ESCI',)","72","0.4","Q4","0.21","96.61" +"Strategies for Policy in Science and Education-Strategii na Obrazovatelnata i Nauchnata Politika","1310-0270","1314-8575","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","64","0.4","Q4","0.21","0.00" +"Trudy Instituta Matematiki i Mekhaniki UrO RAN","0134-4889","0134-4889","MATHEMATICS, APPLIED","('ESCI',)","225","0.4","Q4","0.21","0.00" +"Visual Anthropology","0894-9468","1545-5920","ANTHROPOLOGY","('ESCI',)","226","0.4","Q3","0.21","19.30" +"ARQUIVO BRASILEIRO DE MEDICINA VETERINARIA E ZOOTECNIA","0102-0935","1678-4162","VETERINARY SCIENCES","('SCIE',)","1,691","0.4","Q4","0.20","97.15" +"Body Movement and Dance in Psychotherapy","1743-2979","1743-2987","PSYCHOLOGY, CLINICAL","('ESCI',)","153","0.4","Q4","0.20","12.12" +"Cityscape","1936-007X","1939-1935","URBAN STUDIES","('ESCI',)","710","0.4","Q4","0.20","0.00" +"Contextos Educativos-Revista de Educacion","1575-023X","1695-5714","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","145","0.4","Q4","0.20","98.92" +"Geografia-Malaysian Journal of Society & Space","2180-2491","2682-7727","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","380","0.4","Q3","0.20","1.00" +"Giornale di Chirurgia","0391-9005","1971-145X","SURGERY","('ESCI',)","441","0.4","Q4","0.20","86.21" +"Indian Journal of Animal Research","0367-6722","","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,224","0.4","Q4","0.20","17.83" +"Journal of Chinese Overseas","1793-0391","1793-2548","ETHNIC STUDIES","('ESCI',)","118","0.4","Q4","0.20","11.63" +"JSIAM Letters","1883-0609","1883-0617","MATHEMATICS, APPLIED","('ESCI',)","89","0.4","Q4","0.20","2.13" +"Revista Chapingo Serie Ciencias Forestales y del Ambiente","2007-3828","2007-4018","FORESTRY","('SCIE',)","343","0.4","Q4","0.20","97.83" +"Revista de Estudios Internacionales Mediterraneos","1887-4460","1887-4460","AREA STUDIES","('ESCI',)","54","0.4","Q3","0.20","88.41" +"SOUTH AFRICAN JOURNAL OF SURGERY","0038-2361","2078-5151","SURGERY","('SCIE',)","389","0.4","Q4","0.20","68.83" +"Sport TK-Revista Euroamericana de Ciencias del Deporte","2340-8812","2340-8812","SPORT SCIENCES","('ESCI',)","260","0.4","Q4","0.20","0.92" +"TRANSACTIONS OF THE AMERICAN ENTOMOLOGICAL SOCIETY","0002-8320","2162-3139","ENTOMOLOGY","('SCIE',)","752","0.4","Q4","0.20","0.00" +"Bulletin of the Hospital for Joint Diseases","2328-4633","2328-5273","ORTHOPEDICS","('ESCI',)","657","0.4","Q4","0.19","0.00" +"CHILD & FAMILY BEHAVIOR THERAPY","0731-7107","1545-228X","('FAMILY STUDIES', 'PSYCHOLOGY, CLINICAL')","('SSCI', 'SSCI')","386","0.4","('Q4', 'Q4')","0.19","10.71" +"Comparative Parasitology","1525-2647","1938-2952","('PARASITOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","409","0.4","('Q4', 'Q4')","0.19","0.00" +"Eurasian Mining","2072-0823","2414-0120","MINING & MINERAL PROCESSING","('ESCI',)","105","0.4","Q4","0.19","0.00" +"Geoconservation Research","2645-4661","2588-7343","('GEOGRAPHY', 'GEOLOGY', 'PALEONTOLOGY')","('ESCI', 'ESCI', 'ESCI')","57","0.4","('Q4', 'Q4', 'Q4')","0.19","0.00" +"International Journal of Child Youth & Family Studies","1920-7298","1920-7298","FAMILY STUDIES","('ESCI',)","223","0.4","Q4","0.19","98.36" +"International Journal of Urological Nursing","1749-7701","1749-771X","('NURSING', 'UROLOGY & NEPHROLOGY')","('ESCI', 'ESCI')","93","0.4","('Q4', 'Q4')","0.19","24.05" +"Journal of Indian Association for Child and Adolescent Mental Health","0973-1342","2754-6349","PEDIATRICS","('ESCI',)","136","0.4","Q4","0.19","61.11" +"Journal of Nuclear Fuel Cycle and Waste Technology","1738-1894","2288-5471","NUCLEAR SCIENCE & TECHNOLOGY","('ESCI',)","166","0.4","Q4","0.19","99.23" +"Journal of Oral and Maxillofacial Surgery Medicine and Pathology","2212-5558","2212-5566","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","433","0.4","Q4","0.19","21.75" +"JOURNAL OF PROSTHETICS AND ORTHOTICS","1040-8800","1534-6331","('ORTHOPEDICS', 'REHABILITATION')","('ESCI', 'ESCI')","424","0.4","('Q4', 'Q4')","0.19","5.03" +"Journal of Slavic Linguistics","1068-2090","1543-0391","LANGUAGE & LINGUISTICS","('ESCI',)","103","0.4","","0.19","0.00" +"Manchester Journal of International Economic Law","1742-3945","1742-3945","('ECONOMICS', 'LAW')","('ESCI', 'ESCI')","46","0.4","('Q4', 'Q3')","0.19","0.00" +"Trends in Urology & Mens Health","2044-3730","2044-3749","UROLOGY & NEPHROLOGY","('ESCI',)","102","0.4","Q4","0.19","0.00" +"VETERINARSKI ARHIV","0372-5480","1331-8055","VETERINARY SCIENCES","('SCIE',)","669","0.4","Q4","0.19","89.66" +"Acta Chirurgiae Orthopaedicae et Traumatologiae Cechoslovaca","0001-5415","0001-5415","ORTHOPEDICS","('SCIE',)","444","0.4","Q4","0.18","0.00" +"African Journal of Agricultural and Resource Economics-AFJARE","1993-3738","1993-3738","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","314","0.4","Q4","0.18","0.00" +"Annals of Mathematical Sciences and Applications","2380-288X","2380-2898","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","82","0.4","Q4","0.18","0.00" +"BUSINESS & PROFESSIONAL ETHICS JOURNAL","0277-2027","2153-7828","ETHICS","('ESCI',)","146","0.4","Q4","0.18","0.00" +"Canadian Journal of Career Development","1499-1845","1499-1853","PSYCHOLOGY, APPLIED","('ESCI',)","60","0.4","Q4","0.18","0.00" +"Canadian Yearbook of International Law","0069-0058","1925-0169","('INTERNATIONAL RELATIONS', 'LAW')","('ESCI', 'ESCI')","52","0.4","('Q4', 'Q3')","0.18","15.56" +"Changing Societies & Personalities","2587-6104","2587-8964","SOCIOLOGY","('ESCI',)","64","0.4","Q4","0.18","97.25" +"Chinese Journal of Academic Radiology","2520-8985","2520-8993","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","65","0.4","Q4","0.18","17.81" +"Colombian Applied Linguistics Journal","0123-4641","2248-7085","LINGUISTICS","('ESCI',)","171","0.4","Q4","0.18","88.00" +"Communication Teacher","1740-4622","1740-4630","COMMUNICATION","('ESCI',)","252","0.4","Q4","0.18","0.79" +"Comunicacion y Sociedad-Guadalajara","0188-252X","2448-9042","COMMUNICATION","('ESCI',)","35","0.4","Q4","0.18","51.11" +"Economic and Environmental Geology","1225-7281","2288-7962","GEOLOGY","('ESCI',)","264","0.4","Q4","0.18","92.09" +"European Spatial Research and Policy","1231-1952","1896-1525","GEOGRAPHY","('ESCI',)","163","0.4","Q4","0.18","80.82" +"Geodetski Vestnik","0351-0271","1581-1328","GEOGRAPHY","('SSCI',)","139","0.4","Q4","0.18","67.11" +"International Journal of Marketing Communication and New Media","2182-9306","2182-9306","COMMUNICATION","('ESCI',)","54","0.4","Q4","0.18","63.51" +"Iranian Journal of Pediatrics","2008-2142","2008-2150","PEDIATRICS","('SCIE',)","905","0.4","Q4","0.18","86.90" +"Irish Jurist","0021-1273","0021-1273","LAW","('ESCI',)","75","0.4","Q3","0.18","0.00" +"Journal of Risk Model Validation","1753-9579","1753-9587","BUSINESS, FINANCE","('SSCI',)","72","0.4","Q4","0.18","0.00" +"Journal of Surgical Case Reports","2042-8812","2042-8812","SURGERY","('ESCI',)","1,866","0.4","Q4","0.18","92.88" +"Jurnal Manajemen Hutan Tropika","2087-0469","2089-2063","FORESTRY","('ESCI',)","142","0.4","Q4","0.18","84.00" +"Media History","1368-8804","1469-9729","COMMUNICATION","('ESCI',)","264","0.4","Q4","0.18","26.67" +"Probability and Mathematical Statistics-Poland","0208-4147","","STATISTICS & PROBABILITY","('SCIE',)","260","0.4","Q4","0.18","0.00" +"PROCEEDINGS OF THE ENTOMOLOGICAL SOCIETY OF WASHINGTON","0013-8797","0013-8797","ENTOMOLOGY","('SCIE',)","1,302","0.4","Q4","0.18","0.00" +"Revista de Investigacion en Logopedia","2174-5218","2174-5218","LINGUISTICS","('ESCI',)","48","0.4","Q4","0.18","94.68" +"ATOMIC ENERGY","1063-4258","1573-8205","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","786","0.4","Q4","0.17","0.00" +"Auditory and Vestibular Research","","2423-480X","('AUDIOLOGY & SPEECH', 'OTORHINOLARYNGOLOGY')","('ESCI', 'ESCI')","75","0.4","('Q4', 'Q4')","0.17","82.35" +"Canadian Journal of Speech-Language Pathology and Audiology","1913-2018","1913-2018","REHABILITATION","('ESCI',)","170","0.4","Q4","0.17","0.00" +"CONTEMPORARY CHINESE THOUGHT","1097-1467","1558-0997","('ASIAN STUDIES', 'PHILOSOPHY')","('AHCI', 'AHCI')","54","0.4","('N/A', 'N/A')","0.17","0.00" +"Emergency Care Journal","1826-9826","2282-2054","EMERGENCY MEDICINE","('ESCI',)","66","0.4","Q4","0.17","99.07" +"International Journal of Cartography","2372-9333","2372-9341","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'GEOGRAPHY', 'GEOGRAPHY, PHYSICAL', 'REMOTE SENSING')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","185","0.4","('Q4', 'Q4', 'Q4', 'Q4')","0.17","19.81" +"Iranian Journal of Pediatric Hematology and Oncology","2008-8892","2228-6993","PEDIATRICS","('ESCI',)","165","0.4","Q4","0.17","0.00" +"Journal of African Languages and Linguistics","0167-6164","1613-3811","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","94","0.4","('N/A', 'Q4')","0.17","14.29" +"JOURNAL OF CONCHOLOGY","0022-0019","","('MARINE & FRESHWATER BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","242","0.4","('Q4', 'Q4')","0.17","0.00" +"JOURNAL OF CONSUMER HEALTH ON THE INTERNET","1539-8285","1539-8293","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","357","0.4","Q4","0.17","2.83" +"Journal of Derivatives","1074-1240","2168-8524","BUSINESS, FINANCE","('SSCI',)","470","0.4","Q4","0.17","0.00" +"Journal of Orthopaedics Trauma and Rehabilitation","2210-4917","2210-4925","ORTHOPEDICS","('ESCI',)","123","0.4","Q4","0.17","96.06" +"Journal of the Hellenic Veterinary Medical Society","1792-2720","1792-2720","VETERINARY SCIENCES","('SCIE',)","389","0.4","Q4","0.17","89.27" +"MATHEMATICAL STRUCTURES IN COMPUTER SCIENCE","0960-1295","1469-8072","COMPUTER SCIENCE, THEORY & METHODS","('SCIE',)","608","0.4","Q4","0.17","41.60" +"Medycyna Weterynaryjna-Veterinary Medicine-Science and Practice","0025-8628","0025-8628","VETERINARY SCIENCES","('SCIE',)","681","0.4","Q4","0.17","91.87" +"Proceedings of the Institution of Civil Engineers-Forensic Engineering","2043-9903","2043-9911","ENGINEERING, CIVIL","('ESCI',)","114","0.4","Q4","0.17","3.85" +"Qwerty","1828-7344","2240-2950","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","61","0.4","Q4","0.17","94.29" +"Rev Rene","1517-3852","2175-6783","NURSING","('ESCI',)","274","0.4","Q4","0.17","96.84" +"Seminars in Colon and Rectal Surgery","1043-1489","1558-4585","SURGERY","('ESCI',)","132","0.4","Q4","0.17","4.17" +"Slovo a Slovesnost","0037-7031","","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","79","0.4","('N/A', 'Q4')","0.17","0.00" +"Turkiye Jeoloji Bulteni-Geological Bulletin of Turkey","1016-9164","1016-9164","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","169","0.4","Q4","0.17","96.08" +"Visual Communication Quarterly","1555-1393","1555-1407","COMMUNICATION","('ESCI',)","158","0.4","Q4","0.17","1.89" +"African Vision and Eye Health Journal","0378-9411","2410-3039","OPHTHALMOLOGY","('ESCI',)","181","0.4","Q4","0.16","96.77" +"Cadernos de Traducao","1414-526X","2175-7968","LANGUAGE & LINGUISTICS","('ESCI',)","221","0.4","","0.16","97.05" +"Case Reports in Orthopedics","2090-6749","2090-6757","ORTHOPEDICS","('ESCI',)","627","0.4","Q4","0.16","100.00" +"ChemKon","0944-5846","1521-3730","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","114","0.4","Q4","0.16","21.99" +"Departures in Critical Qualitative Research","","2333-9497","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","118","0.4","Q3","0.16","1.49" +"Estudios de Economia","0718-5286","0718-5286","ECONOMICS","('SSCI',)","102","0.4","Q4","0.16","0.00" +"Foundations of Management","2080-7279","2300-5661","MANAGEMENT","('ESCI',)","168","0.4","Q4","0.16","100.00" +"INDIAN JOURNAL OF FISHERIES","0970-6011","","FISHERIES","('SCIE',)","1,121","0.4","Q4","0.16","91.24" +"International Journal of Multiphysics","1750-9548","1750-9548","ENGINEERING, MECHANICAL","('ESCI',)","223","0.4","Q4","0.16","0.00" +"International Journal of Radiation Research","2322-3243","2322-3243","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","410","0.4","Q4","0.16","23.06" +"Journal of Alternative Investments","1520-3255","2168-8435","BUSINESS, FINANCE","('ESCI',)","371","0.4","Q4","0.16","0.00" +"Journal of Indian Academy of Oral Medicine and Radiology","0972-1363","0975-1572","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","395","0.4","Q4","0.16","80.77" +"Journal of Military and Strategic Studies","1488-559X","1488-559X","INTERNATIONAL RELATIONS","('ESCI',)","56","0.4","Q4","0.16","0.00" +"Journal of Pediatric Genetics","2146-4596","2146-460X","PEDIATRICS","('ESCI',)","437","0.4","Q4","0.16","0.60" +"KSU Tarim ve Doga Dergisi-KSU Journal of Agriculture and Nature","","2619-9149","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","438","0.4","Q4","0.16","96.75" +"Magis-Revista Internacional de Investigacion en Educacion","2027-1174","2027-1182","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","153","0.4","Q4","0.16","98.53" +"Markov Processes and Related Fields","1024-2953","1024-2953","STATISTICS & PROBABILITY","('SCIE',)","294","0.4","Q4","0.16","0.00" +"MYCOTAXON","0093-4666","0093-4666","MYCOLOGY","('SCIE',)","2,147","0.4","Q4","0.16","48.92" +"OPERATIVE TECHNIQUES IN SPORTS MEDICINE","1060-1872","1557-9794","('SPORT SCIENCES', 'SURGERY')","('SCIE', 'SCIE')","291","0.4","('Q4', 'Q4')","0.16","0.00" +"Osterreichische Zeitschrift fuer Soziologie","1011-0070","1862-2585","SOCIOLOGY","('ESCI',)","141","0.4","Q4","0.16","88.89" +"RELATIONS INDUSTRIELLES-INDUSTRIAL RELATIONS","0034-379X","","INDUSTRIAL RELATIONS & LABOR","('SSCI',)","323","0.4","Q4","0.16","0.00" +"Revija za Kriminalistiko in Kriminologijo","0034-690X","","CRIMINOLOGY & PENOLOGY","('SSCI',)","76","0.4","Q4","0.16","0.00" +"Revista Latinoamericana de Poblacion","","2393-6401","DEMOGRAPHY","('ESCI',)","78","0.4","Q4","0.16","90.00" +"Veredas do Direito","1806-3845","2179-8699","LAW","('ESCI',)","94","0.4","Q3","0.16","46.55" +"Acta Turistica","0353-4316","1848-6061","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","44","0.4","Q4","0.15","90.48" +"AMERICAN MALACOLOGICAL BULLETIN","0740-2783","2162-2698","('MARINE & FRESHWATER BIOLOGY', 'ZOOLOGY')","('SCIE', 'SCIE')","493","0.4","('Q4', 'Q4')","0.15","0.00" +"Annals of Library and Information Studies","0972-5423","0975-2404","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","137","0.4","Q4","0.15","96.15" +"Archives of Rehabilitation","2538-6247","2538-6247","REHABILITATION","('ESCI',)","160","0.4","Q4","0.15","98.92" +"Cahiers Balkaniques","0290-7402","2261-4184","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","10","0.4","","0.15","61.11" +"CLINICAL DYSMORPHOLOGY","0962-8827","1473-5717","GENETICS & HEREDITY","('SCIE',)","523","0.4","Q4","0.15","1.52" +"Indian Journal of Geo-Marine Sciences","","2582-6727","OCEANOGRAPHY","('SCIE',)","1,223","0.4","Q4","0.15","0.00" +"Indonesian Journal of Forestry Research","2355-7079","2406-8195","FORESTRY","('ESCI',)","75","0.4","Q4","0.15","88.89" +"INSTRUMENTS AND EXPERIMENTAL TECHNIQUES","0020-4412","1608-3180","('ENGINEERING, MULTIDISCIPLINARY', 'INSTRUMENTS & INSTRUMENTATION')","('SCIE', 'SCIE')","1,028","0.4","('Q4', 'Q4')","0.15","6.07" +"International Game Theory Review","0219-1989","1793-6675","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","270","0.4","Q4","0.15","1.28" +"International Journal of Healthcare Technology and Management","1368-2156","1741-5144","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","83","0.4","Q4","0.15","0.00" +"International Journal of Integrated Engineering","2229-838X","2229-838X","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","786","0.4","Q4","0.15","30.24" +"ITEA-Informacion Tecnica Economica Agraria","1699-6887","2386-3765","('AGRICULTURE, DAIRY & ANIMAL SCIENCE', 'AGRONOMY')","('SCIE', 'SCIE')","172","0.4","('Q4', 'Q4')","0.15","0.00" +"Journal of Interdisciplinary Economics","0260-1079","2321-5305","ECONOMICS","('ESCI',)","118","0.4","Q4","0.15","10.64" +"Journal of Materials and Engineering Structures","2170-127X","2170-127X","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","172","0.4","Q4","0.15","0.00" +"Journal of Pediatric Research","2147-9445","2147-9445","PEDIATRICS","('ESCI',)","184","0.4","Q4","0.15","99.45" +"JOURNAL OF THE FACULTY OF AGRICULTURE KYUSHU UNIVERSITY","0023-6152","","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","412","0.4","Q4","0.15","0.00" +"Mass Spectrometry Letters","2233-4203","2093-8950","SPECTROSCOPY","('ESCI',)","98","0.4","Q4","0.15","0.00" +"Medijske Studije-Media Studies","1847-9758","1848-5030","COMMUNICATION","('ESCI',)","107","0.4","Q4","0.15","75.00" +"Revista MVZ Cordoba","0122-0268","1909-0544","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","380","0.4","Q4","0.15","96.61" +"Revista Publicaciones","1577-4147","2530-9269","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","68","0.4","Q4","0.15","80.41" +"REVUE HISTORIQUE","0035-3264","2104-3825","HISTORY","('AHCI',)","497","0.4","Q1","0.15","0.00" +"Scientific and Technical Information Processing","0147-6882","1934-8118","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","211","0.4","Q4","0.15","1.01" +"Semina-Ciencias Agrarias","1676-546X","1679-0359","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","1,815","0.4","Q4","0.15","89.82" +"Vestnik Moskovskogo universiteta. Seriya 10. Zhurnalistika","0320-8079","0320-8079","COMMUNICATION","('ESCI',)","85","0.4","Q4","0.15","16.42" +"Aboriginal Policy Studies","1923-3299","1923-3299","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","70","0.4","Q3","0.14","100.00" +"ACTA INFORMATICA","0001-5903","1432-0525","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","638","0.4","Q4","0.14","45.00" +"Apuntes-Revista de Ciencias Sociales","0252-1865","2223-1757","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","95","0.4","Q3","0.14","96.72" +"Bariatric Surgical Practice and Patient Care","2168-023X","2168-0248","('NURSING', 'SURGERY')","('SCIE, SSCI', 'SCIE')","142","0.4","('Q4', 'Q4')","0.14","5.61" +"BioLaw Journal-Rivista di Biodiritto","2284-4503","2284-4503","LAW","('ESCI',)","184","0.4","Q3","0.14","0.31" +"Collection Management","0146-2679","1545-2549","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","136","0.4","Q4","0.14","1.85" +"Communicare-Journal for Communication Sciences in Southern Africa","0259-0069","0259-0069","COMMUNICATION","('ESCI',)","75","0.4","Q4","0.14","44.44" +"Cukurova University Faculty of Education Journal","1302-9967","1302-9967","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","159","0.4","Q4","0.14","29.93" +"Economists Voice","2194-6167","1553-3832","ECONOMICS","('ESCI',)","85","0.4","Q4","0.14","28.57" +"EKONOMICKY CASOPIS","0013-3035","0013-3035","ECONOMICS","('SSCI',)","224","0.4","Q4","0.14","99.12" +"Evidence Based Library and Information Practice","1715-720X","1715-720X","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","308","0.4","Q4","0.14","100.00" +"Galactica Media-Journal of Media Studies - Galaktika Media-Zhurnal Media Issledovanij","","2658-7734","COMMUNICATION","('ESCI',)","42","0.4","Q4","0.14","99.31" +"GHANA SOCIAL SCIENCE JOURNAL","0855-4730","0855-4730","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","45","0.4","Q3","0.14","0.00" +"Indian Journal of Surgery","0972-2068","0973-9793","SURGERY","('SCIE',)","1,637","0.4","Q4","0.14","8.90" +"International Journal of Applied Geospatial Research","1947-9654","1947-9662","GEOGRAPHY","('ESCI',)","79","0.4","Q4","0.14","23.26" +"International Journal of Electronic Security and Digital Forensics","1751-911X","1751-9128","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","122","0.4","Q4","0.14","0.00" +"Journal of Psychopathology","1592-1107","2499-6904","PSYCHIATRY","('ESCI',)","322","0.4","Q4","0.14","0.00" +"KONTAKT-JOURNAL OF NURSING AND SOCIAL SCIENCES RELATED TO HEALTH AND ILLNESS","1212-4117","1804-7122","('NURSING', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","179","0.4","('Q4', 'Q4')","0.14","99.26" +"Pamukkale University Journal of Engineering Sciences-Pamukkale Universitesi Muhendislik Bilimleri Dergisi","1300-7009","2147-5881","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","440","0.4","Q4","0.14","100.00" +"Peace Review-A Journal of Social Justice","1040-2659","1469-9982","INTERNATIONAL RELATIONS","('ESCI',)","425","0.4","Q4","0.14","15.64" +"POLITICKA EKONOMIE","0032-3233","2336-8225","('ECONOMICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","121","0.4","('Q4', 'Q4')","0.14","100.00" +"Psychology and Law","2222-5196","2222-5196","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","150","0.4","Q4","0.14","98.98" +"Revista de Teledeteccion","1133-0953","1988-8740","REMOTE SENSING","('ESCI',)","139","0.4","Q4","0.14","100.00" +"Revista Portuguesa de Estomatologia Medicina Dentaria e Cirurgia Maxilofacial","1646-2890","1647-6700","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","125","0.4","Q4","0.14","98.95" +"Revista Portuguesa de Investigacao Comportamental e Social","2183-4938","2183-4938","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","34","0.4","Q3","0.14","100.00" +"SCIENCES SOCIALES ET SANTE","0294-0337","1777-5914","('HEALTH POLICY & SERVICES', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'SSCI')","130","0.4","('Q4', 'Q3')","0.14","0.00" +"Seoul Journal of Economics","1225-0279","1225-0279","ECONOMICS","('ESCI',)","112","0.4","Q4","0.14","0.00" +"Tempo Social","0103-2070","","SOCIOLOGY","('SSCI',)","285","0.4","Q4","0.14","88.39" +"Zeitschrift fur Sportpsychologie","1612-5010","2190-6300","PSYCHOLOGY, APPLIED","('SSCI',)","91","0.4","Q4","0.14","36.84" +"ACM Communications in Computer Algebra","1932-2232","1932-2240","MATHEMATICS, APPLIED","('ESCI',)","78","0.4","Q4","0.13","0.00" +"Acta Scientiarum Polonorum-Formatio Circumiectus","1644-0765","1644-0765","('AGRONOMY', 'ENVIRONMENTAL SCIENCES')","('ESCI', 'ESCI')","147","0.4","('Q4', 'Q4')","0.13","94.44" +"African Journal of Information Systems","1936-0282","1936-0282","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","89","0.4","Q4","0.13","0.00" +"Alternativas. Cuadernos de Trabajo Social","","1989-9971","SOCIAL WORK","('ESCI',)","38","0.4","Q4","0.13","100.00" +"American Journalism","0882-1127","2326-2486","COMMUNICATION","('ESCI',)","131","0.4","Q4","0.13","3.64" +"Anales de Geografia de la Universidad Complutense","0211-9803","1988-2378","GEOGRAPHY","('ESCI',)","158","0.4","Q4","0.13","97.10" +"Annals of Pediatric Surgery","1687-4137","2090-5394","PEDIATRICS","('ESCI',)","200","0.4","Q4","0.13","100.00" +"Anuario de Filosofia del Derecho","0518-0872","0518-0872","LAW","('ESCI',)","75","0.4","Q3","0.13","0.00" +"Bauingenieur","0005-6650","1436-4867","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","292","0.4","('Q4', 'Q4')","0.13","1.60" +"Ciudades-Revista del Instituto Universitario de Urbanistica de la Universidad de Valladolid","1133-6579","2445-3943","URBAN STUDIES","('ESCI',)","103","0.4","Q4","0.13","100.00" +"Civil Szemle","1786-3341","1786-3341","PUBLIC ADMINISTRATION","('SSCI',)","78","0.4","Q4","0.13","0.00" +"Clinical and Experimental Obstetrics & Gynecology","0390-6663","2709-0094","OBSTETRICS & GYNECOLOGY","('SCIE',)","1,047","0.4","Q4","0.13","99.60" +"Current Topics in Nutraceutical Research","1540-7535","2641-452X","('NUTRITION & DIETETICS', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","257","0.4","('Q4', 'Q4')","0.13","0.00" +"EDUCATIONAL LEADERSHIP","0013-1784","1943-5878","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","1,806","0.4","Q4","0.13","0.00" +"Ekonomicheskaya politika","1994-5124","2411-2658","ECONOMICS","('ESCI',)","150","0.4","Q4","0.13","92.55" +"Eksperimentalnaya Psikhologiya","2072-7593","2311-7036","PSYCHOLOGY, EXPERIMENTAL","('ESCI',)","146","0.4","Q4","0.13","100.00" +"Engineering Letters","1816-093X","1816-0948","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","453","0.4","Q4","0.13","0.00" +"FINANCE A UVER-CZECH JOURNAL OF ECONOMICS AND FINANCE","0015-1920","0015-1920","BUSINESS, FINANCE","('SSCI',)","183","0.4","Q4","0.13","0.00" +"Geology Geophysics and Environment","2299-8004","2353-0790","('ENVIRONMENTAL SCIENCES', 'GEOSCIENCES, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","119","0.4","('Q4', 'Q4')","0.13","100.00" +"Hypertension Research in Pregnancy","2187-5987","2187-9931","OBSTETRICS & GYNECOLOGY","('ESCI',)","57","0.4","Q4","0.13","97.50" +"International Journal of Advanced and Applied Sciences","2313-626X","2313-3724","MULTIDISCIPLINARY SCIENCES","('ESCI',)","750","0.4","Q4","0.13","98.89" +"International Journal of Economics Management and Accounting","1394-7680","1394-7680","ECONOMICS","('ESCI',)","166","0.4","Q4","0.13","0.00" +"International Journal of Pharmaceutical Investigation","2230-973X","2230-9713","PHARMACOLOGY & PHARMACY","('ESCI',)","1,033","0.4","Q4","0.13","67.64" +"International Journal of Systemic Therapy","2692-398X","2692-3998","PSYCHOLOGY, CLINICAL","('ESCI',)","17","0.4","Q4","0.13","2.00" +"International Real Estate Review","2154-8919","2154-8919","ECONOMICS","('ESCI',)","144","0.4","Q4","0.13","0.00" +"Iranian Red Crescent Medical Journal","2074-1804","2074-1812","MEDICINE, GENERAL & INTERNAL","('SCIE',)","2,177","0.4","Q3","0.13","96.02" +"Journal of Advanced Simulation in Science and Engineering","2188-5303","2188-5303","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","54","0.4","Q4","0.13","59.26" +"JOURNAL OF EXTENSION","0022-0140","1077-5315","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","810","0.4","Q4","0.13","82.35" +"Journal of Integrated Design & Process Science","1092-0617","1875-8959","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","112","0.4","Q4","0.13","18.60" +"Journal of Korea Trade","","1229-828X","ECONOMICS","('SSCI',)","184","0.4","Q4","0.13","0.00" +"Journal of Marine Science and Technology-Taiwan","1023-2796","2709-6998","ENGINEERING, MULTIDISCIPLINARY","('SCIE',)","750","0.4","Q4","0.13","2.56" +"Journal of Operational Risk","1744-6740","1755-2710","BUSINESS, FINANCE","('SSCI',)","123","0.4","Q4","0.13","0.00" +"Kesmas-National Public Health Journal","1907-7505","2460-0601","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","188","0.4","Q4","0.13","90.42" +"Linacre Quarterly","0024-3639","2050-8549","MEDICAL ETHICS","('ESCI',)","277","0.4","Q4","0.13","8.42" +"Nature + Culture","1558-6073","1558-5468","ENVIRONMENTAL STUDIES","('SSCI',)","479","0.4","Q4","0.13","0.00" +"Pacific Journal of Optimization","1348-9151","1348-9151","('MATHEMATICS, APPLIED', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('SCIE', 'SCIE')","435","0.4","('Q4', 'Q4')","0.13","0.00" +"Politicke Vedy","1335-2741","1338-5623","POLITICAL SCIENCE","('ESCI',)","59","0.4","Q4","0.13","0.00" +"PRAXIS DER KINDERPSYCHOLOGIE UND KINDERPSYCHIATRIE","0032-7034","2196-8225","('PSYCHIATRY', 'PSYCHOLOGY, DEVELOPMENTAL')","('SSCI', 'SSCI')","276","0.4","('Q4', 'Q4')","0.13","21.90" +"Precision Medical Sciences","2642-2514","2642-2514","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","31","0.4","Q4","0.13","84.81" +"Psihologijske teme","1332-0742","1849-0395","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","221","0.4","Q4","0.13","100.00" +"Psychologie Francaise","0033-2984","0033-2984","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","182","0.4","Q4","0.13","29.41" +"Public Finance Quarterly-Hungary","0031-496X","2064-8278","BUSINESS, FINANCE","('ESCI',)","84","0.4","Q4","0.13","1.01" +"Renal Society of Australasia Journal","1832-3804","1832-3804","NURSING","('ESCI',)","64","0.4","Q4","0.13","5.26" +"Russian Physics Journal","1064-8887","1573-9228","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","1,389","0.4","Q4","0.13","0.00" +"Social Welfare Interdisciplinary Approach","2029-7424","2424-3876","SOCIAL WORK","('ESCI',)","37","0.4","Q4","0.13","84.62" +"Strength Fracture and Complexity","1567-2069","1875-9262","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('ESCI',)","58","0.4","Q4","0.13","0.00" +"SU URUNLERI DERGISI","1300-1590","2148-3140","FISHERIES","('ESCI',)","283","0.4","Q4","0.13","100.00" +"Turczaninowia","1560-7259","1560-7267","PLANT SCIENCES","('ESCI',)","329","0.4","Q4","0.13","99.02" +"Zeitschrift fur Epileptologie","1617-6782","1610-0646","CLINICAL NEUROLOGY","('ESCI',)","101","0.4","Q4","0.13","44.32" +"ANNALES DE BIOLOGIE CLINIQUE","0003-3898","1950-6112","('MEDICAL LABORATORY TECHNOLOGY', 'MEDICINE, RESEARCH & EXPERIMENTAL')","('SCIE', 'SCIE')","592","0.4","('Q4', 'Q4')","0.12","0.57" +"British Journal of Diabetes","2397-6233","2397-6233","ENDOCRINOLOGY & METABOLISM","('ESCI',)","96","0.4","Q4","0.12","97.70" +"Control Engineering and Applied Informatics","1454-8658","","AUTOMATION & CONTROL SYSTEMS","('SCIE',)","202","0.4","Q4","0.12","0.00" +"Global & Regional Health Technology Assessment","2284-2403","2283-5733","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","74","0.4","Q4","0.12","100.00" +"HIGH TEMPERATURES-HIGH PRESSURES","0018-1544","1472-3441","('MATERIALS SCIENCE, CHARACTERIZATION & TESTING', 'MECHANICS', 'THERMODYNAMICS')","('SCIE', 'SCIE', 'SCIE')","561","0.4","('Q4', 'Q4', 'Q4')","0.12","87.80" +"Hrvatski Geografski Glasnik-Croatian Geographical Bulletin","1331-5854","1848-6401","GEOGRAPHY","('ESCI',)","119","0.4","Q4","0.12","85.29" +"Independent Journal of Management & Production","2236-269X","2236-269X","MANAGEMENT","('ESCI',)","285","0.4","Q4","0.12","91.51" +"INDIAN JOURNAL OF CHEMISTRY","0019-5103","0019-5103","CHEMISTRY, ORGANIC","('SCIE',)","214","0.4","Q4","0.12","0.00" +"Indian Journal of Gynecologic Oncology","2363-8397","2363-8400","OBSTETRICS & GYNECOLOGY","('ESCI',)","136","0.4","Q4","0.12","2.41" +"Indian Journal of Nuclear Medicine","0972-3919","0974-0244","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","457","0.4","Q4","0.12","10.68" +"International Journal of Mobile Computing and Multimedia Communications","1937-9412","1937-9404","TELECOMMUNICATIONS","('ESCI',)","67","0.4","Q4","0.12","70.00" +"International Review","2217-9739","2217-9739","ECONOMICS","('ESCI',)","147","0.4","Q4","0.12","88.37" +"ISI Bilimi ve Teknigi Dergisi-Journal of Thermal Science and Technology","1300-3615","1300-3615","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","167","0.4","('Q4', 'Q4')","0.12","98.28" +"Journal fur Kulturpflanzen","1867-0911","1867-0938","('AGRONOMY', 'PLANT SCIENCES')","('ESCI', 'ESCI')","114","0.4","('Q4', 'Q4')","0.12","0.00" +"Journal of Acupuncture and Tuina Science","1672-3597","1993-0399","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","230","0.4","Q4","0.12","12.18" +"JOURNAL OF CHILD PSYCHOTHERAPY","0075-417X","1469-9370","PSYCHOLOGY, CLINICAL","('ESCI',)","199","0.4","Q4","0.12","8.33" +"Journal of Geology Geography and Geoecology","2617-2909","2617-2119","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","158","0.4","Q4","0.12","95.11" +"Journal of the Korean Society for Nondestructive Testing","1225-7842","2287-402X","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('ESCI',)","168","0.4","Q4","0.12","0.00" +"JOURNAL OF THE PROFESSIONAL ASSOCIATION FOR CACTUS DEVELOPMENT","1938-663X","1938-6648","HORTICULTURE","('SCIE',)","169","0.4","Q4","0.12","5.00" +"Nuclear Physics and Atomic Energy","1818-331X","2074-0565","PHYSICS, NUCLEAR","('ESCI',)","108","0.4","Q4","0.12","76.80" +"Open Ophthalmology Journal","1874-3641","1874-3641","OPHTHALMOLOGY","('ESCI',)","473","0.4","Q4","0.12","90.48" +"Psicoterapia e Scienze Umane","0394-2864","1972-5043","PSYCHOLOGY, CLINICAL","('ESCI',)","110","0.4","Q4","0.12","0.00" +"Puerto Rico Health Sciences Journal","0738-0658","2373-6011","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","352","0.4","Q4","0.12","0.00" +"Rawal Medical Journal","0303-5212","0303-5212","MEDICINE, GENERAL & INTERNAL","('ESCI',)","622","0.4","Q3","0.12","0.00" +"Rendiconti Online della Societa Geologica Italiana","2035-8008","2035-8008","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","290","0.4","Q4","0.12","0.00" +"Sonography","2202-8323","2054-6750","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","68","0.4","Q4","0.12","14.13" +"Zagreb International Review of Economics & Business","1331-5609","1849-1162","ECONOMICS","('ESCI',)","197","0.4","Q4","0.12","100.00" +"Accion Psicologica","1578-908X","2255-1271","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","196","0.4","Q4","0.11","75.81" +"ACTA POLONIAE PHARMACEUTICA","0001-6837","2353-5288","PHARMACOLOGY & PHARMACY","('SCIE',)","1,879","0.4","Q4","0.11","88.30" +"Advances in Pharmacology and Pharmacy","2332-0036","2332-0044","PHARMACOLOGY & PHARMACY","('ESCI',)","77","0.4","Q4","0.11","100.00" +"African Journal of Health Professions Education","2078-5127","2078-5127","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","185","0.4","Q4","0.11","70.30" +"Agricultural Science and Practice","2312-3370","2312-3389","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","67","0.4","Q4","0.11","78.43" +"Area Abierta","1578-8393","1578-8393","COMMUNICATION","('ESCI',)","81","0.4","Q4","0.11","96.72" +"Asian Biomedicine","1905-7415","1875-855X","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","362","0.4","Q4","0.11","95.40" +"ATA Journal of Legal Tax Research","1543-866X","1543-866X","BUSINESS, FINANCE","('ESCI',)","12","0.4","Q4","0.11","0.00" +"Ateliers de l Ethique-The Ethics Forum","1718-9977","1718-9977","ETHICS","('ESCI',)","70","0.4","Q4","0.11","100.00" +"BANGLADESH JOURNAL OF BOTANY","0253-5416","2079-9926","PLANT SCIENCES","('SCIE',)","608","0.4","Q4","0.11","82.51" +"CIENCIA FLORESTAL","0103-9954","1980-5098","FORESTRY","('SCIE',)","963","0.4","Q4","0.11","89.51" +"CONCEPTS IN MAGNETIC RESONANCE PART A","1546-6086","1552-5023","('CHEMISTRY, PHYSICAL', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING', 'SPECTROSCOPY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","497","0.4","('Q4', 'Q4', 'Q4', 'Q4')","0.11","100.00" +"Contributions of the Astronomical Observatory Skalnate Pleso","1335-1842","1336-0337","ASTRONOMY & ASTROPHYSICS","('SCIE',)","167","0.4","Q4","0.11","100.00" +"Cyprus Turkish Journal of Psychiatry and Psychology","1302-7840","2667-8225","('PSYCHIATRY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","44","0.4","('Q4', 'Q4')","0.11","0.00" +"Economic Theory Bulletin","2196-1085","2196-1093","ECONOMICS","('ESCI',)","72","0.4","Q4","0.11","32.79" +"Fruits","0248-1294","1625-967X","HORTICULTURE","('SCIE',)","916","0.4","Q4","0.11","0.00" +"Heart Views","1995-705X","0976-5123","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","438","0.4","Q4","0.11","88.55" +"IEICE TRANSACTIONS ON FUNDAMENTALS OF ELECTRONICS COMMUNICATIONS AND COMPUTER SCIENCES","0916-8508","1745-1337","('COMPUTER SCIENCE, HARDWARE & ARCHITECTURE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('SCIE', 'SCIE', 'SCIE')","1,270","0.4","('Q4', 'Q4', 'Q4')","0.11","0.67" +"INDIAN JOURNAL OF PHARMACEUTICAL SCIENCES","0250-474X","1998-3743","PHARMACOLOGY & PHARMACY","('SCIE',)","3,350","0.4","Q4","0.11","23.51" +"Indonesian Journal of Geoscience","2355-9314","2355-9306","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","100","0.4","Q4","0.11","50.00" +"Ingenium-Revista Electronica de Pensamiento Moderno y Metodologia en Historia de la Ideas","1989-3663","1989-3663","PHILOSOPHY","('ESCI',)","29","0.4","","0.11","100.00" +"Interdisciplinary Neurosurgery-Advanced Techniques and Case Management","","2214-7519","CLINICAL NEUROLOGY","('ESCI',)","645","0.4","Q4","0.11","96.08" +"International Journal of Information Technology Project Management","1938-0232","1938-0240","MANAGEMENT","('ESCI',)","103","0.4","Q4","0.11","12.12" +"JOURNAL OF COMMUNICATIONS TECHNOLOGY AND ELECTRONICS","1064-2269","1555-6557","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","997","0.4","('Q4', 'Q4')","0.11","0.90" +"JOURNAL OF PHOTOPOLYMER SCIENCE AND TECHNOLOGY","0914-9244","1349-6336","POLYMER SCIENCE","('SCIE',)","897","0.4","Q4","0.11","56.69" +"Journal of Road Safety-JRS","2652-4260","2652-4252","TRANSPORTATION","('ESCI',)","34","0.4","Q4","0.11","83.82" +"JOURNAL OF THE NATIONAL SCIENCE FOUNDATION OF SRI LANKA","1391-4588","2362-0161","MULTIDISCIPLINARY SCIENCES","('SCIE',)","502","0.4","Q4","0.11","97.16" +"Laeknabladid","0023-7213","1670-4959","MEDICINE, GENERAL & INTERNAL","('SCIE',)","194","0.4","Q3","0.11","85.26" +"LFE-Revista de Lenguas para Fines Especificos","1133-1127","2340-8561","LINGUISTICS","('ESCI',)","69","0.4","Q4","0.11","19.72" +"Mechanical Engineering Journal","2187-9745","2187-9745","ENGINEERING, MECHANICAL","('ESCI',)","446","0.4","Q4","0.11","95.02" +"Neurology and Clinical Neuroscience","2049-4173","2049-4173","CLINICAL NEUROLOGY","('ESCI',)","208","0.4","Q4","0.11","9.62" +"Organizatsionnaya Psikologiya","2312-5942","2312-5942","PSYCHOLOGY, APPLIED","('ESCI',)","83","0.4","Q4","0.11","55.17" +"Pakistan Journal of Analytical & Environmental Chemistry","1996-918X","2221-5255","CHEMISTRY, ANALYTICAL","('ESCI',)","200","0.4","Q4","0.11","75.58" +"Pedagogika-Pedagogy","0861-3982","1314-8540","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","318","0.4","Q4","0.11","0.00" +"Physics of Particles and Nuclei Letters","1547-4771","1531-8567","PHYSICS, PARTICLES & FIELDS","('ESCI',)","605","0.4","Q4","0.11","1.38" +"Politique Europeenne","1623-6297","2105-2875","POLITICAL SCIENCE","('ESCI',)","125","0.4","Q4","0.11","0.00" +"POLYMER-KOREA","0379-153X","2234-8077","POLYMER SCIENCE","('SCIE',)","478","0.4","Q4","0.11","0.00" +"Proceedings of Singapore Healthcare","2010-1058","2059-2329","MEDICINE, GENERAL & INTERNAL","('ESCI',)","364","0.4","Q3","0.11","91.62" +"Przeglad Elektrotechniczny","0033-2097","2449-9544","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","1,751","0.4","Q4","0.11","0.00" +"REVISTA MEXICANA DE PSICOLOGIA","0185-6073","","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","178","0.4","Q4","0.11","0.00" +"SAJOG-South African Journal of Obstetrics and Gynaecology","0038-2329","2305-8862","OBSTETRICS & GYNECOLOGY","('ESCI',)","76","0.4","Q4","0.11","47.37" +"Si Somos Americanos-Revista de Estudios Transfronterizos","0718-2910","0719-0948","INTERNATIONAL RELATIONS","('ESCI',)","83","0.4","Q4","0.11","25.00" +"Soil & Environment","2074-9546","2074-9546","SOIL SCIENCE","('ESCI',)","362","0.4","Q4","0.11","42.86" +"SOUTH AFRICAN STATISTICAL JOURNAL","0038-271X","1996-8450","STATISTICS & PROBABILITY","('ESCI',)","91","0.4","Q4","0.11","85.71" +"South East Asian Journal of Management","1978-1989","2355-6641","MANAGEMENT","('ESCI',)","94","0.4","Q4","0.11","76.32" +"Advances in Human Biology","2321-8568","2348-4691","BIOLOGY","('ESCI',)","167","0.4","Q4","0.10","71.89" +"Agrarforschung Schweiz","1663-7852","1663-7909","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","148","0.4","Q4","0.10","0.00" +"Archives of Neuroscience","2322-3944","2322-5769","NEUROSCIENCES","('ESCI',)","215","0.4","Q4","0.10","100.00" +"CIAN-Revista de Historia de las Universidades","1139-6628","1988-8503","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","23","0.4","Q4","0.10","100.00" +"CienciaUat","2007-7521","2007-7858","MULTIDISCIPLINARY SCIENCES","('ESCI',)","98","0.4","Q4","0.10","100.00" +"Corvinus Journal of Sociology and Social Policy","2061-5558","2062-087X","SOCIOLOGY","('ESCI',)","69","0.4","Q4","0.10","96.15" +"EMITTER-International Journal of Engineering Technology","2355-391X","2443-1168","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","65","0.4","Q4","0.10","100.00" +"Engineer-Journal of the Institution of Engineers Sri Lanka","1800-1122","1800-1122","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","202","0.4","Q4","0.10","99.28" +"European Journal of Psychotherapy & Counselling","1364-2537","1469-5901","PSYCHOLOGY, CLINICAL","('ESCI',)","196","0.4","Q4","0.10","20.55" +"Health and History","1442-1771","1839-3314","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","97","0.4","Q3","0.10","0.00" +"Ingenius-Revista de Ciencia y Tecnologia","1390-650X","1390-860X","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","53","0.4","Q4","0.10","98.21" +"INTERCIENCIA","0378-1844","0378-1844","ECOLOGY","('SCIE',)","922","0.4","Q4","0.10","0.00" +"International Journal of Cancer Management","2538-4422","2538-497X","ONCOLOGY","('ESCI',)","290","0.4","Q4","0.10","99.51" +"International Journal of Electric and Hybrid Vehicles","1751-4088","1751-4096","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","170","0.4","Q4","0.10","0.00" +"Inzynieria Mineralna-Journal of the Polish Mineral Engineering Society","1640-4920","1640-4920","MINING & MINERAL PROCESSING","('ESCI',)","230","0.4","Q4","0.10","94.32" +"Journal of Acute Disease","2221-6189","2589-5516","CRITICAL CARE MEDICINE","('ESCI',)","446","0.4","Q4","0.10","95.20" +"Journal of Diabetology","2543-3288","2078-7685","ENDOCRINOLOGY & METABOLISM","('ESCI',)","139","0.4","Q4","0.10","98.02" +"Journal of Digestive Endoscopy","0976-5042","0976-5050","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","115","0.4","Q4","0.10","100.00" +"Journal of Gerontology and Geriatrics","2499-6564","2499-6564","GERONTOLOGY","('ESCI',)","99","0.4","Q4","0.10","99.12" +"Journal of Medical and Biomedical Science","2026-6294","2026-6294","MEDICINE, GENERAL & INTERNAL","('ESCI',)","77","0.4","Q3","0.10","0.00" +"Journal of Young Pharmacists","0975-1483","0975-1505","PHARMACOLOGY & PHARMACY","('ESCI',)","910","0.4","Q4","0.10","87.10" +"Madera y Bosques","1405-0471","2448-7597","FORESTRY","('SCIE',)","533","0.4","Q4","0.10","97.12" +"Medical Studies-Studia Medyczne","1899-1874","2300-6722","MEDICINE, GENERAL & INTERNAL","('ESCI',)","169","0.4","Q3","0.10","98.62" +"Memo-Magazine of European Medical Oncology","1865-5041","1865-5076","ONCOLOGY","('ESCI',)","239","0.4","Q4","0.10","45.87" +"Moscow University Physics Bulletin","0027-1349","1934-8460","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","518","0.4","Q4","0.10","0.00" +"POLISH JOURNAL OF ECOLOGY","1505-2249","","ECOLOGY","('SCIE',)","659","0.4","Q4","0.10","0.00" +"REFRACTORIES AND INDUSTRIAL CERAMICS","1083-4877","1573-9139","MATERIALS SCIENCE, CERAMICS","('SCIE',)","623","0.4","Q4","0.10","0.00" +"Revista Fitotecnia Mexicana","0187-7380","","AGRONOMY","('SCIE',)","573","0.4","Q4","0.10","0.00" +"Scientific Journal of Silesian University of Technology-Series Transport","0209-3324","2450-1549","TRANSPORTATION SCIENCE & TECHNOLOGY","('ESCI',)","202","0.4","Q4","0.10","99.02" +"TOPICS IN CLINICAL NUTRITION","0883-5691","1550-5146","NUTRITION & DIETETICS","('SCIE',)","211","0.4","Q4","0.10","2.20" +"Turkish Journal of Geriatrics-Turk Geriatri Dergisi","1304-2947","1307-9948","('GERIATRICS & GERONTOLOGY', 'GERONTOLOGY')","('SCIE', 'SSCI')","294","0.4","('Q4', 'Q4')","0.10","94.86" +"Acta Phlebologica","1593-232X","1827-1766","PERIPHERAL VASCULAR DISEASE","('ESCI',)","48","0.4","Q4","0.09","2.00" +"ACTES DE LA RECHERCHE EN SCIENCES SOCIALES","0335-5322","1955-2564","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","857","0.4","Q3","0.09","0.00" +"Adolescent Psychiatry","2210-6766","2210-6774","('PEDIATRICS', 'PSYCHIATRY')","('ESCI', 'ESCI')","159","0.4","('Q4', 'Q4')","0.09","2.13" +"AIMS Medical Science","2375-1576","2375-1576","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","94","0.4","Q4","0.09","97.50" +"Breast Cancer Management","1758-1923","1758-1931","ONCOLOGY","('ESCI',)","80","0.4","Q4","0.09","100.00" +"Cuadernos de Trabajo Social","0214-0314","1988-8295","SOCIAL WORK","('ESCI',)","182","0.4","Q4","0.09","86.11" +"Engenharia Sanitaria e Ambiental","1413-4152","1809-4457","WATER RESOURCES","('SCIE',)","641","0.4","Q4","0.09","95.89" +"FLEISCHWIRTSCHAFT","0015-363X","0015-363X","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","254","0.4","Q4","0.09","0.00" +"GAYANA BOTANICA","0016-5301","0717-6643","PLANT SCIENCES","('SCIE',)","299","0.4","Q4","0.09","24.44" +"Geam-Geoingegneria Ambientale e Mineraria-Geam-Geoengineering Environment and Mining","1121-9041","1121-9041","ENGINEERING, GEOLOGICAL","('ESCI',)","53","0.4","Q4","0.09","0.00" +"Informes de la Construccion","0020-0883","1988-3234","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","386","0.4","('Q4', 'Q4')","0.09","96.13" +"Journal of Machinery Manufacture and Reliability","1052-6188","1934-9394","ENGINEERING, MECHANICAL","('ESCI',)","297","0.4","Q4","0.09","1.23" +"Journal of Structured Finance","1551-9783","2374-1325","BUSINESS, FINANCE","('ESCI',)","66","0.4","Q4","0.09","0.00" +"Jurnal Gizi dan Pangan","1978-1059","2407-0920","NUTRITION & DIETETICS","('ESCI',)","98","0.4","Q4","0.09","45.45" +"Middle East Journal of Cancer","2008-6709","2008-6687","ONCOLOGY","('ESCI',)","201","0.4","Q4","0.09","0.00" +"Mindanao Journal of Science and Technology","2244-0410","2449-3686","MULTIDISCIPLINARY SCIENCES","('ESCI',)","68","0.4","Q4","0.09","0.00" +"Modern Phytomorphology","2226-3063","2227-9555","PLANT SCIENCES","('ESCI',)","79","0.4","Q4","0.09","0.00" +"NATIONAL MEDICAL JOURNAL OF INDIA","2583-150X","0970-258X","MEDICINE, GENERAL & INTERNAL","('SCIE',)","856","0.4","Q3","0.09","79.85" +"Nutricion Clinica y Dietetica Hospitalaria","0211-6057","1989-208X","NUTRITION & DIETETICS","('ESCI',)","244","0.4","Q4","0.09","0.00" +"Obrabotka Metallov-Metal Working and Material Science","1994-6309","2541-819X","METALLURGY & METALLURGICAL ENGINEERING","('ESCI',)","92","0.4","Q4","0.09","0.00" +"Psicodebate-Psicologia Cultura y Sociedad","1515-2251","2451-6600","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","58","0.4","Q4","0.09","90.00" +"Quaderns de Psicologia","0211-3481","2014-4520","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","115","0.4","Q4","0.09","95.51" +"Revista Cuidarte","2216-0973","2346-3414","NURSING","('ESCI',)","189","0.4","Q4","0.09","99.41" +"Revista Economia","0254-4415","2304-4306","ECONOMICS","('ESCI',)","50","0.4","Q4","0.09","88.24" +"Revista Romana de Materiale-Romanian Journal of Materials","1583-3186","","('CONSTRUCTION & BUILDING TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","261","0.4","('Q4', 'Q4')","0.09","0.00" +"REVUE ECONOMIQUE","0035-2764","1950-6694","ECONOMICS","('ESCI',)","343","0.4","Q4","0.09","0.94" +"South African Journal of Libraries and Information Science","0256-8861","2304-8263","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","126","0.4","Q4","0.09","43.18" +"TRIMESTRE ECONOMICO","0041-3011","0041-3011","ECONOMICS","('SSCI',)","265","0.4","Q4","0.09","97.22" +"Turkish Journal of Islamic Economics-TUJISE","2147-9054","2148-3809","ECONOMICS","('ESCI',)","42","0.4","Q4","0.09","44.93" +"Vakuum in Forschung und Praxis","0947-076X","1522-2454","ENGINEERING, MECHANICAL","('ESCI',)","99","0.4","Q4","0.09","26.98" +"Vestnik Tomskogo Gosudarstvennogo Universiteta-Biologiya","1998-8591","2311-2077","('BIOLOGY', 'ECOLOGY')","('ESCI', 'ESCI')","85","0.4","('Q4', 'Q4')","0.09","5.49" +"Agrociencia Uruguay","","2730-5066","AGRONOMY","('ESCI',)","179","0.4","Q4","0.08","55.00" +"Ars Pharmaceutica","0004-2927","2340-9894","PHARMACOLOGY & PHARMACY","('ESCI',)","176","0.4","Q4","0.08","83.51" +"Asian Journal of Pharmaceutics","0973-8398","1998-409X","PHARMACOLOGY & PHARMACY","('ESCI',)","712","0.4","Q4","0.08","0.40" +"Asian Journal of Water Environment and Pollution","0972-9860","1875-8568","ENVIRONMENTAL SCIENCES","('ESCI',)","341","0.4","Q4","0.08","0.00" +"Cadernos Gestao Publica e Cidadania","1806-2261","2236-5710","PUBLIC ADMINISTRATION","('ESCI',)","79","0.4","Q4","0.08","66.67" +"Chem-Bio Informatics Journal","1347-6297","1347-0442","BIOCHEMISTRY & MOLECULAR BIOLOGY","('ESCI',)","29","0.4","Q4","0.08","12.50" +"Croatian Economic Survey","1330-4860","1846-3878","ECONOMICS","('ESCI',)","41","0.4","Q4","0.08","83.33" +"Current Issues in Pharmacy and Medical Sciences","2084-980X","2300-6676","MEDICINE, GENERAL & INTERNAL","('ESCI',)","178","0.4","Q3","0.08","100.00" +"ELECTRICAL ENGINEERING IN JAPAN","0424-7760","1520-6416","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","560","0.4","Q4","0.08","0.78" +"Environnement Risques & Sante","1635-0421","1952-3998","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","126","0.4","Q4","0.08","0.82" +"French-Ukrainian Journal of Chemistry","2312-3222","2312-3222","CHEMISTRY, ANALYTICAL","('ESCI',)","59","0.4","Q4","0.08","0.00" +"Geosfernye Issledovaniya-Geosphere Research","2542-1379","2541-9943","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","61","0.4","Q4","0.08","0.00" +"Geriatrie et Psychologie Neuropsychiatrie du Vieillissement","2115-8789","2115-7863","('PSYCHIATRY', 'PSYCHOLOGY')","('SCIE', 'SCIE')","260","0.4","('Q4', 'Q4')","0.08","0.00" +"Global Journal of Medical Pharmaceutical and Biomedical Update","","2765-8910","MEDICINE, GENERAL & INTERNAL","('ESCI',)","19","0.4","Q3","0.08","36.73" +"International Journal of Autonomous and Adaptive Communications Systems","1754-8632","1754-8640","('COMPUTER SCIENCE, INFORMATION SYSTEMS', 'ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('ESCI', 'ESCI', 'ESCI')","55","0.4","('Q4', 'Q4', 'Q4')","0.08","1.14" +"International Journal of Computational Economics and Econometrics","1757-1170","1757-1189","ECONOMICS","('ESCI',)","105","0.4","Q4","0.08","1.59" +"International Journal of Innovation and Sustainable Development","1740-8822","1740-8830","GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY","('ESCI',)","383","0.4","Q4","0.08","0.00" +"International Journal of Interdisciplinary Telecommunications and Networking","1941-8663","1941-8671","TELECOMMUNICATIONS","('ESCI',)","242","0.4","Q4","0.08","3.33" +"International Review of Information Ethics","1614-1687","1614-1687","ETHICS","('ESCI',)","77","0.4","Q4","0.08","0.00" +"Journal of Financial Market Infrastructures","2049-5404","2049-5412","BUSINESS, FINANCE","('ESCI',)","36","0.4","Q4","0.08","0.00" +"Journal of the Korean Magnetic Resonance Society","1226-6531","1226-6531","BIOCHEMICAL RESEARCH METHODS","('ESCI',)","69","0.4","Q4","0.08","0.00" +"Journal of the South African Institution of Civil Engineering","1021-2019","","ENGINEERING, CIVIL","('SCIE',)","256","0.4","Q4","0.08","98.48" +"Malaysian Journal of Microbiology","1823-8262","2231-7538","MICROBIOLOGY","('ESCI',)","383","0.4","Q4","0.08","92.98" +"Market-Trziste","0353-4790","1849-1383","BUSINESS","('ESCI',)","86","0.4","Q4","0.08","100.00" +"MAYDICA","0025-6153","2279-8013","('AGRONOMY', 'PLANT SCIENCES')","('SCIE', 'SCIE')","613","0.4","('Q4', 'Q4')","0.08","0.00" +"Neurological Sciences and Neurophysiology","2636-865X","2636-865X","NEUROSCIENCES","('SCIE',)","73","0.4","Q4","0.08","98.98" +"Neuropsychiatria i Neuropsychologia","1896-6764","2084-9885","PSYCHIATRY","('ESCI',)","64","0.4","Q4","0.08","100.00" +"OASIS-Observatorio de Analisis de los Sistemas Internacionales","1657-7558","2346-2132","INTERNATIONAL RELATIONS","('ESCI',)","63","0.4","Q4","0.08","100.00" +"Revista do Servico Publico","0034-9240","2357-8017","PUBLIC ADMINISTRATION","('ESCI',)","194","0.4","Q4","0.08","75.44" +"RUSSIAN METALLURGY","0036-0295","1555-6255","METALLURGY & METALLURGICAL ENGINEERING","('ESCI',)","1,121","0.4","Q4","0.08","0.00" +"Turkish Journal of Neurology","1301-062X","1309-2545","CLINICAL NEUROLOGY","('ESCI',)","186","0.4","Q4","0.08","97.74" +"Uchenye Zapiski Kazanskogo Universiteta-Seriya Estestvennye Nauki","2542-064X","2500-218X","MULTIDISCIPLINARY SCIENCES","('ESCI',)","107","0.4","Q4","0.08","88.00" +"COKE AND CHEMISTRY","1068-364X","1934-8398","ENGINEERING, CHEMICAL","('ESCI',)","377","0.4","Q4","0.07","0.00" +"Current Cancer Therapy Reviews","1573-3947","1875-6301","ONCOLOGY","('ESCI',)","147","0.4","Q4","0.07","1.11" +"Gefasschirurgie","0948-7034","1434-3932","PERIPHERAL VASCULAR DISEASE","('ESCI',)","263","0.4","Q4","0.07","23.91" +"Geodetski List","0016-710X","1849-0611","REMOTE SENSING","('ESCI',)","52","0.4","Q4","0.07","0.00" +"INFECTIOUS DISEASES IN CLINICAL PRACTICE","1056-9103","1536-9943","INFECTIOUS DISEASES","('ESCI',)","404","0.4","Q4","0.07","3.86" +"Ingenieria Solidaria","1900-3102","2357-6014","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","74","0.4","Q4","0.07","94.81" +"International Journal of Data Mining Modelling and Management","1759-1163","1759-1171","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","73","0.4","Q4","0.07","0.00" +"IPSI BgD Transactions on Internet Research","1820-4503","1820-4503","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","36","0.4","Q4","0.07","0.00" +"Journal of Environmental Science and Management","0119-1144","0119-1144","ENVIRONMENTAL SCIENCES","('SCIE',)","200","0.4","Q4","0.07","0.00" +"Journal of Pharmacology & Pharmacotherapeutics","0976-500X","0976-5018","PHARMACOLOGY & PHARMACY","('ESCI',)","1,294","0.4","Q4","0.07","61.32" +"Journal of the Korean Geosynthetic Society","2508-2876","2287-9528","ENGINEERING, GEOLOGICAL","('ESCI',)","157","0.4","Q4","0.07","0.00" +"Molecular Genetics Microbiology and Virology","0891-4168","1934-841X","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'MICROBIOLOGY')","('SCIE', 'SCIE')","181","0.4","('Q4', 'Q4')","0.07","0.91" +"Organisational and Social Dynamics","1474-2780","2044-3765","PSYCHOLOGY, APPLIED","('ESCI',)","68","0.4","Q4","0.07","0.00" +"Physioscience","1860-3092","1860-3351","REHABILITATION","('ESCI',)","46","0.4","Q4","0.07","4.08" +"Ra-Revista de Arquitectura","1138-5596","2254-6332","ARCHITECTURE","('AHCI',)","126","0.4","","0.07","89.74" +"Revista Chilena de Infectologia","0716-1018","0717-6341","INFECTIOUS DISEASES","('SCIE',)","667","0.4","Q4","0.07","60.73" +"Revista de Geografia Norte Grande","0379-8682","0718-3402","('GEOGRAPHY', 'GEOGRAPHY, PHYSICAL')","('SSCI', 'SCIE')","479","0.4","('Q4', 'Q4')","0.07","1.50" +"Revista de la Facultad de Derecho","0797-8316","2301-0665","LAW","('ESCI',)","133","0.4","Q3","0.07","29.49" +"Revista de Salud Ambiental","1577-9572","1697-2791","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","60","0.4","Q4","0.07","0.00" +"Revista Iberoamericana de Estudios Municipales","0718-8838","0719-1790","PUBLIC ADMINISTRATION","('ESCI',)","23","0.4","Q4","0.07","93.10" +"Revista Internacional de Contaminacion Ambiental","0188-4999","","ENVIRONMENTAL SCIENCES","('SCIE',)","536","0.4","Q4","0.07","95.73" +"REVUE ROUMAINE DE CHIMIE","0035-3930","","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","718","0.4","Q4","0.07","0.00" +"Rocznik Ochrona Srodowiska","1506-218X","","ENVIRONMENTAL SCIENCES","('SCIE',)","352","0.4","Q4","0.07","0.00" +"Sante Mentale au Quebec","0383-6320","1708-3923","PSYCHIATRY","('ESCI',)","193","0.4","Q4","0.07","30.51" +"Scripta Nova-Revista Electronica de Geografia y Ciencias Sociales","1138-9788","1138-9788","GEOGRAPHY","('SSCI',)","404","0.4","Q4","0.07","82.98" +"Acta Angiologica","1234-950X","1644-3276","PERIPHERAL VASCULAR DISEASE","('ESCI',)","71","0.4","Q4","0.06","88.00" +"Acta Chemica Iasi","2067-2438","2067-2446","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","75","0.4","Q4","0.06","100.00" +"Applied Chemistry for Engineering","1225-0112","1228-4505","ENGINEERING, CHEMICAL","('ESCI',)","376","0.4","Q4","0.06","0.00" +"Applied Radiology","0160-9963","1879-2898","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","189","0.4","Q4","0.06","1.11" +"Arterial Hypertension","2449-6170","2449-6162","PERIPHERAL VASCULAR DISEASE","('ESCI',)","95","0.4","Q4","0.06","100.00" +"Chemistry for Sustainable Development","0869-8538","0869-8538","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","355","0.4","Q4","0.06","0.00" +"China Nonprofit Review","1876-5092","1876-5149","PUBLIC ADMINISTRATION","('ESCI',)","25","0.4","Q4","0.06","0.00" +"Clio America","1909-941X","2389-7848","BUSINESS","('ESCI',)","43","0.4","Q4","0.06","100.00" +"Desenvolvimento e Meio Ambiente","1518-952X","2176-9109","ENVIRONMENTAL STUDIES","('ESCI',)","425","0.4","Q4","0.06","89.67" +"Ecologia Aplicada","1726-2216","1993-9507","ECOLOGY","('ESCI',)","154","0.4","Q4","0.06","97.96" +"Ingenieria","0121-750X","2344-8393","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","83","0.4","Q4","0.06","88.78" +"Jordan Journal of Chemistry","1814-9111","2079-7249","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","115","0.4","Q4","0.06","0.00" +"Journal of Power Technologies","2083-4187","2083-4195","ENERGY & FUELS","('ESCI',)","279","0.4","Q4","0.06","0.00" +"Opera-Colombia","1657-8651","2346-2159","PUBLIC ADMINISTRATION","('ESCI',)","61","0.4","Q4","0.06","96.43" +"Revista Espanola de Nutricion Humana y Dietetica","2173-1292","2174-5145","NUTRITION & DIETETICS","('ESCI',)","526","0.4","Q4","0.06","72.97" +"Revista General de Informacion y Documentacion","1132-1873","1988-2858","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","180","0.4","Q4","0.06","90.36" +"Revista Ingenieria de Construccion","0716-2952","0718-5073","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","173","0.4","Q4","0.06","71.20" +"Revista Virtual de Quimica","1984-6835","1984-6835","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","677","0.4","Q4","0.06","98.82" +"Science and Technology of Energetic Materials","1347-9466","","('CHEMISTRY, APPLIED', 'CHEMISTRY, PHYSICAL', 'ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE', 'SCIE', 'SCIE')","164","0.4","('Q4', 'Q4', 'Q4', 'Q4')","0.06","0.00" +"Travail Genre et Societes","1294-6303","1294-6303","('SOCIAL SCIENCES, INTERDISCIPLINARY', 'WOMENS STUDIES')","('SSCI', 'SSCI')","103","0.4","('Q3', 'Q4')","0.06","0.00" +"Activites-Revue Electronique","1765-2723","1765-2723","ERGONOMICS","('ESCI',)","185","0.4","Q4","0.05","34.62" +"Administracao-Ensino e Pesquisa","2177-6083","2358-0917","MANAGEMENT","('ESCI',)","133","0.4","Q4","0.05","96.49" +"Archives des Maladies Professionnelles et de l Environnement","1775-8785","1778-4190","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","171","0.4","Q4","0.05","37.04" +"Ensayos-Revista de la Facultad de Educacion de Albacete","0214-4824","2171-9098","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","153","0.4","Q4","0.05","0.00" +"Farmeconomia-Health Economics and Therapeutic Pathways","1721-6915","2240-256X","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","30","0.4","Q4","0.05","80.00" +"Functional Materials","1027-5495","2218-2993","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","503","0.4","Q4","0.05","0.00" +"International Journal of Affective Engineering","2187-5413","2187-5413","ENGINEERING, INDUSTRIAL","('ESCI',)","107","0.4","Q4","0.05","96.84" +"Journal of Nanoanalysis","2383-0344","2383-0344","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","114","0.4","Q4","0.05","0.00" +"Journal of Print and Media Technology Research","2223-8905","2414-6250","IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY","('ESCI',)","26","0.4","Q4","0.05","0.00" +"LANGUE FRANCAISE","0023-8368","1957-7982","LANGUAGE & LINGUISTICS","('AHCI',)","324","0.4","","0.05","0.00" +"Nano Hybrids and Composites","2297-3370","2297-3400","NANOSCIENCE & NANOTECHNOLOGY","('ESCI',)","179","0.4","Q4","0.05","0.00" +"POLITICA Y GOBIERNO","1665-2037","","POLITICAL SCIENCE","('SSCI',)","150","0.4","Q4","0.05","0.00" +"Psicologia Clinica dello Sviluppo","1824-078X","1824-078X","PSYCHOLOGY, DEVELOPMENTAL","('ESCI',)","117","0.4","Q4","0.05","0.00" +"Revista Colombiana de Investigaciones Agroindustriales","2422-0582","2422-4456","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","20","0.4","Q4","0.05","97.73" +"Revista de Gestao Ambiental e Sustentabilidade-GeAS","2316-9834","2316-9834","('ENVIRONMENTAL SCIENCES', 'GREEN & SUSTAINABLE SCIENCE & TECHNOLOGY')","('ESCI', 'ESCI')","81","0.4","('Q4', 'Q4')","0.05","78.72" +"AtoZ-Novas Praticas em Informacao e Conhecimento","2237-826X","2237-826X","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","50","0.4","Q4","0.04","25.00" +"Geofocus-Revista Internacional de Ciencia y TecnologIa de la InformaciOn GeogrAfica","1578-5157","1578-5157","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","73","0.4","Q4","0.04","82.35" +"KGK-Kautschuk Gummi Kunststoffe","0948-3276","0948-3276","('ENGINEERING, CHEMICAL', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","459","0.4","('Q4', 'Q4')","0.04","0.00" +"Suchttherapie","1439-9903","1439-989X","PSYCHIATRY","('SCIE',)","82","0.4","Q4","0.04","4.00" +"Turkic Languages","1431-4983","1431-4983","('ASIAN STUDIES', 'LANGUAGE & LINGUISTICS')","('AHCI', 'AHCI')","72","0.4","('N/A', 'N/A')","0.04","0.00" +"AMA-Agricultural Mechanization in Asia Africa and Latin America","0084-5841","","AGRICULTURAL ENGINEERING","('SCIE',)","240","0.4","Q4","0.03","0.00" +"ATP Magazine","2190-4111","2364-3137","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","90","0.4","Q4","0.03","0.55" +"Cuadernos de Vivienda y Urbanismo","2027-2103","2145-0226","URBAN STUDIES","('ESCI',)","83","0.4","Q4","0.03","92.16" +"Current Research in Social Psychology","1088-7423","1088-7423","PSYCHOLOGY, SOCIAL","('ESCI',)","96","0.4","Q4","0.03","0.00" +"Memoria Investigaciones en Ingenieria","2301-1092","2301-1106","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","81","0.4","Q4","0.03","98.08" +"Revista Empresa y Humanismo","1139-7608","2254-6413","BUSINESS","('ESCI',)","47","0.4","Q4","0.03","94.12" +"SIGHT AND SOUND","0037-4806","0037-4806","FILM, RADIO, TELEVISION","('AHCI',)","251","0.4","","0.03","0.00" +"Encrucijadas-Revista Critica de Ciencias Sociales","2174-7148","2174-6753","SOCIAL ISSUES","('ESCI',)","69","0.4","Q4","0.02","0.00" +"Revista de Ciencias Humanas da Universidade de Taubate","2179-1120","2179-1120","SOCIAL WORK","('ESCI',)","97","0.4","Q4","0.01","93.85" +"Convivium","0010-8235","2255-2855","PHILOSOPHY","('AHCI',)","32","0.4","","0.00","22.73" +"PULP & PAPER-CANADA","0316-4004","1923-3515","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","171","0.4","Q4","0.00","0.00" +"Telematique","1856-4194","1856-4194","TELECOMMUNICATIONS","('ESCI',)","19","0.4","Q4","0.00","0.00" +"Estudios Romanicos","0210-4911","1989-614X","LITERATURE, ROMANCE","('ESCI',)","36","0.3","","3.93","59.15" +"Cuadernos de Filologia Italiana","1133-9527","1988-2394","LITERATURE, ROMANCE","('ESCI',)","79","0.3","","3.63","96.67" +"Problemy Istoricheskoi Poetiki","1026-9479","2411-4642","LITERARY THEORY & CRITICISM","('ESCI',)","235","0.3","","2.85","55.10" +"MINNESOTA REVIEW","0026-5667","2157-4189","LITERARY REVIEWS","('AHCI',)","96","0.3","","2.59","0.00" +"Italian Studies","0075-1634","1748-6181","('HUMANITIES, MULTIDISCIPLINARY', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","176","0.3","('N/A', 'N/A')","2.51","34.07" +"RUSSIAN LITERATURE","0304-3479","1878-3678","LITERATURE, SLAVIC","('AHCI',)","126","0.3","","2.49","12.71" +"JOURNAL OF LITERARY SEMANTICS","0341-7638","1613-3838","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","129","0.3","('N/A', 'N/A')","2.47","23.33" +"Asian Studies-Azijske Studije","2232-5131","2350-4226","ASIAN STUDIES","('ESCI',)","94","0.3","","2.36","86.24" +"JOURNAL OF ENGLISH AND GERMANIC PHILOLOGY","0363-6941","","('LANGUAGE & LINGUISTICS', 'LITERATURE, BRITISH ISLES', 'LITERATURE, GERMAN, DUTCH, SCANDINAVIAN', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI', 'AHCI', 'AHCI', 'AHCI')","329","0.3","('N/A', 'N/A', 'N/A', 'N/A')","2.20","0.00" +"EARLY AMERICAN LITERATURE","0012-8163","1534-147X","LITERATURE, AMERICAN","('AHCI',)","218","0.3","","2.18","0.00" +"JOURNAL OF MEDIEVAL HISTORY","0304-4181","1873-1279","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","415","0.3","","1.94","32.99" +"Cambridge Journal of Postcolonial Literary Inquiry","2052-2614","2052-2622","('LITERARY THEORY & CRITICISM', 'LITERATURE')","('AHCI', 'AHCI')","111","0.3","('N/A', 'N/A')","1.83","54.02" +"Itinerario-International Journal on the History of European Expansion and Global Interaction","0165-1153","2041-2827","HISTORY","('AHCI', 'SSCI')","244","0.3","Q2","1.80","46.27" +"REVIEW OF ENGLISH STUDIES","0034-6551","1471-6968","LITERATURE","('AHCI',)","462","0.3","","1.74","37.04" +"Word and Text-A Journal of Literary Studies and Linguistics","2069-9271","2247-9163","LITERARY THEORY & CRITICISM","('ESCI',)","47","0.3","","1.71","75.00" +"Life Writing","1448-4528","1751-2964","LITERATURE","('AHCI',)","190","0.3","","1.69","23.68" +"RESEARCH IN AFRICAN LITERATURES","0034-5210","1527-2044","LITERATURE, AFRICAN, AUSTRALIAN, CANADIAN","('AHCI',)","593","0.3","","1.63","0.00" +"MEDIEVAL HISTORY JOURNAL","0971-9458","0973-0753","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","112","0.3","","1.60","9.38" +"Caliope-Journal of the Society for Renaissance and Baroque Hispanic Poetry","1084-1490","2377-9551","('LITERATURE, ROMANCE', 'POETRY')","('ESCI', 'ESCI')","34","0.3","('N/A', 'N/A')","1.55","0.00" +"IRISH HISTORICAL STUDIES","0021-1214","2056-4139","HISTORY","('AHCI',)","219","0.3","Q2","1.55","52.27" +"International Research in Childrens Literature","1755-6198","1755-6201","LITERATURE","('AHCI',)","89","0.3","","1.54","1.56" +"ENGLISH STUDIES","0013-838X","1744-4217","LITERATURE","('AHCI',)","376","0.3","","1.53","26.87" +"Harold Pinter Review-Essays on Contemporary Drama","2473-8433","2473-8441","THEATER","('ESCI',)","12","0.3","","1.53","0.00" +"Literature Compass","1741-4113","1741-4113","LITERATURE","('AHCI',)","393","0.3","","1.53","28.57" +"BMGN-The Low Countries Historical Review","0165-0505","2211-2898","HISTORY","('AHCI', 'SSCI')","164","0.3","Q2","1.50","96.08" +"THEATRE SURVEY","0040-5574","1475-4533","THEATER","('AHCI',)","123","0.3","","1.47","18.75" +"Journal of Jesuit Studies","2214-1324","2214-1332","HISTORY","('ESCI',)","88","0.3","Q2","1.46","88.89" +"Critical Survey","0011-1570","1752-2293","LITERARY THEORY & CRITICISM","('AHCI',)","165","0.3","","1.45","0.00" +"PROCEEDINGS OF THE ROYAL IRISH ACADEMY SECTION C-ARCHAEOLOGY CELTIC STUDIES HISTORY LINGUISTICS LITERATURE","0035-8991","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","96","0.3","","1.44","24.00" +"Al-Masaq-Journal of the Medieval Mediterranean","0950-3110","1473-348X","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","163","0.3","","1.38","28.26" +"JOURNAL OF INTERDISCIPLINARY HISTORY","0022-1953","1530-9169","HISTORY","('AHCI', 'SSCI')","770","0.3","Q2","1.38","18.92" +"Samuel Beckett Today/Aujourd'hui","0927-3131","1875-7405","('LITERARY THEORY & CRITICISM', 'LITERATURE', 'THEATER')","('ESCI', 'ESCI', 'ESCI')","108","0.3","('N/A', 'N/A', 'N/A')","1.37","15.25" +"JOURNAL OF COMMONWEALTH LITERATURE","0021-9894","1741-6442","LITERATURE, AFRICAN, AUSTRALIAN, CANADIAN","('AHCI',)","268","0.3","","1.34","13.33" +"SEVENTEENTH CENTURY","0268-117X","2050-4616","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","202","0.3","","1.33","37.07" +"PHILOSOPHY AND RHETORIC","0031-8213","1527-2079","('LITERATURE', 'PHILOSOPHY')","('AHCI', 'AHCI')","565","0.3","('N/A', 'N/A')","1.30","0.00" +"REVISTA DE FILOLOGIA ESPANOLA","0210-9174","1988-8538","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","202","0.3","('N/A', 'N/A')","1.30","98.21" +"Rural History-Economy Society Culture","0956-7933","1474-0656","HISTORY","('AHCI', 'SSCI')","144","0.3","Q2","1.30","46.67" +"Rusin","1857-2685","2345-1149","HISTORY","('ESCI',)","123","0.3","Q2","1.28","7.02" +"MELUS","0163-755X","1946-3170","LITERATURE, AMERICAN","('AHCI',)","398","0.3","","1.27","0.00" +"Anatolian Studies","0066-1546","2048-0849","('ARCHAEOLOGY', 'HISTORY')","('AHCI', 'AHCI')","301","0.3","('N/A', 'Q2')","1.26","36.67" +"Leviathan-A Journal of Melville Studies","1525-6995","1750-1849","LITERATURE, AMERICAN","('AHCI',)","83","0.3","","1.23","0.00" +"INDIAN ECONOMIC AND SOCIAL HISTORY REVIEW","0019-4646","0973-0893","HISTORY","('AHCI', 'SSCI')","545","0.3","Q2","1.20","12.50" +"Soviet and Post Soviet Review","1075-1262","1876-3324","HISTORY","('ESCI',)","70","0.3","Q2","1.20","5.26" +"ENGLISH STUDIES IN AFRICA","0013-8398","1943-8117","LITERATURE","('AHCI',)","105","0.3","","1.19","18.00" +"Material Religion","1743-2200","1751-8342","RELIGION","('AHCI',)","259","0.3","","1.18","20.22" +"Art Design & Communication in Higher Education","1474-273X","2040-0896","ART","('ESCI',)","88","0.3","","1.15","0.00" +"CONTEMPORARY THEATRE REVIEW","1048-6801","1477-2264","THEATER","('AHCI',)","178","0.3","","1.15","22.22" +"Atlantic Studies-Global Currents","1478-8810","1740-4649","HISTORY","('ESCI',)","235","0.3","Q2","1.14","23.00" +"Renaissance Studies","0269-1213","1477-4658","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","493","0.3","","1.12","38.39" +"HISTORY OF RELIGIONS","0018-2710","1545-6935","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","547","0.3","('Q2', 'N/A')","1.11","0.00" +"Comparative Literature-East & West","","2572-3618","LITERATURE","('ESCI',)","30","0.3","","1.10","98.00" +"New Review of Film and Television Studies","1740-0309","1740-7923","FILM, RADIO, TELEVISION","('AHCI',)","165","0.3","","1.09","15.38" +"NOVEL-A FORUM ON FICTION","0029-5132","1945-8509","LITERATURE","('AHCI',)","360","0.3","","1.09","0.00" +"Open Philosophy","","2543-8875","PHILOSOPHY","('ESCI',)","82","0.3","","1.09","97.41" +"Studies in Theatre and Performance","1468-2761","2040-0616","THEATER","('AHCI',)","84","0.3","","1.09","25.00" +"Recherches de Theologie et Philosophie Medievales","1370-7493","1783-1717","('MEDIEVAL & RENAISSANCE STUDIES', 'RELIGION')","('AHCI', 'AHCI')","82","0.3","('N/A', 'N/A')","1.08","0.00" +"RIVAR-Revista Iberoamericana de Viticultura Agroindustria y Ruralidad","0719-4994","0719-4994","HISTORY","('ESCI',)","95","0.3","Q2","1.08","96.38" +"SUB-STANCE","0049-2426","1527-2095","LITERATURE","('AHCI',)","466","0.3","","1.08","0.00" +"Classical Receptions Journal","1759-5134","1759-5142","('CLASSICS', 'HUMANITIES, MULTIDISCIPLINARY')","('AHCI', 'AHCI')","112","0.3","('N/A', 'N/A')","1.07","13.41" +"International Journal of the Classical Tradition","1073-0508","1874-6292","('CLASSICS', 'HUMANITIES, MULTIDISCIPLINARY')","('AHCI', 'AHCI')","142","0.3","('N/A', 'N/A')","1.07","42.00" +"NEW THEATRE QUARTERLY","0266-464X","1474-0613","THEATER","('AHCI',)","181","0.3","","1.07","17.65" +"Global Intellectual History","2380-1883","2380-1891","HISTORY","('ESCI',)","95","0.3","Q2","1.06","19.86" +"Philippine Studies-Historical and Ethnographic Viewpoints","2244-1093","2244-1638","HISTORY","('ESCI',)","126","0.3","Q2","1.06","0.00" +"Contemporary Music Review","0749-4467","1477-2256","MUSIC","('AHCI',)","273","0.3","","1.02","20.54" +"KronoScope-Journal for the Study of Time","1567-715X","1568-5241","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","40","0.3","","1.02","5.26" +"Open Library of Humanities","","2056-6700","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","134","0.3","","1.02","97.47" +"THEATRE RESEARCH INTERNATIONAL","0307-8833","1474-0672","THEATER","('AHCI',)","133","0.3","","1.02","32.73" +"Craft Research","2040-4689","2040-4697","ART","('ESCI',)","55","0.3","","1.01","15.00" +"JOURNAL OF SEMITIC STUDIES","0022-4480","1477-8556","ASIAN STUDIES","('AHCI',)","248","0.3","","1.01","18.18" +"CLCWEB-Comparative Literature and Culture","1481-4374","1481-4374","LITERATURE","('AHCI',)","228","0.3","","0.99","54.64" +"Espana Medieval","0214-3038","1988-2971","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","204","0.3","","0.99","100.00" +"Middle Eastern Literatures","1475-262X","1475-2638","LITERATURE","('AHCI',)","81","0.3","","0.99","14.29" +"Modern & Contemporary France","0963-9489","1469-9869","HISTORY","('AHCI',)","179","0.3","Q2","0.99","45.98" +"Grafica-Journal of Graphic Design","2014-9298","2014-9298","ART","('ESCI',)","20","0.3","","0.98","100.00" +"Configurations","1063-1801","1080-6520","('HISTORY & PHILOSOPHY OF SCIENCE', 'LITERATURE')","('AHCI', 'AHCI')","299","0.3","('Q3', 'N/A')","0.97","0.00" +"Hawwa","1569-2078","1569-2086","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","94","0.3","","0.92","17.78" +"Irish Studies Review","0967-0882","1469-9303","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","118","0.3","","0.92","38.75" +"KRITIKA-EXPLORATIONS IN RUSSIAN AND EURASIAN HISTORY","1531-023X","1538-5000","HISTORY","('AHCI',)","438","0.3","Q2","0.92","0.00" +"TIJDSCHRIFT VOOR NEDERLANDSE TAAL-EN LETTERKUNDE","0040-7550","2212-0521","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","102","0.3","","0.92","0.00" +"Anuario de Estudios Medievales","0066-5061","1988-4230","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","285","0.3","","0.90","96.63" +"Journal of Modern European History","1611-8944","2631-9764","HISTORY","('AHCI', 'SSCI')","304","0.3","Q2","0.90","22.92" +"JOURNAL OF THE ROYAL ASIATIC SOCIETY","1356-1863","1474-0591","ASIAN STUDIES","('AHCI',)","670","0.3","","0.90","29.30" +"Arts","","2076-0752","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","423","0.3","","0.89","100.00" +"Korean Studies","0145-840X","1529-1529","ASIAN STUDIES","('ESCI',)","119","0.3","","0.89","0.00" +"REVISTA DE INDIAS","0034-8341","1988-3188","HISTORY","('AHCI',)","379","0.3","Q2","0.89","98.68" +"Grazer Philosophische Studien-International Journal for Analytic Philosophy","0165-9227","1875-6735","PHILOSOPHY","('ESCI',)","249","0.3","","0.88","14.86" +"Open Theology","2300-6579","2300-6579","RELIGION","('ESCI',)","141","0.3","","0.88","93.41" +"Islamic Law and Society","0928-9380","1568-5195","RELIGION","('AHCI',)","302","0.3","","0.86","23.53" +"European Journal of Media Art and Photography","1339-4940","1339-4940","ART","('ESCI',)","18","0.3","","0.85","0.00" +"European Journal of Science and Theology","1841-0464","1842-8517","RELIGION","('ESCI',)","273","0.3","","0.85","0.00" +"International Journal of Islamic Architecture","2045-5895","2045-5909","ARCHITECTURE","('AHCI',)","53","0.3","","0.85","0.00" +"Journal of Song-Yuan Studies","1059-3152","2154-6665","('ASIAN STUDIES', 'HISTORY')","('AHCI', 'AHCI')","94","0.3","('N/A', 'Q2')","0.85","0.00" +"KOREA JOURNAL","0023-3900","0023-3900","ASIAN STUDIES","('AHCI',)","222","0.3","","0.85","0.00" +"Siberian Historical Research-Sibirskie Istoricheskie Issledovaniya","2312-461X","2312-4628","HISTORY","('ESCI',)","79","0.3","Q2","0.85","64.39" +"AFRICAN AMERICAN REVIEW","1062-4783","1945-6182","LITERATURE, AMERICAN","('AHCI',)","428","0.3","","0.84","0.00" +"Central Europe","1479-0963","1745-8218","HISTORY","('AHCI',)","29","0.3","Q2","0.84","21.74" +"Romanticism","1354-991X","1750-0192","LITERATURE","('AHCI',)","102","0.3","","0.84","0.00" +"South Asian Review","0275-9527","2573-9476","('ASIAN STUDIES', 'LITERATURE')","('ESCI', 'ESCI')","86","0.3","('N/A', 'N/A')","0.84","2.15" +"Journal of Contemporary Chinese Art","2051-7041","2051-705X","ART","('ESCI',)","32","0.3","","0.83","4.35" +"SCOTTISH HISTORICAL REVIEW","0036-9241","1750-0222","HISTORY","('AHCI', 'SSCI')","172","0.3","Q2","0.83","1.72" +"Asiatic-IIUM Journal of English Language and Literature","1985-3106","1985-3106","LITERATURE","('ESCI',)","44","0.3","","0.82","0.00" +"BULLETIN OF THE SCHOOL OF ORIENTAL AND AFRICAN STUDIES-UNIVERSITY OF LONDON","0041-977X","1474-0699","ASIAN STUDIES","('AHCI',)","752","0.3","","0.82","53.13" +"AMERICAN JEWISH HISTORY","0164-0178","1086-3141","HISTORY","('AHCI',)","185","0.3","Q2","0.81","0.00" +"International Public History","","2567-1111","HISTORY","('ESCI',)","22","0.3","Q2","0.81","17.14" +"Journal of Africana Religions","2165-5405","2165-5413","RELIGION","('ESCI',)","81","0.3","","0.81","0.00" +"SCREEN","0036-9543","1460-2474","FILM, RADIO, TELEVISION","('AHCI',)","848","0.3","","0.80","36.26" +"BIOGRAPHY-AN INTERDISCIPLINARY QUARTERLY","0162-4962","1529-1456","LITERATURE","('AHCI',)","378","0.3","","0.79","0.00" +"International Journal of Fashion Studies","2051-7106","2051-7114","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","73","0.3","","0.79","2.17" +"JOURNAL OF CHURCH AND STATE","0021-969X","2040-4867","RELIGION","('AHCI',)","299","0.3","","0.79","7.50" +"Museum Worlds","2049-6729","2049-6737","ART","('ESCI',)","57","0.3","","0.79","91.67" +"CANADIAN HISTORICAL REVIEW","0008-3755","1710-1093","HISTORY","('AHCI', 'SSCI')","364","0.3","Q2","0.78","0.00" +"CHURCH HISTORY","0009-6407","1755-2613","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","473","0.3","('Q2', 'N/A')","0.78","44.93" +"Grey Room","1526-3819","1536-0105","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","315","0.3","","0.77","0.00" +"INTERNATIONAL JOURNAL OF AFRICAN HISTORICAL STUDIES","0361-7882","2326-3016","HISTORY","('AHCI',)","533","0.3","Q2","0.77","0.00" +"Austrian History Yearbook","0067-2378","1558-5255","HISTORY","('AHCI', 'SSCI')","131","0.3","Q2","0.76","43.18" +"International Review of Pragmatics","1877-3095","1877-3109","LANGUAGE & LINGUISTICS","('ESCI',)","149","0.3","","0.76","13.16" +"POLIS","0142-257X","2051-2996","CLASSICS","('AHCI',)","99","0.3","","0.76","18.42" +"Journal of World Christianity","2377-8784","1943-1538","RELIGION","('ESCI',)","36","0.3","","0.75","0.00" +"Diplomacy & Statecraft","0959-2296","1557-301X","('HISTORY', 'INTERNATIONAL RELATIONS')","('SSCI', 'SSCI')","381","0.3","('Q2', 'Q4')","0.74","31.63" +"ETHNOHISTORY","0014-1801","1527-5477","('ANTHROPOLOGY', 'HISTORY')","('SSCI', 'AHCI, SSCI')","668","0.3","('Q4', 'Q2')","0.74","0.00" +"Gender and History","0953-5233","1468-0424","('HISTORY', 'WOMENS STUDIES')","('AHCI, SSCI', 'SSCI')","687","0.3","('Q2', 'Q4')","0.74","37.32" +"Documenta et Instrumenta","1697-4328","1697-3798","HISTORY","('ESCI',)","32","0.3","Q2","0.73","90.63" +"JOURNAL OF BECKETT STUDIES","0309-5207","1759-7811","('LITERARY THEORY & CRITICISM', 'LITERATURE, BRITISH ISLES', 'THEATER')","('AHCI', 'AHCI', 'AHCI')","79","0.3","('N/A', 'N/A', 'N/A')","0.73","0.00" +"Political Theology","1462-317X","1743-1719","RELIGION","('ESCI',)","271","0.3","","0.73","7.89" +"Bioscope-South Asian Screen Studies","0974-9276","0976-352X","('ASIAN STUDIES', 'FILM, RADIO, TELEVISION')","('AHCI', 'AHCI')","111","0.3","('N/A', 'N/A')","0.72","8.11" +"Comparative Philosophy-An International Journal of Constructive Engagement of Distinct Approaches toward World Philosophy","","2151-6014","PHILOSOPHY","('ESCI',)","72","0.3","","0.72","100.00" +"GESCHICHTE UND GESELLSCHAFT","0340-613X","2196-9000","HISTORY","('AHCI',)","283","0.3","Q2","0.72","0.00" +"JAPANESE JOURNAL OF RELIGIOUS STUDIES","0304-1042","0304-1042","RELIGION","('AHCI',)","216","0.3","","0.72","100.00" +"JOURNAL OF ECCLESIASTICAL HISTORY","0022-0469","1469-7637","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","314","0.3","('Q2', 'N/A')","0.72","30.11" +"RELIGION AND AMERICAN CULTURE-A JOURNAL OF INTERPRETATION","1052-1151","1533-8568","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","94","0.3","('Q2', 'N/A')","0.72","0.00" +"BIJDRAGEN TOT DE TAAL- LAND- EN VOLKENKUNDE","0006-2294","2213-4379","('ANTHROPOLOGY', 'ASIAN STUDIES')","('SSCI', 'AHCI')","366","0.3","('Q4', 'N/A')","0.71","60.00" +"Mediaevalia-An Interdisciplinary Journal of Medieval Studies Worldwide","0361-946X","2161-8046","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","94","0.3","","0.71","0.00" +"Acta Analytica-International Periodical for Philosophy in the Analytical Tradition","0353-5150","1874-6349","PHILOSOPHY","('AHCI',)","199","0.3","","0.70","38.84" +"Afghanistan","2399-357X","2399-3588","ASIAN STUDIES","('ESCI',)","53","0.3","","0.70","0.00" +"Studies in Eastern European Cinema","2040-350X","2040-3518","FILM, RADIO, TELEVISION","('ESCI',)","37","0.3","","0.70","26.39" +"Aries-Journal for the Study of Western Esotericism","1567-9896","1570-0593","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","67","0.3","","0.69","20.59" +"China-EU Law Journal","1868-5153","1868-5161","LAW","('ESCI',)","14","0.3","Q3","0.69","53.85" +"Early China","0362-5028","2325-2324","ASIAN STUDIES","('AHCI',)","181","0.3","","0.69","31.03" +"Canadian Journal American and Caribbean Studies","0826-3663","2333-1461","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","123","0.3","","0.68","1.37" +"Dance Research","0264-2875","1750-0095","DANCE","('AHCI',)","97","0.3","","0.68","5.26" +"French History","0269-1191","1477-4542","HISTORY","('AHCI', 'SSCI')","161","0.3","Q2","0.68","28.17" +"JOURNAL OF RELIGIOUS HISTORY","0022-4227","1467-9809","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","186","0.3","('Q2', 'N/A')","0.68","28.24" +"Spirituality Studies","","1339-9578","RELIGION","('ESCI',)","17","0.3","","0.68","0.00" +"HISTORY OF PHOTOGRAPHY","0308-7298","2150-7295","ART","('AHCI',)","208","0.3","","0.67","17.31" +"Northern Scotland","0306-5278","2042-2717","HISTORY","('ESCI',)","36","0.3","Q2","0.67","0.00" +"Philological Encounters","2451-9189","2451-9197","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('ESCI', 'ESCI')","50","0.3","('N/A', 'N/A')","0.67","21.43" +"Prism-Theory and Modern Chinese Literature","2578-3491","2578-3505","('ASIAN STUDIES', 'LITERATURE')","('ESCI', 'ESCI')","57","0.3","('N/A', 'N/A')","0.67","83.33" +"Musicologist","2618-5652","2618-5652","MUSIC","('ESCI',)","16","0.3","","0.66","100.00" +"Theoria-A Swedish Journal of Philosophy","0040-5825","1755-2567","PHILOSOPHY","('AHCI',)","250","0.3","","0.66","38.86" +"Australian Humanities Review","1835-8063","1325-8338","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","211","0.3","","0.65","0.00" +"Britannia","0068-113X","1753-5352","('ARCHAEOLOGY', 'HISTORY')","('AHCI', 'AHCI')","259","0.3","('N/A', 'Q2')","0.65","17.91" +"BYZANTINE AND MODERN GREEK STUDIES","0307-0131","1749-625X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","145","0.3","","0.65","44.23" +"East Asian Publishing and Society","2210-6278","2210-6286","ASIAN STUDIES","('ESCI',)","18","0.3","","0.65","0.00" +"Liverpool Law Review","0144-932X","1572-8625","LAW","('ESCI',)","98","0.3","Q3","0.65","49.30" +"Communications in Applied and Industrial Mathematics","","2038-0909","MATHEMATICS","('ESCI',)","80","0.3","Q4","0.64","100.00" +"Historisk Tidskrift","0345-469X","0345-469X","HISTORY","('AHCI',)","108","0.3","Q2","0.64","0.00" +"Journal of Design History","0952-4649","1741-7279","ART","('AHCI',)","315","0.3","","0.64","23.94" +"BLACK THEOLOGY","1476-9948","1743-1670","RELIGION","('ESCI',)","112","0.3","","0.63","13.79" +"Boletin de la Asociacion Internacional de Derecho Cooperativo-International Association of Cooperative Law Journal","1134-993X","2386-4893","LAW","('ESCI',)","26","0.3","Q3","0.63","100.00" +"Early Christianity","1868-7032","1868-8020","RELIGION","('ESCI',)","119","0.3","","0.63","0.00" +"Hebrew Bible and Ancient Israel","2192-2276","2192-2284","RELIGION","('ESCI',)","152","0.3","","0.63","0.00" +"IDEALISTIC STUDIES","0046-8541","2153-8239","PHILOSOPHY","('AHCI',)","42","0.3","","0.63","0.00" +"ZEITGESCHICHTE","0256-5250","","HISTORY","('AHCI', 'SSCI')","48","0.3","Q2","0.63","0.00" +"Cultura y Religion","0718-5472","0718-4727","RELIGION","('ESCI',)","43","0.3","","0.62","2.00" +"Culture and Religion","1475-5610","1475-5629","RELIGION","('ESCI',)","262","0.3","","0.62","26.32" +"HISTORISK TIDSSKRIFT","0018-263X","1504-2944","HISTORY","('AHCI',)","100","0.3","Q2","0.62","54.76" +"International Communication of Chinese Culture","2197-4233","2197-4241","('AREA STUDIES', 'ASIAN STUDIES')","('ESCI', 'ESCI')","58","0.3","('Q3', 'N/A')","0.62","36.21" +"International Journal of Hindu Studies","1022-4556","1574-9282","RELIGION","('AHCI',)","148","0.3","","0.62","28.00" +"PentecoStudies-An Interdisciplinary Journal for Research on the Pentecostal and Charismatic Movements","2041-3599","1871-7691","RELIGION","('ESCI',)","31","0.3","","0.62","0.00" +"SCANDINAVIAN STUDIES","0036-5637","2163-8195","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","195","0.3","","0.62","0.00" +"CONTEMPORARY PACIFIC","1043-898X","1527-9464","AREA STUDIES","('SSCI',)","571","0.3","Q3","0.61","0.00" +"Historia-Santiago","0717-7194","0717-7194","HISTORY","('AHCI',)","162","0.3","Q2","0.61","20.00" +"International Journal of Canadian Studies","1180-3991","1923-5291","('AREA STUDIES', 'HUMANITIES, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","65","0.3","('Q3', 'N/A')","0.61","0.00" +"Modern Chinese Literature and Culture","1520-9857","2328-966X","('ASIAN STUDIES', 'CULTURAL STUDIES', 'LITERATURE')","('AHCI', 'AHCI, SSCI', 'AHCI')","176","0.3","('N/A', 'Q4', 'N/A')","0.61","0.00" +"Res Philosophica","2168-9105","2168-9113","PHILOSOPHY","('AHCI',)","225","0.3","","0.61","0.00" +"Teologia y Vida","0049-3449","0717-6295","RELIGION","('AHCI',)","64","0.3","","0.61","62.50" +"ASIAN THEATRE JOURNAL","0742-5457","1527-2109","('ASIAN STUDIES', 'THEATER')","('AHCI', 'AHCI')","138","0.3","('N/A', 'N/A')","0.60","0.00" +"Historelo-Revista de Historia Regional y Local","2145-132X","2145-132X","HISTORY","('ESCI',)","41","0.3","Q2","0.60","100.00" +"Humanities-Basel","","2076-0787","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","534","0.3","","0.60","99.52" +"Interdisciplinary Journal for Religion and Transformation in Contemporary Society","2365-3140","2364-2807","RELIGION","('ESCI',)","46","0.3","","0.60","86.30" +"Journal for the Study of the Old Testament","0309-0892","1476-6728","RELIGION","('AHCI',)","549","0.3","","0.60","10.31" +"South Asian Popular Culture","1474-6689","1474-6697","('ASIAN STUDIES', 'CULTURAL STUDIES')","('ESCI', 'ESCI')","153","0.3","('N/A', 'Q4')","0.60","9.46" +"Film Fashion & Consumption","2044-2823","2044-2831","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","48","0.3","","0.59","9.09" +"SYMPOSIUM-A QUARTERLY JOURNAL IN MODERN LITERATURES","0039-7709","1931-0676","LITERATURE","('AHCI',)","216","0.3","","0.59","0.00" +"Inter-Asia Cultural Studies","1464-9373","1469-8447","('ANTHROPOLOGY', 'ASIAN STUDIES', 'CULTURAL STUDIES')","('SSCI', 'AHCI', 'AHCI, SSCI')","625","0.3","('Q4', 'N/A', 'Q4')","0.58","7.95" +"Rivista di Matematica della Universita di Parma","0035-6298","","MATHEMATICS","('ESCI',)","177","0.3","Q4","0.58","0.00" +"Studies in Christian Ethics","0953-9468","1745-5235","RELIGION","('AHCI',)","140","0.3","","0.58","31.53" +"Architektura & Urbanizmus","0044-8680","","ARCHITECTURE","('AHCI',)","38","0.3","","0.57","90.74" +"CAHIERS DU MONDE RUSSE","1252-6576","1777-5388","HISTORY","('AHCI',)","274","0.3","Q2","0.57","0.00" +"Early Medieval China","1529-9104","1946-7842","ASIAN STUDIES","('AHCI',)","53","0.3","","0.57","5.88" +"Filosofija-Sociologija","0235-7186","0235-7186","('PHILOSOPHY', 'SOCIOLOGY')","('AHCI', 'SSCI')","141","0.3","('N/A', 'Q4')","0.57","37.68" +"Journal of Applied Hermeneutics","1927-4416","1927-4416","PHILOSOPHY","('ESCI',)","30","0.3","","0.57","5.88" +"Ancient Civilizations from Scythia to Siberia","0929-077X","1570-0577","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","57","0.3","","0.56","0.00" +"ART HISTORY","0141-6790","1467-8365","ART","('AHCI',)","487","0.3","","0.56","22.94" +"HISTORIAN","0018-2370","1540-6563","HISTORY","('AHCI',)","261","0.3","Q2","0.56","4.00" +"Law and Humanities","1752-1483","1752-1491","LAW","('ESCI',)","97","0.3","Q3","0.56","48.94" +"PHILOSOPHY TODAY","0031-8256","2329-8596","PHILOSOPHY","('AHCI',)","401","0.3","","0.56","0.00" +"Al-Jamiah-Journal of Islamic Studies","0126-012X","2338-557X","RELIGION","('ESCI',)","78","0.3","","0.55","89.09" +"ARCHITECTURAL DESIGN","0003-8504","1554-2769","ARCHITECTURE","('AHCI',)","810","0.3","","0.55","0.00" +"Collectanea Christiana Orientalia","1697-2104","2386-7442","RELIGION","('ESCI',)","43","0.3","","0.55","0.00" +"International Journal on Minority and Group Rights","1385-4879","1571-8115","LAW","('ESCI',)","259","0.3","Q3","0.55","8.65" +"Journal of Speculative Philosophy","0891-625X","1527-9383","PHILOSOPHY","('AHCI',)","311","0.3","","0.55","0.00" +"Organon F","1335-0668","2585-7150","PHILOSOPHY","('AHCI',)","56","0.3","","0.55","100.00" +"CLA JOURNAL-COLLEGE LANGUAGE ASSOCIATION","0007-8549","","LITERATURE","('AHCI',)","95","0.3","","0.54","0.00" +"COMITATUS-A JOURNAL OF MEDIEVAL AND RENAISSANCE STUDIES","0069-6412","1557-0290","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","34","0.3","","0.54","0.00" +"Historische Zeitschrift","0018-2613","2196-680X","HISTORY","('AHCI',)","303","0.3","Q2","0.54","5.63" +"Journal of International Humanitarian Legal Studies","1878-1373","1878-1527","LAW","('ESCI',)","70","0.3","Q3","0.54","33.33" +"PHILOSOPHICAL FORUM","0031-806X","1467-9191","PHILOSOPHY","('AHCI',)","204","0.3","","0.54","27.12" +"Third Text","0952-8822","1475-5297","ART","('AHCI',)","453","0.3","","0.54","18.63" +"VETUS TESTAMENTUM","0042-4935","","RELIGION","('AHCI',)","854","0.3","","0.54","11.02" +"Art-Sanat","","2148-3582","ART","('ESCI',)","53","0.3","","0.53","39.83" +"Cinta de Moebio","0717-554X","0717-554X","PHILOSOPHY","('ESCI',)","222","0.3","","0.53","100.00" +"Cuadernos de Historia Contemporanea","0214-400X","1988-2734","HISTORY","('ESCI',)","164","0.3","Q2","0.53","98.00" +"Musicology Australia","0814-5857","1949-453X","MUSIC","('ESCI',)","51","0.3","","0.53","37.04" +"South African Journal on Human Rights","0258-7203","1996-2126","LAW","('SSCI',)","267","0.3","Q3","0.53","8.16" +"Animation-An Interdisciplinary Journal","1746-8477","1746-8485","FILM, RADIO, TELEVISION","('AHCI',)","127","0.3","","0.52","26.09" +"HISTORICAL REFLECTIONS-REFLEXIONS HISTORIQUES","0315-7997","1939-2419","HISTORY","('AHCI',)","212","0.3","Q2","0.52","0.00" +"Feminist Theology","0966-7350","1745-5189","RELIGION","('AHCI',)","124","0.3","","0.51","11.94" +"Historia Critica","0121-1617","1900-6152","HISTORY","('AHCI', 'SSCI')","264","0.3","Q2","0.51","100.00" +"Studia Theologica-Czech Republic","1212-8570","2570-9798","RELIGION","('AHCI',)","38","0.3","","0.51","97.94" +"Synesis","1678-6785","1984-6754","PHILOSOPHY","('ESCI',)","42","0.3","","0.51","0.51" +"Visual Resources","0197-3762","1477-2809","ART","('ESCI',)","91","0.3","","0.51","23.81" +"Manzar-The Scientific Journal of Landscape","2008-7446","2008-2169","ARCHITECTURE","('ESCI',)","82","0.3","","0.50","0.00" +"Contemporary Asia Arbitration Journal","1999-9747","1999-9747","LAW","('ESCI',)","46","0.3","Q3","0.49","0.00" +"HISPANIA-REVISTA ESPANOLA DE HISTORIA","0018-2141","1988-8368","HISTORY","('AHCI',)","458","0.3","Q2","0.49","94.81" +"Hume Studies","0319-7336","1947-9921","PHILOSOPHY","('AHCI',)","179","0.3","","0.49","0.00" +"Mathematics Enthusiast","1551-3440","1551-3440","MATHEMATICS","('ESCI',)","171","0.3","Q4","0.49","0.00" +"Cambridge Opera Journal","0954-5867","1474-0621","MUSIC","('AHCI',)","112","0.3","","0.48","37.21" +"Deleuze and Guattari Studies","2398-9777","2398-9785","PHILOSOPHY","('AHCI',)","53","0.3","","0.48","0.00" +"Futuro del Pasado-Revista Electronica de Historia","1989-9289","1989-9289","HISTORY","('ESCI',)","66","0.3","Q2","0.48","96.67" +"Journal of Inequalities and Special Functions","2217-4303","2217-4303","MATHEMATICS","('ESCI',)","121","0.3","Q4","0.48","0.00" +"SOJOURN-Journal of Social Issues in Southeast Asia","0217-9520","1793-2858","AREA STUDIES","('ESCI',)","199","0.3","Q3","0.48","0.00" +"Studia Historica-Historia Moderna","0213-2079","2386-3889","HISTORY","('ESCI',)","158","0.3","Q2","0.48","94.94" +"STUDIES IN RELIGION-SCIENCES RELIGIEUSES","0008-4298","2042-0587","RELIGION","('AHCI',)","228","0.3","","0.48","44.05" +"Journal for the Study of Religion","1011-7601","1011-7601","RELIGION","('ESCI',)","106","0.3","","0.47","86.11" +"NINETEENTH CENTURY MUSIC","0148-2076","","MUSIC","('AHCI',)","244","0.3","","0.47","0.00" +"PROBUS","0921-4771","1613-4079","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","280","0.3","('N/A', 'Q4')","0.47","14.29" +"Studies in Chinese Religions","2372-9988","2372-9996","('ASIAN STUDIES', 'RELIGION')","('ESCI', 'ESCI')","39","0.3","('N/A', 'N/A')","0.47","5.56" +"Arabic Sciences and Philosophy","0957-4239","1474-0524","('HISTORY & PHILOSOPHY OF SCIENCE', 'PHILOSOPHY')","('AHCI', 'AHCI')","148","0.3","('Q3', 'N/A')","0.46","19.23" +"Derrida Today","1754-8500","1754-8519","PHILOSOPHY","('ESCI',)","120","0.3","","0.46","3.33" +"JOURNAL OF THEOLOGICAL STUDIES","0022-5185","1477-4607","RELIGION","('AHCI',)","697","0.3","","0.46","15.15" +"Perspectiva Teologica","0102-4469","2176-8757","RELIGION","('ESCI',)","44","0.3","","0.46","92.47" +"WOMENS STUDIES-AN INTERDISCIPLINARY JOURNAL","0049-7878","1547-7045","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","366","0.3","","0.46","6.85" +"AMERICAN CATHOLIC PHILOSOPHICAL QUARTERLY","1051-3558","2153-8441","PHILOSOPHY","('AHCI',)","189","0.3","","0.45","0.00" +"European Comic Art","1754-3797","1754-3800","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","27","0.3","","0.44","0.00" +"Journal of African Law","0021-8553","1464-3731","LAW","('SSCI',)","232","0.3","Q3","0.44","46.88" +"Revista de Investigacoes Constitucionais-Journal of Constitutional Research","2359-5639","2359-5639","LAW","('ESCI',)","89","0.3","Q3","0.44","96.61" +"Statute Law Review","0144-3593","1464-3863","LAW","('ESCI',)","103","0.3","Q3","0.44","8.86" +"Journal of Ancient Near Eastern Religions","1569-2116","1569-2124","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","82","0.3","('Q2', 'N/A')","0.43","20.83" +"Journal of Private International Law","1744-1048","1757-8418","LAW","('ESCI',)","121","0.3","Q3","0.43","32.84" +"Southern African Business Review","1998-8125","1998-8125","LAW","('ESCI',)","192","0.3","Q3","0.43","100.00" +"Tijdschrift voor Rechtsgeschiedenis-Revue d Histoire du Droit-The Legal History Review","0040-7585","","('HISTORY', 'LAW')","('AHCI, SSCI', 'SSCI')","151","0.3","('Q2', 'Q3')","0.43","35.29" +"Wasafiri","0269-0055","1747-1508","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","102","0.3","","0.43","21.43" +"Ius Humani-Revista de Derecho","1390-440X","1390-7794","LAW","('ESCI',)","24","0.3","Q3","0.42","75.56" +"Luso-Brazilian Review","0024-7413","1548-9957","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","122","0.3","","0.42","0.00" +"Musica Hodie","1676-3939","2317-6776","MUSIC","('AHCI',)","57","0.3","","0.42","92.06" +"Vestnik Ugrovedeniya-Bulletin of Ugric Studies","2220-4156","2587-9766","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","91","0.3","","0.42","98.10" +"Adelaide Law Review","0065-1915","0065-1915","LAW","('ESCI',)","135","0.3","Q3","0.41","0.00" +"AFRICAN ARTS","0001-9933","1937-2108","ART","('AHCI',)","313","0.3","","0.41","0.00" +"ALBERTA LAW REVIEW","0002-4821","1925-8356","LAW","('ESCI',)","209","0.3","Q3","0.41","0.00" +"Teorema","0210-1602","","PHILOSOPHY","('AHCI',)","121","0.3","","0.41","0.00" +"Victorian Periodicals Review","0709-4698","1712-526X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","192","0.3","","0.41","0.00" +"Wacana-Jurnal Ilmu Pengetahuan Budaya-Journal of the Humanities of Indonesia","1411-2272","2407-6899","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","74","0.3","","0.41","98.61" +"AUSTRALIAN LAW JOURNAL","0004-9611","0004-9611","LAW","('ESCI',)","228","0.3","Q3","0.40","0.00" +"CRIMINAL LAW JOURNAL","0314-1160","0314-1160","LAW","('ESCI',)","95","0.3","Q3","0.40","0.00" +"International Journal for the Study of the Christian Church","1474-225X","1747-0234","RELIGION","('ESCI',)","101","0.3","","0.40","22.97" +"Journal of Logic and Analysis","1759-9008","1759-9008","LOGIC","('ESCI',)","45","0.3","Q4","0.40","100.00" +"NEAR EASTERN ARCHAEOLOGY","1094-2076","2325-5404","ARCHAEOLOGY","('AHCI',)","396","0.3","","0.40","1.11" +"Nineteenth-Century Contexts-An Interdisciplinary Journal","0890-5495","1477-2663","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","172","0.3","","0.40","15.05" +"Psychoanalysis and History","1460-8235","1755-201X","('HISTORY', 'HISTORY OF SOCIAL SCIENCES', 'PSYCHOLOGY, PSYCHOANALYSIS')","('AHCI, SSCI', 'SSCI', 'SSCI')","86","0.3","('Q2', 'Q4', 'Q4')","0.40","2.38" +"Teaching Theology and Religion","1368-4868","1467-9647","('EDUCATION & EDUCATIONAL RESEARCH', 'RELIGION')","('ESCI', 'ESCI')","121","0.3","('Q4', 'N/A')","0.40","8.51" +"American Art","1073-9300","1549-6503","ART","('AHCI',)","149","0.3","","0.39","0.00" +"Arab Studies Quarterly","0271-3519","2043-6920","AREA STUDIES","('ESCI',)","216","0.3","Q3","0.39","73.68" +"Company and Securities Law Journal","0729-2775","0729-2775","LAW","('ESCI',)","70","0.3","Q3","0.39","0.00" +"Edad Media-Revista de Historia","1138-9621","2530-6448","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","87","0.3","","0.39","100.00" +"Eesti ja Soome-Ugri Keeleteaduse Ajakiri-Journal of Estonian and Finno-Ugric Linguistics","1736-8987","2228-1339","LANGUAGE & LINGUISTICS","('ESCI',)","36","0.3","","0.39","100.00" +"EGA-Revista de Expresion Grafica Arquitectonica","1133-6137","2254-6103","ARCHITECTURE","('AHCI',)","159","0.3","","0.39","96.18" +"HSE-Social and Education History","2014-3567","2014-3567","HISTORY OF SOCIAL SCIENCES","('ESCI',)","32","0.3","Q4","0.39","61.11" +"Italianist","0261-4340","1748-619X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","95","0.3","","0.39","30.00" +"Journal of Spiritual Formation and Soul Care","1939-7909","2328-1030","RELIGION","('ESCI',)","45","0.3","","0.39","0.00" +"Oido Pensante","2250-7116","2250-7116","MUSIC","('ESCI',)","30","0.3","","0.39","84.00" +"Ukrainskyi Istorychnyi Zhurnal","0130-5247","1729-570X","HISTORY","('ESCI',)","162","0.3","Q2","0.39","60.24" +"Alicante Journal of English Studies-Revista Alicantina de Estudios Ingleses","0214-4808","2171-861X","('CULTURAL STUDIES', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'LITERATURE')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","32","0.3","('Q4', 'N/A', 'Q4', 'N/A')","0.38","100.00" +"Archaeologies-Journal of the World Archaeological Congress","1555-8622","1935-3987","ARCHAEOLOGY","('AHCI',)","228","0.3","","0.38","23.21" +"Cauriensia-Revista Anual de Ciencias Eclesiasticas","1886-4945","2340-4256","RELIGION","('ESCI',)","96","0.3","","0.38","97.26" +"Historia Social","0214-2570","0214-2570","HISTORY","('ESCI',)","250","0.3","Q2","0.38","0.00" +"ICONARP International Journal of Architecture and Planning","2147-9380","2147-9380","ARCHITECTURE","('ESCI',)","92","0.3","","0.38","95.97" +"Islamic Africa","0803-0685","2154-0993","RELIGION","('AHCI',)","39","0.3","","0.38","12.12" +"Journal of Latin American Cultural Studies","1356-9325","1469-9575","CULTURAL STUDIES","('AHCI', 'SSCI')","190","0.3","Q4","0.38","8.57" +"Prostor","1330-0652","1333-9117","ARCHITECTURE","('AHCI',)","65","0.3","","0.38","94.34" +"Wittgenstein-Studien","1868-7431","1868-7458","PHILOSOPHY","('ESCI',)","31","0.3","","0.38","9.38" +"Acta Mathematica Vietnamica","0251-4184","2315-4144","MATHEMATICS","('ESCI',)","404","0.3","Q4","0.37","5.79" +"Artseduca","2254-0709","2254-0709","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","56","0.3","","0.37","73.28" +"Biblical Interpretation-A Journal of Contemporary Approaches","0927-2569","1568-5152","RELIGION","('AHCI',)","185","0.3","","0.37","11.39" +"European Journal of Korean Studies","2631-4134","2516-5399","ASIAN STUDIES","('ESCI',)","21","0.3","","0.37","0.00" +"Izvestiya Instituta Matematiki i Informatiki-Udmurtskogo Gosudarstvennogo Universiteta","2226-3594","2410-1737","MATHEMATICS","('ESCI',)","61","0.3","Q4","0.37","0.00" +"Logos-Revista de Linguistica Filosofia y Literatura","0716-7520","0719-3262","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","48","0.3","","0.37","81.48" +"QUEENS LAW JOURNAL","0316-778X","0316-778X","LAW","('ESCI',)","142","0.3","Q3","0.37","0.00" +"Studia Phaenomenologica","1582-5647","2069-0061","PHILOSOPHY","('AHCI',)","75","0.3","","0.37","0.00" +"Tsukuba Journal of Mathematics","0387-4982","2423-821X","MATHEMATICS","('ESCI',)","198","0.3","Q4","0.37","0.00" +"Utrecht Journal of International and European Law","","2053-5341","('INTERNATIONAL RELATIONS', 'LAW')","('ESCI', 'ESCI')","43","0.3","('Q4', 'Q3')","0.37","95.45" +"Biomedical Spectroscopy and Imaging","2212-8794","2212-8808","SPECTROSCOPY","('ESCI',)","185","0.3","Q4","0.36","50.00" +"Concrete Operators","2299-3282","2299-3282","MATHEMATICS","('ESCI',)","57","0.3","Q4","0.36","100.00" +"Journal of Commutative Algebra","1939-0807","1939-2346","MATHEMATICS","('SCIE',)","221","0.3","Q4","0.36","0.00" +"African Diaspora","1872-5457","1872-5465","AREA STUDIES","('ESCI',)","90","0.3","Q3","0.35","29.41" +"MODERNISM-MODERNITY","1071-6068","1080-6601","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","419","0.3","","0.35","0.00" +"Studia Islamika","0215-0492","2355-6145","RELIGION","('ESCI',)","103","0.3","","0.35","97.87" +"Ambix","0002-6980","1745-8234","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE')","261","0.3","Q3","0.34","21.74" +"Hong Kong Law Journal","0378-0600","","LAW","('SSCI',)","186","0.3","Q3","0.34","0.00" +"International Journal of Philosophy and Theology","2169-2327","2169-2335","PHILOSOPHY","('ESCI',)","88","0.3","","0.34","42.65" +"JOURNAL FOR THE HISTORY OF ASTRONOMY","0021-8286","1753-8556","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE')","293","0.3","Q3","0.34","14.75" +"Journal of Child and Adolescent Mental Health","1728-0583","1728-0591","PSYCHOLOGY, CLINICAL","('ESCI',)","287","0.3","Q4","0.34","12.50" +"Populism","2588-8064","2588-8072","POLITICAL SCIENCE","('ESCI',)","62","0.3","Q4","0.34","18.52" +"Revista de Historia Moderna-Anales de la Universidad de Alicante","0212-5862","1989-9823","HISTORY","('ESCI',)","128","0.3","Q2","0.34","100.00" +"STUDI STORICI","0039-3037","2036-458X","HISTORY","('AHCI',)","250","0.3","Q2","0.34","0.00" +"TRANSACTIONS OF THE PHILOLOGICAL SOCIETY","0079-1636","1467-968X","LANGUAGE & LINGUISTICS","('AHCI',)","255","0.3","","0.34","43.28" +"Bulletin Mathematique de la Societe des Sciences Mathematiques de Roumanie","1220-3874","2065-0264","MATHEMATICS","('SCIE',)","362","0.3","Q4","0.33","0.00" +"HISTORY OF PSYCHIATRY","0957-154X","1740-2360","('HISTORY OF SOCIAL SCIENCES', 'PSYCHIATRY')","('SSCI', 'SSCI')","476","0.3","('Q4', 'Q4')","0.33","25.00" +"JOURNAL OF KNOT THEORY AND ITS RAMIFICATIONS","0218-2165","1793-6527","MATHEMATICS","('SCIE',)","949","0.3","Q4","0.33","1.22" +"Journal of Mathematical Analysis","2217-3412","2217-3412","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","233","0.3","('Q4', 'Q4')","0.33","0.00" +"Mathematica Bohemica","0862-7959","2464-7136","MATHEMATICS","('ESCI',)","347","0.3","Q4","0.33","94.74" +"Thai Journal of Mathematics","1686-0209","1686-0209","MATHEMATICS","('ESCI',)","368","0.3","Q4","0.33","0.27" +"VLC Arquitectura-Research Journal","2341-3050","2341-2747","ARCHITECTURE","('ESCI',)","31","0.3","","0.33","98.36" +"Asian Journal of WTO & International Health Law and Policy","1819-5164","","('HEALTH POLICY & SERVICES', 'INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI', 'SSCI')","87","0.3","('Q4', 'Q4', 'Q3')","0.32","0.00" +"Boletin Academico-Revista de Investigacion y Arquitectura Contemporanea","","2173-6723","ARCHITECTURE","('ESCI',)","3","0.3","","0.32","100.00" +"ECOLOGY LAW QUARTERLY","0046-1121","0046-1121","('ENVIRONMENTAL STUDIES', 'LAW')","('SSCI', 'SSCI')","328","0.3","('Q4', 'Q3')","0.32","0.00" +"Journal of Contemporary Mathematical Analysis-Armenian Academy of Sciences","1068-3623","1934-9416","MATHEMATICS","('SCIE',)","161","0.3","Q4","0.32","2.52" +"PAEDAGOGICA HISTORICA","0030-9230","1477-674X","('EDUCATION & EDUCATIONAL RESEARCH', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","448","0.3","('Q4', 'Q4')","0.32","15.43" +"Sculpture Journal","1366-2724","1756-9923","ART","('AHCI',)","43","0.3","","0.32","0.00" +"Studia Universitatis Babes-Bolyai Mathematica","0252-1938","2065-961X","MATHEMATICS","('ESCI',)","381","0.3","Q4","0.32","1.04" +"Asian Cinema","1059-440X","2049-6710","FILM, RADIO, TELEVISION","('ESCI',)","51","0.3","","0.31","5.88" +"Conformal Geometry and Dynamics","1088-4173","1088-4173","MATHEMATICS","('ESCI',)","96","0.3","Q4","0.31","81.25" +"Contemporanea","1127-3070","1127-3070","HISTORY","('AHCI',)","138","0.3","Q2","0.31","0.00" +"English Studies at NBU","2367-5705","2367-8704","LANGUAGE & LINGUISTICS","('ESCI',)","23","0.3","","0.31","100.00" +"Etikk i Praksis","1890-3991","1890-4009","('ETHICS', 'PHILOSOPHY')","('SSCI', 'AHCI')","70","0.3","('Q4', 'N/A')","0.31","95.24" +"Fachsprache-Journal of Professional and Scientific Communication","1017-3285","2523-9201","LANGUAGE & LINGUISTICS","('ESCI',)","35","0.3","","0.31","0.00" +"Imago Mundi-The International Journal for the History of Cartography","0308-5694","1479-7801","('GEOGRAPHY', 'HISTORY', 'HISTORY & PHILOSOPHY OF SCIENCE', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'AHCI, SSCI', 'AHCI, SSCI', 'SSCI')","241","0.3","('Q4', 'Q2', 'Q3', 'Q4')","0.31","8.11" +"Journal of Jewish Languages","2213-4387","2213-4638","LANGUAGE & LINGUISTICS","('ESCI',)","18","0.3","","0.31","33.33" +"METU Journal of the Faculty of Architecture","0258-5316","0258-5316","ARCHITECTURE","('AHCI',)","190","0.3","","0.31","75.00" +"Pasado y Memoria-Revista de Historia Contemporanea","1579-3311","2386-4745","HISTORY","('ESCI',)","98","0.3","Q2","0.31","96.25" +"Empedocles-European Journal for the Philosophy of Communication","1757-1952","1757-1960","PHILOSOPHY","('ESCI',)","25","0.3","","0.30","0.00" +"Journal de Theorie des Nombres de Bordeaux","1246-7405","2118-8572","MATHEMATICS","('SCIE',)","335","0.3","Q4","0.30","59.17" +"NWIG-New West Indian Guide-Nieuwe West-Indische Gids","1382-2373","1382-2373","('AREA STUDIES', 'HUMANITIES, MULTIDISCIPLINARY')","('SSCI', 'AHCI')","128","0.3","('Q3', 'N/A')","0.30","66.67" +"Studia Theologica-Nordic Journal of Theology","0039-338X","1502-7791","RELIGION","('ESCI',)","63","0.3","","0.30","48.57" +"STUDIES IN EAST EUROPEAN THOUGHT","0925-9392","1573-0948","('ETHICS', 'PHILOSOPHY')","('SSCI', 'AHCI')","133","0.3","('Q4', 'N/A')","0.30","29.23" +"Acta et Commentationes Universitatis Tartuensis de Mathematica","1406-2283","2228-4699","MATHEMATICS","('ESCI',)","96","0.3","Q4","0.29","96.88" +"Asia Pacific Journal of Environmental Law","1385-2140","1875-8258","('ENVIRONMENTAL STUDIES', 'LAW')","('ESCI', 'ESCI')","44","0.3","('Q4', 'Q3')","0.29","4.17" +"Doxa-Cuadernos de Filosofia y Derecho","0214-8676","2386-4702","PHILOSOPHY","('ESCI',)","201","0.3","","0.29","100.00" +"European Education","1056-4934","1944-7086","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","222","0.3","Q4","0.29","34.15" +"International Journal of Online Pedagogy and Course Design","2155-6873","2155-6881","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","118","0.3","Q4","0.29","26.67" +"Journal of Integer Sequences","1530-7638","1530-7638","MATHEMATICS","('ESCI',)","482","0.3","Q4","0.29","0.00" +"Linguistic Variation","2211-6834","2211-6842","LANGUAGE & LINGUISTICS","('ESCI',)","219","0.3","","0.29","25.81" +"PHILOSOPHISCHES JAHRBUCH","0031-8183","0031-8183","PHILOSOPHY","('AHCI',)","69","0.3","","0.29","0.00" +"Transformation-Critical Perspectives on Southern Africa","0258-7696","1726-1368","AREA STUDIES","('ESCI',)","202","0.3","Q3","0.29","0.00" +"VIGILIAE CHRISTIANAE","0042-6032","1570-0720","RELIGION","('AHCI',)","473","0.3","","0.29","15.87" +"Computability-The Journal of the Association CiE","2211-3568","2211-3576","MATHEMATICS, APPLIED","('ESCI',)","75","0.3","Q4","0.28","0.00" +"Cuadernos de Musica Artes Visuales y Artes Escenicas","1794-6670","2215-9959","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","49","0.3","","0.28","75.00" +"Estoa-Revista de la Facultad de Arquitectura y Urbanismo de la Universidad de Cuenca","1390-7263","1390-9274","ARCHITECTURE","('ESCI',)","68","0.3","","0.28","98.77" +"INTERNATIONAL PHILOSOPHICAL QUARTERLY","0019-0365","2153-8077","PHILOSOPHY","('AHCI',)","154","0.3","","0.28","0.00" +"Journal of the Ramanujan Mathematical Society","0970-1249","2320-3110","MATHEMATICS","('SCIE',)","210","0.3","Q4","0.28","0.00" +"Korea Observer","0023-3919","0023-3919","('AREA STUDIES', 'INTERNATIONAL RELATIONS')","('SSCI', 'SSCI')","158","0.3","('Q3', 'Q4')","0.28","0.00" +"Philosophia Africana","1539-8250","1944-7914","PHILOSOPHY","('AHCI',)","41","0.3","","0.28","4.55" +"Sakarya Universitesi Ilahiyat Fakultesi Dergisi-Journal of Sakarya University Faculty of Theology","2146-9806","1304-6535","RELIGION","('ESCI',)","42","0.3","","0.28","84.75" +"Vestnik Permskogo Universiteta-Juridicheskie Nauki","1995-4190","1995-4190","LAW","('ESCI',)","47","0.3","Q3","0.28","94.74" +"Australasian Dispute Resolution Journal","1441-7847","1441-7847","LAW","('ESCI',)","45","0.3","Q3","0.27","0.00" +"Biblical Annals","2083-2222","2451-2168","RELIGION","('ESCI',)","32","0.3","","0.27","92.11" +"Bulletin of the American Society of Overseas Research","2769-3600","2769-3589","ARCHAEOLOGY","('AHCI',)","15","0.3","","0.27","0.00" +"Conservation and Management of Archaeological Sites","1350-5033","1753-5522","ARCHAEOLOGY","('AHCI',)","220","0.3","","0.27","14.29" +"Croatian Yearbook of European Law & Policy","1845-5662","1845-5662","LAW","('ESCI',)","57","0.3","Q3","0.27","100.00" +"Filozofia Nauki","1230-6894","","PHILOSOPHY","('AHCI',)","27","0.3","","0.27","82.69" +"Fornvannen-Journal of Swedish Antiquarian Research","0015-7813","1404-9430","('ARCHAEOLOGY', 'HISTORY')","('AHCI', 'AHCI')","76","0.3","('N/A', 'Q2')","0.27","0.00" +"Journal of the Indonesian Mathematical Society","2086-8952","2086-8952","MATHEMATICS","('ESCI',)","100","0.3","Q4","0.27","11.90" +"Kajian Malaysia","2180-4273","2180-4273","AREA STUDIES","('ESCI',)","126","0.3","Q3","0.27","100.00" +"Psychodynamic Practice","1475-3634","1475-3626","('PSYCHOLOGY, CLINICAL', 'PSYCHOLOGY, PSYCHOANALYSIS')","('ESCI', 'ESCI')","90","0.3","('Q4', 'Q4')","0.27","7.14" +"Rivista di Filosofia del Diritto-Journal of Legal Philosophy","2280-482X","2280-482X","PHILOSOPHY","('ESCI',)","42","0.3","","0.27","0.00" +"RUSSELL-THE JOURNAL OF THE BERTRAND RUSSELL STUDIES","0036-0163","1913-8032","PHILOSOPHY","('AHCI',)","48","0.3","","0.27","0.00" +"Annales Mathematicae Silesianae","0860-2107","2391-4238","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","88","0.3","('Q4', 'Q4')","0.26","100.00" +"Iberoamericana","1577-3388","2255-520X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","168","0.3","","0.26","0.00" +"Jordan Journal of Mathematics and Statistics","2075-7905","2227-5487","MATHEMATICS","('ESCI',)","116","0.3","Q4","0.26","0.00" +"MATHEMATICA SCANDINAVICA","0025-5521","1903-1807","MATHEMATICS","('SCIE',)","1,120","0.3","Q4","0.26","0.00" +"Medievalismo","1131-8155","1989-8312","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","99","0.3","","0.26","97.30" +"Slovensky Narodopis-Slovak Ethnology","1335-1303","1339-9357","ANTHROPOLOGY","('ESCI',)","84","0.3","Q4","0.26","87.50" +"World of Music-New Series","0043-8774","","MUSIC","('AHCI',)","37","0.3","","0.26","0.00" +"Acta Universitatis Carolinae Theologica","1804-5588","2336-3398","RELIGION","('ESCI',)","13","0.3","","0.25","100.00" +"Annales Mathematicae et Informaticae","1787-5021","1787-6117","MATHEMATICS","('ESCI',)","108","0.3","Q4","0.25","98.00" +"Archaeology Ethnology and Anthropology of Eurasia","1563-0110","1531-832X","ANTHROPOLOGY","('ESCI',)","409","0.3","Q4","0.25","17.11" +"Boyhood Studies-An Interdisciplinary Journal","2375-9240","2375-9267","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","67","0.3","Q3","0.25","0.00" +"Bulgarsko e-Spisanie za Arkheologiya-Bulgarian e-Journal of Archaeology","1314-5088","1314-5088","ARCHAEOLOGY","('ESCI',)","30","0.3","","0.25","0.00" +"CRYPTOLOGIA","0161-1194","1558-1586","('COMPUTER SCIENCE, THEORY & METHODS', 'HISTORY & PHILOSOPHY OF SCIENCE', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","283","0.3","('Q4', 'Q3', 'Q4')","0.25","9.84" +"Gladius","0436-029X","1988-4168","('ARCHAEOLOGY', 'HISTORY')","('AHCI', 'AHCI')","53","0.3","('N/A', 'Q2')","0.25","94.12" +"Journal for Geometry and Graphics","1433-8157","1433-8157","MATHEMATICS","('ESCI',)","106","0.3","Q4","0.25","0.00" +"Journal of Feminist Scholarship","2158-6179","2158-6179","WOMENS STUDIES","('ESCI',)","85","0.3","Q4","0.25","59.38" +"LEXICOGRAPHICA","0175-6206","1865-9403","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","88","0.3","('N/A', 'Q4')","0.25","8.00" +"PHYSICAL & OCCUPATIONAL THERAPY IN GERIATRICS","0270-3181","1541-3152","REHABILITATION","('ESCI',)","319","0.3","Q4","0.25","6.52" +"PROCEEDINGS OF THE INDIAN ACADEMY OF SCIENCES-MATHEMATICAL SCIENCES","0253-4142","0973-7685","MATHEMATICS","('SCIE',)","589","0.3","Q4","0.25","0.00" +"QUADERNI STORICI","0301-6307","2612-1972","HISTORY","('AHCI',)","313","0.3","Q2","0.25","0.00" +"Revista de Linguistica y Lenguas Aplicadas","1886-2438","1886-6298","LANGUAGE & LINGUISTICS","('ESCI',)","59","0.3","","0.25","94.12" +"SOCIAL PHILOSOPHY & POLICY","0265-0525","1471-6437","('ETHICS', 'PHILOSOPHY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('SSCI', 'AHCI', 'SSCI')","738","0.3","('Q4', 'N/A', 'Q3')","0.25","16.13" +"Taiwan Journal of Linguistics","1729-4649","1994-2559","LANGUAGE & LINGUISTICS","('ESCI',)","36","0.3","","0.25","0.00" +"ARCHIVES OF NATURAL HISTORY","0260-9541","1755-6260","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","161","0.3","Q3","0.24","0.00" +"Baltic Journal of English Language Literature and Culture","1691-9971","2501-0395","LANGUAGE & LINGUISTICS","('ESCI',)","13","0.3","","0.24","96.55" +"Childhood and Philosophy","2525-5061","1984-5987","('EDUCATION & EDUCATIONAL RESEARCH', 'PHILOSOPHY')","('ESCI', 'ESCI')","105","0.3","('Q4', 'N/A')","0.24","73.08" +"Makara Hubs-Asia","2355-794X","2406-9183","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","47","0.3","Q3","0.24","82.93" +"Nuances-Estudos sobre Educacao","2236-0441","2236-0441","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","53","0.3","Q4","0.24","76.06" +"Revista Musical Chilena","0716-2790","0717-6252","MUSIC","('AHCI',)","111","0.3","","0.24","21.28" +"Sartre Studies International","1357-1559","1357-1559","PHILOSOPHY","('ESCI',)","82","0.3","","0.24","0.00" +"African Journal of International and Comparative Law","0954-8890","1755-1609","LAW","('ESCI',)","116","0.3","Q3","0.23","0.00" +"AKADEMIKA","0126-5008","0126-8694","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","174","0.3","Q3","0.23","47.40" +"Anthropological Journal of European Cultures","1755-2923","1755-2931","ANTHROPOLOGY","('ESCI',)","105","0.3","Q4","0.23","93.48" +"Ayer","1134-2277","2255-5838","HISTORY","('AHCI', 'SSCI')","575","0.3","Q2","0.23","65.31" +"Dearq","","2215-969X","ARCHITECTURE","('ESCI',)","67","0.3","","0.23","98.36" +"EARTH SCIENCES HISTORY","0736-623X","1944-6187","('GEOSCIENCES, MULTIDISCIPLINARY', 'HISTORY & PHILOSOPHY OF SCIENCE')","('SCIE', 'SCIE, SSCI')","108","0.3","('Q4', 'Q3')","0.23","0.00" +"ELIA-Estudios de Linguistica Inglesa Aplicada","1576-5059","2253-8283","LINGUISTICS","('ESCI',)","60","0.3","Q4","0.23","100.00" +"Journal of Humanistic Mathematics","2159-8118","2159-8118","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","90","0.3","Q3","0.23","4.79" +"JOURNAL OF LEGAL MEDICINE","0194-7648","1521-057X","('LAW', 'SOCIAL SCIENCES, BIOMEDICAL')","('SSCI', 'SSCI')","139","0.3","('Q3', 'Q4')","0.23","25.00" +"Linguamatica","1647-0818","1647-0818","LINGUISTICS","('ESCI',)","44","0.3","Q4","0.23","100.00" +"Revista Catalana de Dret Public","1885-5709","1885-8252","LAW","('ESCI',)","90","0.3","Q3","0.23","36.59" +"Acta Balneologica","2082-1867","2082-1867","REHABILITATION","('ESCI',)","73","0.3","Q4","0.22","0.00" +"Advances and Applications in Discrete Mathematics","0974-1658","0974-1658","MATHEMATICS","('ESCI',)","120","0.3","Q4","0.22","42.08" +"Con A de Animacion","2173-6049","2173-3511","FILM, RADIO, TELEVISION","('ESCI',)","31","0.3","","0.22","97.62" +"International Journal of Agricultural and Statistical Sciences","0973-1903","0976-3392","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","468","0.3","Q4","0.22","0.00" +"International Journal of Childbirth","2156-5287","2156-5295","NURSING","('ESCI',)","129","0.3","Q4","0.22","0.00" +"Journal of Law and Political Sciences","2222-7288","2518-5551","LAW","('ESCI',)","61","0.3","Q3","0.22","0.00" +"Regionologiya-Regionology Russian Journal of Regional Studies","2413-1407","2587-8549","('AREA STUDIES', 'ECONOMICS')","('ESCI', 'ESCI')","40","0.3","('Q3', 'Q4')","0.22","99.09" +"Revista Historia Autonoma","2254-8726","2254-8726","HISTORY","('ESCI',)","36","0.3","Q2","0.22","68.52" +"Russian Journal of Vietnamese Studies-Vyetnamskiye issledovaniya","2618-9453","2618-9453","AREA STUDIES","('ESCI',)","31","0.3","Q3","0.22","77.50" +"TWMS Journal of Applied and Engineering Mathematics","2146-1147","2146-1147","MATHEMATICS, APPLIED","('ESCI',)","345","0.3","Q4","0.22","0.21" +"Framework-The Journal of Cinema and Media","0306-7661","1559-7989","FILM, RADIO, TELEVISION","('ESCI',)","184","0.3","","0.21","0.00" +"Heranca-Revista de Historia Patrimonio e Cultura","2184-3090","2184-3090","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","15","0.3","","0.21","57.35" +"Journal of the History of the Neurosciences","0964-704X","1744-5213","('HISTORY & PHILOSOPHY OF SCIENCE', 'NEUROSCIENCES')","('SCIE', 'SCIE')","318","0.3","('Q3', 'Q4')","0.21","23.44" +"Journal of the Korean Society for Industrial and Applied Mathematics","1226-9433","1229-0645","MATHEMATICS, APPLIED","('ESCI',)","71","0.3","Q4","0.21","0.00" +"Jurnal The Messenger","2086-1559","2527-2810","COMMUNICATION","('ESCI',)","22","0.3","Q4","0.21","100.00" +"Pythagoras","1012-2346","2223-7895","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","93","0.3","Q4","0.21","96.77" +"Revista General de Derecho Europeo","1696-9634","1696-9634","LAW","('ESCI',)","67","0.3","Q3","0.21","1.00" +"Security and Human Rights","1874-7337","1875-0230","POLITICAL SCIENCE","('ESCI',)","87","0.3","Q4","0.21","84.21" +"THEATER","0161-0775","","THEATER","('AHCI',)","86","0.3","","0.21","0.00" +"Transactions of A Razmadze Mathematical Institute","2346-8092","2346-8092","MATHEMATICS","('ESCI',)","156","0.3","Q4","0.21","0.00" +"Veleia","0213-2095","2444-3565","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","112","0.3","","0.21","93.33" +"Aisthesis-Pratiche Linguaggi e Saperi dell Estetico","2035-8466","2035-8466","PHILOSOPHY","('ESCI',)","123","0.3","","0.20","95.70" +"Complutum","1131-6993","1988-2327","ARCHAEOLOGY","('AHCI',)","279","0.3","","0.20","70.80" +"Conimbriga-Revista de Arqueologia","0084-9189","1647-8657","ARCHAEOLOGY","('ESCI',)","51","0.3","","0.20","95.83" +"GIST-Education and Learning Research Journal","1692-5777","2248-8391","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","101","0.3","Q4","0.20","78.38" +"International Journal of Feminist Approaches To Bioethics","1937-4585","1937-4577","('ETHICS', 'SOCIAL SCIENCES, BIOMEDICAL', 'WOMENS STUDIES')","('SSCI', 'SSCI', 'SSCI')","259","0.3","('Q4', 'Q4', 'Q4')","0.20","0.00" +"Izvestiya of Saratov University Mathematics Mechanics Informatics","1816-9791","2541-9005","MATHEMATICS","('ESCI',)","30","0.3","Q4","0.20","99.25" +"Journal of Geography-Cografya Dergisi","1302-7212","1305-2128","GEOGRAPHY","('ESCI',)","78","0.3","Q4","0.20","54.35" +"Liquid Crystals and their Application","1991-3966","1991-3966","CRYSTALLOGRAPHY","('ESCI',)","100","0.3","Q4","0.20","100.00" +"Matematika","0127-8274","0127-8274","MATHEMATICS","('ESCI',)","125","0.3","Q4","0.20","0.00" +"Publications de l Institut Mathematique-Beograd","0350-1302","0350-1302","('MATHEMATICS', 'MATHEMATICS, APPLIED')","('ESCI', 'ESCI')","442","0.3","('Q4', 'Q4')","0.20","95.65" +"Resonancias","0717-3474","0719-5702","MUSIC","('AHCI',)","44","0.3","","0.20","0.00" +"SOCIOLOGISK FORSKNING","0038-0342","0038-0342","SOCIOLOGY","('SSCI',)","104","0.3","Q4","0.20","91.30" +"University of Bologna Law Review","2531-6133","2531-6133","LAW","('ESCI',)","25","0.3","Q3","0.20","0.00" +"Ancient Asia-Journal of the Society of South Asian Archaeology","","2042-5937","ARCHAEOLOGY","('ESCI',)","36","0.3","","0.19","82.14" +"Chinese Language and Discourse","1877-7031","1877-8798","LINGUISTICS","('ESCI',)","56","0.3","Q4","0.19","0.00" +"Complutense Journal of English Studies","2386-3935","2386-6624","LANGUAGE & LINGUISTICS","('ESCI',)","34","0.3","","0.19","90.00" +"IN PRACTICE","0263-841X","2042-7689","VETERINARY SCIENCES","('SCIE',)","669","0.3","Q4","0.19","0.53" +"Journal of Medical Biography","0967-7720","1758-1087","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI',)","182","0.3","Q3","0.19","17.91" +"Journal of Science and Arts","1844-9581","2068-3049","MULTIDISCIPLINARY SCIENCES","('ESCI',)","248","0.3","Q4","0.19","93.88" +"Seismic Instruments","0747-9239","1934-7871","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","137","0.3","Q4","0.19","0.00" +"Tethys-Journal of Mediterranean Meteorology & Climatology","1697-1523","1139-3394","METEOROLOGY & ATMOSPHERIC SCIENCES","('ESCI',)","38","0.3","Q4","0.19","60.00" +"Clinical and Investigative Orthodontics","2770-5781","2770-579X","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","14","0.3","Q4","0.18","86.21" +"Contemporary Voice of Dalit","2455-328X","2456-0502","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","129","0.3","Q3","0.18","2.50" +"European Journal of Anatomy","1136-4890","2340-311X","ANATOMY & MORPHOLOGY","('ESCI',)","314","0.3","Q4","0.18","0.80" +"Hearing Balance and Communication","2169-5717","2169-5725","AUDIOLOGY & SPEECH","('ESCI',)","173","0.3","Q4","0.18","4.24" +"International Journal of Mathematics for Industry","2661-3352","2661-3344","MATHEMATICS, APPLIED","('ESCI',)","37","0.3","Q4","0.18","85.71" +"Journal of Partial Differential Equations","2079-732X","1000-940X","MATHEMATICS, APPLIED","('ESCI',)","156","0.3","Q4","0.18","0.00" +"Pomegranate","1528-0268","","RELIGION","('AHCI',)","79","0.3","","0.18","0.00" +"Statistics and Its Interface","1938-7989","1938-7997","('MATHEMATICAL & COMPUTATIONAL BIOLOGY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","697","0.3","('Q4', 'Q4')","0.18","0.00" +"Surgical Practice","1744-1625","1744-1633","SURGERY","('ESCI',)","106","0.3","Q4","0.18","7.96" +"Thai Journal of Veterinary Medicine","0125-6491","0125-6491","VETERINARY SCIENCES","('SCIE',)","424","0.3","Q4","0.18","0.00" +"Thoracic and Cardiovascular Surgeon Reports","2194-7635","2194-7643","SURGERY","('ESCI',)","46","0.3","Q4","0.18","100.00" +"Universum-Revista de Humanidades y Ciencias Sociales","0718-2376","0716-498X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","176","0.3","","0.18","83.51" +"Champ Penal-Penal Field","1777-5272","1777-5272","LAW","('ESCI',)","74","0.3","Q3","0.17","40.98" +"Clinical Lactation","2158-0782","2158-0537","NURSING","('ESCI',)","88","0.3","Q4","0.17","0.00" +"Econ Journal Watch","1933-527X","1933-527X","ECONOMICS","('SSCI',)","149","0.3","Q4","0.17","0.00" +"Entomologica Americana","1947-5136","1947-5144","ENTOMOLOGY","('SCIE',)","123","0.3","Q4","0.17","0.00" +"Gedrag & Organisatie","0921-5077","1875-7235","('PSYCHOLOGY, APPLIED', 'PSYCHOLOGY, SOCIAL')","('SSCI', 'SSCI')","122","0.3","('Q4', 'Q4')","0.17","1.96" +"International Journal of Combinatorial Optimization Problems and Informatics","2007-1558","2007-1558","MATHEMATICS, APPLIED","('ESCI',)","71","0.3","Q4","0.17","0.00" +"JATI-Journal of Southeast Asian Studies","1823-4127","2600-8653","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","38","0.3","Q3","0.17","21.05" +"Journal of Mosaic Research","1309-047X","1309-047X","ARCHAEOLOGY","('ESCI',)","36","0.3","","0.17","100.00" +"JOURNAL OF THE ENTOMOLOGICAL RESEARCH SOCIETY","","2651-3579","ENTOMOLOGY","('SCIE',)","246","0.3","Q4","0.17","0.00" +"Mexican Law Review","1870-0578","1870-0578","LAW","('ESCI',)","53","0.3","Q3","0.17","97.06" +"Otoritas-Jurnal Ilmu Pemerintahan","2088-3706","2502-9320","POLITICAL SCIENCE","('ESCI',)","26","0.3","Q4","0.17","62.07" +"Pedagogische Studien","0165-0645","2666-3996","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","85","0.3","Q4","0.17","6.67" +"Random Operators and Stochastic Equations","0926-6364","1569-397X","STATISTICS & PROBABILITY","('ESCI',)","129","0.3","Q4","0.17","0.00" +"Review of Economic Design","1434-4742","1434-4750","ECONOMICS","('SSCI',)","169","0.3","Q4","0.17","22.22" +"Revue d Histoire des Sciences","0151-4105","1969-6582","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","133","0.3","Q3","0.17","0.00" +"SAGVNTVM-Papeles del Laboratorio de Arqueologia de Valencia","0210-3729","2174-517X","ARCHAEOLOGY","('ESCI',)","146","0.3","","0.17","97.50" +"Sociologiceskoe Obozrenie","1728-192X","1728-1938","SOCIOLOGY","('ESCI',)","118","0.3","Q4","0.17","88.28" +"Sodobna Pedagogika-Journal of Contemporary Educational Studies","0038-0474","0038-0474","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","163","0.3","Q4","0.17","0.00" +"ZEITSCHRIFT FUR KRISTALLOGRAPHIE-NEW CRYSTAL STRUCTURES","1433-7266","2197-4578","CRYSTALLOGRAPHY","('SCIE',)","962","0.3","Q4","0.17","97.91" +"ZOOLOGICHESKY ZHURNAL","0044-5134","","ZOOLOGY","('SCIE',)","1,780","0.3","Q4","0.17","0.00" +"Archaeologia Maritima Mediterranea-An International Journal on Underwater Archaeology","1724-6091","1825-3881","ARCHAEOLOGY","('ESCI',)","12","0.3","","0.16","0.00" +"Arquitecturas del Sur","0716-2677","0719-6466","ARCHITECTURE","('ESCI',)","33","0.3","","0.16","92.68" +"Berkeley Review of Education","1947-5578","1947-5578","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","102","0.3","Q4","0.16","56.25" +"Estudios Demograficos y Urbanos","0186-7210","2448-6515","DEMOGRAPHY","('ESCI',)","168","0.3","Q4","0.16","98.61" +"GaBI Journal-Generics and Biosimilars Initiative Journal","2033-6403","2033-6772","PHARMACOLOGY & PHARMACY","('ESCI',)","75","0.3","Q4","0.16","3.33" +"Intersectionalities-A Global Journal of Social Work Analysis Research Polity and Practice","1925-1270","1925-1270","SOCIAL WORK","('ESCI',)","83","0.3","Q4","0.16","0.00" +"Journal of Applied Mathematics Statistics and Informatics","1336-9180","1339-0015","MATHEMATICS, APPLIED","('ESCI',)","86","0.3","Q4","0.16","100.00" +"Jurnal Ilmu Ternak dan Veteriner","0853-7380","2252-696X","VETERINARY SCIENCES","('ESCI',)","100","0.3","Q4","0.16","45.31" +"LAW LIBRARY JOURNAL","0023-9283","0023-9283","('INFORMATION SCIENCE & LIBRARY SCIENCE', 'LAW')","('SSCI', 'SSCI')","164","0.3","('Q4', 'Q3')","0.16","0.00" +"MANUELLE MEDIZIN","0025-2514","1433-0466","REHABILITATION","('ESCI',)","100","0.3","Q4","0.16","23.88" +"MONATSSCHRIFT KINDERHEILKUNDE","0026-9298","1433-0474","PEDIATRICS","('SCIE',)","537","0.3","Q4","0.16","24.82" +"REDIMAT-Revista de Investigacion en Didactica de las Matematicas","2014-3621","2014-3621","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","55","0.3","Q4","0.16","86.49" +"Review of Pacific Basin Financial Markets and Policies","0219-0915","1793-6705","BUSINESS, FINANCE","('ESCI',)","216","0.3","Q4","0.16","0.00" +"SCANDINAVIAN JOURNAL OF LABORATORY ANIMAL SCIENCE","0901-3393","2002-0112","VETERINARY SCIENCES","('SCIE',)","107","0.3","Q4","0.16","0.00" +"Studia Europejskie-Studies in European Affairs","1428-149X","2719-3780","('ECONOMICS', 'LAW', 'POLITICAL SCIENCE')","('ESCI', 'ESCI', 'ESCI')","42","0.3","('Q4', 'Q3', 'Q4')","0.16","91.49" +"Yazyk i Kultura-Language and Culture","1999-6195","2311-3235","LANGUAGE & LINGUISTICS","('ESCI',)","112","0.3","","0.16","0.00" +"ANASTHESIOLOGIE INTENSIVMEDIZIN NOTFALLMEDIZIN SCHMERZTHERAPIE","0939-2661","1439-1074","('ANESTHESIOLOGY', 'CRITICAL CARE MEDICINE')","('SCIE', 'SCIE')","355","0.3","('Q4', 'Q4')","0.15","0.00" +"Australian Journal of Otolaryngology","","2616-2792","OTORHINOLARYNGOLOGY","('ESCI',)","90","0.3","Q4","0.15","98.97" +"Derecho PUCP","0251-3420","2305-2546","LAW","('ESCI',)","89","0.3","Q3","0.15","98.51" +"Discrete Mathematics and Applications","0924-9265","1569-3929","MATHEMATICS, APPLIED","('ESCI',)","190","0.3","Q4","0.15","0.00" +"Encounters in Theory and History of Education","1494-4936","1494-4936","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","51","0.3","Q4","0.15","100.00" +"International Journal for Technology in Mathematics Education","1744-2710","2045-2519","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","91","0.3","Q4","0.15","0.00" +"International Journal of Organ Transplantation Medicine","2008-6490","2008-6482","TRANSPLANTATION","('ESCI',)","235","0.3","Q4","0.15","0.00" +"Journal for Critical Education Policy Studies","2051-0969","1740-2743","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","266","0.3","Q4","0.15","0.00" +"Journal of Interactional Research in Communication Disorders","2040-5111","2040-512X","LINGUISTICS","('ESCI',)","65","0.3","Q4","0.15","0.00" +"JOURNAL OF THE LEPIDOPTERISTS SOCIETY","0024-0966","","ENTOMOLOGY","('SCIE',)","414","0.3","Q4","0.15","0.00" +"Magnetic Resonance in Solids","2072-5981","2072-5981","PHYSICS, ATOMIC, MOLECULAR & CHEMICAL","('ESCI',)","33","0.3","Q4","0.15","89.47" +"MIER-Journal of Educational Studies Trends and Practices","0976-8203","2319-1945","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","63","0.3","Q4","0.15","73.42" +"Onomazein","0717-1285","0718-5758","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","224","0.3","('N/A', 'Q4')","0.15","72.84" +"Paideusis-The Journal of the Canadian Philosophy of Education Society","","1916-0348","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","90","0.3","Q4","0.15","0.00" +"Physiotherapy Practice and Research","2213-0683","2213-0691","REHABILITATION","('ESCI',)","100","0.3","Q4","0.15","1.37" +"Prilozi Instituta za Arheologiju u Zagrebu","1330-0644","1848-6371","ARCHAEOLOGY","('ESCI',)","64","0.3","","0.15","100.00" +"Revista Chilena de Derecho","0718-3437","0718-3437","LAW","('SSCI',)","164","0.3","Q3","0.15","69.44" +"Socialine Teorija Empirija Politika ir Praktika","1648-2425","2345-0266","SOCIAL WORK","('ESCI',)","24","0.3","Q4","0.15","97.14" +"SOUTHWESTERN ENTOMOLOGIST","0147-1724","2162-2647","ENTOMOLOGY","('SCIE',)","738","0.3","Q4","0.15","0.00" +"Timarit um Uppeldi og Menntun-Icelandic Journal of Education","2298-8394","2298-8408","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","19","0.3","Q4","0.15","100.00" +"Writing & Pedagogy","1756-5839","1756-5847","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","96","0.3","Q4","0.15","7.69" +"Zbornik Veleucilista u Rijeci-Journal of the Polytechnics of Rijeka","1848-1299","1849-1723","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","39","0.3","Q3","0.15","97.26" +"AMERICAN BIOLOGY TEACHER","0002-7685","1938-4211","('BIOLOGY', 'EDUCATION, SCIENTIFIC DISCIPLINES')","('SCIE', 'SCIE')","770","0.3","('Q4', 'Q4')","0.14","98.71" +"Archives of Psychiatry and Psychotherapy","1509-2046","2083-828X","PSYCHIATRY","('ESCI',)","255","0.3","Q4","0.14","83.33" +"Archives of Trauma Research","2251-953X","2251-9599","ORTHOPEDICS","('ESCI',)","365","0.3","Q4","0.14","64.49" +"Arheologia","0235-3490","2616-499X","ARCHAEOLOGY","('ESCI',)","152","0.3","","0.14","95.15" +"Croatian Journal of Education-Hrvatski Casopis za Odgoj i obrazovanje","1848-5189","1848-5197","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","208","0.3","Q4","0.14","0.00" +"International Journal of Power and Energy Systems","1078-3466","1710-2243","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","88","0.3","Q4","0.14","0.00" +"Journal of Hand and Microsurgery","0974-3227","0974-6897","SURGERY","('ESCI',)","441","0.3","Q4","0.14","9.87" +"Journal of Pediatrics Review","2322-4398","2322-4401","PEDIATRICS","('ESCI',)","105","0.3","Q4","0.14","94.35" +"Journal of the Indonesian Tropical Animal Agriculture","2087-8273","2460-6278","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","212","0.3","Q4","0.14","84.38" +"JOURNAL OF THE SOCIETY OF LEATHER TECHNOLOGISTS AND CHEMISTS","0144-0322","0144-0322","MATERIALS SCIENCE, TEXTILES","('SCIE',)","330","0.3","Q4","0.14","0.00" +"KOREAN JOURNAL OF DEFENSE ANALYSIS","1016-3271","1941-4641","INTERNATIONAL RELATIONS","('SSCI',)","122","0.3","Q4","0.14","0.00" +"Magnetohydrodynamics","0024-998X","1574-0579","('MECHANICS', 'PHYSICS, FLUIDS & PLASMAS')","('SCIE', 'SCIE')","561","0.3","('Q4', 'Q4')","0.14","0.00" +"MAGYAR ALLATORVOSOK LAPJA","0025-004X","","VETERINARY SCIENCES","('SCIE',)","138","0.3","Q4","0.14","0.00" +"Masyarakat Kebudayaan dan Politik","2086-7050","2528-6013","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","49","0.3","Q3","0.14","92.24" +"Media & Jornalismo","1645-5681","2183-5462","('COMMUNICATION', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","48","0.3","('Q4', 'Q3')","0.14","95.24" +"MERKUR-DEUTSCHE ZEITSCHRIFT FUR EUROPAISCHES DENKEN","0026-0096","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","199","0.3","","0.14","0.00" +"Moscow University Geology Bulletin","0145-8752","1934-8436","GEOLOGY","('ESCI',)","265","0.3","Q4","0.14","0.00" +"Nanomaterials and Energy","2045-9831","2045-984X","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","147","0.3","Q4","0.14","0.00" +"Palaeohispanica-Revista sobre Lenguas y Culturas de la Hispania Antigua","1578-5386","2603-7637","LANGUAGE & LINGUISTICS","('ESCI',)","93","0.3","","0.14","50.00" +"POWDER DIFFRACTION","0885-7156","1945-7413","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('SCIE',)","1,908","0.3","Q4","0.14","24.77" +"Revista de la Universidad del Zulia","0041-8811","2665-0428","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","86","0.3","Q3","0.14","87.73" +"Revista Iberoamericana de Ciencias de la Actividad Fisica y el Deporte","2255-0461","2255-0461","SPORT SCIENCES","('ESCI',)","73","0.3","Q4","0.14","91.76" +"SAE International Journal of Aerospace","1946-3855","1946-3901","ENGINEERING, AEROSPACE","('ESCI',)","225","0.3","Q4","0.14","0.00" +"Sociolinguistic Studies","1750-8649","1750-8657","LINGUISTICS","('ESCI',)","268","0.3","Q4","0.14","0.00" +"Sociologija","0038-0318","0038-0318","SOCIOLOGY","('ESCI',)","103","0.3","Q4","0.14","96.20" +"Strategic Review for Southern Africa","1013-1108","1013-1108","POLITICAL SCIENCE","('ESCI',)","79","0.3","Q4","0.14","15.22" +"Studies in Indian Politics","2321-0230","2321-7472","POLITICAL SCIENCE","('ESCI',)","117","0.3","Q4","0.14","14.06" +"Vestnik Sankt-Peterburgskogo Universiteta Seriya 10 Prikladnaya Matematika Informatika Protsessy Upravleniya","1811-9905","2542-2251","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","71","0.3","Q4","0.14","82.50" +"Veterinary Record Case Reports","","2052-6121","VETERINARY SCIENCES","('ESCI',)","372","0.3","Q4","0.14","25.79" +"ZEITSCHRIFT FUR ETHNOLOGIE - Journal of Social and Cultural Anthropology","0044-2666","","ANTHROPOLOGY","('SSCI',)","148","0.3","Q4","0.14","0.00" +"Acta Phytotaxonomica et Geobotanica","1346-7565","2189-7042","PLANT SCIENCES","('SCIE',)","192","0.3","Q4","0.13","0.00" +"AKTUELLE UROLOGIE","0001-7868","1438-8820","UROLOGY & NEPHROLOGY","('SCIE',)","150","0.3","Q4","0.13","0.00" +"Algebra And Discrete Mathematics","1726-3255","2415-721X","MATHEMATICS, APPLIED","('ESCI',)","153","0.3","Q4","0.13","99.09" +"Apuntes Universitarios","2225-7136","2304-0335","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","99","0.3","Q4","0.13","87.22" +"Argumentation et Analyse du Discours","1565-8961","1565-8961","LANGUAGE & LINGUISTICS","('ESCI',)","77","0.3","","0.13","44.12" +"Asia-Pacific Review","1343-9006","1469-2937","INTERNATIONAL RELATIONS","('ESCI',)","128","0.3","Q4","0.13","3.77" +"BOSQUE","0717-9200","0717-9200","FORESTRY","('SCIE',)","504","0.3","Q4","0.13","80.74" +"BULLETIN OF THE EUROPEAN ASSOCIATION OF FISH PATHOLOGISTS","0108-0288","0108-0288","('FISHERIES', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","590","0.3","('Q4', 'Q4')","0.13","40.00" +"Canadian Journal for the Study of Adult Education","0835-4944","1925-993X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","104","0.3","Q4","0.13","0.00" +"Clinical Psychology and Special Education","2304-0394","2304-0394","PSYCHOLOGY, CLINICAL","('ESCI',)","88","0.3","Q4","0.13","97.56" +"Current Drug Therapy","1574-8855","2212-3903","PHARMACOLOGY & PHARMACY","('ESCI',)","224","0.3","Q4","0.13","1.50" +"Dynamis","0211-9536","","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE', 'SSCI')","190","0.3","Q3","0.13","98.28" +"Geomorphologie-Relief Processus Environnement","1266-5304","1957-777X","('GEOGRAPHY, PHYSICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","285","0.3","('Q4', 'Q4')","0.13","0.00" +"Historical Studies in Education-Canada","0843-5057","1911-9674","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","37","0.3","Q4","0.13","77.27" +"Journal of Energy Markets","1756-3607","1756-3615","ECONOMICS","('ESCI',)","104","0.3","Q4","0.13","0.00" +"Journal of Polytechnic-Politeknik Dergisi","1302-0900","2147-9429","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","516","0.3","Q4","0.13","78.79" +"Journal of Risk","1465-1211","1755-2842","BUSINESS, FINANCE","('SSCI',)","621","0.3","Q4","0.13","0.00" +"Light & Engineering","0236-2945","","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'OPTICS')","('SCIE', 'SCIE')","301","0.3","('Q4', 'Q4')","0.13","0.00" +"Lithuanian Journal of Physics","1648-8504","1648-8504","PHYSICS, MULTIDISCIPLINARY","('SCIE',)","186","0.3","Q4","0.13","31.08" +"Lucentum","0213-2338","1989-9904","ARCHAEOLOGY","('ESCI',)","116","0.3","","0.13","100.00" +"Nafta-Gaz","0867-8871","0867-8871","ENGINEERING, PETROLEUM","('ESCI',)","244","0.3","Q4","0.13","0.00" +"Naval War College Review","0028-1484","0028-1484","INTERNATIONAL RELATIONS","('ESCI',)","281","0.3","Q4","0.13","0.00" +"PHYSICS OF ATOMIC NUCLEI","1063-7788","1562-692X","('PHYSICS, NUCLEAR', 'PHYSICS, PARTICLES & FIELDS')","('SCIE', 'SCIE')","1,630","0.3","('Q4', 'Q4')","0.13","1.73" +"Poblacion y Salud en Mesoamerica","1659-0201","1659-0201","DEMOGRAPHY","('ESCI',)","63","0.3","Q4","0.13","66.30" +"Psychiatria i Psychologia Kliniczna-JOURNAL OF PSYCHIATRY AND CLINICAL PSYCHOLOGY","1644-6313","1644-6313","PSYCHIATRY","('ESCI',)","138","0.3","Q4","0.13","91.74" +"Revista Brasileira de Ciencias Agrarias-Agraria","1981-1160","1981-0997","AGRONOMY","('ESCI',)","358","0.3","Q4","0.13","78.46" +"Revista Cientifica","0124-2253","2344-8350","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","116","0.3","Q4","0.13","96.39" +"Revista de Psicoterapia","1130-5142","2339-7950","PSYCHOLOGY, CLINICAL","('ESCI',)","154","0.3","Q4","0.13","45.97" +"Southern African Journal of Anaesthesia and Analgesia","2220-1181","2220-1173","ANESTHESIOLOGY","('ESCI',)","284","0.3","Q4","0.13","30.32" +"Tijdschrift voor Communicatiewetenschap","1384-6930","1875-7286","COMMUNICATION","('SSCI',)","39","0.3","Q4","0.13","25.00" +"Zentralblatt fur Arbeitsmedizin Arbeitsschutz und Ergonomie","0944-2502","2198-0713","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","123","0.3","Q4","0.13","91.09" +"Zhurnal Novaya Ekonomicheskaya Assotsiatsiya-Journal of the New Economic Association","2221-2264","2221-2264","ECONOMICS","('ESCI',)","161","0.3","Q4","0.13","77.91" +"Acta Oto-Laryngologica Case Reports","2377-2484","2377-2484","OTORHINOLARYNGOLOGY","('ESCI',)","28","0.3","Q4","0.12","100.00" +"Acta Silvae et Ligni","2335-3112","2335-3953","FORESTRY","('ESCI',)","42","0.3","Q4","0.12","97.14" +"Aposta-Revista de Ciencias Sociales","1696-7348","1696-7348","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","77","0.3","Q3","0.12","1.27" +"Boletim de Ciencias Geodesicas","1982-2170","1982-2170","REMOTE SENSING","('ESCI',)","166","0.3","Q4","0.12","85.96" +"Bulletin of University of Agricultural Sciences and Veterinary Medicine Cluj-Napoca-Food Science and Technology","2344-2344","2344-5300","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","165","0.3","Q4","0.12","86.79" +"Croatian and Comparative Public Administration","1848-0357","1849-2150","PUBLIC ADMINISTRATION","('ESCI',)","70","0.3","Q4","0.12","94.52" +"Derechos y Libertades","1133-0937","1133-0937","LAW","('ESCI',)","77","0.3","Q3","0.12","100.00" +"Etnoantropoloski Problemi-Issues in Ethnology and Anthropology","0353-1589","2334-8801","ANTHROPOLOGY","('ESCI',)","115","0.3","Q4","0.12","90.08" +"International Journal of Athletic Therapy & Training","2157-7277","2157-7285","SPORT SCIENCES","('ESCI',)","182","0.3","Q4","0.12","0.00" +"International Journal of Pharmacology","1811-7775","1812-5700","PHARMACOLOGY & PHARMACY","('SCIE',)","1,034","0.3","Q4","0.12","0.00" +"International Journal of Transport Economics","0391-8440","","('ECONOMICS', 'TRANSPORTATION')","('SSCI', 'SSCI')","229","0.3","('Q4', 'Q4')","0.12","0.00" +"Istanbul Universitesi Sosyoloji Dergisi-Istanbul University Journal of Sociology","1304-2998","2667-6931","SOCIOLOGY","('ESCI',)","48","0.3","Q4","0.12","56.45" +"Journal of Egyptian Womens Dermatological Society","1687-1537","2090-2565","DERMATOLOGY","('ESCI',)","112","0.3","Q4","0.12","87.00" +"Journal of Fiber Science and Technology","2189-7654","2189-7654","('MATERIALS SCIENCE, TEXTILES', 'POLYMER SCIENCE')","('SCIE', 'SCIE')","132","0.3","('Q4', 'Q4')","0.12","100.00" +"Journal of Radiotherapy in Practice","1460-3969","1467-1131","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","308","0.3","Q4","0.12","13.41" +"Journal of Social Policy Studies","1727-0634","1727-0634","SOCIAL ISSUES","('ESCI',)","163","0.3","Q4","0.12","97.81" +"Jurnal Pendidikan Fisika Indonesia-Indonesian Journal of Physics Education","1693-1246","2355-3812","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","53","0.3","Q4","0.12","92.31" +"NOISE CONTROL ENGINEERING JOURNAL","0736-2501","0736-2501","('ACOUSTICS', 'ENGINEERING, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","549","0.3","('Q4', 'Q4')","0.12","0.00" +"Obrana a Strategie-Defence & Strategy","1214-6463","1802-7199","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('ESCI', 'ESCI')","13","0.3","('Q4', 'Q4')","0.12","94.12" +"Palimpsest-A Journal on Women Gender and the Black International","2165-1604","2165-1612","WOMENS STUDIES","('ESCI',)","53","0.3","Q4","0.12","0.00" +"Perfiles Latinoamericanos","0188-7653","2309-4982","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","177","0.3","Q3","0.12","100.00" +"Perspectivas de la Comunicacion","0718-4867","0718-4867","COMMUNICATION","('ESCI',)","57","0.3","Q4","0.12","44.64" +"Relaciones Internacionales-Madrid","1699-3950","1699-3950","INTERNATIONAL RELATIONS","('ESCI',)","49","0.3","Q4","0.12","92.59" +"Revista Criminalidad","1794-3108","2256-5531","CRIMINOLOGY & PENOLOGY","('ESCI',)","112","0.3","Q4","0.12","16.09" +"Sibirskiy Psikhologicheskiy Zhurnal-Siberian Journal of Psychology","1726-7080","2411-0809","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","106","0.3","Q4","0.12","7.26" +"Slovenian Veterinary Research","1580-4003","2385-8761","VETERINARY SCIENCES","('SCIE',)","292","0.3","Q4","0.12","98.43" +"Statistics and Applications","2454-7395","2454-7395","STATISTICS & PROBABILITY","('ESCI',)","178","0.3","Q4","0.12","0.00" +"WOMANS ART JOURNAL","0270-7993","2158-8457","ART","('AHCI',)","73","0.3","","0.12","0.00" +"ZUCHTUNGSKUNDE","0044-5401","1867-4518","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","108","0.3","Q4","0.12","0.00" +"AIBR-Revista de Antropologia Iberoamericana","1695-9752","1578-9705","ANTHROPOLOGY","('SSCI',)","219","0.3","Q4","0.11","53.97" +"Algorithmic Finance","2158-5571","2157-6203","BUSINESS, FINANCE","('ESCI',)","48","0.3","Q4","0.11","0.00" +"Asian Journal of Accounting and Governance","2180-3838","2180-3838","BUSINESS, FINANCE","('ESCI',)","97","0.3","Q4","0.11","34.69" +"Aula de Encuentro","1137-8778","2341-4847","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","47","0.3","Q4","0.11","83.10" +"B E Journal of Theoretical Economics","2194-6124","1935-1704","ECONOMICS","('SSCI',)","226","0.3","Q4","0.11","6.38" +"CESKA A SLOVENSKA NEUROLOGIE A NEUROCHIRURGIE","1210-7859","1802-4041","('NEUROSCIENCES', 'SURGERY')","('SCIE', 'SCIE')","178","0.3","('Q4', 'Q4')","0.11","0.00" +"Chilean Journal of Agricultural & Animal Sciences","0719-3882","0719-3890","AGRONOMY","('ESCI',)","126","0.3","Q4","0.11","0.00" +"Culture and Dialogue","2222-3282","2468-3949","PHILOSOPHY","('ESCI',)","21","0.3","","0.11","9.09" +"Current Womens Health Reviews","1573-4048","1875-6581","OBSTETRICS & GYNECOLOGY","('ESCI',)","185","0.3","Q4","0.11","0.00" +"Hepatitis Monthly","1735-143X","1735-3408","GASTROENTEROLOGY & HEPATOLOGY","('SCIE',)","837","0.3","Q4","0.11","98.21" +"Independent Review","1086-1653","2169-3420","('ECONOMICS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","293","0.3","('Q4', 'Q4')","0.11","0.00" +"International Journal of Distributed Systems and Technologies","1947-3532","1947-3540","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","72","0.3","Q4","0.11","16.30" +"International Journal of Medical Toxicology and Forensic Medicine","2251-8762","2251-8770","('MEDICINE, LEGAL', 'TOXICOLOGY')","('ESCI', 'ESCI')","117","0.3","('Q4', 'Q4')","0.11","78.90" +"International Journal of Semantic Computing","1793-351X","1793-7108","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","160","0.3","Q4","0.11","3.90" +"Italian Geotechnical Journal-Rivista Italiana di Geotecnica","0557-1405","0557-1405","ENGINEERING, GEOLOGICAL","('ESCI',)","144","0.3","Q4","0.11","0.00" +"JARQ-JAPAN AGRICULTURAL RESEARCH QUARTERLY","0021-3551","","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","802","0.3","Q4","0.11","48.99" +"Journal of Child Science","2474-5871","2474-5871","PEDIATRICS","('ESCI',)","55","0.3","Q4","0.11","98.23" +"Journal of Educational Cultural and Psychological Studies","2037-7932","2037-7924","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","72","0.3","Q4","0.11","96.92" +"Journal of Indian Association of Public Health Dentistry","2319-5932","2350-0484","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","233","0.3","Q4","0.11","88.02" +"Journal of Information Assurance and Security","1554-1010","1554-1029","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","58","0.3","Q4","0.11","0.00" +"Journal of Information Technology Research","1938-7857","1938-7865","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","141","0.3","Q4","0.11","59.35" +"Journal of Map & Geography Libraries","1542-0353","1542-0361","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","75","0.3","Q4","0.11","10.34" +"Journal of Pediatric and Neonatal Individualized Medicine","2281-0692","2281-0692","PEDIATRICS","('ESCI',)","171","0.3","Q4","0.11","0.00" +"Journal of Psychiatric Nursing","2149-374X","2149-374X","PSYCHIATRY","('ESCI',)","320","0.3","Q4","0.11","92.25" +"LIBRARY TRENDS","0024-2594","1559-0682","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","782","0.3","Q4","0.11","0.00" +"Nepalese Journal of Ophthalmology","2072-6805","2091-0320","OPHTHALMOLOGY","('ESCI',)","273","0.3","Q4","0.11","98.18" +"Pampa","1669-3299","2314-0208","AREA STUDIES","('ESCI',)","27","0.3","Q3","0.11","82.98" +"Papers from the Institute of Archaeology","0965-9315","2041-9015","ARCHAEOLOGY","('ESCI',)","76","0.3","","0.11","94.12" +"PSYCHOLOGIE IN ERZIEHUNG UND UNTERRICHT","0342-183X","0342-183X","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","202","0.3","Q4","0.11","0.00" +"Reports on Geodesy and Geoinformatics","2391-8365","2391-8152","REMOTE SENSING","('ESCI',)","57","0.3","Q4","0.11","96.00" +"Revista de Psicologia PUCP","0254-9247","2223-3733","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","194","0.3","Q4","0.11","100.00" +"Revista Humanidades","2215-2253","2215-3934","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","55","0.3","","0.11","98.21" +"Revista Internacional de Metodos Numericos para Calculo y Diseno en Ingenieria","0213-1315","","('ENGINEERING, MULTIDISCIPLINARY', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","127","0.3","('Q4', 'Q4')","0.11","96.38" +"Revista Mexicana de Ciencias Politicas y Sociales","0185-1918","0185-1918","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","280","0.3","Q3","0.11","100.00" +"Revista Romana de Medicina Veterinara","1220-3173","2457-7618","VETERINARY SCIENCES","('ESCI',)","78","0.3","Q4","0.11","0.00" +"Scientific Papers-Series D-Animal Science","2285-5750","2393-2260","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","326","0.3","Q4","0.11","0.00" +"Sociologia y Tecnociencia","1989-8487","1989-8487","SOCIOLOGY","('ESCI',)","41","0.3","Q4","0.11","58.95" +"Terra Latinoamericana","0187-5779","2395-8030","('AGRONOMY', 'SOIL SCIENCE')","('ESCI', 'ESCI')","382","0.3","('Q4', 'Q4')","0.11","99.44" +"Vestnik Sankt-Peterburgskogo Universiteta-Ekonomika-St Petersburg University Journal of Economic Studies","1026-356X","2542-226X","ECONOMICS","('ESCI',)","55","0.3","Q4","0.11","89.74" +"Vojenske Rozhledy-Czech Military Review","1210-3292","2336-2995","INTERNATIONAL RELATIONS","('ESCI',)","47","0.3","Q4","0.11","66.29" +"African Journal of Library Archives and Information Science","0795-4778","0795-4778","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","109","0.3","Q4","0.10","0.00" +"American Political Thought","2161-1580","2161-1599","POLITICAL SCIENCE","('ESCI',)","77","0.3","Q4","0.10","0.00" +"ArcheoSciences-Revue d Archeometrie","1960-1360","2104-3728","('ARCHAEOLOGY', 'CHEMISTRY, ANALYTICAL', 'GEOSCIENCES, MULTIDISCIPLINARY')","('AHCI', 'SCIE', 'SCIE')","132","0.3","('N/A', 'Q4', 'Q4')","0.10","24.72" +"Archives of Epilepsy","","2792-0550","CLINICAL NEUROLOGY","('ESCI',)","10","0.3","Q4","0.10","87.50" +"Bulletin of the University of Karaganda-Physics","2518-7198","","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","60","0.3","Q4","0.10","96.45" +"Cirugia Cardiovascular","1134-0096","1134-0096","SURGERY","('ESCI',)","123","0.3","Q4","0.10","98.99" +"COMPTES RENDUS DE L ACADEMIE BULGARE DES SCIENCES","1310-1331","","MULTIDISCIPLINARY SCIENCES","('SCIE',)","808","0.3","Q4","0.10","0.00" +"Cuadernos de Bioetica","1132-1989","2386-3773","ETHICS","('ESCI',)","97","0.3","Q4","0.10","0.00" +"Eastern European Countryside","1232-8855","2300-8717","SOCIOLOGY","('SSCI',)","56","0.3","Q4","0.10","100.00" +"Ekonomia i Prawo-Economics and Law","1898-2255","2392-1625","ECONOMICS","('ESCI',)","79","0.3","Q4","0.10","97.81" +"Ekonomika i Matematiceskie Metody-Economics and Mathematical Methods","0424-7388","0424-7388","ECONOMICS","('ESCI',)","93","0.3","Q4","0.10","0.00" +"Eurasian Journal of Emergency Medicine","2149-5807","2149-6048","EMERGENCY MEDICINE","('ESCI',)","150","0.3","Q4","0.10","100.00" +"FOOD AND DRUG LAW JOURNAL","1064-590X","1064-590X","('FOOD SCIENCE & TECHNOLOGY', 'LAW', 'NUTRITION & DIETETICS', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SSCI', 'SCIE', 'SCIE')","182","0.3","('Q4', 'Q3', 'Q4', 'Q4')","0.10","0.00" +"Geography and Natural Resources","1875-3728","1875-371X","GEOGRAPHY","('ESCI',)","326","0.3","Q4","0.10","0.00" +"Hippokratia","1108-4189","1108-4189","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,116","0.3","Q3","0.10","0.00" +"HTM-Journal of Heat Treatment and Materials","1867-2493","2194-1831","THERMODYNAMICS","('ESCI',)","189","0.3","Q4","0.10","4.88" +"Indian Journal of Neurosurgery","2277-954X","2277-9167","SURGERY","('ESCI',)","93","0.3","Q4","0.10","98.27" +"Indonesian Capital Market Review","1979-8997","2356-3818","ECONOMICS","('ESCI',)","21","0.3","Q4","0.10","36.00" +"International Journal of Academic Medicine","","2455-5568","MEDICINE, GENERAL & INTERNAL","('ESCI',)","112","0.3","Q3","0.10","0.00" +"International Journal of Applied Management Science","1755-8913","1755-8921","('MANAGEMENT', 'OPERATIONS RESEARCH & MANAGEMENT SCIENCE')","('ESCI', 'ESCI')","107","0.3","('Q4', 'Q4')","0.10","0.00" +"Journal of Military and Veterans Health","1835-1271","1839-2733","MEDICINE, GENERAL & INTERNAL","('ESCI',)","111","0.3","Q3","0.10","0.00" +"Journal of the Korean Earth Science Society","1225-6692","2287-4518","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","284","0.3","Q4","0.10","0.00" +"Klinik Psikiyatri Dergisi-Turkish Journal of Clinical Psychiatry","1302-0099","2146-7153","PSYCHIATRY","('ESCI',)","218","0.3","Q4","0.10","94.41" +"KLINISCHE NEUROPHYSIOLOGIE","1434-0275","1439-4081","('CLINICAL NEUROLOGY', 'NEUROIMAGING', 'PHYSIOLOGY')","('SCIE', 'SCIE', 'SCIE')","67","0.3","('Q4', 'Q4', 'Q4')","0.10","2.00" +"Korean Economic Review","0254-3737","","ECONOMICS","('SSCI',)","63","0.3","Q4","0.10","0.00" +"Lecturas de Economia","0120-2596","2323-0622","ECONOMICS","('ESCI',)","65","0.3","Q4","0.10","89.47" +"Minerva Psychiatry","2724-6612","2724-6108","PSYCHIATRY","('ESCI',)","24","0.3","Q4","0.10","0.65" +"Nonlinear Phenomena in Complex Systems","1561-4085","1817-2458","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","265","0.3","Q4","0.10","0.00" +"Nuovo Cimento C-Colloquia and Communications in Physics","2037-4909","1826-9885","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","327","0.3","Q4","0.10","0.00" +"Physiology and Pharmacology","2476-5236","2476-5244","PHYSIOLOGY","('ESCI',)","165","0.3","Q4","0.10","63.83" +"Politeia-Journal of Political Theory Political Philosophy and Sociology of Politics","2078-5089","2587-5914","POLITICAL SCIENCE","('ESCI',)","150","0.3","Q4","0.10","88.99" +"Portal-Godisnjak Hrvatskog Restauratorskog Zavoda","1847-9464","1848-6681","ART","('ESCI',)","48","0.3","","0.10","0.00" +"Praktische Metallographie-Practical Metallography","0032-678X","2195-8599","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","204","0.3","Q4","0.10","8.87" +"Revista de Ciencias Agricolas","0120-0135","2256-2273","AGRONOMY","('ESCI',)","116","0.3","Q4","0.10","98.57" +"Revista de Investigaciones Veterinarias del Peru","1682-3419","1609-9117","VETERINARY SCIENCES","('ESCI',)","558","0.3","Q4","0.10","90.04" +"Revista de Senologia y Patologia Mamaria","0214-1582","1578-1399","('OBSTETRICS & GYNECOLOGY', 'ONCOLOGY')","('ESCI', 'ESCI')","47","0.3","('Q4', 'Q4')","0.10","0.61" +"Scientific Papers-Series E-Land Reclamation Earth Observation & Surveying Environmental Engineering","2285-6064","2285-6064","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","64","0.3","Q4","0.10","0.00" +"Studia Ethnologica Croatica","1330-3627","1848-9532","ANTHROPOLOGY","('ESCI',)","35","0.3","Q4","0.10","100.00" +"Visnyk of V N Karazin Kharkiv National University-Series Geology Geography Ecology","2410-7360","2411-3913","GEOLOGY","('ESCI',)","82","0.3","Q4","0.10","96.58" +"WORLD LITERATURE TODAY","0196-3570","1945-8134","LITERATURE","('AHCI',)","330","0.3","","0.10","2.56" +"ZHURNAL OBSHCHEI BIOLOGII","0044-4596","0044-4596","BIOLOGY","('SCIE',)","300","0.3","Q4","0.10","0.00" +"Abanico Veterinario","2007-4204","2448-6132","VETERINARY SCIENCES","('ESCI',)","90","0.3","Q4","0.09","98.04" +"Acta Facultatis Medicae Naissensis","0351-6083","2217-2521","MEDICINE, GENERAL & INTERNAL","('ESCI',)","157","0.3","Q3","0.09","99.28" +"Anais Brasileiros de Estudos Turisticos-ABET","2238-2925","2238-2925","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","38","0.3","Q4","0.09","0.00" +"Asthma Allergy Immunology","1308-9234","1308-9234","ALLERGY","('ESCI',)","117","0.3","Q4","0.09","73.08" +"Bitacora Urbano Territorial","0124-7913","2027-145X","URBAN STUDIES","('ESCI',)","249","0.3","Q4","0.09","68.29" +"CIC-Cuadernos de Informacion y Comunicacion","1135-7991","1988-4001","COMMUNICATION","('ESCI',)","100","0.3","Q4","0.09","90.63" +"Computer Science-AGH","1508-2806","2300-7036","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","77","0.3","Q4","0.09","100.00" +"Congenital Heart Disease","1747-079X","1747-0803","CARDIAC & CARDIOVASCULAR SYSTEMS","('SCIE',)","1,804","0.3","Q4","0.09","100.00" +"Deviance et Societe","0378-7931","0378-5807","('CRIMINOLOGY & PENOLOGY', 'SOCIOLOGY')","('SSCI', 'SSCI')","173","0.3","('Q4', 'Q4')","0.09","0.00" +"Ekonomski Pregled","0424-7558","1848-9494","ECONOMICS","('ESCI',)","136","0.3","Q4","0.09","93.52" +"Eskisehir Osmangazi Universitesi IIBF Dergisi-Eskisehir Osmangazi University Journal of Economics and Administrative Sciences","1306-6730","1306-6730","ECONOMICS","('ESCI',)","126","0.3","Q4","0.09","88.72" +"Flugmedizin Tropenmedizin Reisemedizin","1864-4538","1864-175X","TROPICAL MEDICINE","('ESCI',)","26","0.3","Q4","0.09","0.00" +"Haseki TIp Bulteni-Medical Bulletin of Haseki","1302-0072","2147-2688","MEDICINE, GENERAL & INTERNAL","('ESCI',)","114","0.3","Q3","0.09","100.00" +"Ibersid-Revista de Sistemas de Informacion y Documentacion","1888-0967","2174-081X","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","44","0.3","Q4","0.09","0.00" +"INDIAN JOURNAL OF AGRICULTURAL SCIENCES","0019-5022","2394-3319","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","2,430","0.3","Q4","0.09","71.36" +"Journal of Cognitive Education and Psychology","1945-8959","1810-7621","PSYCHOLOGY, EDUCATIONAL","('ESCI',)","233","0.3","Q4","0.09","0.00" +"JOURNAL OF DIAGNOSTIC MEDICAL SONOGRAPHY","8756-4793","1552-5430","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","639","0.3","Q4","0.09","4.78" +"JOURNAL OF GYNECOLOGIC SURGERY","1042-4067","1557-7724","OBSTETRICS & GYNECOLOGY","('ESCI',)","248","0.3","Q4","0.09","2.06" +"Journal of Hard Tissue Biology","1341-7649","1341-7649","ENGINEERING, BIOMEDICAL","('SCIE',)","247","0.3","Q4","0.09","0.85" +"Journal of Information and Organizational Sciences","1846-3312","1846-9418","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","109","0.3","Q4","0.09","92.68" +"JOURNAL OF SEISMIC EXPLORATION","0963-0651","","GEOCHEMISTRY & GEOPHYSICS","('SCIE',)","190","0.3","Q4","0.09","0.00" +"Journal of the Korean Crystal Growth and Crystal Technology","1225-1429","2234-5078","CRYSTALLOGRAPHY","('ESCI',)","104","0.3","Q4","0.09","0.00" +"Labor-Studies in Working-Class History of the Americas","1547-6715","1558-1454","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","169","0.3","Q4","0.09","0.00" +"Psychologie du Travail et des Organisations","1420-2530","1420-2530","PSYCHOLOGY, APPLIED","('ESCI',)","115","0.3","Q4","0.09","30.91" +"Revija za Socijalnu Politiku","1330-2965","1845-6014","SOCIAL ISSUES","('SSCI',)","104","0.3","Q4","0.09","88.46" +"Revista Costarricense de Psicologia","0257-1439","1659-2913","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","56","0.3","Q4","0.09","100.00" +"Revista de Agricultura Neotropical","2358-6303","2358-6303","AGRONOMY","('ESCI',)","164","0.3","Q4","0.09","88.14" +"Revista Galega de Economia","1132-2799","2255-5951","ECONOMICS","('ESCI',)","107","0.3","Q4","0.09","89.55" +"Social Evolution & History","1681-4363","1681-4363","SOCIAL ISSUES","('ESCI',)","127","0.3","Q4","0.09","90.00" +"Sosyoekonomi","1305-5577","1305-5577","ECONOMICS","('ESCI',)","171","0.3","Q4","0.09","98.94" +"South African Journal of Geomatics","2225-8531","2225-8531","REMOTE SENSING","('ESCI',)","164","0.3","Q4","0.09","100.00" +"Travmatologiya i ortopediya Rossii","2311-2905","2311-2905","ORTHOPEDICS","('ESCI',)","114","0.3","Q4","0.09","87.00" +"URVIO-Revista Latinoamericana de Estudios de Seguridad","1390-3691","1390-4299","POLITICAL SCIENCE","('ESCI',)","55","0.3","Q4","0.09","96.83" +"Acta Universitatis Sapientiae Informatica","1844-6086","2066-7760","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","74","0.3","Q4","0.08","100.00" +"Afriques-Debats Methodes et Terrains d Histoire","2108-6796","2108-6796","AREA STUDIES","('ESCI',)","46","0.3","Q3","0.08","65.00" +"Amme Idaresi Dergisi","1300-1795","1300-1795","PUBLIC ADMINISTRATION","('SSCI',)","77","0.3","Q4","0.08","0.00" +"Arteterapia-Papeles de Arteterapia y Educacion Artistica para la Inclusion Social","1886-6190","1988-8309","REHABILITATION","('ESCI',)","72","0.3","Q4","0.08","100.00" +"AUSTRALASIAN PARLIAMENTARY REVIEW","1447-9125","1447-9125","POLITICAL SCIENCE","('ESCI',)","69","0.3","Q4","0.08","0.00" +"CAHIERS DE NUTRITION ET DE DIETETIQUE","0007-9960","0007-9960","NUTRITION & DIETETICS","('ESCI',)","116","0.3","Q4","0.08","54.44" +"Cuadernos de Economia","0121-4772","2248-4337","ECONOMICS","('ESCI',)","193","0.3","Q4","0.08","56.25" +"Economia Sociedad y Territorio","1405-8421","2448-6183","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","192","0.3","Q3","0.08","85.71" +"Erciyes Medical Journal","2149-2247","2149-2549","MEDICINE, GENERAL & INTERNAL","('ESCI',)","186","0.3","Q3","0.08","99.21" +"European Journal of Therapeutics","2564-7784","2564-7040","MEDICINE, GENERAL & INTERNAL","('ESCI',)","226","0.3","Q3","0.08","90.13" +"Iconos","1390-1249","1390-8065","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","205","0.3","Q3","0.08","97.78" +"IEICE Communications Express","2187-0136","2187-0136","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","208","0.3","Q4","0.08","97.07" +"International Journal of Gerontology","1873-9598","1873-958X","GERIATRICS & GERONTOLOGY","('SCIE',)","513","0.3","Q4","0.08","0.00" +"Italian Journal of Medicine","1877-9344","1877-9352","MEDICINE, GENERAL & INTERNAL","('ESCI',)","95","0.3","Q3","0.08","100.00" +"Journal of Basic and Clinical Health Sciences","2458-8938","2564-7288","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","115","0.3","Q4","0.08","98.95" +"Journal of Health and Allied Sciences NU","2582-4287","2582-4953","MEDICINE, GENERAL & INTERNAL","('ESCI',)","102","0.3","Q3","0.08","100.00" +"Journal of Mathematics and the Arts","1751-3472","1751-3480","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","98","0.3","Q4","0.08","19.30" +"Journal of Philosophical Economics","1843-2298","1844-8208","ECONOMICS","('ESCI',)","61","0.3","Q4","0.08","0.00" +"Journal of the Korean Medical Association","1975-8456","2093-5951","MEDICINE, GENERAL & INTERNAL","('ESCI',)","553","0.3","Q3","0.08","100.00" +"Journal of Tourism History","1755-182X","1755-1838","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","112","0.3","Q4","0.08","25.64" +"Konuralp Tip Dergisi","1309-3878","1309-3878","MEDICINE, GENERAL & INTERNAL","('ESCI',)","177","0.3","Q3","0.08","97.32" +"Linguisticae Investigationes","0378-4169","1569-9927","LANGUAGE & LINGUISTICS","('ESCI',)","174","0.3","","0.08","0.00" +"LOISIR & SOCIETE-SOCIETY AND LEISURE","0705-3436","1705-0154","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","246","0.3","Q4","0.08","3.26" +"Nativa","2318-7670","2318-7670","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","300","0.3","Q4","0.08","73.39" +"Oeconomia-History Methodology Philosophy","2113-5207","2269-8450","ECONOMICS","('ESCI',)","89","0.3","Q4","0.08","46.15" +"Oncology in Clinical Practice","2450-1654","2450-6478","ONCOLOGY","('ESCI',)","139","0.3","Q4","0.08","98.29" +"OSTEUROPA","0030-6428","2509-3444","POLITICAL SCIENCE","('SSCI',)","242","0.3","Q4","0.08","0.00" +"PHLEBOLOGIE","0939-978X","2567-5826","PERIPHERAL VASCULAR DISEASE","('ESCI',)","203","0.3","Q4","0.08","2.41" +"Praxis & Saber","2216-0159","2462-8603","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","119","0.3","Q4","0.08","96.45" +"Propagation of Ornamental Plants","1311-9109","","HORTICULTURE","('SCIE',)","153","0.3","Q4","0.08","0.00" +"Revista De Historia De La Psicologia","0211-0040","2445-0928","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","83","0.3","Q4","0.08","98.04" +"Revista Espanola de Derecho Constitucional","0211-5743","1989-0648","LAW","('SSCI',)","240","0.3","Q3","0.08","77.78" +"Revista Internacional de Comunicacion y Desarrollo","2386-3730","2386-3730","COMMUNICATION","('ESCI',)","39","0.3","Q4","0.08","73.68" +"Revista Latinoamericana de la Papa","1019-6609","1853-4961","AGRONOMY","('ESCI',)","37","0.3","Q4","0.08","9.09" +"South of Russia-Ecology Development","1992-1098","2413-0958","ECOLOGY","('ESCI',)","122","0.3","Q4","0.08","100.00" +"Stahlbau","0038-9145","1437-1049","('CONSTRUCTION & BUILDING TECHNOLOGY', 'ENGINEERING, CIVIL')","('SCIE', 'SCIE')","542","0.3","('Q4', 'Q4')","0.08","0.00" +"Statistika-Statistics and Economy Journal","0322-788X","1804-8765","ECONOMICS","('ESCI',)","84","0.3","Q4","0.08","72.84" +"TETSU TO HAGANE-JOURNAL OF THE IRON AND STEEL INSTITUTE OF JAPAN","0021-1575","1883-2954","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","1,528","0.3","Q4","0.08","99.32" +"UHOD-Uluslararasi Hematoloji-Onkoloji Dergisi","1306-133X","1306-133X","ONCOLOGY","('SCIE',)","99","0.3","Q4","0.08","50.00" +"Universitas Psychologica","1657-9267","","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","846","0.3","Q4","0.08","100.00" +"Advancements of Microbiology","0079-4252","2545-3149","MICROBIOLOGY","('SCIE',)","70","0.3","Q4","0.07","96.77" +"Anthropologie et Sante-Revue Internationale Francophone d Anthropologie de la Sante","2111-5028","2111-5028","ANTHROPOLOGY","('ESCI',)","44","0.3","Q4","0.07","78.95" +"Asia-Pacific Management Accounting Journal","1675-3194","1675-3194","BUSINESS, FINANCE","('ESCI',)","76","0.3","Q4","0.07","0.00" +"Australasian Agribusiness Review","1833-5675","1442-6951","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","40","0.3","Q4","0.07","0.00" +"Canadian Journal of Bioethics-Revue Canadienne de Bioethique","","2561-4665","MEDICAL ETHICS","('ESCI',)","89","0.3","Q4","0.07","88.32" +"Clinical and Experimental Health Sciences","2459-1459","2459-1459","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","272","0.3","Q4","0.07","0.74" +"Composites-Mechanics Computations Applications","2152-2057","2152-2073","MECHANICS","('ESCI',)","73","0.3","Q4","0.07","0.00" +"Cukurova Medical Journal","2602-3032","2602-3040","MEDICINE, GENERAL & INTERNAL","('ESCI',)","421","0.3","Q3","0.07","86.31" +"CyberGeo-European Journal of Geography","1278-3366","1278-3366","GEOGRAPHY","('ESCI',)","325","0.3","Q4","0.07","83.33" +"Debates en Sociologia","0254-9220","2304-4284","SOCIOLOGY","('ESCI',)","47","0.3","Q4","0.07","97.67" +"Derecho y Ciencias Sociales","1853-0982","1852-2971","LAW","('ESCI',)","14","0.3","Q3","0.07","89.66" +"Ecosistemas y Recursos Agropecuarios","2007-901X","2007-901X","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","265","0.3","Q4","0.07","92.20" +"Espacio Abierto","1315-0006","1315-0006","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","122","0.3","Q3","0.07","0.00" +"Historia y Memoria de la Educacion","2444-0043","2444-0043","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","102","0.3","Q4","0.07","94.59" +"Ibnosina Journal of Medicine and Biomedical Sciences","1947-489X","1947-489X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","76","0.3","Q3","0.07","88.61" +"IEEE Pulse","2154-2287","2154-2317","ENGINEERING, BIOMEDICAL","('SCIE',)","412","0.3","Q4","0.07","11.21" +"IHERINGIA SERIE BOTANICA","","2446-8231","PLANT SCIENCES","('SCIE',)","162","0.3","Q4","0.07","77.19" +"Indian Journal of Economics and Development","2277-5412","2322-0430","ECONOMICS","('ESCI',)","243","0.3","Q4","0.07","0.00" +"International Archives of Health Sciences","","2383-2568","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","83","0.3","Q4","0.07","68.18" +"International Journal of Applied Mathematics & Statistics","0973-1377","0973-7545","MATHEMATICS, APPLIED","('ESCI',)","176","0.3","Q4","0.07","0.00" +"International Journal of Biology and Chemistry","2218-7979","2409-370X","BIOLOGY","('ESCI',)","54","0.3","Q4","0.07","100.00" +"ITE JOURNAL-INSTITUTE OF TRANSPORTATION ENGINEERS","0162-8178","","('ENGINEERING, CIVIL', 'TRANSPORTATION SCIENCE & TECHNOLOGY')","('SCIE', 'SCIE')","400","0.3","('Q4', 'Q4')","0.07","0.00" +"Journal of Krishna Institute of Medical Sciences University","2231-4261","2231-4261","MEDICINE, GENERAL & INTERNAL","('ESCI',)","206","0.3","Q3","0.07","0.00" +"Journal of Robotics Networking and Artificial Life","2352-6386","2352-6386","ROBOTICS","('ESCI',)","115","0.3","Q4","0.07","40.36" +"Journal of the Korean Chemical Society-Daehan Hwahak Hoe Jee","1017-2548","2234-8530","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","395","0.3","Q4","0.07","0.00" +"Klimik Journal","1301-143X","1309-1484","MEDICINE, GENERAL & INTERNAL","('ESCI',)","155","0.3","Q3","0.07","97.03" +"LymphoSign Journal-The Journal of Inherited Immune Disorders","2292-5937","2292-5945","IMMUNOLOGY","('ESCI',)","60","0.3","Q4","0.07","3.33" +"Medycyna Paliatywna-Palliative Medicine","2081-0016","2081-2833","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","68","0.3","Q4","0.07","97.37" +"Moscow University Mechanics Bulletin","0027-1330","1934-8452","MECHANICS","('ESCI',)","71","0.3","Q4","0.07","0.00" +"Oriental Journal of Chemistry","0970-020X","2231-5039","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","2,010","0.3","Q4","0.07","96.53" +"Physics and Chemistry of Glasses-European Journal of Glass Science and Technology Part B","1753-3562","","('CHEMISTRY, PHYSICAL', 'MATERIALS SCIENCE, CERAMICS')","('SCIE', 'SCIE')","961","0.3","('Q4', 'Q4')","0.07","0.00" +"ReiDoCrea-Revista Eectronica de Investigacion y Docencia Creativa","2254-5883","2254-5883","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","97","0.3","Q3","0.07","16.08" +"REVISTA DE LA SOCIEDAD GEOLOGICA DE ESPANA","0214-2708","2255-1379","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","284","0.3","Q4","0.07","32.35" +"Revista Gestao & Tecnologia-Journal of Management and Technology","1677-9479","2177-6652","MANAGEMENT","('ESCI',)","119","0.3","Q4","0.07","5.96" +"REVISTA REPUBLICANA","1909-4450","2256-5027","LAW","('ESCI',)","40","0.3","Q3","0.07","98.46" +"Scientific Papers-Series B-Horticulture","2285-5653","2286-1580","PLANT SCIENCES","('ESCI',)","304","0.3","Q4","0.07","0.00" +"Soldagem & Inspecao","0104-9224","1980-6973","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","182","0.3","Q4","0.07","83.93" +"Tecnologia y Ciencias del Agua","0187-8336","2007-2422","('ENGINEERING, CIVIL', 'WATER RESOURCES')","('SCIE', 'SCIE')","302","0.3","('Q4', 'Q4')","0.07","100.00" +"Temida","1450-6637","1450-6637","CRIMINOLOGY & PENOLOGY","('ESCI',)","47","0.3","Q4","0.07","97.67" +"Vestnik Tomskogo Gosudarstvennogo Universiteta-Matematika i Mekhanika-Tomsk State University Journal of Mathematics and Mechanics","1998-8621","2311-2255","MECHANICS","('ESCI',)","158","0.3","Q4","0.07","5.73" +"YAKUGAKU ZASSHI-JOURNAL OF THE PHARMACEUTICAL SOCIETY OF JAPAN","0031-6903","1347-5231","PHARMACOLOGY & PHARMACY","('SCIE',)","1,448","0.3","Q4","0.07","99.55" +"ALSIC-Apprentissage des Langues et Systems d Information et de Communication","1286-4986","1286-4986","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","44","0.3","Q4","0.06","44.74" +"Applied Biological Research","0972-0979","0974-4517","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('ESCI',)","116","0.3","Q4","0.06","0.00" +"Arrancada","1729-3693","1810-5882","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","67","0.3","Q4","0.06","0.00" +"Australian Geomechanics Journal","0818-9110","0818-9110","ENGINEERING, GEOLOGICAL","('ESCI',)","279","0.3","Q4","0.06","0.00" +"Bulgarian Astronomical Journal","1313-2709","1314-5592","ASTRONOMY & ASTROPHYSICS","('ESCI',)","57","0.3","Q4","0.06","0.00" +"CEYLON MEDICAL JOURNAL","0009-0875","0009-0875","MEDICINE, GENERAL & INTERNAL","('ESCI',)","357","0.3","Q3","0.06","100.00" +"Cuadernos de Administracion-Universidad del Valle","0120-4645","2256-5078","MANAGEMENT","('ESCI',)","58","0.3","Q4","0.06","98.33" +"Current Psychiatry Research and Reviews","2666-0822","2666-0830","PSYCHIATRY","('ESCI',)","46","0.3","Q4","0.06","0.00" +"ERNAHRUNGS UMSCHAU","0174-0008","0174-0008","NUTRITION & DIETETICS","('SCIE',)","273","0.3","Q4","0.06","0.00" +"Estudios de Cultura Maya","0185-2574","2448-5179","ANTHROPOLOGY","('ESCI',)","192","0.3","Q4","0.06","100.00" +"European Journal of Geriatrics and Gerontology","2687-2625","2687-2625","GERIATRICS & GERONTOLOGY","('ESCI',)","31","0.3","Q4","0.06","100.00" +"Ewha Medical Journal","2234-3180","2234-2591","MEDICINE, GENERAL & INTERNAL","('ESCI',)","43","0.3","Q3","0.06","79.41" +"IC-Revista Cientifica de Informacion y Comunicacion","1696-2508","2173-1071","COMMUNICATION","('ESCI',)","45","0.3","Q4","0.06","0.00" +"IDP-Internet Law and Politics","1699-8154","1699-8154","POLITICAL SCIENCE","('ESCI',)","65","0.3","Q4","0.06","72.00" +"Infectious Diseases and Clinical Microbiology","2667-646X","2667-646X","('INFECTIOUS DISEASES', 'MICROBIOLOGY')","('ESCI', 'ESCI')","38","0.3","('Q4', 'Q4')","0.06","85.71" +"Innovacion Educativa","1130-8656","2340-0056","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","153","0.3","Q4","0.06","100.00" +"International Journal of Internet Protocol Technology","1743-8209","1743-8217","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","48","0.3","Q4","0.06","0.00" +"Lengua y Migracion-Language and Migration","1889-5425","1889-5425","LINGUISTICS","('ESCI',)","60","0.3","Q4","0.06","56.60" +"Makara Journal of Health Research","2356-3664","2356-3656","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","80","0.3","Q4","0.06","98.90" +"Momona Ethiopian Journal of Science","2073-073X","2073-073X","MULTIDISCIPLINARY SCIENCES","('ESCI',)","190","0.3","Q4","0.06","100.00" +"Pensar en Movimiento-Revista de Ciencias del Ejercicio y la Salud","1409-0724","1659-4436","SPORT SCIENCES","('ESCI',)","77","0.3","Q4","0.06","94.29" +"PHYTOPROTECTION","0031-9511","1710-1603","PLANT SCIENCES","('SCIE',)","135","0.3","Q4","0.06","0.00" +"PRZEMYSL CHEMICZNY","0033-2496","0033-2496","('CHEMISTRY, MULTIDISCIPLINARY', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","715","0.3","('Q4', 'Q4')","0.06","0.00" +"Rational Pharmacotherapy in Cardiology","1819-6446","2225-3653","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","150","0.3","Q4","0.06","87.50" +"Revista Brasileira de Estudos Politicos","0034-7191","2359-5736","POLITICAL SCIENCE","('ESCI',)","69","0.3","Q4","0.06","63.53" +"Revista Hispanoamericana de Hernia","2255-2677","2255-2677","SURGERY","('ESCI',)","83","0.3","Q4","0.06","82.95" +"Revista sobre la Infancia y la Adolescencia","2174-7210","2174-7210","FAMILY STUDIES","('ESCI',)","36","0.3","Q4","0.06","87.88" +"Science & Technique","2227-1031","2227-1031","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","171","0.3","Q4","0.06","91.53" +"Suma de Negocios","2215-910X","2027-5692","BUSINESS","('ESCI',)","109","0.3","Q4","0.06","100.00" +"TERAPEVTICHESKII ARKHIV","0040-3660","2309-5342","MEDICINE, GENERAL & INTERNAL","('SCIE',)","659","0.3","Q3","0.06","98.27" +"UIS Ingenierias","1657-4583","2145-8456","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","109","0.3","Q4","0.06","98.09" +"Uni-pluriversidad","1657-4249","2665-2730","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","84","0.3","Q4","0.06","47.62" +"University Politehnica of Bucharest Scientific Bulletin Series B-Chemistry and Materials Science","1454-2331","1454-2331","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","469","0.3","Q4","0.06","0.00" +"Urbe-Revista Brasileira de Gestao Urbana","2175-3369","2175-3369","URBAN STUDIES","('ESCI',)","200","0.3","Q4","0.06","87.30" +"World of Medicine and Biology","2079-8334","2079-8334","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","265","0.3","Q4","0.06","0.17" +"Acta Cybernetica","0324-721X","0324-721X","COMPUTER SCIENCE, CYBERNETICS","('ESCI',)","97","0.3","Q4","0.05","98.08" +"Advances in Digestive Medicine","2351-9797","2351-9800","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","80","0.3","Q4","0.05","6.06" +"African Journal of Accounting Auditing and Finance","2046-8083","2046-8091","BUSINESS, FINANCE","('ESCI',)","33","0.3","Q4","0.05","0.00" +"BULLETIN DE L ACADEMIE NATIONALE DE MEDECINE","0001-4079","2271-4820","MEDICINE, GENERAL & INTERNAL","('SCIE',)","464","0.3","Q3","0.05","53.66" +"Bulletin de la Societe Linneenne de Lyon","2554-5280","","BIOLOGY","('SCIE',)","225","0.3","Q4","0.05","0.00" +"Chemical Bulletin of Kazakh National University","1563-0331","2312-7554","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","28","0.3","Q4","0.05","95.35" +"CONTEMPORARY SOCIOLOGY-A JOURNAL OF REVIEWS","0094-3061","1939-8638","SOCIOLOGY","('SSCI',)","1,814","0.3","Q4","0.05","0.00" +"Cuadernos de Neuropsicologia-Panamerican Journal of Neuropsychology","0718-4123","0718-4123","PSYCHOLOGY, BIOLOGICAL","('ESCI',)","73","0.3","Q4","0.05","0.00" +"CUHSO-Cultura-Hombre-Sociedad","0716-1557","0719-2789","SOCIAL ISSUES","('ESCI',)","88","0.3","Q4","0.05","58.54" +"Diritti Umani e Diritto Internazionale","1971-7105","1972-5485","('INTERNATIONAL RELATIONS', 'LAW')","('ESCI', 'ESCI')","82","0.3","('Q4', 'Q3')","0.05","0.00" +"Egyptian Journal of Critical Care Medicine","2090-7303","2090-9209","CRITICAL CARE MEDICINE","('ESCI',)","71","0.3","Q4","0.05","11.54" +"ENTRE CIENCIA E INGENIERIA","1909-8367","2539-4169","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","54","0.3","Q4","0.05","100.00" +"Enunciacion","0122-6339","2248-6798","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","59","0.3","Q4","0.05","87.67" +"Galician Medical Journal","2306-4285","2414-1518","MEDICINE, GENERAL & INTERNAL","('ESCI',)","37","0.3","Q3","0.05","98.84" +"Geographical Review of Japan-Series B","1883-4396","1883-4396","GEOGRAPHY, PHYSICAL","('ESCI',)","39","0.3","Q4","0.05","21.43" +"Geotechnical Engineering","0046-5828","0046-5828","ENGINEERING, GEOLOGICAL","('ESCI',)","411","0.3","Q4","0.05","0.00" +"Global Environment","1973-3739","2053-7352","ENVIRONMENTAL STUDIES","('ESCI',)","87","0.3","Q4","0.05","18.18" +"Gondola-Ensenanza y Aprendizaje de las Ciencias","2346-4712","2145-4981","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","69","0.3","Q4","0.05","65.12" +"HIV & AIDS Review","1730-1270","1732-2707","INFECTIOUS DISEASES","('ESCI',)","104","0.3","Q4","0.05","100.00" +"IIUM Medical Journal Malaysia","1823-4631","2735-2285","MEDICINE, GENERAL & INTERNAL","('ESCI',)","89","0.3","Q3","0.05","0.00" +"International Journal of Nanotechnology","1475-7435","1741-8151","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY')","('SCIE', 'SCIE')","512","0.3","('Q4', 'Q4')","0.05","0.00" +"INTERNATIONAL JOURNAL OF POWDER METALLURGY","0888-7462","0888-7462","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","182","0.3","Q4","0.05","0.00" +"Journal of Organisational Studies and Innovation","2056-9122","2056-9130","MANAGEMENT","('ESCI',)","20","0.3","Q4","0.05","0.00" +"JOURNAL OF POLYMER MATERIALS","0973-8622","","POLYMER SCIENCE","('SCIE',)","179","0.3","Q4","0.05","0.00" +"KAGAKU KOGAKU RONBUNSHU","0386-216X","","ENGINEERING, CHEMICAL","('SCIE',)","308","0.3","Q4","0.05","0.00" +"Korean Journal of Materials Research","1225-0562","2287-7258","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","264","0.3","Q4","0.05","37.40" +"MICROWAVE JOURNAL","0192-6225","","('ENGINEERING, ELECTRICAL & ELECTRONIC', 'TELECOMMUNICATIONS')","('SCIE', 'SCIE')","361","0.3","('Q4', 'Q4')","0.05","0.00" +"RDBCI-Revista Digital de Biblioteconomia e Ciencia da Informacao","","1678-765X","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","74","0.3","Q4","0.05","71.96" +"Revista Brasileira de Marketing","2177-5184","2177-5184","BUSINESS","('ESCI',)","493","0.3","Q4","0.05","89.34" +"Revista Cubana de Ciencias Forestales","2310-3469","2310-3469","FORESTRY","('ESCI',)","71","0.3","Q4","0.05","0.00" +"Revista del Cuerpo Medico del Hospital Nacional Almanzor Aguinaga Asenjo","2225-5109","2227-4731","MEDICINE, GENERAL & INTERNAL","('ESCI',)","112","0.3","Q3","0.05","61.74" +"Revista Geografica Venezolana","1012-1617","2244-8853","GEOGRAPHY","('ESCI',)","81","0.3","Q4","0.05","3.41" +"Revista Gestion de las Personas y Tecnologia","0718-5693","0718-5693","MANAGEMENT","('ESCI',)","22","0.3","Q4","0.05","41.18" +"Revista Mad-Revista del Magister en Analisis Sistemico Aplicado a la Sociedad","0718-0527","0718-0527","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","22","0.3","Q3","0.05","0.00" +"Sante Publique","0995-3914","2104-3841","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('SCIE',)","520","0.3","Q4","0.05","0.34" +"Scientia Medica","1806-5562","1980-6108","MEDICINE, GENERAL & INTERNAL","('ESCI',)","142","0.3","Q3","0.05","95.59" +"Scientific Study and Research-Chemistry and Chemical Engineering Biotechnology Food Industry","1582-540X","1582-540X","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","192","0.3","Q4","0.05","0.00" +"Southern African Journal of Accountability and Auditing Research-SAJAAR","1028-9011","1028-9011","BUSINESS, FINANCE","('ESCI',)","33","0.3","Q4","0.05","0.00" +"Turk Onkoloji Dergisi-Turkish Journal of Oncology","1300-7467","1300-7467","ONCOLOGY","('ESCI',)","115","0.3","Q4","0.05","94.79" +"US PHARMACIST","0148-4818","2331-3501","PHARMACOLOGY & PHARMACY","('ESCI',)","332","0.3","Q4","0.05","0.00" +"Video-Assisted Thoracic Surgery","2519-0792","2519-0792","SURGERY","('ESCI',)","63","0.3","Q4","0.05","96.91" +"Barataria-Revista Castellano-Manchega de Ciencias Sociales","1575-0825","2172-3184","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","55","0.3","Q3","0.04","61.11" +"Cadernos de Geografia","0871-1623","2183-4016","GEOGRAPHY","('ESCI',)","44","0.3","Q4","0.04","100.00" +"Cepal Review","0251-2920","1684-0348","ECONOMICS","('SSCI',)","511","0.3","Q4","0.04","0.00" +"CHEMICAL AND PETROLEUM ENGINEERING","0009-2355","1573-8329","ENGINEERING, CHEMICAL","('ESCI',)","403","0.3","Q4","0.04","0.00" +"Clinical Management Issues","1973-4832","2283-3137","MEDICINE, GENERAL & INTERNAL","('ESCI',)","11","0.3","Q3","0.04","100.00" +"Cuadernos de Documentacion Multimedia","1575-9733","1575-9733","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","24","0.3","Q4","0.04","100.00" +"Diabetes Stoffwechsel und Herz","1861-7603","1861-7603","ENDOCRINOLOGY & METABOLISM","('SCIE',)","38","0.3","Q4","0.04","0.00" +"Generations","0738-7806","2694-5126","GERONTOLOGY","('SSCI',)","656","0.3","Q4","0.04","0.00" +"Glass Technology-European Journal of Glass Science and Technology Part A","1753-3546","1753-3554","MATERIALS SCIENCE, CERAMICS","('SCIE',)","322","0.3","Q4","0.04","0.00" +"Iatreia","0121-0793","2011-7965","MEDICINE, GENERAL & INTERNAL","('ESCI',)","109","0.3","Q3","0.04","51.61" +"Indian Journal of Medical and Paediatric Oncology","0971-5851","0975-2129","ONCOLOGY","('ESCI',)","779","0.3","Q4","0.04","99.31" +"International Journal of Surgery-Oncology","2471-3864","2471-3864","ONCOLOGY","('ESCI',)","104","0.3","Q4","0.04","92.86" +"Journal of Critical & Intensive Care","2717-6428","2717-6428","CRITICAL CARE MEDICINE","('ESCI',)","15","0.3","Q4","0.04","94.83" +"Observatorio Medioambiental","1139-1987","1988-3277","ENVIRONMENTAL STUDIES","('ESCI',)","61","0.3","Q4","0.04","100.00" +"PERIPLO SUSTENTABLE","1870-9036","1870-9036","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","97","0.3","Q4","0.04","28.83" +"Problemele Energeticii Regionale","1857-0070","1857-0070","ENERGY & FUELS","('ESCI',)","78","0.3","Q4","0.04","87.97" +"Revista Gestao Organizacional","1983-6635","1983-6635","MANAGEMENT","('ESCI',)","69","0.3","Q4","0.04","92.68" +"Revista Habitat Sustentable","0719-0700","0719-0700","ENGINEERING, ENVIRONMENTAL","('ESCI',)","41","0.3","Q4","0.04","80.77" +"Agrisost","1025-0247","1025-0247","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","17","0.3","Q4","0.03","0.00" +"Bibliotecas-Anales de Investigacion","0006-176X","1683-8947","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","65","0.3","Q4","0.03","0.00" +"Contabilidade Gestao e Governanca","1984-3925","1984-3925","MANAGEMENT","('ESCI',)","91","0.3","Q4","0.03","67.74" +"Diabetologie","2731-7447","2731-7455","ENDOCRINOLOGY & METABOLISM","('SCIE',)","129","0.3","Q4","0.03","5.05" +"Eureka-Revista Cientifica de Psicologia","2218-0559","2220-9026","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","90","0.3","Q4","0.03","0.00" +"INGE CUC","0122-6517","2382-4700","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","51","0.3","Q4","0.03","8.33" +"Journal of Agricultural Machinery","2228-6829","2423-3943","AGRICULTURAL ENGINEERING","('ESCI',)","86","0.3","Q4","0.03","0.00" +"Letras Verdes","1390-6631","1390-6631","ENVIRONMENTAL STUDIES","('ESCI',)","57","0.3","Q4","0.03","100.00" +"Logos Ciencia & Tecnologia","2145-549X","2422-4200","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","76","0.3","Q3","0.03","73.91" +"Nephrologie","2731-7463","2731-7471","UROLOGY & NEPHROLOGY","('ESCI',)","106","0.3","Q4","0.03","10.00" +"POSTEPY BIOLOGII KOMORKI","0324-833X","2080-2218","CELL BIOLOGY","('SCIE',)","50","0.3","Q4","0.03","20.51" +"Revista CS en Ciencias Sociales","2011-0324","2011-0324","SOCIAL ISSUES","('ESCI',)","93","0.3","Q4","0.03","92.77" +"Revista Internacional de Estudios Migratorios","2173-1950","2173-1950","DEMOGRAPHY","('ESCI',)","28","0.3","Q4","0.03","50.00" +"Revista Internacional de Pensamiento Politico","1885-589X","2695-575X","POLITICAL SCIENCE","('ESCI',)","57","0.3","Q4","0.03","0.00" +"Revista Latinoamericana de Metodologia de las Ciencias Sociales","1853-7863","1853-7863","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","51","0.3","Q3","0.03","100.00" +"SOCIOLOGIE DU TRAVAIL","0038-0296","1777-5701","SOCIOLOGY","('SSCI',)","335","0.3","Q4","0.03","72.22" +"ARCHAEOLOGY","0003-8113","1943-5746","ARCHAEOLOGY","('AHCI',)","269","0.3","","0.02","0.00" +"Journal of the Selva Andina Research Society","2072-9294","2072-9308","MULTIDISCIPLINARY SCIENCES","('ESCI',)","30","0.3","Q4","0.02","4.76" +"PRACTICAL GASTROENTEROLOGY","0277-4208","0277-4208","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","161","0.3","Q4","0.02","0.00" +"Revista Universidad Empresa","0124-4639","2145-4558","BUSINESS","('ESCI',)","41","0.3","Q4","0.02","86.67" +"Avances","1562-3297","1562-3297","MULTIDISCIPLINARY SCIENCES","('ESCI',)","60","0.3","Q4","0.01","0.00" +"French Studies in Southern Africa","0259-0247","0259-0247","LANGUAGE & LINGUISTICS","('ESCI',)","11","0.3","","0.01","0.00" +"Revista Brasileira de Direito","1807-1228","2238-0604","LAW","('ESCI',)","100","0.3","Q3","0.01","92.19" +"CHEMISTRY & INDUSTRY","0009-3068","2047-6329","CHEMISTRY, APPLIED","('SCIE',)","419","0.3","Q4","0.00","0.00" +"Revista General de Derecho Constitucional","1886-7650","1886-6212","LAW","('ESCI',)","43","0.3","Q3","0.00","0.00" +"Bulletin of Spanish Studies","1475-3820","1478-3428","LITERATURE, ROMANCE","('AHCI',)","192","0.2","","3.06","13.41" +"FRENCH STUDIES","0016-1128","1468-2931","LITERATURE, ROMANCE","('AHCI',)","166","0.2","","3.02","29.07" +"Nueva Revista Filologia Hispanica","0185-0121","2448-6558","LITERATURE, ROMANCE","('ESCI',)","195","0.2","","2.79","100.00" +"GERMAN LIFE AND LETTERS","0016-8777","1468-0483","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","117","0.2","","2.49","57.89" +"CONTEMPORARY FRENCH AND FRANCOPHONE STUDIES","1740-9292","1740-9306","LITERATURE, ROMANCE","('AHCI',)","108","0.2","","2.16","5.23" +"Pasavento-Revista de Estudios Hispanicos","2255-4505","2255-4505","LITERATURE, ROMANCE","('ESCI',)","37","0.2","","1.99","81.03" +"MODERN LANGUAGE QUARTERLY","0026-7929","","LITERATURE","('AHCI',)","376","0.2","","1.98","0.00" +"Boletin de Literatura Oral","2173-0695","2173-0695","LITERATURE, ROMANCE","('ESCI',)","26","0.2","","1.91","85.48" +"ELH","0013-8304","1080-6547","LITERATURE","('AHCI',)","983","0.2","","1.90","0.00" +"DIACRITICS-A REVIEW OF CONTEMPORARY CRITICISM","0300-7162","1080-6539","LITERARY THEORY & CRITICISM","('AHCI',)","1,227","0.2","","1.88","0.00" +"CRITICAL QUARTERLY","0011-1562","1467-8705","LITERARY REVIEWS","('AHCI',)","205","0.2","","1.85","41.51" +"Magnificat Cultura i Literatura Medievals","2386-8295","2386-8295","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","17","0.2","","1.85","97.22" +"BOLETIN DE LA REAL ACADEMIA ESPANOLA","0210-4822","2445-0898","LITERATURE, ROMANCE","('AHCI',)","142","0.2","","1.77","0.00" +"Folk Life-Journal of Ethnological Studies","0430-8778","1759-670X","FOLKLORE","('AHCI',)","39","0.2","","1.65","32.00" +"Folklore-Electronic Journal of Folklore","1406-0957","1406-0949","FOLKLORE","('AHCI',)","94","0.2","","1.63","98.02" +"NOTTINGHAM FRENCH STUDIES","0029-4586","2047-7236","LITERATURE, ROMANCE","('AHCI',)","51","0.2","","1.61","0.00" +"Essays in French Literature and Culture","1835-7040","1835-7040","LITERATURE, ROMANCE","('ESCI',)","14","0.2","","1.50","0.00" +"Romanic Review","0035-8118","2688-5220","LITERATURE, ROMANCE","('ESCI',)","109","0.2","","1.49","0.00" +"Text Matters-A Journal of Literature Theory and Culture","2083-2931","2084-574X","LITERARY THEORY & CRITICISM","('ESCI',)","34","0.2","","1.48","100.00" +"ZEITSCHRIFT FUR ROMANISCHE PHILOLOGIE","0049-8661","1865-9063","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","163","0.2","('N/A', 'N/A')","1.47","10.28" +"EXTRAPOLATION","0014-5483","2047-7708","LITERATURE","('AHCI',)","156","0.2","","1.45","2.38" +"Journal of Postcolonial Writing","1744-9855","1744-9863","LITERATURE","('AHCI',)","385","0.2","","1.39","21.57" +"Catedral Tomada-Revista de Critica Literaria Latinoamericana-Journal of Latin American Literary Criticism","2169-0847","2169-0847","LITERARY THEORY & CRITICISM","('ESCI',)","22","0.2","","1.34","97.18" +"REVUE ROMANE","0035-3906","1600-0811","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","65","0.2","('N/A', 'N/A')","1.32","2.13" +"GREEK ROMAN AND BYZANTINE STUDIES","0017-3916","2159-3159","CLASSICS","('AHCI',)","649","0.2","","1.31","0.00" +"Applied Theatre Research","2049-3010","2049-3029","THEATER","('ESCI',)","23","0.2","","1.30","0.00" +"Zeitschrift fur Empirische Kulturwissenschaft","2752-1591","2752-1605","FOLKLORE","('AHCI',)","1","0.2","","1.30","0.00" +"Journal of Classics Teaching","1741-7627","2058-6310","CLASSICS","('ESCI',)","40","0.2","","1.29","100.00" +"FOLKLORE","0015-587X","1469-8315","FOLKLORE","('AHCI',)","395","0.2","","1.28","18.46" +"RAMUS-CRITICAL STUDIES IN GREEK AND ROMAN LITERATURE","0048-671X","2202-932X","CLASSICS","('AHCI',)","219","0.2","","1.28","2.78" +"Journal of British Cinema and Television","1743-4521","1755-1714","FILM, RADIO, TELEVISION","('AHCI',)","130","0.2","","1.27","3.17" +"Journal of Literary Studies","0256-4718","1753-5387","('LITERARY THEORY & CRITICISM', 'LITERATURE')","('AHCI', 'AHCI')","133","0.2","('N/A', 'N/A')","1.25","55.07" +"Gripla","1018-5011","","('LITERATURE, GERMAN, DUTCH, SCANDINAVIAN', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI', 'AHCI')","47","0.2","('N/A', 'N/A')","1.24","0.00" +"INTERNATIONALES ARCHIV FUR SOZIALGESCHICHTE DER DEUTSCHEN LITERATUR","0340-4528","1865-9128","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","62","0.2","","1.23","4.11" +"Revista de Etnografie si Folclor-Journal of Ethnography and Folklore","0034-8198","0034-8198","FOLKLORE","('AHCI',)","10","0.2","","1.22","0.00" +"DAPHNIS-ZEITSCHRIFT FUR MITTLERE DEUTSCHE LITERATUR","0300-693X","1879-6583","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","79","0.2","","1.21","2.86" +"VIVARIUM-AN INTERNATIONAL JOURNAL FOR THE PHILOSOPHY AND INTELLECTUAL LIFE OF THE MIDDLE AGES AND RENAISSANCE","0042-7543","","('MEDIEVAL & RENAISSANCE STUDIES', 'PHILOSOPHY')","('AHCI', 'AHCI')","167","0.2","('N/A', 'N/A')","1.21","9.38" +"Antichthon","0066-4774","2056-8819","CLASSICS","('AHCI',)","115","0.2","","1.19","9.68" +"Vulcan","2213-459X","2213-4603","HISTORY","('ESCI',)","7","0.2","Q2","1.19","0.00" +"CLASSICAL QUARTERLY","0009-8388","1471-6844","CLASSICS","('AHCI',)","1,861","0.2","","1.18","52.63" +"De Medio Aevo","2255-5889","2255-5889","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","35","0.2","","1.17","100.00" +"BYZANTINISCHE ZEITSCHRIFT","0007-7704","1868-9027","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","267","0.2","","1.16","6.25" +"Childrens Literature","0092-8208","1543-3374","LITERATURE","('ESCI',)","150","0.2","","1.13","0.00" +"Hipogrifo-Revista de literatura y cultura del Siglo de Oro","2328-1308","2328-1308","('LITERATURE, ROMANCE', 'MEDIEVAL & RENAISSANCE STUDIES')","('ESCI', 'ESCI')","110","0.2","('N/A', 'N/A')","1.13","99.67" +"JOURNAL OF MODERN GREEK STUDIES","0738-1727","1086-3265","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","144","0.2","","1.13","0.00" +"Mouseion-Journal of the Classical Association of Canada","1496-9343","1913-5416","CLASSICS","('ESCI',)","86","0.2","","1.13","0.00" +"JOURNAL OF MUSICOLOGY","0277-9269","","MUSIC","('AHCI',)","199","0.2","","1.10","0.00" +"Drevnyaya Rus-Voprosy Medievistiki","2071-9574","2071-9574","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","79","0.2","","1.08","0.00" +"INDO-IRANIAN JOURNAL","0019-7246","1572-8536","ASIAN STUDIES","('AHCI',)","136","0.2","","1.08","31.25" +"Postmedieval-A Journal of Medieval Cultural Studies","2040-5960","2040-5979","('CULTURAL STUDIES', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI, SSCI', 'AHCI')","145","0.2","('Q4', 'N/A')","1.08","20.83" +"VICTORIAN STUDIES","0042-5222","1527-2052","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","578","0.2","","1.07","0.00" +"Emily Dickinson Journal","1059-6879","1096-858X","('LITERATURE, AMERICAN', 'POETRY')","('AHCI', 'AHCI')","34","0.2","('N/A', 'N/A')","1.06","0.00" +"ISLE-Interdisciplinary Studies in Literature and Environment","1076-0962","1759-1090","LITERATURE","('AHCI',)","283","0.2","","1.05","8.98" +"Early Theatre","1206-9078","1206-9078","THEATER","('ESCI',)","138","0.2","","1.04","0.00" +"Arabica","0570-5398","1570-0585","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","334","0.2","('Q2', 'N/A')","1.03","8.70" +"Novoe Literaturnoe Obozrenie","0869-6365","","('LITERARY THEORY & CRITICISM', 'LITERATURE, SLAVIC')","('AHCI', 'AHCI')","266","0.2","('N/A', 'N/A')","1.03","0.00" +"Trends in Classics","1866-7473","1866-7481","CLASSICS","('AHCI',)","91","0.2","","1.03","17.95" +"Erudition and the Republic of Letters","2405-5050","2405-5069","HISTORY","('ESCI',)","28","0.2","Q2","1.02","15.15" +"Interdisciplinary Studies of Literature","2520-4920","2616-4566","LITERATURE","('AHCI',)","40","0.2","","1.02","0.00" +"Literary Imagination","1523-9012","1752-6566","LITERARY REVIEWS","('AHCI',)","31","0.2","","1.02","6.52" +"South African Theatre Journal","1013-7548","2163-7660","THEATER","('ESCI',)","55","0.2","","1.01","5.88" +"Studies in History","0257-6430","0973-080X","HISTORY","('ESCI',)","207","0.2","Q2","0.99","6.90" +"GERMAN QUARTERLY","0016-8831","1756-1183","('LANGUAGE & LINGUISTICS', 'LITERATURE, GERMAN, DUTCH, SCANDINAVIAN')","('AHCI', 'AHCI')","161","0.2","('N/A', 'N/A')","0.98","32.65" +"Perspectives on Science and Christian Faith","0892-2675","0892-2675","RELIGION","('ESCI',)","93","0.2","","0.98","0.00" +"Revista Brasileira de Historia","0102-0188","","HISTORY","('AHCI',)","233","0.2","Q2","0.98","98.53" +"Stanislavski Studies","2056-7790","2054-4170","THEATER","('ESCI',)","33","0.2","","0.98","21.62" +"WORDSWORTH CIRCLE","0043-8006","2640-7310","POETRY","('AHCI',)","100","0.2","","0.98","0.00" +"World Literature Studies","1337-9275","1337-9690","LITERATURE","('AHCI',)","47","0.2","","0.98","0.00" +"CRITIQUE-STUDIES IN CONTEMPORARY FICTION","0011-1619","1939-9138","LITERATURE","('AHCI',)","261","0.2","","0.97","15.71" +"LITERATURE AND MEDICINE","0278-9671","1080-6571","LITERATURE","('AHCI',)","236","0.2","","0.97","1.67" +"New Writing-The International Journal for the Practice and Theory of Creative Writing","1479-0726","1943-3107","LITERATURE","('ESCI',)","110","0.2","","0.97","17.72" +"Christian Bioethics","1380-3603","1744-4195","('PHILOSOPHY', 'RELIGION')","('AHCI', 'AHCI')","96","0.2","('N/A', 'N/A')","0.95","6.56" +"East Central Europe","0094-3037","1876-3308","HISTORY","('ESCI',)","79","0.2","Q2","0.95","7.69" +"Studies in Musical Theatre","1750-3159","1750-3167","THEATER","('ESCI',)","34","0.2","","0.95","0.00" +"Irish Economic and Social History","0332-4893","2050-4918","HISTORY","('ESCI',)","71","0.2","Q2","0.94","47.37" +"PUBLIC HISTORIAN","0272-3433","","HISTORY","('AHCI',)","391","0.2","Q2","0.94","3.23" +"Convivium-Exchanges and Interactions in the Arts of Medieval Europe Byzantium and the Mediterranean","2336-3452","2336-808X","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","59","0.2","","0.93","0.00" +"International Studies in Catholic Education","1942-2539","1942-2547","RELIGION","('ESCI',)","73","0.2","","0.92","27.42" +"NEOHELICON","0324-4652","1588-2810","LITERATURE","('AHCI',)","158","0.2","","0.92","20.86" +"STUDIA NEOPHILOLOGICA","0039-3274","1651-2308","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","133","0.2","('N/A', 'N/A')","0.92","18.18" +"Journal of Egyptian History","1874-1657","1874-1665","HISTORY","('ESCI',)","62","0.2","Q2","0.91","0.00" +"Documenti e Studi sulla Tradizione Filosofica Medievale","1122-5750","","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","88","0.2","","0.90","0.00" +"Ethnomusicology Forum","1741-1912","1741-1920","MUSIC","('AHCI',)","167","0.2","","0.90","38.10" +"HERMES-ZEITSCHRIFT FUR KLASSISCHE PHILOLOGIE","0018-0777","2365-3116","CLASSICS","('AHCI',)","328","0.2","","0.89","0.00" +"Jewish Studies Quarterly","0944-5706","1868-6788","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","178","0.2","","0.89","0.00" +"Historia da Historiografia","1983-9928","1983-9928","HISTORY","('ESCI',)","139","0.2","Q2","0.87","95.24" +"Journal of Chinese Literature and Culture","2329-0048","2329-0056","('ASIAN STUDIES', 'LITERATURE')","('AHCI', 'AHCI')","56","0.2","('N/A', 'N/A')","0.87","0.00" +"FRENCH HISTORICAL STUDIES","0016-1071","1527-5493","HISTORY","('AHCI',)","343","0.2","Q2","0.86","0.00" +"ORBIS LITTERARUM","0105-7510","1600-0730","LITERATURE","('AHCI',)","121","0.2","","0.86","34.78" +"Studies in American Indian Literatures","0730-3238","1548-9590","LITERATURE, AMERICAN","('AHCI',)","155","0.2","","0.86","0.00" +"CLASSICAL WORLD","0009-8418","1558-9234","CLASSICS","('AHCI',)","433","0.2","","0.85","0.00" +"Journal of Latin Linguistics","2194-8739","2194-8747","('CLASSICS', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI', 'ESCI')","30","0.2","('N/A', 'N/A', 'Q4')","0.85","32.00" +"NINETEENTH-CENTURY LITERATURE","0891-9356","","LITERATURE","('AHCI',)","205","0.2","","0.85","0.00" +"Sikh Formations-Religion Culture Theory","1744-8727","1744-8735","ASIAN STUDIES","('ESCI',)","167","0.2","","0.85","6.06" +"Studi Pasoliniani-Rivista Internazionale","1972-473X","1973-3232","('FILM, RADIO, TELEVISION', 'LITERATURE, ROMANCE')","('ESCI', 'ESCI')","11","0.2","('N/A', 'N/A')","0.85","0.00" +"Augustinian Studies","0094-5323","2153-7917","('HISTORY', 'PHILOSOPHY', 'RELIGION')","('AHCI', 'AHCI', 'AHCI')","180","0.2","('Q2', 'N/A', 'N/A')","0.84","0.00" +"Mark Twain Annual","1553-0981","1756-2597","LITERATURE, AMERICAN","('ESCI',)","17","0.2","","0.84","0.00" +"Taller de Letras","0716-0798","0716-0798","LITERATURE, ROMANCE","('AHCI',)","40","0.2","","0.82","0.00" +"Jewish History","0334-701X","1572-8579","HISTORY","('AHCI',)","238","0.2","Q2","0.81","18.37" +"Revolutionary Russia","0954-6545","1743-7873","HISTORY","('AHCI',)","94","0.2","Q2","0.81","37.50" +"SCIENCE-FICTION STUDIES","0091-7729","","LITERATURE","('AHCI',)","422","0.2","","0.81","0.00" +"JOURNAL OF AMERICAN STUDIES","0021-8758","1469-5154","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","382","0.2","","0.80","30.77" +"TEMENOS","0497-1817","","RELIGION","('AHCI',)","111","0.2","","0.80","92.59" +"International Journal of Korean History","1598-2041","2508-5921","HISTORY","('ESCI',)","56","0.2","Q2","0.79","58.14" +"Africa Review","0974-4053","0974-4061","AREA STUDIES","('ESCI',)","83","0.2","Q4","0.78","6.25" +"AMERICAN LITERARY REALISM","0002-9823","2326-9235","LITERATURE, AMERICAN","('AHCI',)","112","0.2","","0.78","0.00" +"EIRE-IRELAND","0013-2683","1550-5162","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","145","0.2","","0.78","0.00" +"Contemporary Womens Writing","1754-1476","1754-1484","LITERATURE","('AHCI',)","40","0.2","","0.77","16.33" +"Cultural History","2045-290X","2045-2918","HISTORY","('ESCI',)","88","0.2","Q2","0.77","2.78" +"Journal for Eighteenth-Century Studies","1754-0194","1754-0208","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","168","0.2","","0.77","32.84" +"Journal of the British Archaeological Association","0068-1288","1747-6704","('ARCHAEOLOGY', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI', 'AHCI')","67","0.2","('N/A', 'N/A')","0.77","37.93" +"Journal of Victorian Culture","1355-5502","1750-0133","HISTORY","('AHCI', 'SSCI')","208","0.2","Q2","0.77","37.82" +"Literature and Theology","0269-1205","1477-4623","('LITERARY THEORY & CRITICISM', 'RELIGION')","('AHCI', 'AHCI')","126","0.2","('N/A', 'N/A')","0.77","20.31" +"Concentric-Literary and Cultural Studies","1729-6897","1729-8792","('LITERARY THEORY & CRITICISM', 'LITERATURE')","('AHCI', 'AHCI')","54","0.2","('N/A', 'N/A')","0.76","0.00" +"Culture et Musees","1766-2923","2111-4528","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","31","0.2","","0.76","0.00" +"Early American Studies-An Interdisciplinary Journal","1543-4273","1559-0895","HISTORY","('ESCI',)","225","0.2","Q2","0.76","0.00" +"HISPANIA-A JOURNAL DEVOTED TO THE TEACHING OF SPANISH AND PORTUGUESE","0018-2133","2153-6414","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'SSCI', 'AHCI')","411","0.2","('N/A', 'Q4', 'N/A')","0.76","0.00" +"SEDERI-Yearbook of the Spanish and Portuguese Society for English Renaissance Studies","1135-7789","1135-7789","('LITERATURE, BRITISH ISLES', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI', 'AHCI')","25","0.2","('N/A', 'N/A')","0.76","93.33" +"ARCHIVES OF ASIAN ART","0066-6637","1944-6497","('ART', 'ASIAN STUDIES')","('AHCI', 'AHCI')","62","0.2","('N/A', 'N/A')","0.75","0.00" +"Cuadernos de Filologia Clasica-Estudios Latinos","1131-9062","1988-2343","CLASSICS","('ESCI',)","36","0.2","","0.75","97.67" +"Emerita","0013-6662","1988-8384","CLASSICS","('AHCI',)","84","0.2","","0.75","92.86" +"FORUM FOR MODERN LANGUAGE STUDIES","0015-8518","1471-6860","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","169","0.2","('N/A', 'N/A')","0.75","29.63" +"Irish Theological Quarterly","0021-1400","1752-4989","RELIGION","('AHCI',)","110","0.2","","0.75","16.67" +"Reti Medievali Rivista","1593-2214","","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","120","0.2","","0.75","0.00" +"CINEJ Cinema Journal","2159-2411","2158-8724","FILM, RADIO, TELEVISION","('ESCI',)","38","0.2","","0.74","97.22" +"ENGLISH LANGUAGE NOTES","0013-8282","2573-3575","LITERATURE","('AHCI',)","236","0.2","","0.74","5.36" +"ASIAN MUSIC","0044-9202","1553-5630","('ASIAN STUDIES', 'MUSIC')","('AHCI', 'AHCI')","131","0.2","('N/A', 'N/A')","0.73","0.00" +"Journal of Italian Cinema and Media Studies","2047-7368","2047-7376","FILM, RADIO, TELEVISION","('ESCI',)","37","0.2","","0.73","0.00" +"Choreographic Practices","2040-5669","2040-5677","DANCE","('ESCI',)","19","0.2","","0.72","3.70" +"Journal of the Society for American Music","1752-1963","1752-1971","MUSIC","('AHCI',)","108","0.2","","0.72","37.29" +"NEOPHILOLOGUS","0028-2677","1572-8668","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","226","0.2","('N/A', 'N/A')","0.72","46.77" +"Journal of the History of Collections","0954-6650","1477-8564","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","159","0.2","","0.71","22.41" +"Organised Sound","1355-7718","1469-8153","MUSIC","('AHCI',)","286","0.2","","0.71","37.39" +"ANGELAKI-JOURNAL OF THE THEORETICAL HUMANITIES","0969-725X","1469-2899","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","558","0.2","","0.70","27.78" +"ESSAYS IN CRITICISM","0014-0856","1471-6852","LITERATURE","('AHCI',)","137","0.2","","0.70","26.67" +"PROOFTEXTS-A JOURNAL OF JEWISH LITERARY HISTORY","0272-9601","1086-3311","LITERATURE","('AHCI',)","158","0.2","","0.70","3.45" +"British Catholic History","2055-7973","2055-7981","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","35","0.2","('Q2', 'N/A')","0.69","29.17" +"Chinese Semiotic Studies","2198-9605","2198-9613","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","84","0.2","","0.69","4.85" +"Ilha do Desterro-A Journal of English Language Literatures in English and Cultural Studies","0101-4846","2175-8026","LITERATURE","('ESCI',)","94","0.2","","0.68","88.67" +"Italian Journal of Planning Practice","2239-267X","2239-267X","ARCHITECTURE","('ESCI',)","49","0.2","","0.68","0.00" +"Studia Litterarum","2500-4247","2541-8564","LITERATURE","('ESCI',)","51","0.2","","0.68","99.19" +"CAHIERS ELISABETHAINS","0184-7678","2054-4715","LITERATURE, BRITISH ISLES","('AHCI',)","62","0.2","","0.67","12.31" +"EXPLICATOR","0014-4940","1939-926X","LITERATURE","('AHCI',)","85","0.2","","0.67","2.38" +"JOURNAL OF GLASS STUDIES","0075-4250","","ART","('AHCI',)","294","0.2","","0.67","0.00" +"Revue d Etudes Tibetaines","1768-2959","1768-2959","ASIAN STUDIES","('ESCI',)","84","0.2","","0.67","0.00" +"ANGLIA-ZEITSCHRIFT FUR ENGLISCHE PHILOLOGIE","0340-5222","1865-8938","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","131","0.2","('N/A', 'N/A')","0.66","12.50" +"Comparative Critical Studies","1744-1854","1750-0109","LITERATURE","('AHCI',)","115","0.2","","0.66","0.00" +"Journal of Dance & Somatic Practices","1757-1871","1757-188X","DANCE","('ESCI',)","43","0.2","","0.66","0.00" +"Nineteenth-Century Music Review","1479-4098","2044-8414","MUSIC","('AHCI',)","68","0.2","","0.66","19.54" +"STUDIES IN PHILOLOGY","0039-3738","1543-0383","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","477","0.2","('N/A', 'N/A')","0.66","0.00" +"War & Society","0729-2473","2042-4345","HISTORY","('AHCI', 'SSCI')","145","0.2","Q2","0.65","14.08" +"Casopis za Suvremenu Povijest","0590-9597","1848-9079","HISTORY","('ESCI',)","64","0.2","Q2","0.64","91.78" +"Discourse-Journal for Theoretical Studies in Media and Culture","1522-5321","1536-1810","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","39","0.2","","0.64","0.00" +"PARAGRAPH","0264-8334","1750-0176","LITERATURE","('AHCI',)","227","0.2","","0.64","1.61" +"ArDIn-Arte Diseno e Ingenieria","2254-8319","2254-8319","ART","('ESCI',)","13","0.2","","0.63","66.67" +"Science Fiction Film and Television","1754-3770","1754-3789","FILM, RADIO, TELEVISION","('ESCI',)","66","0.2","","0.63","0.00" +"Vestnik Sankt-Peterburgskogo Universiteta-Istoriya","1812-9323","1812-9323","HISTORY","('ESCI',)","85","0.2","Q2","0.63","90.54" +"ARETHUSA","0004-0975","1080-6504","CLASSICS","('AHCI',)","467","0.2","","0.62","0.00" +"Art Documentation","0730-7187","2161-9417","ART","('ESCI',)","86","0.2","","0.62","0.00" +"CIVIL WAR HISTORY","0009-8078","1533-6271","HISTORY","('AHCI',)","132","0.2","Q2","0.62","0.00" +"Language & History","1759-7536","1759-7544","('HISTORY', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'AHCI', 'SSCI')","33","0.2","('Q2', 'N/A', 'Q4')","0.62","31.71" +"Shofar-An Interdisciplinary Journal of Jewish Studies","0882-8539","1534-5165","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","137","0.2","","0.62","0.00" +"SLAVONIC AND EAST EUROPEAN REVIEW","0037-6795","2222-4327","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","320","0.2","","0.62","0.00" +"Asia-Pacific Language Variation","2215-1354","2215-1362","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","21","0.2","('N/A', 'Q4')","0.61","8.33" +"Historia y Memoria","2027-5137","2322-777X","HISTORY","('ESCI',)","64","0.2","Q2","0.61","100.00" +"OREGON HISTORICAL QUARTERLY","0030-4727","","HISTORY","('AHCI',)","186","0.2","Q2","0.61","0.00" +"CANADIAN THEATRE REVIEW","0315-0836","1920-941X","THEATER","('AHCI',)","81","0.2","","0.60","0.00" +"International Journal of Systematic Theology","1463-1652","1468-2400","RELIGION","('AHCI',)","189","0.2","","0.60","19.61" +"Journal of Medieval Religious Cultures","1947-6566","2153-9650","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","30","0.2","","0.60","0.00" +"London Journal","0305-8034","1749-6322","('AREA STUDIES', 'HISTORY')","('SSCI', 'AHCI, SSCI')","104","0.2","('Q4', 'Q2')","0.60","25.64" +"NORTHERN HISTORY","0078-172X","1745-8706","HISTORY","('AHCI', 'SSCI')","76","0.2","Q2","0.60","54.29" +"International Journal of Maritime History","0843-8714","2052-7756","HISTORY","('ESCI',)","253","0.2","Q2","0.59","25.69" +"SCOTTISH JOURNAL OF THEOLOGY","0036-9306","1475-3065","RELIGION","('AHCI',)","234","0.2","","0.59","29.87" +"SOUTH AFRICAN JOURNAL OF PHILOSOPHY","0258-0136","2073-4867","PHILOSOPHY","('AHCI',)","349","0.2","","0.59","3.26" +"Artnodes","1695-5951","1695-5951","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","80","0.2","","0.58","58.88" +"JOURNAL OF CHINESE PHILOSOPHY","0301-8121","1540-6253","('ASIAN STUDIES', 'PHILOSOPHY')","('AHCI', 'AHCI')","333","0.2","('N/A', 'N/A')","0.58","8.33" +"LEARNing Landscapes","1913-5688","1913-5688","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","209","0.2","Q4","0.58","0.00" +"Cuadernos de Historia Moderna","0214-4018","1988-2475","HISTORY","('ESCI',)","216","0.2","Q2","0.57","92.19" +"International Journal of Christianity & Education","2056-9971","2056-998X","RELIGION","('ESCI',)","48","0.2","","0.57","7.55" +"Kyiv-Mohyla Humanities Journal","2313-4895","2313-4895","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","30","0.2","","0.57","29.41" +"LITERATURE & HISTORY-THIRD SERIES","0306-1973","2050-4594","('HISTORY', 'LITERATURE')","('AHCI', 'AHCI')","97","0.2","('Q2', 'N/A')","0.56","36.00" +"ZEITSCHRIFT FUR DIE ALTTESTAMENTLICHE WISSENSCHAFT","0044-2526","1613-0103","RELIGION","('AHCI',)","453","0.2","","0.56","17.81" +"HUNTINGTON LIBRARY QUARTERLY","0018-7895","1544-399X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","489","0.2","","0.55","0.00" +"Asian and African Studies","1335-1257","2585-8793","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","61","0.2","","0.54","52.38" +"Horizon-Fenomenologicheskie Issledovaniya","2226-5260","2311-6986","PHILOSOPHY","('ESCI',)","29","0.2","","0.54","98.59" +"JOURNAL OF JAPANESE STUDIES","0095-6848","1549-4721","AREA STUDIES","('SSCI',)","237","0.2","Q4","0.54","0.00" +"NOTORNIS","0029-4470","1177-7680","ORNITHOLOGY","('SCIE',)","478","0.2","Q4","0.54","0.00" +"French Screen Studies","2643-8941","2643-895X","FILM, RADIO, TELEVISION","('AHCI',)","20","0.2","","0.53","25.32" +"Journal of British and Irish Innovative Poetry","1758-2733","1758-972X","POETRY","('ESCI',)","7","0.2","","0.53","100.00" +"Manuscript Studies-A Journal of the Schoenberg Institute for Manuscript Studies","2381-5329","2380-1190","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","28","0.2","","0.53","0.00" +"Turkish Historical Review","1877-5454","1877-5462","HISTORY","('AHCI',)","40","0.2","Q2","0.53","1.79" +"ARCHIVIO STORICO ITALIANO","0391-7770","2036-4660","HISTORY","('AHCI',)","190","0.2","Q2","0.52","0.00" +"Interlitteraria","1406-0701","2228-4729","LITERATURE","('ESCI',)","36","0.2","","0.52","100.00" +"WESTERN AMERICAN LITERATURE","0043-3462","1948-7142","LITERATURE, AMERICAN","('AHCI',)","96","0.2","","0.52","0.00" +"Zolotoordynskoe Obozrenie-Golden Horde Review","2308-152X","2313-6197","HISTORY","('ESCI',)","94","0.2","Q2","0.52","99.35" +"BOUNDARY 2-AN INTERNATIONAL JOURNAL OF LITERATURE AND CULTURE","0190-3659","1527-2141","('CULTURAL STUDIES', 'LITERATURE')","('AHCI, SSCI', 'AHCI')","906","0.2","('Q4', 'N/A')","0.51","0.00" +"Costume-The Journal of the Costume Society","0590-8876","1749-6306","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","83","0.2","","0.51","7.69" +"Epistemology & Philosophy of Science-Epistemologiya i Filosofiya Nauki","1811-833X","2311-7133","PHILOSOPHY","('ESCI',)","138","0.2","","0.51","0.00" +"Pluralist","1930-7365","","PHILOSOPHY","('AHCI',)","90","0.2","","0.51","0.00" +"Pneuma","0272-0965","1570-0747","RELIGION","('ESCI',)","132","0.2","","0.51","4.11" +"Scottish Literary Review","1756-5634","2050-6678","LITERATURE, BRITISH ISLES","('AHCI',)","19","0.2","","0.51","0.00" +"Architecture_MPS","","2050-9006","ARCHITECTURE","('ESCI',)","36","0.2","","0.50","100.00" +"CATHOLIC HISTORICAL REVIEW","0008-8080","1534-0708","HISTORY","('AHCI',)","225","0.2","Q2","0.50","0.00" +"European Romantic Review","1050-9585","1740-4657","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","210","0.2","","0.50","21.70" +"In die Skriflig-In Luce Verbi","1018-6441","2305-0853","RELIGION","('ESCI',)","144","0.2","","0.50","97.18" +"US Catholic Historian","0735-8318","1947-8224","RELIGION","('ESCI',)","117","0.2","","0.50","0.00" +"FORUM DER PSYCHOANALYSE","0178-7667","1437-0751","PSYCHOLOGY, PSYCHOANALYSIS","('SSCI',)","94","0.2","Q4","0.49","21.95" +"JOURNAL OF THE ROYAL MUSICAL ASSOCIATION","0269-0403","1471-6933","MUSIC","('AHCI',)","165","0.2","","0.49","32.56" +"Kritika Kultura","2094-6937","","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","90","0.2","('N/A', 'N/A')","0.49","0.00" +"RUSSKAIA LITERATURA","0131-6095","0131-6095","LITERATURE, SLAVIC","('AHCI',)","175","0.2","","0.49","0.00" +"SOUTHWESTERN HISTORICAL QUARTERLY","0038-478X","1558-9560","HISTORY","('AHCI',)","147","0.2","Q2","0.49","0.00" +"Canadian Journal of Film Studies-Revue Canadienne d Etudes Cinematographiques","0847-5911","2561-424X","FILM, RADIO, TELEVISION","('AHCI',)","77","0.2","","0.48","0.00" +"Ephemerides Theologicae Lovanienses","0013-9513","1783-1423","RELIGION","('AHCI',)","101","0.2","","0.48","0.00" +"Journal of American-East Asian Relations","1058-3947","1876-5610","HISTORY","('ESCI',)","112","0.2","Q2","0.48","11.11" +"Journal of Curatorial Studies","2045-5836","2045-5844","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","29","0.2","","0.48","3.70" +"Journal of Early Christian History","2222-582X","2471-4054","RELIGION","('ESCI',)","48","0.2","","0.48","6.82" +"Vegueta-Anuario de la Facultad de Geografia e Historia","1133-598X","2341-1112","HISTORY","('ESCI',)","64","0.2","Q2","0.48","95.65" +"KONSTHISTORISK TIDSKRIFT","0023-3609","1651-2294","ART","('AHCI',)","57","0.2","","0.47","57.14" +"Melanges de la Casa de Velazquez","0076-230X","2173-1306","('HISTORY', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","227","0.2","('Q2', 'N/A')","0.47","63.29" +"OXFORD LITERARY REVIEW","0305-1498","1757-1634","('LITERARY THEORY & CRITICISM', 'PHILOSOPHY')","('AHCI', 'AHCI')","179","0.2","('N/A', 'N/A')","0.47","0.00" +"RESEARCH IN PHENOMENOLOGY","0085-5553","1569-1640","PHILOSOPHY","('AHCI',)","277","0.2","","0.47","10.94" +"Revista de Arquitectura-Bogota","1657-0308","2357-626X","ARCHITECTURE","('ESCI',)","82","0.2","","0.47","93.15" +"EARLY MUSIC HISTORY","0261-1279","1474-0559","MUSIC","('AHCI',)","89","0.2","","0.46","50.00" +"Hispania Sacra","0018-215X","1988-4265","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","272","0.2","('Q2', 'N/A')","0.46","96.67" +"Middle East Journal of Culture and Communication","1873-9857","1873-9865","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","154","0.2","","0.46","9.68" +"POSTMODERN CULTURE","1053-1920","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","136","0.2","","0.46","0.00" +"Studies in European Cinema","1741-1548","2040-0594","FILM, RADIO, TELEVISION","('ESCI',)","55","0.2","","0.46","27.54" +"Topics in Linguistics","1337-7590","2199-6504","LANGUAGE & LINGUISTICS","('ESCI',)","44","0.2","","0.46","100.00" +"TRANSLATION REVIEW","0737-4836","2164-0564","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","61","0.2","('N/A', 'N/A')","0.46","4.55" +"Antiquaries Journal","0003-5815","1758-5309","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","186","0.2","","0.45","26.92" +"Disparidades-Revista de Antropologia","","2659-6881","FOLKLORE","('AHCI',)","27","0.2","","0.45","100.00" +"Estudios de Historia Novohispana","1870-9060","2448-6922","HISTORY","('ESCI',)","110","0.2","Q2","0.45","75.00" +"KEATS-SHELLEY JOURNAL","0453-4387","","POETRY","('AHCI',)","62","0.2","","0.45","0.00" +"Latin Americanist","1557-2021","1557-203X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","96","0.2","","0.45","0.00" +"Palaeobulgarica-Starobalgaristika","0204-4021","2603-2899","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","67","0.2","","0.45","0.00" +"Al-Bayan-Journal of Quran and Hadith Studies","2232-1950","2232-1969","RELIGION","('ESCI',)","41","0.2","","0.44","6.00" +"Castilla-Estudios de Literatura","1989-7383","1989-7383","LITERATURE","('ESCI',)","62","0.2","","0.44","89.53" +"Dress-The Journal of the Costume Society of America","0361-2112","2042-1729","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","61","0.2","","0.44","10.71" +"Eikon Imago","2254-8718","2254-8718","ART","('ESCI',)","33","0.2","","0.44","86.30" +"Ge-Conservacion","1989-8568","1989-8568","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","97","0.2","","0.44","66.22" +"Journal of Quranic Studies","1465-3591","1755-1730","RELIGION","('AHCI',)","158","0.2","","0.44","11.11" +"Philosophical Inquiries","2281-8618","2282-0248","PHILOSOPHY","('ESCI',)","50","0.2","","0.44","0.00" +"POETICA-ZEITSCHRIFT FUR SPRACH-UND LITERATURWISSENSCHAFT","0303-4178","2589-0530","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","180","0.2","('N/A', 'N/A')","0.44","5.00" +"Taida Journal of Art History","1023-2095","","ART","('AHCI',)","14","0.2","","0.44","0.00" +"Textile-Cloth and Culture","1475-9756","1751-8350","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","183","0.2","","0.44","18.05" +"Zhurnal Frontirnykh Issledovanii-Journal of Frontier Studies","","2500-0225","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","31","0.2","","0.44","97.89" +"Fronteras de la Historia","2027-4688","2539-4711","HISTORY","('ESCI',)","103","0.2","Q2","0.43","100.00" +"Journal of Early American History","1877-0223","1877-0703","HISTORY","('ESCI',)","35","0.2","Q2","0.43","5.26" +"JOURNAL OF ECUMENICAL STUDIES","0022-0558","2162-3937","RELIGION","('AHCI',)","98","0.2","","0.43","0.00" +"Journal of Persianate Studies","1874-7094","1874-7167","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","91","0.2","","0.43","8.00" +"Magic Ritual and Witchcraft","1556-8547","1940-5111","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","58","0.2","","0.43","0.00" +"Nauchnyi Dialog","2225-756X","2227-1295","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","265","0.2","","0.43","95.66" +"Photography and Culture","1751-4517","1751-4525","ART","('AHCI',)","109","0.2","","0.43","24.56" +"RENAISSANCE AND REFORMATION","0034-429X","0034-429X","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","170","0.2","","0.43","60.94" +"REVIEW OF METAPHYSICS","0034-6632","2154-1302","PHILOSOPHY","('AHCI',)","571","0.2","","0.43","0.00" +"TRANSACTIONS OF THE CHARLES S PEIRCE SOCIETY","0009-1774","1558-9587","PHILOSOPHY","('AHCI',)","332","0.2","","0.43","0.00" +"ARTMargins","2162-2574","2162-2582","ART","('AHCI',)","41","0.2","","0.42","4.17" +"Co-herencia","1794-5887","2539-1208","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","74","0.2","","0.42","77.94" +"JOURNAL OF ARCHITECTURAL EDUCATION","1046-4883","1531-314X","ARCHITECTURE","('AHCI',)","328","0.2","","0.42","10.64" +"Journal of Modern Craft","1749-6772","1749-6780","ART","('AHCI',)","76","0.2","","0.42","15.91" +"METROPOLITAN MUSEUM JOURNAL","0077-8958","2169-3072","ART","('AHCI',)","88","0.2","","0.42","0.00" +"Quaestio Rossica","2311-911X","2313-6871","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","115","0.2","","0.42","99.64" +"DIALOGUE-CANADIAN PHILOSOPHICAL REVIEW","0012-2173","1759-0949","PHILOSOPHY","('AHCI',)","216","0.2","","0.41","41.41" +"Film History","0892-2160","1553-3905","FILM, RADIO, TELEVISION","('ESCI',)","307","0.2","","0.41","0.00" +"FONTES ARTIS MUSICAE","0015-6191","2471-156X","MUSIC","('AHCI',)","42","0.2","","0.41","0.00" +"Italian Culture","0161-4622","1559-0909","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","61","0.2","","0.41","8.33" +"Journal of Ancient Judaism","1869-3296","2196-7954","RELIGION","('ESCI',)","86","0.2","","0.41","5.77" +"Journal of Islamic Manuscripts","1878-4631","1878-464X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","56","0.2","","0.41","13.64" +"Manuscrito","0100-6045","2317-630X","PHILOSOPHY","('AHCI',)","73","0.2","","0.41","97.44" +"McGill Journal of Law and Health","1920-4825","1920-4825","LAW","('ESCI',)","36","0.2","Q4","0.41","0.00" +"Philosophy and Society-Filozofija i Drustvo","0353-5738","2334-8577","PHILOSOPHY","('ESCI',)","92","0.2","","0.41","96.21" +"Rossiiskaya Istoriya","0869-5687","","HISTORY","('AHCI',)","155","0.2","Q2","0.41","0.00" +"Rupkatha Journal on Interdisciplinary Studies in Humanities","0975-2935","0975-2935","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","196","0.2","","0.41","93.47" +"Studies in Peoples History","2348-4489","2349-7718","HISTORY","('ESCI',)","45","0.2","Q2","0.41","2.04" +"Vinculos de Historia","2254-6901","2254-6901","HISTORY","('ESCI',)","63","0.2","Q2","0.41","96.00" +"International Bulletin of Mission Research","2396-9393","2396-9407","RELIGION","('ESCI',)","193","0.2","","0.40","5.26" +"Revista Tefros","1669-726X","1667-9229","HISTORY","('ESCI',)","43","0.2","Q2","0.40","0.00" +"THEOLOGY TODAY","0040-5736","2044-2556","RELIGION","('AHCI',)","142","0.2","","0.40","4.30" +"WAR IN HISTORY","0968-3445","1477-0385","('HISTORY', 'INTERNATIONAL RELATIONS')","('AHCI, SSCI', 'SSCI')","216","0.2","('Q2', 'Q4')","0.40","18.89" +"Acta Poetica","0185-3082","2448-735X","('LITERARY THEORY & CRITICISM', 'LITERATURE')","('ESCI', 'ESCI')","54","0.2","('N/A', 'N/A')","0.39","95.12" +"CONFLUENCIA-REVISTA HISPANICA DE CULTURA Y LITERATURA","0888-6091","2328-6962","('LITERARY THEORY & CRITICISM', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","64","0.2","('N/A', 'N/A')","0.39","0.00" +"FILOZOFIA","0046-385X","2585-7061","PHILOSOPHY","('AHCI',)","101","0.2","","0.39","99.40" +"Journal of College of Sharia and Islamic Studies","2305-5545","2523-1715","RELIGION","('ESCI',)","15","0.2","","0.39","96.23" +"JOURNAL OF THE SOCIETY OF CHRISTIAN ETHICS","1540-7942","2326-2176","RELIGION","('AHCI',)","125","0.2","","0.39","0.00" +"Nova Prisutnost","1334-2312","1848-8676","RELIGION","('ESCI',)","44","0.2","","0.39","95.93" +"PSYCHE-ZEITSCHRIFT FUR PSYCHOANALYSE UND IHRE ANWENDUNGEN","0033-2623","","PSYCHOLOGY, PSYCHOANALYSIS","('SSCI',)","261","0.2","Q4","0.39","0.00" +"ABE Journal","2275-6639","2275-6639","ARCHITECTURE","('ESCI',)","47","0.2","","0.38","77.78" +"East European Jewish Affairs","1350-1674","1743-971X","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","63","0.2","('Q2', 'N/A')","0.38","5.71" +"Historia y Sociedad","0121-8417","2357-4720","HISTORY","('ESCI',)","79","0.2","Q2","0.38","98.51" +"Information and Communication Technology in Musical Field","2067-9408","2069-654X","MUSIC","('ESCI',)","19","0.2","","0.38","0.00" +"Journal Asiatique","0021-762X","1783-1504","ASIAN STUDIES","('AHCI',)","241","0.2","","0.38","0.00" +"Prometeica-Revista de Filosofia y Ciencias","1852-9488","1852-9488","PHILOSOPHY","('ESCI',)","17","0.2","","0.38","92.95" +"RENASCENCE-ESSAYS ON VALUES IN LITERATURE","0034-4346","2329-8626","LITERATURE","('AHCI',)","34","0.2","","0.38","0.00" +"Austrian Journal of Political Science","2313-5433","2313-5433","POLITICAL SCIENCE","('SSCI',)","27","0.2","Q4","0.37","13.33" +"BIBLICA","0006-0887","0006-0887","RELIGION","('AHCI',)","348","0.2","","0.37","0.00" +"Cosmos and History-The Journal of Natural and Social Philosophy","1832-9101","1832-9101","PHILOSOPHY","('ESCI',)","107","0.2","","0.37","0.00" +"Fabrications-The Journal of the Society of Architectural Historians Australia and New Zealand","1033-1867","2164-4756","ARCHITECTURE","('ESCI',)","93","0.2","","0.37","22.45" +"JOURNAL OF JEWISH THOUGHT & PHILOSOPHY","1053-699X","","PHILOSOPHY","('AHCI',)","88","0.2","","0.37","8.33" +"Revista de Historia da Sociedade e da Cultura","1645-2259","2183-8615","HISTORY","('AHCI',)","44","0.2","Q2","0.37","96.08" +"Safundi","1753-3171","1543-1304","AREA STUDIES","('ESCI',)","118","0.2","Q4","0.37","13.04" +"Acta Historica Tallinnensia","1406-2925","1736-7476","HISTORY","('AHCI',)","23","0.2","Q2","0.36","100.00" +"Exchange-Journal of Contemporary Christianities in Context","0166-2740","1572-543X","RELIGION","('AHCI',)","87","0.2","","0.36","26.19" +"French Studies Bulletin","0262-2750","1748-9180","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","13","0.2","","0.36","38.78" +"Inner Asia","1464-8172","2210-5018","AREA STUDIES","('ESCI',)","114","0.2","Q4","0.36","28.95" +"Ius Canonicum","0021-325X","2254-6219","LAW","('ESCI',)","129","0.2","Q4","0.36","95.83" +"Journal of Aesthetics and Phenomenology","2053-9320","2053-9339","PHILOSOPHY","('ESCI',)","19","0.2","","0.36","34.29" +"Journal of Portuguese Linguistics","1645-4537","2397-5563","LANGUAGE & LINGUISTICS","('ESCI',)","60","0.2","","0.36","80.00" +"Pennsylvania History-A Journal of Mid-Atlantic Studies","0031-4528","2153-2109","HISTORY","('ESCI',)","140","0.2","Q2","0.36","0.00" +"Anali Zavoda za Povijesne Znanosti Hrvatske Akademije Znanosti I Umjetnosti u Dubrovniku","1330-0598","1848-7815","HISTORY","('ESCI',)","55","0.2","Q2","0.35","96.55" +"International Journal of Buddhist Thought & Culture","1598-7914","1598-7914","RELIGION","('ESCI',)","42","0.2","","0.35","0.00" +"Journal of Science and Technology of the Arts","1646-9798","2183-0088","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","54","0.2","","0.35","0.00" +"Medieval Mystical Theology","2046-5726","2046-5734","RELIGION","('ESCI',)","15","0.2","","0.35","12.50" +"Religions of South Asia","1751-2689","1751-2697","RELIGION","('ESCI',)","45","0.2","","0.35","0.00" +"Acta Theologica","1015-8758","2309-9089","RELIGION","('AHCI',)","138","0.2","","0.34","83.92" +"Belleten","0041-4255","0041-4255","('ARCHAEOLOGY', 'HISTORY')","('AHCI', 'AHCI')","287","0.2","('N/A', 'Q2')","0.34","89.01" +"BIBLISCHE ZEITSCHRIFT","0006-2014","0006-2014","RELIGION","('AHCI',)","63","0.2","","0.34","11.36" +"CATHOLIC BIBLICAL QUARTERLY","0008-7912","2163-2529","RELIGION","('AHCI',)","715","0.2","","0.34","0.00" +"DEUTSCHE ZEITSCHRIFT FUR PHILOSOPHIE","0012-1045","2192-1482","PHILOSOPHY","('AHCI',)","174","0.2","","0.34","2.90" +"Dialog-A Journal of Theology","0012-2033","1540-6385","RELIGION","('AHCI',)","95","0.2","","0.34","20.37" +"Ethnologia Scandinavica","0348-9698","0348-9698","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","27","0.2","","0.34","0.00" +"European Journal of Comparative Law and Governance","2213-4506","2213-4514","LAW","('ESCI',)","35","0.2","Q4","0.34","18.37" +"European Legacy-Toward New Paradigms","1084-8770","1470-1316","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","187","0.2","","0.34","15.00" +"Gerion-Revista de Historia Antigua","0213-0181","1988-3080","HISTORY","('ESCI',)","177","0.2","Q2","0.34","82.35" +"JOURNAL OF CHINESE LINGUISTICS","0091-3723","0091-3723","('ASIAN STUDIES', 'LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'AHCI', 'SSCI')","255","0.2","('N/A', 'N/A', 'Q4')","0.34","0.00" +"Journal of Historical Sociolinguistics","2199-2894","2199-2908","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","44","0.2","('N/A', 'Q4')","0.34","19.23" +"Malaysian Journal of Music","2600-9366","2600-9331","MUSIC","('ESCI',)","12","0.2","","0.34","75.76" +"Nauka Televideniya-The Art and Science of Television","1994-9529","2587-9782","FILM, RADIO, TELEVISION","('ESCI',)","23","0.2","","0.34","92.00" +"NEUE ZEITSCHRIFT FUR SYSTEMATISCHE THEOLOGIE UND RELIGIONSPHILOSOPHIE","0028-3517","1612-9520","('PHILOSOPHY', 'RELIGION')","('AHCI', 'AHCI')","63","0.2","('N/A', 'N/A')","0.34","19.18" +"Topoi-Revista de Historia","2237-101X","2237-101X","HISTORY","('ESCI',)","85","0.2","Q2","0.34","93.64" +"Archiv fur Religionsgeschichte","1436-3038","1868-8888","RELIGION","('ESCI',)","92","0.2","","0.33","0.00" +"Brumal-Research Journal on the Fantastic","2014-7910","2014-7910","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","49","0.2","","0.33","98.51" +"BURLINGTON MAGAZINE","0007-6287","2044-9925","ART","('AHCI',)","576","0.2","","0.33","0.00" +"Edinburgh Law Review","1364-9809","1755-1692","LAW","('ESCI',)","92","0.2","Q4","0.33","0.00" +"GERMAN STUDIES REVIEW","0149-7952","2164-8646","('AREA STUDIES', 'HUMANITIES, MULTIDISCIPLINARY')","('SSCI', 'AHCI')","226","0.2","('Q4', 'N/A')","0.33","0.00" +"Jahrbuch Fur Wirtschaftsgeschichte","0075-2800","2196-6842","('ECONOMICS', 'HISTORY')","('ESCI', 'ESCI')","63","0.2","('Q4', 'Q2')","0.33","70.97" +"Journal of African Cinemas","1754-9221","1754-923X","FILM, RADIO, TELEVISION","('ESCI',)","40","0.2","","0.33","0.00" +"Journal of Moravian History","1933-6632","2161-6310","RELIGION","('ESCI',)","20","0.2","","0.33","0.00" +"JOURNAL OF POPULAR CULTURE","0022-3840","1540-5931","('CULTURAL STUDIES', 'HUMANITIES, MULTIDISCIPLINARY')","('AHCI, SSCI', 'AHCI')","623","0.2","('Q4', 'N/A')","0.33","9.68" +"Libri & Liberi","1848-3488","1848-5871","LITERATURE","('ESCI',)","18","0.2","","0.33","0.00" +"Linguistics and the Human Sciences","1742-2906","1743-1662","LANGUAGE & LINGUISTICS","('ESCI',)","45","0.2","","0.33","0.00" +"Seoul Journal of Korean Studies","1225-0201","2331-4826","AREA STUDIES","('ESCI',)","64","0.2","Q4","0.33","0.00" +"Think-Philosophy for Everyone","1477-1756","1755-1196","PHILOSOPHY","('ESCI',)","66","0.2","","0.33","20.24" +"Vestnik Sankt-Peterburgskogo Universiteta-Filosofiya i Konfliktologiya","2542-2278","2541-9382","PHILOSOPHY","('ESCI',)","54","0.2","","0.33","97.55" +"VOPROSY FILOSOFII","0042-8744","0042-8744","PHILOSOPHY","('AHCI',)","451","0.2","","0.33","0.00" +"African and Asian Studies","1569-2094","1569-2108","AREA STUDIES","('SSCI',)","156","0.2","Q4","0.32","4.26" +"AMERICAN MUSIC","0734-4392","1945-2349","MUSIC","('AHCI',)","174","0.2","","0.32","0.00" +"ART JOURNAL","0004-3249","2325-5307","ART","('AHCI',)","462","0.2","","0.32","0.00" +"HISTORIA MEXICANA","0185-0172","2448-6531","HISTORY","('AHCI',)","457","0.2","Q2","0.32","19.35" +"Journal of Banking and Finance Law and Practice","1034-3040","1034-3040","LAW","('ESCI',)","25","0.2","Q4","0.32","0.00" +"Journal of Historical Research in Music Education","1536-6006","2328-2525","MUSIC","('ESCI',)","40","0.2","","0.32","8.82" +"Romani Studies","1528-0748","1757-2274","('ANTHROPOLOGY', 'HUMANITIES, MULTIDISCIPLINARY')","('SSCI', 'AHCI')","58","0.2","('Q4', 'N/A')","0.32","36.67" +"Studia Warminskie","0137-6624","0137-6624","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","24","0.2","","0.32","96.43" +"Age of Human Rights Journal","2340-9592","2340-9592","LAW","('ESCI',)","43","0.2","Q4","0.31","91.84" +"Anales de Historia del Arte","0214-6452","1988-2491","ART","('ESCI',)","101","0.2","","0.31","100.00" +"Anales del Seminario de Historia de la Filosofia","0211-2337","1988-2564","PHILOSOPHY","('AHCI',)","83","0.2","","0.31","92.75" +"Arenal-Revista de Historia de las Mujeres","1134-6396","1134-6396","HISTORY","('ESCI',)","162","0.2","Q2","0.31","95.52" +"BRICS Law Journal","2409-9058","2412-2343","LAW","('ESCI',)","45","0.2","Q4","0.31","98.77" +"Eminak","1998-4634","2708-0226","('ARCHAEOLOGY', 'HISTORY', 'HISTORY & PHILOSOPHY OF SCIENCE')","('ESCI', 'ESCI', 'ESCI')","75","0.2","('N/A', 'Q2', 'Q4')","0.31","90.32" +"EXPOSITORY TIMES","0014-5246","1745-5308","RELIGION","('AHCI',)","159","0.2","","0.31","9.80" +"Gothic Studies","1362-7937","2050-456X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","117","0.2","","0.31","0.00" +"Language and Linguistics","1606-822X","2309-5067","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","306","0.2","('N/A', 'Q4')","0.31","87.69" +"Phenomenology & Practice","1913-4711","1913-4711","PHILOSOPHY","('ESCI',)","198","0.2","","0.31","0.00" +"Textus","0082-3767","2589-255X","RELIGION","('ESCI',)","5","0.2","","0.31","8.11" +"WORD & IMAGE","0266-6286","1943-2178","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","250","0.2","","0.31","11.36" +"Architectural Theory Review","1326-4826","1755-0475","ARCHITECTURE","('AHCI',)","149","0.2","","0.30","31.17" +"Atenea","0718-0462","0718-0462","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","97","0.2","","0.30","0.00" +"Early Modern French Studies","2056-3035","2056-3043","('HISTORY', 'HUMANITIES, MULTIDISCIPLINARY')","('AHCI', 'AHCI')","16","0.2","('Q2', 'N/A')","0.30","31.91" +"Images","1871-7993","1871-8000","ART","('ESCI',)","36","0.2","","0.30","5.00" +"Jordan Journal of Modern Languages & Literature","1994-6953","2304-8069","LANGUAGE & LINGUISTICS","('ESCI',)","44","0.2","","0.30","0.00" +"Journal of Migration History","2351-9916","2351-9924","('HISTORY', 'HUMANITIES, MULTIDISCIPLINARY', 'SOCIAL ISSUES')","('ESCI', 'ESCI', 'ESCI')","53","0.2","('Q2', 'N/A', 'Q4')","0.30","22.00" +"Megaron","1309-6915","1309-6915","ARCHITECTURE","('ESCI',)","146","0.2","","0.30","64.62" +"Note di Matematica","1123-2536","1590-0932","MATHEMATICS","('ESCI',)","190","0.2","Q4","0.30","0.00" +"Res Rhetorica","2392-3113","2392-3113","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","25","0.2","","0.30","94.68" +"Scando-Slavica","0080-6765","1600-082X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","44","0.2","","0.30","21.57" +"Sibirica-Interdisciplinary journal of Siberian Studies","1361-7362","1476-6787","AREA STUDIES","('ESCI',)","60","0.2","Q4","0.30","93.02" +"Stellenbosch Theological Journal","2413-9459","2413-9467","RELIGION","('ESCI',)","105","0.2","","0.30","94.94" +"Trashumante-Revista Americana de Historia Social","2322-9381","2322-9675","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","36","0.2","","0.30","81.25" +"Urbanities-Journal of Urban Ethnography","2239-5725","2239-5725","ANTHROPOLOGY","('ESCI',)","60","0.2","Q4","0.30","0.00" +"Versus-Quaderni di Studi Semiotici","0393-8255","0393-8255","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","61","0.2","","0.30","0.00" +"Voprosy Onomastiki-Problems of Onomastics","1994-2400","1994-2451","LANGUAGE & LINGUISTICS","('ESCI',)","83","0.2","","0.30","99.14" +"Acta Koreana","1520-7412","","ASIAN STUDIES","('AHCI',)","79","0.2","","0.29","32.43" +"Aleph-Historical Studies in Science & Judaism","1565-1525","1565-5423","('HISTORY & PHILOSOPHY OF SCIENCE', 'RELIGION')","('AHCI', 'AHCI')","75","0.2","('Q4', 'N/A')","0.29","0.00" +"Archeologicke Rozhledy","0323-1267","","ARCHAEOLOGY","('AHCI',)","213","0.2","","0.29","80.85" +"arq-Architectural Research Quarterly","1359-1355","1474-0516","ARCHITECTURE","('AHCI',)","148","0.2","","0.29","54.24" +"Asia-Pacific Journal-Japan Focus","1557-4660","1557-4660","AREA STUDIES","('ESCI',)","315","0.2","Q4","0.29","0.48" +"BULLETIN OF THE INSTITUTE OF CLASSICAL STUDIES","0076-0730","2041-5370","CLASSICS","('AHCI',)","247","0.2","","0.29","22.50" +"Christian Education Journal","0739-8913","2378-525X","('EDUCATION & EDUCATIONAL RESEARCH', 'RELIGION')","('ESCI', 'ESCI')","65","0.2","('Q4', 'N/A')","0.29","5.00" +"Communication Law and Policy","1081-1680","1532-6926","LAW","('ESCI',)","91","0.2","Q4","0.29","6.45" +"HEGEL-STUDIEN","0073-1587","","PHILOSOPHY","('AHCI',)","78","0.2","","0.29","0.00" +"Journal of World Popular Music","2052-4900","2052-4919","MUSIC","('ESCI',)","26","0.2","","0.29","0.00" +"Pravoprimenenie-Law Enforcement Review","2542-1514","2658-4050","LAW","('ESCI',)","57","0.2","Q4","0.29","78.87" +"Trusts & Trustees","1363-1780","1752-2110","LAW","('ESCI',)","130","0.2","Q4","0.29","9.89" +"Vestnik Drevnei Istorii-Journal of Ancient History","0321-0391","0321-0391","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","45","0.2","","0.29","0.00" +"Archaeological Reports-London","0570-6084","2041-4102","ARCHAEOLOGY","('AHCI',)","34","0.2","","0.28","34.78" +"Bulletin of Medieval Canon Law-New Series","0146-2989","2372-2509","RELIGION","('ESCI',)","8","0.2","","0.28","0.00" +"Dix-Neuf","1478-7318","1478-7318","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","38","0.2","","0.28","35.59" +"IIUM Law Journal","0128-2530","2289-7852","LAW","('ESCI',)","82","0.2","Q4","0.28","0.00" +"Kierkegaard Studies Yearbook","1430-5372","1612-9792","('PHILOSOPHY', 'RELIGION')","('ESCI', 'ESCI')","71","0.2","('N/A', 'N/A')","0.28","3.33" +"Legal Information Management","1472-6696","1741-2021","LAW","('ESCI',)","82","0.2","Q4","0.28","4.05" +"Osterreichisches Religionspadagogisches Forum","1018-1539","1018-1539","RELIGION","('ESCI',)","24","0.2","","0.28","0.00" +"TIJDSCHRIFT VOOR GESCHIEDENIS","0040-7518","0040-7518","HISTORY","('AHCI',)","80","0.2","Q2","0.28","75.86" +"European Review of Private Law","0928-9801","1875-8371","LAW","('ESCI',)","144","0.2","Q4","0.27","0.00" +"GYMNASIUM","0342-5231","2567-6555","CLASSICS","('AHCI',)","111","0.2","","0.27","0.00" +"Interiors-Design Architecture Culture","2041-9112","2041-9120","ARCHITECTURE","('AHCI',)","45","0.2","","0.27","13.33" +"International Review of Scottish Studies","0703-1580","1923-5763","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","16","0.2","","0.27","30.77" +"Medicine Law & Society","2463-7955","2463-7955","LAW","('ESCI',)","23","0.2","Q4","0.27","45.61" +"Miscelanea de Estudios Arabes y Hebraicos-Seccion Arabe-Islam","1696-5868","2341-0906","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","26","0.2","","0.27","93.33" +"Missiology-An International Review","0091-8296","2051-3623","RELIGION","('ESCI',)","140","0.2","","0.27","2.53" +"Problemos","1392-1126","2424-6158","PHILOSOPHY","('AHCI',)","54","0.2","","0.27","98.81" +"Revista 180","0718-2309","0718-2309","ARCHITECTURE","('AHCI',)","39","0.2","","0.27","50.00" +"Rivista Internazionale di Filosofia e Psicologia","2039-4667","2239-2629","('PHILOSOPHY', 'PSYCHOLOGY, MULTIDISCIPLINARY')","('ESCI', 'ESCI')","56","0.2","('N/A', 'Q4')","0.27","0.00" +"Tempo-Niteroi","1413-7704","","HISTORY","('AHCI',)","92","0.2","Q2","0.27","88.60" +"Anadolu Arastirmalari-Anatolian Research","0569-9746","2667-629X","('ARCHAEOLOGY', 'HISTORY')","('ESCI', 'ESCI')","9","0.2","('N/A', 'Q2')","0.26","30.00" +"Brills Annual of Afroasiatic Languages and Linguistics","1876-6633","1877-6930","LANGUAGE & LINGUISTICS","('ESCI',)","53","0.2","","0.26","18.92" +"Cultura de los Cuidados","1138-1728","1699-6003","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","144","0.2","","0.26","83.84" +"Diaspora Studies","0973-9572","0976-3457","DEMOGRAPHY","('ESCI',)","101","0.2","Q4","0.26","10.81" +"Dinbilimleri Akademik Arastirma Dergisi-Journal of Academic Research in Religious Sciences","1303-9199","1303-9199","RELIGION","('ESCI',)","60","0.2","","0.26","0.00" +"Hispania Nova","1138-7319","1138-7319","HISTORY","('ESCI',)","81","0.2","Q2","0.26","95.70" +"International Journal for the History of Engineering & Technology","1758-1206","1758-1214","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","33","0.2","Q4","0.26","4.17" +"JOURNAL OF DHARMA","0253-7222","","RELIGION","('AHCI',)","28","0.2","","0.26","0.00" +"Law Text Culture","1322-9060","2200-7121","CULTURAL STUDIES","('ESCI',)","103","0.2","Q4","0.26","0.00" +"Lingua Italiana","1724-9074","1826-8080","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'LITERATURE')","('ESCI', 'ESCI', 'ESCI')","9","0.2","('N/A', 'Q4', 'N/A')","0.26","0.00" +"Metaphysica-International Journal for Ontology & Metaphysics","1437-2053","1874-6373","PHILOSOPHY","('ESCI',)","95","0.2","","0.26","16.92" +"Moscow University Mathematics Bulletin","0027-1322","1934-8444","MATHEMATICS","('ESCI',)","136","0.2","Q4","0.26","0.00" +"Revista de Historiografia","1885-2718","2445-0057","HISTORY","('ESCI',)","66","0.2","Q2","0.26","100.00" +"Revista Direito GV","1808-2432","2317-6172","LAW","('ESCI',)","143","0.2","Q4","0.26","94.87" +"REVUE DE L HISTOIRE DES RELIGIONS","0035-1423","2105-2573","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","202","0.2","('Q2', 'N/A')","0.26","0.00" +"Uniform Law Review","1124-3694","2050-9065","LAW","('ESCI',)","56","0.2","Q4","0.26","15.28" +"Annales Instituti Archaeologici","1845-4046","1848-6363","ARCHAEOLOGY","('ESCI',)","30","0.2","","0.25","0.00" +"Anuario Colombiano de Historia Social y de la Cultura","0120-2456","2256-5647","HISTORY","('ESCI',)","155","0.2","Q2","0.25","100.00" +"Espacio Tiempo y Forma-Serie III-Historia Medieval","0214-9745","2340-1362","HISTORY","('ESCI',)","57","0.2","Q2","0.25","83.72" +"Jebat-Malaysian Journal of History Politics and Strategic Studies","0126-5644","2180-0251","HISTORY","('ESCI',)","55","0.2","Q2","0.25","31.82" +"Journal of Spanish Cultural Studies","1463-6204","1469-9818","CULTURAL STUDIES","('AHCI', 'SSCI')","153","0.2","Q4","0.25","8.54" +"Kant Yearbook","1868-4599","1868-4602","PHILOSOPHY","('ESCI',)","33","0.2","","0.25","10.53" +"Muzikologija-Musicology","1450-9814","2406-0976","MUSIC","('ESCI',)","34","0.2","","0.25","96.61" +"New Blackfriars","0028-4289","1741-2005","RELIGION","('ESCI',)","251","0.2","","0.25","20.49" +"Reports on Mathematical Logic","0137-2904","0137-2904","('LOGIC', 'MATHEMATICS')","('SCIE', 'SCIE')","75","0.2","('Q4', 'Q4')","0.25","50.00" +"Rijksmuseum Bulletin","1877-8127","","ART","('AHCI',)","23","0.2","","0.25","2.04" +"RIVISTA STORICA ITALIANA","0035-7073","","HISTORY","('AHCI',)","169","0.2","Q2","0.25","0.00" +"Rossiiskaya Arkheologiya","0869-6063","0869-6063","ARCHAEOLOGY","('AHCI',)","180","0.2","","0.25","0.00" +"Rutgers University Law Review","2374-3859","2374-3859","LAW","('SSCI',)","70","0.2","Q4","0.25","0.00" +"Social Sciences and Missions-Sciences Sociales et Missions","1874-8937","1874-8945","RELIGION","('ESCI',)","43","0.2","","0.25","5.13" +"THOMIST","0040-6325","","('PHILOSOPHY', 'RELIGION')","('AHCI', 'AHCI')","219","0.2","('N/A', 'N/A')","0.25","0.00" +"ARS Orientalis","0571-1371","","('ART', 'ASIAN STUDIES')","('AHCI', 'AHCI')","151","0.2","('N/A', 'N/A')","0.24","0.00" +"Chronica Nova","0210-9611","2445-1908","HISTORY","('ESCI',)","133","0.2","Q2","0.24","0.00" +"Cumhuriyet Ilahiyat Dergisi-Cumhuriyet Theology Journal","2528-9861","2528-987X","RELIGION","('ESCI',)","61","0.2","","0.24","98.39" +"Moving Image","1532-3978","1542-4235","FILM, RADIO, TELEVISION","('AHCI',)","62","0.2","","0.24","0.00" +"Sendebar-Revista de Traduccion e Interpretacion","1130-5509","2340-2415","LANGUAGE & LINGUISTICS","('ESCI',)","59","0.2","","0.24","92.86" +"TPM-The Philosophers Magazine","1354-814X","2048-4674","PHILOSOPHY","('ESCI',)","44","0.2","","0.24","1.75" +"Vestnik Volgogradskogo Gosudarstvennogo Universiteta-Seriya 2-Yazykoznanie","1998-9911","2409-1979","LANGUAGE & LINGUISTICS","('ESCI',)","111","0.2","","0.24","97.98" +"Victorian Review-An Interdisciplinary Journal of Victorian Studies","0848-1512","1923-3280","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","53","0.2","","0.24","0.00" +"ZEITSCHRIFT FUR THEOLOGIE UND KIRCHE","0044-3549","1868-7377","RELIGION","('AHCI',)","127","0.2","","0.24","0.00" +"A&C-Revista de Direito Administrativo & Constitucional","1516-3210","1984-4182","LAW","('ESCI',)","72","0.2","Q4","0.23","95.50" +"Angermion-Yearbook for Anglo-German Literary Criticism Intellectual History and Cultural Transfers-Jahrbuch fuer Britisch-Deutsche Kulturbeziehungen","1438-2091","1868-9426","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","7","0.2","","0.23","8.70" +"CULTURAL CRITIQUE","0882-4371","1460-2458","CULTURAL STUDIES","('AHCI', 'SSCI')","725","0.2","Q4","0.23","0.00" +"ECONOMIC AND SOCIAL REVIEW","0012-9984","0012-9984","('ECONOMICS', 'SOCIOLOGY')","('SSCI', 'SSCI')","335","0.2","('Q4', 'Q4')","0.23","0.00" +"Egyptian Journal of Archaeological and Restoration Studies","2090-4932","2090-4940","ARCHAEOLOGY","('ESCI',)","74","0.2","","0.23","0.00" +"Interdisciplinaria Archaeologica-Natural Sciences in Archaeology","1804-848X","2336-1220","('ANTHROPOLOGY', 'ARCHAEOLOGY', 'GEOSCIENCES, MULTIDISCIPLINARY', 'HISTORY')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","40","0.2","('Q4', 'N/A', 'Q4', 'Q2')","0.23","96.15" +"International Journal of Media & Cultural Politics","1740-8296","2040-0918","COMMUNICATION","('ESCI',)","176","0.2","Q4","0.23","0.00" +"Journal of Asia-Pacific Pop Culture","2380-7679","2380-7687","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","17","0.2","","0.23","0.00" +"Journal of Educational Sciences & Psychology","2247-6377","2247-8558","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","98","0.2","Q4","0.23","81.82" +"Journal of Psychosocial Studies","1478-6737","1478-6737","('PSYCHOLOGY, MULTIDISCIPLINARY', 'SOCIAL SCIENCES, INTERDISCIPLINARY')","('ESCI', 'ESCI')","42","0.2","('Q4', 'Q4')","0.23","12.50" +"Journal of the Korean Society of Mathematical Education Series B-Pure and Applied Mathematics","1226-0657","2287-6081","MATHEMATICS","('ESCI',)","73","0.2","Q4","0.23","0.00" +"MOUVEMENT SOCIAL","0027-2671","1961-8646","HISTORY","('AHCI', 'SSCI')","249","0.2","Q2","0.23","0.00" +"Osmanli Arastirmalari-The Journal of Ottoman Studies","0255-0636","0255-0636","('ASIAN STUDIES', 'HISTORY')","('AHCI', 'AHCI')","156","0.2","('N/A', 'Q2')","0.23","0.00" +"Philobiblon-Transylvanian Journal of Multidisciplinary Research in Humanities","1224-7448","2247-8442","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","35","0.2","","0.23","40.32" +"Sanat Tarihi Dergisi-Journal of Art History","1300-5707","2636-8064","ART","('ESCI',)","64","0.2","","0.23","97.73" +"Vestnik Tomskogo Gosudarstvennogo Universiteta Filologiya-Tomsk State University Journal of Philology","1998-6645","2310-5046","LANGUAGE & LINGUISTICS","('ESCI',)","120","0.2","","0.23","10.51" +"ARQ","0717-6996","0717-6996","ARCHITECTURE","('AHCI',)","80","0.2","","0.22","0.91" +"British Journal of Canadian Studies","0269-9222","1757-8078","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","38","0.2","","0.22","0.00" +"COLUMBIA JOURNAL OF LAW AND SOCIAL PROBLEMS","0010-1923","0010-1923","('LAW', 'SOCIAL ISSUES')","('SSCI', 'SSCI')","101","0.2","('Q4', 'Q4')","0.22","0.00" +"Croatian Journal of Philosophy","1333-1108","1847-6139","PHILOSOPHY","('AHCI',)","107","0.2","","0.22","10.71" +"Espacio Tiempo y Forma Serie VII-Historia del Arte","1130-4715","2340-1478","ART","('ESCI',)","107","0.2","","0.22","40.91" +"Estudios de Traduccion","2174-047X","2254-1756","LANGUAGE & LINGUISTICS","('ESCI',)","28","0.2","","0.22","92.45" +"History of science and technology","2415-7422","2415-7430","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","20","0.2","Q4","0.22","96.72" +"Iberian Journal of the History of Economic Thought","2386-5768","2386-5768","('ECONOMICS', 'HISTORY', 'HISTORY OF SOCIAL SCIENCES')","('ESCI', 'ESCI', 'ESCI')","12","0.2","('Q4', 'Q2', 'Q4')","0.22","94.59" +"Journal of Pentecostal Theology","0966-7369","1745-5251","RELIGION","('ESCI',)","58","0.2","","0.22","3.70" +"Latin American Journal of Content & Language Integrated-LACLIL","2011-6721","2322-9721","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","134","0.2","Q4","0.22","100.00" +"MUSIKTHEORIE","0177-4182","","MUSIC","('AHCI',)","41","0.2","","0.22","0.00" +"Muzikoloski Zbornik","0580-373X","2350-4242","MUSIC","('AHCI',)","41","0.2","","0.22","100.00" +"Vox Patrum","0860-9411","2719-3586","('HISTORY', 'HUMANITIES, MULTIDISCIPLINARY', 'PHILOSOPHY', 'RELIGION')","('ESCI', 'ESCI', 'ESCI', 'ESCI')","80","0.2","('Q2', 'N/A', 'N/A', 'N/A')","0.22","90.20" +"ZEITSCHRIFT FUR SLAWISTIK","0044-3506","","LANGUAGE & LINGUISTICS","('AHCI',)","68","0.2","","0.22","21.62" +"America sin Nombre","1577-3442","1989-9831","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","35","0.2","","0.21","98.28" +"Civil Justice Quarterly","0261-9261","","LAW","('ESCI',)","68","0.2","Q4","0.21","0.00" +"Historical Records of Australian Science","0727-3061","1448-5508","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE')","78","0.2","Q4","0.21","63.64" +"International Productivity Monitor","1492-9759","1492-9767","ECONOMICS","('ESCI',)","162","0.2","Q4","0.21","0.00" +"Isegoria","1130-2097","1988-8376","PHILOSOPHY","('AHCI',)","152","0.2","","0.21","96.69" +"Mediterranean Studies","1074-164X","2161-4741","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","47","0.2","","0.21","0.00" +"Revista de Llengua i Dret-Journal of Language and Law","0212-5056","2013-1453","LAW","('ESCI',)","94","0.2","Q4","0.21","15.70" +"UNIVERSITY OF PITTSBURGH LAW REVIEW","0041-9915","1942-8405","LAW","('SSCI',)","185","0.2","Q4","0.21","100.00" +"Welt des Orients","0043-2547","2196-9019","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","118","0.2","","0.21","6.45" +"ZEITSCHRIFT FUR GESCHICHTSWISSENSCHAFT","0044-2828","","HISTORY","('AHCI',)","130","0.2","Q2","0.21","0.00" +"Africana Linguistica","2033-8732","2034-8436","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","45","0.2","('N/A', 'Q4')","0.20","0.00" +"Araucaria-Revista Iberoamericana de Filosofia Politica y Humanidades","1575-6823","2340-2199","PHILOSOPHY","('ESCI',)","136","0.2","","0.20","88.60" +"Bulletin de la Societe Prehistorique Francaise","0249-7638","1760-7361","ARCHAEOLOGY","('ESCI',)","461","0.2","","0.20","0.00" +"Canadian Journal of Program Evaluation","0834-1516","0834-1516","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","426","0.2","Q4","0.20","0.00" +"CATHOLIC UNIVERSITY LAW REVIEW","0008-8390","0008-8390","LAW","('SSCI',)","182","0.2","Q4","0.20","0.00" +"HOUSTON JOURNAL OF MATHEMATICS","0362-1588","","MATHEMATICS","('SCIE',)","824","0.2","Q4","0.20","0.00" +"Ilahiyat Studies-A Journal on Islamic and Religious Studies","1309-1786","1309-1719","RELIGION","('ESCI',)","11","0.2","","0.20","21.43" +"Journal of East Asia and International Law","1976-9229","1976-9229","LAW","('ESCI',)","59","0.2","Q4","0.20","98.21" +"Journal of Geography-Chigaku Zasshi","0022-135X","1884-0884","GEOGRAPHY, PHYSICAL","('ESCI',)","298","0.2","Q4","0.20","99.13" +"Journal of Jewish Education","1524-4113","1554-611X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","133","0.2","Q4","0.20","8.16" +"Journal of Northwest Semitic Languages","0259-0131","0259-0131","LANGUAGE & LINGUISTICS","('ESCI',)","33","0.2","","0.20","3.45" +"Methods of Functional Analysis and Topology","1029-3531","1029-3531","MATHEMATICS","('ESCI',)","126","0.2","Q4","0.20","96.88" +"Narrative Culture","2169-0235","2169-0251","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","52","0.2","","0.20","0.00" +"NTM","0036-6978","1420-9144","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI',)","110","0.2","Q4","0.20","91.11" +"NTUT Journal of Intellectual Property Law and Management","2226-6771","2226-6771","LAW","('ESCI',)","6","0.2","Q4","0.20","0.00" +"Res Mobilis-International Research Journal of Furniture and Decorative Objects","2255-2057","2255-2057","ART","('ESCI',)","36","0.2","","0.20","1.00" +"Stratum Plus","1608-9057","1857-3533","ARCHAEOLOGY","('ESCI',)","271","0.2","","0.20","0.00" +"Zeitschrift der Gesellschaft fur Musiktheorie","1862-6750","1862-6742","MUSIC","('ESCI',)","35","0.2","","0.20","55.26" +"Avant","2082-7598","2082-6710","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","85","0.2","","0.19","89.71" +"Buildings & Landscapes-Journal of the Vernacular Architecture Forum","1936-0886","1934-6832","ARCHITECTURE","('AHCI',)","39","0.2","","0.19","0.00" +"Church History and Religious Culture","1871-241X","1871-2428","RELIGION","('ESCI',)","82","0.2","","0.19","23.21" +"CORNELL INTERNATIONAL LAW JOURNAL","0010-8812","1930-7977","('INTERNATIONAL RELATIONS', 'LAW')","('SSCI', 'SSCI')","378","0.2","('Q4', 'Q4')","0.19","0.00" +"Edgar Allan Poe Review","2150-0428","2166-2932","LITERATURE, AMERICAN","('ESCI',)","28","0.2","","0.19","0.00" +"HISTORIOGRAPHIA LINGUISTICA","0302-5160","1569-9781","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","92","0.2","('N/A', 'Q4')","0.19","13.79" +"Journal of Education Finance","0098-9495","1944-6470","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","154","0.2","Q4","0.19","0.00" +"Journal of Nonprofit Education and Leadership","2374-7838","2157-0604","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","95","0.2","Q4","0.19","0.00" +"JOURNAL OF THE KANSAS ENTOMOLOGICAL SOCIETY","0022-8567","1937-2353","ENTOMOLOGY","('SCIE',)","1,337","0.2","Q4","0.19","0.00" +"Review of European and Comparative Law","","2545-384X","LAW","('ESCI',)","36","0.2","Q4","0.19","97.18" +"Revista de Estudos da Linguagem","0104-0588","2237-2083","LANGUAGE & LINGUISTICS","('ESCI',)","91","0.2","","0.19","54.84" +"Studi e Saggi Linguistici","0085-6827","","LINGUISTICS","('ESCI',)","44","0.2","Q4","0.19","0.00" +"Studijne Zvesti Archeologickeho Ustavu Slovenskej Akademie Vied","0560-2793","0560-2793","ARCHAEOLOGY","('ESCI',)","90","0.2","","0.19","100.00" +"Suvremena Lingvistika","0586-0296","1847-117X","LANGUAGE & LINGUISTICS","('ESCI',)","45","0.2","","0.19","100.00" +"Ars Adriatica","1848-1590","1848-7459","ART","('ESCI',)","31","0.2","","0.18","91.18" +"Bratislava Law Review","2585-7088","2644-6359","LAW","('ESCI',)","19","0.2","Q4","0.18","98.21" +"Canadian Journal of Family and Youth","","1718-9748","FAMILY STUDIES","('ESCI',)","99","0.2","Q4","0.18","1.74" +"Canadian Society of Forensic Science Journal","0008-5030","2332-1660","MEDICINE, LEGAL","('ESCI',)","190","0.2","Q4","0.18","6.25" +"Communications in Mathematics and Applications","0976-5905","0975-8607","MATHEMATICS","('ESCI',)","133","0.2","Q4","0.18","76.92" +"Contagion-Journal of Violence Mimesis and Culture","1075-7201","1930-1200","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","62","0.2","","0.18","0.00" +"Cuadernos de Literatura","0122-8102","2346-1691","LITERATURE","('ESCI',)","63","0.2","","0.18","97.67" +"Enrahonar-Quaderns de Filosofia","0211-402X","2014-881X","PHILOSOPHY","('ESCI',)","53","0.2","","0.18","100.00" +"Fotocinema-Revista Cientifica de Cine y Fotografia","2172-0150","2172-0150","('ART', 'FILM, RADIO, TELEVISION')","('ESCI', 'ESCI')","39","0.2","('N/A', 'N/A')","0.18","29.73" +"Ijaz Arabi Journal of Arabic Learning","2620-5912","2620-5947","('EDUCATION & EDUCATIONAL RESEARCH', 'LINGUISTICS')","('ESCI', 'ESCI')","25","0.2","('Q4', 'Q4')","0.18","86.19" +"INTERNATIONAL JOURNAL OF AMERICAN LINGUISTICS","0020-7071","1545-7001","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","470","0.2","('N/A', 'Q4')","0.18","0.00" +"LOGOS-A JOURNAL OF CATHOLIC THOUGHT AND CULTURE","1091-6687","1533-791X","RELIGION","('AHCI',)","65","0.2","","0.18","0.00" +"Revista Portuguesa de Historia","0870-4147","2183-3796","HISTORY","('ESCI',)","70","0.2","Q2","0.18","94.74" +"TD-The Journal for Transdisciplinary Research in Southern Africa","1817-4434","2415-2005","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","155","0.2","Q4","0.18","98.59" +"Anuari de Filologia-Estudis de Linguistica","2014-1408","2014-1408","LANGUAGE & LINGUISTICS","('ESCI',)","25","0.2","","0.17","97.37" +"Aportes-Revista de Historia Contemporanea","0213-5868","2386-4850","HISTORY","('ESCI',)","59","0.2","Q2","0.17","0.00" +"Commentationes Mathematicae Universitatis Carolinae","0010-2628","1213-7243","MATHEMATICS","('ESCI',)","331","0.2","Q4","0.17","0.00" +"Hispanic Research Journal-Iberian and Latin American Studies","1468-2737","1745-820X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","92","0.2","","0.17","14.04" +"International Journal of Cyber Warfare and Terrorism","1947-3435","1947-3443","POLITICAL SCIENCE","('ESCI',)","44","0.2","Q4","0.17","4.65" +"International Journal of Mobile Human Computer Interaction","1942-390X","1942-3918","COMPUTER SCIENCE, CYBERNETICS","('ESCI',)","111","0.2","Q4","0.17","25.00" +"Italian Journal of Pure and Applied Mathematics","1126-8042","2239-0227","MATHEMATICS","('ESCI',)","443","0.2","Q4","0.17","0.00" +"Jezikoslovlje","1331-7202","1848-9001","LANGUAGE & LINGUISTICS","('ESCI',)","74","0.2","","0.17","94.59" +"Journal of Education and Future-Egitim ve Gelecek Dergisi","2146-8249","2146-8249","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","60","0.2","Q4","0.17","97.30" +"Junctures-The Journal for Thematic Dialogue","1176-5119","1179-8912","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","95","0.2","","0.17","100.00" +"Memoria y Civilizacion-Anuario de Historia","1139-0107","2254-6367","HISTORY","('ESCI',)","65","0.2","Q2","0.17","100.00" +"NOWELE-North-Western European Language Evolution","0108-8416","2212-9715","LANGUAGE & LINGUISTICS","('ESCI',)","42","0.2","","0.17","3.70" +"REVUE ROUMAINE DE MATHEMATIQUES PURES ET APPLIQUEES","0035-3965","2343-774X","MATHEMATICS","('ESCI',)","364","0.2","Q4","0.17","0.00" +"Topicos-Revista de Filosofia","0188-6649","2007-8498","PHILOSOPHY","('ESCI',)","58","0.2","","0.17","100.00" +"Tydskrif Vir Die Suid-Afrikaanse Reg","0257-7747","1996-2207","LAW","('ESCI',)","67","0.2","Q4","0.17","0.00" +"UNIVERSITY OF CINCINNATI LAW REVIEW","0009-6881","1942-8391","LAW","('SSCI',)","361","0.2","Q4","0.17","0.00" +"VIE ET MILIEU-LIFE AND ENVIRONMENT","0240-8759","","('ECOLOGY', 'MARINE & FRESHWATER BIOLOGY')","('SCIE', 'SCIE')","550","0.2","('Q4', 'Q4')","0.17","0.00" +"Al-Arabiyya-Journal of the American Association of Teachers of Arabic","0889-8731","2375-4036","LANGUAGE & LINGUISTICS","('ESCI',)","42","0.2","","0.16","0.00" +"Arte y Politicas de Identidad","1889-979X","1989-8452","ART","('ESCI',)","37","0.2","","0.16","34.43" +"Bulletin of the South Ural State University Series-Mathematical Modelling Programming & Computer Software","2071-0216","2308-0256","MATHEMATICS, APPLIED","('ESCI',)","153","0.2","Q4","0.16","100.00" +"Downside Review","0012-5806","2397-3498","RELIGION","('ESCI',)","67","0.2","","0.16","20.83" +"Hacettepe Universitesi Egitim Fakultesi Dergisi-Hacettepe University Journal of Education","2536-4758","2536-4758","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","577","0.2","Q4","0.16","96.84" +"Hybris-Revista de Filosofia","","0718-8382","PHILOSOPHY","('ESCI',)","24","0.2","","0.16","0.00" +"Illes i Imperis","1575-0698","2385-4219","HISTORY","('ESCI',)","52","0.2","Q2","0.16","64.71" +"International Journal of e-Collaboration","1548-3673","1548-3681","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","1,273","0.2","Q4","0.16","35.95" +"Involve, a journal of mathematics","1944-4176","1944-4184","MATHEMATICS","('ESCI',)","141","0.2","Q4","0.16","0.00" +"Mathematical Reports","1582-3067","1582-3067","MATHEMATICS","('SCIE',)","207","0.2","Q4","0.16","0.00" +"Otolaryngology Case Reports","2468-5488","2468-5488","OTORHINOLARYNGOLOGY","('ESCI',)","105","0.2","Q4","0.16","91.28" +"PENSAMIENTO","0031-4749","2386-5822","PHILOSOPHY","('AHCI',)","137","0.2","","0.16","99.55" +"Pravni Vjesnik","0352-5317","1849-0840","LAW","('ESCI',)","43","0.2","Q4","0.16","98.51" +"Quaderns-Revista de Traduccio","1138-5790","2014-9735","LANGUAGE & LINGUISTICS","('ESCI',)","91","0.2","","0.16","60.00" +"REVIEWS IN AMERICAN HISTORY","0048-7511","1080-6628","HISTORY","('AHCI',)","143","0.2","Q2","0.16","0.00" +"SAECULUM","0080-5319","2194-4075","HISTORY","('AHCI',)","80","0.2","Q2","0.16","0.00" +"Sibirskii Filologicheskii Zhurnal","1813-7083","1813-7083","LANGUAGE & LINGUISTICS","('ESCI',)","123","0.2","","0.16","0.00" +"Southeast Asian Bulletin of Mathematics","0129-2021","0219-175X","MATHEMATICS","('ESCI',)","354","0.2","Q4","0.16","0.00" +"Advances in Differential Equations and Control Processes","0974-3243","0974-3243","MATHEMATICS, APPLIED","('ESCI',)","44","0.2","Q4","0.15","85.23" +"Anthropologie-International Journal of Human Diversity and Evolution","0323-1119","0323-1119","ANTHROPOLOGY","('ESCI',)","126","0.2","Q4","0.15","0.00" +"Bilig","1301-0549","1301-0549","AREA STUDIES","('SSCI',)","189","0.2","Q4","0.15","4.17" +"Didactica-Lengua y Literatura","1130-0531","1988-2548","LANGUAGE & LINGUISTICS","('ESCI',)","66","0.2","","0.15","97.96" +"Etnoloska Tribina","0351-1944","1848-9540","ANTHROPOLOGY","('ESCI',)","33","0.2","Q4","0.15","88.00" +"Impossibilia-Revista Internacional de Estudios Literarios","2174-2464","2174-2464","LITERATURE","('ESCI',)","25","0.2","","0.15","65.45" +"International Journal of Dynamical Systems and Differential Equations","1752-3583","1752-3591","MATHEMATICS, APPLIED","('ESCI',)","116","0.2","Q4","0.15","0.00" +"JAPANESE JOURNAL OF APPLIED ENTOMOLOGY AND ZOOLOGY","0021-4914","1347-6068","ENTOMOLOGY","('SCIE',)","269","0.2","Q4","0.15","94.74" +"Journal of Japanese Philosophy","2327-0195","2327-0209","PHILOSOPHY","('ESCI',)","4","0.2","","0.15","0.00" +"Journal of the Anatomical Society of India","0003-2778","2352-3050","ANATOMY & MORPHOLOGY","('SCIE',)","281","0.2","Q4","0.15","9.80" +"JOURNAL OF THE WEST","0022-5169","1930-0115","HISTORY","('AHCI',)","81","0.2","Q2","0.15","0.00" +"Kriterion-Revista de Filosofia","0100-512X","1981-5336","PHILOSOPHY","('AHCI',)","52","0.2","","0.15","93.52" +"MATHEMATICAL GAZETTE","0025-5572","2056-6328","MATHEMATICS","('ESCI',)","556","0.2","Q4","0.15","1.27" +"Minerva Respiratory Medicine","2784-8477","2724-6493","RESPIRATORY SYSTEM","('ESCI',)","10","0.2","Q4","0.15","1.37" +"OLBA","1301-7667","","ARCHAEOLOGY","('AHCI',)","67","0.2","","0.15","0.00" +"ORNITOLOGIA NEOTROPICAL","1075-4377","1075-4377","ORNITHOLOGY","('SCIE',)","588","0.2","Q4","0.15","33.33" +"SKASE Journal of Theoretical Linguistics","","1336-782X","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","80","0.2","('N/A', 'Q4')","0.15","0.00" +"SOCIAL ALTERNATIVES","0155-0306","1836-6600","SOCIOLOGY","('ESCI',)","196","0.2","Q4","0.15","0.00" +"Sociologia Nauki i Tehnologij-Sociology of Science & Technology","2079-0910","2414-9225","('HISTORY & PHILOSOPHY OF SCIENCE', 'SOCIOLOGY')","('ESCI', 'ESCI')","54","0.2","('Q4', 'Q4')","0.15","0.00" +"South African Museums Association Bulletin","0370-8314","0370-8314","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","9","0.2","","0.15","0.00" +"Studies in Psychology-Psikoloji Calismalari Dergisi","1304-4680","2602-2982","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","49","0.2","Q4","0.15","57.89" +"Vjesnik za arheologiju i povijest dalmatinsku","1845-7789","","ARCHAEOLOGY","('AHCI',)","35","0.2","","0.15","0.00" +"Australian Intellectual Property Journal","1038-1635","1038-1635","LAW","('ESCI',)","16","0.2","Q4","0.14","0.00" +"Balkan Arastrma Enstitusu Dergisi-Journal of Balkan Research Institute-JBRI","2147-1371","2147-1371","AREA STUDIES","('ESCI',)","13","0.2","Q4","0.14","97.92" +"Criminologie","0316-0041","0316-0041","CRIMINOLOGY & PENOLOGY","('ESCI',)","104","0.2","Q4","0.14","92.13" +"Independent Journal of Teaching and Learning","1818-9687","1818-9687","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","47","0.2","Q4","0.14","0.00" +"International Journal of Teacher Education and Professional Development","2572-4878","2572-486X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","16","0.2","Q4","0.14","17.78" +"Journal of Himalayan Earth Sciences","1994-3237","2305-6959","GEOLOGY","('ESCI',)","191","0.2","Q4","0.14","0.00" +"Palaestra","8756-5811","2372-1391","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","141","0.2","Q4","0.14","0.00" +"PROSPECTIVA","0122-1213","2389-993X","SOCIAL WORK","('ESCI',)","90","0.2","Q4","0.14","97.33" +"Psychoanalytic Social Work","1522-8878","1522-9033","SOCIAL WORK","('ESCI',)","69","0.2","Q4","0.14","0.00" +"RAIRO-THEORETICAL INFORMATICS AND APPLICATIONS","0988-3754","2804-7346","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, APPLIED')","('SCIE', 'SCIE')","214","0.2","('Q4', 'Q4')","0.14","90.63" +"Revista Colombiana de Ciencias Pecuarias","0120-0690","2256-2958","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","368","0.2","Q4","0.14","88.41" +"Revista de Filosofia Aurora","2965-1557","2965-1565","PHILOSOPHY","('AHCI',)","45","0.2","","0.14","82.64" +"SHILAP-REVISTA DE LEPIDOPTEROLOGIA","0300-5267","2340-4078","ENTOMOLOGY","('SCIE',)","239","0.2","Q4","0.14","37.11" +"Adalya","1301-2746","","ARCHAEOLOGY","('AHCI',)","66","0.2","","0.13","0.00" +"Archives of Aesthetic Plastic Surgery","2234-0831","2288-9337","SURGERY","('ESCI',)","60","0.2","Q4","0.13","100.00" +"B-ENT","","2684-4907","OTORHINOLARYNGOLOGY","('SCIE',)","407","0.2","Q4","0.13","50.00" +"E-Mentor","1731-6758","1731-7428","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","111","0.2","Q4","0.13","3.28" +"INTERNASJONAL POLITIKK","0020-577X","1891-1757","('INTERNATIONAL RELATIONS', 'POLITICAL SCIENCE')","('SSCI', 'SSCI')","96","0.2","('Q4', 'Q4')","0.13","100.00" +"ISRAEL EXPLORATION JOURNAL","0021-2059","","ARCHAEOLOGY","('AHCI',)","394","0.2","","0.13","0.00" +"Jeunesse-Young People Texts Cultures","1920-2601","1920-261X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","93","0.2","","0.13","0.00" +"Journal of Doctoral Nursing Practice","2380-9418","2380-9426","NURSING","('ESCI',)","48","0.2","Q4","0.13","0.00" +"Journal of Illustration","2052-0204","2052-0212","ART","('ESCI',)","14","0.2","","0.13","0.00" +"JOURNAL OF INSTITUTIONAL AND THEORETICAL ECONOMICS-ZEITSCHRIFT FUR DIE GESAMTE STAATSWISSENSCHAFT","0932-4569","1614-0559","ECONOMICS","('SSCI',)","646","0.2","Q4","0.13","0.00" +"JP Journal of Algebra Number Theory and Applications","0972-5555","0972-5555","MATHEMATICS","('ESCI',)","64","0.2","Q4","0.13","85.19" +"PFERDEHEILKUNDE","0177-7726","","VETERINARY SCIENCES","('SCIE',)","320","0.2","Q4","0.13","87.39" +"Radical Teacher","1941-0832","1941-0832","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","135","0.2","Q4","0.13","97.10" +"Revista on Line de Politica e Gestao Educacional","1519-9029","1519-9029","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","146","0.2","Q4","0.13","83.51" +"RUDN Journal of Sociology-Vestnik Rossiiskogo Universiteta Druzhby Narodov Seriya Sotsiologiya","2313-2272","2408-8897","SOCIOLOGY","('ESCI',)","120","0.2","Q4","0.13","91.84" +"South African Journal of Child Health","1994-3032","1999-7671","PEDIATRICS","('ESCI',)","274","0.2","Q4","0.13","59.41" +"SPRACHWISSENSCHAFT","0344-8169","2567-6563","LANGUAGE & LINGUISTICS","('AHCI',)","47","0.2","","0.13","0.00" +"Techniques in Orthopaedics","0885-9698","2333-0600","ORTHOPEDICS","('ESCI',)","347","0.2","Q4","0.13","4.33" +"TEORIJA IN PRAKSA","0040-3598","0040-3598","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","136","0.2","Q4","0.13","0.00" +"Acta Medico-Historica Adriatica","1334-4366","1334-6253","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","71","0.2","Q4","0.12","44.19" +"Africa Education Review","1814-6627","1753-5921","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","284","0.2","Q4","0.12","6.35" +"Daimon-Revista Internacional de Filosofia","1130-0507","1989-4651","PHILOSOPHY","('ESCI',)","109","0.2","","0.12","95.19" +"Espacio Tiempo y Educacion","2340-7263","2340-7263","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","61","0.2","Q4","0.12","60.61" +"Feminist German Studies","2578-5206","2578-5192","WOMENS STUDIES","('ESCI',)","10","0.2","Q4","0.12","0.00" +"Formath","","2188-5729","FORESTRY","('ESCI',)","20","0.2","Q4","0.12","100.00" +"Formosan Journal of Surgery","1682-606X","2213-5413","SURGERY","('ESCI',)","118","0.2","Q4","0.12","98.26" +"Icelandic Agricultural Sciences","1670-567X","","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","92","0.2","Q4","0.12","0.00" +"INTERPRETATION-A JOURNAL OF BIBLE AND THEOLOGY","0020-9643","2159-340X","RELIGION","('AHCI',)","258","0.2","","0.12","0.00" +"JOURNAL OF INDO-EUROPEAN STUDIES","0092-2323","0092-2323","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","119","0.2","","0.12","0.00" +"Journal of Pediatric Surgery Case Reports","2213-5766","2213-5766","PEDIATRICS","('ESCI',)","563","0.2","Q4","0.12","95.41" +"Journal of Renal Injury Prevention","2345-2781","2345-2781","UROLOGY & NEPHROLOGY","('ESCI',)","356","0.2","Q4","0.12","87.84" +"Lengua y Habla","2244-811X","2244-811X","LANGUAGE & LINGUISTICS","('ESCI',)","38","0.2","","0.12","0.00" +"Mathematics and Informatics","1310-2230","1314-8532","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","40","0.2","Q4","0.12","0.00" +"Metro","0312-2654","0312-2654","FILM, RADIO, TELEVISION","('ESCI',)","103","0.2","","0.12","0.00" +"Pamukkale Universitesi Egitim Fakultesi Dergisi-Pamukkale University Journal of Education","1301-0085","1309-0275","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","149","0.2","Q4","0.12","96.79" +"Plaridel","1656-2534","1656-2534","COMMUNICATION","('ESCI',)","45","0.2","Q4","0.12","46.67" +"Reviews in Anthropology","0093-8157","1556-3014","ANTHROPOLOGY","('ESCI',)","128","0.2","Q4","0.12","12.50" +"SOURCE-NOTES IN THE HISTORY OF ART","0737-4453","2328-207X","ART","('AHCI',)","130","0.2","","0.12","0.00" +"Voprosy Gosudarstvennogo i Munitsipalnogo Upravleniya-Public Administration Issues","1999-5431","1999-5431","PUBLIC ADMINISTRATION","('ESCI',)","95","0.2","Q4","0.12","75.89" +"Zbornik Instituta za Pedagoska Istrazivanja","0579-6431","1820-9270","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","57","0.2","Q4","0.12","100.00" +"Acta Brasiliensis","2526-432X","2526-4338","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","40","0.2","Q4","0.11","77.36" +"Actualidades en Psicologia","0258-6444","2215-3535","PSYCHOLOGY","('ESCI',)","105","0.2","Q4","0.11","86.27" +"Agora para la Educacion Fisica y el Deporte","1578-2174","1989-7200","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","116","0.2","Q4","0.11","97.62" +"Annals of Economics and Finance","1529-7373","1529-7373","ECONOMICS","('SSCI',)","392","0.2","Q4","0.11","0.00" +"Argentinian Journal of Applied Linguistics","2314-3576","2314-3576","LINGUISTICS","('ESCI',)","23","0.2","Q4","0.11","0.00" +"Egyptian Journal of Dermatology and Venereology","1110-6530","2314-7407","DERMATOLOGY","('ESCI',)","44","0.2","Q4","0.11","0.00" +"Emakeele Seltsi Aastaraamat-The Yearbook of the Estonian Mother Tongue Society","0206-3735","2228-1215","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","31","0.2","('N/A', 'Q4')","0.11","97.44" +"GAYANA","0717-652X","0717-6538","ZOOLOGY","('SCIE',)","295","0.2","Q4","0.11","20.83" +"Hallazgos-Revista de Investigaciones","1794-3841","2422-409X","AREA STUDIES","('ESCI',)","76","0.2","Q4","0.11","54.29" +"Health Problems of Civilization","2353-6942","2354-0265","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","54","0.2","Q4","0.11","100.00" +"International Journal of Adult Education and Technology-IJAET","2643-7996","2643-8003","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","11","0.2","Q4","0.11","33.93" +"International Journal of Educational Sciences","0975-1122","0975-1122","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","190","0.2","Q4","0.11","52.24" +"Journal of Dentistry Indonesia","1693-9697","2355-4800","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","65","0.2","Q4","0.11","94.12" +"Linha d Agua","0103-3638","2236-4242","LANGUAGE & LINGUISTICS","('ESCI',)","35","0.2","","0.11","98.77" +"Mandenkan-Bulletin Semestriel d Etudes Linguistiques Mande","0752-5443","0752-5443","LINGUISTICS","('ESCI',)","20","0.2","Q4","0.11","64.71" +"Metodicki Ogledi-Methodical Review","0353-765X","1848-2325","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","29","0.2","Q4","0.11","0.00" +"MGIMO Review of International Relations","2071-8160","2541-9099","INTERNATIONAL RELATIONS","('ESCI',)","90","0.2","Q4","0.11","93.08" +"Nordisk Sygeplejeforskning-Nordic Nursing Research","1892-2678","1892-2686","NURSING","('ESCI',)","51","0.2","Q4","0.11","0.00" +"Opir Materialiv i Teoria Sporud-Strength of Materials and Theory of Structures","","2410-2547","MATERIALS SCIENCE, CHARACTERIZATION & TESTING","('ESCI',)","40","0.2","Q4","0.11","86.67" +"Pielegniarstwo XXI Wieku-Nursing in the 21 Century","1730-1912","2450-646X","NURSING","('ESCI',)","54","0.2","Q4","0.11","99.14" +"Prikladnaya Diskretnaya Matematika","2071-0410","2311-2263","MATHEMATICS, APPLIED","('ESCI',)","76","0.2","Q4","0.11","8.05" +"Revista Latinoamericana de Estudios de Familia","2145-6445","2215-8758","FAMILY STUDIES","('ESCI',)","42","0.2","Q4","0.11","92.86" +"RUSSIAN HISTORY-HISTOIRE RUSSE","0094-288X","","HISTORY","('AHCI',)","160","0.2","Q2","0.11","1.92" +"Verba-Anuario Galego de Filoloxia","0210-377X","2174-4017","LANGUAGE & LINGUISTICS","('ESCI',)","136","0.2","","0.11","97.62" +"WIENER TIERARZTLICHE MONATSSCHRIFT","0043-535X","","VETERINARY SCIENCES","('SCIE',)","217","0.2","Q4","0.11","0.00" +"Asia Pacific Journal of Counselling and Psychotherapy","2150-7686","2150-7708","PSYCHOLOGY, CLINICAL","('ESCI',)","78","0.2","Q4","0.10","5.71" +"BOLETIN GEOLOGICO Y MINERO","0366-0176","2253-6167","GEOLOGY","('ESCI',)","304","0.2","Q4","0.10","83.53" +"British Journal of American Legal Studies","2049-4092","2719-5864","LAW","('ESCI',)","39","0.2","Q4","0.10","100.00" +"Cuadernos de Filosofia Latinoamericana","0120-8462","2500-5375","PHILOSOPHY","('ESCI',)","30","0.2","","0.10","74.51" +"Cuadernos Europeos de Deusto","1130-8354","2445-3587","('INTERNATIONAL RELATIONS', 'LAW')","('ESCI', 'ESCI')","36","0.2","('Q4', 'Q4')","0.10","98.36" +"Current Orthopaedic Practice","1940-7041","1941-7551","ORTHOPEDICS","('ESCI',)","374","0.2","Q4","0.10","2.15" +"Global Trade and Customs Journal","1569-755X","1875-6468","INTERNATIONAL RELATIONS","('ESCI',)","96","0.2","Q4","0.10","0.00" +"Homo Oeconomicus-Journal of Behavioral and Institutional Economics","0943-0180","2366-6161","ECONOMICS","('ESCI',)","58","0.2","Q4","0.10","40.63" +"INDIAN JOURNAL OF ANIMAL SCIENCES","0367-8318","0367-8318","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","1,529","0.2","Q4","0.10","50.98" +"INDIAN JOURNAL OF DAIRY SCIENCE","0019-5146","2454-2172","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","394","0.2","Q4","0.10","84.23" +"INTERNATIONAL JOURNAL OF IBERIAN STUDIES","1364-971X","1758-9150","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","48","0.2","Q4","0.10","2.56" +"Iranian Journal of Neonatology","2251-7510","2322-2158","PEDIATRICS","('ESCI',)","211","0.2","Q4","0.10","0.00" +"Journal of Dermatology & Dermatologic Surgery-JDDS","2352-2410","2352-2429","DERMATOLOGY","('ESCI',)","137","0.2","Q4","0.10","94.68" +"Journal of EndoVascular Resuscitation and Trauma Management","2002-7567","2002-7567","('EMERGENCY MEDICINE', 'SURGERY')","('ESCI', 'ESCI')","33","0.2","('Q4', 'Q4')","0.10","98.21" +"Justicia","0124-7441","2590-4566","LAW","('ESCI',)","65","0.2","Q4","0.10","96.84" +"Kinesiologia Slovenica","1318-2269","2232-4062","SPORT SCIENCES","('ESCI',)","124","0.2","Q4","0.10","0.00" +"Kultur-Revista Interdisciplinaria sobre la Cultura de la Ciutat","2386-5458","2386-5458","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","24","0.2","","0.10","66.67" +"Meridians-Feminism Race Transnationalism","1536-6936","1547-8424","WOMENS STUDIES","('ESCI',)","442","0.2","Q4","0.10","0.00" +"Open Cardiovascular Medicine Journal","","1874-1924","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","354","0.2","Q4","0.10","92.31" +"PSYCHIATRIC ANNALS","0048-5713","1938-2456","PSYCHIATRY","('SSCI',)","1,287","0.2","Q4","0.10","0.00" +"Public-Art Culture Ideas","0845-4450","2048-6928","ART","('ESCI',)","96","0.2","","0.10","0.00" +"Quaderns de Filologia-Estudis Linguistics","1135-416X","2444-1449","LANGUAGE & LINGUISTICS","('ESCI',)","44","0.2","","0.10","3.23" +"Reports of Forestry Research-Zpravy Lesnickeho Vyzkumu","0322-9688","1805-9872","FORESTRY","('ESCI',)","176","0.2","Q4","0.10","0.00" +"Research in Marine Sciences","2538-5542","2538-2705","MARINE & FRESHWATER BIOLOGY","('ESCI',)","22","0.2","Q4","0.10","0.00" +"Slovenska Archeologia","1335-0102","2585-9145","ARCHAEOLOGY","('ESCI',)","173","0.2","","0.10","97.12" +"Stilistica e Metrica Italiana","1591-6693","1591-6693","LANGUAGE & LINGUISTICS","('ESCI',)","12","0.2","","0.10","0.00" +"Suicidology","2224-1264","2224-1264","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","48","0.2","Q4","0.10","96.63" +"Symmetry-Culture and Science","0865-4824","2226-1877","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","86","0.2","Q4","0.10","0.00" +"Trauma Monthly","2251-7464","2251-7472","EMERGENCY MEDICINE","('ESCI',)","397","0.2","Q4","0.10","0.00" +"Zbornik Matice Srpske za Likovne Umetnosti-Matica Srpska Journal for Fine Arts","0352-6844","0352-6844","ART","('ESCI',)","104","0.2","","0.10","0.00" +"Acta Kinesiologica","1840-2976","1840-3700","SPORT SCIENCES","('ESCI',)","115","0.2","Q4","0.09","0.00" +"Acta Scientiae Veterinariae","1678-0345","1679-9216","VETERINARY SCIENCES","('SCIE',)","673","0.2","Q4","0.09","60.97" +"Anduli","1696-0270","2340-4973","SOCIOLOGY","('ESCI',)","47","0.2","Q4","0.09","87.27" +"Asclepio-Revista de Historia de la Medicina y de la Ciencia","0210-4466","1988-3102","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI',)","168","0.2","Q4","0.09","97.70" +"Cabas","1989-5909","1989-5909","('EDUCATION & EDUCATIONAL RESEARCH', 'HISTORY OF SOCIAL SCIENCES')","('ESCI', 'ESCI')","60","0.2","('Q4', 'Q4')","0.09","0.00" +"Conflict Studies Quarterly","2285-7605","2285-7605","POLITICAL SCIENCE","('ESCI',)","48","0.2","Q4","0.09","98.21" +"Custos e Agronegocio On Line","1808-2882","1808-2882","('AGRICULTURAL ECONOMICS & POLICY', 'BUSINESS', 'ECONOMICS')","('SCIE', 'SSCI', 'SSCI')","236","0.2","('Q4', 'Q4', 'Q4')","0.09","0.00" +"Edma 0-6-Educacion Matematica en la Infancia","2254-8351","2254-8351","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","27","0.2","Q4","0.09","50.00" +"Glottometrics","1617-8351","2625-8226","LINGUISTICS","('ESCI',)","106","0.2","Q4","0.09","0.00" +"International Journal of Applied Behavioral Economics","2160-9802","2160-9810","ECONOMICS","('ESCI',)","27","0.2","Q4","0.09","47.22" +"Investigacion Bibliotecologica","0187-358X","2448-8321","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","198","0.2","Q4","0.09","89.17" +"Jaen Journal on Approximation","1889-3066","1989-7251","MATHEMATICS","('ESCI',)","38","0.2","Q4","0.09","0.00" +"Journal of Clinical Neonatology","2249-4847","1658-6093","PEDIATRICS","('ESCI',)","266","0.2","Q4","0.09","0.79" +"Journal of Economy Culture and Society","2602-2656","2645-8772","SOCIOLOGY","('ESCI',)","47","0.2","Q4","0.09","55.24" +"Journal of Obstetric Anaesthesia and Critical Care","2249-4472","2249-9539","('ANESTHESIOLOGY', 'OBSTETRICS & GYNECOLOGY')","('ESCI', 'ESCI')","93","0.2","('Q4', 'Q4')","0.09","100.00" +"Journal of Pediatric Infectious Diseases","1305-7707","1305-7693","('INFECTIOUS DISEASES', 'PEDIATRICS')","('SCIE', 'SCIE')","127","0.2","('Q4', 'Q4')","0.09","7.59" +"Journal of the Acoustical Society of Korea","1225-4428","2287-3775","ACOUSTICS","('ESCI',)","120","0.2","Q4","0.09","0.00" +"Journal of the Korean Society for Aeronautical and Space Sciences","1225-1348","2287-6871","ENGINEERING, AEROSPACE","('ESCI',)","227","0.2","Q4","0.09","0.00" +"Korean Journal of Applied Statistics","1225-066X","2383-5818","STATISTICS & PROBABILITY","('ESCI',)","100","0.2","Q4","0.09","0.58" +"Lenguaje y Textos","1133-4770","2530-0075","LINGUISTICS","('ESCI',)","102","0.2","Q4","0.09","100.00" +"Nexo Revista Cientifica","1818-6742","1995-9516","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","108","0.2","Q4","0.09","55.89" +"NOVITATES CARIBAEA","2071-9841","2079-0139","ZOOLOGY","('ESCI',)","39","0.2","Q4","0.09","60.56" +"Operative Techniques in Orthopaedics","1048-6666","1558-3848","ORTHOPEDICS","('ESCI',)","263","0.2","Q4","0.09","0.00" +"PHILIPPINE AGRICULTURAL SCIENTIST","0031-7454","","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","355","0.2","Q4","0.09","0.00" +"Revista de Investigaciones Politicas y Sociologicas","1577-239X","2255-5986","POLITICAL SCIENCE","('ESCI',)","37","0.2","Q4","0.09","91.89" +"Revista Latinoamericana de Derecho Social","1870-4670","2448-7899","LAW","('ESCI',)","49","0.2","Q4","0.09","73.21" +"Revue d Histoire des Mathematiques","1262-022X","1262-022X","HISTORY & PHILOSOPHY OF SCIENCE","('AHCI', 'SCIE')","29","0.2","Q4","0.09","0.00" +"Rivista di Psicolinguistica Applicata-Journal of Applied Psycholinguistics","1592-1328","1724-0646","LINGUISTICS","('ESCI',)","27","0.2","Q4","0.09","0.00" +"Romanian Statistical Review","1018-046X","1844-7694","SOCIAL SCIENCES, MATHEMATICAL METHODS","('ESCI',)","61","0.2","Q4","0.09","0.00" +"Spektrum der Augenheilkunde","0930-4282","1613-7523","OPHTHALMOLOGY","('ESCI',)","66","0.2","Q4","0.09","37.50" +"Studi irlandesi-A Journal of Irish Studies","2239-3978","2239-3978","AREA STUDIES","('ESCI',)","30","0.2","Q4","0.09","0.00" +"Sugar Industry-Zuckerindustrie","0344-8657","","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","154","0.2","Q4","0.09","0.00" +"Teaching of Mathematics","1451-4966","2406-1077","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","19","0.2","Q4","0.09","41.38" +"Trabajo Social Global-Global Social Work","2013-6757","2013-6757","SOCIAL WORK","('ESCI',)","35","0.2","Q4","0.09","100.00" +"VIREF-Revista de Educacion Fisica","2322-9411","2322-9411","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","40","0.2","Q4","0.09","3.45" +"Visnyk NTUU KPI Seriia-Radiotekhnika Radioaparatobuduvannia","2310-0389","2310-0389","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","33","0.2","Q4","0.09","0.00" +"Visnyk of Taras Shevchenko National University of Kyiv-Geology","1728-2713","2079-9063","GEOLOGY","('ESCI',)","101","0.2","Q4","0.09","0.00" +"ACUPUNCTURE & ELECTRO-THERAPEUTICS RESEARCH","0360-1293","2167-9010","('INTEGRATIVE & COMPLEMENTARY MEDICINE', 'NEUROSCIENCES')","('SCIE', 'SCIE')","118","0.2","('Q4', 'Q4')","0.08","26.25" +"America Latina Hoy-Revista de Ciencias Sociales","1130-2887","2340-4396","POLITICAL SCIENCE","('ESCI',)","177","0.2","Q4","0.08","98.21" +"Anaesthesia and Intensive Care Medicine","1472-0299","1878-7584","ANESTHESIOLOGY","('ESCI',)","449","0.2","Q4","0.08","0.00" +"Anaesthesia Pain & Intensive Care","1607-8322","2220-5799","ANESTHESIOLOGY","('ESCI',)","264","0.2","Q4","0.08","70.05" +"Asian Journal of Pharmaceutical Research and Health Care","2250-1444","2250-1460","PHARMACOLOGY & PHARMACY","('ESCI',)","81","0.2","Q4","0.08","97.71" +"Computer Science Journal of Moldova","1561-4042","1561-4042","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","61","0.2","Q4","0.08","54.69" +"Crescent Journal of Medical and Biological Sciences","2148-9696","2148-9696","MEDICINE, GENERAL & INTERNAL","('ESCI',)","198","0.2","Q4","0.08","50.76" +"Direito e Praxis","2179-8966","2179-8966","LAW","('ESCI',)","196","0.2","Q4","0.08","87.25" +"ENT Updates","2149-7109","2149-6498","OTORHINOLARYNGOLOGY","('ESCI',)","62","0.2","Q4","0.08","93.75" +"Estudios del Desarrollo Social-Cuba y America Latina","2308-0132","2308-0132","AREA STUDIES","('ESCI',)","80","0.2","Q4","0.08","0.00" +"Gospodarka Narodowa-The Polish Journal of Economics","0867-0005","2300-5238","ECONOMICS","('ESCI',)","75","0.2","Q4","0.08","97.10" +"HITOTSUBASHI JOURNAL OF ECONOMICS","0018-280X","2436-097X","ECONOMICS","('SSCI',)","122","0.2","Q4","0.08","0.00" +"Human Sport Medicine","2500-0209","2500-0195","SPORT SCIENCES","('ESCI',)","119","0.2","Q4","0.08","0.00" +"Iberoamerican Journal of Development Studies","2254-2035","2254-2035","DEVELOPMENT STUDIES","('ESCI',)","54","0.2","Q4","0.08","98.57" +"ICGA JOURNAL","1389-6911","2468-2438","COMPUTER SCIENCE, SOFTWARE ENGINEERING","('SCIE',)","70","0.2","Q4","0.08","6.25" +"Ideas in Ecology and Evolution","1918-3178","1918-3178","EVOLUTIONARY BIOLOGY","('ESCI',)","46","0.2","Q4","0.08","100.00" +"Indian Journal of Community Health","0971-7587","2248-9509","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","318","0.2","Q4","0.08","77.16" +"Indian Journal of Otology","0971-7749","2249-9520","OTORHINOLARYNGOLOGY","('ESCI',)","237","0.2","Q4","0.08","8.43" +"International Journal of Data Mining and Bioinformatics","1748-5673","1748-5681","MATHEMATICAL & COMPUTATIONAL BIOLOGY","('SCIE',)","196","0.2","Q4","0.08","0.00" +"Iranica Antiqua","0021-0870","1783-1482","ARCHAEOLOGY","('AHCI',)","113","0.2","","0.08","0.00" +"Italian Journal of Vascular and Endovascular Surgery","1824-4777","1827-1847","PERIPHERAL VASCULAR DISEASE","('ESCI',)","40","0.2","Q4","0.08","3.03" +"JOURNAL OF COSMETIC SCIENCE","1525-7886","","('CHEMISTRY, APPLIED', 'DERMATOLOGY')","('SCIE', 'SCIE')","553","0.2","('Q4', 'Q4')","0.08","0.00" +"Journal of Mathematics Mechanics and Computer Science","1563-0277","2617-4871","('MATHEMATICS', 'MECHANICS')","('ESCI', 'ESCI')","24","0.2","('Q4', 'Q4')","0.08","89.84" +"Journal of Private Enterprise","0890-913X","0890-913X","ECONOMICS","('ESCI',)","114","0.2","Q4","0.08","0.00" +"Metodos de informacion","1134-2838","2173-1241","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","13","0.2","Q4","0.08","68.00" +"Nauchnye i Tekhnicheskie Biblioteki-Scientific and Technical Libraries","0130-9765","0130-9765","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","114","0.2","Q4","0.08","97.86" +"Paediatrica Indonesiana","0030-9311","2338-476X","PEDIATRICS","('ESCI',)","225","0.2","Q4","0.08","92.55" +"Politica Economica","1120-9496","1973-8218","ECONOMICS","('ESCI',)","57","0.2","Q4","0.08","0.00" +"Radio Electronics Computer Science Control","1607-3274","2313-688X","COMPUTER SCIENCE, HARDWARE & ARCHITECTURE","('ESCI',)","80","0.2","Q4","0.08","98.03" +"Revista de Derecho Privado","0123-4366","2346-2442","LAW","('ESCI',)","145","0.2","Q4","0.08","69.15" +"Revista de Economia Mundial","1576-0162","2340-4264","ECONOMICS","('SSCI',)","151","0.2","Q4","0.08","64.29" +"Revista Facultad de Ingenieria, Universidad Pedagogica y Tecnologica de Colombia","0121-1129","2357-5328","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","112","0.2","Q4","0.08","82.05" +"Revista Medica Clinica Las Condes","","0716-8640","MEDICINE, GENERAL & INTERNAL","('ESCI',)","305","0.2","Q4","0.08","96.46" +"Revista UNISCI","","2386-9453","INTERNATIONAL RELATIONS","('ESCI',)","71","0.2","Q4","0.08","78.05" +"Revue de Geographie Alpine-Journal of Alpine Research","0035-1121","1760-7426","GEOGRAPHY","('SSCI',)","249","0.2","Q4","0.08","58.00" +"Tiempos Modernos-Revista Electronica de Historia Moderna","1699-7778","1699-7778","HISTORY","('ESCI',)","131","0.2","Q2","0.08","0.86" +"Turkish Journal of Nephrology","","2667-4440","UROLOGY & NEPHROLOGY","('ESCI',)","44","0.2","Q4","0.08","100.00" +"Vestnik of Saint Petersburg University Earth Sciences","2541-9668","2587-585X","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","71","0.2","Q4","0.08","87.74" +"VLAAMS DIERGENEESKUNDIG TIJDSCHRIFT","0303-9021","0303-9021","VETERINARY SCIENCES","('SCIE',)","241","0.2","Q4","0.08","73.96" +"Vojnosanitetski Pregled","0042-8450","2406-0720","MEDICINE, GENERAL & INTERNAL","('SCIE',)","776","0.2","Q4","0.08","99.38" +"AIB Studi","2280-9112","2239-6144","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","46","0.2","Q4","0.07","0.00" +"Analytical Science and Technology","1225-0163","2288-8985","CHEMISTRY, ANALYTICAL","('ESCI',)","118","0.2","Q4","0.07","0.00" +"ANNALES HISTORIQUES DE LA REVOLUTION FRANCAISE","0003-4436","1952-403X","HISTORY","('AHCI',)","181","0.2","Q2","0.07","0.00" +"Bauphysik","0171-5445","1437-0980","CONSTRUCTION & BUILDING TECHNOLOGY","('SCIE',)","112","0.2","Q4","0.07","0.00" +"Buffalo Bulletin","0125-6726","2539-5696","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","303","0.2","Q4","0.07","0.51" +"CASTANEA","0008-7475","1938-4386","PLANT SCIENCES","('SCIE',)","414","0.2","Q4","0.07","0.00" +"Chinese Archaeology","2160-5025","2160-5068","ARCHAEOLOGY","('ESCI',)","82","0.2","","0.07","0.00" +"Civil Engineering Journal-Stavebni Obzor","1210-4027","1805-2576","ENGINEERING, CIVIL","('ESCI',)","93","0.2","Q4","0.07","99.39" +"Connectist-Istanbul University Journal of Communication Sciences","","2636-8943","COMMUNICATION","('ESCI',)","22","0.2","Q4","0.07","34.04" +"Current Bladder Dysfunction Reports","1931-7212","1931-7220","UROLOGY & NEPHROLOGY","('ESCI',)","201","0.2","Q4","0.07","5.94" +"Dental Cadmos","0011-8524","0011-8524","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","95","0.2","Q4","0.07","0.00" +"Devices and Methods of Measurements","2220-9506","2414-0473","INSTRUMENTS & INSTRUMENTATION","('ESCI',)","55","0.2","Q4","0.07","98.92" +"Didactica de las Ciencias Experimentales y Sociales","0214-4379","2255-3835","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","110","0.2","Q4","0.07","100.00" +"Documentacion de las Ciencias de la Informacion","0210-4210","1988-2890","COMMUNICATION","('ESCI',)","55","0.2","Q4","0.07","98.81" +"Food Hygiene and Safety Science","0015-6426","","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","133","0.2","Q4","0.07","0.00" +"Gragoata-UFF","1413-9073","2358-4114","LANGUAGE & LINGUISTICS","('ESCI',)","55","0.2","","0.07","67.77" +"INDIAN JOURNAL OF HETEROCYCLIC CHEMISTRY","0971-1627","2456-4311","CHEMISTRY, ORGANIC","('SCIE',)","224","0.2","Q4","0.07","0.00" +"Indian Journal of Medical Specialities","0976-2884","0976-2892","MEDICINE, GENERAL & INTERNAL","('ESCI',)","198","0.2","Q4","0.07","8.27" +"Indian Journal of Paediatric Dermatology","2319-7250","2319-7269","('DERMATOLOGY', 'PEDIATRICS')","('ESCI', 'ESCI')","171","0.2","('Q4', 'Q4')","0.07","97.19" +"Indian Journal of Transplantation","2212-0017","2212-0025","TRANSPLANTATION","('ESCI',)","99","0.2","Q4","0.07","97.74" +"International Journal of Arts and Technology","1754-8853","1754-8861","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","96","0.2","Q4","0.07","0.00" +"International Journal of Mathematics and Physics","2218-7987","2409-5508","('MATHEMATICS', 'MATHEMATICS, APPLIED', 'PHYSICS, MULTIDISCIPLINARY')","('ESCI', 'ESCI', 'ESCI')","15","0.2","('Q4', 'Q4', 'Q4')","0.07","100.00" +"International Journal of Technologies in Higher Education","1708-7570","1708-7570","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","33","0.2","Q4","0.07","100.00" +"Iranian Journal of Radiology","1735-1065","2008-2711","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('SCIE',)","372","0.2","Q4","0.07","89.73" +"Journal of Clinical Urology","2051-4158","2051-4166","UROLOGY & NEPHROLOGY","('ESCI',)","302","0.2","Q4","0.07","6.16" +"Journal of Cognitive Science","1598-2327","1598-2327","LINGUISTICS","('ESCI',)","103","0.2","Q4","0.07","1.85" +"Journal of Library and Information Studies","1606-7509","2309-9119","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","24","0.2","Q4","0.07","0.00" +"Journal of Pediatric Neurology","1304-2580","1875-9041","PEDIATRICS","('ESCI',)","168","0.2","Q4","0.07","0.82" +"Journal of the Dermatology Nurses Association","1945-760X","1945-7618","DERMATOLOGY","('ESCI',)","178","0.2","Q4","0.07","0.96" +"Meandros Medical and Dental Journal","2149-9063","2149-9063","MEDICINE, GENERAL & INTERNAL","('ESCI',)","99","0.2","Q4","0.07","97.34" +"NAVAL ENGINEERS JOURNAL","0028-1425","1559-3584","('ENGINEERING, CIVIL', 'ENGINEERING, MARINE', 'OCEANOGRAPHY')","('SCIE', 'SCIE', 'SCIE')","296","0.2","('Q4', 'Q4', 'Q4')","0.07","0.00" +"Netherlands Journal of Critical Care","1569-3511","1569-3511","CRITICAL CARE MEDICINE","('ESCI',)","51","0.2","Q4","0.07","0.00" +"Onkologie","2731-7226","2731-7234","ONCOLOGY","('SCIE',)","233","0.2","Q4","0.07","9.41" +"Osteologie","1019-1291","2567-5818","ORTHOPEDICS","('ESCI',)","46","0.2","Q4","0.07","1.25" +"PROCEEDINGS OF THE LINNEAN SOCIETY OF NEW SOUTH WALES","0370-047X","","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","605","0.2","('Q4', 'Q4')","0.07","0.00" +"Revista CES Psicologia","2011-3080","2011-3080","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","100","0.2","Q4","0.07","98.95" +"Revista Colombiana de Quimica","0120-2804","2357-3791","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","107","0.2","Q4","0.07","85.71" +"Revista Conrado","1990-8644","1990-8644","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","609","0.2","Q4","0.07","0.00" +"Revista Electronica de Estudios Internacionales","1697-5197","1697-5197","LAW","('ESCI',)","72","0.2","Q4","0.07","49.12" +"Revista Forestal Mesoamerica Kuru-RFMK","2215-2504","2215-2504","FORESTRY","('ESCI',)","70","0.2","Q4","0.07","0.00" +"Revista Geografica de America Central","1011-484X","2215-2563","GEOGRAPHY","('ESCI',)","127","0.2","Q4","0.07","97.50" +"Revista San Gregorio","1390-7247","2528-7907","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","111","0.2","Q4","0.07","13.33" +"Revista Universidad y Sociedad","2218-3620","2218-3620","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","485","0.2","Q4","0.07","0.05" +"Revista Virtual de Estudos da Linguagem-ReVEL","1678-8931","1678-8931","LANGUAGE & LINGUISTICS","('ESCI',)","41","0.2","","0.07","0.00" +"Russian Open Medical Journal","2304-3415","2304-3415","MEDICINE, GENERAL & INTERNAL","('ESCI',)","109","0.2","Q4","0.07","99.44" +"Slovo","0954-6839","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","33","0.2","","0.07","100.00" +"Tomskii Zhurnal Lingvisticheskikh i Antropologicheskikh Issledovanii-Tomsk Journal of Linguistics and Anthropology","2307-6119","2307-6119","ANTHROPOLOGY","('ESCI',)","44","0.2","Q4","0.07","41.36" +"Turkish Journal of Immunology","1301-109X","2147-8325","IMMUNOLOGY","('ESCI',)","45","0.2","Q4","0.07","93.75" +"Turkiye Iletisim Arastirmalari Dergisi-Turkish Review of Communication Studies","","2630-6220","COMMUNICATION","('ESCI',)","30","0.2","Q4","0.07","98.25" +"Vestnik Transplantologii i Iskusstvennyh Organov","1995-1191","2412-6160","TRANSPLANTATION","('ESCI',)","123","0.2","Q4","0.07","94.47" +"Vigilancia Sanitaria em Debate-Sociedade Ciencia & Tecnologia","2317-269X","2317-269X","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","138","0.2","Q4","0.07","93.28" +"Zeitschrift fur Soziologie der Erziehung und Sozialisation","1436-1957","1436-1957","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","59","0.2","Q4","0.07","0.00" +"ZHURNAL VYSSHEI NERVNOI DEYATELNOSTI IMENI I P PAVLOVA","0044-4677","0044-4677","('NEUROSCIENCES', 'PHYSIOLOGY')","('SCIE', 'SCIE')","241","0.2","('Q4', 'Q4')","0.07","0.00" +"Actualidad Juridica Ambiental","1989-5666","1989-5666","LAW","('ESCI',)","43","0.2","Q4","0.06","37.50" +"Andamios","1870-0063","2594-1917","SOCIAL SCIENCES, INTERDISCIPLINARY","('SSCI',)","227","0.2","Q4","0.06","85.82" +"Anuario Musical","0211-3538","1988-4125","MUSIC","('AHCI',)","70","0.2","","0.06","96.88" +"Bezmialem Science","2148-2373","2148-2373","MEDICINE, GENERAL & INTERNAL","('ESCI',)","143","0.2","Q4","0.06","100.00" +"Clinical Social Work and Health Intervention","2222-386X","2076-9741","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","45","0.2","Q4","0.06","0.00" +"Cuadernos Electronicos de Filosofia del Derecho","1138-9877","1138-9877","LAW","('ESCI',)","48","0.2","Q4","0.06","96.95" +"Current Problems in Cancer: Case Reports","2666-6219","2666-6219","ONCOLOGY","('ESCI',)","50","0.2","Q4","0.06","94.55" +"Dixit","1688-3497","0797-3691","COMMUNICATION","('ESCI',)","33","0.2","Q4","0.06","100.00" +"Educar em Revista","0104-4060","1984-0411","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","410","0.2","Q4","0.06","84.89" +"Education et Francophonie","0849-1089","1916-8659","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","85","0.2","Q4","0.06","44.64" +"GRUPPENPSYCHOTHERAPIE UND GRUPPENDYNAMIK","0017-4947","2196-7989","PSYCHOLOGY, CLINICAL","('SSCI',)","68","0.2","Q4","0.06","4.69" +"Guncel Pediatri-Journal of Current Pediatrics","1304-9054","1308-6308","PEDIATRICS","('ESCI',)","73","0.2","Q4","0.06","0.00" +"Healthcare in Low-resource Settings","","2281-7824","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","20","0.2","Q4","0.06","97.32" +"Hungarian Cultural Studies","2471-965X","2471-965X","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","24","0.2","Q4","0.06","100.00" +"Indian Anaesthetists Forum","2589-7934","0973-0311","ANESTHESIOLOGY","('ESCI',)","28","0.2","Q4","0.06","23.68" +"International Journal of Biomedicine","2158-0510","2158-0529","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","100","0.2","Q4","0.06","98.59" +"International Journal of Ecological Economics & Statistics","0973-1385","0973-1385","ECONOMICS","('ESCI',)","75","0.2","Q4","0.06","0.00" +"International Journal of Noncommunicable Diseases","2468-8827","2468-8835","('MEDICINE, GENERAL & INTERNAL', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH')","('ESCI', 'ESCI')","143","0.2","('Q4', 'Q4')","0.06","90.59" +"INTERNATIONAL SURGERY","0020-8868","","SURGERY","('SCIE',)","1,021","0.2","Q4","0.06","88.20" +"IPRI Journal","1684-9787","1684-9809","INTERNATIONAL RELATIONS","('ESCI',)","34","0.2","Q4","0.06","100.00" +"Journal of Horticultural Sciences","0973-354X","2582-4899","HORTICULTURE","('ESCI',)","63","0.2","Q4","0.06","62.21" +"Journal of Neuroanaesthesiology and Critical Care","2348-0548","2348-926X","('ANESTHESIOLOGY', 'CLINICAL NEUROLOGY', 'CRITICAL CARE MEDICINE')","('ESCI', 'ESCI', 'ESCI')","82","0.2","('Q4', 'Q4', 'Q4')","0.06","100.00" +"Journal of Pediatric Epilepsy","2146-457X","2146-4588","PEDIATRICS","('ESCI',)","51","0.2","Q4","0.06","3.17" +"Journal of Social Inclusion","1836-8808","1836-8808","SOCIAL ISSUES","('ESCI',)","105","0.2","Q4","0.06","0.00" +"Journal of the Chinese Society of Mechanical Engineers","0257-9731","","ENGINEERING, MECHANICAL","('SCIE',)","127","0.2","Q4","0.06","0.00" +"Jurnal Ilmu dan Teknologi Kelautan Tropis","2087-9423","2085-6695","MARINE & FRESHWATER BIOLOGY","('ESCI',)","104","0.2","Q4","0.06","88.37" +"Langages","0458-726X","1958-9549","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","308","0.2","('N/A', 'Q4')","0.06","0.00" +"Lesnoy Zhurnal-Forestry Journal","0536-1036","0536-1036","FORESTRY","('ESCI',)","118","0.2","Q4","0.06","73.53" +"Medecine Nucleaire-Imagerie Fonctionnelle et Metabolique","0928-1258","1878-6820","PATHOLOGY","('SCIE',)","75","0.2","Q4","0.06","15.38" +"Medical Journal of Bakirkoy","1305-9319","1305-9327","MEDICINE, GENERAL & INTERNAL","('ESCI',)","90","0.2","Q4","0.06","98.90" +"Medicina Balear","1579-5853","2255-0569","MEDICINE, GENERAL & INTERNAL","('ESCI',)","81","0.2","Q4","0.06","0.00" +"METALLURGIA ITALIANA","0026-0843","0026-0843","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","283","0.2","Q4","0.06","0.00" +"Methaodos-Revista de Ciencias Sociales","2340-8413","2340-8413","SOCIOLOGY","('ESCI',)","40","0.2","Q4","0.06","96.39" +"Neurology Asia","1823-6138","1823-6138","CLINICAL NEUROLOGY","('SCIE',)","286","0.2","Q4","0.06","0.00" +"NMIMS Management Review","0971-1023","0971-1023","MANAGEMENT","('ESCI',)","46","0.2","Q4","0.06","6.45" +"PAEDIATRIE UND PAEDOLOGIE","0030-9338","1613-7558","PEDIATRICS","('ESCI',)","41","0.2","Q4","0.06","51.04" +"Periodico Tche Quimica","1806-0374","2179-0302","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","138","0.2","Q4","0.06","0.00" +"Problemy Zarzadzania-Management Issues","1644-9584","2300-8792","MANAGEMENT","('ESCI',)","117","0.2","Q4","0.06","97.26" +"Proceedings of the National Academy of Sciences of Belarus-Agrarian Series","1817-7204","1817-7239","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","27","0.2","Q4","0.06","98.86" +"Recherches Sociographiques","0034-1282","0034-1282","SOCIOLOGY","('ESCI',)","91","0.2","Q4","0.06","0.00" +"Revista Agrogeoambiental","1984-428X","2316-1817","AGRONOMY","('ESCI',)","110","0.2","Q4","0.06","75.51" +"Revista Colombiana de Ciencias Sociales","2216-1201","2216-1201","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","74","0.2","Q4","0.06","95.60" +"Revista Cubana de Ingenieria","2223-1781","2223-1781","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","24","0.2","Q4","0.06","0.00" +"Revista Praxis Educacional","1809-0249","2178-2679","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","69","0.2","Q4","0.06","95.65" +"RISUS-Journal on Innovation and Sustainability","2179-3565","2179-3565","MANAGEMENT","('ESCI',)","79","0.2","Q4","0.06","84.00" +"SaberEs","1852-4184","1852-4222","ECONOMICS","('ESCI',)","27","0.2","Q4","0.06","0.00" +"Srpski Arhiv za Celokupno Lekarstvo","0370-8179","0370-8179","MEDICINE, GENERAL & INTERNAL","('SCIE',)","553","0.2","Q4","0.06","91.03" +"Transactions of the Korean Society of Mechanical Engineers A","1226-4873","2288-5226","ENGINEERING, MECHANICAL","('ESCI',)","333","0.2","Q4","0.06","0.00" +"Turk Osteoporoz Dergisi-Turkish Journal of Osteoporosis","2147-2653","2147-2653","RHEUMATOLOGY","('ESCI',)","61","0.2","Q4","0.06","100.00" +"Turkish Journal of Endocrinology and Metabolism","1301-2193","1301-2193","ENDOCRINOLOGY & METABOLISM","('ESCI',)","83","0.2","Q4","0.06","61.63" +"Tydskrif Vir Geesteswetenskappe","0041-4751","","SOCIAL ISSUES","('SSCI',)","108","0.2","Q4","0.06","85.53" +"VOPROSY PSIKHOLOGII","0042-8841","0042-8841","PSYCHOLOGY, EDUCATIONAL","('SSCI',)","224","0.2","Q4","0.06","0.00" +"WasserWirtschaft","0043-0978","2192-8762","WATER RESOURCES","('SCIE',)","159","0.2","Q4","0.06","0.00" +"Alergologia Polska-Polish Journal of Allergology","2353-3854","2353-3854","ALLERGY","('ESCI',)","42","0.2","Q4","0.05","94.68" +"Allergy Asthma & Respiratory Disease","2288-0402","2288-0410","ALLERGY","('ESCI',)","82","0.2","Q4","0.05","100.00" +"Annals of Indian Psychiatry","2588-8358","2588-8366","PSYCHIATRY","('ESCI',)","66","0.2","Q4","0.05","81.44" +"ANTHROPOS","0257-9774","","ANTHROPOLOGY","('SSCI',)","510","0.2","Q4","0.05","0.00" +"Anuario Turismo y Sociedad","0120-7555","2346-206X","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","45","0.2","Q4","0.05","98.73" +"Atelie Geografico","1982-1956","1982-1956","GEOGRAPHY","('ESCI',)","50","0.2","Q4","0.05","19.38" +"ATW-INTERNATIONAL JOURNAL FOR NUCLEAR POWER","1431-5254","","NUCLEAR SCIENCE & TECHNOLOGY","('SCIE',)","77","0.2","Q4","0.05","0.00" +"Avances en Psicologia Latinoamericana","1794-4724","2145-4515","PSYCHOLOGY","('ESCI',)","205","0.2","Q4","0.05","97.50" +"BIOTECHNOLOGY LAW REPORT","0730-031X","1557-8704","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","68","0.2","Q4","0.05","0.00" +"Bollettino di Storia delle Scienze Matematiche","0392-4432","1724-1650","('HISTORY & PHILOSOPHY OF SCIENCE', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('AHCI, SCIE', 'SCIE')","27","0.2","('Q4', 'Q4')","0.05","0.00" +"Bulletin of Russian State Medical University","2500-1094","2542-1204","MEDICINE, GENERAL & INTERNAL","('ESCI',)","101","0.2","Q4","0.05","88.89" +"Ciencia Politica","1909-230X","2389-7481","POLITICAL SCIENCE","('ESCI',)","76","0.2","Q4","0.05","84.48" +"COLOPROCTOLOGY","0174-2442","1615-6730","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","113","0.2","Q4","0.05","4.65" +"Current Respiratory Medicine Reviews","1573-398X","1875-6387","RESPIRATORY SYSTEM","('ESCI',)","116","0.2","Q4","0.05","1.72" +"E-Ciencias de la Informacion","1659-4142","1659-4142","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","35","0.2","Q4","0.05","98.18" +"Egyptian Journal of Pediatric Allergy and Immunology","1687-1642","2314-8934","ALLERGY","('ESCI',)","30","0.2","Q4","0.05","21.43" +"FISHERY TECHNOLOGY","0015-3001","0015-3001","FISHERIES","('ESCI',)","248","0.2","Q4","0.05","0.92" +"Gesundheitsoekonomie und Qualitaetsmanagement","1432-2625","1439-4049","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","71","0.2","Q4","0.05","5.00" +"Gynakologie","2731-7102","2731-7110","OBSTETRICS & GYNECOLOGY","('ESCI',)","146","0.2","Q4","0.05","11.00" +"H-ermes-Journal of Communication","2284-0753","2284-0753","COMMUNICATION","('ESCI',)","22","0.2","Q4","0.05","0.00" +"Historical Review-La Revue Historique","1790-3572","1791-7603","HISTORY","('AHCI',)","85","0.2","Q2","0.05","0.00" +"Hong Kong Journal of Radiology","2223-6619","2307-4620","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","53","0.2","Q4","0.05","98.70" +"Indian Journal of Respiratory Care","2277-9019","2321-4899","RESPIRATORY SYSTEM","('ESCI',)","64","0.2","Q4","0.05","67.39" +"Infektsiya i Immunitet","2220-7619","2313-7398","INFECTIOUS DISEASES","('ESCI',)","133","0.2","Q4","0.05","96.15" +"International Cardiovascular Research Journal","2251-9130","2251-9149","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","112","0.2","Q4","0.05","0.00" +"International Journal of Ecology & Development","0972-9984","0973-7308","ECOLOGY","('ESCI',)","62","0.2","Q4","0.05","0.00" +"Istanbul Iktisat Dergisi-Istanbul Journal of Economics","2602-4152","2602-3954","('BUSINESS, FINANCE', 'ECONOMICS')","('ESCI', 'ESCI')","21","0.2","('Q4', 'Q4')","0.05","36.26" +"Istanbul Medical Journal","2619-9793","2148-094X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","101","0.2","Q4","0.05","94.87" +"Journal for New Generation Sciences","1684-4998","1684-4998","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","42","0.2","Q4","0.05","0.00" +"JOURNAL OF ADVANCED APPLIED SCIENTIFIC RESEARCH","2454-3225","2454-3225","MULTIDISCIPLINARY SCIENCES","('ESCI',)","40","0.2","Q4","0.05","4.31" +"Journal of Clinical and Diagnostic Research","2249-782X","0973-709X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","11,041","0.2","Q4","0.05","98.53" +"Journal of Clinical Sciences","2468-6859","2408-7408","MEDICINE, GENERAL & INTERNAL","('ESCI',)","74","0.2","Q4","0.05","79.49" +"Journal of Contemporary Medical Sciences","2413-0516","2413-0516","MEDICINE, GENERAL & INTERNAL","('ESCI',)","119","0.2","Q4","0.05","88.89" +"Journal of the Practice of Cardiovascular Sciences","2395-5414","2454-2830","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","153","0.2","Q4","0.05","83.64" +"Jurnal Fizik Malaysia","0128-0333","0128-0333","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","13","0.2","Q4","0.05","0.00" +"LISTY CUKROVARNICKE A REPARSKE","1210-3306","1805-9708","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","84","0.2","Q4","0.05","0.00" +"Litera-Journal of Language Literature and Culture Studies","1304-0057","2602-2117","LANGUAGE & LINGUISTICS","('ESCI',)","34","0.2","","0.05","59.38" +"Loquens","2386-2637","2386-2637","LINGUISTICS","('ESCI',)","44","0.2","Q4","0.05","89.29" +"Makara Journal of Technology","2355-2786","2356-4539","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","73","0.2","Q4","0.05","98.15" +"Marine Intellectual Technologies","2073-7173","2073-7173","ENGINEERING, MARINE","('ESCI',)","175","0.2","Q4","0.05","0.00" +"Marmara Medical Journal","1309-9469","1309-9469","MEDICINE, GENERAL & INTERNAL","('ESCI',)","118","0.2","Q4","0.05","98.27" +"MSKMuskuloskelettale Physiotherapie","2701-6986","2701-7818","REHABILITATION","('ESCI',)","14","0.2","Q4","0.05","0.00" +"New Armenian Medical Journal","1829-0825","1829-0825","MEDICINE, GENERAL & INTERNAL","('ESCI',)","57","0.2","Q4","0.05","0.00" +"Noesis-Revista de Ciencias Sociales y Humanidades","0188-9834","2395-8669","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","36","0.2","Q4","0.05","98.00" +"Optica Pura y Aplicada","0030-3917","2171-8814","OPTICS","('ESCI',)","118","0.2","Q4","0.05","93.33" +"Papeles de Poblacion","1405-7425","1405-7425","DEMOGRAPHY","('SSCI',)","253","0.2","Q4","0.05","38.16" +"PERIODICUM BIOLOGORUM","0031-5362","","BIOLOGY","('SCIE',)","385","0.2","Q4","0.05","91.11" +"Perspectivas em Ciencia da Informacao","1413-9936","1981-5344","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","246","0.2","Q4","0.05","89.36" +"Physical and Chemical Aspects of the Study of Clusters Nanostructures and Nanomaterials","2226-4442","2658-4360","('NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, ATOMIC, MOLECULAR & CHEMICAL', 'PHYSICS, CONDENSED MATTER')","('ESCI', 'ESCI', 'ESCI')","116","0.2","('Q4', 'Q4', 'Q4')","0.05","97.59" +"Pielegniarstwo Chirurgiczne i Angiologiczne-Surgical and Vascular Nursing","1897-3116","2084-9850","NURSING","('ESCI',)","59","0.2","Q4","0.05","0.00" +"Postepy Higieny I Medycyny Doswiadczalnej","0032-5449","1732-2693","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","1,298","0.2","Q4","0.05","95.95" +"PROGRESS IN BIOCHEMISTRY AND BIOPHYSICS","1000-3282","1000-3282","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'BIOPHYSICS')","('SCIE', 'SCIE')","384","0.2","('Q4', 'Q4')","0.05","0.00" +"Progress in Superconductivity and Cryogenics","1229-3008","2287-6251","PHYSICS, APPLIED","('ESCI',)","94","0.2","Q4","0.05","0.00" +"Recherche en Soins Infirmiers","0297-2964","2271-8362","NURSING","('ESCI',)","147","0.2","Q4","0.05","2.63" +"Research in Cardiovascular Medicine","2251-9572","2251-9580","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","161","0.2","Q4","0.05","100.00" +"Retail and Marketing Review","2708-3209","2708-3209","BUSINESS","('ESCI',)","30","0.2","Q4","0.05","0.00" +"Revista Brasileira de Inovacao","1677-2504","2178-2822","BUSINESS","('ESCI',)","84","0.2","Q4","0.05","84.91" +"REVISTA CIENTIFICA-FACULTAD DE CIENCIAS VETERINARIAS","0798-2259","","VETERINARY SCIENCES","('SCIE',)","210","0.2","Q4","0.05","88.69" +"Revista Colombiana de Bioetica","1900-6896","2590-9452","ETHICS","('ESCI',)","29","0.2","Q4","0.05","75.56" +"Revista Colombiana de Sociologia","0120-159X","2256-5485","SOCIOLOGY","('ESCI',)","131","0.2","Q4","0.05","15.12" +"Revista Comunicacion","0379-3974","1659-3820","BIOLOGY","('ESCI',)","36","0.2","Q4","0.05","2.63" +"Revista Corpoica-Ciencia y Tecnologia Agropecuaria","0122-8706","2500-5308","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","117","0.2","Q4","0.05","94.48" +"Revista Cubana de Fisica","0253-9268","2224-7939","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","50","0.2","Q4","0.05","0.00" +"Revista de Antropologia Social","1131-558X","1988-2831","ANTHROPOLOGY","('ESCI',)","147","0.2","Q4","0.05","93.33" +"Revista de Nefrologia Dialisis y Trasplante","0326-3428","2346-8548","UROLOGY & NEPHROLOGY","('SCIE',)","37","0.2","Q4","0.05","0.00" +"Revista Digital de Derecho Administrativo","2145-2946","2145-2946","LAW","('ESCI',)","78","0.2","Q4","0.05","89.39" +"Revista La Propiedad Inmaterial","1657-1959","2346-2116","LAW","('ESCI',)","29","0.2","Q4","0.05","100.00" +"RHODORA","0035-4902","1938-3401","PLANT SCIENCES","('SCIE',)","338","0.2","Q4","0.05","0.00" +"Spisanie Na B Lgarskoto Geologichesko Druzhestov-Review of the Bulgarian Geological Society","0007-3938","1314-8680","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","87","0.2","Q4","0.05","0.00" +"St Petersburg Polytechnic University Journal-Physics and Mathematics","2405-7223","2405-7223","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","94","0.2","Q4","0.05","0.00" +"Sun Yat-sen Journal of Humanities","1024-3631","","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","17","0.2","","0.05","0.00" +"THERAPEUTISCHE UMSCHAU","0040-5930","1664-2864","MEDICINE, GENERAL & INTERNAL","('ESCI',)","264","0.2","Q4","0.05","0.00" +"Trabajo Social","0123-4986","2256-5493","SOCIAL WORK","('ESCI',)","53","0.2","Q4","0.05","76.67" +"Transactions of the Korean Society of Mechanical Engineers B","1226-4881","1226-4881","ENGINEERING, MECHANICAL","('ESCI',)","134","0.2","Q4","0.05","0.00" +"TROPICAL AGRICULTURE","0041-3216","0041-3216","AGRONOMY","('ESCI',)","300","0.2","Q4","0.05","1.10" +"Turkish Journal of Intensive Care-Turk Yogun Bakim Dergisi","2602-2974","2602-2974","CRITICAL CARE MEDICINE","('ESCI',)","52","0.2","Q4","0.05","100.00" +"Universa Medicina","1907-3062","2407-2230","MEDICINE, GENERAL & INTERNAL","('ESCI',)","81","0.2","Q4","0.05","60.78" +"University of Toronto Journal of Undergraduate Life Sciences","1911-8899","1911-8899","BIOLOGY","('ESCI',)","6","0.2","Q4","0.05","76.47" +"University Politehnica of Bucharest Scientific Bulletin Series C-Electrical Engineering and Computer Science","2286-3540","2286-3559","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","147","0.2","Q4","0.05","0.00" +"Virtualidad Educacion y Ciencia","1853-6530","1853-6530","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","36","0.2","Q4","0.05","0.00" +"WEST INDIAN MEDICAL JOURNAL","0043-3144","2309-5830","MEDICINE, GENERAL & INTERNAL","('SCIE',)","775","0.2","Q4","0.05","0.74" +"ZEITSCHRIFT FUR BIBLIOTHEKSWESEN UND BIBLIOGRAPHIE","0044-2380","1864-2950","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","29","0.2","Q4","0.05","0.00" +"AKTUELLE RHEUMATOLOGIE","0341-051X","1438-9940","RHEUMATOLOGY","('SCIE',)","74","0.2","Q4","0.04","1.52" +"Anesthesie & Reanimation","2352-5800","2352-5819","ANESTHESIOLOGY","('ESCI',)","135","0.2","Q4","0.04","53.74" +"Apuntes del CENES","0120-3053","2256-5779","ECONOMICS","('ESCI',)","51","0.2","Q4","0.04","96.30" +"Archivos de Medicina","1657-320X","2339-3874","MEDICINE, GENERAL & INTERNAL","('ESCI',)","172","0.2","Q4","0.04","85.54" +"Areas-Revista Internacional de Ciencias Sociales","0211-6707","1989-6190","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","49","0.2","Q4","0.04","92.00" +"Argumentos-Revista de Filosofia","1984-4247","1984-4255","PHILOSOPHY","('ESCI',)","104","0.2","","0.04","83.70" +"Bibliothek Forschung und Praxis","0341-4183","1865-7648","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","78","0.2","Q4","0.04","100.00" +"BUNSEKI KAGAKU","0525-1931","","CHEMISTRY, ANALYTICAL","('SCIE',)","369","0.2","Q4","0.04","21.89" +"Byulleten Sibirskoy Meditsiny","1682-0363","1819-3684","MEDICINE, GENERAL & INTERNAL","('ESCI',)","147","0.2","Q4","0.04","98.60" +"Casopis za Ekonomiju i Trzisne Komunikacije","2232-8823","2232-9633","BUSINESS","('ESCI',)","33","0.2","Q4","0.04","68.47" +"Ciencia UNEMI","1390-4272","2528-7737","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","38","0.2","Q4","0.04","55.56" +"Comunidad y Salud","1690-3293","1690-3293","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","30","0.2","Q4","0.04","0.00" +"COR ET VASA","0010-8650","1803-7712","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","259","0.2","Q4","0.04","93.82" +"Derecho Penal y Criminologia","0121-0483","2346-2108","LAW","('ESCI',)","33","0.2","Q4","0.04","86.96" +"Educacion Fisica y Ciencia","1514-0105","2314-2561","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","78","0.2","Q4","0.04","93.60" +"Egyptian Journal of Chest Diseases and Tuberculosis","0422-7638","2090-9950","RESPIRATORY SYSTEM","('ESCI',)","489","0.2","Q4","0.04","93.18" +"Ekonomista","0013-3205","2299-6184","ECONOMICS","('ESCI',)","68","0.2","Q4","0.04","52.05" +"Elektrotehniski Vestnik","0013-5852","2232-3236","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","88","0.2","Q4","0.04","0.00" +"Espaces-Populations-Societes","0755-7809","2104-3752","GEOGRAPHY","('ESCI',)","91","0.2","Q4","0.04","68.52" +"GEMATOLOGIYA I TRANSFUZIOLOGIYA","0234-5730","","HEMATOLOGY","('SCIE',)","59","0.2","Q4","0.04","85.71" +"Glasnik Hemicara i Tehnologa Bosne i Hercegovine","0367-4444","2232-7266","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","47","0.2","Q4","0.04","63.64" +"Hidrobiologica","0188-8897","0188-8897","MARINE & FRESHWATER BIOLOGY","('SCIE',)","336","0.2","Q4","0.04","1.11" +"International Journal of Bridge Engineering","2241-7443","2241-7443","ENGINEERING, CIVIL","('ESCI',)","30","0.2","Q4","0.04","0.00" +"International Journal of Gastrointestinal Intervention","2636-0004","2636-0012","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","73","0.2","Q4","0.04","100.00" +"International Journal of Hepatobiliary and Pancreatic Diseases","2230-9012","2230-9012","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","12","0.2","Q4","0.04","88.89" +"Izvestiya Vuzov-Prikladnaya Khimiya i Biotekhnologiya","2227-2925","2500-1558","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","120","0.2","Q4","0.04","90.48" +"Journal of Food Safety and Food Quality-Archiv fur Lebensmittelhygiene","0003-925X","","('CHEMISTRY, APPLIED', 'FOOD SCIENCE & TECHNOLOGY', 'TOXICOLOGY')","('SCIE', 'SCIE', 'SCIE')","142","0.2","('Q4', 'Q4', 'Q4')","0.04","0.00" +"Journal of Food Science and Technology-Ukraine","2073-8684","2409-7004","FOOD SCIENCE & TECHNOLOGY","('ESCI',)","70","0.2","Q4","0.04","97.56" +"Journal of Head & Neck Physicians and Surgeons","2347-8128","2347-8128","MEDICINE, GENERAL & INTERNAL","('ESCI',)","32","0.2","Q4","0.04","16.67" +"Journal of Istanbul Faculty of Medicine-Istanbul Tip Fakultesi Dergisi","","1305-6441","MEDICINE, GENERAL & INTERNAL","('ESCI',)","68","0.2","Q4","0.04","57.43" +"Journal of the International Clinical Dental Research Organization","2231-0754","2231-5357","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","70","0.2","Q4","0.04","80.33" +"Journal of the Korean Magnetics Society","1598-5385","2233-6648","PHYSICS, APPLIED","('ESCI',)","58","0.2","Q4","0.04","0.00" +"Khyber Medical University Journal-KMUJ","2305-2643","2305-2651","MEDICINE, GENERAL & INTERNAL","('ESCI',)","75","0.2","Q4","0.04","91.80" +"Medecine Palliative","1636-6522","2213-0098","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","87","0.2","Q4","0.04","39.29" +"Medicni Perspektivi","2307-0404","2786-4804","MEDICINE, GENERAL & INTERNAL","('ESCI',)","77","0.2","Q4","0.04","91.86" +"Mediterranean Journal of Infection Microbes and Antimicrobials","2147-673X","2147-673X","INFECTIOUS DISEASES","('ESCI',)","48","0.2","Q4","0.04","96.58" +"MITTEILUNGEN DER OSTERREICHISCHEN GEOGRAPHISCHEN GESELLSCHAFT","0029-9138","0029-9138","GEOGRAPHY","('SSCI',)","105","0.2","Q4","0.04","45.16" +"Nigerian Journal of Basic and Clinical Sciences","0331-8540","2320-477X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","61","0.2","Q4","0.04","0.00" +"Odontoestomatologia","0797-0374","1688-9339","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","45","0.2","Q4","0.04","64.56" +"Pakistan Heart Journal","0048-2706","2227-9199","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","67","0.2","Q4","0.04","97.92" +"Phlebolymphology","1286-0107","1286-0107","PERIPHERAL VASCULAR DISEASE","('ESCI',)","87","0.2","Q4","0.04","0.00" +"RBNE-Revista Brasileira de Nutricao Esportiva","1981-9927","1981-9927","SPORT SCIENCES","('ESCI',)","202","0.2","Q4","0.04","0.00" +"Reflexion Politica","0124-0781","0124-0781","POLITICAL SCIENCE","('ESCI',)","78","0.2","Q4","0.04","92.68" +"Research Journal of Biotechnology","2278-4535","2278-4535","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('ESCI',)","525","0.2","Q4","0.04","0.00" +"Revista Ambiente Contabil","2176-9036","2176-9036","BUSINESS, FINANCE","('ESCI',)","57","0.2","Q4","0.04","97.46" +"Revista Ciencias Pedagogicas e Innovacion","1390-7603","1390-7603","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","29","0.2","Q4","0.04","91.36" +"Revista Medica de Rosario","0327-5019","1851-2135","MEDICINE, GENERAL & INTERNAL","('ESCI',)","14","0.2","Q4","0.04","0.00" +"Revista Portuguesa de Endocrinologia Diabetes e Metabolismo","1646-3439","1646-3439","ENDOCRINOLOGY & METABOLISM","('ESCI',)","46","0.2","Q4","0.04","53.25" +"Revue d Economie Regionale et Urbaine","0180-7307","2107-0865","ECONOMICS","('ESCI',)","145","0.2","Q4","0.04","0.00" +"Revue des Mondes Musulmans et de la Mediterranee","0997-1327","2105-2271","AREA STUDIES","('ESCI',)","144","0.2","Q4","0.04","94.55" +"SAMPE JOURNAL","0091-1062","","('ENGINEERING, MULTIDISCIPLINARY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","134","0.2","('Q4', 'Q4')","0.04","0.00" +"Trabajos y comunicaciones","0325-173X","2346-8971","HISTORY","('ESCI',)","33","0.2","Q2","0.04","100.00" +"TURK PSIKOLOJI DERGISI","1300-4433","1300-4433","PSYCHOLOGY, MULTIDISCIPLINARY","('SSCI',)","305","0.2","Q4","0.04","0.00" +"Viral Hepatit Dergisi-Viral Hepatitis Journal","1307-9441","2147-2939","MEDICINE, GENERAL & INTERNAL","('ESCI',)","101","0.2","Q4","0.04","100.00" +"Web Intelligence","2405-6456","2405-6464","COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE","('ESCI',)","105","0.2","Q4","0.04","1.28" +"Academy Review","2074-5354","2522-9745","('BUSINESS, FINANCE', 'ECONOMICS', 'MANAGEMENT')","('ESCI', 'ESCI', 'ESCI')","34","0.2","('Q4', 'Q4', 'Q4')","0.03","100.00" +"Agritech","0216-0455","2527-3825","AGRONOMY","('ESCI',)","91","0.2","Q4","0.03","82.35" +"Archives for Technical Sciences","1840-4855","2233-0046","ENGINEERING, GEOLOGICAL","('ESCI',)","25","0.2","Q4","0.03","58.49" +"Archives of Hellenic Medicine","1105-3992","1105-3992","MEDICINE, GENERAL & INTERNAL","('ESCI',)","161","0.2","Q4","0.03","0.00" +"Boletin de Ciencias de la Tierra","0120-3630","2357-3740","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","60","0.2","Q4","0.03","40.63" +"CAPjournal","1996-5621","1996-563X","ASTRONOMY & ASTROPHYSICS","('ESCI',)","18","0.2","Q4","0.03","3.70" +"Current Allergy & Clinical Immunology","1609-3607","1609-3607","ALLERGY","('ESCI',)","109","0.2","Q4","0.03","1.01" +"deSignis","1578-4223","2462-7259","LINGUISTICS","('ESCI',)","54","0.2","Q4","0.03","95.56" +"Geograficando","1850-1885","2346-898X","GEOGRAPHY","('ESCI',)","39","0.2","Q4","0.03","98.04" +"Guiniguada","0213-0610","2386-3374","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","24","0.2","Q4","0.03","10.87" +"Holos","1518-1634","1807-1600","MULTIDISCIPLINARY SCIENCES","('ESCI',)","307","0.2","Q4","0.03","43.18" +"Hrvatski Dijalektoloski Zbornik","0439-691X","2459-4849","LANGUAGE & LINGUISTICS","('ESCI',)","24","0.2","","0.03","91.43" +"IADIS-International Journal on Computer Science and Information Systems","1646-3692","1646-3692","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","47","0.2","Q4","0.03","0.00" +"Imagerie de la Femme","1776-9817","2214-8485","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","32","0.2","Q4","0.03","24.64" +"Inquietud Empresarial","0121-1048","2422-3220","BUSINESS","('ESCI',)","14","0.2","Q4","0.03","86.11" +"Izquierdas","0718-5049","0718-5049","POLITICAL SCIENCE","('ESCI',)","199","0.2","Q4","0.03","0.00" +"JOURNAL OF SYNTHETIC ORGANIC CHEMISTRY JAPAN","0037-9980","","CHEMISTRY, ORGANIC","('SCIE',)","371","0.2","Q4","0.03","0.00" +"Journal of the Japan Institute of Energy","0916-8753","1882-6121","ENERGY & FUELS","('ESCI',)","207","0.2","Q4","0.03","12.09" +"Mundo Agrario","1515-5994","1515-5994","SOCIOLOGY","('ESCI',)","120","0.2","Q4","0.03","100.00" +"NACC-Nova Acta Cientifica Compostelana Bioloxia","1130-9717","2340-0021","BIOLOGY","('ESCI',)","6","0.2","Q4","0.03","0.00" +"Ochrona Przed Korozja","0473-7733","2449-9501","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","74","0.2","Q4","0.03","0.00" +"Planlama-Planning","1300-7319","1300-7319","REGIONAL & URBAN PLANNING","('ESCI',)","100","0.2","Q4","0.03","0.00" +"Processes of Petrochemistry and Oil Refining","1726-4685","2519-2876","ENGINEERING, CHEMICAL","('ESCI',)","117","0.2","Q4","0.03","0.00" +"Recent Contributions to Physics","1563-0315","2663-2276","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","24","0.2","Q4","0.03","92.86" +"Revista Brasileira de Computacao Aplicada","2176-6649","2176-6649","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","44","0.2","Q4","0.03","96.20" +"Revista de Epidemiologia e Controle de Infeccao","2238-3360","2238-3360","INFECTIOUS DISEASES","('ESCI',)","60","0.2","Q4","0.03","84.71" +"Revista Educacion en Ingenieria","1900-8260","1900-8260","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","48","0.2","Q4","0.03","92.45" +"Revista Eletronica em Gestao Educacao e Tecnologia Ambiental","2236-1170","2236-1170","ENVIRONMENTAL STUDIES","('ESCI',)","170","0.2","Q4","0.03","92.11" +"Revista Evidenciacao Contabil & Financas","2318-1001","2318-1001","BUSINESS, FINANCE","('ESCI',)","43","0.2","Q4","0.03","25.00" +"Revista Geoaraguaia","1809-094X","2236-9716","GEOGRAPHY","('ESCI',)","23","0.2","Q4","0.03","0.00" +"Revista Ibero-Americana de Ciencia da Informacao","1983-5213","1983-5213","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","50","0.2","Q4","0.03","70.92" +"Sociedades Precapitalistas","2250-5121","2250-5121","HISTORY","('ESCI',)","8","0.2","Q2","0.03","100.00" +"SocietaMutamentoPolitica-Rivista Italiana di Sociologia","2038-3150","2038-3150","SOCIOLOGY","('ESCI',)","62","0.2","Q4","0.03","74.51" +"Suranaree Journal of Science and Technology","0858-849X","0858-849X","MULTIDISCIPLINARY SCIENCES","('ESCI',)","198","0.2","Q4","0.03","0.00" +"Territoire en Mouvement","1954-4863","1950-5698","GEOGRAPHY","('ESCI',)","33","0.2","Q4","0.03","67.65" +"TRENDS IN GLYCOSCIENCE AND GLYCOTECHNOLOGY","0915-7352","0915-7352","BIOCHEMISTRY & MOLECULAR BIOLOGY","('SCIE',)","168","0.2","Q4","0.03","0.00" +"Turkish Journal of Business Ethics","1308-4070","2149-8148","BUSINESS","('ESCI',)","18","0.2","Q4","0.03","55.26" +"Vestnik Tomskogo Gosudarstvennogo Universiteta-Upravlenie Vychislitelnaja Tehnika i Informatika-Tomsk State University Journal of Control and Computer Science","1998-8605","2311-2085","AUTOMATION & CONTROL SYSTEMS","('ESCI',)","58","0.2","Q4","0.03","0.00" +"Western Journal of Legal Studies","1927-9132","1927-9132","LAW","('ESCI',)","22","0.2","Q4","0.03","0.00" +"AFINIDAD","0001-9704","2339-9686","CHEMISTRY, MULTIDISCIPLINARY","('SCIE',)","182","0.2","Q4","0.02","0.00" +"Alergia Astma Immunologia","1427-3101","1427-3101","IMMUNOLOGY","('ESCI',)","33","0.2","Q4","0.02","0.00" +"BERICHTE UBER LANDWIRTSCHAFT","2196-5099","","AGRICULTURE, MULTIDISCIPLINARY","('SCIE',)","95","0.2","Q4","0.02","0.00" +"CATTLE PRACTICE","0969-1251","","VETERINARY SCIENCES","('SCIE',)","108","0.2","Q4","0.02","0.00" +"Chasqui-Revista Latinoamericana de Comunicacion","1390-1079","1390-924X","COMMUNICATION","('ESCI',)","174","0.2","Q4","0.02","0.00" +"Ciencia Ergo-Sum","1405-0269","2395-8782","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","101","0.2","Q4","0.02","42.73" +"Contaduria Universidad de Antioquia","0120-4203","2590-4604","BUSINESS, FINANCE","('ESCI',)","36","0.2","Q4","0.02","78.33" +"Contexto","1315-9453","2610-7902","LITERATURE","('ESCI',)","51","0.2","","0.02","0.00" +"Dalhousie Journal of Interdisciplinary Management","","1923-6530","MANAGEMENT","('ESCI',)","20","0.2","Q4","0.02","0.00" +"Deutsche Zeitschrift fur Akupunktur","0415-6412","1439-4359","INTEGRATIVE & COMPLEMENTARY MEDICINE","('ESCI',)","38","0.2","Q4","0.02","0.00" +"Em Questao","1807-8893","1808-5245","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","244","0.2","Q4","0.02","94.66" +"ETUDES PHILOSOPHIQUES","0014-2166","2101-0056","PHILOSOPHY","('AHCI',)","145","0.2","","0.02","0.00" +"Gecontec-Revista Internacional de Gestion del Conocimiento y la Tecnologia","2255-5684","2255-5684","MANAGEMENT","('ESCI',)","20","0.2","Q4","0.02","0.00" +"Genre Sexualite & Societe","2104-3736","2104-3736","WOMENS STUDIES","('ESCI',)","40","0.2","Q4","0.02","76.92" +"Geoambiente On-line","1679-9860","1679-9860","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","34","0.2","Q4","0.02","0.00" +"Indian Journal of Neurotrauma","0973-0508","2213-3739","NEUROSCIENCES","('ESCI',)","82","0.2","Q4","0.02","98.51" +"Infancias Imagenes","1657-9089","2665-511X","FAMILY STUDIES","('ESCI',)","42","0.2","Q4","0.02","61.40" +"Ingenieria UC","1316-6832","2610-8240","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","43","0.2","Q4","0.02","53.13" +"International Journal of Clinical and Experimental Medicine","1940-5901","1940-5901","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","5,496","0.2","Q4","0.02","0.00" +"Investigaciones Fenomenologicas","1885-1088","1885-1088","PHILOSOPHY","('ESCI',)","33","0.2","","0.02","0.00" +"Journal of Accounting Review","1018-1687","1018-1687","BUSINESS, FINANCE","('ESCI',)","10","0.2","Q4","0.02","0.00" +"Relaciones Internacionales","1515-3371","2314-2766","INTERNATIONAL RELATIONS","('ESCI',)","65","0.2","Q4","0.02","89.86" +"REUNIR-Revista de Administracao Contabilidade e Sustentabilidade","2237-3667","2237-3667","BUSINESS","('ESCI',)","107","0.2","Q4","0.02","0.00" +"Revista Administracao em Dialogo","2178-0080","2178-0080","MANAGEMENT","('ESCI',)","37","0.2","Q4","0.02","73.61" +"Revista Ciencias Administrativas","1414-0896","2318-0722","MANAGEMENT","('ESCI',)","63","0.2","Q4","0.02","53.25" +"Revista Colombiana de Cancerologia","0123-9015","2346-0199","ONCOLOGY","('ESCI',)","77","0.2","Q4","0.02","48.18" +"Revista Contabilidade e Controladoria-RC C","1984-6266","1984-6266","BUSINESS, FINANCE","('ESCI',)","40","0.2","Q4","0.02","0.00" +"Revista Cubana de Reumatologia","1606-5581","1817-5996","RHEUMATOLOGY","('ESCI',)","139","0.2","Q4","0.02","0.00" +"Revista de Transporte y Territorio","1852-7175","1852-7175","TRANSPORTATION","('ESCI',)","74","0.2","Q4","0.02","76.92" +"Revue d Anthropologie des Connaissances","1760-5393","1760-5393","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","183","0.2","Q4","0.02","35.77" +"Revue Internationale de Geomatique","1260-5875","2116-7060","REMOTE SENSING","('ESCI',)","28","0.2","Q4","0.02","33.33" +"South African Crime Quarterly-SACQ","1991-3877","1991-3877","CRIMINOLOGY & PENOLOGY","('ESCI',)","91","0.2","Q4","0.02","81.82" +"ZKG INTERNATIONAL","2366-1313","","('CONSTRUCTION & BUILDING TECHNOLOGY', 'MATERIALS SCIENCE, MULTIDISCIPLINARY')","('SCIE', 'SCIE')","133","0.2","('Q4', 'Q4')","0.02","0.00" +"Advances in Astronomy and Space Physics","2227-1481","2227-1481","ASTRONOMY & ASTROPHYSICS","('ESCI',)","18","0.2","Q4","0.01","0.00" +"Cuadernos de Historia del Derecho","1133-7613","1988-2521","HISTORY OF SOCIAL SCIENCES","('ESCI',)","40","0.2","Q4","0.01","90.00" +"Exercer-La Revue Francophone de Medecine Generale","0998-3953","1961-9138","MEDICINE, GENERAL & INTERNAL","('ESCI',)","138","0.2","Q4","0.01","0.00" +"Journal fur Mineralstoffwechsel & Muskuloskelettale Erkrankungen","2412-8260","2412-8287","ENDOCRINOLOGY & METABOLISM","('ESCI',)","5","0.2","Q4","0.01","29.63" +"Novedades en Poblacion","1817-4078","1817-4078","DEMOGRAPHY","('ESCI',)","57","0.2","Q4","0.01","0.00" +"Pensando Psicologia","1900-3099","2382-3984","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","34","0.2","Q4","0.01","91.67" +"Revista ENIAC Pesquisa","2316-2341","2316-2341","MANAGEMENT","('ESCI',)","12","0.2","Q4","0.01","25.49" +"Revista General de Derecho Administrativo","1696-9650","1696-9650","LAW","('ESCI',)","92","0.2","Q4","0.01","0.00" +"Revista General de Derecho Canonico y Derecho Eclesiastico del Estado","1696-9669","1696-9669","LAW","('ESCI',)","103","0.2","Q4","0.01","0.00" +"Revista General de Derecho Procesal","1696-9642","1696-9642","LAW","('ESCI',)","64","0.2","Q4","0.01","0.00" +"Revista Juridica de Castilla y Leon","1696-6759","2254-3805","LAW","('ESCI',)","31","0.2","Q4","0.01","3.13" +"RIBAGUA-Revista Iberoamericana del Agua","2386-3781","2529-8968","WATER RESOURCES","('ESCI',)","58","0.2","Q4","0.01","85.71" +"SA Pharmaceutical Journal","2221-5875","2220-1017","PHARMACOLOGY & PHARMACY","('ESCI',)","62","0.2","Q4","0.01","0.00" +"Spectrum","2162-3244","2162-3252","ETHNIC STUDIES","('ESCI',)","58","0.2","Q4","0.01","0.00" +"Administracao Publica e Gestao Social","2175-5787","2175-5787","PUBLIC ADMINISTRATION","('ESCI',)","96","0.2","Q4","0.00","8.20" +"Architect","1935-7001","1935-7001","ARCHITECTURE","('AHCI',)","80","0.2","","0.00","0.00" +"Filosofia Politica","0394-7297","0394-7297","PHILOSOPHY","('ESCI',)","69","0.2","","0.00","0.00" +"KENYON REVIEW","0163-075X","2327-8307","LITERARY REVIEWS","('AHCI',)","150","0.2","","0.00","0.00" +"Monteagudo","0580-6712","1989-6166","LITERATURE, ROMANCE","('ESCI',)","42","0.2","","0.00","0.00" +"PARIS REVIEW","0031-2037","0031-2037","LITERARY REVIEWS","('AHCI',)","176","0.2","","0.00","0.00" +"IRISH UNIVERSITY REVIEW","0021-1427","2047-2153","LITERARY REVIEWS","('AHCI',)","87","0.1","","3.37","0.00" +"ROMANCE QUARTERLY","0883-1157","1940-3216","LITERATURE, ROMANCE","('AHCI',)","49","0.1","","2.29","8.33" +"Anales de Literatura Espanola","0212-5889","2695-4257","LITERATURE, ROMANCE","('ESCI',)","25","0.1","","2.19","100.00" +"NINETEENTH-CENTURY FRENCH STUDIES","0146-7891","","LITERATURE, ROMANCE","('AHCI',)","103","0.1","","1.95","0.00" +"Milton Studies","0076-8820","2330-796X","POETRY","('AHCI',)","122","0.1","","1.80","0.00" +"WILLIAM CARLOS WILLIAMS REVIEW","0196-6286","1935-0244","POETRY","('ESCI',)","20","0.1","","1.77","0.00" +"GERMANIC REVIEW","0016-8890","1930-6962","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","137","0.1","","1.69","10.00" +"Perinola-Revista de Investigacion Quevediana","1138-6363","1138-6363","LITERATURE, ROMANCE","('AHCI',)","51","0.1","","1.66","96.15" +"Alea-Estudos Neolatinos","1517-106X","1807-0299","LITERATURE, ROMANCE","('AHCI',)","45","0.1","","1.48","89.77" +"AUSTRALIAN JOURNAL OF FRENCH STUDIES","0004-9468","2046-2913","LITERATURE, ROMANCE","('AHCI',)","76","0.1","","1.45","0.00" +"LIT-Literature Interpretation Theory","1043-6928","1545-5866","LITERARY THEORY & CRITICISM","('AHCI',)","78","0.1","","1.43","16.00" +"Publications of the English Goethe Society","0959-3683","1749-6284","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","39","0.1","","1.41","48.65" +"REVISTA DE LITERATURA","0034-849X","1988-4192","LITERATURE, ROMANCE","('AHCI',)","173","0.1","","1.40","94.81" +"HISPANIC REVIEW","0018-2176","1553-0639","LITERATURE, ROMANCE","('AHCI',)","221","0.1","","1.28","0.00" +"AMERICAN IMAGO","0065-860X","1085-7931","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","279","0.1","","1.26","0.00" +"AUSTRALIAN LITERARY STUDIES","0004-9697","1837-6479","LITERATURE, AFRICAN, AUSTRALIAN, CANADIAN","('AHCI',)","63","0.1","","1.24","85.96" +"Dicenda-Cuadernos de Filologia Hispanica","0212-2952","1988-2556","LITERATURE, ROMANCE","('ESCI',)","48","0.1","","1.22","93.02" +"CLASSICAL JOURNAL","0009-8353","2327-5812","CLASSICS","('AHCI',)","565","0.1","","1.08","0.00" +"Slovenska Literatura","0037-6973","0037-6973","LITERATURE, SLAVIC","('ESCI',)","64","0.1","","1.08","94.62" +"Frontiers of Narrative Studies","2509-4882","2509-4890","('LITERARY THEORY & CRITICISM', 'LITERATURE')","('ESCI', 'ESCI')","26","0.1","('N/A', 'N/A')","1.06","25.00" +"Atalanta-Revista de las Letras Barrocas","2340-1176","2340-1176","LITERATURE, ROMANCE","('ESCI',)","24","0.1","","1.05","0.00" +"BULLETIN OF HISPANIC STUDIES","1475-3839","1478-3398","LITERATURE, ROMANCE","('AHCI',)","243","0.1","","1.05","0.00" +"CAMBRIAN MEDIEVAL CELTIC STUDIES","1353-0089","1353-0089","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","40","0.1","","1.03","0.00" +"GLOTTA-ZEITSCHRIFT FUR GRIECHISCHE UND LATEINISCHE SPRACHE","0017-1298","2196-9043","CLASSICS","('AHCI',)","185","0.1","","1.01","0.00" +"Metacritic Journal for Comparative Studies and Theory","","2457-8827","LITERATURE","('ESCI',)","14","0.1","","1.00","77.65" +"VOLKSKUNDE","0042-8523","0042-8523","FOLKLORE","('AHCI',)","62","0.1","","1.00","0.00" +"Acta Classica","0065-1141","2227-538X","CLASSICS","('AHCI',)","101","0.1","","0.99","0.00" +"ESPRIT CREATEUR","0014-0767","1931-0234","LITERATURE, ROMANCE","('AHCI',)","145","0.1","","0.98","0.00" +"FORUM ITALICUM","0014-5858","2168-989X","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","61","0.1","('N/A', 'N/A')","0.96","10.16" +"ANALES CERVANTINOS","0569-9878","1988-8325","LITERATURE, ROMANCE","('AHCI',)","83","0.1","","0.90","97.78" +"Quaderns de Filologia-Estudis Literaris","1135-4178","2444-1457","LITERATURE, ROMANCE","('ESCI',)","20","0.1","","0.90","96.30" +"Primerjalna Knjizevnost","0351-1189","0351-1189","LITERATURE, SLAVIC","('AHCI',)","48","0.1","","0.89","100.00" +"JNT-JOURNAL OF NARRATIVE THEORY","1549-0815","1548-9248","LITERATURE","('AHCI',)","102","0.1","","0.87","0.00" +"Literatura Mexicana","0188-2546","2448-8216","LITERATURE, ROMANCE","('ESCI',)","31","0.1","","0.87","97.73" +"CRITICISM-A QUARTERLY FOR LITERATURE AND THE ARTS","0011-1589","1536-0342","('LITERARY THEORY & CRITICISM', 'LITERATURE')","('AHCI', 'AHCI')","411","0.1","('N/A', 'N/A')","0.86","0.00" +"Estudos de Literatura Brasileira Contemporanea","1518-0158","2316-4018","LITERATURE, ROMANCE","('ESCI',)","74","0.1","","0.86","93.06" +"YALE FRENCH STUDIES","0044-0078","","LITERATURE, ROMANCE","('AHCI',)","412","0.1","","0.86","0.00" +"PHILOSOPHY AND LITERATURE","0190-0013","1086-329X","('LITERARY THEORY & CRITICISM', 'LITERATURE')","('AHCI', 'AHCI')","210","0.1","('N/A', 'N/A')","0.85","0.00" +"Transformation-An International Journal of Holistic Mission Studies","0265-3788","1759-8931","RELIGION","('ESCI',)","97","0.1","","0.85","7.46" +"JOURNAL OF ASIAN HISTORY","0021-910X","0021-910X","('ASIAN STUDIES', 'HISTORY')","('AHCI', 'AHCI')","94","0.1","('N/A', 'Q3')","0.84","0.00" +"Bookbird-A Journal of International Childrens Literature","0006-7377","1918-6983","LITERATURE","('ESCI',)","95","0.1","","0.83","0.00" +"Literatura-Teoria Historia Critica","0123-5931","2256-5450","LITERARY THEORY & CRITICISM","('ESCI',)","32","0.1","","0.83","97.14" +"CAMBRIDGE QUARTERLY","0008-199X","1471-6836","('LITERARY THEORY & CRITICISM', 'LITERATURE')","('AHCI', 'AHCI')","70","0.1","('N/A', 'N/A')","0.82","40.00" +"Anclajes","0329-3807","1851-4669","LITERATURE","('ESCI',)","44","0.1","","0.81","100.00" +"Chinese Historical Review","1547-402X","2048-7827","HISTORY","('ESCI',)","71","0.1","Q3","0.79","3.57" +"Revista de Filologia Alemana","1133-0406","1988-2823","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('ESCI',)","12","0.1","","0.79","92.00" +"REVISTA CHILENA DE LITERATURA","0718-2295","0718-2295","LITERATURE, ROMANCE","('AHCI',)","140","0.1","","0.78","0.00" +"QUADERNI D ITALIANISTICA","0226-8043","0226-8043","LITERATURE, ROMANCE","('AHCI',)","38","0.1","","0.77","0.00" +"REVISTA DE ESTUDIOS HISPANICOS","0034-818X","0034-818X","LITERATURE, ROMANCE","('AHCI',)","96","0.1","","0.77","0.00" +"ZEITSCHRIFT FUR ANGLISTIK UND AMERIKANISTIK","0044-2305","2196-4726","LITERATURE","('AHCI',)","108","0.1","","0.77","11.94" +"ZEITSCHRIFT FUR SLAVISCHE PHILOLOGIE","0044-3492","2509-7482","LITERATURE, SLAVIC","('AHCI',)","35","0.1","","0.76","0.00" +"Agora-Estudos Classicos em Debate","0874-5498","","CLASSICS","('AHCI',)","22","0.1","","0.75","0.00" +"LEGACY","0748-4321","0748-4321","LITERATURE, AMERICAN","('AHCI',)","144","0.1","","0.75","0.00" +"Interdisciplinary Literary Studies","1524-8429","2161-427X","LITERARY THEORY & CRITICISM","('ESCI',)","80","0.1","","0.74","0.00" +"Milli Folklor","1300-3984","2146-8087","FOLKLORE","('AHCI',)","194","0.1","","0.72","39.22" +"Philologia Classica","0202-2532","2618-6969","CLASSICS","('ESCI',)","25","0.1","","0.72","100.00" +"COMPARATIVE AMERICAN STUDIES","1477-5700","1741-2676","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","75","0.1","","0.71","34.94" +"Visual Inquiry-Learning & Teaching Art","2045-5879","2045-5887","ART","('ESCI',)","23","0.1","","0.71","0.00" +"TWENTIETH CENTURY LITERATURE","0041-462X","2325-8101","LITERATURE","('AHCI',)","231","0.1","","0.70","0.00" +"WESTERN FOLKLORE","0043-373X","0043-373X","FOLKLORE","('AHCI',)","260","0.1","","0.70","0.00" +"International Journal of Practical Theology","1430-6921","1612-9768","RELIGION","('ESCI',)","72","0.1","","0.69","6.25" +"Acta Orientalia Academiae Scientiarum Hungaricae","1588-2667","0001-6446","('ASIAN STUDIES', 'HISTORY')","('AHCI', 'AHCI')","224","0.1","('N/A', 'Q3')","0.68","23.17" +"MLN","0026-7910","1080-6598","LITERARY THEORY & CRITICISM","('AHCI',)","700","0.1","","0.68","0.00" +"VICTORIAN POETRY","0042-5206","1530-7190","POETRY","('AHCI',)","160","0.1","","0.68","0.00" +"MARINERS MIRROR","0025-3359","2049-680X","HISTORY","('AHCI',)","213","0.1","Q3","0.67","12.50" +"Cuadernos de Filologia Clasica-Estudios Griegos e Indoeuropeos","1131-9070","1988-2637","CLASSICS","('ESCI',)","20","0.1","","0.66","93.33" +"Dialogues in Philosophy Mental and Neuro Sciences","2035-0031","2035-0031","PHILOSOPHY","('ESCI',)","25","0.1","","0.66","0.00" +"FRENCH REVIEW","0016-111X","2329-7131","LITERATURE, ROMANCE","('AHCI',)","176","0.1","","0.66","0.00" +"JOURNAL OF MODERN LITERATURE","0022-281X","1529-1464","LITERATURE","('AHCI',)","300","0.1","","0.66","0.00" +"Monatshefte","0026-9271","1934-2810","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('ESCI',)","148","0.1","","0.65","0.00" +"Philologus","0031-7985","2196-7008","CLASSICS","('AHCI',)","365","0.1","","0.65","13.21" +"SPIEGEL DER LETTEREN","0038-7479","","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","13","0.1","","0.65","0.00" +"Criticon","0247-381X","2272-9852","('LITERARY THEORY & CRITICISM', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","210","0.1","('N/A', 'N/A')","0.64","97.50" +"GREECE & ROME","0017-3835","1477-4550","CLASSICS","('AHCI',)","511","0.1","","0.64","36.25" +"Journal of Korean Religions","2093-7288","2167-2040","('ASIAN STUDIES', 'RELIGION')","('AHCI', 'AHCI')","51","0.1","('N/A', 'N/A')","0.64","0.00" +"REFORMATION & RENAISSANCE REVIEW","1462-2459","1743-1727","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","43","0.1","","0.64","22.22" +"Religion & Human Rights","1871-031X","1871-0328","RELIGION","('ESCI',)","47","0.1","","0.64","95.45" +"Trans-Form-Acao","0101-3173","1980-539X","PHILOSOPHY","('AHCI',)","147","0.1","","0.64","93.60" +"Childrens Literature Association Quarterly","0885-0429","1553-1201","LITERATURE","('ESCI',)","189","0.1","","0.63","0.00" +"European Journal of Jewish Studies","1025-9996","1872-471X","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","57","0.1","('Q3', 'N/A')","0.63","10.26" +"Zeitschrift fur Interkulturelle Germanistik","1869-3660","2198-0330","('CULTURAL STUDIES', 'LITERATURE, GERMAN, DUTCH, SCANDINAVIAN')","('ESCI', 'ESCI')","32","0.1","('Q4', 'N/A')","0.63","95.38" +"Bronte Studies","1474-8932","1745-8226","LITERATURE, BRITISH ISLES","('AHCI',)","92","0.1","","0.62","12.33" +"BULLETIN HISPANIQUE","0007-4640","","LITERATURE, ROMANCE","('AHCI',)","257","0.1","","0.62","0.00" +"DANCE CHRONICLE","0147-2526","1532-4257","DANCE","('AHCI',)","88","0.1","","0.62","9.09" +"NEW ZEALAND JOURNAL OF HISTORY","0028-8322","0028-8322","HISTORY","('AHCI',)","113","0.1","Q3","0.62","0.00" +"PAJ-A JOURNAL OF PERFORMANCE AND ART","1520-281X","1537-9477","THEATER","('AHCI',)","110","0.1","","0.62","0.00" +"PHILOLOGICAL QUARTERLY","0031-7977","","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","215","0.1","('N/A', 'N/A')","0.62","0.00" +"ZEITSCHRIFT DES DEUTSCHEN PALASTINA-VEREINS","0012-1169","","('ARCHAEOLOGY', 'ASIAN STUDIES')","('AHCI', 'AHCI')","156","0.1","('N/A', 'N/A')","0.62","0.00" +"EIGHTEENTH-CENTURY LIFE","0098-2601","1086-3192","LITERATURE","('AHCI',)","164","0.1","","0.61","1.64" +"Journal of Scottish Historical Studies","1748-538X","1755-1749","HISTORY","('ESCI',)","58","0.1","Q3","0.61","0.00" +"RILCE-Revista de Filologia Hispanica","0213-2370","2174-0917","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'SSCI', 'AHCI')","144","0.1","('N/A', 'Q4', 'N/A')","0.61","98.36" +"Steinbeck Review","1546-007X","1754-6087","LITERATURE, AMERICAN","('ESCI',)","35","0.1","","0.61","0.00" +"Worldviews-Global Religions Culture and Ecology","1363-5247","1568-5357","RELIGION","('ESCI',)","162","0.1","","0.61","21.62" +"Critical Studies in Mens Fashion","2050-070X","2050-0718","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","25","0.1","","0.60","0.00" +"Imago Temporis-Medium Aevum","1888-3931","2340-7778","('HISTORY', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI', 'AHCI')","50","0.1","('Q3', 'N/A')","0.60","61.22" +"Revista de Estudios Latinos","2255-5056","2255-5056","('CLASSICS', 'LANGUAGE & LINGUISTICS')","('ESCI', 'ESCI')","29","0.1","('N/A', 'N/A')","0.60","0.00" +"American, British and Canadian Studies","1841-1487","1841-964X","('LITERARY THEORY & CRITICISM', 'LITERATURE')","('ESCI', 'ESCI')","14","0.1","('N/A', 'N/A')","0.59","100.00" +"BEITRAGE ZUR GESCHICHTE DER DEUTSCHEN SPRACHE UND LITERATUR","0005-8076","1865-9373","('LANGUAGE & LINGUISTICS', 'LITERATURE, GERMAN, DUTCH, SCANDINAVIAN')","('AHCI', 'AHCI')","100","0.1","('N/A', 'N/A')","0.59","9.52" +"Estudios de Literatura Colombiana","0123-4412","0123-4412","LITERATURE, ROMANCE","('ESCI',)","35","0.1","","0.59","77.61" +"Journal of Posthuman Studies-Philosophy Technology Media","2472-4513","2471-4461","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","42","0.1","","0.59","0.00" +"Comparatist","0195-7678","1559-0887","LITERATURE","('ESCI',)","65","0.1","","0.58","0.00" +"STRUMENTI CRITICI","0039-2618","0039-2618","LITERARY THEORY & CRITICISM","('ESCI',)","36","0.1","","0.58","0.00" +"ANQ-A QUARTERLY JOURNAL OF SHORT ARTICLES NOTES AND REVIEWS","0895-769X","1940-3364","LITERATURE","('AHCI',)","101","0.1","","0.57","2.59" +"Journal of Chinese Cinemas","1750-8061","1750-807X","FILM, RADIO, TELEVISION","('AHCI',)","170","0.1","","0.56","5.41" +"VIERTELJAHRSHEFTE FUR ZEITGESCHICHTE","0042-5702","2196-7121","HISTORY","('AHCI',)","200","0.1","Q3","0.56","1.14" +"Horror Studies","2040-3275","2040-3283","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","43","0.1","","0.55","0.00" +"Journal of Modern Periodical Studies","1947-6574","2152-9272","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","36","0.1","","0.55","0.00" +"Romance Studies","0263-9904","1745-8153","LITERATURE, ROMANCE","('AHCI',)","54","0.1","","0.55","30.61" +"Arms & Armour","1741-6124","1749-6268","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","22","0.1","","0.54","8.82" +"BIBLIOTHEQUE D HUMANISME ET RENAISSANCE","0006-1999","","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","103","0.1","","0.54","0.00" +"CANADIAN LITERATURE","0008-4360","0008-4360","LITERATURE, AFRICAN, AUSTRALIAN, CANADIAN","('AHCI',)","143","0.1","","0.54","0.00" +"I Tatti Studies","0393-5949","2037-6731","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","80","0.1","","0.54","0.00" +"NOTES AND QUERIES","0029-3970","1471-6941","LITERATURE","('AHCI',)","380","0.1","","0.54","14.77" +"Womens Writing","0969-9082","1747-5848","LITERATURE","('ESCI',)","187","0.1","","0.54","28.38" +"Ecumenica-Performance and Religion","1942-4558","2578-2185","('RELIGION', 'THEATER')","('ESCI', 'ESCI')","4","0.1","('N/A', 'N/A')","0.53","0.00" +"Hobbes Studies","0921-5891","1875-0257","PHILOSOPHY","('ESCI',)","52","0.1","","0.53","6.90" +"Annales Universitatis Paedagogicae Cracoviensis-Studia Mathematica","2081-545X","2300-133X","MATHEMATICS","('ESCI',)","46","0.1","Q4","0.52","100.00" +"Lectora-Revista de Dones i Textualitat","1136-5781","2013-9470","LITERATURE","('ESCI',)","60","0.1","","0.52","95.92" +"Materiali e Discussioni per l Analisi dei Testi Classici","0392-6338","1724-1693","CLASSICS","('AHCI',)","83","0.1","","0.52","0.00" +"Monumenta Serica-Journal of Oriental Studies","0254-9948","2057-1690","ASIAN STUDIES","('ESCI',)","163","0.1","","0.52","3.92" +"Noveishaya Istoriya Rossii-Modern History of Russia","2219-9659","2309-7973","HISTORY","('ESCI',)","97","0.1","Q3","0.52","98.45" +"OSTERREICHISCHE ZEITSCHRIFT FUR VOLKSKUNDE","0029-9669","","FOLKLORE","('AHCI',)","15","0.1","","0.52","0.00" +"ARCADIA","0003-7982","1613-0642","LITERATURE","('AHCI',)","97","0.1","","0.51","13.51" +"ARION-A JOURNAL OF HUMANITIES AND THE CLASSICS","0095-5809","0095-5809","CLASSICS","('AHCI',)","178","0.1","","0.51","0.00" +"Britain and the World","2043-8567","2043-8575","HISTORY","('AHCI', 'SSCI')","33","0.1","Q3","0.51","0.00" +"Ming Qing Yanjiu","1724-8574","2468-4791","('ASIAN STUDIES', 'HISTORY')","('ESCI', 'ESCI')","15","0.1","('N/A', 'Q3')","0.51","5.88" +"CALIFORNIA HISTORY","0162-2897","2327-1485","HISTORY","('AHCI',)","210","0.1","Q3","0.50","0.00" +"Parliamentary History","0264-2824","1750-0206","HISTORY","('AHCI',)","221","0.1","Q3","0.50","16.87" +"LATOMUS","0023-8856","2294-4427","CLASSICS","('AHCI',)","444","0.1","","0.49","0.00" +"ANALES DE LA LITERATURA ESPANOLA CONTEMPORANEA","0272-1635","","LITERATURE, ROMANCE","('AHCI',)","82","0.1","","0.48","0.00" +"Australasian Drama Studies","0810-4123","","THEATER","('AHCI',)","45","0.1","","0.48","0.00" +"Canadian Journal of History-Annales Canadiennes d Histoire","0008-4107","2292-8502","HISTORY","('ESCI',)","73","0.1","Q3","0.48","90.91" +"Journal of Hindu Studies","1756-4255","1756-4263","RELIGION","('ESCI',)","62","0.1","","0.48","6.25" +"NEW ENGLAND QUARTERLY-A HISTORICAL REVIEW OF NEW ENGLAND LIFE AND LETTERS","0028-4866","1937-2213","('HISTORY', 'LITERATURE, AMERICAN')","('AHCI', 'AHCI')","309","0.1","('Q3', 'N/A')","0.48","0.00" +"Territorio Sociedad y Poder-Revista de Estudios Medievales","","2341-1163","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","5","0.1","","0.48","0.00" +"Archipel-Etudes interdisciplinaires sur le monde insulindien","0044-8613","2104-3655","ASIAN STUDIES","('AHCI',)","150","0.1","","0.47","0.00" +"CHASQUI-REVISTA DE LITERATURA LATINOAMERICANA","0145-8973","2327-4247","LITERARY REVIEWS","('AHCI',)","34","0.1","","0.47","0.00" +"Cuadernos de Estudios Gallegos","0210-847X","1988-8333","HISTORY","('ESCI',)","62","0.1","Q3","0.47","97.50" +"Ethnorema","1826-8803","1826-8803","LINGUISTICS","('ESCI',)","3","0.1","Q4","0.47","0.00" +"Revista Internacional de Educacion Musical","2307-4841","2307-4841","MUSIC","('ESCI',)","35","0.1","","0.47","86.36" +"Revista Notas Historicas y Geograficas","0717-036X","0719-4404","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","14","0.1","","0.47","0.00" +"Studies in Russian and Soviet Cinema","1750-3132","1750-3140","FILM, RADIO, TELEVISION","('ESCI',)","38","0.1","","0.47","15.38" +"CAMERA OBSCURA","0270-5346","1529-1510","FILM, RADIO, TELEVISION","('AHCI',)","275","0.1","","0.46","0.00" +"Iran and the Caucasus","1609-8498","1573-384X","HISTORY","('AHCI',)","106","0.1","Q3","0.46","5.38" +"Istoriya-Elektronnyi Nauchno-Obrazovatelnyi Zhurnal","2079-8784","2079-8784","HISTORY","('ESCI',)","310","0.1","Q3","0.46","0.00" +"Istoriya-History","0861-3710","1314-8524","HISTORY","('ESCI',)","13","0.1","Q3","0.46","0.00" +"J19-The Journal of Nineteenth-Century Americanists","2166-742X","2166-7438","LITERATURE, AMERICAN","('ESCI',)","95","0.1","","0.46","0.00" +"LETTERE ITALIANE","0024-1334","2035-6315","LITERATURE, ROMANCE","('AHCI',)","178","0.1","","0.46","0.00" +"Victoriographies-A Journal of Nineteenth-Century Writing 1790-1914","2044-2416","2044-2424","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","16","0.1","","0.46","0.00" +"Chinese Literature and Thought Today","2768-3524","2768-3532","ASIAN STUDIES","('AHCI',)","4","0.1","","0.45","0.00" +"Journal of Adaptation in Film & Performance","1753-6421","1753-643X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","29","0.1","","0.45","0.00" +"JOURNAL OF ARABIC LITERATURE","0085-2376","1570-064X","('ASIAN STUDIES', 'LITERATURE')","('AHCI', 'AHCI')","181","0.1","('N/A', 'N/A')","0.45","17.50" +"Rudn Journal of Russian History","2312-8674","2312-8690","HISTORY","('ESCI',)","31","0.1","Q3","0.45","98.99" +"Studia Theodisca","1593-2478","2385-2917","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('ESCI',)","5","0.1","","0.45","0.00" +"FABULA","0014-6242","1613-0464","FOLKLORE","('AHCI',)","101","0.1","","0.44","21.05" +"Janus-Estudios Sobre El Siglo de Oro","2254-7290","2254-7290","LITERATURE, ROMANCE","('ESCI',)","61","0.1","","0.44","98.28" +"JOURNAL OF MILITARY HISTORY","0899-3718","1543-7795","HISTORY","('AHCI',)","226","0.1","Q3","0.44","0.00" +"WELT DER SLAVEN-HALBJAHRESSCHRIFT FUR SLAVISTIK","0043-2520","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","39","0.1","","0.44","0.00" +"ACADIENSIS","0044-5851","1712-7432","HISTORY","('AHCI',)","184","0.1","Q3","0.43","0.00" +"Byzantinoslavica-Revue Internationale des Etudes Byzantines","0007-7712","0007-7712","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","67","0.1","","0.43","0.00" +"ENGLISH IN AFRICA","0376-8902","2071-7474","LANGUAGE & LINGUISTICS","('ESCI',)","91","0.1","","0.43","0.00" +"Estudios Historicos","1688-5317","1688-5317","HISTORY","('ESCI',)","27","0.1","Q3","0.43","0.00" +"Expressions maghrebines","1540-0085","2475-2401","LITERATURE, ROMANCE","('AHCI',)","17","0.1","","0.43","0.00" +"Historia Caribe","0122-8803","2322-6889","HISTORY","('ESCI',)","50","0.1","Q3","0.43","98.15" +"Journal of Law Finance and Accounting","2380-5005","2380-5013","('BUSINESS, FINANCE', 'LAW')","('ESCI', 'ESCI')","119","0.1","('Q4', 'Q4')","0.43","0.00" +"Journal of Scandinavian Cinema","2042-7891","2042-7905","FILM, RADIO, TELEVISION","('ESCI',)","41","0.1","","0.43","3.51" +"Museum History Journal","1936-9816","1936-9824","HISTORY","('ESCI',)","37","0.1","Q3","0.43","20.00" +"PERFORMANCE RESEARCH","1352-8165","1469-9990","THEATER","('AHCI',)","384","0.1","","0.43","24.05" +"Theology","0040-571X","2044-2696","RELIGION","('ESCI',)","120","0.1","","0.43","18.56" +"ARCHITECTURAL HISTORY","0066-622X","2059-5670","('ARCHITECTURE', 'HISTORY')","('AHCI', 'AHCI')","117","0.1","('N/A', 'Q3')","0.42","2.50" +"British and American Studies","1224-3086","2457-7715","LITERATURE","('ESCI',)","10","0.1","","0.42","68.97" +"Hiperboreea","2688-8211","2284-5666","HISTORY","('ESCI',)","10","0.1","Q3","0.42","3.23" +"History of Education & Childrens Literature","1971-1093","1971-1131","HISTORY","('AHCI',)","122","0.1","Q3","0.42","0.00" +"COMPARATIVE DRAMA","0010-4078","1936-1637","THEATER","('AHCI',)","185","0.1","","0.41","0.00" +"CONTEMPORARY LITERATURE","0010-7484","1548-9949","LITERATURE","('AHCI',)","329","0.1","","0.41","0.00" +"IBEROROMANIA","0019-0993","1865-9039","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","39","0.1","('N/A', 'N/A')","0.41","16.00" +"Louvain Studies","0024-6964","1783-161X","RELIGION","('ESCI',)","51","0.1","","0.41","0.00" +"Anales de Literatura Chilena","0717-6058","0719-0913","LITERATURE, ROMANCE","('AHCI',)","31","0.1","","0.40","0.00" +"Innes Review","0020-157X","1745-5219","RELIGION","('ESCI',)","48","0.1","","0.40","0.00" +"Italianistica-Rivista di letteratura Italiana","0391-3368","1724-1677","LITERATURE, ROMANCE","('AHCI',)","68","0.1","","0.40","0.00" +"Quest-Issues in Contemporary Jewish History","2037-741X","2037-741X","HISTORY","('ESCI',)","22","0.1","Q3","0.40","0.00" +"International Journal of English Studies","1578-7044","1989-6131","LANGUAGE & LINGUISTICS","('ESCI',)","206","0.1","","0.39","100.00" +"Jewish Historical Studies-Transactions of the Jewish Historical Society of England","0962-9696","2397-1290","HISTORY","('ESCI',)","16","0.1","Q3","0.39","100.00" +"Journal of Supreme Court History","1059-4329","1540-5818","HISTORY","('ESCI',)","49","0.1","Q3","0.39","4.44" +"Listy Filologicke","0024-4457","2570-9410","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","45","0.1","","0.39","0.00" +"Novyi Filologicheskii Vestnik-New Philological Bulletin","2072-9316","2072-9316","LITERATURE","('ESCI',)","70","0.1","","0.39","0.00" +"SVMMA-Revista de Cultures Medievals","","2014-7023","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","3","0.1","","0.39","0.00" +"Tradition & Discovery","1057-1027","2154-1566","PHILOSOPHY","('ESCI',)","49","0.1","","0.39","0.00" +"ZEITSCHRIFT FUR DIE NEUTESTAMENTLICHE WISSENSCHAFT UND DIE KUNDE DER ALTEREN KIRCHE","0044-2615","1613-009X","RELIGION","('AHCI',)","276","0.1","","0.39","5.13" +"African Historical Review","1753-2523","1753-2531","HISTORY","('ESCI',)","42","0.1","Q3","0.38","5.88" +"Agathos-An International Review of the Humanities and Social Sciences","2069-1025","2248-3446","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","33","0.1","","0.38","0.00" +"ARTIBUS ASIAE","0004-3648","","('ART', 'ASIAN STUDIES')","('AHCI', 'AHCI')","175","0.1","('N/A', 'N/A')","0.38","0.00" +"Asian Review of World Histories","2287-965X","2287-9811","HISTORY","('ESCI',)","34","0.1","Q3","0.38","11.54" +"ECUMENICAL REVIEW","0013-0796","1758-6623","RELIGION","('AHCI',)","183","0.1","","0.38","18.88" +"ESQ-A Journal of Nineteenth-Century American Literature and Culture","0093-8297","1935-021X","LITERATURE, AMERICAN","('AHCI',)","85","0.1","","0.38","0.00" +"ESTUDIOS FILOLOGICOS","0071-1713","0717-6171","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'SSCI', 'AHCI')","73","0.1","('N/A', 'Q4', 'N/A')","0.38","85.33" +"Frantsuzskii Ezhegodnik-Annuaire d Etudes Francaises","0235-4349","0235-4349","HISTORY","('ESCI',)","15","0.1","Q3","0.38","0.00" +"Historia Contemporanea","1130-2402","2340-0277","HISTORY","('ESCI',)","246","0.1","Q3","0.38","93.02" +"JOURNAL OF THE SOUTHWEST","0894-8410","2158-1371","HISTORY","('AHCI',)","116","0.1","Q3","0.38","0.00" +"Magallanica-Revista de Historia Moderna","2422-779X","2422-779X","HISTORY","('ESCI',)","36","0.1","Q3","0.38","0.00" +"Cuadernos Lirico","2263-2158","2262-8339","LITERATURE, ROMANCE","('ESCI',)","35","0.1","","0.37","50.75" +"International Journal of Chinese & Comparative Philosophy of Medicine","1386-6354","1386-6354","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","33","0.1","Q4","0.37","4.00" +"International Journal of Military History and Historiography","2468-3299","2468-3302","HISTORY","('ESCI',)","20","0.1","Q3","0.37","13.51" +"JOURNAL OF FEMINIST STUDIES IN RELIGION","8755-4178","1553-3913","RELIGION","('AHCI',)","242","0.1","","0.37","0.00" +"LIAS-Journal of Early Modern Intellectual Culture and its Sources","2033-4753","2033-5016","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","24","0.1","","0.37","0.00" +"Logos-Journal of the World Publishing Community","0957-9656","1878-4712","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","33","0.1","","0.37","2.17" +"On the Waterfront","1139-7365","1139-7365","ARCHITECTURE","('ESCI',)","36","0.1","","0.37","94.29" +"OUD HOLLAND","","1875-0176","ART","('AHCI',)","48","0.1","","0.37","0.00" +"American Nineteenth Century History","1466-4658","1743-7903","HISTORY","('AHCI',)","77","0.1","Q3","0.36","27.78" +"Anuario IEHS","0326-9671","2524-9339","HISTORY","('ESCI',)","111","0.1","Q3","0.36","0.00" +"Eirene-Studia Graeca et Latina","0046-1628","","CLASSICS","('AHCI',)","26","0.1","","0.36","0.00" +"FRENCH FORUM","0098-9355","1534-1836","LITERATURE, ROMANCE","('AHCI',)","80","0.1","","0.36","0.00" +"Nordisk Judaistik-Scandinavian Jewish Studies","0348-1646","2343-4929","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","24","0.1","","0.36","100.00" +"STUDIES IN AMERICAN FICTION","0091-8083","2158-5806","LITERATURE, AMERICAN","('AHCI',)","98","0.1","","0.36","0.00" +"STUDIES IN CANADIAN LITERATURE-ETUDES EN LITTERATURE CANADIENNE","0380-6995","1718-7850","LITERATURE, AFRICAN, AUSTRALIAN, CANADIAN","('AHCI',)","79","0.1","","0.36","0.00" +"Letras-Lima","0378-4878","2071-5072","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","32","0.1","","0.35","98.73" +"MUSEOLOGIA SCIENTIFICA","1123-265X","1123-265X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","51","0.1","","0.35","0.00" +"NEW YORK HISTORY","0146-437X","2328-8132","HISTORY","('AHCI',)","136","0.1","Q3","0.35","0.00" +"THEATRE HISTORY STUDIES","0733-2033","","THEATER","('AHCI',)","42","0.1","","0.35","0.00" +"Vestnik Sankt-Peterburgskogo Universiteta-Yazyk i Literatura","2541-9358","2541-9366","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","31","0.1","","0.35","99.28" +"Journal of Hebrew Scriptures","1203-1542","1203-1542","RELIGION","('ESCI',)","53","0.1","","0.34","100.00" +"LILI-ZEITSCHRIFT FUR LITERATURWISSENSCHAFT UND LINGUISTIK","0049-8653","2365-953X","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","78","0.1","('N/A', 'N/A')","0.34","86.89" +"SARE-Southeast Asian Review of English","0127-046X","0127-046X","LITERATURE","('ESCI',)","25","0.1","","0.34","0.00" +"Studia Universitatis Babes-Bolyai Philosophia","1221-8138","2065-9407","PHILOSOPHY","('ESCI',)","14","0.1","","0.34","0.00" +"Toronto Journal of Theology","0826-9831","1918-6371","RELIGION","('ESCI',)","44","0.1","","0.34","0.00" +"Anuari de Filologia-Literatures Contemporanies","2014-1416","2014-1416","LITERATURE","('ESCI',)","3","0.1","","0.33","94.12" +"Archaeology International","1463-1725","2048-4194","ARCHAEOLOGY","('ESCI',)","72","0.1","","0.33","100.00" +"Early Popular Visual Culture","1746-0654","1746-0662","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","94","0.1","","0.33","19.30" +"Eighteenth-Century Music","1478-5706","1478-5714","MUSIC","('AHCI',)","50","0.1","","0.33","30.00" +"Flora Infeksiyon Hastaliklari ve Klinik Mikrobiyoloji Dergisi","1300-932X","2602-2842","MICROBIOLOGY","('ESCI',)","73","0.1","Q4","0.33","100.00" +"HISTOIRE SOCIALE-SOCIAL HISTORY","0018-2257","0018-2257","HISTORY","('AHCI',)","183","0.1","Q3","0.33","0.00" +"JAMES JOYCE QUARTERLY","0021-4183","1938-6036","LITERATURE, BRITISH ISLES","('AHCI',)","223","0.1","","0.33","0.00" +"JOURNAL OF THE WARBURG AND COURTAULD INSTITUTES","0075-4390","2044-0014","ART","('AHCI',)","479","0.1","","0.33","0.00" +"Minerva-Revista de Filologia Clasica","0213-9634","2530-6480","CLASSICS","('ESCI',)","7","0.1","","0.33","100.00" +"Scandinavian Journal of the Old Testament","0901-8328","1502-7244","RELIGION","('AHCI',)","86","0.1","","0.33","16.07" +"Studia Ceranea","2084-140X","2084-140X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","34","0.1","","0.33","100.00" +"Vestnik Permskogo Universiteta-Istoriya-Perm University Herald-History","2219-3111","2219-3111","HISTORY","('ESCI',)","58","0.1","Q3","0.33","99.02" +"ARYS-Antiguedad Religiones y Sociedades","1575-166X","2173-6847","('HISTORY', 'RELIGION')","('ESCI', 'ESCI')","50","0.1","('Q3', 'N/A')","0.32","97.30" +"ETUDES ANGLAISES","0014-195X","0014-195X","LITERATURE","('AHCI',)","42","0.1","","0.32","0.00" +"Liturgy","0458-063X","1557-3001","RELIGION","('ESCI',)","43","0.1","","0.32","1.32" +"Midland History","0047-729X","1756-381X","HISTORY","('ESCI',)","53","0.1","Q3","0.32","48.08" +"REVISTA IBEROAMERICANA","0034-9631","2154-4794","LITERATURE, ROMANCE","('AHCI',)","248","0.1","","0.32","7.64" +"Rivista di Estetica","0035-6212","0035-6212","PHILOSOPHY","('AHCI',)","82","0.1","","0.32","11.46" +"Vestnik Sankt-Peterburgskogo Universiteta-Iskusstvovedenie","2221-3007","2542-2243","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","26","0.1","","0.32","100.00" +"ZEITSCHRIFT FUR DEUTSCHES ALTERTUM UND DEUTSCHE LITERATUR","0044-2518","0044-2518","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","105","0.1","","0.32","0.00" +"Aristonothos-Scritti per il Mediterraneo Antico","2037-4488","2385-2895","HISTORY","('ESCI',)","14","0.1","Q3","0.31","58.82" +"Arquitetura Revista","1808-5741","","ARCHITECTURE","('AHCI',)","56","0.1","","0.31","82.76" +"Estudios de Asia y Africa","0185-0164","2448-654X","HISTORY","('ESCI',)","58","0.1","Q3","0.31","100.00" +"HEYTHROP JOURNAL","0018-1196","1468-2265","('PHILOSOPHY', 'RELIGION')","('AHCI', 'AHCI')","227","0.1","('N/A', 'N/A')","0.31","13.22" +"HISTORICAL JOURNAL OF FILM RADIO AND TELEVISION","0143-9685","1465-3451","FILM, RADIO, TELEVISION","('AHCI',)","234","0.1","","0.31","30.51" +"Journal for Semitics","1013-8471","1013-8471","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","55","0.1","","0.31","0.00" +"Landscape Architecture and Art","2255-8632","2255-8640","ARCHITECTURE","('ESCI',)","28","0.1","","0.31","92.19" +"Religioni e Societa-Rivista di Scienze Sociali della Religione","0394-9397","1722-4705","RELIGION","('ESCI',)","13","0.1","","0.31","0.00" +"Spiritus-A Journal of Christian Spirituality","1533-1709","1535-3117","RELIGION","('AHCI',)","70","0.1","","0.31","0.00" +"Storinky Istoriyi-History Pages","2307-5244","2411-0647","HISTORY","('ESCI',)","18","0.1","Q3","0.31","81.30" +"CLIO-A JOURNAL OF LITERATURE HISTORY AND THE PHILOSOPHY OF HISTORY","0884-2043","0884-2043","('HISTORY', 'LITERARY THEORY & CRITICISM', 'LITERATURE', 'PHILOSOPHY')","('AHCI', 'AHCI', 'AHCI', 'AHCI')","117","0.1","('Q3', 'N/A', 'N/A', 'N/A')","0.30","0.00" +"Contemporary Europe-Sovremennaya Evropa","0201-7083","0201-7083","AREA STUDIES","('ESCI',)","83","0.1","Q4","0.30","65.16" +"East Asian Pragmatics","2055-7752","2055-7760","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","56","0.1","('N/A', 'Q4')","0.30","0.00" +"ESPES-The Slovak Journal of Aesthetics","","1339-1119","('ART', 'PHILOSOPHY')","('ESCI', 'ESCI')","13","0.1","('N/A', 'N/A')","0.30","0.00" +"Fontes Linguae Vasconum","0046-435X","2530-5832","('LANGUAGE & LINGUISTICS', 'LINGUISTICS', 'LITERATURE')","('ESCI', 'ESCI', 'ESCI')","50","0.1","('N/A', 'Q4', 'N/A')","0.30","100.00" +"International Journal for the Study of Skepticism","2210-5697","2210-5700","PHILOSOPHY","('ESCI',)","75","0.1","","0.30","6.00" +"Nova et Vetera-English Edition","1542-7315","2470-5861","RELIGION","('ESCI',)","113","0.1","","0.30","0.00" +"Review of Rabbinic Judaism","1568-4857","1570-0704","RELIGION","('ESCI',)","30","0.1","","0.30","2.70" +"Studia Historica-Historia Antigua","0213-2052","2530-4100","HISTORY","('ESCI',)","64","0.1","Q3","0.30","95.35" +"Volgogradskii Gosudarstvennyi Universitet-Vestnik-Seriya 4-Istoriya Regionovedenie Mezhdunarodnye Otnosheniya","1998-9938","2312-8704","HISTORY","('ESCI',)","80","0.1","Q3","0.30","97.45" +"Biblical Theology Bulletin","0146-1079","1945-7596","RELIGION","('ESCI',)","94","0.1","","0.29","11.29" +"CENTRAL ASIATIC JOURNAL","0008-9192","","ASIAN STUDIES","('AHCI',)","114","0.1","","0.29","0.00" +"CHINESE STUDIES IN HISTORY","0009-4633","1558-0407","('ASIAN STUDIES', 'HISTORY')","('AHCI', 'AHCI')","78","0.1","('N/A', 'Q3')","0.29","0.00" +"Enthymema-International Journal of Literary Criticism Literary Theory and Philosophy of Literature","2037-2426","2037-2426","LITERARY THEORY & CRITICISM","('ESCI',)","38","0.1","","0.29","90.11" +"Estudios Irlandeses","1699-311X","1699-311X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","38","0.1","","0.29","93.33" +"Gosudarstvo Religiya Tserkov v Rossii i za Rubezhom","2073-7203","2073-7211","RELIGION","('ESCI',)","99","0.1","","0.29","84.35" +"HUDEBNI VEDA","0018-7003","2694-6998","MUSIC","('AHCI',)","17","0.1","","0.29","0.00" +"Istorija 20 Veka","0352-3160","2560-3647","HISTORY","('ESCI',)","45","0.1","Q3","0.29","98.67" +"Jewish Film & New Media-An International Journal","2169-0324","2169-0332","FILM, RADIO, TELEVISION","('ESCI',)","13","0.1","","0.29","0.00" +"Medieval Encounters","1380-7854","1570-0674","('HISTORY', 'MEDIEVAL & RENAISSANCE STUDIES', 'RELIGION')","('ESCI', 'ESCI', 'ESCI')","197","0.1","('Q3', 'N/A', 'N/A')","0.29","14.58" +"Medizinhistorisches Journal","0025-8431","1611-4477","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","98","0.1","Q4","0.29","0.00" +"MUSICAL QUARTERLY","0027-4631","1741-8399","MUSIC","('AHCI',)","448","0.1","","0.29","14.29" +"Naharaim","1862-9148","1862-9156","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","25","0.1","","0.29","13.33" +"Northwestern Journal of International Law & Business","0196-3228","","LAW","('SSCI',)","197","0.1","Q4","0.29","0.00" +"Preternature-Critical and Historical Studies on the Preternatural","2161-2196","2161-2188","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","34","0.1","","0.29","0.00" +"Revista Complutense de Historia de America","1132-8312","1988-270X","HISTORY","('ESCI',)","84","0.1","Q3","0.29","94.29" +"Scriptura-International Journal of Bible Religion and Theology in Southern Africa","0254-1807","2305-445X","RELIGION","('ESCI',)","146","0.1","","0.29","92.00" +"Slovene-International Journal of Slavic Studies","2304-0785","2305-6754","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","49","0.1","","0.29","93.51" +"Studia et Documenta","1970-4879","","RELIGION","('ESCI',)","18","0.1","","0.29","0.00" +"Bulletin of the German Historical Institute","1048-9134","1048-9134","HISTORY","('ESCI',)","60","0.1","Q3","0.28","0.00" +"Conservation Science in Cultural Heritage","1974-4951","1973-9494","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","70","0.1","","0.28","0.00" +"De Arte","0004-3389","2471-4100","ART","('ESCI',)","50","0.1","","0.28","8.00" +"Filosofskii Zhurnal","2072-0726","2658-4883","PHILOSOPHY","('ESCI',)","51","0.1","","0.28","95.83" +"Ilahiyat Tetkikleri Dergisi-Journal of Ilahiyat Researches","2458-7508","2602-3946","RELIGION","('ESCI',)","21","0.1","","0.28","92.31" +"International Journal of the Platonic Tradition","1872-5082","1872-5473","PHILOSOPHY","('AHCI',)","35","0.1","","0.28","16.00" +"Judaica Bohemiae","0022-5738","0022-5738","RELIGION","('AHCI',)","19","0.1","","0.28","0.00" +"Modernist Cultures","2041-1022","1753-8629","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","49","0.1","","0.28","0.00" +"OVERLAND","0030-7416","","LITERARY REVIEWS","('AHCI',)","73","0.1","","0.28","0.00" +"Revista Estudos Institucionais-Journal of Institutional Studies","","2447-5467","LAW","('ESCI',)","73","0.1","Q4","0.28","92.68" +"THEATER HEUTE","0040-5507","0040-5507","THEATER","('AHCI',)","14","0.1","","0.28","0.00" +"Archiv fur Papyrusforschung und Verwandte Gebiete","0066-6459","1867-1551","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","32","0.1","","0.27","17.65" +"Aspasia","1933-2882","1933-2890","HISTORY","('ESCI',)","56","0.1","Q3","0.27","85.19" +"Balkan Journal of Philosophy","1313-888X","2367-5438","PHILOSOPHY","('ESCI',)","26","0.1","","0.27","0.00" +"Explorations in Renaissance Culture","0098-2474","2352-6963","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","32","0.1","","0.27","0.00" +"Folklor/Edebiyat-Folklore/Literature","1300-7491","2791-6057","('FOLKLORE', 'LITERATURE')","('ESCI', 'ESCI')","49","0.1","('N/A', 'N/A')","0.27","88.54" +"Getty Research Journal","1944-8740","2329-1249","ART","('AHCI',)","50","0.1","","0.27","0.00" +"Historia Unisinos","1519-3861","2236-1782","HISTORY","('AHCI',)","75","0.1","Q3","0.27","34.33" +"Hitit Theology Journal","","2757-6949","RELIGION","('ESCI',)","9","0.1","","0.27","81.67" +"Hypnos","1413-9138","2177-5346","CLASSICS","('ESCI',)","24","0.1","","0.27","0.00" +"Journal of Belgian History-Revue Belge d Histoire Contemporaine-Belgisch Tijdschrift voor Nieuwste Geschiedenis","0035-0869","0035-0869","HISTORY","('AHCI',)","22","0.1","Q3","0.27","0.00" +"Journal of French and Francophone Philosophy","1936-6280","2155-1162","PHILOSOPHY","('ESCI',)","60","0.1","","0.27","96.30" +"Language Context and Text-The Social Semiotics Forum","2589-7233","2589-7241","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('ESCI', 'ESCI')","58","0.1","('N/A', 'Q4')","0.27","0.00" +"NEW MEXICO HISTORICAL REVIEW","0028-6206","0028-6206","HISTORY","('AHCI',)","112","0.1","Q3","0.27","0.00" +"Revista de Musicologia","0210-1459","0210-1459","MUSIC","('ESCI',)","65","0.1","","0.27","0.00" +"Scripta-Revista Internacional de Literatura i Cultura Medieval i Moderna-International Journal of Medieval & Modern Literature & Culture","2340-4841","2340-4841","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","95","0.1","","0.27","68.25" +"Vestnik Tomskogo Gosudarstvennogo Universiteta Istoriya-Tomsk State University Journal of History","1998-8613","2311-2387","HISTORY","('ESCI',)","97","0.1","Q3","0.27","0.00" +"Yearbook of Phraseology","1868-632X","1868-6338","LANGUAGE & LINGUISTICS","('ESCI',)","27","0.1","","0.27","21.05" +"Anales de Literatura Hispanoamericana","0210-4547","1988-2351","LITERATURE, ROMANCE","('ESCI',)","55","0.1","","0.26","100.00" +"ESPRIT","0014-0759","2111-4579","LITERARY REVIEWS","('AHCI',)","313","0.1","","0.26","0.00" +"EUPHORION-ZEITSCHRIFT FUR LITERATURGESCHICHTE","0014-2328","0014-2328","LITERATURE","('AHCI',)","92","0.1","","0.26","0.00" +"Euphrosyne-Revista de Filologia Classica","0870-0133","2736-3082","CLASSICS","('AHCI',)","50","0.1","","0.26","0.00" +"Journal of Austrian Studies","2165-669X","2327-1809","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","21","0.1","","0.26","0.00" +"MODERN LANGUAGE REVIEW","0026-7937","2222-4319","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","423","0.1","('N/A', 'N/A')","0.26","0.00" +"MODERNA SPRAK","2000-3560","2000-3560","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","52","0.1","('N/A', 'N/A')","0.26","19.57" +"Philologica Canariensia","1136-3169","2386-8635","LANGUAGE & LINGUISTICS","('ESCI',)","20","0.1","","0.26","100.00" +"REVUE DES SCIENCES PHILOSOPHIQUES ET THEOLOGIQUES","0035-2209","2118-4445","('PHILOSOPHY', 'RELIGION')","('AHCI', 'AHCI')","140","0.1","('N/A', 'N/A')","0.26","0.00" +"ZEITSCHRIFT FUR EVANGELISCHE ETHIK","0044-2674","2197-912X","RELIGION","('AHCI',)","21","0.1","","0.26","1.96" +"ZEITSCHRIFT FUR PHILOSOPHISCHE FORSCHUNG","0044-3301","1439-2615","PHILOSOPHY","('AHCI',)","111","0.1","","0.26","0.00" +"ACTA POLONIAE HISTORICA","0001-6829","0001-6829","HISTORY","('AHCI',)","56","0.1","Q3","0.25","81.03" +"AMERICAN BOOK REVIEW","0149-9408","2153-4578","LITERATURE","('AHCI',)","45","0.1","","0.25","0.00" +"AMERICAN STUDIES IN SCANDINAVIA","0044-8060","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","22","0.1","","0.25","80.77" +"Bagh-e Nazar","1735-9635","2251-7197","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","153","0.1","","0.25","0.00" +"Bilimname","","2148-5860","RELIGION","('ESCI',)","58","0.1","","0.25","93.97" +"Hesperis-Tamuda","0018-1005","0018-1005","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","72","0.1","","0.25","0.00" +"Jung Journal-Culture & Psyche","1934-2039","1934-2047","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","35","0.1","","0.25","0.00" +"New Contree","0379-9867","0379-9867","HISTORY","('ESCI',)","32","0.1","Q3","0.25","34.48" +"Newman Studies Journal","1547-9080","2153-6945","RELIGION","('ESCI',)","37","0.1","","0.25","0.00" +"Person and the Challenges-The Journal of Theology Education Canon Law and Social Studies Inspired by Pope John Paul II","2083-8018","2083-8018","RELIGION","('ESCI',)","33","0.1","","0.25","98.86" +"Philippiniana Sacra","0115-9577","2651-7418","RELIGION","('ESCI',)","42","0.1","","0.25","0.00" +"REVUE D HISTOIRE ECCLESIASTIQUE","0035-2381","2294-1088","('HISTORY', 'RELIGION')","('AHCI', 'AHCI')","82","0.1","('Q3', 'N/A')","0.25","0.00" +"Ricerche di Storia Politica","1120-9526","1120-9526","HISTORY","('ESCI',)","25","0.1","Q3","0.25","0.00" +"Studia Semiotyczne","0137-6608","2544-073X","PHILOSOPHY","('ESCI',)","14","0.1","","0.25","0.00" +"Ancient Near Eastern Studies","1378-4641","1783-1326","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","36","0.1","","0.24","0.00" +"Buddhist-Christian Studies","0882-0945","1527-9472","RELIGION","('ESCI',)","68","0.1","","0.24","0.00" +"Comparative and Continental Philosophy","1757-0638","1757-0646","PHILOSOPHY","('ESCI',)","55","0.1","","0.24","6.78" +"Indian Historical Review","0376-9836","0975-5977","('ASIAN STUDIES', 'HISTORY')","('AHCI', 'AHCI')","81","0.1","('N/A', 'Q3')","0.24","0.00" +"INDOGERMANISCHE FORSCHUNGEN","0019-7262","1613-0405","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","117","0.1","('N/A', 'Q4')","0.24","15.56" +"Izvestiya Uralskogo Federalnogo Universiteta-Seriya 2-Gumanitarnye Nauki","2227-2283","2587-6929","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","134","0.1","","0.24","85.20" +"Journal of Early Modern Christianity","2196-6648","2196-6656","('HISTORY', 'RELIGION')","('ESCI', 'ESCI')","17","0.1","('Q3', 'N/A')","0.24","22.45" +"JOURNAL OF FILM AND VIDEO","0742-4671","1934-6018","FILM, RADIO, TELEVISION","('AHCI',)","122","0.1","","0.24","0.00" +"Journal of the Musical Arts in Africa","1812-1004","2070-626X","MUSIC","('AHCI',)","20","0.1","","0.24","0.00" +"SEFARAD","0037-0894","1988-320X","RELIGION","('AHCI',)","113","0.1","","0.24","97.44" +"Signa-Revista de la Asociacion Espanola de Semiotica","1133-3634","2254-9307","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","104","0.1","","0.24","66.67" +"STUDIES IN LATIN AMERICAN POPULAR CULTURE","0730-9139","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","27","0.1","","0.24","0.00" +"West 86th-A Journal of Decorative Arts Design History and Material Culture","2153-5531","2153-5558","ART","('ESCI',)","33","0.1","","0.24","0.00" +"Annali di Storia delle Universita Italiane","1127-8250","2724-5527","HISTORY","('ESCI',)","37","0.1","Q3","0.23","0.00" +"Australasian Catholic Record","0727-3215","1839-2458","RELIGION","('ESCI',)","22","0.1","","0.23","2.00" +"Ezhegodnik Finno-Ugorskikh Issledovanii-Yearbook of Finno-Ugric Studies","2224-9443","2311-0333","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","51","0.1","","0.23","0.00" +"HISTORICKY CASOPIS","0018-2575","0018-2575","HISTORY","('AHCI',)","93","0.1","Q3","0.23","96.97" +"INTERNATIONAL REVIEW OF THE AESTHETICS AND SOCIOLOGY OF MUSIC","0351-5796","0351-5796","MUSIC","('AHCI',)","70","0.1","","0.23","0.00" +"Journal of Language Literature and Culture","2051-2856","2051-2864","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","17","0.1","('N/A', 'N/A')","0.23","10.71" +"Netherlands Yearbook for History of Art-Nederlands Kunsthistorisch Jaarboek","0169-6726","2214-5966","ART","('AHCI',)","64","0.1","","0.23","0.00" +"Perifrasis-Revista de Literatura Teoria y Critica","2145-8987","2145-9045","LITERATURE","('ESCI',)","24","0.1","","0.23","100.00" +"REVER-Revista de Estudos da Religiao","1677-1222","1677-1222","RELIGION","('ESCI',)","43","0.1","","0.23","95.83" +"South African Journal of Cultural History","1011-3053","1011-3053","HISTORY","('ESCI',)","12","0.1","Q3","0.23","0.00" +"STUDIA ROSENTHALIANA","1781-7838","1783-1792","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","51","0.1","","0.23","0.00" +"Acta Universitatis Sapientiae-Film and Media Studies","2065-5924","2066-7779","FILM, RADIO, TELEVISION","('ESCI',)","21","0.1","","0.22","100.00" +"Al-Shajarah","1394-6870","1394-6870","RELIGION","('AHCI',)","81","0.1","","0.22","0.00" +"Anaquel de Estudios Arabes","1130-3964","1988-2645","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","52","0.1","","0.22","91.30" +"Ars & Humanitas: Journal of Arts and Humanities","1854-9632","2350-4218","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","25","0.1","","0.22","98.78" +"China and Asia","2589-4641","2589-465X","('AREA STUDIES', 'ASIAN STUDIES', 'HISTORY')","('ESCI', 'ESCI', 'ESCI')","6","0.1","('Q4', 'N/A', 'Q3')","0.22","0.00" +"Early Modern Women-An Interdisciplinary Journal","1933-0065","2378-4776","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","72","0.1","","0.22","0.00" +"FORUM MODERNES THEATER","0930-5874","","THEATER","('AHCI',)","17","0.1","","0.22","0.00" +"JOURNAL OF AMERICAN CULTURE","1542-7331","1542-734X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","221","0.1","","0.22","8.33" +"Journal of Modern Russian History and Historiography","1947-9956","2210-2388","HISTORY","('ESCI',)","11","0.1","Q3","0.22","0.00" +"Lexonomica","1855-7147","1855-7155","LAW","('ESCI',)","9","0.1","Q4","0.22","55.88" +"Lusotopie","1257-0273","1768-3084","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","72","0.1","","0.22","2.50" +"Ri Vista-Ricerche per la Progettazione del Paesaggio","1724-6768","1724-6768","ARCHITECTURE","('ESCI',)","24","0.1","","0.22","90.36" +"AAA-ARBEITEN AUS ANGLISTIK UND AMERIKANISTIK","0171-5410","","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","49","0.1","('N/A', 'N/A')","0.21","0.00" +"Anales de Filologia Francesa","0213-2958","1989-4678","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('ESCI', 'ESCI')","27","0.1","('N/A', 'N/A')","0.21","96.58" +"BACH","0005-3600","0005-3600","MUSIC","('AHCI',)","18","0.1","","0.21","0.00" +"Baltic Journal of Art History","1736-8812","2346-5581","ART","('ESCI',)","21","0.1","","0.21","96.43" +"Confluenze-Rivista di Studi Iberoamericani","2036-0967","2036-0967","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","49","0.1","","0.21","0.00" +"Filosofiya-Philosophy","0861-6302","1314-8559","PHILOSOPHY","('ESCI',)","11","0.1","","0.21","0.00" +"Horizons in Biblical Theology","0195-9085","1871-2207","RELIGION","('ESCI',)","45","0.1","","0.21","3.45" +"IHS Antiguos Jesuitas en Iberoamerica","2314-3908","2314-3908","HISTORY","('ESCI',)","15","0.1","Q3","0.21","86.21" +"Logos","0869-5377","2499-9628","PHILOSOPHY","('ESCI',)","112","0.1","","0.21","0.00" +"MALIMBUS","0331-3689","","ORNITHOLOGY","('SCIE',)","84","0.1","Q4","0.21","0.00" +"MOYEN AGE","0027-2841","1782-1436","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","147","0.1","","0.21","0.00" +"Schole-Filosofskoe Antikovedenie i Klassicheskaya Traditsiya-Schole-Ancient Philosophy and the Classical Tradition","1995-4328","1995-4336","PHILOSOPHY","('ESCI',)","59","0.1","","0.21","84.71" +"Weimarer Beitrage","0043-2199","","LITERATURE","('AHCI',)","29","0.1","","0.21","0.00" +"Archivo Espanol de Arqueologia","0066-6742","1988-3110","ARCHAEOLOGY","('AHCI',)","244","0.1","","0.20","66.20" +"CAHIERS VICTORIENS & EDOUARDIENS","0220-5610","","LITERATURE, BRITISH ISLES","('AHCI',)","37","0.1","","0.20","77.08" +"Codrul Cosminului","1224-032X","2067-5860","('AREA STUDIES', 'HISTORY')","('ESCI', 'ESCI')","18","0.1","('Q4', 'Q3')","0.20","96.30" +"Danza e Ricerca-Laboratorio di Studi Scritture Visioni","2036-1599","2036-1599","DANCE","('ESCI',)","9","0.1","","0.20","0.00" +"Kamchatka-Revista de Analisis Cultural","2340-1869","2340-1869","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","94","0.1","","0.20","80.30" +"LINGUA E STILE","0024-385X","0024-385X","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","54","0.1","('N/A', 'N/A')","0.20","0.00" +"Northern Review","0820-0300","0820-0300","AREA STUDIES","('ESCI',)","91","0.1","Q4","0.20","100.00" +"OXFORD ART JOURNAL","0142-6540","1741-7287","ART","('AHCI',)","225","0.1","","0.20","8.22" +"Reception-Texts Readers Audiences History","2168-0604","2155-7888","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","28","0.1","","0.20","0.00" +"Revista de Filosofia-Madrid","0034-8244","1988-284X","PHILOSOPHY","('ESCI',)","35","0.1","","0.20","89.04" +"Teka Komisji Urbanistyki i Architektury","0079-3450","2450-0038","ARCHITECTURE","('ESCI',)","37","0.1","","0.20","0.00" +"ZEITSCHRIFT FUR DEUTSCHE PHILOLOGIE","0044-2496","","('LANGUAGE & LINGUISTICS', 'LITERATURE, GERMAN, DUTCH, SCANDINAVIAN')","('AHCI', 'AHCI')","92","0.1","('N/A', 'N/A')","0.20","0.00" +"BULGARIAN HISTORICAL REVIEW-REVUE BULGARE D HISTOIRE","0204-8906","","HISTORY","('AHCI',)","19","0.1","Q3","0.19","0.00" +"EARI-Educacion Artistica-Revista de Investigacion","1695-8403","2254-7592","ART","('ESCI',)","28","0.1","","0.19","100.00" +"Filosofia Unisinos","1519-5023","1984-8234","PHILOSOPHY","('AHCI',)","34","0.1","","0.19","85.42" +"Holocaust-Studii si Cercetari","2065-6602","2065-6602","HISTORY","('ESCI',)","10","0.1","Q3","0.19","0.00" +"International Review of Mission","0020-8582","1758-6631","RELIGION","('ESCI',)","104","0.1","","0.19","10.14" +"Journal for Early Modern Cultural Studies","1531-0485","1553-3786","CULTURAL STUDIES","('ESCI',)","176","0.1","Q4","0.19","0.00" +"Letras de Hoje-Estudos e Debates em Linguistica Literatura e Lingua Portuguesa","0101-3335","1984-7726","LITERATURE","('ESCI',)","85","0.1","","0.19","91.07" +"MICHIGAN HISTORICAL REVIEW","0890-1686","2327-9672","HISTORY","('AHCI',)","93","0.1","Q3","0.19","0.00" +"Mitologias Hoy-Revista de Pensamiento Critica y Estudios Literarios Latinoamericanos","2014-1130","2014-1130","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","36","0.1","","0.19","100.00" +"MITTEILUNGEN DES KUNSTHISTORISCHEN INSTITUTES IN FLORENZ","0342-1201","","ART","('AHCI',)","84","0.1","","0.19","0.00" +"Musicology Today","1734-1663","2353-5733","MUSIC","('ESCI',)","7","0.1","","0.19","100.00" +"Perichoresis","1224-984X","2284-7308","RELIGION","('ESCI',)","28","0.1","","0.19","100.00" +"STUDI E PROBLEMI DI CRITICA TESTUALE","0049-2361","","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","29","0.1","('N/A', 'N/A')","0.19","0.00" +"Teoria-Rivista di Filosofia","1122-1259","","PHILOSOPHY","('AHCI',)","36","0.1","","0.19","0.00" +"African Journal of Legal Studies","2210-9730","1708-7384","LAW","('ESCI',)","80","0.1","Q4","0.18","6.45" +"Archiv Orientalni","0044-8699","","('ASIAN STUDIES', 'HUMANITIES, MULTIDISCIPLINARY')","('AHCI', 'AHCI')","101","0.1","('N/A', 'N/A')","0.18","0.00" +"AUSTRALIAN TAX REVIEW","0311-094X","","LAW","('ESCI',)","24","0.1","Q4","0.18","0.00" +"Avances del Cesor","1514-3899","2422-6580","HISTORY","('ESCI',)","21","0.1","Q3","0.18","90.91" +"e-rph-Revista electronica de Patrimonio Historico","1988-7213","1988-7213","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","10","0.1","","0.18","93.48" +"Eskiyeni","1306-6218","2636-8536","RELIGION","('ESCI',)","28","0.1","","0.18","85.71" +"European Journal of American Studies","1991-9336","1991-9336","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","106","0.1","","0.18","36.80" +"Historia y Espacio","0120-4661","2357-6448","HISTORY","('ESCI',)","46","0.1","Q3","0.18","84.44" +"Logos-Vilnius","0868-7692","0868-7692","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","35","0.1","","0.18","89.54" +"Musicologica Brunensia","1212-0391","2336-436X","MUSIC","('ESCI',)","8","0.1","","0.18","100.00" +"National Taiwan University Law Review","1812-6324","1812-6324","LAW","('ESCI',)","28","0.1","Q4","0.18","0.00" +"Ogigia-Revista Electronica de Estudios Hispanicos","1887-3731","1887-3731","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","19","0.1","","0.18","22.22" +"Philosophia-International Journal of Philosophy","2244-1875","2244-1883","PHILOSOPHY","('AHCI',)","29","0.1","","0.18","0.00" +"REVUE DES ETUDES JUIVES","0484-8616","1783-175X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","139","0.1","","0.18","0.00" +"Romische Quartalschrift fur Christliche Altertumskunde und Kirchengeschichte","0035-7812","0035-7812","RELIGION","('ESCI',)","21","0.1","","0.18","0.00" +"Skandinavskaya Filologiya","0202-2397","2618-9518","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","12","0.1","","0.18","98.57" +"Telos","0090-6514","1940-459X","('PHILOSOPHY', 'POLITICAL SCIENCE', 'SOCIOLOGY')","('AHCI', 'SSCI', 'SSCI')","139","0.1","('N/A', 'Q4', 'Q4')","0.18","1.05" +"Yuksekogretim Dergisi","2146-796X","2146-7978","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","75","0.1","Q4","0.18","99.11" +"ZEITSCHRIFT DER DEUTSCHEN MORGENLANDISCHEN GESELLSCHAFT","0341-0137","0341-0137","ASIAN STUDIES","('AHCI',)","197","0.1","","0.18","0.00" +"ZEITSCHRIFT FUR ANTIKES CHRISTENTUM-JOURNAL OF ANCIENT CHRISTIANITY","0949-9571","1612-961X","RELIGION","('AHCI',)","130","0.1","","0.18","6.78" +"ZEITSCHRIFT FUR KUNSTGESCHICHTE","0044-2992","2569-1619","ART","('AHCI',)","121","0.1","","0.18","33.93" +"Australian and New Zealand Journal of Art","1443-4318","2203-1871","ART","('ESCI',)","35","0.1","","0.17","10.53" +"Bulletin of the Institute of Mathematics Academia Sinica New Series","2304-7909","2304-7895","MATHEMATICS","('ESCI',)","111","0.1","Q4","0.17","92.73" +"DIX-SEPTIEME SIECLE","0012-4273","1969-6965","('HISTORY', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","68","0.1","('Q3', 'N/A')","0.17","0.00" +"Estudios Avanzados","0718-5022","0718-5014","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","22","0.1","","0.17","68.75" +"Global Journal Al-Thaqafah","2232-0474","2232-0482","RELIGION","('ESCI',)","83","0.1","","0.17","18.42" +"History of Philosophy & Logical Analysis","2666-4283","2666-4275","PHILOSOPHY","('ESCI',)","16","0.1","","0.17","6.06" +"International Journal of Chinese Linguistics","2213-8706","2213-8714","LANGUAGE & LINGUISTICS","('ESCI',)","25","0.1","","0.17","3.70" +"Logos-Anales del Seminario de Metafisica","1575-6866","1988-3242","PHILOSOPHY","('ESCI',)","29","0.1","","0.17","100.00" +"Radovi Instituta za Povijest Umjetnosti-Journal of the Institute of Art History","0350-3437","1845-4534","ART","('ESCI',)","29","0.1","","0.17","94.12" +"REVIEW-LITERATURE AND ARTS OF THE AMERICAS","0890-5762","1743-0666","LITERARY REVIEWS","('AHCI',)","56","0.1","","0.17","0.00" +"Revue de l IRES","1145-1378","1145-1378","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","19","0.1","Q4","0.17","0.00" +"REVUE THEOLOGIQUE DE LOUVAIN","0080-2654","1783-8401","RELIGION","('AHCI',)","20","0.1","","0.17","0.00" +"Studia Musicologica","1788-6244","1789-2422","MUSIC","('AHCI',)","50","0.1","","0.17","40.91" +"Temas Americanistas","1988-7868","0212-4408","HISTORY","('ESCI',)","56","0.1","Q3","0.17","55.45" +"Tuna-Ajalookultuuri Ajakiri","1406-4030","","HISTORY","('AHCI',)","31","0.1","Q3","0.17","0.00" +"Zeitschrift fuer Individualpsychologie","0342-393X","2196-8330","PSYCHOLOGY, PSYCHOANALYSIS","('ESCI',)","13","0.1","Q4","0.17","0.00" +"ZEITSCHRIFT FUR HISTORISCHE FORSCHUNG","0340-0174","1865-5599","HISTORY","('AHCI',)","116","0.1","Q3","0.17","0.00" +"Acta Philosophica","1121-2179","1825-6562","PHILOSOPHY","('AHCI',)","28","0.1","","0.16","0.00" +"Ajalooline Ajakiri-The Estonian Historical Journal","1406-3859","2228-3897","HISTORY","('ESCI',)","30","0.1","Q3","0.16","80.95" +"Allgemeine Zeitschrift fur Philosophie","0340-7969","0340-7969","PHILOSOPHY","('AHCI',)","12","0.1","","0.16","0.00" +"Bulletin KNOB","0166-0470","2589-3343","ARCHITECTURE","('ESCI',)","19","0.1","","0.16","0.00" +"Canadian Journal of Women and the Law","0832-8781","1911-0235","LAW","('ESCI',)","257","0.1","Q4","0.16","0.00" +"Dialectologia et Geolinguistica","0942-4040","1867-0903","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","23","0.1","('N/A', 'Q4')","0.16","8.33" +"Foro Educacional","0717-2710","0718-0772","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","18","0.1","Q4","0.16","74.42" +"Historia 396","0719-0719","0719-7969","HISTORY","('ESCI',)","21","0.1","Q3","0.16","0.00" +"Journal of Historic Buildings and Places","2753-2453","","('ARCHAEOLOGY', 'ARCHITECTURE')","('AHCI', 'AHCI')","1","0.1","('N/A', 'N/A')","0.16","0.00" +"MEDICINE AND LAW","0723-1393","2471-836X","LAW","('ESCI',)","190","0.1","Q4","0.16","0.00" +"MUSICAL TIMES","0027-4666","0027-4666","MUSIC","('AHCI',)","196","0.1","","0.16","0.00" +"PHYSICS IN PERSPECTIVE","1422-6944","1422-6960","HISTORY & PHILOSOPHY OF SCIENCE","('SCIE', 'SSCI')","84","0.1","Q4","0.16","35.00" +"REVUE D HISTOIRE MODERNE ET CONTEMPORAINE","0048-8003","","HISTORY","('AHCI',)","270","0.1","Q3","0.16","0.00" +"Rhizomata-A Journal for Ancient Philosophy and Science","2196-5102","2196-5110","PHILOSOPHY","('ESCI',)","40","0.1","","0.16","21.43" +"Women and Music-A Journal of Gender and Culture","1090-7505","1553-0612","('MUSIC', 'WOMENS STUDIES')","('ESCI', 'ESCI')","42","0.1","('N/A', 'Q4')","0.16","0.00" +"AEVUM-RASSEGNA DI SCIENZE STORICHE LINGUISTICHE E FILOLOGICHE","0001-9593","1827-787X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","166","0.1","","0.15","0.00" +"Balkanistic Forum","1310-3970","2535-1265","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","27","0.1","","0.15","0.00" +"Boletin de Arte-UMA","0211-8483","0211-8483","ART","('ESCI',)","14","0.1","","0.15","88.14" +"Bruno Pini Mathematical Analysis Seminar","2240-2829","2240-2829","MATHEMATICS","('ESCI',)","20","0.1","Q4","0.15","0.00" +"Bulletin of the John Rylands Library","2054-9318","2054-9326","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","201","0.1","","0.15","0.00" +"Canadian Political Science Review","1911-4125","1911-4125","POLITICAL SCIENCE","('ESCI',)","72","0.1","Q4","0.15","0.00" +"Cartagine-Studi e Ricerche","2532-3563","2532-1110","ARCHAEOLOGY","('ESCI',)","8","0.1","","0.15","0.00" +"Colloquia Humanistica","2081-6774","2392-2419","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","18","0.1","","0.15","100.00" +"Dialog so Vremenem-Dialogue with Time","2073-7564","2073-7564","HISTORY","('ESCI',)","117","0.1","Q3","0.15","0.00" +"English Text Construction","1874-8767","1874-8775","LANGUAGE & LINGUISTICS","('ESCI',)","105","0.1","","0.15","10.71" +"Espiritu","0014-0716","0014-0716","PHILOSOPHY","('ESCI',)","35","0.1","","0.15","0.00" +"Estudios de Linguistica-Universidad de Alicante-ELUA","0212-7636","2171-6692","LANGUAGE & LINGUISTICS","('ESCI',)","29","0.1","","0.15","97.44" +"Europolity-Continuity and Change in European Governance","2344-2255","2247-7721","AREA STUDIES","('ESCI',)","22","0.1","Q4","0.15","16.36" +"HISTORISCHES JAHRBUCH","0018-2621","","HISTORY","('AHCI',)","53","0.1","Q3","0.15","0.00" +"Hong Kong Journal of Paediatrics","1013-9923","1013-9923","PEDIATRICS","('SCIE',)","85","0.1","Q4","0.15","0.00" +"INDEX ON CENSORSHIP","0306-4220","1746-6067","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","150","0.1","","0.15","0.00" +"International Journal of Applied Nonlinear Science","1752-2862","1752-2870","MATHEMATICS, APPLIED","('ESCI',)","8","0.1","Q4","0.15","0.00" +"Kratkie Soobshcheniya Instituta Arkheologii","0130-2620","0130-2620","ARCHAEOLOGY","('ESCI',)","197","0.1","","0.15","0.00" +"Kritike-An Online Journal of Philosophy","1908-7330","1908-7330","PHILOSOPHY","('ESCI',)","47","0.1","","0.15","78.33" +"LATIN AMERICAN THEATRE REVIEW","0023-8813","2161-0576","THEATER","('AHCI',)","39","0.1","","0.15","0.00" +"Matraga-Estudos Linguisticos e Literario","1414-7165","2446-6905","LITERATURE","('ESCI',)","27","0.1","","0.15","91.58" +"Mundo Amazonico","2145-5082","2145-5082","AREA STUDIES","('ESCI',)","55","0.1","Q4","0.15","82.54" +"Neotestamentica","0254-8356","2518-4628","RELIGION","('AHCI',)","133","0.1","","0.15","0.00" +"Palabra","0121-8530","2346-3864","LITERATURE","('ESCI',)","31","0.1","","0.15","96.25" +"Review of Korean Studies","1229-0076","1229-0076","ASIAN STUDIES","('ESCI',)","51","0.1","","0.15","0.00" +"Simplegadi","1824-5226","1824-5226","LITERATURE","('ESCI',)","13","0.1","","0.15","95.45" +"STUDIES IN THE HISTORY OF GARDENS & DESIGNED LANDSCAPES","1460-1176","1943-2186","ARCHITECTURE","('AHCI',)","134","0.1","","0.15","9.80" +"452 F-Revista de Teoria de la Literatura y Literatura Comparada","","2013-3294","LITERATURE","('ESCI',)","12","0.1","","0.14","96.39" +"Annales Francaises de Medecine d Urgence","2108-6524","2108-6591","EMERGENCY MEDICINE","('ESCI',)","88","0.1","Q4","0.14","0.00" +"ANTIQVORVM PHILOSOPHIA-An International journal","1973-5030","1974-4501","('CLASSICS', 'HISTORY', 'PHILOSOPHY')","('ESCI', 'ESCI', 'ESCI')","6","0.1","('N/A', 'Q3', 'N/A')","0.14","0.00" +"CITHARA-ESSAYS IN THE JUDEO-CHRISTIAN TRADITION","0009-7527","0009-7527","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","19","0.1","","0.14","0.00" +"Concentric-Studies in Linguistics","1810-7478","2589-5230","LANGUAGE & LINGUISTICS","('ESCI',)","53","0.1","","0.14","31.03" +"Cuestiones de Filosofia","0123-5095","2389-9441","PHILOSOPHY","('ESCI',)","30","0.1","","0.14","72.55" +"George Eliot-George Henry Lewes Studies","2372-1901","2372-191X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","27","0.1","","0.14","0.00" +"Imagologiya i Komparativistika-Imagology and Comparative Studies","2409-9554","2409-9554","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","19","0.1","","0.14","0.00" +"Implicit Religion","1463-9955","1743-1697","RELIGION","('ESCI',)","91","0.1","","0.14","0.00" +"Insolvency Law Journal","1039-3293","1039-3293","LAW","('ESCI',)","21","0.1","Q4","0.14","0.00" +"Journal of Architecture and Planning -King Saud University","1018-3604","1018-3604","('ARCHITECTURE', 'URBAN STUDIES')","('ESCI', 'ESCI')","17","0.1","('N/A', 'Q4')","0.14","0.00" +"Journal of the International Network for Korean Language and Culture","","1738-2793","LANGUAGE & LINGUISTICS","('ESCI',)","21","0.1","","0.14","0.00" +"Kosciol i Prawo","0208-7928","2544-5804","RELIGION","('ESCI',)","10","0.1","","0.14","96.47" +"Lingue Antiche e Moderne","2281-4841","2281-4841","LANGUAGE & LINGUISTICS","('ESCI',)","11","0.1","","0.14","0.00" +"Loggia Arquitectura & Restauracion","1136-758X","2444-1619","ARCHITECTURE","('ESCI',)","15","0.1","","0.14","100.00" +"Moussons-Recherche en Sciences Humaines sur l Asie du Sud-Est","1620-3224","2262-8363","ASIAN STUDIES","('ESCI',)","45","0.1","","0.14","63.46" +"Narrative Works-Issues Investigations & Interventions","1925-0622","1925-0622","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","50","0.1","","0.14","0.00" +"New Proposals-Journal of Marxism and Interdisciplinary Inquiry","1715-6718","1715-6718","POLITICAL SCIENCE","('ESCI',)","50","0.1","Q4","0.14","0.00" +"Polish Yearbook of International Law","0554-498X","0554-498X","LAW","('ESCI',)","37","0.1","Q4","0.14","0.00" +"Psychological Perspectives-A Quarterly Journal of Jungian Thought","0033-2925","1556-3030","PSYCHOLOGY, PSYCHOANALYSIS","('ESCI',)","82","0.1","Q4","0.14","1.10" +"Public and Private International Law Bulletin","2651-5377","2667-4114","LAW","('ESCI',)","26","0.1","Q4","0.14","53.09" +"Res Publica-Revista de Filosofia Politica","1576-4184","1989-6115","PHILOSOPHY","('ESCI',)","57","0.1","","0.14","92.54" +"RIVISTA DI STORIA DELLA FILOSOFIA","0393-2516","1972-5558","PHILOSOPHY","('AHCI',)","88","0.1","","0.14","0.00" +"Selcuk Universitesi Edebiyat Fakultesi Dergisi-Selcuk University Journal of Faculty of Letters","1300-4921","2458-908X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","35","0.1","","0.14","42.02" +"Stoa","2007-1868","2007-1868","PHILOSOPHY","('ESCI',)","12","0.1","","0.14","34.88" +"Transylvanian Review","1221-1249","","HISTORY","('AHCI',)","112","0.1","Q3","0.14","0.00" +"Vestnik of Saint Petersburg University-Law-Vestnik Sankt-Peterburgskogo Universiteta-Pravo","2074-1243","2587-5833","LAW","('ESCI',)","34","0.1","Q4","0.14","94.15" +"Vestnik Slavianskikh Kultur-Bulletin of Slavic Cultures-Scientific and Informational Journal","2073-9567","","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","33","0.1","","0.14","99.64" +"Aula Orientalis","0212-5730","0212-5730","('ARCHAEOLOGY', 'ASIAN STUDIES')","('AHCI', 'AHCI')","55","0.1","('N/A', 'N/A')","0.13","0.00" +"Balcanica","0350-7653","0350-7653","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","34","0.1","","0.13","92.31" +"Ethical Perspectives","1370-0049","1783-1431","('ETHICS', 'PHILOSOPHY')","('SSCI', 'AHCI')","136","0.1","('Q4', 'N/A')","0.13","0.00" +"Etica & Politica","1825-5167","1825-5167","PHILOSOPHY","('ESCI',)","119","0.1","","0.13","0.40" +"FILOZOFSKI VESTNIK","0353-4510","1581-1239","PHILOSOPHY","('AHCI',)","56","0.1","","0.13","96.70" +"Historia Constitucional","1576-4729","1576-4729","HISTORY","('ESCI',)","103","0.1","Q3","0.13","0.00" +"Istorija","1392-0456","2029-7181","HISTORY","('ESCI',)","32","0.1","Q3","0.13","97.96" +"Italiano LinguaDue","2037-3597","2037-3597","LANGUAGE & LINGUISTICS","('ESCI',)","166","0.1","","0.13","0.19" +"Japan Review","0915-0986","2434-3129","ASIAN STUDIES","('ESCI',)","77","0.1","","0.13","0.00" +"JIRSS-Journal of the Iranian Statistical Society","1726-4057","2538-189X","STATISTICS & PROBABILITY","('ESCI',)","94","0.1","Q4","0.13","36.36" +"LITTERATURE","0047-4800","1958-5926","LITERATURE","('AHCI',)","158","0.1","","0.13","0.00" +"Malaysian Journal of ELT Research","1511-8002","1511-8002","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","42","0.1","Q4","0.13","0.00" +"Parallax","1353-4645","1460-700X","CULTURAL STUDIES","('AHCI', 'SSCI')","555","0.1","Q4","0.13","28.79" +"Poe Studies-History Theory Interpretation","1947-4644","1754-6095","LITERATURE, AMERICAN","('AHCI',)","23","0.1","","0.13","0.00" +"RAEL-Revista Electronica de Linguistica Aplicada","1885-9089","1885-9089","LINGUISTICS","('ESCI',)","35","0.1","Q4","0.13","0.00" +"Rasprave","1331-6745","1849-0379","LANGUAGE & LINGUISTICS","('ESCI',)","53","0.1","","0.13","98.63" +"Real Analysis Exchange","0147-1937","1930-1219","MATHEMATICS","('ESCI',)","543","0.1","Q4","0.13","0.00" +"Revista de Historia-Sao Paulo","0034-8309","2316-9141","HISTORY","('ESCI',)","69","0.1","Q3","0.13","93.85" +"Ricerche di Psicologia","0391-6081","1972-5620","PSYCHOLOGY","('ESCI',)","80","0.1","Q4","0.13","0.00" +"ARCHIV FUR MUSIKWISSENSCHAFT","0003-9292","","MUSIC","('AHCI',)","53","0.1","","0.12","0.00" +"Artibus et Historiae","0391-9064","","ART","('AHCI',)","119","0.1","","0.12","0.00" +"Bollettino Filosofico","1593-7178","2035-2670","PHILOSOPHY","('ESCI',)","5","0.1","","0.12","0.00" +"BOOK COLLECTOR","0006-7237","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","52","0.1","","0.12","0.00" +"BULLETIN OF THE AMERICAN SOCIETY OF PAPYROLOGISTS","0003-1186","1938-6958","ARCHAEOLOGY","('AHCI',)","98","0.1","","0.12","0.00" +"Calle 14-Revista de investigacion en el Campo del Arte","2011-3757","2145-0706","ART","('ESCI',)","40","0.1","","0.12","93.15" +"Caracol","2178-1702","2317-9651","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('ESCI', 'ESCI')","25","0.1","('N/A', 'N/A')","0.12","0.00" +"Cultura-International Journal of Philosophy of Culture and Axiology","1584-1057","2065-5002","PHILOSOPHY","('AHCI',)","149","0.1","","0.12","0.00" +"Estudios de Historia Moderna y Contemporanea de Mexico","0185-2620","2448-5004","HISTORY","('ESCI',)","92","0.1","Q3","0.12","65.67" +"Fluminensia","0353-4642","1848-9680","LANGUAGE & LINGUISTICS","('ESCI',)","39","0.1","","0.12","91.36" +"Frontiers of Law in China","1673-3428","1673-3541","LAW","('ESCI',)","60","0.1","Q4","0.12","0.00" +"Hagiographica","1124-1225","1124-1225","RELIGION","('ESCI',)","23","0.1","","0.12","0.00" +"INDIAN JOURNAL OF HISTORY OF SCIENCE","0019-5235","2454-9991","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","194","0.1","Q4","0.12","0.00" +"Interdisciplinary Studies of Complex Systems","2307-4515","2307-4515","MULTIDISCIPLINARY SCIENCES","('ESCI',)","12","0.1","Q4","0.12","97.73" +"International Journal of Child Health and Nutrition","1929-4247","1929-4247","PEDIATRICS","('ESCI',)","93","0.1","Q4","0.12","93.22" +"Japanese Studies in Russia","2500-2872","2500-2872","AREA STUDIES","('ESCI',)","10","0.1","Q4","0.12","50.00" +"Journal of Indian Council of Philosophical Research","0970-7794","2363-9962","PHILOSOPHY","('ESCI',)","47","0.1","","0.12","2.56" +"Koot-Revista de Museologia","2078-0664","2307-3942","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","1","0.1","","0.12","45.00" +"MASSACHUSETTS REVIEW","0025-4878","2330-0485","LITERARY REVIEWS","('AHCI',)","232","0.1","","0.12","0.00" +"Revista Brasileira de Educacao do Campo-Brazilian Journal of Rural Education","2525-4863","2525-4863","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","64","0.1","Q4","0.12","98.60" +"Revista Ibero-Americana de Estudos em Educacao","2446-8606","1982-5587","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","186","0.1","Q4","0.12","95.94" +"South Central Review","0743-6831","1549-3377","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","103","0.1","","0.12","0.00" +"Tradition-A Journal of Orthodox Jewish Thought","0041-0608","2768-0231","('HUMANITIES, MULTIDISCIPLINARY', 'PHILOSOPHY', 'RELIGION')","('ESCI', 'ESCI', 'ESCI')","210","0.1","('N/A', 'N/A', 'N/A')","0.12","0.00" +"Transplant Research and Risk Management","1179-1616","1179-1616","TRANSPLANTATION","('ESCI',)","34","0.1","Q4","0.12","100.00" +"YALE REVIEW","0044-0124","1467-9736","LITERARY REVIEWS","('AHCI',)","92","0.1","","0.12","0.00" +"Alpha-Revista de Artes Letras y Filosofia","0716-4254","0718-2201","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","68","0.1","","0.11","96.05" +"Bajo Palabra-Journal of Philosophy","1576-3935","1887-505X","PHILOSOPHY","('ESCI',)","52","0.1","","0.11","94.85" +"Bogoslovska Smotra-Ephemerides Theologicae Zagrabienses","0352-3101","1848-9648","RELIGION","('ESCI',)","71","0.1","","0.11","82.44" +"Boletim de Estudos Classicos","0872-2110","2183-7260","CLASSICS","('ESCI',)","4","0.1","","0.11","96.15" +"Cahiers de Narratologie","0993-8516","1765-307X","LITERATURE","('ESCI',)","33","0.1","","0.11","33.80" +"Cahiers Mondes Anciens","2107-0199","2107-0199","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","14","0.1","","0.11","26.67" +"ETUDES LITTERAIRES","0014-214X","0014-214X","LITERATURE, ROMANCE","('AHCI',)","76","0.1","","0.11","15.94" +"Itineraria","1594-1019","1594-1019","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","14","0.1","","0.11","0.00" +"JAHRBUCHER FUR GESCHICHTE OSTEUROPAS","0021-4019","","HISTORY","('AHCI',)","192","0.1","Q3","0.11","0.00" +"Linguistica Pragensia","0862-8432","1805-9635","LANGUAGE & LINGUISTICS","('ESCI',)","16","0.1","","0.11","93.55" +"Mediterranea-Ricerche Storiche","1828-230X","","HISTORY","('AHCI',)","56","0.1","Q3","0.11","0.00" +"NEW ZEALAND JOURNAL OF PSYCHOLOGY","0112-109X","1179-7924","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","468","0.1","Q4","0.11","0.00" +"Origini","0474-6805","0474-6805","ARCHAEOLOGY","('AHCI',)","95","0.1","","0.11","0.00" +"Patrimonio e Memoria","1808-1967","1808-1967","HISTORY","('ESCI',)","26","0.1","Q3","0.11","0.00" +"Phainomena","1318-3362","2232-6650","PHILOSOPHY","('ESCI',)","29","0.1","","0.11","0.00" +"Razon Historica-Revista Hispanoamericana de Historia de las Ideas","1989-2659","1989-2659","HISTORY","('ESCI',)","23","0.1","Q3","0.11","0.00" +"Revista de Derecho Civil","2341-2216","2341-2216","LAW","('ESCI',)","48","0.1","Q4","0.11","0.00" +"Revista do Curso de Direito do UNIFOR","2236-7632","2236-7632","LAW","('ESCI',)","6","0.1","Q4","0.11","1.25" +"Taller de la Historia","1657-3633","2382-4794","HISTORY","('ESCI',)","17","0.1","Q3","0.11","55.26" +"Teksty Drugie","0867-0633","2545-2061","LITERATURE, SLAVIC","('AHCI',)","207","0.1","","0.11","76.07" +"Uchenye Zapiski Kazanskogo Universiteta-Seriya Fiziko-Matematicheskie Nauki","2541-7746","2500-2198","MATHEMATICS, APPLIED","('ESCI',)","52","0.1","Q4","0.11","87.32" +"X-Ray Structure Analysis Online","1883-3578","1883-3578","CRYSTALLOGRAPHY","('ESCI',)","60","0.1","Q4","0.11","20.45" +"Anos 90","1983-201X","0104-236X","HISTORY","('ESCI',)","36","0.1","Q3","0.10","62.67" +"Anuario de Historia Regional y de las Fronteras","0122-2066","2145-8499","HISTORY","('ESCI',)","52","0.1","Q3","0.10","98.48" +"Anuario de la Escuela de Historia Virtual","1853-7049","1853-7049","HISTORY","('ESCI',)","17","0.1","Q3","0.10","0.00" +"Archivum","0570-7218","2341-1120","LANGUAGE & LINGUISTICS","('ESCI',)","42","0.1","","0.10","0.00" +"Arthur Miller Journal","1558-8831","2333-3154","THEATER","('ESCI',)","7","0.1","","0.10","0.00" +"CELEHIS-Revista del Centro de Letras Hispanoamericanas","0328-5766","2313-9463","LITERATURE, ROMANCE","('ESCI',)","20","0.1","","0.10","0.00" +"Collectivus-Revista de Ciencias Sociales","2382-4018","2382-4018","AREA STUDIES","('ESCI',)","23","0.1","Q4","0.10","69.57" +"Comunicacio-Revista de Recerca i d Analisi","2014-0304","2014-0444","COMMUNICATION","('ESCI',)","29","0.1","Q4","0.10","0.00" +"Coordenadas-Revista de Historia Local y Regional","2362-4752","2362-4752","HISTORY","('ESCI',)","16","0.1","Q3","0.10","0.00" +"CTAD-Cumhuriyet Tarihi Arastirmalari Dergisi","1305-1458","2147-1592","HISTORY","('ESCI',)","33","0.1","Q3","0.10","0.00" +"CUADERNOS HISPANOAMERICANOS","0011-250X","","LITERARY REVIEWS","('AHCI',)","180","0.1","","0.10","0.00" +"Estudios Sociales-Revista Universitaria Semestral","0327-4934","2250-6950","HISTORY","('ESCI',)","49","0.1","Q3","0.10","96.72" +"Indonesia Law Review","2088-8430","2356-2129","LAW","('ESCI',)","24","0.1","Q4","0.10","13.95" +"Internationale Katholische Zeitschrift Communio","1439-6165","1439-6165","RELIGION","('ESCI',)","7","0.1","","0.10","0.00" +"JOURNAL OF MEDITERRANEAN STUDIES","1016-3476","2523-9465","HISTORY","('AHCI',)","90","0.1","Q3","0.10","0.00" +"LIBERTE","0024-2020","","LITERARY REVIEWS","('AHCI',)","25","0.1","","0.10","0.00" +"LINGUISTIQUE","0075-966X","2101-0234","LANGUAGE & LINGUISTICS","('AHCI',)","74","0.1","","0.10","0.00" +"Logos & Pneuma-Chinese Journal of Theology","1023-2583","","RELIGION","('AHCI',)","24","0.1","","0.10","0.00" +"Novos Cadernos NAEA","1516-6481","2179-7536","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","75","0.1","Q4","0.10","0.00" +"Per Linguam-A Journal of Language Learning","0259-2312","2224-0012","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","110","0.1","Q4","0.10","96.97" +"Politicka Misao-Croatian Political Science Review","0032-3241","1846-8721","POLITICAL SCIENCE","('ESCI',)","153","0.1","Q4","0.10","88.76" +"RIHA Journal","2190-3328","2190-3328","ART","('AHCI',)","43","0.1","","0.10","0.00" +"Symposium-Canadian Journal of Continental Philosophy","1917-9685","2154-5278","PHILOSOPHY","('ESCI',)","39","0.1","","0.10","0.00" +"Tarih Incelemeleri Dergisi","0257-4152","0257-4152","HISTORY","('ESCI',)","43","0.1","Q3","0.10","98.61" +"Vestnik Tomskogo Gosudarstvennogo Universiteta-Pravo-Tomsk State University Journal of Law","2225-3513","2311-3693","LAW","('ESCI',)","26","0.1","Q4","0.10","7.22" +"Wesley and Methodist Studies","2291-1723","2291-1731","RELIGION","('ESCI',)","12","0.1","","0.10","0.00" +"Acta Germanica-German studies in Africa","0065-1273","0065-1273","LANGUAGE & LINGUISTICS","('ESCI',)","10","0.1","","0.09","0.00" +"Advances and Applications in Statistics","0972-3617","0972-3617","STATISTICS & PROBABILITY","('ESCI',)","136","0.1","Q4","0.09","81.15" +"Agora-Papeles de Filosofia","0211-6642","2174-3347","PHILOSOPHY","('ESCI',)","29","0.1","","0.09","75.93" +"Analele Universitatii Bucuresti-Stiinte Politice","1582-2486","2821-8078","POLITICAL SCIENCE","('ESCI',)","7","0.1","Q4","0.09","100.00" +"Anuario Espanol de Derecho Internacional Privado","1578-3138","1578-3138","LAW","('ESCI',)","15","0.1","Q4","0.09","0.00" +"Art Style","2596-1802","2596-1810","ART","('ESCI',)","5","0.1","","0.09","0.00" +"Caravelle","1147-6753","2272-9828","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","71","0.1","","0.09","0.00" +"Catholic Social Science Review","1091-0905","1944-6292","RELIGION","('ESCI',)","18","0.1","","0.09","0.00" +"Endoxa-Series Filosoficas","1133-5351","2174-5676","PHILOSOPHY","('ESCI',)","35","0.1","","0.09","0.00" +"Geosaberes","2178-0463","2178-0463","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","25","0.1","Q4","0.09","95.12" +"Historia Instituciones Documentos","0210-7716","2253-8291","HISTORY","('ESCI',)","160","0.1","Q3","0.09","100.00" +"History and Sociology of South Asia","2230-8075","2249-5312","AREA STUDIES","('ESCI',)","27","0.1","Q4","0.09","3.23" +"Ideas y Valores","0120-0062","2011-3668","PHILOSOPHY","('AHCI',)","97","0.1","","0.09","61.54" +"Journal of Oral Health and Oral Epidemiology","2322-1372","2322-1372","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","65","0.1","Q4","0.09","37.37" +"MUTTERSPRACHE","0027-514X","","LANGUAGE & LINGUISTICS","('AHCI',)","34","0.1","","0.09","11.11" +"SPRACHE-STIMME-GEHOR","0342-0477","1439-1260","OTORHINOLARYNGOLOGY","('ESCI',)","65","0.1","Q4","0.09","0.00" +"Surgical Techniques Development","2038-9574","2038-9582","SURGERY","('ESCI',)","2","0.1","Q4","0.09","100.00" +"Urdimento-Revista de Estudos em Artes Cenicas","1414-5731","2358-6958","THEATER","('ESCI',)","52","0.1","","0.09","95.44" +"Vestnik Tomskogo Gosudarstvennogo Universiteta-Filosofiya-Sotsiologiya-Politologiya-Tomsk State University Journal of Philosophy Sociology and Political Science","1998-863X","2311-2395","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","86","0.1","Q4","0.09","0.00" +"ZEITSCHRIFT FUR AGYPTISCHE SPRACHE UND ALTERTUMSKUNDE","0044-216X","2196-713X","ARCHAEOLOGY","('AHCI',)","146","0.1","","0.09","23.44" +"ZEITSCHRIFT FUR PADAGOGIK","0044-3247","0044-3247","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","471","0.1","Q4","0.09","0.00" +"Zibaldone-Estudios Italianos de La Torre del Virrey","2255-3576","2255-3576","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","23","0.1","","0.09","0.00" +"Academic Journal of Modern Philology","2299-7164","2353-3218","LANGUAGE & LINGUISTICS","('ESCI',)","16","0.1","","0.08","0.00" +"African Journal of Rhetoric","1998-2054","1998-2054","LANGUAGE & LINGUISTICS","('ESCI',)","24","0.1","","0.08","0.00" +"African Sociological Review","1027-4332","1027-4332","SOCIOLOGY","('ESCI',)","163","0.1","Q4","0.08","0.00" +"ARTHROSKOPIE","0933-7946","1434-3924","SURGERY","('ESCI',)","72","0.1","Q4","0.08","23.49" +"AUT AUT","0005-0601","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","52","0.1","","0.08","0.00" +"Cadernos de Estudos Linguisticos","0102-5767","2447-0686","LANGUAGE & LINGUISTICS","('ESCI',)","100","0.1","","0.08","85.86" +"Cuadernos de Antropologia","1409-3138","2215-356X","ANTHROPOLOGY","('ESCI',)","39","0.1","Q4","0.08","100.00" +"Debats-Revista de Cultura Poder i Societat","0212-0585","2530-3074","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","71","0.1","Q4","0.08","87.93" +"E-Spania-Revue Electronique d etudes Hispaniques Medievales","1951-6169","1951-6169","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","78","0.1","","0.08","85.31" +"Elemente der Mathematik","0013-6018","1420-8962","MATHEMATICS","('ESCI',)","44","0.1","Q4","0.08","46.30" +"En Blanco-Revista de Arquitectura","1888-5616","2445-1215","ARCHITECTURE","('ESCI',)","9","0.1","","0.08","97.78" +"Engineering Technologies and Systems","2658-4123","2658-6525","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","28","0.1","Q4","0.08","91.96" +"Estudios de Derecho","0120-1867","2145-6151","LAW","('ESCI',)","39","0.1","Q4","0.08","95.31" +"Estudios-Centro de Estudios Avanzados-Universidad Nacional de Cordoba","0328-185X","1852-1568","MULTIDISCIPLINARY SCIENCES","('ESCI',)","24","0.1","Q4","0.08","0.00" +"ETD Educacao Tematica Digital","1676-2592","1676-2592","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","78","0.1","Q4","0.08","89.13" +"European Journal of Transformation Studies","2298-0997","2298-0997","POLITICAL SCIENCE","('ESCI',)","21","0.1","Q4","0.08","0.00" +"FILOSOFICKY CASOPIS","0015-1831","","PHILOSOPHY","('AHCI',)","75","0.1","","0.08","78.15" +"Forma y Funcion","0120-338X","2256-5469","LINGUISTICS","('ESCI',)","76","0.1","Q4","0.08","97.92" +"Groups Complexity Cryptology","1867-1144","1869-6104","MATHEMATICS","('ESCI',)","52","0.1","Q4","0.08","66.67" +"Historia Actual Online","1696-2060","1696-2060","HISTORY","('ESCI',)","81","0.1","Q3","0.08","0.00" +"INTERNATIONAL JOURNAL OF FRANCOPHONE STUDIES","1368-2679","1758-9142","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","40","0.1","","0.08","0.00" +"International Journal of Orthodontic Rehabilitation","2349-5243","2542-5579","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","40","0.1","Q4","0.08","31.43" +"Intersezioni","0393-2451","1973-8196","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","29","0.1","","0.08","0.00" +"JOURNAL OF PRE-RAPHAELITE STUDIES-NEW SERIES","1060-149X","1060-149X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","8","0.1","","0.08","0.00" +"Korean Journal of International Studies","2233-470X","2288-5072","INTERNATIONAL RELATIONS","('ESCI',)","52","0.1","Q4","0.08","100.00" +"Korean Journal of Medical History","1225-505X","","('ASIAN STUDIES', 'HISTORY & PHILOSOPHY OF SCIENCE')","('AHCI', 'AHCI')","62","0.1","('N/A', 'Q4')","0.08","95.24" +"MOKUZAI GAKKAISHI","0021-4795","1880-7577","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","352","0.1","Q4","0.08","14.04" +"NEUPHILOLOGISCHE MITTEILUNGEN","0028-3754","","LANGUAGE & LINGUISTICS","('AHCI',)","141","0.1","","0.08","86.96" +"Nineteenth-Century Art Worldwide","","1543-1002","ART","('ESCI',)","36","0.1","","0.08","87.50" +"Plura-Revista de Estudos de Religiao","2179-0019","2179-0019","RELIGION","('ESCI',)","9","0.1","","0.08","65.82" +"Pravo-Zhurnal Vysshei Shkoly Ekonomiki","2072-8166","2072-8166","LAW","('ESCI',)","71","0.1","Q4","0.08","37.50" +"Radovi Zavoda za povijesne znanosti HAZU u Zadru","1330-0474","1330-0474","HISTORY","('AHCI',)","37","0.1","Q3","0.08","0.00" +"REVISTA DE BIOLOGIA MARINA Y OCEANOGRAFIA","0717-3326","0718-1957","('MARINE & FRESHWATER BIOLOGY', 'OCEANOGRAPHY')","('SCIE', 'SCIE')","561","0.1","('Q4', 'Q4')","0.08","82.95" +"Revista de Investigacion sobre Flamenco-La Madruga","1989-6042","1989-6042","MUSIC","('ESCI',)","7","0.1","","0.08","0.00" +"Revista Internacional de Relaciones Publicas","2174-3681","2174-3681","COMMUNICATION","('ESCI',)","90","0.1","Q4","0.08","77.27" +"Revista Latinoamericana de Metodologia de la Investigacion Social","1853-6190","1853-6190","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","37","0.1","Q4","0.08","0.00" +"REVUE DU NORD","0035-2624","2271-7005","HISTORY","('AHCI',)","230","0.1","Q3","0.08","0.00" +"Signo y Sena-Revista del Instituto de Linguistica","2314-2189","2314-2189","LANGUAGE & LINGUISTICS","('ESCI',)","40","0.1","","0.08","40.54" +"St Theresa Journal of Humanities and Social Sciences","2408-2120","2539-5947","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","19","0.1","Q4","0.08","0.00" +"Strenae-Recherches sur les Livres et les Objets Culturels de L Enfance","2109-9081","2109-9081","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","15","0.1","","0.08","42.86" +"Studia Historiae Oeconomicae","","0081-6485","('ECONOMICS', 'HISTORY', 'HISTORY OF SOCIAL SCIENCES')","('ESCI', 'ESCI', 'ESCI')","13","0.1","('Q4', 'Q3', 'Q4')","0.08","97.56" +"Techniques in Foot and Ankle Surgery","1536-0644","1538-1943","ORTHOPEDICS","('ESCI',)","169","0.1","Q4","0.08","3.03" +"Treballs de Sociolinguistica Catalana","0211-0784","2013-9136","LINGUISTICS","('ESCI',)","44","0.1","Q4","0.08","0.00" +"Alkoholizm i Narkomania-Alcoholism and Drug Addiction","0867-4361","1689-3530","SUBSTANCE ABUSE","('ESCI',)","67","0.1","Q4","0.07","90.20" +"Archiv fur Rechts- und Sozialphilosophie","0001-2343","2363-5614","PHILOSOPHY","('ESCI',)","70","0.1","","0.07","1.23" +"Atalante-Revista de Estudios Cinematograficos","1885-3730","2340-6992","FILM, RADIO, TELEVISION","('AHCI',)","29","0.1","","0.07","0.00" +"BRAC-Barcelona Research Art Creation","2014-8992","2014-8992","ART","('ESCI',)","11","0.1","","0.07","95.56" +"Comparative and International Law Journal of Southern Africa-CILSA","0010-4051","0010-4051","LAW","('ESCI',)","86","0.1","Q4","0.07","0.00" +"Cuaderno de Notas","1138-1590","2386-8376","ARCHITECTURE","('ESCI',)","8","0.1","","0.07","68.09" +"Curriculum Matters","1177-1828","","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","39","0.1","Q4","0.07","0.00" +"De Jure Law Journal","1466-3597","2225-7160","LAW","('ESCI',)","58","0.1","Q4","0.07","76.92" +"DEUTSCHE SPRACHE","0340-9341","1866-5233","LANGUAGE & LINGUISTICS","('AHCI',)","56","0.1","","0.07","0.00" +"Dialogo das Letras","2316-1795","2316-1795","LANGUAGE & LINGUISTICS","('ESCI',)","15","0.1","","0.07","26.88" +"English in Australia","0155-2147","0155-2147","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","126","0.1","Q4","0.07","0.00" +"Espacios en Blanco-Serie Indagaciones","1515-9485","1515-9485","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","33","0.1","Q4","0.07","13.43" +"ETUDES GERMANIQUES","0014-2115","","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","53","0.1","","0.07","0.00" +"Geophysics and Geophysical Exploration","1229-1064","2384-051X","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","53","0.1","Q4","0.07","0.00" +"Hermeneus","1139-7489","2530-609X","LANGUAGE & LINGUISTICS","('ESCI',)","44","0.1","","0.07","96.72" +"Icelandic Review of Politics & Administration","1670-6803","1670-679X","POLITICAL SCIENCE","('ESCI',)","41","0.1","Q4","0.07","100.00" +"International Journal of Emergency Management","1471-4825","1741-5071","MANAGEMENT","('ESCI',)","196","0.1","Q4","0.07","0.00" +"JP Journal of Biostatistics","0973-5143","0973-5143","STATISTICS & PROBABILITY","('ESCI',)","30","0.1","Q4","0.07","93.51" +"Linguistica e Filologia","1594-6517","1594-6517","LANGUAGE & LINGUISTICS","('ESCI',)","14","0.1","","0.07","0.00" +"Linguistica y Literatura","0120-5587","2422-3174","LANGUAGE & LINGUISTICS","('ESCI',)","48","0.1","","0.07","88.29" +"Linhas Criticas","1516-4896","1981-0431","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","55","0.1","Q4","0.07","0.00" +"NTU Management Review","1018-1601","2410-2490","MANAGEMENT","('ESCI',)","57","0.1","Q4","0.07","0.00" +"Open Insight","2007-2406","2395-8936","PHILOSOPHY","('ESCI',)","10","0.1","","0.07","8.16" +"PHYTON-ANNALES REI BOTANICAE","0079-2047","","PLANT SCIENCES","('SCIE',)","290","0.1","Q4","0.07","0.00" +"Qualitative & Quantitative Methods in Libraries","2241-1925","2241-1925","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","120","0.1","Q4","0.07","0.00" +"Revista da Anpoll","1414-7564","1982-7830","LANGUAGE & LINGUISTICS","('ESCI',)","38","0.1","","0.07","98.48" +"Revista de Arqueologia Historica Argentina y Latinoamericana","1851-3190","2344-9918","ARCHAEOLOGY","('ESCI',)","37","0.1","","0.07","80.95" +"Revista de Estudios en Seguridad Internacional-RESI","","2444-6157","INTERNATIONAL RELATIONS","('ESCI',)","23","0.1","Q4","0.07","100.00" +"Revista EDaPECI-Educacao a Distancia e Praticas Educativas Comunicacionais e Interculturais","2176-171X","2176-171X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","21","0.1","Q4","0.07","88.73" +"Revista Eletronica Ventilando Acervos","2318-6062","2318-6062","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","5","0.1","","0.07","0.00" +"Revista Vortex-Vortex Music Journal","2317-9937","2317-9937","MUSIC","('ESCI',)","24","0.1","","0.07","68.87" +"Revue Italienne d'Etudes Francaises","2240-7456","2240-7456","LITERATURE, ROMANCE","('ESCI',)","11","0.1","","0.07","63.55" +"Rivista Italiana di Filosofia del Linguaggio","2036-6728","2036-6728","LANGUAGE & LINGUISTICS","('ESCI',)","59","0.1","","0.07","0.00" +"Russian Journal of Criminology","2500-4255","2500-1442","CRIMINOLOGY & PENOLOGY","('ESCI',)","67","0.1","Q4","0.07","92.06" +"SIYASAL-Journal of Political Sciences","","2618-6330","POLITICAL SCIENCE","('ESCI',)","12","0.1","Q4","0.07","49.35" +"Sophia-Educacion","1794-8932","2346-0806","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","33","0.1","Q4","0.07","91.30" +"Southern African Journal of Gynaecological Oncology","2074-2835","2220-105X","OBSTETRICS & GYNECOLOGY","('ESCI',)","45","0.1","Q4","0.07","36.84" +"Sri Lankan Journal of Anaesthesiology","1391-8834","2279-1965","ANESTHESIOLOGY","('ESCI',)","52","0.1","Q4","0.07","96.30" +"Turk Dermatoloji Dergisi-Turkish Journal of Dermatology","1307-7635","1308-5255","DERMATOLOGY","('ESCI',)","68","0.1","Q4","0.07","98.31" +"Abriu-Estudos de Textualidade do Brasil Galicia e Portugal","2014-8526","2014-8534","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","8","0.1","","0.06","35.90" +"Acta Pediatrica de Mexico","0186-2391","2395-8235","PEDIATRICS","('ESCI',)","99","0.1","Q4","0.06","30.84" +"Aerospace Research in Bulgaria","1313-0927","2367-9522","ENGINEERING, AEROSPACE","('ESCI',)","23","0.1","Q4","0.06","30.91" +"African Journal on Conflict Resolution","1562-6997","2309-737X","POLITICAL SCIENCE","('ESCI',)","139","0.1","Q4","0.06","0.00" +"ArtCultura-Revista de Historia Cultura e Arte","1516-8603","2178-3845","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","29","0.1","","0.06","0.00" +"Atelier","2109-9103","2109-9103","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","3","0.1","","0.06","0.00" +"Belphegor","1499-7185","1499-7185","LITERATURE","('ESCI',)","14","0.1","","0.06","25.40" +"BOLETIM DE INDUSTRIA ANIMAL","0067-9615","1981-4100","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","89","0.1","Q4","0.06","88.46" +"Boletin Geografico","0326-1735","2313-903X","GEOGRAPHY","('ESCI',)","14","0.1","Q4","0.06","0.00" +"Bulgarski Ezik i Literatura-Bulgarian Language and Literature","0323-9519","1314-8516","LANGUAGE & LINGUISTICS","('ESCI',)","13","0.1","","0.06","0.00" +"Chuzhdoezikovo Obuchenie-Foreign Language Teaching","0205-1834","1314-8508","LANGUAGE & LINGUISTICS","('ESCI',)","13","0.1","","0.06","0.00" +"Cuadernos de Ilustracion y Romanticismo","2173-0687","2173-0687","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","36","0.1","","0.06","54.69" +"Cuadernos de Proyectos Arquitectonicos","2171-956X","2174-1131","ARCHITECTURE","('ESCI',)","6","0.1","","0.06","48.15" +"Dialogia","1677-1303","1983-9294","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","67","0.1","Q4","0.06","87.55" +"Droit et Cultures","0247-9788","0247-9788","LAW","('ESCI',)","30","0.1","Q4","0.06","68.09" +"E-Journal of International and Comparative Labour Studies","2280-4056","2280-4056","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","36","0.1","Q4","0.06","0.00" +"Egyptian Journal of Surgery","1110-1121","1687-7624","SURGERY","('ESCI',)","208","0.1","Q4","0.06","0.00" +"Filologicheskie Nauki-Nauchnye Doklady Vysshei Shkoly-Philological Sciences-Scientific Essays of Higher Education","2310-4287","2310-4287","LANGUAGE & LINGUISTICS","('ESCI',)","180","0.1","","0.06","0.23" +"HISTORY TODAY","0018-2753","","HISTORY","('AHCI',)","182","0.1","Q3","0.06","0.00" +"In Education","1927-6117","1927-6117","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","55","0.1","Q4","0.06","0.00" +"International Journal of Physiotherapy","2349-5987","2348-8336","ORTHOPEDICS","('ESCI',)","154","0.1","Q4","0.06","98.39" +"Interpretation-A Journal of Political Philosophy","0020-9635","0020-9635","PHILOSOPHY","('AHCI',)","49","0.1","","0.06","0.00" +"Journal for the History of Modern Theology-Zeitschrift fur Neuere Theologiegeschichte","0943-7592","1612-9776","RELIGION","('ESCI',)","10","0.1","","0.06","10.34" +"Journal of Marine Medical Society","0975-3605","2589-1235","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","75","0.1","Q4","0.06","79.66" +"Journal of Tax Administration","2059-190X","2059-190X","BUSINESS, FINANCE","('ESCI',)","56","0.1","Q4","0.06","0.00" +"Journal of Urological Surgery","2148-9580","2148-9580","UROLOGY & NEPHROLOGY","('ESCI',)","75","0.1","Q4","0.06","98.73" +"LaborHistorico","2359-6910","2359-6910","LANGUAGE & LINGUISTICS","('ESCI',)","23","0.1","","0.06","73.97" +"Linguas e Instrumentos Linguisticos","1519-4906","1519-4906","LANGUAGE & LINGUISTICS","('ESCI',)","26","0.1","","0.06","68.04" +"Ljetopis Socijalnog Rada","1846-5412","1846-5412","SOCIAL WORK","('SSCI',)","57","0.1","Q4","0.06","96.55" +"Miranda","2108-6559","2108-6559","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","34","0.1","","0.06","32.04" +"Opus","1517-7017","1517-7017","MUSIC","('ESCI',)","81","0.1","","0.06","96.30" +"Palawan Scientist","2467-5903","2467-5903","BIOLOGY","('ESCI',)","21","0.1","Q4","0.06","0.00" +"Quaestiones Disputatae","2011-0472","2422-2186","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","104","0.1","","0.06","0.00" +"Religious Studies Review","0319-485X","1748-0922","RELIGION","('AHCI',)","44","0.1","","0.06","12.28" +"Revista de Cultura Teologica","0104-0529","2317-4307","RELIGION","('ESCI',)","11","0.1","","0.06","87.12" +"Revista de Estudos Constitucionais Hermeneutica e Teoria do Direito-RECHTD","","2175-2168","LAW","('ESCI',)","32","0.1","Q4","0.06","51.52" +"Revista de Filosofia UIS","1692-2484","2145-8529","PHILOSOPHY","('ESCI',)","30","0.1","","0.06","100.00" +"Revista Estudios Socio-Juridicos","0124-0579","2145-4531","('LAW', 'POLITICAL SCIENCE')","('ESCI', 'ESCI')","21","0.1","('Q4', 'Q4')","0.06","90.48" +"Revista General de Derecho Romano","1697-3046","1697-3046","LAW","('ESCI',)","82","0.1","Q4","0.06","0.00" +"Revista Internacional de Organizaciones","2013-570X","1886-4171","SOCIOLOGY","('ESCI',)","38","0.1","Q4","0.06","20.00" +"REVUE DE METAPHYSIQUE ET DE MORALE","0035-1571","2102-5177","PHILOSOPHY","('AHCI',)","233","0.1","","0.06","0.00" +"Revue Europeenne des Sciences Sociales","0048-8046","1663-4446","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","83","0.1","Q4","0.06","21.43" +"REVUE PHILOSOPHIQUE DE LA FRANCE ET DE L ETRANGER","0035-3833","2104-385X","PHILOSOPHY","('AHCI',)","188","0.1","","0.06","0.00" +"Simbiotica","2316-1620","2316-1620","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","39","0.1","Q4","0.06","91.89" +"Studia z Filologii Polskiej i Slowianskiej","0081-7090","2392-2435","LANGUAGE & LINGUISTICS","('ESCI',)","7","0.1","","0.06","98.53" +"Sztuka i Dokumentacja-Art & Documentation","2080-413X","2080-413X","ART","('ESCI',)","11","0.1","","0.06","0.00" +"Themata-Revista de Filosofia","0212-8365","2253-900X","PHILOSOPHY","('ESCI',)","37","0.1","","0.06","79.12" +"Tocqueville Review","0730-479X","1918-6649","POLITICAL SCIENCE","('ESCI',)","52","0.1","Q4","0.06","0.00" +"VETERINARIA MEXICO","","2448-6760","VETERINARY SCIENCES","('SCIE',)","173","0.1","Q4","0.06","98.08" +"Voix Plurielles","1925-0614","1925-0614","LITERATURE","('ESCI',)","8","0.1","","0.06","2.08" +"Yuyan Kexue-Linguistic Sciences","1671-9484","1671-9484","LANGUAGE & LINGUISTICS","('ESCI',)","75","0.1","","0.06","0.00" +"Zbornik Radova Vizantoloskog Instituta","0584-9888","2406-0917","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","51","0.1","","0.06","94.74" +"ACTA SCIENTIARUM-HEALTH SCIENCES","1679-9291","1807-8648","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","92","0.1","Q4","0.05","98.94" +"Aktualni Gynekologie a Porodnictvi","1803-9588","1803-9588","OBSTETRICS & GYNECOLOGY","('ESCI',)","7","0.1","Q4","0.05","0.00" +"AKTUELLE DERMATOLOGIE","0340-2541","1438-938X","DERMATOLOGY","('ESCI',)","73","0.1","Q4","0.05","0.00" +"AKTUELLE ERNAHRUNGSMEDIZIN","0341-0501","1438-9916","NUTRITION & DIETETICS","('ESCI',)","121","0.1","Q4","0.05","4.05" +"AMERICAN HISTORY","1076-8866","","HISTORY","('AHCI',)","25","0.1","Q3","0.05","0.00" +"Annee du Maghreb","2109-9405","2109-9405","AREA STUDIES","('ESCI',)","86","0.1","Q4","0.05","49.32" +"Archives of Orofacial Science","1823-8602","2231-7163","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","273","0.1","Q4","0.05","58.82" +"Argumentos de Razon Tecnica","1139-3327","2253-8151","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","15","0.1","Q4","0.05","62.96" +"ART IN AMERICA","0004-3214","0004-3214","ART","('AHCI',)","109","0.1","","0.05","0.00" +"Austral Comunicacion","2313-9129","2313-9137","COMMUNICATION","('ESCI',)","30","0.1","Q4","0.05","100.00" +"Boletin Americanista","0520-4100","2014-993X","AREA STUDIES","('ESCI',)","62","0.1","Q4","0.05","76.67" +"Cahiers des Ameriques Latines","1141-7161","2268-4247","AREA STUDIES","('ESCI',)","58","0.1","Q4","0.05","54.69" +"Case Reports in Perinatal Medicine","2192-8932","2192-8959","OBSTETRICS & GYNECOLOGY","('ESCI',)","30","0.1","Q4","0.05","64.44" +"Catrina-The International Journal of Environmental Sciences","1687-5052","2090-2786","ENVIRONMENTAL SCIENCES","('ESCI',)","108","0.1","Q4","0.05","0.00" +"Constelaciones-Revista de Teoria Critica","2172-9506","2172-9506","PHILOSOPHY","('ESCI',)","17","0.1","","0.05","0.00" +"Cuadernos de Linguistica Hispanica","0121-053X","2346-1829","LINGUISTICS","('ESCI',)","62","0.1","Q4","0.05","98.25" +"Cuadernos de Rusistica Espanola","1698-322X","2340-8146","LANGUAGE & LINGUISTICS","('ESCI',)","17","0.1","","0.05","0.00" +"Developpement Durable & Territoires","1772-9971","1772-9971","GEOGRAPHY","('ESCI',)","108","0.1","Q4","0.05","36.17" +"Documenti Geografici","2035-8792","2281-7549","GEOGRAPHY","('ESCI',)","43","0.1","Q4","0.05","0.00" +"Enfance","0013-7545","1969-6981","PSYCHOLOGY, DEVELOPMENTAL","('ESCI',)","152","0.1","Q4","0.05","1.45" +"Epilepsi","1300-7157","1300-7157","CLINICAL NEUROLOGY","('ESCI',)","58","0.1","Q4","0.05","95.00" +"Etudes Ricoeuriennes-Ricoeur Studies","2156-7808","2156-7808","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","40","0.1","Q4","0.05","95.74" +"ETUDES THEOLOGIQUES ET RELIGIEUSES","0014-2239","","RELIGION","('AHCI',)","39","0.1","","0.05","0.00" +"Gorteria","0017-2294","0017-2294","PLANT SCIENCES","('SCIE',)","50","0.1","Q4","0.05","0.00" +"Indian Journal of Vascular and Endovascular Surgery","0972-0820","2394-0999","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'SURGERY')","('ESCI', 'ESCI')","68","0.1","('Q4', 'Q4')","0.05","90.81" +"Insan & Toplum-The Journal of Humanity & Society","2146-7099","2602-2745","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","35","0.1","Q4","0.05","80.00" +"International Journal of Contemporary Economics and Administrative Sciences","1925-4423","1925-4423","ECONOMICS","('ESCI',)","57","0.1","Q4","0.05","0.00" +"International Journal on Working Conditions","2182-9535","2182-9535","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","11","0.1","Q4","0.05","0.00" +"Intervencion-Revista Internacional de Conservacion Restauracion y Museologia","2007-249X","2448-5934","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","28","0.1","","0.05","84.31" +"Intrecci d Arte","2240-7251","2240-7251","ART","('ESCI',)","2","0.1","","0.05","0.00" +"Iranian Journal of Nuclear Medicine","1681-2824","2008-2509","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","66","0.1","Q4","0.05","0.00" +"Journal de la Societe des Americanistes","0037-9174","1957-7842","ANTHROPOLOGY","('ESCI',)","242","0.1","Q4","0.05","30.00" +"Journal of Astronomy and Earth Sciences Education","2374-6246","2374-6254","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","30","0.1","Q4","0.05","0.00" +"Journal of Fetal Medicine","2348-1153","2348-8859","OBSTETRICS & GYNECOLOGY","('ESCI',)","55","0.1","Q4","0.05","100.00" +"Journal of Indian Geophysical Union","0257-7968","0257-7968","GEOCHEMISTRY & GEOPHYSICS","('ESCI',)","254","0.1","Q4","0.05","0.00" +"Journal of Pediatric Emergency and Intensive Care Medicine","","2717-9206","('EMERGENCY MEDICINE', 'PEDIATRICS')","('ESCI', 'ESCI')","43","0.1","('Q4', 'Q4')","0.05","100.00" +"Journal of the Korean Ophthalmological Society","0378-6471","2092-9374","OPHTHALMOLOGY","('ESCI',)","416","0.1","Q4","0.05","99.63" +"Korean Journal of Optics and Photonics","1225-6285","2287-321X","OPTICS","('ESCI',)","35","0.1","Q4","0.05","0.00" +"LEA-Lingue e Letterature d Oriente e d Occidente","1824-4920","1824-484X","LANGUAGE & LINGUISTICS","('ESCI',)","24","0.1","","0.05","1.30" +"Library & Information History","1758-3489","1758-3497","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","43","0.1","Q4","0.05","7.41" +"Linguae &-Rivista di Lingue e Culture Moderne","2281-8952","1724-8698","LANGUAGE & LINGUISTICS","('ESCI',)","9","0.1","","0.05","27.50" +"M+A-Revista Electronica de Medio Ambiente","1886-3329","1886-3329","ENVIRONMENTAL STUDIES","('ESCI',)","23","0.1","Q4","0.05","0.00" +"Medecine & Droit","1246-7391","1873-6475","MEDICINE, LEGAL","('ESCI',)","32","0.1","Q4","0.05","43.40" +"Miscelanea de Estudios Arabes y Hebraicos-Seccion Hebreo","1696-585X","2340-2547","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","17","0.1","","0.05","100.00" +"Nuevo Pensamiento-Revista de Filosofia","1853-7596","1853-7596","PHILOSOPHY","('ESCI',)","10","0.1","","0.05","0.00" +"Pathologia","2306-8027","2310-1237","PATHOLOGY","('ESCI',)","39","0.1","Q4","0.05","98.43" +"Philologica Jassyensia","1841-5377","2247-8353","LANGUAGE & LINGUISTICS","('ESCI',)","25","0.1","","0.05","0.00" +"Policija i Sigurnost-Police and Security","1330-0229","1848-428X","CRIMINOLOGY & PENOLOGY","('ESCI',)","31","0.1","Q4","0.05","0.00" +"Recherche et Pratiques Pedagogiques en Langues de Specialite-Cahiers de l Apliut","2257-5405","2119-5242","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","32","0.1","Q4","0.05","14.06" +"Revista Critica de Ciencias Sociais","0254-1106","2182-7435","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","299","0.1","Q4","0.05","87.32" +"Revista de Pesquisa-Cuidado e Fundamental Online","2175-5361","2175-5361","NURSING","('ESCI',)","252","0.1","Q4","0.05","91.47" +"Revista Electronica Calidad en la Educacion Superior","1659-4703","1659-4703","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","32","0.1","Q4","0.05","57.14" +"Revista Latinoamericana de Investigacion en Matematica Educativa-RELIME","1665-2436","2007-6819","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","90","0.1","Q4","0.05","89.29" +"Revista ORL","","2444-7986","OTORHINOLARYNGOLOGY","('ESCI',)","50","0.1","Q4","0.05","95.70" +"Revue Cirkevniho Prava-Church Law Review","1211-1635","2336-5609","RELIGION","('ESCI',)","15","0.1","","0.05","0.00" +"Rita-Revista Indexada de Textos Academicos","2340-9711","2386-7027","ARCHITECTURE","('ESCI',)","37","0.1","","0.05","94.38" +"Romanian Journal of Military Medicine","1222-5126","2501-2312","MEDICINE, GENERAL & INTERNAL","('ESCI',)","75","0.1","Q4","0.05","0.00" +"Rossiiskii Zhurnal Menedzhmenta-Russian Management Journal","1729-7427","2618-6977","MANAGEMENT","('ESCI',)","43","0.1","Q4","0.05","100.00" +"Tempo e Argumento","2175-1803","2175-1803","HISTORY","('ESCI',)","80","0.1","Q3","0.05","91.50" +"Tomsk State University Journal","1561-7793","1561-803X","MULTIDISCIPLINARY SCIENCES","('ESCI',)","292","0.1","Q4","0.05","5.40" +"Trans-Revue de Litterature Generale et Comparee","1778-3887","1778-3887","LITERATURE","('ESCI',)","7","0.1","","0.05","0.00" +"Turkish Journal of Plastic Surgery","1300-6878","2528-8644","SURGERY","('ESCI',)","76","0.1","Q4","0.05","4.76" +"VERIFICHE","0391-4186","","PHILOSOPHY","('AHCI',)","16","0.1","","0.05","0.00" +"Akustika","1801-9064","1801-9064","ACOUSTICS","('ESCI',)","35","0.1","Q4","0.04","0.78" +"Anales AFA","0327-358X","1850-1168","PHYSICS, MULTIDISCIPLINARY","('ESCI',)","22","0.1","Q4","0.04","38.96" +"Anesteziologie a Intenzivni Medicina","1214-2158","1805-4412","ANESTHESIOLOGY","('ESCI',)","19","0.1","Q4","0.04","0.00" +"Annals of King Edward Medical University Lahore Pakistan","2079-7192","2079-0694","MEDICINE, GENERAL & INTERNAL","('ESCI',)","170","0.1","Q4","0.04","11.97" +"Ars Bilduma","1989-9262","1989-9262","ART","('ESCI',)","8","0.1","","0.04","91.67" +"Artifara-Revista de Lenguas y Literaturas Ibericas y Latinoamericanas","1594-378X","1594-378X","LANGUAGE & LINGUISTICS","('ESCI',)","27","0.1","","0.04","0.00" +"Asian Journal of Management Cases","0972-8201","0973-0621","MANAGEMENT","('ESCI',)","35","0.1","Q4","0.04","0.00" +"ASR Chiang Mai University Journal of Social Sciences and Humanities","2408-1469","2408-1469","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","21","0.1","Q4","0.04","97.78" +"Bibliotecas-Revista de la Escuela de Bibliotecologia Documentacion e Informacion","1409-3049","1659-3286","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","6","0.1","Q4","0.04","75.00" +"CAHIERS D ETUDES AFRICAINES","0008-0055","1777-5353","ANTHROPOLOGY","('ESCI',)","311","0.1","Q4","0.04","12.12" +"Cambio-Rivista sulle Trasformazioni Sociali","2239-1118","2239-1118","SOCIOLOGY","('ESCI',)","34","0.1","Q4","0.04","57.38" +"Ciencia e Ingenieria","1316-7081","2244-8780","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","41","0.1","Q4","0.04","0.00" +"Cuadernos Inter c a mbio sobre Centroamerica y el Caribe","1659-0139","1659-4940","AREA STUDIES","('ESCI',)","39","0.1","Q4","0.04","83.56" +"Cyprus Journal of Medical Sciences","2149-7893","2536-507X","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","79","0.1","Q4","0.04","93.41" +"Dimension Empresarial","1692-8563","2322-956X","ECONOMICS","('ESCI',)","68","0.1","Q4","0.04","0.00" +"DOKLADY NATSIONALNOI AKADEMII NAUK BELARUSI","1561-8323","2524-2431","MULTIDISCIPLINARY SCIENCES","('ESCI',)","59","0.1","Q4","0.04","96.96" +"Eurasian Journal of Pulmonology","2148-3620","2148-5402","RESPIRATORY SYSTEM","('ESCI',)","81","0.1","Q4","0.04","86.36" +"Fourrages","0429-2766","0429-2766","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('SCIE',)","223","0.1","Q4","0.04","0.00" +"Fuentes el Reventon Energetico","1657-6527","2145-8502","ENERGY & FUELS","('ESCI',)","26","0.1","Q4","0.04","97.62" +"Gran Tour","2172-8690","2172-8690","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","14","0.1","Q4","0.04","0.00" +"He Kupu","1179-6812","1179-6812","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","43","0.1","Q4","0.04","0.00" +"Historicka Sociologie","1804-0616","2336-3525","SOCIOLOGY","('ESCI',)","31","0.1","Q4","0.04","100.00" +"Hormigon y Acero","0439-5689","2605-1729","ENGINEERING, CIVIL","('ESCI',)","81","0.1","Q4","0.04","97.47" +"Ilu-Revista de Ciencias de las Religiones","1135-4712","1988-3269","RELIGION","('ESCI',)","31","0.1","","0.04","94.74" +"International E-Journal of Criminal Sciences","1988-7949","1988-7949","CRIMINOLOGY & PENOLOGY","('ESCI',)","7","0.1","Q4","0.04","0.00" +"Iraqi Journal of Hematology","2072-8069","2543-2702","HEMATOLOGY","('ESCI',)","45","0.1","Q4","0.04","88.57" +"ItinerArios-Revista de Literatura","0103-815X","","LITERATURE","('ESCI',)","37","0.1","","0.04","0.00" +"Journal fur Kardiologie","1024-0098","1680-936X","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","22","0.1","Q4","0.04","0.00" +"Journal of Clinical Obstetrics and Gynecology","","2619-9467","OBSTETRICS & GYNECOLOGY","('ESCI',)","30","0.1","Q4","0.04","0.00" +"Journal of IMAB","1312-773X","1312-773X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","259","0.1","Q4","0.04","71.73" +"Journal of Investment Strategies","2047-1238","2047-1246","BUSINESS, FINANCE","('ESCI',)","45","0.1","Q4","0.04","0.00" +"Journal of Pediatric Infection","1307-1068","1308-5271","PEDIATRICS","('ESCI',)","68","0.1","Q4","0.04","88.43" +"Journal of Penal Law and Criminology-Ceza Hukuku ve Kriminoloji Dergisi","2148-6646","2602-3911","CRIMINOLOGY & PENOLOGY","('ESCI',)","13","0.1","Q4","0.04","33.33" +"Journal of Polymer & Composites","2321-8525","2321-2810","POLYMER SCIENCE","('ESCI',)","35","0.1","Q4","0.04","0.64" +"Journal of the Egyptian Ophthalmological Society","2090-0686","2314-6648","OPHTHALMOLOGY","('ESCI',)","31","0.1","Q4","0.04","63.53" +"Journal of the Liaquat University of Medical and Health Sciences","1729-0341","1729-0341","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","119","0.1","Q4","0.04","89.94" +"Journal of the Scientific Society","0974-5009","2278-7127","MEDICINE, GENERAL & INTERNAL","('ESCI',)","103","0.1","Q4","0.04","74.05" +"Journal of Theoretical and Applied Mechanics-Bulgaria","0861-6663","1314-8710","MECHANICS","('ESCI',)","115","0.1","Q4","0.04","54.55" +"Journal of Unschooling and Alternative Learning","1916-8128","1916-8128","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","14","0.1","Q4","0.04","0.00" +"Journal of Urban Ethnology","1429-0618","1429-0618","ANTHROPOLOGY","('ESCI',)","4","0.1","Q4","0.04","95.45" +"Khazar Journal of Humanities and Social Sciences","2223-2613","2223-2621","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","37","0.1","Q4","0.04","0.00" +"Libres-Library and Information Science Research Electronic Journal","1058-6768","1058-6768","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","41","0.1","Q4","0.04","90.00" +"Libros de la Corte","1989-6425","1989-6425","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","44","0.1","","0.04","80.61" +"Llengua Societat i Comunicacio","1697-5928","1697-5928","LANGUAGE & LINGUISTICS","('ESCI',)","7","0.1","","0.04","75.00" +"Nauka i Tehnologii Truboprovodnogo Transporta Nefti i Nefteproduktov-Science & Technologies-Oil and Oil Products Pipeline Transportation","2221-2701","2541-9595","ENGINEERING, MECHANICAL","('ESCI',)","34","0.1","Q4","0.04","0.00" +"Nepalese Heart Journal","2091-2978","2091-2978","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","35","0.1","Q4","0.04","98.80" +"Oral & Maxillofacial Pathology Journal","0976-1225","2322-0384","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","69","0.1","Q4","0.04","0.00" +"Panacea-Boletin de Medicina y Traduccion","1537-1964","1537-1964","LINGUISTICS","('ESCI',)","67","0.1","Q4","0.04","0.00" +"Pediatric Anesthesia and Critical Care Journal","2281-8421","2281-8421","ANESTHESIOLOGY","('ESCI',)","14","0.1","Q4","0.04","0.00" +"Physician Assistant Clinics","2405-7991","2405-7991","MEDICINE, GENERAL & INTERNAL","('ESCI',)","44","0.1","Q4","0.04","1.13" +"Psicologia Conocimiento y Sociedad","1688-7026","1688-7026","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","59","0.1","Q4","0.04","83.05" +"Ragion Pratica","1720-2396","1720-2396","PHILOSOPHY","('ESCI',)","33","0.1","","0.04","0.00" +"Recent Period Turkish Studies-Yakin Donem Turkiye Arastirmalari","1304-9720","2547-9679","('AREA STUDIES', 'HISTORY')","('ESCI', 'ESCI')","3","0.1","('Q4', 'Q3')","0.04","47.62" +"REMEA-Revista Eletronica do Mestrado em Educacao Ambiental","2318-4884","1517-1256","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","90","0.1","Q4","0.04","20.50" +"Revista CES Derecho","2145-7719","2145-7719","LAW","('ESCI',)","28","0.1","Q4","0.04","98.61" +"Revista de Investigacion Linguistica","1139-1146","1989-4554","LINGUISTICS","('ESCI',)","53","0.1","Q4","0.04","64.52" +"Revista del CLAD Reforma y Democracia","1315-2378","1315-2378","('POLITICAL SCIENCE', 'PUBLIC ADMINISTRATION')","('SSCI', 'SSCI')","113","0.1","('Q4', 'Q4')","0.04","0.00" +"Revista Digital Mundo Asia Pacifico","2344-8172","2344-8172","AREA STUDIES","('ESCI',)","8","0.1","Q4","0.04","26.67" +"Revista Tecnologia e Sociedade","1809-0044","1984-3526","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","72","0.1","Q4","0.04","68.58" +"Rosa dos Ventos-Turismo e Hospitalidade","2178-9061","2178-9061","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","108","0.1","Q4","0.04","59.14" +"Scienza & Politica-Per una Storia delle Dottrine","1590-4946","1825-9618","POLITICAL SCIENCE","('ESCI',)","49","0.1","Q4","0.04","0.00" +"SOUTHEAST ASIAN JOURNAL OF TROPICAL MEDICINE AND PUBLIC HEALTH","0125-1562","0125-1562","('INFECTIOUS DISEASES', 'PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH', 'TROPICAL MEDICINE')","('SCIE', 'SCIE', 'SCIE')","2,053","0.1","('Q4', 'Q4', 'Q4')","0.04","0.45" +"Synthesis-La Plata","0328-1205","1851-779X","CLASSICS","('AHCI',)","12","0.1","","0.04","100.00" +"TRACE ELEMENTS AND ELECTROLYTES","0946-2104","0946-2104","('BIOCHEMISTRY & MOLECULAR BIOLOGY', 'ENDOCRINOLOGY & METABOLISM')","('SCIE', 'SCIE')","162","0.1","('Q4', 'Q4')","0.04","0.00" +"Turkderm-Turkish Archives of Dermatology and Venerology","2717-6398","2651-5164","DERMATOLOGY","('ESCI',)","129","0.1","Q4","0.04","99.18" +"Ukrainian Metrological Journal","2306-7039","2522-1345","INSTRUMENTS & INSTRUMENTATION","('ESCI',)","23","0.1","Q4","0.04","12.82" +"Visual Ethnography","2281-1605","2281-1605","ANTHROPOLOGY","('ESCI',)","26","0.1","Q4","0.04","0.00" +"Acta Technica Napocensis Series-Applied Mathematics Mechanics and Engineering","1221-5872","2393-2988","MECHANICS","('ESCI',)","153","0.1","Q4","0.03","0.00" +"Actualites Pharmaceutiques","0515-3700","0515-3700","PHARMACOLOGY & PHARMACY","('ESCI',)","72","0.1","Q4","0.03","35.24" +"Agricultura Sociedad y Desarrollo","1870-5472","2594-0244","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","161","0.1","Q4","0.03","71.43" +"AJSP-Reviews and Reports","2381-5949","2381-652X","PATHOLOGY","('ESCI',)","47","0.1","Q4","0.03","8.82" +"Analecta Politica","2027-7458","2390-0067","POLITICAL SCIENCE","('ESCI',)","23","0.1","Q4","0.03","89.80" +"Annals of Clinical and Analytical Medicine","","2667-663X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","140","0.1","Q4","0.03","99.63" +"Anuari de Filologia-Llengues i Literaturas Modernas","2014-1394","2014-1394","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","3","0.1","","0.03","68.00" +"ASEAN Journal of Psychiatry","2231-7791","2231-7805","PSYCHIATRY","('ESCI',)","113","0.1","Q4","0.03","0.00" +"Astrolabio-Nueva Epoca","1668-7515","1668-7515","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","82","0.1","Q4","0.03","17.58" +"Biblios-Revista de Bibliotecologia y Ciencias de la Informacion","1562-4730","1562-4730","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","68","0.1","Q4","0.03","94.44" +"BIOPHARM INTERNATIONAL","1542-166X","1939-1862","('BIOTECHNOLOGY & APPLIED MICROBIOLOGY', 'PHARMACOLOGY & PHARMACY')","('SCIE', 'SCIE')","216","0.1","('Q4', 'Q4')","0.03","0.00" +"Brazilian Neurosurgery-Arquivos Brasileiros de Neurocirurgia","0103-5355","2359-5922","SURGERY","('ESCI',)","62","0.1","Q4","0.03","100.00" +"Bresil-s","2257-0543","2425-231X","AREA STUDIES","('ESCI',)","12","0.1","Q4","0.03","98.86" +"Brussels Studies","2031-0293","2031-0293","URBAN STUDIES","('ESCI',)","75","0.1","Q4","0.03","84.62" +"Cadernos Educacao Tecnologia e Sociedade","2316-9907","2316-9907","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","23","0.1","Q4","0.03","47.00" +"Caplletra","0214-8188","2386-7159","LANGUAGE & LINGUISTICS","('ESCI',)","65","0.1","","0.03","98.33" +"Cartaphilus","1887-5238","1887-5238","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","10","0.1","","0.03","0.00" +"Chirurgia-Italy","0394-9508","1827-1782","SURGERY","('ESCI',)","37","0.1","Q4","0.03","3.41" +"Cine Documental","1852-4699","1852-4699","FILM, RADIO, TELEVISION","('ESCI',)","8","0.1","","0.03","0.00" +"Clinica e Investigacion en Ginecologia y Obstetricia","0210-573X","1578-9349","OBSTETRICS & GYNECOLOGY","('ESCI',)","59","0.1","Q4","0.03","3.00" +"Communiquer","","2368-9587","COMMUNICATION","('ESCI',)","36","0.1","Q4","0.03","70.00" +"Conhecimento & Diversidade","1983-3695","2237-8049","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","19","0.1","Q4","0.03","6.17" +"Contabilidad y Negocios","1992-1896","2221-724X","BUSINESS, FINANCE","('ESCI',)","35","0.1","Q4","0.03","100.00" +"Contemporanea-Revista de Sociologia da UFSCar","2236-532X","2316-1329","SOCIOLOGY","('ESCI',)","50","0.1","Q4","0.03","69.47" +"Contemporary Diagnostic Radiology","0149-9009","1938-1395","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","22","0.1","Q4","0.03","0.00" +"CPU-e Revista de Investigacion Educativa","1870-5308","","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","28","0.1","Q4","0.03","97.92" +"Documentation et Bibliotheques","0315-2340","0315-2340","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","18","0.1","Q4","0.03","0.00" +"Educacao","0101-9031","1984-6444","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","183","0.1","Q4","0.03","88.89" +"Educade-Revista de Educacion en Contabilidad Finanzas y Administracion de Empresas","2173-478X","2173-478X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","9","0.1","Q4","0.03","91.67" +"Eksplorium-Buletin Pusat Teknologi Bahan Galian Nuklir","0854-1418","0854-1418","GEOLOGY","('ESCI',)","22","0.1","Q4","0.03","85.71" +"Equidad & Desarrollo","1692-7311","2389-8844","SOCIAL ISSUES","('ESCI',)","41","0.1","Q4","0.03","98.31" +"Ethnologies","1481-5974","1708-0401","ANTHROPOLOGY","('ESCI',)","46","0.1","Q4","0.03","0.00" +"EurAmerica","1021-3058","1991-7864","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","31","0.1","Q4","0.03","0.00" +"Experiment-A Journal of Russian Culture","1084-4945","2211-730X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","68","0.1","","0.03","0.00" +"Gazi Medical Journal","2147-2092","2147-2092","MEDICINE, GENERAL & INTERNAL","('ESCI',)","105","0.1","Q4","0.03","91.94" +"GEFAHRSTOFFE REINHALTUNG DER LUFT","0949-8036","1436-4891","('ENGINEERING, CIVIL', 'ENGINEERING, ENVIRONMENTAL', 'ENVIRONMENTAL SCIENCES')","('SCIE', 'SCIE', 'SCIE')","90","0.1","('Q4', 'Q4', 'Q4')","0.03","0.00" +"GIORNALE CRITICO DELLA FILOSOFIA ITALIANA","0017-0089","","PHILOSOPHY","('AHCI',)","36","0.1","","0.03","0.00" +"Gurukul Business Review-GBR","0973-1466","0973-9262","BUSINESS","('ESCI',)","9","0.1","Q4","0.03","0.00" +"Habitat y Sociedad","2173-125X","2173-125X","URBAN STUDIES","('ESCI',)","48","0.1","Q4","0.03","92.31" +"Hong Kong Journal of Dermatology & Venereology","1814-7453","1814-7453","DERMATOLOGY","('SCIE',)","30","0.1","Q4","0.03","0.00" +"Implantologie","0943-9692","0943-9692","DENTISTRY, ORAL SURGERY & MEDICINE","('SCIE',)","27","0.1","Q4","0.03","0.00" +"Information Geographique","0020-0093","1777-5876","GEOGRAPHY","('ESCI',)","41","0.1","Q4","0.03","0.00" +"International Journal of Ayurvedic Medicine","0976-5921","0976-5921","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","110","0.1","Q4","0.03","0.58" +"International Sports Studies","1443-0770","1443-0770","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","26","0.1","Q4","0.03","0.00" +"Iranian Heart Journal","1735-7306","1735-7306","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","78","0.1","Q4","0.03","0.00" +"Iride-Filosofia e Discussione Pubblica","1122-7893","1122-7893","PHILOSOPHY","('ESCI',)","33","0.1","","0.03","0.00" +"Izmir Dr Behcet Uz Cocuk Hastanesi Dergisi","2146-2372","1309-9566","MEDICINE, GENERAL & INTERNAL","('ESCI',)","54","0.1","Q4","0.03","97.92" +"JIMS8M-The Journal of Indian Management & Strategy","0973-9335","0973-9343","MANAGEMENT","('ESCI',)","35","0.1","Q4","0.03","0.00" +"JOHNS HOPKINS APL TECHNICAL DIGEST","0270-5214","1930-0530","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","452","0.1","Q4","0.03","0.00" +"Journal of Academic Research in Medicine-JAREM","2146-6505","2147-1894","MEDICINE, GENERAL & INTERNAL","('ESCI',)","49","0.1","Q4","0.03","100.00" +"Journal of Mehmet Akif Ersoy University Economics and Administrative Sciences Faculty","2149-1658","2149-1658","ECONOMICS","('ESCI',)","54","0.1","Q4","0.03","98.56" +"Journal of Pioneering Medical Sciences","2309-7981","2309-7981","MEDICINE, GENERAL & INTERNAL","('ESCI',)","21","0.1","Q4","0.03","8.47" +"Journal of Rajasthan Academy of Physical Sciences","0972-6306","0972-6306","MULTIDISCIPLINARY SCIENCES","('ESCI',)","28","0.1","Q4","0.03","0.00" +"JOURNAL OF THE JAPANESE SOCIETY FOR FOOD SCIENCE AND TECHNOLOGY-NIPPON SHOKUHIN KAGAKU KOGAKU KAISHI","1341-027X","","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","599","0.1","Q4","0.03","0.00" +"Journal of the Statistical and Social Inquiry Society of Ireland","0081-4776","0081-4776","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","34","0.1","Q4","0.03","0.00" +"Luz","1814-151X","1814-151X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","50","0.1","Q4","0.03","0.63" +"Majalah Kedokteran Bandung","0126-074X","2338-6223","MEDICINE, GENERAL & INTERNAL","('ESCI',)","37","0.1","Q4","0.03","91.74" +"Mauerwerk","1432-3427","1437-1022","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","51","0.1","Q4","0.03","0.00" +"Medical-Surgical Journal-Revista Medico-Chirurgicala","0048-7848","2286-2560","MEDICINE, GENERAL & INTERNAL","('ESCI',)","371","0.1","Q4","0.03","3.21" +"Medicine and Health","","2289-5728","MEDICINE, GENERAL & INTERNAL","('ESCI',)","109","0.1","Q4","0.03","100.00" +"MILLENNIUM FILM JOURNAL","1064-5586","1064-5586","FILM, RADIO, TELEVISION","('AHCI',)","105","0.1","","0.03","0.00" +"Nobel Medicus","1305-2381","1305-2381","MEDICINE, GENERAL & INTERNAL","('ESCI',)","54","0.1","Q4","0.03","0.00" +"Perspectiva Geografica","0123-3769","2500-8684","GEOGRAPHY","('ESCI',)","68","0.1","Q4","0.03","76.09" +"Prolegomenos-Derechos y Valores","0121-182X","1909-7727","LAW","('ESCI',)","46","0.1","Q4","0.03","92.16" +"Psycho-Oncologie","1778-3798","1778-381X","('ONCOLOGY', 'PSYCHOLOGY')","('SCIE', 'SCIE')","65","0.1","('Q4', 'Q4')","0.03","19.74" +"Quintana-Revista do Departamento de Historia da Arte","1579-7414","2340-0005","ART","('ESCI',)","24","0.1","","0.03","97.37" +"Revista Boliviana de Derecho","2070-8157","2706-8080","LAW","('ESCI',)","34","0.1","Q4","0.03","0.00" +"Revista Colombiana de Filosofia de la Ciencia","0124-4620","2463-1159","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","28","0.1","Q4","0.03","89.66" +"Revista de Direito Sanitario-Journal of Health Law","1516-4179","2316-9044","LAW","('ESCI',)","65","0.1","Q4","0.03","94.59" +"Revista de Estudios Empresariales-Segunda Epoca","0213-8964","1988-9046","BUSINESS","('ESCI',)","47","0.1","Q4","0.03","90.48" +"Revista de Investigaciones-Universidad del Quindio","1794-631X","2500-5782","MULTIDISCIPLINARY SCIENCES","('ESCI',)","45","0.1","Q4","0.03","62.20" +"Revista Educaonline","1983-2664","1983-2664","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","12","0.1","Q4","0.03","0.00" +"Revista General del Derecho del Trabajo y de la Seguridad Social","1696-9626","1696-9626","LAW","('ESCI',)","65","0.1","Q4","0.03","0.00" +"Revista Innovaciencia","2346-075X","2346-075X","MULTIDISCIPLINARY SCIENCES","('ESCI',)","25","0.1","Q4","0.03","100.00" +"Revista Latinoamericana de Hipertension","1856-4550","1856-4550","PERIPHERAL VASCULAR DISEASE","('ESCI',)","109","0.1","Q4","0.03","0.00" +"Revista Medica del Uruguay","0303-3295","1688-0390","MEDICINE, GENERAL & INTERNAL","('ESCI',)","94","0.1","Q4","0.03","86.43" +"Riset Geologi dan Pertambangan","0125-9849","2354-6638","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","18","0.1","Q4","0.03","95.83" +"RIVISTA DI LETTERATURE MODERNE E COMPARATE","0391-2108","","LITERATURE","('AHCI',)","10","0.1","","0.03","0.00" +"S&F-Scienzaefilosofia it","2036-2927","2036-2927","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","8","0.1","Q4","0.03","0.00" +"Science Diliman","0115-7809","0115-7809","MULTIDISCIPLINARY SCIENCES","('ESCI',)","57","0.1","Q4","0.03","0.00" +"Studies in Language Assessment","2653-5335","2653-5335","LINGUISTICS","('ESCI',)","1","0.1","Q4","0.03","0.00" +"Temas y Debates","1666-0714","1853-984X","POLITICAL SCIENCE","('ESCI',)","37","0.1","Q4","0.03","0.00" +"Trans-Revista de Traductologia","1137-2311","2603-6967","LANGUAGE & LINGUISTICS","('ESCI',)","58","0.1","","0.03","42.19" +"Transfusionsmedizin","2191-8805","2191-8813","HEMATOLOGY","('ESCI',)","12","0.1","Q4","0.03","0.00" +"Turkish Policy Quarterly","1303-5754","1303-5754","POLITICAL SCIENCE","('ESCI',)","108","0.1","Q4","0.03","0.00" +"Tzintzun-Revista de Estudios Historicos","1870-719X","2007-963X","HISTORY","('ESCI',)","39","0.1","Q3","0.03","0.00" +"Uroonkoloji Bulteni-Bulletin of Urooncology","2147-2270","2147-2270","ONCOLOGY","('ESCI',)","32","0.1","Q4","0.03","100.00" +"Zaporozhye Medical Journal","2306-4145","2310-1210","MEDICINE, GENERAL & INTERNAL","('ESCI',)","72","0.1","Q4","0.03","95.58" +"Abakos","2316-9451","2316-9451","MATHEMATICS, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","13","0.1","Q4","0.02","0.00" +"Actualidad Contable Faces","1316-8533","1316-8533","BUSINESS, FINANCE","('ESCI',)","33","0.1","Q4","0.02","56.76" +"Anacronismo e Irrupcion","2250-4982","2250-4982","POLITICAL SCIENCE","('ESCI',)","17","0.1","Q4","0.02","0.00" +"Anadolu Universitesi Sanat & Tasarim Dergisi-Anadolu University Journal of Art & Design","2146-9059","2146-9059","ART","('ESCI',)","20","0.1","","0.02","0.00" +"Anales del Instituto de Actuarios Espanoles","0534-3232","2531-2308","ECONOMICS","('ESCI',)","7","0.1","Q4","0.02","95.00" +"Anuario Iberoamericano de Derecho Internacional Penal","2346-3120","2346-3120","LAW","('ESCI',)","10","0.1","Q4","0.02","92.00" +"ArcHistoR-Architecture History Restoration","2384-8898","2384-8898","ARCHITECTURE","('ESCI',)","27","0.1","","0.02","0.00" +"Asian Case Research Journal","0218-9275","1793-6772","BUSINESS","('ESCI',)","17","0.1","Q4","0.02","0.00" +"Atenas","1682-2749","1682-2749","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","52","0.1","Q4","0.02","0.00" +"BETRIEBSWIRTSCHAFTLICHE FORSCHUNG UND PRAXIS","0340-5370","0340-5370","('BUSINESS', 'MANAGEMENT')","('SSCI', 'SSCI')","171","0.1","('Q4', 'Q4')","0.02","0.00" +"Bibliofilia","0006-0941","2035-6110","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","70","0.1","","0.02","0.00" +"BIOLOGICHESKIE MEMBRANY","0233-4755","","CELL BIOLOGY","('SCIE',)","92","0.1","Q4","0.02","0.00" +"Biuletyn Wydzialu Farmaceutycznego Warszawskiego Uniwersytetu Medycznego","2080-1602","2080-1602","PHARMACOLOGY & PHARMACY","('ESCI',)","43","0.1","Q4","0.02","63.41" +"Boletin Antropologico","0257-750X","0257-750X","ANTHROPOLOGY","('ESCI',)","32","0.1","Q4","0.02","7.89" +"Bulletin of the European Association for Theoretical Computer Science","0252-9742","0252-9742","COMPUTER SCIENCE, THEORY & METHODS","('ESCI',)","67","0.1","Q4","0.02","0.00" +"Ciencia Juridica","2007-3577","2007-6142","LAW","('ESCI',)","12","0.1","Q4","0.02","68.00" +"Cuadernos del CLAEH-Centro Latinoamericano de Economia Humana","0797-6062","2393-5979","ECONOMICS","('ESCI',)","36","0.1","Q4","0.02","88.41" +"Cultura Cientifica","1657-463X","2389-9638","MULTIDISCIPLINARY SCIENCES","('ESCI',)","14","0.1","Q4","0.02","57.89" +"Cultura y Droga","0122-8455","2590-7840","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","28","0.1","Q4","0.02","95.83" +"Educacao por Escrito","2179-8435","2179-8435","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","15","0.1","Q4","0.02","97.67" +"Egyptian Journal of Haematology","1110-1067","2090-9268","HEMATOLOGY","('ESCI',)","73","0.1","Q4","0.02","0.00" +"Eleuthera","2011-4532","2463-1469","SOCIAL WORK","('ESCI',)","63","0.1","Q4","0.02","91.78" +"Entorno Geografico","1692-0074","2382-3518","GEOGRAPHY","('ESCI',)","15","0.1","Q4","0.02","100.00" +"Espace Politique","1958-5500","1958-5500","GEOGRAPHY","('ESCI',)","49","0.1","Q4","0.02","76.74" +"Estudios Socioterritoriales","1515-6206","1853-4392","GEOGRAPHY","('ESCI',)","26","0.1","Q4","0.02","45.74" +"FOOD TECHNOLOGY","0015-6639","0015-6639","FOOD SCIENCE & TECHNOLOGY","('SCIE',)","893","0.1","Q4","0.02","0.00" +"Geo UERJ","1415-7543","1981-9021","GEOGRAPHY","('ESCI',)","57","0.1","Q4","0.02","61.08" +"GEOgraphia-UFF","1517-7793","1517-7793","GEOGRAPHY","('ESCI',)","106","0.1","Q4","0.02","87.77" +"Gynakologische Endokrinologie","1610-2894","1610-2908","ENDOCRINOLOGY & METABOLISM","('ESCI',)","29","0.1","Q4","0.02","16.67" +"Heterocyclic Letters","2231-3087","2230-9632","CHEMISTRY, ORGANIC","('ESCI',)","88","0.1","Q4","0.02","0.00" +"Imagen Diagnostica","2171-3669","2171-9705","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","13","0.1","Q4","0.02","0.00" +"InterCambios-Dilemas y transiciones de la Educacion Superior","2301-0118","2301-0126","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","29","0.1","Q4","0.02","98.48" +"INVESTIGACION CLINICA","0535-5133","2477-9393","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","176","0.1","Q4","0.02","34.76" +"Journal of Active and Passive Electronic Devices","1555-0281","1555-029X","ENGINEERING, ELECTRICAL & ELECTRONIC","('ESCI',)","13","0.1","Q4","0.02","0.00" +"Journal of Computer Chemistry-Japan","1347-1767","1347-3824","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","85","0.1","Q4","0.02","98.55" +"Kuwait Medical Journal","1607-8047","0023-5776","MEDICINE, GENERAL & INTERNAL","('SCIE',)","119","0.1","Q4","0.02","0.00" +"Lumen-Eighteenth-Century Studies-d Etude du Dix-Huitieme","1209-3696","1927-8284","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","39","0.1","Q4","0.02","0.00" +"Maliye Dergisi","1300-3623","1300-3623","BUSINESS, FINANCE","('ESCI',)","58","0.1","Q4","0.02","0.00" +"Mexico y la Cuenca del Pacifico","1665-0174","2007-5308","INTERNATIONAL RELATIONS","('ESCI',)","34","0.1","Q4","0.02","98.11" +"Nodo","1909-3888","2346-092X","URBAN STUDIES","('ESCI',)","23","0.1","Q4","0.02","43.90" +"Onkologija","1408-1741","1581-3215","ONCOLOGY","('ESCI',)","11","0.1","Q4","0.02","0.00" +"Onkourologiya","1726-9776","1996-1812","ONCOLOGY","('ESCI',)","62","0.1","Q4","0.02","94.71" +"Pacific Business Review International","0974-438X","0974-438X","BUSINESS","('ESCI',)","276","0.1","Q4","0.02","0.00" +"Perspectivas em Dialogo-Revista de Educacao e Sociedade","2358-1840","2358-1840","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","22","0.1","Q4","0.02","0.43" +"PHILOSOPHISCHE RUNDSCHAU","0031-8159","1868-7261","PHILOSOPHY","('AHCI',)","33","0.1","","0.02","0.00" +"Proceedings of the Tula States University-Sciences of Earth","2218-5194","2218-5194","GEOSCIENCES, MULTIDISCIPLINARY","('ESCI',)","64","0.1","Q4","0.02","0.00" +"PSYCHIATRIE DE L ENFANT","0079-726X","2102-5320","PSYCHIATRY","('SCIE', 'SSCI')","65","0.1","Q4","0.02","0.00" +"ReS Futurae-Revue d Etudes sur la Science-Fiction","2264-6949","2264-6949","LITERATURE","('ESCI',)","28","0.1","","0.02","28.57" +"Revista Cientifica da Faculdade de Educacao e Meio Ambiente","2179-4200","2179-4200","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","17","0.1","Q4","0.02","59.35" +"Revista Contemporanea de Educacao","1809-5747","1809-5747","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","33","0.1","Q4","0.02","36.26" +"Revista de Direito da Cidade-City Law","2317-7721","2317-7721","URBAN STUDIES","('ESCI',)","119","0.1","Q4","0.02","72.09" +"Revista de Estudios Regionales","0213-7585","0213-7585","ENVIRONMENTAL STUDIES","('ESCI',)","77","0.1","Q4","0.02","0.00" +"Revista de la Federacion Argentina de Cardiologia","0326-646X","1666-5694","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","42","0.1","Q4","0.02","0.00" +"Revista General de Derecho Publico Comparado","1988-5091","1988-5091","LAW","('ESCI',)","26","0.1","Q4","0.02","0.00" +"Revista Letras","0100-0888","2236-0999","LANGUAGE & LINGUISTICS","('ESCI',)","90","0.1","","0.02","0.00" +"Revista Rol de Enfermeria","0210-5020","0210-5020","NURSING","('ESCI',)","55","0.1","Q4","0.02","0.00" +"Revista Rupturas","2215-2466","2215-2466","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","43","0.1","Q4","0.02","8.33" +"Romanian Journal of Political Science","1582-456X","","POLITICAL SCIENCE","('SSCI',)","32","0.1","Q4","0.02","0.00" +"Romanian Journal of Transport Infrastructure","2286-2218","2286-2218","ENGINEERING, CIVIL","('ESCI',)","30","0.1","Q4","0.02","100.00" +"Russian Journal of Building Construction and Architecture","2542-0526","2542-0526","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","13","0.1","Q4","0.02","98.18" +"Sistemas & Gestao","1980-5160","1980-5160","MANAGEMENT","('ESCI',)","48","0.1","Q4","0.02","83.75" +"Tecnologia en Marcha","0379-3982","2215-3241","MULTIDISCIPLINARY SCIENCES","('ESCI',)","161","0.1","Q4","0.02","94.35" +"Teoria e Pratica em Administracao-TPA","2238-104X","2238-104X","MANAGEMENT","('ESCI',)","34","0.1","Q4","0.02","63.93" +"Torre del Virrey-Revista de Estudios Culturales","1885-7353","2255-2022","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","8","0.1","","0.02","0.00" +"Universitas Medica","0041-9095","2011-0839","MEDICINE, GENERAL & INTERNAL","('ESCI',)","69","0.1","Q4","0.02","86.36" +"Verbum","1585-079X","1588-4309","('HISTORY', 'LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI', 'AHCI')","79","0.1","('Q3', 'N/A', 'N/A')","0.02","0.00" +"Zeitschrift fur Herz Thorax und Gefasschirurgie","0930-9225","1435-1277","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","34","0.1","Q4","0.02","5.47" +"ACTA ANAESTHESIOLOGICA BELGICA","0001-5164","2736-5239","ANESTHESIOLOGY","('ESCI',)","262","0.1","Q4","0.01","0.00" +"Actualidades Pedagogicas","0120-1700","2389-8755","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","36","0.1","Q4","0.01","91.18" +"Angiologia","0003-3170","1695-2987","PERIPHERAL VASCULAR DISEASE","('ESCI',)","63","0.1","Q4","0.01","94.03" +"ARQUIVOS BRASILEROS DE PSICOLOGIA","1809-5267","1809-5267","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","151","0.1","Q4","0.01","36.36" +"Biblio 3W-Barcelona","1138-9796","1138-9796","GEOGRAPHY","('ESCI',)","12","0.1","Q4","0.01","4.76" +"Boletin del grupo espanol del carbon","2172-6094","2172-6094","MATERIALS SCIENCE, MULTIDISCIPLINARY","('ESCI',)","21","0.1","Q4","0.01","0.00" +"British Journalism Review","0956-4748","1741-2668","COMMUNICATION","('ESCI',)","41","0.1","Q4","0.01","0.00" +"Calidad de Vida y Salud","1850-6216","1850-6216","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","25","0.1","Q4","0.01","0.00" +"Cimexus","1870-6479","2007-9206","POLITICAL SCIENCE","('ESCI',)","24","0.1","Q4","0.01","50.82" +"Circuit","1183-1693","1183-1693","MUSIC","('ESCI',)","38","0.1","","0.01","9.09" +"Confins-Revue Franco-Bresilienne de Geographie-Revista Franco-Brasileira de Geografia","1958-9212","1958-9212","GEOGRAPHY","('ESCI',)","169","0.1","Q4","0.01","67.46" +"Cuadernos del CIMBAGE","1666-5112","1669-1830","SOCIAL SCIENCES, MATHEMATICAL METHODS","('ESCI',)","10","0.1","Q4","0.01","0.00" +"Cuestiones de Sociologia","1668-1584","2346-8904","SOCIOLOGY","('ESCI',)","39","0.1","Q4","0.01","78.57" +"Debate Universitario","2314-2138","2314-1530","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","14","0.1","Q4","0.01","0.00" +"Eptic","1518-2487","1518-2487","ECONOMICS","('ESCI',)","24","0.1","Q4","0.01","0.00" +"Euskera","0210-1564","0210-1564","LANGUAGE & LINGUISTICS","('ESCI',)","15","0.1","","0.01","0.00" +"Geografares","2175-3709","2175-3709","GEOGRAPHY","('ESCI',)","26","0.1","Q4","0.01","46.75" +"GIM International-The Worldwide Magazine for Geomatics","1566-9076","","REMOTE SENSING","('ESCI',)","38","0.1","Q4","0.01","0.00" +"Hematologie","1264-7527","1950-6368","HEMATOLOGY","('ESCI',)","32","0.1","Q4","0.01","0.00" +"Historia e Cultura","2238-6270","2238-6270","HISTORY","('ESCI',)","43","0.1","Q3","0.01","0.00" +"History of Economic Thought and Policy","2240-9971","2280-188X","ECONOMICS","('ESCI',)","18","0.1","Q4","0.01","0.00" +"Ingineria Automobilului","1842-4074","1842-4074","ENGINEERING, MECHANICAL","('ESCI',)","9","0.1","Q4","0.01","2.13" +"Innovacion Educativa-Mexico","1665-2673","2594-0392","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","35","0.1","Q4","0.01","0.00" +"Journal of the Pancreas","1590-8577","1590-8577","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","700","0.1","Q4","0.01","0.00" +"McGill Journal of Education","0024-9033","1916-0666","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","218","0.1","Q4","0.01","0.00" +"Moenia-Revista Lucense de Linguistica & Literatura","1137-2346","2340-003X","LANGUAGE & LINGUISTICS","('ESCI',)","54","0.1","","0.01","69.77" +"Navus-Revista de Gestao e Tecnologia","2237-4558","2237-4558","MANAGEMENT","('ESCI',)","67","0.1","Q4","0.01","80.81" +"Neurosonology and Cerebral Hemodynamics","1312-6431","1312-6431","NEUROSCIENCES","('ESCI',)","3","0.1","Q4","0.01","0.00" +"Papeles de Trabajo","1851-2577","1851-2577","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","50","0.1","Q4","0.01","0.00" +"Politix","0295-2319","1953-8286","POLITICAL SCIENCE","('SSCI',)","345","0.1","Q4","0.01","0.00" +"Portes-Revista Mexicana de Estudios sobre la Cuenca del Pacifico","1870-6800","1870-6800","ECONOMICS","('ESCI',)","17","0.1","Q4","0.01","0.00" +"Punto Genero","0719-0417","0719-0417","SOCIAL ISSUES","('ESCI',)","15","0.1","Q4","0.01","51.39" +"Question","1669-6581","1669-6581","COMMUNICATION","('ESCI',)","112","0.1","Q4","0.01","96.12" +"RBONE-Revista Brasileira de Obesidade Nutricao e Emagrecimento","1981-9919","1981-9919","NUTRITION & DIETETICS","('ESCI',)","111","0.1","Q4","0.01","0.00" +"Revista de Sociedad Gaditana de Historia Natural","1577-2578","2340-5759","ENVIRONMENTAL SCIENCES","('ESCI',)","17","0.1","Q4","0.01","0.00" +"Revista Ecorfan","2007-1582","2007-3682","BUSINESS","('ESCI',)","8","0.1","Q4","0.01","92.31" +"Revista Formacao Online","2178-7298","1517-543X","GEOGRAPHY","('ESCI',)","15","0.1","Q4","0.01","0.00" +"Revista General de Derecho Penal","1698-1189","1698-1189","LAW","('ESCI',)","70","0.1","Q4","0.01","0.00" +"Revista Latinoamericana de Estudios sobre Cuerpos Emociones y Sociedad","1852-8759","1852-8759","SOCIAL ISSUES","('ESCI',)","59","0.1","Q4","0.01","0.00" +"Revista Perspectiva Empresarial","2389-8186","2389-8194","BUSINESS","('ESCI',)","8","0.1","Q4","0.01","62.50" +"Revista Peruana de Ginecologia y Obstetricia","2304-5124","2304-5132","OBSTETRICS & GYNECOLOGY","('ESCI',)","92","0.1","Q4","0.01","64.36" +"Revista Ra Ximhai","1665-0441","1665-0441","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","179","0.1","Q4","0.01","64.36" +"Revista Univap","1517-3275","2237-1753","MULTIDISCIPLINARY SCIENCES","('ESCI',)","22","0.1","Q4","0.01","91.11" +"Revista Uruguaya de Historia Economica","1688-8561","1688-8561","ECONOMICS","('ESCI',)","12","0.1","Q4","0.01","56.00" +"SEA TECHNOLOGY","0093-3651","","ENGINEERING, OCEAN","('SCIE',)","139","0.1","Q4","0.01","0.00" +"Space","1228-2472","","ARCHITECTURE","('AHCI',)","209","0.1","","0.01","0.00" +"Studia Prawnicze KUL","1897-7146","2719-4264","LAW","('ESCI',)","20","0.1","Q4","0.01","98.32" +"Vision Gerencial","2477-9547","1317-8822","MANAGEMENT","('ESCI',)","24","0.1","Q4","0.01","23.19" +"Zeitschrift fur Pneumologie","2731-7404","2731-7412","RESPIRATORY SYSTEM","('ESCI',)","27","0.1","Q4","0.01","10.38" +"Anuario Calderoniano","1888-8046","","LITERATURE, ROMANCE","('AHCI',)","24","0.1","","0.00","0.00" +"Auster","1514-0121","2346-8890","CLASSICS","('ESCI',)","5","0.1","","0.00","100.00" +"Cauce-Revista Internacional de Filologia Comunicacion y sus Didacticas","0212-0410","0212-0410","LANGUAGE & LINGUISTICS","('ESCI',)","23","0.1","","0.00","0.00" +"Ciudad Paz-Ando","2011-5253","2422-278X","POLITICAL SCIENCE","('ESCI',)","27","0.1","Q4","0.00","100.00" +"Cuaderno Activa","2027-8101","2027-8101","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","3","0.1","Q4","0.00","0.00" +"DANCE MAGAZINE","0011-6009","","DANCE","('AHCI',)","32","0.1","","0.00","0.00" +"DOWN BEAT","0012-5768","0012-5768","MUSIC","('AHCI',)","29","0.1","","0.00","0.00" +"e-Legal History Review","1699-5317","1699-5317","LAW","('ESCI',)","10","0.1","Q4","0.00","1.59" +"Filtration + Separation","0015-1882","1873-7218","ENGINEERING, CHEMICAL","('SCIE',)","269","0.1","Q4","0.00","0.00" +"Finlay","2221-2434","2221-2434","MEDICINE, GENERAL & INTERNAL","('ESCI',)","75","0.1","Q4","0.00","0.00" +"Foro-Revista de Ciencias Juridicas y Sociales. NuevaEpoca","1698-5583","2255-5285","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","40","0.1","Q4","0.00","100.00" +"Gastroenterologie","2731-7420","2731-7439","GASTROENTEROLOGY & HEPATOLOGY","('ESCI',)","33","0.1","Q4","0.00","6.19" +"Gazeta de Antropologia","2340-2792","2340-2792","ANTHROPOLOGY","('ESCI',)","121","0.1","Q4","0.00","0.00" +"GEORGIA REVIEW","0016-8386","","LITERARY REVIEWS","('AHCI',)","110","0.1","","0.00","0.00" +"GREAT PLAINS QUARTERLY","0275-7664","2333-5092","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","139","0.1","","0.00","0.00" +"HISTORIA","1270-0835","","HISTORY","('AHCI',)","490","0.1","Q3","0.00","0.00" +"Historiografias-Revista de Historia y Teoria","2174-4289","2174-4289","HISTORY","('ESCI',)","25","0.1","Q3","0.00","0.00" +"HUDSON REVIEW","0018-702X","2325-5935","LITERARY REVIEWS","('AHCI',)","85","0.1","","0.00","0.00" +"Identidade","2178-437X","2178-437X","ETHNIC STUDIES","('ESCI',)","14","0.1","Q4","0.00","0.00" +"INSULA-REVISTA DE LETRAS Y CIENCIAS HUMANAS","0020-4536","","LITERARY THEORY & CRITICISM","('AHCI',)","140","0.1","","0.00","0.00" +"LIBRARY AND INFORMATION SCIENCE","0373-4447","0373-4447","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","27","0.1","Q4","0.00","0.00" +"Llengua & Literatura","0213-6554","2013-9527","LINGUISTICS","('ESCI',)","12","0.1","Q4","0.00","0.00" +"Materia Arquitectura","0718-7033","0718-7033","ARCHITECTURE","('ESCI',)","5","0.1","","0.00","0.00" +"Medisur-Revista de Ciencias Medicas de Cienfuegos","1727-897X","1727-897X","MEDICINE, GENERAL & INTERNAL","('ESCI',)","168","0.1","Q4","0.00","0.00" +"OPERA","0030-3526","0030-3526","MUSIC","('AHCI',)","159","0.1","","0.00","0.00" +"Pensamiento al Margen","2386-6098","2386-6098","POLITICAL SCIENCE","('ESCI',)","21","0.1","Q4","0.00","0.00" +"Revista de Hispanismo Filosofico","1136-8071","1136-8071","PHILOSOPHY","('AHCI',)","12","0.1","","0.00","0.00" +"Revue Archeologique du Centre de la France","1951-6207","1951-6207","ARCHAEOLOGY","('ESCI',)","38","0.1","","0.00","0.00" +"Sala Preta","2238-3867","2238-3867","THEATER","('ESCI',)","33","0.1","","0.00","90.24" +"SALMAGUNDI-A QUARTERLY OF THE HUMANITIES AND SOCIAL SCIENCES","0036-3529","","LITERARY REVIEWS","('AHCI',)","125","0.1","","0.00","0.00" +"STAND","0038-9366","","LITERARY REVIEWS","('AHCI',)","4","0.1","","0.00","0.00" +"Storica","1125-0194","1973-2236","HISTORY","('ESCI',)","63","0.1","Q3","0.00","0.00" +"Tanz","1869-7720","1869-7720","DANCE","('AHCI',)","20","0.1","","0.00","0.00" +"Veredas-Revista da Associacao Internacional de Lusitanistas","0874-5102","","LITERATURE, ROMANCE","('ESCI',)","30","0.1","","0.00","56.34" +"Pediatria i Medycyna Rodzinna-Paediatrics and Family Medicine","1734-1531","2451-0742","PEDIATRICS","('ESCI',)","260","<0.1","Q4","1.70","98.19" +"Romanica Olomucensia","1803-4136","2571-0966","LITERATURE, ROMANCE","('ESCI',)","24","<0.1","","1.40","86.76" +"Missouri Review","0191-1961","1548-9930","LITERARY REVIEWS","('AHCI',)","12","<0.1","","1.28","0.00" +"Scrutiny2-Issues in English Studies in Southern Africa","1812-5441","1753-5409","LITERATURE","('ESCI',)","39","<0.1","","1.07","0.00" +"Zeitschrift fur Katalanistik","0932-2221","","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","30","<0.1","('N/A', 'N/A')","1.07","0.00" +"Carte Romanze","2282-7447","2282-7447","LITERATURE, ROMANCE","('ESCI',)","10","<0.1","","1.06","72.00" +"OXFORD GERMAN STUDIES","0078-7191","1745-9214","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","38","<0.1","","1.06","35.37" +"Etudes Romanes de Brno","1803-7399","2336-4416","LITERATURE, ROMANCE","('ESCI',)","32","<0.1","","1.02","97.46" +"PARERGON","0313-6221","1832-8334","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","111","<0.1","","0.98","0.00" +"WALLACE STEVENS JOURNAL","0148-7132","2160-0570","POETRY","('ESCI',)","37","<0.1","","0.89","0.00" +"Ben Jonson Journal","1079-3453","1755-165X","LITERATURE, BRITISH ISLES","('AHCI',)","38","<0.1","","0.82","0.00" +"Anales Galdosianos","0569-9924","2161-301X","LITERATURE, ROMANCE","('ESCI',)","9","<0.1","","0.81","0.00" +"COLLEGE LITERATURE","0093-3139","1542-4286","LITERATURE","('AHCI',)","304","<0.1","","0.81","0.00" +"Digithum","1575-2275","1575-2275","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","51","<0.1","","0.80","83.87" +"ROMANISCHE FORSCHUNGEN","0035-8126","1864-0737","LITERATURE, ROMANCE","('AHCI',)","71","<0.1","","0.77","0.00" +"Symbolae Osloenses","0039-7679","1502-7805","CLASSICS","('AHCI',)","61","<0.1","","0.76","28.95" +"Arizona Quarterly","0004-1610","1558-9595","LITERATURE, AMERICAN","('ESCI',)","159","<0.1","","0.70","0.00" +"Nordic Theatre Studies","0904-6380","2002-3898","THEATER","('AHCI',)","24","<0.1","","0.69","100.00" +"Revista Hispanica Moderna","0034-9593","1944-6446","LITERATURE, ROMANCE","('ESCI',)","285","<0.1","","0.69","0.00" +"Manoa-A Pacific Journal of International Writing","1045-7909","1527-943X","LITERARY REVIEWS","('ESCI',)","35","<0.1","","0.67","0.00" +"ROMANCE NOTES","0035-7995","2165-7599","LITERATURE, ROMANCE","('AHCI',)","96","<0.1","","0.66","0.00" +"F Scott Fitzgerald Review","1543-3951","1755-6333","LITERATURE, AMERICAN","('ESCI',)","26","<0.1","","0.65","0.00" +"HISPANOFILA","0018-2206","2165-6185","LITERATURE, ROMANCE","('AHCI',)","66","<0.1","","0.64","0.00" +"RIVISTA DI LETTERATURA STORIOGRAFICA ITALIANA","2532-9626","2611-2787","('HISTORY', 'LITERATURE, ROMANCE')","('ESCI', 'ESCI')","1","<0.1","('Q4', 'N/A')","0.62","0.00" +"Cogent Mathematics & Statistics","","2574-2558","('MATHEMATICS', 'STATISTICS & PROBABILITY')","('ESCI', 'ESCI')","114","<0.1","('Q4', 'Q4')","0.61","88.89" +"MEANJIN","0025-6293","1448-8094","LITERARY REVIEWS","('AHCI',)","104","<0.1","","0.59","0.00" +"In Situ-Revue de Patrimoines","1630-7305","1630-7305","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","38","<0.1","","0.58","15.97" +"Studies in American Jewish Literature","0271-9274","1948-5077","LITERATURE, AMERICAN","('AHCI',)","57","<0.1","","0.58","0.00" +"Vizantiiskii Vremennik","0132-3776","","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","27","<0.1","","0.58","0.00" +"Exemplaria Classica","1699-3225","2173-6839","CLASSICS","('ESCI',)","16","<0.1","","0.54","63.89" +"Technoetic Arts","1477-965X","1758-9533","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","62","<0.1","","0.53","0.00" +"ETUDES FRANCAISES","0014-2085","1492-1405","LITERATURE, ROMANCE","('AHCI',)","60","<0.1","","0.52","0.00" +"Trans-Revista Transcultural de Musica","1697-0101","1697-0101","MUSIC","('ESCI',)","19","<0.1","","0.51","0.00" +"SLAVIC AND EAST EUROPEAN JOURNAL","0037-6752","0037-6752","LITERATURE, SLAVIC","('AHCI',)","127","<0.1","","0.49","0.00" +"MEDIUM AEVUM","0025-8385","","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","146","<0.1","","0.48","0.00" +"Micrologus-Nature Science and Medieval Societies","1123-2560","1123-2560","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","55","<0.1","","0.48","0.00" +"MISSISSIPPI QUARTERLY","0026-637X","2689-517X","LITERARY THEORY & CRITICISM","('AHCI',)","149","<0.1","","0.48","0.00" +"Langston Hughes Review","0737-0555","2576-649X","LITERATURE, AMERICAN","('ESCI',)","14","<0.1","","0.46","0.00" +"Revista de Historia das Ideias","0870-0958","2183-8925","HISTORY","('ESCI',)","42","<0.1","Q4","0.46","100.00" +"Estudios de Teoria Literaria-Revista Digital-Artes Letras Humanidades","2313-9676","2313-9676","LITERARY THEORY & CRITICISM","('ESCI',)","19","<0.1","","0.45","0.00" +"ZEITSCHRIFT FUR GERMANISTIK","0323-7982","","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","74","<0.1","","0.45","0.00" +"Industrial Archaeology Review","0309-0728","1745-8196","('ARCHAEOLOGY', 'HISTORY')","('AHCI', 'AHCI')","70","<0.1","('N/A', 'Q4')","0.44","16.67" +"Nashim-A Journal of Jewish Womens Studies & Gender Issues","0793-8934","1565-5288","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","106","<0.1","","0.44","0.00" +"ATHENAEUM-STUDI PERIODICI DI LETTERATURA E STORIA DELL ANTICHITA","0004-6574","0004-6574","CLASSICS","('AHCI',)","438","<0.1","","0.42","0.00" +"Journal of Modern Chinese History","1753-5654","1753-5662","HISTORY","('ESCI',)","52","<0.1","Q4","0.42","3.70" +"International Journal for History, Culture and Modernity","2666-6529","2213-0624","HISTORY","('ESCI',)","50","<0.1","Q4","0.40","93.75" +"KEATS-SHELLEY REVIEW","0952-4142","2042-1362","POETRY","('AHCI',)","23","<0.1","","0.40","8.82" +"Limite-Revista de Estudios Portugueses y de la Lusofonia","1888-4067","2253-7929","LITERATURE, ROMANCE","('ESCI',)","17","<0.1","","0.40","0.00" +"ROMANCE PHILOLOGY","0035-8002","2295-9017","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","111","<0.1","('N/A', 'N/A')","0.40","0.00" +"MONUMENTA NIPPONICA","0027-0741","1880-1390","ASIAN STUDIES","('AHCI',)","194","<0.1","","0.39","0.00" +"Nka-Journal of Contemporary African Art","1075-7163","2152-7792","ART","('ESCI',)","76","<0.1","","0.39","0.00" +"TEXAS STUDIES IN LITERATURE AND LANGUAGE","0040-4691","1534-7303","LITERATURE","('AHCI',)","229","<0.1","","0.39","0.00" +"NEUE RUNDSCHAU","0028-3347","","LITERARY REVIEWS","('AHCI',)","61","<0.1","","0.38","0.00" +"FAMILY & COMMUNITY HISTORY","1463-1180","1751-3812","HISTORY","('ESCI',)","39","<0.1","Q4","0.37","48.48" +"HENRY JAMES REVIEW","0273-0340","1080-6555","LITERATURE, BRITISH ISLES","('AHCI',)","166","<0.1","","0.37","0.00" +"ROMANISTISCHE ZEITSCHRIFT FUR LITERATURGESCHICHTE-CAHIERS D HISTOIRE DES LITTERATURES ROMANES","0343-379X","2509-7474","LITERATURE, ROMANCE","('AHCI',)","9","<0.1","","0.37","0.00" +"American Periodicals","1054-7479","1548-4238","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","87","<0.1","","0.36","0.00" +"CESKA LITERATURA","0009-0468","2571-094X","LITERATURE, SLAVIC","('AHCI',)","50","<0.1","","0.36","84.85" +"Journal of Visual Art and Design","2337-5795","2338-5480","ART","('ESCI',)","19","<0.1","","0.36","91.89" +"Literary Voice","2277-4521","2583-8199","LITERARY THEORY & CRITICISM","('ESCI',)","9","<0.1","","0.36","0.00" +"Mechanical Engineering Reviews","2187-9753","2187-9753","ENGINEERING, MECHANICAL","('ESCI',)","148","<0.1","Q4","0.36","100.00" +"Observar","1988-5105","1988-5105","ART","('ESCI',)","18","<0.1","","0.36","22.22" +"SCANDINAVICA","0036-5653","0036-5653","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","15","<0.1","","0.36","58.33" +"Codex Aquilarensis","0214-896X","2386-6454","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","36","<0.1","","0.35","0.00" +"MIDWEST QUARTERLY-A JOURNAL OF CONTEMPORARY THOUGHT","0026-3451","0026-3451","LITERARY THEORY & CRITICISM","('AHCI',)","61","<0.1","","0.35","0.00" +"PRINT QUARTERLY","0265-8305","","ART","('AHCI',)","66","<0.1","","0.35","0.00" +"QUADERNI URBINATI DI CULTURA CLASSICA","0033-4987","1724-1901","CLASSICS","('AHCI',)","89","<0.1","","0.35","0.00" +"Rivista di Filologia e di Istruzione Classica","0035-6220","0035-6220","CLASSICS","('AHCI',)","55","<0.1","","0.35","0.00" +"Vernacular Architecture","0305-5477","1749-6292","ARCHITECTURE","('AHCI',)","122","<0.1","","0.35","18.18" +"Haser-Revista Internacional de Filosofia Aplicada","2172-055X","2386-4761","PHILOSOPHY","('ESCI',)","7","<0.1","","0.34","100.00" +"CRITICA-REVISTA HISPANOAMERICANA DE FILOSOFIA","0011-1503","1870-4905","PHILOSOPHY","('AHCI',)","114","<0.1","","0.33","100.00" +"Madrygal-Revista de Estudios Gallegos","1138-9664","1988-3285","LITERATURE, ROMANCE","('ESCI',)","19","<0.1","","0.33","94.87" +"Zutot","1571-7283","1875-0214","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","25","<0.1","","0.33","19.44" +"Austrian Studies","1350-7532","2222-4262","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","32","<0.1","","0.32","0.00" +"Cedille-Revista de Estudios Franceses","1699-4949","1699-4949","LITERATURE, ROMANCE","('ESCI',)","23","<0.1","","0.32","95.71" +"Herald of an Archivist","2073-0101","2073-0101","HISTORY","('ESCI',)","31","<0.1","Q4","0.31","99.65" +"Deltion of the Christian Archaeological Society","1105-5758","2241-2190","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","29","<0.1","","0.30","0.00" +"Knjizevna Smotra","0455-0463","2459-6329","LITERATURE, SLAVIC","('AHCI',)","12","<0.1","","0.30","0.00" +"MOREANA","0047-8105","2398-4961","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","71","<0.1","","0.30","3.03" +"PENNSYLVANIA MAGAZINE OF HISTORY AND BIOGRAPHY","0031-4587","2169-8546","HISTORY","('AHCI',)","236","<0.1","Q4","0.30","0.00" +"Edith Wharton Review","2330-3964","2330-3980","LITERATURE, AMERICAN","('ESCI',)","12","<0.1","","0.29","0.00" +"NURSING HISTORY REVIEW","1062-8061","1938-1913","HISTORY","('ESCI',)","38","<0.1","Q4","0.29","0.00" +"Prolegomena","1333-4395","","PHILOSOPHY","('AHCI',)","35","<0.1","","0.29","0.00" +"Filologia Mediolatina","1124-0008","","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","13","<0.1","","0.28","0.00" +"MASTER DRAWINGS","0025-5025","","ART","('AHCI',)","69","<0.1","","0.28","0.00" +"VIATOR-MEDIEVAL AND RENAISSANCE STUDIES","0083-5897","2031-0234","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","338","<0.1","","0.28","0.00" +"ARCHIV FUR REFORMATIONSGESCHICHTE-ARCHIVE FOR REFORMATION HISTORY","0003-9381","2198-0489","HISTORY","('AHCI',)","68","<0.1","Q4","0.27","0.00" +"First Peoples Child & Family Review","1708-489X","1708-489X","FAMILY STUDIES","('ESCI',)","214","<0.1","Q4","0.27","0.00" +"JAHRBUCH FUR INTERNATIONALE GERMANISTIK","0449-5233","2235-1280","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","40","<0.1","","0.27","0.00" +"Revue LISA-LISA E-Journal","1762-6153","1762-6153","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","28","<0.1","","0.27","100.00" +"CEA CRITIC","0007-8069","2327-5898","LITERATURE","('AHCI',)","55","<0.1","","0.26","1.54" +"Current Writing-Text and Reception in Southern Africa","1013-929X","2159-9130","LITERATURE","('ESCI',)","51","<0.1","","0.26","2.50" +"Humanitas-Portugal","0871-1569","2183-1718","CLASSICS","('ESCI',)","10","<0.1","","0.26","100.00" +"Journal of Reformed Theology","1872-5163","1569-7312","RELIGION","('ESCI',)","34","<0.1","","0.26","20.93" +"Rivista Storica Dell Antichita","0300-340X","","('CLASSICS', 'HISTORY')","('AHCI', 'AHCI')","18","<0.1","('N/A', 'Q4')","0.26","0.00" +"SCHWEIZERISCHES ARCHIV FUR VOLKSKUNDE","0036-794X","","FOLKLORE","('AHCI',)","20","<0.1","","0.26","0.00" +"European Journal of Scandinavian Studies","2191-9399","2191-9402","('LANGUAGE & LINGUISTICS', 'LITERATURE, GERMAN, DUTCH, SCANDINAVIAN')","('AHCI', 'AHCI')","13","<0.1","('N/A', 'N/A')","0.25","34.04" +"Frontiers of History in China","1673-3401","1673-3525","HISTORY","('ESCI',)","69","<0.1","Q4","0.25","0.00" +"Journal of Chinese Military History","2212-7445","2212-7453","('ASIAN STUDIES', 'HISTORY')","('ESCI', 'ESCI')","16","<0.1","('N/A', 'Q4')","0.25","6.25" +"Journal of the Australian Early Medieval Association","1449-9320","2207-2802","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","13","<0.1","","0.25","0.00" +"Rhythmica-Revista Espanola de Metrica Comparada","1696-5744","1696-5744","LITERATURE, ROMANCE","('ESCI',)","9","<0.1","","0.25","0.00" +"COLOQUIO-LETRAS","0010-1451","0010-1451","('LITERARY REVIEWS', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","24","<0.1","('N/A', 'N/A')","0.24","0.00" +"Ignaziana-Rivista di Ricerca Teologica","1828-2377","","RELIGION","('ESCI',)","5","<0.1","","0.24","0.00" +"Letteratura e Letterature","1971-906X","1973-2600","('LITERARY THEORY & CRITICISM', 'LITERATURE')","('ESCI', 'ESCI')","8","<0.1","('N/A', 'N/A')","0.24","0.00" +"MONTANA-THE MAGAZINE OF WESTERN HISTORY","0026-9891","2328-4293","HISTORY","('AHCI',)","81","<0.1","Q4","0.24","0.00" +"Multicultural Shakespeare-Translation Appropriation and Performance","2083-8530","2300-7605","LITERATURE, BRITISH ISLES","('ESCI',)","26","<0.1","","0.24","100.00" +"Short Film Studies","2042-7824","2042-7832","FILM, RADIO, TELEVISION","('ESCI',)","5","<0.1","","0.24","0.00" +"Acta Literaria","0717-6848","0717-6848","LITERATURE, ROMANCE","('AHCI',)","49","<0.1","","0.23","0.00" +"Feministische Studien","0723-5186","2365-9920","WOMENS STUDIES","('SSCI',)","73","<0.1","Q4","0.23","1.92" +"GERMANISCH-ROMANISCHE MONATSSCHRIFT","0016-8904","0016-8904","LITERATURE","('AHCI',)","70","<0.1","","0.23","0.00" +"Jahrbuch der Oesterreichischen Byzantinistik","0378-8660","1810-536X","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","2","<0.1","","0.23","0.00" +"GIORNALE STORICO DELLA LETTERATURA ITALIANA","0017-0496","0017-0496","LITERATURE, ROMANCE","('AHCI',)","110","<0.1","","0.22","0.00" +"MESTER","0160-2764","0160-2764","LITERATURE, ROMANCE","('AHCI',)","14","<0.1","","0.22","21.43" +"Studia Slavica et Balcanica Petropolitana","1995-848X","1995-848X","HISTORY","('ESCI',)","29","<0.1","Q4","0.22","93.75" +"WINTERTHUR PORTFOLIO-A JOURNAL OF AMERICAN MATERIAL CULTURE","0084-0416","1545-6927","ART","('AHCI',)","148","<0.1","","0.22","0.00" +"Medieval Sermon Studies","1366-0691","1749-6276","RELIGION","('ESCI',)","16","<0.1","","0.21","28.57" +"Revista de Letras","0101-3505","1981-7886","LITERARY THEORY & CRITICISM","('AHCI',)","29","<0.1","","0.21","0.00" +"Studies in Comics","2040-3232","2040-3240","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","50","<0.1","","0.21","4.55" +"Eikasmos-Quaderni Bolognesi di Filologia Classica","1121-8819","1121-8819","CLASSICS","('AHCI',)","52","<0.1","","0.20","0.00" +"Journal of Contemporary Painting","2052-6695","2052-6709","ART","('ESCI',)","8","<0.1","","0.20","0.00" +"Museon","0771-6494","1783-158X","('ASIAN STUDIES', 'HUMANITIES, MULTIDISCIPLINARY')","('AHCI', 'AHCI')","155","<0.1","('N/A', 'N/A')","0.20","0.00" +"Philosophy of Photography","2040-3682","2040-3690","ART","('ESCI',)","17","<0.1","","0.20","0.00" +"PHOENIX-THE JOURNAL OF THE CLASSICAL ASSOCIATION OF CANADA","0031-8299","1929-4883","CLASSICS","('AHCI',)","349","<0.1","","0.20","0.00" +"Revista Chilena de Estudios Medievales","0719-2215","0719-689X","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","11","<0.1","","0.20","0.00" +"Rukopysna ta Knyzhkova Spadshchyna Ukrainy-Manuscript and Book Heritage of Ukraine","2222-4203","2222-4203","HISTORY","('ESCI',)","10","<0.1","Q4","0.20","85.71" +"COLLOQUIA GERMANICA","0010-1338","0010-1338","('LANGUAGE & LINGUISTICS', 'LITERATURE, GERMAN, DUTCH, SCANDINAVIAN')","('AHCI', 'AHCI')","52","<0.1","('N/A', 'N/A')","0.19","0.00" +"Elos-Revista de Literatura Infantil e Xuvenil","","2386-7620","LITERATURE","('ESCI',)","8","<0.1","","0.19","96.67" +"FILM CRITICISM","0163-5069","0163-5069","FILM, RADIO, TELEVISION","('AHCI',)","130","<0.1","","0.19","85.71" +"Frontiers of Philosophy in China","1673-3436","1673-355X","PHILOSOPHY","('ESCI',)","98","<0.1","","0.19","0.00" +"Lietuvos istorijos studijos","1392-0448","1648-9101","HISTORY","('ESCI',)","3","<0.1","Q4","0.19","97.87" +"Novyi Istoricheskii Vestnik-The New Historical Bulletin","2072-9286","2072-9286","HISTORY","('ESCI',)","40","<0.1","Q4","0.19","0.00" +"Valenciana","2007-2538","2448-7295","LITERARY THEORY & CRITICISM","('ESCI',)","31","<0.1","","0.19","93.51" +"VOICES-THE JOURNAL OF NEW YORK FOLKLORE","0361-204X","","FOLKLORE","('AHCI',)","50","<0.1","","0.19","0.00" +"Adeptus","2300-0783","2300-0783","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","7","<0.1","","0.18","100.00" +"Escritura e Imagen","1885-5687","1988-2416","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","12","<0.1","","0.18","100.00" +"Kwartalnik Historii Zydow-Jewish History Quarterly","1899-3044","1899-3044","HISTORY","('AHCI',)","24","<0.1","Q4","0.18","0.00" +"Neo-Victorian Studies","1757-9481","1757-9481","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","42","<0.1","","0.18","0.00" +"PLOUGHSHARES","0048-4474","2162-0903","LITERARY REVIEWS","('AHCI',)","9","<0.1","","0.18","0.00" +"Chung Wai Literary Quarterly","0303-0849","0303-0849","('ASIAN STUDIES', 'LITERATURE')","('ESCI', 'ESCI')","21","<0.1","('N/A', 'N/A')","0.17","0.00" +"CogniTextes","1958-5322","1958-5322","LINGUISTICS","('ESCI',)","24","<0.1","Q4","0.17","77.78" +"Mesto a Dejiny-The City and History","1339-0163","1339-0163","HISTORY","('ESCI',)","4","<0.1","Q4","0.17","100.00" +"RELIGION & LITERATURE","0888-3769","2328-6911","('LITERATURE', 'RELIGION')","('AHCI', 'AHCI')","118","<0.1","('N/A', 'N/A')","0.17","0.00" +"Remate de Males","0103-183X","2316-5758","LITERARY THEORY & CRITICISM","('ESCI',)","18","<0.1","","0.17","56.06" +"SLAVONICA","1361-7427","1745-8145","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","26","<0.1","","0.17","20.83" +"Teatro e Storia","0394-6932","2239-7272","THEATER","('ESCI',)","11","<0.1","","0.17","0.00" +"Vestnik Tomskogo Gosudarstvennogo Universiteta-Kulturologiya i Iskusstvovedenie-Tomsk State University Journal of Cultural Studies and Art History","2222-0836","2311-3685","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","39","<0.1","","0.17","0.00" +"CANADIAN REVIEW OF AMERICAN STUDIES","0007-7720","1710-114X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","107","<0.1","","0.16","0.00" +"Journal of Early Modern Studies-Romania","2285-6382","2286-0290","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","28","<0.1","","0.16","0.00" +"Meta-Research in Hermeneutics Phenomenology and Practical Philosophy","2067-3655","2067-3655","PHILOSOPHY","('ESCI',)","38","<0.1","","0.16","0.00" +"Militargeschichtliche Zeitschrift","2193-2336","2196-6850","HISTORY","('AHCI',)","38","<0.1","Q4","0.16","0.00" +"Mundo Eslavo-Journal of Slavic Studies","1579-8372","2255-517X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","8","<0.1","","0.16","86.96" +"NEW ENGLAND REVIEW-MIDDLEBURY SERIES","1053-1297","2161-9131","LITERARY REVIEWS","('AHCI',)","31","<0.1","","0.16","0.00" +"REVUE DE MUSICOLOGIE","0035-1601","","MUSIC","('AHCI',)","58","<0.1","","0.16","0.00" +"Taiwan Journal of East Asian Studies","1812-6243","1812-6243","ASIAN STUDIES","('ESCI',)","13","<0.1","","0.16","0.00" +"Tekst Kniga Knigoizdanie-Text Book Publishing","2306-2061","2311-3774","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","10","<0.1","","0.16","12.50" +"Caligrama-Revista de Estudos Romanicos","0103-2178","2238-3824","LITERATURE, ROMANCE","('ESCI',)","13","<0.1","","0.15","0.00" +"Cross Currents","0011-1953","1939-3881","RELIGION","('ESCI',)","148","<0.1","","0.15","0.00" +"Journal of Religion and Popular Culture","","1703-289X","RELIGION","('ESCI',)","61","<0.1","","0.15","0.00" +"LATIN AMERICAN MUSIC REVIEW-REVISTA DE MUSICA LATINOAMERICANA","0163-0350","1536-0199","MUSIC","('AHCI',)","98","<0.1","","0.15","0.00" +"PAMIETNIK LITERACKI","0031-0514","0031-0514","LITERATURE, SLAVIC","('AHCI',)","81","<0.1","","0.15","0.00" +"RINASCIMENTO","0080-3073","2037-6138","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","64","<0.1","","0.15","0.00" +"SEWANEE REVIEW","0037-3052","1934-421X","LITERARY REVIEWS","('AHCI',)","168","<0.1","","0.15","0.00" +"TEXT & KRITIK","0040-5329","0040-5329","LITERATURE, GERMAN, DUTCH, SCANDINAVIAN","('AHCI',)","25","<0.1","","0.15","0.00" +"Tort Law Review","1039-3285","1039-3285","LAW","('ESCI',)","22","<0.1","Q4","0.15","0.00" +"WELSH HISTORY REVIEW","0043-2431","0083-792X","HISTORY","('AHCI',)","58","<0.1","Q4","0.15","0.00" +"Antropologia e Teatro-Rivista di Studi","2039-2281","2039-2281","THEATER","('ESCI',)","3","<0.1","","0.14","0.00" +"Aschkenas-Zeitschrift fuer Geschichte und Kultur der Juden","1016-4987","1865-9438","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","30","<0.1","","0.14","24.49" +"BYU Studies Quarterly","2167-8472","2167-8480","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","20","<0.1","","0.14","0.00" +"Cristianesimo nella Storia","0393-3598","0393-3598","RELIGION","('ESCI',)","33","<0.1","","0.14","0.00" +"ESTUDOS IBERO-AMERICANOS","0101-4064","1980-864X","HISTORY","('AHCI',)","104","<0.1","Q4","0.14","93.64" +"Journal of Romance Studies","1473-3536","1752-2331","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","44","<0.1","","0.14","0.00" +"Quiroga-Revista de Patrimonio Iberoamericano","2254-7037","2254-7037","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","23","<0.1","","0.14","82.81" +"Revista Universitaria de Historia Militar","2254-6111","2254-6111","HISTORY","('ESCI',)","43","<0.1","Q4","0.14","0.00" +"Studi Slavistici","1824-761X","1824-7601","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","33","<0.1","","0.14","100.00" +"Theleme-Revista Complutense de Estudios Franceses","1139-9368","1989-8193","LITERATURE, ROMANCE","('ESCI',)","14","<0.1","","0.14","98.36" +"Thresholds","1091-711X","2572-7338","('ARCHITECTURE', 'ART')","('ESCI', 'ESCI')","42","<0.1","('N/A', 'N/A')","0.14","0.00" +"Wenshan Review of Literature and Culture","2077-1282","2077-1290","LITERATURE","('ESCI',)","5","<0.1","","0.14","0.00" +"Amaltea-Revista de MitocrItica","1989-1709","1989-1709","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","2","<0.1","","0.13","100.00" +"Ars Judaica-The Bar Ilan Journal of Jewish Art","1565-6721","2516-4252","ART","('ESCI',)","19","<0.1","","0.13","0.00" +"ASIANetwork Exchange-A Journal for Asian Studies in the Liberal Arts","1943-9938","1943-9946","ASIAN STUDIES","('ESCI',)","22","<0.1","","0.13","90.00" +"Contemporary Pragmatism","1572-3429","1875-8185","PHILOSOPHY","('AHCI',)","90","<0.1","","0.13","6.85" +"Imago-Revista de Emblematica y Cultura Visual","2254-9633","2254-9633","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","11","<0.1","","0.13","96.43" +"NUOVA RIVISTA STORICA","0029-6236","","HISTORY","('AHCI',)","62","<0.1","Q4","0.13","0.00" +"Studia Universitatis Babes-Bolyai Philologia","1220-0484","2065-9652","LITERATURE","('ESCI',)","22","<0.1","","0.13","96.93" +"Tirant","1579-7422","1579-7422","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","11","<0.1","","0.13","100.00" +"ZEITSCHRIFT FUR FRANZOSISCHE SPRACHE UND LITERATUR","0044-2747","2366-2425","LITERATURE, ROMANCE","('AHCI',)","29","<0.1","","0.13","0.00" +"Acta Historica Universitatis Klaipedensis","1392-4095","2351-6526","HISTORY","('ESCI',)","4","<0.1","Q4","0.12","100.00" +"AM Journal of Art and Media Studies","2217-9666","2406-1654","ART","('ESCI',)","14","<0.1","","0.12","78.50" +"ARCHIVO ESPANOL DE ARTE","0004-0428","1988-8511","ART","('AHCI',)","152","<0.1","","0.12","88.46" +"Cahiers des Etudes Anciennes","0317-5065","1923-2713","CLASSICS","('ESCI',)","9","<0.1","","0.12","0.00" +"Contexto-Revista de la Facultad de Arquitectura Universidad Autonoma de Nuevo Leon","2007-1639","2007-1639","ARCHITECTURE","('ESCI',)","6","<0.1","","0.12","0.00" +"Ekphrasis-Images Cinema Theory Media","2067-631X","2559-2068","FILM, RADIO, TELEVISION","('ESCI',)","16","<0.1","","0.12","0.00" +"EUROPE-REVUE LITTERAIRE MENSUELLE","0014-2751","0014-2751","LITERARY REVIEWS","('AHCI',)","138","<0.1","","0.12","0.00" +"FOLK MUSIC JOURNAL","0531-9684","","('FOLKLORE', 'MUSIC')","('AHCI', 'AHCI')","14","<0.1","('N/A', 'N/A')","0.12","0.00" +"Forum-Revue Internationale d Interpretation et de Traduction-International Journal of Interpretation and Translation","1598-7647","2451-909X","LANGUAGE & LINGUISTICS","('ESCI',)","52","<0.1","","0.12","2.33" +"Francofonia-Studi e Ricerche sulle Letterature di Lingua Francese","1121-953X","2036-5659","LITERATURE, ROMANCE","('ESCI',)","24","<0.1","","0.12","0.00" +"NOVYI MIR","0130-7673","","LITERARY REVIEWS","('AHCI',)","97","<0.1","","0.12","0.00" +"QUEENS QUARTERLY","0033-6041","0033-6041","LITERARY REVIEWS","('AHCI',)","44","<0.1","","0.12","0.00" +"Review & Expositor","0034-6373","2052-9449","RELIGION","('ESCI',)","75","<0.1","","0.12","3.41" +"Slavia Meridionalis","1233-6173","2392-2400","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","16","<0.1","","0.12","100.00" +"STUDI FRANCESI","0039-2944","0039-2944","LITERATURE, ROMANCE","('AHCI',)","32","<0.1","","0.12","0.00" +"Antiphon-A Journal for Liturgical Renewal","1543-9925","1543-9933","RELIGION","('ESCI',)","12","<0.1","","0.11","0.00" +"Antipodes-A Global Journal of Australian/New Zealand Literature","0893-5580","2331-9089","LITERATURE, AFRICAN, AUSTRALIAN, CANADIAN","('ESCI',)","42","<0.1","","0.11","0.00" +"Asian Diasporic Visual Cultures and the Americas","2352-3077","2352-3085","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","12","<0.1","","0.11","0.00" +"Atelier du Centre de Recherches Historiques","1760-7914","1760-7914","HISTORY","('ESCI',)","69","<0.1","Q4","0.11","95.45" +"Bible Translator","2051-6770","2051-6789","RELIGION","('ESCI',)","54","<0.1","","0.11","6.76" +"Claridades-Revista de Filosofia","1889-6855","1989-3787","PHILOSOPHY","('ESCI',)","15","<0.1","","0.11","39.62" +"Estudos Teologicos","0101-3130","2237-6461","RELIGION","('ESCI',)","28","<0.1","","0.11","0.00" +"Hermeneia","1453-9047","2069-8291","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","85","<0.1","","0.11","0.00" +"Histria","1848-1183","1849-5699","HISTORY","('ESCI',)","2","<0.1","Q4","0.11","81.25" +"MKG-Chirurgie","2731-748X","2731-7498","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","19","<0.1","Q4","0.11","8.42" +"Plato Journal","2079-7567","2183-4105","PHILOSOPHY","('ESCI',)","25","<0.1","","0.11","100.00" +"Register of the Kentucky Historical Society","0023-0243","2161-0355","HISTORY","('ESCI',)","40","<0.1","Q4","0.11","0.00" +"RESOURCES FOR AMERICAN LITERARY STUDY","0048-7384","","LITERATURE, AMERICAN","('AHCI',)","10","<0.1","","0.11","0.00" +"Revista Biblica","0034-7078","2683-7153","RELIGION","('ESCI',)","7","<0.1","","0.11","0.00" +"REVUE D HISTOIRE LITTERAIRE DE LA FRANCE","0035-2411","2105-2689","LITERATURE, ROMANCE","('AHCI',)","121","<0.1","","0.11","0.00" +"RIVISTA DI STORIA E LETTERATURA RELIGIOSA","0035-6573","2035-7583","RELIGION","('AHCI',)","35","<0.1","","0.11","0.00" +"Studia Canonica","2295-3019","2295-3027","RELIGION","('AHCI',)","23","<0.1","","0.11","0.00" +"Umeni-Art","0049-5123","1804-6509","ART","('AHCI',)","17","<0.1","","0.11","0.00" +"Vestnik Pravoslavnogo Svyato-Tikhonovskogo Gumanitarnogo Universiteta-Seriya I-Bogoslovie-Filosofiya-Religiovedenie","1991-640X","2409-4692","RELIGION","('ESCI',)","19","<0.1","","0.11","100.00" +"ZEITSCHRIFT FUR RELIGIONS-UND GEISTESGESCHICHTE","0044-3441","","RELIGION","('AHCI',)","60","<0.1","","0.11","0.00" +"Archai-Revista de Estudos Sobre as Origens do Pensamento Ocidental","1984-249X","1984-249X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","22","<0.1","","0.10","95.24" +"Beytulhikme-An International Journal of Philosophy","1303-8303","1303-8303","PHILOSOPHY","('ESCI',)","17","<0.1","","0.10","0.00" +"BULLETIN OF THE INSTITUTE OF HISTORY AND PHILOLOGY ACADEMIA SINICA","1012-4195","","('ASIAN STUDIES', 'HISTORY', 'LANGUAGE & LINGUISTICS')","('AHCI', 'AHCI', 'AHCI')","42","<0.1","('N/A', 'Q4', 'N/A')","0.10","0.00" +"Estudos de Religiao","0103-801X","2176-1078","RELIGION","('ESCI',)","44","<0.1","","0.10","8.18" +"Horizonte-Revista de Estudos de Teologia e Ciencias da Religiao","1679-9615","2175-5841","RELIGION","('ESCI',)","73","<0.1","","0.10","86.30" +"Revista Historia-Debates e Tendencias","1517-2856","2238-8885","HISTORY","('ESCI',)","10","<0.1","Q4","0.10","85.98" +"Revue Roumaine de Philosophie","1220-5400","","PHILOSOPHY","('AHCI',)","14","<0.1","","0.10","0.00" +"Souls","1099-9949","1548-3843","ETHNIC STUDIES","('SSCI',)","381","<0.1","Q4","0.10","0.00" +"STUDI MEDIEVALI","0391-8467","","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","144","<0.1","","0.10","0.00" +"Studia Universitatis Babes-Bolyai Musica","1844-4369","2065-9628","MUSIC","('ESCI',)","15","<0.1","","0.10","85.08" +"Victorian Historical Journal","1030-7710","1320-6001","HISTORY","('ESCI',)","28","<0.1","Q4","0.10","0.00" +"Acta Baltico-Slavica","0065-1044","2392-2389","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","21","<0.1","","0.09","100.00" +"Atlantic Law Journal","1521-3293","2371-9680","LAW","('ESCI',)","6","<0.1","Q4","0.09","0.00" +"Etica & Cine","2250-5660","2250-5415","FILM, RADIO, TELEVISION","('ESCI',)","9","<0.1","","0.09","0.00" +"Filozofska Istrazivanja","0351-4706","0351-4706","PHILOSOPHY","('AHCI',)","25","<0.1","","0.09","92.79" +"International Journal of Integrative Psychotherapy","2156-9703","2156-9703","PSYCHOLOGY, CLINICAL","('ESCI',)","6","<0.1","Q4","0.09","0.00" +"LINKS Rivista di letteratura e cultura tedesca","1594-5359","1724-1685","('LITERATURE', 'LITERATURE, GERMAN, DUTCH, SCANDINAVIAN')","('ESCI', 'ESCI')","1","<0.1","('N/A', 'N/A')","0.09","0.00" +"Literature and Aesthetics","1036-9368","2200-0437","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","31","<0.1","","0.09","0.00" +"Media Tropes","1913-6005","1913-6005","COMMUNICATION","('ESCI',)","32","<0.1","Q4","0.09","100.00" +"MUSIKFORSCHUNG","0027-4801","","MUSIC","('AHCI',)","33","<0.1","","0.09","0.00" +"Navigator-Subsidios para a Historia Maritima do Brasil","0100-1248","0100-1248","HISTORY","('ESCI',)","10","<0.1","Q4","0.09","0.00" +"Revista Critica Cultural","1980-6493","1980-6493","LITERARY THEORY & CRITICISM","('ESCI',)","5","<0.1","","0.09","28.57" +"Revue de Synthese","0035-1776","1955-2343","('HISTORY', 'LITERARY THEORY & CRITICISM', 'PHILOSOPHY')","('AHCI', 'AHCI', 'AHCI')","122","<0.1","('Q4', 'N/A', 'N/A')","0.09","1.96" +"Scandia","0036-5483","0036-5483","HISTORY","('AHCI', 'SSCI')","39","<0.1","Q4","0.09","0.00" +"Sirnak University Journal of Divinity Faculty","2146-4901","2667-6575","RELIGION","('ESCI',)","4","<0.1","","0.09","97.22" +"Synthesis Philosophica","0352-7875","","PHILOSOPHY","('AHCI',)","62","<0.1","","0.09","72.29" +"TIJDSCHRIFT VOOR FILOSOFIE","0040-750X","2031-8952","PHILOSOPHY","('AHCI',)","79","<0.1","","0.09","0.00" +"Turkish Journal of History-Tarih Dergisi","1015-1818","1015-1818","HISTORY","('ESCI',)","8","<0.1","Q4","0.09","52.94" +"Tusculum-Casopis Za Solinske Teme","1846-9469","1846-9469","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","7","<0.1","","0.09","0.00" +"Verbo de Minas","1516-0637","1984-6959","LITERATURE, ROMANCE","('ESCI',)","2","<0.1","","0.09","0.00" +"Altre Modernita-Rivista di Studi Letterari e Culturali","2035-7680","2035-7680","CULTURAL STUDIES","('ESCI',)","81","<0.1","Q4","0.08","0.61" +"Antiteses","1984-3356","1984-3356","HISTORY","('ESCI',)","57","<0.1","Q4","0.08","85.00" +"Arti Musices","0587-5455","1848-9303","MUSIC","('AHCI',)","20","<0.1","","0.08","89.29" +"Cahiers de Droit","0007-974X","1918-8218","LAW","('ESCI',)","60","<0.1","Q4","0.08","6.67" +"Folia Linguistica et Litteraria","1800-8542","1800-8542","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","13","<0.1","","0.08","80.45" +"Frontiers of Literary Studies in China","1673-7318","1673-7423","('ASIAN STUDIES', 'LITERATURE')","('ESCI', 'ESCI')","42","<0.1","('N/A', 'N/A')","0.08","0.00" +"Gazi Akademik Bakis-Gazi Academic View","1307-9778","1309-5137","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","42","<0.1","","0.08","0.00" +"Imafronte-Revista de Historia del Arte","0213-392X","1989-4562","ART","('ESCI',)","12","<0.1","","0.08","87.50" +"Istanbul Hukuk Mecmuasi","2636-7734","2667-6974","LAW","('ESCI',)","26","<0.1","Q4","0.08","50.91" +"Italica Belgradensia","0353-4766","2812-877X","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('ESCI', 'ESCI')","6","<0.1","('N/A', 'N/A')","0.08","100.00" +"Kunstiteaduslikke Uurimusi","1406-2860","","ART","('AHCI',)","27","<0.1","","0.08","0.00" +"Lino - Revista Anual de Historia del Arte","0211-2574","2341-1139","ART","('ESCI',)","9","<0.1","","0.08","0.00" +"Passagens-International Review of Political History and Legal Culture","1984-2503","1984-2503","HISTORY","('ESCI',)","41","<0.1","Q4","0.08","88.73" +"PhiloSOPHIA-A Journal of Continental Feminism","2155-0891","2155-0905","PHILOSOPHY","('ESCI',)","112","<0.1","","0.08","0.00" +"Revista Digital Lampsakos","2145-4086","2145-4086","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","7","<0.1","Q4","0.08","100.00" +"Revista Estudos Politicos","2177-2851","2177-2851","POLITICAL SCIENCE","('ESCI',)","4","<0.1","Q4","0.08","0.00" +"RIVISTA DI FILOSOFIA NEO-SCOLASTICA","0035-6247","0035-6247","PHILOSOPHY","('AHCI',)","90","<0.1","","0.08","0.00" +"South African Journal of Art History","0258-3542","0258-3542","ART","('ESCI',)","34","<0.1","","0.08","0.00" +"Spontaneous Generations-Journal for the History and Philosophy of Science","1913-0465","1913-0465","HISTORY & PHILOSOPHY OF SCIENCE","('ESCI',)","47","<0.1","Q4","0.08","0.00" +"STUDI PIEMONTESI","0392-7261","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","22","<0.1","","0.08","0.00" +"Studia Neoaristotelica-A Journal of Analytical Scholasticism","1214-8407","1804-6843","PHILOSOPHY","('ESCI',)","0","<0.1","","0.08","0.00" +"Tsinghua China Law Review","2151-8904","2160-2379","LAW","('ESCI',)","26","<0.1","Q4","0.08","0.00" +"African Disability Rights Yearbook","2311-8970","2311-8970","LAW","('ESCI',)","17","<0.1","Q4","0.07","0.00" +"Akroterion-Journal for the Classics in South Africa","0303-1896","2079-2883","CLASSICS","('ESCI',)","46","<0.1","","0.07","0.00" +"Anafora","1849-2339","2459-5160","LITERATURE","('ESCI',)","7","<0.1","","0.07","100.00" +"Arte y Ciudad-Revista de Investigacion","2254-2930","2254-7673","ART","('ESCI',)","11","<0.1","","0.07","58.62" +"AusArt","2340-9134","2340-8510","ART","('ESCI',)","15","<0.1","","0.07","94.06" +"Communio Viatorum","0010-3713","","RELIGION","('AHCI',)","13","<0.1","","0.07","0.00" +"CRITICA D ARTE","0011-1511","","ART","('AHCI',)","17","<0.1","","0.07","0.00" +"Cultura-Rivista di Filosofia Letteratura Storia","0393-1560","2612-2391","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","3","<0.1","","0.07","0.00" +"Dialectologia","2013-2247","2013-2247","LANGUAGE & LINGUISTICS","('ESCI',)","66","<0.1","","0.07","58.33" +"Eixo e a Roda-Revista de Literatura Brasileira","0102-4809","2358-9787","LITERATURE, ROMANCE","('ESCI',)","4","<0.1","","0.07","82.18" +"Esercizi Filosofici","1970-0164","1970-0164","PHILOSOPHY","('ESCI',)","12","<0.1","","0.07","0.00" +"Estudios de Historia de Espana","0328-0284","2469-0961","HISTORY","('ESCI',)","6","<0.1","Q4","0.07","100.00" +"GUERRES MONDIALES ET CONFLITS CONTEMPORAINS","0984-2292","2101-0137","HISTORY","('AHCI',)","74","<0.1","Q4","0.07","0.00" +"Journal for the Study of Christian Culture","2071-9957","2071-9957","RELIGION","('ESCI',)","11","<0.1","","0.07","0.00" +"Journal of Art History-Sanat Tarihi Yilligi","0579-4080","2717-6940","('ART', 'HISTORY')","('ESCI', 'ESCI')","0","<0.1","('N/A', 'Q4')","0.07","47.73" +"Religion and the Arts","1079-9265","1568-5292","RELIGION","('AHCI',)","41","<0.1","","0.07","7.25" +"Revista Perseitas","2346-1780","2346-1780","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","18","<0.1","","0.07","96.61" +"Revista Pistis & Praxis-Teologia e Pastoral","1984-3755","2175-1838","RELIGION","('ESCI',)","24","<0.1","","0.07","86.75" +"REVUE DES LANGUES ROMANES","0223-3711","","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('AHCI', 'AHCI')","44","<0.1","('N/A', 'N/A')","0.07","35.29" +"Revue General de Droit","0035-3086","0035-3086","LAW","('ESCI',)","60","<0.1","Q4","0.07","0.00" +"Revue Roumaine de Linguistique-Romanian Review of Linguistics","0035-3957","0035-3957","('LANGUAGE & LINGUISTICS', 'LINGUISTICS')","('AHCI', 'SSCI')","95","<0.1","('N/A', 'Q4')","0.07","0.00" +"RIVISTA DI LETTERATURA ITALIANA","0392-825X","1724-0638","LITERATURE, ROMANCE","('ESCI',)","32","<0.1","","0.07","0.00" +"RLC-REVUE DE LITTERATURE COMPAREE","0035-1466","","LITERATURE","('AHCI',)","68","<0.1","","0.07","0.00" +"RTH-Research Trends in Humanities Education & Philosophy","2284-0184","2284-0184","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","3","<0.1","","0.07","0.00" +"Slavia-Casopis pro Slovanskou Filologii","0037-6736","0037-6736","LANGUAGE & LINGUISTICS","('ESCI',)","38","<0.1","","0.07","0.00" +"SOCIETES","0765-3697","1782-155X","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","57","<0.1","","0.07","0.00" +"Sociohistorica-Cuadernos del CISH","1514-0113","1852-1606","HISTORY","('ESCI',)","14","<0.1","Q4","0.07","96.43" +"Talia Dixit-Revista Interdisciplinar de Retorica e Historiografia","1886-9440","1886-9440","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","18","<0.1","","0.07","57.14" +"Teoliteraria-Revista Brasileira de Literaturas e Teologias","2236-9937","2236-9937","RELIGION","('ESCI',)","11","<0.1","","0.07","79.70" +"TRAITEMENT AUTOMATIQUE DES LANGUES","1248-9433","1965-0906","LINGUISTICS","('ESCI',)","40","<0.1","Q4","0.07","0.00" +"Turk Dili ve Edebiyati Dergisi-Journal of Turkish Language and Literature","1015-2091","2602-2648","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('ESCI', 'ESCI')","11","<0.1","('N/A', 'N/A')","0.07","47.19" +"Zivot Umjetnosti","0514-7794","1849-2207","ART","('AHCI',)","15","<0.1","","0.07","79.41" +"Antares-Letras e Humanidades","1984-4921","1984-4921","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","12","<0.1","","0.06","18.55" +"ARTFORUM INTERNATIONAL","1086-7058","","ART","('AHCI',)","193","<0.1","","0.06","0.00" +"Cadernos de Dereito Actual","2340-860X","2386-5229","LAW","('ESCI',)","19","<0.1","Q4","0.06","0.00" +"DENKMALPFLEGE","0947-031X","2569-1589","ARCHITECTURE","('AHCI',)","5","<0.1","","0.06","0.00" +"Eidola-International Journal of Classical Art History","1824-6192","1826-719X","ART","('ESCI',)","7","<0.1","","0.06","0.00" +"Epohi","1310-2141","2534-8418","HISTORY","('ESCI',)","11","<0.1","Q4","0.06","0.00" +"ESTRENO-CUADERNOS DEL TEATRO ESPANOL CONTEMPORANEO","0097-8663","","THEATER","('AHCI',)","20","<0.1","","0.06","0.00" +"Germanoslavica-Zeitschrift fur Germano-Slawische Studien","1210-9029","1210-9029","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","8","<0.1","","0.06","0.00" +"Global & Local Economic Review","1722-4241","1974-5125","ECONOMICS","('ESCI',)","10","<0.1","Q4","0.06","0.00" +"International Journal of Human Rights and Constitutional Studies","2050-103X","2050-1048","LAW","('ESCI',)","9","<0.1","Q4","0.06","0.00" +"Kalagatos-Revista de Filosofia","1808-107X","1984-9206","PHILOSOPHY","('ESCI',)","12","<0.1","","0.06","0.00" +"Lares-Quadrimestrale di Studi Demoetnoantropologici","0023-8503","2036-511X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","18","<0.1","","0.06","0.00" +"Numen-Revista de Estudos e Pesquisa da Religiao","1516-1021","2236-6296","RELIGION","('ESCI',)","19","<0.1","","0.06","0.00" +"Philomusica","1826-9001","1826-9001","MUSIC","('ESCI',)","15","<0.1","","0.06","0.00" +"REVISTA DE FILOLOGIA DE LA UNIVERSIDAD DE LA LAGUNA","0212-4130","2530-8548","LANGUAGE & LINGUISTICS","('ESCI',)","54","<0.1","","0.06","100.00" +"Revista Electronica de Fuentes y Archivos","1853-4503","1853-4503","HISTORY","('ESCI',)","21","<0.1","Q4","0.06","0.00" +"REVUE FRANCAISE D ETUDES AMERICAINES","0397-7870","1776-3061","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","65","<0.1","","0.06","0.00" +"Roczniki Humanistyczne","0035-7707","2544-5200","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","92","<0.1","","0.06","91.06" +"ROMANTISME","0048-8593","1957-7958","LITERATURE","('AHCI',)","174","<0.1","","0.06","0.00" +"Swiat i Slowo","1731-3317","","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","6","<0.1","","0.06","0.00" +"Tercio Creciente","2340-9096","2340-9096","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","10","<0.1","","0.06","80.72" +"Vjesnik Arheoloskog Muzeja u Zagrebu","0350-7165","0350-7165","ARCHAEOLOGY","('ESCI',)","74","<0.1","","0.06","88.14" +"Zograf","0350-1361","2406-0755","('ART', 'MEDIEVAL & RENAISSANCE STUDIES')","('AHCI', 'AHCI')","46","<0.1","('N/A', 'N/A')","0.06","95.65" +"Acta Universitatis Lodziensis Folia Litteraria Romanica","1505-9065","2449-8831","('LANGUAGE & LINGUISTICS', 'LITERATURE, ROMANCE')","('ESCI', 'ESCI')","2","<0.1","('N/A', 'N/A')","0.05","100.00" +"Archeomatica-Tecnologie per i Beni Culturali","2037-2485","2037-2485","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","13","<0.1","","0.05","0.00" +"CAHIERS DE CIVILISATION MEDIEVALE","0007-9731","2119-1026","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","149","<0.1","","0.05","0.00" +"Cercles-Revista d Historia Cultural","1139-0158","1699-7468","HISTORY","('ESCI',)","12","<0.1","Q4","0.05","96.15" +"Cinemas","1181-6945","1705-6500","FILM, RADIO, TELEVISION","('ESCI',)","24","<0.1","","0.05","0.00" +"Constelaciones","2340-177X","2531-1360","ARCHITECTURE","('ESCI',)","7","<0.1","","0.05","63.64" +"Estudos de Linguistica Galega","1889-2566","1989-578X","LANGUAGE & LINGUISTICS","('ESCI',)","19","<0.1","","0.05","94.12" +"European Judaism-A Journal for the New Europe","0014-3006","1752-2323","RELIGION","('ESCI',)","55","<0.1","","0.05","0.00" +"FRANCAIS MODERNE","0015-9409","","LANGUAGE & LINGUISTICS","('AHCI',)","41","<0.1","","0.05","0.00" +"Griot-Revista de Filosofia","2178-1036","2178-1036","PHILOSOPHY","('ESCI',)","30","<0.1","","0.05","97.65" +"Humanidades & Inovacao","2358-8322","2358-8322","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","107","<0.1","","0.05","0.05" +"Journal of Cellular Automata","1557-5969","1557-5977","('COMPUTER SCIENCE, THEORY & METHODS', 'MATHEMATICS, INTERDISCIPLINARY APPLICATIONS')","('SCIE', 'SCIE')","69","<0.1","('Q4', 'Q4')","0.05","0.00" +"Journal of Condensed Matter Nuclear Science","2227-3123","2227-3123","PHYSICS, CONDENSED MATTER","('ESCI',)","23","<0.1","Q4","0.05","0.00" +"Journal of Lusophone Studies","","2469-4800","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","13","<0.1","","0.05","0.00" +"Journal of Medical and Surgical Research","2351-8200","2351-8200","SURGERY","('ESCI',)","13","<0.1","Q4","0.05","6.38" +"Philosophiques","0316-2923","1492-1391","PHILOSOPHY","('ESCI',)","46","<0.1","","0.05","23.68" +"PORTUGUESE STUDIES","0267-5315","2222-4270","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","88","<0.1","","0.05","0.00" +"Radovi-Zavoda za Hrvatsku Povijest","0353-295X","0353-295X","HISTORY","('ESCI',)","43","<0.1","Q4","0.05","96.23" +"RARITAN-A QUARTERLY REVIEW","0275-1607","","LITERARY REVIEWS","('AHCI',)","101","<0.1","","0.05","0.00" +"REVUE DE L ART","0035-1326","","ART","('AHCI',)","55","<0.1","","0.05","0.00" +"RIVISTA ITALIANA DI MUSICOLOGIA","0035-6867","2036-5586","MUSIC","('AHCI',)","27","<0.1","","0.05","0.00" +"Sic-A Journal of Literature Culture and Literary Translation","","1847-7755","LITERATURE","('ESCI',)","22","<0.1","","0.05","90.57" +"Studies in History and Theory of Architecture-Studii de Istoria si Teoria Arhitecturii","2344-6544","2457-1687","ARCHITECTURE","('AHCI',)","7","<0.1","","0.05","0.00" +"Studii de Lingvistica","2248-2547","2284-5437","LANGUAGE & LINGUISTICS","('ESCI',)","5","<0.1","","0.05","0.00" +"ZBORNIK PRAVNOG FAKULTETA SVEUCILISTA U RIJECI","1330-349X","1846-8314","LAW","('ESCI',)","57","<0.1","Q4","0.05","97.44" +"20 Et 21-Revue D Histoire","2649-664X","2649-6100","HISTORY","('AHCI',)","5","<0.1","Q4","0.04","0.00" +"Aisthema-International Journal","2284-3515","2284-3515","PHILOSOPHY","('ESCI',)","2","<0.1","","0.04","0.00" +"Ankara Avrupa Calismalari Dergisi-Ankara Review of European Studies","1303-2518","1303-2518","AREA STUDIES","('ESCI',)","14","<0.1","Q4","0.04","31.82" +"Aufklarung-Revista de Filosofia","2318-9428","2318-9428","PHILOSOPHY","('ESCI',)","22","<0.1","","0.04","84.25" +"Biblos-Revista da Faculdade de Letras da Universidade de Coimbra","0870-4112","2183-7139","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","50","<0.1","","0.04","97.67" +"Boletin del Archivo General de la Nacion","0185-1926","2448-8798","HISTORY","('ESCI',)","16","<0.1","Q4","0.04","0.00" +"Cahiers de Civilisation Espagnole Contemporaine-De 1808 Au Temps Present","1957-7761","1957-7761","HISTORY","('ESCI',)","7","<0.1","Q4","0.04","98.04" +"Caietele Echinox","1582-960X","1582-960X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","18","<0.1","","0.04","32.12" +"Czech-Polish Historical and Pedagogical Journal","1803-6546","2336-1654","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","11","<0.1","Q4","0.04","100.00" +"GOYA","0017-2715","","ART","('AHCI',)","72","<0.1","","0.04","0.00" +"Insuficiencia Cardiaca","1850-1044","1852-3862","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","17","<0.1","Q4","0.04","0.00" +"International Circular of Graphic Education and Research","1868-0712","1868-0879","IMAGING SCIENCE & PHOTOGRAPHIC TECHNOLOGY","('ESCI',)","8","<0.1","Q4","0.04","0.00" +"Journal of Language and Cultural Education","1339-4045","1339-4584","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","75","<0.1","Q4","0.04","100.00" +"Kleintierpraxis","0023-2076","","VETERINARY SCIENCES","('SCIE',)","71","<0.1","Q4","0.04","0.00" +"LAVAL THEOLOGIQUE ET PHILOSOPHIQUE","0023-9054","1703-8804","('PHILOSOPHY', 'RELIGION')","('AHCI', 'AHCI')","72","<0.1","('N/A', 'N/A')","0.04","0.00" +"Procesos-Revista Ecuatoriana de Historia","1390-0099","2588-0780","HISTORY","('ESCI',)","27","<0.1","Q4","0.04","100.00" +"PROSPETTIVA-RIVISTA DI STORIA DELL ARTE ANTICA E MODERNA","0394-0802","2239-7205","ART","('AHCI',)","75","<0.1","","0.04","0.00" +"RED-Revista Electronica de Direito","2182-9845","2182-9845","LAW","('ESCI',)","11","<0.1","Q4","0.04","0.00" +"Religious Inquiries","2322-4894","2538-6271","RELIGION","('ESCI',)","5","<0.1","","0.04","0.00" +"Revista Andina de Estudios Politicos","2221-4135","2221-4135","POLITICAL SCIENCE","('ESCI',)","7","<0.1","Q4","0.04","0.00" +"REVISTA DE OCCIDENTE","0034-8635","0034-8635","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","805","<0.1","","0.04","0.00" +"Revista Eletronica Pesquiseduca","2177-1626","2177-1626","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","18","<0.1","Q4","0.04","0.00" +"REVUE DES MUSEES DE FRANCE-REVUE DU LOUVRE","1962-4271","","ART","('AHCI',)","11","<0.1","","0.04","0.00" +"Revue des Sciences de l Education","0318-479X","1705-0065","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","110","<0.1","Q4","0.04","0.00" +"Selcuk Universitesi Turkiyat Arastirmalari Dergisi-Selcuk University Journal of Studies in Turcology","","2458-9071","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","22","<0.1","","0.04","42.50" +"Sprache & Sprachen","0934-6813","2199-6016","LANGUAGE & LINGUISTICS","('ESCI',)","0","<0.1","","0.04","0.00" +"Studi Musicali-Nuova Serie","0391-7789","2037-6413","MUSIC","('AHCI',)","28","<0.1","","0.04","0.00" +"Teaching Artist Journal","1541-1796","1541-180X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","33","<0.1","Q4","0.04","0.00" +"Therapeutic Communities","0964-1866","2052-4730","SUBSTANCE ABUSE","('ESCI',)","65","<0.1","Q4","0.04","3.45" +"WAFFEN-UND KOSTUMKUNDE","0042-9945","","ART","('AHCI',)","5","<0.1","","0.04","0.00" +"Yorkshire Archaeological Journal","0084-4276","2045-0664","ARCHAEOLOGY","('ESCI',)","26","<0.1","","0.04","22.22" +"Afterall","1465-4253","2156-4914","ART","('AHCI',)","89","<0.1","","0.03","0.00" +"ANNALES DE BRETAGNE ET DES PAYS DE L OUEST","0399-0826","2108-6443","HISTORY","('AHCI',)","103","<0.1","Q4","0.03","95.28" +"Arquivo Maaravi-Revista Digital de Estudos Judaicos da UFMG","1982-3053","1982-3053","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","6","<0.1","","0.03","0.00" +"Augenheilkunde Up2date","1616-9719","1616-9735","OPHTHALMOLOGY","('ESCI',)","10","<0.1","Q4","0.03","0.00" +"AUSTRALIAN FARM BUSINESS MANAGEMENT JOURNAL","1449-5937","1449-7875","AGRICULTURAL ECONOMICS & POLICY","('ESCI',)","3","<0.1","Q4","0.03","0.00" +"Balint-Journal","1439-5142","1439-9008","PSYCHIATRY","('ESCI',)","3","<0.1","Q4","0.03","0.00" +"Bangladesh Journal of Otorhinolaryngology","1728-8835","2304-6244","OTORHINOLARYNGOLOGY","('ESCI',)","30","<0.1","Q4","0.03","27.12" +"Construction History-International Journal of the Construction History Society","0267-7768","0267-7768","('ARCHITECTURE', 'HISTORY')","('AHCI', 'AHCI')","58","<0.1","('N/A', 'Q4')","0.03","0.00" +"dObras","2358-0003","1982-0313","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","9","<0.1","","0.03","0.87" +"E-Scrita-Revista do Curso de Letras da UNIABEU","2177-6288","2177-6288","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","7","<0.1","","0.03","0.00" +"Educacion Fisica y Deporte","0120-677X","2145-5880","SPORT SCIENCES","('ESCI',)","43","<0.1","Q4","0.03","50.00" +"Entrepalavras","2237-6321","2237-6321","LANGUAGE & LINGUISTICS","('ESCI',)","26","<0.1","","0.03","84.21" +"Festival dell Architettura Magazine","2039-0491","2039-0491","ARCHITECTURE","('ESCI',)","5","<0.1","","0.03","0.00" +"Hilo de la Fabula","1667-7900","2362-5651","LITERATURE","('ESCI',)","9","<0.1","","0.03","94.64" +"Iconographica","1720-1764","1720-1764","ART","('ESCI',)","11","<0.1","","0.03","0.00" +"IN BO-Ricerche e Progetti per il Territorio la Citta e l Architettura","2036-1602","2036-1602","ARCHITECTURE","('ESCI',)","12","<0.1","","0.03","0.00" +"International Journal of Sino-Western Studies","1799-8204","2242-2471","RELIGION","('ESCI',)","7","<0.1","","0.03","30.77" +"Journal of Emergency Medicine Case Reports","2149-9934","2149-9934","EMERGENCY MEDICINE","('ESCI',)","26","<0.1","Q4","0.03","1.77" +"Journal of Learning Styles","2332-8533","2332-8533","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","13","<0.1","Q4","0.03","0.00" +"Laboratorio de Arte","1130-5762","2253-8305","ART","('ESCI',)","58","<0.1","","0.03","100.00" +"Linguas & Letras","1517-7238","1981-4755","LANGUAGE & LINGUISTICS","('ESCI',)","6","<0.1","","0.03","0.00" +"Literatura e Autoritarismo","1679-849X","1679-849X","LITERATURE","('ESCI',)","4","<0.1","","0.03","97.40" +"Memoires Identites Marginalites dans le Monde Occidental Contemporain","1951-6789","1951-6789","HISTORY","('ESCI',)","2","<0.1","Q4","0.03","53.62" +"Musica Oral del Sur","1138-8579","2445-0391","MUSIC","('ESCI',)","9","<0.1","","0.03","0.00" +"Naslede","1820-1768","1820-1768","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","23","<0.1","","0.03","65.92" +"Perspective-Actualite en Histoire de L Art","1777-7852","1777-7852","ART","('AHCI',)","24","<0.1","","0.03","0.00" +"Perspectives Medievales-Revue d'epistemologie des Langues et Litteratures du Moyen Age","2103-6527","2262-5534","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","4","<0.1","","0.03","74.42" +"Philippine Journal of Crop Science","0115-463X","","AGRONOMY","('SCIE',)","135","<0.1","Q4","0.03","0.00" +"PONTE","0032-423X","","LITERARY REVIEWS","('AHCI',)","58","<0.1","","0.03","0.00" +"Religious Studies and Theology","0829-2922","1747-5414","RELIGION","('ESCI',)","28","<0.1","","0.03","0.00" +"Revista Academica da Faculdade de Direito do Recife","1980-3087","2448-2307","LAW","('ESCI',)","6","<0.1","Q4","0.03","44.44" +"Revista de Ensino de Bioquimica","2318-8790","2318-8790","EDUCATION, SCIENTIFIC DISCIPLINES","('ESCI',)","20","<0.1","Q4","0.03","25.71" +"Revista Espanola de Estudios Agrosociales y Pesqueros-REEAP","1575-1198","1575-1198","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","13","<0.1","Q4","0.03","82.35" +"Revista Kanina","0378-0473","2215-2636","LITERATURE","('ESCI',)","10","<0.1","","0.03","95.52" +"REVUE INTERNATIONALE DE PHILOSOPHIE","0048-8143","2033-0138","PHILOSOPHY","('AHCI',)","283","<0.1","","0.03","0.00" +"Seizieme Siecle","1774-4466","","MEDIEVAL & RENAISSANCE STUDIES","('AHCI',)","16","<0.1","","0.03","0.00" +"SINN UND FORM","0037-5756","","LITERARY REVIEWS","('AHCI',)","17","<0.1","","0.03","0.00" +"Sino-Christian Studies","1990-2670","2224-6606","RELIGION","('AHCI',)","8","<0.1","","0.03","0.00" +"Studien zur Deutschen Sprache und Literatur-Alman Dili ve Edebiyati Dergisi","1303-9407","2619-9890","LINGUISTICS","('ESCI',)","2","<0.1","Q4","0.03","43.90" +"Tangence","1189-4563","1710-0305","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","14","<0.1","","0.03","16.00" +"Temas Agrarios","0122-7610","2389-9182","AGRONOMY","('ESCI',)","45","<0.1","Q4","0.03","93.33" +"Transcultural Studies","2191-6411","2191-6411","HISTORY","('ESCI',)","59","<0.1","Q4","0.03","0.00" +"Turkish Librarianship","1300-0039","2147-9682","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","72","<0.1","Q4","0.03","91.30" +"Via Atlantica","1516-5159","2317-8086","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","16","<0.1","","0.03","97.85" +"Vox Juris","1812-6804","2521-5280","LAW","('ESCI',)","12","<0.1","Q4","0.03","58.14" +"Zbornik Matice Srpske za Slavistiku-Matica Srpska Journal of Slavic Studies","0352-5007","0352-5007","LANGUAGE & LINGUISTICS","('ESCI',)","8","<0.1","","0.03","99.37" +"ACME-Annali della Facolta di Studi Umanistici dell Universita degli Studi di Milano","0001-494X","2282-0035","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","8","<0.1","","0.02","100.00" +"Aktuelle Kardiologie","2193-5203","2193-5211","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","12","<0.1","Q4","0.02","5.10" +"ARCHIV FUR DAS STUDIUM DER NEUEREN SPRACHEN UND LITERATUREN","0003-8970","1866-5381","('LANGUAGE & LINGUISTICS', 'LITERATURE')","('AHCI', 'AHCI')","27","<0.1","('N/A', 'N/A')","0.02","0.00" +"ARCHIVES OF AMERICAN ART JOURNAL","0003-9853","2327-0667","ART","('AHCI',)","31","<0.1","","0.02","0.00" +"Asian Biotechnology and Development Review","0972-7566","0972-7566","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('ESCI',)","22","<0.1","Q4","0.02","0.00" +"Cadmo","1122-5165","1972-5019","EDUCATION & EDUCATIONAL RESEARCH","('SSCI',)","15","<0.1","Q4","0.02","0.00" +"Contexto-Revista do Programa de Pos-Graduacao em Letras","2358-9566","2358-9566","LITERATURE","('ESCI',)","2","<0.1","","0.02","1.03" +"CorSalud","2078-7170","2078-7170","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","34","<0.1","Q4","0.02","0.00" +"Debates","1414-7939","2359-1056","MUSIC","('ESCI',)","47","<0.1","","0.02","0.00" +"Eccos-Revista Cientifica","1517-1949","1983-9278","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","60","<0.1","Q4","0.02","97.18" +"Eikasia-Revista de Filosofia","1885-5679","1885-5679","PHILOSOPHY","('ESCI',)","71","<0.1","","0.02","0.00" +"Encrucijada Americana","0719-3432","0718-5766","AREA STUDIES","('ESCI',)","7","<0.1","Q4","0.02","14.29" +"ERCIM News","0926-4981","1564-0094","COMPUTER SCIENCE, INTERDISCIPLINARY APPLICATIONS","('ESCI',)","97","<0.1","Q4","0.02","0.00" +"Estudios del Habitat","0328-929X","2422-6483","ARCHITECTURE","('ESCI',)","11","<0.1","","0.02","90.91" +"Etudes Inuit Studies","0701-1008","0701-1008","ANTHROPOLOGY","('ESCI',)","54","<0.1","Q4","0.02","0.00" +"Film International","1651-6826","2040-3801","FILM, RADIO, TELEVISION","('ESCI',)","54","<0.1","","0.02","0.00" +"Foro de Profesores de E-LE","1886-337X","1886-337X","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","17","<0.1","Q4","0.02","69.44" +"Gallerie e Grandi Opere Sotterranee","0393-1641","","ENGINEERING, CIVIL","('ESCI',)","11","<0.1","Q4","0.02","0.00" +"ILEF Dergisi","2148-7219","2458-9209","COMMUNICATION","('ESCI',)","8","<0.1","Q4","0.02","98.04" +"Informacao & Sociedade-Estudos","0104-0146","1809-4783","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","115","<0.1","Q4","0.02","0.00" +"INFORMATION-WISSENSCHAFT UND PRAXIS","1434-4653","1619-4292","COMPUTER SCIENCE, INFORMATION SYSTEMS","('ESCI',)","38","<0.1","Q4","0.02","13.64" +"Informationen aus Orthodontie und Kieferorthopaedie","0020-0336","1439-4200","DENTISTRY, ORAL SURGERY & MEDICINE","('ESCI',)","22","<0.1","Q4","0.02","0.00" +"Informes Cientificos y Tecnicos","1852-4516","1852-4516","MULTIDISCIPLINARY SCIENCES","('ESCI',)","41","<0.1","Q4","0.02","88.00" +"International journal of Health Medicine and Current Research-IJHMCR","2528-4398","2528-3189","HEALTH CARE SCIENCES & SERVICES","('ESCI',)","7","<0.1","Q4","0.02","0.00" +"Ipotesi-Revista de Estudos Literarios","1415-2525","1982-0836","LITERATURE","('ESCI',)","18","<0.1","","0.02","0.00" +"Jeu-Revue de Theatre","0382-0335","1923-2578","THEATER","('ESCI',)","18","<0.1","","0.02","0.00" +"LINGUA NOSTRA","0024-3868","","LANGUAGE & LINGUISTICS","('AHCI',)","57","<0.1","","0.02","0.00" +"Literatura e Sociedade","1413-2982","2237-1184","LITERATURE","('ESCI',)","34","<0.1","","0.02","88.33" +"Materiales para la Historia del Deporte","","2340-7166","HOSPITALITY, LEISURE, SPORT & TOURISM","('ESCI',)","45","<0.1","Q4","0.02","77.78" +"Mediaciones Sociales","1989-0494","1989-0494","COMMUNICATION","('ESCI',)","28","<0.1","Q4","0.02","100.00" +"Memoria e Ricerca - Rivista di Storia Contemporanea","1127-0195","1972-523X","HISTORY","('ESCI',)","1","<0.1","Q4","0.02","0.00" +"Nouvelle Revue du Travail","2263-8989","2263-8989","INDUSTRIAL RELATIONS & LABOR","('ESCI',)","15","<0.1","Q4","0.02","48.48" +"Pediatria-Asuncion","1683-979X","1683-9803","PEDIATRICS","('ESCI',)","28","<0.1","Q4","0.02","95.83" +"Periferia","","1984-9540","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","24","<0.1","Q4","0.02","70.71" +"Philological Class","2071-2405","2071-2405","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","16","<0.1","Q4","0.02","29.81" +"Politica & Societa","2240-7901","2240-7901","POLITICAL SCIENCE","('ESCI',)","20","<0.1","Q4","0.02","0.00" +"Postepy w Chirurgii Glowy i Szyi-Advances in Head and Neck Surgery","1643-9279","2084-9842","SURGERY","('ESCI',)","1","<0.1","Q4","0.02","3.57" +"Przeglad Sejmowy","1230-5502","1230-5502","LAW","('ESCI',)","25","<0.1","Q4","0.02","45.41" +"Psychoterapia","0239-4170","2391-5862","PSYCHIATRY","('ESCI',)","36","<0.1","Q4","0.02","81.36" +"Quaestio Iuris","1807-8389","1516-0351","LAW","('ESCI',)","37","<0.1","Q4","0.02","86.76" +"Revista Ciencias Sociales y Educacion","2256-5000","2590-7344","SOCIAL ISSUES","('ESCI',)","6","<0.1","Q4","0.02","37.50" +"Revista Cientifica Hermes","2175-0556","2175-0556","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","17","<0.1","Q4","0.02","19.15" +"Revista de Gestion Publica","0719-1820","0719-1839","PUBLIC ADMINISTRATION","('ESCI',)","20","<0.1","Q4","0.02","80.00" +"Revista de Salud Publica-Cordoba","1853-1180","1852-9429","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","26","<0.1","Q4","0.02","29.23" +"Revista Mexicana de Analisis Politico y Administracion Publica","2007-4425","2007-4638","POLITICAL SCIENCE","('ESCI',)","43","<0.1","Q4","0.02","4.65" +"Revista Pos Ciencias Sociais","1983-4527","2236-9473","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","28","<0.1","Q4","0.02","0.00" +"REVUE D ETUDES COMPARATIVES EST-OUEST","0338-0599","","ECONOMICS","('SSCI',)","59","<0.1","Q4","0.02","0.00" +"Ricerche di S-Confine","2038-8411","2038-8411","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","3","<0.1","","0.02","0.00" +"Scire-Representacion y Organizacion del Conocimiento","1135-3716","2340-7042","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","20","<0.1","Q4","0.02","0.00" +"SOLETRAS","1519-7778","2316-8838","LANGUAGE & LINGUISTICS","('ESCI',)","12","<0.1","","0.02","78.35" +"Storia del Pensiero Politico","2279-9818","2279-9818","POLITICAL SCIENCE","('ESCI',)","14","<0.1","Q4","0.02","0.00" +"Totalitarismus und Demokratie","1612-9008","2196-8276","POLITICAL SCIENCE","('ESCI',)","14","<0.1","Q4","0.02","32.35" +"UNIVERSITAS-Monthly Review of Philosophy and Culture","1015-8383","","PHILOSOPHY","('AHCI',)","17","<0.1","","0.02","0.00" +"Yakut Medical Journal","1813-1905","2312-1017","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","44","<0.1","Q4","0.02","0.00" +"Zeitschrift fur Arznei- & Gewurzpflanzen","1431-9292","","PLANT SCIENCES","('SCIE',)","63","<0.1","Q4","0.02","0.00" +"Actualizaciones en Osteologia","1669-8975","1669-8983","MEDICINE, RESEARCH & EXPERIMENTAL","('ESCI',)","23","<0.1","Q4","0.01","0.00" +"Aedos-Revista do Corpo Discente do Programa de Pos-Graduacao em Historia da UFRGS","1984-5634","1984-5634","HISTORY","('ESCI',)","13","<0.1","Q4","0.01","0.00" +"AEROSPACE AMERICA","0740-722X","0740-722X","ENGINEERING, AEROSPACE","('SCIE',)","41","<0.1","Q4","0.01","0.00" +"Agroindustria Sociedad y Ambiente ASA","2343-6115","2343-6115","AGRICULTURE, MULTIDISCIPLINARY","('ESCI',)","0","<0.1","Q4","0.01","0.00" +"Aktualnosci Neurologiczne","1641-9227","1641-9227","CLINICAL NEUROLOGY","('ESCI',)","19","<0.1","Q4","0.01","90.48" +"ARCHITECTURAL RECORD","0003-858X","","ARCHITECTURE","('AHCI',)","127","<0.1","","0.01","0.00" +"Archiwa Biblioteki i Muzea Koscielne","0518-3766","2545-3491","('HISTORY', 'HUMANITIES, MULTIDISCIPLINARY', 'RELIGION')","('ESCI', 'ESCI', 'ESCI')","12","<0.1","('Q4', 'N/A', 'N/A')","0.01","91.03" +"Asterion-Philosophie Histoire des Idees Pensee Politique","1762-6110","1762-6110","PHILOSOPHY","('ESCI',)","14","<0.1","","0.01","67.21" +"Austrian Journal of Clinical Endocrinology and Metabolism","1998-7773","1998-7781","ENDOCRINOLOGY & METABOLISM","('ESCI',)","3","<0.1","Q4","0.01","71.43" +"Boletin Goiano de Geografia","0101-708X","1984-8501","GEOGRAPHY","('ESCI',)","48","<0.1","Q4","0.01","66.67" +"Bosniaca-Journal of the National and University Library of Bosnia and Herzegovina","1512-5033","2303-8888","INFORMATION SCIENCE & LIBRARY SCIENCE","('ESCI',)","1","<0.1","Q4","0.01","97.06" +"Brazilian Journal of Hygiene and Animal Sanity","1981-2965","1981-2965","VETERINARY SCIENCES","('ESCI',)","58","<0.1","Q4","0.01","14.94" +"Bulletin of Computational Applied Mathematics","2244-8659","2244-8659","MATHEMATICS, APPLIED","('ESCI',)","25","<0.1","Q4","0.01","0.00" +"Caderno Profissional de Marketing Unimep","","2317-6466","BUSINESS","('ESCI',)","17","<0.1","Q4","0.01","0.00" +"Ciencia Amazonica","2221-5948","2222-7431","BIOLOGY","('ESCI',)","8","<0.1","Q4","0.01","100.00" +"Dacoromania","1582-4438","1582-4438","LANGUAGE & LINGUISTICS","('ESCI',)","10","<0.1","","0.01","47.22" +"Dialogo","1519-3640","2238-9024","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","45","<0.1","Q4","0.01","49.30" +"Diasporas-Histoire et Societes","1637-5823","1637-5823","HISTORY","('AHCI',)","15","<0.1","Q4","0.01","30.88" +"ECOS-Estudos Contemporaneos da Subjetividade","2237-941X","2237-941X","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","8","<0.1","Q4","0.01","0.00" +"Etudes Episteme","1634-0450","1634-0450","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","30","<0.1","","0.01","29.33" +"Everymans Science","0531-495X","0531-495X","MULTIDISCIPLINARY SCIENCES","('ESCI',)","15","<0.1","Q4","0.01","0.00" +"Gaceta Mexicana de Oncologia","1665-9201","1665-9201","ONCOLOGY","('ESCI',)","42","<0.1","Q4","0.01","97.93" +"Galicia Clinica","0304-4866","0304-4866","MEDICINE, GENERAL & INTERNAL","('ESCI',)","18","<0.1","Q4","0.01","89.26" +"Geograficidade","2238-0205","2238-0205","GEOGRAPHY","('ESCI',)","10","<0.1","Q4","0.01","0.00" +"Indian Journal of Psychological Science","0976-9218","0976-9218","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","5","<0.1","Q4","0.01","0.00" +"INTERNATIONAL JOURNAL OF HUMAN GENETICS","0972-3757","2456-6330","GENETICS & HEREDITY","('SCIE',)","103","<0.1","Q4","0.01","52.87" +"Journal of Behcet Uz Childrens Hospital","","2822-4469","MEDICINE, GENERAL & INTERNAL","('ESCI',)","7","<0.1","Q4","0.01","67.69" +"Journal of Candido Tostes Dairy Institute","0100-3674","2238-6416","AGRICULTURE, DAIRY & ANIMAL SCIENCE","('ESCI',)","42","<0.1","Q4","0.01","97.83" +"Lebenswelt-Aesthetics and Philosophy of Experience","2240-9599","2240-9599","PHILOSOPHY","('ESCI',)","30","<0.1","","0.01","0.00" +"Limite-Revista de Filosofia y Psicologia","0718-1361","0718-5065","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","24","<0.1","Q4","0.01","0.00" +"Lingua Montenegrina","1800-7007","1800-7007","LANGUAGE & LINGUISTICS","('ESCI',)","7","<0.1","","0.01","0.00" +"Masonry Society Journal","0741-1294","0741-1294","CONSTRUCTION & BUILDING TECHNOLOGY","('ESCI',)","15","<0.1","Q4","0.01","0.00" +"Pamiec i Sprawiedliwosc","1427-7476","1427-7476","HISTORY","('ESCI',)","34","<0.1","Q4","0.01","0.00" +"Parole Rubate-Rivista Internazionale di Studi Sulla Citazione","2039-0114","2039-0114","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","3","<0.1","","0.01","0.00" +"Pensando-Revista de Filosofia","2178-843X","2178-843X","PHILOSOPHY","('ESCI',)","8","<0.1","","0.01","0.00" +"Polish Hyperbaric Research","1734-7009","2084-0535","PUBLIC, ENVIRONMENTAL & OCCUPATIONAL HEALTH","('ESCI',)","14","<0.1","Q4","0.01","100.00" +"REVELETEO-Revista Electronica Espaco Teologico","2177-952X","2177-952X","RELIGION","('ESCI',)","1","<0.1","","0.01","57.58" +"REVELL-Revista de Estudos Literarios da UEMS","2179-4456","2179-4456","LITERATURE","('ESCI',)","14","<0.1","","0.01","0.00" +"Revista Brasileira de Historia & Ciencias Sociais","2175-3423","2175-3423","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","27","<0.1","Q4","0.01","26.97" +"Revista Chilena de Neuropsicologia","0718-4913","0718-4913","PSYCHOLOGY, BIOLOGICAL","('ESCI',)","28","<0.1","Q4","0.01","0.00" +"Revista Cooperativismo y Desarrollo-COODES","2310-340X","2310-340X","DEVELOPMENT STUDIES","('ESCI',)","6","<0.1","Q4","0.01","0.00" +"Revista de Ciencias Sociales-Costa Rica","2215-2601","2215-2601","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","12","<0.1","Q4","0.01","0.00" +"Revista de Gestao Financas e Contabilidade","2238-5320","2238-5320","BUSINESS, FINANCE","('ESCI',)","46","<0.1","Q4","0.01","20.00" +"Revista de Letras Norte@mentos","1983-8018","1983-8018","LANGUAGE & LINGUISTICS","('ESCI',)","3","<0.1","","0.01","48.68" +"Revista Economia y Sociedad","1409-1070","2215-3403","ECONOMICS","('ESCI',)","6","<0.1","Q4","0.01","78.57" +"Revista Educacao e Linguagens","2238-6084","2238-6084","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","5","<0.1","Q4","0.01","1.05" +"Revista Jesus Historico e sua Recepcao","1983-4810","1983-4810","RELIGION","('ESCI',)","1","<0.1","","0.01","0.00" +"Revista Mediacao","1676-2827","2179-9571","COMMUNICATION","('ESCI',)","9","<0.1","Q4","0.01","0.00" +"Revista Olhres","2317-7853","2317-7853","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","7","<0.1","Q4","0.01","0.00" +"Revista Sonda-Investigacion y Docencia en Artes y Letras","2254-6073","2254-6073","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","6","<0.1","Q4","0.01","0.00" +"RICERCHE DI STORIA DELL ARTE","0392-7202","0392-7202","ART","('AHCI',)","22","<0.1","","0.01","0.00" +"Rivista di Psicologia dell Emergenza e dell Assistenza Umanitaria","2280-9120","2280-9120","PSYCHOLOGY, CLINICAL","('ESCI',)","0","<0.1","Q4","0.01","0.00" +"Sguardo-Rivista di Filosofia","2036-6558","2036-6558","PHILOSOPHY","('ESCI',)","21","<0.1","","0.01","0.00" +"South African Actuarial Journal","1680-2179","1680-2179","BUSINESS, FINANCE","('ESCI',)","4","<0.1","Q4","0.01","100.00" +"Storia delle Donne","1826-7513","1826-7505","WOMENS STUDIES","('ESCI',)","11","<0.1","Q4","0.01","0.00" +"STUDIA MONASTICA","0039-3258","","RELIGION","('AHCI',)","39","<0.1","","0.01","0.00" +"Synergies Mexique","2007-4654","2260-8109","LANGUAGE & LINGUISTICS","('ESCI',)","1","<0.1","","0.01","0.00" +"TRIA-Territorio della Ricerca su Insediamenti e Ambiente","1974-6849","2281-4574","URBAN STUDIES","('ESCI',)","13","<0.1","Q4","0.01","0.00" +"Virajes-Revista de Antropologia y Sociologia","0123-4471","2462-9782","SOCIOLOGY","('ESCI',)","17","<0.1","Q4","0.01","96.83" +"West African Journal of Radiology","1115-3474","2321-6670","RADIOLOGY, NUCLEAR MEDICINE & MEDICAL IMAGING","('ESCI',)","24","<0.1","Q4","0.01","15.15" +"Zeitschrift fuer Ganzheitliche Tiermedizin","0939-7868","1439-1422","VETERINARY SCIENCES","('ESCI',)","4","<0.1","Q4","0.01","0.00" +"A + U-ARCHITECTURE AND URBANISM","0389-9160","","ARCHITECTURE","('AHCI',)","8","<0.1","","0.00","0.00" +"AATCC REVIEW","1532-8813","1532-8813","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, TEXTILES')","('SCIE', 'SCIE', 'SCIE')","91","<0.1","('Q4', 'Q4', 'Q4')","0.00","0.00" +"Aitia-Regards sur la Culture Hellenistique au XXIe Siecle","1775-4275","1775-4275","HISTORY","('ESCI',)","15","<0.1","Q4","0.00","14.81" +"AKZENTE-ZEITSCHRIFT FUR LITERATUR","0002-3957","","LITERARY REVIEWS","('AHCI',)","16","<0.1","","0.00","0.00" +"American Literary Scholarship","0065-9142","1527-2125","LITERATURE, AMERICAN","('ESCI',)","0","<0.1","","0.00","0.00" +"AMERICAN POETRY REVIEW","0360-3709","2162-4984","POETRY","('AHCI',)","35","<0.1","","0.00","0.00" +"Anales de la Facultad de Medicina-Universidad de la Republica Uruguay","2301-1254","2301-1254","MEDICINE, GENERAL & INTERNAL","('ESCI',)","11","<0.1","Q4","0.00","84.75" +"Anil Aggrawals Internet Journal of Forensic Medicine and Toxicology","0972-8066","0972-8074","MEDICINE, GENERAL & INTERNAL","('ESCI',)","14","<0.1","Q4","0.00","0.00" +"ANTIKE UND ABENDLAND","0003-5696","1613-0421","CLASSICS","('AHCI',)","77","<0.1","","0.00","28.57" +"APOLLO-The International Art Magazine","0003-6536","0003-6536","ART","('AHCI',)","55","<0.1","","0.00","0.00" +"Appalachian Heritage-A Literary Quarterly of the Southern Appalachians","0363-2318","1940-5081","LITERARY REVIEWS","('ESCI',)","40","<0.1","","0.00","0.00" +"Ars Brevis","1136-3711","2339-9775","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","6","<0.1","","0.00","0.00" +"Avances en Biomedicina","2477-9369","2244-7881","MEDICINE, GENERAL & INTERNAL","('ESCI',)","20","<0.1","Q4","0.00","0.00" +"AVANT SCENE OPERA","0295-1371","","MUSIC","('AHCI',)","8","<0.1","","0.00","0.00" +"Babel-Litteratures Plurielles","1277-7897","2263-4746","LITERATURE","('ESCI',)","15","<0.1","","0.00","49.25" +"Boletin de Arte","2314-2502","2314-2502","ART","('ESCI',)","3","<0.1","","0.00","94.12" +"Boletin de Pediatria","0214-2597","2340-5384","PEDIATRICS","('ESCI',)","22","<0.1","Q4","0.00","0.00" +"Cadernos de Historia","2237-8871","2237-8871","HISTORY","('ESCI',)","13","<0.1","Q4","0.00","47.46" +"Cadernos de Letras da UFF","1413-053X","2447-4207","LANGUAGE & LINGUISTICS","('ESCI',)","25","<0.1","","0.00","88.41" +"Cahiers d Etudes du Religieux-Recherches Interdisciplinaires","1760-5776","1760-5776","RELIGION","('ESCI',)","3","<0.1","","0.00","66.67" +"Camino Real-Estudios de las Hispanidades Norteamericanas","1889-5611","1889-5611","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","10","<0.1","","0.00","0.00" +"CERAMICS-ART AND PERCEPTION","1035-1841","1035-1841","ART","('AHCI',)","4","<0.1","","0.00","0.00" +"CHICAGO REVIEW","0009-3696","2327-5804","LITERARY REVIEWS","('AHCI',)","86","<0.1","","0.00","0.00" +"Ciencias Agronomicas","1853-4333","2250-8872","AGRONOMY","('ESCI',)","15","<0.1","Q4","0.00","61.11" +"CINEFORUM","0009-7039","0009-7039","FILM, RADIO, TELEVISION","('AHCI',)","2","<0.1","","0.00","0.00" +"Cinema-Journal of Philosophy and the Moving Image","1647-8991","1647-8991","('FILM, RADIO, TELEVISION', 'PHILOSOPHY')","('ESCI', 'ESCI')","112","<0.1","('N/A', 'N/A')","0.00","0.00" +"Cinemas d Amerique Latine","1267-4397","","FILM, RADIO, TELEVISION","('AHCI',)","9","<0.1","","0.00","0.00" +"Colmena-Revista de la Universidad Autonoma del Estado de Mexico","1405-6313","2448-6302","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","31","<0.1","","0.00","0.00" +"Comunicazione Filosofica","1128-9082","1128-9082","PHILOSOPHY","('ESCI',)","2","<0.1","","0.00","0.00" +"CONNAISSANCE DES ARTS","0293-9274","","ART","('AHCI',)","8","<0.1","","0.00","0.00" +"Cordis-Revista Eletronica de Historia Social da Cidade","2176-4174","2176-4174","HISTORY","('ESCI',)","10","<0.1","Q4","0.00","0.00" +"Correspondances en Metabolismes Hormones Diabetes et Nutrition","2100-9619","","('ENDOCRINOLOGY & METABOLISM', 'NUTRITION & DIETETICS')","('SCIE', 'SCIE')","2","<0.1","('Q4', 'Q4')","0.00","0.00" +"CRITICA LETTERARIA","0390-0142","2035-2638","LITERATURE, ROMANCE","('AHCI',)","33","<0.1","","0.00","0.00" +"Cuadernos CANELA","1322-9109","2189-9568","LANGUAGE & LINGUISTICS","('ESCI',)","8","<0.1","","0.00","0.00" +"Cuadernos de Literatura del Caribe e Hispanoamerica","1794-8290","2390-0644","LITERATURE","('ESCI',)","2","<0.1","","0.00","43.75" +"DALHOUSIE REVIEW","0011-5827","0011-5827","LITERARY REVIEWS","('AHCI',)","48","<0.1","","0.00","0.00" +"DEGRES-REVUE DE SYNTHESE A ORIENTATION SEMIOLOGIQUE","0376-8163","","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","7","<0.1","","0.00","0.00" +"Dialogica","1690-8961","1690-8961","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","3","<0.1","Q4","0.00","0.00" +"digitAR-Revista Digital de Arqueologia Arquitectura e Artes-Digital Journal of Archaeology Architecture and Arts","2182-844X","2182-844X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","7","<0.1","","0.00","44.68" +"Dirasat Hispanicas-Revista Tunecina de Estudios Hispanicos","2286-5977","2286-5977","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","4","<0.1","","0.00","0.00" +"Disegnare Idee Immagini-Ideas Images","1123-9247","1123-9247","ARCHITECTURE","('AHCI',)","16","<0.1","","0.00","0.00" +"Doctor Virtualis-Rivista di Storia della Filosofia Medievale","","2035-7362","('MEDIEVAL & RENAISSANCE STUDIES', 'PHILOSOPHY')","('ESCI', 'ESCI')","4","<0.1","('N/A', 'N/A')","0.00","40.00" +"E-Latina-Revista Electronica de Estudios Latinoamericanos","1666-9606","1666-9606","AREA STUDIES","('ESCI',)","4","<0.1","Q4","0.00","0.00" +"E-Water","1994-8549","1994-8549","WATER RESOURCES","('ESCI',)","7","<0.1","Q4","0.00","0.00" +"Eneurobiologia","2007-3054","2007-3054","NEUROSCIENCES","('ESCI',)","10","<0.1","Q4","0.00","20.83" +"Epekeina-International Journal of Ontology History and Critics","2281-3209","2281-3209","PHILOSOPHY","('ESCI',)","2","<0.1","","0.00","0.00" +"Eras","1445-5218","1445-5218","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","7","<0.1","","0.00","0.00" +"Erasmo-Revista de Historia Bajomedieval y Moderna","2341-2380","2341-2380","MEDIEVAL & RENAISSANCE STUDIES","('ESCI',)","5","<0.1","","0.00","73.33" +"Ermeneutica Letteraria-Rivista Internazionale","1825-6619","1827-8957","LITERARY THEORY & CRITICISM","('ESCI',)","3","<0.1","","0.00","0.00" +"Fictions-Studi Sulla Narrativita","1721-3673","1724-045X","('HUMANITIES, MULTIDISCIPLINARY', 'LITERATURE')","('ESCI', 'ESCI')","0","<0.1","('N/A', 'N/A')","0.00","0.00" +"Fourth Genre-Explorations in Nonfiction","1522-3868","1544-1733","LITERARY REVIEWS","('ESCI',)","4","<0.1","","0.00","0.00" +"Frantice.net","2110-5324","2110-5324","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","6","<0.1","Q4","0.00","0.00" +"GeoMedia","1128-8132","1128-8132","REMOTE SENSING","('ESCI',)","14","<0.1","Q4","0.00","0.00" +"GRADIVA","0363-8057","0363-8057","LITERARY THEORY & CRITICISM","('AHCI',)","8","<0.1","","0.00","0.00" +"Hrvatski Filmski Ljetopis","1330-7665","","FILM, RADIO, TELEVISION","('AHCI',)","19","<0.1","","0.00","0.00" +"INFINI","0754-023X","","LITERARY REVIEWS","('AHCI',)","8","<0.1","","0.00","0.00" +"Intermedialites","1705-8546","1920-3136","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","71","<0.1","","0.00","0.00" +"JAHRBUCH DER BERLINER MUSEEN","0075-2207","","ART","('AHCI',)","24","<0.1","","0.00","0.00" +"Japanese Accounting Review","2185-4785","2185-4793","BUSINESS, FINANCE","('ESCI',)","16","<0.1","Q4","0.00","100.00" +"Jazz Research Journal","1753-8637","1753-8645","MUSIC","('ESCI',)","7","<0.1","","0.00","0.00" +"Journal fur Hypertonie","1028-2327","1680-9378","CARDIAC & CARDIOVASCULAR SYSTEMS","('ESCI',)","4","<0.1","Q4","0.00","0.00" +"Journal of African Military History","2468-0958","2468-0966","('AREA STUDIES', 'HISTORY', 'INTERNATIONAL RELATIONS')","('ESCI', 'ESCI', 'ESCI')","6","<0.1","('Q4', 'Q4', 'Q4')","0.00","0.00" +"Journal of History-NCCU","0301-9667","0301-9667","HISTORY","('ESCI',)","0","<0.1","Q4","0.00","0.00" +"JOURNAL OF THE MIDWEST MODERN LANGUAGE ASSOCIATION","0742-5562","2162-6294","LITERATURE","('AHCI',)","81","<0.1","","0.00","0.00" +"Journal of the Pakistan Institute of Chemical Engineers","1813-4092","1813-4092","ENGINEERING, CHEMICAL","('ESCI',)","10","<0.1","Q4","0.00","37.14" +"Laboratoire Italien-Politique et Societe","1627-9204","2117-4970","POLITICAL SCIENCE","('ESCI',)","6","<0.1","Q4","0.00","80.39" +"LANDFALL","0023-7930","","LITERARY REVIEWS","('AHCI',)","13","<0.1","","0.00","0.00" +"Lanx-Journal of the Scuola di Specializzazione in Archeologia of the University of Milan","2035-4797","2035-4797","ARCHAEOLOGY","('ESCI',)","10","<0.1","","0.00","91.18" +"LIED UND POPULARE KULTUR-SONG AND POPULAR CULTURE","1619-0548","1619-0548","('FOLKLORE', 'MUSIC')","('AHCI', 'AHCI')","11","<0.1","('N/A', 'N/A')","0.00","0.00" +"LITERATUR UND KRITIK","0024-466X","","LITERARY REVIEWS","('AHCI',)","12","<0.1","","0.00","0.00" +"Lithuanian Historical Studies","1392-2343","2538-6565","HISTORY","('ESCI',)","8","<0.1","Q4","0.00","87.50" +"LITTERATURES","0563-9751","","LITERATURE","('AHCI',)","28","<0.1","","0.00","0.00" +"LOTUS INTERNATIONAL","1124-9064","","ARCHITECTURE","('AHCI',)","29","<0.1","","0.00","0.00" +"MANUFACTURING ENGINEERING","0361-0853","0361-0853","ENGINEERING, MANUFACTURING","('SCIE',)","115","<0.1","Q4","0.00","0.00" +"Materiali per una Storia della Cultura Giuridica","1120-9607","1120-9607","LAW","('ESCI',)","28","<0.1","Q4","0.00","0.00" +"Meridiano 47-Journal of Global Studies","1518-1219","1518-1219","INTERNATIONAL RELATIONS","('ESCI',)","10","<0.1","Q4","0.00","94.44" +"Methodos-Savoirs et Textes","1769-7379","1769-7379","PHILOSOPHY","('ESCI',)","23","<0.1","","0.00","86.67" +"Musica Tecnologia","1974-0042","1974-0050","MUSIC","('ESCI',)","2","<0.1","","0.00","100.00" +"MUSIK IN BAYERN","0937-583X","","MUSIC","('AHCI',)","0","<0.1","","0.00","0.00" +"MUSIK UND KIRCHE","0027-4771","2568-3128","MUSIC","('AHCI',)","4","<0.1","","0.00","0.00" +"Myrtia","0213-7674","1989-4619","CLASSICS","('ESCI',)","29","<0.1","","0.00","21.74" +"NATURAL HISTORY","0028-0712","","('BIODIVERSITY CONSERVATION', 'ECOLOGY')","('SCIE', 'SCIE')","372","<0.1","('Q4', 'Q4')","0.00","0.00" +"NEW ORLEANS REVIEW","0028-6400","0028-6400","LITERARY REVIEWS","('AHCI',)","5","<0.1","","0.00","0.00" +"Nordeuropa Forum-Zeitschrift fur Kulturstudien","1863-639X","1863-639X","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","6","<0.1","","0.00","0.00" +"NOUVELLE REVUE FRANCAISE","0029-4802","","LITERATURE, ROMANCE","('AHCI',)","49","<0.1","","0.00","0.00" +"Olho d Agua","2177-3807","2177-3807","LITERARY THEORY & CRITICISM","('ESCI',)","2","<0.1","","0.00","0.00" +"OPERA NEWS","0030-3607","1938-1506","MUSIC","('AHCI',)","11","<0.1","","0.00","0.00" +"Orbis Tertius","1851-7811","1851-7811","LITERATURE","('ESCI',)","38","<0.1","","0.00","100.00" +"PACIFIC NORTHWEST QUARTERLY","0030-8803","2327-9753","HISTORY","('AHCI',)","84","<0.1","Q4","0.00","0.00" +"Papeles de Europa","1989-5917","1989-5917","AREA STUDIES","('ESCI',)","19","<0.1","Q4","0.00","95.00" +"PARABOLA","0362-1596","0362-1596","RELIGION","('AHCI',)","13","<0.1","","0.00","0.00" +"Phares-Revue Philosophique Etudiante de l Universite Laval","1496-8533","1496-8533","PHILOSOPHY","('ESCI',)","0","<0.1","","0.00","0.00" +"POETRY REVIEW","0032-2156","0032-2156","POETRY","('AHCI',)","18","<0.1","","0.00","0.00" +"POETRY WALES","0032-2202","","POETRY","('AHCI',)","2","<0.1","","0.00","0.00" +"POSITIF","0048-4911","","FILM, RADIO, TELEVISION","('AHCI',)","57","<0.1","","0.00","0.00" +"Precedente","1657-6535","1657-6535","LAW","('ESCI',)","9","<0.1","Q4","0.00","77.14" +"Presente y Pasado-Revista de Historia","1316-1369","2343-5682","HISTORY","('ESCI',)","2","<0.1","Q4","0.00","0.00" +"PRESERVATION","1090-9931","","HISTORY","('AHCI',)","4","<0.1","Q4","0.00","0.00" +"Procesos Historicos-Revista Semestral de Historia Arte y Ciencias Sociales","1690-4818","1690-4818","HISTORY","('ESCI',)","5","<0.1","Q4","0.00","0.00" +"PsyArt Journal-Online Journal for the Psychological Study of the Arts","","1088-5870","PSYCHOLOGY, MULTIDISCIPLINARY","('ESCI',)","5","<0.1","Q4","0.00","0.00" +"Quetes Litteraires","2084-8099","2657-487X","LITERATURE, ROMANCE","('ESCI',)","2","<0.1","","0.00","96.30" +"RASSEGNA DELLA LETTERATURA ITALIANA","0033-9423","","LITERATURE, ROMANCE","('AHCI',)","19","<0.1","","0.00","0.00" +"REDHECS-Revista Electronica de Humanidades Educacion y Comunicacion Social","1856-9331","1856-9331","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","19","<0.1","Q4","0.00","0.00" +"Revista Acta Geografica","1980-5772","2177-4307","GEOGRAPHY","('ESCI',)","28","<0.1","Q4","0.00","30.11" +"Revista Artemis","2316-5251","1807-8214","WOMENS STUDIES","('ESCI',)","13","<0.1","Q4","0.00","0.00" +"Revista Clinica Contemporanea","1989-9912","1989-9912","PSYCHOLOGY, CLINICAL","('ESCI',)","15","<0.1","Q4","0.00","100.00" +"Revista Comunicacao Midiatica","2236-8000","2236-8000","COMMUNICATION","('ESCI',)","7","<0.1","Q4","0.00","0.00" +"Revista de Filosofia La Plata","","2953-3392","PHILOSOPHY","('ESCI',)","0","<0.1","","0.00","96.30" +"Revista e-Mercatoria","1692-3960","1692-3960","LAW","('ESCI',)","14","<0.1","Q4","0.00","51.52" +"Revista Estudios Hemisfericos y Polares","0718-9230","0718-9230","AREA STUDIES","('ESCI',)","7","<0.1","Q4","0.00","0.00" +"Revista Gestion de la Educacion","2215-2288","2215-2288","EDUCATION & EDUCATIONAL RESEARCH","('ESCI',)","7","<0.1","Q4","0.00","100.00" +"Revista Numismatica Hecate","2386-8643","2386-8643","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","3","<0.1","","0.00","0.00" +"Revista Pensamiento Americano","2027-2448","2027-2448","SOCIAL SCIENCES, INTERDISCIPLINARY","('ESCI',)","8","<0.1","Q4","0.00","95.31" +"REVUE D HISTOIRE DU THEATRE","1291-2530","","THEATER","('AHCI',)","11","<0.1","","0.00","0.00" +"REVUE PHILOSOPHIQUE DE LOUVAIN","0035-3841","1783-1768","PHILOSOPHY","('AHCI',)","88","<0.1","","0.00","0.00" +"Rivista d Arte","1122-0732","2240-5550","ART","('ESCI',)","3","<0.1","","0.00","0.00" +"Salud Arte y Cuidado","1856-9528","1856-9528","NURSING","('ESCI',)","3","<0.1","Q4","0.00","0.00" +"Scientific Chronicles","1791-1362","2241-1666","MEDICINE, GENERAL & INTERNAL","('ESCI',)","2","<0.1","Q4","0.00","0.00" +"Scottish Archaeological Journal","1471-5767","1755-2028","ARCHAEOLOGY","('ESCI',)","13","<0.1","","0.00","6.67" +"SCRIBLERIAN AND THE KIT-CATS","0036-9640","2165-0624","LITERATURE, BRITISH ISLES","('AHCI',)","10","<0.1","","0.00","0.00" +"SCULPTURE REVIEW","0747-5284","2632-3494","ART","('AHCI',)","5","<0.1","","0.00","0.00" +"SECURITIES REGULATION LAW JOURNAL","0097-9554","0097-9554","LAW","('SSCI',)","11","<0.1","Q4","0.00","0.00" +"SHENANDOAH","0037-3583","0037-3583","LITERARY REVIEWS","('AHCI',)","5","<0.1","","0.00","0.00" +"Sigmae","2317-0840","2317-0840","MATHEMATICS","('ESCI',)","26","<0.1","Q4","0.00","0.00" +"SituArte","1856-7134","2542-3231","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","0","<0.1","","0.00","0.00" +"SOBORNOST INCORPORATING EASTERN CHURCHES REVIEW","0144-8722","","RELIGION","('AHCI',)","17","<0.1","","0.00","0.00" +"SOUTHERN HUMANITIES REVIEW","0038-4186","0038-4186","LITERARY THEORY & CRITICISM","('AHCI',)","4","<0.1","","0.00","0.00" +"STORIA DELL ARTE","0392-4513","","ART","('AHCI',)","42","<0.1","","0.00","0.00" +"Studia Austriaca","1593-2508","2385-2925","HUMANITIES, MULTIDISCIPLINARY","('ESCI',)","7","<0.1","","0.00","6.25" +"SURFACE COATINGS INTERNATIONAL","1754-0925","","('CHEMISTRY, APPLIED', 'ENGINEERING, CHEMICAL', 'MATERIALS SCIENCE, COATINGS & FILMS')","('SCIE', 'SCIE', 'SCIE')","137","<0.1","('Q4', 'Q4', 'Q4')","0.00","0.00" +"Temas de Nuestra America-Revista de Estudios Latinoamericanos","0259-2339","0259-2339","AREA STUDIES","('ESCI',)","13","<0.1","Q4","0.00","98.39" +"Tintas-Quaderni di Letterature Iberiche e Iberoamericane","2240-5437","2240-5437","LITERATURE, ROMANCE","('ESCI',)","7","<0.1","","0.00","0.00" +"TRANSACTIONS OF THE ANCIENT MONUMENTS SOCIETY","0951-001X","","('ARCHAEOLOGY', 'ARCHITECTURE')","('AHCI', 'AHCI')","7","<0.1","('N/A', 'N/A')","0.00","0.00" +"Trumpeter-Journal of Ecosophy","0832-6193","0832-6193","ENVIRONMENTAL STUDIES","('ESCI',)","48","<0.1","Q4","0.00","0.00" +"WESTERLY","0043-342X","","LITERARY REVIEWS","('AHCI',)","17","<0.1","","0.00","0.00" +"WOCHENBLATT FUR PAPIERFABRIKATION","0043-7131","0043-7131","MATERIALS SCIENCE, PAPER & WOOD","('SCIE',)","19","<0.1","Q4","0.00","0.00" +"Yearbook of Comparative Literature","0084-3695","1947-2978","LITERATURE","('ESCI',)","12","<0.1","","0.00","0.00" +"Nature Synthesis","","2731-0582","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","11","","","2.60","" +"Resources Policy","0301-4207","1873-7641","ENVIRONMENTAL STUDIES","('SSCI',)","28,242","","","2.59","8.23" +"Ukrainian Journal of Physical Optics","1609-1833","","OPTICS","('SCIE',)","813","","","2.41","83.54" +"INFORMATION SCIENCES","0020-0255","1872-6291","COMPUTER SCIENCE, INFORMATION SYSTEMS","('SCIE',)","58,169","","","2.09","6.63" +"LIBRARY HI TECH","0737-8831","0737-8831","INFORMATION SCIENCE & LIBRARY SCIENCE","('SSCI',)","2,700","","","1.55","2.54" +"Granular Computing","2364-4966","2364-4974","('COMPUTER SCIENCE, ARTIFICIAL INTELLIGENCE', 'COMPUTER SCIENCE, INFORMATION SYSTEMS')","('ESCI', 'ESCI')","1,578","","('N/A', 'N/A')","1.51","5.53" +"Activities Adaptation & Aging","0192-4788","1544-4368","GERONTOLOGY","('ESCI',)","619","","","1.22","9.41" +"Annals of Financial Economics","2010-4952","2010-4960","ECONOMICS","('ESCI',)","391","","","1.21","0.00" +"Climate Change Economics","2010-0078","2010-0086","('ECONOMICS', 'ENVIRONMENTAL STUDIES')","('SSCI', 'SSCI')","628","","('N/A', 'N/A')","1.14","17.57" +"ENVIRONMENTAL SCIENCE AND POLLUTION RESEARCH","0944-1344","1614-7499","ENVIRONMENTAL SCIENCES","('SCIE',)","164,197","","","0.99","7.17" +"MINERVA MEDICA","0026-4806","1827-1669","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,613","","","0.87","0.46" +"Regional Statistics","2063-9538","2064-8243","GEOGRAPHY","('ESCI',)","347","","","0.87","91.23" +"Cuadernos de Economia-Spain","0210-0266","2340-6704","ECONOMICS","('ESCI',)","291","","","0.74","0.00" +"PANMINERVA MEDICA","0031-0808","1827-1898","MEDICINE, GENERAL & INTERNAL","('SCIE',)","1,195","","","0.69","3.66" +"Exploratory Animal and Medical Research","2277-470X","2319-247X","VETERINARY SCIENCES","('ESCI',)","304","","","0.61","99.21" +"Gas Science and Engineering","2949-9097","2949-9089","('ENERGY & FUELS', 'ENGINEERING, CHEMICAL')","('SCIE', 'SCIE')","299","","('N/A', 'N/A')","0.56","9.27" +"Engineering Technology & Applied Science Research","2241-4487","1792-8036","ENGINEERING, MULTIDISCIPLINARY","('ESCI',)","2,526","","","0.55","46.48" +"SOCAR Proceedings","2218-6867","2218-8622","ENGINEERING, PETROLEUM","('ESCI',)","916","","","0.53","0.00" +"Geoenergy Science and Engineering","2949-8929","2949-8910","('ENERGY & FUELS', 'ENGINEERING, PETROLEUM')","('SCIE', 'SCIE')","1,532","","('N/A', 'N/A')","0.52","7.41" +"IEEE Microwave and Wireless Technology Letters","2771-957X","2771-9588","ENGINEERING, ELECTRICAL & ELECTRONIC","('SCIE',)","351","","","0.45","3.81" +"International Journal of Social Determinants of Health and Health Services","2755-1938","2755-1946","('HEALTH CARE SCIENCES & SERVICES', 'HEALTH POLICY & SERVICES')","('SCIE', 'SSCI')","52","","('N/A', 'N/A')","0.44","25.00" +"High Temperature Corrosion of Materials","2731-8397","2731-8400","METALLURGY & METALLURGICAL ENGINEERING","('SCIE',)","39","","","0.38","25.68" +"Smart Grids and Sustainable Energy","","2731-8087","('ENERGY & FUELS', 'ENGINEERING, ELECTRICAL & ELECTRONIC')","('ESCI', 'ESCI')","6","","('N/A', 'N/A')","0.36","0.00" +"Australian Community Psychologist","1835-7393","1835-7393","PSYCHOLOGY, APPLIED","('ESCI',)","65","","","0.25","0.00" +"NEW YORK REVIEW OF BOOKS","0028-7504","1944-7744","HUMANITIES, MULTIDISCIPLINARY","('AHCI',)","1,221","","","0.24","" +"Canadian Journal of Respiratory Therapy","","2368-6820","('CRITICAL CARE MEDICINE', 'RESPIRATORY SYSTEM')","('ESCI', 'ESCI')","203","","('N/A', 'N/A')","0.23","87.30" +"Journal of Clinical Practice and Research","","2980-2156","MEDICINE, GENERAL & INTERNAL","('ESCI',)","5","","","0.23","72.13" +"Iranian Journal of Science","2731-8095","2731-8109","MULTIDISCIPLINARY SCIENCES","('SCIE',)","51","","","0.20","1.78" +"Annali dell Istituto storico italo-germanico in Trento","0392-0011","2612-2251","HISTORY","('ESCI',)","0","","","0.11","" +"Management Revue","0935-9915","1861-9908","MANAGEMENT","('ESCI',)","733","","","0.09","" +"GAZZETTA MEDICA ITALIANA ARCHIVIO PER LE SCIENZE MEDICHE","0393-3660","1827-1812","MEDICINE, GENERAL & INTERNAL","('ESCI',)","87","","","0.03","2.73" +"Clinical Epileptology","2948-104X","2948-1058","CLINICAL NEUROLOGY","('ESCI',)","28","","","0.00","57.69" +"HISPAMERICA-REVISTA DE LITERATURA","0363-0471","","LITERATURE, ROMANCE","('AHCI',)","47","","","0.00","0.00" +"Advances in Kidney Disease and Health","2949-8147","2949-8139","UROLOGY & NEPHROLOGY","('SCIE',)","28","","","","27.91" +"Advances in Rehabilitation Science and Practice","2753-6351","2753-6351","REHABILITATION","('ESCI',)","0","","","","" +"Asia-Pacific Economic History Review","2832-157X","2832-157X","('ECONOMICS', 'HISTORY OF SOCIAL SCIENCES')","('SSCI', 'SSCI')","6","","('N/A', 'N/A')","","50.00" +"Asian Journal of Applied Economics","","2985-1610","ECONOMICS","('ESCI',)","0","","","","0.00" +"ASME Journal of Heat and Mass Transfer","2832-8450","2832-8469","('ENGINEERING, MECHANICAL', 'THERMODYNAMICS')","('SCIE', 'SCIE')","120","","('N/A', 'N/A')","","1.35" +"Biomolecules and Biomedicine","2831-0896","2831-090X","MEDICINE, RESEARCH & EXPERIMENTAL","('SCIE',)","138","","","","99.30" +"BMJ Mental Health","","2755-9734","PSYCHIATRY","('SCIE',)","49","","","","96.72" +"Cambridge Prisms-Global Mental Health","2054-4251","2054-4251","PSYCHIATRY","('SCIE',)","22","","","","100.00" +"Canadian Journal of Mineralogy and Petrology","","2817-1713","MINERALOGY","('SCIE',)","19","","","","0.00" +"Communications in Analysis and Mechanics","","2836-3310","('MATHEMATICS, APPLIED', 'PHYSICS, MATHEMATICAL')","('SCIE', 'SCIE')","27","","('N/A', 'N/A')","","100.00" +"Discover Nano","","2731-9229","('MATERIALS SCIENCE, MULTIDISCIPLINARY', 'NANOSCIENCE & NANOTECHNOLOGY', 'PHYSICS, APPLIED')","('SCIE', 'SCIE', 'SCIE')","130","","('N/A', 'N/A', 'N/A')","","99.34" +"Endocrinology Research and Practice","","2822-6135","ENDOCRINOLOGY & METABOLISM","('ESCI',)","2","","","","100.00" +"Eurasian Journal of Chemistry","2959-0663","2959-0671","CHEMISTRY, MULTIDISCIPLINARY","('ESCI',)","9","","","","0.00" +"European Management Studies","","2956-7602","MANAGEMENT","('ESCI',)","0","","","","20.00" +"Frontiers of Mathematics","2731-8648","2731-8656","MATHEMATICS","('SCIE',)","8","","","","0.00" +"Global Philosophy","2948-1538","2948-152X","PHILOSOPHY","('AHCI',)","17","","","","31.37" +"Interdisciplinary Cardiovascular and Thoracic Surgery","","2753-670X","('CARDIAC & CARDIOVASCULAR SYSTEMS', 'RESPIRATORY SYSTEM', 'SURGERY')","('SCIE', 'SCIE', 'SCIE')","80","","('N/A', 'N/A', 'N/A')","","98.86" +"Journal of Microorganism Control","2758-6383","2758-6383","BIOTECHNOLOGY & APPLIED MICROBIOLOGY","('SCIE',)","8","","","","0.00" +"Journal of Substance Use & Addiction Treatment","2949-8767","2949-8759","('PSYCHOLOGY, CLINICAL', 'SUBSTANCE ABUSE')","('SSCI', 'SSCI')","87","","('N/A', 'N/A')","","27.36" +"Parasites Hosts and Diseases","2982-5164","2982-6799","PARASITOLOGY","('SCIE',)","9","","","","97.92" +"Robotic Intelligence and Automation","2754-6969","2754-6977","('AUTOMATION & CONTROL SYSTEMS', 'ENGINEERING, MANUFACTURING')","('SCIE', 'SCIE')","43","","('N/A', 'N/A')","","0.00" +"Sociology Lens","2832-5796","2832-580X","('ANTHROPOLOGY', 'HISTORY', 'SOCIOLOGY')","('SSCI', 'SSCI', 'SSCI')","0","","('N/A', 'N/A', 'N/A')","","" +"Spanish Journal of Psychiatry and Mental Health","2950-2861","2950-2853","PSYCHIATRY","('SCIE', 'SSCI')","49","","","","17.24" +"Therapeutic Advances in Allergy and Rhinology","2753-4030","2753-4030","OTORHINOLARYNGOLOGY","('ESCI',)","2","","","","100.00" +"Therapeutic Advances in Pulmonary and Critical Care Medicine","","2976-8675","RESPIRATORY SYSTEM","('ESCI',)","0","","","","66.67" +"Thoracic Research and Practice","","2979-9139","RESPIRATORY SYSTEM","('ESCI',)","13","","","","100.00" +"Turkish Journal of Civil Engineering","2822-6836","2822-6836","ENGINEERING, CIVIL","('SCIE',)","5","","","","2.63" +"Urology Research and Practice","","2980-1478","UROLOGY & NEPHROLOGY","('ESCI',)","8","","","","0.00" diff --git a/data/scimago2016.RData b/data/scimago2016.RData deleted file mode 100644 index eec65c3..0000000 Binary files a/data/scimago2016.RData and /dev/null differ diff --git a/data/scimagojr_2025.csv b/data/scimagojr_2025.csv new file mode 100644 index 0000000..6a4e1ea --- /dev/null +++ b/data/scimagojr_2025.csv @@ -0,0 +1,32194 @@ +Rank;Sourceid;Title;Type;Issn;Publisher;Open Access;Open Access Diamond;SJR;SJR Best Quartile;H index;Total Docs. (2025);Total Docs. (3years);Total Refs.;Total Citations (3years);Citable Docs. (3years);Citations / Doc. (2years);Ref. / Doc.;%Female;Overton;Country;Region;Publisher;Coverage;Categories;Areas +1;28773;"Ca-A Cancer Journal for Clinicians";journal;"15424863, 00079235";"John Wiley and Sons Inc";No;No;104,065;Q1;236;48;127;4331;29333;76;285,55;90,23;46,34;2;United States;Northern America;"John Wiley and Sons Inc";"1950-2026";"Hematology (Q1); Oncology (Q1)";"Medicine" +2;20315;"Nature Reviews Molecular Cell Biology";journal;"14710072, 14710080";"Nature Research";No;No;35,568;Q1;553;122;350;12007;16938;176;45,22;98,42;34,87;0;United Kingdom;Western Europe;"Nature Research";"2000-2026";"Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +3;29431;"Quarterly Journal of Economics";journal;"00335533, 15314650";"Oxford University Press";No;No;33,069;Q1;336;60;144;4637;2630;144;17,30;77,28;27,33;38;United Kingdom;Western Europe;"Oxford University Press";"1886-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +4;20425;"Nature Reviews Drug Discovery";journal;"14741784, 14741776";"Nature Research";No;No;32,577;Q1;428;247;716;9627;12533;117;15,31;38,98;30,70;6;United Kingdom;Western Europe;"Nature Research";"2002-2026";"Drug Discovery (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +5;17700156734;"Nature Reviews Clinical Oncology";journal;"17594782, 17594774";"Nature Publishing Group";No;No;28,076;Q1;259;126;387;10383;14731;180;36,54;82,40;30,71;2;United Kingdom;Western Europe;"Nature Publishing Group";"2009-2026";"Oncology (Q1)";"Medicine" +6;19434;"MMWR Recommendations and Reports";journal;"10575987, 15458601";"Centers for Disease Control and Prevention (CDC)";Yes;No;27,974;Q1;158;2;15;110;1287;15;56,36;55,00;72,22;0;United States;Northern America;"Centers for Disease Control and Prevention (CDC)";"1990-2025";"Epidemiology (Q1); Health Information Management (Q1); Health (social science) (Q1); Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1)";"Environmental Science; Health Professions; Medicine; Social Sciences" +7;29093;"Cancer Cell";journal;"15356108, 18783686";"Cell Press";No;No;26,632;Q1;436;202;556;12133;17747;315;34,25;60,06;40,95;1;United States;Northern America;"Cell Press";"2002-2026";"Cancer Research (Q1); Cell Biology (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8;18434;"Cell";journal;"00928674, 10974172";"Elsevier B.V.";No;No;24,592;Q1;956;500;1375;42721;46868;1043;33,28;85,44;39,48;4;United States;Northern America;"Elsevier B.V.";"1974-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology" +9;24202;"Review of Economic Studies";journal;"00346527, 1467937X";"Oxford University Press";No;No;23,622;Q1;184;116;288;7482;3344;288;11,42;64,50;17,08;66;United Kingdom;Western Europe;"Oxford University Press";"1933-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +10;22697;"American Economic Review";journal;"19447981, 00028282";"American Economic Association";No;No;23,489;Q1;399;120;323;8756;4759;322;9,55;72,97;24,60;46;United States;Northern America;"American Economic Association";"1973-1975, 1978-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +11;16115;"Nature Biotechnology";journal;"15461696, 10870156";"Nature Research";No;No;23,109;Q1;553;534;1167;17945;20687;528;16,71;33,60;37,04;8;United Kingdom;Western Europe;"Nature Research";"1985, 1987, 1989-2026";"Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Immunology and Microbiology" +12;12464;"Nature Reviews Cancer";journal;"1474175X, 14741768";"Nature Research";No;No;22,814;Q1;548;115;335;11492;9851;162;25,80;99,93;40,93;0;United Kingdom;Western Europe;"Nature Research";"2001-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13;17500;"Journal of Finance";journal;"00221082, 15406261";"Wiley-Blackwell Publishing Ltd";No;No;22,270;Q1;386;86;243;5002;3233;236;12,30;58,16;21,15;25;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1946-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +14;28711;"Annals of Oncology";journal;"15698041, 09237534";"Elsevier Ltd";No;No;21,715;Q1;331;244;471;6883;12368;266;25,93;28,21;39,15;5;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2026";"Hematology (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)";"Medicine" +15;21100812243;"Nature Reviews Materials";journal;"20588437";"Nature Publishing Group";No;No;20,801;Q1;242;112;353;11047;13285;194;33,95;98,63;29,37;0;United Kingdom;Western Europe;"Nature Publishing Group";"2016-2026";"Biomaterials (Q1); Electronic, Optical and Magnetic Materials (Q1); Energy (miscellaneous) (Q1); Materials Chemistry (Q1); Surfaces, Coatings and Films (Q1)";"Energy; Materials Science" +16;6200180159;"World Psychiatry";journal;"20515545, 17238617";"John Wiley and Sons Inc";Yes;No;20,787;Q1;170;115;324;4667;5053;64;16,09;40,58;51,18;1;United States;Northern America;"John Wiley and Sons Inc";"2007-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +17;21100812579;"Nature Energy";journal;"20587546";"Springer Nature";No;No;20,769;Q1;291;232;676;7149;20965;407;32,01;30,81;25,96;15;United States;Northern America;"Springer Nature";"2016-2026";"Electronic, Optical and Magnetic Materials (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Materials Science" +18;18991;"Nature Reviews Genetics";journal;"14710056, 14710064";"Nature Research";No;No;20,403;Q1;458;121;355;10492;9216;206;23,75;86,71;33,19;2;United Kingdom;Western Europe;"Nature Research";"2000-2026";"Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +19;19482;"Econometrica";journal;"00129682, 14680262";"Wiley-Blackwell Publishing Ltd";No;No;19,935;Q1;242;76;243;3625;1956;233;5,94;47,70;16,23;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1974, 1977-1985, 1990-1991, 1994-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +20;21206;"Nature";journal;"14764687, 00280836";"Nature Research";No;No;19,713;Q1;1495;4312;9184;95886;174825;3834;18,62;22,24;34,76;127;United Kingdom;Western Europe;"Nature Research";"1869-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +21;24379;"Journal of Financial Economics";journal;"0304405X";"Elsevier B.V.";No;No;18,748;Q1;355;143;401;8293;6073;399;8,99;57,99;22,16;31;Netherlands;Western Europe;"Elsevier B.V.";"1974-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22;20313;"Nature Reviews Microbiology";journal;"17401534, 17401526";"Nature Research";No;No;18,406;Q1;421;137;451;9937;16899;255;36,94;72,53;40,14;0;United Kingdom;Western Europe;"Nature Research";"2003-2026";"Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (Q1)";"Immunology and Microbiology; Medicine" +23;15847;"New England Journal of Medicine";journal;"00284793, 15334406";"Massachussetts Medical Society";No;No;18,397;Q1;1275;1292;4088;15085;78334;1740;19,70;11,68;38,20;0;United States;Northern America;"Massachussetts Medical Society";"1945-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +24;19700200701;"Annual Review of Economics";journal;"19411383, 19411391";"Annual Reviews Inc.";No;No;17,768;Q1;97;30;84;3832;1499;84;13,14;127,73;25,42;11;United States;Northern America;"Annual Reviews Inc.";"2010-2025";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +25;21100888816;"Signal Transduction and Targeted Therapy";journal;"20593635, 20959907";"Springer Nature";Yes;No;17,740;Q1;224;423;1207;57802;58350;843;51,26;136,65;41,28;3;United Kingdom;Western Europe;"Springer Nature";"2016-2026";"Cancer Research (Q1); Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +26;21318;"Nature Reviews Immunology";journal;"14741741, 14741733";"Nature Research";No;No;17,646;Q1;511;137;448;11604;11474;253;25,43;84,70;30,30;0;United Kingdom;Western Europe;"Nature Research";"2001-2026";"Immunology (Q1); Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1)";"Immunology and Microbiology; Medicine" +27;15819;"Nature Medicine";journal;"1546170X, 10788956";"Nature Research";No;No;17,496;Q1;676;704;1742;22202;41731;956;22,65;31,54;41,37;39;United Kingdom;Western Europe;"Nature Research";"1995-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28;16161;"Review of Financial Studies";journal;"14657368, 08939454";"Oxford University Press";No;No;17,406;Q1;268;88;332;5472;3147;332;8,71;62,18;21,46;19;United Kingdom;Western Europe;"Oxford University Press";"1996-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +29;21101049051;"Nature Reviews Earth and Environment";journal;"2662138X";"Springer International Publishing";No;No;17,081;Q1;109;119;345;8736;11123;170;29,21;73,41;37,69;12;Switzerland;Western Europe;"Springer International Publishing";"2020-2026";"Atmospheric Science (Q1); Earth-Surface Processes (Q1); Nature and Landscape Conservation (Q1); Pollution (Q1)";"Earth and Planetary Sciences; Environmental Science" +30;23340;"Chemical Reviews";journal;"15206890, 00092665";"American Chemical Society";No;No;16,918;Q1;905;203;796;95040;48822;760;59,05;468,18;29,54;0;United States;Northern America;"American Chemical Society";"1924-2026";"Chemistry (miscellaneous) (Q1)";"Chemistry" +31;27165;"Journal of Economic Literature";journal;"00220515";"American Economic Association";No;No;16,872;Q1;199;22;98;4890;1431;97;13,15;222,27;23,53;11;United States;Northern America;"American Economic Association";"1981, 1984, 1986, 1996-2025";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +32;21100863710;"Annual Review of Organizational Psychology and Organizational Behavior";journal;"23270608";"Annual Reviews Inc.";No;No;16,778;Q1;98;17;60;2158;3203;57;62,83;126,94;51,43;3;United States;Northern America;"Annual Reviews Inc.";"2014-2025";"Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1); Social Psychology (Q1)";"Business, Management and Accounting; Psychology" +33;20798;"Immunity";journal;"10974180, 10747613";"Cell Press";No;No;16,481;Q1;498;254;674;16951;14743;481;21,16;66,74;41,35;1;United States;Northern America;"Cell Press";"1994-2026";"Immunology (Q1); Immunology and Allergy (Q1); Infectious Diseases (Q1)";"Immunology and Microbiology; Medicine" +34;21100862548;"Nature Catalysis";journal;"25201158";"Nature Publishing Group";No;No;16,266;Q1;188;186;532;6912;15506;374;25,82;37,16;29,49;0;United States;Northern America;"Nature Publishing Group";"2018-2026";"Biochemistry (Q1); Bioengineering (Q1); Catalysis (Q1); Process Chemistry and Technology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +35;24404;"Journal of Political Economy";journal;"00223808, 1537534X";"University of Chicago Press";No;No;16,250;Q1;235;91;250;5654;2006;244;6,70;62,13;17,23;40;United States;Northern America;"University of Chicago Press";"1969, 1973-1974, 1979-1985, 1987-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +36;20651;"Annual Review of Immunology";book series;"15453278, 07320582";"Annual Reviews Inc.";No;No;16,066;Q1;349;27;72;5531;2832;72;40,40;204,85;45,95;0;United States;Northern America;"Annual Reviews Inc.";"1983-2025";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +37;146172;"Cell Metabolism";journal;"15504131, 19327420";"Cell Press";No;No;15,978;Q1;391;201;536;11418;15213;404;27,38;56,81;42,29;2;United States;Northern America;"Cell Press";"2005-2026";"Cell Biology (Q1); Molecular Biology (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology" +38;21100778827;"Nature Methods";journal;"15487091, 15487105";"Nature Research";No;No;15,624;Q1;432;415;1142;16529;17421;646;12,81;39,83;32,65;0;United Kingdom;Western Europe;"Nature Research";"2004-2026";"Biochemistry (Q1); Biotechnology (Q1); Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +39;21100780831;"Nature Reviews Disease Primers";journal;"2056676X";"Nature Publishing Group";No;No;15,606;Q1;236;98;167;9797;7762;131;43,24;99,97;40,92;1;United Kingdom;Western Europe;"Nature Publishing Group";"2015-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +40;28599;"Reviews of Geophysics";journal;"19449208, 87551209";"John Wiley and Sons Inc";No;No;15,383;Q1;219;27;56;8464;2867;53;38,27;313,48;31,16;0;United States;Northern America;"John Wiley and Sons Inc";"1963-2026";"Geophysics (Q1)";"Earth and Planetary Sciences" +41;18990;"Nature Genetics";journal;"10614036, 15461718";"Nature Research";No;No;15,377;Q1;679;398;976;20640;16316;658;13,55;51,86;39,64;2;United Kingdom;Western Europe;"Nature Research";"1992-2026";"Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +42;17900156715;"IEEE Communications Surveys and Tutorials";journal;"1553877X";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;14,838;Q1;314;108;241;25526;14887;235;57,78;236,35;23,98;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2004-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +43;16590;"The Lancet";journal;"01406736, 1474547X";"Elsevier B.V.";No;No;14,821;Q1;982;1292;4112;24452;59974;1272;13,95;18,93;37,33;0;United Kingdom;Western Europe;"Elsevier B.V.";"1823-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +44;71056;"MMWR Surveillance Summaries";journal;"15458636, 15460738";"Centers for Disease Control and Prevention (CDC)";Yes;No;14,728;Q1;121;4;28;202;1428;28;65,78;50,50;81,32;1;United States;Northern America;"Centers for Disease Control and Prevention (CDC)";"2002-2009, 2011-2025";"Epidemiology (Q1); Health Information Management (Q1); Health (social science) (Q1); Health, Toxicology and Mutagenesis (Q1)";"Environmental Science; Health Professions; Medicine; Social Sciences" +45;21101089342;"Nature Reviews Methods Primers";journal;"26628449";"Springer Nature";No;No;14,459;Q1;88;54;181;8305;8574;128;43,93;153,80;25,66;0;United Kingdom;Western Europe;"Springer Nature";"2021-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +46;19900191906;"Academy of Management Annals";journal;"19416520, 19416067";"Academy of Management";No;No;14,367;Q1;132;25;69;6382;1585;66;20,04;255,28;31,51;0;United States;Northern America;"Academy of Management";"2007, 2010-2025";"Business and International Management (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting" +47;22330;"Organizational Research Methods";journal;"15527425, 10944281";"SAGE Publications Inc.";No;No;14,268;Q1;158;30;78;2819;2340;76;24,86;93,97;38,20;2;United States;Northern America;"SAGE Publications Inc.";"1998-2026";"Decision Sciences (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +48;28677;"Living Reviews in Relativity";journal;"14338351, 23673613";"Springer International Publishing AG";Yes;Yes;14,227;Q1;107;9;17;7112;837;17;50,82;790,22;17,50;0;Switzerland;Western Europe;"Springer International Publishing AG";"1998-2025";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +49;26651;"Annual Review of Astronomy and Astrophysics";book series;"15454282, 00664146";"Annual Reviews Inc.";No;No;14,119;Q1;227;13;42;3395;1366;39;32,76;261,15;22,73;0;United States;Northern America;"Annual Reviews Inc.";"1980, 1990-2025";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +50;21100826569;"Nature Reviews Chemistry";journal;"23973358";"Nature Publishing Group";No;No;13,684;Q1;153;106;314;7581;7587;179;20,24;71,52;29,19;0;United Kingdom;Western Europe;"Nature Publishing Group";"2017-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)";"Chemical Engineering; Chemistry" +51;17854;"Nature Materials";journal;"14764660, 14761122";"Nature Publishing Group";No;No;13,131;Q1;608;341;894;12099;20209;599;20,97;35,48;28,35;3;United Kingdom;Western Europe;"Nature Publishing Group";"2002-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +52;21100786228;"The Lancet Gastroenterology and Hepatology";journal;"24681253";"Elsevier Ltd";No;No;13,113;Q1;141;217;690;5143;9364;241;12,13;23,70;35,64;0;United Kingdom;Western Europe;"Elsevier Ltd";"2016-2026";"Gastroenterology (Q1); Hepatology (Q1)";"Medicine" +53;25297;"Journal of Hepatology";journal;"16000641, 01688278";"Elsevier B.V.";No;No;13,097;Q1;338;512;1281;14519;21804;624;16,62;28,36;38,85;3;Netherlands;Western Europe;"Elsevier B.V.";"1985-2026";"Hepatology (Q1)";"Medicine" +54;5200152704;"Nature Nanotechnology";journal;"17483387, 17483395";"Nature Research";No;No;13,056;Q1;467;1017;739;11301;19640;556;25,04;11,11;30,61;4;United Kingdom;Western Europe;"Nature Research";"2006-2026";"Atomic and Molecular Physics, and Optics (Q1); Bioengineering (Q1); Biomedical Engineering (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)";"Chemical Engineering; Engineering; Materials Science; Physics and Astronomy" +55;29719;"Reviews of Modern Physics";journal;"00346861, 15390756";"American Physical Society";No;No;13,041;Q1;417;32;107;12783;4546;101;44,13;399,47;20,75;0;United States;Northern America;"American Physical Society";"1929-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +56;12010;"Annual Review of Psychology";journal;"00664308, 15452085";"Annual Reviews Inc.";No;No;12,936;Q1;315;34;78;5343;3162;75;42,63;157,15;32,39;2;United States;Northern America;"Annual Reviews Inc.";"1950-1958, 1960-1963, 1965-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +57;21100834904;"Joule";journal;"25424351";"Cell Press";No;No;12,922;Q1;252;243;652;13117;18231;470;26,16;53,98;28,84;4;United States;Northern America;"Cell Press";"2017-2026";"Energy (miscellaneous) (Q1)";"Energy" +58;19900191885;"American Economic Journal: Macroeconomics";journal;"19457707, 19457715";"American Economic Association";No;No;12,637;Q1;96;13;159;840;1141;159;7,37;64,62;16,67;11;United States;Northern America;"American Economic Association";"2009-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +59;5700165152;"Nature Photonics";journal;"17494885, 17494893";"Nature Research";No;No;12,491;Q1;429;251;614;8870;14241;435;23,83;35,34;20,98;0;United Kingdom;Western Europe;"Nature Research";"2007-2026";"Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Materials Science; Physics and Astronomy" +60;21101023100;"Nature Cancer";journal;"26621347";"Nature Research";No;No;12,443;Q1;102;199;528;8965;8590;348;14,06;45,05;41,20;0;United States;Northern America;"Nature Research";"2020-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +61;16860;"The Lancet Neurology";journal;"14744465, 14744422";"Elsevier Ltd";No;No;12,439;Q1;398;251;868;4925;9226;247;9,74;19,62;38,61;0;United Kingdom;Western Europe;"Elsevier Ltd";"2002-2026";"Neurology (clinical) (Q1)";"Medicine" +62;21100884663;"Nature Electronics";journal;"25201131";"Nature Publishing Group";No;No;12,430;Q1;159;212;576;6116;10767;320;17,53;28,85;28,66;1;United Kingdom;Western Europe;"Nature Publishing Group";"2018-2026";"Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Instrumentation (Q1)";"Engineering; Materials Science; Physics and Astronomy" +63;21100258425;"Kidney International Supplements";journal;"21571716, 21571724";"Elsevier B.V.";No;No;12,369;Q1;57;1;21;53;953;18;5,25;53,00;47,62;0;United States;Northern America;"Elsevier B.V.";"2011-2022, 2024-2025";"Nephrology (Q1)";"Medicine" +64;22951;"Journal of Marketing";journal;"15477185, 00222429";"American Marketing Association";No;No;12,226;Q1;309;62;152;4823;3058;145;13,62;77,79;41,11;1;United States;Northern America;"American Marketing Association";"1939, 1941, 1956, 1958-1959, 1969-1981, 1984-1991, 1993-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +65;11300153736;"Annual Review of Pathology: Mechanisms of Disease";book series;"15534006, 15534014";"Annual Reviews Inc.";No;No;12,060;Q1;162;20;44;3193;1549;44;35,20;159,65;43,86;0;United States;Northern America;"Annual Reviews Inc.";"2006-2021, 2023-2026";"Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Medicine" +66;6100153018;"Cell Stem Cell";journal;"19345909, 18759777";"Cell Press";No;No;12,003;Q1;329;167;455;10060;7077;306;14,53;60,24;42,99;3;United States;Northern America;"Cell Press";"2007-2026";"Cell Biology (Q1); Genetics (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology" +67;17900156736;"Journal of Hematology and Oncology";journal;"17568722";"BioMed Central Ltd";Yes;No;11,824;Q1;194;110;406;13372;12988;270;28,48;121,56;43,61;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2008-2026";"Cancer Research (Q1); Hematology (Q1); Molecular Biology (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +68;21101141505;"eScience";journal;"20972431, 26671417";"KeAi Communications Co.";Yes;No;11,618;Q1;82;73;180;7761;7552;179;49,11;106,32;35,34;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Electrochemistry (Q1); Materials Chemistry (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Chemistry; Energy; Materials Science" +69;21100237403;"The Lancet Diabetes and Endocrinology";journal;"22138595, 22138587";"Elsevier Ltd";No;No;11,610;Q1;207;194;575;4057;6586;191;9,10;20,91;44,98;0;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +70;24004;"Physiological Reviews";journal;"15221210, 00319333";"American Physiological Society";No;No;11,493;Q1;417;45;136;25429;4473;123;32,49;565,09;32,39;0;United States;Northern America;"American Physiological Society";"1945-2026";"Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Physiology (Q1); Physiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +71;23350;"Chemical Society Reviews";journal;"03060012, 14604744";"Royal Society of Chemistry";No;No;11,348;Q1;709;257;870;69971;39194;867;43,88;272,26;34,82;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"1972-2026";"Chemistry (miscellaneous) (Q1)";"Chemistry" +72;20110;"NBER Macroeconomics Annual";book series;"15372642, 08893365";"University of Chicago Press";No;No;11,327;Q1;76;19;54;424;151;12;2,55;22,32;11,11;1;United States;Northern America;"University of Chicago Press";"1996-2014, 2016, 2018-2025";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +73;16801;"Annual Review of Biochemistry";book series;"15454509, 00664154";"Annual Reviews Inc.";No;No;11,213;Q1;342;22;68;3727;1590;68;24,36;169,41;28,00;0;United States;Northern America;"Annual Reviews Inc.";"1946-1948, 1950-1960, 1962-2025";"Biochemistry (Q1)";"Biochemistry, Genetics and Molecular Biology" +74;17700156509;"Nature Reviews Cardiology";journal;"17595010, 17595002";"Nature Research";No;No;11,209;Q1;224;138;442;11683;8358;228;20,76;84,66;27,63;1;United Kingdom;Western Europe;"Nature Research";"2009-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +75;21315;"Nature Immunology";journal;"15292908, 15292916";"Nature Research";No;No;11,131;Q1;468;314;896;12468;11141;546;11,00;39,71;44,49;0;United Kingdom;Western Europe;"Nature Research";"2000-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +76;22899;"Journal of Consumer Research";journal;"00935301, 15375277";"Oxford University Press";No;No;11,045;Q1;248;61;190;4637;2040;189;9,78;76,02;46,75;0;United Kingdom;Western Europe;"Oxford University Press";"1975, 1977-1978, 1984, 1988, 1991-1992, 1996-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +77;17436;"Nature Neuroscience";journal;"10976256, 15461726";"Nature Research";No;No;11,041;Q1;515;306;787;16759;11017;547;12,48;54,77;39,26;1;United Kingdom;Western Europe;"Nature Research";"1998-2026";"Neuroscience (miscellaneous) (Q1)";"Neuroscience" +78;23571;"Science";journal;"10959203, 00368075";"American Association for the Advancement of Science";Yes;No;10,948;Q1;1433;1899;5996;54171;105254;4035;16,75;28,53;34,54;60;United States;Northern America;"American Association for the Advancement of Science";"1880-1881, 1883-2026";"History and Philosophy of Science (Q1); Multidisciplinary (Q1)";"Arts and Humanities; Multidisciplinary" +79;20191;"Academy of Management Journal";journal;"00014273";"Academy of Management";No;No;10,781;Q1;410;44;211;4516;3090;197;13,65;102,64;41,96;1;United States;Northern America;"Academy of Management";"1961, 1966-1968, 1973, 1975-2025";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +80;17700156202;"Nature Reviews Nephrology";journal;"1759507X, 17595061";"Nature Research";No;No;10,732;Q1;195;119;387;9197;7579;215;20,07;77,29;41,48;0;United Kingdom;Western Europe;"Nature Research";"2009-2026";"Nephrology (Q1)";"Medicine" +81;18606;"Molecular Cell";journal;"10974164, 10972765";"Cell Press";No;No;10,670;Q1;473;381;1170;25793;15452;912;11,68;67,70;39,78;0;United States;Northern America;"Cell Press";"1997-2026";"Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +82;17437;"Nature Reviews Neuroscience";journal;"14710048, 1471003X";"Springer Nature";No;No;10,282;Q1;510;104;339;9594;4586;191;12,46;92,25;36,84;0;United Kingdom;Western Europe;"Springer Nature";"2000-2026";"Neuroscience (miscellaneous) (Q1)";"Neuroscience" +83;23157;"Strategic Management Journal";journal;"10970266, 01432095";"John Wiley and Sons Ltd";No;No;10,154;Q1;370;109;307;9885;3798;304;10,85;90,69;27,41;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1980-2026";"Business and International Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +84;19700188417;"Annual Review of Condensed Matter Physics";journal;"19475454, 19475462";"Annual Reviews Inc.";No;No;10,044;Q1;102;20;52;2695;1431;52;26,91;134,75;19,64;0;United States;Northern America;"Annual Reviews Inc.";"2010-2025";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)";"Materials Science; Physics and Astronomy" +85;20206;"Academy of Management Review";journal;"03637425";"Academy of Management";No;No;9,996;Q1;334;49;134;4387;1683;123;10,87;89,53;27,96;3;United States;Northern America;"Academy of Management";"1976-1991, 1993-2025";"Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +86;26038;"Endocrine Reviews";journal;"19457189, 0163769X";"Endocrine Society";No;No;9,991;Q1;326;38;110;9763;3586;110;28,49;256,92;52,87;0;United States;Northern America;"Endocrine Society";"1980-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +87;17700156208;"Nature Reviews Gastroenterology and Hepatology";journal;"17595045, 17595053";"Nature Research";No;No;9,982;Q1;236;133;454;9971;8655;266;19,53;74,97;36,51;0;United Kingdom;Western Europe;"Nature Research";"2009-2026";"Gastroenterology (Q1); Hepatology (Q1)";"Medicine" +88;16721;"Annual Review of Plant Biology";journal;"15452123, 15435008";"Annual Reviews Inc.";Yes;No;9,949;Q1;320;25;84;4131;2717;84;27,42;165,24;35,96;0;United States;Northern America;"Annual Reviews Inc.";"1996-2025";"Cell Biology (Q1); Molecular Biology (Q1); Physiology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +89;12429;"Molecular Cancer";journal;"14764598";"BioMed Central Ltd";Yes;No;9,908;Q1;242;300;666;47076;22706;558;32,77;156,92;42,41;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Cancer Research (Q1); Molecular Medicine (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +90;5300152732;"Cell Host and Microbe";journal;"19346069, 19313128";"Cell Press";No;No;9,892;Q1;270;220;628;12020;9069;393;14,95;54,64;44,91;0;United States;Northern America;"Cell Press";"2007-2026";"Cancer Research (Q1); Immunology and Microbiology (miscellaneous) (Q1); Microbiology (Q1); Molecular Biology (Q1); Parasitology (Q1); Virology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +91;16160;"Review of Finance";journal;"1573692X, 15723097";"Oxford University Press";No;No;9,870;Q1;91;54;168;2983;2256;166;7,62;55,24;22,63;3;United Kingdom;Western Europe;"Oxford University Press";"2001-2002, 2004-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +92;29857;"Journal of Accounting Research";journal;"1475679X, 00218456";"Wiley-Blackwell Publishing Ltd";No;No;9,774;Q1;186;62;133;4400;1608;133;12,22;70,97;36,08;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +93;21100932733;"Nature Metabolism";journal;"25225812";"Nature Research";No;No;9,602;Q1;113;236;631;12694;9553;424;15,34;53,79;42,87;1;United Kingdom;Western Europe;"Nature Research";"2019-2026";"Cell Biology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Physiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +94;16036;"Administrative Science Quarterly";journal;"00018392, 19303815";"SAGE Publications Ltd";No;No;9,595;Q1;228;29;88;3165;845;81;7,98;109,14;47,54;2;United States;Northern America;"SAGE Publications Ltd";"1975-1987, 1989-1990, 1993-1994, 1996-2026";"Arts and Humanities (miscellaneous) (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +95;21100972445;"Nature Reviews Physics";journal;"25225820";"Springer International Publishing";Yes;No;9,588;Q1;110;111;380;8086;6331;182;16,58;72,85;22,56;1;United Kingdom;Western Europe;"Springer International Publishing";"2019-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +96;21101083188;"Nature Aging";journal;"26628465";"Springer";No;No;9,500;Q1;75;247;566;12218;6877;309;11,90;49,47;42,57;2;United States;Northern America;"Springer";"2021-2026";"Aging (Q1); Geriatrics and Gerontology (Q1); Neuroscience (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +97;12354;"The Lancet Oncology";journal;"14702045, 14745488";"Elsevier Ltd";No;No;9,432;Q1;455;408;1333;7884;13495;637;9,41;19,32;41,44;1;United Kingdom;Western Europe;"Elsevier Ltd";"2000-2026";"Oncology (Q1)";"Medicine" +98;19900191767;"American Economic Journal: Applied Economics";journal;"19457790, 19457782";"American Economic Association";No;No;9,427;Q1;124;16;177;1074;1268;177;6,36;67,13;23,26;10;United States;Northern America;"American Economic Association";"2009-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +99;26756;"Astronomy and Astrophysics Review";journal;"09354956, 14320754";"Springer Science and Business Media Deutschland GmbH";Yes;No;9,300;Q1;89;8;20;3155;499;20;19,42;394,38;23,81;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1989-2000, 2002-2004, 2006-2025";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +100;17500155114;"Energy and Environmental Science";journal;"17545692, 17545706";"Royal Society of Chemistry";No;No;9,244;Q1;491;598;1581;46563;45756;1571;27,82;77,86;31,03;2;United Kingdom;Western Europe;"Royal Society of Chemistry";"2008-2026";"Environmental Chemistry (Q1); Nuclear Energy and Engineering (Q1); Pollution (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Environmental Science" +101;58530;"National Vital Statistics Reports";book series;"15518922, 15518930";"National Center for Health Statistics";No;No;9,227;Q1;123;14;39;297;790;36;21,85;21,21;71,43;2;United States;Northern America;"National Center for Health Statistics";"1998-2025";"Life-span and Life-course Studies (Q1)";"Social Sciences" +102;21101272993;"Nature Reviews Bioengineering";journal;"27316092";"Springer Nature";No;No;9,178;Q1;44;123;240;11697;4381;119;18,25;95,10;32,23;2;United Kingdom;Western Europe;"Springer Nature";"2023-2026";"Applied Microbiology and Biotechnology (Q1); Biomedical Engineering (Q1); Biophysics (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Immunology and Microbiology" +103;24721;"Annals of Mathematics";journal;"0003486X, 19398980";"Department of Mathematics at Princeton University";No;No;9,137;Q1;153;25;102;1254;601;102;4,66;50,16;12,50;0;United States;Northern America;"Department of Mathematics at Princeton University";"1996-2025";"Mathematics (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +104;21101134733;"iMeta";journal;"2770596X, 27705986";"John Wiley and Sons Inc";Yes;No;9,121;Q1;45;109;230;5880;6654;146;24,31;53,94;41,60;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Biotechnology (Q1); Microbiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +105;17700156440;"Nature Reviews Endocrinology";journal;"17595037, 17595029";"Nature Publishing Group";No;No;9,087;Q1;240;143;448;8831;6617;216;13,58;61,76;48,08;3;United Kingdom;Western Europe;"Nature Publishing Group";"2009-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +106;19014;"Nature Cell Biology";journal;"14764679, 14657392";"Nature Research";No;No;9,085;Q1;431;254;703;13384;8702;486;11,62;52,69;39,55;0;United Kingdom;Western Europe;"Nature Research";"1999-2026";"Cell Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +107;21100831443;"Nature Biomedical Engineering";journal;"2157846X";"Nature Research";No;No;8,997;Q1;166;264;446;15866;9543;344;18,72;60,10;36,53;1;United Kingdom;Western Europe;"Nature Research";"2017-2026";"Bioengineering (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Computer Science Applications (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Computer Science; Engineering; Medicine" +108;24527;"Acta Mathematica";journal;"00015962, 18712509";"International Press, Inc.";No;No;8,954;Q1;85;6;27;411;193;27;6,50;68,50;0,00;0;Netherlands;Western Europe;"International Press, Inc.";"1882-1887, 1889-1895, 1897, 1899-1906, 1908-1914, 1916, 1920-1923, 1925-1942, 1944-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +109;19700173023;"Living Reviews in Solar Physics";journal;"16144961, 23673648";"Springer International Publishing AG";Yes;Yes;8,871;Q1;79;4;8;1109;232;8;26,80;277,25;35,29;0;Switzerland;Western Europe;"Springer International Publishing AG";"2004-2025";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +110;24204;"Review of Economics and Statistics";journal;"00346535, 15309142";"MIT Press";No;No;8,830;Q1;219;61;310;2861;1861;310;5,47;46,90;19,16;44;United States;Northern America;"MIT Press";"1978-2025";"Economics and Econometrics (Q1); Social Sciences (miscellaneous) (Q1)";"Economics, Econometrics and Finance; Social Sciences" +111;28366;"Gut";journal;"14683288, 00175749";"BMJ Publishing Group";No;No;8,772;Q1;385;390;994;14024;15893;615;14,53;35,96;37,94;1;United Kingdom;Western Europe;"BMJ Publishing Group";"1960-2026";"Gastroenterology (Q1)";"Medicine" +112;29838;"Journal of Accounting and Economics";journal;"01654101";"Elsevier B.V.";No;No;8,748;Q1;207;67;149;4541;1520;148;8,48;67,78;29,24;4;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +113;19897;"European Urology";journal;"18737560, 03022838";"Elsevier B.V.";No;No;8,715;Q1;288;384;1059;7354;7695;301;6,92;19,15;30,80;4;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Urology (Q1)";"Medicine" +114;19584;"Annual Review of Public Health";book series;"01637525, 15452093";"Annual Reviews Inc.";No;No;8,648;Q1;200;28;80;3229;2078;78;18,02;115,32;58,89;6;United States;Northern America;"Annual Reviews Inc.";"1980-2020, 2022-2025";"Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +115;17978;"Neuron";journal;"10974199, 08966273";"Cell Press";No;No;8,564;Q1;569;348;1058;27520;12733;778;11,25;79,08;41,08;2;United States;Northern America;"Cell Press";"1988-2026";"Neuroscience (miscellaneous) (Q1)";"Neuroscience" +116;21100860945;"Science Immunology";journal;"24709468";"American Association for the Advancement of Science";No;No;8,560;Q1;136;150;508;9729;6878;503;12,86;64,86;43,94;0;United States;Northern America;"American Association for the Advancement of Science";"2016-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +117;13443;"Psychological Bulletin";journal;"00332909, 19391455";"American Psychological Association";No;No;8,496;Q1;396;51;103;8621;2424;103;17,50;169,04;56,29;3;United States;Northern America;"American Psychological Association";"1904-2025";"History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Psychology" +118;21100203115;"Nano-Micro Letters";journal;"23116706, 21505551";"Open Access Science Online";Yes;No;8,402;Q1;176;328;727;31013;26926;725;37,48;94,55;32,63;0;Netherlands;Western Europe;"Open Access Science Online";"2009-2026";"Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Nanoscience and Nanotechnology (Q1); Surfaces, Coatings and Films (Q1)";"Engineering; Materials Science" +119;110092;"Morbidity and Mortality Weekly Report";journal;"01492195, 1545861X";"Centers for Disease Control and Prevention (CDC)";Yes;No;8,380;Q1;283;116;859;871;10269;699;13,10;7,51;63,41;14;United States;Northern America;"Centers for Disease Control and Prevention (CDC)";"1981-2026";"Epidemiology (Q1); Health Information Management (Q1); Health (social science) (Q1); Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1)";"Environmental Science; Health Professions; Medicine; Social Sciences" +120;17899;"Progress in Materials Science";journal;"18732208, 00796425";"Elsevier Ltd";No;No;8,365;Q1;278;116;296;43986;14119;294;47,73;379,19;31,15;0;United Kingdom;Western Europe;"Elsevier Ltd";"1961, 1963, 1968-1970, 1972-1974, 1976, 1978-1986, 1988-2026";"Materials Science (miscellaneous) (Q1)";"Materials Science" +121;23714;"Marketing Science";journal;"07322399, 1526548X";"INFORMS Institute for Operations Research and the Management Sciences";No;No;8,324;Q1;166;76;191;3787;1372;184;6,59;49,83;23,50;0;United States;Northern America;"INFORMS Institute for Operations Research and the Management Sciences";"1985, 1991, 1993, 1995-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +122;22581;"Circulation";journal;"00097322, 15244539";"Lippincott Williams and Wilkins";No;No;8,311;Q1;712;602;1680;23955;24668;1139;13,16;39,79;38,19;0;United States;Northern America;"Lippincott Williams and Wilkins";"1950-2026";"Cardiology and Cardiovascular Medicine (Q1); Physiology (medical) (Q1)";"Medicine" +123;22401;"Journal of the American College of Cardiology";journal;"15583597, 07351097";"Elsevier Inc.";No;No;8,275;Q1;531;771;1955;19444;20074;928;9,08;25,22;31,15;4;United States;Northern America;"Elsevier Inc.";"1983-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +124;19881;"Advanced Materials";journal;"09359648, 15214095";"Wiley-Blackwell";No;No;8,266;Q1;709;3401;7649;273275;221543;7621;28,43;80,35;33,48;3;United States;Northern America;"Wiley-Blackwell";"1989-2026";"Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Nanoscience and Nanotechnology (Q1)";"Engineering; Materials Science" +125;20635;"Journal of Management";journal;"01492063, 15571211";"SAGE Publications Inc.";No;No;8,251;Q1;315;160;276;19794;4399;261;13,92;123,71;34,15;4;United States;Northern America;"SAGE Publications Inc.";"1975-2026";"Finance (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +126;21100804406;"The Lancet Public Health";journal;"24682667";"Elsevier Ltd";Yes;No;8,250;Q1;123;164;488;5060;7612;274;12,80;30,85;36,25;1;United Kingdom;Western Europe;"Elsevier Ltd";"2016-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +127;19700200702;"Annual Review of Financial Economics";journal;"19411367, 19411375";"Annual Reviews Inc.";No;No;8,229;Q1;56;21;76;1727;542;74;4,25;82,24;19,57;1;United States;Northern America;"Annual Reviews Inc.";"2010-2025";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +128;28980;"Journal of Economic Perspectives";journal;"08953309, 19447965";"American Economic Association";No;No;8,181;Q1;253;33;125;2245;1441;125;10,62;68,03;27,27;14;United States;Northern America;"American Economic Association";"1987, 1992-1994, 1996-2025";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +129;14204;"Nucleic Acids Research";journal;"03051048, 13624962";"Oxford University Press";Yes;No;8,111;Q1;714;1543;3707;96690;68012;3689;18,59;62,66;40,67;3;United Kingdom;Western Europe;"Oxford University Press";"1974-2026";"Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +130;21101046230;"Electrochemical Energy Reviews";journal;"25208136, 25208489";"Springer";No;No;8,084;Q1;94;35;115;7262;4162;115;45,22;207,49;33,33;0;Singapore;Asiatic Region;"Springer";"2018-2026";"Chemical Engineering (miscellaneous) (Q1); Electrochemistry (Q1); Energy Engineering and Power Technology (Q1); Materials Science (miscellaneous) (Q1)";"Chemical Engineering; Chemistry; Energy; Materials Science" +131;21100356804;"The Lancet Psychiatry";journal;"22150374, 22150366";"Elsevier Ltd";No;No;8,070;Q1;176;195;712;4132;5888;228;6,06;21,19;44,64;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +132;21100228100;"Advances in Optics and Photonics";journal;"19438206";"Optica Publishing Group (formerly OSA)";No;No;8,026;Q1;99;10;37;3727;1117;36;30,42;372,70;22,54;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"2009-2025";"Atomic and Molecular Physics, and Optics (Q1); Water Science and Technology (Q1)";"Environmental Science; Physics and Astronomy" +133;27538;"Progress in Energy and Combustion Science";journal;"03601285";"Elsevier B.V.";No;No;8,013;Q1;257;23;94;7537;4463;93;45,07;327,70;17,89;0;United Kingdom;Western Europe;"Elsevier B.V.";"1975-2026";"Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1)";"Chemical Engineering; Energy" +134;21100866005;"Cancer Communications";journal;"25233548";"John Wiley & Sons Inc.";Yes;No;7,986;Q1;108;122;308;7269;5166;158;14,38;59,58;42,52;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2017-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +135;21100198409;"Nature Climate Change";journal;"17586798, 1758678X";"Nature Research";No;No;7,978;Q1;322;348;898;10520;12673;492;11,93;30,23;34,95;38;United Kingdom;Western Europe;"Nature Research";"2009, 2011-2026";"Environmental Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Environmental Science; Social Sciences" +136;120008;"Annual Review of Physiology";book series;"00664278, 15451585";"Annual Reviews Inc.";No;No;7,966;Q1;252;21;69;3219;1508;69;20,86;153,29;33,33;0;United States;Northern America;"Annual Reviews Inc.";"1946-2009, 2011-2026";"Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology" +137;21100466714;"International Journal of Educational Technology in Higher Education";journal;"23659440";"Springer Netherlands";Yes;Yes;7,947;Q1;97;75;187;5367;7577;181;50,77;71,56;50,20;1;Netherlands;Western Europe;"Springer Netherlands";"2016-2026";"Computer Science Applications (Q1); Education (Q1); E-learning (Q1)";"Computer Science; Social Sciences" +138;22324;"Organization Science";journal;"15265455, 10477039";"INFORMS Inst.for Operations Res.and the Management Sciences";No;No;7,929;Q1;308;108;313;11595;3093;313;7,93;107,36;39,72;5;United States;Northern America;"INFORMS Inst.for Operations Res.and the Management Sciences";"1992-1994, 1996-2026";"Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +139;21100873499;"Nature Sustainability";journal;"23989629";"Nature Publishing Group";Yes;No;7,896;Q1;174;218;655;8779;14083;470;20,73;40,27;32,45;20;United Kingdom;Western Europe;"Nature Publishing Group";"2018-2026";"Ecology (Q1); Food Science (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1); Renewable Energy, Sustainability and the Environment (Q1); Urban Studies (Q1)";"Agricultural and Biological Sciences; Energy; Environmental Science; Social Sciences" +140;18100156701;"Nature Chemistry";journal;"17554330, 17554349";"Nature Publishing Group";No;No;7,801;Q1;323;623;818;12973;12286;633;15,19;20,82;28,98;0;United Kingdom;Western Europe;"Nature Publishing Group";"2009-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)";"Chemical Engineering; Chemistry" +141;19900191884;"American Economic Journal: Economic Policy";journal;"19457731, 1945774X";"American Economic Association";No;No;7,737;Q1;106;60;193;3689;1285;193;5,47;61,48;27,44;16;United States;Northern America;"American Economic Association";"2009-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +142;24668;"Journal of the American Mathematical Society";journal;"10886834, 08940347";"American Mathematical Society";No;No;7,702;Q1;120;20;64;1051;315;62;4,84;52,55;13,73;0;United States;Northern America;"American Mathematical Society";"1988-2025";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +143;18395;"Annual Review of Cell and Developmental Biology";book series;"15308995, 10810706";"Annual Reviews Inc.";No;No;7,701;Q1;255;23;57;4063;794;55;12,14;176,65;39,71;0;United States;Northern America;"Annual Reviews Inc.";"1995-2025";"Cell Biology (Q1); Developmental Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +144;17600155011;"Molecular Plant";journal;"16742052, 17529867";"Cell Press";No;No;7,692;Q1;198;196;538;10624;9329;360;18,34;54,20;39,26;0;United States;Northern America;"Cell Press";"2008-2026";"Molecular Biology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +145;21100199127;"Advanced Energy Materials";journal;"16146832, 16146840";"John Wiley and Sons Inc";No;No;7,677;Q1;388;1211;2754;88490;71493;2745;25,67;73,07;31,55;3;Germany;Western Europe;"John Wiley and Sons Inc";"2011-2026";"Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Materials Science" +146;21100220495;"The Lancet Respiratory Medicine";journal;"22132619, 22132600";"Elsevier Ltd";No;No;7,652;Q1;212;227;783;4730;7704;325;9,42;20,84;33,74;0;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +147;14181;"Annual Review of Neuroscience";book series;"0147006X, 15454126";"Annual Reviews Inc.";No;No;7,549;Q1;278;25;65;3410;1069;65;13,32;136,40;35,71;0;United States;Northern America;"Annual Reviews Inc.";"1978-2025";"Neuroscience (miscellaneous) (Q1)";"Neuroscience" +148;6400153137;"Journal of Thoracic Oncology";journal;"15561380, 15560864";"Elsevier Inc.";No;No;7,497;Q1;204;313;699;7533;6029;293;7,54;24,07;37,19;3;United States;Northern America;"Elsevier Inc.";"2006-2026";"Medicine (miscellaneous) (Q1); Oncology (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine" +149;21100773752;"Nature Microbiology";journal;"20585276";"Nature Research";No;No;7,440;Q1;176;301;810;16129;10634;619;12,26;53,58;41,91;6;United Kingdom;Western Europe;"Nature Research";"2016-2026";"Applied Microbiology and Biotechnology (Q1); Cell Biology (Q1); Genetics (Q1); Immunology (Q1); Microbiology (Q1); Microbiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +150;21101151587;"eLight";journal;"26628643, 20971710";"Springer";Yes;Yes;7,423;Q1;43;33;69;2277;1728;67;26,52;69,00;26,60;0;Singapore;Asiatic Region;"Springer";"2021-2026";"Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Materials Science; Physics and Astronomy" +151;5800207366;"Nature Protocols";journal;"17502799, 17542189";"Springer Nature";No;No;7,403;Q1;339;202;388;12217;7422;381;17,70;60,48;36,36;0;United Kingdom;Western Europe;"Springer Nature";"2006-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology" +152;21100420583;"JAMA Oncology";journal;"23742445, 23742437";"American Medical Association";No;No;7,399;Q1;208;308;1078;4823;9717;546;9,16;15,66;41,29;5;United States;Northern America;"American Medical Association";"2015-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +153;21100212318;"Cancer Discovery";journal;"21598274, 21598290";"American Association for Cancer Research Inc.";No;No;7,389;Q1;265;170;1050;9890;12992;965;11,31;58,18;43,85;0;United States;Northern America;"American Association for Cancer Research Inc.";"2011-2026";"Oncology (Q1)";"Medicine" +154;22961;"Journal of Marketing Research";journal;"00222437, 15477193";"SAGE Publications Ltd";No;No;7,363;Q1;221;62;186;4022;1541;182;7,95;64,87;35,59;2;United States;Northern America;"SAGE Publications Ltd";"1967-1968, 1971-1973, 1976-1981, 1983, 1986-1987, 1989-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +155;19136;"Annals of the Rheumatic Diseases";journal;"00034967, 14682060";"Elsevier B.V.";Yes;No;7,286;Q1;315;333;1060;12115;10708;560;11,22;36,38;48,17;4;Netherlands;Western Europe;"Elsevier B.V.";"1945-1948, 1950-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology (Q1); Immunology and Allergy (Q1); Rheumatology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +156;7500153126;"Journal of the European Economic Association";journal;"15424774, 15424766";"Wiley-Blackwell";No;No;7,259;Q1;130;60;201;3818;868;201;3,72;63,63;23,75;21;United States;Northern America;"Wiley-Blackwell";"2003-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +157;21100284918;"Earth System Science Data";journal;"18663516, 18663508";"Copernicus Publications";Yes;No;7,199;Q1;136;327;791;24900;10645;67;12,79;76,15;32,97;6;Germany;Western Europe;"Copernicus Publications";"2009-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +158;25491;"Diabetes Care";journal;"19355548, 01495992";"American Diabetes Association Inc.";No;No;7,161;Q1;449;413;1272;13241;18315;965;15,83;32,06;46,11;1;United States;Northern America;"American Diabetes Association Inc.";"1978-2026";"Advanced and Specialized Nursing (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Medicine; Nursing" +159;21101074919;"Computers and Education: Artificial Intelligence";journal;"2666920X";"Elsevier B.V.";Yes;No;7,083;Q1;86;181;285;14039;11800;284;38,49;77,56;41,28;10;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Education (Q1)";"Computer Science; Social Sciences" +160;17700156408;"Nature Reviews Neurology";journal;"17594766, 17594758";"Nature Research";No;No;7,083;Q1;244;122;444;8764;5581;261;12,13;71,84;51,60;0;United Kingdom;Western Europe;"Nature Research";"2009-2026";"Cellular and Molecular Neuroscience (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +161;28371;"Hepatology";journal;"02709139, 15273350";"Lippincott Williams and Wilkins";No;No;7,063;Q1;424;632;1367;20296;14909;798;13,02;32,11;41,67;1;United States;Northern America;"Lippincott Williams and Wilkins";"1981-2026";"Hepatology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +162;19700174677;"Science Translational Medicine";journal;"19466234, 19466242";"American Association for the Advancement of Science";No;No;7,026;Q1;321;324;906;22099;14007;897;14,61;68,21;44,62;1;United States;Northern America;"American Association for the Advancement of Science";"2009-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +163;3500148004;"Cellular and Molecular Immunology";journal;"20420226, 16727681";"Springer Nature";No;No;7,021;Q1;153;126;432;11497;6841;295;15,36;91,25;43,48;0;United Kingdom;Western Europe;"Springer Nature";"2004-2026";"Immunology (Q1); Immunology and Allergy (Q1); Infectious Diseases (Q1); Medicine (miscellaneous) (Q1)";"Immunology and Microbiology; Medicine" +164;19700188395;"Annual Review of Marine Science";journal;"19410611, 19411405";"Annual Reviews Inc.";No;No;6,925;Q1;141;26;69;3487;1410;66;22,02;134,12;44,44;2;United States;Northern America;"Annual Reviews Inc.";"2009-2026";"Oceanography (Q1)";"Earth and Planetary Sciences" +165;21101007236;"Nature Machine Intelligence";journal;"25225839";"Springer International Publishing";Yes;No;6,902;Q1;118;196;503;11080;11696;371;22,28;56,53;28,24;8;Switzerland;Western Europe;"Springer International Publishing";"2019-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Vision and Pattern Recognition (Q1); Human-Computer Interaction (Q1); Software (Q1)";"Computer Science" +166;21100370017;"The Lancet Haematology";journal;"23523026, 24519960";"Elsevier Ltd";No;No;6,899;Q1;113;165;584;3171;3375;227;5,50;19,22;56,59;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Hematology (Q1)";"Medicine" +167;13900;"Cell Research";journal;"17487838, 10010602";"Springer Nature";No;No;6,865;Q1;244;154;437;5329;4316;213;9,34;34,60;38,29;0;United Kingdom;Western Europe;"Springer Nature";"1996-2026";"Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +168;21100466539;"MMWR supplements";journal;"23808942, 23808950";"Epidemiology Program Office";No;No;6,859;Q1;33;0;40;0;909;40;15,18;0,00;0,00;0;United States;Northern America;"Epidemiology Program Office";"2016, 2020, 2022-2024";"Medicine (miscellaneous) (Q1)";"Medicine" +169;21100860760;"Critical Finance Review";journal;"21645760, 21645744";"Now Publishers Inc";No;No;6,838;Q1;17;22;47;810;135;46;1,60;36,82;20,75;0;United States;Northern America;"Now Publishers Inc";"2017-2025";"Finance (Q1)";"Economics, Econometrics and Finance" +170;19066;"Trends in Cell Biology";journal;"09628924, 18793088";"Elsevier Ltd";No;No;6,813;Q1;281;131;315;9786;4888;303;17,18;74,70;41,58;0;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Cell Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +171;20246;"Journal of Labor Economics";journal;"0734306X, 15375307";"University of Chicago Press";No;No;6,774;Q1;143;49;126;2421;821;124;4,59;49,41;27,73;26;United States;Northern America;"University of Chicago Press";"1985-1989, 1991, 1993, 1995-2026";"Economics and Econometrics (Q1); Industrial Relations (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +172;17800156710;"Nature Reviews Rheumatology";journal;"17594790, 17594804";"Nature Research";No;No;6,768;Q1;214;129;455;7670;5340;231;10,45;59,46;47,85;0;United Kingdom;Western Europe;"Nature Research";"2009-2026";"Rheumatology (Q1)";"Medicine" +173;21101159371;"Nature Reviews Psychology";journal;"27310574";"Nature Publishing Group";No;No;6,763;Q1;46;126;379;10215;4085;176;8,70;81,07;54,45;2;United States;Northern America;"Nature Publishing Group";"2022-2026";"Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Psychology (miscellaneous) (Q1)";"Psychology" +174;27498;"Annual Review of Medicine";journal;"1545326X, 00664219";"Annual Reviews Inc.";No;No;6,762;Q1;189;33;107;2644;2588;107;19,52;80,12;48,28;0;United States;Northern America;"Annual Reviews Inc.";"1950-1958, 1960-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +175;12394;"Nature Structural and Molecular Biology";journal;"15459993, 15459985";"Nature Research";No;No;6,761;Q1;317;304;654;15977;4705;490;6,92;52,56;35,92;0;United Kingdom;Western Europe;"Nature Research";"1998, 2004-2026";"Molecular Biology (Q1); Structural Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +176;28330;"Gastroenterology";journal;"15280012, 00165085";"W.B. Saunders";No;No;6,688;Q1;501;577;1737;12419;14216;789;7,66;21,52;41,45;8;United States;Northern America;"W.B. Saunders";"1945-2026";"Gastroenterology (Q1); Hepatology (Q1)";"Medicine" +177;21100203106;"Foundations and Trends in Finance";journal;"15672409, 15672395";"Now Publishers Inc";No;No;6,641;Q1;26;1;4;208;34;4;8,50;208,00;0,00;0;United States;Northern America;"Now Publishers Inc";"2005-2015, 2017, 2020-2021, 2023-2025";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +178;19651;"Clinical Microbiology Reviews";journal;"08938512, 10986618";"American Society for Microbiology";No;No;6,584;Q1;358;56;107;14469;2577;106;21,82;258,38;46,71;0;United States;Northern America;"American Society for Microbiology";"1988-2025";"Epidemiology (Q1); Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (medical) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Immunology and Microbiology; Medicine" +179;4000151822;"Nature Physics";journal;"17452473, 17452481";"Nature Research";No;No;6,581;Q1;367;400;1180;14389;11810;759;9,22;35,97;19,63;0;United Kingdom;Western Europe;"Nature Research";"2005-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +180;28973;"Journal of Econometrics";journal;"03044076, 18726895";"Elsevier B.V.";No;No;6,575;Q1;205;185;644;9344;3219;618;4,85;50,51;22,58;16;Netherlands;Western Europe;"Elsevier B.V.";"1973-2026";"Applied Mathematics (Q1); Economics and Econometrics (Q1)";"Economics, Econometrics and Finance; Mathematics" +181;15555;"American Journal of Political Science";journal;"00925853, 15405907";"Wiley-Blackwell Publishing Ltd";No;No;6,539;Q1;229;166;223;12119;2156;223;9,82;73,01;26,47;31;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1982, 1986, 1996-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +182;21101101215;"Cell Genomics";journal;"2666979X";"Cell Press";Yes;No;6,518;Q1;41;160;372;11590;3168;312;7,01;72,44;39,58;0;United States;Northern America;"Cell Press";"2021-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +183;21100788876;"Chem";journal;"24519308, 24519294";"Elsevier Inc.";No;No;6,508;Q1;188;287;832;15026;11240;581;12,75;52,36;29,83;0;United States;Northern America;"Elsevier Inc.";"2016-2026";"Biochemistry (Q1); Biochemistry (medical) (Q1); Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Materials Chemistry (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Environmental Science; Materials Science; Medicine" +184;18902;"IEEE Journal on Selected Areas in Communications";journal;"15580008, 07338716";"Institute of Electrical and Electronics Engineers Inc.";No;No;6,496;Q1;287;295;750;13653;14663;731;18,03;46,28;25,06;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1983-2026";"Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +185;21100201772;"Physical Review X";journal;"21603308";"American Physical Society";Yes;No;6,494;Q1;218;310;654;26940;10532;649;15,49;86,90;18,92;0;United States;Northern America;"American Physical Society";"2011-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +186;18567;"Fungal Diversity";journal;"15602745, 18789129";"Springer Nature";No;No;6,487;Q1;145;22;50;10568;1537;49;28,41;480,36;39,07;1;Netherlands;Western Europe;"Springer Nature";"1998-2025";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +187;4600151524;"Annual Review of Clinical Psychology";book series;"15485951, 15485943";"Annual Reviews Inc.";No;No;6,482;Q1;166;21;60;3336;1331;60;19,03;158,86;60,47;0;United States;Northern America;"Annual Reviews Inc.";"2005-2025";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +188;24212;"Proceedings of the IEEE Computer Society Conference on Computer Vision and Pattern Recognition";conference and proceedings;"10636919";"IEEE Computer Society";No;No;6,466;-;666;1554;7138;93876;205395;7133;24,22;60,41;26,08;0;United States;Northern America;"IEEE Computer Society";"1992, 1994, 1996-2001, 2003-2004, 2006-2007, 2010-2025";"Computer Vision and Pattern Recognition; Software";"Computer Science" +189;11300153407;"JACC: Cardiovascular Imaging";journal;"1936878X, 18767591";"Elsevier Inc.";No;No;6,430;Q1;180;210;819;4624;5316;305;6,27;22,02;27,82;0;United States;Northern America;"Elsevier Inc.";"2008-2026";"Cardiology and Cardiovascular Medicine (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +190;21307;"Management Science";journal;"00251909, 15265501";"INFORMS Inst.for Operations Res.and the Management Sciences";Yes;No;6,428;Q1;321;400;1296;30224;10989;1281;7,69;75,56;26,46;42;United States;Northern America;"INFORMS Inst.for Operations Res.and the Management Sciences";"1965-1966, 1968-2025";"Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +191;24385;"Journal of the Academy of Marketing Science";journal;"00920703, 15527824";"Springer New York";No;No;6,426;Q1;234;83;229;7539;3645;210;12,47;90,83;35,63;11;United States;Northern America;"Springer New York";"1973-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +192;15646;"Annual Review of Political Science";book series;"10942939, 15451577";"Annual Reviews Inc.";No;No;6,416;Q1;150;27;75;3338;965;75;8,86;123,63;47,83;2;United States;Northern America;"Annual Reviews Inc.";"1998-2025";"Sociology and Political Science (Q1)";"Social Sciences" +193;13564;"Educational Psychologist";journal;"15326985, 00461520";"Routledge";No;No;6,305;Q1;175;27;57;3328;1142;55;13,60;123,26;58,44;0;United States;Northern America;"Routledge";"1963-2026";"Developmental and Educational Psychology (Q1)";"Psychology" +194;12812;"Personality and Social Psychology Review";journal;"10888683, 15327957";"SAGE Publications Inc.";No;No;6,292;Q1;204;30;43;5740;779;41;18,13;191,33;45,00;2;United States;Northern America;"SAGE Publications Inc.";"1997-2026";"Social Psychology (Q1)";"Psychology" +195;17555;"Journal of Monetary Economics";journal;"03043932";"Elsevier B.V.";No;No;6,262;Q1;165;96;271;4256;1219;263;3,61;44,33;14,16;29;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +196;5700191214;"Molecular Neurodegeneration";journal;"17501326";"BioMed Central Ltd";Yes;No;6,262;Q1;139;122;263;17784;4453;242;14,84;145,77;47,33;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1); Neurology (clinical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +197;26465;"Progress in Polymer Science";journal;"00796700";"Elsevier Ltd";No;No;6,250;Q1;358;50;142;13580;4466;140;31,74;271,60;34,30;0;United Kingdom;Western Europe;"Elsevier Ltd";"1967, 1970-1971, 1975, 1977-1978, 1980-1986, 1988-2026";"Ceramics and Composites (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1); Surfaces and Interfaces (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +198;23833;"Cement and Concrete Research";journal;"00088846";"Elsevier Ltd";No;No;6,233;Q1;338;212;798;14627;11811;781;13,97;69,00;28,09;0;United Kingdom;Western Europe;"Elsevier Ltd";"1971-2026";"Building and Construction (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +199;21100922606;"The Lancet Digital Health";journal;"25897500";"Elsevier Ltd";Yes;No;6,221;Q1;102;117;395;2540;6277;231;14,41;21,71;39,51;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Decision Sciences (miscellaneous) (Q1); Health Informatics (Q1); Health Information Management (Q1); Medicine (miscellaneous) (Q1)";"Decision Sciences; Health Professions; Medicine" +200;21101287737;"Photonics Insights";journal;"27911748";"SPIE";Yes;No;6,191;Q1;22;20;42;4980;684;25;17,06;249,00;28,41;0;United States;Northern America;"SPIE";"2022-2025";"Engineering (miscellaneous) (Q1)";"Engineering" +201;110561;"Proceedings of the IEEE International Conference on Computer Vision";conference and proceedings;"15505499, 23807504";"Institute of Electrical and Electronics Engineers Inc.";No;No;6,187;-;435;0;2157;0;45837;2156;21,25;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1988, 1995, 1998-1999, 2001, 2003, 2005, 2007, 2009, 2011, 2013, 2015-2017, 2019, 2021, 2023";"Computer Vision and Pattern Recognition; Software";"Computer Science" +202;21101175791;"Nature Synthesis";journal;"27310582";"Nature Publishing Group";No;No;6,180;Q1;60;254;636;9469;7083;455;10,55;37,28;28,43;0;United Kingdom;Western Europe;"Nature Publishing Group";"2022-2026";"Chemistry (miscellaneous) (Q1); Inorganic Chemistry (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1)";"Chemistry; Materials Science" +203;28800;"Annual Review of Environment and Resources";book series;"15452050, 15435938";"Annual Reviews Inc.";No;No;6,175;Q1;170;27;90;3935;1983;87;16,48;145,74;42,86;5;United States;Northern America;"Annual Reviews Inc.";"2003-2025";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +204;21100942855;"The Lancet Rheumatology";journal;"26659913";"Elsevier Ltd";Yes;No;6,167;Q1;66;184;496;3400;4032;191;11,45;18,48;42,38;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Immunology (Q1); Immunology and Allergy (Q1); Rheumatology (Q1)";"Immunology and Microbiology; Medicine" +205;26020;"Digest of Technical Papers - IEEE International Solid-State Circuits Conference";conference and proceedings;"01936530";"Institute of Electrical and Electronics Engineers Inc.";No;No;6,161;-;127;261;676;3445;5620;668;8,40;13,20;21,37;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1958-1964, 1966-1968, 1972-1973, 1975-1990, 1992-1998, 2000-2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Engineering; Materials Science" +206;17600155041;"Nature Geoscience";journal;"17520908, 17520894";"Nature Publishing Group";No;No;6,141;Q1;297;282;701;11005;8846;514;12,16;39,02;31,42;10;United Kingdom;Western Europe;"Nature Publishing Group";"2008-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +207;21149;"Leadership Quarterly";journal;"10489843";"Elsevier Inc.";No;No;6,124;Q1;214;36;130;4326;1787;121;11,94;120,17;39,02;2;United States;Northern America;"Elsevier Inc.";"1990-2026";"Applied Psychology (Q1); Business and International Management (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Psychology; Social Sciences" +208;4700152266;"Econometrics Journal";journal;"13684221, 1368423X";"Oxford University Press";No;No;6,123;Q1;53;24;92;822;629;85;6,11;34,25;26,09;2;United Kingdom;Western Europe;"Oxford University Press";"2001, 2006-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +209;13839;"Annual Review of Fluid Mechanics";book series;"15454479, 00664189";"Annual Reviews Inc.";No;No;6,119;Q1;243;14;52;1634;1269;50;24,20;116,71;8,00;0;United States;Northern America;"Annual Reviews Inc.";"1970-1971, 1973-2011, 2013-2026";"Condensed Matter Physics (Q1)";"Physics and Astronomy" +210;21101046404;"Advances in Methods and Practices in Psychological Science";journal;"25152459, 25152467";"SAGE Publications Inc.";Yes;No;6,094;Q1;58;66;98;5068;1395;89;12,87;76,79;37,27;0;United States;Northern America;"SAGE Publications Inc.";"2018-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +211;24870;"Journal of Human Resources";journal;"15488004, 0022166X";"University of Wisconsin Press";No;No;6,085;Q1;135;30;179;1887;861;179;3,62;62,90;30,00;0;United States;Northern America;"University of Wisconsin Press";"1976-1982, 1988, 1990, 1992-2025";"Economics and Econometrics (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +212;4000148205;"Nature Chemical Biology";journal;"15524469, 15524450";"Nature Research";No;No;6,032;Q1;282;311;775;13176;6411;513;8,23;42,37;37,66;0;United Kingdom;Western Europe;"Nature Research";"2005-2026";"Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +213;21100826360;"JAMA Cardiology";journal;"23806583, 23806591";"American Medical Association";No;No;6,028;Q1;142;265;703;4772;5163;391;7,43;18,01;30,53;4;United States;Northern America;"American Medical Association";"2016-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +214;21101041558;"Nature Food";journal;"26621355";"Springer Nature";No;No;5,996;Q1;96;193;617;6311;6914;301;10,18;32,70;40,21;23;United Kingdom;Western Europe;"Springer Nature";"2020-2026";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Food Science (Q1)";"Agricultural and Biological Sciences" +215;146215;"JNCCN Journal of the National Comprehensive Cancer Network";journal;"15401413, 15401405";"Harborside Press";No;No;5,992;Q1;173;418;548;7594;7596;462;13,81;18,17;46,97;0;United States;Northern America;"Harborside Press";"2003-2026";"Medicine (miscellaneous) (Q1); Oncology (Q1)";"Medicine" +216;15623;"Human Reproduction Update";journal;"14602369, 13554786";"Oxford University Press";No;No;5,991;Q1;242;31;124;4862;2430;107;20,90;156,84;49,74;1;United Kingdom;Western Europe;"Oxford University Press";"1995-2026";"Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)";"Medicine" +217;23038;"ACM Computing Surveys";journal;"03600300, 15577341";"Association for Computing Machinery";No;No;5,985;Q1;260;383;1003;67270;39294;1002;34,93;175,64;25,32;10;United States;Northern America;"Association for Computing Machinery";"1969-2025";"Computer Science (miscellaneous) (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +218;27732;"New Astronomy Reviews";journal;"13876473";"Elsevier B.V.";No;No;5,925;Q1;72;8;24;3564;491;24;13,22;445,50;23,08;0;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +219;19300156903;"Foundations and Trends in Machine Learning";journal;"19358245, 19358237";"Now Publishers Inc";No;No;5,923;Q1;45;4;14;1155;425;14;38,40;288,75;16,00;0;United States;Northern America;"Now Publishers Inc";"2008-2025";"Artificial Intelligence (Q1); Human-Computer Interaction (Q1); Software (Q1)";"Computer Science" +220;25454;"Blood";journal;"15280020, 00064971";"Elsevier B.V.";No;No;5,912;Q1;556;952;2518;30995;19284;1529;6,76;32,56;44,80;7;United States;Northern America;"Elsevier B.V.";"1946-2026";"Biochemistry (Q1); Cell Biology (Q1); Hematology (Q1); Immunology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +221;21100265444;"The Lancet Global Health";journal;"2572116X, 2214109X";"Elsevier Ltd";Yes;No;5,911;Q1;168;355;1129;5961;9516;497;8,86;16,79;42,43;0;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +222;15631;"International Journal of Information Management";journal;"02684012";"Elsevier Ltd";No;No;5,899;Q1;215;77;260;7712;9179;241;33,66;100,16;35,11;2;United Kingdom;Western Europe;"Elsevier Ltd";"1970, 1986-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Information Systems (Q1); Information Systems and Management (Q1); Library and Information Sciences (Q1); Management Information Systems (Q1); Marketing (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences; Social Sciences" +223;21100455629;"Military Medical Research";journal;"20549369, 20957467";"KeAi Communications Co.";Yes;Yes;5,898;Q1;68;99;221;10046;4831;164;22,30;101,47;39,70;0;United Kingdom;Western Europe;"KeAi Communications Co.";"2014-2025";"Medicine (miscellaneous) (Q1)";"Medicine" +224;21100886132;"Science Robotics";journal;"24709476";"American Association for the Advancement of Science";No;No;5,883;Q1;143;130;318;6018;6541;294;15,72;46,29;23,04;1;United States;Northern America;"American Association for the Advancement of Science";"2016-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Control and Optimization (Q1); Mechanical Engineering (Q1)";"Computer Science; Engineering; Mathematics" +225;85291;"JAMA";journal;"15383598, 00987484";"American Medical Association";No;No;5,843;Q1;818;1636;4678;15168;36891;2177;7,96;9,27;42,28;57;United States;Northern America;"American Medical Association";"1883-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +226;21272;"Journal of Experimental Medicine";journal;"00221007, 15409538";"Rockefeller University Press";No;No;5,830;Q1;513;181;583;2943;5326;530;8,41;16,26;43,35;0;United States;Northern America;"Rockefeller University Press";"1896-1902, 1905-2026";"Immunology (Q1); Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1)";"Immunology and Microbiology; Medicine" +227;40944;"Genome Biology";journal;"1474760X, 14747596";"BioMed Central Ltd";Yes;No;5,792;Q1;332;426;861;33773;9047;844;8,96;79,28;39,56;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2026";"Cell Biology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +228;21100832985;"ACS Energy Letters";journal;"23808195";"American Chemical Society";No;No;5,783;Q1;252;661;1772;36513;30627;1713;16,74;55,24;31,94;1;United States;Northern America;"American Chemical Society";"2016-2026";"Chemistry (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Materials Chemistry (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Chemistry; Energy; Materials Science" +229;23860;"Journal of Business Venturing";journal;"08839026";"Elsevier Inc.";No;No;5,778;Q1;246;51;140;6640;1844;140;10,60;130,20;34,07;1;United States;Northern America;"Elsevier Inc.";"1985-2026";"Business and International Management (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting" +230;21101270120;"Nature Water";journal;"27316084";"Springer Nature";No;No;5,735;Q1;50;188;348;8512;5099;233;14,65;45,28;38,03;4;Netherlands;Western Europe;"Springer Nature";"2023-2026";"Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1); Water Science and Technology (Q1)";"Environmental Science" +231;15574;"Information Systems Research";journal;"15265536, 10477047";"INFORMS Inst.for Operations Res.and the Management Sciences";No;No;5,679;Q1;203;115;264;9350;2945;259;11,02;81,30;26,10;2;United States;Northern America;"INFORMS Inst.for Operations Res.and the Management Sciences";"1990-2025";"Computer Networks and Communications (Q1); Information Systems (Q1); Information Systems and Management (Q1); Library and Information Sciences (Q1); Management Information Systems (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences; Social Sciences" +232;100147318;"Entrepreneurship Theory and Practice";journal;"10422587, 15406520";"SAGE Publications Ltd";No;No;5,670;Q1;224;66;190;7156;2972;178;12,12;108,42;23,73;1;United States;Northern America;"SAGE Publications Ltd";"1989, 1994, 2004-2026";"Business and International Management (Q1); Economics and Econometrics (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +233;21101208862;"Cambridge Journal of Mathematics";journal;"21680949, 21680930";"International Press, Inc.";No;No;5,646;Q1;13;10;35;546;129;35;4,23;54,60;5,00;0;United States;Northern America;"International Press, Inc.";"2020-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +234;24972;"ACM Transactions on Graphics";journal;"15577368, 07300301";"Association for Computing Machinery";No;No;5,633;Q1;279;278;842;17544;12739;842;14,14;63,11;22,13;0;United States;Northern America;"Association for Computing Machinery";"1982-2025";"Computer Graphics and Computer-Aided Design (Q1)";"Computer Science" +235;17600155130;"National Center for Health Statistics Data Brief";journal;"19414927, 19414935";"United States National Center for Health Statistics";No;No;5,608;Q1;104;26;74;0;976;74;11,85;0,00;69,84;3;United States;Northern America;"United States National Center for Health Statistics";"2007-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +236;21100228519;"JAMA Neurology";journal;"21686157, 21686149";"American Medical Association";No;No;5,599;Q1;298;230;664;4976;7157;435;10,76;21,63;36,49;5;United States;Northern America;"American Medical Association";"2013-2026";"Neurology (clinical) (Q1)";"Medicine" +237;17915;"Proceedings of the IEEE";journal;"15582256, 00189219";"Institute of Electrical and Electronics Engineers Inc.";No;No;5,561;Q1;352;43;220;9092;7154;215;35,24;211,44;23,64;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-2026";"Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +238;12963;"Review of Accounting Studies";journal;"15737136, 13806653";"Springer New York";No;No;5,560;Q1;118;104;209;7579;2080;209;8,99;72,88;30,94;3;United States;Northern America;"Springer New York";"1996-2026";"Accounting (Q1); Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +239;19992;"Kidney International";journal;"00852538, 15231755";"Elsevier B.V.";No;No;5,559;Q1;342;381;1130;10587;9273;614;8,94;27,79;43,87;3;Netherlands;Western Europe;"Elsevier B.V.";"1972-2026";"Nephrology (Q1)";"Medicine" +240;22471;"The Lancet Infectious Diseases";journal;"14744457, 14733099";"Elsevier Ltd";No;No;5,549;Q1;317;453;1458;8861;11316;638;7,75;19,56;38,01;0;United Kingdom;Western Europe;"Elsevier Ltd";"2001-2026";"Infectious Diseases (Q1)";"Medicine" +241;13969;"Psychological Science in the Public Interest";journal;"21600031, 15291006";"SAGE Publications Inc.";No;No;5,539;Q1;67;3;26;586;287;13;7,68;195,33;75,00;1;United States;Northern America;"SAGE Publications Inc.";"2000-2025";"Psychology (miscellaneous) (Q1)";"Psychology" +242;144974;"Journal of Service Research";journal;"10946705, 15527379";"SAGE Publications Inc.";No;No;5,517;Q1;165;58;115;4017;1700;109;12,42;69,26;40,44;2;United States;Northern America;"SAGE Publications Inc.";"1998-2026";"Information Systems (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Computer Science; Social Sciences" +243;22687;"Angewandte Chemie - International Edition";journal;"14337851, 15213773";"John Wiley and Sons Ltd";No;No;5,495;Q1;697;5973;11270;365190;198099;11226;17,97;61,14;34,22;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1962-2026";"Catalysis (Q1); Chemistry (miscellaneous) (Q1)";"Chemical Engineering; Chemistry" +244;18525;"Developmental Cell";journal;"15345807, 18781551";"Cell Press";No;No;5,494;Q1;318;289;668;18623;5828;574;8,00;64,44;43,17;0;United States;Northern America;"Cell Press";"2001-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Cell Biology (Q1); Developmental Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +245;22680;"Journal of the American Chemical Society";journal;"15205126, 00027863";"American Chemical Society";Yes;No;5,491;Q1;759;4685;9042;264562;143036;9027;15,53;56,47;31,93;2;United States;Northern America;"American Chemical Society";"1879-2026";"Biochemistry (Q1); Catalysis (Q1); Chemistry (miscellaneous) (Q1); Colloid and Surface Chemistry (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry" +246;21100445640;"Trends in Cancer";journal;"24058033, 24058025";"Cell Press";No;No;5,488;Q1;116;119;327;8918;4604;322;13,84;74,94;41,32;0;United States;Northern America;"Cell Press";"2015-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +247;15388;"Journal of Applied Psychology";journal;"19391854, 00219010";"American Psychological Association";No;No;5,473;Q1;371;59;306;5928;3105;305;7,27;100,47;39,51;2;United States;Northern America;"American Psychological Association";"1917-2026";"Applied Psychology (Q1)";"Psychology" +248;22657;"Accounts of Chemical Research";journal;"00014842, 15204898";"American Chemical Society";No;No;5,472;Q1;495;280;908;20221;17140;886;16,08;72,22;31,61;0;United States;Northern America;"American Chemical Society";"1968-2026";"Chemistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Chemistry; Medicine" +249;21706;"Annual Review of Genetics";book series;"15452948, 00664197";"Annual Reviews Inc.";No;No;5,472;Q1;214;20;60;2947;556;60;9,10;147,35;41,30;0;United States;Northern America;"Annual Reviews Inc.";"1970-2025";"Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +250;12000154482;"Annual Review of Biophysics";book series;"19361238, 1936122X";"Annual Reviews Inc.";No;No;5,442;Q1;181;19;70;2581;998;70;12,81;135,84;22,95;0;United States;Northern America;"Annual Reviews Inc.";"2008-2025";"Biochemistry (Q1); Bioengineering (Q1); Biophysics (Q1); Cell Biology (Q1); Structural Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +251;15557;"American Political Science Review";journal;"15375943, 00030554";"Cambridge University Press";No;No;5,433;Q1;228;170;350;12671;2925;341;7,42;74,54;35,69;0;United Kingdom;Western Europe;"Cambridge University Press";"1906-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +252;21101041612;"The Lancet Healthy Longevity";journal;"26667568";"Elsevier Ltd";Yes;No;5,433;Q1;60;131;433;4077;3769;198;8,92;31,12;54,78;7;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Family Practice (Q1); Geriatrics and Gerontology (Q1); Health (social science) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Social Sciences" +253;18000;"American Journal of Respiratory and Critical Care Medicine";journal;"1073449X, 15354970";"American Thoracic Society";No;No;5,423;Q1;450;451;1867;9514;11771;786;5,88;21,10;40,01;0;United States;Northern America;"American Thoracic Society";"1991, 1994-2026";"Critical Care and Intensive Care Medicine (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine" +254;22005;"Annual Review of Earth and Planetary Sciences";book series;"00846597";"Annual Reviews Inc.";No;No;5,413;Q1;196;25;75;3503;1121;72;15,33;140,12;40,00;0;United States;Northern America;"Annual Reviews Inc.";"1976, 1978-2025";"Astronomy and Astrophysics (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +255;12817;"Personnel Psychology";journal;"00315826, 17446570";"Wiley-Blackwell";No;No;5,410;Q1;183;35;113;4054;1303;108;12,11;115,83;48,33;0;United States;Northern America;"Wiley-Blackwell";"1948-2026";"Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Psychology" +256;23063;"Circulation Research";journal;"00097330, 15244571";"Lippincott Williams and Wilkins";No;No;5,371;Q1;420;286;726;18891;10175;622;12,32;66,05;43,72;0;United States;Northern America;"Lippincott Williams and Wilkins";"1953-2026";"Cardiology and Cardiovascular Medicine (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +257;29488;"Progress in Particle and Nuclear Physics";journal;"01466410";"Elsevier B.V.";No;No;5,361;Q1;146;18;83;5108;1466;82;14,47;283,78;19,78;0;Netherlands;Western Europe;"Elsevier B.V.";"1978-2026";"Nuclear and High Energy Physics (Q1)";"Physics and Astronomy" +258;21100228547;"JAMA Psychiatry";journal;"21686238, 2168622X";"American Medical Association";No;No;5,335;Q1;429;194;649;6977;6932;428;9,38;35,96;40,53;12;United States;Northern America;"American Medical Association";"2013-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +259;19169;"Journal of Operations Management";journal;"18731317, 02726963";"John Wiley & Sons Inc.";No;No;5,334;Q1;238;57;148;5007;2014;128;12,30;87,84;24,26;0;Netherlands;Western Europe;"John Wiley & Sons Inc.";"1980-1991, 1993-2026";"Computer Science Applications (Q1); Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering" +260;24535;"Acta Numerica";journal;"14740508, 09624929";"Cambridge University Press";No;No;5,330;Q1;94;8;18;1971;280;18;12,54;246,38;10,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1992-2025";"Mathematics (miscellaneous) (Q1); Numerical Analysis (Q1)";"Mathematics" +261;23183;"European Heart Journal";journal;"15229645, 0195668X";"Oxford University Press";No;No;5,326;Q1;385;855;2570;22044;21131;1448;8,45;25,78;34,83;13;United Kingdom;Western Europe;"Oxford University Press";"1980-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +262;29229;"Physics Reports";journal;"03701573";"Elsevier B.V.";No;No;5,320;Q1;347;56;156;19885;4699;156;26,13;355,09;24,82;0;Netherlands;Western Europe;"Elsevier B.V.";"1971-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +263;28181;"Journal of Consumer Psychology";journal;"15327663, 10577408";"John Wiley and Sons Inc";No;No;5,284;Q1;158;56;161;3832;1369;154;9,11;68,43;54,61;1;United States;Northern America;"John Wiley and Sons Inc";"1992-2026";"Applied Psychology (Q1); Marketing (Q1)";"Business, Management and Accounting; Psychology" +264;12611;"Drug Resistance Updates";journal;"13687646, 15322084";"Churchill Livingstone";No;No;5,279;Q1;148;90;201;9929;4287;192;21,95;110,32;39,63;0;United Kingdom;Western Europe;"Churchill Livingstone";"1998-2026";"Cancer Research (Q1); Infectious Diseases (Q1); Oncology (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +265;12499;"Neuro-Oncology";journal;"15228517, 15235866";"Oxford University Press";No;No;5,249;Q1;189;286;738;13342;7168;543;9,63;46,65;41,81;0;United Kingdom;Western Europe;"Oxford University Press";"1999-2025";"Cancer Research (Q1); Neurology (clinical) (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +266;21101081601;"PRX Quantum";journal;"26913399";"American Physical Society";Yes;No;5,222;Q1;82;230;651;19026;7809;648;11,84;82,72;14,65;0;United States;Northern America;"American Physical Society";"2020-2026";"Applied Mathematics (Q1); Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Mathematical Physics (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Computer Science; Engineering; Materials Science; Mathematics; Physics and Astronomy" +267;110325;"Annual Review of Ecology, Evolution, and Systematics";book series;"15452069, 1543592X";"Annual Reviews Inc.";No;No;5,205;Q1;263;26;63;3970;916;63;12,12;152,69;45,10;0;United States;Northern America;"Annual Reviews Inc.";"2003-2025";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +268;23262;"Inventiones Mathematicae";journal;"00209910, 14321297";"Springer New York";No;No;5,202;Q1;137;78;224;3738;887;224;3,70;47,92;15,95;0;Germany;Western Europe;"Springer New York";"1966-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +269;21101041613;"The Lancet Microbe";journal;"26665247";"Elsevier Ltd";Yes;No;5,192;Q1;67;246;556;6902;5071;287;9,54;28,06;44,51;9;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Infectious Diseases (Q1); Microbiology (Q1); Microbiology (medical) (Q1); Virology (Q1)";"Immunology and Microbiology; Medicine" +270;18457;"Cell Death and Differentiation";journal;"13509047, 14765403";"Springer Nature";No;No;5,182;Q1;283;221;530;12977;8265;509;13,67;58,72;44,31;0;United Kingdom;Western Europe;"Springer Nature";"1994-2026";"Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +271;23011;"Economic Journal";journal;"14680297, 00130133";"Wiley-Blackwell";No;No;5,181;Q1;205;73;327;4234;1456;327;3,57;58,00;26,60;26;United States;Northern America;"Wiley-Blackwell";"1961, 1963, 1970, 1973, 1976, 1979-1986, 1988-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +272;15090;"Progress in Retinal and Eye Research";journal;"13509462, 18731635";"Elsevier Ltd";No;No;5,181;Q1;215;63;148;18100;2883;148;17,64;287,30;39,31;0;United Kingdom;Western Europe;"Elsevier Ltd";"1994-2026";"Ophthalmology (Q1); Sensory Systems (Q1)";"Medicine; Neuroscience" +273;20650;"Journal of Management Studies";journal;"00222380, 14676486";"Wiley-Blackwell Publishing Ltd";No;No;5,178;Q1;246;226;278;22200;3172;270;10,65;98,23;37,79;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1964-2026";"Business and International Management (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +274;21101070988;"InfoMat";journal;"25673165";"John Wiley and Sons Ltd";Yes;No;5,171;Q1;103;108;260;9119;5490;259;19,98;84,44;31,05;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2019-2026";"Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1); Surfaces, Coatings and Films (Q1)";"Materials Science" +275;17476;"Experimental and Molecular Medicine";journal;"12263613, 20926413";"Springer Nature";Yes;No;5,123;Q1;154;231;619;16281;10249;608;16,24;70,48;43,27;0;United Kingdom;Western Europe;"Springer Nature";"1996-2026";"Biochemistry (Q1); Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +276;21100416121;"Nature Plants";journal;"2055026X, 20550278";"Nature Research";No;No;5,106;Q1;169;291;755;12921;6039;449;7,82;44,40;38,54;2;United Kingdom;Western Europe;"Nature Research";"2010, 2015-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +277;18458;"European Respiratory Journal";journal;"09031936, 13993003";"European Respiratory Society";No;No;5,076;Q1;310;348;1216;8785;10591;695;8,96;25,24;41,33;0;Switzerland;Western Europe;"European Respiratory Society";"1988-2026";"Medicine (miscellaneous) (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine" +278;19614;"Annual Review of Microbiology";book series;"00664227, 15453251";"Annual Reviews Inc.";No;No;5,052;Q1;229;36;100;0;1198;97;11,72;0,00;50,43;0;United States;Northern America;"Annual Reviews Inc.";"1948, 1950-1958, 1960, 1962-2025";"Medicine (miscellaneous) (Q1); Microbiology (Q1)";"Immunology and Microbiology; Medicine" +279;29993;"Annual Review of Nutrition";book series;"01999885, 15454312";"Annual Reviews Inc.";No;No;5,050;Q1;190;17;55;2059;878;54;13,00;121,12;62,30;1;United States;Northern America;"Annual Reviews Inc.";"1981-2025";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +280;21101094482;"Journal of the National Cancer Center";journal;"20968663, 26670054";"";Yes;No;5,049;Q1;21;70;119;5449;2739;110;26,36;77,84;44,39;0;China;Asiatic Region;"";"2021-2025";"Cancer Research (Q1); Hematology (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +281;16512;"Review of Educational Research";journal;"00346543, 19351046";"SAGE Publications Inc.";No;No;5,040;Q1;210;85;74;10746;1294;73;14,39;126,42;67,65;5;United States;Northern America;"SAGE Publications Inc.";"1931-2026";"Education (Q1)";"Social Sciences" +282;25143;"Advanced Functional Materials";journal;"16163028, 1616301X";"John Wiley and Sons Inc";No;No;5,022;Q1;459;5850;9611;392188;193730;9592;20,04;67,04;34,99;2;Germany;Western Europe;"John Wiley and Sons Inc";"2000-2026";"Biomaterials (Q1); Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Electrochemistry (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Science (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +283;17278;"IEEE Journal of Solid-State Circuits";journal;"1558173X, 00189200";"Institute of Electrical and Electronics Engineers Inc.";No;No;5,013;Q1;248;496;956;17571;7779;926;7,49;35,43;21,54;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1966-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +284;19164;"International Journal of Machine Tools and Manufacture";journal;"08906955";"Elsevier Ltd";No;No;5,005;Q1;216;48;153;4268;3532;146;24,87;88,92;24,32;0;United Kingdom;Western Europe;"Elsevier Ltd";"1987-2026";"Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1)";"Engineering" +285;12854;"Clinical Psychology Review";journal;"18737811, 02727358";"Elsevier Inc.";No;No;5,002;Q1;284;87;215;9447;3451;211;11,83;108,59;58,32;3;United States;Northern America;"Elsevier Inc.";"1981-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +286;21100447118;"Mycosphere";journal;"20777019, 20777000";"Zhongkai University";Yes;Yes;4,995;Q1;56;24;82;10525;1662;81;21,49;438,54;38,41;0;China;Asiatic Region;"Zhongkai University";"2014-2025";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +287;21100256102;"Translational Neurodegeneration";journal;"20479158";"BioMed Central Ltd";Yes;No;4,992;Q1;77;71;175;9103;2947;153;15,12;128,21;42,50;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2012-2026";"Cellular and Molecular Neuroscience (Q1); Cognitive Neuroscience (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +288;21100255572;"National Toxicology Program Monograph";journal;"23301279, 23785144";"United States National Toxicology Program";No;No;4,988;Q1;8;0;1;0;20;1;20,00;0,00;0,00;0;United States;Northern America;"United States National Toxicology Program";"2012, 2019, 2024";"Health, Toxicology and Mutagenesis (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1); Toxicology (Q1)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +289;21100228546;"JAMA Internal Medicine";journal;"21686114, 21686106";"American Medical Association";No;No;4,984;Q1;415;442;1199;6718;7202;550;6,41;15,20;51,15;10;United States;Northern America;"American Medical Association";"2013-2026";"Internal Medicine (Q1)";"Medicine" +290;19700175140;"Genome Medicine";journal;"1756994X";"BioMed Central Ltd";Yes;No;4,971;Q1;147;152;406;11328;4816;400;10,62;74,53;48,87;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2009-2026";"Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +291;21191;"Pharmacological Reviews";journal;"15210081, 00316997";"Elsevier Inc.";No;No;4,967;Q1;273;76;122;22617;2372;111;16,79;297,59;38,53;0;United States;Northern America;"Elsevier Inc.";"1949, 1951-2026";"Molecular Medicine (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +292;23188;"European Journal of Heart Failure";journal;"13889842, 18790844";"John Wiley and Sons Ltd";No;No;4,965;Q1;195;445;1035;14190;7210;568;6,69;31,89;34,97;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1999-2025";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +293;17269;"Studies in Mycology";journal;"01660616";"Westerdijk Fungal Biodiversity Institute";Yes;No;4,962;Q1;133;11;30;1662;545;30;18,24;151,09;37,50;0;Netherlands;Western Europe;"Westerdijk Fungal Biodiversity Institute";"1996, 1998-2000, 2002-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +294;21100943502;"Matter";journal;"25902393, 25902385";"Cell Press";No;No;4,959;Q1;131;417;1059;21318;11437;627;9,41;51,12;31,93;0;United States;Northern America;"Cell Press";"2019-2026";"Materials Science (miscellaneous) (Q1)";"Materials Science" +295;21100394875;"Cell Systems";journal;"24054720, 24054712";"Cell Press";No;No;4,954;Q1;107;127;295;8923;1840;227;6,01;70,26;35,82;0;United States;Northern America;"Cell Press";"2015-2026";"Cell Biology (Q1); Histology (Q1); Pathology and Forensic Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +296;5700191210;"Implementation Science";journal;"17485908";"BioMed Central Ltd";Yes;No;4,951;Q1;168;54;230;3420;3359;221;8,21;63,33;65,52;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Health Informatics (Q1); Health Policy (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +297;21100278313;"Light: Science and Applications";journal;"20477538, 20955545";"Springer Nature";Yes;No;4,946;Q1;193;397;944;20750;16670;830;17,66;52,27;30,27;0;United Kingdom;Western Europe;"Springer Nature";"2012-2026";"Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Materials Science; Physics and Astronomy" +298;21100224437;"Clinical and Molecular Hepatology";journal;"22872728, 2287285X";"Korean Association for the Study of the Liver";Yes;No;4,937;Q1;74;215;369;8156;3738;184;10,22;37,93;36,28;0;South Korea;Asiatic Region;"Korean Association for the Study of the Liver";"2012-2026";"Hepatology (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +299;21101027628;"Cell Reports Medicine";journal;"26663791";"Cell Press";Yes;No;4,932;Q1;81;449;1074;27469;11711;884;11,89;61,18;41,90;0;United States;Northern America;"Cell Press";"2020-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology" +300;19479;"Annual Review of Pharmacology and Toxicology";book series;"15454304, 03621642";"Annual Reviews Inc.";No;No;4,927;Q1;240;29;87;3688;1535;87;20,30;127,17;39,29;2;United States;Northern America;"Annual Reviews Inc.";"1965-1973, 1975-2026";"Pharmacology (Q1); Toxicology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +301;22913;"Periodontology 2000";journal;"09066713, 16000757";"Blackwell Munksgaard";No;No;4,915;Q1;171;78;176;10275;3926;175;19,17;131,73;37,89;0;Denmark;Western Europe;"Blackwell Munksgaard";"1993-2026";"Periodontics (Q1)";"Dentistry" +302;24046;"Seminars in Cancer Biology";journal;"10963650, 1044579X";"Academic Press";No;No;4,910;Q1;202;99;517;15718;9708;493;19,14;158,77;47,77;0;United States;Northern America;"Academic Press";"1990-2026";"Cancer Research (Q1)";"Biochemistry, Genetics and Molecular Biology" +303;24769;"Materials Today";journal;"13697021, 18734103";"Elsevier B.V.";Yes;No;4,909;Q1;262;332;507;41039;10960;499;22,02;123,61;30,42;0;Netherlands;Western Europe;"Elsevier B.V.";"1999, 2002-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science; Physics and Astronomy" +304;21101298222;"Responsive Materials";journal;"28348966";"John Wiley and Sons Ltd";Yes;No;4,908;Q1;21;32;48;4753;983;47;20,48;148,53;41,18;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2023-2026";"Electronic, Optical and Magnetic Materials (Q1); Materials Science (miscellaneous) (Q1)";"Materials Science" +305;21101047377;"EnergyChem";journal;"25897780";"Elsevier B.V.";No;No;4,906;Q1;59;29;62;6552;1452;61;20,32;225,93;28,92;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Biomaterials (Q1); Chemistry (miscellaneous) (Q1); Energy (miscellaneous) (Q1)";"Chemistry; Energy; Materials Science" +306;19700182758;"Nature Communications";journal;"20411723";"Nature Research";Yes;No;4,904;Q1;634;11528;26313;755955;452297;25888;16,60;65,58;37,59;91;United Kingdom;Western Europe;"Nature Research";"2010-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Multidisciplinary (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Multidisciplinary; Physics and Astronomy" +307;21100838541;"Nature Human Behaviour";journal;"23973374";"Nature Publishing Group";No;No;4,896;Q1;132;296;741;17609;8670;483;11,84;59,49;40,96;18;United Kingdom;Western Europe;"Nature Publishing Group";"2017-2026";"Behavioral Neuroscience (Q1); Experimental and Cognitive Psychology (Q1); Social Psychology (Q1)";"Neuroscience; Psychology" +308;24719;"Human Resource Management Review";journal;"10534822";"Elsevier Ltd";No;No;4,892;Q1;141;33;129;3988;2946;128;25,33;120,85;43,18;1;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Psychology" +309;21100819064;"Cell Discovery";journal;"20565968";"Springer Nature";Yes;No;4,879;Q1;77;104;374;6132;3688;253;10,03;58,96;43,17;0;United Kingdom;Western Europe;"Springer Nature";"2015-2026";"Biochemistry (Q1); Cell Biology (Q1); Genetics (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +310;21101274720;"Interdisciplinary Materials";journal;"2767441X, 27674401";"John Wiley and Sons Inc";Yes;No;4,859;Q1;43;56;122;4966;2552;119;20,40;88,68;33,68;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Materials Science (miscellaneous) (Q1)";"Materials Science" +311;19700182323;"Perspectives on Psychological Science";journal;"17456916, 17456924";"SAGE Publications Ltd";No;No;4,859;Q1;213;53;297;7565;3846;270;11,52;142,74;45,87;8;United States;Northern America;"SAGE Publications Ltd";"2006-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +312;21101186818;"Organization Theory";journal;"26317877";"SAGE Publications Ltd";Yes;Yes;4,852;Q1;43;15;71;1394;785;69;8,05;92,93;38,89;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2020-2025";"Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +313;19817;"British Journal of Sports Medicine";journal;"03063674, 14730480";"BMJ Publishing Group";No;No;4,847;Q1;256;293;830;10038;7661;508;9,11;34,26;44,54;5;United Kingdom;Western Europe;"BMJ Publishing Group";"1964, 1974-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine" +314;21100420314;"Energy Storage Materials";journal;"24058297";"Elsevier B.V.";No;No;4,845;Q1;212;859;1971;68935;39289;1969;19,23;80,25;32,95;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Energy Engineering and Power Technology (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Materials Science" +315;21100200203;"Wiley Interdisciplinary Reviews: Computational Molecular Science";journal;"17590876, 17590884";"John Wiley & Sons Inc.";No;No;4,842;Q1;131;56;158;10165;3898;156;10,97;181,52;28,63;0;United States;Northern America;"John Wiley & Sons Inc.";"2011-2026";"Biochemistry (Q1); Computational Mathematics (Q1); Computer Science Applications (Q1); Materials Chemistry (Q1); Physical and Theoretical Chemistry (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Computer Science; Materials Science; Mathematics" +316;24393;"Journal of International Economics";journal;"18730353, 00221996";"Elsevier B.V.";No;No;4,841;Q1;179;118;310;6159;1597;304;4,49;52,19;21,72;32;Netherlands;Western Europe;"Elsevier B.V.";"1971-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +317;14278;"Educational Psychology Review";journal;"1040726X, 1573336X";"Springer New York";No;No;4,840;Q1;172;116;341;12594;5221;314;12,37;108,57;53,47;4;United States;Northern America;"Springer New York";"1989-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +318;24254;"IEEE Transactions on Pattern Analysis and Machine Intelligence";journal;"01628828, 19393539";"IEEE Computer Society";No;No;4,829;Q1;460;839;2464;66008;60550;2455;22,46;78,67;26,26;0;United States;Northern America;"IEEE Computer Society";"1978-2026";"Applied Mathematics (Q1); Artificial Intelligence (Q1); Computational Theory and Mathematics (Q1); Computer Vision and Pattern Recognition (Q1); Software (Q1)";"Computer Science; Mathematics" +319;21100398001;"Bone Research";journal;"20954700, 20956231";"Springer Nature";Yes;No;4,815;Q1;90;104;189;11496;3823;189;17,94;110,54;37,66;0;United Kingdom;Western Europe;"Springer Nature";"2013-2026";"Endocrinology, Diabetes and Metabolism (Q1); Histology (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +320;15870;"Journal of Clinical Investigation";journal;"00219738, 15588238";"American Society for Clinical Investigation";Yes;No;4,809;Q1;571;748;1704;41799;18315;1585;9,84;55,88;43,56;0;United States;Northern America;"American Society for Clinical Investigation";"1932-1933, 1943-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +321;21101267127;"New Crops";journal;"29499526";"KeAi Communications Co.";No;No;4,787;Q1;18;29;27;2682;530;26;19,63;92,48;34,87;0;China;Asiatic Region;"KeAi Communications Co.";"2024-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +322;26463;"Progress in Lipid Research";journal;"18732194, 01637827";"Elsevier Ltd";No;No;4,786;Q1;187;21;85;3690;1816;85;20,00;175,71;40,63;0;United Kingdom;Western Europe;"Elsevier Ltd";"1978-2026";"Biochemistry (Q1); Cell Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +323;13461;"Psychological Methods";journal;"1082989X, 19391463";"American Psychological Association";No;No;4,769;Q1;204;79;262;5401;2697;262;7,04;68,37;30,56;2;United States;Northern America;"American Psychological Association";"1996-2026";"History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Psychology" +324;21101163245;"Nature Cardiovascular Research";journal;"27310590";"Springer";No;No;4,767;Q1;39;174;552;7086;2895;271;4,90;40,72;37,95;1;Germany;Western Europe;"Springer";"2022-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Cardiology and Cardiovascular Medicine (Q1); Cell Biology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +325;23811;"Cement and Concrete Composites";journal;"09589465";"Elsevier Ltd";No;No;4,762;Q1;252;419;1258;29837;19321;1257;15,07;71,21;28,45;0;United Kingdom;Western Europe;"Elsevier Ltd";"1989-2026";"Building and Construction (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +326;21100369870;"The Lancet HIV";journal;"23523018";"Elsevier Ltd";No;No;4,757;Q1;101;170;519;3473;2696;220;5,32;20,43;56,05;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Epidemiology (Q1); Immunology (Q1); Infectious Diseases (Q1); Virology (Q1)";"Immunology and Microbiology; Medicine" +327;29263;"Clinical Cancer Research";journal;"10780432, 15573265";"American Association for Cancer Research Inc.";No;No;4,751;Q1;405;519;1692;21476;16520;1633;9,26;41,38;43,81;0;United States;Northern America;"American Association for Cancer Research Inc.";"1995-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +328;14317;"Brain";journal;"14602156, 00068950";"Oxford University Press";No;No;4,746;Q1;406;443;1307;22873;13210;1053;9,66;51,63;45,59;0;United Kingdom;Western Europe;"Oxford University Press";"1878-1915, 1917-2026";"Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1)";"Medicine" +329;14365;"Trends in Ecology and Evolution";journal;"01695347, 18728383";"Elsevier Ltd";No;No;4,728;Q1;410;180;434;9558;4959;362;10,17;53,10;39,65;5;United Kingdom;Western Europe;"Elsevier Ltd";"1986-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +330;21101188438;"Exploration";journal;"27662098, 27668509";"John Wiley and Sons Inc";Yes;No;4,726;Q1;65;108;196;11437;4945;193;27,00;105,90;38,28;0;China;Asiatic Region;"John Wiley and Sons Inc";"2021-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +331;19600166320;"Protein and Cell";journal;"16748018, 1674800X";"Oxford University Press";Yes;No;4,717;Q1;114;83;225;4274;2289;148;10,21;51,49;43,46;0;United Kingdom;Western Europe;"Oxford University Press";"2010-2026";"Biochemistry (Q1); Biotechnology (Q1); Cell Biology (Q1); Drug Discovery (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +332;21100831440;"Nature Ecology and Evolution";journal;"2397334X";"Nature Research";No;No;4,671;Q1;159;322;882;16712;8127;613;9,43;51,90;36,63;3;United Kingdom;Western Europe;"Nature Research";"2016-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +333;21789;"Manufacturing and Service Operations Management";journal;"15265498, 15234614";"INFORMS Inst.for Operations Res.and the Management Sciences";No;No;4,661;Q1;123;113;460;6748;3173;455;5,09;59,72;28,14;0;United States;Northern America;"INFORMS Inst.for Operations Res.and the Management Sciences";"1999-2026";"Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +334;29949;"Journal of Clinical Oncology";journal;"15277755, 0732183X";"Lippincott Williams and Wilkins";No;No;4,648;Q1;666;1245;4435;14419;33240;3826;6,24;11,58;44,31;0;United States;Northern America;"Lippincott Williams and Wilkins";"1983-2026";"Cancer Research (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +335;21101133552;"Blood Cancer Discovery";journal;"26433230, 26433249";"American Association for Cancer Research Inc.";No;No;4,623;Q1;35;52;124;1847;958;121;7,30;35,52;40,36;0;United States;Northern America;"American Association for Cancer Research Inc.";"2020-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Cancer Research (Q1); Hematology (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +336;23672;"RAND Journal of Economics";journal;"17562171, 07416261";"Wiley-Blackwell";No;No;4,617;Q1;135;51;78;2310;241;78;2,47;45,29;19,59;3;United States;Northern America;"Wiley-Blackwell";"1984-1985, 1987, 1989, 1991-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +337;21101055750;"Radiology: Artificial Intelligence";journal;"26386100";"Radiological Society of North America Inc.";No;No;4,610;Q1;56;106;232;2426;2783;162;11,93;22,89;33,01;0;United States;Northern America;"Radiological Society of North America Inc.";"2019-2026";"Artificial Intelligence (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Computer Science; Health Professions; Medicine" +338;9500153903;"Biological Reviews";journal;"1469185X, 14647931";"Wiley-Blackwell";No;No;4,609;Q1;226;136;319;32536;5027;319;12,81;239,24;39,12;8;United States;Northern America;"Wiley-Blackwell";"1924-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +339;17382;"Molecular Psychiatry";journal;"14765578, 13594184";"Springer Nature";No;No;4,602;Q1;274;628;1329;49422;16326;1215;11,26;78,70;44,16;4;United Kingdom;Western Europe;"Springer Nature";"1996-2026";"Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1); Psychiatry and Mental Health (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +340;24718;"Human Resource Management";journal;"00904848, 1099050X";"Wiley-Liss Inc.";No;No;4,598;Q1;133;97;145;9683;2109;144;15,20;99,82;48,90;4;United States;Northern America;"Wiley-Liss Inc.";"1961-2026";"Applied Psychology (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Psychology" +341;21100255526;"Quantitative Economics";journal;"17597323, 17597331";"Wiley-Blackwell";Yes;No;4,595;Q1;41;36;122;1983;337;121;2,33;55,08;24,51;0;United States;Northern America;"Wiley-Blackwell";"2010-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +342;15131;"Global Change Biology";journal;"13652486, 13541013";"Wiley-Blackwell Publishing Ltd";No;No;4,581;Q1;353;634;1652;53800;21536;1529;11,68;84,86;37,58;19;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1959, 1973, 1995-2026";"Ecology (Q1); Environmental Chemistry (Q1); Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q1)";"Environmental Science" +343;21100858657;"The Lancet Planetary Health";journal;"25425196";"Elsevier B.V.";Yes;No;4,577;Q1;106;168;464;4867;5562;306;10,64;28,97;45,75;7;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Health Policy (Q1); Health (social science) (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +344;22990;"Journal of Retailing";journal;"00224359";"Elsevier B.V.";No;No;4,565;Q1;177;72;130;5013;1649;117;9,96;69,63;36,28;1;United Kingdom;Western Europe;"Elsevier B.V.";"1981, 1985, 1993-2026";"Marketing (Q1)";"Business, Management and Accounting" +345;11700154368;"Publications Mathematiques de l'Institut des Hautes Etudes Scientifiques";journal;"16181913, 00738301";"Springer Verlag";No;No;4,565;Q1;54;9;20;509;76;20;3,43;56,56;11,11;0;Germany;Western Europe;"Springer Verlag";"1959-2000, 2003, 2005-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +346;19708;"FEMS Microbiology Reviews";journal;"01686445, 15746976";"Oxford University Press";Yes;No;4,555;Q1;273;64;164;11280;2811;162;16,64;176,25;44,22;0;United Kingdom;Western Europe;"Oxford University Press";"1986, 1989-1990, 1992-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q1)";"Immunology and Microbiology; Medicine" +347;26746;"Trends in Endocrinology and Metabolism";journal;"10432760, 18793061";"Elsevier Inc.";No;No;4,543;Q1;215;153;267;11378;3878;263;13,24;74,37;40,88;0;United States;Northern America;"Elsevier Inc.";"1989-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +348;21100457028;"Science Advances";journal;"23752548";"American Association for the Advancement of Science";Yes;No;4,534;Q1;325;3136;6636;213851;90662;6609;13,10;68,19;35,75;25;United States;Northern America;"American Association for the Advancement of Science";"2015-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +349;3600148102;"Alzheimer's and Dementia";journal;"15525279, 15525260";"John Wiley and Sons Inc";No;No;4,530;Q1;194;1244;1938;72380;17963;1394;11,93;58,18;49,88;6;United States;Northern America;"John Wiley and Sons Inc";"2005-2026";"Cellular and Molecular Neuroscience (Q1); Developmental Neuroscience (Q1); Epidemiology (Q1); Geriatrics and Gerontology (Q1); Health Policy (Q1); Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +350;18935;"IEEE Wireless Communications";journal;"15580687, 15361284";"Institute of Electrical and Electronics Engineers Inc.";No;No;4,523;Q1;206;227;481;3132;6596;445;14,04;13,80;26,17;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2002-2026";"Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +351;25936;"Duke Mathematical Journal";journal;"15477398, 00127094";"Duke University Press";No;No;4,507;Q1;105;58;244;2713;640;244;2,09;46,78;10,61;0;United States;Northern America;"Duke University Press";"1935-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +352;3900148405;"Autophagy";journal;"15548635, 15548627";"Taylor and Francis Ltd.";No;No;4,505;Q1;216;274;823;12913;10092;683;12,43;47,13;43,58;2;United States;Northern America;"Taylor and Francis Ltd.";"2005-2026";"Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +353;21101053562;"The Lancet Regional Health - Europe";journal;"26667762";"Elsevier Ltd";Yes;No;4,499;Q1;69;355;785;10609;6633;452;9,32;29,88;51,91;32;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Health Policy (Q1); Internal Medicine (Q1); Oncology (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +354;16547;"Tourism Management";journal;"02615177, 18793193";"Elsevier Ltd";No;No;4,496;Q1;296;210;405;17847;8327;403;19,63;84,99;41,81;0;United Kingdom;Western Europe;"Elsevier Ltd";"1982-2026";"Development (Q1); Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1); Transportation (Q1)";"Business, Management and Accounting; Social Sciences" +355;21101118502;"Advanced Powder Materials";journal;"2772834X";"KeAi Communications Co.";Yes;No;4,495;Q1;54;59;140;5774;3467;138;25,94;97,86;34,87;0;China;Asiatic Region;"KeAi Communications Co.";"2022-2026";"Catalysis (Q1); Ceramics and Composites (Q1); Energy (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Metals and Alloys (Q1); Surfaces, Coatings and Films (Q1)";"Chemical Engineering; Energy; Materials Science" +356;21101045745;"Carbon Energy";journal;"26379368";"John Wiley & Sons Inc.";Yes;No;4,473;Q1;86;170;387;13754;8075;387;19,73;80,91;30,95;0;United States;Northern America;"John Wiley & Sons Inc.";"2019-2026";"Energy (miscellaneous) (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Materials Science" +357;22900;"Research Policy";journal;"00487333";"Elsevier B.V.";No;No;4,471;Q1;318;162;501;15559;6472;494;10,70;96,04;34,32;15;Netherlands;Western Europe;"Elsevier B.V.";"1971-2026";"Engineering (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences; Engineering" +358;24392;"Journal of International Business Studies";journal;"00472506, 14786990";"Palgrave Macmillan";No;No;4,454;Q1;254;85;266;5382;3248;221;10,07;63,32;37,70;1;United Kingdom;Western Europe;"Palgrave Macmillan";"1975-2026";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +359;28418;"Brookings Papers on Economic Activity";journal;"00072303, 15334465";"Brookings Institution Press";No;No;4,451;Q1;104;0;42;0;260;39;4,34;0,00;0,00;0;United States;Northern America;"Brookings Institution Press";"1990, 1992, 1996-2024";"Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +360;25441;"Cardiovascular Diabetology";journal;"14752840";"BioMed Central Ltd";Yes;No;4,447;Q1;135;450;1066;24261;15259;1051;14,57;53,91;43,85;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Cardiology and Cardiovascular Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Medicine" +361;22321;"Trends in Pharmacological Sciences";journal;"18733735, 01656147";"Elsevier Ltd";No;No;4,447;Q1;261;119;329;8409;5008;310;14,12;70,66;34,16;0;United Kingdom;Western Europe;"Elsevier Ltd";"1979-2026";"Pharmacology (Q1); Toxicology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +362;23470;"Coordination Chemistry Reviews";journal;"00108545";"Elsevier B.V.";No;No;4,445;Q1;346;671;1400;150582;36169;1396;26,53;224,41;37,54;0;Netherlands;Western Europe;"Elsevier B.V.";"1966-2026";"Inorganic Chemistry (Q1); Materials Chemistry (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Materials Science" +363;17645;"Computers and Education";journal;"03601315";"Elsevier Ltd";No;No;4,434;Q1;267;152;462;13518;8340;462;17,71;88,93;45,00;8;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Computer Science (miscellaneous) (Q1); Education (Q1); E-learning (Q1)";"Computer Science; Social Sciences" +364;16343;"Applied Catalysis B: Environmental";journal;"18733883, 09263373";"Elsevier B.V.";No;No;4,415;Q1;376;1053;3280;64023;69460;3271;20,99;60,80;37,45;0;Netherlands;Western Europe;"Elsevier B.V.";"1992-2026";"Catalysis (Q1); Environmental Science (miscellaneous) (Q1); Process Chemistry and Technology (Q1)";"Chemical Engineering; Environmental Science" +365;17435;"EMBO Journal";journal;"02614189, 14602075";"Springer Science and Business Media Deutschland GmbH";Yes;No;4,413;Q1;450;320;881;22461;7032;815;7,62;70,19;43,08;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1982-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Neuroscience (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Neuroscience" +366;80370;"Journal of Financial and Quantitative Analysis";journal;"00221090, 17566916";"Cambridge University Press";No;No;4,404;Q1;164;193;325;11278;1572;325;4,15;58,44;22,27;0;United Kingdom;Western Europe;"Cambridge University Press";"1966-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +367;28096;"Accounting Review";journal;"00014826, 15587967";"American Accounting Association";No;No;4,403;Q1;217;104;380;7015;2174;376;3,71;67,45;38,65;0;United States;Northern America;"American Accounting Association";"1996-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +368;22570;"Cardiovascular Research";journal;"17553245, 00086363";"Oxford University Press";No;No;4,399;Q1;262;299;816;16410;8847;657;9,19;54,88;38,90;0;United Kingdom;Western Europe;"Oxford University Press";"1967-2026";"Cardiology and Cardiovascular Medicine (Q1); Physiology (Q1); Physiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +369;21365;"Trends in Immunology";journal;"14714906, 14714981";"Elsevier Ltd";No;No;4,398;Q1;275;105;336;6580;3395;330;8,22;62,67;41,80;0;United Kingdom;Western Europe;"Elsevier Ltd";"1987-1990, 1993-1994, 2001-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +370;17864;"Radiology";journal;"00338419, 15271315";"Radiological Society of North America Inc.";No;No;4,388;Q1;357;540;1795;11284;14155;990;7,98;20,90;35,93;1;United States;Northern America;"Radiological Society of North America Inc.";"1931, 1936, 1945-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +371;19939;"Trends in Neurosciences";journal;"01662236, 1878108X";"Elsevier Ltd";No;No;4,377;Q1;335;108;305;9475;3657;304;11,20;87,73;46,25;0;United Kingdom;Western Europe;"Elsevier Ltd";"1978-2026";"Neuroscience (miscellaneous) (Q1)";"Neuroscience" +372;145558;"Political Analysis";journal;"10471987, 14764989";"Cambridge University Press";No;No;4,368;Q1;96;57;121;2371;1162;121;9,72;41,60;27,40;4;United Kingdom;Western Europe;"Cambridge University Press";"1989-1993, 2000, 2002-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +373;21101060200;"Advanced Photonics";journal;"25775421";"SPIE";Yes;No;4,365;Q1;64;93;185;8199;2598;143;13,15;88,16;28,42;0;United States;Northern America;"SPIE";"2019-2025";"Atomic and Molecular Physics, and Optics (Q1); Biomedical Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Engineering; Materials Science; Physics and Astronomy" +374;21100834316;"The Lancet Child and Adolescent Health";journal;"23524642";"Elsevier B.V.";No;No;4,365;Q1;91;171;559;3596;3119;214;4,88;21,03;50,87;0;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine; Psychology" +375;19700170610;"IEEE Transactions on Smart Grid";journal;"19493061, 19493053";"Institute of Electrical and Electronics Engineers Inc.";No;No;4,363;Q1;270;474;1270;18207;16177;1270;11,81;38,41;25,70;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2010-2026";"Computer Science (miscellaneous) (Q1)";"Computer Science" +376;11800154593;"Strategic Organization";journal;"1741315X, 14761270";"SAGE Publications Ltd";No;No;4,360;Q1;88;56;128;4833;839;117;4,67;86,30;34,44;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2003-2026";"Business and International Management (Q1); Education (Q1); Industrial Relations (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Social Sciences" +377;28312;"Organization Studies";journal;"17413044, 01708406";"SAGE Publications Ltd";No;No;4,358;Q1;197;87;259;6950;1929;229;6,86;79,89;48,43;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1980-2026";"Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +378;15359;"Trends in Cognitive Sciences";journal;"1879307X, 13646613";"Elsevier Ltd";No;No;4,351;Q1;390;169;388;12924;4512;339;11,14;76,47;38,39;0;United Kingdom;Western Europe;"Elsevier Ltd";"1997-2026";"Cognitive Neuroscience (Q1); Experimental and Cognitive Psychology (Q1); Neuropsychology and Physiological Psychology (Q1)";"Neuroscience; Psychology" +379;29183;"Cancer Research";journal;"00085472, 15387445";"American Association for Cancer Research Inc.";No;No;4,347;Q1;522;364;1065;11855;11313;1033;11,16;32,57;42,01;0;United States;Northern America;"American Association for Cancer Research Inc.";"1941-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +380;21101323186;"Carbon Neutralization";journal;"27693325, 27693333";"John Wiley and Sons Inc";Yes;No;4,341;Q1;36;88;116;8408;2334;113;20,66;95,55;35,67;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Energy (miscellaneous) (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Materials Science" +381;21101049542;"Med";journal;"26666359, 26666340";"Cell Press";No;No;4,341;Q1;52;188;355;8173;2335;189;7,56;43,47;39,89;3;United States;Northern America;"Cell Press";"2020-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +382;21101136681;"Internet of Things and Cyber-Physical Systems";journal;"26673452";"KeAi Communications Co.";Yes;No;4,336;Q1;31;4;72;839;2805;71;46,48;209,75;20,00;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2025";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +383;144946;"Environmental Chemistry Letters";journal;"16103653, 16103661";"Springer Nature";No;No;4,331;Q1;168;94;467;11352;12656;447;29,95;120,77;33,56;3;Switzerland;Western Europe;"Springer Nature";"2003-2026";"Environmental Chemistry (Q1)";"Environmental Science" +384;26203;"Metabolism: Clinical and Experimental";journal;"00260495, 15328600";"W.B. Saunders";No;No;4,328;Q1;184;175;405;13266;6001;378;15,71;75,81;43,20;0;United States;Northern America;"W.B. Saunders";"1952-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +385;19700177027;"IEEE Transactions on Sustainable Energy";journal;"19493029, 19493037";"Institute of Electrical and Electronics Engineers Inc.";No;No;4,318;Q1;193;347;594;12899;7869;593;12,54;37,17;26,77;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2010-2026";"Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +386;21100205926;"Blood Cancer Journal";journal;"20445385";"Springer Nature";Yes;No;4,307;Q1;94;208;571;5305;3972;312;6,92;25,50;42,99;1;United Kingdom;Western Europe;"Springer Nature";"2011-2026";"Hematology (Q1); Oncology (Q1)";"Medicine" +387;73008;"Vital and Health Statistics, Series 2: Data Evaluation and Methods Research";book series;"00832057, 23330872";"National Center for Health Statistics";No;No;4,307;Q1;34;2;19;55;145;17;2,67;27,50;25,00;0;United States;Northern America;"National Center for Health Statistics";"1965, 1970, 1977-1982, 1985-1989, 1991-1994, 1996-2001, 2003-2006, 2008, 2010-2025";"Health Information Management (Q1); Medicine (miscellaneous) (Q1); Statistics and Probability (Q1)";"Health Professions; Mathematics; Medicine" +388;21100261712;"Analytic Methods in Accident Research";journal;"22136657";"Elsevier B.V.";No;No;4,293;Q1;72;23;93;1717;1195;93;11,13;74,65;19,23;0;United Kingdom;Western Europe;"Elsevier B.V.";"2014-2026";"Safety Research (Q1); Transportation (Q1)";"Social Sciences" +389;4700152248;"Educational Research Review";journal;"1747938X";"Elsevier Ltd";No;No;4,291;Q1;128;72;153;8404;2597;152;13,28;116,72;57,84;0;United Kingdom;Western Europe;"Elsevier Ltd";"2006-2026";"Education (Q1)";"Social Sciences" +390;28475;"Ageing Research Reviews";journal;"15681637, 18729649";"Elsevier Ireland Ltd";No;No;4,289;Q1;194;234;844;40519;14832;843;16,55;173,16;42,73;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"2002-2026";"Aging (Q1); Biochemistry (Q1); Biotechnology (Q1); Molecular Biology (Q1); Neurology (Q1)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +391;12503;"Remote Sensing of Environment";journal;"00344257";"Elsevier Inc.";No;No;4,266;Q1;397;439;1343;33956;19262;1340;13,00;77,35;31,73;5;United States;Northern America;"Elsevier Inc.";"1969-1971, 1974-2026";"Computers in Earth Sciences (Q1); Geology (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +392;19900191883;"American Economic Journal: Microeconomics";journal;"19457669, 19457685";"American Economic Association";No;No;4,257;Q1;62;12;198;654;516;198;2,14;54,50;15,38;1;United States;Northern America;"American Economic Association";"2009-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +393;21101076096;"Nature Computational Science";journal;"26628457";"Springer Nature";No;No;4,252;Q1;56;182;538;7068;4645;266;8,54;38,84;35,04;2;United States;Northern America;"Springer Nature";"2021-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Computer Science (miscellaneous) (Q1)";"Computer Science" +394;14802;"Soil Biology and Biochemistry";journal;"00380717";"Elsevier Ltd";No;No;4,240;Q1;304;281;844;22995;12036;838;12,64;81,83;38,80;2;United Kingdom;Western Europe;"Elsevier Ltd";"1969-2026";"Microbiology (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Immunology and Microbiology" +395;21100981101;"Smart Learning Environments";journal;"21967091";"SpringerOpen";Yes;No;4,239;Q1;54;70;164;4514;4376;159;27,68;64,49;47,28;0;United Kingdom;Western Europe;"SpringerOpen";"2014-2018, 2020-2026";"Computer Science Applications (Q1); Education (Q1)";"Computer Science; Social Sciences" +396;4700152228;"Molecular Systems Biology";journal;"17444292";"Springer Science and Business Media Deutschland GmbH";Yes;No;4,229;Q1;185;85;192;6470;1281;175;6,33;76,12;37,06;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Computational Theory and Mathematics (Q1); Immunology and Microbiology (miscellaneous) (Q1); Information Systems (Q1); Medicine (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Computer Science; Immunology and Microbiology; Mathematics; Medicine" +397;28825;"IEEE Transactions on Power Systems";journal;"08858950, 15580679";"Institute of Electrical and Electronics Engineers Inc.";No;No;4,217;Q1;337;505;1549;18352;16517;1544;10,50;36,34;23,43;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1986-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering" +398;21101012669;"npj Digital Medicine";journal;"23986352";"Nature Publishing Group";Yes;No;4,215;Q1;130;788;794;40852;14522;699;18,02;51,84;39,66;14;United Kingdom;Western Europe;"Nature Publishing Group";"2018-2026";"Computer Science Applications (Q1); Health Informatics (Q1); Health Information Management (Q1); Medicine (miscellaneous) (Q1)";"Computer Science; Health Professions; Medicine" +399;21117;"International Journal of Plasticity";journal;"07496419";"Elsevier Ltd";No;No;4,210;Q1;188;275;734;23089;11036;734;15,44;83,96;26,14;0;United Kingdom;Western Europe;"Elsevier Ltd";"1985-2026";"Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +400;21677;"American Journal of Human Genetics";journal;"15376605, 00029297";"Cell Press";No;No;4,204;Q1;348;211;525;12361;4076;494;6,96;58,58;50,95;0;United States;Northern America;"Cell Press";"1950-2026";"Genetics (Q1); Genetics (clinical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +401;28179;"Journal of Advertising";journal;"15577805, 00913367";"Routledge";No;No;4,201;Q1;151;56;143;4069;1870;127;12,06;72,66;47,17;1;United States;Northern America;"Routledge";"1972-2026";"Business and International Management (Q1); Communication (Q1); Marketing (Q1)";"Business, Management and Accounting; Social Sciences" +402;26099;"Information Fusion";journal;"18726305, 15662535";"Elsevier B.V.";No;No;4,197;Q1;201;716;1020;58729;24679;1016;23,10;82,02;30,68;5;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Hardware and Architecture (Q1); Information Systems (Q1); Signal Processing (Q1); Software (Q1)";"Computer Science" +403;17552;"Acta Neuropathologica";journal;"00016322, 14320533";"Springer Science and Business Media Deutschland GmbH";No;No;4,191;Q1;241;130;428;7665;3605;339;8,46;58,96;43,54;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1961-2026";"Cellular and Molecular Neuroscience (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1)";"Medicine; Neuroscience" +404;17814;"Materials Science and Engineering R: Reports";journal;"0927796X";"Elsevier B.V.";No;No;4,184;Q1;192;158;117;30665;2933;117;22,94;194,08;32,45;1;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science; Physics and Astronomy" +405;25820;"Communications on Pure and Applied Mathematics";journal;"00103640, 10970312";"Wiley-Liss Inc.";No;No;4,182;Q1;134;43;198;2437;861;198;3,68;56,67;12,00;0;United States;Northern America;"Wiley-Liss Inc.";"1948-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +406;21100903225;"eClinicalMedicine";journal;"25895370";"Elsevier Ltd";Yes;No;4,171;Q1;118;692;1677;31576;19257;1541;11,83;45,63;51,95;12;United Kingdom;Western Europe;"Elsevier Ltd";"2018-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +407;21100826565;"Nature Astronomy";journal;"23973366";"Nature Publishing Group";No;No;4,169;Q1;112;288;810;12273;5690;479;7,08;42,61;27,72;1;United Kingdom;Western Europe;"Nature Publishing Group";"2016-2026";"Astronomy and Astrophysics (Q1)";"Physics and Astronomy" +408;25835;"International Security";journal;"15314804, 01622889";"MIT Press";No;No;4,166;Q1;136;21;55;2118;402;44;6,03;100,86;22,22;4;United States;Northern America;"MIT Press";"1984, 1996-2025";"Law (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +409;21100401152;"Microbiome";journal;"20492618";"BioMed Central Ltd";Yes;No;4,166;Q1;186;250;761;18916;11715;749;13,84;75,66;44,58;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2013-2026";"Microbiology (Q1); Microbiology (medical) (Q1)";"Immunology and Microbiology; Medicine" +410;27069;"Human Relations";journal;"00187267, 1741282X";"SAGE Publications Ltd";No;No;4,141;Q1;181;76;214;6613;2325;212;8,48;87,01;56,31;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1947-2026";"Arts and Humanities (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Social Sciences (miscellaneous) (Q1); Strategy and Management (Q1)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +411;21101027517;"One Earth";journal;"25903330, 25903322";"Cell Press";No;No;4,141;Q1;89;160;582;10117;5674;341;9,21;63,23;36,23;13;United States;Northern America;"Cell Press";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Earth and Planetary Sciences; Environmental Science" +412;12274;"Progress in Aerospace Sciences";journal;"03760421";"Elsevier Ltd";No;No;4,127;Q1;162;44;108;8425;2749;107;26,89;191,48;16,85;0;United Kingdom;Western Europe;"Elsevier Ltd";"1961-1962, 1964-1968, 1970, 1972-1976, 1979, 1981, 1983-1992, 1994-2026";"Aerospace Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering" +413;21100459104;"Experimental Hematology and Oncology";journal;"21623619";"BioMed Central Ltd";Yes;No;4,126;Q1;58;138;325;11678;3240;210;10,49;84,62;43,79;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2012-2026";"Cancer Research (Q1); Hematology (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +414;144747;"Computer Assisted Language Learning";journal;"17443210, 09588221";"Taylor and Francis Ltd.";No;No;4,120;Q1;100;188;266;12441;4238;266;14,99;66,18;47,01;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-1997, 2004-2026";"Computer Science Applications (Q1); Linguistics and Language (Q1)";"Computer Science; Social Sciences" +415;21100466864;"Journal for ImmunoTherapy of Cancer";journal;"20511426";"BMJ Publishing Group";Yes;No;4,114;Q1;155;688;1437;30301;14995;1406;9,58;44,04;44,33;2;United Kingdom;Western Europe;"BMJ Publishing Group";"2013-2026";"Cancer Research (Q1); Immunology (Q1); Immunology and Allergy (Q1); Molecular Medicine (Q1); Oncology (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +416;19700175861;"Gut Microbes";journal;"19490984, 19490976";"Taylor and Francis Ltd.";Yes;No;4,109;Q1;147;402;921;34513;14290;902;15,05;85,85;46,21;1;United States;Northern America;"Taylor and Francis Ltd.";"2010-2026";"Gastroenterology (Q1); Infectious Diseases (Q1); Microbiology (Q1); Microbiology (medical) (Q1)";"Immunology and Microbiology; Medicine" +417;21101089402;"Advanced Fiber Materials";journal;"25247921, 2524793X";"Springer Nature";No;No;4,106;Q1;76;143;364;9801;7429;349;21,22;68,54;37,67;0;United States;Northern America;"Springer Nature";"2019-2026";"Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1); Polymers and Plastics (Q1)";"Materials Science" +418;11500153511;"ACS Nano";journal;"1936086X, 19360851";"American Chemical Society";No;No;4,102;Q1;531;3115;6542;209240;108852;6493;16,29;67,17;33,93;2;United States;Northern America;"American Chemical Society";"2007-2026";"Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Engineering; Materials Science; Physics and Astronomy" +419;21101023196;"International Journal of Extreme Manufacturing";journal;"26317990, 26318644";"IOP Publishing Ltd.";Yes;Yes;4,098;Q1;73;143;234;18252;5785;232;24,62;127,64;29,13;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2019-2026";"Industrial and Manufacturing Engineering (Q1)";"Engineering" +420;16594;"Plant Cell";journal;"1532298X, 10404651";"American Society of Plant Biologists";No;No;4,088;Q1;428;315;1013;20337;9697;898;9,21;64,56;41,28;0;United States;Northern America;"American Society of Plant Biologists";"1989-2026";"Cell Biology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +421;20037;"International Journal of Management Reviews";journal;"14608545, 14682370";"Wiley-Blackwell Publishing Ltd";No;No;4,083;Q1;151;31;91;4450;1676;89;16,77;143,55;40,21;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1999-2002, 2004-2026";"Decision Sciences (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +422;17664;"American Journal of Psychiatry";journal;"0002953X, 15357228";"American Psychiatric Association";No;No;4,082;Q1;418;0;426;0;3259;245;7,06;0,00;0,00;0;United States;Northern America;"American Psychiatric Association";"1945-2025";"Psychiatry and Mental Health (Q1)";"Medicine" +423;14719;"Intensive Care Medicine";journal;"14321238, 03424642";"Springer Science and Business Media Deutschland GmbH";Yes;No;4,066;Q1;260;499;1061;9459;5948;358;5,71;18,96;41,71;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1977-2026";"Critical Care and Intensive Care Medicine (Q1)";"Medicine" +424;21100338322;"IEEE Geoscience and Remote Sensing Magazine";journal;"24732397, 21686831";"Institute of Electrical and Electronics Engineers Inc.";No;No;4,065;Q1;78;86;155;9094;2384;144;9,54;105,74;26,05;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2026";"Computer Science (miscellaneous) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1)";"Computer Science; Earth and Planetary Sciences; Engineering; Physics and Astronomy" +425;20373;"Sports Medicine";journal;"01121642, 11792035";"Springer International Publishing AG";Yes;No;4,065;Q1;262;224;532;18285;6235;446;11,01;81,63;29,07;3;Switzerland;Western Europe;"Springer International Publishing AG";"1984-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine" +426;21708;"Annual Review of Genomics and Human Genetics";book series;"15278204, 1545293X";"Annual Reviews Inc.";No;No;4,063;Q1;140;21;64;2664;622;64;8,92;126,86;63,08;0;United States;Northern America;"Annual Reviews Inc.";"2000-2025";"Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +427;21100297606;"Arthritis and Rheumatology";journal;"23265191, 23265205";"John Wiley and Sons Ltd";No;No;4,061;Q1;373;292;834;7734;5781;541;6,69;26,49;50,19;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2014-2026";"Immunology (Q1); Immunology and Allergy (Q1); Rheumatology (Q1)";"Immunology and Microbiology; Medicine" +428;12402;"MIS Quarterly: Management Information Systems";journal;"02767783, 21629730";"University of Minnesota";No;No;4,061;Q1;294;66;216;5273;1914;205;7,96;79,89;29,95;0;United States;Northern America;"University of Minnesota";"1980-2025";"Computer Science Applications (Q1); Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences" +429;21100242403;"Redox Biology";journal;"22132317";"Elsevier B.V.";Yes;No;4,059;Q1;180;484;1153;36833;17508;1149;15,10;76,10;44,23;0;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Biochemistry (Q1); Clinical Biochemistry (Q1); Organic Chemistry (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +430;21100854881;"Bioactive Materials";journal;"2452199X";"KeAi Communications Co.";Yes;No;4,047;Q1;150;478;1267;44399;28974;1263;23,30;92,88;40,42;0;China;Asiatic Region;"KeAi Communications Co.";"2016-2026";"Biomaterials (Q1); Biomedical Engineering (Q1); Biotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +431;14816;"Trends in Biochemical Sciences";journal;"13624326, 09680004";"Elsevier Ltd";No;No;4,039;Q1;318;116;352;7991;2886;312;8,70;68,89;43,18;1;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Biochemistry (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +432;21100241219;"JACC: Heart Failure";journal;"22131787, 22131779";"Elsevier Inc.";No;No;4,036;Q1;126;369;753;6703;3790;310;4,79;18,17;30,95;0;United States;Northern America;"Elsevier Inc.";"2013-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +433;12396;"Journal of Strategic Information Systems";journal;"09638687";"Elsevier B.V.";No;No;4,030;Q1;120;34;72;3534;903;53;9,37;103,94;28,40;1;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences" +434;21101142543;"Nano Research Energy";journal;"27910091, 27908119";"Tsinghua University Press";Yes;Yes;4,016;Q1;49;56;127;5114;2235;123;16,40;91,32;32,89;0;China;Asiatic Region;"Tsinghua University Press";"2022-2026";"Chemistry (miscellaneous) (Q1); Energy (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Energy; Materials Science" +435;19409;"Advanced Drug Delivery Reviews";journal;"0169409X, 18728294";"Elsevier B.V.";No;No;4,015;Q1;405;127;594;24788;12320;551;20,34;195,18;45,70;0;Netherlands;Western Europe;"Elsevier B.V.";"1987-2026";"Pharmaceutical Science (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +436;30020;"Journal of Organizational Behavior";journal;"10991379, 08943796";"John Wiley and Sons Ltd";No;No;3,999;Q1;242;103;237;11592;2618;228;10,85;112,54;44,31;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1981-1982, 1984-2026";"Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1); Psychology (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Psychology; Social Sciences" +437;27567;"Renewable and Sustainable Energy Reviews";journal;"13640321, 18790690";"Elsevier Ltd";No;No;3,995;Q1;501;1070;2604;145602;59322;2594;21,02;136,08;29,59;29;United Kingdom;Western Europe;"Elsevier Ltd";"1997-2026";"Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +438;29709;"Reports on Progress in Physics";journal;"13616633, 00344885";"IOP Publishing Ltd.";No;No;3,983;Q1;273;110;160;15726;2501;160;13,73;142,96;24,58;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1934-1942, 1944, 1947, 1949-2026";"Medicine (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Medicine; Physics and Astronomy" +439;21101207465;"NEJM Evidence";journal;"27665526";"Massachussetts Medical Society";No;No;3,979;Q1;19;81;149;1719;921;91;6,20;21,22;41,07;0;United States;Northern America;"Massachussetts Medical Society";"2022-2025";"Drug Discovery (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +440;21101303678;"EcoEnergy";journal;"28359380, 28359399";"John Wiley and Sons Inc";Yes;No;3,975;Q1;23;52;60;5531;1197;60;19,95;106,37;37,17;0;United States;Northern America;"John Wiley and Sons Inc";"2023-2026";"Chemistry (miscellaneous) (Q1); Energy (miscellaneous) (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Energy; Materials Science" +441;21100900364;"Protection and Control of Modern Power Systems";journal;"23670983, 23672617";"Institute of Electrical and Electronics Engineers Inc.";Yes;Yes;3,964;Q1;66;66;163;2601;2446;161;15,69;39,41;26,10;0;Singapore;Asiatic Region;"Institute of Electrical and Electronics Engineers Inc.";"2018-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Safety, Risk, Reliability and Quality (Q1)";"Energy; Engineering" +442;20833;"Health Affairs";journal;"02782715, 15445208";"Project HOPE";No;No;3,959;Q1;233;219;710;5757;4157;561;4,71;26,29;53,93;44;United States;Northern America;"Project HOPE";"1981-2026";"Health Policy (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +443;21101091924;"PhotoniX";journal;"26621991";"Springer International Publishing";Yes;No;3,949;Q1;52;59;107;3277;1797;107;16,23;55,54;27,21;0;Switzerland;Western Europe;"Springer International Publishing";"2020-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Engineering (miscellaneous) (Q1)";"Engineering; Physics and Astronomy" +444;20810;"Immunological Reviews";journal;"01052896, 1600065X";"Wiley-Blackwell Publishing Ltd";No;No;3,945;Q1;273;97;354;15278;3415;330;10,35;157,51;37,64;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1969-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +445;19700176402;"Cold Spring Harbor Perspectives in Biology";journal;"19430264";"Cold Spring Harbor Laboratory Press";No;No;3,932;Q1;263;62;198;7745;1889;194;8,62;124,92;41,05;0;United States;Northern America;"Cold Spring Harbor Laboratory Press";"2009-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology" +446;17339;"IEEE Transactions on Automatic Control";journal;"00189286, 15582523";"Institute of Electrical and Electronics Engineers Inc.";No;No;3,929;Q1;359;879;2275;33293;19460;2275;8,12;37,88;21,43;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +447;22992;"Journal of Retailing and Consumer Services";journal;"09696989";"Elsevier Ltd";No;No;3,913;Q1;190;347;1160;29198;21002;1157;18,04;84,14;43,93;3;United Kingdom;Western Europe;"Elsevier Ltd";"1994-2026";"Marketing (Q1)";"Business, Management and Accounting" +448;21101074917;"Advances in Applied Energy";journal;"26667924";"Elsevier Ltd";Yes;No;3,888;Q1;54;56;117;4965;2164;113;20,10;88,66;26,83;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Building and Construction (Q1); Energy Engineering and Power Technology (Q1); Energy (miscellaneous) (Q1); Fuel Technology (Q1); Management, Monitoring, Policy and Law (Q1); Mechanical Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering; Environmental Science" +449;14639;"Ophthalmology";journal;"15494713, 01616420";"Elsevier Inc.";No;No;3,884;Q1;309;377;810;5147;4539;441;5,20;13,65;44,54;4;United States;Northern America;"Elsevier Inc.";"1958, 1978-2026";"Ophthalmology (Q1)";"Medicine" +450;19900192103;"Astrophysical Journal Letters";journal;"20418213, 20418205";"American Astronomical Society";Yes;No;3,878;Q1;227;823;2025;61014;19177;2025;9,83;74,14;28,37;2;United Kingdom;Western Europe;"American Astronomical Society";"1995-2006, 2008-2025";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +451;25584;"Diabetologia";journal;"0012186X, 14320428";"Springer Science and Business Media Deutschland GmbH";No;No;3,858;Q1;276;257;639;10997;5906;555;8,53;42,79;47,75;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1965-2026";"Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Medicine" +452;20185;"Allergy: European Journal of Allergy and Clinical Immunology";journal;"01054538, 13989995";"Wiley-Blackwell Publishing Ltd";No;No;3,851;Q1;226;478;1163;16681;8447;577;6,88;34,90;48,86;7;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1948-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +453;28273;"Clinical Gastroenterology and Hepatology";journal;"15427714, 15423565";"W.B. Saunders";No;No;3,843;Q1;232;534;1789;11978;12081;1217;6,95;22,43;41,62;5;United States;Northern America;"W.B. Saunders";"2003-2026";"Gastroenterology (Q1); Hepatology (Q1)";"Medicine" +454;21195;"Pharmacology and Therapeutics";journal;"1879016X, 01637258";"Elsevier Inc.";No;No;3,837;Q1;254;103;471;21332;7218;470;13,79;207,11;41,43;0;United States;Northern America;"Elsevier Inc.";"1976-1977, 1979-1985, 1987-2026";"Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +455;21101023287;"JACC: CardioOncology";journal;"26660873";"Elsevier Inc.";Yes;No;3,836;Q1;56;124;364;3726;2373;197;6,09;30,05;41,74;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Cardiology and Cardiovascular Medicine (Q1); Oncology (Q1)";"Medicine" +456;23988;"British Journal of Educational Technology";journal;"00071013, 14678535";"Wiley-Blackwell Publishing Ltd";No;No;3,830;Q1;143;134;324;8834;5257;307;16,54;65,93;50,68;10;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1970-2026";"Education (Q1); E-learning (Q1)";"Social Sciences" +457;23895;"Critical Reviews in Environmental Science and Technology";journal;"15476537, 10643389";"Taylor and Francis Ltd.";No;No;3,829;Q1;169;76;300;9806;5267;293;16,41;129,03;37,86;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Environmental Engineering (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Environmental Science" +458;19837;"Sleep Medicine Reviews";journal;"15322955, 10870792";"W.B. Saunders Ltd";No;No;3,827;Q1;204;144;309;10728;3896;248;10,30;74,50;47,54;0;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1997-2026";"Neurology (Q1); Neurology (clinical) (Q1); Physiology (medical) (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine; Neuroscience" +459;21100217630;"Strategic Entrepreneurship Journal";journal;"19324391, 1932443X";"John Wiley & Sons Inc.";No;No;3,821;Q1;82;44;96;4356;881;91;8,35;99,00;34,88;1;United States;Northern America;"John Wiley & Sons Inc.";"2008, 2011-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +460;19133;"Annual Review of Entomology";journal;"00664170, 15454487";"Annual Reviews Inc.";No;No;3,817;Q1;254;22;77;3075;1361;74;17,38;139,77;37,25;0;United States;Northern America;"Annual Reviews Inc.";"1961-1963, 1966-1967, 1969-1979, 1981-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1)";"Agricultural and Biological Sciences" +461;12455;"Molecular Therapy";journal;"15250024, 15250016";"Cell Press";No;No;3,814;Q1;233;519;936;31417;8788;733;8,04;60,53;44,99;3;United States;Northern America;"Cell Press";"2000-2026";"Drug Discovery (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Molecular Medicine (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +462;21100201068;"Cell Reports";journal;"22111247, 26391856";"Elsevier B.V.";Yes;No;3,812;Q1;265;1524;4407;108107;33071;4367;7,16;70,94;43,22;1;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology" +463;21100430187;"Digital Journalism";journal;"2167082X, 21670811";"Taylor and Francis Ltd.";No;No;3,807;Q1;94;159;291;9465;2813;259;8,59;59,53;47,15;10;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Communication (Q1)";"Social Sciences" +464;21267;"Journal of Allergy and Clinical Immunology";journal;"10976825, 00916749";"Elsevier Inc.";No;No;3,806;Q1;364;439;1175;22072;9850;873;8,27;50,28;51,41;1;United States;Northern America;"Elsevier Inc.";"1963-1965, 1971-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +465;21100367773;"IEEE/CAA Journal of Automatica Sinica";journal;"23299266, 23299274";"IEEE Advancing Technology for Humanity";No;No;3,805;Q1;112;263;700;11147;10247;533;13,38;42,38;30,64;0;United States;Northern America;"IEEE Advancing Technology for Humanity";"2014-2026";"Artificial Intelligence (Q1); Control and Optimization (Q1); Control and Systems Engineering (Q1); Information Systems (Q1)";"Computer Science; Engineering; Mathematics" +466;21100228540;"JAMA Pediatrics";journal;"21686211, 21686203";"American Medical Association";Yes;No;3,799;Q1;243;344;1018;6695;5960;460;5,34;19,46;56,51;12;United States;Northern America;"American Medical Association";"2013-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +467;13447;"Comparative Political Studies";journal;"15523829, 00104140";"SAGE Publications Inc.";No;No;3,796;Q1;142;136;226;11744;1463;226;4,75;86,35;33,33;16;United States;Northern America;"SAGE Publications Inc.";"1968-2026";"Sociology and Political Science (Q1)";"Social Sciences" +468;4000151805;"Foundations and Trends in Communications and Information Theory";journal;"15672190, 15672328";"Now Publishers Inc";No;No;3,791;Q1;33;4;13;671;122;13;6,75;167,75;25,00;0;United States;Northern America;"Now Publishers Inc";"2004-2025";"Applied Mathematics (Q1); Computer Networks and Communications (Q1)";"Computer Science; Mathematics" +469;12094;"Journal of the American Statistical Association";journal;"01621459, 1537274X";"Taylor and Francis Ltd.";No;No;3,790;Q1;238;304;644;12753;3149;612;4,80;41,95;29,89;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1922-2026";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +470;21100887442;"Forum of Mathematics, Pi";journal;"20505086";"Cambridge University Press";Yes;No;3,787;Q1;26;25;81;1374;252;81;2,33;54,96;13,33;0;United Kingdom;Western Europe;"Cambridge University Press";"2013-2026";"Algebra and Number Theory (Q1); Analysis (Q1); Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1); Mathematical Physics (Q1); Statistics and Probability (Q1)";"Mathematics" +471;12459;"Journal of the National Cancer Institute";journal;"14602105, 00278874";"Oxford University Press";No;No;3,786;Q1;403;390;777;12166;4608;574;5,51;31,19;51,68;3;United Kingdom;Western Europe;"Oxford University Press";"1940-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +472;25959;"Annales Scientifiques de l'Ecole Normale Superieure";journal;"00129593, 18732151";"Societe Mathematique de France";No;No;3,779;Q1;69;11;88;622;216;88;2,34;56,55;6,90;0;France;Western Europe;"Societe Mathematique de France";"1996-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +473;19049;"Trends in Genetics";journal;"01689525, 13624555";"Elsevier Ltd";No;No;3,777;Q1;261;120;349;8395;3401;345;8,30;69,96;41,87;1;United Kingdom;Western Europe;"Elsevier Ltd";"1985-2026";"Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +474;64345;"Ecological Monographs";journal;"00129615, 15577015";"John Wiley and Sons Inc";No;No;3,776;Q1;188;59;123;6791;1399;120;12,60;115,10;34,36;0;United States;Northern America;"John Wiley and Sons Inc";"1974-1977, 1979-1980, 1987-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +475;21537;"Environmental Science and Technology";journal;"0013936X, 15205851";"American Chemical Society";No;No;3,776;Q1;527;2423;5910;153010;75281;5743;11,74;63,15;40,07;23;United States;Northern America;"American Chemical Society";"1967-2026";"Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Medicine (miscellaneous) (Q1)";"Chemistry; Environmental Science; Medicine" +476;21100197947;"Nano Energy";journal;"22112855";"Elsevier B.V.";No;No;3,775;Q1;303;1009;3303;67586;55451;3299;16,79;66,98;33,39;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering; Materials Science" +477;20278;"Microbiology and Molecular Biology Reviews";journal;"10985557, 10922172";"American Society for Microbiology";No;No;3,769;Q1;293;53;100;5566;1131;100;11,30;105,02;41,59;0;United States;Northern America;"American Society for Microbiology";"1997-2025";"Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +478;30039;"Journal of Personality and Social Psychology";journal;"00223514, 19391315";"American Psychological Association";No;No;3,767;Q1;468;112;393;9638;3155;391;6,41;86,05;48,20;1;United States;Northern America;"American Psychological Association";"1965-2026";"Social Psychology (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +479;21101038708;"Innovation";journal;"26666758";"Cell Press";Yes;No;3,764;Q1;73;248;429;12572;6576;341;16,92;50,69;35,13;1;United States;Northern America;"Cell Press";"2020-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +480;19600157901;"Journal of Service Management";journal;"17575818";"Emerald Group Publishing Ltd.";No;No;3,759;Q1;106;57;134;4875;2040;128;12,83;85,53;47,94;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2026";"Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +481;22238;"Operations Research";journal;"0030364X, 15265463";"INFORMS Inst.for Operations Res.and the Management Sciences";No;No;3,759;Q1;173;185;478;9050;2015;474;4,13;48,92;21,23;0;United States;Northern America;"INFORMS Inst.for Operations Res.and the Management Sciences";"1965, 1968-2026";"Computer Science Applications (Q1); Management Science and Operations Research (Q1)";"Computer Science; Decision Sciences" +482;29213;"Cancer Treatment Reviews";journal;"03057372, 15321967";"W.B. Saunders Ltd";No;No;3,745;Q1;180;115;308;10570;3538;305;10,64;91,91;49,11;0;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1974-1991, 1993-2026";"Medicine (miscellaneous) (Q1); Oncology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +483;21100369815;"eBioMedicine";journal;"23523964";"Elsevier B.V.";Yes;No;3,742;Q1;156;554;1673;29041;17265;1439;10,22;52,42;44,07;7;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +484;21101027216;"Plant Communications";journal;"25903462";"Cell Press";Yes;No;3,739;Q1;63;241;436;16036;5180;421;11,05;66,54;38,94;0;United States;Northern America;"Cell Press";"2020-2026";"Biochemistry (Q1); Biotechnology (Q1); Cell Biology (Q1); Molecular Biology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +485;26582;"Geometry and Topology";journal;"13640380, 14653060";"Mathematical Sciences Publishers";No;No;3,738;Q1;64;83;203;3745;488;203;2,30;45,12;13,58;0;United Kingdom;Western Europe;"Mathematical Sciences Publishers";"1997-2026";"Geometry and Topology (Q1)";"Mathematics" +486;21100926579;"Review of Corporate Finance Studies";journal;"20469136, 20469128";"Oxford University Press";No;No;3,738;Q1;30;29;74;1645;245;74;3,22;56,72;27,14;4;United States;Northern America;"Oxford University Press";"2012-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +487;22833;"International Journal of Research in Marketing";journal;"01678116";"Elsevier B.V.";No;No;3,734;Q1;135;97;163;7502;1824;157;10,78;77,34;39,76;6;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Marketing (Q1)";"Business, Management and Accounting" +488;21101037196;"JHEP Reports";journal;"25895559";"Elsevier B.V.";Yes;No;3,734;Q1;65;295;529;11595;4607;485;8,00;39,31;41,70;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Gastroenterology (Q1); Hepatology (Q1); Immunology and Allergy (Q1); Internal Medicine (Q1)";"Medicine" +489;13531;"Journal of the Royal Statistical Society. Series B: Statistical Methodology";journal;"14679868, 13697412";"Oxford University Press";No;No;3,734;Q1;165;74;340;3720;1182;237;2,17;50,27;24,18;1;United Kingdom;Western Europe;"Oxford University Press";"1983, 1989, 1997-2026";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +490;29951;"Journal of Experimental and Clinical Cancer Research";journal;"17569966, 03929078";"BioMed Central Ltd";Yes;No;3,731;Q1;152;315;939;21683;12196;930;11,75;68,83;46,21;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1982-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +491;21100274221;"IEEE Transactions on Cybernetics";journal;"21682275, 21682267";"Institute of Electrical and Electronics Engineers Inc.";No;No;3,724;Q1;227;523;2413;23878;31635;2411;13,48;45,66;30,68;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Human-Computer Interaction (Q1); Information Systems (Q1); Software (Q1)";"Computer Science; Engineering" +492;26031;"Endocrine Pathology";journal;"15590097, 10463976";"Springer";No;No;3,715;Q1;65;46;139;1821;1517;123;3,60;39,59;44,53;0;United States;Northern America;"Springer";"1990-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +493;21100294621;"Journal of Sport and Health Science";journal;"22132961, 20952546";"Elsevier B.V.";Yes;Yes;3,715;Q1;87;100;270;5030;2810;201;9,59;50,30;39,15;4;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)";"Health Professions; Medicine" +494;18795;"Water Research";journal;"00431354, 18792448";"Elsevier Ltd";No;No;3,701;Q1;417;1769;4102;108126;58858;4090;13,68;61,12;38,55;16;United Kingdom;Western Europe;"Elsevier Ltd";"1967-2026";"Civil and Structural Engineering (Q1); Ecological Modeling (Q1); Environmental Engineering (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Engineering; Environmental Science" +495;13649;"Annals of Statistics";journal;"21688966, 00905364";"Institute of Mathematical Statistics";No;No;3,697;Q1;213;104;362;6282;1702;362;3,78;60,40;25,81;0;United States;Northern America;"Institute of Mathematical Statistics";"1996-2025";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +496;29161;"ISPRS Journal of Photogrammetry and Remote Sensing";journal;"09242716";"Elsevier B.V.";No;No;3,694;Q1;221;365;854;25868;12629;850;13,96;70,87;31,06;2;Netherlands;Western Europe;"Elsevier B.V.";"1989-2026";"Atomic and Molecular Physics, and Optics (Q1); Computer Science Applications (Q1); Computers in Earth Sciences (Q1); Engineering (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Computer Science; Earth and Planetary Sciences; Engineering; Physics and Astronomy; Social Sciences" +497;22214;"Genome Research";journal;"15495469, 10889051";"Cold Spring Harbor Laboratory Press";No;No;3,688;Q1;347;212;509;15119;2981;506;5,62;71,32;38,80;1;United States;Northern America;"Cold Spring Harbor Laboratory Press";"1991-2026";"Genetics (Q1); Genetics (clinical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +498;27843;"Annual Reviews in Control";journal;"13675788";"Elsevier Ltd";No;No;3,687;Q1;124;42;146;4887;2160;137;16,28;116,36;22,86;0;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Control and Systems Engineering (Q1); Software (Q1)";"Computer Science; Engineering" +499;26447;"Journal of the European Mathematical Society";journal;"14359855, 14359863";"European Mathematical Society Publishing House";Yes;Yes;3,687;Q1;73;104;272;4870;782;272;2,91;46,83;14,57;0;Germany;Western Europe;"European Mathematical Society Publishing House";"2002-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +500;29113;"Contemporary Accounting Research";journal;"08239150, 19113846";"John Wiley and Sons Inc";No;No;3,686;Q1;141;95;254;6761;1695;253;6,37;71,17;32,84;0;Canada;Northern America;"John Wiley and Sons Inc";"1984-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +501;50032;"Journal of Neuroinflammation";journal;"17422094";"BioMed Central Ltd";Yes;No;3,685;Q1;189;300;947;24581;12017;946;11,19;81,94;47,54;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Cellular and Molecular Neuroscience (Q1); Immunology (Q1); Neurology (Q1); Neuroscience (miscellaneous) (Q1)";"Immunology and Microbiology; Neuroscience" +502;18933;"IEEE Transactions on Wireless Communications";journal;"15361276, 15582248";"Institute of Electrical and Electronics Engineers Inc.";No;No;3,684;Q1;277;706;2749;31543;31210;2749;11,29;44,68;27,14;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2000, 2002-2026";"Applied Mathematics (Q1); Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering; Mathematics" +503;20205;"Trends in Molecular Medicine";journal;"1471499X, 14714914";"Elsevier Ltd";No;No;3,681;Q1;223;142;341;10287;3734;309;10,99;72,44;45,71;0;United Kingdom;Western Europe;"Elsevier Ltd";"2000-2026";"Molecular Biology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology" +504;23406;"Business Strategy and the Environment";journal;"10990836, 09644733";"John Wiley and Sons Ltd";No;No;3,678;Q1;199;645;1038;63972;22051;1030;19,04;99,18;38,29;11;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1992-2026";"Business and International Management (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Environmental Science; Social Sciences" +505;12137;"Journal of Statistical Software";journal;"15487660";"University of California at Los Angeles";Yes;Yes;3,677;Q1;199;43;122;2351;1338;121;13,62;54,67;32,61;0;United States;Northern America;"University of California at Los Angeles";"1996-2025";"Software (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Computer Science; Decision Sciences; Mathematics" +506;26015;"Leukemia";journal;"08876924, 14765551";"Springer Nature";No;No;3,675;Q1;235;347;978;14756;7497;833;6,24;42,52;43,69;4;United Kingdom;Western Europe;"Springer Nature";"1987-2026";"Anesthesiology and Pain Medicine (Q1); Cancer Research (Q1); Hematology (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +507;21101239981;"BMEMat";journal;"27517438, 27517446";"John Wiley and Sons Inc";Yes;No;3,672;Q1;29;73;68;9654;1184;65;17,41;132,25;36,10;0;China;Asiatic Region;"John Wiley and Sons Inc";"2023-2026";"Biomaterials (Q1); Biomedical Engineering (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +508;21100873474;"Current Climate Change Reports";journal;"21986061";"Springer International Publishing AG";No;No;3,670;Q1;70;10;19;1427;247;17;9,44;142,70;33,33;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Atmospheric Science (Q1); Global and Planetary Change (Q1)";"Earth and Planetary Sciences; Environmental Science" +509;21101080487;"Accounts of Materials Research";journal;"26436728";"American Chemical Society";No;No;3,664;Q1;67;107;345;5562;4777;322;12,76;51,98;31,83;0;United States;Northern America;"American Chemical Society";"2020-2026";"Chemical Engineering (miscellaneous) (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1); Polymers and Plastics (Q1)";"Chemical Engineering; Materials Science" +510;21100409642;"Global Strategy Journal";journal;"20425805";"John Wiley & Sons Inc.";No;No;3,664;Q1;60;21;86;2279;794;86;7,14;108,52;26,79;0;United States;Northern America;"John Wiley & Sons Inc.";"2014-2026";"Business and International Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +511;19400158464;"Health Psychology Review";journal;"17437202, 17437199";"Routledge";No;No;3,664;Q1;88;39;95;4290;1277;93;11,87;110,00;63,20;2;United Kingdom;Western Europe;"Routledge";"2007, 2009-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +512;21100390174;"Annual Review of Virology";journal;"23270578, 2327056X";"Annual Reviews Inc.";No;No;3,654;Q1;79;26;75;2863;602;69;6,71;110,12;43,28;0;United States;Northern America;"Annual Reviews Inc.";"2014-2025";"Virology (Q1)";"Immunology and Microbiology" +513;14014;"Psychology and Marketing";journal;"07426046, 15206793";"Wiley-Liss Inc.";No;No;3,642;Q1;166;181;496;15552;6985;495;11,27;85,92;47,80;2;United States;Northern America;"Wiley-Liss Inc.";"1984-2026";"Applied Psychology (Q1); Marketing (Q1)";"Business, Management and Accounting; Psychology" +514;21100797856;"Journal of Extracellular Vesicles";journal;"20013078";"John Wiley & Sons Inc.";Yes;No;3,639;Q1;146;184;340;12497;4881;326;12,21;67,92;45,08;0;United States;Northern America;"John Wiley & Sons Inc.";"2012-2026";"Cell Biology (Q1); Histology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +515;24141;"Artificial Intelligence Review";journal;"02692821, 15737462";"Springer Netherlands";No;No;3,638;Q1;169;406;954;53322;25337;954;25,41;131,33;29,82;1;Netherlands;Western Europe;"Springer Netherlands";"1986-2026";"Artificial Intelligence (Q1); Linguistics and Language (Q1)";"Computer Science; Social Sciences" +516;21101308708;"BMJ Medicine";journal;"27540413";"BMJ Publishing Group";Yes;No;3,636;Q1;26;47;134;1975;1085;109;7,28;42,02;49,87;2;United Kingdom;Western Europe;"BMJ Publishing Group";"2022-2026";"Internal Medicine (Q1)";"Medicine" +517;100147317;"Journal of Supply Chain Management";journal;"15232409, 1745493X";"Wiley-Blackwell";No;No;3,632;Q1;125;26;56;2427;630;53;12,40;93,35;33,75;1;United States;Northern America;"Wiley-Blackwell";"1999-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Information Systems (Q1); Management Information Systems (Q1); Marketing (Q1)";"Business, Management and Accounting; Computer Science; Economics, Econometrics and Finance" +518;21101136879;"Annual Review of Biomedical Data Science";journal;"25743414";"Annual Reviews Inc.";No;No;3,626;Q1;33;28;59;3371;544;59;9,20;120,39;39,39;0;United States;Northern America;"Annual Reviews Inc.";"2018-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biomedical Engineering (Q1); Cancer Research (Q1); Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering" +519;21359;"Seminars in Immunology";journal;"10445323, 10963618";"Academic Press";No;No;3,617;Q1;160;54;167;9291;1687;152;10,74;172,06;48,31;0;United States;Northern America;"Academic Press";"1989-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +520;21101061414;"npj Precision Oncology";journal;"2397768X";"Nature Research";Yes;No;3,616;Q1;59;405;507;23357;4884;501;9,57;57,67;41,22;0;United Kingdom;Western Europe;"Nature Research";"2017-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +521;22405;"Production and Operations Management";journal;"10591478, 19375956";"SAGE Publications Inc.";No;No;3,612;Q1;161;303;616;18534;4811;614;5,48;61,17;32,70;8;United States;Northern America;"SAGE Publications Inc.";"1992-2026";"Industrial and Manufacturing Engineering (Q1); Management of Technology and Innovation (Q1); Management Science and Operations Research (Q1)";"Business, Management and Accounting; Decision Sciences; Engineering" +522;14308;"Biological Psychiatry";journal;"00063223, 18732402";"Elsevier Inc.";No;No;3,611;Q1;380;332;859;19345;5437;530;5,88;58,27;45,28;1;United States;Northern America;"Elsevier Inc.";"1969-2026";"Biological Psychiatry (Q1)";"Neuroscience" +523;26533;"Advances in Colloid and Interface Science";journal;"00018686";"Elsevier B.V.";No;No;3,602;Q1;255;261;495;55883;13151;495;26,15;214,11;33,56;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-1972, 1974-2026";"Colloid and Surface Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Surfaces and Interfaces (Q1)";"Chemical Engineering; Chemistry; Physics and Astronomy" +524;15849;"Journal of Biomedical Science";journal;"10217770, 14230127";"BioMed Central Ltd";Yes;Yes;3,601;Q1;130;103;299;10792;4174;299;14,16;104,78;43,18;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1993-2026";"Biochemistry (medical) (Q1); Cell Biology (Q1); Clinical Biochemistry (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Pharmacology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +525;29009;"Journal of Public Economics";journal;"00472727";"Elsevier B.V.";No;No;3,601;Q1;192;170;451;8804;1863;451;3,48;51,79;29,10;28;Netherlands;Western Europe;"Elsevier B.V.";"1972-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +526;21101166978;"Eco-Environment and Health";journal;"27729850";"Elsevier B.V.";Yes;No;3,598;Q1;29;66;118;3619;1631;101;10,99;54,83;45,66;1;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Ecology (Q1); Environmental Science (miscellaneous) (Q1); Health, Toxicology and Mutagenesis (Q1)";"Environmental Science" +527;11300153408;"JACC: Cardiovascular Interventions";journal;"18767605, 19368798";"Elsevier Inc.";No;No;3,588;Q1;174;568;1636;6798;6954;858;4,31;11,97;17,75;1;United States;Northern America;"Elsevier Inc.";"2008-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +528;16232;"British Journal of Political Science";journal;"00071234, 14692112";"Cambridge University Press";Yes;No;3,576;Q1;128;179;288;12164;1867;288;5,74;67,96;31,67;0;United Kingdom;Western Europe;"Cambridge University Press";"1971-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +529;14735;"Government Information Quarterly";journal;"0740624X";"Elsevier Ltd";No;No;3,575;Q1;157;72;239;6890;4053;236;14,76;95,69;32,37;3;United Kingdom;Western Europe;"Elsevier Ltd";"1984-2026";"E-learning (Q1); Law (Q1); Library and Information Sciences (Q1); Sociology and Political Science (Q1)";"Social Sciences" +530;144840;"PLOS Medicine";journal;"15491277, 15491676";"Public Library of Science";Yes;No;3,573;Q1;303;191;546;7798;4980;532;8,64;40,83;44,47;7;United States;Northern America;"Public Library of Science";"2004-2026";"Biochemistry (Q1); Biotechnology (Q1); Cell Biology (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +531;18476;"European Respiratory Review";journal;"16000617, 09059180";"European Respiratory Society";Yes;No;3,570;Q1;115;130;317;11604;3698;296;10,20;89,26;43,82;0;Switzerland;Western Europe;"European Respiratory Society";"1992-2002, 2004-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +532;27679;"Journal of Product Innovation Management";journal;"15405885, 07376782";"Wiley-Blackwell Publishing Ltd";No;No;3,570;Q1;189;65;131;7225;1547;120;12,51;111,15;28,96;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1984-2026";"Engineering (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Engineering" +533;130165;"Journal of Integrative Plant Biology";journal;"16729072, 17447909";"Wiley-Blackwell Publishing Ltd";No;No;3,566;Q1;132;245;520;19187;6173;497;11,47;78,31;40,35;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2005-2026";"Biochemistry (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +534;25725;"World Politics";journal;"00438871, 10863338";"Johns Hopkins University Press";No;No;3,565;Q1;139;0;20;0;120;20;5,25;0,00;0,00;0;United States;Northern America;"Johns Hopkins University Press";"1948-2023";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +535;21101041823;"Strategy Science";journal;"23332077, 23332050";"INFORMS Inst.for Operations Res.and the Management Sciences";No;No;3,560;Q1;37;23;85;2332;420;82;5,94;101,39;21,57;0;United States;Northern America;"INFORMS Inst.for Operations Res.and the Management Sciences";"2016-2025";"Business and International Management (Q1); Management of Technology and Innovation (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +536;20497;"Annual Review of Materials Research";book series;"15317331, 15454118";"Annual Reviews Inc.";No;No;3,557;Q1;195;19;47;2844;630;47;13,33;149,68;32,97;0;United States;Northern America;"Annual Reviews Inc.";"2003-2025";"Materials Science (miscellaneous) (Q1)";"Materials Science" +537;21100867475;"npj Breast Cancer";journal;"23744677";"Nature Research";Yes;No;3,554;Q1;63;146;329;8075;2724;319;7,56;55,31;52,70;1;United Kingdom;Western Europe;"Nature Research";"2015-2026";"Oncology (Q1); Pharmacology (medical) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +538;21100228543;"JAMA Surgery";journal;"21686262, 21686254";"American Medical Association";No;No;3,548;Q1;226;339;1173;5911;5871;513;4,74;17,44;38,67;0;United States;Northern America;"American Medical Association";"2013-2026";"Surgery (Q1)";"Medicine" +539;4700152287;"Academy of Management Perspectives";journal;"15589080";"Academy of Management";No;No;3,547;Q1;177;42;69;4412;612;67;8,50;105,05;29,29;1;United States;Northern America;"Academy of Management";"1988, 1990, 1992-1993, 2006-2025";"Business and International Management (Q1); Marketing (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +540;28964;"Journal of Applied Econometrics";journal;"10991255, 08837252";"John Wiley and Sons Ltd";No;No;3,547;Q1;128;55;210;2449;741;210;2,74;44,53;12,80;10;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1986-2026";"Economics and Econometrics (Q1); Social Sciences (miscellaneous) (Q1)";"Economics, Econometrics and Finance; Social Sciences" +541;16715;"Annual Review of Phytopathology";journal;"00664286, 15452107";"Annual Reviews Inc.";No;No;3,544;Q1;204;27;54;3963;743;54;13,19;146,78;31,20;1;United States;Northern America;"Annual Reviews Inc.";"1973, 1981, 1987, 1989-2025";"Medicine (miscellaneous) (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Medicine" +542;19700188320;"ACS Catalysis";journal;"21555435";"American Chemical Society";No;No;3,541;Q1;350;1725;4471;115663;59618;4455;12,99;67,05;32,76;0;United States;Northern America;"American Chemical Society";"2011-2026";"Catalysis (Q1); Chemistry (miscellaneous) (Q1)";"Chemical Engineering; Chemistry" +543;21100204914;"Journal of Cachexia, Sarcopenia and Muscle";journal;"21905991, 21906009";"Wiley-Blackwell";Yes;No;3,534;Q1;130;396;765;15074;8607;694;9,68;38,07;41,44;2;United States;Northern America;"Wiley-Blackwell";"2010-2026";"Orthopedics and Sports Medicine (Q1); Physiology (medical) (Q1)";"Medicine" +544;17900156719;"International Review of Sport and Exercise Psychology";journal;"1750984X, 17509858";"Routledge";No;No;3,533;Q1;68;60;84;6249;1086;83;12,52;104,15;42,74;0;United Kingdom;Western Europe;"Routledge";"2009-2026";"Applied Psychology (Q1); Sports Science (Q1)";"Health Professions; Psychology" +545;21119;"International Materials Reviews";journal;"09506608, 17432804";"SAGE Publications Inc.";No;No;3,527;Q1;147;20;70;5575;1609;70;19,00;278,75;23,36;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1987-2026";"Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science" +546;27162;"Journal of Business and Economic Statistics";journal;"07350015, 15372707";"Taylor and Francis Ltd.";No;No;3,508;Q1;127;121;360;5071;1273;336;2,92;41,91;23,67;10;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2026";"Economics and Econometrics (Q1); Social Sciences (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics; Social Sciences" +547;21100900345;"JAMA Network Open";journal;"25743805";"American Medical Association";Yes;No;3,507;Q1;178;2484;6904;68282;54895;5965;8,12;27,49;49,19;49;United States;Northern America;"American Medical Association";"2018-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +548;19700180533;"International Journal of Oral Science";journal;"20493169, 16742818";"Springer Nature";Yes;No;3,506;Q1;83;69;171;6452;2917;171;17,69;93,51;40,69;0;United Kingdom;Western Europe;"Springer Nature";"2009-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +549;21239;"Drugs";journal;"00126667, 11791950";"";Yes;No;3,500;Q1;212;129;408;8787;5214;390;13,28;68,12;37,88;0;Switzerland;Western Europe;"";"1971-2026";"Pharmacology (medical) (Q1)";"Medicine" +550;20550;"Journal of Business Research";journal;"01482963";"Elsevier Inc.";No;No;3,498;Q1;322;669;2297;65941;37368;2275;15,01;98,57;40,36;9;United States;Northern America;"Elsevier Inc.";"1973-2026";"Business and International Management (Q1); Management of Technology and Innovation (Q1); Marketing (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +551;21101241968;"Opto-Electronic Science";journal;"20970382";"";Yes;Yes;3,494;Q1;33;25;79;2400;1672;76;24,91;96,00;30,89;0;China;Asiatic Region;"";"2022-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Statistical and Nonlinear Physics (Q1); Surfaces and Interfaces (Q1)";"Physics and Astronomy" +552;25424;"American Journal of Hematology";journal;"03618609, 10968652";"John Wiley and Sons Inc";No;No;3,493;Q1;145;362;1047;10860;5931;535;5,95;30,00;43,93;4;United States;Northern America;"John Wiley and Sons Inc";"1976-2026";"Hematology (Q1)";"Medicine" +553;20333;"Journal of Politics";journal;"14682508, 00223816";"University of Chicago Press";No;No;3,492;Q1;167;129;417;6692;2083;416;3,36;51,88;31,60;12;United Kingdom;Western Europe;"University of Chicago Press";"1939-2026";"Sociology and Political Science (Q1)";"Social Sciences" +554;21100332429;"Annual Review of Statistics and Its Application";journal;"23268298, 2326831X";"Annual Reviews Inc.";No;No;3,491;Q1;53;23;75;2239;991;75;10,12;97,35;36,92;0;United States;Northern America;"Annual Reviews Inc.";"2014-2025";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +555;21100982468;"npj Climate and Atmospheric Science";journal;"23973722";"Springer Nature";Yes;No;3,491;Q1;70;383;633;25827;6210;624;9,14;67,43;33,17;6;United States;Northern America;"Springer Nature";"2018-2026";"Atmospheric Science (Q1); Environmental Chemistry (Q1); Global and Planetary Change (Q1)";"Earth and Planetary Sciences; Environmental Science" +556;14726;"Technovation";journal;"01664972";"Elsevier Ltd";No;No;3,491;Q1;180;158;534;16086;8574;523;16,18;101,81;33,68;1;United Kingdom;Western Europe;"Elsevier Ltd";"1981-2026";"Engineering (miscellaneous) (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting; Engineering" +557;21100368204;"Cancer Immunology Research";journal;"23266066, 23266074";"American Association for Cancer Research Inc.";No;No;3,480;Q1;157;142;386;8071;2946;371;6,65;56,84;44,04;0;United States;Northern America;"American Association for Cancer Research Inc.";"2013-2026";"Cancer Research (Q1); Immunology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +558;14704;"Technological Forecasting and Social Change";journal;"00401625";"Elsevier Inc.";No;No;3,479;Q1;241;433;2267;43030;42204;2250;16,79;99,38;37,44;15;United States;Northern America;"Elsevier Inc.";"1970-2026";"Applied Psychology (Q1); Business and International Management (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting; Psychology" +559;74502;"Financial Management";journal;"1755053X, 00463892";"John Wiley and Sons Inc";No;No;3,477;Q1;88;49;82;3110;606;82;9,50;63,47;21,97;0;United States;Northern America;"John Wiley and Sons Inc";"1996-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +560;5100155078;"Foundations and Trends in Computer Graphics and Vision";journal;"15722759, 15722740";"Now Publishers Inc";No;No;3,472;Q1;32;2;12;132;252;12;20,43;66,00;60,00;0;United States;Northern America;"Now Publishers Inc";"2005-2007, 2009-2016, 2018-2025";"Computer Vision and Pattern Recognition (Q1)";"Computer Science" +561;21101161916;"Superconductivity";journal;"27728307";"Elsevier B.V.";Yes;No;3,472;Q1;21;41;98;1640;772;96;8,57;40,00;27,01;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering; Materials Science; Physics and Astronomy" +562;21101017370;"npj Flexible Electronics";journal;"23974621";"Nature Publishing Group";Yes;No;3,471;Q1;69;124;235;8880;3795;234;14,34;71,61;30,53;0;United Kingdom;Western Europe;"Nature Publishing Group";"2017-2026";"Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +563;18091;"Sociological Methods and Research";journal;"00491241, 15528294";"SAGE Publications Inc.";No;No;3,471;Q1;106;78;173;5283;1644;172;9,58;67,73;31,08;5;United States;Northern America;"SAGE Publications Inc.";"1972-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +564;21101021078;"Annals of PDE";journal;"21992576, 25245317";"Springer Science + Business Media";No;No;3,464;Q1;33;31;73;1703;220;73;2,51;54,94;10,45;0;Switzerland;Western Europe;"Springer Science + Business Media";"2015-2026";"Analysis (Q1); Applied Mathematics (Q1); Geometry and Topology (Q1); Mathematical Physics (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Mathematics; Physics and Astronomy" +565;24246;"American Journal of Clinical Dermatology";journal;"11791888, 11750561";"";No;No;3,462;Q1;124;82;237;5988;2551;215;10,12;73,02;49,03;2;Switzerland;Western Europe;"";"2000-2026";"Dermatology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +566;21101107327;"Energy Material Advances";journal;"26927640";"American Association for the Advancement of Science";Yes;Yes;3,459;Q1;39;40;117;3036;1638;114;15,54;75,90;33,21;0;United States;Northern America;"American Association for the Advancement of Science";"2020-2025";"Energy (miscellaneous) (Q1); Fuel Technology (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Materials Science" +567;21100873339;"ESMO Open";journal;"20597029";"Elsevier B.V.";Yes;No;3,455;Q1;81;377;741;12394;5484;629;7,59;32,88;45,83;3;United Kingdom;Western Europe;"Elsevier B.V.";"2016-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +568;29374;"Energy Economics";journal;"01409883, 18736181";"Elsevier B.V.";No;No;3,448;Q1;252;870;1907;56396;29964;1899;14,60;64,82;33,68;41;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Economics and Econometrics (Q1); Energy (miscellaneous) (Q1)";"Economics, Econometrics and Finance; Energy" +569;23181;"Europace";journal;"10995129, 15322092";"Oxford University Press";No;No;3,446;Q1;145;319;1073;11274;7245;880;7,22;35,34;26,12;1;United Kingdom;Western Europe;"Oxford University Press";"1999-2026";"Cardiology and Cardiovascular Medicine (Q1); Physiology (medical) (Q1)";"Medicine" +570;16976;"Annual Review of Sociology";book series;"03600572, 15452115";"Annual Reviews Inc.";No;No;3,444;Q1;230;25;83;3444;873;83;8,48;137,76;62,79;0;United States;Northern America;"Annual Reviews Inc.";"1975, 1977, 1979-1981, 1985-2025";"Sociology and Political Science (Q1)";"Social Sciences" +571;20700195026;"Acta Pharmaceutica Sinica B";journal;"22113843, 22113835";"Chinese Academy of Medical Sciences";Yes;No;3,439;Q1;146;499;957;42919;14994;903;13,35;86,01;43,01;0;China;Asiatic Region;"Chinese Academy of Medical Sciences";"2012-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +572;21101277763;"Visual Intelligence";journal;"27319008, 20973330";"Springer";Yes;Yes;3,434;Q1;17;29;68;2284;700;67;10,29;78,76;33,33;0;Singapore;Asiatic Region;"Springer";"2023-2026";"Computer Graphics and Computer-Aided Design (Q1); Computer Vision and Pattern Recognition (Q1); Signal Processing (Q1)";"Computer Science" +573;21100372442;"Current Opinion in Psychology";journal;"2352250X";"Elsevier B.V.";No;No;3,432;Q1;127;145;603;8322;6807;588;8,64;57,39;54,55;2;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +574;18437;"European Journal of Political Research";journal;"03044130, 14756765";"Wiley-Blackwell Publishing Ltd";No;No;3,432;Q1;133;107;213;7212;1617;209;7,08;67,40;34,07;20;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1973-2025";"Sociology and Political Science (Q1)";"Social Sciences" +575;17271;"Medical Image Analysis";journal;"13618415, 13618423";"Elsevier B.V.";No;No;3,430;Q1;201;382;830;25752;14617;826;16,57;67,41;30,27;0;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Computer Graphics and Computer-Aided Design (Q1); Computer Vision and Pattern Recognition (Q1); Health Informatics (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Computer Science; Health Professions; Medicine" +576;21100456838;"Cell Chemical Biology";journal;"24519448, 24519456";"Elsevier Ltd";No;No;3,427;Q1;223;136;490;8443;3219;390;6,65;62,08;41,55;0;United Kingdom;Western Europe;"Elsevier Ltd";"2016-2026";"Biochemistry (Q1); Clinical Biochemistry (Q1); Drug Discovery (Q1); Molecular Biology (Q1); Molecular Medicine (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +577;19084;"Molecular Aspects of Medicine";journal;"00982997, 18729452";"Elsevier Ltd";No;No;3,427;Q1;176;58;175;8928;2251;163;13,13;153,93;41,33;0;United Kingdom;Western Europe;"Elsevier Ltd";"1976-1985, 1987-2026";"Biochemistry (Q1); Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +578;21101073279;"Annual Review of Control, Robotics, and Autonomous Systems";journal;"25735144";"Annual Reviews Inc.";No;No;3,426;Q1;53;16;62;2281;1152;62;16,00;142,56;28,99;0;United States;Northern America;"Annual Reviews Inc.";"2018-2025";"Artificial Intelligence (Q1); Control and Systems Engineering (Q1); Engineering (miscellaneous) (Q1); Human-Computer Interaction (Q1)";"Computer Science; Engineering" +579;21101111801;"Satellite Navigation";journal;"26629291, 26621363";"Springer International Publishing";Yes;Yes;3,423;Q1;40;34;90;1721;1307;90;13,47;50,62;29,24;0;China;Asiatic Region;"Springer International Publishing";"2020-2026";"Aerospace Engineering (Q1); Electrical and Electronic Engineering (Q1); Signal Processing (Q1)";"Computer Science; Engineering" +580;19370;"Journal of the American Society of Nephrology";journal;"15333450, 10466673";"Wolters Kluwer Health";No;No;3,421;Q1;342;406;696;13503;4012;486;5,19;33,26;42,45;0;United States;Northern America;"Wolters Kluwer Health";"1990-2026";"Critical Care and Intensive Care Medicine (Q1); Epidemiology (Q1); Medicine (miscellaneous) (Q1); Nephrology (Q1); Transplantation (Q1)";"Medicine" +581;21101146363;"Academy of Management Discoveries";journal;"21681007";"Academy of Management";No;No;3,416;Q1;34;34;91;2568;505;81;5,10;75,53;35,90;0;United States;Northern America;"Academy of Management";"2019-2025";"Business and International Management (Q1); Industrial Relations (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +582;5800173382;"ISME Journal";journal;"17517362, 17517370";"Oxford University Press";Yes;No;3,415;Q1;267;298;762;22598;8037;747;9,52;75,83;42,55;0;United Kingdom;Western Europe;"Oxford University Press";"2007-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Microbiology (Q1)";"Agricultural and Biological Sciences; Immunology and Microbiology" +583;7100153107;"Seminars in Immunopathology";journal;"18632297, 18632300";"Springer Science and Business Media Deutschland GmbH";No;No;3,412;Q1;134;41;121;5774;1366;112;10,43;140,83;54,32;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2007-2025";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +584;22580;"Earth-Science Reviews";journal;"00128252";"Elsevier B.V.";No;No;3,405;Q1;291;233;839;46351;10631;828;11,66;198,93;27,46;1;Netherlands;Western Europe;"Elsevier B.V.";"1966-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +585;15049;"Biometrika";journal;"14643510, 00063444";"Oxford University Press";No;No;3,400;Q1;142;96;232;3348;897;227;3,66;34,88;20,60;0;United Kingdom;Western Europe;"Oxford University Press";"1908-1913, 1917, 1945, 1947-1951, 1965-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Agricultural and Biological Sciences; Decision Sciences; Mathematics" +586;21100242814;"eLife";journal;"2050084X";"eLife Sciences Publications Ltd";Yes;No;3,395;Q1;246;0;3511;0;22922;3368;6,21;0,00;0,00;0;United Kingdom;Western Europe;"eLife Sciences Publications Ltd";"2012-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Neuroscience" +587;19181;"Psychotherapy and Psychosomatics";journal;"00333190, 14230348";"S. Karger AG";No;No;3,391;Q1;128;63;156;3174;1277;93;4,48;50,38;49,33;0;Switzerland;Western Europe;"S. Karger AG";"1953-2026";"Applied Psychology (Q1); Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +588;21101042161;"Environmental Science and Ecotechnology";journal;"26664984";"Elsevier B.V.";Yes;No;3,389;Q1;55;81;243;6286;4086;223;16,47;77,60;37,31;1;China;Asiatic Region;"Elsevier B.V.";"2020-2026";"Ecology (Q1); Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1)";"Environmental Science" +589;8000153138;"Computer Science Review";journal;"15740137";"Elsevier Ireland Ltd";No;No;3,386;Q1;102;87;135;15287;3363;135;25,08;175,71;25,63;1;Ireland;Western Europe;"Elsevier Ireland Ltd";"2007-2026";"Computer Science (miscellaneous) (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +590;14599;"Ecology Letters";journal;"1461023X, 14610248";"Wiley-Blackwell Publishing Ltd";No;No;3,382;Q1;346;267;622;20490;5423;415;7,22;76,74;42,08;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1998-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +591;16592;"Plant Biotechnology Journal";journal;"14677644, 14677652";"Wiley-Blackwell Publishing Ltd";Yes;No;3,382;Q1;176;531;731;29910;8391;728;10,58;56,33;41,53;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2003-2026";"Agronomy and Crop Science (Q1); Biotechnology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +592;19900191605;"Wiley Interdisciplinary Reviews: Climate Change";journal;"17577799, 17577780";"John Wiley & Sons Inc.";No;No;3,382;Q1;142;51;161;6656;2150;158;11,87;130,51;40,95;1;United States;Northern America;"John Wiley & Sons Inc.";"2010-2026";"Atmospheric Science (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +593;14834;"Journal of Development Economics";journal;"03043878";"Elsevier B.V.";No;No;3,381;Q1;196;155;415;9354;2598;415;5,70;60,35;32,42;41;Netherlands;Western Europe;"Elsevier B.V.";"1974-2026";"Development (Q1); Economics and Econometrics (Q1)";"Economics, Econometrics and Finance; Social Sciences" +594;21101154270;"Green Energy and Intelligent Transportation";journal;"27731537, 20972512";"Elsevier B.V.";Yes;No;3,375;Q1;38;60;114;3192;2401;111;22,50;53,20;21,28;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Engineering (miscellaneous) (Q1)";"Engineering" +595;20862;"Trends in Microbiology";journal;"18784380, 0966842X";"Elsevier Ltd";No;No;3,364;Q1;251;174;438;10159;4604;426;10,45;58,39;43,74;0;United Kingdom;Western Europe;"Elsevier Ltd";"1993-2026";"Infectious Diseases (Q1); Microbiology (Q1); Microbiology (medical) (Q1); Virology (Q1)";"Immunology and Microbiology; Medicine" +596;24909;"Automatica";journal;"00051098";"Elsevier Ltd";No;No;3,360;Q1;343;562;1633;19369;12532;1612;7,52;34,46;24,58;0;United Kingdom;Western Europe;"Elsevier Ltd";"1963-2026";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Engineering" +597;21101183464;"Human Reproduction Open";journal;"23993529";"Oxford University Press";Yes;No;3,354;Q1;48;74;187;3687;2017;157;8,35;49,82;51,35;0;United Kingdom;Western Europe;"Oxford University Press";"2017-2026";"Embryology (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)";"Medicine" +598;29400;"Journal of World Business";journal;"10909516";"Elsevier Inc.";No;No;3,353;Q1;158;37;152;4045;1737;150;10,21;109,32;31,09;0;United States;Northern America;"Elsevier Inc.";"1997-2026";"Business and International Management (Q1); Finance (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +599;12321;"Information Systems Journal";journal;"13501917, 13652575";"Wiley-Blackwell Publishing Ltd";No;No;3,351;Q1;122;81;165;6784;1790;141;10,49;83,75;35,71;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1991-2026";"Computer Networks and Communications (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +600;21100399469;"EcoSal Plus";journal;"23246200";"American Society for Microbiology";No;No;3,349;Q1;53;13;21;1965;191;21;10,12;151,15;40,43;0;United States;Northern America;"American Society for Microbiology";"2004-2025";"Microbiology (Q1)";"Immunology and Microbiology" +601;14305;"Systematic Biology";journal;"1076836X, 10635157";"Oxford University Press";No;No;3,343;Q1;215;62;264;5680;1835;264;6,00;91,61;30,11;1;United Kingdom;Western Europe;"Oxford University Press";"1952, 1968-1975, 1977-1984, 1986, 1988-1989, 1991-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +602;21100782975;"Liver Cancer";journal;"22351795, 16645553";"S. Karger AG";Yes;No;3,334;Q1;69;71;182;3485;1645;148;8,92;49,08;29,27;0;Switzerland;Western Europe;"S. Karger AG";"2009, 2012-2026";"Hepatology (Q1); Oncology (Q1)";"Medicine" +603;18080;"Robotics and Computer-Integrated Manufacturing";journal;"07365845";"Elsevier Ltd";No;No;3,333;Q1;147;189;462;11587;8008;459;16,42;61,31;22,85;1;United Kingdom;Western Europe;"Elsevier Ltd";"1984-1994, 1996-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Mathematics (miscellaneous) (Q1); Software (Q1)";"Computer Science; Engineering; Mathematics" +604;21101292891;"International Journal of Network Dynamics and Intelligence";journal;"26536226";"Scilight Press Pty. Ltd";No;No;3,327;Q1;24;30;61;1318;1018;60;16,58;43,93;38,61;0;Australia;Pacific Region;"Scilight Press Pty. Ltd";"2022-2025";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1)";"Computer Science" +605;17809;"Trends in Plant Science";journal;"13601385, 18784372";"Elsevier Ltd";No;No;3,324;Q1;336;207;513;11693;6314;494;10,24;56,49;32,09;2;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +606;26580;"Geometric and Functional Analysis";journal;"14208970, 1016443X";"Springer International Publishing";No;No;3,322;Q1;84;31;107;1410;277;107;2,18;45,48;10,81;0;Switzerland;Western Europe;"Springer International Publishing";"1991-2026";"Analysis (Q1); Geometry and Topology (Q1)";"Mathematics" +607;21100873488;"International Journal of STEM Education";journal;"21967822";"SpringerOpen";Yes;No;3,316;Q1;78;68;200;6155;2895;188;14,09;90,51;55,00;1;Switzerland;Western Europe;"SpringerOpen";"2014-2026";"Education (Q1)";"Social Sciences" +608;21101039661;"Opto-Electronic Advances";journal;"20964579";"Chinese Academy of Sciences";Yes;No;3,315;Q1;65;62;180;3667;3129;174;18,30;59,15;32,69;0;China;Asiatic Region;"Chinese Academy of Sciences";"2018-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Surfaces, Coatings and Films (Q1)";"Engineering; Materials Science; Physics and Astronomy" +609;17167;"Public Administration Review";journal;"00333352, 15406210";"Wiley-Blackwell";No;No;3,305;Q1;196;162;326;11543;2635;268;7,17;71,25;40,11;15;United Kingdom;Western Europe;"Wiley-Blackwell";"1978-1983, 1985, 1988, 1996-2026";"Marketing (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Social Sciences" +610;21101080172;"Chem Catalysis";journal;"26671093, 26671107";"Cell Press";No;No;3,304;Q1;61;200;812;10290;6089;501;6,12;51,45;31,67;0;United States;Northern America;"Cell Press";"2021-2026";"Chemistry (miscellaneous) (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry" +611;14966;"Journal of Manufacturing Systems";journal;"02786125";"Elsevier B.V.";No;No;3,304;Q1;138;261;670;17591;13045;664;16,87;67,40;26,27;0;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Control and Systems Engineering (Q1); Hardware and Architecture (Q1); Industrial and Manufacturing Engineering (Q1); Software (Q1)";"Computer Science; Engineering" +612;21100853949;"Biomarker Research";journal;"20507771";"BioMed Central Ltd";Yes;No;3,303;Q1;69;157;345;16236;3816;286;10,78;103,41;45,26;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2013-2026";"Biochemistry (medical) (Q1); Clinical Biochemistry (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +613;22126;"Genes and Development";journal;"15495477, 08909369";"Cold Spring Harbor Laboratory Press";No;No;3,302;Q1;499;103;259;8868;1426;246;4,52;86,10;42,57;1;United States;Northern America;"Cold Spring Harbor Laboratory Press";"1987-2026";"Developmental Biology (Q1); Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +614;15823;"Journal of Public Administration Research and Theory";journal;"14779803, 10531858";"Oxford University Press";No;No;3,301;Q1;157;33;135;2359;1193;135;9,52;71,48;43,21;4;United Kingdom;Western Europe;"Oxford University Press";"1991-2025";"Marketing (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Social Sciences" +615;19700201158;"Studies in Science Education";journal;"19408412, 03057267";"Taylor and Francis Ltd.";No;No;3,300;Q1;65;16;26;2005;426;26;15,82;125,31;59,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974-2026";"Education (Q1)";"Social Sciences" +616;17421;"Cytokine and Growth Factor Reviews";journal;"18790305, 13596101";"Elsevier Ltd";No;No;3,297;Q1;193;66;158;8783;2098;156;13,06;133,08;40,50;0;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Endocrinology, Diabetes and Metabolism (Q1); Immunology (Q1); Immunology and Allergy (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +617;23741;"Hypertension";journal;"0194911X, 15244563";"Lippincott Williams and Wilkins";No;No;3,295;Q1;315;276;889;11601;6987;807;7,83;42,03;45,59;0;United States;Northern America;"Lippincott Williams and Wilkins";"1979-2026";"Internal Medicine (Q1)";"Medicine" +618;6400153126;"Theoretical Economics";journal;"15557561, 19336837";"";Yes;No;3,295;Q1;43;40;153;1654;201;153;1,23;41,35;11,24;0;United Kingdom;Western Europe;"";"2007-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +619;24671;"Memoirs of the American Mathematical Society";journal;"00659266, 19476221";"American Mathematical Society";No;No;3,294;Q1;76;60;174;4057;482;174;2,42;67,62;23,24;0;United States;Northern America;"American Mathematical Society";"1996-2006, 2009-2025";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +620;19700201211;"Cell Death and Disease";journal;"20414889";"Springer Nature";Yes;No;3,291;Q1;202;873;2709;49737;30943;2698;11,15;56,97;46,58;0;United Kingdom;Western Europe;"Springer Nature";"2010-2026";"Cancer Research (Q1); Cell Biology (Q1); Cellular and Molecular Neuroscience (Q1); Immunology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Neuroscience" +621;19700183600;"Journal of Hospitality Marketing and Management";journal;"19368631, 19368623";"Routledge";No;No;3,291;Q1;95;50;139;4433;2574;131;15,00;88,66;37,14;0;United States;Northern America;"Routledge";"2009-2026";"Management Information Systems (Q1); Marketing (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +622;21101030209;"Energy and Environmental Materials";journal;"25750348, 25750356";"John Wiley & Sons Inc.";No;No;3,290;Q1;81;206;592;14059;8761;583;14,34;68,25;31,56;1;United States;Northern America;"John Wiley & Sons Inc.";"2018-2026";"Energy (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Energy; Environmental Science; Materials Science" +623;21100470165;"Advanced Science";journal;"21983844";"John Wiley and Sons Inc";Yes;No;3,288;Q1;253;4522;6566;309283;98121;6554;14,06;68,40;38,25;5;Germany;Western Europe;"John Wiley and Sons Inc";"2014-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Chemical Engineering (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science; Medicine; Physics and Astronomy" +624;20741;"Clinical Reviews in Allergy and Immunology";journal;"10800549, 15590267";"Springer";No;No;3,286;Q1;116;112;150;16872;2021;150;16,30;150,64;46,79;0;United States;Northern America;"Springer";"1995-2026";"Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +625;36483;"Global Environmental Change";journal;"09593780, 18729495";"Elsevier Ltd";No;No;3,283;Q1;255;90;377;7520;4413;376;10,11;83,56;42,11;9;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2026";"Ecology (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)";"Environmental Science; Social Sciences" +626;21121;"Proceedings of the National Academy of Sciences of the United States of America";journal;"10916490, 00278424";"National Academy of Sciences";Yes;No;3,283;Q1;929;4305;11040;236204;95587;10095;8,23;54,87;36,99;78;United States;Northern America;"National Academy of Sciences";"1917, 1933, 1945-1952, 1954-1955, 1960-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +627;12442;"Progress in Human Geography";journal;"14770288, 03091325";"SAGE Publications Ltd";No;No;3,279;Q1;195;51;188;6317;1843;184;8,93;123,86;41,98;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1977-2026";"Geography, Planning and Development (Q1)";"Social Sciences" +628;16929;"American Sociological Review";journal;"00031224, 19398271";"American Sociological Association";No;No;3,277;Q1;252;49;113;4613;863;110;7,09;94,14;46,74;0;United States;Northern America;"American Sociological Association";"1965-2026";"Sociology and Political Science (Q1)";"Social Sciences" +629;19600166310;"EMBO Molecular Medicine";journal;"17574676, 17574684";"Springer Science and Business Media Deutschland GmbH";Yes;No;3,277;Q1;162;165;446;10764;3261;382;6,69;65,24;44,62;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2009-2026";"Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology" +630;21100899528;"Adolescent Research Review";journal;"23638354, 23638346";"Springer International Publishing AG";No;No;3,275;Q1;46;41;73;4155;794;73;9,18;101,34;59,16;3;Switzerland;Western Europe;"Springer International Publishing AG";"2016-2026";"Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1); Social Sciences (miscellaneous) (Q1)";"Medicine; Psychology; Social Sciences" +631;18555;"Journal of Cell Biology";journal;"15408140, 00219525";"Rockefeller University Press";No;No;3,273;Q1;432;260;748;3546;4095;706;4,81;13,64;45,17;0;United States;Northern America;"Rockefeller University Press";"1955-2026";"Cell Biology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +632;26769;"Astrophysical Journal, Supplement Series";journal;"15384365, 00670049";"American Astronomical Society";Yes;No;3,269;Q1;296;347;908;29677;6945;908;6,81;85,52;29,90;0;United Kingdom;Western Europe;"American Astronomical Society";"1984, 1987-2025";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +633;21101021443;"eTransportation";journal;"25901168";"Elsevier B.V.";No;No;3,267;Q1;66;127;211;10452;4095;205;19,01;82,30;27,14;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Automotive Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Transportation (Q1)";"Energy; Engineering; Social Sciences" +634;21100778655;"Current Obesity Reports";journal;"21624968";"Springer";No;No;3,265;Q1;85;84;124;9103;1570;123;13,33;108,37;51,17;1;United States;Northern America;"Springer";"2012-2026";"Internal Medicine (Q1)";"Medicine" +635;19907;"Medicinal Research Reviews";journal;"01986325, 10981128";"John Wiley & Sons Inc.";No;No;3,265;Q1;167;61;194;12491;3207;193;14,76;204,77;38,86;0;United States;Northern America;"John Wiley & Sons Inc.";"1981-2026";"Drug Discovery (Q1); Molecular Medicine (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +636;95101;"IEEE Transactions on Robotics";journal;"19410468, 15523098";"Institute of Electrical and Electronics Engineers Inc.";No;No;3,257;Q1;212;362;795;22134;11287;794;12,54;61,14;23,46;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2004-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +637;14179;"Annals of Neurology";journal;"15318249, 03645134";"John Wiley & Sons Inc.";No;No;3,247;Q1;350;289;718;10417;4864;591;6,65;36,04;43,61;0;United States;Northern America;"John Wiley & Sons Inc.";"1977-2026";"Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +638;19700188393;"Health systems in transition";journal;"18176127, 18176119";"Regional Office for Europe, World Health Organization";No;No;3,244;Q1;49;1;15;0;183;15;8,73;0,00;50,00;0;Denmark;Western Europe;"Regional Office for Europe, World Health Organization";"2010-2025";"Medicine (miscellaneous) (Q1)";"Medicine" +639;11200153507;"Journal of Mixed Methods Research";journal;"15586898, 15586901";"SAGE Publications Ltd";No;No;3,240;Q1;78;39;99;2013;739;72;9,77;51,62;44,68;0;United States;Northern America;"SAGE Publications Ltd";"2007-2026";"Education (Q1); Social Sciences (miscellaneous) (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Social Sciences" +640;15074;"European Journal of Information Systems";journal;"0960085X, 14769344";"Taylor and Francis Ltd.";No;No;3,238;Q1;151;61;142;6877;2007;135;10,57;112,74;33,16;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Information Systems (Q1); Information Systems and Management (Q1); Library and Information Sciences (Q1); Management Information Systems (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences; Social Sciences" +641;9500154109;"Journal of Crohn's and Colitis";journal;"18739946, 18764479";"Oxford University Press";No;No;3,225;Q1;134;273;613;11670;5029;534;7,78;42,75;47,14;1;United Kingdom;Western Europe;"Oxford University Press";"2007-2026";"Gastroenterology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +642;28787;"Cancer and Metastasis Reviews";journal;"01677659, 15737233";"Springer";No;No;3,223;Q1;182;90;198;12938;2226;176;11,90;143,76;46,47;0;United States;Northern America;"Springer";"1982-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +643;19700201414;"Journal of Research in Interactive Marketing";journal;"20407122";"Emerald Group Publishing Ltd.";No;No;3,223;Q1;80;118;151;7651;2642;146;18,61;64,84;46,98;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2026";"Marketing (Q1)";"Business, Management and Accounting" +644;13467;"Psychological Review";journal;"19391471, 0033295X";"American Psychological Association";No;No;3,222;Q1;259;63;194;9079;1331;193;5,46;144,11;29,19;0;United States;Northern America;"American Psychological Association";"1894-2026";"History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Psychology" +645;19600156811;"International Journal of Artificial Intelligence in Education";journal;"15604292, 15604306";"Springer US";No;No;3,207;Q1;77;133;144;9366;2558;119;12,42;70,42;35,34;5;United States;Northern America;"Springer US";"2000, 2003-2025";"Computational Theory and Mathematics (Q1); Education (Q1); E-learning (Q1)";"Computer Science; Social Sciences" +646;25208;"Archive for Rational Mechanics and Analysis";journal;"00039527, 14320673";"Springer New York";No;No;3,199;Q1;125;82;342;4149;949;342;2,58;50,60;26,83;0;United States;Northern America;"Springer New York";"1957-2026";"Analysis (Q1); Mathematics (miscellaneous) (Q1); Mechanical Engineering (Q1)";"Engineering; Mathematics" +647;17627;"New Technology, Work and Employment";journal;"02681072, 1468005X";"Wiley-Blackwell Publishing Ltd";No;No;3,193;Q1;72;41;70;2663;806;70;11,72;64,95;57,73;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1986-2026";"Human Factors and Ergonomics (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Social Sciences" +648;19908;"New Phytologist";journal;"14698137, 0028646X";"Wiley-Blackwell Publishing Ltd";No;No;3,185;Q1;347;906;2340;66368;21495;2017;8,18;73,25;40,30;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1902-2026";"Physiology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +649;10600153348;"International Journal of Advertising";journal;"17593948, 02650487";"Taylor and Francis Ltd.";No;No;3,182;Q1;95;111;205;9679;2286;178;9,01;87,20;51,96;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-2026";"Communication (Q1); Marketing (Q1)";"Business, Management and Accounting; Social Sciences" +650;21100461936;"Journal of Magnesium and Alloys";journal;"22139567";"KeAi Communications Co.";Yes;No;3,181;Q1;109;467;841;33719;14087;828;16,27;72,20;31,23;0;China;Asiatic Region;"KeAi Communications Co.";"2013-2026";"Mechanics of Materials (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science" +651;21100198229;"Statistics Surveys";journal;"19357516";"Institute of Mathematical Statistics";Yes;No;3,177;Q1;28;3;17;293;360;17;8,09;97,67;42,86;0;United States;Northern America;"Institute of Mathematical Statistics";"2007-2026";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +652;17643;"Journal of the American Academy of Child and Adolescent Psychiatry";journal;"08908567, 15275418";"Elsevier Inc.";No;No;3,176;Q1;289;267;538;8526;2413;242;4,21;31,93;55,91;5;United States;Northern America;"Elsevier Inc.";"1962, 1982, 1987-2026";"Developmental and Educational Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +653;21101065239;"Communications Earth and Environment";journal;"26624435";"Springer Nature";Yes;No;3,168;Q1;75;1026;1560;73117;15002;1508;8,80;71,26;33,18;38;United Kingdom;Western Europe;"Springer Nature";"2020-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Earth and Planetary Sciences; Environmental Science" +654;15163;"Applied Mechanics Reviews";journal;"00036900, 10888535";"The American Society of Mechanical Engineers(ASME)";No;No;3,158;Q1;137;7;30;1413;481;28;16,79;201,86;22,22;0;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"1965, 1969-2011, 2013-2026";"Mechanical Engineering (Q1)";"Engineering" +655;21101254624;"Electromagnetic Science";journal;"28369440, 28368282";"Chinese Institute of Electronics";Yes;No;3,156;Q1;16;8;46;616;471;46;10,24;77,00;30,43;0;China;Asiatic Region;"Chinese Institute of Electronics";"2023-2025";"Electrical and Electronic Engineering (Q1)";"Engineering" +656;15700;"Journal of Management Information Systems";journal;"1557928X, 07421222";"M.E. Sharpe Inc.";No;No;3,154;Q1;189;44;136;3395;1214;124;7,15;77,16;28,23;1;United States;Northern America;"M.E. Sharpe Inc.";"1987-2025";"Computer Science Applications (Q1); Information Systems and Management (Q1); Management Information Systems (Q1); Management Science and Operations Research (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences" +657;15298;"Structural Equation Modeling";journal;"15328007, 10705511";"Psychology Press Ltd";No;No;3,154;Q1;138;82;210;3944;971;201;4,33;48,10;35,21;0;United Kingdom;Western Europe;"Psychology Press Ltd";"1994-2026";"Decision Sciences (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Modeling and Simulation (Q1); Sociology and Political Science (Q1)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics; Social Sciences" +658;21100235616;"IEEE Transactions on Neural Networks and Learning Systems";journal;"2162237X, 21622388";"IEEE Computational Intelligence Society";No;No;3,153;Q1;284;1603;2970;96212;41487;2960;12,80;60,02;29,06;0;United States;Northern America;"IEEE Computational Intelligence Society";"2012-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Science Applications (Q1); Software (Q1)";"Computer Science" +659;22326;"Organizational Behavior and Human Decision Processes";journal;"07495978, 10959920";"Academic Press Inc.";No;No;3,152;Q1;195;26;126;2378;633;123;4,72;91,46;38,67;0;United States;Northern America;"Academic Press Inc.";"1985-2026";"Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Psychology" +660;21100244836;"Journal of Energy Chemistry";journal;"20954956";"Elsevier B.V.";No;No;3,151;Q1;155;902;2038;65484;30723;2002;16,05;72,60;34,62;0;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Electrochemistry (Q1); Energy Engineering and Power Technology (Q1); Energy (miscellaneous) (Q1); Fuel Technology (Q1)";"Chemistry; Energy" +661;17924;"Current Opinion in Plant Biology";journal;"18790356, 13695266";"Elsevier Ltd";No;No;3,150;Q1;250;96;341;5858;2939;329;7,55;61,02;43,36;0;United Kingdom;Western Europe;"Elsevier Ltd";"1998-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +662;19700168304;"Journal of Advanced Research";journal;"20901224, 20901232";"Elsevier B.V.";Yes;No;3,148;Q1;122;824;556;73505;9219;555;15,53;89,21;42,42;0;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +663;26259;"Review of Economic Dynamics";journal;"10966099, 10942025";"Academic Press Inc.";No;No;3,148;Q1;84;37;180;1929;487;178;2,44;52,14;23,68;8;United States;Northern America;"Academic Press Inc.";"1998-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +664;21100235802;"Cold Spring Harbor Perspectives in Medicine";journal;"21571422";"Cold Spring Harbor Laboratory Press";No;No;3,146;Q1;173;51;161;4307;1579;159;5,07;84,45;39,84;0;United States;Northern America;"Cold Spring Harbor Laboratory Press";"2011-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +665;21100403241;"Research Synthesis Methods";journal;"17592879, 17592887";"Cambridge University Press";No;No;3,143;Q1;88;91;230;4202;1927;206;7,24;46,18;43,99;0;United Kingdom;Western Europe;"Cambridge University Press";"2010-2026";"Education (Q1)";"Social Sciences" +666;28092;"Economic Geography";journal;"00130095, 19448287";"Routledge";No;No;3,142;Q1;106;16;57;1339;664;57;10,49;83,69;30,77;0;United Kingdom;Western Europe;"Routledge";"1972, 1974, 1978-1985, 1987-2026";"Economics and Econometrics (Q1); Geography, Planning and Development (Q1)";"Economics, Econometrics and Finance; Social Sciences" +667;19877;"Journal of Democracy";journal;"10455736, 10863214";"Johns Hopkins University Press";Yes;No;3,142;Q1;119;55;157;1022;994;131;6,15;18,58;33,33;7;United States;Northern America;"Johns Hopkins University Press";"1996-2026";"Sociology and Political Science (Q1)";"Social Sciences" +668;23859;"Journal of Business Ethics";journal;"15730697, 01674544";"Springer Netherlands";No;No;3,138;Q1;304;450;1007;41971;11662;992;10,35;93,27;43,15;4;Netherlands;Western Europe;"Springer Netherlands";"1982-2026";"Arts and Humanities (miscellaneous) (Q1); Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Law (Q1)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +669;14813;"Journal of Travel Research";journal;"15526763, 00472875";"SAGE Publications Ltd";No;No;3,127;Q1;193;202;332;18862;4943;321;13,09;93,38;46,91;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1969-2026";"Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1); Transportation (Q1)";"Business, Management and Accounting; Social Sciences" +670;21101188427;"npj Aging";journal;"27316068";"Nature Research";No;No;3,126;Q1;41;102;86;6519;939;83;10,92;63,91;40,74;2;United Kingdom;Western Europe;"Nature Research";"2023-2026";"Aging (Q1); Geriatrics and Gerontology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +671;22928;"Journal of Interactive Marketing";journal;"10949968, 15206653";"SAGE Publications Inc.";No;No;3,125;Q1;142;25;83;2080;779;80;9,82;83,20;43,21;1;United States;Northern America;"SAGE Publications Inc.";"1997-2026";"Business and International Management (Q1); Marketing (Q1)";"Business, Management and Accounting" +672;24242;"IEEE Transactions on Fuzzy Systems";journal;"10636706, 19410034";"Institute of Electrical and Electronics Engineers Inc.";No;No;3,121;Q1;235;364;1399;16180;15719;1397;11,03;44,45;31,57;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1993-2026";"Applied Mathematics (Q1); Artificial Intelligence (Q1); Computational Theory and Mathematics (Q1); Control and Systems Engineering (Q1)";"Computer Science; Engineering; Mathematics" +673;21100403190;"Earth's Future";journal;"23284277";"John Wiley & Sons Inc.";Yes;No;3,116;Q1;103;337;844;28564;7978;786;8,23;84,76;34,62;0;United States;Northern America;"John Wiley & Sons Inc.";"2014-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Earth and Planetary Sciences; Environmental Science" +674;144742;"International Journal of Contemporary Hospitality Management";journal;"09596119";"Emerald Group Publishing Ltd.";No;No;3,116;Q1;155;253;630;16911;10030;621;16,03;66,84;43,91;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1989-2026";"Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +675;21101023423;"Journal of Obesity and Metabolic Syndrome";journal;"25086235, 25087576";"Korean Society for the Study of Obesity";Yes;Yes;3,116;Q1;39;31;113;1703;1063;101;11,31;54,94;38,37;0;South Korea;Asiatic Region;"Korean Society for the Study of Obesity";"2017-2025";"Endocrinology, Diabetes and Metabolism (Q1)";"Medicine" +676;15402;"Journal of Child Psychology and Psychiatry and Allied Disciplines";journal;"00219630, 14697610";"Wiley-Blackwell Publishing Ltd";No;No;3,115;Q1;265;198;525;12843;3997;390;5,57;64,86;62,55;7;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1960-2026";"Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +677;21100886825;"Blood Advances";journal;"24739529, 24739537";"American Society of Hematology";Yes;No;3,110;Q1;110;735;2157;26616;12148;1767;5,56;36,21;46,85;3;United States;Northern America;"American Society of Hematology";"2016-2026";"Hematology (Q1)";"Medicine" +678;21101198591;"Biogeotechnics";journal;"29499291";"KeAi Communications Co.";Yes;No;3,105;Q1;23;37;62;2045;900;57;14,52;55,27;32,17;0;China;Asiatic Region;"KeAi Communications Co.";"2023-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences" +679;26555;"Annual Review of Physical Chemistry";journal;"0066426X, 15451593";"Annual Reviews Inc.";No;No;3,104;Q1;194;29;66;3625;769;66;9,22;125,00;19,51;0;United States;Northern America;"Annual Reviews Inc.";"1975, 1983, 1985, 1988-2020, 2022-2025";"Medicine (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Medicine" +680;72242;"International Journal of Computer Vision";journal;"09205691, 15731405";"Springer Netherlands";No;No;3,103;Q1;242;405;608;33306;8679;597;11,61;82,24;29,84;0;Netherlands;Western Europe;"Springer Netherlands";"1987-2026";"Artificial Intelligence (Q1); Computer Vision and Pattern Recognition (Q1); Software (Q1)";"Computer Science" +681;28094;"Accounting, Organizations and Society";journal;"03613682";"Elsevier Ltd";No;No;3,098;Q1;170;23;115;2302;617;110;5,00;100,09;35,09;0;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Accounting (Q1); Applied Psychology (Q1); Information Systems and Management (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Decision Sciences; Psychology; Social Sciences" +682;19366;"American Journal of Kidney Diseases";journal;"15236838, 02726386";"W.B. Saunders";No;No;3,098;Q1;256;252;694;6737;4001;409;5,37;26,73;45,88;0;United States;Northern America;"W.B. Saunders";"1981-2026";"Nephrology (Q1)";"Medicine" +683;11400153331;"Mucosal Immunology";journal;"19353456, 19330219";"Elsevier B.V.";No;No;3,089;Q1;148;129;289;8931;2115;273;5,18;69,23;48,93;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +684;12006;"Journal of Vocational Behavior";journal;"10959084, 00018791";"Academic Press Inc.";No;No;3,075;Q1;209;60;199;5963;1749;198;8,34;99,38;54,03;2;United States;Northern America;"Academic Press Inc.";"1971-2026";"Applied Psychology (Q1); Education (Q1); Life-span and Life-course Studies (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Psychology; Social Sciences" +685;4400151713;"International Journal of Biological Sciences";journal;"14492288";"Ivyspring International Publisher";Yes;No;3,073;Q1;144;387;1070;33538;12847;1061;11,35;86,66;42,92;0;Australia;Pacific Region;"Ivyspring International Publisher";"2005-2026";"Applied Microbiology and Biotechnology (Q1); Cell Biology (Q1); Developmental Biology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Molecular Biology (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +686;19419;"Computers in Human Behavior";journal;"07475632";"Elsevier Ltd";No;No;3,072;Q1;302;275;1155;21301;18050;1142;14,72;77,46;47,54;8;United Kingdom;Western Europe;"Elsevier Ltd";"1985-2026";"Arts and Humanities (miscellaneous) (Q1); Human-Computer Interaction (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Computer Science; Psychology" +687;21100330722;"Annual Review of Animal Biosciences";journal;"21658110, 21658102";"Annual Reviews Inc.";No;No;3,068;Q1;74;24;59;3438;655;56;12,43;143,25;51,09;1;United States;Northern America;"Annual Reviews Inc.";"2013-2026";"Animal Science and Zoology (Q1); Biotechnology (Q1); Genetics (Q1); Veterinary (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +688;29160;"Cancer Letters";journal;"03043835, 18727980";"Elsevier Ireland Ltd";No;No;3,066;Q1;240;541;1241;41058;12959;1220;11,29;75,89;40,21;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1975-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +689;18045;"Neuroscience and Biobehavioral Reviews";journal;"18737528, 01497634";"Elsevier Ltd";No;No;3,060;Q1;319;394;1268;55950;12237;1193;8,30;142,01;51,17;3;United Kingdom;Western Europe;"Elsevier Ltd";"1978-2026";"Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1); Neuropsychology and Physiological Psychology (Q1)";"Neuroscience; Psychology" +690;20912;"Environment International";journal;"18736750, 01604120";"Elsevier Ltd";Yes;No;3,058;Q1;297;755;2188;51535;25800;2164;10,53;68,26;47,46;21;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +691;21100202730;"Advances in Nutrition";journal;"21565376, 21618313";"Elsevier B.V.";No;No;3,056;Q1;160;138;427;12239;4910;385;11,38;88,69;60,28;4;United States;Northern America;"Elsevier B.V.";"2010-2026";"Food Science (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Agricultural and Biological Sciences; Medicine; Nursing" +692;5900153311;"IEEE Journal on Selected Topics in Signal Processing";journal;"19324553, 19410484";"Institute of Electrical and Electronics Engineers Inc.";No;No;3,055;Q1;160;151;322;8383;4263;311;9,01;55,52;23,26;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2007-2026";"Electrical and Electronic Engineering (Q1); Signal Processing (Q1)";"Computer Science; Engineering" +693;25246;"Chinese Journal of Catalysis";journal;"18722067";"Science Press";No;No;3,053;Q1;131;295;723;22115;11107;698;16,02;74,97;36,95;0;China;Asiatic Region;"Science Press";"1996-2026";"Catalysis (Q1); Chemistry (miscellaneous) (Q1)";"Chemical Engineering; Chemistry" +694;21100201945;"International Journal of Mining Science and Technology";journal;"20952686";"China University of Mining and Technology";Yes;Yes;3,052;Q1;94;150;338;6593;5322;337;15,93;43,95;21,10;0;China;Asiatic Region;"China University of Mining and Technology";"2012-2026";"Energy Engineering and Power Technology (Q1); Geochemistry and Petrology (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Energy" +695;15000154802;"EuroIntervention";journal;"1774024X, 19696213";"Europa Group";No;No;3,048;Q1;108;220;693;4472;3456;468;4,59;20,33;22,55;0;France;Western Europe;"Europa Group";"2008-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +696;25037;"IEEE Transactions on Evolutionary Computation";journal;"1089778X";"Institute of Electrical and Electronics Engineers Inc.";No;No;3,045;Q1;229;334;385;19422;6020;380;15,21;58,15;27,41;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1997-2026";"Computational Theory and Mathematics (Q1); Software (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +697;39139;"International Organization";journal;"15315088, 00208183";"Cambridge University Press";No;No;3,041;Q1;180;44;88;3605;520;87;4,27;81,93;33,75;0;United Kingdom;Western Europe;"Cambridge University Press";"1947-2026";"Law (Q1); Organizational Behavior and Human Resource Management (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Social Sciences" +698;14280;"Protein Science";journal;"1469896X, 09618368";"Wiley-Blackwell";No;No;3,041;Q1;210;402;927;23575;6043;919;5,68;58,64;38,78;0;United States;Northern America;"Wiley-Blackwell";"1992-2026";"Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +699;22475;"Trends in Food Science and Technology";journal;"09242244";"Elsevier Ltd";No;No;3,041;Q1;300;523;1042;57668;22055;982;19,24;110,26;41,17;2;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2026";"Biotechnology (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +700;21101049099;"Biochar";journal;"25247867";"Springer Science and Business Media B.V.";Yes;No;3,031;Q1;64;121;260;10942;4526;260;15,50;90,43;39,55;1;Germany;Western Europe;"Springer Science and Business Media B.V.";"2019-2026";"Biomaterials (Q1); Environmental Science (miscellaneous) (Q1); Pollution (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Environmental Science; Materials Science" +701;26656;"Journal of Internal Medicine";journal;"09546820, 13652796";"Wiley-Blackwell Publishing Ltd";No;No;3,031;Q1;202;129;436;6170;3294;315;6,46;47,83;37,36;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1989-2026";"Internal Medicine (Q1)";"Medicine" +702;13363;"Obesity Reviews";journal;"1467789X, 14677881";"Wiley-Blackwell Publishing Ltd";No;No;3,028;Q1;222;184;423;18009;4305;410;8,81;97,88;60,39;8;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2000-2026";"Endocrinology, Diabetes and Metabolism (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +703;17362;"IEEE Transactions on Knowledge and Data Engineering";journal;"10414347, 15582191";"IEEE Computer Society";No;No;3,025;Q1;233;512;2026;31127;26832;2024;13,08;60,79;28,69;0;United States;Northern America;"IEEE Computer Society";"1989-2026";"Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Information Systems (Q1)";"Computer Science" +704;3600148105;"Human Resource Management Journal";journal;"17488583, 09545395";"John Wiley and Sons Inc";No;No;3,013;Q1;107;71;163;5552;1565;162;9,04;78,20;47,37;3;United States;Northern America;"John Wiley and Sons Inc";"1990-2026";"Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting" +705;21101169024;"Aggregate";journal;"27668541, 26924560";"John Wiley and Sons Inc";Yes;No;3,010;Q1;62;265;428;19878;5487;417;13,14;75,01;38,42;0;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science" +706;20443;"American Journal of Transplantation";journal;"16006135, 16006143";"Elsevier B.V.";No;No;3,010;Q1;238;381;1015;9133;5307;684;5,36;23,97;41,80;3;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Immunology and Allergy (Q1); Pharmacology (medical) (Q1); Transplantation (Q1)";"Medicine" +707;18797;"Current Opinion in Immunology";journal;"09527915, 18790372";"Elsevier Ltd";No;No;3,010;Q1;218;126;238;8232;1602;226;6,70;65,33;42,89;1;United Kingdom;Western Europe;"Elsevier Ltd";"1988-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +708;21100904922;"European Urology Oncology";journal;"25889311";"Elsevier B.V.";No;No;3,010;Q1;63;223;415;0;2584;311;5,89;0,00;31,80;2;Netherlands;Western Europe;"Elsevier B.V.";"2018-2026";"Medicine (miscellaneous) (Q1); Oncology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Surgery (Q1); Urology (Q1)";"Medicine" +709;27822;"Alimentary Pharmacology and Therapeutics";journal;"02692813, 13652036";"John Wiley and Sons Inc";No;No;3,006;Q1;224;555;1527;12548;4985;630;3,18;22,61;43,16;3;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1987-2026";"Gastroenterology (Q1); Hepatology (Q1); Pharmacology (medical) (Q1)";"Medicine" +710;17194;"Investigative Radiology";journal;"00209996, 15360210";"Lippincott Williams and Wilkins";No;No;3,006;Q1;136;141;291;6365;2505;291;9,10;45,14;32,44;0;United States;Northern America;"Lippincott Williams and Wilkins";"1966-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +711;19300156817;"Circulation: Arrhythmia and Electrophysiology";journal;"19413084, 19413149";"Lippincott Williams and Wilkins";No;No;3,005;Q1;149;130;304;3322;2107;253;6,05;25,55;26,22;0;United States;Northern America;"Lippincott Williams and Wilkins";"2008-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Physiology (medical) (Q1)";"Medicine" +712;29914;"Critical Care";journal;"1466609X, 13648535";"BioMed Central Ltd";Yes;No;3,002;Q1;242;532;1335;18703;10298;981;7,60;35,16;43,02;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1998-2026";"Critical Care and Intensive Care Medicine (Q1)";"Medicine" +713;144675;"Frontiers in Ecology and the Environment";journal;"15409295, 15409309";"Wiley-Blackwell";No;No;2,999;Q1;220;71;292;2426;1664;157;4,30;34,17;45,08;4;United States;Northern America;"Wiley-Blackwell";"2003-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +714;21100407195;"Optica";journal;"23342536";"Optica Publishing Group (formerly OSA)";Yes;No;2,995;Q1;176;233;633;12111;6250;629;9,12;51,98;24,99;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"2014-2026";"Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Materials Science; Physics and Astronomy" +715;21101089511;"Molecular Biomedicine";journal;"26628651";"Springer International Publishing";Yes;No;2,990;Q1;35;151;170;20557;1988;158;10,66;136,14;45,50;0;Switzerland;Western Europe;"Springer International Publishing";"2020-2026";"Molecular Biology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology" +716;18017;"Neuropsychopharmacology";journal;"0893133X, 1740634X";"Springer Nature";No;No;2,988;Q1;269;183;821;10834;5844;671;6,23;59,20;45,30;0;Switzerland;Western Europe;"Springer Nature";"1987-2026";"Pharmacology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +717;21100228571;"Revista Espanola de Cardiologia (English edition)";journal;"18855857";"Ediciones Doyma, S.L.";No;No;2,986;Q1;11;0;22;0;198;19;0,50;0,00;0,00;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2013-2024, 2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +718;144912;"IEEE Transactions on Industrial Informatics";journal;"15513203, 19410050";"IEEE Computer Society";No;No;2,983;Q1;239;965;3155;31446;39382;3121;11,60;32,59;26,70;0;United States;Northern America;"IEEE Computer Society";"2005-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Information Systems (Q1)";"Computer Science; Engineering" +719;20039;"International Journal of Operations and Production Management";journal;"17586593, 01443577";"Emerald Group Publishing Ltd.";No;No;2,983;Q1;177;121;273;9727;3173;271;10,95;80,39;34,88;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1985, 1993-2026";"Decision Sciences (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +720;25534;"IEEE Transactions on Image Processing";journal;"19410042, 10577149";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,982;Q1;363;624;1525;40264;22802;1525;14,58;64,53;30,23;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992-2026";"Computer Graphics and Computer-Aided Design (Q1); Software (Q1)";"Computer Science" +721;19700194105;"Sustainable Cities and Society";journal;"22106715, 22106707";"Elsevier Ltd";No;No;2,982;Q1;184;1016;2473;80294;36340;2469;14,50;79,03;36,99;10;United Kingdom;Western Europe;"Elsevier Ltd";"2011-2026";"Civil and Structural Engineering (Q1); Geography, Planning and Development (Q1); Renewable Energy, Sustainability and the Environment (Q1); Transportation (Q1)";"Energy; Engineering; Social Sciences" +722;23876;"Journal of Differential Geometry";journal;"0022040X, 1945743X";"International Press, Inc.";No;No;2,978;Q1;89;47;167;1942;302;167;1,70;41,32;20,69;0;United States;Northern America;"International Press, Inc.";"1967-2026";"Algebra and Number Theory (Q1); Analysis (Q1); Geometry and Topology (Q1)";"Mathematics" +723;19700166402;"Circulation: Cardiovascular Interventions";journal;"19417632, 19417640";"Lippincott Williams and Wilkins";No;No;2,977;Q1;130;162;396;3311;2110;291;5,01;20,44;20,53;0;United States;Northern America;"Lippincott Williams and Wilkins";"2008-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +724;13477;"Current Directions in Psychological Science";journal;"14678721, 09637214";"SAGE Publications Inc.";No;No;2,975;Q1;238;53;184;1907;1485;184;6,44;35,98;53,62;1;United States;Northern America;"SAGE Publications Inc.";"1992-2026";"Developmental and Educational Psychology (Q1); Psychology (miscellaneous) (Q1)";"Psychology" +725;18931;"IEEE Transactions on Communications";journal;"00906778, 15580857";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,973;Q1;257;1058;1617;46300;15349;1617;9,19;43,76;27,91;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-1964, 1970-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +726;23429;"Assessing Writing";journal;"10752935";"Elsevier Ltd";No;No;2,972;Q1;61;56;195;3206;1708;179;8,37;57,25;45,71;0;United Kingdom;Western Europe;"Elsevier Ltd";"1994-2000, 2002-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +727;16965;"Internet and Higher Education";journal;"18735525, 10967516";"Elsevier Ltd";No;No;2,970;Q1;131;49;56;3844;658;55;13,42;78,45;49,43;0;United Kingdom;Western Europe;"Elsevier Ltd";"1998-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Education (Q1); E-learning (Q1)";"Computer Science; Social Sciences" +728;23352;"Journal of Environmental Economics and Management";journal;"10960449, 00950696";"Academic Press Inc.";No;No;2,968;Q1;168;118;327;7308;2436;326;7,13;61,93;29,79;12;United States;Northern America;"Academic Press Inc.";"1974-2026";"Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1)";"Economics, Econometrics and Finance; Environmental Science" +729;21100869486;"Computational Visual Media";journal;"20960662, 20960433";"Institute of Electrical and Electronics Engineers Inc.";Yes;Yes;2,965;Q1;36;73;160;4695;2780;153;9,43;64,32;26,52;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015-2026";"Artificial Intelligence (Q1); Computer Graphics and Computer-Aided Design (Q1); Computer Vision and Pattern Recognition (Q1)";"Computer Science" +730;22597;"Food Hydrocolloids";journal;"0268005X";"Elsevier B.V.";No;No;2,960;Q1;257;1039;2989;60075;48173;2986;15,78;57,82;44,28;0;Netherlands;Western Europe;"Elsevier B.V.";"1986, 1988, 1990-1991, 1993, 1995-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Chemical Engineering; Chemistry" +731;21100932830;"Journal of Innovation and Knowledge";journal;"2444569X, 25307614";"Elsevier B.V.";Yes;No;2,960;Q1;89;215;457;19781;9016;457;17,04;92,00;40,91;1;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Management of Technology and Innovation (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +732;21004;"Environmental Impact Assessment Review";journal;"01959255";"Elsevier Inc.";No;No;2,958;Q1;134;361;819;26302;11154;818;13,45;72,86;40,31;7;United States;Northern America;"Elsevier Inc.";"1980-1983, 1985-2026";"Ecology (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)";"Environmental Science; Social Sciences" +733;24406;"Journal of Urban Economics";journal;"10959068, 00941190";"Academic Press Inc.";No;No;2,957;Q1;148;50;180;2998;933;177;4,06;59,96;30,88;11;United States;Northern America;"Academic Press Inc.";"1974-2026";"Economics and Econometrics (Q1); Urban Studies (Q1)";"Economics, Econometrics and Finance; Social Sciences" +734;17400;"Current Opinion in Structural Biology";journal;"1879033X, 0959440X";"Elsevier Ltd";No;No;2,955;Q1;226;175;509;10427;3933;478;7,75;59,58;32,30;0;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Molecular Biology (Q1); Structural Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +735;21100207639;"Diabetes and Metabolism Journal";journal;"22336087, 22336079";"Korean Diabetes Association";Yes;No;2,955;Q1;82;116;289;5691;2435;228;6,34;49,06;47,87;0;South Korea;Asiatic Region;"Korean Diabetes Association";"2011-2026";"Endocrinology, Diabetes and Metabolism (Q1)";"Medicine" +736;22832;"Political Behavior";journal;"01909320, 15736687";"Springer New York";No;No;2,955;Q1;103;138;278;9228;1646;278;5,01;66,87;33,64;8;United States;Northern America;"Springer New York";"1979-2026";"Sociology and Political Science (Q1)";"Social Sciences" +737;19041;"Landscape and Urban Planning";journal;"01692046";"Elsevier B.V.";No;No;2,952;Q1;243;206;616;15565;7802;615;12,29;75,56;42,62;6;Netherlands;Western Europe;"Elsevier B.V.";"1986-2026";"Ecology (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1); Urban Studies (Q1)";"Environmental Science; Social Sciences" +738;21100850798;"npj Computational Materials";journal;"20573960";"Nature Publishing Group";Yes;No;2,943;Q1;113;377;770;25361;9617;766;11,81;67,27;24,25;0;United Kingdom;Western Europe;"Nature Publishing Group";"2015-2026";"Computer Science Applications (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1); Modeling and Simulation (Q1)";"Computer Science; Engineering; Materials Science; Mathematics" +739;21848;"Global Biogeochemical Cycles";journal;"08866236, 19449224";"Wiley-Blackwell";No;No;2,941;Q1;224;164;355;17636;2485;350;6,84;107,54;39,10;0;United States;Northern America;"Wiley-Blackwell";"1987-2026";"Atmospheric Science (Q1); Environmental Chemistry (Q1); Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q1)";"Earth and Planetary Sciences; Environmental Science" +740;21100386500;"Cellular and Molecular Gastroenterology and Hepatology";journal;"2352345X";"Elsevier Inc.";Yes;No;2,936;Q1;86;159;520;7358;3127;389;6,09;46,28;42,19;0;United States;Northern America;"Elsevier Inc.";"2015-2026";"Gastroenterology (Q1); Hepatology (Q1)";"Medicine" +741;22173;"Genetics";journal;"19432631, 00166731";"Oxford University Press";No;No;2,934;Q1;290;244;637;17064;3512;632;6,09;69,93;40,54;0;United Kingdom;Western Europe;"Oxford University Press";"1918, 1920, 1930, 1935, 1938, 1945-1952, 1958, 1960-2026";"Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +742;16757;"Journal of Neurology, Neurosurgery and Psychiatry";journal;"1468330X, 00223050";"BMJ Publishing Group";No;No;2,931;Q1;255;171;567;6497;3953;456;6,56;37,99;42,62;0;United Kingdom;Western Europe;"BMJ Publishing Group";"1920-1937, 1945-2026";"Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1); Surgery (Q1)";"Medicine" +743;21101088425;"MedComm";journal;"26882663";"John Wiley and Sons Inc";Yes;No;2,930;Q1;57;497;666;72847;7971;608;11,73;146,57;42,83;2;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Biochemistry (medical) (Q1); Cell Biology (Q1); Drug Discovery (Q1); Genetics (Q1); Genetics (clinical) (Q1); Immunology and Allergy (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +744;17249;"IEEE Communications Magazine";journal;"15581896, 01636804";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,924;Q1;306;322;703;4262;6303;600;8,64;13,24;23,14;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1979-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +745;4000148701;"Perspectives on Politics";journal;"15375927, 15410986";"Cambridge University Press";No;No;2,923;Q1;112;201;305;16927;1343;201;4,22;84,21;35,92;0;United States;Northern America;"Cambridge University Press";"2003-2026";"Political Science and International Relations (Q1)";"Social Sciences" +746;21100926577;"Review of Asset Pricing Studies";journal;"20459920, 20459939";"Oxford University Press";No;No;2,921;Q1;36;10;63;579;132;63;1,36;57,90;15,79;0;United States;Northern America;"Oxford University Press";"2011-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +747;21100224448;"Molecular Metabolism";journal;"22128778";"Elsevier GmbH";Yes;No;2,918;Q1;123;191;586;13232;4372;580;6,24;69,28;44,82;0;Germany;Western Europe;"Elsevier GmbH";"2012-2026";"Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +748;24931;"Automation in Construction";journal;"09265805";"Elsevier B.V.";No;No;2,917;Q1;219;606;1601;41663;25363;1601;14,74;68,75;25,91;1;Netherlands;Western Europe;"Elsevier B.V.";"1992-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Control and Systems Engineering (Q1)";"Engineering" +749;15648;"Engineering Geology";journal;"00137952";"Elsevier B.V.";No;No;2,913;Q1;206;511;996;30286;10594;987;10,41;59,27;25,61;2;Netherlands;Western Europe;"Elsevier B.V.";"1965-2026";"Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences" +750;21169;"Pharmacological Research";journal;"10436618, 10961186";"Academic Press";Yes;No;2,909;Q1;200;478;1363;55287;15431;1248;10,80;115,66;48,52;0;United States;Northern America;"Academic Press";"1989-2026";"Pharmacology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +751;22838;"Political Communication";journal;"10584609, 10917675";"Taylor and Francis Ltd.";No;No;2,907;Q1;119;70;147;4401;1263;122;7,06;62,87;43,75;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2026";"Communication (Q1); Sociology and Political Science (Q1)";"Social Sciences" +752;21100244230;"Alcohol Research: Current Reviews";journal;"21694796, 21683492";"National Institute on Alcohol Abuse and Alcoholism (NIAAA)";No;No;2,906;Q1;124;12;28;1953;277;25;7,86;162,75;75,56;0;United States;Northern America;"National Institute on Alcohol Abuse and Alcoholism (NIAAA)";"2012-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +753;21101172088;"SmartMat";journal;"27668525, 2688819X";"John Wiley and Sons Inc";Yes;No;2,906;Q1;53;62;185;6959;2396;175;12,48;112,24;35,42;0;China;Asiatic Region;"John Wiley and Sons Inc";"2020-2026";"Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Chemistry; Engineering; Materials Science" +754;30078;"American Journal of Obstetrics and Gynecology";journal;"00029378, 10976868";"Elsevier Inc.";No;No;2,904;Q1;284;638;1666;16908;9084;1066;4,76;26,50;61,42;6;United States;Northern America;"Elsevier Inc.";"1920-2026";"Obstetrics and Gynecology (Q1)";"Medicine" +755;21101259019;"Computers and Education Open";journal;"26665573";"Elsevier Ltd";Yes;No;2,903;Q1;37;80;167;5464;2645;166;17,11;68,30;37,50;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Computer Science Applications (Q1); Education (Q1); Human-Computer Interaction (Q1)";"Computer Science; Social Sciences" +756;4400151517;"Cell Communication and Signaling";journal;"1478811X";"BioMed Central Ltd";Yes;No;2,898;Q1;113;544;1144;44474;13045;1140;11,17;81,75;48,94;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Biochemistry (Q1); Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +757;15537;"Current Biology";journal;"18790445, 09609822";"Cell Press";No;No;2,897;Q1;386;847;2569;45045;13215;1699;4,73;53,18;37,89;4;United States;Northern America;"Cell Press";"1991-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Neuroscience" +758;19900192023;"Earth System Dynamics";journal;"21904979, 21904987";"Copernicus Publications";Yes;No;2,896;Q1;80;99;216;8649;1654;215;6,18;87,36;32,26;2;Germany;Western Europe;"Copernicus Publications";"2010-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +759;13124;"Trauma, Violence, and Abuse";journal;"15248380, 15528324";"SAGE Publications Ltd";No;No;2,896;Q1;131;218;603;16787;6489;603;10,04;77,00;71,02;10;United Kingdom;Western Europe;"SAGE Publications Ltd";"2000-2026";"Applied Psychology (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Social Work (Q1)";"Medicine; Psychology; Social Sciences" +760;19165;"International Journal of Production Economics";journal;"09255273";"Elsevier B.V.";No;No;2,892;Q1;264;274;833;19503;11652;823;12,77;71,18;33,25;0;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Engineering" +761;22488;"Basic Research in Cardiology";journal;"03008428, 14351803";"Springer Science and Business Media Deutschland GmbH";No;No;2,891;Q1;118;69;165;5445;1464;159;9,81;78,91;40,80;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1973-2026";"Cardiology and Cardiovascular Medicine (Q1); Physiology (Q1); Physiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +762;21817;"Clinical Infectious Diseases";journal;"15376591, 10584838";"Oxford University Press";No;No;2,891;Q1;414;589;2616;14026;13365;2079;5,46;23,81;53,64;12;United Kingdom;Western Europe;"Oxford University Press";"1985-1986, 1988-1990, 1992-2026";"Infectious Diseases (Q1); Microbiology (medical) (Q1)";"Medicine" +763;13902;"Cellular and Molecular Biology Letters";journal;"16891392, 14258153";"BioMed Central Ltd";Yes;No;2,885;Q1;80;142;355;15155;4098;345;10,99;106,73;45,66;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1996-2026";"Biochemistry (Q1); Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +764;20022;"Economic Policy";journal;"02664658, 14680327";"Oxford University Press";No;No;2,885;Q1;99;43;159;2318;322;62;1,33;53,91;32,73;11;United Kingdom;Western Europe;"Oxford University Press";"1988-2025";"Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1)";"Economics, Econometrics and Finance; Environmental Science" +765;22466;"Arteriosclerosis, Thrombosis, and Vascular Biology";journal;"10795642, 15244636";"Lippincott Williams and Wilkins";No;No;2,884;Q1;310;235;659;13594;4670;567;6,55;57,85;43,90;0;United States;Northern America;"Lippincott Williams and Wilkins";"1990-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +766;80280;"Biochimica et Biophysica Acta - Reviews on Cancer";journal;"18792561, 0304419X";"Elsevier B.V.";No;No;2,882;Q1;174;266;447;43482;5178;446;11,59;163,47;45,06;0;Netherlands;Western Europe;"Elsevier B.V.";"1974-2026";"Cancer Research (Q1); Genetics (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +767;18391;"Aging Cell";journal;"14749726, 14749718";"Wiley-Blackwell Publishing Ltd";Yes;No;2,881;Q1;191;407;733;25016;6170;719;7,91;61,46;45,58;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2002-2026";"Aging (Q1); Cell Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +768;25826;"Compositio Mathematica";journal;"0010437X, 15705846";"Cambridge University Press";No;No;2,880;Q1;68;80;189;3233;315;188;1,55;40,41;13,29;0;United Kingdom;Western Europe;"Cambridge University Press";"1995-2026";"Algebra and Number Theory (Q1)";"Mathematics" +769;14992;"Current Opinion in Neurobiology";journal;"09594388, 18736882";"Elsevier Ltd";No;No;2,871;Q1;262;151;311;10193;1876;299;5,74;67,50;45,27;0;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Neuroscience (miscellaneous) (Q1)";"Neuroscience" +770;21100976127;"IEEE Transactions on Intelligent Vehicles";journal;"23798858";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,868;Q1;91;383;1200;20558;14072;1187;11,16;53,68;25,10;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2016-2026";"Artificial Intelligence (Q1); Automotive Engineering (Q1); Control and Optimization (Q1)";"Computer Science; Engineering; Mathematics" +771;28801;"Applied Energy";journal;"18729118, 03062619";"Elsevier B.V.";No;No;2,864;Q1;354;2285;5471;155990;75359;5468;13,74;68,27;26,33;21;United Kingdom;Western Europe;"Elsevier B.V.";"1975-2026";"Building and Construction (Q1); Energy (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Mechanical Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering; Environmental Science" +772;21100464567;"Journal of Advanced Ceramics";journal;"22278508, 22264108";"Tsinghua University Press";Yes;No;2,861;Q1;93;204;482;13100;7496;482;14,15;64,22;35,36;0;China;Asiatic Region;"Tsinghua University Press";"2012-2026";"Ceramics and Composites (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Materials Science" +773;28111;"BMC Medicine";journal;"17417015";"BioMed Central Ltd";Yes;No;2,860;Q1;214;707;1573;40373;14456;1524;8,54;57,10;47,23;14;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +774;10300153306;"International Journal of Press/Politics";journal;"19401612, 19401620";"SAGE Publications Inc.";No;No;2,858;Q1;95;93;142;6121;1172;141;6,83;65,82;45,12;5;United States;Northern America;"SAGE Publications Inc.";"2003, 2008-2026";"Communication (Q1); Sociology and Political Science (Q1)";"Social Sciences" +775;20618;"Stroke";journal;"15244628, 00392499";"Wolters Kluwer Health";No;No;2,857;Q1;382;512;1503;17327;11001;1342;6,75;33,84;41,91;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1970-2026";"Advanced and Specialized Nursing (Q1); Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)";"Medicine; Neuroscience; Nursing" +776;13037;"Annual Review of Biomedical Engineering";book series;"15239829, 15454274";"Annual Reviews Inc.";No;No;2,856;Q1;166;20;52;3035;687;52;12,44;151,75;37,33;0;United States;Northern America;"Annual Reviews Inc.";"1999-2025";"Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1)";"Engineering; Medicine" +777;28200;"Biomaterials";journal;"01429612, 18785905";"Elsevier Ltd";Yes;No;2,853;Q1;464;617;1196;44506;17604;1195;14,08;72,13;41,64;0;United Kingdom;Western Europe;"Elsevier Ltd";"1980-2026";"Bioengineering (Q1); Biomaterials (Q1); Biophysics (Q1); Ceramics and Composites (Q1); Mechanics of Materials (Q1); Nanoscience and Nanotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +778;4000148307;"Family Business Review";journal;"17416248, 08944865";"SAGE Publications Inc.";No;No;2,853;Q1;140;12;50;1522;461;46;8,09;126,83;32,43;0;United States;Northern America;"SAGE Publications Inc.";"1988-2026";"Business, Management and Accounting (miscellaneous) (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +779;22792;"Industrial Marketing Management";journal;"00198501";"Elsevier Inc.";No;No;2,851;Q1;199;148;589;14887;5918;544;8,77;100,59;33,33;0;United States;Northern America;"Elsevier Inc.";"1971-2026";"Marketing (Q1)";"Business, Management and Accounting" +780;26055;"IEEE Transactions on Power Electronics";journal;"19410107, 08858993";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,850;Q1;355;1526;4043;50106;35761;4020;8,36;32,83;24,39;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1986-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +781;24724;"Annals of Probability";journal;"2168894X, 00911798";"Institute of Mathematical Statistics";No;No;2,849;Q1;109;47;173;2101;438;173;2,33;44,70;13,46;0;United States;Northern America;"Institute of Mathematical Statistics";"1981, 1996-2025";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +782;21101269349;"Energy Materials and Devices";journal;"30053064, 30053315";"Tsinghua University Press";Yes;Yes;2,849;Q1;15;25;46;1368;456;44;9,91;54,72;33,33;0;China;Asiatic Region;"Tsinghua University Press";"2023-2025";"Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Engineering; Materials Science" +783;19900191716;"Reviews in Aquaculture";journal;"17535131, 17535123";"Blackwell Publishing Asia";No;No;2,849;Q1;122;139;304;22936;5039;286;16,75;165,01;33,43;2;Australia;Pacific Region;"Blackwell Publishing Asia";"2009-2026";"Aquatic Science (Q1); Ecology (Q1); Management, Monitoring, Policy and Law (Q1)";"Agricultural and Biological Sciences; Environmental Science" +784;18503;"Current Opinion in Cell Biology";journal;"09550674, 18790410";"Elsevier Ltd";No;No;2,846;Q1;288;109;269;7006;1549;257;5,95;64,28;45,45;0;United Kingdom;Western Europe;"Elsevier Ltd";"1989-2026";"Cell Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +785;28981;"Journal of Economic Theory";journal;"10957235, 00220531";"Academic Press Inc.";No;No;2,842;Q1;124;105;399;4353;570;398;1,35;41,46;15,58;2;United States;Northern America;"Academic Press Inc.";"1969-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +786;19250;"Work and Occupations";journal;"07308884, 15528464";"SAGE Publications Inc.";No;No;2,840;Q1;88;31;59;2444;421;58;5,57;78,84;57,33;3;United States;Northern America;"SAGE Publications Inc.";"1974-2026";"Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Social Sciences" +787;21100405117;"Organizational Psychology Review";journal;"20413866, 20413874";"SAGE Publications Inc.";No;No;2,838;Q1;51;22;63;2446;612;60;9,34;111,18;43,75;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2011-2026";"Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1); Social Psychology (Q1)";"Business, Management and Accounting; Psychology" +788;13853;"Reliability Engineering and System Safety";journal;"18790836, 09518320";"Elsevier Ltd";No;No;2,838;Q1;209;824;2005;47143;27883;2002;14,39;57,21;29,49;5;United Kingdom;Western Europe;"Elsevier Ltd";"1983, 1988-2026";"Applied Mathematics (Q1); Industrial and Manufacturing Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering; Mathematics" +789;21100982311;"npj Parkinson's Disease";journal;"23738057";"Nature Research";Yes;No;2,837;Q1;66;357;556;23469;4845;539;7,82;65,74;49,59;1;United Kingdom;Western Europe;"Nature Research";"2015-2026";"Cellular and Molecular Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +790;24654;"American Journal of Mathematics";journal;"10806377, 00029327";"Johns Hopkins University Press";No;No;2,836;Q1;74;38;127;1480;261;126;1,78;38,95;14,94;0;United States;Northern America;"Johns Hopkins University Press";"1996-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +791;26574;"Annals of Internal Medicine";journal;"15393704, 00034819";"American College of Physicians";No;No;2,836;Q1;457;604;1782;9005;6407;913;3,85;14,91;44,40;0;United States;Northern America;"American College of Physicians";"1930, 1943-2026";"Internal Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +792;14434;"Cladistics";journal;"10960031, 07483007";"Wiley-Blackwell Publishing Ltd";No;No;2,836;Q1;113;34;97;3022;789;97;9,87;88,88;26,86;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1985-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +793;12841;"Clinical Child and Family Psychology Review";journal;"15732827, 10964037";"Kluwer Academic Publishers";No;No;2,834;Q1;131;46;133;4697;1216;131;8,19;102,11;74,01;2;United States;Northern America;"Kluwer Academic Publishers";"1998-2026";"Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Education (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology; Social Sciences" +794;26699;"Reviews in Endocrine and Metabolic Disorders";journal;"15732606, 13899155";"Springer";No;No;2,834;Q1;113;91;242;10936;2665;242;10,23;120,18;46,75;0;United States;Northern America;"Springer";"2000-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +795;21101163294;"BMJ Mental Health";journal;"27559734";"BMJ Publishing Group";Yes;No;2,833;Q1;57;142;195;4651;1433;177;5,94;32,75;52,87;2;United Kingdom;Western Europe;"BMJ Publishing Group";"2023-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +796;21101120622;"JAMA Health Forum";journal;"26890186";"American Medical Association";Yes;No;2,833;Q1;43;323;828;5497;3785;589;4,68;17,02;48,57;17;United States;Northern America;"American Medical Association";"2020-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +797;20143;"Business and Society";journal;"00076503, 15524205";"SAGE Publications Ltd";No;No;2,832;Q1;114;78;180;6597;1557;148;6,10;84,58;36,98;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1960-1978, 1980-1981, 1983-2026";"Business, Management and Accounting (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Business, Management and Accounting; Social Sciences" +798;21101196374;"Energy Reviews";journal;"27729702";"Elsevier B.V.";Yes;No;2,829;Q1;28;31;61;5421;1114;61;17,96;174,87;33,17;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2025";"Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +799;21101082055;"The Lancet Regional Health - Americas";journal;"2667193X";"Elsevier Ltd";Yes;No;2,828;Q1;50;268;800;8835;4548;522;5,71;32,97;55,79;5;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Health Policy (Q1); Internal Medicine (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +800;21100894518;"JCI Insight";journal;"23793708";"American Society for Clinical Investigation";Yes;No;2,827;Q1;144;538;1598;30815;10831;1593;6,38;57,28;43,29;0;United States;Northern America;"American Society for Clinical Investigation";"2016-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +801;28583;"Acta Materialia";journal;"13596454";"Acta Materialia Inc";No;No;2,825;Q1;405;973;2348;63525;25799;2348;10,81;65,29;27,05;0;United Kingdom;Western Europe;"Acta Materialia Inc";"1996-2026";"Ceramics and Composites (Q1); Electronic, Optical and Magnetic Materials (Q1); Metals and Alloys (Q1); Polymers and Plastics (Q1)";"Materials Science" +802;12330;"Journal of Materials Science and Technology";journal;"10050302";"Chinese Society of Metals";No;No;2,825;Q1;167;941;2516;63638;39405;2442;16,50;67,63;32,90;0;China;Asiatic Region;"Chinese Society of Metals";"1993-2026";"Ceramics and Composites (Q1); Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1); Polymers and Plastics (Q1)";"Engineering; Materials Science" +803;26053;"IEEE Transactions on Industrial Electronics";journal;"15579948, 02780046";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,820;Q1;375;1556;4093;46996;41147;4092;9,63;30,20;26,03;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1969, 1973-1978, 1982-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +804;21101198720;"Probability and Mathematical Physics";journal;"26900998, 26901005";"Mathematical Sciences Publishers";No;No;2,819;Q1;13;24;56;1145;171;56;2,83;47,71;8,16;0;United States;Northern America;"Mathematical Sciences Publishers";"2020-2026";"Atomic and Molecular Physics, and Optics (Q1); Statistical and Nonlinear Physics (Q1); Statistics and Probability (Q1)";"Mathematics; Physics and Astronomy" +805;18300156710;"European Review of Social Psychology";journal;"10463283, 1479277X";"Taylor and Francis Ltd.";No;No;2,818;Q1;85;27;39;3923;367;38;9,34;145,30;41,98;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2000, 2002-2026";"Social Psychology (Q1)";"Psychology" +806;19732;"Osteoarthritis and Cartilage";journal;"10634584, 15229653";"W.B. Saunders Ltd";No;No;2,818;Q1;206;176;524;7148;4533;432;7,00;40,61;41,59;0;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1993-2026";"Biomedical Engineering (Q1); Orthopedics and Sports Medicine (Q1); Rheumatology (Q1)";"Engineering; Medicine" +807;21203;"Long Range Planning";journal;"00246301, 18731872";"Elsevier Ltd";No;No;2,815;Q1;142;50;174;5128;1569;169;7,50;102,56;26,00;1;United Kingdom;Western Europe;"Elsevier Ltd";"1968-2026";"Finance (Q1); Geography, Planning and Development (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +808;5800194481;"Educational Researcher";journal;"0013189X, 1935102X";"SAGE Publications Inc.";No;No;2,811;Q1;167;66;186;2924;1364;178;6,70;44,30;51,63;0;United States;Northern America;"SAGE Publications Inc.";"1972-2026";"Education (Q1)";"Social Sciences" +809;21872;"Eurosurveillance";journal;"15607917, 1025496X";"European Centre for Disease Prevention and Control (ECDC)";Yes;Yes;2,810;Q1;143;232;761;6063;4434;712;6,28;26,13;59,49;3;Sweden;Western Europe;"European Centre for Disease Prevention and Control (ECDC)";"2001-2026";"Epidemiology (Q1); Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q1); Microbiology (medical) (Q1); Public Health, Environmental and Occupational Health (Q1); Virology (Q1)";"Immunology and Microbiology; Medicine" +810;21100262320;"IEEE Transactions on Systems, Man, and Cybernetics: Systems";journal;"21682216, 21682232";"IEEE Advancing Technology for Humanity";No;No;2,806;Q1;196;793;1982;35187;21966;1981;10,55;44,37;30,08;0;United States;Northern America;"IEEE Advancing Technology for Humanity";"1996, 2011, 2013-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Human-Computer Interaction (Q1); Information Systems (Q1); Software (Q1)";"Computer Science; Engineering" +811;28770;"British Journal of Cancer";journal;"15321827, 00070920";"Springer Nature";No;No;2,803;Q1;290;307;1281;14242;9462;1197;7,15;46,39;43,76;1;United Kingdom;Western Europe;"Springer Nature";"1947-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +812;19669;"Current Opinion in Microbiology";journal;"18790364, 13695274";"Elsevier Ltd";No;No;2,802;Q1;217;64;337;4164;2588;311;7,80;65,06;41,34;0;United Kingdom;Western Europe;"Elsevier Ltd";"1998-2026";"Infectious Diseases (Q1); Microbiology (Q1); Microbiology (medical) (Q1)";"Immunology and Microbiology; Medicine" +813;21100409368;"National Science Review";journal;"20955138, 2053714X";"Oxford University Press";Yes;No;2,800;Q1;142;566;1074;25847;11673;906;10,31;45,67;33,29;0;United Kingdom;Western Europe;"Oxford University Press";"2014-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +814;19700200703;"Annual Review of Resource Economics";journal;"19411359, 19411340";"Annual Reviews Inc.";No;No;2,799;Q1;68;25;75;2450;674;73;7,98;98,00;41,67;3;United States;Northern America;"Annual Reviews Inc.";"2009-2025";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +815;22856;"Yale Law Journal";journal;"00440094";"Yale Law Journal";No;No;2,799;Q1;100;39;111;2724;310;101;2,90;69,85;35,29;0;United States;Northern America;"Yale Law Journal";"1973-1975, 1977-1979, 1981, 1983, 1985-1991, 1994, 1996-2025";"Law (Q1)";"Social Sciences" +816;5700152760;"Assessment and Evaluation in Higher Education";journal;"02602938, 1469297X";"Taylor and Francis Ltd.";No;No;2,796;Q1;121;123;285;5653;2589;283;8,90;45,96;56,15;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2026";"Education (Q1)";"Social Sciences" +817;19936;"Communication Theory";journal;"14682885, 10503293";"Wiley-Blackwell";No;No;2,794;Q1;108;19;72;1897;554;71;9,48;99,84;48,94;0;United States;Northern America;"Wiley-Blackwell";"1991-2026";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +818;21101160600;"Research Methods in Applied Linguistics";journal;"27727661";"Elsevier B.V.";No;No;2,794;Q1;19;115;151;6335;2110;149;7,33;55,09;44,40;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Linguistics and Language (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +819;29150;"Physical Review Letters";journal;"10797114, 00319007";"American Physical Society";Yes;No;2,790;Q1;750;3001;6765;182499;59362;6708;8,73;60,81;21,71;0;United States;Northern America;"American Physical Society";"1958-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +820;98982;"Transport Reviews";journal;"01441647, 14645327";"Routledge";No;No;2,790;Q1;126;57;148;4826;1964;132;12,54;84,67;40,45;2;United Kingdom;Western Europe;"Routledge";"1981-2026";"Transportation (Q1)";"Social Sciences" +821;18676;"Technology in Society";journal;"0160791X";"Elsevier Ltd";No;No;2,788;Q1;137;252;847;22044;14505;845;15,63;87,48;35,45;4;United Kingdom;Western Europe;"Elsevier Ltd";"1979-2026";"Business and International Management (Q1); Education (Q1); Human Factors and Ergonomics (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Social Sciences" +822;21100349562;"Aging and Disease";journal;"21525250";"International Society on Aging and Disease";Yes;No;2,784;Q1;99;171;415;23735;4173;392;9,38;138,80;46,21;0;United States;Northern America;"International Society on Aging and Disease";"2010-2026";"Cell Biology (Q1); Geriatrics and Gerontology (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +823;23200;"Annales de l'Institut Henri Poincare (C) Analyse Non Lineaire";journal;"18731430, 02941449";"European Mathematical Society Publishing House";Yes;Yes;2,783;Q1;82;31;106;1450;285;106;2,70;46,77;21,43;0;Germany;Western Europe;"European Mathematical Society Publishing House";"1984-2025";"Analysis (Q1); Applied Mathematics (Q1); Mathematical Physics (Q1)";"Mathematics" +824;21100853879;"Clinical and Translational Medicine";journal;"20011326";"John Wiley and Sons Inc";Yes;No;2,781;Q1;28;0;38;0;265;23;0,00;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Inc";"2014, 2016, 2018-2025";"Medicine (miscellaneous) (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +825;5800169055;"RELC Journal";journal;"1745526X, 00336882";"SAGE Publications Ltd";No;No;2,781;Q1;61;107;212;3568;2308;198;9,86;33,35;44,07;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1970-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +826;21101313380;"npj Spintronics";journal;"29482119";"Springer Nature";Yes;No;2,780;Q1;17;50;61;3625;639;58;10,48;72,50;18,66;0;United Kingdom;Western Europe;"Springer Nature";"2023-2026";"Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Science (miscellaneous) (Q1); Surfaces and Interfaces (Q1)";"Materials Science; Physics and Astronomy" +827;21101274787;"Foundations and Trends in Robotics";book series;"19358253, 19358261";"Now Publishers Inc";No;No;2,772;Q1;5;1;8;243;109;8;3,40;243,00;75,00;0;United States;Northern America;"Now Publishers Inc";"2021-2025";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1)";"Computer Science; Engineering" +828;21101041899;"The Lancet Regional Health - Western Pacific";journal;"26666065";"Elsevier Ltd";Yes;No;2,770;Q1;57;305;873;12660;5920;603;6,95;41,51;44,75;3;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Geriatrics and Gerontology (Q1); Health Policy (Q1); Infectious Diseases (Q1); Internal Medicine (Q1); Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +829;21101192674;"npj Urban Sustainability";journal;"26618001";"Springer Nature";Yes;No;2,762;Q1;35;114;133;8518;1501;126;10,80;74,72;47,39;4;United Kingdom;Western Europe;"Springer Nature";"2021-2026";"Computational Mechanics (Q1); Ecology (Q1); Environmental Engineering (Q1); Industrial and Manufacturing Engineering (Q1)";"Engineering; Environmental Science" +830;15422;"Work and Stress";journal;"02678373, 14645335";"Taylor and Francis Ltd.";No;No;2,762;Q1;127;27;65;2012;671;62;8,50;74,52;51,81;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Applied Psychology (Q1)";"Psychology" +831;15461;"Biotechnology Advances";journal;"18731899, 07349750";"Elsevier Inc.";No;No;2,761;Q1;277;181;462;33742;7537;460;15,71;186,42;36,32;1;United States;Northern America;"Elsevier Inc.";"1983-2026";"Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +832;21101263148;"Green Carbon";journal;"29501555";"KeAi Publishing Communications Ltd.";Yes;No;2,756;Q1;25;49;72;3105;901;60;12,51;63,37;36,89;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2023-2025";"Biochemistry (Q1); Chemistry (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Energy" +833;23666;"International Economic Review";journal;"14682354, 00206598";"Wiley-Blackwell Publishing Ltd";No;No;2,751;Q1;105;93;174;4488;322;174;1,73;48,26;18,41;11;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1979-1985, 1988-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +834;21341;"California Management Review";journal;"21628564, 00081256";"SAGE Publications Ltd";No;No;2,746;Q1;171;31;78;1094;757;76;7,02;35,29;30,12;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1970-2026";"Strategy and Management (Q1)";"Business, Management and Accounting" +835;21003;"Environmental Health Perspectives";journal;"15529924, 00916765";"Public Health Services, US Dept of Health and Human Services";Yes;Yes;2,746;Q1;353;108;776;7150;5247;466;6,31;66,20;54,99;0;United States;Northern America;"Public Health Services, US Dept of Health and Human Services";"1972-2025";"Health, Toxicology and Mutagenesis (Q1); Public Health, Environmental and Occupational Health (Q1)";"Environmental Science; Medicine" +836;20209;"Business Horizons";journal;"00076813";"Elsevier Ltd";No;No;2,744;Q1;141;78;211;3769;2526;168;12,58;48,32;42,86;4;United Kingdom;Western Europe;"Elsevier Ltd";"1957-2026";"Business and International Management (Q1); Marketing (Q1)";"Business, Management and Accounting" +837;15670;"Journal of Peasant Studies";journal;"03066150, 17439361";"Routledge";No;No;2,738;Q1;120;102;249;8247;1724;241;6,21;80,85;47,09;15;United Kingdom;Western Europe;"Routledge";"1973-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1)";"Arts and Humanities; Social Sciences" +838;89440;"Genomics, Proteomics and Bioinformatics";journal;"16720229, 22103244";"Beijing Genomics Institute";Yes;No;2,735;Q1;87;81;285;5087;2278;269;6,31;62,80;42,36;0;China;Asiatic Region;"Beijing Genomics Institute";"2003-2025";"Biochemistry (Q1); Computational Mathematics (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Mathematics; Medicine" +839;21100852120;"npj Biofilms and Microbiomes";journal;"20555008";"Nature Research";Yes;No;2,732;Q1;76;233;351;19269;3900;345;10,74;82,70;44,48;1;United Kingdom;Western Europe;"Nature Research";"2015-2026";"Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1); Microbiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +840;21101182032;"Journal of Remote Sensing (United States)";journal;"26941589, 20970064";"American Association for the Advancement of Science";Yes;Yes;2,727;Q1;29;61;101;4431;995;100;9,75;72,64;35,50;1;United States;Northern America;"American Association for the Advancement of Science";"2021-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1); Instrumentation (Q1)";"Earth and Planetary Sciences; Physics and Astronomy; Social Sciences" +841;17230;"Journal of Nuclear Medicine";journal;"15355667, 01615505";"Society of Nuclear Medicine Inc.";No;No;2,726;Q1;255;369;1104;7395;7765;954;6,47;20,04;35,55;1;United States;Northern America;"Society of Nuclear Medicine Inc.";"1960-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +842;20552;"Progress in Cardiovascular Diseases";journal;"18731740, 00330620";"W.B. Saunders";No;No;2,726;Q1;135;140;274;7425;2177;223;9,24;53,04;27,45;0;United States;Northern America;"W.B. Saunders";"1958-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +843;23795;"Journal des Mathematiques Pures et Appliquees";journal;"00217824";"Elsevier Masson s.r.l.";No;No;2,725;Q1;81;65;259;2629;765;259;2,59;40,45;20,92;0;France;Western Europe;"Elsevier Masson s.r.l.";"1997-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +844;21100981157;"Annual Review of Cancer Biology";book series;"24723428";"Annual Reviews Inc.";No;No;2,724;Q1;44;16;58;2287;314;58;5,17;142,94;36,54;0;United States;Northern America;"Annual Reviews Inc.";"2017-2020, 2022-2025";"Cancer Research (Q1); Cell Biology (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +845;15378;"Current Opinion in Solid State and Materials Science";journal;"13590286";"Elsevier Ltd";No;No;2,723;Q1;144;28;97;3954;1447;94;13,72;141,21;22,60;0;United Kingdom;Western Europe;"Elsevier Ltd";"1996-1999, 2001-2026";"Materials Science (miscellaneous) (Q1)";"Materials Science" +846;16306;"New Media and Society";journal;"14614448, 14617315";"SAGE Publications Ltd";No;No;2,723;Q1;173;505;668;30571;6400;659;9,00;60,54;54,04;28;United Kingdom;Western Europe;"SAGE Publications Ltd";"1999-2026";"Communication (Q1); Sociology and Political Science (Q1)";"Social Sciences" +847;17162;"Public Administration";journal;"14679299, 00333298";"Wiley-Blackwell Publishing Ltd";No;No;2,723;Q1;126;102;233;8338;1989;231;8,60;81,75;42,21;8;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1923-2026";"Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +848;5200152701;"Academy of Management Learning and Education";journal;"1537260X";"George Washington University";No;No;2,715;Q1;106;16;96;1489;690;86;6,46;93,06;51,22;0;United States;Northern America;"George Washington University";"2003, 2005-2025";"Education (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Social Sciences" +849;28707;"Angiogenesis";journal;"15737209, 09696970";"Springer Science and Business Media B.V.";No;No;2,713;Q1;111;60;138;3614;1149;120;9,01;60,23;45,83;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1994, 1997-1999, 2001-2026";"Cancer Research (Q1); Clinical Biochemistry (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology" +850;21101270282;"Electron";journal;"27512614, 27512606";"John Wiley and Sons Inc";Yes;No;2,712;Q1;16;25;45;2634;602;44;13,38;105,36;29,55;0;China;Asiatic Region;"John Wiley and Sons Inc";"2023-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +851;22088;"EMBO Reports";journal;"14693178, 1469221X";"Springer Science and Business Media Deutschland GmbH";Yes;No;2,711;Q1;227;313;957;18787;5122;824;5,11;60,02;45,04;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2000-2026";"Biochemistry (Q1); Genetics (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +852;19040;"Seminars in Cell and Developmental Biology";journal;"10963634, 10849521";"Elsevier Ltd";No;No;2,707;Q1;183;74;474;8904;3439;425;6,88;120,32;40,72;0;United Kingdom;Western Europe;"Elsevier Ltd";"1993-2026";"Cell Biology (Q1); Developmental Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +853;17496;"Journal of Corporate Finance";journal;"09291199";"Elsevier B.V.";No;No;2,706;Q1;166;143;402;9590;3658;399;7,97;67,06;23,60;6;Netherlands;Western Europe;"Elsevier B.V.";"1994-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Finance (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +854;21100398887;"Journal of Stroke";journal;"22876391, 22876405";"Korean Stroke Society";Yes;Yes;2,705;Q1;61;58;150;1756;969;100;7,44;30,28;33,04;0;South Korea;Asiatic Region;"Korean Stroke Society";"2015-2026";"Cardiology and Cardiovascular Medicine (Q1); Neurology (clinical) (Q1)";"Medicine" +855;21101272994;"Nature Mental Health";journal;"27316076";"Springer Nature";No;No;2,705;Q1;26;194;342;10670;1837;203;5,37;55,00;46,11;2;United Kingdom;Western Europe;"Springer Nature";"2023-2026";"Biological Psychiatry (Q1); Molecular Medicine (Q1); Neuroscience (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +856;4900152301;"Comprehensive Reviews in Food Science and Food Safety";journal;"15414337";"John Wiley and Sons Inc";No;No;2,702;Q1;209;251;583;40852;10855;569;16,54;162,76;42,79;4;United States;Northern America;"John Wiley and Sons Inc";"2002-2003, 2005-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +857;21100827946;"npj Quantum Information";journal;"20566387";"Nature Partner Journals";Yes;No;2,697;Q1;91;193;395;11486;3473;392;8,59;59,51;20,13;0;United Kingdom;Western Europe;"Nature Partner Journals";"2015-2026";"Computational Theory and Mathematics (Q1); Computer Networks and Communications (Q1); Computer Science (miscellaneous) (Q1); Statistical and Nonlinear Physics (Q1)";"Computer Science; Physics and Astronomy" +858;21101272016;"NPJ Biodiversity";journal;"27314243";"Springer Nature";Yes;No;2,696;Q1;19;40;65;2746;546;54;8,75;68,65;41,06;0;Netherlands;Western Europe;"Springer Nature";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Animal Science and Zoology (Q1); Ecology (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +859;20842;"British Journal of Management";journal;"10453172, 14678551";"Wiley-Blackwell Publishing Ltd";No;No;2,694;Q1;149;109;322;9974;3032;321;9,98;91,50;35,44;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1990-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +860;29761;"European Journal of Cancer";journal;"09598049, 18790852";"Elsevier Ltd";No;No;2,692;Q1;263;466;1591;15498;8409;1381;6,50;33,26;45,17;4;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +861;18232;"Journal of Computer-Mediated Communication";journal;"10836101";"Oxford University Press";Yes;Yes;2,692;Q1;153;23;118;1358;1110;118;8,81;59,04;52,46;1;United States;Northern America;"Oxford University Press";"1995-2026";"Communication (Q1)";"Social Sciences" +862;19403;"Acta Pharmacologica Sinica";journal;"16714083, 17457254";"Springer Nature";No;No;2,691;Q1;134;275;676;16553;7198;668;10,94;60,19;45,16;0;United Kingdom;Western Europe;"Springer Nature";"1980-2026";"Medicine (miscellaneous) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +863;20695;"Brain, Behavior, and Immunity";journal;"10902139, 08891591";"Academic Press Inc.";No;No;2,689;Q1;221;458;979;30714;7569;857;7,28;67,06;49,93;0;United States;Northern America;"Academic Press Inc.";"1987-2026";"Behavioral Neuroscience (Q1); Endocrine and Autonomic Systems (Q1); Immunology (Q1)";"Immunology and Microbiology; Neuroscience" +864;21858;"British Journal of Anaesthesia";journal;"00070912, 14716771";"Elsevier Ltd";No;No;2,687;Q1;232;601;1282;17887;6799;555;5,12;29,76;45,69;3;United Kingdom;Western Europe;"Elsevier Ltd";"1923-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +865;22191;"Genetics in Medicine";journal;"10983600, 15300366";"Elsevier B.V.";Yes;No;2,687;Q1;176;194;611;7795;3384;527;5,35;40,18;58,19;0;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Genetics (clinical) (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +866;21100824912;"ACS Central Science";journal;"23747951, 23747943";"American Chemical Society";Yes;Yes;2,684;Q1;166;209;671;12583;5801;640;8,78;60,21;33,15;1;United States;Northern America;"American Chemical Society";"2015-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)";"Chemical Engineering; Chemistry" +867;21101178114;"Soft Science";journal;"27695441";"OAE Publishing Inc.";No;No;2,683;Q1;28;57;102;4533;1369;102;14,91;79,53;35,04;0;United States;Northern America;"OAE Publishing Inc.";"2021-2025";"Materials Science (miscellaneous) (Q1)";"Materials Science" +868;21100895361;"Green Energy and Environment";journal;"24680257, 20962797";"KeAi Publishing Communications Ltd.";Yes;Yes;2,681;Q1;80;156;402;15163;5996;382;16,71;97,20;36,58;1;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2016-2026";"Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +869;17300154720;"Petroleum Exploration and Development";journal;"20964803, 18763804";"KeAi Communications Co.";Yes;Yes;2,681;Q1;101;121;354;5218;4212;354;13,04;43,12;30,36;0;China;Asiatic Region;"KeAi Communications Co.";"2008-2025";"Economic Geology (Q1); Energy Engineering and Power Technology (Q1); Geochemistry and Petrology (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Energy" +870;19700188453;"Transcription";journal;"21541272, 21541264";"Taylor and Francis Ltd.";No;No;2,680;Q1;43;20;28;3033;112;26;3,00;151,65;42,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2025";"Biochemistry (Q1); Biotechnology (Q1); Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +871;19700188418;"Annual Review of Chemical and Biomolecular Engineering";journal;"19475438, 19475446";"Annual Reviews Inc.";No;No;2,674;Q1;90;19;56;2546;673;53;13,06;134,00;39,47;0;United States;Northern America;"Annual Reviews Inc.";"2010-2025";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Chemical Engineering; Chemistry; Energy" +872;20689;"Autoimmunity Reviews";journal;"15689972, 18730183";"Elsevier B.V.";No;No;2,669;Q1;170;167;427;20913;3906;360;9,52;125,23;43,34;0;Netherlands;Western Europe;"Elsevier B.V.";"2002-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +873;21100897795;"Cell Death Discovery";journal;"20587716";"Nature Publishing Group";Yes;No;2,668;Q1;86;554;1446;40200;13579;1429;9,93;72,56;45,85;0;United Kingdom;Western Europe;"Nature Publishing Group";"2015-2026";"Cancer Research (Q1); Cell Biology (Q1); Cellular and Molecular Neuroscience (Q1); Immunology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Neuroscience" +874;21100440607;"Current Environmental Health Reports";journal;"21965412";"Springer International Publishing AG";No;No;2,663;Q1;89;51;122;5675;1352;119;8,60;111,27;56,16;4;Switzerland;Western Europe;"Springer International Publishing AG";"2014-2026";"Health, Toxicology and Mutagenesis (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1); Public Health, Environmental and Occupational Health (Q1)";"Environmental Science; Medicine" +875;25545;"Diabetes Technology and Therapeutics";journal;"15209156, 15578593";"Mary Ann Liebert Inc.";No;No;2,663;Q1;116;222;432;7091;2681;389;6,68;31,94;52,71;1;United States;Northern America;"Mary Ann Liebert Inc.";"1999-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medical Laboratory Technology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +876;29316;"Clinical Microbiology and Infection";journal;"1198743X, 14690691";"Elsevier B.V.";No;No;2,658;Q1;219;435;1069;10957;5733;656;5,05;25,19;46,21;3;United Kingdom;Western Europe;"Elsevier B.V.";"1995-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q1)";"Medicine" +877;21101276610;"Microplastics and Nanoplastics";journal;"26624966";"Springer Nature";Yes;No;2,658;Q1;30;48;82;2929;809;77;8,27;61,02;49,36;2;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Environmental Chemistry (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1); Polymers and Plastics (Q1)";"Environmental Science; Materials Science" +878;12595;"Breast";journal;"15323080, 09609776";"Churchill Livingstone";Yes;No;2,654;Q1;111;216;425;8514;3612;407;4,84;39,42;56,39;1;United Kingdom;Western Europe;"Churchill Livingstone";"1992-2026";"Cancer Research (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1); Surgery (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +879;3200147828;"Small";journal;"16136829, 16136810";"John Wiley and Sons Inc";No;No;2,653;Q1;333;5027;8977;339446;110534;8960;12,06;67,52;34,64;3;Germany;Western Europe;"John Wiley and Sons Inc";"2005-2026";"Biomaterials (Q1); Biotechnology (Q1); Chemistry (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Engineering; Materials Science; Medicine" +880;23796;"Journal fur die Reine und Angewandte Mathematik";journal;"00754102, 14355345";"Walter de Gruyter GmbH";No;No;2,652;Q1;83;107;300;4692;476;300;1,52;43,85;18,97;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1826-1921, 1923-1943, 1949-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +881;17360;"IEEE Transactions on Geoscience and Remote Sensing";journal;"15580644, 01962892";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,649;Q1;342;2848;7833;157028;76660;7833;9,49;55,14;30,81;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1980-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1)";"Earth and Planetary Sciences; Engineering" +882;22044;"Global Ecology and Biogeography";journal;"14668238, 1466822X";"Wiley-Blackwell Publishing Ltd";No;No;2,648;Q1;206;202;484;15484;3618;475;6,82;76,65;33,98;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1998-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Global and Planetary Change (Q1)";"Agricultural and Biological Sciences; Environmental Science" +883;21100886545;"Journal of Interactive Advertising";journal;"15252019";"Taylor and Francis Ltd.";No;No;2,648;Q1;32;27;72;2051;811;70;10,88;75,96;55,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007, 2013, 2018-2026";"Communication (Q1); Marketing (Q1)";"Business, Management and Accounting; Social Sciences" +884;21100403504;"Environmental Science and Technology Letters";journal;"23288930";"American Chemical Society";No;No;2,645;Q1;124;241;562;11348;4705;524;6,76;47,09;39,63;5;United States;Northern America;"American Chemical Society";"2013-2026";"Ecology (Q1); Environmental Chemistry (Q1); Health, Toxicology and Mutagenesis (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Environmental Science" +885;21101101212;"AI Open";journal;"26666510";"KeAi Communications Co.";Yes;No;2,643;Q1;26;21;62;1610;1169;60;10,19;76,67;29,27;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2025";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Computer Vision and Pattern Recognition (Q1); Human-Computer Interaction (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +886;12808;"Journal of Educational Psychology";journal;"19392176, 00220663";"American Psychological Association";No;No;2,643;Q1;274;58;237;4951;1924;237;6,66;85,36;61,83;1;United States;Northern America;"American Psychological Association";"1910-2025";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +887;25691;"West European Politics";journal;"01402382, 17439655";"Routledge";No;No;2,643;Q1;113;104;195;7040;1317;194;6,84;67,69;33,82;16;United Kingdom;Western Europe;"Routledge";"1978-2026";"Political Science and International Relations (Q1)";"Social Sciences" +888;21101098757;"EcoMat";journal;"25673173";"John Wiley and Sons Inc";Yes;No;2,640;Q1;59;51;248;4873;2854;244;10,94;95,55;31,56;0;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Materials Science" +889;23644;"Supply Chain Management";journal;"13598546";"Emerald Publishing";No;No;2,638;Q1;162;63;189;6327;2629;187;13,04;100,43;31,32;0;United Kingdom;Western Europe;"Emerald Publishing";"1996-2026";"Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +890;16136;"Reviews in Environmental Science and Biotechnology";journal;"15691705, 15729826";"Springer Science and Business Media B.V.";No;No;2,637;Q1;132;37;111;5859;1679;111;16,11;158,35;41,48;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2002-2026";"Applied Microbiology and Biotechnology (Q1); Environmental Engineering (Q1); Pollution (Q1); Waste Management and Disposal (Q1)";"Environmental Science; Immunology and Microbiology" +891;21100349533;"Additive Manufacturing";journal;"22148604";"Elsevier B.V.";No;No;2,635;Q1;194;444;1888;26145;24375;1888;11,55;58,89;24,98;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Biomedical Engineering (Q1); Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +892;19700190349;"Communication Methods and Measures";journal;"19312466, 19312458";"Routledge";No;No;2,633;Q1;51;15;54;868;438;53;6,40;57,87;35,42;0;United States;Northern America;"Routledge";"2008, 2010-2026";"Communication (Q1)";"Social Sciences" +893;19082;"Modern Pathology";journal;"15300285, 08933952";"Elsevier B.V.";No;No;2,632;Q1;194;229;670;9344;4520;627;6,64;40,80;43,83;1;Netherlands;Western Europe;"Elsevier B.V.";"1988-2026";"Pathology and Forensic Medicine (Q1)";"Medicine" +894;13563;"Educational and Psychological Measurement";journal;"00131644, 15523888";"SAGE Publications Inc.";No;No;2,630;Q1;126;64;147;3085;786;147;5,28;48,20;34,48;0;United States;Northern America;"SAGE Publications Inc.";"1941-2026";"Applied Mathematics (Q1); Applied Psychology (Q1); Developmental and Educational Psychology (Q1); Education (Q1); Psychology (miscellaneous) (Q1)";"Mathematics; Psychology; Social Sciences" +895;19988;"Persoonia: Molecular Phylogeny and Evolution of Fungi";journal;"18789080, 00315850";"Westerdijk Fungal Biodiversity Institute";Yes;No;2,630;Q1;96;9;37;912;379;37;10,48;101,33;40,30;0;Netherlands;Western Europe;"Westerdijk Fungal Biodiversity Institute";"1996-2000, 2002-2025";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +896;26424;"Resources, Conservation and Recycling";journal;"18790658, 09213449";"Elsevier B.V.";No;No;2,629;Q1;245;541;1647;36136;22062;1635;12,17;66,79;36,13;11;Netherlands;Western Europe;"Elsevier B.V.";"1988-2026";"Economics and Econometrics (Q1); Waste Management and Disposal (Q1)";"Economics, Econometrics and Finance; Environmental Science" +897;20051;"BioDrugs";journal;"11738804, 1179190X";"";No;No;2,628;Q1;90;60;169;5618;1474;165;8,60;93,63;45,72;0;Switzerland;Western Europe;"";"1996-2026";"Biotechnology (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +898;4700152632;"International Journal of Computer-Supported Collaborative Learning";journal;"15561607, 15561615";"Springer Publishing Company";No;No;2,627;Q1;77;26;65;1652;460;55;6,74;63,54;49,37;1;United States;Northern America;"Springer Publishing Company";"2006-2026";"Education (Q1); Human-Computer Interaction (Q1)";"Computer Science; Social Sciences" +899;26111;"Frontiers in Neuroendocrinology";journal;"00913022, 10956808";"Academic Press Inc.";No;No;2,626;Q1;162;31;124;4829;1087;118;7,67;155,77;64,43;0;United States;Northern America;"Academic Press Inc.";"1973, 1990-2026";"Endocrine and Autonomic Systems (Q1)";"Neuroscience" +900;17407;"Movement Disorders";journal;"08853185, 15318257";"John Wiley & Sons Inc.";No;No;2,625;Q1;247;365;1033;14386;5425;700;5,10;39,41;46,66;0;United States;Northern America;"John Wiley & Sons Inc.";"1986-2026";"Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +901;5800207673;"ReCALL";journal;"09583440, 14740109";"Cambridge University Press";No;No;2,623;Q1;77;32;71;1635;674;64;8,55;51,09;59,26;0;United Kingdom;Western Europe;"Cambridge University Press";"1989-2026";"Computer Science Applications (Q1); Education (Q1); Linguistics and Language (Q1)";"Computer Science; Social Sciences" +902;25669;"Journal of Clinical Periodontology";journal;"1600051X, 03036979";"Blackwell Munksgaard";No;No;2,621;Q1;200;165;445;7721;3762;433;8,57;46,79;44,14;0;Denmark;Western Europe;"Blackwell Munksgaard";"1974-2026";"Periodontics (Q1)";"Dentistry" +903;25858;"Journal of Hazardous Materials";journal;"18733336, 03043894";"Elsevier B.V.";No;No;2,621;Q1;401;4069;9343;278228;117991;9298;11,67;68,38;41,81;11;Netherlands;Western Europe;"Elsevier B.V.";"1975, 1977, 1979-2026";"Environmental Chemistry (Q1); Environmental Engineering (Q1); Health, Toxicology and Mutagenesis (Q1); Pollution (Q1); Waste Management and Disposal (Q1)";"Environmental Science" +904;21101138014;"Materials Reports: Energy";journal;"26669358";"KeAi Communications Co.";Yes;No;2,619;Q1;38;37;95;2716;1306;91;13,75;73,41;40,51;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Electrochemistry (Q1); Energy (miscellaneous) (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Energy; Materials Science" +905;29104;"Small Business Economics";journal;"15730913, 0921898X";"Springer Netherlands";No;No;2,618;Q1;196;209;467;19140;4663;461;8,58;91,58;33,64;24;Netherlands;Western Europe;"Springer Netherlands";"1989-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +906;25487;"Diabetes";journal;"00121797, 1939327X";"American Diabetes Association Inc.";No;No;2,613;Q1;388;221;629;8486;3623;548;5,41;38,40;43,89;0;United States;Northern America;"American Diabetes Association Inc.";"1952-2026";"Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Medicine" +907;11700154204;"Brain Stimulation";journal;"1935861X, 18764754";"Elsevier Inc.";Yes;No;2,609;Q1;126;245;613;9740;3577;338;5,11;39,76;37,52;0;United States;Northern America;"Elsevier Inc.";"2008-2026";"Biophysics (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +908;18378;"IEEE Transactions on Intelligent Transportation Systems";journal;"15580016, 15249050";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,608;Q1;244;1741;4755;90158;57727;4737;11,01;51,79;28,56;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2000-2026";"Automotive Engineering (Q1); Computer Science Applications (Q1); Mechanical Engineering (Q1)";"Computer Science; Engineering" +909;21101048251;"CCS Chemistry";journal;"20965745";"Chinese Chemical Society";Yes;Yes;2,607;Q1;72;234;845;13973;7088;810;9,03;59,71;36,20;0;China;Asiatic Region;"Chinese Chemical Society";"2019-2026";"Chemistry (miscellaneous) (Q1)";"Chemistry" +910;12216;"Molecular Biology and Evolution";journal;"15371719, 07374038";"Oxford University Press";Yes;No;2,607;Q1;264;329;876;26554;5513;867;5,98;80,71;46,37;0;United Kingdom;Western Europe;"Oxford University Press";"1983-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1); Molecular Biology (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +911;21100217611;"Methods in Ecology and Evolution";journal;"2041210X";"British Ecological Society";Yes;No;2,606;Q1;191;232;674;13251;5053;668;6,48;57,12;37,73;0;United Kingdom;Western Europe;"British Ecological Society";"2011-2026";"Ecological Modeling (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +912;21100242249;"Analysis and PDE";journal;"1948206X, 21575045";"Mathematical Sciences Publishers";No;No;2,601;Q1;48;57;200;2459;398;200;1,94;43,14;11,11;0;United States;Northern America;"Mathematical Sciences Publishers";"2008-2026";"Analysis (Q1); Applied Mathematics (Q1); Numerical Analysis (Q1)";"Mathematics" +913;29372;"Energy Conversion and Management";journal;"01968904";"Elsevier Ltd";No;No;2,600;Q1;293;1099;3658;68151;46250;3652;12,80;62,01;26,15;4;United Kingdom;Western Europe;"Elsevier Ltd";"1979-2026";"Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Nuclear Energy and Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +914;21100211738;"European Journal of Preventive Cardiology";journal;"20474881, 20474873";"Oxford University Press";No;No;2,600;Q1;139;324;1132;8314;4980;625;4,42;25,66;39,07;5;United Kingdom;Western Europe;"Oxford University Press";"1999-2000, 2003-2026";"Cardiology and Cardiovascular Medicine (Q1); Epidemiology (Q1)";"Medicine" +915;19600157019;"IEEE Reviews in Biomedical Engineering";journal;"19373333, 19411189";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,600;Q1;86;23;89;4146;1582;86;18,37;180,26;26,32;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2008-2026";"Biomedical Engineering (Q1)";"Engineering" +916;17853;"Nano Letters";journal;"15306992, 15306984";"American Chemical Society";No;No;2,594;Q1;584;2257;4894;103716;43861;4834;8,69;45,95;32,07;2;United States;Northern America;"American Chemical Society";"2001-2026";"Bioengineering (Q1); Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Nanoscience and Nanotechnology (Q1)";"Chemical Engineering; Chemistry; Engineering; Materials Science; Physics and Astronomy" +917;28635;"Composites Part B: Engineering";journal;"13598368";"Elsevier Ltd";No;No;2,592;Q1;248;890;1929;54939;29306;1926;15,35;61,73;31,28;0;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Ceramics and Composites (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +918;18300156731;"Nature Reviews Urology";journal;"17594812, 17594820";"Nature Research";No;No;2,589;Q1;128;159;404;11724;2027;212;5,11;73,74;31,08;1;United Kingdom;Western Europe;"Nature Research";"2009-2026";"Urology (Q1)";"Medicine" +919;27130;"Progress in Quantum Electronics";journal;"00796727";"Elsevier Ltd";No;No;2,589;Q1;79;19;44;3614;518;42;11,58;190,21;21,21;0;United Kingdom;Western Europe;"Elsevier Ltd";"1969-1971, 1973-1977, 1979-1985, 1987-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Statistical and Nonlinear Physics (Q1)";"Engineering; Materials Science; Physics and Astronomy" +920;17400154830;"Review of Managerial Science";journal;"18636683, 18636691";"Springer Verlag";No;No;2,587;Q1;74;170;299;18545;4543;294;14,64;109,09;41,08;3;Germany;Western Europe;"Springer Verlag";"2007, 2009-2026";"Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +921;27239;"IEEE Network";journal;"08908044, 1558156X";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,580;Q1;167;314;613;4613;5550;586;9,39;14,69;26,42;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1986-2026";"Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +922;13300154706;"Journal of the Association for Information Systems";journal;"15583457, 15369323";"Association for Information Systems";No;No;2,577;Q1;117;61;175;5972;1679;145;8,63;97,90;30,06;1;United States;Northern America;"Association for Information Systems";"2007-2026";"Computer Science Applications (Q1); Information Systems (Q1)";"Computer Science" +923;25465;"Current Diabetes Reports";journal;"15344827, 15390829";"Springer";No;No;2,576;Q1;117;58;109;4556;982;109;7,89;78,55;69,79;0;United States;Northern America;"Springer";"2001-2026";"Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Medicine" +924;21100870919;"Political Science Research and Methods";journal;"20498470, 20498489";"Cambridge University Press";Yes;No;2,574;Q1;40;161;196;8047;887;196;4,25;49,98;27,92;8;United Kingdom;Western Europe;"Cambridge University Press";"2014, 2018-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +925;21100405003;"Science Bulletin";journal;"20959273, 20959281";"Elsevier B.V.";No;No;2,573;Q1;177;650;1411;22882;13510;1049;9,36;35,20;36,40;3;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +926;14105;"European Journal of Personality";journal;"08902070, 10990984";"SAGE Publications Ltd";No;No;2,570;Q1;115;52;148;4972;786;145;5,06;95,62;44,30;4;United Kingdom;Western Europe;"SAGE Publications Ltd";"1987-2026";"Social Psychology (Q1)";"Psychology" +927;21101237955;"Interdisciplinary Medicine";journal;"28326237, 28326245";"Wiley-VCH Verlag";Yes;No;2,569;Q1;28;71;81;8138;1228;80;15,16;114,62;39,14;0;Germany;Western Europe;"Wiley-VCH Verlag";"2023-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +928;19700201522;"Journal of Business Logistics";journal;"21581592, 07353766";"John Wiley & Sons Inc.";No;No;2,569;Q1;107;52;102;5347;1302;86;11,44;102,83;24,84;0;United States;Northern America;"John Wiley & Sons Inc.";"2001-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management Science and Operations Research (Q1)";"Business, Management and Accounting; Decision Sciences" +929;21100854649;"IEEE Transactions on Transportation Electrification";journal;"23327782";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,567;Q1;114;1227;1591;43967;16217;1588;9,40;35,83;25,66;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015-2026";"Automotive Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Transportation (Q1)";"Energy; Engineering; Social Sciences" +930;25152;"Journal of Toxicology and Environmental Health - Part B: Critical Reviews";journal;"10937404, 15216950";"Taylor and Francis Ltd.";No;No;2,567;Q1;107;25;45;3315;556;45;13,73;132,60;43,48;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Health, Toxicology and Mutagenesis (Q1); Toxicology (Q1)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +931;21101021052;"Journal of the Association for Consumer Research";journal;"23781823, 23781815";"University of Chicago Press";No;No;2,566;Q1;36;38;131;1672;340;123;2,70;44,00;43,88;0;United States;Northern America;"University of Chicago Press";"2016-2026";"Applied Psychology (Q1); Economics and Econometrics (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Psychology" +932;28137;"International Journal of Nursing Studies";journal;"1873491X, 00207489";"Elsevier Ltd";No;No;2,563;Q1;164;221;504;12187;4392;429;7,84;55,14;62,76;1;United Kingdom;Western Europe;"Elsevier Ltd";"1963-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +933;15392;"Journal of Business and Psychology";journal;"1573353X, 08893268";"Kluwer Academic/Human Sciences Press Inc.";No;No;2,563;Q1;115;128;202;12314;1452;199;7,36;96,20;44,96;2;United States;Northern America;"Kluwer Academic/Human Sciences Press Inc.";"1986-2026";"Applied Psychology (Q1); Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)";"Business, Management and Accounting; Psychology" +934;5700169428;"Nous";journal;"14680068, 00294624";"Wiley-Blackwell";No;No;2,563;Q1;93;74;137;4235;496;137;3,41;57,23;18,18;0;United States;Northern America;"Wiley-Blackwell";"1989, 1996-2026";"Philosophy (Q1)";"Arts and Humanities" +935;147222;"Reviews in Mineralogy and Geochemistry";book series;"15296466, 19432666";"Mineralogical Society of America";No;No;2,560;Q1;153;1;95;254;718;54;6,92;254,00;0,00;0;United States;Northern America;"Mineralogical Society of America";"1989, 1999-2015, 2017-2019, 2021-2024";"Geochemistry and Petrology (Q1)";"Earth and Planetary Sciences" +936;21101049063;"Advanced Composites and Hybrid Materials";journal;"25220128, 25220136";"Springer Science and Business Media B.V.";No;No;2,557;Q1;104;449;727;39062;11292;727;15,98;87,00;34,03;0;Germany;Western Europe;"Springer Science and Business Media B.V.";"2018-2026";"Ceramics and Composites (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1); Polymers and Plastics (Q1)";"Materials Science" +937;21100228068;"Wiley Interdisciplinary Reviews: Data Mining and Knowledge Discovery";journal;"19424795, 19424787";"John Wiley & Sons Inc.";No;No;2,556;Q1;89;63;120;8523;2391;120;23,45;135,29;31,49;1;United States;Northern America;"John Wiley & Sons Inc.";"2011-2026";"Computer Science (miscellaneous) (Q1)";"Computer Science" +938;12700;"Nucleus";journal;"19491042, 19491034";"Taylor and Francis Ltd.";Yes;No;2,554;Q1;62;19;82;1874;427;78;5,24;98,63;44,93;0;United States;Northern America;"Taylor and Francis Ltd.";"2010-2026";"Cell Biology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +939;17378;"Critical Reviews in Biochemistry and Molecular Biology";journal;"10409238, 15497798";"Taylor and Francis Ltd.";No;No;2,553;Q1;136;13;50;2815;396;50;7,50;216,54;55,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972-2026";"Biochemistry (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +940;15572;"Information Systems Frontiers";journal;"15729419, 13873326";"Springer Netherlands";No;No;2,549;Q1;106;175;389;14950;5881;374;15,40;85,43;30,93;3;Netherlands;Western Europe;"Springer Netherlands";"1999-2026";"Computer Networks and Communications (Q1); Information Systems (Q1); Software (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +941;19462;"Shiyou Xuebao/Acta Petrolei Sinica";journal;"02532697";"Science Press";No;No;2,545;Q1;94;147;427;7182;3254;427;8,07;48,86;29,52;0;China;Asiatic Region;"Science Press";"1985-1988, 1990-1992, 2001-2025";"Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1)";"Chemical Engineering; Energy" +942;29412;"Group and Organization Management";journal;"15523993, 10596011";"SAGE Publications Inc.";No;No;2,543;Q1;113;144;157;9489;1175;143;4,70;65,90;44,21;2;United States;Northern America;"SAGE Publications Inc.";"1976-2026";"Applied Psychology (Q1); Arts and Humanities (miscellaneous) (Q1); Organizational Behavior and Human Resource Management (Q1)";"Arts and Humanities; Business, Management and Accounting; Psychology" +943;21100381006;"Journal of Rock Mechanics and Geotechnical Engineering";journal;"25890417, 16747755";"Chinese Academy of Sciences";Yes;Yes;2,542;Q1;99;525;732;33230;8338;725;10,33;63,30;23,91;2;China;Asiatic Region;"Chinese Academy of Sciences";"2013-2026";"Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences" +944;21100327726;"Applied Physics Reviews";journal;"19319401";"American Institute of Physics";Yes;No;2,540;Q1;132;239;494;39604;5509;492;10,39;165,71;26,22;0;United States;Northern America;"American Institute of Physics";"2014-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +945;4700152305;"Public Management Review";journal;"14719045, 14719037";"Taylor and Francis Ltd.";No;No;2,540;Q1;115;249;379;20327;3397;372;9,04;81,63;41,22;15;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Public Administration (Q1)";"Social Sciences" +946;25610;"International Endodontic Journal";journal;"13652591, 01432885";"Wiley-Blackwell Publishing Ltd";No;No;2,539;Q1;165;171;435;8553;3735;405;7,29;50,02;45,62;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1967-1972, 1974-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +947;21101145520;"Cyborg and Bionic Systems";journal;"20971087, 26927632";"American Association for the Advancement of Science";Yes;Yes;2,535;Q1;41;71;143;4618;2586;142;19,89;65,04;38,14;0;United States;Northern America;"American Association for the Advancement of Science";"2020-2026";"Artificial Intelligence (Q1); Biomedical Engineering (Q1); Human-Computer Interaction (Q1); Mechanical Engineering (Q1)";"Computer Science; Engineering" +948;23010;"Journal of Controlled Release";journal;"18734995, 01683659";"Elsevier B.V.";No;No;2,535;Q1;345;1027;2034;76875;28829;2010;12,87;74,85;43,73;0;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Pharmaceutical Science (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +949;21101177658;"Circular Economy";journal;"27731677, 27731685";"Elsevier B.V.";Yes;No;2,534;Q1;22;26;62;1423;944;59;14,17;54,73;39,32;1;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Renewable Energy, Sustainability and the Environment (Q1); Waste Management and Disposal (Q1)";"Energy; Environmental Science" +950;25954;"Haematologica";journal;"15928721, 03906078";"Ferrata Storti Foundation";Yes;No;2,534;Q1;179;520;1360;13903;5579;766;4,00;26,74;47,25;7;Italy;Western Europe;"Ferrata Storti Foundation";"1947-2026";"Hematology (Q1)";"Medicine" +951;13455;"Learning and Instruction";journal;"09594752";"Elsevier B.V.";No;No;2,533;Q1;162;183;305;12638;2421;301;7,08;69,06;55,02;2;United Kingdom;Western Europe;"Elsevier B.V.";"1991-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +952;21101175794;"Journal of Road Engineering";journal;"20970498, 27730077";"KeAi Publishing Communications Ltd.";Yes;Yes;2,532;Q1;26;37;72;3720;968;72;13,60;100,54;31,48;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2021-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1)";"Engineering" +953;17945;"Bioinformatics";journal;"13674811, 13674803";"Oxford University Press";Yes;No;2,527;Q1;511;669;2583;23223;17404;2574;6,18;34,71;31,74;0;United Kingdom;Western Europe;"Oxford University Press";"1985-2026";"Biochemistry (Q1); Computational Mathematics (Q1); Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Molecular Biology (Q1); Statistics and Probability (Q1)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics" +954;12977;"PLOS Biology";journal;"15449173, 15457885";"Public Library of Science";Yes;No;2,525;Q1;328;562;1342;35714;7899;1316;5,57;63,55;43,24;3;United States;Northern America;"Public Library of Science";"2003-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Neuroscience" +955;21100869887;"Advances in Physics: X";journal;"23746149";"Taylor and Francis Ltd.";Yes;No;2,522;Q1;57;32;90;4848;1001;88;9,81;151,50;37,19;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +956;13213;"European Journal of Epidemiology";journal;"03932990, 15737284";"Springer Science and Business Media B.V.";No;No;2,522;Q1;153;132;361;5613;2136;304;5,48;42,52;50,85;2;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1985-2001, 2003-2026";"Epidemiology (Q1)";"Medicine" +957;21100415950;"JACC: Clinical Electrophysiology";journal;"24055018, 2405500X";"Elsevier Inc.";No;No;2,521;Q1;87;415;1019;6735;4128;578;3,90;16,23;24,34;1;United States;Northern America;"Elsevier Inc.";"2015-2026";"Cardiology and Cardiovascular Medicine (Q1); Physiology (medical) (Q1)";"Medicine" +958;21100196101;"Annual Review of Food Science and Technology";journal;"19411413, 19411421";"Annual Reviews Inc.";No;No;2,519;Q1;112;21;66;2774;1138;66;17,51;132,10;39,02;1;United States;Northern America;"Annual Reviews Inc.";"2010-2025";"Food Science (Q1)";"Agricultural and Biological Sciences" +959;21101065916;"Cell Reports Methods";journal;"26672375";"Cell Press";Yes;No;2,518;Q1;32;161;522;9573;2560;470;5,13;59,46;36,60;0;United States;Northern America;"Cell Press";"2021-2026";"Biochemistry (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biotechnology (Q1); Computer Science Applications (Q1); Genetics (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Medicine" +960;21101081613;"Journal of Hazardous Materials Letters";journal;"26669110";"Elsevier B.V.";Yes;No;2,518;Q1;32;33;86;1615;994;86;10,24;48,94;37,63;1;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Environmental Chemistry (Q1); Environmental Engineering (Q1); Health, Toxicology and Mutagenesis (Q1); Pollution (Q1); Waste Management and Disposal (Q1)";"Environmental Science" +961;16088;"Journal of Nanobiotechnology";journal;"14773155";"BioMed Central Ltd";Yes;No;2,517;Q1;144;772;1753;62905;26768;1749;14,29;81,48;42,92;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q1); Nanoscience and Nanotechnology (Q1); Pharmaceutical Science (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Immunology and Microbiology; Materials Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +962;20485;"Annals of Surgery";journal;"15281140, 00034932";"Wolters Kluwer Health";Yes;No;2,516;Q1;370;530;1657;16912;10292;1531;6,15;31,91;33,28;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1899, 1905, 1923, 1927, 1931, 1933-1937, 1939-2026";"Surgery (Q1)";"Medicine" +963;29403;"Energy Policy";journal;"03014215";"Elsevier B.V.";No;No;2,516;Q1;311;355;1440;24964;15588;1428;10,11;70,32;35,71;21;United Kingdom;Western Europe;"Elsevier B.V.";"1973-2026";"Energy (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1)";"Energy; Environmental Science" +964;20084;"British Journal of Pharmacology";journal;"14765381, 00071188";"John Wiley and Sons Inc";No;No;2,515;Q1;262;379;820;29384;6437;781;7,89;77,53;44,97;1;United States;Northern America;"John Wiley and Sons Inc";"1966-2026";"Pharmacology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +965;21101195786;"Cell Insight";journal;"27728927";"Elsevier B.V.";Yes;No;2,515;Q1;18;36;91;3047;539;86;6,08;84,64;41,71;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Cell Biology (Q1); Molecular Biology (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology" +966;12767;"British Journal of Clinical Psychology";journal;"01446657, 20448260";"Wiley-Blackwell";No;No;2,511;Q1;109;79;162;4441;1239;162;3,63;56,22;64,25;2;United States;Northern America;"Wiley-Blackwell";"1962-1966, 1968, 1970, 1981-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Psychology" +967;15470;"Journal of Environmental Psychology";journal;"02724944, 15229610";"Academic Press";No;No;2,508;Q1;210;296;579;23120;5546;561;7,74;78,11;53,06;4;United States;Northern America;"Academic Press";"1981-2026";"Applied Psychology (Q1); Social Psychology (Q1)";"Psychology" +968;26261;"Review of International Political Economy";journal;"09692290, 14664526";"Routledge";No;No;2,508;Q1;100;99;266;8569;1910;261;6,35;86,56;40,76;10;United Kingdom;Western Europe;"Routledge";"1994-2026";"Economics and Econometrics (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Social Sciences" +969;15857;"Journal of Clinical Epidemiology";journal;"08954356, 18785921";"Elsevier Inc.";No;No;2,507;Q1;272;291;851;9860;4398;700;4,56;33,88;50,13;3;United States;Northern America;"Elsevier Inc.";"1988-2026";"Epidemiology (Q1)";"Medicine" +970;3900148216;"Studies in Second Language Acquisition";journal;"02722631, 14701545";"Cambridge University Press";No;No;2,507;Q1;128;69;192;4564;1303;190;6,40;66,14;49,39;0;United Kingdom;Western Europe;"Cambridge University Press";"1978-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +971;21100981277;"Wiley Interdisciplinary Reviews: Water";journal;"20491948";"John Wiley & Sons Inc.";No;No;2,504;Q1;90;57;175;8581;1810;175;10,37;150,54;42,36;4;United States;Northern America;"John Wiley & Sons Inc.";"2014-2026";"Aquatic Science (Q1); Ecology (Q1); Management, Monitoring, Policy and Law (Q1); Ocean Engineering (Q1); Oceanography (Q1); Water Science and Technology (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering; Environmental Science" +972;16733;"IEEE Transactions on Medical Imaging";journal;"02780062, 1558254X";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,501;Q1;283;477;993;26190;12479;992;12,19;54,91;29,77;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1982-2026";"Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Radiological and Ultrasound Technology (Q1); Software (Q1)";"Computer Science; Engineering; Health Professions" +973;28261;"Space Science Reviews";journal;"15729672, 00386308";"Springer Netherlands";No;No;2,501;Q1;201;125;243;16177;2102;239;9,10;129,42;24,28;0;Netherlands;Western Europe;"Springer Netherlands";"1962-2026";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +974;21101090801;"AGU Advances";journal;"2576604X";"John Wiley and Sons Inc";Yes;No;2,500;Q1;22;101;152;7725;910;124;5,81;76,49;31,91;0;United States;Northern America;"John Wiley and Sons Inc";"2021-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +975;21101042196;"Artificial Intelligence in Agriculture";journal;"25897217";"KeAi Communications Co.";Yes;No;2,496;Q1;44;58;86;3818;2112;86;21,59;65,83;28,33;0;China;Asiatic Region;"KeAi Communications Co.";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Artificial Intelligence (Q1); Computer Science Applications (Q1); Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Computer Science; Engineering" +976;14000155854;"Language Teaching";journal;"02614448, 14753049";"Cambridge University Press";No;No;2,494;Q1;96;58;133;3547;1096;133;8,16;61,16;46,60;0;United Kingdom;Western Europe;"Cambridge University Press";"1969-2026";"Linguistics and Language (Q1)";"Social Sciences" +977;19700166401;"Circulation: Cardiovascular Quality and Outcomes";journal;"19417705, 19417713";"Lippincott Williams and Wilkins";No;No;2,493;Q1;123;126;386;3493;1831;279;4,04;27,72;46,16;0;United States;Northern America;"Lippincott Williams and Wilkins";"2008-2025";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +978;19700177034;"IEEE Transactions on Affective Computing";journal;"19493045";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,492;Q1;115;281;584;19088;7548;578;11,70;67,93;35,64;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2010-2026";"Human-Computer Interaction (Q1); Software (Q1)";"Computer Science" +979;97151;"Journal of World Prehistory";journal;"15737802, 08927537";"Springer";No;No;2,492;Q1;69;16;21;2327;101;21;2,62;145,44;49,02;0;United States;Northern America;"Springer";"1987-2006, 2008-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +980;27781;"Publications of the Astronomical Society of the Pacific";journal;"00046280, 15383873";"Institute of Physics";No;No;2,492;Q1;189;151;360;9670;2107;360;6,01;64,04;26,31;1;United States;Northern America;"Institute of Physics";"1966, 1969, 1972-1974, 1978-1979, 1982-1983, 1986-1988, 1991-2025";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +981;7600153101;"Clinical Journal of the American Society of Nephrology";journal;"1555905X, 15559041";"Lippincott Williams and Wilkins";No;No;2,491;Q1;208;301;769;8556;3661;534;4,27;28,43;48,73;0;United States;Northern America;"Lippincott Williams and Wilkins";"2006-2026";"Critical Care and Intensive Care Medicine (Q1); Epidemiology (Q1); Nephrology (Q1); Transplantation (Q1)";"Medicine" +982;29794;"Gastric Cancer";journal;"14363291, 14363305";"Springer";No;No;2,489;Q1;114;114;314;3905;2216;298;7,79;34,25;28,30;2;Japan;Asiatic Region;"Springer";"2000-2026";"Cancer Research (Q1); Gastroenterology (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +983;21100901769;"General Psychiatry";journal;"2517729X, 20965923";"BMJ Publishing Group";Yes;Yes;2,487;Q1;54;59;201;2229;1531;154;6,89;37,78;44,69;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2018-2025";"Neurology (Q1); Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +984;21100861110;"Journal of the Association of Environmental and Resource Economists";journal;"23335963, 23335955";"University of Chicago Press";No;No;2,486;Q1;50;52;140;2873;425;139;3,07;55,25;21,24;12;United States;Northern America;"University of Chicago Press";"2015-2026";"Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)";"Economics, Econometrics and Finance; Environmental Science" +985;21100788288;"JACC: Basic to Translational Science";journal;"2452302X";"Elsevier Inc.";Yes;No;2,483;Q1;72;225;494;8002;2069;279;4,10;35,56;39,42;0;United States;Northern America;"Elsevier Inc.";"2016-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +986;24353;"Journal of Economic Surveys";journal;"14676419, 09500804";"Wiley-Blackwell Publishing Ltd";No;No;2,483;Q1;131;97;169;11758;1768;169;10,65;121,22;30,17;20;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1987-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +987;21101029472;"JMIR Medical Education";journal;"23693762";"JMIR Publications Inc.";Yes;No;2,482;Q1;48;182;324;7898;4256;311;15,10;43,40;49,20;2;Canada;Northern America;"JMIR Publications Inc.";"2015-2026";"Education (Q1)";"Social Sciences" +988;19700174935;"Alzheimer's Research and Therapy";journal;"17589193";"BioMed Central Ltd";Yes;No;2,479;Q1;123;266;676;15649;5861;666;7,82;58,83;47,24;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Cognitive Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +989;21101177662;"Biomedical Technology";journal;"2949723X";"KeAi Communications Co.";Yes;No;2,479;Q1;22;31;59;3413;1120;57;18,98;110,10;37,21;0;China;Asiatic Region;"KeAi Communications Co.";"2023-2026";"Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1)";"Engineering; Medicine" +990;19104;"Thorax";journal;"14683296, 00406376";"BMJ Publishing Group";No;No;2,479;Q1;270;234;673;5979;3586;492;5,17;25,55;42,77;0;United Kingdom;Western Europe;"BMJ Publishing Group";"1946-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +991;12523;"Oncogene";journal;"14765594, 09509232";"Springer Nature";Yes;No;2,474;Q1;387;389;1021;20806;7753;1015;7,92;53,49;42,12;3;United Kingdom;Western Europe;"Springer Nature";"1987-2026";"Cancer Research (Q1); Genetics (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +992;21103;"Milbank Quarterly";journal;"0887378X, 14680009";"Wiley-Blackwell Publishing Ltd";No;No;2,473;Q1;127;66;170;4724;959;152;6,28;71,58;59,52;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1986-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +993;14166;"Journal of Health Economics";journal;"18791646, 01676296";"Elsevier B.V.";No;No;2,471;Q1;159;96;238;5625;1080;238;4,11;58,59;39,04;10;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +994;21101107945;"Sustainable Operations and Computers";journal;"26664127";"KeAi Communications Co.";Yes;No;2,470;Q1;32;23;72;1062;1867;72;9,05;46,17;32,20;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Computer Science Applications (Q1); Global and Planetary Change (Q1); Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Computer Science; Decision Sciences; Energy; Engineering; Environmental Science" +995;21101089625;"ACS Environmental Au";journal;"26942518";"American Chemical Society";Yes;No;2,467;Q1;30;55;118;4046;1205;104;9,49;73,56;45,00;1;United States;Northern America;"American Chemical Society";"2021-2026";"Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1); Water Science and Technology (Q1)";"Environmental Science" +996;21100367530;"Acta Neuropathologica Communications";journal;"20515960";"BioMed Central Ltd";Yes;No;2,466;Q1;108;251;572;15528;3431;546;5,71;61,86;44,90;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2013-2026";"Cellular and Molecular Neuroscience (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1)";"Medicine; Neuroscience" +997;21101297832;"Cambridge Prisms: Extinction";journal;"27550958";"Cambridge University Press";Yes;No;2,465;Q1;11;16;47;1001;282;45;6,00;62,56;41,03;0;United Kingdom;Western Europe;"Cambridge University Press";"2023-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Global and Planetary Change (Q1); Nature and Landscape Conservation (Q1); Paleontology (Q1)";"Earth and Planetary Sciences; Environmental Science" +998;21101255352;"eGastroenterology";journal;"29767296, 27660125";"BMJ Publishing Group";Yes;Yes;2,465;Q1;14;34;58;2173;476;51;8,21;63,91;37,54;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2023-2026";"Gastroenterology (Q1)";"Medicine" +999;14130;"Research in Organizational Behavior";journal;"01913085";"Emerald Publishing";No;No;2,465;Q1;87;12;30;2589;127;28;3,07;215,75;65,52;0;United Kingdom;Western Europe;"Emerald Publishing";"2000-2004, 2006, 2008-2025";"Experimental and Cognitive Psychology (Q1); Organizational Behavior and Human Resource Management (Q1); Social Psychology (Q1)";"Business, Management and Accounting; Psychology" +1000;21100773746;"Horticulture Research";journal;"26626810, 20527276";"Oxford University Press";Yes;No;2,464;Q1;97;350;910;24129;8848;865;9,24;68,94;44,41;0;United Kingdom;Western Europe;"Oxford University Press";"2014-2026";"Biochemistry (Q1); Biotechnology (Q1); Genetics (Q1); Horticulture (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1001;21100936623;"Campbell Systematic Reviews";journal;"18911803";"John Wiley & Sons Inc.";Yes;Yes;2,460;Q1;35;61;225;6185;2198;214;3,73;101,39;57,49;5;United States;Northern America;"John Wiley & Sons Inc.";"2019-2025";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +1002;16146;"Trends in Biotechnology";journal;"01677799, 18793096";"Elsevier Ltd";No;No;2,460;Q1;278;282;446;17856;4986;425;10,44;63,32;40,00;2;United Kingdom;Western Europe;"Elsevier Ltd";"1983-2026";"Bioengineering (Q1); Biotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +1003;18874;"Journal of Educational Computing Research";journal;"15414140, 07356331";"SAGE Publications Inc.";No;No;2,457;Q1;96;71;204;4887;2080;204;10,35;68,83;46,41;0;United States;Northern America;"SAGE Publications Inc.";"1988, 1990, 1996-2026";"Computer Science Applications (Q1); Education (Q1)";"Computer Science; Social Sciences" +1004;21101151586;"Molecular Horticulture";journal;"27309401";"BioMed Central Ltd";Yes;Yes;2,457;Q1;22;61;96;4427;880;73;7,36;72,57;42,89;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2021-2026";"Agronomy and Crop Science (Q1); Horticulture (Q1); Molecular Biology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1005;18110;"Sociological Theory";journal;"07352751, 14679558";"SAGE Publications Ltd";No;No;2,457;Q1;101;20;50;2142;285;50;4,62;107,10;4,55;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2026";"Sociology and Political Science (Q1)";"Social Sciences" +1006;7500153133;"Laser and Photonics Reviews";journal;"18638880, 18638899";"Wiley-VCH Verlag";No;No;2,455;Q1;168;1178;1248;69013;13813;1248;10,32;58,58;30,66;0;Germany;Western Europe;"Wiley-VCH Verlag";"2007-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Materials Science; Physics and Astronomy" +1007;21100205116;"Diagnostic and Interventional Imaging";journal;"22115684";"Elsevier Masson s.r.l.";Yes;No;2,454;Q1;69;90;279;2150;1768;178;7,46;23,89;29,28;0;France;Western Europe;"Elsevier Masson s.r.l.";"2012-2026";"Medicine (miscellaneous) (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Health Professions; Medicine" +1008;23256;"System";journal;"0346251X";"Elsevier Ltd";No;No;2,450;Q1;125;256;571;17318;5438;566;9,52;67,65;52,13;0;United Kingdom;Western Europe;"Elsevier Ltd";"1973-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +1009;5200152631;"IEEE Vehicular Technology Magazine";journal;"15566072, 15566080";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,449;Q1;86;72;178;950;1195;136;7,19;13,19;27,52;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2006-2026";"Automotive Engineering (Q1)";"Engineering" +1010;11600153422;"Review of Environmental Economics and Policy";journal;"17506824, 17506816";"University of Chicago Press";No;No;2,445;Q1;80;19;62;1121;398;55;3,76;59,00;28,00;2;United States;Northern America;"University of Chicago Press";"2008-2026";"Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1)";"Economics, Econometrics and Finance; Environmental Science" +1011;19600161806;"Journal of Family Business Strategy";journal;"18778585";"Elsevier Ltd";No;No;2,444;Q1;79;18;90;2190;760;88;5,95;121,67;45,16;0;United Kingdom;Western Europe;"Elsevier Ltd";"2010-2026";"Economics and Econometrics (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +1012;21101048264;"Nano Materials Science";journal;"20966482, 25899651";"KeAi Communications Co.";Yes;Yes;2,441;Q1;54;172;164;15597;2432;160;16,07;90,68;35,29;1;China;Asiatic Region;"KeAi Communications Co.";"2019-2026";"Chemical Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Chemical Engineering; Engineering; Materials Science" +1013;19900193571;"Fluids and Barriers of the CNS";journal;"20458118";"BioMed Central Ltd";Yes;No;2,439;Q1;77;125;299;9258;2243;289;6,65;74,06;41,73;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2011-2026";"Cellular and Molecular Neuroscience (Q1); Developmental Neuroscience (Q1); Medicine (miscellaneous) (Q1); Neurology (Q1)";"Medicine; Neuroscience" +1014;21100255413;"OncoImmunology";journal;"2162402X, 21624011";"Taylor and Francis Ltd.";Yes;No;2,438;Q1;134;127;432;6506;2744;386;5,67;51,23;48,29;0;United States;Northern America;"Taylor and Francis Ltd.";"2012-2026";"Immunology (Q1); Immunology and Allergy (Q1); Oncology (Q1)";"Immunology and Microbiology; Medicine" +1015;30718;"Annals of Tourism Research";journal;"01607383";"Elsevier Ltd";No;No;2,435;Q1;238;149;397;8603;3861;382;8,28;57,74;41,85;0;United Kingdom;Western Europe;"Elsevier Ltd";"1973-2026";"Business and International Management (Q1); Development (Q1); Marketing (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Social Sciences" +1016;12815;"Journal of Information Technology";journal;"14664437, 02683962";"Palgrave Macmillan Ltd.";No;No;2,434;Q1;102;26;83;2904;916;76;10,73;111,69;29,69;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1987-2026";"Information Systems (Q1); Library and Information Sciences (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Computer Science; Social Sciences" +1017;19900192439;"IMF Economic Review";journal;"2041417X, 20414161";"Palgrave Macmillan Ltd.";No;No;2,433;Q1;88;51;95;2615;280;92;2,86;51,27;22,41;12;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2010-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +1018;21100325067;"Energy Research and Social Science";journal;"22146326, 22146296";"Elsevier Ltd";No;No;2,432;Q1;145;621;1276;54908;11487;1276;8,18;88,42;45,77;44;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Nuclear Energy and Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1); Social Sciences (miscellaneous) (Q1)";"Energy; Social Sciences" +1019;21915;"Omega (United Kingdom)";journal;"03050483";"Elsevier B.V.";No;No;2,428;Q1;183;131;421;7242;3724;421;8,59;55,28;33,95;0;United Kingdom;Western Europe;"Elsevier B.V.";"1973-2026";"Information Systems and Management (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +1020;28785;"Cancer";journal;"0008543X, 10970142";"John Wiley and Sons Inc";No;No;2,427;Q1;359;588;1535;20596;7160;1024;4,26;35,03;48,37;3;United States;Northern America;"John Wiley and Sons Inc";"1948-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1021;21100403931;"Materials Horizons";journal;"20516347, 20516355";"Royal Society of Chemistry";No;No;2,427;Q1;159;633;1400;50027;14403;1348;10,23;79,03;33,80;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2014-2026";"Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1); Process Chemistry and Technology (Q1)";"Chemical Engineering; Engineering; Materials Science" +1022;19017;"RNA";journal;"13558382, 14699001";"Cold Spring Harbor Laboratory Press";No;No;2,427;Q1;200;135;395;8900;1471;390;3,61;65,93;45,04;0;United States;Northern America;"Cold Spring Harbor Laboratory Press";"1995-2026";"Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1023;19900191866;"Translational Psychiatry";journal;"21583188";"Springer Nature";Yes;No;2,425;Q1;150;532;1395;38250;10614;1384;7,37;71,90;45,59;2;United Kingdom;Western Europe;"Springer Nature";"2011-2026";"Biological Psychiatry (Q1); Cellular and Molecular Neuroscience (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +1024;29602;"Journal of Ecology";journal;"00220477, 13652745";"Wiley-Blackwell Publishing Ltd";No;No;2,424;Q1;227;266;610;22115;4314;606;6,26;83,14;38,22;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1975-1976, 1979-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +1025;21101041514;"Hepatology Communications";journal;"2471254X";"Lippincott Williams and Wilkins";Yes;No;2,423;Q1;69;225;875;10461;5095;797;5,55;46,49;43,57;0;United States;Northern America;"Lippincott Williams and Wilkins";"2017-2026";"Hepatology (Q1)";"Medicine" +1026;12211;"Journal of Bone and Mineral Research";journal;"15234681, 08840431";"Oxford University Press";No;No;2,423;Q1;284;146;604;5638;3749;527;5,58;38,62;46,52;0;United States;Northern America;"Oxford University Press";"1986-2026";"Endocrinology, Diabetes and Metabolism (Q1); Orthopedics and Sports Medicine (Q1)";"Medicine" +1027;27825;"American Journal of Gastroenterology";journal;"15720241, 00029270";"Wolters Kluwer Health";No;No;2,422;Q1;307;3935;1287;16770;5800;852;4,64;4,26;38,22;2;United Kingdom;Western Europe;"Wolters Kluwer Health";"1938, 1947-2026";"Gastroenterology (Q1); Hepatology (Q1)";"Medicine" +1028;21100970268;"Astrodynamics";journal;"25220098";"Tsinghua University Press";No;No;2,422;Q1;29;54;101;1999;779;95;8,15;37,02;22,42;0;Singapore;Asiatic Region;"Tsinghua University Press";"2017-2026";"Aerospace Engineering (Q1); Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Engineering; Physics and Astronomy" +1029;30050;"Clinical Nutrition";journal;"15321983, 02615614";"Churchill Livingstone";No;No;2,420;Q1;195;359;1164;18512;7465;836;6,13;51,57;49,91;3;United Kingdom;Western Europe;"Churchill Livingstone";"1982-2026";"Critical Care and Intensive Care Medicine (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +1030;100459;"International Conference on Architectural Support for Programming Languages and Operating Systems - ASPLOS";conference and proceedings;"-";"Association for Computing Machinery";No;No;2,419;-;120;191;422;12325;4234;401;10,08;64,53;21,24;0;United States;Northern America;"Association for Computing Machinery";"1973, 1982, 1991-1992, 1994, 1998, 2000, 2002, 2006-2025";"Hardware and Architecture; Information Systems; Software";"Computer Science" +1031;85519;"Ethics";journal;"1539297X, 00141704";"University of Chicago Press";No;No;2,418;Q1;99;24;59;291;195;57;2,44;12,13;37,04;0;United States;Northern America;"University of Chicago Press";"1973-1990, 1992-1993, 1996-2026";"Philosophy (Q1)";"Arts and Humanities" +1032;18093;"Archives of Computational Methods in Engineering";journal;"18861784, 11343060";"Springer Netherlands";No;No;2,415;Q1;129;290;527;46676;9894;527;18,84;160,95;24,61;2;Netherlands;Western Europe;"Springer Netherlands";"1994-2026";"Applied Mathematics (Q1); Computer Science Applications (Q1)";"Computer Science; Mathematics" +1033;24487;"Proceedings of the London Mathematical Society";journal;"00246115, 1460244X";"John Wiley and Sons Ltd";No;No;2,413;Q1;69;93;197;4044;375;197;1,79;43,48;14,93;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1865-1866, 1869, 1871, 1873-1902, 1904-1905, 1907-1915, 1917-1918, 1920-1940, 1942, 1945-1946, 1948-1978, 1980-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +1034;21100857408;"Algebraic Geometry";journal;"23131691, 22142584";"European Mathematical Society Publishing House";Yes;Yes;2,412;Q1;24;27;75;1066;122;75;1,21;39,48;18,75;0;Germany;Western Europe;"European Mathematical Society Publishing House";"2014-2026";"Algebra and Number Theory (Q1); Geometry and Topology (Q1)";"Mathematics" +1035;19400157233;"Circulation: Heart Failure";journal;"19413297, 19413289";"Lippincott Williams and Wilkins";No;No;2,412;Q1;155;179;463;4958;2508;346;4,91;27,70;33,20;0;United States;Northern America;"Lippincott Williams and Wilkins";"2008-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1036;21100316072;"Trends in Environmental Analytical Chemistry";journal;"22141588";"Elsevier B.V.";No;No;2,410;Q1;67;38;92;4851;1601;92;15,60;127,66;47,80;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Analytical Chemistry (Q1); Environmental Chemistry (Q1)";"Chemistry; Environmental Science" +1037;21101093540;"Journal of Applied Learning and Teaching";journal;"2591801X";"Kaplan Singapore";No;No;2,409;Q1;29;61;228;3839;2648;219;15,30;62,93;34,78;0;Singapore;Asiatic Region;"Kaplan Singapore";"2019-2025";"Education (Q1)";"Social Sciences" +1038;16440;"Journal of Translational Medicine";journal;"14795876";"BioMed Central Ltd";Yes;No;2,407;Q1;165;1416;2659;101939;23876;2534;9,00;71,99;45,23;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1039;24025;"Progress in Neurobiology";journal;"18735118, 03010082";"Elsevier Ltd";No;No;2,405;Q1;272;79;251;8199;1718;250;4,74;103,78;49,81;0;United Kingdom;Western Europe;"Elsevier Ltd";"1959, 1962, 1973-2026";"Neuroscience (miscellaneous) (Q1)";"Neuroscience" +1040;21100820001;"Neurology: Neuroimmunology and NeuroInflammation";journal;"23327812";"Lippincott Williams and Wilkins";Yes;No;2,400;Q1;86;126;397;3684;2657;387;6,27;29,24;46,97;0;United States;Northern America;"Lippincott Williams and Wilkins";"2014-2026";"Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +1041;24745;"Addiction";journal;"13600443, 09652140";"Wiley-Blackwell Publishing Ltd";No;No;2,399;Q1;232;314;907;13008;4392;632;4,61;41,43;52,66;16;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1993-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +1042;25038;"IEEE Transactions on Mobile Computing";journal;"15361233, 15580660";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,397;Q1;170;1027;1794;51157;17130;1794;9,61;49,81;30,03;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2002-2026";"Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1); Software (Q1)";"Computer Science; Engineering" +1043;20893;"Transportation Research Part C: Emerging Technologies";journal;"0968090X";"Elsevier Ltd";No;No;2,396;Q1;214;372;1050;22448;11068;1045;9,48;60,34;27,77;1;United Kingdom;Western Europe;"Elsevier Ltd";"1993-2026";"Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Computer Science Applications (Q1); Management Science and Operations Research (Q1); Transportation (Q1)";"Computer Science; Decision Sciences; Engineering; Social Sciences" +1044;25472;"Blood Reviews";journal;"15321681, 0268960X";"Churchill Livingstone";No;No;2,395;Q1;125;56;201;6974;1462;201;7,48;124,54;42,94;1;United Kingdom;Western Europe;"Churchill Livingstone";"1987-2026";"Hematology (Q1); Oncology (Q1)";"Medicine" +1045;19684;"Criminology";journal;"17459125, 00111384";"Wiley-Blackwell";No;No;2,392;Q1;174;40;87;3613;595;87;5,02;90,33;44,19;2;United States;Northern America;"Wiley-Blackwell";"1963-2026";"Law (Q1); Pathology and Forensic Medicine (Q1)";"Medicine; Social Sciences" +1046;12435;"Molecular Cancer Therapeutics";journal;"15357163, 15388514";"American Association for Cancer Research Inc.";No;No;2,392;Q1;212;155;433;8459;2514;425;5,55;54,57;42,99;0;United States;Northern America;"American Association for Cancer Research Inc.";"2001-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1047;5100155080;"Neurotherapeutics";journal;"19337213, 18787479";"Elsevier B.V.";Yes;No;2,384;Q1;152;251;421;19783;3442;399;7,11;78,82;43,98;0;Netherlands;Western Europe;"Elsevier B.V.";"2007-2026";"Neurology (clinical) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +1048;21100924713;"npj 2D Materials and Applications";journal;"23977132";"Nature Publishing Group";Yes;No;2,384;Q1;72;114;242;7509;2274;242;8,52;65,87;24,93;0;United Kingdom;Western Europe;"Nature Publishing Group";"2017-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +1049;21100228537;"JAMA Dermatology";journal;"21686068, 21686084";"American Medical Association";Yes;No;2,383;Q1;205;271;826;4640;3962;533;4,09;17,12;54,74;4;United States;Northern America;"American Medical Association";"2013-2026";"Dermatology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1050;146223;"Behavior Research Methods";journal;"15543528, 1554351X";"Springer Nature";No;No;2,382;Q1;191;334;887;21747;5582;879;5,61;65,11;41,85;0;United States;Northern America;"Springer Nature";"1968-1983, 2004-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Psychology" +1051;21100218328;"Global Food Security";journal;"22119124";"Elsevier B.V.";No;No;2,382;Q1;106;76;224;5393;2337;218;8,27;70,96;46,90;20;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Ecology (Q1); Food Science (Q1); Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1)";"Agricultural and Biological Sciences; Engineering; Environmental Science; Social Sciences" +1052;21101132410;"JACS Au";journal;"26913704";"American Chemical Society";Yes;No;2,382;Q1;68;563;1012;37963;8689;986;8,02;67,43;33,90;0;United States;Northern America;"American Chemical Society";"2021-2026";"Analytical Chemistry (Q1); Chemistry (miscellaneous) (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry" +1053;144668;"Journal of Knowledge Management";journal;"17587484, 13673270";"Emerald Publishing";No;No;2,382;Q1;161;238;425;24188;5821;423;14,78;101,63;43,62;0;United Kingdom;Western Europe;"Emerald Publishing";"1997-2026";"Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1054;14811;"Journal of Sustainable Tourism";journal;"09669582, 17477646";"Taylor and Francis Ltd.";No;No;2,381;Q1;168;201;411;16088;5453;410;13,80;80,04;44,85;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Social Sciences" +1055;21100199818;"Energy Strategy Reviews";journal;"2211467X";"Elsevier";Yes;No;2,380;Q1;94;389;704;34058;9920;702;14,33;87,55;28,57;4;Netherlands;Western Europe;"Elsevier";"2012-2026";"Energy (miscellaneous) (Q1)";"Energy" +1056;130087;"Annual Review of Applied Linguistics";book series;"14716356, 02671905";"Cambridge University Press";Yes;No;2,374;Q1;74;16;42;1026;343;39;11,17;64,13;44,44;0;United Kingdom;Western Europe;"Cambridge University Press";"2005-2025";"Linguistics and Language (Q1); Psychology (miscellaneous) (Q1)";"Psychology; Social Sciences" +1057;25309;"Calculus of Variations and Partial Differential Equations";journal;"14320835, 09442669";"Springer New York";No;No;2,373;Q1;93;303;737;11048;1706;737;2,13;36,46;22,00;0;Germany;Western Europe;"Springer New York";"1993-2026";"Analysis (Q1); Applied Mathematics (Q1)";"Mathematics" +1058;22489;"European Journal of Operational Research";journal;"03772217";"Elsevier B.V.";No;No;2,373;Q1;333;523;1961;30280;16161;1951;8,17;57,90;27,82;3;Netherlands;Western Europe;"Elsevier B.V.";"1977-2026";"Computer Science (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Information Systems and Management (Q1); Management Science and Operations Research (Q1); Modeling and Simulation (Q1)";"Computer Science; Decision Sciences; Engineering; Mathematics" +1059;17385;"International Review of Financial Analysis";journal;"10575219";"Elsevier Inc.";No;No;2,373;Q1;129;803;1564;49128;18895;1560;11,33;61,18;39,16;6;United States;Northern America;"Elsevier Inc.";"1992-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +1060;20910;"Transportation Science";journal;"15265447, 00411655";"INFORMS Institute for Operations Research and the Management Sciences";No;No;2,371;Q1;139;67;233;3202;1442;231;5,87;47,79;21,83;0;United States;Northern America;"INFORMS Institute for Operations Research and the Management Sciences";"1967, 1969-2026";"Civil and Structural Engineering (Q1); Transportation (Q1)";"Engineering; Social Sciences" +1061;13502;"Developmental Review";journal;"02732297, 10902406";"Elsevier Inc.";No;No;2,367;Q1;130;29;76;4833;558;76;6,87;166,66;65,96;0;United States;Northern America;"Elsevier Inc.";"1981-2026";"Developmental and Educational Psychology (Q1); Education (Q1); Experimental and Cognitive Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology; Social Sciences" +1062;14750;"International Journal of Epidemiology";journal;"14643685, 03005771";"Oxford University Press";No;No;2,365;Q1;266;209;690;6794;3835;602;5,23;32,51;50,05;4;United Kingdom;Western Europe;"Oxford University Press";"1972-2026";"Epidemiology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1063;15686;"GLIA";journal;"08941491, 10981136";"John Wiley & Sons Inc.";No;No;2,364;Q1;203;138;430;11565;2829;428;6,01;83,80;50,29;0;United States;Northern America;"John Wiley & Sons Inc.";"1988-2026";"Cellular and Molecular Neuroscience (Q1); Neurology (Q1)";"Neuroscience" +1064;14621;"Annual Review of Nuclear and Particle Science";book series;"01638998";"Annual Reviews Inc.";No;No;2,362;Q1;122;20;57;3067;437;57;7,98;153,35;17,95;0;United States;Northern America;"Annual Reviews Inc.";"1978-1980, 1982-1985, 1990-2025";"Nuclear and High Energy Physics (Q1)";"Physics and Astronomy" +1065;22972;"Journal of Purchasing and Supply Management";journal;"14784092";"Elsevier Ltd";No;No;2,361;Q1;109;51;99;4586;1049;90;9,01;89,92;38,78;0;United Kingdom;Western Europe;"Elsevier Ltd";"2003-2026";"Marketing (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1066;21100854831;"IEEE Transactions on Cognitive Communications and Networking";journal;"23327731";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,359;Q1;75;327;428;15515;3936;427;8,70;47,45;28,62;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Hardware and Architecture (Q1)";"Computer Science" +1067;21100416081;"Sustainable Production and Consumption";journal;"23525509";"Elsevier B.V.";No;No;2,359;Q1;116;251;1096;20891;13767;1091;11,26;83,23;41,88;4;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Environmental Chemistry (Q1); Environmental Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering; Environmental Science" +1068;29282;"Journal of Occupational Health Psychology";journal;"19391307, 10768998";"Educational Publishing Foundation";No;No;2,356;Q1;161;29;85;1885;613;84;6,00;65,00;55,45;0;United States;Northern America;"Educational Publishing Foundation";"1996-2026";"Applied Psychology (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Psychology" +1069;21101180570;"Innovation and Green Development";journal;"29497531";"Elsevier B.V.";Yes;No;2,355;Q1;40;84;107;6655;2000;106;18,56;79,23;23,28;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Management of Technology and Innovation (Q1); Management Science and Operations Research (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Business, Management and Accounting; Decision Sciences; Energy" +1070;12029;"Applied Psychology";journal;"0269994X, 14640597";"Wiley-Blackwell Publishing Ltd";No;No;2,354;Q1;123;103;229;9371;1904;213;6,77;90,98;46,06;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1955, 1961-1993, 1996-2026";"Applied Psychology (Q1); Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1)";"Arts and Humanities; Psychology" +1071;28581;"Journal of Small Business Management";journal;"00472778, 1540627X";"Taylor and Francis Ltd.";No;No;2,351;Q1;148;121;244;13239;2783;240;11,43;109,41;34,26;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1072;21101224867;"BMJ Oncology";journal;"27527948";"BMJ Publishing Group";Yes;No;2,349;Q1;11;73;113;3132;456;70;4,07;42,90;44,86;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2022-2026";"Oncology (Q1)";"Medicine" +1073;14151;"Molecular and Cellular Proteomics";journal;"15359476, 15359484";"American Society for Biochemistry and Molecular Biology Inc.";Yes;No;2,349;Q1;219;203;468;13937;2847;464;6,30;68,66;39,90;0;United States;Northern America;"American Society for Biochemistry and Molecular Biology Inc.";"2002-2026";"Analytical Chemistry (Q1); Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine" +1074;15011;"Current Psychiatry Reports";journal;"15351645, 15233812";"Springer";Yes;No;2,348;Q1;137;80;247;5268;2218;247;8,10;65,85;64,95;1;United States;Northern America;"Springer";"1996, 1999-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +1075;21101089403;"Weather and Climate Dynamics";journal;"26984016";"Copernicus Publications";Yes;No;2,345;Q1;29;87;197;6353;1017;197;3,86;73,02;30,63;0;Germany;Western Europe;"Copernicus Publications";"2020-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +1076;21080;"Mechanical Systems and Signal Processing";journal;"08883270, 10961216";"Academic Press";No;No;2,342;Q1;241;1751;3137;86535;37523;3127;12,07;49,42;24,70;0;United States;Northern America;"Academic Press";"1987-2026";"Aerospace Engineering (Q1); Civil and Structural Engineering (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Mechanical Engineering (Q1); Signal Processing (Q1)";"Computer Science; Engineering" +1077;21101160754;"Materials Futures";journal;"27525724";"Institute of Physics";Yes;Yes;2,341;Q1;34;59;138;5524;1428;135;10,67;93,63;32,88;0;United Kingdom;Western Europe;"Institute of Physics";"2022-2026";"Biomaterials (Q1)";"Materials Science" +1078;21100198522;"Wiley Interdisciplinary Reviews: RNA";journal;"17577012, 17577004";"John Wiley and Sons Inc";No;No;2,338;Q1;107;33;179;5104;1092;179;5,28;154,67;41,41;0;United States;Northern America;"John Wiley and Sons Inc";"2010-2026";"Biochemistry (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1079;24790;"Journal of the European Academy of Dermatology and Venereology";journal;"09269959, 14683083";"John Wiley and Sons Inc";No;No;2,337;Q1;154;825;2344;14116;7189;768;3,10;17,11;53,32;2;United States;Northern America;"John Wiley and Sons Inc";"1991-2026";"Dermatology (Q1); Infectious Diseases (Q1)";"Medicine" +1080;14490;"Business and Information Systems Engineering";journal;"18670202, 23637005";"Springer Gabler";No;No;2,336;Q1;83;88;150;6830;1978;115;14,27;77,61;28,47;1;Germany;Western Europe;"Springer Gabler";"2009-2026";"Information Systems (Q1)";"Computer Science" +1081;21684;"Journal of Heart and Lung Transplantation";journal;"15573117, 10532498";"Elsevier Inc.";No;No;2,336;Q1;171;344;713;7509;3721;538;5,50;21,83;36,29;1;United States;Northern America;"Elsevier Inc.";"1991-2026";"Cardiology and Cardiovascular Medicine (Q1); Pulmonary and Respiratory Medicine (Q1); Surgery (Q1); Transplantation (Q1)";"Medicine" +1082;15576;"European Neuropsychopharmacology";journal;"0924977X, 18737862";"Elsevier B.V.";No;No;2,334;Q1;139;152;430;4406;2084;242;4,83;28,99;45,64;3;Netherlands;Western Europe;"Elsevier B.V.";"1990-2026";"Biological Psychiatry (Q1); Neurology (Q1); Neurology (clinical) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +1083;26108;"Proceedings - International Symposium on High-Performance Computer Architecture";conference and proceedings;"15300897";"IEEE Computer Society";No;No;2,333;-;111;121;269;8657;2528;257;9,29;71,55;22,78;0;United States;Northern America;"IEEE Computer Society";"1995-2014, 2016-2018, 2021-2025";"Hardware and Architecture";"Computer Science" +1084;20909;"Transportation Research Part E: Logistics and Transportation Review";journal;"13665545";"Elsevier Ltd";No;No;2,332;Q1;170;510;918;33378;10733;915;10,77;65,45;33,25;1;United Kingdom;Western Europe;"Elsevier Ltd";"1997-2026";"Business and International Management (Q1); Civil and Structural Engineering (Q1); Management Science and Operations Research (Q1); Transportation (Q1)";"Business, Management and Accounting; Decision Sciences; Engineering; Social Sciences" +1085;26430;"SIAM Review";journal;"10957200, 00361445";"Society for Industrial and Applied Mathematics Publications";No;No;2,331;Q1;140;14;114;965;706;84;6,34;68,93;23,08;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"1969-1972, 1974-1978, 1983-2025";"Applied Mathematics (Q1); Computational Mathematics (Q1); Theoretical Computer Science (Q1)";"Mathematics" +1086;21100904463;"Journal of Structural Biology: X";journal;"25901524";"Academic Press Inc.";Yes;No;2,330;Q1;19;23;57;1390;267;56;2,83;60,43;38,46;0;United States;Northern America;"Academic Press Inc.";"2019-2026";"Structural Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1087;22080;"Current Opinion in Genetics and Development";journal;"0959437X, 18790380";"Elsevier Ltd";No;No;2,327;Q1;208;90;281;5891;1105;267;4,01;65,46;42,53;0;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Developmental Biology (Q1); Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +1088;20107;"Survey of Ophthalmology";journal;"00396257, 18793304";"Elsevier Inc.";No;No;2,326;Q1;170;159;299;16884;2139;266;6,90;106,19;36,49;1;United States;Northern America;"Elsevier Inc.";"1956-1970, 1972-2026";"Ophthalmology (Q1)";"Medicine" +1089;29990;"American Journal of Clinical Nutrition";journal;"19383207, 00029165";"Elsevier B.V.";No;No;2,324;Q1;399;389;1068;17962;6525;843;5,47;46,17;54,91;13;United States;Northern America;"Elsevier B.V.";"1952-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +1090;18158;"Computer Methods in Applied Mechanics and Engineering";journal;"00457825";"Elsevier B.V.";No;No;2,323;Q1;262;770;2164;48764;18937;2159;8,39;63,33;20,96;0;Netherlands;Western Europe;"Elsevier B.V.";"1972-2026";"Computational Mechanics (Q1); Computer Science Applications (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Computer Science; Engineering; Physics and Astronomy" +1091;14812;"Journal of Travel and Tourism Marketing";journal;"10548408, 15407306";"Routledge";No;No;2,321;Q1;118;68;161;5859;2129;159;12,68;86,16;43,30;0;United States;Northern America;"Routledge";"1992-2025";"Marketing (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +1092;28561;"Auditing";journal;"15587991, 02780380";"American Accounting Association";No;No;2,320;Q1;111;32;98;2531;440;97;4,48;79,09;37,50;0;United States;Northern America;"American Accounting Association";"1996-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +1093;22497;"Journal of Second Language Writing";journal;"10603743";"Elsevier Ltd";No;No;2,319;Q1;121;58;135;2359;924;97;6,93;40,67;53,68;0;United Kingdom;Western Europe;"Elsevier Ltd";"1992-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +1094;28686;"International Journal of Hospitality Management";journal;"02784319";"Elsevier Ltd";No;No;2,316;Q1;204;334;678;27782;8087;677;10,38;83,18;40,97;2;United Kingdom;Western Europe;"Elsevier Ltd";"1982-2026";"Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +1095;21100873342;"Current Pollution Reports";journal;"21986592";"Springer International Publishing AG";No;No;2,315;Q1;66;62;123;8501;1422;123;10,81;137,11;36,67;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Management, Monitoring, Policy and Law (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Environmental Science" +1096;20444;"Legislative Studies Quarterly";journal;"03629805, 19399162";"Wiley-Blackwell";No;No;2,314;Q1;68;76;100;4796;341;100;3,33;63,11;38,96;2;United States;Northern America;"Wiley-Blackwell";"1996-2026";"Sociology and Political Science (Q1)";"Social Sciences" +1097;22566;"Earth and Planetary Science Letters";journal;"0012821X";"Elsevier B.V.";No;No;2,310;Q1;314;409;1274;27188;6965;1268;5,00;66,47;27,80;1;Netherlands;Western Europe;"Elsevier B.V.";"1966-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geochemistry and Petrology (Q1); Geophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences" +1098;13468;"Psychological Science";journal;"09567976, 14679280";"SAGE Publications Inc.";No;No;2,309;Q1;345;57;343;2627;1843;333;4,42;46,09;49,49;1;United States;Northern America;"SAGE Publications Inc.";"1990-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +1099;21101153191;"Carbon Research";journal;"27316696";"Springer Nature";Yes;No;2,308;Q1;33;71;157;4816;1910;156;10,17;67,83;34,86;0;China;Asiatic Region;"Springer Nature";"2022-2026";"Earth-Surface Processes (Q1); Engineering (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Earth and Planetary Sciences; Engineering; Environmental Science" +1100;17649;"Communication Research";journal;"00936502, 15523810";"SAGE Publications Inc.";No;No;2,304;Q1;140;84;149;6151;1174;149;6,22;73,23;52,85;2;United States;Northern America;"SAGE Publications Inc.";"1974-2026";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +1101;21100265617;"Weather and Climate Extremes";journal;"22120947";"Elsevier B.V.";Yes;No;2,304;Q1;79;97;307;6504;2489;306;7,18;67,05;37,95;3;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Atmospheric Science (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Statistics and Probability (Q1)";"Earth and Planetary Sciences; Environmental Science; Mathematics; Social Sciences" +1102;21268;"Journal of Autoimmunity";journal;"10959157, 08968411";"Academic Press";No;No;2,300;Q1;155;98;380;6777;2931;380;7,25;69,15;45,55;0;United States;Northern America;"Academic Press";"1988-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +1103;21101205770;"Materials Today Catalysis";journal;"2949754X";"Elsevier Ltd";Yes;No;2,300;Q1;17;34;58;2883;622;57;10,72;84,79;34,69;0;United Kingdom;Western Europe;"Elsevier Ltd";"2023-2026";"Catalysis (Q1); Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1)";"Chemical Engineering; Chemistry; Materials Science" +1104;29861;"Organization and Environment";journal;"15527417, 10860266";"SAGE Publications Inc.";No;No;2,299;Q1;91;34;68;2633;782;67;12,77;77,44;52,87;2;United States;Northern America;"SAGE Publications Inc.";"1987-2026";"Environmental Science (miscellaneous) (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Environmental Science" +1105;4400151516;"Immunity and Ageing";journal;"17424933";"BioMed Central Ltd";Yes;No;2,298;Q1;71;57;222;5911;1593;216;7,37;103,70;49,69;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Aging (Q1); Immunology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +1106;26362;"Journal of Peace Research";journal;"00223433, 14603578";"SAGE Publications Ltd";No;No;2,298;Q1;136;159;200;10175;1036;199;5,22;63,99;37,32;19;United Kingdom;Western Europe;"SAGE Publications Ltd";"1964-2025";"Political Science and International Relations (Q1); Safety Research (Q1); Sociology and Political Science (Q1)";"Social Sciences" +1107;28824;"IEEE Transactions on Energy Conversion";journal;"08858969, 15580059";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,297;Q1;213;325;755;10365;5942;753;7,29;31,89;23,16;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1986-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering" +1108;19600162144;"Science China Life Sciences";journal;"16747305, 18691889";"Science China Press";No;No;2,297;Q1;96;380;699;27739;5012;573;6,94;73,00;43,99;0;China;Asiatic Region;"Science China Press";"2010-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +1109;28645;"Ultrasound in Obstetrics and Gynecology";journal;"09607692, 14690705";"John Wiley and Sons Ltd";No;No;2,297;Q1;187;265;801;7653;3472;523;4,04;28,88;51,56;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1991-2026";"Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Reproductive Medicine (Q1)";"Health Professions; Medicine" +1110;13768;"BioScience";journal;"15253244, 00063568";"Oxford University Press";No;No;2,295;Q1;258;131;314;8293;2098;251;5,64;63,31;49,42;6;United States;Northern America;"Oxford University Press";"1965, 1968, 1970, 1972-1986, 1988-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1)";"Agricultural and Biological Sciences" +1111;20276;"Ecography";journal;"16000587, 09067590";"Wiley-Blackwell Publishing Ltd";Yes;No;2,295;Q1;169;182;398;15417;2527;390;5,78;84,71;34,80;6;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1978-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +1112;20639;"Journal of Management Inquiry";journal;"15526542, 10564926";"SAGE Publications Inc.";No;No;2,292;Q1;85;38;83;3339;439;73;4,74;87,87;54,49;0;United States;Northern America;"SAGE Publications Inc.";"1992-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1113;19799;"American Journal of Sports Medicine";journal;"03635465, 15523365";"SAGE Publications Inc.";No;No;2,290;Q1;292;391;1299;15360;7563;1157;5,44;39,28;22,59;0;United States;Northern America;"SAGE Publications Inc.";"1973-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine" +1114;21101021641;"International Journal of Transgender Health";journal;"26895269, 26895277";"Routledge";No;No;2,285;Q1;66;280;152;13979;2616;141;12,62;49,93;55,72;6;United Kingdom;Western Europe;"Routledge";"2020-2026";"Gender Studies (Q1); Health Policy (Q1); Health (social science) (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +1115;21100872127;"npj Quantum Materials";journal;"23974648";"Nature Publishing Group";Yes;No;2,285;Q1;63;109;296;6762;1725;292;5,77;62,04;21,39;0;United Kingdom;Western Europe;"Nature Publishing Group";"2016-2026";"Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Materials Science; Physics and Astronomy" +1116;12495;"Neoplasia (United States)";journal;"14765586, 15228002";"Elsevier Inc.";Yes;No;2,284;Q1;151;159;282;8720;2158;280;5,17;54,84;43,99;2;United States;Northern America;"Elsevier Inc.";"1999-2026";"Cancer Research (Q1)";"Biochemistry, Genetics and Molecular Biology" +1117;24267;"British Journal of Dermatology";journal;"00070963, 13652133";"Oxford University Press";No;No;2,283;Q1;226;521;1563;10232;4992;677;2,80;19,64;51,84;1;United Kingdom;Western Europe;"Oxford University Press";"1892, 1895-1896, 1898, 1901-1903, 1908, 1910-1912, 1916-2026";"Dermatology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1118;21100850730;"npj Vaccines";journal;"20590105";"Nature Research";Yes;No;2,282;Q1;63;264;590;14514;3862;573;6,81;54,98;46,49;4;United Kingdom;Western Europe;"Nature Research";"2016-2026";"Immunology (Q1); Infectious Diseases (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +1119;21100248909;"Tourism Review";journal;"17598451, 16605373";"Emerald Group Publishing Ltd.";No;No;2,279;Q1;82;183;261;12513;3916;259;14,83;68,38;42,64;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2026";"Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Social Sciences" +1120;12481;"Journal of Engineering Education";journal;"10694730, 21689830";"Wiley-Blackwell";No;No;2,278;Q1;139;51;166;4228;1252;132;7,91;82,90;61,54;0;United States;Northern America;"Wiley-Blackwell";"1969-1978, 1993-1995, 1997-2026";"Education (Q1); Engineering (miscellaneous) (Q1)";"Engineering; Social Sciences" +1121;21101246232;"Meta-Radiology";journal;"29501628";"KeAi Publishing Communications Ltd.";Yes;No;2,278;Q1;13;33;53;2020;815;49;15,38;61,21;38,78;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2023-2026";"Computer Graphics and Computer-Aided Design (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Computer Science; Health Professions; Medicine" +1122;11700154363;"Cryosphere";journal;"19940416, 19940424";"Copernicus Publications";Yes;No;2,277;Q1;130;327;842;24289;4437;842;4,97;74,28;29,46;1;Germany;Western Europe;"Copernicus Publications";"2007-2026";"Earth-Surface Processes (Q1); Water Science and Technology (Q1)";"Earth and Planetary Sciences; Environmental Science" +1123;28996;"Journal of Financial Intermediation";journal;"10960473, 10429573";"Academic Press Inc.";No;No;2,275;Q1;101;34;99;1498;455;99;2,97;44,06;19,78;1;United States;Northern America;"Academic Press Inc.";"1990-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +1124;12091;"Atmospheric Chemistry and Physics";journal;"16807324, 16807316";"Copernicus Publications";Yes;No;2,274;Q1;280;869;2218;71247;14079;2218;5,91;81,99;34,94;5;Germany;Western Europe;"Copernicus Publications";"1999, 2001-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +1125;21101051864;"Cardiac Failure Review";journal;"20577559, 20577540";"";Yes;No;2,273;Q1;28;35;68;2038;544;67;10,76;58,23;33,85;0;United Kingdom;Western Europe;"";"2017, 2019-2025";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +1126;25527;"Diabetes, Obesity and Metabolism";journal;"14631326, 14628902";"John Wiley and Sons Inc";No;No;2,273;Q1;169;826;1368;34228;7945;1140;5,71;41,44;46,12;4;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1999-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1127;21100852132;"npj Genomic Medicine";journal;"20567944";"Nature Research";Yes;No;2,273;Q1;50;78;181;4880;953;177;4,91;62,56;49,32;1;United Kingdom;Western Europe;"Nature Research";"2016-2026";"Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1128;19600162011;"Science China Chemistry";journal;"18691870, 16747291";"Science China Press";No;No;2,273;Q1;102;691;1070;41533;9126;995;9,00;60,11;37,36;0;China;Asiatic Region;"Science China Press";"1984, 2010-2026";"Chemistry (miscellaneous) (Q1)";"Chemistry" +1129;19400158483;"Social Issues and Policy Review";journal;"17512409, 17512395";"Wiley-Blackwell Publishing Ltd";No;No;2,273;Q1;58;8;24;1327;245;24;9,67;165,88;60,87;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2008-2025";"Applied Psychology (Q1); Social Psychology (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +1130;7100153129;"European Accounting Review";journal;"09638180, 14684497";"Routledge";No;No;2,272;Q1;98;98;157;7430;997;154;6,00;75,82;29,17;4;United Kingdom;Western Europe;"Routledge";"1992-2026";"Accounting (Q1); Aerospace Engineering (Q1); Arts and Humanities (miscellaneous) (Q1); Automotive Engineering (Q1); Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q1); History (Q1)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Engineering" +1131;22706;"International Journal of Forecasting";journal;"01692070";"Elsevier B.V.";No;No;2,272;Q1;135;109;328;5584;2535;299;6,46;51,23;23,10;3;Netherlands;Western Europe;"Elsevier B.V.";"1985-2026";"Business and International Management (Q1)";"Business, Management and Accounting" +1132;24570;"Advances in Mathematics";journal;"10902082, 00018708";"Academic Press Inc.";No;No;2,270;Q1;124;437;1305;16861;2440;1305;1,67;38,58;16,69;0;United States;Northern America;"Academic Press Inc.";"1961, 1964-1965, 1967-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +1133;19900191736;"Conservation Letters";journal;"1755263X";"John Wiley and Sons Inc";Yes;No;2,270;Q1;125;97;210;4303;1538;155;5,45;44,36;38,81;6;United States;Northern America;"John Wiley and Sons Inc";"2008-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +1134;21100232818;"Emerging Microbes and Infections";journal;"22221751";"Taylor and Francis Ltd.";Yes;No;2,269;Q1;115;256;819;11284;5583;717;6,71;44,08;44,13;7;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Drug Discovery (Q1); Epidemiology (Q1); Immunology (Q1); Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q1); Parasitology (Q1); Virology (Q1)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +1135;21100881252;"Journal of Prevention of Alzheimer's Disease";journal;"22745807, 24260266";"Elsevier Masson s.r.l.";Yes;No;2,269;Q1;48;243;420;1642;2878;372;6,04;6,76;47,17;2;Switzerland;Western Europe;"Elsevier Masson s.r.l.";"2014, 2017-2026";"Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +1136;21100255484;"Journal of Hospitality and Tourism Management";journal;"18395260, 14476770";"Elsevier Ltd";No;No;2,267;Q1;98;131;482;10269;5702;477;12,00;78,39;49,86;0;United Kingdom;Western Europe;"Elsevier Ltd";"2006-2026";"Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +1137;22199;"European Journal of Marketing";journal;"03090566";"Emerald Group Publishing Ltd.";No;No;2,266;Q1;173;149;370;13538;3187;361;8,37;90,86;43,88;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1967-2026";"Marketing (Q1)";"Business, Management and Accounting" +1138;21101203232;"Precision Chemistry";journal;"27719316";"American Chemical Society";Yes;No;2,266;Q1;19;76;130;5025;1017;124;7,82;66,12;30,64;0;United States;Northern America;"American Chemical Society";"2023-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +1139;17956;"Briefings in Bioinformatics";journal;"14774054, 14675463";"Oxford University Press";Yes;No;2,264;Q1;174;801;2005;45989;17322;1990;7,89;57,41;37,51;1;United Kingdom;Western Europe;"Oxford University Press";"2000-2026";"Information Systems (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Computer Science" +1140;21100274406;"Clinical Psychological Science";journal;"21677034, 21677026";"SAGE Publications Inc.";No;No;2,264;Q1;86;79;222;6163;1240;214;5,32;78,01;46,24;0;United States;Northern America;"SAGE Publications Inc.";"2013-2026";"Clinical Psychology (Q1)";"Psychology" +1141;21410;"Anaesthesia";journal;"13652044, 00032409";"Wiley-Blackwell Publishing Ltd";No;No;2,262;Q1;159;347;796;7560;3237;333;3,95;21,79;38,06;6;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1947-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +1142;17399;"Current Opinion in Chemical Biology";journal;"13675931, 18790402";"Elsevier Ltd";No;No;2,261;Q1;215;49;314;2426;2268;299;7,18;49,51;41,03;0;United Kingdom;Western Europe;"Elsevier Ltd";"1997-2026";"Analytical Chemistry (Q1); Biochemistry (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +1143;4700152457;"Nano Today";journal;"1878044X, 17480132";"Elsevier B.V.";No;No;2,260;Q1;202;270;977;19094;10911;957;10,98;70,72;41,29;0;Netherlands;Western Europe;"Elsevier B.V.";"1970, 2006-2026";"Bioengineering (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1); Pharmaceutical Science (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +1144;16398;"Chemical Engineering Journal";journal;"13858947";"Elsevier B.V.";No;No;2,259;Q1;369;13204;25799;830322;342381;25783;12,93;62,88;37,29;5;Netherlands;Western Europe;"Elsevier B.V.";"1975, 1979, 1996-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Industrial and Manufacturing Engineering (Q1)";"Chemical Engineering; Chemistry; Engineering; Environmental Science" +1145;25754;"Economic Geology";journal;"15540774, 03610128";"Society of Economic Geologists, Inc";No;No;2,258;Q1;157;72;254;7800;1402;252;4,78;108,33;27,71;6;United States;Northern America;"Society of Economic Geologists, Inc";"1905-2025";"Economic Geology (Q1); Geochemistry and Petrology (Q1); Geology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +1146;4400151524;"Particle and Fibre Toxicology";journal;"17438977";"BioMed Central Ltd";Yes;No;2,258;Q1;132;37;169;2888;1856;167;10,49;78,05;46,01;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Toxicology (Q1)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +1147;26107;"Philosophical Review";journal;"00318108, 15581470";"Duke University Press";No;No;2,251;Q1;74;8;26;556;107;24;3,82;69,50;9,09;0;United States;Northern America;"Duke University Press";"1970, 1977-1978, 1984, 1988, 1996-2026";"Philosophy (Q1)";"Arts and Humanities" +1148;21101038539;"Transplantation and Cellular Therapy";journal;"26666367, 26666375";"Elsevier B.V.";No;No;2,251;Q1;152;293;953;11108;3941;841;4,02;37,91;46,53;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Cell Biology (Q1); Hematology (Q1); Immunology and Allergy (Q1); Molecular Medicine (Q1); Transplantation (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1149;21100448299;"Robotics: Science and Systems";conference and proceedings;"23307668, 2330765X";"MIT Press";No;No;2,250;-;86;0;75;0;527;74;0,00;0,00;0,00;0;United States;Northern America;"MIT Press";"2005, 2007-2022";"Artificial Intelligence; Control and Systems Engineering; Electrical and Electronic Engineering";"Computer Science; Engineering" +1150;21100878576;"BMJ Evidence-Based Medicine";journal;"25154478, 2515446X";"BMJ Publishing Group";No;No;2,245;Q1;54;117;229;3962;1342;179;6,73;33,86;45,40;3;United Kingdom;Western Europe;"BMJ Publishing Group";"2018-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +1151;21955;"Critical Reviews in Food Science and Nutrition";journal;"15497852, 10408398";"Taylor and Francis Ltd.";No;No;2,243;Q1;262;535;1779;77472;27549;1775;14,34;144,81;48,05;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981, 1983-1984, 1988-2026";"Food Science (Q1); Industrial and Manufacturing Engineering (Q1); Medicine (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Engineering; Medicine" +1152;25105;"Mathematische Annalen";journal;"00255831, 14321807";"Springer New York";No;No;2,243;Q1;84;393;708;14470;1433;708;1,97;36,82;17,36;0;Germany;Western Europe;"Springer New York";"1869-1941, 1943-1944, 1947, 1949-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +1153;18403;"Apoptosis";journal;"13608185, 1573675X";"Springer";No;No;2,242;Q1;138;174;313;16454;3071;307;10,00;94,56;44,36;0;United States;Northern America;"Springer";"1996-2026";"Biochemistry (medical) (Q1); Cancer Research (Q1); Cell Biology (Q1); Clinical Biochemistry (Q1); Pharmaceutical Science (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +1154;21100894112;"Journal of Digital Learning in Teacher Education";journal;"21532974, 23327383";"Taylor and Francis Ltd.";No;No;2,242;Q1;39;17;49;718;374;38;9,61;42,24;65,52;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Computer Science Applications (Q1); Education (Q1)";"Computer Science; Social Sciences" +1155;21101199471;"EES Catalysis";journal;"2753801X";"Royal Society of Chemistry";Yes;Yes;2,241;Q1;25;90;173;7026;1500;170;8,67;78,07;25,26;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2023-2026";"Catalysis (Q1); Chemistry (miscellaneous) (Q1); Electrochemistry (Q1); Fuel Technology (Q1); Physical and Theoretical Chemistry (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Chemical Engineering; Chemistry; Energy" +1156;21101017898;"CSEE Journal of Power and Energy Systems";journal;"20960042";"China Electric Power Research Institute";Yes;Yes;2,240;Q1;59;192;610;8113;3826;610;5,74;42,26;29,08;0;United States;Northern America;"China Electric Power Research Institute";"2020-2026";"Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Energy (miscellaneous) (Q1)";"Energy; Engineering; Materials Science" +1157;145681;"Interactive Learning Environments";journal;"10494820, 17445191";"Routledge";No;No;2,240;Q1;93;540;1040;33411;10991;1020;10,53;61,87;44,32;2;United Kingdom;Western Europe;"Routledge";"1990, 1992-1994, 2004-2026";"Computer Science Applications (Q1); Education (Q1); E-learning (Q1)";"Computer Science; Social Sciences" +1158;29476;"Corrosion Science";journal;"0010938X";"Elsevier Ltd";No;No;2,239;Q1;278;681;2243;41960;22984;2237;10,14;61,62;30,29;0;United Kingdom;Western Europe;"Elsevier Ltd";"1961-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Chemical Engineering; Chemistry; Materials Science" +1159;23819;"Journal of Algebraic Geometry";journal;"10563911, 15347486";"American Mathematical Society";No;No;2,234;Q1;53;18;58;735;90;58;1,44;40,83;19,44;0;United States;Northern America;"American Mathematical Society";"1996-2025";"Algebra and Number Theory (Q1); Geometry and Topology (Q1)";"Mathematics" +1160;21100829907;"American Journal of Health Economics";journal;"23323493, 23323507";"University of Chicago Press";No;No;2,232;Q1;27;21;66;1142;153;65;1,85;54,38;34,62;9;United States;Northern America;"University of Chicago Press";"2015-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Economics, Econometrics and Finance; Medicine" +1161;21100856573;"European Heart Journal - Quality of Care and Clinical Outcomes";journal;"20581742, 20585225";"Oxford University Press";No;No;2,232;Q1;46;173;284;5082;1364;242;4,94;29,38;37,33;4;United Kingdom;Western Europe;"Oxford University Press";"2015-2026";"Cardiology and Cardiovascular Medicine (Q1); Health Policy (Q1)";"Medicine" +1162;27505;"Human Reproduction";journal;"14602350, 02681161";"Oxford University Press";No;No;2,231;Q1;274;251;839;11616;5135;755;6,03;46,28;58,33;0;United Kingdom;Western Europe;"Oxford University Press";"1986-2026";"Obstetrics and Gynecology (Q1); Rehabilitation (Q1); Reproductive Medicine (Q1)";"Medicine" +1163;13903;"Cellular and Molecular Life Sciences";journal;"1420682X, 14209071";"Springer Science and Business Media Deutschland GmbH";Yes;No;2,230;Q1;281;433;1444;30531;10341;1437;6,28;70,51;48,03;1;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1952, 1986, 1996-2026";"Cell Biology (Q1); Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1); Molecular Medicine (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +1164;4000150501;"TESOL Quarterly";journal;"00398322, 15457249";"John Wiley and Sons Inc";No;No;2,230;Q1;139;128;211;6209;1503;202;7,24;48,51;54,94;0;United States;Northern America;"John Wiley and Sons Inc";"1981-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +1165;21101162816;"Journal of Hazardous Materials Advances";journal;"27724166";"Elsevier B.V.";Yes;No;2,229;Q1;46;418;427;38621;5222;425;11,71;92,39;37,80;4;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Environmental Chemistry (Q1); Environmental Engineering (Q1); Health, Toxicology and Mutagenesis (Q1); Pollution (Q1); Waste Management and Disposal (Q1)";"Environmental Science" +1166;21100794681;"Studies in Second Language Learning and Teaching";journal;"20835205, 20841965";"Adam Mickiewicz University";Yes;Yes;2,229;Q1;40;33;87;2268;675;80;5,98;68,73;37,50;0;Poland;Eastern Europe;"Adam Mickiewicz University";"2016-2025";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +1167;19400158343;"Current Opinion in Environmental Sustainability";journal;"18773435";"Elsevier B.V.";No;No;2,228;Q1;145;51;199;3138;1967;192;9,81;61,53;51,63;4;Netherlands;Western Europe;"Elsevier B.V.";"2009-2026";"Environmental Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Environmental Science; Social Sciences" +1168;21100218523;"Ecosystem Services";journal;"22120416";"Elsevier B.V.";No;No;2,225;Q1;136;108;287;9693;2514;279;8,20;89,75;43,43;6;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +1169;21100831450;"Annual Review of Vision Science";journal;"23744650, 23744642";"Annual Reviews Inc.";No;No;2,223;Q1;54;26;61;3779;470;61;7,09;145,35;39,68;0;United States;Northern America;"Annual Reviews Inc.";"2015-2025";"Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Ophthalmology (Q1)";"Medicine" +1170;5600154213;"Contemporary Security Policy";journal;"17438764, 13523260";"Routledge";No;No;2,222;Q1;47;46;84;4334;573;81;6,07;94,22;30,26;7;United Kingdom;Western Europe;"Routledge";"1994-2026";"Political Science and International Relations (Q1)";"Social Sciences" +1171;21100932748;"Inflammation and Regeneration";journal;"18809693, 18808190";"BioMed Central Ltd";Yes;No;2,222;Q1;49;36;173;3234;1346;160;7,09;89,83;32,63;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2014, 2016-2026";"Cell Biology (Q1); Immunology (Q1); Immunology and Allergy (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +1172;16615;"Plant Physiology";journal;"00320889, 15322548";"American Society of Plant Biologists";No;No;2,221;Q1;391;760;1894;43970;12868;1769;6,69;57,86;42,36;0;United States;Northern America;"American Society of Plant Biologists";"1935, 1939, 1942, 1950, 1961, 1964-1971, 1973-2026";"Genetics (Q1); Physiology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1173;21101039773;"Burns and Trauma";journal;"23213868, 23213876";"Oxford University Press";Yes;No;2,220;Q1;55;93;186;11479;2300;179;10,64;123,43;39,91;0;United Kingdom;Western Europe;"Oxford University Press";"2013-2026";"Biomedical Engineering (Q1); Critical Care and Intensive Care Medicine (Q1); Dermatology (Q1); Emergency Medicine (Q1); Immunology and Allergy (Q1); Surgery (Q1)";"Engineering; Medicine" +1174;12303;"Information and Management";journal;"03787206";"Elsevier B.V.";No;No;2,220;Q1;214;117;331;10921;3813;327;9,19;93,34;38,73;0;Netherlands;Western Europe;"Elsevier B.V.";"1977-2026";"Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences" +1175;19878;"Journal of European Public Policy";journal;"14664429, 13501763";"Routledge";No;No;2,219;Q1;146;222;400;15633;2863;373;7,28;70,42;34,99;32;United Kingdom;Western Europe;"Routledge";"1994-2026";"Political Science and International Relations (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +1176;25321;"Liver International";journal;"14783223, 14783231";"Wiley-Blackwell Publishing Ltd";No;No;2,218;Q1;152;601;954;19135;4949;741;5,17;31,84;43,65;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2003-2026";"Hepatology (Q1)";"Medicine" +1177;19900192509;"Current Opinion in Virology";journal;"18796265, 18796257";"Elsevier B.V.";No;No;2,217;Q1;109;27;133;1954;768;120;5,05;72,37;53,40;0;Netherlands;Western Europe;"Elsevier B.V.";"2011-2026";"Virology (Q1)";"Immunology and Microbiology" +1178;20021;"Nephrology Dialysis Transplantation";journal;"14602385, 09310509";"Oxford University Press";No;No;2,217;Q1;210;289;890;11369;4904;768;6,22;39,34;40,87;3;United Kingdom;Western Europe;"Oxford University Press";"1986-2026";"Medicine (miscellaneous) (Q1); Nephrology (Q1); Transplantation (Q1)";"Medicine" +1179;21101221558;"Environment and Health";journal;"28338278";"American Chemical Society";Yes;No;2,216;Q1;16;142;131;9344;1238;126;9,45;65,80;47,27;0;United States;Northern America;"American Chemical Society";"2023-2026";"Environmental Science (miscellaneous) (Q1); Health, Toxicology and Mutagenesis (Q1); Pollution (Q1)";"Environmental Science" +1180;22132;"Virginia Law Review";journal;"00426601";"University of Virginia";Yes;No;2,216;Q1;67;10;90;1427;145;85;1,76;142,70;42,86;0;United States;Northern America;"University of Virginia";"1967, 1974-1978, 1980, 1983-1985, 1987, 1990, 1992, 1995-2025";"Law (Q1)";"Social Sciences" +1181;26027;"IEEE Transactions on Circuits and Systems for Video Technology";journal;"15582205, 10518215";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,215;Q1;206;1110;2268;70415;27002;2259;11,15;63,44;30,12;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1991-2026";"Electrical and Electronic Engineering (Q1); Media Technology (Q1)";"Engineering" +1182;27656;"International Journal of Production Research";journal;"00207543, 1366588X";"Taylor and Francis Ltd.";No;No;2,215;Q1;217;630;1283;42551;15208;1258;11,66;67,54;28,30;7;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1961, 1963-1968, 1970-2026";"Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences; Engineering" +1183;13900154713;"Child Development Perspectives";journal;"17508606, 17508592";"Wiley-Blackwell Publishing Ltd";No;No;2,214;Q1;112;29;76;2143;552;76;6,28;73,90;69,51;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2007-2025";"Developmental and Educational Psychology (Q1); Life-span and Life-course Studies (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine; Psychology; Social Sciences" +1184;21101048278;"Advanced Industrial and Engineering Polymer Research";journal;"25425048";"KeAi Communications Co.";Yes;Yes;2,209;Q1;49;39;91;3686;1710;87;21,72;94,51;26,79;0;China;Asiatic Region;"KeAi Communications Co.";"2018-2025";"Chemical Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Polymers and Plastics (Q1)";"Chemical Engineering; Engineering; Materials Science" +1185;15548;"European Child and Adolescent Psychiatry";journal;"10188827, 1435165X";"Springer Science and Business Media Deutschland GmbH";No;No;2,209;Q1;132;391;759;20312;5066;690;6,11;51,95;56,42;9;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1992-2026";"Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +1186;21100901141;"Nano Convergence";journal;"21965404";"SpringerOpen";Yes;No;2,208;Q1;67;63;163;5552;2004;163;12,78;88,13;30,59;0;United Kingdom;Western Europe;"SpringerOpen";"2014-2026";"Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +1187;4700152638;"Review of International Organizations";journal;"1559744X, 15597431";"Springer";No;No;2,208;Q1;61;70;92;6377;583;82;5,31;91,10;45,74;8;United States;Northern America;"Springer";"2006-2026";"Economics and Econometrics (Q1); Organizational Behavior and Human Resource Management (Q1); Political Science and International Relations (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +1188;18651;"Applied Linguistics";journal;"01426001, 1477450X";"Oxford University Press";No;No;2,207;Q1;138;49;158;2544;1004;158;6,21;51,92;48,00;0;United Kingdom;Western Europe;"Oxford University Press";"1980-2025";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +1189;17493;"Internet Research";journal;"10662243";"Emerald Group Publishing Ltd.";No;No;2,207;Q1;129;190;288;15493;3327;282;11,71;81,54;41,18;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1991-2026";"Communication (Q1); Economics and Econometrics (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Social Sciences" +1190;26968;"Journal of Photochemistry and Photobiology C: Photochemistry Reviews";journal;"13895567";"Elsevier B.V.";No;No;2,206;Q1;121;15;67;2849;900;65;11,71;189,93;50,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Catalysis (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)";"Chemical Engineering; Chemistry" +1191;25031;"Mineralium Deposita";journal;"00264598, 14321866";"Springer";No;No;2,206;Q1;120;93;228;8057;1299;217;5,33;86,63;24,00;2;Germany;Western Europe;"Springer";"1966-2026";"Economic Geology (Q1); Geochemistry and Petrology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +1192;22738;"Philosophy and Public Affairs";journal;"10884963, 00483915";"Wiley-Blackwell Publishing Ltd";No;No;2,204;Q1;91;20;46;1265;171;43;2,55;63,25;0,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1973-1982, 1984-1986, 1988-2001, 2003-2026";"History and Philosophy of Science (Q1); Political Science and International Relations (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +1193;19251;"Work, Employment and Society";journal;"14698722, 09500170";"SAGE Publications Ltd";No;No;2,204;Q1;112;84;235;5206;1563;234;6,65;61,98;52,94;8;United Kingdom;Western Europe;"SAGE Publications Ltd";"1987-2026";"Accounting (Q1); Economics and Econometrics (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +1194;15510;"Epilepsia";journal;"15281167, 00139580";"Wiley-Blackwell Publishing Ltd";No;No;2,203;Q1;240;508;972;22506;6559;882;5,29;44,30;46,23;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1909-1915, 1937-1950, 1952-1955, 1959, 1961-2026";"Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +1195;84156;"Proceedings - IEEE Symposium on Security and Privacy";conference and proceedings;"10816011";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,203;-;194;256;611;17397;6421;603;8,84;67,96;24,61;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1999, 2002-2015, 2017-2025";"Computer Networks and Communications; Engineering (miscellaneous); Safety, Risk, Reliability and Quality; Software";"Computer Science; Engineering" +1196;21100228531;"JAMA Ophthalmology";journal;"21686173, 21686165";"American Medical Association";No;No;2,202;Q1;235;274;972;4020;3396;501;3,49;14,67;44,15;2;United States;Northern America;"American Medical Association";"2013-2026";"Ophthalmology (Q1)";"Medicine" +1197;21100869015;"Current Forestry Reports";journal;"21986436";"Springer Science and Business Media Deutschland GmbH";No;No;2,200;Q1;58;29;78;4053;893;78;12,22;139,76;27,86;1;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2015-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Forestry (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +1198;20896;"Telematics and Informatics";journal;"07365853";"Elsevier Ltd";No;No;2,200;Q1;133;77;243;6134;3180;242;14,85;79,66;44,64;1;United Kingdom;Western Europe;"Elsevier Ltd";"1984-2026";"Communication (Q1); Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1); Law (Q1)";"Computer Science; Engineering; Social Sciences" +1199;19700175119;"Asian Journal of Pharmaceutical Sciences";journal;"18180876, 2221285X";"KeAi Communications Co.";Yes;Yes;2,196;Q1;87;67;184;6608;2546;180;12,92;98,63;43,00;0;China;Asiatic Region;"KeAi Communications Co.";"2009-2026";"Pharmaceutical Science (Q1); Pharmacology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +1200;19134;"Amyloid";journal;"13506129, 17442818";"Taylor and Francis Ltd.";No;No;2,194;Q1;82;63;157;1600;751;104;4,27;25,40;39,48;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Internal Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1201;15406;"Journal of Clinical Child and Adolescent Psychology";journal;"15374424, 15374416";"Routledge";No;No;2,194;Q1;172;100;217;5331;1326;195;5,83;53,31;63,53;2;United States;Northern America;"Routledge";"1999-2026";"Clinical Psychology (Q1); Developmental and Educational Psychology (Q1)";"Psychology" +1202;16926;"American Journal of Sociology";journal;"00029602, 15375390";"University of Chicago Press";No;No;2,193;Q1;225;30;118;3522;528;101;3,79;117,40;38,81;4;United States;Northern America;"University of Chicago Press";"1946-1950, 1964-2025";"Sociology and Political Science (Q1)";"Social Sciences" +1203;4000149002;"IEEE Transactions on Information Forensics and Security";journal;"15566021, 15566013";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,193;Q1;195;930;1437;48452;14505;1437;9,71;52,10;30,23;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2006-2026";"Computer Networks and Communications (Q1); Safety, Risk, Reliability and Quality (Q1)";"Computer Science; Engineering" +1204;18014;"Neuropsychology Review";journal;"15736660, 10407308";"Springer New York";No;No;2,193;Q1;123;53;135;6178;1228;134;7,89;116,57;66,17;1;United States;Northern America;"Springer New York";"1990-1992, 1994-2026";"Neuropsychology and Physiological Psychology (Q1)";"Psychology" +1205;21100225611;"Advanced Healthcare Materials";journal;"21922640, 21922659";"John Wiley and Sons Inc";No;No;2,192;Q1;178;1220;2519;93658;28984;2506;11,45;76,77;41,62;1;United States;Northern America;"John Wiley and Sons Inc";"2012-2026";"Biomaterials (Q1); Biomedical Engineering (Q1); Pharmaceutical Science (Q1)";"Engineering; Materials Science; Pharmacology, Toxicology and Pharmaceutics" +1206;500147006;"Child and Adolescent Mental Health";journal;"1475357X, 14753588";"Wiley-Blackwell Publishing Ltd";No;No;2,192;Q1;67;87;227;2146;1118;125;4,18;24,67;60,29;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2005-2026";"Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +1207;19975;"Journal of Urology";journal;"00225347, 15273792";"Wolters Kluwer Health";Yes;No;2,192;Q1;299;473;2196;3832;4092;678;1,87;8,10;28,32;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1932, 1945-2026";"Urology (Q1)";"Medicine" +1208;18742;"Psychological Medicine";journal;"14698978, 00332917";"Cambridge University Press";No;No;2,192;Q1;262;372;1718;23189;9885;1594;5,19;62,34;52,26;0;United Kingdom;Western Europe;"Cambridge University Press";"1970-2026";"Applied Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +1209;23574;"Public Opinion Quarterly";journal;"0033362X, 15375331";"Oxford University Press";No;No;2,191;Q1;129;54;159;2901;711;157;4,35;53,72;41,67;0;United Kingdom;Western Europe;"Oxford University Press";"1937-2025";"Communication (Q1); History (Q1); History and Philosophy of Science (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +1210;26765;"Astrophysical Journal";journal;"0004637X, 15384357";"American Astronomical Society";Yes;No;2,188;Q1;517;3616;9810;296470;50330;9810;5,04;81,99;29,36;1;United Kingdom;Western Europe;"American Astronomical Society";"1967, 1972-2025";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +1211;26371;"Natural Product Reports";journal;"02650568, 14604752";"Royal Society of Chemistry";No;No;2,187;Q1;225;79;219;14607;2740;217;12,22;184,90;37,70;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"1984-2026";"Biochemistry (Q1); Drug Discovery (Q1); Organic Chemistry (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +1212;25806;"Carbon";journal;"00086223";"Elsevier Ltd";No;No;2,185;Q1;360;878;2565;53926;31244;2518;12,77;61,42;33,20;0;United Kingdom;Western Europe;"Elsevier Ltd";"1963-2026";"Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Materials Science" +1213;21100943285;"Research";journal;"26395274, 20965168";"American Association for the Advancement of Science";Yes;No;2,184;Q1;76;473;699;36055;7703;690;11,57;76,23;38,05;0;United States;Northern America;"American Association for the Advancement of Science";"2018-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +1214;22483;"Atherosclerosis";journal;"00219150, 18791484";"Elsevier Ireland Ltd";No;No;2,182;Q1;207;292;727;13399;4117;599;5,83;45,89;38,84;2;Ireland;Western Europe;"Elsevier Ireland Ltd";"1970-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +1215;22428;"Journal of Infection";journal;"01634453, 15322742";"W.B. Saunders Ltd";Yes;No;2,180;Q1;152;289;1072;10607;3945;394;4,41;36,70;46,76;7;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1979-2026";"Infectious Diseases (Q1); Microbiology (medical) (Q1)";"Medicine" +1216;21100904988;"Trends in Chemistry";journal;"25895974";"Cell Press";No;No;2,180;Q1;86;101;292;5308;2180;280;6,60;52,55;31,83;0;United States;Northern America;"Cell Press";"2019-2026";"Chemistry (miscellaneous) (Q1)";"Chemistry" +1217;21101126907;"Carbon Neutrality";journal;"27313948, 27888614";"Springer";Yes;Yes;2,179;Q1;28;40;113;3033;1385;110;10,74;75,83;25,86;0;China;Asiatic Region;"Springer";"2022-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Energy (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Economics, Econometrics and Finance; Energy; Environmental Science" +1218;19900193555;"Social Psychological and Personality Science";journal;"19485514, 19485506";"Sage Periodicals Press";No;No;2,179;Q1;107;121;284;6145;1646;284;5,07;50,79;48,68;2;United States;Northern America;"Sage Periodicals Press";"2010-2026";"Clinical Psychology (Q1); Social Psychology (Q1)";"Psychology" +1219;12127;"Behaviour Research and Therapy";journal;"00057967, 1873622X";"Elsevier Ltd";No;No;2,178;Q1;232;175;385;11607;2154;381;4,56;66,33;57,91;0;United Kingdom;Western Europe;"Elsevier Ltd";"1963-2026";"Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +1220;39563;"International Journal of Applied Earth Observation and Geoinformation";journal;"1872826X, 15698432";"Elsevier B.V.";Yes;No;2,177;Q1;157;661;1576;39269;15648;1572;8,93;59,41;32,83;11;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Computers in Earth Sciences (Q1); Earth-Surface Processes (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)";"Earth and Planetary Sciences; Environmental Science" +1221;21100924211;"Small Methods";journal;"23669608";"John Wiley and Sons Ltd";No;No;2,177;Q1;137;1013;1381;72488;13327;1371;9,46;71,56;34,15;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2017-2026";"Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Materials Science" +1222;13550;"Journal of Climate";journal;"15200442, 08948755";"American Meteorological Society";No;No;2,176;Q1;356;295;1328;20440;6070;1325;4,15;69,29;31,64;0;United States;Northern America;"American Meteorological Society";"1988-1989, 1991-2025";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +1223;21100420330;"Journal of Modern Power Systems and Clean Energy";journal;"21965420, 21965625";"State Grid Electric Power Research Institute Nanjing Branch";Yes;Yes;2,175;Q1;89;181;517;6197;3929;516;7,57;34,24;25,51;0;China;Asiatic Region;"State Grid Electric Power Research Institute Nanjing Branch";"2013-2026";"Energy Engineering and Power Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +1224;23269;"Computers, Environment and Urban Systems";journal;"01989715";"Elsevier Ltd";No;No;2,174;Q1;128;90;292;6170;3275;292;9,30;68,56;35,58;1;United Kingdom;Western Europe;"Elsevier Ltd";"1980-1986, 1988-2026";"Ecological Modeling (Q1); Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1)";"Environmental Science; Social Sciences" +1225;17191;"International Journal of Radiation Oncology Biology Physics";journal;"03603016, 1879355X";"Elsevier Inc.";No;No;2,173;Q1;295;656;1643;19038;6348;1012;3,75;29,02;39,12;3;United States;Northern America;"Elsevier Inc.";"1975-2026";"Cancer Research (Q1); Oncology (Q1); Radiation (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Physics and Astronomy" +1226;19080;"Computers in Industry";journal;"01663615";"Elsevier B.V.";No;No;2,172;Q1;151;157;399;9589;5469;397;12,93;61,08;26,20;1;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1)";"Computer Science; Engineering" +1227;25870;"Geochimica et Cosmochimica Acta";journal;"00167037, 0046564X";"Elsevier Ltd";No;No;2,172;Q1;305;526;1172;46941;6482;1168;5,25;89,24;31,91;2;United Kingdom;Western Europe;"Elsevier Ltd";"1950-2026";"Geochemistry and Petrology (Q1)";"Earth and Planetary Sciences" +1228;19089;"Government and Opposition";journal;"0017257X, 14777053";"Cambridge University Press";Yes;No;2,172;Q1;71;72;143;5453;802;143;4,39;75,74;42,52;7;United Kingdom;Western Europe;"Cambridge University Press";"1965-2026";"Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +1229;21100301445;"Journal of Research on Technology in Education";journal;"19450818, 15391523";"Taylor and Francis Ltd.";No;No;2,172;Q1;87;136;162;9266;1669;159;8,67;68,13;54,85;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Computer Science Applications (Q1); Education (Q1)";"Computer Science; Social Sciences" +1230;21101313381;"NPJ Nanophotonics";journal;"2948216X";"Springer Nature";Yes;No;2,171;Q1;11;44;40;3621;371;39;9,28;82,30;23,26;0;United Kingdom;Western Europe;"Springer Nature";"2024-2026";"Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Materials Science; Physics and Astronomy" +1231;26959;"Geology";journal;"00917613, 19432682";"Geological Society of America";No;No;2,168;Q1;268;236;691;7550;3457;687;4,74;31,99;26,86;0;United States;Northern America;"Geological Society of America";"1973-2026";"Geology (Q1)";"Earth and Planetary Sciences" +1232;15756;"Pediatrics";journal;"00314005, 10984275";"American Academy of Pediatrics";No;No;2,168;Q1;422;600;2019;17720;9974;1721;4,19;29,53;63,93;9;United States;Northern America;"American Academy of Pediatrics";"1948-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +1233;16676;"European Journal of Nuclear Medicine and Molecular Imaging";journal;"16197089, 16197070";"";Yes;No;2,167;Q1;200;646;1316;21674;8433;1022;5,85;33,55;39,09;1;Germany;Western Europe;"";"1996-1997, 1999, 2001-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +1234;5300152707;"Journal of Genetics and Genomics";journal;"16738527, 18735533";"Institute of Genetics and Developmental Biology";No;No;2,166;Q1;88;157;415;12334;2433;283;5,29;78,56;40,97;1;China;Asiatic Region;"Institute of Genetics and Developmental Biology";"2007-2026";"Genetics (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1235;30441;"Computers and Electronics in Agriculture";journal;"01681699";"Elsevier B.V.";No;No;2,165;Q1;209;1318;2779;69208;34653;2772;12,02;52,51;30,82;2;Netherlands;Western Europe;"Elsevier B.V.";"1985-2026";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Computer Science Applications (Q1); Forestry (Q1); Horticulture (Q1)";"Agricultural and Biological Sciences; Computer Science" +1236;21100781509;"Journal of Public Policy and Marketing";journal;"07439156, 15477207";"SAGE Publications Ltd";No;No;2,165;Q1;98;38;77;3204;436;54;6,50;84,32;45,16;0;United States;Northern America;"SAGE Publications Ltd";"1984, 1992-1993, 1995-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +1237;20106;"CNS Drugs";journal;"11791934, 11727047";"";No;No;2,161;Q1;140;105;234;8057;1854;226;7,56;76,73;44,58;1;Switzerland;Western Europe;"";"1994-2026";"Neurology (clinical) (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +1238;21101317177;"Nexus";journal;"29501601";"Cell Press";Yes;No;2,160;Q1;11;37;22;3275;280;20;12,73;88,51;30,49;0;United States;Northern America;"Cell Press";"2024-2026";"Engineering (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Engineering; Environmental Science" +1239;13041;"Plant, Cell and Environment";journal;"01407791, 13653040";"John Wiley and Sons Inc";No;No;2,160;Q1;259;741;849;51801;6893;838;7,83;69,91;42,30;1;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1978-2026";"Physiology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1240;17466;"Neurobiology of Disease";journal;"1095953X, 09699961";"Academic Press Inc.";Yes;No;2,159;Q1;206;409;967;34280;6251;950;6,07;83,81;46,88;2;United States;Northern America;"Academic Press Inc.";"1994-2026";"Neurology (Q1)";"Neuroscience" +1241;23135;"Current Hypertension Reports";journal;"15226417, 15343111";"Springer";No;No;2,158;Q1;103;29;148;2110;1097;148;6,71;72,76;54,55;0;United States;Northern America;"Springer";"1999-2026";"Internal Medicine (Q1)";"Medicine" +1242;30017;"Journal of Occupational and Organizational Psychology";journal;"20448325, 09631798";"Wiley-Blackwell";No;No;2,156;Q1;152;107;152;9962;1010;152;6,36;93,10;52,73;1;United States;Northern America;"Wiley-Blackwell";"1992-2026";"Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Psychology" +1243;18144;"Computer-Aided Civil and Infrastructure Engineering";journal;"14678667, 10939687";"Elsevier Inc.";No;No;2,155;Q1;127;327;453;18868;5178;440;11,47;57,70;27,24;1;United States;Northern America;"Elsevier Inc.";"1986-2025";"Civil and Structural Engineering (Q1); Computational Theory and Mathematics (Q1); Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q1)";"Computer Science; Engineering" +1244;19700201681;"Environmental Innovation and Societal Transitions";journal;"22104232, 22104224";"Elsevier B.V.";No;No;2,155;Q1;93;80;290;6716;2204;278;6,76;83,95;40,00;7;Netherlands;Western Europe;"Elsevier B.V.";"2011-2026";"Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1); Social Sciences (miscellaneous) (Q1)";"Energy; Environmental Science; Social Sciences" +1245;26159;"Journal of Clinical Endocrinology and Metabolism";journal;"0021972X, 19457197";"Endocrine Society";No;No;2,155;Q1;412;906;2101;36725;11064;1771;5,13;40,54;50,36;6;United States;Northern America;"Endocrine Society";"1941-2026";"Biochemistry (Q1); Biochemistry (medical) (Q1); Clinical Biochemistry (Q1); Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1246;26183;"Journal of Computer Assisted Learning";journal;"13652729, 02664909";"Wiley-Blackwell Publishing Ltd";No;No;2,155;Q1;129;198;458;15618;4212;457;7,81;78,88;50,78;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1985-2026";"Computer Science Applications (Q1); Education (Q1); E-learning (Q1)";"Computer Science; Social Sciences" +1247;21100218107;"Journal of Advances in Modeling Earth Systems";journal;"19422466";"John Wiley and Sons Inc";Yes;No;2,154;Q1;114;288;726;23557;3834;722;4,57;81,80;27,42;0;United States;Northern America;"John Wiley and Sons Inc";"2009, 2011-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Chemistry (Q1); Global and Planetary Change (Q1)";"Earth and Planetary Sciences; Environmental Science" +1248;21100982467;"npj Clean Water";journal;"20597037";"Springer Nature";Yes;No;2,153;Q1;57;100;276;6847;3244;269;10,71;68,47;37,35;1;United States;Northern America;"Springer Nature";"2018-2026";"Management, Monitoring, Policy and Law (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Environmental Science" +1249;28093;"Age and Ageing";journal;"00020729, 14682834";"Oxford University Press";No;No;2,152;Q1;185;357;921;14174;6026;828;5,97;39,70;53,75;5;United Kingdom;Western Europe;"Oxford University Press";"1972-2026";"Aging (Q1); Geriatrics and Gerontology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1250;29432;"American Educational Research Journal";journal;"00028312, 19351011";"SAGE Publications Ltd";No;No;2,151;Q1;159;34;105;2571;604;105;5,20;75,62;57,14;4;United States;Northern America;"SAGE Publications Ltd";"1967, 1973-1975, 1978, 1980, 1982, 1984-1988, 1991, 1996-2026";"Education (Q1)";"Social Sciences" +1251;21101021575;"Journal of Bioresources and Bioproducts";journal;"23699698";"KeAi Communications Co.";Yes;No;2,151;Q1;52;45;108;3342;1796;105;17,51;74,27;35,50;0;China;Asiatic Region;"KeAi Communications Co.";"2019-2026";"Biochemistry (Q1); Biomaterials (Q1); Forestry (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science" +1252;17618;"Journal of Molecular Biology";journal;"00222836, 10898638";"Academic Press";No;No;2,151;Q1;309;430;981;34679;4680;954;4,69;80,65;38,96;0;United States;Northern America;"Academic Press";"1959-2026";"Biophysics (Q1); Molecular Biology (Q1); Structural Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1253;21101185512;"Small Structures";journal;"26884062";"Wiley-VCH Verlag";Yes;No;2,151;Q1;73;331;573;22808;5458;568;9,30;68,91;31,91;0;United States;Northern America;"Wiley-VCH Verlag";"2020-2026";"Chemistry (miscellaneous) (Q1); Energy (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Energy; Engineering; Environmental Science; Materials Science" +1254;23669;"Advances in Neural Information Processing Systems";conference and proceedings;"10495258";"Neural information processing systems foundation";No;No;2,149;-;479;0;10869;0;117773;10866;7,58;0,00;0,00;0;United States;Northern America;"Neural information processing systems foundation";"1988-1995, 1997-2005, 2007, 2012-2024";"Computer Networks and Communications; Information Systems; Signal Processing";"Computer Science" +1255;21100787106;"Journal of Industrial Information Integration";journal;"2452414X";"Elsevier B.V.";No;No;2,148;Q1;71;217;335;15998;5116;334;13,46;73,72;27,59;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Industrial and Manufacturing Engineering (Q1); Information Systems and Management (Q1)";"Decision Sciences; Engineering" +1256;21873;"Corporate Social Responsibility and Environmental Management";journal;"15353958, 15353966";"John Wiley and Sons Ltd";No;No;2,147;Q1;146;538;719;48124;10254;718;13,18;89,45;41,05;3;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2003-2026";"Development (Q1); Management, Monitoring, Policy and Law (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Environmental Science; Social Sciences" +1257;24823;"Pattern Recognition";journal;"00313203";"Elsevier Ltd";No;No;2,147;Q1;267;885;2300;39085;23696;2298;10,51;44,16;30,93;0;United Kingdom;Western Europe;"Elsevier Ltd";"1968-2026";"Artificial Intelligence (Q1); Computer Vision and Pattern Recognition (Q1); Signal Processing (Q1); Software (Q1)";"Computer Science" +1258;83061;"Journal of Archaeological Research";journal;"15737756, 10590161";"Springer New York";No;No;2,146;Q1;69;22;36;6482;207;36;6,21;294,64;40,38;0;United States;Northern America;"Springer New York";"1993-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +1259;39112;"Geoderma";journal;"18726259, 00167061";"Elsevier B.V.";Yes;No;2,145;Q1;227;505;1411;35644;11800;1397;8,21;70,58;36,30;3;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Soil Science (Q1)";"Agricultural and Biological Sciences" +1260;21101186817;"Droplet";journal;"27692159, 27314375";"John Wiley and Sons Inc";Yes;No;2,144;Q1;21;37;83;2511;811;82;8,94;67,86;35,29;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Aquatic Science (Q1); Water Science and Technology (Q1)";"Agricultural and Biological Sciences; Environmental Science" +1261;21100338350;"IEEE Internet of Things Journal";journal;"23274662";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,144;Q1;233;4076;6614;185398;68819;6596;9,87;45,49;30,19;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2014-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Information Systems and Management (Q1); Signal Processing (Q1)";"Computer Science; Decision Sciences" +1262;23665;"International Business Review";journal;"09695931";"Elsevier Ltd";No;No;2,144;Q1;142;103;262;12002;2328;261;9,12;116,52;35,03;0;United Kingdom;Western Europe;"Elsevier Ltd";"1993-2026";"Business and International Management (Q1); Finance (Q1); Marketing (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +1263;21101049047;"Transactions of the Association for Computational Linguistics";journal;"2307387X";"MIT Press";Yes;Yes;2,144;Q1;81;68;278;4674;4921;278;17,04;68,74;29,31;0;United States;Northern America;"MIT Press";"2015, 2018-2025";"Artificial Intelligence (Q1); Communication (Q1); Computer Science Applications (Q1); Human-Computer Interaction (Q1); Linguistics and Language (Q1)";"Computer Science; Social Sciences" +1264;19600157911;"Electronic Markets";journal;"14228890, 10196781";"Springer Verlag";No;No;2,143;Q1;76;111;253;10780;3201;237;11,32;97,12;30,90;1;Germany;Western Europe;"Springer Verlag";"2009-2026";"Business and International Management (Q1); Computer Science Applications (Q1); Economics and Econometrics (Q1); Management of Technology and Innovation (Q1); Marketing (Q1)";"Business, Management and Accounting; Computer Science; Economics, Econometrics and Finance" +1265;21101310079;"Extracellular Vesicle";journal;"27730417";"Elsevier B.V.";Yes;No;2,143;Q1;16;34;52;2910;528;50;9,82;85,59;44,55;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1266;21100898934;"BMJ Global Health";journal;"20597908";"BMJ Publishing Group";Yes;No;2,140;Q1;107;613;1288;26762;7606;1055;4,71;43,66;48,77;21;United Kingdom;Western Europe;"BMJ Publishing Group";"2016-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +1267;16612;"Plant Journal";journal;"1365313X, 09607412";"Wiley-Blackwell Publishing Ltd";No;No;2,140;Q1;341;742;1520;51811;10469;1459;6,17;69,83;42,39;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1991-2026";"Cell Biology (Q1); Genetics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1268;21100867411;"Annual Review of Criminology";journal;"25724568";"Annual Reviews Inc.";No;No;2,139;Q1;46;22;41;2753;300;41;7,32;125,14;42,00;2;United States;Northern America;"Annual Reviews Inc.";"2018-2021, 2023-2026";"Law (Q1)";"Social Sciences" +1269;25414;"Best Practice and Research: Clinical Endocrinology and Metabolism";journal;"1521690X, 15321908";"Elsevier B.V.";No;No;2,139;Q1;138;61;181;4313;1271;164;6,61;70,70;55,14;0;Netherlands;Western Europe;"Elsevier B.V.";"1999-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1270;144666;"Journal of Product and Brand Management";journal;"10610421";"Emerald Publishing";No;No;2,139;Q1;117;122;242;10489;2605;239;9,78;85,98;49,68;0;United Kingdom;Western Europe;"Emerald Publishing";"1992-2026";"Management of Technology and Innovation (Q1); Marketing (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1271;21101215100;"Communications Medicine";journal;"2730664X";"Springer Nature";Yes;No;2,138;Q1;40;535;609;29267;4515;569;7,44;54,70;41,07;4;United Kingdom;Western Europe;"Springer Nature";"2021-2026";"Assessment and Diagnosis (Q1); Epidemiology (Q1); Internal Medicine (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Nursing" +1272;21101080189;"Communications Materials";journal;"26624443";"Springer Nature";Yes;No;2,136;Q1;55;289;479;18557;4454;471;8,34;64,21;25,69;1;United Kingdom;Western Europe;"Springer Nature";"2020-2026";"Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +1273;24006;"Physiology";journal;"15489213, 15489221";"American Physiological Society";No;No;2,136;Q1;154;53;106;5834;605;86;5,49;110,08;41,18;0;United States;Northern America;"American Physiological Society";"1991, 1999, 2004-2026";"Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1274;21100197121;"Geoscientific Model Development";journal;"1991959X, 19919603";"Copernicus Publications";Yes;No;2,134;Q1;159;411;1135;32016;6812;1134;4,88;77,90;27,78;8;Germany;Western Europe;"Copernicus Publications";"2008-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Modeling and Simulation (Q1)";"Earth and Planetary Sciences; Mathematics" +1275;15269;"Monographs of the Society for Research in Child Development";journal;"0037976X, 15405834";"Wiley-Blackwell Publishing Ltd";No;No;2,134;Q1;80;1;6;289;47;6;7,60;289,00;75,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1961-1982, 1984-2025";"Developmental and Educational Psychology (Q1)";"Psychology" +1276;19900192175;"Journal of Topology";journal;"17538416, 17538424";"John Wiley and Sons Ltd";No;No;2,133;Q1;40;41;143;1611;193;143;1,36;39,29;16,25;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Geometry and Topology (Q1)";"Mathematics" +1277;17600155502;"Journal of Computing in Higher Education";journal;"10421726, 18671233";"Springer US";Yes;No;2,132;Q1;64;83;95;6000;995;93;10,63;72,29;49,38;0;United States;Northern America;"Springer US";"1989-2026";"Education (Q1)";"Social Sciences" +1278;144955;"Education and Information Technologies";journal;"15737608, 13602357";"Springer";No;No;2,131;Q1;121;966;2144;68850;24046;2114;11,41;71,27;45,36;7;United States;Northern America;"Springer";"1996-2002, 2005-2026";"Education (Q1); E-learning (Q1); Library and Information Sciences (Q1)";"Social Sciences" +1279;21100338359;"IEEE Journal of Emerging and Selected Topics in Power Electronics";journal;"21686785, 21686777";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,131;Q1;136;797;1635;27039;11515;1621;6,88;33,93;23,17;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering" +1280;21101220778;"Science in One Health";journal;"29497043";"Elsevier B.V.";Yes;No;2,131;Q1;16;36;61;2108;556;55;10,15;58,56;40,00;2;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q1); Health Policy (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1); Public Health, Environmental and Occupational Health (Q1)";"Environmental Science; Medicine" +1281;29492;"American Psychologist";journal;"0003066X, 1935990X";"American Psychological Association";No;No;2,130;Q1;294;135;376;6859;2308;375;5,46;50,81;55,45;1;United States;Northern America;"American Psychological Association";"1946-1954, 1965-2026";"Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Psychology" +1282;21101146418;"Light: Advanced Manufacturing";journal;"26899620, 28314093";"Light Publishing Group";Yes;Yes;2,130;Q1;37;86;147;4388;1357;143;8,95;51,02;35,48;0;China;Asiatic Region;"Light Publishing Group";"2020-2025";"Industrial and Manufacturing Engineering (Q1); Instrumentation (Q1); Materials Science (miscellaneous) (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science; Physics and Astronomy" +1283;24207;"Fuzzy Optimization and Decision Making";journal;"15732908, 15684539";"Springer New York";No;No;2,128;Q1;71;27;79;793;632;79;8,25;29,37;31,94;0;United States;Northern America;"Springer New York";"2002-2026";"Artificial Intelligence (Q1); Logic (Q1); Software (Q1)";"Computer Science; Mathematics" +1284;15991;"Journal of Pathology";journal;"10969896, 00223417";"John Wiley and Sons Ltd";No;No;2,127;Q1;220;119;403;6283;2153;367;5,06;52,80;42,10;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1969-2026";"Pathology and Forensic Medicine (Q1)";"Medicine" +1285;18148;"Pain";journal;"18726623, 03043959";"Lippincott Williams and Wilkins";No;No;2,127;Q1;314;480;1010;22084;5545;860;4,91;46,01;48,60;2;United States;Northern America;"Lippincott Williams and Wilkins";"1975-2026";"Anesthesiology and Pain Medicine (Q1); Neurology (Q1); Neurology (clinical) (Q1); Pharmacology (Q1)";"Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +1286;25192;"Reviews of Environmental Contamination and Toxicology";journal;"21976554, 01795953";"Springer";No;No;2,125;Q1;110;31;71;6150;683;71;9,51;198,39;34,52;2;United States;Northern America;"Springer";"1987-2026";"Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Pollution (Q1); Public Health, Environmental and Occupational Health (Q1)";"Environmental Science; Medicine" +1287;17340;"IEEE Transactions on Automation Science and Engineering";journal;"15455955, 15583783";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,122;Q1;135;1886;1105;83931;12945;1099;11,54;44,50;28,40;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2004-2026";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Engineering" +1288;26421;"SIAM Journal on Numerical Analysis";journal;"00361429, 10957170";"Society for Industrial and Applied Mathematics Publications";No;No;2,120;Q1;162;97;343;3890;1090;342;2,93;40,10;20,33;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"1969-1972, 1974-1978, 1983-1987, 1990-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Numerical Analysis (Q1)";"Mathematics" +1289;4200151402;"International Journal of Stroke";journal;"17474930, 17474949";"SAGE Publications Ltd";No;No;2,115;Q1;112;178;415;6270;2691;387;6,86;35,22;35,51;4;United Kingdom;Western Europe;"SAGE Publications Ltd";"2006-2026";"Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +1290;19700201449;"International Journal of Logistics Management";journal;"17586550, 09574093";"Emerald Group Publishing Ltd.";No;No;2,113;Q1;108;111;240;10206;3091;230;11,81;91,95;30,70;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1990-2026";"Business and International Management (Q1); Transportation (Q1)";"Business, Management and Accounting; Social Sciences" +1291;25812;"Communications in Partial Differential Equations";journal;"03605302, 15324133";"Taylor and Francis Ltd.";No;No;2,112;Q1;99;36;136;1368;309;136;1,61;38,00;28,40;0;United States;Northern America;"Taylor and Francis Ltd.";"1971, 1976-2025";"Analysis (Q1); Applied Mathematics (Q1)";"Mathematics" +1292;28512;"Mathematical Programming";journal;"14364646, 00255610";"Springer-Verlag GmbH and Co. KG";No;No;2,111;Q1;157;219;487;9487;1742;478;3,35;43,32;18,14;0;Germany;Western Europe;"Springer-Verlag GmbH and Co. KG";"1971-2026";"Mathematics (miscellaneous) (Q1); Software (Q1)";"Computer Science; Mathematics" +1293;15222;"Arthroscopy - Journal of Arthroscopic and Related Surgery";journal;"07498063, 15263231";"W.B. Saunders";No;No;2,110;Q1;203;791;1326;22677;5094;735;3,86;28,67;19,69;1;United States;Northern America;"W.B. Saunders";"1985-2025";"Orthopedics and Sports Medicine (Q1); Sports Science (Q1)";"Health Professions; Medicine" +1294;12159;"Body Image";journal;"17401445, 18736807";"Elsevier Ltd";No;No;2,110;Q1;125;143;438;10819;3022;433;6,03;75,66;73,12;2;United Kingdom;Western Europe;"Elsevier Ltd";"2004-2026";"Applied Psychology (Q1); Psychology (miscellaneous) (Q1); Social Psychology (Q1)";"Psychology" +1295;19726;"Educational Evaluation and Policy Analysis";journal;"01623737, 19351062";"SAGE Publications Inc.";No;No;2,110;Q1;102;87;105;5686;490;103;4,37;65,36;50,00;20;United States;Northern America;"SAGE Publications Inc.";"1979-1983, 1990, 1996-2026";"Education (Q1)";"Social Sciences" +1296;18405;"Educational Technology and Society";journal;"11763647, 14364522";"International Forum of Educational Technology and Society,National Taiwan Normal University";Yes;Yes;2,109;Q1;125;93;183;6467;1750;179;8,94;69,54;47,69;0;Taiwan;Asiatic Region;"International Forum of Educational Technology and Society,National Taiwan Normal University";"1998-2026";"Education (Q1); E-learning (Q1); Engineering (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Engineering; Social Sciences" +1297;21101183740;"Environmental Chemistry and Ecotoxicology";journal;"25901826";"KeAi Communications Co.";Yes;No;2,109;Q1;35;221;87;17690;1251;86;15,20;80,05;42,41;1;China;Asiatic Region;"KeAi Communications Co.";"2019-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Environmental Chemistry (Q1)";"Agricultural and Biological Sciences; Environmental Science" +1298;23709;"Journal of Medical Internet Research";journal;"14394456, 14388871";"JMIR Publications Inc.";Yes;No;2,109;Q1;234;1617;2819;92993;24730;2766;8,53;57,51;51,95;16;Canada;Northern America;"JMIR Publications Inc.";"1999-2026";"Computer Science Applications (Q1); Health Informatics (Q1)";"Computer Science; Medicine" +1299;21100428409;"United European Gastroenterology Journal";journal;"20506406, 20506414";"John Wiley & Sons Inc.";No;No;2,109;Q1;72;219;442;7734;2009;281;4,15;35,32;40,78;0;United States;Northern America;"John Wiley & Sons Inc.";"2013-2026";"Gastroenterology (Q1); Oncology (Q1)";"Medicine" +1300;15095;"Free Radical Biology and Medicine";journal;"08915849, 18734596";"Elsevier Inc.";No;No;2,105;Q1;324;611;1267;37442;11073;1248;7,96;61,28;45,25;0;United States;Northern America;"Elsevier Inc.";"1987-2026";"Biochemistry (Q1); Physiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1301;50170;"International Journal of Mechanical Sciences";journal;"00207403";"Elsevier Ltd";No;No;2,101;Q1;164;1029;2274;89596;25704;2268;11,76;87,07;25,68;0;United Kingdom;Western Europe;"Elsevier Ltd";"1960-2026";"Aerospace Engineering (Q1); Applied Mathematics (Q1); Civil and Structural Engineering (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Ocean Engineering (Q1)";"Engineering; Materials Science; Mathematics; Physics and Astronomy" +1302;29170;"Critical Perspectives on Accounting";journal;"10452354, 10959955";"Academic Press";No;No;2,100;Q1;97;38;216;3748;1217;206;5,37;98,63;63,16;0;United States;Northern America;"Academic Press";"1990-2026";"Accounting (Q1); Finance (Q1); Information Systems and Management (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Social Sciences" +1303;20292;"Ecological Indicators";journal;"1470160X";"Elsevier B.V.";Yes;No;2,099;Q1;222;1448;4423;105789;41946;4413;9,20;73,06;39,21;7;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Decision Sciences (miscellaneous) (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Decision Sciences; Environmental Science" +1304;24443;"Construction and Building Materials";journal;"09500618";"Elsevier Ltd";No;No;2,097;Q1;322;5151;12831;296261;124568;12828;9,34;57,52;30,20;1;United Kingdom;Western Europe;"Elsevier Ltd";"1987-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +1305;25772;"International Affairs";journal;"14682346, 00205850";"Wiley-Blackwell";No;No;2,097;Q1;113;104;314;9818;1822;307;5,75;94,40;45,10;8;United Kingdom;Western Europe;"Wiley-Blackwell";"1979-1986, 1988-1989, 1996-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +1306;12996;"IEEE Signal Processing Magazine";journal;"10535888, 15580792";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,096;Q1;229;57;222;1772;2038;184;9,33;31,09;28,42;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1991-2026";"Applied Mathematics (Q1); Electrical and Electronic Engineering (Q1); Signal Processing (Q1)";"Computer Science; Engineering; Mathematics" +1307;21100925772;"Ophthalmology Retina";journal;"24686530";"Elsevier Inc.";No;No;2,096;Q1;60;314;672;4475;2455;432;3,39;14,25;44,14;0;United States;Northern America;"Elsevier Inc.";"2017-2026";"Ophthalmology (Q1)";"Medicine" +1308;100147338;"Modern Language Journal";journal;"15404781, 00267902";"Wiley-Blackwell";No;No;2,095;Q1;131;64;151;3303;860;127;4,80;51,61;55,68;0;United States;Northern America;"Wiley-Blackwell";"1916-1996, 1998-2002, 2004-2026";"Linguistics and Language (Q1)";"Social Sciences" +1309;21100939600;"Underground Space (new)";journal;"20962754, 24679674";"KeAi Communications Co.";Yes;Yes;2,095;Q1;51;123;286;6091;2972;283;9,72;49,52;27,95;0;China;Asiatic Region;"KeAi Communications Co.";"2016-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Engineering" +1310;15110;"Agriculture, Ecosystems and Environment";journal;"01678809";"Elsevier B.V.";No;No;2,094;Q1;236;520;1145;38350;10091;1141;8,78;73,75;39,25;12;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Ecology (Q1)";"Agricultural and Biological Sciences; Environmental Science" +1311;19113;"IEEE/ASME Transactions on Mechatronics";journal;"10834435, 1941014X";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,094;Q1;178;881;1303;32690;12344;1301;9,04;37,11;25,66;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1996-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +1312;17067;"Phytomedicine";journal;"09447113, 1618095X";"Elsevier GmbH";No;No;2,092;Q1;160;1312;2350;77319;26216;2345;11,55;58,93;47,33;1;Germany;Western Europe;"Elsevier GmbH";"1994-2026";"Complementary and Alternative Medicine (Q1); Drug Discovery (Q1); Molecular Medicine (Q1); Pharmaceutical Science (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +1313;29710;"Clinical Science";journal;"14708736, 01435221";"Portland Press Ltd";No;No;2,091;Q1;174;99;316;8913;2340;315;6,50;90,03;48,16;0;United Kingdom;Western Europe;"Portland Press Ltd";"1946-1949, 1951-1959, 1973, 1979-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +1314;21101030407;"JMIR Mental Health";journal;"23687959";"JMIR Publications Inc.";Yes;No;2,091;Q1;78;143;359;9691;3153;358;8,04;67,77;54,49;0;Canada;Northern America;"JMIR Publications Inc.";"2014-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +1315;27540;"Progress in Photovoltaics: Research and Applications";journal;"10627995, 1099159X";"John Wiley and Sons Ltd";No;No;2,091;Q1;159;126;299;5760;2734;290;10,69;45,71;27,08;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1993-2026";"Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering; Materials Science; Physics and Astronomy" +1316;24085;"Progress in Nuclear Magnetic Resonance Spectroscopy";journal;"00796565, 18733301";"Elsevier B.V.";No;No;2,090;Q1;124;14;33;3349;344;33;9,61;239,21;25,97;0;Netherlands;Western Europe;"Elsevier B.V.";"1965-1967, 1969-1973, 1975-1982, 1984-2026";"Analytical Chemistry (Q1); Biochemistry (Q1); Materials Science (miscellaneous) (Q1); Nuclear and High Energy Physics (Q1); Spectroscopy (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Physics and Astronomy" +1317;21101047720;"Limnology and Oceanography Letters";journal;"23782242";"John Wiley and Sons Inc";Yes;No;2,089;Q1;51;89;223;5405;1140;53;4,89;60,73;44,63;2;United States;Northern America;"John Wiley and Sons Inc";"2016-2026";"Aquatic Science (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +1318;21100837352;"Social Media and Society";journal;"20563051";"SAGE Publications Ltd";Yes;No;2,088;Q1;96;126;483;8007;3557;481;6,60;63,55;53,90;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2015-2026";"Communication (Q1); Computer Science Applications (Q1); Cultural Studies (Q1)";"Computer Science; Social Sciences" +1319;69623;"American Journal of Agricultural Economics";journal;"14678276, 00029092";"John Wiley & Sons Inc.";No;No;2,087;Q1;145;91;209;5788;1214;207;5,76;63,60;26,27;8;United States;Northern America;"John Wiley & Sons Inc.";"1919-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Economics and Econometrics (Q1)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +1320;5700176815;"Journalism";journal;"14648849, 17413001";"SAGE Publications Ltd";No;No;2,087;Q1;95;227;430;11733;2395;428;4,98;51,69;51,39;5;United Kingdom;Western Europe;"SAGE Publications Ltd";"2000-2026";"Arts and Humanities (miscellaneous) (Q1); Communication (Q1)";"Arts and Humanities; Social Sciences" +1321;12811;"Personality and Social Psychology Bulletin";journal;"01461672, 15527433";"SAGE Publications Inc.";No;No;2,086;Q1;250;308;345;20193;1892;345;5,18;65,56;49,02;6;United States;Northern America;"SAGE Publications Inc.";"1976, 1982-1983, 1985-1989, 1991-1992, 1995-2026";"Social Psychology (Q1)";"Psychology" +1322;14756;"Statistical Science";journal;"08834237, 21688745";"Institute of Mathematical Statistics";No;No;2,085;Q1;132;20;120;1291;532;116;4,83;64,55;32,56;0;United States;Northern America;"Institute of Mathematical Statistics";"1986-2025";"Mathematics (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +1323;21100941105;"JCO Precision Oncology";journal;"24734284";"Lippincott Williams and Wilkins";No;No;2,082;Q1;65;262;590;8712;2252;539;3,47;33,25;44,45;0;United States;Northern America;"Lippincott Williams and Wilkins";"2017-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1324;21100218533;"Oncogenesis";journal;"21579024";"Springer Nature";Yes;No;2,081;Q1;78;49;159;2861;959;159;5,40;58,39;45,03;0;United Kingdom;Western Europe;"Springer Nature";"2012-2026";"Cancer Research (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1325;5700168406;"Active Learning in Higher Education";journal;"14697874, 17412625";"SAGE Publications Ltd";No;No;2,080;Q1;72;67;76;3430;647;75;6,98;51,19;60,20;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2000-2026";"Education (Q1)";"Social Sciences" +1326;16114;"Electoral Studies";journal;"02613794";"Elsevier B.V.";No;No;2,080;Q1;98;80;310;4853;1280;308;3,09;60,66;31,96;3;United Kingdom;Western Europe;"Elsevier B.V.";"1982-2026";"Political Science and International Relations (Q1)";"Social Sciences" +1327;12705;"Fertility and Sterility";journal;"15565653, 00150282";"Elsevier Inc.";No;No;2,080;Q1;265;507;1229;10771;5396;740;4,24;21,24;54,36;7;United States;Northern America;"Elsevier Inc.";"1950-2026";"Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)";"Medicine" +1328;15613;"Journal of Communication";journal;"00219916, 14602466";"Wiley-Blackwell";No;No;2,080;Q1;180;48;133;2853;805;124;5,00;59,44;51,35;2;United States;Northern America;"Wiley-Blackwell";"1951-2025";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +1329;21933;"Decision Support Systems";journal;"01679236";"Elsevier B.V.";No;No;2,079;Q1;203;124;377;8185;3654;373;9,06;66,01;31,76;0;Netherlands;Western Europe;"Elsevier B.V.";"1985-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1)";"Arts and Humanities; Business, Management and Accounting; Computer Science; Decision Sciences; Psychology" +1330;21101242573;"hLife";journal;"29499283";"Elsevier B.V.";Yes;No;2,077;Q1;14;78;79;3523;452;60;5,72;45,17;39,03;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Immunology and Allergy (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q1)";"Immunology and Microbiology; Medicine" +1331;15439;"Journal of Consulting and Clinical Psychology";journal;"0022006X, 19392117";"American Psychological Association";No;No;2,077;Q1;285;65;221;2631;1287;219;5,47;40,48;55,47;3;United States;Northern America;"American Psychological Association";"1968-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +1332;21101254070;"NPJ Ocean Sustainability";journal;"2731426X";"Springer Nature";Yes;No;2,077;Q1;18;70;86;5092;665;62;6,80;72,74;52,99;2;United Kingdom;Western Europe;"Springer Nature";"2022-2026";"Aquatic Science (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +1333;21100358105;"IEEE Transactions on Control of Network Systems";journal;"23255870";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,076;Q1;85;298;539;11198;3139;537;5,78;37,58;24,85;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2014-2026";"Computer Networks and Communications (Q1); Control and Optimization (Q1); Control and Systems Engineering (Q1); Signal Processing (Q1)";"Computer Science; Engineering; Mathematics" +1334;17876;"Radiotherapy and Oncology";journal;"18790887, 01678140";"Elsevier Ireland Ltd";No;No;2,076;Q1;196;450;1195;15657;6121;1034;4,97;34,79;40,08;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1983-2026";"Hematology (Q1); Oncology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +1335;21101294446;"ISME Communications";journal;"27306151";"Oxford University Press";Yes;No;2,075;Q1;24;251;295;17588;1927;295;6,48;70,07;42,38;0;United Kingdom;Western Europe;"Oxford University Press";"2021-2026";"Microbiology (Q1)";"Immunology and Microbiology" +1336;21101246233;"Nano TransMed";journal;"27906760, 27907384";"KeAi Publishing Communications Ltd.";Yes;No;2,075;Q1;22;32;58;4198;695;53;13,36;131,19;41,26;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2022-2026";"Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1)";"Medicine" +1337;28620;"Biomedicine and Pharmacotherapy";journal;"07533322, 19506007";"Elsevier Masson s.r.l.";Yes;No;2,074;Q1;196;1039;5006;85929;49563;4986;9,84;82,70;48,44;1;France;Western Europe;"Elsevier Masson s.r.l.";"1982-2026";"Medicine (miscellaneous) (Q1); Pharmacology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +1338;21101192774;"Chip";journal;"27722724, 27094723";"Elsevier B.V.";Yes;No;2,073;Q1;22;33;87;2063;872;87;9,24;62,52;36,29;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Hardware and Architecture (Q1)";"Computer Science; Engineering" +1339;19353;"Schizophrenia Bulletin";journal;"05867614, 17451701";"Oxford University Press";No;No;2,071;Q1;236;179;498;11640;2654;444;5,12;65,03;48,27;1;United Kingdom;Western Europe;"Oxford University Press";"1973-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +1340;20892;"Transportation Research Part B: Methodological";journal;"01912615";"Elsevier Ltd";No;No;2,070;Q1;194;132;401;7179;2956;397;6,74;54,39;30,33;0;United Kingdom;Western Europe;"Elsevier Ltd";"1979-2026";"Civil and Structural Engineering (Q1); Management Science and Operations Research (Q1); Transportation (Q1)";"Decision Sciences; Engineering; Social Sciences" +1341;19700182749;"Geoscience Frontiers";journal;"16749871";"Elsevier B.V.";Yes;No;2,069;Q1;112;175;464;15719;5595;454;14,33;89,82;28,84;0;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +1342;19961;"Molecular Medicine";journal;"10761551, 15283658";"BioMed Central Ltd";Yes;No;2,069;Q1;141;331;601;20934;4871;598;8,14;63,24;45,95;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1994-2026";"Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1343;21100409617;"Bulletin of Mathematical Sciences";journal;"16643607, 16643615";"World Scientific";Yes;Yes;2,068;Q1;28;40;52;1665;248;52;5,70;41,63;34,52;0;Singapore;Asiatic Region;"World Scientific";"2011-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +1344;19900193985;"Cell and Bioscience";journal;"20453701";"BioMed Central Ltd";Yes;No;2,068;Q1;89;166;581;12964;3890;573;6,14;78,10;46,07;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2011-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology" +1345;14316;"Harvard Law Review";journal;"0017811X";"Harvard Law Review Association";No;No;2,068;Q1;103;69;163;2084;263;80;1,16;30,20;37,50;0;United States;Northern America;"Harvard Law Review Association";"1973-2026";"Law (Q1)";"Social Sciences" +1346;21100218543;"Molecular Therapy Nucleic Acids";journal;"21622531";"Cell Press";Yes;No;2,068;Q1;113;348;852;21803;4762;712;5,38;62,65;45,20;0;United States;Northern America;"Cell Press";"2012-2026";"Drug Discovery (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +1347;21101012349;"Quantum";journal;"2521327X";"Verein zur Forderung des Open Access Publizierens in den Quantenwissenschaften";Yes;No;2,068;Q1;80;375;942;24245;5414;941;5,46;64,65;15,78;0;Austria;Western Europe;"Verein zur Forderung des Open Access Publizierens in den Quantenwissenschaften";"2017-2026";"Atomic and Molecular Physics, and Optics (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +1348;21100944562;"ACS Materials Letters";journal;"26394979";"American Chemical Society";Yes;No;2,067;Q1;91;438;1181;25219;10108;1174;8,38;57,58;32,82;0;United States;Northern America;"American Chemical Society";"2019-2026";"Biomedical Engineering (Q1); Chemical Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Chemical Engineering; Engineering; Materials Science" +1349;75561;"Advanced Nonlinear Studies";journal;"21690375, 15361365";"Walter de Gruyter GmbH";Yes;No;2,066;Q1;47;51;134;1729;314;130;2,21;33,90;28,71;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2001-2026";"Mathematics (miscellaneous) (Q1); Statistical and Nonlinear Physics (Q1)";"Mathematics; Physics and Astronomy" +1350;21101196050;"Device";journal;"26669986";"Cell Press";No;No;2,066;Q1;23;181;261;9797;1675;188;6,42;54,13;31,48;0;United States;Northern America;"Cell Press";"2023-2025";"Condensed Matter Physics (Q1); Engineering (miscellaneous) (Q1)";"Engineering; Physics and Astronomy" +1351;21101028388;"Patterns";journal;"26663899";"Cell Press";Yes;No;2,066;Q1;62;122;439;8056;4229;345;9,58;66,03;30,52;1;United States;Northern America;"Cell Press";"2020-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +1352;19700190323;"ACM Transactions on Intelligent Systems and Technology";journal;"21576912, 21576904";"Association for Computing Machinery";No;No;2,065;Q1;92;147;362;11743;4635;355;13,22;79,88;24,83;2;United States;Northern America;"Association for Computing Machinery";"2010-2026";"Artificial Intelligence (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +1353;19700168103;"mAbs";journal;"19420870, 19420862";"Taylor and Francis Ltd.";Yes;No;2,065;Q1;117;127;280;8374;2082;277;7,59;65,94;39,17;0;United States;Northern America;"Taylor and Francis Ltd.";"2009-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +1354;21101107952;"Cognitive Robotics";journal;"26672413";"KeAi Communications Co.";Yes;No;2,064;Q1;20;23;67;859;1226;67;25,79;37,35;31,08;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Artificial Intelligence (Q1); Control and Systems Engineering (Q1)";"Computer Science; Engineering" +1355;21100205761;"European Heart Journal Cardiovascular Imaging";journal;"20472412, 20472404";"Oxford University Press";No;No;2,064;Q1;133;348;1020;5711;3524;651;3,03;16,41;31,54;0;United Kingdom;Western Europe;"Oxford University Press";"2012-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +1356;13017;"Physics of Life Reviews";journal;"18731457, 15710645";"Elsevier B.V.";No;No;2,064;Q1;85;153;386;8665;923;65;2,14;56,63;32,58;1;Netherlands;Western Europe;"Elsevier B.V.";"2004-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Artificial Intelligence (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Computer Science; Physics and Astronomy" +1357;21100203113;"Comprehensive Physiology";journal;"20404603";"John Wiley and Sons Inc";No;No;2,061;Q1;140;85;104;9166;703;104;5,73;107,84;45,35;1;United States;Northern America;"John Wiley and Sons Inc";"1984, 2000, 2011-2026";"Medicine (miscellaneous) (Q1); Physiology (Q1); Physiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1358;29348;"Energy";journal;"18736785, 03605442";"Elsevier Ltd";No;No;2,060;Q1;293;5364;11882;283857;127810;11846;10,73;52,92;29,40;8;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Energy (miscellaneous) (Q1); Fuel Technology (Q1); Industrial and Manufacturing Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Mechanical Engineering (Q1); Modeling and Simulation (Q1); Pollution (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering; Environmental Science; Mathematics" +1359;18787;"Higher Education";journal;"00181560, 1573174X";"Springer Netherlands";No;No;2,059;Q1;150;317;501;18710;4236;500;7,99;59,02;53,81;7;Netherlands;Western Europe;"Springer Netherlands";"1972-2026";"Education (Q1); Law (Q1)";"Social Sciences" +1360;20655;"Trends in Cardiovascular Medicine";journal;"10501738, 18732615";"Elsevier Inc.";No;No;2,059;Q1;120;121;303;5067;1386;153;4,58;41,88;27,55;0;United States;Northern America;"Elsevier Inc.";"1991-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +1361;24840;"International Journal of Human Resource Management";journal;"09585192, 14664399";"Routledge";No;No;2,058;Q1;158;137;418;11622;3992;401;7,07;84,83;45,41;1;United Kingdom;Western Europe;"Routledge";"1990-2026";"Business and International Management (Q1); Industrial Relations (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1362;25829;"Probability Theory and Related Fields";journal;"01788051, 14322064";"Springer New York";No;No;2,058;Q1;100;134;220;5918;496;220;2,22;44,16;15,57;0;Germany;Western Europe;"Springer New York";"1986-2026";"Analysis (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +1363;30867;"TrAC - Trends in Analytical Chemistry";journal;"01659936, 18793142";"Elsevier B.V.";No;No;2,057;Q1;247;327;1278;50159;18872;1263;14,40;153,39;39,65;0;Netherlands;Western Europe;"Elsevier B.V.";"1981-2026";"Analytical Chemistry (Q1); Environmental Chemistry (Q1); Spectroscopy (Q1)";"Chemistry; Environmental Science" +1364;21101021579;"Advances in Combinatorics";journal;"25175599";"Alliance of Diamond OA Journals";Yes;Yes;2,055;Q1;12;10;22;365;44;22;2,14;36,50;11,11;0;United Kingdom;Western Europe;"Alliance of Diamond OA Journals";"2019-2025";"Discrete Mathematics and Combinatorics (Q1)";"Mathematics" +1365;21101041418;"Computing and Software for Big Science";journal;"25102044";"Springer Nature";No;No;2,055;Q1;28;22;52;982;224;49;4,70;44,64;26,41;0;Switzerland;Western Europe;"Springer Nature";"2017-2025";"Computer Science (miscellaneous) (Q1); Nuclear and High Energy Physics (Q1); Software (Q1)";"Computer Science; Physics and Astronomy" +1366;21101055861;"Resources, Environment and Sustainability";journal;"26669161";"Elsevier B.V.";Yes;No;2,055;Q1;36;96;119;7323;1281;113;10,99;76,28;33,51;1;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1)";"Environmental Science" +1367;15714;"Geotechnique";journal;"17517656, 00168505";"ICE Publishing";Yes;No;2,054;Q1;191;62;361;2825;2061;347;4,78;45,56;20,10;0;United Kingdom;Western Europe;"ICE Publishing";"1948-2025";"Earth and Planetary Sciences (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences" +1368;26000;"Journal of Thrombosis and Haemostasis";journal;"15387836, 15387933";"Elsevier B.V.";No;No;2,054;Q1;224;440;1155;16538;4583;853;3,96;37,59;45,31;2;Netherlands;Western Europe;"Elsevier B.V.";"2003-2026";"Hematology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1369;17148;"Tobacco Control";journal;"09644563, 14683318";"BMJ Publishing Group";No;No;2,054;Q1;151;345;586;12911;2631;516;3,80;37,42;55,78;22;United Kingdom;Western Europe;"BMJ Publishing Group";"1993, 1995-2026";"Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +1370;26750;"Astronomy and Astrophysics";journal;"00046361, 14320746";"EDP Sciences";Yes;No;2,052;Q1;378;3925;7938;333703;41095;7930;5,25;85,02;29,44;0;France;Western Europe;"EDP Sciences";"1982, 1984, 1986-1988, 1990-2026";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +1371;21100199802;"Frontiers in Synaptic Neuroscience";journal;"16633563";"Frontiers Media SA";Yes;No;2,052;Q1;57;14;133;1631;590;109;5,54;116,50;36,11;0;Switzerland;Western Europe;"Frontiers Media SA";"2009-2026";"Cell Biology (Q1); Cellular and Molecular Neuroscience (Q1)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +1372;17393;"IEEE Transactions on Vehicular Technology";journal;"00189545, 19399359";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,052;Q1;254;2195;4227;80127;36937;4220;8,47;36,50;29,01;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1967-2026";"Aerospace Engineering (Q1); Applied Mathematics (Q1); Automotive Engineering (Q1); Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering; Mathematics" +1373;21101341261;"Babylonian Journal of Machine Learning";journal;"30065429";"Mesopotamian Academic Press";No;No;2,051;Q1;13;11;31;329;560;30;18,06;29,91;31,58;0;Iraq;Middle East;"Mesopotamian Academic Press";"2023-2025";"Artificial Intelligence (Q1); Computer Vision and Pattern Recognition (Q1); Human-Computer Interaction (Q1); Information Systems (Q1)";"Computer Science" +1374;19900192160;"Epidemiology and Psychiatric Sciences";journal;"20457979, 20457960";"Cambridge University Press";Yes;No;2,051;Q1;89;60;235;2697;1377;222;4,67;44,95;53,18;0;United Kingdom;Western Europe;"Cambridge University Press";"2011-2026";"Epidemiology (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +1375;21101248690;"Green Technologies and Sustainability";journal;"29497361";"KeAi Communications Co.";Yes;No;2,051;Q1;22;92;61;9291;1089;60;17,85;100,99;25,51;3;China;Asiatic Region;"KeAi Communications Co.";"2023-2026";"Ecology (Q1); Energy (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering; Environmental Science" +1376;21100373947;"Journal of Behavioral Addictions";journal;"20625871, 20635303";"Akademiai Kiado";Yes;No;2,051;Q1;95;117;257;8795;1867;256;5,96;75,17;45,97;2;Hungary;Eastern Europe;"Akademiai Kiado";"2012-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +1377;50089;"Journal of Hydrology";journal;"00221694";"Elsevier B.V.";No;No;2,051;Q1;304;1795;4545;125601;36354;4535;7,82;69,97;33,58;7;Netherlands;Western Europe;"Elsevier B.V.";"1949, 1963-2026";"Water Science and Technology (Q1)";"Environmental Science" +1378;23167;"Language Teaching Research";journal;"13621688, 14770954";"SAGE Publications Ltd";No;No;2,050;Q1;99;311;404;20955;3075;402;7,18;67,38;49,43;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1997-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +1379;110031;"Resources Policy";journal;"03014207";"Elsevier Ltd";No;No;2,050;Q1;154;260;2647;19926;24946;2644;9,31;76,64;29,15;10;United Kingdom;Western Europe;"Elsevier Ltd";"1974-2026";"Economics and Econometrics (Q1); Law (Q1); Management, Monitoring, Policy and Law (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +1380;11300153721;"Science Signaling";journal;"19450877, 19379145";"American Association for the Advancement of Science";No;No;2,050;Q1;193;134;465;7124;2153;452;4,36;53,16;44,07;0;United States;Northern America;"American Association for the Advancement of Science";"2000, 2008-2026";"Biochemistry (Q1); Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1381;14875;"International Journal of Behavioral Nutrition and Physical Activity";journal;"14795868";"BioMed Central Ltd";Yes;No;2,049;Q1;172;159;437;9352;2991;432;6,77;58,82;60,59;6;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)";"Health Professions; Medicine; Nursing" +1382;16352;"International Journal of Rock Mechanics and Mining Sciences";journal;"13651609";"Elsevier B.V.";No;No;2,048;Q1;227;277;719;16232;6529;719;8,79;58,60;23,11;0;United Kingdom;Western Europe;"Elsevier B.V.";"1969-1971, 1973-1974, 1977-1979, 1981, 1984-1985, 1987-1988, 1993, 1996-2026";"Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences" +1383;26418;"SIAM Journal on Mathematical Analysis";journal;"00361410, 10957154";"Society for Industrial and Applied Mathematics Publications";No;No;2,048;Q1;109;200;647;7661;1538;647;2,08;38,31;21,65;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"1976, 1989, 1993, 1996-2026";"Analysis (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1)";"Mathematics" +1384;12067;"Agricultural and Forest Meteorology";journal;"01681923";"Elsevier B.V.";No;No;2,047;Q1;217;451;1193;35276;8632;1188;6,90;78,22;32,12;7;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Agronomy and Crop Science (Q1); Atmospheric Science (Q1); Forestry (Q1); Global and Planetary Change (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +1385;18429;"Chest";journal;"00123692, 19313543";"Elsevier Inc.";No;No;2,047;Q1;348;587;1768;12915;6678;1061;3,77;22,00;40,73;2;United States;Northern America;"Elsevier Inc.";"1970-2026";"Cardiology and Cardiovascular Medicine (Q1); Critical Care and Intensive Care Medicine (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine" +1386;9500153997;"Polymer Reviews";journal;"15583724, 15583716";"Taylor and Francis Ltd.";No;No;2,047;Q1;125;30;81;5319;1195;81;13,18;177,30;38,71;0;United States;Northern America;"Taylor and Francis Ltd.";"2006-2026";"Biomedical Engineering (Q1); Chemistry (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Polymers and Plastics (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Chemistry; Energy; Engineering; Materials Science" +1387;21100431158;"Environmental Evidence";journal;"20472382";"BioMed Central Ltd";Yes;No;2,045;Q1;54;25;97;1076;707;92;7,22;43,04;48,06;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2011-2026";"Ecology (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1)";"Environmental Science" +1388;17952;"Neurology";journal;"00283878, 1526632X";"Lippincott Williams and Wilkins";Yes;No;2,045;Q1;435;984;3417;18859;13741;2454;3,79;19,17;42,58;0;United States;Northern America;"Lippincott Williams and Wilkins";"1951-2026";"Neurology (clinical) (Q1)";"Medicine" +1389;25349;"Science of the Total Environment";journal;"00489697, 18791026";"Elsevier B.V.";No;No;2,043;Q1;439;3129;26834;238830;256445;26573;9,01;76,33;40,82;44;Netherlands;Western Europe;"Elsevier B.V.";"1972-2026";"Environmental Chemistry (Q1); Environmental Engineering (Q1); Pollution (Q1); Waste Management and Disposal (Q1)";"Environmental Science" +1390;14274;"Structure";journal;"09692126, 18784186";"Cell Press";No;No;2,043;Q1;210;213;574;11773;2152;474;3,45;55,27;37,24;0;United States;Northern America;"Cell Press";"1993-2026";"Molecular Biology (Q1); Structural Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1391;21527;"Environmental Reviews";journal;"12086053, 11818700";"National Research Council of Canada";No;No;2,042;Q1;99;71;106;9233;826;103;7,63;130,04;37,50;0;Canada;Northern America;"National Research Council of Canada";"1993-2026";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +1392;38597;"FEBS Journal";journal;"1742464X, 17424658";"John Wiley and Sons Inc";No;No;2,042;Q1;248;455;1156;34649;6957;1067;5,18;76,15;46,14;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2005-2026";"Biochemistry (Q1); Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1393;24928;"Service Industries Journal";journal;"17439507, 02642069";"Taylor and Francis Ltd.";No;No;2,041;Q1;98;70;149;6969;1625;146;10,88;99,56;36,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2026";"Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1394;14642;"Tunnelling and Underground Space Technology";journal;"08867798";"Elsevier Ltd";No;No;2,041;Q1;170;757;1616;38997;15218;1609;9,24;51,52;26,45;1;United Kingdom;Western Europe;"Elsevier Ltd";"1986-2026";"Building and Construction (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Engineering" +1395;12058;"Assessment";journal;"10731911, 15523489";"SAGE Publications Inc.";No;No;2,040;Q1;116;156;412;10491;2293;412;5,13;67,25;50,95;1;United States;Northern America;"SAGE Publications Inc.";"1994-2026";"Applied Psychology (Q1); Clinical Psychology (Q1)";"Psychology" +1396;21100823470;"Journal of Materiomics";journal;"23528478, 23528486";"Chinese Ceramic Society";Yes;No;2,040;Q1;80;199;395;11306;4163;389;11,63;56,81;32,45;0;China;Asiatic Region;"Chinese Ceramic Society";"2015-2026";"Electronic, Optical and Magnetic Materials (Q1); Metals and Alloys (Q1); Surfaces, Coatings and Films (Q1)";"Materials Science" +1397;21101047378;"Energy and AI";journal;"26665468";"Elsevier B.V.";Yes;No;2,038;Q1;55;202;307;10928;3909;303;10,82;54,10;21,17;1;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Artificial Intelligence (Q1); Energy (miscellaneous) (Q1); Engineering (miscellaneous) (Q1)";"Computer Science; Energy; Engineering" +1398;28978;"Journal of Economic Growth";journal;"15737020, 13814338";"Springer New York";No;No;2,038;Q1;107;20;42;1786;175;42;4,52;89,30;28,26;3;United States;Northern America;"Springer New York";"1996-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +1399;21100248838;"Stem Cell Reports";journal;"22136711";"Cell Press";Yes;No;2,038;Q1;127;185;506;9462;2401;484;4,70;51,15;42,88;1;United States;Northern America;"Cell Press";"2013-2026";"Biochemistry (Q1); Cell Biology (Q1); Developmental Biology (Q1); Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +1400;21101195785;"Battery Energy";journal;"27681696";"John Wiley and Sons Inc";Yes;No;2,037;Q1;31;79;145;5819;1522;144;11,14;73,66;30,86;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Energy (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +1401;21101020091;"JBI Evidence Synthesis";journal;"26898381";"Lippincott Williams and Wilkins";No;No;2,037;Q1;56;171;524;6215;3120;480;3,72;36,35;63,95;0;United States;Northern America;"Lippincott Williams and Wilkins";"2020-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +1402;17574;"Acta Psychiatrica Scandinavica";journal;"16000447, 0001690X";"John Wiley and Sons Inc";No;No;2,035;Q1;182;130;328;6163;1668;260;4,10;47,41;46,80;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1926-1949, 1953-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +1403;29472;"Hydrology and Earth System Sciences";journal;"10275606, 16077938";"Copernicus Publications";Yes;No;2,035;Q1;194;333;824;25631;6063;824;6,64;76,97;28,28;5;Germany;Western Europe;"Copernicus Publications";"1997-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Water Science and Technology (Q1)";"Earth and Planetary Sciences; Environmental Science" +1404;24421;"Journal of Metamorphic Geology";journal;"15251314, 02634929";"John Wiley and Sons Inc";No;No;2,035;Q1;135;36;148;4058;614;144;3,16;112,72;25,00;2;United States;Northern America;"John Wiley and Sons Inc";"1983-2026";"Geochemistry and Petrology (Q1); Geology (Q1)";"Earth and Planetary Sciences" +1405;20228;"Emerging Infectious Diseases";journal;"10806040, 10806059";"Centers for Disease Control and Prevention (CDC)";Yes;Yes;2,034;Q1;287;458;1529;9059;7327;1464;5,16;19,78;48,66;23;United States;Northern America;"Centers for Disease Control and Prevention (CDC)";"1995-2026";"Epidemiology (Q1); Infectious Diseases (Q1); Microbiology (medical) (Q1)";"Medicine" +1406;14364;"British Journal of Psychiatry";journal;"00071250, 14721465";"Cambridge University Press";No;No;2,033;Q1;276;307;453;8835;1698;278;3,47;28,78;48,39;4;United Kingdom;Western Europe;"Cambridge University Press";"1963-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +1407;14360;"Rhinology";journal;"03000729, 19968604";"International Rhinologic Society";No;No;2,032;Q1;79;103;228;3274;1044;180;5,32;31,79;38,13;0;Netherlands;Western Europe;"International Rhinologic Society";"1973-2026";"Medicine (miscellaneous) (Q1); Otorhinolaryngology (Q1)";"Medicine" +1408;20894;"Transportation Research Part D: Transport and Environment";journal;"13619209";"Elsevier Ltd";No;No;2,032;Q1;167;458;1100;30164;10553;1078;9,04;65,86;34,47;6;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Civil and Structural Engineering (Q1); Environmental Science (miscellaneous) (Q1); Transportation (Q1)";"Engineering; Environmental Science; Social Sciences" +1409;21101034454;"Geography and Sustainability";journal;"20967438, 26666839";"Beijing Normal University Press";Yes;No;2,031;Q1;44;131;137;9849;1398;129;9,89;75,18;40,07;3;China;Asiatic Region;"Beijing Normal University Press";"2020-2026";"Earth-Surface Processes (Q1); Ecology (Q1); Geography, Planning and Development (Q1); Nature and Landscape Conservation (Q1)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +1410;83444;"Proceedings of the Custom Integrated Circuits Conference";conference and proceedings;"08865930";"Institute of Electrical and Electronics Engineers Inc.";No;No;2,031;-;62;155;368;2282;1052;362;2,85;14,72;24,46;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1982-1983, 1985-2013, 2015, 2017, 2019-2025";"Electrical and Electronic Engineering";"Engineering" +1411;25523;"Diabetes/Metabolism Research and Reviews";journal;"15207552, 15207560";"John Wiley and Sons Ltd";No;No;2,030;Q1;146;90;352;5462;2746;329;8,03;60,69;49,92;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1999-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1412;21100246515;"Journal of the American Heart Association";journal;"20479980";"American Heart Association Inc.";Yes;No;2,030;Q1;167;1363;3275;57766;17721;2910;5,25;42,38;37,53;0;United States;Northern America;"American Heart Association Inc.";"2012-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +1413;4700152304;"European Journal of Work and Organizational Psychology";journal;"1359432X, 14640643";"Routledge";No;No;2,029;Q1;107;73;182;6234;1300;182;6,32;85,40;53,15;0;United Kingdom;Western Europe;"Routledge";"2005-2026";"Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Psychology" +1414;16667;"Journal of Cerebral Blood Flow and Metabolism";journal;"0271678X, 15597016";"SAGE Publications Inc.";No;No;2,029;Q1;229;210;526;12815;2990;495;5,52;61,02;37,91;0;United States;Northern America;"SAGE Publications Inc.";"1981-2026";"Cardiology and Cardiovascular Medicine (Q1); Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +1415;19457;"Shiyou Kantan Yu Kaifa/Petroleum Exploration and Development";journal;"10000747";"";Yes;No;2,027;Q1;85;57;217;2454;1075;217;5,53;43,05;28,09;0;China;Asiatic Region;"";"1998, 2001-2023, 2025";"Energy Engineering and Power Technology (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Energy" +1416;30060;"World Development";journal;"0305750X, 18735991";"Elsevier B.V.";No;No;2,027;Q1;249;315;810;24526;5576;806;6,27;77,86;40,02;45;United Kingdom;Western Europe;"Elsevier B.V.";"1973-2026";"Development (Q1); Economics and Econometrics (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Social Sciences" +1417;21100933954;"Big Data and Society";journal;"20539517";"SAGE Publications Ltd";Yes;No;2,026;Q1;89;135;316;8795;2612;268;7,81;65,15;44,85;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"2014-2026";"Communication (Q1); Computer Science Applications (Q1); Information Systems (Q1); Information Systems and Management (Q1); Library and Information Sciences (Q1)";"Computer Science; Decision Sciences; Social Sciences" +1418;4700152635;"Acta Geotechnica";journal;"18611125, 18611133";"Springer Verlag";No;No;2,025;Q1;101;454;1140;26097;8369;1134;7,00;57,48;25,23;0;Germany;Western Europe;"Springer Verlag";"2006-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences" +1419;18658;"Production Planning and Control";journal;"09537287, 13665871";"Taylor and Francis Ltd.";No;No;2,025;Q1;121;159;336;16420;4245;328;12,00;103,27;27,49;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2026";"Computer Science Applications (Q1); Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering" +1420;13065;"Prostate Cancer and Prostatic Diseases";journal;"13657852, 14765608";"Springer Nature";No;No;2,025;Q1;85;224;378;7207;1851;303;5,18;32,17;27,64;0;United Kingdom;Western Europe;"Springer Nature";"1997-2026";"Cancer Research (Q1); Oncology (Q1); Urology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1421;23916;"Environmental Pollution";journal;"02697491, 18736424";"Elsevier Ltd";No;No;2,022;Q1;346;1804;6301;124498;54060;6272;8,02;69,01;43,68;15;United Kingdom;Western Europe;"Elsevier Ltd";"1973, 1980, 1987-2026";"Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Pollution (Q1); Toxicology (Q1)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +1422;18050;"International Journal of Robotics Research";journal;"02783649, 17413176";"SAGE Publications Inc.";No;No;2,022;Q1;209;159;208;11889;1775;184;7,45;74,77;23,91;1;United States;Northern America;"SAGE Publications Inc.";"1982-2026";"Applied Mathematics (Q1); Artificial Intelligence (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1); Modeling and Simulation (Q1); Software (Q1)";"Computer Science; Engineering; Mathematics" +1423;23640;"Advanced Engineering Informatics";journal;"14740346";"Elsevier Ltd";No;No;2,021;Q1;136;720;1349;43740;16733;1338;12,18;60,75;28,99;1;United Kingdom;Western Europe;"Elsevier Ltd";"2002-2026";"Artificial Intelligence (Q1); Information Systems (Q1)";"Computer Science" +1424;26082;"European Journal of Endocrinology";journal;"1479683X, 08044643";"Oxford University Press";No;No;2,020;Q1;185;268;537;12142;3269;502;6,30;45,31;51,13;0;United Kingdom;Western Europe;"Oxford University Press";"1960, 1979, 1994-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1425;19167;"Journal of Cleaner Production";journal;"09596526, 18791786";"Elsevier Ltd";Yes;No;2,019;Q1;397;2767;13709;190047;167455;13663;11,78;68,68;35,83;10;United Kingdom;Western Europe;"Elsevier Ltd";"1993-2026";"Environmental Science (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Energy; Engineering; Environmental Science" +1426;21101117815;"NAR Cancer";journal;"26328674";"Oxford University Press";Yes;No;2,019;Q1;30;57;155;4552;631;153;4,12;79,86;47,54;0;United Kingdom;Western Europe;"Oxford University Press";"2019-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1427;21101041957;"Journal of Translational Internal Medicine";journal;"2450131X, 22244018";"Walter de Gruyter GmbH";No;No;2,018;Q1;31;62;166;3207;1323;139;9,16;51,73;37,56;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2018-2026";"Internal Medicine (Q1)";"Medicine" +1428;20749;"European Economic Review";journal;"00142921";"Elsevier B.V.";No;No;2,017;Q1;161;188;552;10316;1763;546;2,72;54,87;24,53;31;Netherlands;Western Europe;"Elsevier B.V.";"1969-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +1429;12711;"Multivariate Behavioral Research";journal;"00273171, 15327906";"Routledge";No;No;2,017;Q1;110;88;214;4827;852;212;4,16;54,85;36,71;1;United States;Northern America;"Routledge";"1966-2026";"Arts and Humanities (miscellaneous) (Q1); Experimental and Cognitive Psychology (Q1); Medicine (miscellaneous) (Q1); Statistics and Probability (Q1)";"Arts and Humanities; Mathematics; Medicine; Psychology" +1430;23844;"Journal of Combinatorial Theory. Series B";journal;"10960902, 00958956";"Academic Press Inc.";No;No;2,016;Q1;75;58;253;1575;421;252;1,58;27,16;16,03;0;United States;Northern America;"Academic Press Inc.";"1971-2026";"Computational Theory and Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +1431;21100835891;"Journal of Experimental Political Science";journal;"20522630, 20522649";"Cambridge University Press";Yes;No;2,016;Q1;30;46;102;1649;467;100;3,34;35,85;30,83;0;United Kingdom;Western Europe;"Cambridge University Press";"2014-2025";"Sociology and Political Science (Q1)";"Social Sciences" +1432;144922;"International Journal of Physical Distribution and Logistics Management";journal;"09600035";"Emerald Group Publishing Ltd.";No;No;2,015;Q1;151;60;147;5313;1512;135;9,31;88,55;36,48;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1990-2026";"Management of Technology and Innovation (Q1); Transportation (Q1)";"Business, Management and Accounting; Social Sciences" +1433;21100859815;"Sports Medicine - Open";journal;"21989761, 21991170";"Springer Science and Business Media Deutschland GmbH";Yes;No;2,015;Q1;64;160;398;10670;2872;384;6,23;66,69;37,51;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2015-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)";"Health Professions; Medicine" +1434;21100855908;"European Heart Journal - Cardiovascular Pharmacotherapy";journal;"20556837, 20556845";"Oxford University Press";No;No;2,014;Q1;50;101;308;2773;1311;233;4,32;27,46;21,79;1;United Kingdom;Western Europe;"Oxford University Press";"2015-2026";"Cardiology and Cardiovascular Medicine (Q1); Pharmacology (medical) (Q1)";"Medicine" +1435;27423;"Advances in Geophysics";book series;"00652687";"Academic Press Inc.";No;No;2,013;Q1;39;6;9;508;34;5;3,25;84,67;0,00;0;United States;Northern America;"Academic Press Inc.";"1952, 1955-1956, 1958-1959, 1961-1962, 1964-1965, 1967, 1969-1971, 1973-1976, 1978-1986, 1988-1991, 1993-1994, 1996, 1998-1999, 2001-2004, 2007-2010, 2012-2025";"Geophysics (Q1)";"Earth and Planetary Sciences" +1436;40981;"Biology and Fertility of Soils";journal;"14320789, 01782762";"Springer Science and Business Media Deutschland GmbH";No;No;2,013;Q1;161;107;228;8303;1692;222;7,34;77,60;40,49;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1985-2026";"Agronomy and Crop Science (Q1); Microbiology (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Immunology and Microbiology" +1437;144651;"Journal of Technology Transfer";journal;"08929912, 15737047";"Springer";No;No;2,013;Q1;115;188;251;17060;2152;251;8,37;90,74;37,59;7;United States;Northern America;"Springer";"1977-2026";"Accounting (Q1); Business and International Management (Q1); Engineering (miscellaneous) (Q1)";"Business, Management and Accounting; Engineering" +1438;25801;"Carbohydrate Polymers";journal;"18791344, 01448617";"Elsevier Ltd";No;No;2,012;Q1;315;1479;3278;98427;47058;3275;14,38;66,55;42,30;0;United Kingdom;Western Europe;"Elsevier Ltd";"1981-2026";"Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)";"Chemistry; Materials Science" +1439;145301;"Urban Forestry and Urban Greening";journal;"16108167, 16188667";"Elsevier GmbH";No;No;2,012;Q1;148;476;876;35671;7655;869;8,68;74,94;44,43;1;Germany;Western Europe;"Elsevier GmbH";"2002-2026";"Ecology (Q1); Forestry (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +1440;19700200838;"Chemical Science";journal;"20416520, 20416539";"Royal Society of Chemistry";Yes;Yes;2,011;Q1;255;1867;4801;125156;36706;4790;7,49;67,04;32,41;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2010-2026";"Chemistry (miscellaneous) (Q1)";"Chemistry" +1441;24408;"Clinical Oral Implants Research";journal;"16000501, 09057161";"Blackwell Munksgaard";No;No;2,011;Q1;200;134;403;6022;2711;399;6,38;44,94;37,86;1;Denmark;Western Europe;"Blackwell Munksgaard";"1990-2026";"Oral Surgery (Q1)";"Dentistry" +1442;35048;"Food Policy";journal;"03069192";"Elsevier B.V.";No;No;2,011;Q1;154;157;373;11184;3055;371;7,08;71,24;43,24;22;United Kingdom;Western Europe;"Elsevier B.V.";"1975-2026";"Development (Q1); Economics and Econometrics (Q1); Food Science (Q1); Management, Monitoring, Policy and Law (Q1); Sociology and Political Science (Q1)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +1443;38003;"Soil and Tillage Research";journal;"01671987";"Elsevier B.V.";No;No;2,008;Q1;197;390;844;26348;7905;841;9,11;67,56;37,13;6;Netherlands;Western Europe;"Elsevier B.V.";"1980, 1982-2026";"Agronomy and Crop Science (Q1); Earth-Surface Processes (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +1444;21100884993;"Microsystems and Nanoengineering";journal;"20557434";"Nature Publishing Group";Yes;No;2,007;Q1;83;253;491;15513;5404;488;10,75;61,32;29,24;0;United Kingdom;Western Europe;"Nature Publishing Group";"2015-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science; Physics and Astronomy" +1445;145746;"Agronomy for Sustainable Development";journal;"17730155, 17740746";"Springer-Verlag Italia s.r.l.";No;No;2,004;Q1;169;75;259;6006;2444;259;8,42;80,08;38,28;5;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"2005-2026";"Agronomy and Crop Science (Q1); Environmental Engineering (Q1)";"Agricultural and Biological Sciences; Environmental Science" +1446;17822;"Conservation Biology";journal;"15231739, 08888892";"Wiley-Blackwell Publishing Ltd";No;No;2,004;Q1;267;248;490;19736;2970;461;5,58;79,58;39,59;18;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1987-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Medicine (miscellaneous) (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +1447;21100932746;"CRISPR Journal";journal;"25731599, 25731602";"Mary Ann Liebert Inc.";No;No;2,003;Q1;28;58;180;1805;627;156;2,63;31,12;37,76;0;United States;Northern America;"Mary Ann Liebert Inc.";"2019-2026";"Biotechnology (Q1); Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +1448;23894;"Journal of Functional Analysis";journal;"10960783, 00221236";"Academic Press Inc.";No;No;2,003;Q1;125;340;862;12050;1622;862;1,64;35,44;20,16;0;United States;Northern America;"Academic Press Inc.";"1967-2026";"Analysis (Q1)";"Mathematics" +1449;19700188403;"mBio";journal;"21612129, 21507511";"American Society for Microbiology";Yes;No;2,002;Q1;193;839;2228;53504;11779;2203;5,10;63,77;43,15;6;United States;Northern America;"American Society for Microbiology";"2010-2026";"Microbiology (Q1); Virology (Q1)";"Immunology and Microbiology" +1450;21101017600;"HemaSphere";journal;"25729241";"John Wiley and Sons Inc";Yes;No;2,001;Q1;42;206;454;7306;1584;266;3,52;35,47;47,45;3;United States;Northern America;"John Wiley and Sons Inc";"2017-2026";"Hematology (Q1)";"Medicine" +1451;21100773739;"Materials Research Letters";journal;"21663831";"Taylor and Francis Ltd.";Yes;No;2,000;Q1;88;143;281;6269;2432;280;7,88;43,84;27,72;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Materials Science (miscellaneous) (Q1); Metals and Alloys (Q1)";"Materials Science" +1452;17557;"Journal of Money, Credit and Banking";journal;"15384616, 00222879";"Wiley-Blackwell";No;No;1,999;Q1;133;121;257;5781;615;256;2,36;47,78;24,73;25;United States;Northern America;"Wiley-Blackwell";"1996-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +1453;19890;"Knee Surgery, Sports Traumatology, Arthroscopy";journal;"09422056, 14337347";"John Wiley and Sons Inc";No;No;1,998;Q1;167;605;1474;23891;8531;1394;5,89;39,49;20,53;0;Germany;Western Europe;"John Wiley and Sons Inc";"1993-2026";"Orthopedics and Sports Medicine (Q1); Sports Science (Q1); Surgery (Q1)";"Health Professions; Medicine" +1454;19532;"Accident Analysis and Prevention";journal;"18792057, 00014575";"Elsevier Ltd";No;No;1,997;Q1;212;322;895;20307;7863;890;8,31;63,07;30,15;1;United Kingdom;Western Europe;"Elsevier Ltd";"1969-2026";"Human Factors and Ergonomics (Q1); Law (Q1); Public Health, Environmental and Occupational Health (Q1); Safety, Risk, Reliability and Quality (Q1); Transportation (Q1)";"Engineering; Medicine; Social Sciences" +1455;20969;"Journal of Machine Learning Research";journal;"15337928, 15324435";"Microtome Publishing";Yes;No;1,997;Q1;302;307;1168;19817;10368;1168;8,35;64,55;21,71;0;United States;Northern America;"Microtome Publishing";"2001-2025";"Artificial Intelligence (Q1); Control and Systems Engineering (Q1); Software (Q1); Statistics and Probability (Q1)";"Computer Science; Engineering; Mathematics" +1456;16245;"Journal of Affective Disorders";journal;"01650327, 15732517";"Elsevier B.V.";No;No;1,996;Q1;260;1786;4341;99821;27021;4223;5,97;55,89;49,57;28;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +1457;21100924827;"Communications Biology";journal;"23993642";"Springer Nature";Yes;No;1,994;Q1;109;1784;4176;123920;24366;4128;5,59;69,46;42,08;2;United States;Northern America;"Springer Nature";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +1458;14989;"Current Neurology and Neuroscience Reports";journal;"15284042, 15346293";"Springer";No;No;1,994;Q1;105;81;215;7290;1700;215;8,06;90,00;49,10;0;United States;Northern America;"Springer";"2001-2026";"Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)";"Medicine; Neuroscience" +1459;22009;"Corporate Governance: An International Review";journal;"09648410, 14678683";"Emerald Group Publishing Ltd.";No;No;1,992;Q1;120;71;129;7037;1073;121;8,85;99,11;41,58;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1993-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1460;19700187601;"Developmental Cognitive Neuroscience";journal;"18789293, 18789307";"Elsevier Ltd";Yes;No;1,991;Q1;104;147;378;12208;2135;374;4,78;83,05;63,44;0;United Kingdom;Western Europe;"Elsevier Ltd";"2011-2026";"Cognitive Neuroscience (Q1)";"Neuroscience" +1461;6000195381;"Global Business and Organizational Excellence";journal;"19322054, 19322062";"John Wiley and Sons Inc";No;No;1,991;Q1;37;37;115;3891;1306;104;12,15;105,16;45,98;0;United States;Northern America;"John Wiley and Sons Inc";"2006-2026";"Business and International Management (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting" +1462;21101165609;"Crop and Environment";journal;"2773126X";"Elsevier B.V.";Yes;No;1,990;Q1;20;25;82;1759;808;77;9,15;70,36;33,71;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q1)";"Agricultural and Biological Sciences" +1463;20853;"Studies in Higher Education";journal;"03075079, 1470174X";"Routledge";No;No;1,990;Q1;148;303;479;18891;3982;470;8,09;62,35;50,74;11;United Kingdom;Western Europe;"Routledge";"1976-2026";"Education (Q1)";"Social Sciences" +1464;16211;"IEEE Transactions on Multimedia";journal;"15209210, 19410077";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,989;Q1;173;770;1975;46392;20693;1972;10,39;60,25;30,90;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1999-2026";"Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Media Technology (Q1); Signal Processing (Q1)";"Computer Science; Engineering" +1465;22890;"Political Studies";journal;"00323217, 14679248";"SAGE Publications Ltd";No;No;1,989;Q1;117;140;199;10570;1132;197;5,73;75,50;30,42;14;United Kingdom;Western Europe;"SAGE Publications Ltd";"1953-2026";"Sociology and Political Science (Q1)";"Social Sciences" +1466;51748;"BMJ";journal;"09598146, 17561833";"BMJ Publishing Group";Yes;No;1,988;Q1;543;2579;7978;25939;22532;3636;2,95;10,06;45,68;64;United Kingdom;Western Europe;"BMJ Publishing Group";"1857-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +1467;21101270281;"Cambridge Prisms: Coastal Futures";journal;"27547205";"Cambridge University Press";Yes;No;1,988;Q1;11;27;48;2135;405;48;8,44;79,07;50,60;0;United Kingdom;Western Europe;"Cambridge University Press";"2023-2026";"Ecology (Q1); Environmental Science (miscellaneous) (Q1); Law (Q1)";"Environmental Science; Social Sciences" +1468;21101068168;"Perspectives on Public Management and Governance";journal;"23984910, 23984929";"Oxford University Press";No;No;1,988;Q1;31;20;58;1653;308;56;4,04;82,65;47,92;0;United States;Northern America;"Oxford University Press";"2018-2025";"Public Administration (Q1)";"Social Sciences" +1469;19700175257;"Algebra and Number Theory";journal;"19370652";"Mathematical Sciences Publishers";No;No;1,987;Q1;36;65;190;2149;239;190;1,28;33,06;27,34;0;United States;Northern America;"Mathematical Sciences Publishers";"2007-2026";"Algebra and Number Theory (Q1); Analysis (Q1)";"Mathematics" +1470;19816;"Biology of Sport";journal;"0860021X, 20831862";"Institute of Sport";Yes;No;1,987;Q1;57;117;339;5310;2332;339;7,49;45,38;19,83;0;Poland;Eastern Europe;"Institute of Sport";"1996-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Physiology (medical) (Q1); Sports Science (Q1)";"Health Professions; Medicine" +1471;12000154405;"Hepatology International";journal;"19360533, 19360541";"Springer";No;No;1,987;Q1;77;228;453;5702;2650;370;6,23;25,01;32,29;0;India;Asiatic Region;"Springer";"2007-2026";"Hepatology (Q1)";"Medicine" +1472;21101272015;"Innovation Materials";journal;"29598737";"Innovation Press";Yes;No;1,987;Q1;16;65;99;3586;650;54;6,57;55,17;34,87;0;China;Asiatic Region;"Innovation Press";"2023-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Surfaces and Interfaces (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +1473;18471;"Cell Proliferation";journal;"09607722, 13652184";"Wiley-Blackwell Publishing Ltd";Yes;No;1,985;Q1;110;195;506;14321;3867;491;7,61;73,44;43,31;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1968-1982, 1984-2026";"Cell Biology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1474;21100981740;"JCO Oncology Practice";journal;"26881527, 26881535";"Lippincott Williams and Wilkins";No;No;1,985;Q1;91;411;860;14256;3116;662;3,55;34,69;52,93;0;United States;Northern America;"Lippincott Williams and Wilkins";"2020-2026";"Health Policy (Q1); Oncology (Q1); Oncology (nursing) (Q1)";"Medicine; Nursing" +1475;21101092965;"Neuronal Signaling";journal;"20596553";"Portland Press Ltd";Yes;No;1,985;Q1;24;0;24;0;168;22;10,83;0,00;0,00;0;United Kingdom;Western Europe;"Portland Press Ltd";"2017-2024";"Cellular and Molecular Neuroscience (Q1)";"Neuroscience" +1476;18034;"World Bank Research Observer";journal;"15646971, 02573032";"Oxford University Press";No;No;1,985;Q1;87;9;28;1502;259;28;6,30;166,89;27,27;8;United Kingdom;Western Europe;"Oxford University Press";"1986-2026";"Development (Q1); Economics and Econometrics (Q1)";"Economics, Econometrics and Finance; Social Sciences" +1477;15423;"Bioresource Technology";journal;"09608524, 18732976";"Elsevier Ltd";No;No;1,983;Q1;404;1343;4875;73251;52749;4860;9,73;54,54;38,84;1;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Bioengineering (Q1); Environmental Engineering (Q1); Medicine (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1); Waste Management and Disposal (Q1)";"Chemical Engineering; Energy; Environmental Science; Medicine" +1478;15579;"Current Opinion in Biotechnology";journal;"18790429, 09581669";"Elsevier Ltd";No;No;1,983;Q1;261;109;508;6169;4468;486;7,84;56,60;38,26;1;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2026";"Bioengineering (Q1); Biomedical Engineering (Q1); Biotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering" +1479;17500155020;"Nano Research";journal;"19980124, 19980000";"Tsinghua University Press";No;No;1,980;Q1;186;1019;3421;66909;30393;3406;9,09;65,66;38,77;0;China;Asiatic Region;"Tsinghua University Press";"2008-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)";"Engineering; Materials Science; Physics and Astronomy" +1480;27063;"American Journal of Preventive Medicine";journal;"07493797, 18732607";"Elsevier Inc.";No;No;1,979;Q1;269;267;860;10149;4096;816;4,32;38,01;59,97;8;United States;Northern America;"Elsevier Inc.";"1985-2026";"Epidemiology (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +1481;21101108181;"WIREs Mechanisms of Disease";journal;"26929368";"John Wiley and Sons Inc";No;No;1,979;Q1;93;7;100;1088;754;100;6,61;155,43;36,36;0;United States;Northern America;"John Wiley and Sons Inc";"2021-2026";"Cell Biology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1482;23773;"Wuli Huaxue Xuebao/ Acta Physico - Chimica Sinica";journal;"10006818";"Elsevier B.V.";No;No;1,979;Q1;72;126;357;9757;3781;335;13,16;77,44;38,74;0;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Physical and Theoretical Chemistry (Q1)";"Chemistry" +1483;29309;"Critical Reviews in Oncology/Hematology";journal;"10408428, 18790461";"Elsevier Ireland Ltd";No;No;1,977;Q1;160;354;644;40363;4409;639;6,71;114,02;45,97;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1983-2026";"Geriatrics and Gerontology (Q1); Hematology (Q1); Oncology (Q1)";"Medicine" +1484;25040;"INFORMS Journal on Computing";journal;"10919856, 15265528";"INFORMS Inst.for Operations Res.and the Management Sciences";No;No;1,974;Q1;99;90;370;4184;1329;353;3,21;46,49;26,48;0;United States;Northern America;"INFORMS Inst.for Operations Res.and the Management Sciences";"1996-2001, 2003-2026";"Computer Science Applications (Q1); Information Systems (Q1); Management Science and Operations Research (Q1); Software (Q1)";"Computer Science; Decision Sciences" +1485;16714;"Journal of Headache and Pain";journal;"11292377, 11292369";"BioMed Central Ltd";Yes;No;1,974;Q1;107;286;537;17879;4355;527;8,10;62,51;48,57;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1)";"Medicine" +1486;21100869857;"Stroke and Vascular Neurology";journal;"20598696, 20598688";"BMJ Publishing Group";Yes;No;1,974;Q1;53;150;215;4898;1312;202;5,61;32,65;38,40;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2016-2026";"Cardiology and Cardiovascular Medicine (Q1); Neurology (clinical) (Q1)";"Medicine" +1487;12074;"Bulletin of the American Meteorological Society";journal;"15200477, 00030007";"American Meteorological Society";No;No;1,972;Q1;255;174;682;10119;3430;654;4,66;58,16;32,59;0;United States;Northern America;"American Meteorological Society";"1942, 1956, 1958-1969, 1971-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +1488;18002;"Functional Ecology";journal;"02698463, 13652435";"Wiley-Blackwell Publishing Ltd";No;No;1,972;Q1;201;293;691;24133;4290;676;5,69;82,37;39,30;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1987-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +1489;22524;"Climate Policy";journal;"14693062, 17527457";"Taylor and Francis Ltd.";No;No;1,971;Q1;105;202;296;13803;2436;286;7,25;68,33;39,19;41;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Atmospheric Science (Q1); Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)";"Earth and Planetary Sciences; Environmental Science" +1490;21101092899;"Communications in Transportation Research";journal;"27724247";"Tsinghua University Press";Yes;No;1,970;Q1;36;70;92;4047;931;76;10,98;57,81;28,11;0;China;Asiatic Region;"Tsinghua University Press";"2021-2025";"Control and Systems Engineering (Q1); Decision Sciences (miscellaneous) (Q1); Transportation (Q1)";"Decision Sciences; Engineering; Social Sciences" +1491;21101210512;"Seed Biology";journal;"28345495";"Maximum Academic Press";No;No;1,970;Q1;11;22;52;1375;251;43;4,56;62,50;44,67;0;United States;Northern America;"Maximum Academic Press";"2022-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +1492;100147024;"Qualitative Research";journal;"17413109, 14687941";"SAGE Publications Ltd";No;No;1,968;Q1;109;120;229;7150;1452;225;5,46;59,58;71,17;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"History and Philosophy of Science (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +1493;21101213855;"Chinese Medical Journal Pulmonary and Critical Care Medicine";journal;"20971982, 27725588";"Elsevier Beijing Ltd";No;No;1,967;Q1;14;20;68;943;432;56;6,35;47,15;42,47;0;China;Asiatic Region;"Elsevier Beijing Ltd";"2023-2025";"Critical Care and Intensive Care Medicine (Q1); Infectious Diseases (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine" +1494;22267;"Human Mutation";journal;"10981004, 10597794";"John Wiley and Sons Inc";No;No;1,967;Q1;194;96;260;4288;1131;253;1,66;44,67;48,14;0;United States;Northern America;"John Wiley and Sons Inc";"1992-2026";"Genetics (Q1); Genetics (clinical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1495;26704;"Astronomical Journal";journal;"00046256, 15383881";"American Astronomical Society";Yes;No;1,966;Q1;285;633;1686;48992;7538;1686;4,51;77,40;27,78;0;United Kingdom;Western Europe;"American Astronomical Society";"1947, 1965, 1972-2025";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +1496;5800191435;"Economic Analysis and Policy";journal;"22042296";"Elsevier B.V.";No;No;1,966;Q1;86;9;815;628;8684;815;10,58;69,78;42,86;0;Netherlands;Western Europe;"Elsevier B.V.";"1970-2025";"Economics and Econometrics (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +1497;22322;"Organization";journal;"13505084, 14617323";"SAGE Publications Ltd";No;No;1,966;Q1;130;86;206;6169;1137;205;5,11;71,73;58,60;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1498;21100229161;"Frontiers in Immunology";journal;"16643224";"Frontiers Media SA";Yes;No;1,964;Q1;294;6480;20197;467454;137387;19337;6,38;72,14;47,00;3;Switzerland;Western Europe;"Frontiers Media SA";"2010-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +1499;21100791292;"Journal of Big Data";journal;"21961115";"Springer Nature";Yes;No;1,964;Q1;108;275;485;16890;7392;484;15,36;61,42;30,88;0;Switzerland;Western Europe;"Springer Nature";"2014-2026";"Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Information Systems and Management (Q1)";"Computer Science; Decision Sciences" +1500;19400157120;"Circulation: Cardiovascular Imaging";journal;"19420080, 19419651";"Lippincott Williams and Wilkins";No;No;1,963;Q1;146;175;479;3471;1651;320;3,56;19,83;38,97;0;United States;Northern America;"Lippincott Williams and Wilkins";"2008-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +1501;13930;"Journal of Planning Literature";journal;"08854122, 15526593";"SAGE Publications Inc.";No;No;1,963;Q1;77;45;62;3839;533;60;8,30;85,31;60,82;2;United States;Northern America;"SAGE Publications Inc.";"1985-2026";"Geography, Planning and Development (Q1)";"Social Sciences" +1502;19700201434;"BMJ Quality and Safety";journal;"20445423, 20445415";"BMJ Publishing Group";No;No;1,962;Q1;180;151;333;5919;1535;215;4,89;39,20;56,86;8;United Kingdom;Western Europe;"BMJ Publishing Group";"2011-2026";"Health Policy (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1503;14075;"Emotion";journal;"19311516, 15283542";"American Psychological Association";No;No;1,961;Q1;190;96;504;6896;2307;503;3,51;71,83;61,80;0;United States;Northern America;"American Psychological Association";"2001-2026";"Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Psychology" +1504;21101254823;"Agriculture Communications";journal;"29497981";"Elsevier B.V.";Yes;No;1,960;Q1;13;34;43;2304;503;42;11,70;67,76;40,96;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q1)";"Agricultural and Biological Sciences" +1505;12531;"Oncologist";journal;"1549490X, 10837159";"Oxford University Press";Yes;No;1,960;Q1;204;528;900;17532;4332;830;4,64;33,20;46,01;2;United Kingdom;Western Europe;"Oxford University Press";"1996-2026";"Cancer Research (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1506;19900191863;"Accounting in Europe";journal;"17449499, 17449480";"Routledge";No;No;1,957;Q1;36;29;47;2199;587;45;10,84;75,83;46,15;1;United Kingdom;Western Europe;"Routledge";"2006, 2008, 2010-2026";"Accounting (Q1); Business and International Management (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +1507;18163;"Computers and Geotechnics";journal;"0266352X, 18737633";"Elsevier B.V.";No;No;1,957;Q1;155;681;1944;39060;14480;1928;7,27;57,36;24,36;0;United Kingdom;Western Europe;"Elsevier B.V.";"1985-2026";"Computer Science Applications (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Computer Science; Earth and Planetary Sciences" +1508;16192;"Media, Culture and Society";journal;"01634437, 14603675";"SAGE Publications Ltd";No;No;1,957;Q1;100;115;313;5575;1743;310;4,93;48,48;57,89;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1979-2026";"Communication (Q1); Sociology and Political Science (Q1)";"Social Sciences" +1509;130132;"Information Technology and People";journal;"09593845";"Emerald Group Publishing Ltd.";No;No;1,956;Q1;92;160;357;14915;3786;353;10,69;93,22;37,53;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1990, 1992, 1994-2026";"Computer Science Applications (Q1); Information Systems (Q1); Library and Information Sciences (Q1)";"Computer Science; Social Sciences" +1510;27058;"American Journal of Epidemiology";journal;"00029262, 14766256";"Oxford University Press";No;No;1,955;Q1;306;457;691;19642;3150;630;4,30;42,98;55,95;15;United Kingdom;Western Europe;"Oxford University Press";"1921-2026";"Epidemiology (Q1)";"Medicine" +1511;14344;"Brain Pathology";journal;"10156305, 17503639";"Wiley-Blackwell";Yes;No;1,955;Q1;159;82;236;3566;1133;182;4,23;43,49;48,85;0;United States;Northern America;"Wiley-Blackwell";"1990-2026";"Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1)";"Medicine; Neuroscience" +1512;17472;"Journal of Banking and Finance";journal;"03784266";"Elsevier B.V.";No;No;1,954;Q1;225;169;639;10237;3601;630;5,11;60,57;28,19;12;Netherlands;Western Europe;"Elsevier B.V.";"1977-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +1513;16800154721;"Journal of Hospitality and Tourism Research";journal;"10963480, 15577554";"SAGE Publications Inc.";No;No;1,953;Q1;100;137;239;10414;2398;230;10,50;76,01;45,71;0;United States;Northern America;"SAGE Publications Inc.";"1976-1981, 1983-1985, 1987-2026";"Education (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Social Sciences" +1514;21101140439;"The Lancet Regional Health - Southeast Asia";journal;"27723682";"Elsevier Ltd";Yes;No;1,953;Q1;26;180;452;4935;1912;269;4,33;27,42;39,29;9;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Infectious Diseases (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +1515;23116;"Current Atherosclerosis Reports";journal;"15346242, 15233804";"Springer";No;No;1,952;Q1;99;93;284;7775;1964;284;6,88;83,60;42,46;0;United States;Northern America;"Springer";"1999-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +1516;5600155055;"Review of Public Personnel Administration";journal;"1552759X, 0734371X";"SAGE Publications Inc.";No;No;1,952;Q1;68;65;100;5128;703;98;6,99;78,89;51,24;0;United States;Northern America;"SAGE Publications Inc.";"1980-2026";"Organizational Behavior and Human Resource Management (Q1); Public Administration (Q1)";"Business, Management and Accounting; Social Sciences" +1517;28979;"Journal of Economic History";journal;"14716372, 00220507";"Cambridge University Press";No;No;1,951;Q1;80;32;99;2078;282;95;2,27;64,94;16,95;0;United Kingdom;Western Europe;"Cambridge University Press";"1941-2026";"Economics and Econometrics (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); History (Q1)";"Arts and Humanities; Economics, Econometrics and Finance" +1518;20184;"Allergology International";journal;"14401592, 13238930";"Japanese Society of Allergology";Yes;No;1,950;Q1;89;100;254;4795;1340;176;4,56;47,95;31,98;0;Japan;Asiatic Region;"Japanese Society of Allergology";"1996-2026";"Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1519;21100200831;"Annals of Intensive Care";journal;"21105820";"Societe de Reanimation de Langue Francaise";Yes;No;1,950;Q1;92;189;417;7933;2443;370;5,88;41,97;40,52;0;France;Western Europe;"Societe de Reanimation de Langue Francaise";"2011-2025";"Critical Care and Intensive Care Medicine (Q1)";"Medicine" +1520;21101271598;"Innovation Geoscience";journal;"29598753";"Innovation Press";Yes;No;1,950;Q1;16;69;98;2931;598;50;6,10;42,48;34,79;1;China;Asiatic Region;"Innovation Press";"2023-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Earth and Planetary Sciences; Environmental Science" +1521;19900193739;"Nucleic Acid Therapeutics";journal;"21593345, 21593337";"Mary Ann Liebert Inc.";No;No;1,950;Q1;85;32;109;1613;629;106;5,16;50,41;46,22;0;United States;Northern America;"Mary Ann Liebert Inc.";"2011-2025";"Biochemistry (Q1); Drug Discovery (Q1); Genetics (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +1522;27962;"Geophysical Research Letters";journal;"00948276, 19448007";"John Wiley and Sons Inc";Yes;No;1,949;Q1;354;2014;5078;113107;26553;5020;4,93;56,16;30,62;0;United States;Northern America;"John Wiley and Sons Inc";"1974-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +1523;22750;"Journal of Economic Geography";journal;"14682702, 14682710";"Oxford University Press";No;No;1,949;Q1;132;48;141;2795;624;140;4,17;58,23;28,18;10;United Kingdom;Western Europe;"Oxford University Press";"2001-2025";"Economics and Econometrics (Q1); Geography, Planning and Development (Q1)";"Economics, Econometrics and Finance; Social Sciences" +1524;21100232403;"Journal of Materials Chemistry A";journal;"20507496, 20507488";"Royal Society of Chemistry";No;No;1,949;Q1;341;2844;7288;193734;65548;7265;8,70;68,12;33,74;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2013-2026";"Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Chemistry; Energy; Materials Science" +1525;11000153733;"IEEE Transactions on Circuits and Systems I: Regular Papers";journal;"15498328";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,947;Q1;195;809;1451;30484;10171;1437;6,81;37,68;24,71;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2004-2026";"Electrical and Electronic Engineering (Q1); Hardware and Architecture (Q1)";"Computer Science; Engineering" +1526;19700187607;"Journalism Studies";journal;"1461670X, 14699699";"Routledge";No;No;1,945;Q1;94;139;329;8392;1690;317;4,61;60,37;53,14;0;United Kingdom;Western Europe;"Routledge";"2001-2026";"Communication (Q1)";"Social Sciences" +1527;21100829921;"Journal of Orthopaedic Translation";journal;"2214031X";"Elsevier (Singapore) Pte Ltd";Yes;No;1,944;Q1;66;168;297;13808;2918;272;8,85;82,19;34,26;0;Singapore;Asiatic Region;"Elsevier (Singapore) Pte Ltd";"2013-2026";"Orthopedics and Sports Medicine (Q1)";"Medicine" +1528;21100920679;"Global Sustainability";journal;"20594798";"Cambridge University Press";Yes;No;1,943;Q1;36;51;94;3774;739;93;8,07;74,00;45,81;2;United Kingdom;Western Europe;"Cambridge University Press";"2018-2026";"Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)";"Environmental Science" +1529;19160;"Best Practice and Research: Clinical Rheumatology";journal;"15216942, 15321770";"Bailliere Tindall Ltd";No;No;1,941;Q1;129;57;160;4321;1069;146;6,69;75,81;37,43;0;United Kingdom;Western Europe;"Bailliere Tindall Ltd";"1995, 1999-2026";"Medicine (miscellaneous) (Q1); Rheumatology (Q1)";"Medicine" +1530;13774;"Clinical and Experimental Ophthalmology";journal;"14429071, 14426404";"Wiley-Blackwell Publishing Ltd";No;No;1,941;Q1;99;155;350;4972;1336;191;3,11;32,08;40,28;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1979-1984, 1999-2026";"Medicine (miscellaneous) (Q1); Ophthalmology (Q1)";"Medicine" +1531;21101196047;"Soil and Environmental Health";journal;"29499194";"Elsevier B.V.";Yes;No;1,941;Q1;15;37;59;2575;493;55;8,36;69,59;38,97;1;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Environmental Science (miscellaneous) (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +1532;21101089658;"Cleaner Materials";journal;"27723976";"Elsevier Ltd";Yes;No;1,939;Q1;46;76;245;6434;3457;244;14,07;84,66;28,09;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Environmental Engineering (Q1); Mechanics of Materials (Q1); Polymers and Plastics (Q1); Waste Management and Disposal (Q1)";"Engineering; Environmental Science; Materials Science" +1533;24201;"Expert Systems with Applications";journal;"09574174";"Elsevier Ltd";No;No;1,939;Q1;315;3309;7935;183774;91680;7935;11,97;55,54;30,77;2;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Engineering (miscellaneous) (Q1)";"Computer Science; Engineering" +1534;23621;"Journal of Research in Science Teaching";journal;"10982736, 00224308";"John Wiley & Sons Inc.";No;No;1,939;Q1;174;84;220;8410;1567;208;6,41;100,12;58,26;1;United States;Northern America;"John Wiley & Sons Inc.";"1963-1967, 1969-2026";"Education (Q1)";"Social Sciences" +1535;19700201524;"Stem Cell Research and Therapy";journal;"17576512";"BioMed Central Ltd";Yes;No;1,939;Q1;150;684;1357;47530;11394;1341;7,40;69,49;44,61;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Cell Biology (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1536;19900191715;"Wiley Interdisciplinary Reviews: Cognitive Science";journal;"19395086, 19395078";"John Wiley & Sons Inc.";No;No;1,939;Q1;83;23;103;2462;636;98;6,11;107,04;47,46;0;United States;Northern America;"John Wiley & Sons Inc.";"2010-2026";"Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Neuroscience; Psychology" +1537;15478;"Journal of Experimental Psychology: General";journal;"00963445, 19392222";"American Psychological Association";No;No;1,938;Q1;204;168;590;10152;2554;589;3,56;60,43;44,26;0;United States;Northern America;"American Psychological Association";"1975-2026";"Developmental Neuroscience (Q1); Experimental and Cognitive Psychology (Q1); Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Neuroscience; Psychology" +1538;22861;"Political Psychology";journal;"0162895X, 14679221";"Wiley-Blackwell Publishing Ltd";No;No;1,938;Q1;136;166;194;11474;1209;194;5,06;69,12;42,62;6;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Clinical Psychology (Q1); Experimental and Cognitive Psychology (Q1); Philosophy (Q1); Political Science and International Relations (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Psychology; Social Sciences" +1539;14254;"Autism";journal;"14617005, 13623613";"SAGE Publications Ltd";No;No;1,935;Q1;144;255;626;15253;5199;588;7,55;59,82;68,33;16;United Kingdom;Western Europe;"SAGE Publications Ltd";"1997-2026";"Developmental and Educational Psychology (Q1)";"Psychology" +1540;21100902871;"International Journal for Educational Integrity";journal;"18332595";"BioMed Central Ltd";Yes;No;1,935;Q1;35;33;78;1830;1144;74;19,73;55,45;54,00;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Education (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +1541;5200152632;"Environmental Research Letters";journal;"17489326";"Institute of Physics";Yes;No;1,933;Q1;222;880;2569;53288;15595;2511;5,15;60,55;37,45;51;United Kingdom;Western Europe;"Institute of Physics";"2006-2025";"Environmental Science (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Environmental Science; Medicine" +1542;18997;"ACM Transactions on Information Systems";journal;"10468188, 15582868";"Association for Computing Machinery";No;No;1,932;Q1;107;167;397;14757;4359;397;11,84;88,37;27,91;1;United States;Northern America;"Association for Computing Machinery";"1983-2026";"Business, Management and Accounting (miscellaneous) (Q1); Computer Science Applications (Q1); Information Systems (Q1)";"Business, Management and Accounting; Computer Science" +1543;28387;"Inflammatory Bowel Diseases";journal;"10780998, 15364844";"Oxford University Press";No;No;1,932;Q1;192;423;902;14193;4243;723;5,03;33,55;44,77;2;United States;Northern America;"Oxford University Press";"1995-2026";"Gastroenterology (Q1); Immunology and Allergy (Q1)";"Medicine" +1544;12217;"Molecules and Cells";journal;"02191032, 10168478";"Elsevier B.V.";Yes;No;1,932;Q1;108;84;265;5571;1580;229;7,10;66,32;40,77;0;South Korea;Asiatic Region;"Elsevier B.V.";"1991, 1996-2026";"Cell Biology (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1545;4000151809;"PLOS Pathogens";journal;"15537374, 15537366";"Public Library of Science";Yes;No;1,932;Q1;274;744;1976;49911;10054;1965;4,81;67,08;44,85;3;United States;Northern America;"Public Library of Science";"2005-2026";"Genetics (Q1); Immunology (Q1); Microbiology (Q1); Molecular Biology (Q1); Parasitology (Q1); Virology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +1546;19064;"Resuscitation";journal;"18731570, 03009572";"Elsevier Ireland Ltd";No;No;1,932;Q1;168;397;1095;16232;3659;652;3,49;40,89;35,78;5;Ireland;Western Europe;"Elsevier Ireland Ltd";"1972-1976, 1978-2026";"Cardiology and Cardiovascular Medicine (Q1); Emergency Medicine (Q1); Emergency Nursing (Q1)";"Medicine; Nursing" +1547;21101159003;"American Journal of Preventive Cardiology";journal;"26666677";"Elsevier B.V.";Yes;No;1,931;Q1;32;236;249;10221;1376;204;4,65;43,31;41,61;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +1548;5700163257;"International Journal of Qualitative Methods";journal;"16094069";"SAGE Publications Inc.";Yes;No;1,931;Q1;107;310;669;16695;5200;660;7,98;53,85;67,96;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2002-2026";"Education (Q1)";"Social Sciences" +1549;21101196451;"Seismic Record";journal;"26944006";"Seismological Society of America";Yes;No;1,931;Q1;20;37;99;1129;480;97;5,50;30,51;25,16;0;United States;Northern America;"Seismological Society of America";"2021-2025";"Geology (Q1)";"Earth and Planetary Sciences" +1550;25403;"Mind";journal;"00264423, 14602113";"Oxford University Press";No;No;1,930;Q1;77;35;107;1346;273;102;2,28;38,46;8,33;0;United Kingdom;Western Europe;"Oxford University Press";"1876-1901, 1903-1904, 1908, 1911-1913, 1921-1951, 1959-1960, 1962-1965, 1967-1968, 1970-2025";"Philosophy (Q1)";"Arts and Humanities" +1551;67863;"Party Politics";journal;"13540688, 14603683";"SAGE Publications Ltd";No;No;1,930;Q1;98;134;271;8045;1102;270;3,62;60,04;26,69;8;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Sociology and Political Science (Q1)";"Social Sciences" +1552;12391;"Lung Cancer";journal;"01695002, 18728332";"Elsevier Ireland Ltd";No;No;1,928;Q1;160;362;678;12757;3439;636;4,93;35,24;37,92;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1985-2026";"Cancer Research (Q1); Oncology (Q1); Pulmonary and Respiratory Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1553;14061;"Psychometrika";journal;"00333123, 18600980";"Cambridge University Press";No;No;1,928;Q1;94;77;177;4116;576;171;2,86;53,45;32,09;1;United Kingdom;Western Europe;"Cambridge University Press";"1936-2026";"Applied Mathematics (Q1); Psychology (miscellaneous) (Q1)";"Mathematics; Psychology" +1554;21196;"Drug Discovery Today";journal;"18785832, 13596446";"Elsevier Ltd";No;No;1,927;Q1;235;267;851;20988;7914;807;8,80;78,61;38,42;4;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Drug Discovery (Q1); Pharmacology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +1555;28470;"Foundations of Computational Mathematics";journal;"16153383, 16153375";"Springer New York";No;No;1,926;Q1;76;88;135;4532;511;134;3,27;51,50;15,60;0;United States;Northern America;"Springer New York";"2001-2026";"Analysis (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1); Computational Theory and Mathematics (Q1)";"Computer Science; Mathematics" +1556;19210;"Journal of Experimental Botany";journal;"14602431, 00220957";"Oxford University Press";No;No;1,926;Q1;324;496;1524;41218;10278;1502;6,31;83,10;41,04;0;United Kingdom;Western Europe;"Oxford University Press";"1950-2026";"Physiology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1557;21100239245;"Oil and Gas Geology";journal;"02539985";"Science Press";No;No;1,926;Q1;58;126;360;6596;2176;359;6,63;52,35;31,49;0;China;Asiatic Region;"Science Press";"2013-2025";"Geology (Q1)";"Earth and Planetary Sciences" +1558;21101155643;"Oxford Open Immunology";journal;"26336960";"Oxford University Press";Yes;No;1,926;Q1;8;10;24;846;161;24;7,14;84,60;46,88;0;United Kingdom;Western Europe;"Oxford University Press";"2021-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +1559;17495;"NeuroImage";journal;"10959572, 10538119";"Academic Press Inc.";Yes;No;1,925;Q1;457;659;1885;48769;10966;1858;5,31;74,00;41,31;0;United States;Northern America;"Academic Press Inc.";"1992-2026";"Cognitive Neuroscience (Q1); Neurology (Q1)";"Neuroscience" +1560;147234;"Selecta Mathematica, New Series";journal;"10221824, 14209020";"Springer International Publishing";No;No;1,925;Q1;52;110;280;4163;405;280;1,34;37,85;15,71;0;Switzerland;Western Europe;"Springer International Publishing";"1995-2002, 2005-2026";"Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Mathematics; Physics and Astronomy" +1561;21100403505;"Advances in Nonlinear Analysis";journal;"2191950X, 21919496";"De Gruyter Open Ltd";Yes;No;1,924;Q1;41;74;209;2680;718;208;3,53;36,22;40,49;0;Germany;Western Europe;"De Gruyter Open Ltd";"2012-2026";"Analysis (Q1)";"Mathematics" +1562;24456;"Child Development";journal;"14678624, 00093920";"Wiley-Blackwell Publishing Ltd";No;No;1,924;Q1;309;149;471;10006;2473;466;4,46;67,15;67,22;1;United States;Northern America;"Wiley-Blackwell Publishing Ltd";"1945-1948, 1950-2025";"Developmental and Educational Psychology (Q1); Education (Q1); Pediatrics, Perinatology and Child Health (Q1); Social Work (Q1)";"Medicine; Psychology; Social Sciences" +1563;17337;"IEEE Transactions on Antennas and Propagation";journal;"15582221, 0018926X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,924;Q1;256;1080;3303;40522;22685;3283;6,60;37,52;25,57;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-2026";"Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1)";"Engineering; Physics and Astronomy" +1564;21101175729;"Journal of Creativity";journal;"27133745";"Elsevier Ltd";Yes;No;1,924;Q1;16;21;67;1287;744;67;13,47;61,29;48,44;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Experimental and Cognitive Psychology (Q1)";"Psychology" +1565;19700182728;"Personality Disorders: Theory, Research, and Treatment";journal;"19492723, 19492715";"American Psychological Association";No;No;1,924;Q1;76;57;180;3007;828;179;3,72;52,75;48,72;1;United States;Northern America;"American Psychological Association";"2005, 2010-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +1566;21100415705;"Alzheimer's and Dementia: Translational Research and Clinical Interventions";journal;"23528737";"John Wiley and Sons Inc";Yes;No;1,923;Q1;76;160;266;6448;1734;251;6,84;40,30;49,02;2;United States;Northern America;"John Wiley and Sons Inc";"2015-2026";"Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +1567;23371;"Journal of Environmental Management";journal;"10958630, 03014797";"Academic Press";No;No;1,923;Q1;296;4577;8979;338192;92847;8952;10,30;73,89;38,66;45;United States;Northern America;"Academic Press";"1973, 1975, 1977-2026";"Environmental Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Medicine (miscellaneous) (Q1); Waste Management and Disposal (Q1)";"Environmental Science; Medicine" +1568;19700175037;"Journal of the International AIDS Society";journal;"17582652";"John Wiley & Sons Inc.";Yes;No;1,923;Q1;97;172;473;6868;2074;387;3,93;39,93;56,90;6;United States;Northern America;"John Wiley & Sons Inc.";"2004-2005, 2008-2026";"Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +1569;24604;"Archives of Toxicology";journal;"14320738, 03405761";"Springer Science and Business Media Deutschland GmbH";No;No;1,922;Q1;159;327;692;25086;6289;640;10,23;76,72;49,11;6;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1930-1940, 1943-1944, 1972-2026";"Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Toxicology (Q1)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +1570;15652;"Engineering Structures";journal;"18737323, 01410296";"Elsevier B.V.";No;No;1,922;Q1;222;2250;4814;118300;40965;4809;8,64;52,58;24,51;1;United Kingdom;Western Europe;"Elsevier B.V.";"1970, 1978-2026";"Civil and Structural Engineering (Q1)";"Engineering" +1571;21101240288;"Smart Materials in Manufacturing";journal;"27728102";"KeAi Communications Co.";No;No;1,922;Q1;16;31;41;2764;630;40;15,37;89,16;28,57;0;China;Asiatic Region;"KeAi Communications Co.";"2023-2026";"Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +1572;29916;"Critical Care Medicine";journal;"00903493, 15300293";"Lippincott Williams and Wilkins";No;No;1,921;Q1;326;469;1194;10145;3928;674;3,41;21,63;44,02;0;United States;Northern America;"Lippincott Williams and Wilkins";"1973-2026";"Critical Care and Intensive Care Medicine (Q1)";"Medicine" +1573;21100967264;"npj Regenerative Medicine";journal;"20573995";"Nature Research";Yes;No;1,920;Q1;52;57;184;4039;1286;183;6,44;70,86;42,95;0;United Kingdom;Western Europe;"Nature Research";"2016-2026";"Biomedical Engineering (Q1); Cell Biology (Q1); Developmental Biology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +1574;21101137848;"Carbon Capture Science and Technology";journal;"27726568";"Elsevier Ltd";Yes;No;1,917;Q1;41;179;261;17862;3281;258;10,97;99,79;28,14;3;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Chemical Engineering (miscellaneous) (Q1); Energy (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Chemical Engineering; Energy; Environmental Science" +1575;4000148405;"Current Osteoporosis Reports";journal;"15442241, 15441873";"Springer";No;No;1,911;Q1;93;51;182;4475;1365;182;7,45;87,75;45,26;0;United States;Northern America;"Springer";"2003-2026";"Endocrinology, Diabetes and Metabolism (Q1)";"Medicine" +1576;21100469363;"Journal of Intensive Care";journal;"20520492";"BioMed Central Ltd";Yes;No;1,911;Q1;65;65;173;3387;1030;151;6,82;52,11;28,52;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2013-2026";"Critical Care and Intensive Care Medicine (Q1)";"Medicine" +1577;19977;"British Journal for the Philosophy of Science";journal;"14643537, 00070882";"University of Chicago Press";No;No;1,909;Q1;75;44;130;2307;347;129;2,51;52,43;22,22;1;United States;Northern America;"University of Chicago Press";"1950-2026";"History (Q1); History and Philosophy of Science (Q1); Philosophy (Q1)";"Arts and Humanities" +1578;25294;"Journal of Cystic Fibrosis";journal;"15691993, 18735010";"Elsevier B.V.";No;No;1,908;Q1;103;206;583;5857;2733;504;4,62;28,43;58,76;0;Netherlands;Western Europe;"Elsevier B.V.";"2002-2026";"Pediatrics, Perinatology and Child Health (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine" +1579;28764;"Breast Cancer Research";journal;"1465542X, 14655411";"BioMed Central Ltd";Yes;No;1,907;Q1;186;218;430;10098;2675;426;5,97;46,32;53,26;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1999-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1580;21101092874;"Corrosion Communications";journal;"26672669";"Elsevier B.V.";Yes;No;1,907;Q1;35;55;97;2464;1109;97;10,70;44,80;25,32;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Metals and Alloys (Q1)";"Materials Science" +1581;19725;"Educational Administration Quarterly";journal;"0013161X, 15523519";"SAGE Publications Inc.";No;No;1,907;Q1;107;27;74;2288;473;68;6,18;84,74;67,21;0;United States;Northern America;"SAGE Publications Inc.";"1965-2026";"Education (Q1); Public Administration (Q1)";"Social Sciences" +1582;21100451321;"Scientific Data";journal;"20524463";"Nature Research";Yes;No;1,907;Q1;165;2007;3060;99909;24172;340;6,78;49,78;37,06;26;United Kingdom;Western Europe;"Nature Research";"2014-2026";"Computer Science Applications (Q1); Education (Q1); Information Systems (Q1); Library and Information Sciences (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Computer Science; Decision Sciences; Mathematics; Social Sciences" +1583;26874;"Building and Environment";journal;"03601323";"Elsevier B.V.";No;No;1,906;Q1;237;1338;3075;96516;29656;3068;9,22;72,13;36,33;8;United Kingdom;Western Europe;"Elsevier B.V.";"1976-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Environmental Engineering (Q1); Geography, Planning and Development (Q1)";"Engineering; Environmental Science; Social Sciences" +1584;20290;"Ecological Economics";journal;"09218009";"Elsevier B.V.";No;No;1,906;Q1;279;286;843;22598;6364;828;7,15;79,01;38,74;30;Netherlands;Western Europe;"Elsevier B.V.";"1989-2026";"Economics and Econometrics (Q1); Environmental Science (miscellaneous) (Q1)";"Economics, Econometrics and Finance; Environmental Science" +1585;21100369735;"Journal of Business Venturing Insights";journal;"23526734";"Elsevier Inc.";No;No;1,905;Q1;53;75;205;4708;1279;202;5,73;62,77;27,89;3;United States;Northern America;"Elsevier Inc.";"2014-2026";"Business and International Management (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting" +1586;26727;"Thyroid";journal;"15579077, 10507256";"Mary Ann Liebert Inc.";No;No;1,905;Q1;182;163;532;6887;2983;452;5,33;42,25;45,92;0;United States;Northern America;"Mary Ann Liebert Inc.";"1990-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1587;22704;"Ambio";journal;"16547209, 00447447";"Springer Science and Business Media B.V.";No;No;1,904;Q1;171;183;472;12136;3367;446;6,43;66,32;48,65;13;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1973-2026";"Ecology (Q1); Environmental Chemistry (Q1); Geography, Planning and Development (Q1); Medicine (miscellaneous) (Q1)";"Environmental Science; Medicine; Social Sciences" +1588;19062;"Respirology";journal;"14401843, 13237799";"John Wiley and Sons Inc";No;No;1,904;Q1;120;195;594;5094;1715;240;2,69;26,12;41,16;0;United States;Northern America;"John Wiley and Sons Inc";"1996-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +1589;21100819608;"Emerging Contaminants";journal;"24056650, 24056642";"KeAi Communications Co.";Yes;No;1,901;Q1;53;155;181;13754;1705;180;9,74;88,74;44,30;6;China;Asiatic Region;"KeAi Communications Co.";"2015-2026";"Health, Toxicology and Mutagenesis (Q1); Public Health, Environmental and Occupational Health (Q1); Toxicology (Q1)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +1590;29873;"International Journal of Cancer";journal;"00207136, 10970215";"John Wiley and Sons Inc";No;No;1,901;Q1;275;479;1234;21479;6177;1160;4,68;44,84;48,32;4;United States;Northern America;"John Wiley and Sons Inc";"1966-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1591;19751;"Stanford Law Review";journal;"00389765";"Stanford Law School";No;No;1,901;Q1;87;26;68;7572;207;53;3,41;291,23;32,00;0;United States;Northern America;"Stanford Law School";"1974-1976, 1978-1979, 1987-1994, 1996-2026";"Law (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +1592;19900192437;"Bulletin of the Peabody Museum of Natural History";journal;"21624135, 0079032X";"Peabody Museum of Natural History";No;No;1,900;Q1;25;2;14;494;82;14;8,88;247,00;12,50;0;United States;Northern America;"Peabody Museum of Natural History";"2010-2025";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +1593;24519;"Environmental Politics";journal;"09644016, 17438934";"Routledge";No;No;1,900;Q1;105;125;180;7742;1371;172;6,67;61,94;39,06;11;United Kingdom;Western Europe;"Routledge";"1992-2026";"Environmental Science (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Environmental Science; Social Sciences" +1594;28623;"Combustion and Flame";journal;"00102180, 15562921";"Elsevier Inc.";No;No;1,899;Q1;235;617;1688;31463;11176;1685;5,89;50,99;24,83;0;United States;Northern America;"Elsevier Inc.";"1957-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Chemical Engineering; Chemistry; Energy; Physics and Astronomy" +1595;21100780794;"Engineering";journal;"20958099";"Elsevier Ltd";Yes;No;1,899;Q1;127;428;776;32239;9022;644;11,15;75,32;33,45;4;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Chemical Engineering (miscellaneous) (Q1); Computer Science (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Engineering (miscellaneous) (Q1); Environmental Engineering (Q1); Materials Science (miscellaneous) (Q1)";"Chemical Engineering; Computer Science; Energy; Engineering; Environmental Science; Materials Science" +1596;21101268303;"DeCarbon";journal;"29498813";"Elsevier B.V.";Yes;No;1,898;Q1;11;27;26;2545;280;26;10,77;94,26;33,33;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Energy (miscellaneous) (Q1)";"Energy" +1597;21101092750;"JACC: Asia";journal;"27723747";"Elsevier Inc.";Yes;No;1,897;Q1;24;239;407;6004;1303;219;3,11;25,12;26,41;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +1598;23826;"Journal of Cardiac Failure";journal;"10719164, 15328414";"Elsevier B.V.";No;No;1,897;Q1;132;300;699;7909;2485;474;3,42;26,36;32,42;1;United States;Northern America;"Elsevier B.V.";"1994-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +1599;29640;"Mechanisms of Ageing and Development";journal;"18726216, 00476374";"Elsevier Ireland Ltd";No;No;1,897;Q1;146;76;224;6376;1472;217;6,91;83,89;50,76;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1972-2026";"Aging (Q1); Developmental Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1600;21101170018;"Science of Remote Sensing";journal;"26660172";"Elsevier B.V.";Yes;No;1,897;Q1;28;159;137;11992;1036;137;7,93;75,42;28,12;2;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Forestry (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +1601;15499;"Journal of Experimental Social Psychology";journal;"00221031, 10960465";"Academic Press Inc.";No;No;1,896;Q1;190;100;302;6806;1298;298;3,74;68,06;47,32;0;United States;Northern America;"Academic Press Inc.";"1965-2026";"Social Psychology (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +1602;22424;"Journal of the American Society of Echocardiography";journal;"10976795, 08947317";"Elsevier Inc.";No;No;1,896;Q1;160;193;581;4035;2088;394;3,71;20,91;38,39;0;United States;Northern America;"Elsevier Inc.";"1988-2026";"Cardiology and Cardiovascular Medicine (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +1603;21100817619;"International Soil and Water Conservation Research";journal;"20956339, 2589059X";"KeAi Communications Co.";Yes;No;1,895;Q1;76;123;188;8937;1697;183;8,68;72,66;32,98;2;China;Asiatic Region;"KeAi Communications Co.";"2013-2026";"Agronomy and Crop Science (Q1); Nature and Landscape Conservation (Q1); Soil Science (Q1); Water Science and Technology (Q1)";"Agricultural and Biological Sciences; Environmental Science" +1604;21100203111;"IEEE Wireless Communications Letters";journal;"21622345, 21622337";"IEEE Communications Society";No;No;1,894;Q1;127;849;1741;13172;10770;1740;5,87;15,51;28,40;0;United States;Northern America;"IEEE Communications Society";"2012-2026";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Engineering; Physics and Astronomy" +1605;5700167235;"International Journal of Consumer Studies";journal;"14706423, 14706431";"Wiley-Blackwell Publishing Ltd";No;No;1,894;Q1;121;143;400;18145;4685;396;12,12;126,89;50,26;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2001-2026";"Applied Psychology (Q1); Economics and Econometrics (Q1); Marketing (Q1); Public Health, Environmental and Occupational Health (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Medicine; Psychology" +1606;21101072017;"Machine Intelligence Research";journal;"2731538X, 27315398";"Chinese Academy of Sciences";No;No;1,894;Q1;60;73;164;4624;1772;158;11,26;63,34;30,30;0;China;Asiatic Region;"Chinese Academy of Sciences";"2022-2026";"Applied Mathematics (Q1); Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Science Applications (Q1); Computer Vision and Pattern Recognition (Q1); Control and Systems Engineering (Q1); Modeling and Simulation (Q1); Signal Processing (Q1)";"Computer Science; Engineering; Mathematics" +1607;19700167026;"IEEE Transactions on Learning Technologies";journal;"19391382";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,893;Q1;74;82;325;5259;2952;319;9,69;64,13;37,21;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2008-2026";"Computer Science Applications (Q1); Education (Q1); E-learning (Q1); Engineering (miscellaneous) (Q1)";"Computer Science; Engineering; Social Sciences" +1608;27663;"Journal of Conflict Resolution";journal;"15528766, 00220027";"SAGE Publications Inc.";No;No;1,893;Q1;138;87;217;6122;807;217;3,26;70,37;27,32;9;United States;Northern America;"SAGE Publications Inc.";"1957-2026";"Business, Management and Accounting (miscellaneous) (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Social Sciences" +1609;25680;"Journal of Youth and Adolescence";journal;"15736601, 00472891";"Springer New York";No;No;1,893;Q1;165;230;521;15902;3008;517;5,36;69,14;59,05;1;United States;Northern America;"Springer New York";"1972-2026";"Developmental and Educational Psychology (Q1); Education (Q1); Social Psychology (Q1); Social Sciences (miscellaneous) (Q1)";"Psychology; Social Sciences" +1610;13760;"Habitat International";journal;"01973975";"Elsevier Ltd";No;No;1,892;Q1;140;291;473;23116;4557;472;9,19;79,44;38,02;4;United Kingdom;Western Europe;"Elsevier Ltd";"1970, 1976-1980, 1982-2026";"Nature and Landscape Conservation (Q1); Urban Studies (Q1)";"Environmental Science; Social Sciences" +1611;21101075891;"aBIOTECH";journal;"26621738, 20966326";"Editorial Department of Scientia Agricultura Sinica";No;No;1,890;Q1;27;62;108;4448;696;82;6,26;71,74;40,18;0;Singapore;Asiatic Region;"Editorial Department of Scientia Agricultura Sinica";"2020-2026";"Agronomy and Crop Science (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biotechnology (Q1); Genetics (Q1); Molecular Biology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1612;27569;"Renewable Energy";journal;"09601481, 18790682";"Elsevier Ltd";No;No;1,889;Q1;291;1767;5671;95884;56967;5657;9,65;54,26;29,63;10;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +1613;21100237607;"Cancer Biology and Medicine";journal;"20953941";"Cancer Biology and Medicine";Yes;No;1,888;Q1;78;117;305;426;2022;253;7,03;3,64;45,27;0;China;Asiatic Region;"Cancer Biology and Medicine";"2012-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1614;21100893578;"JMIR mHealth and uHealth";journal;"22915222";"JMIR Publications Inc.";Yes;No;1,888;Q1;120;217;524;11340;4285;517;6,74;52,26;50,95;1;Canada;Northern America;"JMIR Publications Inc.";"2013-2026";"Health Informatics (Q1)";"Medicine" +1615;24363;"Journal of Intelligent Manufacturing";journal;"15728145, 09565515";"Springer Netherlands";No;No;1,888;Q1;124;434;536;25642;6674;531;12,23;59,08;23,97;0;Netherlands;Western Europe;"Springer Netherlands";"1990-2026";"Artificial Intelligence (Q1); Industrial and Manufacturing Engineering (Q1); Software (Q1)";"Computer Science; Engineering" +1616;27919;"Rare Metals";journal;"10010521, 18677185";"John Wiley and Sons Inc";No;No;1,887;Q1;83;750;1328;48836;14129;1162;11,66;65,11;34,08;0;China;Asiatic Region;"John Wiley and Sons Inc";"1982-1987, 1989-2025";"Condensed Matter Physics (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +1617;21101087332;"SciPost Physics Lecture Notes";journal;"25901990";"SciPost Foundation";Yes;Yes;1,887;Q1;24;19;55;1991;350;55;7,33;104,79;23,08;0;Netherlands;Western Europe;"SciPost Foundation";"2018-2025";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Nuclear and High Energy Physics (Q1); Statistical and Nonlinear Physics (Q1)";"Physics and Astronomy" +1618;21100818712;"European Stroke Journal";journal;"23969881, 23969873";"SAGE Publications Inc.";No;No;1,886;Q1;45;206;314;6956;1565;290;4,93;33,77;34,67;3;United Kingdom;Western Europe;"SAGE Publications Inc.";"2016-2026";"Cardiology and Cardiovascular Medicine (Q1); Neurology (clinical) (Q1)";"Medicine" +1619;19400158592;"Mathematical Programming Computation";journal;"18672949, 18672957";"Springer Verlag";No;No;1,886;Q1;49;25;62;1150;413;62;6,02;46,00;22,97;0;Germany;Western Europe;"Springer Verlag";"2009-2026";"Software (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +1620;21101134425;"Transactions of the American Mathematical Society Series B";journal;"23300000";"American Mathematical Society";Yes;No;1,886;Q1;13;34;117;1289;189;117;1,41;37,91;22,78;0;United States;Northern America;"American Mathematical Society";"2019-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +1621;21100943536;"Materials Today Bio";journal;"25900064";"Elsevier B.V.";Yes;No;1,885;Q1;78;1219;1130;99711;13453;1129;11,55;81,80;41,83;1;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +1622;13345;"Nutrition Reviews";journal;"00296643, 17534887";"Oxford University Press";No;No;1,885;Q1;193;314;381;24429;3157;375;8,00;77,80;60,89;11;United States;Northern America;"Oxford University Press";"1942-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +1623;3300147809;"Acta Biomaterialia";journal;"17427061, 18787568";"Acta Materialia Inc";No;No;1,884;Q1;278;715;1907;56533;20743;1902;10,38;79,07;40,93;0;United States;Northern America;"Acta Materialia Inc";"2005-2026";"Biochemistry (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science; Medicine" +1624;21101144434;"Energy Nexus";journal;"27724271";"Elsevier Ltd";Yes;No;1,884;Q1;47;259;292;20586;4084;291;10,15;79,48;24,15;1;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Energy (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Energy; Environmental Science" +1625;4700152753;"Translational Research";journal;"19315244, 18781810";"Elsevier Inc.";No;No;1,884;Q1;131;57;291;3178;1834;290;6,17;55,75;44,61;0;United States;Northern America;"Elsevier Inc.";"2006-2026";"Biochemistry (medical) (Q1); Medicine (miscellaneous) (Q1); Physiology (medical) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +1626;21101070784;"Immuno-Oncology and Technology";journal;"25900188";"Elsevier Inc.";Yes;No;1,883;Q1;17;20;41;1053;235;41;4,27;52,65;45,78;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Immunology and Allergy (Q1); Oncology (Q1)";"Medicine" +1627;15143;"Regional Studies";journal;"13600591, 00343404";"Routledge";No;No;1,883;Q1;157;223;498;15121;3268;475;6,34;67,81;33,46;36;United Kingdom;Western Europe;"Routledge";"1967-2026";"Environmental Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Environmental Science; Social Sciences" +1628;21100810501;"Materials Today Energy";journal;"24686069";"Elsevier Ltd";No;No;1,880;Q1;95;382;776;26114;6872;773;8,38;68,36;32,22;0;United Kingdom;Western Europe;"Elsevier Ltd";"2016-2026";"Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Materials Science (miscellaneous) (Q1); Nuclear Energy and Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Materials Science" +1629;14000156188;"Innovation in Language Learning and Teaching";journal;"17501237, 17501229";"Taylor and Francis Ltd.";No;No;1,879;Q1;44;153;161;8984;1340;158;8,31;58,72;48,82;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +1630;12191;"Journal of Arthroplasty";journal;"08835403, 15328406";"Elsevier B.V.";No;No;1,878;Q1;181;1109;1956;38893;8945;1786;4,40;35,07;21,76;0;United States;Northern America;"Elsevier B.V.";"1986-2026";"Orthopedics and Sports Medicine (Q1)";"Medicine" +1631;130050;"Ocular Surface";journal;"19375913, 15420124";"Elsevier Inc.";No;No;1,878;Q1;99;119;345;6701;2069;273;5,62;56,31;43,88;0;United States;Northern America;"Elsevier Inc.";"2003-2026";"Ophthalmology (Q1)";"Medicine" +1632;21100304858;"Information Technology and Tourism";journal;"10983058, 19434294";"Springer Science + Business Media";No;No;1,876;Q1;51;41;73;3097;941;71;12,48;75,54;38,05;0;Germany;Western Europe;"Springer Science + Business Media";"2014-2026";"Computer Science Applications (Q1); Information Systems (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Computer Science" +1633;4400151701;"Journal of Exposure Science and Environmental Epidemiology";journal;"1559064X, 15590631";"Springer Nature";No;No;1,876;Q1;116;124;308;6619;1950;296;6,57;53,38;52,99;12;United States;Northern America;"Springer Nature";"2002, 2006-2026";"Epidemiology (Q1); Pollution (Q1); Public Health, Environmental and Occupational Health (Q1); Toxicology (Q1)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +1634;21100372437;"IEEE Transactions on Network Science and Engineering";journal;"23274697";"IEEE Computer Society";No;No;1,875;Q1;82;378;1181;18535;9699;1165;7,94;49,03;31,10;0;United States;Northern America;"IEEE Computer Society";"2014-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1)";"Computer Science; Engineering" +1635;21100278302;"Management Review Quarterly";journal;"21981639, 21981620";"Springer Nature";No;No;1,875;Q1;54;175;163;22525;2101;158;12,52;128,71;34,31;4;Switzerland;Western Europe;"Springer Nature";"2014-2026";"Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1636;21100778657;"Acta Crystallographica Section D: Structural Biology";journal;"20597983";"John Wiley & Sons Inc.";No;No;1,872;Q1;160;59;301;2938;1029;292;4,00;49,80;26,77;0;United States;Northern America;"John Wiley & Sons Inc.";"2016-2026";"Structural Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1637;20267;"Microbiological Research";journal;"09445013, 16180623";"Elsevier GmbH";No;No;1,872;Q1;141;282;752;24523;7596;750;10,34;86,96;44,97;0;Germany;Western Europe;"Elsevier GmbH";"1994-2026";"Microbiology (Q1)";"Immunology and Microbiology" +1638;23600;"Journal of the American Medical Informatics Association";journal;"1527974X, 10675027";"Oxford University Press";No;No;1,870;Q1;195;224;832;8730;5689;784;7,22;38,97;42,67;1;United Kingdom;Western Europe;"Oxford University Press";"1994-2026";"Health Informatics (Q1)";"Medicine" +1639;17366;"IEEE Transactions on Microwave Theory and Techniques";journal;"15579670, 00189480";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,867;Q1;226;939;1565;36846;10574;1542;6,67;39,24;24,15;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-2026";"Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Radiation (Q1)";"Engineering; Physics and Astronomy" +1640;15645;"Journal of Health and Social Behavior";journal;"00221465, 21506000";"American Sociological Association";No;No;1,867;Q1;157;47;125;2705;625;119;4,15;57,55;72,16;0;United States;Northern America;"American Sociological Association";"1967-2026";"Public Health, Environmental and Occupational Health (Q1); Social Psychology (Q1)";"Medicine; Psychology" +1641;21100782431;"Society and Mental Health";journal;"21568731, 21568693";"SAGE Publications Inc.";No;No;1,867;Q1;44;23;43;1672;230;43;5,07;72,70;64,41;0;United States;Northern America;"SAGE Publications Inc.";"2011-2026";"Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +1642;21100202157;"Tourism Management Perspectives";journal;"22119736";"Elsevier B.V.";No;No;1,867;Q1;104;69;303;6214;3355;303;10,38;90,06;43,75;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +1643;13140;"Epidemiologic Reviews";journal;"14786729, 0193936X";"Oxford University Press";No;No;1,866;Q1;126;18;26;1085;168;25;9,60;60,28;57,14;0;United Kingdom;Western Europe;"Oxford University Press";"1979-2026";"Epidemiology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1644;21101199904;"Farming System";journal;"29499119";"China Agricultural University";Yes;No;1,866;Q1;14;32;60;2585;712;56;11,87;80,78;18,78;3;China;Asiatic Region;"China Agricultural University";"2023-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences" +1645;26098;"IEEE Transactions on Parallel and Distributed Systems";journal;"15582183, 10459219";"IEEE Computer Society";No;No;1,866;Q1;174;197;773;9561;5959;769;6,76;48,53;24,60;0;United States;Northern America;"IEEE Computer Society";"1990-2026";"Computational Theory and Mathematics (Q1); Hardware and Architecture (Q1); Signal Processing (Q1)";"Computer Science" +1646;24039;"Food Chemistry";journal;"18737072, 03088146";"Elsevier Ltd";Yes;No;1,865;Q1;369;5586;9394;305017;116045;9369;12,12;54,60;47,51;3;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Analytical Chemistry (Q1); Food Science (Q1); Medicine (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Chemistry; Medicine" +1647;18004;"American Journal of Respiratory Cell and Molecular Biology";journal;"10441549, 15354989";"American Thoracic Society";No;No;1,863;Q1;187;200;513;7688;1620;284;2,88;38,44;41,65;0;United States;Northern America;"American Thoracic Society";"1989-2025";"Cell Biology (Q1); Clinical Biochemistry (Q1); Molecular Biology (Q1); Pulmonary and Respiratory Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1648;22440;"Journal of Infectious Diseases";journal;"00221899, 15376613";"Oxford University Press";Yes;No;1,863;Q1;293;695;1751;23176;7029;1605;3,76;33,35;50,82;8;United Kingdom;Western Europe;"Oxford University Press";"1904-2026";"Immunology and Allergy (Q1); Infectious Diseases (Q1)";"Medicine" +1649;12882;"Contemporary Educational Psychology";journal;"0361476X, 10902384";"Academic Press Inc.";No;No;1,860;Q1;148;70;214;5467;1230;214;4,99;78,10;56,47;0;United States;Northern America;"Academic Press Inc.";"1976-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +1650;11700154306;"Molecular Ecology Resources";journal;"1755098X, 17550998";"Wiley-Blackwell Publishing Ltd";No;No;1,860;Q1;179;210;492;14708;3287;482;6,67;70,04;43,27;6;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2008-2026";"Biotechnology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1651;25295;"Journal of Gastroenterology";journal;"09441174, 14355922";"Springer";No;No;1,859;Q1;146;148;303;5829;1778;269;5,45;39,39;18,76;0;Japan;Asiatic Region;"Springer";"1994-2026";"Gastroenterology (Q1)";"Medicine" +1652;21100318420;"Journal of High Energy Astrophysics";journal;"22144048";"Elsevier B.V.";No;No;1,859;Q1;34;107;169;9176;1359;168;5,81;85,76;21,16;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Astronomy and Astrophysics (Q1); Nuclear and High Energy Physics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +1653;4000151808;"PLOS Genetics";journal;"15537390, 15537404";"Public Library of Science";Yes;No;1,857;Q1;292;403;1193;24863;4543;1187;3,59;61,69;45,17;0;United States;Northern America;"Public Library of Science";"2005-2026";"Cancer Research (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +1654;20626;"Clinical Pharmacology and Therapeutics";journal;"15326535, 00099236";"Wiley-Blackwell";No;No;1,856;Q1;226;373;873;13468;4526;770;4,65;36,11;42,97;6;United States;Northern America;"Wiley-Blackwell";"1960-2026";"Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +1655;78796;"Field Crops Research";journal;"18726852, 03784290";"Elsevier B.V.";No;No;1,852;Q1;212;393;977;26507;8427;977;8,31;67,45;31,65;4;Netherlands;Western Europe;"Elsevier B.V.";"1978-2026";"Agronomy and Crop Science (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences" +1656;28218;"Monthly Notices of the Royal Astronomical Society";journal;"13652966, 00358711";"Oxford University Press";Yes;No;1,852;Q1;414;2125;11067;191498;49327;11065;4,51;90,12;29,12;0;United Kingdom;Western Europe;"Oxford University Press";"1913, 1970-2026";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +1657;18983;"Social Science and Medicine";journal;"18735347, 02779536";"Elsevier Ltd";No;No;1,851;Q1;309;956;2281;59262;13342;2226;4,37;61,99;60,64;30;United Kingdom;Western Europe;"Elsevier Ltd";"1967-1980, 1982-2026";"Health (social science) (Q1); History and Philosophy of Science (Q1); Medicine (miscellaneous) (Q1)";"Arts and Humanities; Medicine; Social Sciences" +1658;21100394090;"Infectious Diseases of Poverty";journal;"20499957, 20955162";"BioMed Central Ltd";Yes;No;1,850;Q1;76;126;335;6020;2181;308;7,10;47,78;43,40;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2012-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +1659;13266;"American Journal of Ophthalmology";journal;"00029394, 18791891";"Elsevier Inc.";No;No;1,848;Q1;229;536;1103;22025;4628;906;4,20;41,09;41,67;1;United States;Northern America;"Elsevier Inc.";"1918-2026";"Ophthalmology (Q1)";"Medicine" +1660;24034;"Democratization";journal;"13510347, 1743890X";"Taylor and Francis Ltd.";No;No;1,848;Q1;83;146;233;11015;1161;230;4,64;75,45;34,83;11;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +1661;19700201513;"Journal of NeuroInterventional Surgery";journal;"17598486, 17598478";"BMJ Publishing Group";No;No;1,847;Q1;100;505;941;12457;4297;804;4,59;24,67;27,66;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2009-2026";"Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Surgery (Q1)";"Medicine" +1662;5700166179;"Politics and Gender";journal;"1743923X, 17439248";"Cambridge University Press";No;No;1,847;Q1;65;82;166;5232;717;146;3,23;63,80;66,18;0;United Kingdom;Western Europe;"Cambridge University Press";"2005-2026";"Gender Studies (Q1); Sociology and Political Science (Q1)";"Social Sciences" +1663;25684;"Journal of Dental Research";journal;"00220345, 15440591";"SAGE Publications Inc.";No;No;1,846;Q1;233;211;504;7856;3627;479;6,54;37,23;43,98;2;United States;Northern America;"SAGE Publications Inc.";"1919-1924, 1927-1935, 1937-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +1664;12689;"Information Processing and Management";journal;"18735371, 03064573";"Elsevier Ltd";No;No;1,845;Q1;149;360;920;23074;9729;913;10,21;64,09;33,06;1;United Kingdom;Western Europe;"Elsevier Ltd";"1975-2026";"Computer Science Applications (Q1); Information Systems (Q1); Library and Information Sciences (Q1); Management Science and Operations Research (Q1); Media Technology (Q1)";"Computer Science; Decision Sciences; Engineering; Social Sciences" +1665;4700152724;"Metacognition and Learning";journal;"15561631, 15561623";"Springer New York";No;No;1,845;Q1;79;44;127;3268;762;127;4,54;74,27;53,72;0;United States;Northern America;"Springer New York";"2006-2026";"Education (Q1)";"Social Sciences" +1666;21101032315;"Journal of Lipid and Atherosclerosis";journal;"22872892, 22882561";"Korean Society of Lipid and Atherosclerosis";Yes;Yes;1,844;Q1;26;36;87;1606;571;76;6,00;44,61;40,48;0;South Korea;Asiatic Region;"Korean Society of Lipid and Atherosclerosis";"2019-2026";"Cardiology and Cardiovascular Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Medicine" +1667;20891;"Transportation Research Part A: Policy and Practice";journal;"09658564";"Elsevier Ltd";No;No;1,843;Q1;199;324;827;21893;7094;820;7,75;67,57;34,19;9;United Kingdom;Western Europe;"Elsevier Ltd";"1992-2026";"Aerospace Engineering (Q1); Business, Management and Accounting (miscellaneous) (Q1); Civil and Structural Engineering (Q1); Management Science and Operations Research (Q1); Transportation (Q1)";"Business, Management and Accounting; Decision Sciences; Engineering; Social Sciences" +1668;21100823377;"Animal Nutrition";journal;"24056383, 24056545";"KeAi Communications Co.";Yes;No;1,842;Q1;77;163;442;12273;4178;440;8,66;75,29;37,97;0;China;Asiatic Region;"KeAi Communications Co.";"2015-2026";"Animal Science and Zoology (Q1); Food Animals (Q1)";"Agricultural and Biological Sciences; Veterinary" +1669;14921;"Comprehensive Psychiatry";journal;"0010440X, 15328384";"W.B. Saunders";Yes;No;1,842;Q1;134;83;247;5457;1505;241;5,49;65,75;51,10;2;United States;Northern America;"W.B. Saunders";"1960-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +1670;16339;"Metabolic Engineering";journal;"10967176, 10967184";"Academic Press Inc.";No;No;1,842;Q1;165;122;388;8336;3259;387;8,01;68,33;36,30;0;United States;Northern America;"Academic Press Inc.";"1999-2026";"Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +1671;21100901468;"Materials Today Physics";journal;"25425293";"Elsevier Ltd";No;No;1,841;Q1;95;342;931;25407;8919;931;9,63;74,29;31,07;0;United Kingdom;Western Europe;"Elsevier Ltd";"2017-2026";"Energy (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Energy; Materials Science; Physics and Astronomy" +1672;19958;"Archives of Pharmacal Research";journal;"19763786, 02536269";"Pharmaceutical Society of Korea";No;No;1,840;Q1;118;64;156;7423;1440;156;8,64;115,98;40,29;0;South Korea;Asiatic Region;"Pharmaceutical Society of Korea";"1978-2026";"Drug Discovery (Q1); Molecular Medicine (Q1); Organic Chemistry (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +1673;21100879846;"Circulation: Genomic and Precision Medicine";journal;"25748300";"Lippincott Williams and Wilkins";No;No;1,840;Q1;107;77;239;3442;920;196;3,77;44,70;39,95;0;United States;Northern America;"Lippincott Williams and Wilkins";"2018-2026";"Cardiology and Cardiovascular Medicine (Q1); Genetics (Q1); Genetics (clinical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1674;22491;"European Management Journal";journal;"02632373";"Elsevier Ltd";No;No;1,840;Q1;141;166;260;15474;2554;251;9,51;93,22;43,65;0;United Kingdom;Western Europe;"Elsevier Ltd";"1982-2026";"Strategy and Management (Q1)";"Business, Management and Accounting" +1675;14925;"Gender and Society";journal;"08912432, 15523977";"SAGE Publications Inc.";No;No;1,839;Q1;140;30;95;1935;506;90;4,62;64,50;75,56;2;United States;Northern America;"SAGE Publications Inc.";"1987-2026";"Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +1676;22486;"R and D Management";journal;"14679310, 00336807";"Wiley-Blackwell Publishing Ltd";No;No;1,839;Q1;127;93;167;9156;1377;162;7,07;98,45;36,97;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1970-2026";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1677;12064;"Advances in Atmospheric Sciences";journal;"18619533, 02561530";"Science Press";No;No;1,838;Q1;100;172;488;9969;2605;455;5,12;57,96;37,80;1;China;Asiatic Region;"Science Press";"1984-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +1678;19680;"ILR Review";journal;"00197939, 2162271X";"SAGE Publications Ltd";No;No;1,838;Q1;100;34;116;1771;507;113;3,97;52,09;36,36;6;United States;Northern America;"SAGE Publications Ltd";"1958, 1960-1961, 1965-1966, 1969, 1971-1972, 1976, 1978, 1981-1982, 1984-1985, 1987, 1996-2026";"Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1679;17219;"Matrix Biology";journal;"15691802, 0945053X";"Elsevier B.V.";No;No;1,838;Q1;157;63;217;7357;1204;215;5,72;116,78;49,50;0;Netherlands;Western Europe;"Elsevier B.V.";"1994-2026";"Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1680;21100908538;"Science and Medicine in Football";journal;"24733938, 24734446";"Taylor and Francis Ltd.";No;No;1,838;Q1;40;74;178;3137;936;169;4,58;42,39;29,87;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine" +1681;21101060182;"Autism in Adulthood";journal;"25739581, 2573959X";"Mary Ann Liebert Inc.";No;No;1,837;Q1;32;164;171;10390;1334;164;5,57;63,35;73,05;7;United States;Northern America;"Mary Ann Liebert Inc.";"2020-2026";"Cognitive Neuroscience (Q1); Developmental and Educational Psychology (Q1); Neurology (Q1); Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience; Psychology" +1682;26801;"Computational Linguistics";journal;"08912017, 15309312";"MIT Press";Yes;Yes;1,837;Q1;122;4;93;848;1358;91;16,76;212,00;23,81;0;United States;Northern America;"MIT Press";"1985, 1996-2025";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Linguistics and Language (Q1)";"Computer Science; Social Sciences" +1683;20764;"Educational Technology Research and Development";journal;"10421629, 15566501";"Springer Boston";No;No;1,836;Q1;128;172;327;11697;2744;326;7,97;68,01;51,28;1;United States;Northern America;"Springer Boston";"1957, 1989-2026";"Education (Q1)";"Social Sciences" +1684;21524;"Environmental Research";journal;"10960953, 00139351";"Academic Press Inc.";No;No;1,836;Q1;217;2497;7500;175125;71039;7447;9,23;70,13;44,51;18;United States;Northern America;"Academic Press Inc.";"1967-1995, 1997-2026";"Biochemistry (Q1); Environmental Science (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine" +1685;20972;"Journal of Materials Processing Technology";journal;"09240136, 18734774";"Elsevier Ltd";No;No;1,836;Q1;247;383;1045;18840;9530;1042;8,49;49,19;25,36;0;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2026";"Ceramics and Composites (Q1); Computer Science Applications (Q1); Industrial and Manufacturing Engineering (Q1); Metals and Alloys (Q1); Modeling and Simulation (Q1)";"Computer Science; Engineering; Materials Science; Mathematics" +1686;16764;"Journal of Neuroscience";journal;"02706474, 15292401";"Society for Neuroscience";No;No;1,836;Q1;528;716;2022;40105;8333;1968;3,71;56,01;42,03;0;United States;Northern America;"Society for Neuroscience";"1981-2026";"Neuroscience (miscellaneous) (Q1)";"Neuroscience" +1687;21100407174;"Photonics Research";journal;"23279125";"Optica Publishing Group (formerly OSA)";No;No;1,836;Q1;103;325;864;15182;6382;857;7,06;46,71;32,07;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"2013-2025";"Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Materials Science; Physics and Astronomy" +1688;22717;"Business Ethics Quarterly";journal;"1052150X, 21533326";"Cambridge University Press";No;No;1,834;Q1;103;31;78;2884;417;74;5,02;93,03;47,27;1;United Kingdom;Western Europe;"Cambridge University Press";"1993, 1996-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Philosophy (Q1)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance" +1689;15437;"Biosensors and Bioelectronics";journal;"18734235, 09565663";"Elsevier Ltd";No;No;1,833;Q1;268;1059;2489;56604;28435;2485;11,51;53,45;41,18;0;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2026";"Biomedical Engineering (Q1); Biophysics (Q1); Biotechnology (Q1); Electrochemistry (Q1); Medicine (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Engineering; Materials Science; Medicine" +1690;14000156196;"International Journal of Sports Physiology and Performance";journal;"15550265, 15550273";"Human Kinetics Publishers Inc.";No;No;1,833;Q1;109;232;619;7415;2950;576;3,13;31,96;20,80;0;United States;Northern America;"Human Kinetics Publishers Inc.";"2006-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine" +1691;19662;"Critical Reviews in Microbiology";journal;"15497828, 1040841X";"Taylor and Francis Ltd.";No;No;1,831;Q1;124;82;137;12411;1317;137;8,56;151,35;41,80;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-1982, 1984-2026";"Applied Microbiology and Biotechnology (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q1)";"Immunology and Microbiology; Medicine" +1692;21594;"Systematic Entomology";journal;"13653113, 03076970";"Wiley-Blackwell Publishing Ltd";No;No;1,831;Q1;85;54;113;5575;605;112;4,89;103,24;24,82;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1976-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1)";"Agricultural and Biological Sciences" +1693;21101055725;"Energy and Built Environment";journal;"26661233";"KeAi Communications Co.";Yes;Yes;1,830;Q1;42;148;177;8390;2001;177;10,57;56,69;32,73;1;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1); Transportation (Q1)";"Energy; Engineering; Social Sciences" +1694;17811;"Materials Science and Engineering: A";journal;"09215093";"Elsevier Ltd";No;No;1,830;Q1;306;1654;4497;94740;39302;4496;8,46;57,28;29,16;0;United Kingdom;Western Europe;"Elsevier Ltd";"1988-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Nanoscience and Nanotechnology (Q1)";"Engineering; Materials Science; Physics and Astronomy" +1695;19600166327;"Food Engineering Reviews";journal;"18667910, 18667929";"Springer New York";No;No;1,828;Q1;87;46;93;6320;1453;93;14,53;137,39;34,13;0;United States;Northern America;"Springer New York";"2009-2026";"Industrial and Manufacturing Engineering (Q1)";"Engineering" +1696;21100805354;"GeroScience";journal;"25092715, 25092723";"Springer Science and Business Media Deutschland GmbH";No;No;1,827;Q1;103;770;799;54436;5353;788;6,74;70,70;47,16;3;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2017-2026";"Aging (Q1); Cardiology and Cardiovascular Medicine (Q1); Complementary and Alternative Medicine (Q1); Geriatrics and Gerontology (Q1); Veterinary (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Veterinary" +1697;17600155222;"Renewable Energy Focus";journal;"18780229, 17550084";"Elsevier Ltd";Yes;No;1,827;Q1;54;66;288;4051;3169;288;13,00;61,38;24,06;1;United Kingdom;Western Europe;"Elsevier Ltd";"2007-2026";"Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +1698;21100897159;"Water Research X";journal;"25899147";"Elsevier Ltd";Yes;No;1,826;Q1;41;170;132;10294;1020;129;7,39;60,55;38,46;1;United Kingdom;Western Europe;"Elsevier Ltd";"2018-2026";"Ecological Modeling (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Environmental Science" +1699;13354;"Journal of Teacher Education";journal;"00224871, 15527816";"SAGE Publications Inc.";No;No;1,825;Q1;126;36;125;2320;680;106;4,58;64,44;71,15;0;United States;Northern America;"SAGE Publications Inc.";"1950-2026";"Education (Q1)";"Social Sciences" +1700;21100778765;"Annual Review of Linguistics";journal;"23339683, 23339691";"Annual Reviews Inc.";No;No;1,824;Q1;42;15;69;1555;421;68;6,12;103,67;65,22;0;United States;Northern America;"Annual Reviews Inc.";"2015-2026";"Linguistics and Language (Q1)";"Social Sciences" +1701;21101310676;"NPJ Metabolic Health and Disease";journal;"29482828";"Springer Nature";Yes;No;1,824;Q1;11;46;36;4542;226;35;6,28;98,74;40,14;0;United Kingdom;Western Europe;"Springer Nature";"2023-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1702;4000148311;"Preventing Chronic Disease";journal;"21665435, 15451151";"Centers for Disease Control and Prevention (CDC)";Yes;Yes;1,824;Q1;108;64;296;1678;1438;287;4,76;26,22;70,25;2;United States;Northern America;"Centers for Disease Control and Prevention (CDC)";"2004-2025";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +1703;26556;"Catalysis Reviews - Science and Engineering";journal;"15205703, 01614940";"Taylor & Francis Group LLC";No;No;1,823;Q1;121;36;79;7364;932;78;10,75;204,56;29,61;0;United States;Northern America;"Taylor & Francis Group LLC";"1968-1972, 1974-2026";"Catalysis (Q1); Chemistry (miscellaneous) (Q1); Process Chemistry and Technology (Q1)";"Chemical Engineering; Chemistry" +1704;29011;"Journal of Risk and Uncertainty";journal;"15730476, 08955646";"Springer Netherlands";No;No;1,823;Q1;87;28;72;1171;197;72;2,85;41,82;34,92;1;Netherlands;Western Europe;"Springer Netherlands";"1988-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +1705;65469;"IEEE Radio Frequency Integrated Circuits Symposium, RFIC, Digest of Technical Papers";conference and proceedings;"10972633";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,823;-;54;115;260;1061;722;254;3,13;9,23;21,94;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1997-2025";"Electrical and Electronic Engineering";"Engineering" +1706;23306;"American Journal of Physiology - Cell Physiology";journal;"15221563, 03636143";"American Physiological Society";No;No;1,822;Q1;211;308;745;22497;4351;731;5,30;73,04;43,31;0;United States;Northern America;"American Physiological Society";"1977-2026";"Cell Biology (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1707;19700170231;"Criminology and Public Policy";journal;"17459133, 15386473";"Wiley-Blackwell Publishing Ltd";No;No;1,821;Q1;57;25;103;2025;560;98;4,51;81,00;55,84;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2006-2007, 2009, 2012-2026";"Law (Q1); Literature and Literary Theory (Q1); Public Administration (Q1)";"Arts and Humanities; Social Sciences" +1708;21100838810;"Journal de l'Ecole Polytechnique - Mathematiques";journal;"2270518X, 24297100";"Ecole Polytechnique";Yes;Yes;1,821;Q1;21;38;100;1684;132;100;1,14;44,32;13,41;0;France;Western Europe;"Ecole Polytechnique";"2014-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +1709;15653;"Journal of Marriage and Family";journal;"17413737, 00222445";"Wiley-Blackwell Publishing Ltd";No;No;1,821;Q1;199;129;207;8711;1023;207;4,72;67,53;67,61;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1973-1981, 1985, 1987, 1996-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Social Work (Q1)";"Arts and Humanities; Social Sciences" +1710;17843;"Radiographics";journal;"15271323, 02715333";"Radiological Society of North America Inc.";No;No;1,821;Q1;222;209;650;8345;2837;425;3,86;39,93;38,02;0;United States;Northern America;"Radiological Society of North America Inc.";"1985-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +1711;21801;"Redox Report";journal;"17432928, 13510002";"Taylor and Francis Ltd.";Yes;No;1,821;Q1;84;63;109;4109;891;109;7,30;65,22;46,98;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-1997, 1999-2026";"Biochemistry (Q1); Biochemistry (medical) (Q1); Cell Biology (Q1); Clinical Biochemistry (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1712;27514;"Antioxidants and Redox Signaling";journal;"15230864, 15577716";"Mary Ann Liebert Inc.";No;No;1,820;Q1;252;115;389;10693;2757;388;6,54;92,98;44,79;0;United States;Northern America;"Mary Ann Liebert Inc.";"1999-2026";"Biochemistry (Q1); Cell Biology (Q1); Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1713;16855;"Biochemical Society Transactions";journal;"14708752, 03005127";"Portland Press Ltd";No;No;1,818;Q1;171;122;550;11712;2635;550;4,61;96,00;41,92;0;United Kingdom;Western Europe;"Portland Press Ltd";"1973-2026";"Biochemistry (Q1)";"Biochemistry, Genetics and Molecular Biology" +1714;21100774141;"China Finance Review International";journal;"20441398, 20441401";"Emerald Group Publishing Ltd.";No;No;1,818;Q1;33;77;110;4841;1023;106;8,58;62,87;30,09;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2026";"Finance (Q1)";"Economics, Econometrics and Finance" +1715;21367;"Innovations in Education and Teaching International";journal;"14703297, 14703300";"Taylor and Francis Ltd.";No;No;1,818;Q1;74;243;266;9419;2291;245;9,96;38,76;52,46;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Education (Q1)";"Social Sciences" +1716;15375;"Journal of Anxiety Disorders";journal;"08876185, 18737897";"Elsevier Ltd";No;No;1,818;Q1;157;87;261;5518;1409;254;5,45;63,43;54,45;1;United Kingdom;Western Europe;"Elsevier Ltd";"1987-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +1717;21731;"Journal of Thoracic and Cardiovascular Surgery";journal;"00225223, 1097685X";"Elsevier Inc.";No;No;1,817;Q1;234;643;2882;12264;5201;980;2,13;19,07;28,86;0;United States;Northern America;"Elsevier Inc.";"1959-2026";"Cardiology and Cardiovascular Medicine (Q1); Pulmonary and Respiratory Medicine (Q1); Surgery (Q1)";"Medicine" +1718;21100368207;"ACS Photonics";journal;"23304022";"American Chemical Society";No;No;1,816;Q1;155;743;1536;38092;10506;1527;6,24;51,27;27,24;0;United States;Northern America;"American Chemical Society";"2014-2026";"Atomic and Molecular Physics, and Optics (Q1); Biotechnology (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science; Physics and Astronomy" +1719;25787;"Commentarii Mathematici Helvetici";journal;"00102571, 14208946";"European Mathematical Society Publishing House";Yes;Yes;1,816;Q1;49;16;49;805;73;49;1,66;50,31;8,33;0;Germany;Western Europe;"European Mathematical Society Publishing House";"1929-1937, 1939-1956, 1958-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +1720;27524;"International Journal of Coal Geology";journal;"01665162";"Elsevier B.V.";No;No;1,815;Q1;191;125;392;12065;2773;390;7,55;96,52;30,88;0;Netherlands;Western Europe;"Elsevier B.V.";"1980-2026";"Economic Geology (Q1); Fuel Technology (Q1); Geology (Q1); Stratigraphy (Q1)";"Earth and Planetary Sciences; Energy" +1721;21101294447;"npj Mental Health Research";journal;"27314251";"Nature Publishing Group";Yes;No;1,814;Q1;17;69;103;3837;805;94;8,41;55,61;49,35;0;United Kingdom;Western Europe;"Nature Publishing Group";"2022-2026";"Behavioral Neuroscience (Q1); Neuroscience (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Neuroscience; Psychology" +1722;25488;"Diabetes and Metabolism";journal;"12623636, 18781780";"Elsevier Masson s.r.l.";No;No;1,813;Q1;114;90;201;3634;924;156;4,77;40,38;50,50;1;France;Western Europe;"Elsevier Masson s.r.l.";"1996-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1723;14779;"School Psychology Review";journal;"02796015, 2372966X";"Routledge";No;No;1,813;Q1;110;85;157;5651;931;142;6,01;66,48;70,38;0;United States;Northern America;"Routledge";"1980-1981, 1983-1986, 1988-1989, 1991, 1996-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +1724;4200151509;"Molecular Diagnosis and Therapy";journal;"11792000, 11771062";"";No;No;1,812;Q1;76;66;175;4641;1087;169;5,69;70,32;46,53;0;Switzerland;Western Europe;"";"2001, 2006-2026";"Genetics (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +1725;24069;"Green Chemistry";journal;"14639262, 14639270";"Royal Society of Chemistry";No;No;1,811;Q1;304;1038;2663;73028;27993;2652;10,40;70,35;36,23;2;United Kingdom;Western Europe;"Royal Society of Chemistry";"1999-2026";"Environmental Chemistry (Q1); Pollution (Q1)";"Environmental Science" +1726;144981;"Quantitative Marketing and Economics";journal;"15707156, 1573711X";"Kluwer Academic Publishers";No;No;1,811;Q1;41;16;36;751;94;36;2,46;46,94;20,45;1;Netherlands;Western Europe;"Kluwer Academic Publishers";"2005-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +1727;27467;"Gynecologic Oncology";journal;"00908258, 10956859";"Academic Press Inc.";No;No;1,810;Q1;198;311;1017;10060;4228;947;3,93;32,35;55,38;1;United States;Northern America;"Academic Press Inc.";"1972-2026";"Obstetrics and Gynecology (Q1); Oncology (Q1)";"Medicine" +1728;29032;"New Political Economy";journal;"14699923, 13563467";"Routledge";No;No;1,809;Q1;85;81;188;5802;1136;188;4,96;71,63;31,65;6;United Kingdom;Western Europe;"Routledge";"1996-2026";"Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +1729;29684;"Urban Studies";journal;"00420980, 1360063X";"SAGE Publications Ltd";No;No;1,809;Q1;195;247;512;16439;3294;496;6,39;66,55;44,91;8;United Kingdom;Western Europe;"SAGE Publications Ltd";"1964-2026";"Environmental Science (miscellaneous) (Q1); Urban Studies (Q1)";"Environmental Science; Social Sciences" +1730;21100283775;"Biology of Sex Differences";journal;"20426410";"BioMed Central Ltd";Yes;No;1,808;Q1;76;108;265;8292;1467;259;5,01;76,78;57,72;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Endocrinology (Q1); Gender Studies (Q1)";"Biochemistry, Genetics and Molecular Biology; Social Sciences" +1731;18400156711;"Cambridge Journal of Regions, Economy and Society";journal;"17521386, 17521378";"Oxford University Press";No;No;1,808;Q1;83;46;133;3123;837;115;5,99;67,89;30,11;4;United Kingdom;Western Europe;"Oxford University Press";"2008-2026";"Economics and Econometrics (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Social Sciences" +1732;21928;"Fish and Fisheries";journal;"14672960, 14672979";"Wiley-Blackwell Publishing Ltd";No;No;1,808;Q1;149;78;224;7143;1606;222;6,74;91,58;35,52;10;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2001-2026";"Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Management, Monitoring, Policy and Law (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +1733;28795;"GIScience and Remote Sensing";journal;"15481603";"Taylor and Francis Ltd.";Yes;No;1,808;Q1;76;148;320;10481;2537;320;7,21;70,82;33,51;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +1734;21100227406;"Sustainability Accounting, Management and Policy Journal";journal;"20408021, 2040803X";"Emarald Group Publishing Ltd";No;No;1,808;Q1;68;112;164;10714;2224;162;12,14;95,66;44,15;0;United Kingdom;Western Europe;"Emarald Group Publishing Ltd";"2010-2026";"Accounting (Q1); Business, Management and Accounting (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Business, Management and Accounting; Energy" +1735;21165;"PharmacoEconomics";journal;"11707690, 11792027";"";Yes;No;1,807;Q1;127;108;326;6353;1637;291;5,09;58,82;45,29;4;Switzerland;Western Europe;"";"1992-2026";"Health Policy (Q1); Pharmacology (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +1736;29152;"Cancer Immunology, Immunotherapy";journal;"14320851, 03407004";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,805;Q1;148;366;828;16337;4563;822;5,56;44,64;40,92;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1976-2026";"Cancer Research (Q1); Immunology (Q1); Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +1737;19875;"Journal of Common Market Studies";journal;"14685965, 00219886";"Wiley-Blackwell Publishing Ltd";No;No;1,804;Q1;118;165;327;10862;1831;320;5,62;65,83;37,09;25;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1962-2026";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Political Science and International Relations (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +1738;30022;"Journal of Personality";journal;"00223506, 14676494";"Wiley-Blackwell Publishing Ltd";No;No;1,804;Q1;180;115;260;7949;1240;260;3,82;69,12;49,79;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1932-2026";"Social Psychology (Q1)";"Psychology" +1739;21101170600;"Psychoradiology";journal;"26344416";"Oxford University Press";Yes;Yes;1,804;Q1;15;30;83;2116;449;73;5,31;70,53;48,17;0;United Kingdom;Western Europe;"Oxford University Press";"2021-2026";"Artificial Intelligence (Q1); Clinical Psychology (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Computer Science; Medicine; Neuroscience; Psychology" +1740;27365;"World Bank Economic Review";journal;"1564698X, 02586770";"Oxford University Press";No;No;1,804;Q1;111;46;114;2251;431;114;2,70;48,93;35,25;18;United Kingdom;Western Europe;"Oxford University Press";"1986-2026";"Accounting (Q1); Development (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +1741;21100855886;"Journal of Geophysical Research: Solid Earth";journal;"21699356, 21699313";"John Wiley and Sons Inc";No;No;1,803;Q1;295;610;1614;55255;7765;1609;4,13;90,58;26,56;0;United States;Northern America;"John Wiley and Sons Inc";"1979-1980, 1985-1986, 1988, 1990, 1993-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geochemistry and Petrology (Q1); Geophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences" +1742;26268;"Rock Mechanics and Rock Engineering";journal;"07232632, 1434453X";"Springer";No;No;1,803;Q1;166;957;1476;52666;11829;1462;7,71;55,03;24,78;1;Austria;Western Europe;"Springer";"1983-2026";"Civil and Structural Engineering (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Engineering" +1743;12300154713;"Japanese Dental Science Review";journal;"18827616, 22136851";"Elsevier Ltd";Yes;Yes;1,802;Q1;51;25;98;1559;907;96;8,72;62,36;47,62;0;United Kingdom;Western Europe;"Elsevier Ltd";"2008-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +1744;21270;"Journal of Clinical Immunology";journal;"02719142, 15732592";"Springer";No;No;1,802;Q1;123;163;614;6120;2125;403;2,77;37,55;51,72;0;United States;Northern America;"Springer";"1981-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +1745;16795;"Journal of Pineal Research";journal;"1600079X, 07423098";"Wiley-Blackwell Publishing Ltd";No;No;1,802;Q1;177;70;203;4135;1551;199;7,03;59,07;45,63;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1984-2026";"Endocrinology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1746;13736;"British Journal of Ophthalmology";journal;"14682079, 00071161";"BMJ Publishing Group";No;No;1,800;Q1;192;302;795;9217;4120;780;5,19;30,52;44,87;1;United Kingdom;Western Europe;"BMJ Publishing Group";"1941-2026";"Cellular and Molecular Neuroscience (Q1); Ophthalmology (Q1); Sensory Systems (Q1)";"Medicine; Neuroscience" +1747;21100463046;"Compendia Rerum Ludaicarum ad Novum Testamentum";book series;"18774970";"Brill Academic Publishers";No;No;1,799;Q1;7;12;1;772;1;1;1,00;64,33;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009, 2014, 2018, 2023, 2025";"Animal Science and Zoology (Q1); Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Religious Studies (Q1)";"Agricultural and Biological Sciences; Arts and Humanities; Social Sciences" +1748;21100457074;"Metaforms";book series;"22129405";"Brill Academic Publishers";No;No;1,799;Q1;7;17;57;1293;5;1;0,09;76,06;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2020, 2023-2025";"Classics (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +1749;25874;"Sustainable Development";journal;"10991719, 09680802";"John Wiley and Sons Ltd";No;No;1,799;Q1;125;808;843;70562;9930;839;11,73;87,33;38,05;14;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1993-2026";"Development (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Social Sciences" +1750;21101287773;"Environmental Research: Climate";journal;"27525295";"Institute of Physics";Yes;No;1,798;Q1;18;81;196;5733;1119;196;4,38;70,78;41,19;3;United Kingdom;Western Europe;"Institute of Physics";"2022-2026";"Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q1)";"Environmental Science" +1751;21100779230;"RMD Open";journal;"20565933";"BMJ Publishing Group";Yes;No;1,798;Q1;74;246;824;8894;3830;770;4,61;36,15;46,32;1;United Kingdom;Western Europe;"BMJ Publishing Group";"2015-2026";"Immunology (Q1); Immunology and Allergy (Q1); Rheumatology (Q1)";"Immunology and Microbiology; Medicine" +1752;6300153120;"Educational Management Administration and Leadership";journal;"17411440, 17411432";"SAGE Publications Ltd";No;No;1,797;Q1;73;181;228;12789;1642;209;6,87;70,66;49,09;9;United Kingdom;Western Europe;"SAGE Publications Ltd";"1972-1993, 1995-1999, 2003-2026";"Education (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Social Sciences" +1753;5300152235;"Neuroscience Bulletin";journal;"19958218, 16737067";"Springer";No;No;1,797;Q1;78;222;494;13297;2467;435;5,14;59,90;44,68;0;China;Asiatic Region;"Springer";"2005-2026";"Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +1754;12878;"Chemistry of Materials";journal;"15205002, 08974756";"American Chemical Society";No;No;1,796;Q1;449;870;3069;53074;20982;3020;6,63;61,00;30,23;1;United States;Northern America;"American Chemical Society";"1989-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1)";"Chemical Engineering; Chemistry; Materials Science" +1755;21100400826;"Journal of Energy Storage";journal;"2352152X";"Elsevier B.V.";No;No;1,795;Q1;166;4063;10135;256819;112835;10066;11,01;63,21;30,29;3;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering" +1756;19873;"Journal of Orthopaedic and Sports Physical Therapy";journal;"19381344, 01906011";"Movement Science Media";No;No;1,794;Q1;161;84;258;3523;1380;232;4,69;41,94;42,33;0;United States;Northern America;"Movement Science Media";"1979-2026";"Medicine (miscellaneous) (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine" +1757;200147110;"Information Communication and Society";journal;"14684462, 1369118X";"Routledge";No;No;1,793;Q1;136;296;466;17766;3057;454;5,86;60,02;46,09;0;United Kingdom;Western Europe;"Routledge";"2001, 2005-2026";"Communication (Q1); Library and Information Sciences (Q1)";"Social Sciences" +1758;21100463549;"Reviews in Physics";journal;"24054283";"Elsevier B.V.";Yes;No;1,793;Q1;33;21;18;1788;209;18;9,91;85,14;28,75;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2025";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +1759;11600153640;"Quarterly Journal of Political Science";journal;"15540634, 15540626";"Now Publishers Inc";No;No;1,792;Q1;51;16;46;1108;94;44;2,00;69,25;6,90;1;United States;Northern America;"Now Publishers Inc";"2006-2025";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +1760;21100432519;"International Journal of Coal Science and Technology";journal;"21987823, 20958293";"Springer International Publishing AG";Yes;Yes;1,791;Q1;59;98;267;6019;2646;267;10,15;61,42;29,55;0;Switzerland;Western Europe;"Springer International Publishing AG";"2014-2026";"Energy Engineering and Power Technology (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Energy" +1761;21100206607;"International Journal of Management Education";journal;"14728117";"Elsevier B.V.";No;No;1,791;Q1;74;170;439;14744;4709;434;11,18;86,73;51,01;1;Netherlands;Western Europe;"Elsevier B.V.";"1970, 2012-2026";"Education (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Social Sciences" +1762;12549;"BJOG: An International Journal of Obstetrics and Gynaecology";journal;"14700328, 14710528";"John Wiley and Sons Inc";No;No;1,790;Q1;201;423;978;12975;3177;605;3,22;30,67;60,58;9;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1902-1915, 1921-2026";"Obstetrics and Gynecology (Q1)";"Medicine" +1763;17391;"IEEE Transactions on Signal Processing";journal;"19410476, 1053587X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,790;Q1;328;356;1127;17577;7640;1127;6,01;49,37;24,59;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1991-2026";"Electrical and Electronic Engineering (Q1); Signal Processing (Q1)";"Computer Science; Engineering" +1764;24598;"Mathematical Models and Methods in Applied Sciences";journal;"02182025, 17936314";"World Scientific Publishing Co. Pte Ltd";No;No;1,790;Q1;103;67;215;4073;707;214;2,73;60,79;26,63;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1992, 1996-2026";"Applied Mathematics (Q1); Modeling and Simulation (Q1)";"Mathematics" +1765;21101248207;"Molecular Therapy Oncology";journal;"29503299";"Cell Press";Yes;No;1,790;Q1;57;159;387;8532;1956;340;4,22;53,66;46,45;0;United States;Northern America;"Cell Press";"2024-2026";"Cancer Research (Q1); Molecular Medicine (Q1); Oncology (Q1); Pharmacology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1766;21101045729;"People and Nature";journal;"25758314";"Wiley-Blackwell Publishing Ltd";Yes;No;1,790;Q1;55;258;444;22294;2894;437;6,43;86,41;49,39;7;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2019-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +1767;21100786208;"Kidney International Reports";journal;"24680249";"Elsevier Inc.";Yes;No;1,789;Q1;69;567;1183;14378;4470;899;3,86;25,36;44,57;2;United States;Northern America;"Elsevier Inc.";"2016-2026";"Nephrology (Q1)";"Medicine" +1768;21101242952;"PLOS Digital Health";journal;"27673170";"Public Library of Science";Yes;No;1,789;Q1;37;322;546;15241;4757;528;8,53;47,33;44,12;1;United States;Northern America;"Public Library of Science";"2022-2026";"Health Informatics (Q1)";"Medicine" +1769;21100779064;"Soft Robotics";journal;"21695172, 21695180";"Mary Ann Liebert Inc.";No;No;1,789;Q1;99;92;293;4059;2488;292;7,47;44,12;26,53;0;United States;Northern America;"Mary Ann Liebert Inc.";"2014-2026";"Artificial Intelligence (Q1); Biophysics (Q1); Control and Systems Engineering (Q1)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Engineering" +1770;11600154702;"Australasian Journal of Educational Technology";journal;"14493098, 14495554";"Australasian Society for Computers in Learning in Tertiary Education (ASCILITE)";Yes;Yes;1,788;Q1;82;32;173;1782;1395;169;8,63;55,69;48,72;0;Australia;Pacific Region;"Australasian Society for Computers in Learning in Tertiary Education (ASCILITE)";"2008-2025";"Education (Q1); E-learning (Q1)";"Social Sciences" +1771;19700177555;"Molecular Autism";journal;"20402392";"BioMed Central Ltd";Yes;No;1,788;Q1;93;59;149;4393;958;147;5,38;74,46;57,04;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Developmental Biology (Q1); Developmental Neuroscience (Q1); Molecular Biology (Q1); Psychiatry and Mental Health (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +1772;19700173006;"Clinical Epigenetics";journal;"18687083, 18687075";"BioMed Central Ltd";Yes;No;1,787;Q1;94;208;567;13437;3183;562;5,48;64,60;47,77;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Developmental Biology (Q1); Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1773;21100220156;"Journal of Hospitality and Tourism Technology";journal;"17579880, 17579899";"Emarald Group Publishing Ltd";No;No;1,785;Q1;66;154;157;10184;1981;153;12,17;66,13;42,47;0;United Kingdom;Western Europe;"Emarald Group Publishing Ltd";"2010-2026";"Computer Science Applications (Q1); Information Systems (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Computer Science" +1774;22414;"American Heart Journal";journal;"10976744, 00028703";"Elsevier Inc.";No;No;1,784;Q1;218;201;599;6456;2156;548;3,55;32,12;32,09;2;United States;Northern America;"Elsevier Inc.";"1925-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +1775;21101037113;"Cell Reports Physical Science";journal;"26663864";"Cell Press";Yes;No;1,784;Q1;80;448;1337;28411;9596;1324;6,64;63,42;31,80;1;United States;Northern America;"Cell Press";"2020-2026";"Chemistry (miscellaneous) (Q1); Energy (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Chemistry; Energy; Engineering; Materials Science; Physics and Astronomy" +1776;21101081610;"International Journal of Information Management Data Insights";journal;"26670968";"Elsevier B.V.";Yes;No;1,784;Q1;61;81;242;6553;3811;241;15,84;80,90;33,05;1;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Artificial Intelligence (Q1); Industrial and Manufacturing Engineering (Q1); Information Systems (Q1); Information Systems and Management (Q1); Library and Information Sciences (Q1); Management Information Systems (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering; Social Sciences" +1777;14994;"Current Opinion in Psychiatry";journal;"14736578, 09517367";"Lippincott Williams and Wilkins";No;No;1,783;Q1;122;261;184;3262;1159;169;5,82;12,50;46,04;0;United States;Northern America;"Lippincott Williams and Wilkins";"1988-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +1778;24182;"Engineering Applications of Artificial Intelligence";journal;"09521976";"Elsevier Ltd";No;No;1,782;Q1;169;2937;4083;170118;45772;4079;10,87;57,92;28,40;1;United Kingdom;Western Europe;"Elsevier Ltd";"1988-2026";"Artificial Intelligence (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +1779;145695;"Journal of Financial Econometrics";journal;"14798417, 14798409";"Oxford University Press";No;No;1,782;Q1;58;51;131;2163;359;129;2,39;42,41;21,24;3;United Kingdom;Western Europe;"Oxford University Press";"2004-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +1780;28552;"International Small Business Journal: Researching Entrepreneurship";journal;"02662426, 17412870";"SAGE Publications Ltd";No;No;1,781;Q1;126;48;114;5011;877;113;6,55;104,40;44,30;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1982-2026";"Business and International Management (Q1)";"Business, Management and Accounting" +1781;15577;"Critical Reviews in Biotechnology";journal;"15497801, 07388551";"Taylor and Francis Ltd.";No;No;1,779;Q1;144;90;225;13214;2698;225;11,41;146,82;43,02;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2026";"Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +1782;23316;"Teaching and Teacher Education";journal;"0742051X";"Elsevier Ltd";No;No;1,779;Q1;185;332;934;24410;6071;933;6,11;73,52;57,65;6;United Kingdom;Western Europe;"Elsevier Ltd";"1985-2026";"Education (Q1)";"Social Sciences" +1783;19696;"International Journal of Project Management";journal;"02637863";"Elsevier B.V.";No;No;1,778;Q1;200;54;197;4853;1635;196;7,00;89,87;42,31;0;United Kingdom;Western Europe;"Elsevier B.V.";"1983-2026";"Business and International Management (Q1); Management, Monitoring, Policy and Law (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting; Environmental Science" +1784;145210;"Landslides";journal;"16125118, 1612510X";"Springer Verlag";No;No;1,778;Q1;134;287;568;15546;4469;537;7,81;54,17;29,24;1;Germany;Western Europe;"Springer Verlag";"2004-2026";"Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences" +1785;24689;"Transactions of the American Mathematical Society";journal;"00029947, 10886850";"American Mathematical Society";No;No;1,778;Q1;114;247;764;8693;1142;764;1,42;35,19;18,87;0;United States;Northern America;"American Mathematical Society";"1900-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +1786;18854;"Water Resources Research";journal;"19447973, 00431397";"Wiley-Blackwell";Yes;No;1,778;Q1;290;702;1838;54002;11841;1806;6,24;76,93;30,38;0;United States;Northern America;"Wiley-Blackwell";"1965-2026";"Water Science and Technology (Q1)";"Environmental Science" +1787;21100788800;"Current Opinion in Green and Sustainable Chemistry";journal;"24522236";"Elsevier B.V.";No;No;1,777;Q1;91;59;360;3009;3972;336;10,70;51,00;35,67;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Catalysis (Q1); Chemistry (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Process Chemistry and Technology (Q1); Waste Management and Disposal (Q1)";"Chemical Engineering; Chemistry; Environmental Science" +1788;21887;"European Journal of Anaesthesiology";journal;"02650215, 13652346";"Lippincott Williams and Wilkins";No;No;1,777;Q1;100;201;506;5087;2053;267;4,51;25,31;36,62;0;United Kingdom;Western Europe;"Lippincott Williams and Wilkins";"1984-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +1789;24592;"European Journal of International Relations";journal;"14603713, 13540661";"SAGE Publications Ltd";No;No;1,776;Q1;117;68;122;6528;590;121;5,07;96,00;37,86;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +1790;21100414802;"Genes and Diseases";journal;"23524820, 23523042";"KeAi Communications Co.";Yes;No;1,776;Q1;77;346;806;18234;5087;784;6,05;52,70;45,45;0;China;Asiatic Region;"KeAi Communications Co.";"2014-2026";"Biochemistry (Q1); Cell Biology (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1791;21101047803;"Cancer Drug Resistance";journal;"2578532X";"OAE Publishing Inc.";No;No;1,775;Q1;36;47;179;5506;1184;177;6,92;117,15;42,51;0;United States;Northern America;"OAE Publishing Inc.";"2018-2025";"Cancer Research (Q1); Pharmacology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1792;21100403234;"Alzheimer's and Dementia: Diagnosis, Assessment and Disease Monitoring";journal;"23528729";"John Wiley and Sons Inc";Yes;No;1,774;Q1;79;175;387;7207;1970;371;4,63;41,18;49,14;1;United States;Northern America;"John Wiley and Sons Inc";"2015-2026";"Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +1793;21101081612;"Green Chemical Engineering";journal;"26669528, 20969147";"KeAi Communications Co.";Yes;No;1,774;Q1;37;82;137;5829;1555;134;12,37;71,09;34,27;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Catalysis (Q1); Chemical Engineering (miscellaneous) (Q1); Filtration and Separation (Q1); Process Chemistry and Technology (Q1)";"Chemical Engineering" +1794;21101212055;"Cancer Research Communications";journal;"27679764";"American Association for Cancer Research Inc.";Yes;No;1,773;Q1;22;189;603;7648;2397;603;3,87;40,47;43,02;0;United States;Northern America;"American Association for Cancer Research Inc.";"2021-2026";"Cancer Research (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1795;12844;"Clinical Psychology: Science and Practice";journal;"14682850, 09695893";"American Psychological Association";No;No;1,773;Q1;131;35;201;1289;883;190;3,50;36,83;51,96;0;United States;Northern America;"American Psychological Association";"1994-2025";"Clinical Psychology (Q1)";"Psychology" +1796;21100239250;"Journal of Allergy and Clinical Immunology: In Practice";journal;"22132198, 22132201";"American Academy of Allergy, Asthma and Immunology";No;No;1,773;Q1;117;556;1796;17723;7270;1364;3,91;31,88;50,96;1;United States;Northern America;"American Academy of Allergy, Asthma and Immunology";"2013-2026";"Immunology and Allergy (Q1)";"Medicine" +1797;23874;"Journal of Differential Equations";journal;"00220396, 10902732";"Academic Press Inc.";No;No;1,773;Q1;159;786;1609;28694;4349;1605;2,45;36,51;25,12;0;United States;Northern America;"Academic Press Inc.";"1965-2026";"Analysis (Q1); Applied Mathematics (Q1)";"Mathematics" +1798;16956;"Cities";journal;"02642751";"Elsevier Ltd";No;No;1,772;Q1;162;790;1755;61173;15154;1749;8,07;77,43;41,21;12;United Kingdom;Western Europe;"Elsevier Ltd";"1983-2026";"Development (Q1); Sociology and Political Science (Q1); Tourism, Leisure and Hospitality Management (Q1); Urban Studies (Q1)";"Business, Management and Accounting; Social Sciences" +1799;26365;"Demography";journal;"00703370, 15337790";"Duke University Press";No;No;1,772;Q1;164;110;270;4398;1078;269;3,50;39,98;45,91;6;United States;Northern America;"Duke University Press";"1964-2025";"Demography (Q1)";"Social Sciences" +1800;25290;"International Journal of Drug Policy";journal;"18734758, 09553959";"Elsevier B.V.";No;No;1,771;Q1;112;329;792;17321;3683;772;4,37;52,65;55,66;10;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Health Policy (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1801;21100907002;"Neurospine";journal;"25866583, 25866591";"Korean Spinal Neurosurgery Society";Yes;No;1,771;Q1;45;112;429;3393;1902;337;4,35;30,29;23,35;0;South Korea;Asiatic Region;"Korean Spinal Neurosurgery Society";"2018-2026";"Neurology (clinical) (Q1); Surgery (Q1)";"Medicine" +1802;21101202019;"BenchCouncil Transactions on Benchmarks, Standards and Evaluations";journal;"27724859";"";Yes;Yes;1,770;Q1;13;24;66;1069;1014;59;13,29;44,54;25,86;0;China;Asiatic Region;"";"2021-2025";"Artificial Intelligence (Q1); Computer Science (miscellaneous) (Q1); Multidisciplinary (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Computer Science; Multidisciplinary" +1803;3100147401;"Ecological Informatics";journal;"15749541";"Elsevier B.V.";Yes;No;1,770;Q1;101;599;1310;46694;12283;1291;9,60;77,95;31,57;4;Netherlands;Western Europe;"Elsevier B.V.";"2006-2026";"Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Ecological Modeling (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Modeling and Simulation (Q1)";"Agricultural and Biological Sciences; Computer Science; Environmental Science; Mathematics" +1804;5700191219;"IEEE Transactions on Biomedical Circuits and Systems";journal;"19324545, 19409990";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,770;Q1;110;113;332;4839;1967;322;5,28;42,82;24,80;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2007-2026";"Biomedical Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Engineering" +1805;23882;"Journal of Molecular and Cellular Cardiology";journal;"00222828, 10958584";"Academic Press";No;No;1,770;Q1;187;136;395;8572;2011;355;4,55;63,03;43,19;0;United States;Northern America;"Academic Press";"1970-2026";"Cardiology and Cardiovascular Medicine (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1806;13070;"Spine Journal";journal;"15299430, 18781632";"Elsevier Inc.";No;No;1,770;Q1;151;343;735;12464;3656;636;4,51;36,34;20,26;0;United States;Northern America;"Elsevier Inc.";"2001-2026";"Neurology (clinical) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +1807;145480;"Environmental Health: A Global Access Science Source";journal;"1476069X";"BioMed Central Ltd";Yes;No;1,769;Q1;133;95;327;6338;2278;309;6,89;66,72;52,55;7;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Environmental Science; Medicine" +1808;15578;"European Psychiatry";journal;"09249338, 17783585";"Cambridge University Press";Yes;No;1,769;Q1;121;179;275;10329;1493;272;4,63;57,70;48,97;2;United Kingdom;Western Europe;"Cambridge University Press";"1991-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +1809;19295;"Gender, Work and Organization";journal;"14680432, 09686673";"Wiley-Blackwell Publishing Ltd";No;No;1,769;Q1;108;155;382;11305;2044;364;5,28;72,94;76,22;9;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Gender Studies (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Social Sciences" +1810;20356;"Reviews in Medical Virology";journal;"10529276, 10991654";"John Wiley and Sons Ltd";No;No;1,769;Q1;115;70;327;6371;2074;302;5,86;91,01;43,67;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1991-2026";"Infectious Diseases (Q1); Virology (Q1)";"Immunology and Microbiology; Medicine" +1811;20308;"Ecology";journal;"19399170, 00129658";"Ecological Society of America";No;No;1,767;Q1;357;339;841;18555;3652;687;4,08;54,73;37,68;1;United States;Northern America;"Ecological Society of America";"1952-1953, 1959, 1961, 1963, 1966, 1969-1977, 1979-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +1812;21100199855;"Proceedings of the VLDB Endowment";journal;"21508097";"VLDB Endowment";No;No;1,767;Q1;174;492;1105;26969;6079;1063;5,07;54,82;25,22;0;United States;Northern America;"VLDB Endowment";"2008-2025";"Computer Science (miscellaneous) (Q1)";"Computer Science" +1813;21101098750;"Brain Communications";journal;"26321297";"Oxford University Press";Yes;No;1,766;Q1;52;513;1118;30680;4933;1015;4,02;59,81;46,67;3;United Kingdom;Western Europe;"Oxford University Press";"2019-2026";"Biological Psychiatry (Q1); Cellular and Molecular Neuroscience (Q1); Neurology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +1814;27476;"Critical Reviews in Solid State and Materials Sciences";journal;"15476561, 10408436";"Taylor and Francis Ltd.";No;No;1,766;Q1;87;36;81;7315;1015;81;10,87;203,19;26,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-1984, 1986-2026";"Chemical Engineering (miscellaneous) (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Physical and Theoretical Chemistry (Q1)";"Chemical Engineering; Chemistry; Engineering; Materials Science; Physics and Astronomy" +1815;14428;"Journal of the Mechanics and Physics of Solids";journal;"00225096";"Elsevier Ltd";No;No;1,766;Q1;216;311;905;20156;5822;905;6,38;64,81;21,74;0;United Kingdom;Western Europe;"Elsevier Ltd";"1952-2026";"Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Physics and Astronomy" +1816;21101373168;"Decision Making Advances";journal;"29562384";"Scientific Oasis";No;No;1,765;Q1;13;20;28;699;402;28;14,36;34,95;25,00;0;Serbia;Eastern Europe;"Scientific Oasis";"2023-2026";"Applied Mathematics (Q1); Artificial Intelligence (Q1); Decision Sciences (miscellaneous) (Q1); Management Science and Operations Research (Q1)";"Computer Science; Decision Sciences; Mathematics" +1817;29547;"Journal of Applied Ecology";journal;"00218901, 13652664";"Wiley-Blackwell Publishing Ltd";No;No;1,765;Q1;228;281;735;18040;4136;729;5,07;64,20;38,69;11;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1968, 1973-2026";"Ecology (Q1)";"Environmental Science" +1818;68935;"Nutrition Research Reviews";journal;"09544224, 14752700";"Cambridge University Press";No;No;1,765;Q1;111;61;88;9280;717;88;7,41;152,13;54,04;0;United Kingdom;Western Europe;"Cambridge University Press";"1988-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +1819;4700152825;"Obesity";journal;"19307381, 1930739X";"John Wiley and Sons Inc";No;No;1,765;Q1;241;248;796;10219;3648;717;4,55;41,21;58,78;2;United States;Northern America;"John Wiley and Sons Inc";"2006-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +1820;11600153424;"Canadian Journal of School Psychology";journal;"21543984, 08295735";"SAGE Publications Ltd";No;No;1,762;Q1;41;15;68;728;322;66;1,96;48,53;78,85;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1985, 1994-2003, 2005-2026";"Developmental and Educational Psychology (Q1)";"Psychology" +1821;21101133324;"Ophthalmology Science";journal;"26669145";"Elsevier Inc.";Yes;No;1,762;Q1;28;281;420;10525;2284;399;5,45;37,46;40,71;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Ophthalmology (Q1)";"Medicine" +1822;21101055809;"Human Genetics and Genomics Advances";journal;"26662477";"Elsevier Inc.";Yes;No;1,761;Q1;24;116;228;5898;881;223;3,24;50,84;50,51;0;United States;Northern America;"Elsevier Inc.";"2020-2026";"Genetics (clinical) (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1823;5800207373;"Journal of Positive Psychology";journal;"17439760, 17439779";"Routledge";No;No;1,761;Q1;120;142;250;8671;1458;246;5,53;61,06;49,51;1;United Kingdom;Western Europe;"Routledge";"2006-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +1824;18173;"Mathematical Finance";journal;"09601627, 14679965";"Wiley-Blackwell Publishing Ltd";No;No;1,761;Q1;92;31;98;1343;351;96;4,09;43,32;17,33;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1991-2026";"Accounting (Q1); Applied Mathematics (Q1); Economics and Econometrics (Q1); Finance (Q1); Social Sciences (miscellaneous) (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Mathematics; Social Sciences" +1825;21100916902;"Learning: Research and Practice";journal;"23735082, 23735090";"Routledge";No;No;1,760;Q1;22;25;49;1364;354;40;9,53;54,56;50,00;0;United States;Northern America;"Routledge";"2015-2025";"Education (Q1)";"Social Sciences" +1826;19700188421;"Monthly Notices of the Royal Astronomical Society: Letters";journal;"17453925, 17453933";"Oxford University Press";Yes;No;1,760;Q1;130;135;487;7161;2019;487;4,33;53,04;27,17;0;United Kingdom;Western Europe;"Oxford University Press";"2005-2025";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +1827;21101369929;"Russian Musicology";journal;"30343836";"Gnesins Russian Academy of Music";Yes;No;1,760;Q1;1;46;1;725;1;1;1,00;15,76;67,39;0;Russian Federation;Eastern Europe;"Gnesins Russian Academy of Music";"2024-2025";"Arts and Humanities (miscellaneous) (Q1); Education (Q1); Music (Q1); Religious Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +1828;25155;"Catena";journal;"03418162";"Elsevier B.V.";No;No;1,759;Q1;187;908;2469;71878;18146;2444;7,07;79,16;36,95;8;Netherlands;Western Europe;"Elsevier B.V.";"1973, 1975-2026";"Earth-Surface Processes (Q1)";"Earth and Planetary Sciences" +1829;15906;"Geotextiles and Geomembranes";journal;"02661144";"Elsevier B.V.";No;No;1,759;Q1;127;112;253;6135;1613;248;6,09;54,78;23,02;0;Netherlands;Western Europe;"Elsevier B.V.";"1984-1994, 1996-2026";"Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1); Materials Science (miscellaneous) (Q1)";"Earth and Planetary Sciences; Engineering; Materials Science" +1830;21101259095;"IEEE Open Journal of the Solid-State Circuits Society";journal;"26441349";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,759;Q1;18;45;79;1908;360;72;4,04;42,40;18,60;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2021-2026";"Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Engineering; Materials Science" +1831;12430;"Molecular Cancer Research";journal;"15417786, 15573125";"American Association for Cancer Research Inc.";No;No;1,759;Q1;162;77;338;4396;1740;334;5,65;57,09;40,15;0;United States;Northern America;"American Association for Cancer Research Inc.";"2002-2026";"Cancer Research (Q1); Molecular Biology (Q1); Oncology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1832;21100197181;"NPG Asia Materials";journal;"18844057, 18844049";"Nature Publishing Group";Yes;No;1,759;Q1;129;47;228;2573;2003;228;8,90;54,74;27,39;0;United States;Northern America;"Nature Publishing Group";"2009-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Modeling and Simulation (Q1)";"Materials Science; Mathematics; Physics and Astronomy" +1833;91796;"Progress in Orthodontics";journal;"17237785, 21961042";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;1,759;Q1;58;52;146;2056;956;146;6,31;39,54;37,54;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2003-2026";"Orthodontics (Q1)";"Dentistry" +1834;21100445639;"Biological Psychiatry: Cognitive Neuroscience and Neuroimaging";journal;"24519030, 24519022";"Elsevier Inc.";No;No;1,758;Q1;71;233;470;13875;1834;345;3,63;59,55;45,82;1;United States;Northern America;"Elsevier Inc.";"2016-2026";"Biological Psychiatry (Q1); Cognitive Neuroscience (Q1); Neurology (clinical) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine; Neuroscience" +1835;28918;"IEEE Transactions on Dependable and Secure Computing";journal;"15455971, 19410018";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,758;Q1;117;593;1056;30519;8402;1056;7,05;51,47;28,37;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2004-2026";"Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +1836;21101159010;"MicroLife";journal;"26336693";"Oxford University Press";Yes;No;1,758;Q1;16;43;90;2755;313;82;3,17;64,07;47,91;0;United Kingdom;Western Europe;"Oxford University Press";"2020-2026";"Immunology and Microbiology (miscellaneous) (Q1)";"Immunology and Microbiology" +1837;21101226474;"Green Energy and Resources";journal;"29497205";"Elsevier B.V.";Yes;No;1,757;Q1;18;26;56;1824;690;53;12,32;70,15;28,70;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Environmental Science" +1838;13408;"Health Services Research";journal;"14756773, 00179124";"John Wiley and Sons Inc";No;No;1,757;Q1;154;149;483;5692;1686;420;3,23;38,20;56,16;9;United States;Northern America;"John Wiley and Sons Inc";"1966-2026";"Health Policy (Q1)";"Medicine" +1839;2300147402;"Proceedings of the Annual ACM Symposium on Theory of Computing";conference and proceedings;"07378017";"Association for Computing Machinery";No;No;1,757;-;138;221;482;10225;2129;476;4,18;46,27;17,64;0;United States;Northern America;"Association for Computing Machinery";"1969-1982, 1984, 1988, 1991-1994, 1996, 2000, 2005-2025";"Software";"Computer Science" +1840;144961;"European Journal of Innovation Management";journal;"14601060";"Emerald Group Publishing Ltd.";No;No;1,755;Q1;97;258;370;24640;4348;369;11,96;95,50;42,28;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1998-2026";"Management of Technology and Innovation (Q1)";"Business, Management and Accounting" +1841;23145;"Language Learning";journal;"14679922, 00238333";"Wiley-Blackwell Publishing Ltd";No;No;1,754;Q1;148;72;174;4505;738;130;3,39;62,57;52,02;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1948-1953, 1955-1956, 1958-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +1842;21101257044;"Life Medicine";journal;"27551733";"Oxford University Press";Yes;Yes;1,754;Q1;16;34;148;2441;496;120;3,55;71,79;40,79;0;United Kingdom;Western Europe;"Oxford University Press";"2022-2026";"Aging (Q1); Arts and Humanities (miscellaneous) (Q1); Law (Q1); Mathematics (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Biochemistry, Genetics and Molecular Biology; Mathematics; Social Sciences" +1843;24772;"Knowledge-Based Systems";journal;"09507051";"Elsevier B.V.";No;No;1,753;Q1;206;1958;3518;110336;34165;3515;9,59;56,35;30,99;1;Netherlands;Western Europe;"Elsevier B.V.";"1987-2026";"Artificial Intelligence (Q1); Information Systems and Management (Q1); Management Information Systems (Q1); Software (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences" +1844;14772;"Human Communication Research";journal;"03603989, 14682958";"Wiley-Blackwell";No;No;1,751;Q1;119;23;114;1678;670;114;3,99;72,96;61,82;0;United States;Northern America;"Wiley-Blackwell";"1974-2026";"Anthropology (Q1); Communication (Q1); Developmental and Educational Psychology (Q1); Linguistics and Language (Q1)";"Psychology; Social Sciences" +1845;19771;"Rheumatology";journal;"14620324, 14620332";"Oxford University Press";No;No;1,751;Q1;212;969;2093;27293;7702;1541;3,70;28,17;48,61;11;United Kingdom;Western Europe;"Oxford University Press";"1952-1995, 1998-2026";"Pharmacology (medical) (Q1); Rheumatology (Q1)";"Medicine" +1846;19900192513;"Swarm and Evolutionary Computation";journal;"22106502";"Elsevier B.V.";No;No;1,751;Q1;120;434;608;26125;6521;605;10,93;60,20;29,84;0;Netherlands;Western Europe;"Elsevier B.V.";"2011-2026";"Computer Science (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1)";"Computer Science; Mathematics" +1847;29094;"Cancer Cell International";journal;"14752867";"BioMed Central Ltd";Yes;No;1,750;Q1;100;433;1132;33258;8157;1131;6,89;76,81;44,32;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Genetics (Q1); Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1848;23198;"European Journal of Vascular and Endovascular Surgery";journal;"15322165, 10785884";"W.B. Saunders Ltd";No;No;1,750;Q1;150;586;1166;8814;3413;641;3,14;15,04;27,60;2;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1995-2026";"Cardiology and Cardiovascular Medicine (Q1); Surgery (Q1)";"Medicine" +1849;23013;"Industry and Innovation";journal;"13662716, 14698390";"Routledge";No;No;1,750;Q1;79;76;146;6542;979;138;6,37;86,08;42,71;5;United Kingdom;Western Europe;"Routledge";"1997-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting" +1850;29127;"Cancer Gene Therapy";journal;"14765500, 09291903";"Springer Nature";No;No;1,749;Q1;103;121;488;7392;2829;475;6,07;61,09;43,78;0;United States;Northern America;"Springer Nature";"1994-2026";"Molecular Biology (Q1); Molecular Medicine (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology" +1851;21100451375;"Molecular Therapy Methods and Clinical Development";journal;"23290501";"Cell Press";Yes;No;1,749;Q1;77;241;561;12528;2479;491;4,23;51,98;44,98;0;United States;Northern America;"Cell Press";"2014-2025";"Genetics (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology" +1852;12770;"British Journal of Educational Psychology";journal;"00070998, 20448279";"Wiley-Blackwell";No;No;1,747;Q1;126;112;247;7920;1559;244;5,99;70,71;59,57;2;United States;Northern America;"Wiley-Blackwell";"1931-1951, 1956-1958, 1960, 1962-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +1853;29806;"International Journal of Accounting Information Systems";journal;"14670895";"Elsevier Inc.";No;No;1,747;Q1;74;35;84;2495;979;81;12,21;71,29;37,80;0;United States;Northern America;"Elsevier Inc.";"2000-2026";"Accounting (Q1); Finance (Q1); Information Systems and Management (Q1); Management Information Systems (Q1)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +1854;22478;"Journal of Memory and Language";journal;"10960821, 0749596X";"Academic Press Inc.";Yes;No;1,747;Q1;185;85;130;7283;585;126;4,10;85,68;46,85;0;United States;Northern America;"Academic Press Inc.";"1985-2026";"Artificial Intelligence (Q1); Experimental and Cognitive Psychology (Q1); Linguistics and Language (Q1); Neuropsychology and Physiological Psychology (Q1)";"Computer Science; Psychology; Social Sciences" +1855;16442;"Journal of Travel Medicine";journal;"11951982, 17088305";"Oxford University Press";No;No;1,747;Q1;80;135;485;1980;1528;383;3,48;14,67;48,75;5;United Kingdom;Western Europe;"Oxford University Press";"1994-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +1856;21100285075;"Food Packaging and Shelf Life";journal;"22142894";"Elsevier B.V.";No;No;1,746;Q1;105;261;635;16029;8246;632;11,92;61,41;43,64;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Biomaterials (Q1); Food Science (Q1); Microbiology (medical) (Q1); Polymers and Plastics (Q1); Safety, Risk, Reliability and Quality (Q1)";"Agricultural and Biological Sciences; Engineering; Materials Science; Medicine" +1857;5700191211;"World Journal of Emergency Surgery";journal;"17497922";"BioMed Central Ltd";Yes;No;1,744;Q1;78;88;154;3746;1121;152;7,48;42,57;30,29;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Emergency Medicine (Q1); Surgery (Q1)";"Medicine" +1858;21100264650;"European Political Science Review";journal;"17557739, 17557747";"Cambridge University Press";Yes;No;1,743;Q1;59;57;108;4156;465;108;4,00;72,91;30,23;0;United Kingdom;Western Europe;"Cambridge University Press";"2009-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +1859;5000153402;"Journal of Marketing Theory and Practice";journal;"10696679, 19447175";"Routledge";No;No;1,743;Q1;68;99;95;9528;949;91;10,04;96,24;38,40;0;United Kingdom;Western Europe;"Routledge";"1995, 1999-2000, 2002, 2005-2026";"Marketing (Q1)";"Business, Management and Accounting" +1860;13272;"Environment and Planning A";journal;"14723409, 0308518X";"SAGE Publications Ltd";No;No;1,742;Q1;171;84;355;5136;2190;342;6,26;61,14;35,76;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1973-2026";"Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Environmental Science; Social Sciences" +1861;11700154316;"CNS Neuroscience and Therapeutics";journal;"17555949, 17555930";"John Wiley and Sons Inc";Yes;No;1,741;Q1;105;510;1254;30545;8240;1199;6,46;59,89;43,86;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2008-2026";"Pharmacology (Q1); Pharmacology (medical) (Q1); Physiology (medical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +1862;21100907393;"Environmental Microbiome";journal;"25246372";"BioMed Central Ltd";Yes;No;1,741;Q1;55;161;253;14048;1731;251;6,22;87,25;42,19;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2019-2026";"Applied Microbiology and Biotechnology (Q1); Genetics (Q1); Microbiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +1863;23411;"Journal of Industrial Ecology";journal;"10881980, 15309290";"Springer Nature";No;No;1,741;Q1;151;164;399;10710;2979;393;6,38;65,30;35,52;7;Netherlands;Western Europe;"Springer Nature";"1997-2026";"Economics and Econometrics (Q1); Environmental Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +1864;15821;"Journal of Policy Analysis and Management";journal;"02768739, 15206688";"Wiley-Liss Inc.";No;No;1,741;Q1;109;84;195;3934;487;142;2,22;46,83;32,52;15;United States;Northern America;"Wiley-Liss Inc.";"1981-2026";"Business, Management and Accounting (miscellaneous) (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Social Sciences" +1865;21100286975;"Journal of Animal Science and Biotechnology";journal;"16749782, 20491891";"BioMed Central Ltd";Yes;No;1,740;Q1;92;180;464;13412;3969;464;8,17;74,51;41,84;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2012-2026";"Animal Science and Zoology (Q1); Biochemistry (Q1); Biotechnology (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1866;23646;"Journal of Science Education and Technology";journal;"10590145, 15731839";"Springer Netherlands";No;No;1,740;Q1;91;143;182;9781;1458;182;8,76;68,40;48,60;0;Netherlands;Western Europe;"Springer Netherlands";"1992-2002, 2004-2026";"Education (Q1); Engineering (miscellaneous) (Q1)";"Engineering; Social Sciences" +1867;14913;"Quarterly Reviews of Biophysics";journal;"00335835, 14698994";"Cambridge University Press";No;No;1,740;Q1;113;17;30;3206;179;30;5,50;188,59;28,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1968-1985, 1987-2025";"Biophysics (Q1)";"Biochemistry, Genetics and Molecular Biology" +1868;21101040628;"Evolution Letters";journal;"20563744";"Oxford University Press";Yes;No;1,738;Q1;43;63;166;4591;698;128;4,29;72,87;43,26;0;United Kingdom;Western Europe;"Oxford University Press";"2017-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1869;21100922758;"Journal of Computers in Education";journal;"21979995, 21979987";"Springer Berlin";No;No;1,738;Q1;38;63;106;4876;1027;105;9,46;77,40;45,88;1;Germany;Western Europe;"Springer Berlin";"2019-2026";"Computer Science Applications (Q1); Education (Q1)";"Computer Science; Social Sciences" +1870;5800207508;"Molecular Oncology";journal;"15747891, 18780261";"John Wiley and Sons Ltd";Yes;No;1,738;Q1;130;270;578;16108;3008;553;4,38;59,66;49,59;0;Netherlands;Western Europe;"John Wiley and Sons Ltd";"2007-2026";"Genetics (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q1); Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1871;13552;"Journal of the Atmospheric Sciences";journal;"15200469, 00224928";"American Meteorological Society";No;No;1,737;Q1;201;150;451;9217;1505;447;3,19;61,45;25,57;0;United States;Northern America;"American Meteorological Society";"1962-1967, 1969-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +1872;35824;"Agricultural Water Management";journal;"18732283, 03783774";"Elsevier B.V.";Yes;No;1,736;Q1;189;783;1759;56139;14470;1755;8,18;71,70;35,09;10;Netherlands;Western Europe;"Elsevier B.V.";"1976-1977, 1979-2026";"Agronomy and Crop Science (Q1); Earth-Surface Processes (Q1); Soil Science (Q1); Water Science and Technology (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +1873;23464;"China Journal";journal;"18358535, 13249347";"University of Chicago Press";No;No;1,736;Q1;64;10;30;243;131;28;3,84;24,30;27,78;1;Australia;Pacific Region;"University of Chicago Press";"1995-2026";"Geography, Planning and Development (Q1); Sociology and Political Science (Q1)";"Social Sciences" +1874;16453;"Osteoporosis International";journal;"0937941X, 14332965";"Springer Science and Business Media Deutschland GmbH";No;No;1,736;Q1;208;292;694;10065;3285;596;4,74;34,47;45,49;4;United Kingdom;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1990-2026";"Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1875;17456;"Essays in Biochemistry";journal;"00711365, 17441358";"Portland Press Ltd";No;No;1,735;Q1;99;43;223;3442;1342;221;5,55;80,05;45,76;0;United Kingdom;Western Europe;"Portland Press Ltd";"1965, 1967-1983, 1985-1987, 1989-1992, 1994-2026";"Biochemistry (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +1876;21100199809;"Probability Surveys";journal;"15495787";"Institute of Mathematical Statistics";Yes;No;1,735;Q1;47;2;32;149;67;32;1,90;74,50;0,00;0;United States;Northern America;"Institute of Mathematical Statistics";"2004-2025";"Statistics and Probability (Q1)";"Mathematics" +1877;18204;"Proceedings - IEEE INFOCOM";conference and proceedings;"0743166X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,735;-;248;273;738;10676;4244;731;4,61;39,11;27,56;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1983-2025";"Computer Science (miscellaneous); Electrical and Electronic Engineering";"Computer Science; Engineering" +1878;21101280284;"Chem and Bio Engineering";journal;"2836967X";"American Chemical Society";Yes;No;1,734;Q1;13;57;81;3649;616;80;7,60;64,02;35,20;0;United States;Northern America;"American Chemical Society";"2024-2026";"Biomedical Engineering (Q1); Chemical Engineering (miscellaneous) (Q1)";"Chemical Engineering; Engineering" +1879;16922;"Labour Economics";journal;"09275371";"Elsevier B.V.";No;No;1,734;Q1;103;121;397;6089;1219;396;2,15;50,32;30,74;19;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Economics and Econometrics (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +1880;11600153483;"Philosophy Compass";journal;"17479991";"John Wiley and Sons Inc";No;No;1,734;Q1;54;49;196;3365;675;184;2,60;68,67;31,82;2;United States;Northern America;"John Wiley and Sons Inc";"2006, 2008, 2010, 2012-2026";"Philosophy (Q1)";"Arts and Humanities" +1881;22094;"Thin-Walled Structures";journal;"02638231";"Elsevier Ltd";No;No;1,734;Q1;147;1125;2961;63717;25049;2957;8,71;56,64;27,13;0;United Kingdom;Western Europe;"Elsevier Ltd";"1983-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanical Engineering (Q1)";"Engineering" +1882;4400151418;"Climate of the Past";journal;"18149332, 18149324";"Copernicus Publications";Yes;No;1,733;Q1;110;115;385;12202;1480;385;3,81;106,10;36,58;0;Germany;Western Europe;"Copernicus Publications";"2005-2026";"Global and Planetary Change (Q1); Paleontology (Q1); Stratigraphy (Q1)";"Earth and Planetary Sciences; Environmental Science" +1883;21100906361;"IEEE Transactions on Green Communications and Networking";journal;"24732400";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,733;Q1;65;209;482;8560;3651;474;7,56;40,96;27,79;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017-2026";"Computer Networks and Communications (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Computer Science; Energy" +1884;21100824897;"ACS Sensors";journal;"23793694";"American Chemical Society";No;No;1,732;Q1;142;850;1546;45669;15739;1506;10,29;53,73;36,82;0;United States;Northern America;"American Chemical Society";"2016-2026";"Bioengineering (Q1); Fluid Flow and Transfer Processes (Q1); Instrumentation (Q1); Process Chemistry and Technology (Q1)";"Chemical Engineering; Physics and Astronomy" +1885;12872;"Cognitive Psychology";journal;"10955623, 00100285";"Academic Press Inc.";No;No;1,732;Q1;141;20;85;1685;282;84;2,98;84,25;30,30;0;United States;Northern America;"Academic Press Inc.";"1970-2026";"Artificial Intelligence (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Linguistics and Language (Q1); Neuropsychology and Physiological Psychology (Q1)";"Computer Science; Psychology; Social Sciences" +1886;22055;"Exceptional Children";journal;"00144029, 21635560";"SAGE Publications Inc.";No;No;1,732;Q1;112;37;81;2190;398;70;5,25;59,19;65,77;0;United States;Northern America;"SAGE Publications Inc.";"1936-1937, 1958, 1960-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +1887;13096;"BMC Biology";journal;"17417007";"BioMed Central Ltd";Yes;No;1,731;Q1;144;368;880;28538;4663;861;5,13;77,55;41,38;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biotechnology (Q1); Cell Biology (Q1); Developmental Biology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Physiology (Q1); Plant Science (Q1); Structural Biology (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1888;15673;"Journal of Rural Studies";journal;"07430167";"Elsevier Ltd";No;No;1,731;Q1;156;346;771;26012;6031;771;6,67;75,18;49,41;11;United Kingdom;Western Europe;"Elsevier Ltd";"1985-2026";"Development (Q1); Forestry (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1)";"Agricultural and Biological Sciences; Social Sciences" +1889;21100784267;"Journal of Traffic and Transportation Engineering (English Edition)";journal;"25890379, 20957564";"KeAi Communications Co.";Yes;Yes;1,730;Q1;65;87;192;8580;2098;192;10,28;98,62;27,34;0;China;Asiatic Region;"KeAi Communications Co.";"2014-2026";"Civil and Structural Engineering (Q1); Transportation (Q1)";"Engineering; Social Sciences" +1890;21100406908;"European Urology Focus";journal;"24054569";"Elsevier B.V.";No;No;1,729;Q1;67;223;668;5023;2797;458;4,18;22,52;27,47;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Urology (Q1)";"Medicine" +1891;21100817417;"Immune Network";journal;"15982629, 20926685";"Korean Association of Immunologists";Yes;No;1,729;Q1;50;44;142;3793;793;135;5,41;86,20;40,15;0;South Korea;Asiatic Region;"Korean Association of Immunologists";"2009, 2013, 2015-2025";"Immunology (Q1); Immunology and Allergy (Q1); Infectious Diseases (Q1)";"Immunology and Microbiology; Medicine" +1892;28690;"Advances in Cancer Research";book series;"21625557, 0065230X";"Academic Press Inc.";No;No;1,728;Q1;120;46;116;6297;535;20;3,45;136,89;30,43;0;United States;Northern America;"Academic Press Inc.";"1953-1956, 1958, 1962-1965, 1967, 1969-2026";"Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1893;21732;"Journal of Vascular Surgery";journal;"10976809, 07415214";"Elsevier Inc.";No;No;1,728;Q1;234;548;1490;13544;4869;1177;3,07;24,72;31,92;4;United States;Northern America;"Elsevier Inc.";"1984-2026";"Cardiology and Cardiovascular Medicine (Q1); Surgery (Q1)";"Medicine" +1894;29745;"Information and Organization";journal;"14717727";"Elsevier Ltd";No;No;1,726;Q1;83;30;57;2683;485;56;9,32;89,43;35,44;1;United Kingdom;Western Europe;"Elsevier Ltd";"1996-1997, 2001-2026";"Information Systems (Q1); Library and Information Sciences (Q1); Management Information Systems (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Computer Science; Social Sciences" +1895;22944;"Journal of International Marketing";journal;"15477215, 1069031X";"SAGE Publications Ltd";No;No;1,726;Q1;113;14;72;1130;459;65;5,48;80,71;43,86;0;United States;Northern America;"SAGE Publications Ltd";"1995-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +1896;23041;"Journal of Medicinal Chemistry";journal;"00222623, 15204804";"American Chemical Society";No;No;1,726;Q1;329;1446;3082;76224;22173;3013;6,84;52,71;40,22;0;United States;Northern America;"American Chemical Society";"1959-1961, 1963-2026";"Drug Discovery (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +1897;17700156769;"Journal of Brand Management";journal;"14791803, 1350231X";"Palgrave Macmillan Ltd.";No;No;1,725;Q1;81;42;109;3573;799;101;6,81;85,07;35,29;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2005, 2008-2026";"Marketing (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +1898;21100228536;"Journal of Destination Marketing and Management";journal;"2212571X";"Elsevier Ltd";No;No;1,725;Q1;100;43;180;3297;1980;180;10,21;76,67;44,72;0;United Kingdom;Western Europe;"Elsevier Ltd";"2012-2026";"Business and International Management (Q1); Marketing (Q1); Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +1899;13602;"Philosophical Transactions of the Royal Society B: Biological Sciences";journal;"09628436, 14712970";"Royal Society Publishing";No;No;1,725;Q1;350;416;1225;35923;6474;1205;5,03;86,35;47,59;10;United Kingdom;Western Europe;"Royal Society Publishing";"1947, 1950-1951, 1970-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1900;15995;"Composites Science and Technology";journal;"02663538";"Elsevier B.V.";No;No;1,724;Q1;269;365;1475;17815;14833;1474;10,22;48,81;32,14;0;United Kingdom;Western Europe;"Elsevier B.V.";"1985-2026";"Ceramics and Composites (Q1); Engineering (miscellaneous) (Q1)";"Engineering; Materials Science" +1901;16687;"European Radiology";journal;"09387994, 14321084";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,724;Q1;191;1147;2710;34852;15105;2392;5,49;30,39;39,28;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1991-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +1902;21101130829;"Advanced Membranes";journal;"27728234";"KeAi Communications Co.";Yes;No;1,723;Q1;26;49;64;3380;798;64;11,14;68,98;37,78;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Chemical Engineering (miscellaneous) (Q1); Filtration and Separation (Q1); Materials Science (miscellaneous) (Q1); Process Chemistry and Technology (Q1)";"Chemical Engineering; Materials Science" +1903;19600166419;"Foundations and Trends in Signal Processing";journal;"19328346, 19328354";"Now Publishers Inc";No;No;1,723;Q1;24;3;10;766;78;10;7,33;255,33;40,00;0;United States;Northern America;"Now Publishers Inc";"2007-2014, 2016-2025";"Signal Processing (Q1)";"Computer Science" +1904;21101287788;"Gout, Urate, and Crystal Deposition Disease";journal;"28134583";"Multidisciplinary Digital Publishing Institute (MDPI)";No;No;1,723;Q1;9;20;40;1194;184;38;4,60;59,70;48,61;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2023-2025";"Medicine (miscellaneous) (Q1); Rheumatology (Q1)";"Medicine" +1905;21101070921;"IEEE Open Journal of the Communications Society";journal;"2644125X";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,723;Q1;67;602;757;36946;6094;755;7,56;61,37;20,98;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Computer Networks and Communications (Q1)";"Computer Science" +1906;23465;"China Quarterly";journal;"03057410, 14682648";"Cambridge University Press";No;No;1,722;Q1;109;61;165;3151;688;162;3,47;51,66;33,64;0;United Kingdom;Western Europe;"Cambridge University Press";"1960-2026";"Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +1907;21101043805;"Environmental DNA";journal;"26374943";"John Wiley & Sons Inc.";Yes;No;1,722;Q1;54;172;388;13302;2425;378;5,60;77,34;42,10;1;United States;Northern America;"John Wiley & Sons Inc.";"2019-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +1908;24868;"Journal of Investigative Dermatology";journal;"0022202X, 15231747";"Elsevier B.V.";No;No;1,722;Q1;250;487;1133;18791;4720;991;3,83;38,59;47,21;0;Netherlands;Western Europe;"Elsevier B.V.";"1945-2026";"Biochemistry (Q1); Cell Biology (Q1); Dermatology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1909;26786;"Clinical Chemistry";journal;"15308561, 00099147";"Oxford University Press";No;No;1,721;Q1;254;195;673;4149;2443;445;3,74;21,28;46,94;0;United Kingdom;Western Europe;"Oxford University Press";"1955-2026";"Biochemistry (medical) (Q1); Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1910;21536;"Environmental Science and Policy";journal;"18736416, 14629011";"Elsevier Ltd";No;No;1,720;Q1;173;298;874;24267;6129;863;6,37;81,43;51,19;14;United Kingdom;Western Europe;"Elsevier Ltd";"1998-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)";"Environmental Science; Social Sciences" +1911;17370;"IEEE Transactions on Power Delivery";journal;"19374208, 08858977";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,720;Q1;231;339;1254;10805;7404;1253;5,89;31,87;23,31;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1986-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering" +1912;21101007461;"JNCI Cancer Spectrum";journal;"25155091";"Oxford University Press";Yes;No;1,720;Q1;46;123;319;4702;1275;283;4,26;38,23;50,79;1;United Kingdom;Western Europe;"Oxford University Press";"2017-2026";"Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1913;21101287243;"Communications of the American Mathematical Society";journal;"26923688";"American Mathematical Society";No;No;1,719;Q1;9;15;39;871;113;38;2,43;58,07;17,14;0;United States;Northern America;"American Mathematical Society";"2021-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +1914;5700191208;"Journal of Clinical Lipidology";journal;"18764789, 19332874";"Elsevier Ltd";No;No;1,719;Q1;85;206;332;6699;1555;289;4,97;32,52;44,67;3;United Kingdom;Western Europe;"Elsevier Ltd";"1970, 2007-2026";"Cardiology and Cardiovascular Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +1915;145229;"International Journal of Bank Marketing";journal;"02652323";"Emerald Group Publishing Ltd.";No;No;1,718;Q1;123;142;237;12004;2861;230;9,73;84,54;43,23;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1983-2026";"Marketing (Q1)";"Business, Management and Accounting" +1916;21101189327;"JACC: Advances";journal;"2772963X";"Elsevier B.V.";Yes;No;1,717;Q1;26;773;1035;22407;3026;599;2,92;28,99;34,55;3;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +1917;21101112765;"Renewable and Sustainable Energy Transition";journal;"2667095X";"Elsevier Ltd";Yes;No;1,716;Q1;22;36;66;2463;516;64;7,28;68,42;31,15;2;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +1918;23152;"IMA Journal of Numerical Analysis";journal;"14643642, 02724979";"Oxford University Press";No;No;1,715;Q1;81;105;324;4169;975;324;2,78;39,70;28,40;0;United Kingdom;Western Europe;"Oxford University Press";"1981-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +1919;200147112;"Teaching in Higher Education";journal;"14701294, 13562517";"Routledge";No;No;1,715;Q1;90;156;328;8133;2387;316;7,75;52,13;65,50;6;United Kingdom;Western Europe;"Routledge";"2005-2026";"Education (Q1)";"Social Sciences" +1920;5000154503;"Thinking Skills and Creativity";journal;"18711871";"Elsevier B.V.";No;No;1,715;Q1;84;220;549;17369;4087;549;7,27;78,95;48,72;1;Netherlands;Western Europe;"Elsevier B.V.";"2006-2026";"Education (Q1)";"Social Sciences" +1921;21100220478;"Urban Climate";journal;"22120955";"Elsevier B.V.";No;No;1,714;Q1;102;479;1169;35017;10080;1168;8,38;73,10;35,05;3;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Atmospheric Science (Q1); Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +1922;21100255548;"Advanced Optical Materials";journal;"21951071";"John Wiley & Sons Inc.";No;No;1,713;Q1;182;1348;3215;80717;24165;3204;7,36;59,88;32,28;1;United States;Northern America;"John Wiley & Sons Inc.";"2013-2026";"Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Materials Science; Physics and Astronomy" +1923;21101156913;"Biomaterials Translational";journal;"2096112X";"Chinese Medical Multimedia Press Co Ltd";No;No;1,713;Q1;25;21;98;1535;818;68;8,40;73,10;44,57;0;China;Asiatic Region;"Chinese Medical Multimedia Press Co Ltd";"2020-2025";"Biochemistry (medical) (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1)";"Engineering; Materials Science; Medicine" +1924;21101151574;"Stress Biology";journal;"27310450";"Springer";Yes;Yes;1,712;Q1;25;77;165;6114;1132;162;5,38;79,40;40,25;0;Germany;Western Europe;"Springer";"2021-2026";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Microbiology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Immunology and Microbiology" +1925;28514;"Journal of the American Geriatrics Society";journal;"00028614, 15325415";"John Wiley and Sons Inc";No;No;1,711;Q1;282;581;1596;14756;5380;1030;3,41;25,40;56,27;5;United States;Northern America;"John Wiley and Sons Inc";"1953-2026";"Geriatrics and Gerontology (Q1)";"Medicine" +1926;16484;"Palliative Medicine";journal;"1477030X, 02692163";"SAGE Publications Ltd";No;No;1,711;Q1;135;101;377;4763;2054;340;5,97;47,16;66,27;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1987-2026";"Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +1927;14723;"Urban Education";journal;"00420859, 15528340";"SAGE Publications Inc.";No;No;1,711;Q1;82;129;262;9504;1080;261;4,08;73,67;62,26;7;United States;Northern America;"SAGE Publications Inc.";"1965-2026";"Education (Q1); Urban Studies (Q1)";"Social Sciences" +1928;21101043443;"Plant Phenomics";journal;"26436515";"Elsevier B.V.";Yes;No;1,710;Q1;40;102;217;5926;1943;217;8,61;58,10;32,75;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2025";"Agronomy and Crop Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +1929;18712;"Psychiatry and Clinical Neurosciences";journal;"14401819, 13231316";"Wiley-Blackwell Publishing Ltd";No;No;1,709;Q1;103;131;352;5224;1336;195;3,95;39,88;32,81;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1933, 1947-2026";"Medicine (miscellaneous) (Q1); Neurology (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +1930;25118;"Geopolitics";journal;"14650045, 15573028";"Routledge";No;No;1,708;Q1;77;134;256;11861;1489;249;5,16;88,51;49,07;11;United Kingdom;Western Europe;"Routledge";"1986, 1998-2026";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +1931;7700153237;"Journal of Cardiovascular Computed Tomography";journal;"1876861X, 19345925";"Elsevier Inc.";No;No;1,708;Q1;75;155;301;3211;1009;196;2,88;20,72;29,61;1;United States;Northern America;"Elsevier Inc.";"2007-2026";"Cardiology and Cardiovascular Medicine (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +1932;26643;"Journal of General Internal Medicine";journal;"15251497, 08848734";"Springer";No;No;1,708;Q1;236;927;2031;23991;6976;1461;3,25;25,88;56,79;5;United States;Northern America;"Springer";"1986-2026";"Internal Medicine (Q1)";"Medicine" +1933;21101051861;"JTO Clinical and Research Reports";journal;"26663643";"Elsevier Inc.";Yes;No;1,708;Q1;31;138;399;3486;1447;374;3,32;25,26;41,10;2;United States;Northern America;"Elsevier Inc.";"2020-2026";"Oncology (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine" +1934;25654;"Post-Soviet Affairs";journal;"1060586X";"Taylor and Francis Ltd.";No;No;1,707;Q1;61;35;87;2573;458;84;4,64;73,51;62,12;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Economics and Econometrics (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Social Sciences" +1935;21101088936;"ACS Materials Au";journal;"26942461";"American Chemical Society";Yes;No;1,706;Q1;31;94;186;6572;1686;180;9,49;69,91;33,18;0;United States;Northern America;"American Chemical Society";"2021-2026";"Biomaterials (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Polymers and Plastics (Q1)";"Materials Science" +1936;21100916904;"Annals of the International Communication Association";journal;"23808977, 23808985";"Routledge";No;No;1,706;Q1;28;4;58;387;406;58;6,81;96,75;50,00;0;United States;Northern America;"Routledge";"1983, 1986, 1988, 1992, 1995, 1997, 2005, 2011, 2013-2014, 2016, 2018-2025";"Communication (Q1)";"Social Sciences" +1937;21100790818;"Antioxidants";journal;"20763921";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,706;Q1;169;1509;6187;129661;55297;6079;8,60;85,93;49,63;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Biochemistry (Q1); Cell Biology (Q1); Clinical Biochemistry (Q1); Food Science (Q1); Molecular Biology (Q1); Physiology (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +1938;17342;"IEEE Transactions on Control Systems Technology";journal;"10636536, 15580865";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,706;Q1;208;189;667;7548;4241;664;5,99;39,94;19,86;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1993-2026";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Engineering" +1939;12286;"Surface Science Reports";journal;"01675729, 1879274X";"Elsevier B.V.";No;No;1,706;Q1;134;5;16;1527;136;16;9,90;305,40;25,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1981-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +1940;29214;"Transactions of the Institute of British Geographers";journal;"00202754, 14755661";"Wiley-Blackwell Publishing Ltd";No;No;1,706;Q1;141;96;198;6457;1019;179;4,62;67,26;46,58;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1976-2026";"Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +1941;21101079108;"ACM Transactions on Computing for Healthcare";journal;"26378051, 26911957";"Association for Computing Machinery";No;No;1,705;Q1;24;55;98;3988;986;96;4,51;72,51;38,43;1;United States;Northern America;"Association for Computing Machinery";"2020-2026";"Biomedical Engineering (Q1); Computer Science Applications (Q1); Health Informatics (Q1); Health Information Management (Q1); Information Systems (Q1); Medicine (miscellaneous) (Q1); Software (Q1)";"Computer Science; Engineering; Health Professions; Medicine" +1942;28634;"British Accounting Review";journal;"10958347, 08908389";"Academic Press";No;No;1,705;Q1;100;176;206;14831;1749;206;8,33;84,27;36,48;0;United States;Northern America;"Academic Press";"1988-2026";"Accounting (Q1)";"Business, Management and Accounting" +1943;26781;"Bone Marrow Transplantation";journal;"02683369, 14765365";"Springer Nature";No;No;1,704;Q1;154;310;874;7940;2506;490;3,13;25,61;46,27;2;United Kingdom;Western Europe;"Springer Nature";"1986-2026";"Hematology (Q1); Transplantation (Q1)";"Medicine" +1944;27277;"Journal of Network and Computer Applications";journal;"10958592, 10848045";"Academic Press";No;No;1,704;Q1;167;228;462;14705;5010;461;10,70;64,50;26,24;0;United States;Northern America;"Academic Press";"1996-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Hardware and Architecture (Q1)";"Computer Science" +1945;21100389518;"Journal of Building Engineering";journal;"23527102";"Elsevier B.V.";No;No;1,703;Q1;139;3137;7909;198652;70150;7906;8,67;63,33;29,67;1;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Architecture (Q1); Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanics of Materials (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering" +1946;17244;"Biological Conservation";journal;"00063207";"Elsevier B.V.";No;No;1,700;Q1;257;505;1136;39744;6210;1100;5,29;78,70;38,36;14;Netherlands;Western Europe;"Elsevier B.V.";"1968-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +1947;21101171935;"Small Science";journal;"26884046";"John Wiley and Sons Inc";Yes;No;1,700;Q1;56;279;418;24813;3184;415;6,77;88,94;34,20;0;United States;Northern America;"John Wiley and Sons Inc";"2021-2026";"Catalysis (Q1); Chemical Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Chemical Engineering; Materials Science" +1948;4400151715;"Stata Journal";journal;"1536867X, 15368734";"SAGE Publications Inc.";No;No;1,699;Q1;123;47;141;742;446;125;3,04;15,79;24,36;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2002-2025";"Economics and Econometrics (Q1); Mathematics (miscellaneous) (Q1); Software (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Computer Science; Decision Sciences; Economics, Econometrics and Finance; Mathematics" +1949;19700200985;"Applied Linguistics Review";journal;"18686303, 18686311";"De Gruyter Mouton";No;No;1,698;Q1;43;126;239;6976;1490;232;6,80;55,37;47,17;1;Poland;Eastern Europe;"De Gruyter Mouton";"2012-2013, 2015-2026";"Linguistics and Language (Q1)";"Social Sciences" +1950;13934;"Journal of the American Planning Association";journal;"01944363";"Taylor and Francis Ltd.";No;No;1,697;Q1;125;51;163;3132;705;132;3,92;61,41;48,41;7;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1935-2026";"Development (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1)";"Social Sciences" +1951;21100854600;"Current Nutrition Reports";journal;"21613311";"Springer";No;No;1,696;Q1;58;127;196;12461;1634;196;8,70;98,12;63,51;2;United States;Northern America;"Springer";"2012-2026";"Food Science (Q1); Nutrition and Dietetics (Q1)";"Agricultural and Biological Sciences; Nursing" +1952;13491;"Development and Psychopathology";journal;"09545794, 14692198";"Cambridge University Press";No;No;1,695;Q1;207;257;585;22795;2738;583;4,18;88,70;63,50;0;United Kingdom;Western Europe;"Cambridge University Press";"1989-2026";"Developmental and Educational Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +1953;21101068014;"Developments in the Built Environment";journal;"26661659";"Elsevier Ltd";Yes;No;1,695;Q1;49;230;514;13692;5129;513;10,10;59,53;29,34;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Architecture (Q1); Building and Construction (Q1); Civil and Structural Engineering (Q1); Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q1); Materials Science (miscellaneous) (Q1)";"Computer Science; Engineering; Materials Science" +1954;17560;"Social Problems";journal;"15338533, 00377791";"Oxford University Press";No;No;1,695;Q1;125;105;179;7594;810;178;4,11;72,32;61,29;2;United States;Northern America;"Oxford University Press";"1971, 1973-1975, 1977-1984, 1988-1990, 1993-2026";"Sociology and Political Science (Q1)";"Social Sciences" +1955;21424;"Journal for Research in Mathematics Education";journal;"00218251";"National Council of Teachers of Mathematics";No;No;1,694;Q1;106;17;58;1085;268;42;3,06;63,82;54,05;0;United States;Northern America;"National Council of Teachers of Mathematics";"1970, 1979-1980, 1983, 1995-2026";"Education (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics; Social Sciences" +1956;144853;"Proceedings of the Annual International Symposium on Microarchitecture, MICRO";conference and proceedings;"10724451";"IEEE Computer Society";No;No;1,694;-;134;126;202;9179;1281;196;3,86;72,85;23,34;0;United States;Northern America;"IEEE Computer Society";"1972-1976, 1978-1979, 1989-1991, 1994-2011, 2015-2022, 2024-2025";"Engineering (miscellaneous); Hardware and Architecture; Software";"Computer Science; Engineering" +1957;21101060497;"Eye and Vision";journal;"23260254";"Springer Nature";Yes;No;1,693;Q1;52;51;139;3012;821;139;5,56;59,06;42,14;0;United Kingdom;Western Europe;"Springer Nature";"2014-2026";"Health Professions (miscellaneous) (Q1); Ophthalmology (Q1)";"Health Professions; Medicine" +1958;21101097033;"Journal of Future Foods";journal;"27725669";"KeAi Communications Co.";Yes;No;1,693;Q1;31;60;120;4062;1437;120;12,51;67,70;47,16;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Food Science (Q1); Nutrition and Dietetics (Q1)";"Agricultural and Biological Sciences; Nursing" +1959;21101038573;"Tumour Virus Research";journal;"26666790";"Elsevier B.V.";Yes;No;1,693;Q1;42;31;55;3164;442;55;4,55;102,06;51,12;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2025";"Infectious Diseases (Q1); Virology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +1960;4400151514;"Globalization and Health";journal;"17448603";"BioMed Central Ltd";Yes;No;1,692;Q1;95;72;290;4913;1698;263;5,90;68,24;54,52;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2005-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +1961;21100415927;"Journal of Nursing Regulation";journal;"21558264, 21558256";"Elsevier Inc.";No;No;1,691;Q1;31;45;106;2177;531;97;5,75;48,38;68,12;0;United States;Northern America;"Elsevier Inc.";"2010-2026";"Issues, Ethics and Legal Aspects (Q1); Nursing (miscellaneous) (Q1)";"Nursing" +1962;21100269013;"Nanophotonics";journal;"21928614, 21928606";"Walter de Gruyter GmbH";Yes;No;1,691;Q1;130;460;1189;27562;8472;1173;6,63;59,92;25,65;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2012-2025";"Atomic and Molecular Physics, and Optics (Q1); Biotechnology (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science; Physics and Astronomy" +1963;13517;"Ultrasonics Sonochemistry";journal;"13504177, 18732828";"Elsevier B.V.";Yes;No;1,691;Q1;197;535;1254;31842;14524;1241;10,94;59,52;39,69;1;Netherlands;Western Europe;"Elsevier B.V.";"1994-2026";"Acoustics and Ultrasonics (Q1); Chemical Engineering (miscellaneous) (Q1); Environmental Chemistry (Q1); Inorganic Chemistry (Q1); Organic Chemistry (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Chemical Engineering; Chemistry; Environmental Science; Medicine; Physics and Astronomy" +1964;25538;"Diabetes Research and Clinical Practice";journal;"01688227, 18728227";"Elsevier Ireland Ltd";No;No;1,690;Q1;155;527;1130;22556;5893;1045;4,30;42,80;47,31;2;Ireland;Western Europe;"Elsevier Ireland Ltd";"1985-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1965;21101196203;"Energy Storage and Saving";journal;"27726835, 20973047";"KeAi Publishing Communications Ltd.";Yes;No;1,690;Q1;16;36;84;2475;842;81;6,11;68,75;29,31;0;Netherlands;Western Europe;"KeAi Publishing Communications Ltd.";"2022-2025";"Control and Systems Engineering (Q1); Fuel Technology (Q1); Pollution (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering; Environmental Science" +1966;15590;"Financial Markets, Institutions and Instruments";journal;"09638008, 14680416";"Wiley-Blackwell Publishing Ltd";No;No;1,690;Q1;33;10;37;699;130;36;3,93;69,90;25,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2003-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +1967;19400156815;"Annual Review of Analytical Chemistry";journal;"19361335, 19361327";"Annual Reviews Inc.";No;No;1,689;Q1;98;21;54;2467;458;54;8,10;117,48;51,67;0;United States;Northern America;"Annual Reviews Inc.";"2008-2025";"Analytical Chemistry (Q1); Medicine (miscellaneous) (Q1)";"Chemistry; Medicine" +1968;130037;"Biogeosciences";journal;"17264189, 17264170";"Copernicus Publications";Yes;No;1,689;Q1;182;384;856;35600;4026;856;4,41;92,71;39,56;4;Germany;Western Europe;"Copernicus Publications";"2004-2026";"Earth-Surface Processes (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +1969;24430;"Journal of Petrology";journal;"14602415, 00223530";"Oxford University Press";No;No;1,689;Q1;209;105;339;11444;1193;336;3,39;108,99;29,42;0;United Kingdom;Western Europe;"Oxford University Press";"1960-2026";"Geochemistry and Petrology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +1970;21283;"Management Learning";journal;"14617307, 13505076";"SAGE Publications Ltd";No;No;1,689;Q1;96;79;124;5424;741;120;5,42;68,66;56,14;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1970-2026";"Decision Sciences (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +1971;21101103288;"ACS Nanoscience Au";journal;"26942496";"American Chemical Society";Yes;No;1,688;Q1;21;57;127;3231;1006;122;7,60;56,68;33,97;0;United States;Northern America;"American Chemical Society";"2021-2026";"Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Materials Science" +1972;21100791247;"Crop Journal";journal;"20955421, 22145141";"KeAi Communications Co.";Yes;No;1,688;Q1;78;217;539;13101;3956;534;6,72;60,37;40,95;0;China;Asiatic Region;"KeAi Communications Co.";"1970, 2013-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +1973;18945;"Journal of Medical Genetics";journal;"00222593, 14686244";"BMJ Publishing Group";No;No;1,688;Q1;201;131;479;4070;1865;465;3,68;31,07;58,52;1;United Kingdom;Western Europe;"BMJ Publishing Group";"1964-2026";"Genetics (Q1); Genetics (clinical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +1974;30074;"Journal of School Psychology";journal;"00224405, 18733506";"Elsevier Ltd";No;No;1,688;Q1;125;62;221;5753;1100;220;4,48;92,79;64,90;0;United Kingdom;Western Europe;"Elsevier Ltd";"1963-1968, 1970-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +1975;29295;"Journal of Transport Geography";journal;"09666923";"Elsevier B.V.";No;No;1,688;Q1;165;323;636;21729;5040;633;7,38;67,27;34,48;5;United Kingdom;Western Europe;"Elsevier B.V.";"1993-2026";"Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Transportation (Q1)";"Environmental Science; Social Sciences" +1976;20063;"Biochemical Pharmacology";journal;"18732968, 00062952";"Elsevier Inc.";No;No;1,687;Q1;234;660;1425;50725;9532;1412;6,52;76,86;46,29;0;United States;Northern America;"Elsevier Inc.";"1958-2026";"Biochemistry (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +1977;21100978391;"Cells";journal;"20734409";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,687;Q1;196;2022;9075;189277;58352;8892;6,13;93,61;47,25;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology" +1978;5800173379;"Virtual and Physical Prototyping";journal;"17452767, 17452759";"Taylor and Francis Ltd.";Yes;No;1,687;Q1;85;241;439;16819;4417;439;9,78;69,79;26,82;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Computer Graphics and Computer-Aided Design (Q1); Industrial and Manufacturing Engineering (Q1); Modeling and Simulation (Q1); Signal Processing (Q1)";"Computer Science; Engineering; Mathematics" +1979;21101098756;"Decision Analytics Journal";journal;"27726622";"Elsevier Inc.";Yes;No;1,686;Q1;46;118;401;7406;5070;396;12,83;62,76;24,40;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Analysis (Q1); Applied Mathematics (Q1); Decision Sciences (miscellaneous) (Q1); Modeling and Simulation (Q1)";"Decision Sciences; Mathematics" +1980;26618;"Expert Reviews in Molecular Medicine";journal;"14623994";"Cambridge University Press";Yes;No;1,686;Q1;99;37;110;4832;711;109;6,39;130,59;56,74;0;United Kingdom;Western Europe;"Cambridge University Press";"1997-2026";"Molecular Biology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology" +1981;14500;"Land Use Policy";journal;"02648377";"Elsevier Ltd";No;No;1,686;Q1;186;339;1315;26464;10327;1308;7,43;78,06;38,53;7;United Kingdom;Western Europe;"Elsevier Ltd";"1984-2026";"Forestry (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +1982;17361;"IEEE Transactions on Industry Applications";journal;"00939994, 19399367";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,685;Q1;243;992;2199;32869;14804;2194;6,35;33,13;22,40;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1972-2026";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1)";"Engineering" +1983;23109;"Journal of Psychopharmacology";journal;"14617285, 02698811";"SAGE Publications Ltd";No;No;1,683;Q1;150;186;365;12158;2219;340;5,67;65,37;40,08;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1987-2026";"Medicine (miscellaneous) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +1984;22965;"Journal of Personal Selling and Sales Management";journal;"15577813, 08853134";"Taylor and Francis Ltd.";No;No;1,682;Q1;84;28;79;2538;345;68;4,56;90,64;33,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2026";"Business and International Management (Q1); Human Factors and Ergonomics (Q1); Management of Technology and Innovation (Q1); Marketing (Q1)";"Business, Management and Accounting; Social Sciences" +1985;21101021926;"Knee Surgery and Related Research";journal;"22340726, 22342451";"BioMed Central Ltd";Yes;Yes;1,682;Q1;46;48;120;1851;629;120;5,16;38,56;17,42;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2012-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +1986;21100896269;"Energy Conversion and Management: X";journal;"25901745";"Elsevier Ltd";Yes;No;1,681;Q1;61;580;666;47106;6583;662;9,77;81,22;20,21;3;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Nuclear Energy and Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +1987;17408;"Multiple Sclerosis Journal";journal;"13524585, 14770970";"SAGE Publications Ltd";No;No;1,680;Q1;164;225;751;5420;2802;609;3,51;24,09;49,73;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +1988;21101167218;"Sustainable Technology and Entrepreneurship";journal;"27730328";"Elsevier B.V.";Yes;No;1,679;Q1;28;31;72;2675;898;72;11,65;86,29;44,74;1;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Economics and Econometrics (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +1989;20048;"Economica";journal;"00130427, 14680335";"Wiley-Blackwell Publishing Ltd";No;No;1,678;Q1;80;43;148;2213;375;146;1,93;51,47;24,68;14;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1937, 1958, 1962, 1974-1976, 1978, 1980-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +1990;20287;"Ecological Applications";journal;"19395582, 10510761";"Wiley-Blackwell";No;No;1,677;Q1;252;205;533;17057;2842;531;5,12;83,20;37,29;8;United States;Northern America;"Wiley-Blackwell";"1991-2026";"Ecology (Q1)";"Environmental Science" +1991;28977;"Surveys in Geophysics";journal;"15730956, 01693298";"Springer Netherlands";No;No;1,677;Q1;110;56;180;6858;1233;172;6,56;122,46;32,50;4;Netherlands;Western Europe;"Springer Netherlands";"1986-2026";"Geochemistry and Petrology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +1992;21101115600;"Water-Energy Nexus";journal;"25889125";"KeAi Communications Co.";Yes;No;1,677;Q1;27;24;46;1816;508;46;11,39;75,67;35,29;0;China;Asiatic Region;"KeAi Communications Co.";"2018-2026";"Control and Systems Engineering (Q1); Environmental Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Energy; Engineering; Environmental Science" +1993;20029;"American Journal of Roentgenology";journal;"0361803X, 15463141";"American Roentgen Ray Society";No;No;1,676;Q1;232;420;1235;5850;3099;607;2,37;13,93;38,55;0;United States;Northern America;"American Roentgen Ray Society";"1968, 1973-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +1994;145597;"ELT Journal";journal;"14774526, 09510893";"Oxford University Press";No;No;1,676;Q1;87;54;168;737;827;158;5,59;13,65;53,85;0;United Kingdom;Western Europe;"Oxford University Press";"1946-2025";"Developmental and Educational Psychology (Q1); Education (Q1); Linguistics and Language (Q1)";"Psychology; Social Sciences" +1995;21100305261;"Extractive Industries and Society";journal;"22147918, 2214790X";"Elsevier Ltd";No;No;1,676;Q1;67;150;468;11228;2289;452;5,00;74,85;40,55;4;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Development (Q1); Economic Geology (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +1996;21100874341;"Geochemical Perspectives Letters";journal;"2410339X, 24103403";"European Association of Geochemistry";Yes;Yes;1,676;Q1;48;51;133;1451;473;131;3,59;28,45;29,33;0;France;Western Europe;"European Association of Geochemistry";"2015-2025";"Environmental Chemistry (Q1); Geochemistry and Petrology (Q1); Geology (Q1)";"Earth and Planetary Sciences; Environmental Science" +1997;21101308467;"Health Affairs Scholar";journal;"29765390";"Oxford University Press";Yes;No;1,675;Q1;15;249;249;7733;870;245;3,49;31,06;53,40;12;United Kingdom;Western Europe;"Oxford University Press";"2023-2026";"Health Policy (Q1)";"Medicine" +1998;21723;"Journal of Shoulder and Elbow Surgery";journal;"15326500, 10582746";"Elsevier Inc.";No;No;1,675;Q1;187;512;1211;16632;4920;1158;3,78;32,48;20,87;0;United States;Northern America;"Elsevier Inc.";"1992-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Sports Science (Q1); Surgery (Q1)";"Health Professions; Medicine" +1999;21101361267;"Advanced Biotechnology";journal;"29482801";"Springer";No;No;1,673;Q1;13;36;51;2281;379;46;7,43;63,36;42,72;0;Singapore;Asiatic Region;"Springer";"2023-2026";"Applied Microbiology and Biotechnology (Q1); Biochemistry (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +2000;21100984155;"JBJS Open Access";journal;"24727245";"Lippincott Williams and Wilkins";Yes;No;1,673;Q1;36;166;252;5355;1291;247;5,46;32,26;24,00;0;United States;Northern America;"Lippincott Williams and Wilkins";"2016-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +2001;15519;"Finance Research Letters";journal;"15446131, 15446123";"Elsevier Ltd";No;No;1,672;Q1;143;2400;3657;64009;31800;3654;8,17;26,67;39,18;12;United Kingdom;Western Europe;"Elsevier Ltd";"2004-2026";"Finance (Q1)";"Economics, Econometrics and Finance" +2002;23845;"Journal of Cardiovascular Magnetic Resonance";journal;"1532429X, 10976647";"Elsevier B.V.";Yes;No;1,672;Q1;124;152;271;6250;1416;261;4,65;41,12;34,88;0;United Kingdom;Western Europe;"Elsevier B.V.";"1999-2026";"Cardiology and Cardiovascular Medicine (Q1); Family Practice (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Health Professions; Medicine" +2003;21101179109;"Journal of Liver Cancer";journal;"22888128, 23835001";"";Yes;Yes;1,672;Q1;15;27;94;1366;377;78;4,70;50,59;44,44;0;South Korea;Asiatic Region;"";"2019-2025";"Hepatology (Q1); Oncology (Q1); Pathology and Forensic Medicine (Q1); Surgery (Q1)";"Medicine" +2004;21100850723;"mSystems";journal;"23795077";"American Society for Microbiology";Yes;No;1,671;Q1;101;404;987;26676;5453;978;4,92;66,03;44,00;2;United States;Northern America;"American Society for Microbiology";"2016-2026";"Biochemistry (Q1); Computer Science Applications (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1); Microbiology (Q1); Modeling and Simulation (Q1); Molecular Biology (Q1); Physiology (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Computer Science; Immunology and Microbiology; Mathematics" +2005;15111;"Progress in Planning";journal;"03059006";"Elsevier Ltd";No;No;1,671;Q1;64;12;36;1971;342;36;11,08;164,25;33,85;1;United Kingdom;Western Europe;"Elsevier Ltd";"1973-2026";"Geography, Planning and Development (Q1)";"Social Sciences" +2006;26422;"SIAM Journal on Optimization";journal;"10526234, 10957189";"Society for Industrial and Applied Mathematics Publications";No;No;1,671;Q1;160;104;362;4462;1177;362;2,89;42,90;24,38;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"1991, 1996-2026";"Applied Mathematics (Q1); Software (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +2007;19830;"Sleep";journal;"01618105, 15509109";"Oxford University Press";No;No;1,671;Q1;257;348;929;14925;3960;643;4,03;42,89;47,09;0;United States;Northern America;"Oxford University Press";"1978-2026";"Behavioral Neuroscience (Q1); Clinical Psychology (Q1); Neurology (clinical) (Q1); Neuropsychology and Physiological Psychology (Q1); Physiology (medical) (Q1)";"Medicine; Neuroscience; Psychology" +2008;29775;"Cochrane Database of Systematic Reviews";journal;"1469493X";"John Wiley and Sons Ltd";No;No;1,670;Q1;359;426;1497;38178;7814;1481;5,29;89,62;50,68;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1998-2026";"Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1)";"Medicine" +2009;21101045769;"European Security";journal;"17461545, 09662839";"Taylor and Francis Ltd.";No;No;1,669;Q1;42;50;100;3706;574;98;4,61;74,12;35,90;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Political Science and International Relations (Q1)";"Social Sciences" +2010;16800154723;"Marketing Theory";journal;"14705931, 1741301X";"SAGE Publications Ltd";No;No;1,669;Q1;89;56;103;4243;466;94;4,00;75,77;58,40;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Marketing (Q1)";"Business, Management and Accounting" +2011;17617;"Journal of Lipid Research";journal;"15397262, 00222275";"American Society for Biochemistry and Molecular Biology Inc.";Yes;No;1,668;Q1;240;210;451;12082;2113;431;4,55;57,53;44,17;0;United States;Northern America;"American Society for Biochemistry and Molecular Biology Inc.";"1960-1961, 1963-2026";"Biochemistry (Q1); Cell Biology (Q1); Endocrinology (Q1)";"Biochemistry, Genetics and Molecular Biology" +2012;17222;"Mayo Clinic Proceedings";journal;"19425546, 00256196";"Elsevier Ltd";No;No;1,668;Q1;231;369;951;8944;2899;546;2,52;24,24;37,76;2;United Kingdom;Western Europe;"Elsevier Ltd";"1926-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +2013;29820;"Histopathology";journal;"13652559, 03090167";"Wiley-Blackwell Publishing Ltd";No;No;1,667;Q1;151;229;646;7329;2586;525;3,82;32,00;48,14;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1977-2026";"Histology (Q1); Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1)";"Medicine" +2014;17700156733;"Journal of Consumer Behaviour";journal;"14791838, 14720817";"Wiley-Blackwell";No;No;1,667;Q1;80;187;406;17797;3645;395;9,13;95,17;40,79;0;United States;Northern America;"Wiley-Blackwell";"2007, 2009-2026";"Applied Psychology (Q1); Social Psychology (Q1)";"Psychology" +2015;20633;"Journal of International Management";journal;"10754253";"Elsevier Inc.";No;No;1,667;Q1;96;56;194;5416;1410;194;5,38;96,71;34,36;0;United States;Northern America;"Elsevier Inc.";"1998-2026";"Business and International Management (Q1); Finance (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2016;19600161901;"Science China Earth Sciences";journal;"16747313, 18691897";"Science China Press";No;No;1,667;Q1;139;284;600;24520;3815;579;5,59;86,34;32,93;1;China;Asiatic Region;"Science China Press";"2010-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +2017;20779;"European Journal of Immunology";journal;"00142980, 15214141";"Wiley-VCH Verlag";No;No;1,666;Q1;235;258;608;14088;2519;564;4,31;54,60;49,15;0;Germany;Western Europe;"Wiley-VCH Verlag";"1971-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +2018;23180;"Food Research International";journal;"09639969, 18737145";"Elsevier Ltd";No;No;1,666;Q1;253;2152;4051;137461;41867;4046;9,68;63,88;48,89;0;United Kingdom;Western Europe;"Elsevier Ltd";"1992-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +2019;21105;"International Journal of Fatigue";journal;"01421123";"Elsevier Ltd";No;No;1,666;Q1;173;517;1660;27104;12594;1653;7,70;52,43;23,32;0;United Kingdom;Western Europe;"Elsevier Ltd";"1979-2026";"Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Modeling and Simulation (Q1)";"Engineering; Materials Science; Mathematics" +2020;23861;"Journal of Comparative Economics";journal;"10957227, 01475967";"Academic Press Inc.";No;No;1,666;Q1;116;54;170;3893;777;168;4,48;72,09;33,88;5;United States;Northern America;"Academic Press Inc.";"1977-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +2021;18000156704;"Mathematical Thinking and Learning";journal;"15327833, 10986065";"Routledge";No;No;1,666;Q1;40;40;65;2519;266;62;3,79;62,98;64,35;0;United States;Northern America;"Routledge";"2009-2026";"Developmental and Educational Psychology (Q1); Education (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics; Psychology; Social Sciences" +2022;21100203116;"Clinical Kidney Journal";journal;"20488505, 20488513";"Oxford University Press";Yes;No;1,665;Q1;77;416;1038;17349;4778;901;4,54;41,70;43,55;1;United Kingdom;Western Europe;"Oxford University Press";"2009, 2011-2026";"Nephrology (Q1); Transplantation (Q1)";"Medicine" +2023;130065;"Journal of Enterprise Information Management";journal;"17410398";"Emerald Publishing";No;No;1,665;Q1;100;143;225;13009;2768;223;12,32;90,97;31,99;0;United Kingdom;Western Europe;"Emerald Publishing";"2004-2026";"Decision Sciences (miscellaneous) (Q1); Information Systems (Q1); Library and Information Sciences (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences; Social Sciences" +2024;21101185961;"Rock Mechanics Bulletin";journal;"27732304";"KeAi Communications Co.";Yes;No;1,665;Q1;21;35;79;1568;639;78;8,29;44,80;21,88;0;China;Asiatic Region;"KeAi Communications Co.";"2022-2026";"Civil and Structural Engineering (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Engineering" +2025;21101229222;"JCPP Advances";journal;"26929384";"John Wiley and Sons Ltd";Yes;No;1,664;Q1;24;106;184;5728;818;161;4,73;54,04;64,03;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2021-2026";"Developmental and Educational Psychology (Q1); Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Psychology" +2026;19700175052;"Clinical Epidemiology";journal;"11791349";"Dove Medical Press Ltd";Yes;No;1,663;Q1;92;92;320;3274;1325;293;3,80;35,59;49,71;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2026";"Epidemiology (Q1)";"Medicine" +2027;12383;"International Journal of Impact Engineering";journal;"0734743X";"Elsevier Ltd";No;No;1,662;Q1;173;287;766;13566;5745;763;7,50;47,27;23,28;0;United Kingdom;Western Europe;"Elsevier Ltd";"1983-2026";"Aerospace Engineering (Q1); Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Ocean Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering" +2028;21100777183;"Journal of Family Theory and Review";journal;"17562589, 17562570";"Wiley-Blackwell Publishing Ltd";No;No;1,662;Q1;50;61;130;4216;652;121;4,69;69,11;64,22;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2009, 2013, 2016-2026";"Health (social science) (Q1); Social Psychology (Q1); Social Sciences (miscellaneous) (Q1)";"Psychology; Social Sciences" +2029;21100833818;"Biomaterials Research";journal;"20557124";"American Association for the Advancement of Science";Yes;No;1,661;Q1;65;163;336;10581;3308;336;9,30;64,91;39,68;0;United States;Northern America;"American Association for the Advancement of Science";"2014-2026";"Biomaterials (Q1); Biomedical Engineering (Q1); Ceramics and Composites (Q1); Medicine (miscellaneous) (Q1)";"Engineering; Materials Science; Medicine" +2030;29225;"Chinese Medical Journal";journal;"25425641, 03666999";"Lippincott Williams and Wilkins";Yes;No;1,661;Q1;92;593;1520;23283;6465;852;4,08;39,26;44,01;0;China;Asiatic Region;"Lippincott Williams and Wilkins";"1946-1960, 1962-1966, 1973-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +2031;21101329141;"Journal of Health Monitoring";journal;"25112708";"Robert Koch Institute";No;No;1,661;Q1;19;24;90;1352;430;76;4,90;56,33;61,54;1;Germany;Western Europe;"Robert Koch Institute";"2021-2025";"Epidemiology (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2032;18729;"Psychiatry Research";journal;"01651781, 18727123";"Elsevier Ireland Ltd";No;No;1,661;Q1;198;451;1630;24143;7947;1507;4,91;53,53;51,47;8;Ireland;Western Europe;"Elsevier Ireland Ltd";"1979-2026";"Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +2033;21100199330;"Advances in Calculus of Variations";journal;"18648266, 18648258";"Walter de Gruyter GmbH";No;No;1,660;Q1;29;56;145;1952;222;145;1,58;34,86;30,23;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2008-2026";"Analysis (Q1); Applied Mathematics (Q1)";"Mathematics" +2034;21100241208;"Bone and Joint Journal";journal;"20494408, 20494394";"British Editorial Society of Bone and Joint Surgery";No;No;1,660;Q1;224;208;624;7757;2929;567;4,22;37,29;20,00;0;United Kingdom;Western Europe;"British Editorial Society of Bone and Joint Surgery";"2013-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Sports Science (Q1); Surgery (Q1)";"Health Professions; Medicine" +2035;15063;"Composite Structures";journal;"02638223";"Elsevier B.V.";No;No;1,660;Q1;226;1002;3088;54432;26626;3054;8,70;54,32;25,07;0;Netherlands;Western Europe;"Elsevier B.V.";"1981, 1983-2026";"Ceramics and Composites (Q1); Civil and Structural Engineering (Q1)";"Engineering; Materials Science" +2036;21100466856;"Infectious Diseases and Therapy";journal;"21938229, 21936382";"";Yes;No;1,660;Q1;61;183;492;8796;2569;454;4,98;48,07;48,21;2;United Kingdom;Western Europe;"";"2012-2026";"Infectious Diseases (Q1); Microbiology (medical) (Q1)";"Medicine" +2037;24140;"Artificial Intelligence in Medicine";journal;"09333657, 18732860";"Elsevier B.V.";No;No;1,659;Q1;130;171;523;11830;5161;516;9,45;69,18;33,43;1;Netherlands;Western Europe;"Elsevier B.V.";"1989-2026";"Artificial Intelligence (Q1); Health Informatics (Q1); Medicine (miscellaneous) (Q1)";"Computer Science; Medicine" +2038;26991;"International Journal of Hydrogen Energy";journal;"03603199";"Elsevier Ltd";No;No;1,659;Q1;313;5591;12913;360334;122111;12805;9,53;64,45;30,47;19;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Condensed Matter Physics (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Physics and Astronomy" +2039;26784;"British Journal of Biomedical Science";journal;"09674845, 24740896";"Frontiers Media SA";Yes;No;1,658;Q1;52;22;92;1336;871;86;12,68;60,73;45,10;0;United Kingdom;Western Europe;"Frontiers Media SA";"1993-2026";"Biochemistry (medical) (Q1); Clinical Biochemistry (Q1); Immunology (Q1); Immunology and Allergy (Q1); Infectious Diseases (Q1); Microbiology (Q1); Microbiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +2040;24626;"Cell Biology and Toxicology";journal;"15736822, 07422091";"Springer Science and Business Media B.V.";No;No;1,658;Q1;80;162;345;11470;2261;339;6,50;70,80;44,18;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1984-2026";"Cell Biology (Q1); Health, Toxicology and Mutagenesis (Q1); Toxicology (Q1)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +2041;26617;"European Journal of Internal Medicine";journal;"09536205, 18790828";"Elsevier B.V.";No;No;1,657;Q1;105;438;1106;12393;3852;582;3,59;28,29;41,08;3;Netherlands;Western Europe;"Elsevier B.V.";"1989-2026";"Internal Medicine (Q1)";"Medicine" +2042;26953;"Journal of Membrane Science";journal;"18733123, 03767388";"Elsevier B.V.";No;No;1,655;Q1;318;1227;2708;67690;26523;2702;9,99;55,17;36,44;0;Netherlands;Western Europe;"Elsevier B.V.";"1976-2026";"Biochemistry (Q1); Filtration and Separation (Q1); Materials Science (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Materials Science" +2043;21101039769;"Precision Clinical Medicine";journal;"25161571, 20965303";"Oxford University Press";Yes;Yes;1,655;Q1;29;40;92;3164;462;68;4,50;79,10;40,73;0;United Kingdom;Western Europe;"Oxford University Press";"2018-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +2044;23234;"Heart Failure Reviews";journal;"15737322, 13824147";"Springer";No;No;1,654;Q1;110;127;375;8924;2209;367;5,75;70,27;32,33;0;United States;Northern America;"Springer";"1996-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +2045;15041;"Coastal Engineering";journal;"03783839";"Elsevier B.V.";No;No;1,653;Q1;148;157;403;9603;2284;399;5,64;61,17;24,13;0;Netherlands;Western Europe;"Elsevier B.V.";"1973, 1977-2026";"Environmental Engineering (Q1); Ocean Engineering (Q1)";"Engineering; Environmental Science" +2046;21100976672;"IEEE Transactions on Emerging Topics in Computational Intelligence";journal;"2471285X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,653;Q1;65;398;594;21484;5103;586;8,58;53,98;28,54;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017-2026";"Artificial Intelligence (Q1); Computational Mathematics (Q1); Computer Science Applications (Q1); Control and Optimization (Q1)";"Computer Science; Mathematics" +2047;12600154733;"National Health Statistics Reports";book series;"23328363, 21648344";"National Center for Health Statistics";No;No;1,653;Q1;83;6;55;131;242;52;5,05;21,83;50,00;0;United States;Northern America;"National Center for Health Statistics";"2008-2025";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2048;21250;"International Reviews of Immunology";journal;"15635244, 08830185";"Taylor and Francis Ltd.";No;No;1,652;Q1;84;24;95;3240;598;91;5,12;135,00;43,59;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +2049;21676;"American Journal of Bioethics";journal;"15265161, 15360075";"Taylor and Francis Ltd.";No;No;1,651;Q1;81;474;1128;7714;1582;116;1,50;16,27;55,91;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Health Policy (Q1); Issues, Ethics and Legal Aspects (Q1)";"Medicine; Nursing" +2050;22452;"International Journal of Neuropsychopharmacology";journal;"14611457, 14695111";"Oxford University Press";Yes;No;1,651;Q1;135;80;236;4890;1198;230;4,67;61,13;38,93;0;United Kingdom;Western Europe;"Oxford University Press";"1998-2026";"Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +2051;21846;"Anesthesiology";journal;"15281175, 00033022";"Lippincott Williams and Wilkins";No;No;1,650;Q1;287;561;1008;11234;3418;554;3,31;20,02;41,90;0;United States;Northern America;"Lippincott Williams and Wilkins";"1945-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +2052;29919;"Critical Reviews in Clinical Laboratory Sciences";journal;"10408363, 1549781X";"Taylor and Francis Ltd.";No;No;1,650;Q1;101;47;103;6202;788;103;6,69;131,96;45,05;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1970-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biochemistry (medical) (Q1); Clinical Biochemistry (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2053;14107;"European Journal of Psychological Assessment";journal;"21512426, 10155759";"Hogrefe Publishing";No;No;1,650;Q1;85;86;177;4183;918;165;3,04;48,64;51,69;1;United States;Northern America;"Hogrefe Publishing";"1996-2026";"Applied Psychology (Q1)";"Psychology" +2054;24657;"Chemosphere";journal;"00456535, 18791298";"Elsevier Ltd";No;No;1,648;Q1;353;811;11684;55896;100607;11607;7,63;68,92;42,31;7;United Kingdom;Western Europe;"Elsevier Ltd";"1972-2026";"Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Environmental Engineering (Q1); Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Pollution (Q1); Public Health, Environmental and Occupational Health (Q1)";"Chemistry; Environmental Science; Medicine" +2055;15700154705;"Operations Management Research";journal;"19369743, 19369735";"Springer New York";No;No;1,648;Q1;57;61;250;5399;2738;249;8,69;88,51;24,74;0;United States;Northern America;"Springer New York";"2008-2026";"Industrial and Manufacturing Engineering (Q1); Management of Technology and Innovation (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences; Engineering" +2056;17336;"IEEE Transactions on Aerospace and Electronic Systems";journal;"00189251, 15579603";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,647;Q1;186;1393;1824;58251;14618;1816;7,75;41,82;26,70;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1965-2026";"Aerospace Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Engineering" +2057;21100469641;"BMJ Open Diabetes Research and Care";journal;"20524897";"BMJ Publishing Group";Yes;No;1,646;Q1;70;88;362;3214;1755;353;4,54;36,52;45,73;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2014-2026";"Endocrinology, Diabetes and Metabolism (Q1)";"Medicine" +2058;21100370190;"Current Opinion in Food Science";journal;"22147993";"Elsevier Ltd";No;No;1,646;Q1;109;88;352;4111;3668;334;9,28;46,72;44,70;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Applied Microbiology and Biotechnology (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Immunology and Microbiology" +2059;4900152303;"Global Environmental Politics";journal;"15263800";"MIT Press";No;No;1,646;Q1;81;15;101;907;516;93;5,42;60,47;70,83;1;United States;Northern America;"MIT Press";"2006-2025";"Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1); Political Science and International Relations (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Environmental Science; Social Sciences" +2060;21100823147;"Annals of Clinical and Translational Neurology";journal;"23289503";"John Wiley & Sons Inc.";Yes;No;1,645;Q1;84;300;710;10761;3017;696;4,01;35,87;44,91;1;United States;Northern America;"John Wiley & Sons Inc.";"2014-2026";"Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)";"Medicine; Neuroscience" +2061;17300154985;"Autism Research";journal;"19393792, 19393806";"John Wiley and Sons Inc";No;No;1,643;Q1;111;194;581;12413;3708;524;4,18;63,98;59,71;1;United States;Northern America;"John Wiley and Sons Inc";"2008-2026";"Genetics (clinical) (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)";"Medicine; Neuroscience" +2062;13503;"Developmental Science";journal;"14677687, 1363755X";"Wiley-Blackwell Publishing Ltd";No;No;1,643;Q1;162;126;401;7992;1659;392;4,12;63,43;66,99;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1998-2026";"Cognitive Neuroscience (Q1); Developmental and Educational Psychology (Q1)";"Neuroscience; Psychology" +2063;23246;"Heart Rhythm";journal;"15475271, 15563871";"Elsevier B.V.";No;No;1,643;Q1;173;792;1183;18904;4129;923;3,51;23,87;26,10;1;Netherlands;Western Europe;"Elsevier B.V.";"2004-2026";"Cardiology and Cardiovascular Medicine (Q1); Physiology (medical) (Q1)";"Medicine" +2064;25848;"International Studies Quarterly";journal;"14682478, 00208833";"Oxford University Press";No;No;1,643;Q1;133;104;353;8003;1405;353;3,40;76,95;45,15;8;United States;Northern America;"Oxford University Press";"1971-1974, 1976, 1978, 1982-1983, 1985, 1987-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2065;17592;"Journal of Biological Chemistry";journal;"00219258, 1083351X";"American Society for Biochemistry and Molecular Biology Inc.";Yes;No;1,643;Q1;578;1234;3596;78955;14672;3549;3,94;63,98;40,05;0;United States;Northern America;"American Society for Biochemistry and Molecular Biology Inc.";"1931, 1933-1938, 1941-1942, 1945-2026";"Biochemistry (Q1); Cell Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +2066;19700175026;"Oxidative Medicine and Cellular Longevity";journal;"19420994, 19420900";"John Wiley and Sons Ltd";Yes;No;1,643;Q1;188;45;1345;1704;10207;1334;5,14;37,87;53,90;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Aging (Q1); Biochemistry (Q1); Cell Biology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2067;21100924839;"Communications Chemistry";journal;"23993669";"Springer Nature";Yes;No;1,642;Q1;66;409;755;25366;4689;688;5,96;62,02;32,96;0;United States;Northern America;"Springer Nature";"2018-2026";"Biochemistry (Q1); Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Materials Chemistry (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Environmental Science; Materials Science" +2068;14990;"Current Neuropharmacology";journal;"18756190, 1570159X";"Bentham Science Publishers";No;No;1,642;Q1;125;192;481;19926;3318;449;6,36;103,78;46,79;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2004-2026";"Medicine (miscellaneous) (Q1); Neurology (Q1); Neurology (clinical) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +2069;25961;"Educational Studies in Mathematics";journal;"15730816, 00131954";"Springer Netherlands";No;No;1,642;Q1;97;104;228;5750;895;219;2,86;55,29;55,08;1;Netherlands;Western Europe;"Springer Netherlands";"1968-2026";"Education (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics; Social Sciences" +2070;26950;"Journal of Colloid and Interface Science";journal;"10957103, 00219797";"Academic Press Inc.";Yes;No;1,642;Q1;297;3088;6950;173296;68189;6949;10,15;56,12;38,30;1;United States;Northern America;"Academic Press Inc.";"1966-2026";"Biomaterials (Q1); Colloid and Surface Chemistry (Q1); Electronic, Optical and Magnetic Materials (Q1); Surfaces, Coatings and Films (Q1)";"Chemical Engineering; Materials Science" +2071;16573;"Phytotherapy Research";journal;"10991573, 0951418X";"John Wiley and Sons Ltd";No;No;1,642;Q1;177;291;983;29944;8782;940;8,50;102,90;45,95;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1987-2026";"Pharmacology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +2072;19700200885;"Therapeutic Advances in Endocrinology and Metabolism";journal;"20420196, 20420188";"Sage Periodicals Press";Yes;No;1,642;Q1;54;56;125;2972;833;118;7,47;53,07;43,41;0;United States;Northern America;"Sage Periodicals Press";"2010-2026";"Endocrinology, Diabetes and Metabolism (Q1)";"Medicine" +2073;24710;"Annals of Applied Probability";journal;"10505164";"Institute of Mathematical Statistics";No;No;1,641;Q1;98;109;433;4827;967;432;2,25;44,28;18,29;0;United States;Northern America;"Institute of Mathematical Statistics";"1996-2025";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +2074;21100924862;"Communications Physics";journal;"23993650";"Springer Nature";Yes;No;1,641;Q1;72;509;1104;31000;6260;1089;5,22;60,90;21,47;0;United States;Northern America;"Springer Nature";"2018-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +2075;15871;"Journal of Clinical Microbiology";journal;"1098660X, 00951137";"American Society for Microbiology";Yes;No;1,641;Q1;305;259;724;8104;3192;610;4,23;31,29;50,14;2;United States;Northern America;"American Society for Microbiology";"1975-2026";"Microbiology (medical) (Q1)";"Medicine" +2076;21100316002;"Travel Behaviour and Society";journal;"2214367X";"Elsevier B.V.";No;No;1,641;Q1;67;206;430;13189;3395;425;7,47;64,02;36,19;2;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Geography, Planning and Development (Q1); Transportation (Q1)";"Social Sciences" +2077;16751;"Journal of Neurology";journal;"03405354, 14321459";"Springer Science and Business Media Deutschland GmbH";No;No;1,640;Q1;175;774;2005;32908;9223;1686;4,61;42,52;46,46;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1974-2026";"Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +2078;100147314;"Journal of International Financial Management and Accounting";journal;"09541314, 1467646X";"Wiley-Blackwell Publishing Ltd";No;No;1,639;Q1;55;29;68;1849;663;67;6,94;63,76;40,74;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1989-1992, 1994-2026";"Accounting (Q1); Business, Management and Accounting (miscellaneous) (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2079;16322;"Desalination";journal;"00119164";"Elsevier B.V.";No;No;1,635;Q1;258;985;2225;69128;23981;2222;10,90;70,18;36,41;1;Netherlands;Western Europe;"Elsevier B.V.";"1966-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Water Science and Technology (Q1)";"Chemical Engineering; Chemistry; Engineering; Environmental Science; Materials Science" +2080;21100886430;"Forum of Mathematics, Sigma";journal;"20505094";"Cambridge University Press";Yes;No;1,635;Q1;29;197;352;7816;478;352;1,22;39,68;16,59;0;United Kingdom;Western Europe;"Cambridge University Press";"2013-2026";"Algebra and Number Theory (Q1); Analysis (Q1); Computational Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1); Mathematical Physics (Q1); Statistics and Probability (Q1); Theoretical Computer Science (Q1)";"Mathematics" +2081;27085;"American Journal of Surgical Pathology";journal;"15320979, 01475185";"Wolters Kluwer Health";No;No;1,632;Q1;254;144;541;4944;2400;499;4,33;34,33;45,25;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1977-2026";"Anatomy (Q1); Pathology and Forensic Medicine (Q1); Surgery (Q1)";"Medicine" +2082;13900154714;"Influenza and other Respiratory Viruses";journal;"17502640, 17502659";"Wiley-Blackwell Publishing Ltd";Yes;No;1,632;Q1;86;131;483;4607;1869;452;3,72;35,17;54,18;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2007-2026";"Epidemiology (Q1); Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine" +2083;21101170038;"Journal of Psychopathology and Clinical Science";journal;"2769755X, 27697541";"American Psychological Association";No;No;1,632;Q1;16;65;149;3602;589;148;3,95;55,42;48,99;0;United States;Northern America;"American Psychological Association";"2022-2025";"Biological Psychiatry (Q1); Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Neuroscience; Psychology" +2084;13453;"Learning and Individual Differences";journal;"18733425, 10416080";"Elsevier B.V.";No;No;1,632;Q1;123;170;298;14669;3502;289;13,31;86,29;55,86;4;United Kingdom;Western Europe;"Elsevier B.V.";"1989-2000, 2002-2026";"Developmental and Educational Psychology (Q1); Education (Q1); Social Psychology (Q1)";"Psychology; Social Sciences" +2085;19700176023;"Virulence";journal;"21505594, 21505608";"Landes Bioscience";Yes;No;1,632;Q1;109;318;413;24573;2733;393;6,53;77,27;45,89;0;United States;Northern America;"Landes Bioscience";"2010-2026";"Immunology (Q1); Infectious Diseases (Q1); Microbiology (Q1); Microbiology (medical) (Q1); Parasitology (Q1)";"Immunology and Microbiology; Medicine" +2086;12551;"Best Practice and Research: Clinical Obstetrics and Gynaecology";journal;"15216934, 15321932";"Bailliere Tindall Ltd";No;No;1,631;Q1;116;65;273;4150;1627;252;6,18;63,85;59,40;0;United Kingdom;Western Europe;"Bailliere Tindall Ltd";"1999-2026";"Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)";"Medicine" +2087;21100872126;"EFORT Open Reviews";journal;"20585241, 23967544";"British Editorial Society of Bone and Joint Surgery";Yes;No;1,630;Q1;66;89;280;4924;1513;276;5,08;55,33;21,36;0;United Kingdom;Western Europe;"British Editorial Society of Bone and Joint Surgery";"2016-2025";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +2088;19700174932;"Epigenetics and Chromatin";journal;"17568935";"BioMed Central Ltd";Yes;No;1,630;Q1;74;81;127;6738;572;126;4,28;83,19;46,61;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2009-2026";"Genetics (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +2089;21101147607;"Oxford Open Climate Change";journal;"26344068";"Oxford University Press";Yes;No;1,630;Q1;12;30;37;1800;215;34;5,97;60,00;43,90;4;United Kingdom;Western Europe;"Oxford University Press";"2021-2026";"Global and Planetary Change (Q1)";"Environmental Science" +2090;25451;"Transactions of Tianjin University";journal;"10064982, 19958196";"Tianjin Daxue/Tianjin University";No;No;1,630;Q1;39;36;118;3270;909;118;7,81;90,83;34,04;0;China;Asiatic Region;"Tianjin Daxue/Tianjin University";"2004-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +2091;21100934923;"IEEE Communications Standards Magazine";journal;"24712825";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,629;Q1;50;130;157;1893;1034;134;5,80;14,56;24,86;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017-2026";"Computer Networks and Communications (Q1); Law (Q1); Management of Technology and Innovation (Q1); Safety, Risk, Reliability and Quality (Q1)";"Business, Management and Accounting; Computer Science; Engineering; Social Sciences" +2092;21101132924;"Biological Psychiatry Global Open Science";journal;"26671743";"Elsevier Inc.";Yes;No;1,628;Q1;22;171;304;10205;1113;254;3,34;59,68;45,95;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +2093;21101155648;"Converging Evidence in Language and Communication Research";book series;"15667774";"John Benjamins Publishing Company";No;No;1,628;Q1;11;0;13;0;10;1;8,00;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2000, 2019-2023";"Linguistics and Language (Q1)";"Social Sciences" +2094;20500195210;"Current Opinion in Chemical Engineering";journal;"22113398";"Elsevier Ltd";No;No;1,628;Q1;87;111;243;5500;2213;225;8,86;49,55;36,49;0;United Kingdom;Western Europe;"Elsevier Ltd";"2011-2026";"Energy (miscellaneous) (Q1)";"Energy" +2095;29326;"Current Treatment Options in Oncology";journal;"15346277, 15272729";"Springer";No;No;1,626;Q1;77;81;340;7320;1926;338;5,87;90,37;47,73;0;United States;Northern America;"Springer";"2000-2026";"Oncology (Q1); Pharmacology (medical) (Q1)";"Medicine" +2096;21101269466;"Polyoxometalates";journal;"29579821, 29579503";"Tsinghua University Press";Yes;Yes;1,626;Q1;23;31;62;2231;618;61;10,16;71,97;42,13;0;China;Asiatic Region;"Tsinghua University Press";"2022-2026";"Chemistry (miscellaneous) (Q1); Inorganic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry" +2097;22377;"Value in Health";journal;"10983015, 15244733";"Elsevier Ltd";No;No;1,626;Q1;144;259;653;11866;2895;581;3,99;45,81;48,73;6;United Kingdom;Western Europe;"Elsevier Ltd";"1998-2026";"Health Policy (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2098;21101150129;"Affective Science";journal;"2662205X, 26622041";"Springer Nature";No;No;1,625;Q1;27;52;180;3492;915;159;5,24;67,15;62,25;0;Switzerland;Western Europe;"Springer Nature";"2020-2026";"Behavioral Neuroscience (Q1); Clinical Psychology (Q1); Neuropsychology and Physiological Psychology (Q1); Social Psychology (Q1)";"Neuroscience; Psychology" +2099;12277;"Management Accounting Research";journal;"10445005, 10961224";"Academic Press";No;No;1,625;Q1;109;19;48;1483;303;44;5,19;78,05;36,00;0;United States;Northern America;"Academic Press";"1990-2026";"Accounting (Q1); Finance (Q1); Information Systems and Management (Q1)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +2100;21100256982;"IEEE Journal of Biomedical and Health Informatics";journal;"21682208, 21682194";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,624;Q1;179;1250;1830;62857;16236;1795;8,18;50,29;33,45;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2026";"Biotechnology (Q1); Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Health Informatics (Q1); Health Information Management (Q1)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Engineering; Health Professions; Medicine" +2101;27034;"Progress in Reaction Kinetics and Mechanism";journal;"14686783, 1471406X";"Science Reviews Ltd";No;No;1,624;Q1;30;0;7;0;84;7;34,50;0,00;0,00;0;United Kingdom;Western Europe;"Science Reviews Ltd";"1999-2024";"Physical and Theoretical Chemistry (Q1)";"Chemistry" +2102;11700154618;"Child and Adolescent Psychiatry and Mental Health";journal;"17532000";"BioMed Central Ltd";Yes;No;1,623;Q1;71;145;398;8923;2193;384;4,80;61,54;53,02;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2007-2026";"Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +2103;28464;"Econometric Theory";journal;"02664666, 14694360";"Cambridge University Press";No;No;1,623;Q1;87;58;132;2598;151;128;1,07;44,79;27,12;0;United Kingdom;Western Europe;"Cambridge University Press";"1985-2026";"Economics and Econometrics (Q1); Social Sciences (miscellaneous) (Q1)";"Economics, Econometrics and Finance; Social Sciences" +2104;15620;"Earthquake Engineering and Structural Dynamics";journal;"10969845, 00988847";"John Wiley and Sons Ltd";No;No;1,622;Q1;175;203;641;9994;3552;637;5,52;49,23;21,18;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1972-2026";"Civil and Structural Engineering (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Engineering" +2105;29359;"Energy and Buildings";journal;"03787788";"Elsevier B.V.";No;No;1,622;Q1;260;1328;2880;82727;25169;2874;8,67;62,29;33,21;4;Netherlands;Western Europe;"Elsevier B.V.";"1970, 1977-1979, 1981-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1)";"Engineering" +2106;14759;"International Journal of Molecular Medicine";journal;"1791244X, 11073756";"Spandidos Publications";No;No;1,622;Q1;124;230;372;27308;2512;372;6,76;118,73;46,48;1;Greece;Western Europe;"Spandidos Publications";"1998-2026";"Genetics (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2107;30073;"Journal of Research in Personality";journal;"00926566, 10957251";"Academic Press Inc.";No;No;1,622;Q1;154;79;246;5598;989;244;3,81;70,86;41,50;0;United States;Northern America;"Academic Press Inc.";"1973-2026";"Psychology (miscellaneous) (Q1); Social Psychology (Q1)";"Psychology" +2108;21101145380;"Space: Science and Technology (United States)";journal;"26927659";"American Association for the Advancement of Science";Yes;Yes;1,622;Q1;25;71;157;3553;1138;152;6,97;50,04;28,09;0;United States;Northern America;"American Association for the Advancement of Science";"2021-2026";"Aerospace Engineering (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Engineering" +2109;8300153105;"Current Reviews in Musculoskeletal Medicine";journal;"19359748, 1935973X";"Springer";No;No;1,621;Q1;76;61;193;3639;1179;193;5,52;59,66;31,23;0;United States;Northern America;"Springer";"2008-2026";"Orthopedics and Sports Medicine (Q1)";"Medicine" +2110;28350;"Gastrointestinal Endoscopy";journal;"10976779, 00165107";"Elsevier Inc.";No;No;1,621;Q1;241;539;1344;8633;4036;957;2,88;16,02;29,13;2;United States;Northern America;"Elsevier Inc.";"1965-2026";"Gastroenterology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +2111;21101190429;"Journal of Urban Mobility";journal;"26670917";"Elsevier Ltd";Yes;No;1,621;Q1;21;71;84;4549;754;83;8,21;64,07;41,06;1;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Geography, Planning and Development (Q1); Transportation (Q1)";"Social Sciences" +2112;28089;"Obstetrics and Gynecology";journal;"00297844, 1873233X";"Lippincott Williams and Wilkins";No;No;1,621;Q1;280;318;1059;9062;3608;841;3,43;28,50;65,25;0;United States;Northern America;"Lippincott Williams and Wilkins";"1953-2026";"Obstetrics and Gynecology (Q1)";"Medicine" +2113;25849;"International Studies Review";journal;"15219488, 14682486";"Oxford University Press";No;No;1,620;Q1;83;19;152;2029;711;150;4,10;106,79;35,59;1;United States;Northern America;"Oxford University Press";"1999-2026";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +2114;21100203714;"Skeletal Muscle";journal;"20445040";"BioMed Central Ltd";Yes;No;1,620;Q1;66;30;86;1968;401;85;4,07;65,60;37,33;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2011-2026";"Cell Biology (Q1); Molecular Biology (Q1); Orthopedics and Sports Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2115;28527;"Experimental Economics";journal;"15736938, 13864157";"Cambridge University Press";No;No;1,619;Q1;71;44;134;2484;283;131;1,76;56,45;23,68;1;United Kingdom;Western Europe;"Cambridge University Press";"1998, 2000-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +2116;26425;"SIAM Journal on Scientific Computing";journal;"10957197, 10648275";"Society for Industrial and Applied Mathematics Publications";No;No;1,618;Q1;175;247;653;11191;2001;649;2,82;45,31;20,61;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"1996-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1)";"Mathematics" +2117;96592;"Journal of Agrarian Change";journal;"14710366, 14710358";"Wiley-Blackwell Publishing Ltd";No;No;1,617;Q1;79;51;115;4175;497;115;3,97;81,86;45,36;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2001-2026";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); Global and Planetary Change (Q1)";"Arts and Humanities; Environmental Science; Social Sciences" +2118;27364;"Population and Development Review";journal;"17284457, 00987921";"Wiley-Blackwell Publishing Ltd";No;No;1,616;Q1;128;58;170;4765;778;136;3,31;82,16;51,97;8;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1976-2026";"Demography (Q1); Development (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2119;21100463103;"Advances in Wound Care";journal;"21621934, 21621918";"Mary Ann Liebert Inc.";No;No;1,615;Q1;56;94;158;6871;1239;157;7,42;73,10;44,67;0;United States;Northern America;"Mary Ann Liebert Inc.";"2012, 2015-2026";"Critical Care and Intensive Care Medicine (Q1); Emergency Medicine (Q1)";"Medicine" +2120;19700171101;"ACS Applied Materials and Interfaces";journal;"19448252, 19448244";"American Chemical Society";Yes;No;1,614;Q1;356;5907;17104;335517;137337;17085;7,67;56,80;35,39;0;United States;Northern America;"American Chemical Society";"2009-2026";"Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)";"Materials Science; Medicine" +2121;25252;"Contributions to Mineralogy and Petrology";journal;"00107999, 14320967";"Springer Verlag";No;No;1,614;Q1;187;86;313;7676;1024;310;3,02;89,26;27,38;0;Germany;Western Europe;"Springer Verlag";"1966-2026";"Geochemistry and Petrology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +2122;21100474207;"Annual Symposium on Foundations of Computer Science - Proceedings";conference and proceedings;"02725428";"IEEE Computer Society";No;No;1,613;-;148;0;510;0;2100;502;2,97;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"1975-2020, 2022-2024";"Atomic and Molecular Physics, and Optics; Computer Networks and Communications; Computer Science (miscellaneous); Electronic, Optical and Magnetic Materials; Engineering (miscellaneous)";"Computer Science; Engineering; Materials Science; Physics and Astronomy" +2123;21101023178;"JPhys Photonics";journal;"25157647";"IOP Publishing Ltd.";Yes;No;1,611;Q1;39;142;140;8192;840;136;4,88;57,69;25,91;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2018-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Engineering; Materials Science; Physics and Astronomy" +2124;21100243003;"Nutrition and Diabetes";journal;"20444052";"Springer Nature";Yes;No;1,610;Q1;69;53;170;2916;1040;167;5,72;55,02;49,18;0;United Kingdom;Western Europe;"Springer Nature";"2011-2026";"Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Medicine" +2125;21100451398;"Asia-Pacific Journal of Ophthalmology";journal;"21620989";"Elsevier B.V.";Yes;No;1,609;Q1;54;81;284;4339;1177;192;4,12;53,57;37,77;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Medicine (miscellaneous) (Q1); Ophthalmology (Q1)";"Medicine" +2126;20753;"Current Allergy and Asthma Reports";journal;"15297322, 15346315";"Springer";No;No;1,609;Q1;89;61;149;5866;983;149;6,62;96,16;49,11;1;United States;Northern America;"Springer";"2001-2026";"Immunology (Q1); Immunology and Allergy (Q1); Pulmonary and Respiratory Medicine (Q1)";"Immunology and Microbiology; Medicine" +2127;21100847441;"Journal of New Approaches in Educational Research";journal;"22547339";"Springer International Publishing";Yes;Yes;1,609;Q1;31;27;58;1536;544;58;10,89;56,89;57,95;0;Switzerland;Western Europe;"Springer International Publishing";"2015, 2017-2026";"Education (Q1)";"Social Sciences" +2128;22140;"Mathematics of Operations Research";journal;"15265471, 0364765X";"INFORMS Inst.for Operations Res.and the Management Sciences";Yes;No;1,609;Q1;99;107;344;5207;982;344;3,03;48,66;20,71;0;United States;Northern America;"INFORMS Inst.for Operations Res.and the Management Sciences";"1976-1992, 1994-2026";"Computer Science Applications (Q1); Management Science and Operations Research (Q1); Mathematics (miscellaneous) (Q1)";"Computer Science; Decision Sciences; Mathematics" +2129;21100941606;"npj Science of Food";journal;"23968370";"Nature Publishing Group";Yes;No;1,609;Q1;44;284;228;19239;2289;223;9,55;67,74;42,84;3;United Kingdom;Western Europe;"Nature Publishing Group";"2017-2026";"Food Science (Q1); Public Health, Environmental and Occupational Health (Q1)";"Agricultural and Biological Sciences; Medicine" +2130;18640;"Respiratory Research";journal;"1465993X, 14659921";"BioMed Central Ltd";Yes;No;1,609;Q1;139;348;1110;16197;6222;1046;5,35;46,54;43,68;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +2131;27944;"Review of International Studies";journal;"14699044, 02602105";"Cambridge University Press";No;No;1,609;Q1;100;110;182;15037;903;179;4,01;136,70;45,81;0;United Kingdom;Western Europe;"Cambridge University Press";"1976, 1981-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2132;5800179606;"Carbon Balance and Management";journal;"17500680";"BioMed Central Ltd";Yes;No;1,607;Q1;56;66;84;3952;534;80;6,66;59,88;35,62;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)";"Earth and Planetary Sciences; Environmental Science" +2133;21100970312;"Cell Surface";journal;"24682330";"Elsevier B.V.";Yes;No;1,607;Q1;28;28;60;2087;402;59;7,64;74,54;41,55;0;Netherlands;Western Europe;"Elsevier B.V.";"2018-2026";"Applied Microbiology and Biotechnology (Q1); Cell Biology (Q1); Microbiology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +2134;20662;"Entrepreneurship and Regional Development";journal;"14645114, 08985626";"Routledge";No;No;1,607;Q1;125;104;161;10525;1176;157;6,31;101,20;40,71;2;United Kingdom;Western Europe;"Routledge";"1989-2026";"Business and International Management (Q1); Development (Q1); Economics and Econometrics (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +2135;22867;"Political Research Quarterly";journal;"1938274X, 10659129";"SAGE Publications Inc.";No;No;1,607;Q1;111;103;329;6848;1013;328;2,72;66,49;35,23;1;United States;Northern America;"SAGE Publications Inc.";"1948, 1950-1952, 1954-1955, 1957-1967, 1969-1977, 1979-1986, 1988-2026";"Sociology and Political Science (Q1)";"Social Sciences" +2136;15061;"Agricultural Systems";journal;"0308521X, 18732267";"Elsevier Ltd";No;No;1,606;Q1;155;255;623;19032;4841;614;7,33;74,64;34,29;18;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +2137;12857;"Cognition";journal;"18737838, 00100277";"Elsevier B.V.";No;No;1,606;Q1;242;253;751;17804;2758;739;3,40;70,37;45,23;1;Netherlands;Western Europe;"Elsevier B.V.";"1972-1974, 1976-2026";"Cognitive Neuroscience (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Linguistics and Language (Q1)";"Neuroscience; Psychology; Social Sciences" +2138;15546;"European Archives of Psychiatry and Clinical Neuroscience";journal;"14338491, 09401334";"Springer Science and Business Media Deutschland GmbH";No;No;1,606;Q1;119;309;487;16320;2239;449;4,50;52,82;46,03;6;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1990-2026";"Biological Psychiatry (Q1); Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +2139;19242;"Proceedings - International Conference on Software Engineering";conference and proceedings;"02705257";"IEEE Computer Society";No;No;1,606;-;193;373;1354;19241;7902;1311;5,52;51,58;29,03;0;United States;Northern America;"IEEE Computer Society";"1976, 1978, 1980-1982, 1984-1985, 1987-1995, 1997-2016, 2018-2025";"Software";"Computer Science" +2140;19143;"Arthritis Care and Research";journal;"2151464X, 21514658";"John Wiley and Sons Inc";No;No;1,605;Q1;207;207;772;7165;2882;689;3,74;34,61;56,44;0;United States;Northern America;"John Wiley and Sons Inc";"1988-1992, 1994, 1996-2026";"Rheumatology (Q1)";"Medicine" +2141;14427;"European Sociological Review";journal;"02667215, 14682672";"Oxford University Press";No;No;1,604;Q1;121;61;196;4134;809;196;3,37;67,77;37,41;11;United Kingdom;Western Europe;"Oxford University Press";"1985-2025";"Sociology and Political Science (Q1)";"Social Sciences" +2142;21100385802;"Interactive Technology and Smart Education";journal;"17415659, 17588510";"Emerald Publishing";No;No;1,604;Q1;44;40;94;2947;937;90;12,66;73,68;45,30;0;United Kingdom;Western Europe;"Emerald Publishing";"2004-2026";"Computer Science (miscellaneous) (Q1); Education (Q1); E-learning (Q1)";"Computer Science; Social Sciences" +2143;18894;"IEEE Antennas and Wireless Propagation Letters";journal;"15485757, 15361225";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,603;Q1;165;992;2138;24142;11468;2126;5,21;24,34;27,38;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2002-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +2144;24483;"Journal of the London Mathematical Society";journal;"00246107, 14697750";"John Wiley and Sons Ltd";No;No;1,602;Q1;67;335;508;12440;690;508;1,33;37,13;19,54;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1926-1978, 1980-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +2145;26151;"Philosophy and Phenomenological Research";journal;"00318205, 19331592";"Wiley-Blackwell";No;No;1,602;Q1;66;109;279;5971;562;252;1,82;54,78;18,55;0;United States;Northern America;"Wiley-Blackwell";"1970, 1988, 2001-2026";"History and Philosophy of Science (Q1); Philosophy (Q1)";"Arts and Humanities" +2146;14551;"Diversity and Distributions";journal;"13669516, 14724642";"Wiley-Blackwell Publishing Ltd";Yes;No;1,601;Q1;155;164;440;14436;2197;433;4,53;88,02;34,21;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1998-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +2147;21101136665;"Healthcare Analytics";journal;"27724425";"Elsevier Inc.";Yes;No;1,601;Q1;43;67;302;4000;3529;298;11,47;59,70;31,36;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Analytical Chemistry (Q1); Health Informatics (Q1)";"Chemistry; Medicine" +2148;21101279577;"Horticulture Advances";journal;"29481104";"Springer";Yes;No;1,601;Q1;12;34;48;2239;298;47;6,21;65,85;41,94;0;Singapore;Asiatic Region;"Springer";"2023-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Food Science (Q1); Horticulture (Q1); Physiology (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +2149;18896;"IEEE Communications Letters";journal;"10897798, 15582558";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,601;Q1;181;622;1898;9722;10142;1897;5,13;15,63;28,83;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1997-2026";"Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Modeling and Simulation (Q1)";"Computer Science; Engineering; Mathematics" +2150;86245;"Precision Agriculture";journal;"15731618, 13852256";"Springer";No;No;1,601;Q1;108;101;360;6110;3350;357;9,60;60,50;24,62;2;United States;Northern America;"Springer";"1999-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1)";"Agricultural and Biological Sciences" +2151;13358;"Sociology of Education";journal;"00380407, 19398573";"SAGE Publications Inc.";No;No;1,601;Q1;123;21;53;1418;257;52;4,71;67,52;39,53;2;United States;Northern America;"SAGE Publications Inc.";"1980, 1983, 1992, 1996-2026";"Education (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2152;14531;"Development (Cambridge)";journal;"14779129, 09501991";"Company of Biologists Ltd";No;No;1,600;Q1;377;396;1429;17984;4108;1288;2,60;45,41;48,12;0;United Kingdom;Western Europe;"Company of Biologists Ltd";"1987-2026";"Developmental Biology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology" +2153;21100316063;"European Heart Journal: Acute Cardiovascular Care";journal;"20488734, 20488726";"Oxford University Press";No;No;1,600;Q1;64;122;471;2678;1262;303;2,76;21,95;24,92;3;United Kingdom;Western Europe;"Oxford University Press";"2012-2026";"Cardiology and Cardiovascular Medicine (Q1); Critical Care and Intensive Care Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +2154;21100896855;"Food Chemistry: X";journal;"25901575";"Elsevier Ltd";Yes;No;1,600;Q1;64;1308;1817;66615;19048;1810;10,20;50,93;46,02;1;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Analytical Chemistry (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Chemistry" +2155;20566;"China Economic Review";journal;"1043951X";"Elsevier B.V.";No;No;1,599;Q1;117;236;454;13523;3195;449;5,99;57,30;39,11;3;Netherlands;Western Europe;"Elsevier B.V.";"1989-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +2156;9000153101;"Foundations and Trends in Human-Computer Interaction";journal;"15513963, 15513955";"Now Publishers Inc";No;No;1,599;Q1;34;4;9;772;119;9;22,00;193,00;20,00;0;United States;Northern America;"Now Publishers Inc";"2007-2025";"Computer Science Applications (Q1); Human-Computer Interaction (Q1)";"Computer Science" +2157;19700177306;"International Journal of Alzheimer's Disease";journal;"20908024, 20900252";"John Wiley and Sons Ltd";Yes;No;1,599;Q1;68;0;13;0;105;13;6,30;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2009-2024";"Aging (Q1); Behavioral Neuroscience (Q1); Cellular and Molecular Neuroscience (Q1); Cognitive Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +2158;28898;"Computers and Security";journal;"01674048";"Elsevier Ltd";No;No;1,598;Q1;148;500;1213;29355;12087;1210;9,96;58,71;29,07;1;United Kingdom;Western Europe;"Elsevier Ltd";"1982-2026";"Computer Science (miscellaneous) (Q1); Law (Q1)";"Computer Science; Social Sciences" +2159;22647;"Gondwana Research";journal;"1342937X";"Elsevier Inc.";No;No;1,598;Q1;191;219;736;22429;6896;710;10,16;102,42;30,37;0;United States;Northern America;"Elsevier Inc.";"1997-2026";"Geology (Q1)";"Earth and Planetary Sciences" +2160;18063;"Journal of Power Sources";journal;"03787753";"Elsevier B.V.";No;No;1,598;Q1;396;2625;4026;163410;35447;4020;8,72;62,25;32,86;1;Netherlands;Western Europe;"Elsevier B.V.";"1976-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Physical and Theoretical Chemistry (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Chemistry; Energy; Engineering" +2161;14062;"Psychonomic Bulletin and Review";journal;"10699384, 15315320";"Springer";Yes;No;1,598;Q1;193;226;558;15487;2240;556;3,58;68,53;41,83;0;United States;Northern America;"Springer";"1994-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1)";"Arts and Humanities; Psychology" +2162;12344;"Scandinavian Journal of Work, Environment and Health";journal;"03553140, 1795990X";"Nordic Association of Occupational Safety and Health";Yes;No;1,598;Q1;127;58;205;2578;854;180;3,81;44,45;49,13;2;Finland;Western Europe;"Nordic Association of Occupational Safety and Health";"1975-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2163;27471;"Applied Geography";journal;"01436228";"Elsevier B.V.";No;No;1,597;Q1;143;255;589;17668;4563;589;8,02;69,29;38,69;2;Netherlands;Western Europe;"Elsevier B.V.";"1981-2026";"Environmental Science (miscellaneous) (Q1); Forestry (Q1); Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Agricultural and Biological Sciences; Business, Management and Accounting; Environmental Science; Social Sciences" +2164;19900191887;"Environmental Sciences Europe";journal;"21904707, 21904715";"Springer";Yes;No;1,597;Q1;79;233;442;19278;3273;423;7,02;82,74;39,80;4;Germany;Western Europe;"Springer";"2011-2026";"Pollution (Q1)";"Environmental Science" +2165;18300156728;"IEEE Transactions on Services Computing";journal;"19391374";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,597;Q1;102;331;932;15645;6862;930;7,30;47,27;28,84;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2008-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Hardware and Architecture (Q1); Information Systems and Management (Q1)";"Computer Science; Decision Sciences" +2166;19278;"Transplantation";journal;"15346080, 00411337";"Lippincott Williams and Wilkins";Yes;No;1,597;Q1;230;767;1276;15298;3974;899;3,20;19,95;38,88;0;United States;Northern America;"Lippincott Williams and Wilkins";"1963-2026";"Transplantation (Q1)";"Medicine" +2167;21101333430;"Environmental Pollution and Management";journal;"29503051";"KeAi Publishing Communications Ltd.";Yes;No;1,596;Q1;7;25;22;2561;183;22;8,32;102,44;25,00;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2024-2026";"Environmental Chemistry (Q1); Health, Toxicology and Mutagenesis (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1)";"Environmental Science" +2168;19900192137;"Social and Personality Psychology Compass";journal;"17519004";"John Wiley and Sons Inc";No;No;1,596;Q1;100;85;320;7419;1457;315;3,94;87,28;60,37;0;United States;Northern America;"John Wiley and Sons Inc";"2007-2026";"Social Psychology (Q1)";"Psychology" +2169;21101140355;"Sustainable Structures";journal;"27893111, 2789312X";"Sustainable Development Press Limited";Yes;Yes;1,596;Q1;24;25;52;1594;479;52;9,40;63,76;27,38;0;Hong Kong;Asiatic Region;"Sustainable Development Press Limited";"2021-2025";"Building and Construction (Q1); Civil and Structural Engineering (Q1)";"Engineering" +2170;29321;"Current Oncology Reports";journal;"15346269, 15233790";"Springer";No;No;1,595;Q1;91;113;447;10016;2555;446;5,46;88,64;44,84;1;United States;Northern America;"Springer";"1999-2026";"Oncology (Q1)";"Medicine" +2171;21100200440;"Dermatology and Therapy";journal;"21938210, 21909172";"";Yes;No;1,595;Q1;62;243;638;9259;2909;608;4,47;38,10;47,80;2;United Kingdom;Western Europe;"";"2011-2026";"Dermatology (Q1)";"Medicine" +2172;130134;"Esophagus";journal;"16129067, 16129059";"Springer";No;No;1,595;Q1;41;65;221;1866;980;215;5,38;28,71;13,99;0;Japan;Asiatic Region;"Springer";"2003-2026";"Gastroenterology (Q1)";"Medicine" +2173;22101;"European Journal of Human Genetics";journal;"10184813, 14765438";"Springer Nature";No;No;1,595;Q1;153;262;688;8695;2610;537;3,74;33,19;59,00;2;Switzerland;Western Europe;"Springer Nature";"1993-2026";"Genetics (Q1); Genetics (clinical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2174;18556;"Journal of Cell Science";journal;"14779137, 00219533";"Company of Biologists Ltd";No;No;1,595;Q2;325;345;1100;20463;3187;935;2,82;59,31;45,03;0;United Kingdom;Western Europe;"Company of Biologists Ltd";"1966-2026";"Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2175;22328;"Organizational Dynamics";journal;"00902616";"Elsevier B.V.";No;No;1,594;Q1;86;76;121;137;764;118;7,82;1,80;41,51;0;United Kingdom;Western Europe;"Elsevier B.V.";"1972-1995, 1997-2026";"Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Psychology; Social Sciences" +2176;26836;"Journal of International Economic Law";journal;"14643758, 13693034";"Oxford University Press";No;No;1,593;Q1;64;31;136;3671;382;134;2,67;118,42;40,00;4;United Kingdom;Western Europe;"Oxford University Press";"1998-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Law (Q1)";"Economics, Econometrics and Finance; Social Sciences" +2177;16220;"Journal of Law and Economics";journal;"15375285, 00222186";"University of Chicago Press";No;No;1,592;Q1;98;28;103;1544;203;101;1,58;55,14;24,19;0;United States;Northern America;"University of Chicago Press";"1978-1989, 1996-2025";"Economics and Econometrics (Q1); Law (Q1)";"Economics, Econometrics and Finance; Social Sciences" +2178;16055;"Reading Research Quarterly";journal;"00340553";"Wiley-Blackwell";No;No;1,592;Q1;118;118;141;10221;797;134;5,65;86,62;65,84;3;United States;Northern America;"Wiley-Blackwell";"1990, 1996-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +2179;21100310030;"Advances in Climate Change Research";journal;"16749278, 25241761";"KeAi Communications Co.";Yes;No;1,591;Q1;59;103;281;5671;1585;272;5,05;55,06;36,71;0;China;Asiatic Region;"KeAi Communications Co.";"2010-2026";"Atmospheric Science (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)";"Earth and Planetary Sciences; Environmental Science" +2180;21100241659;"Annals of the American Thoracic Society";journal;"23256621, 23296933";"American Thoracic Society";No;No;1,591;Q1;154;307;914;8921;3011;623;3,21;29,06;40,80;0;United States;Northern America;"American Thoracic Society";"2013-2025";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +2181;27592;"Arthritis Research and Therapy";journal;"14786354, 14786362";"BioMed Central Ltd";Yes;No;1,591;Q1;194;228;734;9781;3834;716;5,13;42,90;45,65;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Immunology (Q1); Immunology and Allergy (Q1); Rheumatology (Q1)";"Immunology and Microbiology; Medicine" +2182;26490;"Waste Management";journal;"0956053X, 18792456";"Elsevier Ltd";No;No;1,591;Q1;255;564;1496;35395;13338;1494;8,37;62,76;36,25;3;United Kingdom;Western Europe;"Elsevier Ltd";"1983-2026";"Waste Management and Disposal (Q1)";"Environmental Science" +2183;18121;"ACM Transactions on Software Engineering and Methodology";journal;"15577392, 1049331X";"Association for Computing Machinery";No;No;1,590;Q1;95;248;488;22031;3734;482;7,27;88,83;28,76;2;United States;Northern America;"Association for Computing Machinery";"1992-2026";"Software (Q1)";"Computer Science" +2184;21101033050;"Journal of Global Economic Analysis";journal;"23772999";"Purdue University, Department of Agricultural Economics";No;No;1,590;Q1;19;8;19;380;84;19;1,75;47,50;6,25;0;United States;Northern America;"Purdue University, Department of Agricultural Economics";"2016-2025";"Applied Mathematics (Q1); Economics and Econometrics (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +2185;21101146551;"mLife";journal;"2770100X, 20971699";"John Wiley and Sons Inc";Yes;No;1,590;Q1;19;61;130;3465;726;113;5,41;56,80;42,01;0;China;Asiatic Region;"John Wiley and Sons Inc";"2022-2026";"Microbiology (Q1)";"Immunology and Microbiology" +2186;16535;"Phytochemistry Reviews";journal;"15687767, 1572980X";"Springer Science and Business Media B.V.";No;No;1,590;Q1;124;218;176;33729;2077;171;10,97;154,72;42,97;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2002-2026";"Biotechnology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +2187;21101188900;"Cyber Security and Applications";journal;"27729184";"KeAi Communications Co.";Yes;No;1,589;Q1;20;55;42;2715;639;42;15,21;49,36;24,83;1;China;Asiatic Region;"KeAi Communications Co.";"2023-2025";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Computer Science (miscellaneous) (Q1); Information Systems (Q1)";"Computer Science" +2188;21101093005;"Environment and Planning E: Nature and Space";journal;"25148486, 25148494";"SAGE Publications Inc.";No;No;1,589;Q1;42;119;351;9894;1756;345;4,01;83,14;48,39;2;United States;Northern America;"SAGE Publications Inc.";"2018-2026";"Development (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)";"Environmental Science; Social Sciences" +2189;21100900379;"IEEE Robotics and Automation Letters";journal;"23773766";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,589;Q1;152;1664;4206;53204;28944;4204;6,22;31,97;22,83;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2016-2026";"Artificial Intelligence (Q1); Biomedical Engineering (Q1); Computer Science Applications (Q1); Computer Vision and Pattern Recognition (Q1); Control and Optimization (Q1); Control and Systems Engineering (Q1); Human-Computer Interaction (Q1); Mechanical Engineering (Q1)";"Computer Science; Engineering; Mathematics" +2190;144987;"Journal of Financial Stability";journal;"15723089";"Elsevier B.V.";No;No;1,589;Q1;90;86;260;5844;1480;257;5,10;67,95;31,28;7;Netherlands;Western Europe;"Elsevier B.V.";"2004-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +2191;18164;"Computers and Industrial Engineering";journal;"03608352";"Elsevier Ltd";No;No;1,588;Q1;187;738;2456;42696;21409;2448;8,49;57,85;32,68;1;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Management Science and Operations Research (Q1)";"Computer Science; Decision Sciences; Engineering" +2192;19900192116;"Journal of Pharmaceutical Analysis";journal;"20951779";"Xi'an Jiaotong University";Yes;No;1,588;Q1;69;240;376;16742;3459;364;9,54;69,76;43,37;1;China;Asiatic Region;"Xi'an Jiaotong University";"2011-2026";"Analytical Chemistry (Q1); Drug Discovery (Q1); Electrochemistry (Q1); Pharmaceutical Science (Q1); Pharmacy (Q1); Spectroscopy (Q1)";"Chemistry; Health Professions; Pharmacology, Toxicology and Pharmaceutics" +2193;29646;"Progress in Surface Science";journal;"00796816";"Elsevier Ltd";No;No;1,588;Q1;96;10;22;1304;153;20;5,73;130,40;34,78;0;United Kingdom;Western Europe;"Elsevier Ltd";"1971-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +2194;21100225608;"Stem Cells Translational Medicine";journal;"21576564, 21576580";"Oxford University Press";Yes;No;1,588;Q1;116;94;274;5198;1694;269;6,03;55,30;40,51;2;United Kingdom;Western Europe;"Oxford University Press";"2012-2026";"Developmental Biology (Q1); Medicine (miscellaneous) (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2195;14840;"Cellular and Molecular Neurobiology";journal;"02724340, 15736830";"Springer";No;No;1,587;Q1;112;109;527;10562;3303;522;6,79;96,90;48,78;0;United States;Northern America;"Springer";"1981-2026";"Cellular and Molecular Neuroscience (Q1); Medicine (miscellaneous) (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +2196;21100983136;"European Urology Open Science";journal;"26661683, 26661691";"Elsevier B.V.";Yes;No;1,587;Q1;44;174;539;4332;2091;384;3,80;24,90;27,13;1;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Urology (Q1)";"Medicine" +2197;21100813704;"Physical Review Physics Education Research";journal;"24699896";"American Physical Society";Yes;No;1,586;Q1;57;130;341;8397;1469;332;4,33;64,59;43,70;0;United States;Northern America;"American Physical Society";"2016-2026";"Education (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy; Social Sciences" +2198;19019;"Plant and Cell Physiology";journal;"00320781, 14719053";"Oxford University Press";No;No;1,586;Q1;199;158;470;9954;2028;416;4,07;63,00;38,22;0;United Kingdom;Western Europe;"Oxford University Press";"1959-2026";"Medicine (miscellaneous) (Q1); Physiology (Q1); Plant Science (Q1); Cell Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +2199;13456;"Psychological Inquiry";journal;"15327965, 1047840X";"Routledge";No;No;1,586;Q1;110;41;116;2393;116;11;1,03;58,37;50,00;0;United States;Northern America;"Routledge";"1990-1996, 1998-2025";"Psychology (miscellaneous) (Q1)";"Psychology" +2200;18927;"Journal of Human Evolution";journal;"00472484, 10958606";"Academic Press";No;No;1,585;Q1;152;75;242;8355;822;221;3,25;111,40;39,32;0;United States;Northern America;"Academic Press";"1972-2026";"Anthropology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Education (Q1)";"Agricultural and Biological Sciences; Social Sciences" +2201;24355;"Computers and Operations Research";journal;"03050548, 1873765X";"Elsevier Ltd";No;No;1,584;Q1;202;326;900;17145;5382;900;5,47;52,59;28,07;0;United Kingdom;Western Europe;"Elsevier Ltd";"1974-2026";"Computer Science (miscellaneous) (Q1); Management Science and Operations Research (Q1); Modeling and Simulation (Q1)";"Computer Science; Decision Sciences; Mathematics" +2202;144953;"Journal of Educational Change";journal;"15731812, 13892843";"Springer Science and Business Media B.V.";No;No;1,584;Q1;59;26;97;1908;532;97;5,28;73,38;62,96;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2005-2026";"Education (Q1)";"Social Sciences" +2203;21101152883;"Materials Today Electronics";journal;"27729494";"Elsevier Ltd";Yes;No;1,584;Q1;21;43;97;4277;867;96;8,41;99,47;28,98;0;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Engineering; Materials Science" +2204;18988;"Mutation Research - Reviews in Mutation Research";journal;"13882139, 13835742";"Elsevier B.V.";No;No;1,584;Q1;147;34;59;4028;374;59;5,97;118,47;48,43;0;Netherlands;Western Europe;"Elsevier B.V.";"1990-1991, 1993-1994, 1997-2026";"Genetics (Q1); Health, Toxicology and Mutagenesis (Q1)";"Biochemistry, Genetics and Molecular Biology; Environmental Science" +2205;21101081525;"Resources, Conservation and Recycling Advances";journal;"26673789";"Elsevier Inc.";Yes;No;1,584;Q1;40;57;169;4832;1666;169;9,87;84,77;37,76;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Economics and Econometrics (Q1); Waste Management and Disposal (Q1)";"Economics, Econometrics and Finance; Environmental Science" +2206;19841;"Social Psychiatry and Psychiatric Epidemiology";journal;"14339285, 09337954";"D. Steinkopff-Verlag";No;No;1,584;Q1;160;308;551;16590;2541;538;3,78;53,86;54,88;9;Germany;Western Europe;"D. Steinkopff-Verlag";"1988-2026";"Epidemiology (Q1); Health (social science) (Q1); Psychiatry and Mental Health (Q1); Social Psychology (Q1)";"Medicine; Psychology; Social Sciences" +2207;24377;"Social Studies of Science";journal;"14603659, 03063127";"SAGE Publications Ltd";No;No;1,584;Q1;116;57;127;4041;575;119;4,39;70,89;42,86;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1971-2026";"History (Q1); History and Philosophy of Science (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +2208;20640;"Thrombosis and Haemostasis";journal;"03406245, 2567689X";"Georg Thieme Verlag";No;No;1,584;Q1;217;162;514;7528;2078;424;3,90;46,47;41,71;1;Germany;Western Europe;"Georg Thieme Verlag";"1976-2026";"Hematology (Q1)";"Medicine" +2209;16850;"Biochemical Journal";journal;"14708728, 02646021";"Portland Press Ltd";No;No;1,583;Q1;304;121;369;9925;1602;368;3,87;82,02;41,51;0;United Kingdom;Western Europe;"Portland Press Ltd";"1945-2026";"Biochemistry (Q1); Molecular Biology (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2210;13143;"Columbia Law Review";journal;"00101958";"Columbia Law Review Association";No;No;1,582;Q1;88;46;152;2323;323;133;2,12;50,50;48,94;0;United States;Northern America;"Columbia Law Review Association";"1973-1981, 1984, 1987-1988, 1990, 1992-2026";"Law (Q1)";"Social Sciences" +2211;21101220015;"Obesity Pillars";journal;"26673681";"Elsevier B.V.";Yes;No;1,582;Q1;20;73;120;3228;607;106;4,87;44,22;60,50;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Nutrition and Dietetics (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +2212;21100217601;"ZDM - International Journal on Mathematics Education";journal;"18639704, 18639690";"Springer Verlag";No;No;1,582;Q1;83;104;310;4931;1327;303;5,18;47,41;48,64;2;Germany;Western Europe;"Springer Verlag";"1997-2026";"Education (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics; Social Sciences" +2213;4000148904;"Acta Physiologica";journal;"17481716, 17481708";"John Wiley and Sons Ltd";No;No;1,581;Q1;141;164;425;11277;1636;292;4,09;68,76;42,02;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2006-2026";"Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology" +2214;19088;"Governance";journal;"09521895, 14680491";"Wiley-Blackwell Publishing Ltd";No;No;1,581;Q1;103;107;195;7537;1084;192;5,55;70,44;36,21;12;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1988-2026";"Marketing (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Social Sciences" +2215;20813;"Immunology";journal;"00192805, 13652567";"Wiley-Blackwell Publishing Ltd";No;No;1,581;Q1;170;130;394;9312;2141;375;5,51;71,63;47,05;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1958-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +2216;4000148905;"IEEE Computational Intelligence Magazine";journal;"15566048, 1556603X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,580;Q1;78;34;133;1435;939;93;4,70;42,21;36,56;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2006-2026";"Artificial Intelligence (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +2217;26172;"Journal of Endocrinology";journal;"14796805, 00220795";"BioScientifica Ltd.";No;No;1,579;Q1;178;68;231;5150;1247;228;5,61;75,74;52,70;0;United Kingdom;Western Europe;"BioScientifica Ltd.";"1946-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2218;23626;"Science Education";journal;"00368326, 1098237X";"Wiley-Liss Inc.";No;No;1,579;Q1;150;95;189;8753;999;182;5,37;92,14;62,03;0;United States;Northern America;"Wiley-Liss Inc.";"1930-2026";"Education (Q1); History and Philosophy of Science (Q1)";"Arts and Humanities; Social Sciences" +2219;200147125;"Learning, Media and Technology";journal;"17439892, 17439884";"Routledge";No;No;1,578;Q1;77;93;152;4786;1081;139;7,58;51,46;59,39;4;United Kingdom;Western Europe;"Routledge";"2005-2026";"Education (Q1); Media Technology (Q1)";"Engineering; Social Sciences" +2220;21100873942;"International Journal of Food Contamination";journal;"21962804";"BioMed Central Ltd";Yes;No;1,577;Q1;28;0;12;0;152;12;0,00;0,00;0,00;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2014-2022";"Food Science (Q1); Health, Toxicology and Mutagenesis (Q1); Public Health, Environmental and Occupational Health (Q1)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +2221;21100898787;"Stochastics and Partial Differential Equations: Analysis and Computations";journal;"2194041X, 21940401";"Springer New York";No;No;1,577;Q1;24;78;131;3066;263;130;2,07;39,31;20,26;0;United States;Northern America;"Springer New York";"2013-2026";"Applied Mathematics (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q1)";"Mathematics" +2222;12107;"Behavior Therapy";journal;"00057894, 18781888";"Elsevier Inc.";No;No;1,576;Q1;141;121;266;7183;1254;259;4,44;59,36;63,25;0;United States;Northern America;"Elsevier Inc.";"1970-2026";"Clinical Psychology (Q1)";"Psychology" +2223;21100870279;"Microbial Genomics";journal;"20575858";"Microbiology Society";Yes;No;1,575;Q1;62;251;579;16063;2788;576;4,24;64,00;45,97;1;United Kingdom;Western Europe;"Microbiology Society";"2015-2026";"Epidemiology (Q1); Genetics (Q1); Microbiology (Q1); Molecular Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +2224;21101157250;"Supramolecular Materials";journal;"26672405";"KeAi Communications Co.";Yes;No;1,575;Q1;20;30;61;2527;461;61;7,62;84,23;37,58;0;China;Asiatic Region;"KeAi Communications Co.";"2022-2026";"Biotechnology (Q1); Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science" +2225;130105;"Accounting, Auditing and Accountability Journal";journal;"09513574";"Emerald Group Publishing Ltd.";No;No;1,574;Q1;136;77;303;6103;1642;267;4,12;79,26;39,47;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1988-2025";"Accounting (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2226;21101287236;"Advanced Photonics Nexus";journal;"27911519";"SPIE";Yes;No;1,574;Q1;20;69;170;3280;1097;168;6,20;47,54;27,15;0;United States;Northern America;"SPIE";"2022-2025";"Engineering (miscellaneous) (Q1)";"Engineering" +2227;21094;"Mechanism and Machine Theory";journal;"0094114X";"Elsevier Ltd";No;No;1,574;Q1;142;319;982;16146;6865;982;6,60;50,61;21,97;0;United Kingdom;Western Europe;"Elsevier Ltd";"1972-2026";"Bioengineering (Q1); Computer Science Applications (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Chemical Engineering; Computer Science; Engineering" +2228;21100820782;"Remote Sensing in Ecology and Conservation";journal;"20563485";"Wiley-Blackwell Publishing Ltd";Yes;No;1,574;Q1;51;66;165;4886;1078;164;6,16;74,03;33,64;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2015-2026";"Computers in Earth Sciences (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +2229;21101145619;"Ultrafast Science";journal;"20970331, 27658791";"American Association for the Advancement of Science";Yes;Yes;1,573;Q1;25;29;88;1479;652;87;6,91;51,00;25,95;0;United States;Northern America;"American Association for the Advancement of Science";"2021-2025";"Atomic and Molecular Physics, and Optics (Q1); Biophysics (Q1); Physical and Theoretical Chemistry (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Physics and Astronomy" +2230;21101109915;"ACS ES and T Engineering";journal;"26900645";"American Chemical Society";No;No;1,572;Q1;54;311;667;19134;4872;651;6,53;61,52;36,75;1;United States;Northern America;"American Chemical Society";"2021-2026";"Chemical Engineering (miscellaneous) (Q1); Chemical Health and Safety (Q1); Environmental Chemistry (Q1); Process Chemistry and Technology (Q1)";"Chemical Engineering; Environmental Science" +2231;19209;"Current Opinion in Rheumatology";journal;"15316963, 10408711";"Lippincott Williams and Wilkins";No;No;1,572;Q1;137;66;182;3758;970;168;5,25;56,94;50,71;0;United States;Northern America;"Lippincott Williams and Wilkins";"1989-2026";"Rheumatology (Q1)";"Medicine" +2232;12697;"International Journal of Obesity";journal;"03070565, 14765497";"Springer Nature";No;No;1,572;Q1;265;318;645;15883;3097;607;4,84;49,95;54,00;1;United Kingdom;Western Europe;"Springer Nature";"1977-2026";"Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +2233;12776;"British Journal of Social Psychology";journal;"01446665, 20448309";"Wiley-Blackwell";No;No;1,571;Q1;126;147;288;10703;1452;285;5,07;72,81;53,69;3;United States;Northern America;"Wiley-Blackwell";"1981-2026";"Social Psychology (Q1)";"Psychology" +2234;6200180161;"International Journal of Greenhouse Gas Control";journal;"17505836";"Elsevier";No;No;1,571;Q1;163;179;523;10997;3714;520;6,36;61,44;21,66;0;Netherlands;Western Europe;"Elsevier";"2007-2026";"Energy (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1)";"Energy; Engineering; Environmental Science" +2235;11600153484;"Journalism Practice";journal;"17512786, 17512794";"Routledge";No;No;1,570;Q1;76;305;420;19142;1861;417;4,13;62,76;52,79;3;United Kingdom;Western Europe;"Routledge";"2007-2013, 2015-2026";"Communication (Q1)";"Social Sciences" +2236;21100823143;"Virus Evolution";journal;"20571577";"Oxford University Press";Yes;No;1,570;Q1;51;100;314;6068;1178;314;3,57;60,68;40,76;2;United Kingdom;Western Europe;"Oxford University Press";"2015-2026";"Microbiology (Q1); Virology (Q1)";"Immunology and Microbiology" +2237;3500148010;"Current HIV/AIDS Reports";journal;"15483568, 15483576";"Springer";No;No;1,569;Q1;83;57;121;4754;614;120;4,60;83,40;57,39;1;United States;Northern America;"Springer";"2004-2026";"Infectious Diseases (Q1); Virology (Q1)";"Immunology and Microbiology; Medicine" +2238;18711;"IEEE Transactions on Software Engineering";journal;"19393520, 00985589";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,568;Q1;200;228;743;14819;5505;741;7,09;65,00;27,61;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1975-2026";"Software (Q1)";"Computer Science" +2239;20435;"Neuropharmacology";journal;"00283908, 18737064";"Elsevier Ltd";No;No;1,568;Q1;206;362;749;27511;3954;733;5,27;76,00;46,13;0;United Kingdom;Western Europe;"Elsevier Ltd";"1962-2026";"Cellular and Molecular Neuroscience (Q1); Pharmacology (Q1)";"Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +2240;13268;"Scientific Studies of Reading";journal;"1532799X, 10888438";"Routledge";No;No;1,568;Q1;87;29;104;2071;469;102;3,34;71,41;66,94;0;United States;Northern America;"Routledge";"2004-2026";"Education (Q1); Psychology (miscellaneous) (Q1)";"Psychology; Social Sciences" +2241;12100156754;"Sport Management Review";journal;"14413523";"Taylor and Francis Ltd.";No;No;1,568;Q1;93;54;114;4362;716;113;5,93;80,78;46,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Business and International Management (Q1); Management Science and Operations Research (Q1); Marketing (Q1); Organizational Behavior and Human Resource Management (Q1); Sports Science (Q1); Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Decision Sciences; Health Professions" +2242;21101141512;"Tropical Cyclone Research and Review";journal;"25893025, 22256032";"KeAi Communications Co.";Yes;Yes;1,568;Q1;27;40;68;1717;344;68;5,39;42,93;33,63;0;China;Asiatic Region;"KeAi Communications Co.";"2012-2025";"Atmospheric Science (Q1); Computers in Earth Sciences (Q1); Global and Planetary Change (Q1); Modeling and Simulation (Q1); Safety Research (Q1)";"Earth and Planetary Sciences; Environmental Science; Mathematics; Social Sciences" +2243;21101253650;"Journal of Climate Finance";journal;"29497280";"Elsevier B.V.";No;No;1,567;Q1;12;22;50;1470;365;50;5,80;66,82;22,50;1;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +2244;21100229210;"Frontiers in Endocrinology";journal;"16642392";"Frontiers Media SA";Yes;No;1,566;Q1;162;2465;9480;130189;52527;8807;5,24;52,82;49,36;0;Switzerland;Western Europe;"Frontiers Media SA";"2010-2026";"Endocrinology, Diabetes and Metabolism (Q1)";"Medicine" +2245;18644;"Journal of Manufacturing Technology Management";journal;"1741038X";"Emerald Group Publishing Ltd.";No;No;1,566;Q1;108;118;227;8350;2364;224;10,22;70,76;34,23;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2004-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Software (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Computer Science; Engineering" +2246;14080;"Psychotherapy Research";journal;"10503307, 14684381";"Routledge";No;No;1,566;Q1;100;175;253;10104;1100;241;4,44;57,74;53,04;1;United States;Northern America;"Routledge";"1975, 1988, 1991-2026";"Clinical Psychology (Q1)";"Psychology" +2247;19700166902;"Wiley Interdisciplinary Reviews: Nanomedicine and Nanobiotechnology";journal;"19395116, 19390041";"John Wiley & Sons Inc.";No;No;1,565;Q1;114;41;250;6723;2593;247;9,61;163,98;42,13;0;United States;Northern America;"John Wiley & Sons Inc.";"2009-2026";"Bioengineering (Q1); Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)";"Chemical Engineering; Engineering; Materials Science; Medicine" +2248;23212;"Annales de l'institut Henri Poincare (B) Probability and Statistics";journal;"02460203";"Institute of Mathematical Statistics";No;No;1,564;Q1;60;91;243;3398;406;242;1,71;37,34;13,47;0;Netherlands;Western Europe;"Institute of Mathematical Statistics";"1997-2025";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +2249;13184;"Computer Physics Communications";journal;"00104655";"Elsevier B.V.";No;No;1,564;Q1;232;425;947;22817;7422;944;4,15;53,69;18,25;1;Netherlands;Western Europe;"Elsevier B.V.";"1969-2026";"Hardware and Architecture (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Computer Science; Physics and Astronomy" +2250;14292;"Separation and Purification Technology";journal;"13835866, 18733794";"Elsevier B.V.";No;No;1,564;Q1;226;6432;7719;396246;80440;7712;10,53;61,61;37,74;3;Netherlands;Western Europe;"Elsevier B.V.";"1997-2026";"Analytical Chemistry (Q1); Filtration and Separation (Q1)";"Chemical Engineering; Chemistry" +2251;21100826277;"Frontiers in Cell and Developmental Biology";journal;"2296634X";"Frontiers Media SA";Yes;No;1,563;Q1;146;1059;5047;89254;24804;4634;4,53;84,28;46,64;1;Switzerland;Western Europe;"Frontiers Media SA";"2013-2026";"Developmental Biology (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2252;21101107944;"Progress in Energy";journal;"25161083";"Institute of Physics";No;No;1,563;Q1;32;31;85;3641;716;73;5,18;117,45;29,84;3;United Kingdom;Western Europe;"Institute of Physics";"2019-2026";"Energy (miscellaneous) (Q1)";"Energy" +2253;22245;"Human Genetics";journal;"03406717, 14321203";"Springer Science and Business Media Deutschland GmbH";No;No;1,562;Q1;159;83;370;4642;1567;357;3,41;55,93;48,20;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1964-2026";"Genetics (Q1); Genetics (clinical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2254;19900192710;"Cellular Oncology";journal;"22113436, 22113428";"Springer Science and Business Media B.V.";Yes;No;1,561;Q1;68;118;337;9236;1834;334;5,47;78,27;45,00;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2011-2026";"Medicine (miscellaneous) (Q1); Molecular Medicine (Q1); Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2255;21101038508;"Journal of Geophysical Research: Atmospheres";journal;"2169897X, 21698996";"Wiley-Blackwell Publishing Ltd";No;No;1,561;Q1;149;994;2317;71778;9656;2305;3,86;72,21;33,37;0;United States;Northern America;"Wiley-Blackwell Publishing Ltd";"1987, 1992-1994, 1996-2003, 2005, 2008-2026";"Atmospheric Science (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Geophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences" +2256;27188;"Language Learning and Technology";journal;"10943501";"";Yes;Yes;1,561;Q1;102;25;122;1094;628;118;4,89;43,76;50,00;0;United States;Northern America;"";"1997-2025";"Computer Science Applications (Q1); Education (Q1); Linguistics and Language (Q1)";"Computer Science; Social Sciences" +2257;21100312211;"Climate Risk Management";journal;"22120963";"Elsevier B.V.";Yes;No;1,559;Q1;66;89;273;6890;2001;270;6,76;77,42;41,31;9;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Atmospheric Science (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +2258;23217;"Heart";journal;"1468201X, 13556037";"BMJ Publishing Group";No;No;1,559;Q1;221;304;987;8132;3052;677;2,76;26,75;31,53;3;United Kingdom;Western Europe;"BMJ Publishing Group";"1942, 1971-1978, 1983-1984, 1986-1990, 1992-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +2259;21100256974;"Philosophers Imprint";journal;"1533628X";"University of Michigan Press";Yes;Yes;1,559;Q1;38;45;76;2377;199;73;2,29;52,82;20,75;0;United States;Northern America;"University of Michigan Press";"2012-2025";"Philosophy (Q1)";"Arts and Humanities" +2260;21101048281;"Applied Surface Science Advances";journal;"26665239";"Elsevier B.V.";Yes;No;1,558;Q1;51;223;419;13909;4786;410;11,21;62,37;31,37;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)";"Materials Science; Physics and Astronomy" +2261;21101101955;"International Journal of Intelligent Networks";journal;"26666030";"KeAi Communications Co.";Yes;No;1,558;Q1;32;23;96;1305;1517;96;7,41;56,74;25,00;1;China;Asiatic Region;"KeAi Communications Co.";"2020-2025";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1); Signal Processing (Q1)";"Computer Science; Engineering" +2262;21101237956;"Journal of Automation and Intelligence";journal;"29498554";"KeAi Communications Co.";Yes;No;1,558;Q1;14;40;57;2113;404;55;6,40;52,83;31,06;2;China;Asiatic Region;"KeAi Communications Co.";"2022-2026";"Artificial Intelligence (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Information Systems (Q1)";"Computer Science; Engineering" +2263;18130;"Sociology";journal;"00380385, 14698684";"SAGE Publications Ltd";No;No;1,558;Q1;148;107;230;5973;1138;228;4,72;55,82;62,24;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1967-2026";"Sociology and Political Science (Q1)";"Social Sciences" +2264;14764;"Weather and Forecasting";journal;"15200434, 08828156";"American Meteorological Society";No;No;1,558;Q1;138;154;386;8029;1384;380;2,74;52,14;30,13;0;United States;Northern America;"American Meteorological Society";"1992-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +2265;24936;"Dental Materials";journal;"01095641, 18790097";"Elsevier Inc.";No;No;1,557;Q1;195;152;565;9523;3893;562;6,50;62,65;41,27;0;United States;Northern America;"Elsevier Inc.";"1985-2026";"Dentistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Dentistry; Engineering; Materials Science" +2266;21101058910;"Internet of Things (The Netherlands)";journal;"25426605";"Elsevier B.V.";No;No;1,557;Q1;87;379;897;22830;10002;892;10,82;60,24;21,90;0;Netherlands;Western Europe;"Elsevier B.V.";"2018-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Management of Technology and Innovation (Q1); Software (Q1)";"Business, Management and Accounting; Computer Science; Engineering" +2267;21100237606;"Photoacoustics";journal;"22135979";"Elsevier GmbH";Yes;No;1,557;Q1;66;117;323;5895;2386;309;7,52;50,38;33,00;0;Germany;Western Europe;"Elsevier GmbH";"2013-2026";"Atomic and Molecular Physics, and Optics (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine; Physics and Astronomy" +2268;22857;"Political Geography";journal;"09626298";"Elsevier B.V.";No;No;1,557;Q1;127;131;509;9364;2475;458;4,60;71,48;48,46;10;United Kingdom;Western Europe;"Elsevier B.V.";"1983, 1992-2026";"Geography, Planning and Development (Q1); History (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +2269;13688;"Applied Thermal Engineering";journal;"13594311";"Elsevier Ltd";No;No;1,556;Q1;238;3870;6118;190544;49231;6099;8,07;49,24;26,30;4;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Energy Engineering and Power Technology (Q1); Fluid Flow and Transfer Processes (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1)";"Chemical Engineering; Energy; Engineering" +2270;15549;"European Journal of Neurology";journal;"14681331, 13515101";"Wiley-Blackwell Publishing Ltd";Yes;No;1,556;Q1;157;548;1327;17758;5483;1180;4,23;32,41;46,56;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +2271;21100898038;"Contemporary Educational Technology";journal;"1309517X";"Bastas";No;No;1,555;Q1;35;77;209;4594;1894;208;11,29;59,66;53,78;0;Cyprus;Western Europe;"Bastas";"2013, 2018-2025";"Education (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting; Social Sciences" +2272;21100228518;"JAMA Otolaryngology - Head and Neck Surgery";journal;"2168619X, 21686181";"American Medical Association";Yes;No;1,555;Q1;161;252;686;5318;2296;419;3,38;21,10;41,99;0;United States;Northern America;"American Medical Association";"2013-2026";"Medicine (miscellaneous) (Q1); Otorhinolaryngology (Q1); Surgery (Q1)";"Medicine" +2273;5400152621;"Sustainability Science";journal;"18624065, 18624057";"Springer";No;No;1,554;Q1;109;194;490;15973;3187;463;5,96;82,34;47,66;15;Japan;Asiatic Region;"Springer";"2006-2026";"Ecology (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1); Health (social science) (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1); Sociology and Political Science (Q1)";"Environmental Science; Social Sciences" +2274;21101297190;"Innovation Life";journal;"29598761";"Innovation Press";Yes;No;1,553;Q1;8;66;20;4385;95;9;4,75;66,44;38,29;0;China;Asiatic Region;"Innovation Press";"2024-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Health Professions (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Health Professions" +2275;16281;"Journal of Geotechnical and Geoenvironmental Engineering - ASCE";journal;"19435606, 10900241";"American Society of Civil Engineers (ASCE)";No;No;1,553;Q1;216;229;609;12327;2726;519;4,45;53,83;20,15;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1996-2026";"Environmental Science (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Environmental Science" +2276;21101105303;"BioDesign Research";journal;"26931257";"Elsevier B.V.";Yes;No;1,552;Q1;19;30;69;2235;459;69;6,74;74,50;35,80;0;United States;Northern America;"Elsevier B.V.";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biotechnology (Q1); Cell Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +2277;29070;"Gerontologist";journal;"17585341, 00169013";"Gerontological Society of America";No;No;1,552;Q1;178;312;606;15387;3161;585;4,50;49,32;69,14;3;United States;Northern America;"Gerontological Society of America";"1961-2026";"Geriatrics and Gerontology (Q1); Gerontology (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Nursing" +2278;22410;"Inflammation Research";journal;"1420908X, 10233830";"Springer Science and Business Media Deutschland GmbH";No;No;1,552;Q1;117;176;429;12692;2765;423;6,19;72,11;47,44;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1995-2026";"Immunology (Q1); Pharmacology (Q1)";"Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +2279;13191;"Journal of Computational Physics";journal;"10902716, 00219991";"Academic Press Inc.";No;No;1,552;Q1;321;746;2189;40454;10484;2183;4,43;54,23;21,40;1;United States;Northern America;"Academic Press Inc.";"1966-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Computer Science Applications (Q1); Modeling and Simulation (Q1); Numerical Analysis (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Computer Science; Mathematics; Physics and Astronomy" +2280;28011;"Security Studies";journal;"15561852, 09636412";"Routledge";No;No;1,552;Q1;70;30;114;1580;273;78;2,08;52,67;25,58;1;United Kingdom;Western Europe;"Routledge";"1991-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2281;13795;"Contact Lens and Anterior Eye";journal;"14765411, 13670484";"Elsevier B.V.";No;No;1,551;Q1;73;148;315;6076;1496;288;4,35;41,05;48,36;0;Netherlands;Western Europe;"Elsevier B.V.";"1997-2026";"Medicine (miscellaneous) (Q1); Ophthalmology (Q1); Optometry (Q1)";"Health Professions; Medicine" +2282;21101041403;"Global Health Research and Policy";journal;"23970642";"KeAi Communications Co.";Yes;No;1,551;Q1;40;68;154;3077;877;145;5,91;45,25;49,60;3;United Kingdom;Western Europe;"KeAi Communications Co.";"2016-2026";"Epidemiology (Q1); Health Policy (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +2283;21461;"International Journal for Equity in Health";journal;"14759276";"BioMed Central Ltd";Yes;No;1,550;Q1;104;350;711;19921;3647;672;5,00;56,92;57,84;7;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2284;21101046405;"Carbon Resources Conversion";journal;"25889133";"KeAi Publishing Communications Ltd.";Yes;No;1,549;Q1;40;75;106;4571;1114;105;11,68;60,95;35,67;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2018-2026";"Catalysis (Q1); Fuel Technology (Q1); Materials Science (miscellaneous) (Q1); Process Chemistry and Technology (Q1)";"Chemical Engineering; Energy; Materials Science" +2285;19900191754;"Conflict and Health";journal;"17521505";"BioMed Central Ltd";Yes;No;1,549;Q1;56;92;196;4276;1090;185;5,75;46,48;52,13;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +2286;25785;"Combinatorica";journal;"02099683, 14396912";"Janos Bolyai Mathematical Society";No;No;1,548;Q1;64;66;176;1715;237;176;1,40;25,98;15,34;0;Germany;Western Europe;"Janos Bolyai Mathematical Society";"1981-2026";"Computational Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1)";"Mathematics" +2287;21101109601;"Machine Learning and Knowledge Extraction";journal;"25044990";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,548;Q1;46;168;289;9435;3226;285;11,91;56,16;21,72;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2026";"Artificial Intelligence (Q1); Engineering (miscellaneous) (Q1)";"Computer Science; Engineering" +2288;28987;"Tectonics";journal;"02787407, 19449194";"John Wiley and Sons Inc";No;No;1,548;Q1;172;182;412;22871;1585;407;3,59;125,66;25,19;0;United States;Northern America;"John Wiley and Sons Inc";"1982-2026";"Geochemistry and Petrology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +2289;24763;"Addictive Behaviors";journal;"03064603, 18736327";"Elsevier Ltd";No;No;1,547;Q1;166;226;786;11245;3868;769;4,46;49,76;57,31;5;United Kingdom;Western Europe;"Elsevier Ltd";"1975-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Toxicology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Psychology" +2290;20913;"Bulletin of the World Health Organization";journal;"15640604, 00429686";"World Health Organization";Yes;Yes;1,547;Q1;210;141;461;3711;1668;243;3,32;26,32;46,95;0;Switzerland;Western Europe;"World Health Organization";"1945, 1949-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2291;21100296223;"Case Studies in Construction Materials";journal;"22145095";"Elsevier B.V.";Yes;No;1,547;Q1;94;1560;3216;94538;25990;3212;7,58;60,60;28,33;1;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Materials Science (miscellaneous) (Q1)";"Materials Science" +2292;21101094830;"IEEE Open Journal of Power Electronics";journal;"26441314";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,547;Q1;35;136;278;6606;1828;278;5,85;48,57;18,26;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +2293;21101066138;"Journal of International Business Policy";journal;"25220691, 25220705";"Palgrave Macmillan Ltd.";No;No;1,547;Q1;39;24;76;2465;431;57;5,35;102,71;32,69;5;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2018-2026";"Business and International Management (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting" +2294;19700182304;"Philosophy and Technology";journal;"22105433, 22105441";"Springer Netherlands";No;No;1,547;Q1;66;175;326;7773;1862;221;4,91;44,42;28,26;2;Netherlands;Western Europe;"Springer Netherlands";"2011-2026";"History and Philosophy of Science (Q1); Philosophy (Q1)";"Arts and Humanities" +2295;21101060205;"Arthroplasty";journal;"25247948";"Springer Nature";Yes;No;1,546;Q1;23;66;179;2381;959;176;5,21;36,08;20,77;0;United Kingdom;Western Europe;"Springer Nature";"2019-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +2296;21100465422;"Dialogues in Human Geography";journal;"20438206, 20438214";"SAGE Publications Inc.";No;No;1,546;Q1;60;140;235;4967;801;101;3,48;35,48;43,68;3;United Kingdom;Western Europe;"SAGE Publications Inc.";"2011-2026";"Geography, Planning and Development (Q1)";"Social Sciences" +2297;21101019253;"Oeconomia Copernicana";journal;"23531827, 20831277";"Institute of Economic Research";Yes;No;1,546;Q1;43;39;116;3042;1524;110;15,43;78,00;46,55;0;Poland;Eastern Europe;"Institute of Economic Research";"2015-2025";"Business and International Management (Q1); Development (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); History (Q1)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +2298;18452;"Cell Calcium";journal;"15321991, 01434160";"Elsevier Ltd";No;No;1,545;Q1;135;56;289;3742;897;182;3,39;66,82;44,44;0;United Kingdom;Western Europe;"Elsevier Ltd";"1980-2026";"Molecular Biology (Q1); Physiology (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2299;19700201201;"EPMA Journal";journal;"18785077, 18785085";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,545;Q1;64;44;121;4626;941;119;8,06;105,14;42,56;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2010-2026";"Biochemistry (medical) (Q1); Drug Discovery (Q1); Health Policy (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +2300;21101186987;"International Journal of Heart Failure";journal;"2636154X, 26361558";"Korean Society of Heart Failure";Yes;Yes;1,545;Q1;19;35;79;965;273;45;4,11;27,57;32,58;0;South Korea;Asiatic Region;"Korean Society of Heart Failure";"2019-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +2301;25686;"Journal of Dentistry";journal;"03005712";"Elsevier Ltd";No;No;1,545;Q1;155;624;1036;30720;7097;1035;6,38;49,23;46,36;1;United Kingdom;Western Europe;"Elsevier Ltd";"1972-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +2302;29864;"La Rivista del Nuovo Cimento";journal;"18269850, 0393697X";"Springer Science and Business Media Deutschland GmbH";No;No;1,545;Q1;54;12;32;3424;229;32;6,55;285,33;41,18;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1969-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +2303;14160;"Molecular Neurobiology";journal;"08937648, 15591182";"Springer";No;No;1,545;Q1;157;996;1612;84639;9577;1612;5,92;84,98;46,44;0;United States;Northern America;"Springer";"1987-2026";"Cellular and Molecular Neuroscience (Q1); Neurology (Q1); Neuroscience (miscellaneous) (Q1)";"Neuroscience" +2304;24804;"Neural Networks";journal;"08936080, 18792782";"Elsevier Ltd";No;No;1,545;Q1;197;1065;1661;60958;14279;1652;8,65;57,24;31,87;1;United Kingdom;Western Europe;"Elsevier Ltd";"1988-2026";"Artificial Intelligence (Q1); Cognitive Neuroscience (Q1)";"Computer Science; Neuroscience" +2305;21101268324;"PLOS Climate";journal;"27673200";"Public Library of Science";Yes;No;1,545;Q1;26;186;390;10115;1904;288;4,33;54,38;42,55;20;United States;Northern America;"Public Library of Science";"2022-2026";"Atmospheric Science (Q1); Environmental Science (miscellaneous) (Q1)";"Earth and Planetary Sciences; Environmental Science" +2306;21101185504;"Proceedings of the AAAI Conference on Artificial Intelligence";conference and proceedings;"21595399, 23743468";"Association for the Advancement of Artificial Intelligence";No;No;1,545;-;56;3502;2862;138958;22297;2841;7,79;39,68;27,95;10;United States;Northern America;"Association for the Advancement of Artificial Intelligence";"2013, 2016-2018, 2023-2025";"Artificial Intelligence";"Computer Science" +2307;26035;"Endocrine-Related Cancer";journal;"14796821, 13510088";"BioScientifica Ltd.";No;No;1,544;Q1;154;126;247;6801;1099;242;4,15;53,98;46,89;0;United Kingdom;Western Europe;"BioScientifica Ltd.";"1994-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2308;21101158871;"Frontiers in Aging";journal;"26736217";"Frontiers Media SA";Yes;No;1,544;Q1;30;188;331;11960;1626;299;4,53;63,62;47,36;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Genetics (Q1); Molecular Biology (Q1); Physiology (Q1); Aging (Q2)";"Biochemistry, Genetics and Molecular Biology" +2309;21100255407;"Journal of CO2 Utilization";journal;"22129820";"Elsevier B.V.";Yes;No;1,544;Q1;121;278;964;19730;9187;963;9,79;70,97;30,95;0;United Kingdom;Western Europe;"Elsevier B.V.";"2013-2026";"Chemical Engineering (miscellaneous) (Q1); Process Chemistry and Technology (Q1); Waste Management and Disposal (Q1)";"Chemical Engineering; Environmental Science" +2310;21100329539;"Journal of Eating Disorders";journal;"20502974";"BioMed Central Ltd";Yes;No;1,544;Q1;61;292;626;18234;3577;591;5,51;62,45;69,75;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2013-2026";"Behavioral Neuroscience (Q1); Nutrition and Dietetics (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience; Nursing" +2311;17528;"Journal of Financial Markets";journal;"13864181";"Elsevier B.V.";No;No;1,544;Q1;77;47;157;2543;417;157;2,70;54,11;28,68;0;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +2312;21100843337;"SOIL";journal;"21993971, 2199398X";"Copernicus Publications";Yes;No;1,544;Q1;56;65;136;4837;774;136;5,32;74,42;40,06;1;Germany;Western Europe;"Copernicus Publications";"2015-2026";"Soil Science (Q1)";"Agricultural and Biological Sciences" +2313;17470;"Structural Safety";journal;"01674730";"Elsevier B.V.";No;No;1,544;Q1;128;78;209;4649;1516;208;6,08;59,60;23,47;0;Netherlands;Western Europe;"Elsevier B.V.";"1982, 1984-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering" +2314;19900191610;"Bayesian Analysis";journal;"19316690, 19360975";"International Society for Bayesian Analysis";Yes;Yes;1,543;Q1;70;52;135;2388;300;135;2,02;45,92;28,78;0;United States;Northern America;"International Society for Bayesian Analysis";"2006-2025";"Applied Mathematics (Q1); Statistics and Probability (Q1)";"Mathematics" +2315;21100900275;"Horticultural Plant Journal";journal;"20959885, 24680141";"KeAi Communications Co.";Yes;No;1,543;Q1;47;175;275;12380;2083;272;7,34;70,74;41,26;0;China;Asiatic Region;"KeAi Communications Co.";"2017-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Horticulture (Q1); Plant Science (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Energy; Environmental Science" +2316;12675;"International Journal of Eating Disorders";journal;"1098108X, 02763478";"John Wiley and Sons Inc";No;No;1,543;Q1;170;244;650;10590;3194;576;4,51;43,40;68,48;6;United States;Northern America;"John Wiley and Sons Inc";"1981-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +2317;21101196721;"ISPRS Open Journal of Photogrammetry and Remote Sensing";journal;"26673932";"Elsevier B.V.";Yes;No;1,543;Q1;18;30;60;1732;444;60;7,49;57,73;22,14;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Atomic and Molecular Physics, and Optics (Q1); Computers in Earth Sciences (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Physics and Astronomy; Social Sciences" +2318;21101152530;"Computational Communication Research";journal;"26659085";"Amsterdam University Press";Yes;Yes;1,542;Q1;17;11;59;656;260;57;2,43;59,64;28,95;0;Netherlands;Western Europe;"Amsterdam University Press";"2019-2026";"Computational Theory and Mathematics (Q1); Linguistics and Language (Q1)";"Computer Science; Social Sciences" +2319;21100197939;"Transfer";journal;"10242589, 19967284";"SAGE Publications Ltd";No;No;1,542;Q1;41;42;93;1742;434;71;4,03;41,48;53,01;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-1997, 2010-2026";"Industrial Relations (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting" +2320;13675;"Communications of the ACM";journal;"15577317, 00010782";"Association for Computing Machinery";No;No;1,540;Q1;259;212;806;3116;4705;548;2,94;14,70;23,36;3;United States;Northern America;"Association for Computing Machinery";"1958-2026";"Computer Science (miscellaneous) (Q1)";"Computer Science" +2321;19700182745;"Environmental Communication";journal;"17524040, 17524032";"Taylor and Francis Ltd.";No;No;1,540;Q1;65;113;228;6806;1304;211;4,72;60,23;55,56;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Environmental Science (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1)";"Environmental Science" +2322;26499;"Bulletin of the Geological Society of America";journal;"00167606, 19432674";"Geological Society of America";No;No;1,539;Q1;191;202;662;23339;2632;662;3,84;115,54;26,11;0;United States;Northern America;"Geological Society of America";"1890-1892, 1894, 1896-1897, 1899-1904, 1906-1909, 1911-1916, 1918-2026";"Geology (Q1)";"Earth and Planetary Sciences" +2323;11700154366;"Journal of Leadership and Organizational Studies";journal;"19397089, 15480518";"SAGE Publications Inc.";No;No;1,539;Q1;74;24;81;2180;662;74;8,02;90,83;39,06;1;United States;Northern America;"SAGE Publications Inc.";"1996-1999, 2003, 2008-2026";"Business and International Management (Q1); Management Science and Operations Research (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +2324;20996;"British Journal of Surgery";journal;"00071323, 13652168";"Oxford University Press";No;No;1,538;Q1;244;278;1205;6556;3447;743;2,94;23,58;37,89;1;United Kingdom;Western Europe;"Oxford University Press";"1913-2026";"Surgery (Q1)";"Medicine" +2325;21101148006;"European Heart Journal - Digital Health";journal;"26343916";"Oxford University Press";Yes;No;1,538;Q1;26;135;229;4625;1044;194;4,50;34,26;30,61;0;United Kingdom;Western Europe;"Oxford University Press";"2020-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +2326;16894;"Biogeochemistry";journal;"01682563, 1573515X";"Springer Science and Business Media Deutschland GmbH";No;No;1,537;Q1;184;97;308;6791;1366;302;4,14;70,01;41,03;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1984-2026";"Earth-Surface Processes (Q1); Environmental Chemistry (Q1); Water Science and Technology (Q1)";"Earth and Planetary Sciences; Environmental Science" +2327;28684;"British Medical Bulletin";journal;"00071420, 14718391";"Oxford University Press";No;No;1,537;Q1;139;30;86;2097;604;74;6,67;69,90;28,87;0;United Kingdom;Western Europe;"Oxford University Press";"1943-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +2328;21101248685;"Cell Reports Sustainability";journal;"29497906";"Cell Press";Yes;No;1,536;Q1;15;130;101;6746;554;68;5,49;51,89;36,98;8;United States;Northern America;"Cell Press";"2024-2026";"Ecology (Q1); Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1); Water Science and Technology (Q1)";"Energy; Environmental Science" +2329;130049;"Journal of Services Marketing";journal;"08876045";"Emerald Group Publishing Ltd.";No;No;1,536;Q1;137;134;246;11161;1804;235;7,50;83,29;45,78;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1987-2026";"Marketing (Q1)";"Business, Management and Accounting" +2330;14000156253;"Regulation and Governance";journal;"17485983, 17485991";"Wiley-Blackwell Publishing Ltd";No;No;1,536;Q1;70;158;212;13310;1385;211;6,67;84,24;37,61;10;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2008-2026";"Law (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2331;13120;"Seminars in Oncology";journal;"00937754, 15328708";"W.B. Saunders";No;No;1,536;Q1;153;64;102;7633;416;97;5,88;119,27;37,84;0;United States;Northern America;"W.B. Saunders";"1974-2026";"Hematology (Q1); Oncology (Q1)";"Medicine" +2332;21101019393;"IEEE Transactions on Big Data";journal;"23327790";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,535;Q1;44;294;315;16030;2507;312;8,24;54,52;31,20;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015, 2018-2026";"Information Systems (Q1); Information Systems and Management (Q1)";"Computer Science; Decision Sciences" +2333;23271;"International Journal of Life Cycle Assessment";journal;"09483349, 16147502";"Springer";No;No;1,535;Q1;149;216;330;13512;2300;313;6,39;62,56;44,43;14;Germany;Western Europe;"Springer";"1996-2025";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +2334;21101038510;"Journal of Geophysical Research: Planets";journal;"21699100, 21699097";"Wiley-Blackwell Publishing Ltd";No;No;1,535;Q1;188;375;785;29371;3216;774;3,75;78,32;32,92;0;United States;Northern America;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geochemistry and Petrology (Q1); Geophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences" +2335;19900191888;"Journal of Parkinson's Disease";journal;"1877718X, 18777171";"SAGE Publications Ltd";Yes;No;1,535;Q1;82;132;507;1047;2600;479;4,92;7,93;48,31;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2011-2026";"Cellular and Molecular Neuroscience (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +2336;21101307219;"PRX Energy";journal;"27685608";"American Physical Society";Yes;No;1,535;Q1;17;60;131;4267;689;125;5,23;71,12;20,25;0;United States;Northern America;"American Physical Society";"2022-2025";"Energy (miscellaneous) (Q1); Nuclear and High Energy Physics (Q1); Nuclear Energy and Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Physics and Astronomy" +2337;16005;"Journal of Sleep Research";journal;"13652869, 09621105";"John Wiley and Sons Inc";No;No;1,534;Q1;152;448;776;23237;4313;750;5,42;51,87;48,48;5;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1992-2026";"Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Neuroscience" +2338;21101324524;"ACS Engineering Au";journal;"26942488";"American Chemical Society";Yes;No;1,533;Q1;10;57;41;3745;390;39;9,51;65,70;27,73;0;United States;Northern America;"American Chemical Society";"2024-2026";"Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fluid Flow and Transfer Processes (Q1); Process Chemistry and Technology (Q1)";"Chemical Engineering; Energy" +2339;21101090711;"Applications in Energy and Combustion Science";journal;"2666352X";"Elsevier Ltd";Yes;No;1,532;Q1;30;123;249;7520;1696;245;6,22;61,14;24,62;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Chemical Engineering (miscellaneous) (Q1); Energy (miscellaneous) (Q1); Fuel Technology (Q1)";"Chemical Engineering; Energy" +2340;21100886215;"RSF";journal;"23778253, 23778261";"Russell Sage Foundation";Yes;Yes;1,532;Q1;45;16;154;952;691;154;3,99;59,50;51,22;0;United States;Northern America;"Russell Sage Foundation";"2015-2025";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +2341;12172;"Climate Dynamics";journal;"14320894, 09307575";"Springer Verlag";No;No;1,531;Q1;206;463;1528;31070;6364;1526;4,08;67,11;35,56;4;Germany;Western Europe;"Springer Verlag";"1986-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +2342;21100201725;"European Journal of Psychology Applied to Legal Context";journal;"19894007, 18891861";"Colegio Oficial de la Psicologia de Madrid";Yes;Yes;1,531;Q1;39;10;30;780;179;30;6,45;78,00;55,26;1;Spain;Western Europe;"Colegio Oficial de la Psicologia de Madrid";"2009-2026";"Applied Psychology (Q1); Law (Q1)";"Psychology; Social Sciences" +2343;16321;"IEEE Transactions on Neural Systems and Rehabilitation Engineering";journal;"15344320, 15580210";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,531;Q1;179;430;1172;22479;9136;1171;7,63;52,28;35,06;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2001-2026";"Biomedical Engineering (Q1); Computer Science Applications (Q1); Internal Medicine (Q1); Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1); Rehabilitation (Q1)";"Computer Science; Engineering; Medicine; Neuroscience" +2344;16685;"Journal of Clinical Psychiatry";journal;"01606689, 15552101";"Physicians Postgraduate Press Inc.";No;No;1,530;Q1;243;165;482;6334;1875;403;3,20;38,39;43,82;0;United States;Northern America;"Physicians Postgraduate Press Inc.";"1978-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +2345;21101021745;"Advances in Geo-Energy Research";journal;"22079963, 2208598X";"Yandy Scientific Press";Yes;No;1,529;Q1;49;100;231;4267;1757;220;8,40;42,67;26,01;0;Hong Kong;Asiatic Region;"Yandy Scientific Press";"2017-2026";"Energy Engineering and Power Technology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Mechanics of Materials (Q1)";"Earth and Planetary Sciences; Energy; Engineering" +2346;21101075549;"Postdigital Science and Education";journal;"2524485X, 25244868";"Springer International Publishing AG";No;No;1,529;Q1;44;92;192;5549;1283;110;6,47;60,32;54,71;2;Switzerland;Western Europe;"Springer International Publishing AG";"2019-2026";"Arts and Humanities (miscellaneous) (Q1); Education (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +2347;144908;"Library Hi Tech";journal;"07378831";"Emerald Group Publishing Ltd.";No;No;1,528;Q1;59;68;309;5465;2029;293;6,14;80,37;36,63;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1983-2025";"Information Systems (Q1); Library and Information Sciences (Q1)";"Computer Science; Social Sciences" +2348;21100936579;"Current Opinion in Environmental Science and Health";journal;"24685844";"Elsevier B.V.";No;No;1,527;Q1;71;82;224;4661;1776;211;7,66;56,84;37,01;2;Netherlands;Western Europe;"Elsevier B.V.";"2018-2026";"Environmental Chemistry (Q1); Health, Toxicology and Mutagenesis (Q1); Public Health, Environmental and Occupational Health (Q1)";"Environmental Science; Medicine" +2349;14946;"Group Processes and Intergroup Relations";journal;"14617188, 13684302";"SAGE Publications Ltd";No;No;1,527;Q1;102;74;291;5388;1320;289;3,57;72,81;48,44;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1998-2026";"Arts and Humanities (miscellaneous) (Q1); Communication (Q1); Cultural Studies (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Psychology; Social Sciences" +2350;14026;"Human Resources for Health";journal;"14784491";"BioMed Central Ltd";Yes;No;1,527;Q1;96;73;277;3384;1434;258;5,06;46,36;53,28;4;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Public Administration (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +2351;15361;"IEEE Transactions on Instrumentation and Measurement";journal;"00189456, 15579662";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,527;Q1;176;4165;6597;167487;52177;6583;7,52;40,21;28,47;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-2026";"Electrical and Electronic Engineering (Q1); Instrumentation (Q1)";"Engineering; Physics and Astronomy" +2352;15357;"Journal of Adolescent Health";journal;"1054139X, 18791972";"Elsevier Inc.";No;No;1,527;Q1;214;360;1058;12748;4223;909;3,42;35,41;66,71;8;United States;Northern America;"Elsevier Inc.";"1991-2026";"Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2353;29576;"Limnology and Oceanography";journal;"00243590, 19395590";"John Wiley and Sons Inc";No;No;1,527;Q1;236;315;664;20941;2890;657;3,95;66,48;42,55;3;United States;Northern America;"John Wiley and Sons Inc";"1956-2026";"Aquatic Science (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +2354;21100369734;"Neurobiology of Stress";journal;"23522895";"Elsevier Inc.";Yes;No;1,527;Q1;64;61;224;5177;1056;222;4,24;84,87;60,34;0;United States;Northern America;"Elsevier Inc.";"2015-2026";"Biochemistry (Q1); Cellular and Molecular Neuroscience (Q1); Endocrine and Autonomic Systems (Q1); Endocrinology (Q1); Molecular Biology (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +2355;20346;"Scandinavian Journal of Medicine and Science in Sports";journal;"16000838, 09057188";"Blackwell Munksgaard";No;No;1,525;Q1;158;182;676;9264;2968;633;4,03;50,90;31,16;0;Denmark;Western Europe;"Blackwell Munksgaard";"1991-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine" +2356;36753;"Critical Reviews in Plant Sciences";journal;"15497836, 07352689";"Taylor and Francis Ltd.";No;No;1,524;Q1;150;17;52;3863;436;52;8,47;227,24;42,48;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +2357;28339;"Ocean Engineering";journal;"00298018";"Elsevier B.V.";No;No;1,524;Q1;165;3009;8415;141765;57280;8410;6,78;47,11;25,18;7;United Kingdom;Western Europe;"Elsevier B.V.";"1968-2026";"Environmental Engineering (Q1); Ocean Engineering (Q1)";"Engineering; Environmental Science" +2358;19500157075;"Rice";journal;"19398425, 19398433";"Springer";Yes;No;1,524;Q1;88;113;202;7511;1348;198;6,04;66,47;40,39;0;United States;Northern America;"Springer";"1996, 2008-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences" +2359;26380;"Drug and Alcohol Dependence";journal;"03768716, 18790046";"Elsevier Ireland Ltd";No;No;1,523;Q1;201;332;1028;16566;4160;1017;3,57;49,90;55,31;7;Ireland;Western Europe;"Elsevier Ireland Ltd";"1975-2026";"Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1); Toxicology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +2360;14250;"Australian and New Zealand Journal of Psychiatry";journal;"00048674, 14401614";"SAGE Publications Ltd";No;No;1,522;Q1;146;145;541;5525;1706;363;3,30;38,10;55,48;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1967-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +2361;20681;"Current Opinion in Pharmacology";journal;"14714973, 14714892";"Elsevier Ltd";No;No;1,521;Q1;157;37;205;1743;1063;187;4,84;47,11;41,44;0;United Kingdom;Western Europe;"Elsevier Ltd";"2001-2026";"Drug Discovery (Q1); Pharmacology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +2362;21101092533;"High-Confidence Computing";journal;"26672952";"Shandong University";Yes;No;1,521;Q1;20;52;121;2194;1193;121;11,11;42,19;33,33;0;China;Asiatic Region;"Shandong University";"2021-2026";"Computational Theory and Mathematics (Q1); Computer Networks and Communications (Q1); Computer Science Applications (Q1); Hardware and Architecture (Q1); Software (Q1)";"Computer Science" +2363;20146;"Industrial Relations";journal;"00198676, 1468232X";"Wiley-Blackwell Publishing Ltd";No;No;1,521;Q1;68;39;59;2408;240;52;4,18;61,74;46,39;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1961-2026";"Industrial Relations (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +2364;21100274275;"Journal of Tissue Engineering";journal;"20417314";"SAGE-Hindawi Access to Research";Yes;No;1,521;Q1;59;56;159;5165;1276;159;9,15;92,23;35,38;0;United Kingdom;Western Europe;"SAGE-Hindawi Access to Research";"2010-2026";"Biomaterials (Q1); Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1)";"Engineering; Materials Science; Medicine" +2365;21100208044;"Policy and Internet";journal;"19442866";"John Wiley and Sons Ltd";No;No;1,521;Q1;52;39;132;2787;715;121;3,99;71,46;39,02;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010, 2012-2026";"Computer Science Applications (Q1); Health Policy (Q1); Health (social science) (Q1); Public Administration (Q1)";"Computer Science; Medicine; Social Sciences" +2366;23366;"Reviews in Fish Biology and Fisheries";journal;"09603166, 15735184";"Springer Science and Business Media Deutschland GmbH";No;No;1,521;Q1;122;105;204;10837;1289;200;5,13;103,21;38,03;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1991-2026";"Aquatic Science (Q1)";"Agricultural and Biological Sciences" +2367;4700152289;"Human Resource Development Quarterly";journal;"15321096, 10448004";"Wiley-Blackwell";No;No;1,520;Q1;87;33;71;2525;484;55;7,71;76,52;54,05;1;United States;Northern America;"Wiley-Blackwell";"1990-2026";"Arts and Humanities (miscellaneous) (Q1); Organizational Behavior and Human Resource Management (Q1)";"Arts and Humanities; Business, Management and Accounting" +2368;19874;"Journal of Science and Medicine in Sport";journal;"18781861, 14402440";"Elsevier Ltd";No;No;1,520;Q1;141;189;453;6807;1781;399;3,99;36,02;39,13;0;United Kingdom;Western Europe;"Elsevier Ltd";"1998-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine" +2369;13482;"Monthly Weather Review";journal;"15200493, 00270644";"American Meteorological Society";No;No;1,519;Q1;221;130;466;8316;1513;460;3,04;63,97;28,86;0;United States;Northern America;"American Meteorological Society";"1919, 1960, 1965-1966, 1968, 1971, 1973, 1976-1994, 1996-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +2370;20870;"Telecommunications Policy";journal;"03085961";"Elsevier Ltd";No;No;1,519;Q1;101;110;317;8111;2652;307;8,15;73,74;36,58;4;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Economics and Econometrics (Q1); Electrical and Electronic Engineering (Q1); Human Factors and Ergonomics (Q1); Information Systems (Q1); Library and Information Sciences (Q1); Management Information Systems (Q1); Management, Monitoring, Policy and Law (Q1)";"Business, Management and Accounting; Computer Science; Economics, Econometrics and Finance; Engineering; Environmental Science; Social Sciences" +2371;21100325079;"Current Opinion in Insect Science";journal;"22145745, 22145753";"Elsevier Inc.";No;No;1,518;Q1;89;100;310;5772;1771;286;5,38;57,72;36,77;0;United States;Northern America;"Elsevier Inc.";"2014-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1)";"Agricultural and Biological Sciences" +2372;21101072502;"NAR Genomics and Bioinformatics";journal;"26319268";"Oxford University Press";Yes;No;1,518;Q1;38;204;397;10723;1266;397;2,99;52,56;32,89;0;United Kingdom;Western Europe;"Oxford University Press";"2019-2026";"Applied Mathematics (Q1); Computer Science Applications (Q1); Genetics (Q1); Molecular Biology (Q1); Structural Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics" +2373;19559;"Natural Gas Industry";journal;"10000976";"Science Press";No;No;1,518;Q1;71;186;597;9188;3026;597;4,89;49,40;29,51;0;China;Asiatic Region;"Science Press";"1998-2025";"Energy Engineering and Power Technology (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Energy" +2374;21101057020;"Planetary Science Journal";journal;"26323338";"IOP Publishing Ltd.";Yes;No;1,518;Q1;41;309;771;22629;2996;771;3,68;73,23;27,28;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2020-2026";"Astronomy and Astrophysics (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Geophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +2375;14313;"Bipolar Disorders";journal;"13995618, 13985647";"Blackwell Munksgaard";No;No;1,517;Q1;150;75;320;2366;883;202;2,58;31,55;49,74;0;Denmark;Western Europe;"Blackwell Munksgaard";"1999-2026";"Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +2376;20540;"Composites Part A: Applied Science and Manufacturing";journal;"1359835X";"Elsevier Ltd";No;No;1,517;Q1;240;642;1519;34666;14016;1518;8,95;54,00;29,11;0;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Ceramics and Composites (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +2377;21101048538;"Fungal Systematics and Evolution";journal;"25893823, 25893831";"Westerdijk Fungal Biodiversity Institute";No;No;1,517;Q1;27;28;73;1991;336;72;4,29;71,11;31,19;0;Netherlands;Western Europe;"Westerdijk Fungal Biodiversity Institute";"2018-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Microbiology (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +2378;19700200884;"Genes and Cancer";journal;"19476027, 19476019";"Impact Journals LLC";No;No;1,517;Q1;88;4;18;186;70;15;3,56;46,50;45,45;0;United States;Northern America;"Impact Journals LLC";"2010-2025";"Genetics (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology" +2379;13357;"Journal of the Learning Sciences";journal;"10508406, 15327809";"Routledge";No;No;1,517;Q1;121;27;66;2057;365;57;4,67;76,19;57,14;0;United States;Northern America;"Routledge";"1991-1992, 1994-2025";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +2380;17806;"Medical Education";journal;"13652923, 03080110";"John Wiley and Sons Inc";No;No;1,517;Q1;180;309;779;7483;2209;402;2,75;24,22;56,84;1;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1966-2026";"Education (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +2381;21101067154;"Plant Stress";journal;"2667064X";"Elsevier B.V.";Yes;No;1,517;Q1;50;421;631;39817;6004;623;9,19;94,58;41,91;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +2382;17900156737;"Asia-Pacific Education Researcher";journal;"22437908, 01195646";"Springer Singapore";No;No;1,516;Q1;58;211;258;11240;1779;257;7,05;53,27;44,90;0;Singapore;Asiatic Region;"Springer Singapore";"2008-2026";"Education (Q1)";"Social Sciences" +2383;28534;"American Journal of Geriatric Psychiatry";journal;"15457214, 10647481";"Elsevier B.V.";No;No;1,515;Q1;155;185;578;5250;1454;291;2,60;28,38;52,13;1;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Geriatrics and Gerontology (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +2384;19700182917;"Biofabrication";journal;"17585082, 17585090";"IOP Publishing Ltd.";No;No;1,515;Q1;134;217;401;16855;3391;400;8,05;77,67;42,28;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2009-2026";"Biochemistry (Q1); Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science; Medicine" +2385;21100924773;"GeoHealth";journal;"24711403";"John Wiley & Sons Inc.";Yes;No;1,515;Q1;48;93;250;6890;1253;231;4,95;74,09;49,06;0;United States;Northern America;"John Wiley & Sons Inc.";"2017-2026";"Epidemiology (Q1); Global and Planetary Change (Q1); Health, Toxicology and Mutagenesis (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1); Public Health, Environmental and Occupational Health (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Environmental Science; Medicine" +2386;21101114532;"Ijtihad: Jurnal Wacana Hukum Islam dan Kemanusiaan";journal;"14119544, 24778036";"Faculty of Sharia State Islamic University of Salatiga";Yes;No;1,515;Q1;17;13;40;992;291;40;7,68;76,31;30,77;0;Indonesia;Asiatic Region;"Faculty of Sharia State Islamic University of Salatiga";"2019-2025";"Law (Q1); Religious Studies (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +2387;14688;"Inflammation";journal;"03603997, 15732576";"Springer";No;No;1,515;Q1;92;308;491;16671;3177;484;6,65;54,13;47,59;0;United States;Northern America;"Springer";"1975-2005, 2007-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +2388;21101391920;"Journal of Intelligent Construction";journal;"29582652, 29583861";"Tsinghua University Press";No;No;1,515;Q1;15;32;61;1969;458;59;7,51;61,53;24,19;0;China;Asiatic Region;"Tsinghua University Press";"2023-2025";"Architecture (Q1); Building and Construction (Q1); Civil and Structural Engineering (Q1)";"Engineering" +2389;14082;"Quarterly Journal of the Royal Meteorological Society";journal;"1477870X, 00359009";"Wiley-Blackwell";No;No;1,515;Q1;182;206;679;11998;2433;675;3,30;58,24;27,18;1;United States;Northern America;"Wiley-Blackwell";"1873, 1875, 1877-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +2390;25397;"Dianli Xitong Zidonghua/Automation of Electric Power Systems";journal;"10001026";"Automation of Electric Power Systems Press";No;No;1,514;Q1;121;442;1396;14598;7365;1395;5,44;33,03;32,79;0;China;Asiatic Region;"Automation of Electric Power Systems Press";"1996-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)";"Computer Science; Energy; Engineering" +2391;19842;"Exercise and Sport Sciences Reviews";journal;"15383008, 00916331";"Lippincott Williams and Wilkins Ltd.";No;No;1,514;Q1;127;22;77;1141;395;67;4,87;51,86;42,67;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1973-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine" +2392;25076;"Ecotoxicology and Environmental Safety";journal;"01476513, 10902414";"Academic Press";Yes;No;1,513;Q1;214;2055;4282;126804;32602;4273;7,25;61,71;45,82;4;United States;Northern America;"Academic Press";"1977-2026";"Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Pollution (Q1); Public Health, Environmental and Occupational Health (Q1)";"Environmental Science; Medicine" +2393;20814;"Harm Reduction Journal";journal;"14777517";"BioMed Central Ltd";Yes;No;1,513;Q1;76;199;530;10550;2202;511;3,80;53,02;59,22;8;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2394;26048;"IEEE Transactions on Consumer Electronics";journal;"15584127, 00983063";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,513;Q1;120;1283;883;50176;9470;857;10,91;39,11;28,01;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1975-2026";"Electrical and Electronic Engineering (Q1); Media Technology (Q1)";"Engineering" +2395;21681;"University of Pennsylvania Law Review";journal;"19428537, 00419907";"University of Pennsylvania Law School";No;No;1,513;Q1;78;29;83;10644;124;78;1,49;367,03;52,94;0;United States;Northern America;"University of Pennsylvania Law School";"1974, 1977-1978, 1986, 1989-1990, 1992-1993, 1996-2025";"Law (Q1)";"Social Sciences" +2396;15440;"Dialogues in Clinical Neuroscience";journal;"19585969, 12948322";"Taylor and Francis Ltd.";Yes;No;1,512;Q1;131;21;23;1571;143;23;5,33;74,81;36,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +2397;17990;"Neuropathology and Applied Neurobiology";journal;"03051846, 13652990";"Wiley-Blackwell Publishing Ltd";No;No;1,512;Q1;115;46;230;1647;817;220;3,01;35,80;45,27;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1975-2026";"Histology (Q1); Neurology (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1); Physiology (medical) (Q1)";"Medicine; Neuroscience" +2398;63777;"Personnel Review";journal;"00483486";"Emerald Group Publishing Ltd.";No;No;1,512;Q1;104;156;381;12256;2773;373;7,13;78,56;49,53;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1971-2026";"Applied Psychology (Q1); Industrial Relations (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Psychology" +2399;21100901143;"Perspectives on Medical Education";journal;"22122761, 2212277X";"Ubiquity Press";Yes;No;1,512;Q1;52;92;186;4239;1140;174;4,02;46,08;60,25;0;United Kingdom;Western Europe;"Ubiquity Press";"2012-2026";"Education (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +2400;21100829245;"Endocrinology and Metabolism";journal;"2093596X, 20935978";"Korean Endocrine Society";Yes;Yes;1,511;Q1;59;104;279;4146;1243;233;4,31;39,87;40,40;0;South Korea;Asiatic Region;"Korean Endocrine Society";"2014-2025";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2401;23182;"Food Reviews International";journal;"87559129, 15256103";"Taylor and Francis Ltd.";No;No;1,511;Q1;112;233;561;31198;6401;561;10,79;133,90;43,90;1;United States;Northern America;"Taylor and Francis Ltd.";"1985-2026";"Chemical Engineering (miscellaneous) (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Chemical Engineering" +2402;37369;"Journal of Neurosurgery: Spine";journal;"15475646, 15475654";"American Association of Neurological Surgeons";No;No;1,511;Q1;135;199;645;5753;2454;572;3,75;28,91;19,82;0;United States;Northern America;"American Association of Neurological Surgeons";"2003-2026";"Medicine (miscellaneous) (Q1); Neurology (Q1); Neurology (clinical) (Q1); Surgery (Q1)";"Medicine; Neuroscience" +2403;17494;"Neuroepidemiology";journal;"02515350, 14230208";"S. Karger AG";No;No;1,511;Q1;107;117;155;4974;686;147;3,66;42,51;43,22;0;Switzerland;Western Europe;"S. Karger AG";"1982-2026";"Epidemiology (Q1); Neurology (clinical) (Q1)";"Medicine" +2404;17300154735;"Obesity Facts";journal;"16624025, 16624033";"S. Karger AG";Yes;No;1,511;Q1;72;68;221;3067;1135;217;3,38;45,10;53,39;0;Switzerland;Western Europe;"S. Karger AG";"2008-2026";"Health (social science) (Q1); Physiology (medical) (Q1)";"Medicine; Social Sciences" +2405;26698;"Reproductive Biology and Endocrinology";journal;"14777827";"BioMed Central Ltd";Yes;No;1,511;Q1;124;164;442;9740;2555;438;5,81;59,39;52,92;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Developmental Biology (Q1); Endocrinology (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2406;20100195041;"IEEE Computer Society Conference on Computer Vision and Pattern Recognition Workshops";conference and proceedings;"21607516, 21607508";"IEEE Computer Society";No;No;1,511;-;160;660;2069;31619;14366;2065;6,30;47,91;23,44;0;United States;Northern America;"IEEE Computer Society";"2003-2005, 2011-2025";"Computer Vision and Pattern Recognition; Electrical and Electronic Engineering";"Computer Science; Engineering" +2407;21764;"AIDS Patient Care and STDs";journal;"15577449, 10872914";"Mary Ann Liebert Inc.";No;No;1,510;Q1;100;68;195;2445;702;165;3,65;35,96;57,97;0;United States;Northern America;"Mary Ann Liebert Inc.";"1996-2026";"Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2408;130158;"British Journal of Politics and International Relations";journal;"13691481, 1467856X";"SAGE Publications Inc.";No;No;1,510;Q1;65;105;143;10223;752;142;3,75;97,36;32,77;5;United Kingdom;Western Europe;"SAGE Publications Inc.";"2005-2026";"Management, Monitoring, Policy and Law (Q1); Political Science and International Relations (Q1)";"Environmental Science; Social Sciences" +2409;5600153491;"Journal of Multilingual and Multicultural Development";journal;"01434632";"Routledge";No;No;1,510;Q1;76;487;456;28197;2816;447;6,08;57,90;58,73;1;United Kingdom;Western Europe;"Routledge";"1980-2026";"Cultural Studies (Q1); Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +2410;29187;"Cancer Science";journal;"13497006, 13479032";"Wiley-Blackwell";Yes;No;1,509;Q1;178;303;1079;12722;5397;1061;4,76;41,99;29,76;0;United States;Northern America;"Wiley-Blackwell";"2003-2026";"Medicine (miscellaneous) (Q1); Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2411;23448;"Chinese Chemical Letters";journal;"10018417";"Elsevier B.V.";No;No;1,509;Q1;112;1141;2990;69151;24990;2937;8,93;60,61;39,39;1;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Chemistry (miscellaneous) (Q1)";"Chemistry" +2412;2600147402;"Ethics and Information Technology";journal;"13881957, 15728439";"Springer Science and Business Media B.V.";No;No;1,509;Q1;87;65;175;4447;1276;171;5,90;68,42;32,00;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1999-2026";"Computer Science Applications (Q1); Library and Information Sciences (Q1)";"Computer Science; Social Sciences" +2413;12056;"Research in International Business and Finance";journal;"02755319";"Elsevier B.V.";No;No;1,509;Q1;99;513;884;35995;8476;884;9,31;70,17;36,87;4;Netherlands;Western Europe;"Elsevier B.V.";"2004-2026";"Business, Management and Accounting (miscellaneous) (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2414;14698;"Review of General Psychology";journal;"10892680, 19391552";"American Psychological Association";No;No;1,509;Q1;133;40;80;3313;428;80;5,49;82,83;49,59;0;United States;Northern America;"American Psychological Association";"1997-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +2415;13442;"Psychological Assessment";journal;"1939134X, 10403590";"American Psychological Association";No;No;1,508;Q1;189;78;277;3735;1156;276;3,07;47,88;54,68;1;United States;Northern America;"American Psychological Association";"1989-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +2416;144947;"European Journal of Ageing";journal;"16139372, 16139380";"Springer Science and Business Media B.V.";No;No;1,507;Q1;74;60;207;3440;1060;204;4,23;57,33;61,87;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2004-2026";"Geriatrics and Gerontology (Q1); Health (social science) (Q1)";"Medicine; Social Sciences" +2417;21100199831;"Frontiers in Aging Neuroscience";journal;"16634365";"Frontiers Media SA";Yes;No;1,507;Q1;146;661;3060;45429;16846;2910;4,83;68,73;46,45;1;Switzerland;Western Europe;"Frontiers Media SA";"2009-2026";"Cognitive Neuroscience (Q1); Aging (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +2418;15134;"Information Sciences";journal;"00200255";"Elsevier Inc.";No;No;1,507;Q1;255;1030;3989;43440;30425;3984;7,69;42,17;29,79;1;United States;Northern America;"Elsevier Inc.";"1968-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Information Systems and Management (Q1); Software (Q1); Theoretical Computer Science (Q1)";"Computer Science; Decision Sciences; Engineering; Mathematics" +2419;16745;"Journal of Neuroendocrinology";journal;"13652826, 09538194";"Wiley-Blackwell Publishing Ltd";No;No;1,507;Q1;134;152;354;10564;1850;340;5,35;69,50;46,81;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1989-2026";"Cellular and Molecular Neuroscience (Q1); Endocrine and Autonomic Systems (Q1); Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +2420;21100222534;"NeuroImage: Clinical";journal;"22131582";"Elsevier Inc.";Yes;No;1,507;Q1;117;205;801;13014;3736;795;4,47;63,48;42,18;0;United States;Northern America;"Elsevier Inc.";"2012-2026";"Cognitive Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine; Neuroscience" +2421;21101225723;"Phenomics";journal;"2730583X, 27305848";"Springer";No;No;1,507;Q1;22;66;136;3153;809;125;5,01;47,77;43,62;0;Singapore;Asiatic Region;"Springer";"2021-2026";"Biotechnology (Q1); Genetics (Q1); Molecular Biology (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2422;21101196741;"Pure and Applied Analysis";journal;"25785885, 25785893";"Mathematical Sciences Publishers";No;No;1,507;Q1;14;30;77;1215;138;77;1,64;40,50;19,05;0;United States;Northern America;"Mathematical Sciences Publishers";"2019-2026";"Analysis (Q1); Mathematical Physics (Q1)";"Mathematics" +2423;19212;"Current Rheumatology Reports";journal;"15346307, 15233774";"Springer";No;No;1,506;Q1;98;40;111;3177;594;110;5,21;79,43;40,53;0;United States;Northern America;"Springer";"1999-2026";"Rheumatology (Q1)";"Medicine" +2424;28988;"Journal of Economics and Management Strategy";journal;"15309134, 10586407";"Wiley-Blackwell Publishing Ltd";No;No;1,506;Q1;85;68;119;3557;344;119;2,89;52,31;32,19;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2425;17797;"Materials and Design";journal;"02641275, 18734197";"Elsevier B.V.";Yes;No;1,506;Q1;276;1697;3102;105531;28188;3100;8,56;62,19;30,45;0;Netherlands;Western Europe;"Elsevier B.V.";"1980-2026";"Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +2426;4700152622;"TechTrends";journal;"15597075, 87563894";"Springer";No;No;1,506;Q1;71;123;335;5963;2249;283;6,56;48,48;49,23;0;United States;Northern America;"Springer";"1982, 1985-1996, 2000, 2002, 2004, 2006-2026";"Computer Science Applications (Q1); Education (Q1)";"Computer Science; Social Sciences" +2427;23308;"American Journal of Physiology - Endocrinology and Metabolism";journal;"01931849, 15221555";"American Physiological Society";No;No;1,505;Q1;237;168;403;9539;1655;389;4,24;56,78;46,86;0;United States;Northern America;"American Physiological Society";"1980-2026";"Endocrinology, Diabetes and Metabolism (Q1); Physiology (Q1); Physiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2428;22839;"International Marketing Review";journal;"02651335";"Emerald Group Publishing Ltd.";No;No;1,505;Q1;117;94;186;10045;1388;181;6,61;106,86;33,12;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1983-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2429;17255;"Korean Journal of Radiology";journal;"12296929, 20058330";"Korean Radiological Society";Yes;No;1,505;Q1;84;136;411;3934;1770;278;4,17;28,93;42,83;0;South Korea;Asiatic Region;"Korean Radiological Society";"2000-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +2430;28379;"Scripta Materialia";journal;"13596462";"Acta Materialia Inc";No;No;1,505;Q1;253;474;1496;18535;9285;1482;6,08;39,10;26,34;0;United Kingdom;Western Europe;"Acta Materialia Inc";"1996-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1); Nanoscience and Nanotechnology (Q1)";"Engineering; Materials Science; Physics and Astronomy" +2431;23616;"AI and Society";journal;"09515666, 14355655";"Springer London";No;No;1,504;Q1;69;779;629;39853;5075;543;7,97;51,16;35,18;30;United Kingdom;Western Europe;"Springer London";"1987-1996, 1998-2026";"Artificial Intelligence (Q1); Human-Computer Interaction (Q1); Philosophy (Q1)";"Arts and Humanities; Computer Science" +2432;21101168024;"Europe and the World";journal;"23992875";"UCL Press";Yes;Yes;1,504;Q1;7;0;6;0;15;6;4,00;0,00;0,00;0;United Kingdom;Western Europe;"UCL Press";"2019-2023";"Law (Q1)";"Social Sciences" +2433;21101147580;"Immunotherapy Advances";journal;"27324303";"Oxford University Press";Yes;No;1,504;Q1;20;31;62;1936;296;59;4,28;62,45;40,82;0;United Kingdom;Western Europe;"Oxford University Press";"2021-2026";"Immunology (Q1)";"Immunology and Microbiology" +2434;130023;"RNA Biology";journal;"15558584, 15476286";"Taylor and Francis Ltd.";Yes;No;1,504;Q1;121;89;282;7526;1141;275;4,02;84,56;44,12;0;United States;Northern America;"Taylor and Francis Ltd.";"2004-2026";"Molecular Biology (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2435;21100443787;"SSM - Population Health";journal;"23528273";"Elsevier Ltd";Yes;No;1,504;Q1;73;153;728;8661;3185;721;4,03;56,61;56,64;3;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Health Policy (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +2436;19500157549;"Food Security";journal;"18764517, 18764525";"Springer Science and Business Media B.V.";No;No;1,503;Q1;98;105;273;6408;2168;271;4,92;61,03;44,12;13;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2009-2026";"Agronomy and Crop Science (Q1); Development (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Social Sciences" +2437;5700162364;"Journal of European Integration";journal;"07036337, 14772280";"Routledge";No;No;1,503;Q1;62;94;198;6118;947;196;4,83;65,09;45,03;8;United Kingdom;Western Europe;"Routledge";"1977-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2438;29561;"Journals of Gerontology - Series B Psychological Sciences and Social Sciences";journal;"10795014, 17585368";"Gerontological Society of America";No;No;1,503;Q1;193;246;717;12099;3080;705;3,73;49,18;55,39;2;United States;Northern America;"Gerontological Society of America";"1995-2026";"Clinical Psychology (Q1); Geriatrics and Gerontology (Q1); Gerontology (Q1); Health (social science) (Q1); Life-span and Life-course Studies (Q1); Medicine (miscellaneous) (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)";"Medicine; Nursing; Psychology; Social Sciences" +2439;18016;"Autonomous Robots";journal;"15737527, 09295593";"Springer Netherlands";No;No;1,502;Q1;140;41;168;2130;1268;163;6,71;51,95;25,17;0;Netherlands;Western Europe;"Springer Netherlands";"1994-2026";"Artificial Intelligence (Q1)";"Computer Science" +2440;28081;"Gene Therapy";journal;"09697128, 14765462";"Springer Nature";No;No;1,502;Q1;181;81;235;4472;1090;222;4,57;55,21;46,64;1;United Kingdom;Western Europe;"Springer Nature";"1994-2026";"Genetics (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology" +2441;5800228226;"Journal of the Institute of Mathematics of Jussieu";journal;"14747480, 14753030";"Cambridge University Press";No;No;1,502;Q1;40;59;205;2372;245;205;1,13;40,20;8,26;0;United Kingdom;Western Europe;"Cambridge University Press";"2002-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +2442;21101248284;"MedComm - Oncology";journal;"27696448";"John Wiley and Sons Inc";Yes;No;1,502;Q1;14;41;86;6035;477;81;5,96;147,20;43,23;0;China;Asiatic Region;"John Wiley and Sons Inc";"2022-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Oncology (Q1); Cancer Research (Q2); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2443;21101193861;"Microstructures";journal;"27702995";"OAE Publishing Inc.";No;No;1,502;Q1;21;98;127;9025;1020;125;7,82;92,09;35,31;0;United States;Northern America;"OAE Publishing Inc.";"2021-2025";"Materials Science (miscellaneous) (Q1)";"Materials Science" +2444;21767;"Progress in Neuro-Psychopharmacology and Biological Psychiatry";journal;"18784216, 02785846";"Elsevier Inc.";No;No;1,502;Q1;165;392;551;34296;2833;546;4,93;87,49;47,73;1;United States;Northern America;"Elsevier Inc.";"1982-2026";"Biological Psychiatry (Q1); Pharmacology (Q1)";"Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +2445;21101012342;"SciPost Physics";journal;"25424653";"SciPost Foundation";Yes;Yes;1,502;Q1;75;377;1079;28077;5308;1079;5,09;74,47;17,94;0;Netherlands;Western Europe;"SciPost Foundation";"2016-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +2446;17700155709;"Fire Ecology";journal;"19339747";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,501;Q1;50;84;198;6828;1332;196;6,82;81,29;34,07;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2008-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Environmental Science (miscellaneous) (Q1); Forestry (Q1)";"Agricultural and Biological Sciences; Environmental Science" +2447;16101;"Human Brain Mapping";journal;"10659471, 10970193";"Wiley-Liss Inc.";Yes;No;1,501;Q1;231;333;1175;24942;5480;1173;4,04;74,90;40,74;0;United States;Northern America;"Wiley-Liss Inc.";"1993-2026";"Anatomy (Q1); Neurology (Q1); Neurology (clinical) (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Health Professions; Medicine; Neuroscience" +2448;130059;"Journal of Archaeological Method and Theory";journal;"15737764, 10725369";"Springer";No;No;1,501;Q1;77;64;149;7101;507;145;3,06;110,95;44,32;0;United States;Northern America;"Springer";"1994-2002, 2004-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +2449;21101149179;"Medical Review";journal;"27499642";"Walter de Gruyter GmbH";Yes;Yes;1,501;Q1;20;40;129;3647;769;112;6,15;91,18;39,39;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2021-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +2450;20385;"Journal of Research in Crime and Delinquency";journal;"1552731X, 00224278";"SAGE Publications Inc.";No;No;1,500;Q1;116;21;69;2176;323;65;4,27;103,62;34,55;1;United States;Northern America;"SAGE Publications Inc.";"1964-2026";"Social Psychology (Q1)";"Psychology" +2451;18090;"Sociological Methodology";journal;"14679531, 00811750";"SAGE Publications Ltd";No;No;1,500;Q1;70;13;37;734;144;37;3,73;56,46;52,63;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1987-1990, 1993, 1996-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2452;19700188323;"Nutrients";journal;"20726643";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,499;Q1;279;3960;14911;268877;95057;14492;6,02;67,90;55,54;12;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Food Science (Q1); Nutrition and Dietetics (Q1)";"Agricultural and Biological Sciences; Nursing" +2453;27677;"Journal of Manufacturing Processes";journal;"15266125";"Elsevier B.V.";No;No;1,498;Q1;124;1190;2866;64452;24770;2863;8,30;54,16;25,63;0;Netherlands;Western Europe;"Elsevier B.V.";"1999-2026";"Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences; Engineering" +2454;21100887409;"Life Science Alliance";journal;"25751077";"";Yes;No;1,498;Q1;49;178;899;10073;2887;896;3,16;56,59;44,48;0;United States;Northern America;"";"2018-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Ecology (Q1); Health, Toxicology and Mutagenesis (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +2455;18408;"Biochimica et Biophysica Acta - Molecular Cell Research";journal;"18792596, 01674889";"Elsevier B.V.";No;No;1,495;Q1;216;176;504;11843;2454;488;4,56;67,29;47,42;0;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Molecular Biology (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2456;13300154704;"Geography Compass";journal;"17498198";"John Wiley and Sons Inc";No;No;1,495;Q1;97;42;121;4041;648;119;5,01;96,21;48,78;1;United States;Northern America;"John Wiley and Sons Inc";"2007-2026";"Atmospheric Science (Q1); Computers in Earth Sciences (Q1); Earth-Surface Processes (Q1); Social Sciences (miscellaneous) (Q1); Water Science and Technology (Q1)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +2457;14871;"International Journal of Behavioral Development";journal;"01650254, 14640651";"SAGE Publications Ltd";No;No;1,495;Q1;119;126;161;7423;759;160;3,17;58,91;68,05;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1978-2026";"Developmental and Educational Psychology (Q1); Developmental Neuroscience (Q1); Education (Q1); Life-span and Life-course Studies (Q1); Social Psychology (Q1); Social Sciences (miscellaneous) (Q1)";"Neuroscience; Psychology; Social Sciences" +2458;96119;"Applied Soil Ecology";journal;"09291393";"Elsevier B.V.";No;No;1,494;Q1;167;699;1261;53771;8378;1258;6,33;76,93;41,56;1;Netherlands;Western Europe;"Elsevier B.V.";"1994-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +2459;21101329154;"IEEE Transactions on Networking";journal;"29984157";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,494;Q1;192;107;842;5449;4392;842;5,12;50,93;29,86;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Software (Q1)";"Computer Science; Engineering" +2460;21101173022;"Digital Discovery";journal;"2635098X";"Royal Society of Chemistry";Yes;No;1,492;Q1;32;257;468;15540;3086;463;6,47;60,47;21,14;1;United Kingdom;Western Europe;"Royal Society of Chemistry";"2022-2026";"Chemistry (miscellaneous) (Q1)";"Chemistry" +2461;19700188222;"Journal of Ginseng Research";journal;"20934947, 12268453";"Elsevier B.V.";Yes;No;1,492;Q1;77;82;242;4493;1762;239;7,31;54,79;40,18;0;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biotechnology (Q1); Complementary and Alternative Medicine (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +2462;21100862881;"Quantum Science and Technology";journal;"20589565";"Institute of Physics Publishing";No;No;1,492;Q1;72;285;445;19302;2425;444;4,86;67,73;19,02;0;United States;Northern America;"Institute of Physics Publishing";"2016-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Engineering; Materials Science; Physics and Astronomy" +2463;20088;"Vital and Health Statistics, Series 1: Programs and Collection Procedures";book series;"00832014, 23328401";"National Center for Health Statistics";No;No;1,492;Q1;19;1;15;28;57;15;2,30;28,00;66,67;0;United States;Northern America;"National Center for Health Statistics";"1963-1978, 1981, 1985-1987, 1989-1990, 1992-1994, 1997, 1999, 2002-2003, 2005, 2007-2015, 2017-2025";"Health Information Management (Q1); Medicine (miscellaneous) (Q1); Statistics and Probability (Q1)";"Health Professions; Mathematics; Medicine" +2464;21101065035;"Environmental Advances";journal;"26667657";"Elsevier B.V.";Yes;No;1,491;Q1;46;73;449;5194;3561;448;7,41;71,15;40,05;0;United Kingdom;Western Europe;"Elsevier B.V.";"2020-2026";"Environmental Chemistry (Q1); Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q1)";"Environmental Science" +2465;21100385961;"Environmental Technology and Innovation";journal;"23521864";"Elsevier B.V.";Yes;No;1,490;Q1;110;747;1400;50553;12863;1389;8,44;67,67;40,43;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Environmental Science (miscellaneous) (Q1); Plant Science (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +2466;21100322090;"Reviews in Fisheries Science and Aquaculture";journal;"23308249, 23308257";"Taylor and Francis Ltd.";No;No;1,490;Q1;96;42;78;6699;623;68;7,87;159,50;32,25;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Management, Monitoring, Policy and Law (Q1)";"Agricultural and Biological Sciences; Environmental Science" +2467;21100777486;"Elementa";journal;"23251026";"University of California Press";Yes;No;1,489;Q1;68;42;307;4115;1473;305;4,07;97,98;42,13;1;United States;Northern America;"University of California Press";"2013-2026";"Atmospheric Science (Q1); Ecology (Q1); Environmental Engineering (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Oceanography (Q1)";"Earth and Planetary Sciences; Environmental Science" +2468;26062;"Endocrinology and Metabolism Clinics of North America";journal;"08898529, 15584410";"W.B. Saunders";No;No;1,489;Q1;130;59;182;3210;847;146;3,82;54,41;58,62;0;United States;Northern America;"W.B. Saunders";"1987-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2469;25408;"Mind and Language";journal;"14680017, 02681064";"Wiley-Blackwell Publishing Ltd";No;No;1,489;Q1;86;52;176;2400;509;157;3,08;46,15;19,64;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1986-2026";"Linguistics and Language (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +2470;21100879732;"APL Photonics";journal;"23780967";"American Institute of Physics";Yes;No;1,488;Q1;74;347;574;19153;3275;566;5,55;55,20;23,27;0;United States;Northern America;"American Institute of Physics";"2016-2026";"Atomic and Molecular Physics, and Optics (Q1); Computer Networks and Communications (Q1)";"Computer Science; Physics and Astronomy" +2471;5100155074;"Journal of Chemical Theory and Computation";journal;"15499626, 15499618";"American Chemical Society";No;No;1,488;Q1;248;988;2210;73233;12719;2199;5,68;74,12;22,40;0;United States;Northern America;"American Chemical Society";"2005-2026";"Computer Science Applications (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Computer Science" +2472;20473;"Life Sciences";journal;"18790631, 00243205";"Elsevier Inc.";Yes;No;1,487;Q1;211;611;2358;42823;15153;2357;6,52;70,09;48,68;0;United States;Northern America;"Elsevier Inc.";"1962-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +2473;12512;"Journal of Management in Engineering";journal;"19435479, 0742597X";"American Society of Civil Engineers (ASCE)";No;No;1,486;Q1;112;71;295;5255;2269;290;6,40;74,01;37,39;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1985-2026";"Engineering (miscellaneous) (Q1); Industrial Relations (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences; Engineering" +2474;21100378340;"Psychosocial Intervention";journal;"11320559, 21734712";"Colegio Oficial de Psicologos de Madrid";Yes;Yes;1,486;Q1;39;25;51;2002;294;50;5,44;80,08;54,35;0;Spain;Western Europe;"Colegio Oficial de Psicologos de Madrid";"2011-2026";"Applied Psychology (Q1); Developmental and Educational Psychology (Q1); Social Psychology (Q1)";"Psychology" +2475;17894;"Seminars in Nuclear Medicine";journal;"15584623, 00012998";"W.B. Saunders";No;No;1,486;Q1;107;109;228;8269;1508;209;6,49;75,86;35,51;1;United States;Northern America;"W.B. Saunders";"1971-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +2476;19700186880;"Wiley Interdisciplinary Reviews: Computational Statistics";journal;"19395108, 19390068";"John Wiley & Sons Inc.";No;No;1,486;Q1;68;42;99;3535;659;99;6,46;84,17;31,36;0;United States;Northern America;"John Wiley & Sons Inc.";"2009-2026";"Statistics and Probability (Q1)";"Mathematics" +2477;21100826238;"Biofuel Research Journal";journal;"22928782";"Alpha Creation Enterprise";Yes;Yes;1,485;Q1;54;16;48;1737;444;48;9,22;108,56;31,07;0;Malaysia;Asiatic Region;"Alpha Creation Enterprise";"2014-2025";"Biotechnology (Q1); Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Environmental Engineering (Q1); Fuel Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1); Waste Management and Disposal (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Energy; Environmental Science" +2478;22707;"International Review of Economics and Finance";journal;"10590560";"Elsevier Inc.";Yes;No;1,485;Q1;101;995;1418;54699;11496;1417;8,27;54,97;39,92;5;United States;Northern America;"Elsevier Inc.";"1992-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +2479;21100218027;"Journal of Gastric Cancer";journal;"2093582X, 20935641";"Korean Gastric Cancer Association";Yes;No;1,485;Q1;44;45;111;2252;492;100;4,90;50,04;29,51;0;South Korea;Asiatic Region;"Korean Gastric Cancer Association";"2010-2026";"Gastroenterology (Q1); Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2480;21101221557;"Review of Corporate Finance";journal;"26939312, 26939320";"Now Publishers Inc";No;No;1,485;Q1;16;14;48;851;195;48;3,28;60,79;41,38;0;United States;Northern America;"Now Publishers Inc";"2021-2025";"Accounting (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2481;21100854140;"Schizophrenia";journal;"2334265X";"Nature Publishing Group";Yes;No;1,485;Q1;49;154;319;9947;1448;311;4,36;64,59;44,31;0;United Kingdom;Western Europe;"Nature Publishing Group";"2015-2026";"Biological Psychiatry (Q1); Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience; Psychology" +2482;14987;"Developmental Medicine and Child Neurology";journal;"14698749, 00121622";"Wiley-Blackwell";No;No;1,484;Q1;182;435;870;8606;2730;513;2,69;19,78;67,13;0;United States;Northern America;"Wiley-Blackwell";"1958-2026";"Developmental Neuroscience (Q1); Neurology (clinical) (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine; Neuroscience" +2483;12264;"Future Generation Computer Systems";journal;"0167739X";"Elsevier B.V.";No;No;1,484;Q1;193;358;1255;17446;10895;1227;8,22;48,73;26,28;2;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Software (Q1)";"Computer Science" +2484;27049;"Global and Planetary Change";journal;"09218181";"Elsevier B.V.";No;No;1,484;Q1;179;393;676;34882;3396;670;4,84;88,76;32,83;1;Netherlands;Western Europe;"Elsevier B.V.";"1989-2026";"Global and Planetary Change (Q1); Oceanography (Q1)";"Earth and Planetary Sciences; Environmental Science" +2485;144921;"International Journal of Retail and Distribution Management";journal;"09590552";"Emerald Publishing";No;No;1,484;Q1;113;112;257;6352;2205;250;8,06;56,71;49,82;0;United Kingdom;Western Europe;"Emerald Publishing";"1990-2026";"Business and International Management (Q1); Marketing (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +2486;21100442376;"Sustainable Materials and Technologies";journal;"22149929, 22149937";"Elsevier B.V.";Yes;No;1,484;Q1;86;578;805;50244;8505;805;10,29;86,93;34,46;1;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1); Waste Management and Disposal (Q1)";"Energy; Engineering; Environmental Science; Materials Science" +2487;21101142659;"Journal for STEM Education Research";journal;"25208705, 25208713";"Springer Nature";No;No;1,483;Q1;24;38;61;2702;372;56;7,36;71,11;58,59;0;Switzerland;Western Europe;"Springer Nature";"2018-2026";"Education (Q1)";"Social Sciences" +2488;130125;"Annals of General Psychiatry";journal;"1744859X";"BioMed Central Ltd";Yes;No;1,482;Q1;67;75;157;4064;854;153;5,74;54,19;45,42;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2003, 2005-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +2489;22350;"Infectious Disease Clinics of North America";journal;"15579824, 08915520";"W.B. Saunders";No;No;1,482;Q1;129;54;167;4406;663;143;3,86;81,59;42,98;1;United States;Northern America;"W.B. Saunders";"1987-2026";"Infectious Diseases (Q1); Microbiology (medical) (Q1)";"Medicine" +2490;21101101329;"International Journal of Cognitive Computing in Engineering";journal;"26663074";"KeAi Communications Co.";Yes;No;1,482;Q1;33;47;97;2274;1042;96;10,03;48,38;42,98;1;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Computer Science Applications (Q1); Engineering (miscellaneous) (Q1); Information Systems (Q1); Information Systems and Management (Q1)";"Computer Science; Decision Sciences; Engineering" +2491;17985;"International Journal of Electrical Power and Energy Systems";journal;"01420615";"Elsevier Ltd";Yes;No;1,482;Q1;184;1026;2696;41395;17344;2695;6,57;40,35;25,37;1;United Kingdom;Western Europe;"Elsevier Ltd";"1970, 1979-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering" +2492;23439;"Politics and Society";journal;"00323292, 15527514";"SAGE Publications Inc.";No;No;1,482;Q1;89;22;64;1257;325;59;3,37;57,14;30,95;2;United States;Northern America;"SAGE Publications Inc.";"1970-1990, 1992-2026";"Political Science and International Relations (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2493;21101306675;"IEEE Journal of Emerging and Selected Topics in Industrial Electronics";journal;"26879735, 26879743";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,481;Q1;34;188;401;6223;2279;399;6,02;33,10;19,73;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2021-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +2494;21101020137;"Journal of Clinical and Translational Hepatology";journal;"23108819, 22250719";"";Yes;No;1,481;Q1;60;108;401;6631;2135;369;5,56;61,40;44,23;0;United States;Northern America;"";"2013-2026";"Gastroenterology (Q1); Hepatology (Q1)";"Medicine" +2495;12259;"Journal of Orthopaedics and Traumatology";journal;"15909921, 15909999";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,481;Q1;59;78;191;2858;926;188;4,48;36,64;28,93;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2002-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +2496;19894;"Medicine and Science in Sports and Exercise";journal;"15300315, 01959131";"Lippincott Williams and Wilkins";No;No;1,481;Q1;280;1314;739;16200;3245;717;3,74;12,33;41,84;0;United States;Northern America;"Lippincott Williams and Wilkins";"1969-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine" +2497;21100237425;"Systematic Reviews";journal;"20464053";"BioMed Central Ltd";Yes;No;1,481;Q1;113;254;827;13376;4483;791;5,51;52,66;50,96;4;United Kingdom;Western Europe;"BioMed Central Ltd";"2002, 2005-2010, 2012-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +2498;17359;"IEEE Transactions on Engineering Management";journal;"00189391, 15580040";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,480;Q1;124;285;1671;21584;12312;1654;7,67;75,73;32,93;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1969-2026";"Electrical and Electronic Engineering (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Engineering" +2499;21101038507;"Journal of Geophysical Research: Biogeosciences";journal;"21698953, 21698961";"John Wiley and Sons Inc";No;No;1,479;Q1;97;316;729;26194;2975;714;3,72;82,89;39,08;0;United States;Northern America;"John Wiley and Sons Inc";"2010, 2012-2026";"Aquatic Science (Q1); Atmospheric Science (Q1); Ecology (Q1); Forestry (Q1); Paleontology (Q1); Soil Science (Q1); Water Science and Technology (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +2500;21101145679;"Energy and Climate Change";journal;"26662787";"Elsevier Ltd";No;No;1,478;Q1;26;56;99;3504;680;99;6,23;62,57;30,57;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Environmental Science" +2501;59988;"European Journal of Agronomy";journal;"11610301";"Elsevier B.V.";No;No;1,478;Q1;157;333;756;22587;5470;755;7,24;67,83;32,51;5;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences" +2502;12057;"Media Psychology";journal;"1532785X, 15213269";"Routledge";No;No;1,478;Q1;104;75;110;4902;593;109;4,73;65,36;50,00;3;United States;Northern America;"Routledge";"1999-2026";"Applied Psychology (Q1); Communication (Q1); Social Psychology (Q1)";"Psychology; Social Sciences" +2503;27392;"Population Studies";journal;"00324728, 14774747";"United Nations Publications";No;No;1,478;Q1;78;45;90;3360;313;80;2,80;74,67;41,51;4;United States;Northern America;"United Nations Publications";"1947-2026";"Demography (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +2504;29451;"Aggression and Violent Behavior";journal;"18736335, 13591789";"Elsevier Ltd";No;No;1,477;Q1;147;48;200;4529;1012;196;4,91;94,35;66,88;1;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Clinical Psychology (Q1); Pathology and Forensic Medicine (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +2505;21100373814;"BRQ Business Research Quarterly";journal;"23409444, 23409436";"SAGE Publications Inc.";Yes;Yes;1,477;Q1;51;55;68;5032;520;66;8,35;91,49;39,22;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2014-2025";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2506;16313;"Fuel";journal;"00162361, 18737153";"Elsevier B.V.";No;No;1,477;Q1;289;2783;10259;167464;86657;10245;8,64;60,17;31,12;3;Netherlands;Western Europe;"Elsevier B.V.";"1922, 1970-2026";"Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Organic Chemistry (Q1)";"Chemical Engineering; Chemistry; Energy" +2507;29544;"Journal of Animal Ecology";journal;"00218790, 13652656";"Wiley-Blackwell Publishing Ltd";No;No;1,477;Q1;190;220;543;15914;2265;537;4,03;72,34;40,09;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1979, 1982-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +2508;28439;"Journal of Geodesy";journal;"14321394, 09497714";"Springer Verlag";No;No;1,477;Q1;132;94;306;4509;1479;292;4,75;47,97;18,51;0;Germany;Western Europe;"Springer Verlag";"1995-2026";"Computers in Earth Sciences (Q1); Geochemistry and Petrology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +2509;26878;"Journal of Population Economics";journal;"14321475, 09331433";"Springer New York";No;No;1,477;Q1;96;87;220;5450;831;220;3,49;62,64;44,13;8;Germany;Western Europe;"Springer New York";"1988-2026";"Demography (Q1); Economics and Econometrics (Q1)";"Economics, Econometrics and Finance; Social Sciences" +2510;23019;"Prevention Science";journal;"13894986, 15736695";"Springer New York";No;No;1,477;Q1;111;117;439;6242;1672;431;3,06;53,35;66,77;2;United States;Northern America;"Springer New York";"2000-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2511;13854;"Housing Studies";journal;"14661810, 02673037";"Routledge";No;No;1,476;Q1;99;177;315;12198;1691;308;4,85;68,92;55,98;19;United Kingdom;Western Europe;"Routledge";"1986-2026";"Environmental Science (miscellaneous) (Q1); Sociology and Political Science (Q1); Urban Studies (Q1)";"Environmental Science; Social Sciences" +2512;23478;"Journal of Physiology";journal;"00223751, 14697793";"John Wiley and Sons Inc";No;No;1,476;Q1;285;710;1406;43943;4870;1079;3,36;61,89;38,78;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1878-2026";"Physiology (Q1); Sports Science (Q1)";"Biochemistry, Genetics and Molecular Biology; Health Professions" +2513;144771;"Clinical Trials";journal;"17407753, 17407745";"SAGE Publications Ltd";No;No;1,474;Q1;81;83;251;2701;643;219;2,30;32,54;50,00;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2004-2026";"Medicine (miscellaneous) (Q1); Pharmacology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +2514;21101299650;"Innovation Energy";journal;"3006418X";"Innovation Press";Yes;No;1,474;Q1;11;61;53;2655;285;25;5,38;43,52;31,79;0;China;Asiatic Region;"Innovation Press";"2024-2026";"Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Nuclear Energy and Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +2515;21100943531;"Materials Today Nano";journal;"25888420";"Elsevier Ltd";No;No;1,474;Q1;64;172;395;11739;3200;395;7,94;68,25;31,31;0;United Kingdom;Western Europe;"Elsevier Ltd";"2018-2026";"Biomaterials (Q1); Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1)";"Materials Science; Physics and Astronomy" +2516;24900;"Real Estate Economics";journal;"15406229, 10808620";"Wiley-Blackwell Publishing Ltd";No;No;1,474;Q1;76;54;150;2612;445;149;2,98;48,37;24,43;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1973-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2517;21100269613;"Transnational Environmental Law";journal;"20471033, 20471025";"Cambridge University Press";No;No;1,474;Q1;36;28;80;4594;292;73;3,40;164,07;46,81;0;United Kingdom;Western Europe;"Cambridge University Press";"2012-2026";"Law (Q1); Management, Monitoring, Policy and Law (Q1)";"Environmental Science; Social Sciences" +2518;19615;"Antimicrobial Agents and Chemotherapy";journal;"10986596, 00664804";"American Society for Microbiology";No;No;1,473;Q1;309;429;1281;17770;5700;1237;3,95;41,42;45,51;1;United States;Northern America;"American Society for Microbiology";"1963-1970, 1972-2026";"Infectious Diseases (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +2519;21101022443;"Automotive Innovation";journal;"20964250, 25228765";"Springer International Publishing";No;No;1,473;Q1;37;68;134;3563;1114;127;8,36;52,40;28,57;0;Switzerland;Western Europe;"Springer International Publishing";"2018-2026";"Automotive Engineering (Q1)";"Engineering" +2520;21101092906;"Grain and Oil Science and Technology";journal;"25902598, 20964501";"KeAi Communications Co.";Yes;Yes;1,473;Q1;26;31;71;2196;702;71;8,46;70,84;41,29;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2025";"Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Food Science (Q1); Insect Science (Q1)";"Agricultural and Biological Sciences; Chemical Engineering; Immunology and Microbiology" +2521;23312;"Pedosphere";journal;"10020160";"Soil Science Society of China";No;No;1,473;Q1;102;90;273;6942;1961;257;6,59;77,13;40,07;0;China;Asiatic Region;"Soil Science Society of China";"1996-2026";"Soil Science (Q1)";"Agricultural and Biological Sciences" +2522;24135;"Bulletin of the American Museum of Natural History";book series;"00030090";"American Museum of Natural History Library";Yes;No;1,472;Q1;65;7;15;2740;72;15;3,55;391,43;13,79;0;United States;Northern America;"American Museum of Natural History Library";"1996-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology (Q1)";"Agricultural and Biological Sciences; Environmental Science" +2523;21100976772;"EMS Surveys in Mathematical Sciences";journal;"2308216X, 23082151";"European Mathematical Society Publishing House";Yes;Yes;1,472;Q1;11;11;30;441;63;29;2,75;40,09;6,67;0;Germany;Western Europe;"European Mathematical Society Publishing House";"2019-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +2524;17620;"Journal of Neurochemistry";journal;"14714159, 00223042";"John Wiley and Sons Inc";No;No;1,472;Q1;273;417;596;37066;2732;572;4,56;88,89;44,68;1;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1956-2026";"Biochemistry (Q1); Cellular and Molecular Neuroscience (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +2525;15139;"Regional Science and Urban Economics";journal;"18792308, 01660462";"Elsevier B.V.";No;No;1,472;Q1;106;55;203;2767;783;200;2,93;50,31;32,54;5;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Economics and Econometrics (Q1); Urban Studies (Q1)";"Economics, Econometrics and Finance; Social Sciences" +2526;20296;"Mitochondrion";journal;"15677249, 18728278";"Elsevier B.V.";No;No;1,471;Q1;119;61;260;4396;1445;257;5,74;72,07;52,16;0;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Molecular Biology (Q1); Molecular Medicine (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2527;94948;"World Journal of Biological Psychiatry";journal;"18141412, 15622975";"Taylor and Francis Ltd.";No;No;1,471;Q1;95;34;181;2569;840;179;4,53;75,56;51,12;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)";"Medicine; Neuroscience" +2528;14017;"Human Development";journal;"14230054, 0018716X";"S. Karger AG";No;No;1,469;Q1;81;24;77;1993;479;62;2,36;83,04;62,86;0;Switzerland;Western Europe;"S. Karger AG";"1958-2026";"Developmental and Educational Psychology (Q1)";"Psychology" +2529;27242;"Laboratory Investigation";journal;"15300307, 00236837";"Elsevier B.V.";No;No;1,468;Q1;176;132;404;5726;1879;397;4,16;43,38;43,03;1;Netherlands;Western Europe;"Elsevier B.V.";"1952-2026";"Molecular Biology (Q1); Pathology and Forensic Medicine (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2530;21100788289;"Mobile Media and Communication";journal;"20501579, 20501587";"SAGE Publications Ltd";No;No;1,467;Q1;51;42;113;2441;497;91;2,58;58,12;55,77;0;United States;Northern America;"SAGE Publications Ltd";"2013-2026";"Communication (Q1); Computer Networks and Communications (Q1); Cultural Studies (Q1); Media Technology (Q1); Sociology and Political Science (Q1)";"Computer Science; Engineering; Social Sciences" +2531;21100865122;"Research and Politics";journal;"20531680";"SAGE Publications Ltd";Yes;No;1,467;Q1;36;221;112;1533;363;111;2,97;6,94;33,08;67;United Kingdom;Western Europe;"SAGE Publications Ltd";"2014-2026";"Political Science and International Relations (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2532;17425;"DNA Repair";journal;"15687856, 15687864";"Elsevier B.V.";No;No;1,466;Q1;138;107;269;10984;847;263;3,32;102,65;45,56;0;Netherlands;Western Europe;"Elsevier B.V.";"2002-2026";"Biochemistry (Q1); Molecular Biology (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2533;25981;"Hematology (United States)";journal;"15204383, 15204391";"American Society of Hematology";Yes;No;1,466;Q1;115;115;298;244;1116;298;3,41;2,12;49,16;0;United States;Northern America;"American Society of Hematology";"2001-2025";"Hematology (Q1)";"Medicine" +2534;23393;"Journal of Environmental Sciences (China)";journal;"10010742, 18787320";"Chinese Academy of Sciences";No;No;1,466;Q1;151;686;1251;43172;9015;1240;7,73;62,93;39,76;6;China;Asiatic Region;"Chinese Academy of Sciences";"1970, 1972-1973, 1980, 1982-1983, 1993, 1995-2026";"Environmental Chemistry (Q1); Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Environmental Science; Medicine" +2535;21101123946;"Open Journal of Mathematical Optimization";journal;"27775860";"Universite de Montpellier III";Yes;Yes;1,466;Q1;6;11;25;457;111;25;1,19;41,55;22,22;0;France;Western Europe;"Universite de Montpellier III";"2020-2025";"Control and Optimization (Q1); Management Science and Operations Research (Q1)";"Decision Sciences; Mathematics" +2536;4000151810;"PLOS Computational Biology";journal;"15537358, 1553734X";"Public Library of Science";Yes;No;1,466;Q1;237;878;2355;53085;9152;2346;3,50;60,46;33,06;2;United States;Northern America;"Public Library of Science";"2005-2026";"Computational Theory and Mathematics (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1); Modeling and Simulation (Q1); Molecular Biology (Q1); Cellular and Molecular Neuroscience (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Computer Science; Environmental Science; Mathematics; Neuroscience" +2537;24024;"Marine Pollution Bulletin";journal;"0025326X, 18793363";"Elsevier Ltd";No;No;1,465;Q1;264;1153;3752;89452;21401;3743;5,48;77,58;41,73;13;United Kingdom;Western Europe;"Elsevier Ltd";"1970-2026";"Aquatic Science (Q1); Oceanography (Q1); Pollution (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +2538;24807;"Neurocomputing";journal;"09252312, 18728286";"Elsevier B.V.";No;No;1,465;Q1;233;2659;3665;157361;32156;3642;8,54;59,18;31,91;0;Netherlands;Western Europe;"Elsevier B.V.";"1989-2026";"Artificial Intelligence (Q1); Cognitive Neuroscience (Q1); Computer Science Applications (Q1)";"Computer Science; Neuroscience" +2539;27473;"Annals of Behavioral Medicine";journal;"15324796, 08836612";"Oxford University Press";No;No;1,464;Q1;161;133;284;7233;1263;278;4,11;54,38;59,75;0;United States;Northern America;"Oxford University Press";"1985, 1987-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Psychology" +2540;21101140104;"Drug and Alcohol Dependence Reports";journal;"27727246";"Elsevier B.V.";Yes;No;1,464;Q1;18;88;275;4305;1043;270;3,54;48,92;58,08;2;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Neuroscience (miscellaneous) (Q1); Pharmacology (Q1)";"Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +2541;11400153310;"International Journal of Logistics Research and Applications";journal;"13675567, 1469848X";"Taylor and Francis Ltd.";No;No;1,463;Q1;71;158;272;12666;2587;263;8,90;80,16;37,79;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Business and International Management (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Information Systems (Q1); Management Information Systems (Q1); Management of Technology and Innovation (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering" +2542;17530;"Social Forces";journal;"15347605, 00377732";"Oxford University Press";No;No;1,463;Q1;167;75;219;5397;839;218;3,42;71,96;41,84;4;United Kingdom;Western Europe;"Oxford University Press";"1925-2026";"Anthropology (Q1); History (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +2543;21101165610;"Advanced Energy and Sustainability Research";journal;"26999412";"Wiley-VCH Verlag";Yes;No;1,462;Q1;48;189;413;15734;2977;409;6,68;83,25;26,18;0;United States;Northern America;"Wiley-VCH Verlag";"2020-2026";"Ecology (Q1); Energy Engineering and Power Technology (Q1); Environmental Science (miscellaneous) (Q1); Waste Management and Disposal (Q1)";"Energy; Environmental Science" +2544;12775;"British Journal of Psychology";journal;"20448295, 00071269";"John Wiley and Sons Ltd";No;No;1,462;Q1;115;84;185;6138;788;172;4,02;73,07;50,17;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1953, 1955-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +2545;21100199848;"Cancer Research and Treatment";journal;"15982998, 20059256";"Korean Cancer Association";Yes;No;1,462;Q1;68;109;368;3530;1580;362;4,04;32,39;38,64;1;South Korea;Asiatic Region;"Korean Cancer Association";"2001, 2009, 2011-2026";"Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2546;21100972444;"Current Addiction Reports";journal;"21962952";"Springer Science and Business Media Deutschland GmbH";No;No;1,462;Q1;57;87;207;7254;1135;206;4,29;83,38;49,46;1;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +2547;19500157010;"Geochemistry, Geophysics, Geosystems";journal;"15252027";"John Wiley and Sons Inc";Yes;No;1,462;Q1;183;293;785;29506;2590;780;3,25;100,70;31,54;0;United States;Northern America;"John Wiley and Sons Inc";"2000-2026";"Geochemistry and Petrology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +2548;23687;"Marketing Letters";journal;"1573059X, 09230645";"Springer New York";No;No;1,462;Q1;94;66;140;2112;553;139;2,96;32,00;42,00;1;United States;Northern America;"Springer New York";"1989-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2549;26880;"Proceedings of the Combustion Institute";journal;"18732704, 15407489";"Elsevier Ltd";No;No;1,462;Q1;180;196;1130;6061;5135;1130;4,54;30,92;22,09;0;United Kingdom;Western Europe;"Elsevier Ltd";"2000, 2002, 2005, 2007, 2009, 2011, 2013, 2015, 2017, 2019, 2021, 2023-2025";"Chemical Engineering (miscellaneous) (Q1); Mechanical Engineering (Q1); Physical and Theoretical Chemistry (Q1)";"Chemical Engineering; Chemistry; Engineering" +2550;28142;"International Nursing Review";journal;"14667657, 00208132";"Wiley-Blackwell Publishing Ltd";No;No;1,461;Q1;77;246;269;10454;1507;250;5,56;42,50;65,61;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1960-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +2551;19700166518;"International Journal of Mental Health Systems";journal;"17524458";"BioMed Central Ltd";Yes;No;1,460;Q1;67;34;142;1806;759;138;4,79;53,12;46,24;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2007-2026";"Health Policy (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2552;4400151522;"Planning Theory";journal;"17413052, 14730952";"SAGE Publications Ltd";No;No;1,460;Q1;74;26;64;1673;297;54;4,59;64,35;50,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2026";"Geography, Planning and Development (Q1)";"Social Sciences" +2553;21101024053;"Big Data Mining and Analytics";journal;"2097406X, 20960654";"Tsinghua University Press";Yes;Yes;1,458;Q1;48;81;150;4549;1348;144;8,93;56,16;35,23;0;China;Asiatic Region;"Tsinghua University Press";"2018-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Science Applications (Q1); Information Systems (Q1)";"Computer Science" +2554;29805;"ISA Transactions";journal;"00190578";"International Society of Automation";No;No;1,458;Q1;131;585;1747;22986;13968;1742;7,78;39,29;26,06;0;United States;Northern America;"International Society of Automation";"1968-2026";"Applied Mathematics (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1)";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +2555;4700152872;"Journal of Neuroimmune Pharmacology";journal;"15571890, 15571904";"Springer";No;No;1,458;Q1;99;108;145;8208;797;138;6,07;76,00;50,46;0;United States;Northern America;"Springer";"2006-2026";"Immunology (Q1); Immunology and Allergy (Q1); Neuroscience (miscellaneous) (Q1); Pharmacology (Q1)";"Immunology and Microbiology; Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +2556;21100857528;"Current Opinion in Electrochemistry";journal;"24519103, 24519111";"Elsevier B.V.";No;No;1,457;Q1;91;142;610;7654;4126;580;6,46;53,90;31,53;1;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Analytical Chemistry (Q1); Electrochemistry (Q1)";"Chemistry" +2557;18136;"Applied Soft Computing";journal;"15684946";"Elsevier B.V.";No;No;1,456;Q1;223;1354;3223;79959;28526;3211;9,14;59,05;30,18;1;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Software (Q1)";"Computer Science" +2558;21101021640;"Chinese Herbal Medicines";journal;"16746384";"Elsevier B.V.";Yes;No;1,456;Q1;33;93;210;6426;1979;195;10,66;69,10;47,65;0;Netherlands;Western Europe;"Elsevier B.V.";"2012, 2016, 2018-2026";"Complementary and Alternative Medicine (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +2559;14789;"Information Technology for Development";journal;"15540170, 02681102";"Taylor and Francis Ltd.";No;No;1,456;Q1;63;77;107;6600;961;96;7,65;85,71;40,61;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-1990, 1995-1996, 1998-2000, 2003, 2008-2025";"Computer Science Applications (Q1); Development (Q1); E-learning (Q1); Public Administration (Q1)";"Computer Science; Social Sciences" +2560;27343;"Journal of Ethnic and Migration Studies";journal;"14699451, 1369183X";"Routledge";No;No;1,456;Q1;133;349;777;21183;3791;743;4,16;60,70;61,78;0;United Kingdom;Western Europe;"Routledge";"1971-2026";"Arts and Humanities (miscellaneous) (Q1); Demography (Q1)";"Arts and Humanities; Social Sciences" +2561;25473;"British Journal of Haematology";journal;"13652141, 00071048";"John Wiley and Sons Inc";No;No;1,455;Q1;220;614;1936;17674;5068;1179;2,64;28,79;49,06;4;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1955-2026";"Hematology (Q1)";"Medicine" +2562;145164;"Human Genomics";journal;"14739542, 14797364";"BioMed Central Ltd";Yes;No;1,455;Q1;78;152;320;8074;1502;310;4,32;53,12;44,10;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2006, 2008-2026";"Drug Discovery (Q1); Genetics (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +2563;9500153930;"IEEE Transactions on Circuits and Systems II: Express Briefs";journal;"15583791, 15497747";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,455;Q1;141;419;2951;7666;16753;2943;5,44;18,30;26,23;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2003-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +2564;21722;"Biochimica et Biophysica Acta - Molecular Basis of Disease";journal;"1879260X, 09254439";"Elsevier B.V.";No;No;1,454;Q1;200;458;898;33207;4757;894;5,19;72,50;45,97;0;Netherlands;Western Europe;"Elsevier B.V.";"1990-2026";"Molecular Medicine (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2565;17837;"Medical Journal of Australia";journal;"0025729X, 13265377";"John Wiley and Sons Inc";Yes;No;1,454;Q1;163;293;1066;7379;2752;493;2,85;25,18;59,76;11;Australia;Pacific Region;"John Wiley and Sons Inc";"1934, 1945-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +2566;28536;"Numerische Mathematik";journal;"09453245, 0029599X";"Springer New York";No;No;1,454;Q1;106;62;191;2678;429;191;1,95;43,19;12,68;0;Germany;Western Europe;"Springer New York";"1959-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1)";"Mathematics" +2567;19783;"Seminars in Arthritis and Rheumatism";journal;"00490172, 1532866X";"W.B. Saunders";No;No;1,454;Q1;147;289;598;9477;2209;518;3,47;32,79;49,60;1;United States;Northern America;"W.B. Saunders";"1971-2026";"Anesthesiology and Pain Medicine (Q1); Rheumatology (Q1)";"Medicine" +2568;21100206251;"Journal of Trauma and Acute Care Surgery";journal;"21630755, 21630763";"Lippincott Williams and Wilkins";No;No;1,453;Q1;225;376;1017;12496;3425;889;3,40;33,23;39,51;0;United States;Northern America;"Lippincott Williams and Wilkins";"2012-2026";"Critical Care and Intensive Care Medicine (Q1); Surgery (Q1)";"Medicine" +2569;19790;"Molecular Plant Pathology";journal;"13643703, 14646722";"Wiley-Blackwell Publishing Ltd";Yes;No;1,453;Q1;145;141;369;9425;2010;366;5,03;66,84;40,86;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2000-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1); Soil Science (Q1); Molecular Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +2570;145217;"Representation Theory";journal;"10884165";"American Mathematical Society";No;No;1,453;Q1;38;19;87;620;85;87;0,88;32,63;11,43;0;United States;Northern America;"American Mathematical Society";"1996-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +2571;21100921313;"ChemTexts";journal;"21993793";"Springer International Publishing AG";Yes;No;1,452;Q1;32;16;43;1547;359;42;7,58;96,69;28,57;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Biochemistry (Q1); Chemistry (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +2572;21237;"Drug Safety";journal;"01145916, 11791942";"";No;No;1,452;Q1;151;126;324;5709;1645;288;5,25;45,31;51,88;2;Switzerland;Western Europe;"";"1990-2026";"Pharmacology (Q1); Pharmacology (medical) (Q1); Toxicology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +2573;19700169885;"European Sport Management Quarterly";journal;"1746031X, 16184742";"Routledge";No;No;1,452;Q1;63;68;193;5253;1274;189;6,24;77,25;32,60;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Sports Science (Q1); Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Health Professions" +2574;17700155033;"IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing";journal;"21511535, 19391404";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,452;Q1;151;1936;2896;111274;19770;2894;6,68;57,48;32,91;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2008-2026";"Atmospheric Science (Q1); Computers in Earth Sciences (Q1)";"Earth and Planetary Sciences" +2575;3900148209;"International Journal of Clinical and Health Psychology";journal;"16972600";"Elsevier B.V.";Yes;No;1,452;Q1;65;119;239;8376;1234;238;4,95;70,39;56,22;0;Spain;Western Europe;"Elsevier B.V.";"2005-2026";"Clinical Psychology (Q1)";"Psychology" +2576;25689;"Journal of Esthetic and Restorative Dentistry";journal;"17088240, 14964155";"Wiley-Blackwell";No;No;1,452;Q1;86;279;427;11721;2604;422;6,11;42,01;40,56;0;United States;Northern America;"Wiley-Blackwell";"1988-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +2577;21101366456;"Babylonian Journal of Artificial Intelligence";journal;"30065437";"Mesopotamian Academic Press";No;No;1,451;Q1;12;12;30;447;316;29;10,53;37,25;23,81;0;Iraq;Middle East;"Mesopotamian Academic Press";"2023-2025";"Artificial Intelligence (Q1); Computer Vision and Pattern Recognition (Q1); Information Systems (Q1)";"Computer Science" +2578;144827;"GPS Solutions";journal;"10805370, 15211886";"Springer Science and Business Media Deutschland GmbH";No;No;1,451;Q1;106;200;563;7587;3226;561;5,88;37,94;28,17;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1995, 1998-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +2579;21101186345;"ACM Transactions on Quantum Computing";journal;"26436817";"Association for Computing Machinery";No;No;1,450;Q1;23;32;79;1703;647;77;7,29;53,22;18,80;0;United States;Northern America;"Association for Computing Machinery";"2020-2026";"Computational Theory and Mathematics (Q1); Computer Science (miscellaneous) (Q1); Statistical and Nonlinear Physics (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics; Physics and Astronomy" +2580;21100940460;"Network Neuroscience";journal;"24721751";"MIT Press";Yes;No;1,450;Q1;44;16;193;1014;706;191;3,50;63,38;36,36;0;United States;Northern America;"MIT Press";"2017-2026";"Applied Mathematics (Q1); Artificial Intelligence (Q1); Computer Science Applications (Q1); Neuroscience (miscellaneous) (Q1)";"Computer Science; Mathematics; Neuroscience" +2581;25368;"Seminars in Liver Disease";journal;"10988971, 02728087";"Thieme Medical Publishers, Inc.";No;No;1,450;Q1;146;34;118;4537;495;118;3,78;133,44;40,15;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1981-2026";"Hepatology (Q1)";"Medicine" +2582;21101151624;"Collagen and Leather";journal;"20971419, 27316998";"Springer";Yes;Yes;1,449;Q1;33;42;99;2781;916;96;9,56;66,21;41,01;0;Singapore;Asiatic Region;"Springer";"2023-2026";"Biomedical Engineering (Q1); Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Process Chemistry and Technology (Q1)";"Chemical Engineering; Chemistry; Engineering" +2583;21101343415;"IEEE Transactions on Energy Markets, Policy and Regulation";journal;"27719626";"Institute of Electrical and Electronics Engineers";No;No;1,449;Q1;13;63;90;2501;395;90;4,39;39,70;28,27;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2023-2026";"Economics and Econometrics (Q1); Energy (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1)";"Economics, Econometrics and Finance; Energy; Environmental Science" +2584;19990;"International Journal of Industrial Organization";journal;"01677187";"Elsevier Inc.";No;No;1,449;Q1;100;49;166;2022;336;166;2,04;41,27;19,82;9;United States;Northern America;"Elsevier Inc.";"1983-2026";"Aerospace Engineering (Q1); Economics and Econometrics (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Industrial Relations (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Engineering" +2585;24777;"Minds and Machines";journal;"09246495, 15728641";"Springer Netherlands";No;No;1,449;Q1;60;50;116;2856;782;114;6,22;57,12;38,10;5;Netherlands;Western Europe;"Springer Netherlands";"1991-2026";"Artificial Intelligence (Q1); Philosophy (Q1)";"Arts and Humanities; Computer Science" +2586;16448;"Journal of Urban Health";journal;"10993460, 14682869";"Springer Science and Business Media Deutschland GmbH";No;No;1,448;Q1;120;104;324;4556;1430;302;3,34;43,81;57,46;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1988, 1998-2026";"Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Urban Studies (Q1)";"Medicine; Social Sciences" +2587;14126;"Lipids in Health and Disease";journal;"1476511X";"BioMed Central Ltd";Yes;No;1,448;Q1;113;375;772;21386;4768;769;6,34;57,03;45,08;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Biochemistry (medical) (Q1); Clinical Biochemistry (Q1); Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2588;144670;"Marketing Intelligence and Planning";journal;"02634503";"Emerald Group Publishing Ltd.";No;No;1,448;Q1;97;122;202;10102;1734;202;8,96;82,80;31,38;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1983-2026";"Marketing (Q1)";"Business, Management and Accounting" +2589;12092;"Atmospheric Research";journal;"01698095";"Elsevier B.V.";No;No;1,447;Q1;156;460;1509;31652;7595;1509;4,74;68,81;37,02;0;Netherlands;Western Europe;"Elsevier B.V.";"1986-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +2590;21101098869;"Cleaner Logistics and Supply Chain";journal;"27723909";"Elsevier Ltd";Yes;No;1,447;Q1;37;87;171;6943;1798;170;9,40;79,80;29,41;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Environmental Science (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting; Engineering; Environmental Science" +2591;22266;"Human Molecular Genetics";journal;"14602083, 09646906";"Oxford University Press";No;No;1,447;Q1;313;202;796;10678;2711;789;3,17;52,86;46,09;1;United Kingdom;Western Europe;"Oxford University Press";"1992-2026";"Genetics (Q1); Genetics (clinical) (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2592;21100840013;"Science China Materials";journal;"21994501, 20958226";"Science China Press";No;No;1,447;Q1;82;511;1332;27543;8792;1258;6,80;53,90;37,63;0;China;Asiatic Region;"Science China Press";"2016-2026";"Materials Science (miscellaneous) (Q1)";"Materials Science" +2593;21100316068;"Transportation Geotechnics";journal;"22143912";"Elsevier Ltd";Yes;No;1,447;Q1;70;276;733;15093;4745;732;6,11;54,68;21,81;1;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1); Transportation (Q1)";"Earth and Planetary Sciences; Engineering; Social Sciences" +2594;38551;"Annals of Hepatology";journal;"16652681";"Elsevier Espana S.L.U";Yes;No;1,446;Q1;74;132;302;5338;1444;232;5,12;40,44;39,73;1;Mexico;Latin America;"Elsevier Espana S.L.U";"2002-2026";"Hepatology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +2595;21100981214;"Bioengineering and Translational Medicine";journal;"23806761";"John Wiley and Sons Inc";Yes;No;1,446;Q1;48;138;440;11462;3411;437;7,24;83,06;41,44;0;United States;Northern America;"John Wiley and Sons Inc";"2018, 2020-2026";"Biomedical Engineering (Q1); Biotechnology (Q1); Pharmaceutical Science (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Pharmacology, Toxicology and Pharmaceutics" +2596;300147001;"European Journal of Social Theory";journal;"13684310, 14617137";"SAGE Publications Ltd";No;No;1,446;Q1;81;47;112;3242;450;103;2,78;68,98;30,65;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1998-2026";"Sociology and Political Science (Q1)";"Social Sciences" +2597;21101149706;"Digital Business";journal;"26669544";"Elsevier B.V.";Yes;No;1,445;Q1;27;66;76;6744;963;76;11,49;102,18;29,57;1;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +2598;16444;"Journal of Educational and Behavioral Statistics";journal;"10769986, 19351054";"SAGE Publications Inc.";No;No;1,445;Q1;79;57;101;2681;278;97;2,26;47,04;30,30;0;United States;Northern America;"SAGE Publications Inc.";"1986, 1996-2026";"Education (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +2599;21447;"Journal of English for Academic Purposes";journal;"14751585";"Elsevier B.V.";No;No;1,445;Q1;90;82;206;4461;1041;201;4,77;54,40;51,48;0;United Kingdom;Western Europe;"Elsevier B.V.";"2002-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +2600;21100922644;"Temperature";journal;"23328940, 23328959";"Taylor and Francis Ltd.";No;No;1,445;Q1;52;32;85;1682;432;68;4,33;52,56;41,32;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Physiology (Q1); Physiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2601;21275;"Journal of Immunology";journal;"15506606, 00221767";"American Association of Immunologists";No;No;1,444;Q1;433;303;1223;8223;4254;1189;3,30;27,14;46,78;0;United States;Northern America;"American Association of Immunologists";"1935, 1941, 1945-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +2602;21101160588;"Extracellular Vesicles and Circulating Nucleic Acids";journal;"27676641";"OAE Publishing Inc.";No;No;1,444;Q2;20;62;108;4248;635;94;6,51;68,52;49,55;0;United States;Northern America;"OAE Publishing Inc.";"2020-2026";"Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2603;12332;"Safety Science";journal;"18791042, 09257535";"Elsevier B.V.";No;No;1,443;Q1;178;253;893;18940;7243;879;7,90;74,86;40,66;2;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Building and Construction (Q1); Public Health, Environmental and Occupational Health (Q1); Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering; Medicine; Social Sciences" +2604;27470;"Antipode";journal;"00664812, 14678330";"Wiley-Blackwell Publishing Ltd";No;No;1,442;Q1;136;118;290;9286;1337;283;4,05;78,69;52,55;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1969-2026";"Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +2605;21100428281;"Lupus Science and Medicine";journal;"20538790";"BMJ Publishing Group";Yes;No;1,442;Q1;49;162;273;6172;1045;259;3,64;38,10;55,49;1;United Kingdom;Western Europe;"BMJ Publishing Group";"2014-2026";"Immunology (Q1); Medicine (miscellaneous) (Q1); Rheumatology (Q1)";"Immunology and Microbiology; Medicine" +2606;5700168564;"Policy and Society";journal;"18393373, 14494035";"Oxford University Press";Yes;No;1,442;Q1;70;37;105;2572;793;104;5,31;69,51;43,66;7;United Kingdom;Western Europe;"Oxford University Press";"2002-2003, 2008-2026";"Political Science and International Relations (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2607;15896;"Journal of Epidemiology and Community Health";journal;"14702738, 0143005X";"BMJ Publishing Group";No;No;1,441;Q1;207;157;412;5269;1607;383;3,09;33,56;53,78;4;United Kingdom;Western Europe;"BMJ Publishing Group";"1978-2026";"Epidemiology (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2608;16800154724;"Journal of Vacation Marketing";journal;"13567667, 14791870";"SAGE Publications Ltd";No;No;1,441;Q1;87;146;144;12028;1464;144;10,04;82,38;48,01;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994-2026";"Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +2609;18605;"Molecular Biology of the Cell";journal;"10591524, 19394586";"American Society for Cell Biology";No;No;1,441;Q2;256;216;582;12909;1579;572;2,68;59,76;45,47;0;United States;Northern America;"American Society for Cell Biology";"1990-2026";"Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2610;22003;"American Journal of Science";journal;"00029599";"American Journal of Science";No;No;1,440;Q1;138;12;64;1278;211;62;3,62;106,50;30,26;0;United States;Northern America;"American Journal of Science";"1945-1948, 1950, 1969, 1973, 1975-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +2611;21306;"Health Policy";journal;"18726054, 01688510";"Elsevier Ireland Ltd";No;No;1,440;Q1;117;190;441;9119;2077;429;4,85;47,99;54,92;9;Ireland;Western Europe;"Elsevier Ireland Ltd";"1984-2026";"Health Policy (Q1)";"Medicine" +2612;19600166321;"Journal of Molecular Cell Biology";journal;"17594685, 16742788";"Oxford University Press";Yes;No;1,440;Q1;91;39;226;2011;959;202;3,07;51,56;44,12;0;United Kingdom;Western Europe;"Oxford University Press";"2009-2025";"Genetics (Q1); Medicine (miscellaneous) (Q1); Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2613;21100208066;"Journal of Oral Microbiology";journal;"20002297";"Taylor and Francis Ltd.";Yes;No;1,440;Q1;67;114;180;6770;1242;179;7,00;59,39;49,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Dentistry (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (medical) (Q1)";"Dentistry; Medicine" +2614;21101055808;"Clinical Hypertension";journal;"20565909";"";Yes;Yes;1,439;Q1;30;41;110;1556;547;107;6,32;37,95;37,82;0;South Korea;Asiatic Region;"";"2017-2026";"Cardiology and Cardiovascular Medicine (Q1); Internal Medicine (Q1)";"Medicine" +2615;19700175162;"Journal of Diabetes";journal;"17530407, 17530393";"Wiley-Blackwell";Yes;No;1,439;Q1;67;136;370;5320;1615;287;4,62;39,12;50,66;0;United States;Northern America;"Wiley-Blackwell";"2009-2026";"Endocrinology, Diabetes and Metabolism (Q1)";"Medicine" +2616;12229;"Mass Spectrometry Reviews";journal;"10982787, 02777037";"John Wiley & Sons Inc.";No;No;1,439;Q1;148;58;193;9629;1483;171;7,91;166,02;38,50;0;United States;Northern America;"John Wiley & Sons Inc.";"1982-2026";"Analytical Chemistry (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Condensed Matter Physics (Q1); Spectroscopy (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Physics and Astronomy" +2617;21100255381;"Competition and Change";journal;"10245294, 14772221";"SAGE Publications Inc.";No;No;1,438;Q1;39;76;115;5605;608;115;5,03;73,75;26,87;2;United Kingdom;Western Europe;"SAGE Publications Inc.";"2013-2026";"Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +2618;21100394256;"European Journal of Psychotraumatology";journal;"20008066";"Taylor and Francis Ltd.";Yes;No;1,438;Q1;85;308;564;17542;2676;525;4,22;56,95;61,49;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +2619;29755;"Human Factors";journal;"00187208, 15478181";"SAGE Publications Inc.";No;No;1,438;Q1;155;78;353;4102;2237;351;5,97;52,59;36,67;2;United States;Northern America;"SAGE Publications Inc.";"1958-2026";"Applied Psychology (Q1); Behavioral Neuroscience (Q1); Human Factors and Ergonomics (Q1)";"Neuroscience; Psychology; Social Sciences" +2620;19700189100;"Pharmaceutical Medicine";journal;"11782595, 11791993";"";No;No;1,438;Q1;34;43;114;1985;577;102;4,43;46,16;45,22;0;Switzerland;Western Europe;"";"2000-2003, 2005, 2008-2026";"Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +2621;21101068037;"IEEE Open Journal of Vehicular Technology";journal;"26441330";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,437;Q1;38;180;203;9882;1713;201;8,48;54,90;19,97;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Automotive Engineering (Q1)";"Engineering" +2622;24842;"International Journal of Selection and Assessment";journal;"14682389, 0965075X";"Wiley-Blackwell Publishing Ltd";No;No;1,437;Q1;79;64;121;3985;456;115;3,21;62,27;47,16;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1993-2026";"Applied Psychology (Q1); Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Psychology (miscellaneous) (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Psychology" +2623;21101038509;"Journal of Geophysical Research: Earth Surface";journal;"21699011, 21699003";"John Wiley and Sons Inc";No;No;1,437;Q1;149;183;506;14641;2246;496;4,23;80,01;27,37;0;United States;Northern America;"John Wiley and Sons Inc";"2004-2026";"Earth-Surface Processes (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +2624;28502;"Journal of Numerical Mathematics";journal;"15702820, 15693953";"Walter de Gruyter GmbH";No;No;1,437;Q1;36;23;49;932;156;49;2,53;40,52;18,64;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2001-2026";"Computational Mathematics (Q1); Numerical Analysis (Q1)";"Mathematics" +2625;26173;"Journal of Periodontology";journal;"00223492, 19433670";"John Wiley and Sons Inc";No;No;1,437;Q1;193;173;398;8075;2068;392;4,92;46,68;45,80;0;United States;Northern America;"John Wiley and Sons Inc";"1945-1951, 1958, 1960, 1965-2026";"Periodontics (Q1)";"Dentistry" +2626;21101078838;"Computers in Human Behavior Reports";journal;"24519588";"Elsevier B.V.";Yes;No;1,436;Q1;43;309;328;23877;2877;327;7,51;77,27;43,95;0;United Kingdom;Western Europe;"Elsevier B.V.";"2020-2026";"Applied Psychology (Q1); Artificial Intelligence (Q1); Cognitive Neuroscience (Q1); Computer Science Applications (Q1); Human-Computer Interaction (Q1); Neuroscience (miscellaneous) (Q1)";"Computer Science; Neuroscience; Psychology" +2627;18079;"Robotics and Autonomous Systems";journal;"09218890";"Elsevier B.V.";No;No;1,436;Q1;156;264;529;12782;4285;525;8,07;48,42;21,29;0;Netherlands;Western Europe;"Elsevier B.V.";"1988-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Mathematics (miscellaneous) (Q1); Software (Q1)";"Computer Science; Engineering; Mathematics" +2628;21101045327;"AERA Open";journal;"23328584";"SAGE Publications Inc.";Yes;No;1,435;Q1;56;119;250;9060;1096;250;3,44;76,13;63,32;7;United States;Northern America;"SAGE Publications Inc.";"2015-2026";"Developmental and Educational Psychology (Q1); Education (Q1); Social Sciences (miscellaneous) (Q1)";"Psychology; Social Sciences" +2629;21078;"Journal of Sport Management";journal;"1543270X, 08884773";"Human Kinetics Publishers Inc.";No;No;1,435;Q1;96;37;130;2448;623;125;3,78;66,16;32,93;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1987, 1989, 1995-2026";"Decision Sciences (miscellaneous) (Q1); Organizational Behavior and Human Resource Management (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Business, Management and Accounting; Decision Sciences; Health Professions; Medicine" +2630;13249;"Nonlinear Analysis, Theory, Methods and Applications";journal;"0362546X";"Elsevier Ltd";No;No;1,435;Q1;146;176;576;5627;937;574;1,46;31,97;27,13;0;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Analysis (Q1); Applied Mathematics (Q1)";"Mathematics" +2631;4700152489;"Targeted Oncology";journal;"1776260X, 17762596";"";No;No;1,435;Q1;65;76;229;4249;831;213;4,15;55,91;36,98;0;Switzerland;Western Europe;"";"2006-2026";"Oncology (Q1); Pharmacology (medical) (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2632;20838;"Transport Policy";journal;"1879310X, 0967070X";"Elsevier Ltd";No;No;1,435;Q1;144;386;795;25498;5777;785;6,85;66,06;33,80;9;United Kingdom;Western Europe;"Elsevier Ltd";"1993-2026";"Geography, Planning and Development (Q1); Law (Q1); Transportation (Q1)";"Social Sciences" +2633;21100389724;"Journal of King Saud University - Computer and Information Sciences";journal;"22131248, 13191578";"Springer International Publishing";Yes;No;1,434;Q1;97;359;1515;19041;14662;1514;8,84;53,04;33,03;0;Switzerland;Western Europe;"Springer International Publishing";"2014-2026";"Computer Science (miscellaneous) (Q1)";"Computer Science" +2634;22609;"Journal of Learning Disabilities";journal;"15384780, 00222194";"SAGE Publications Inc.";No;No;1,434;Q1;118;37;94;2336;468;94;4,55;63,14;61,59;0;United States;Northern America;"SAGE Publications Inc.";"1971-2026";"Education (Q1); Health Professions (miscellaneous) (Q1); Health (social science) (Q1)";"Health Professions; Social Sciences" +2635;21100904993;"Materials Today Advances";journal;"25900498";"Elsevier Ltd";Yes;No;1,434;Q1;62;116;318;8880;2826;315;8,20;76,55;32,31;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1)";"Engineering; Materials Science" +2636;21100855741;"Sociological Science";journal;"23306696";"Society for Sociological Science";Yes;No;1,434;Q1;50;41;95;2931;292;95;2,74;71,49;31,18;0;United States;Northern America;"Society for Sociological Science";"2014-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +2637;21100467801;"Tissue Barriers";journal;"21688370, 21688362";"Taylor and Francis Ltd.";No;No;1,434;Q1;56;59;79;4289;423;74;5,05;72,69;45,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Biochemistry (Q1); Histology (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2638;21100843238;"Advanced Materials Technologies";journal;"2365709X";"Wiley-Blackwell";No;No;1,433;Q1;122;954;2052;69082;14588;2044;6,89;72,41;30,98;0;United States;Northern America;"Wiley-Blackwell";"2016-2026";"Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +2639;24291;"Angle Orthodontist";journal;"19457103, 00033219";"Allen Press Inc.";Yes;Yes;1,433;Q1;120;86;287;1868;1095;257;3,82;21,72;42,73;0;United States;Northern America;"Allen Press Inc.";"1945, 1950-1951, 1960-1961, 1965-2026";"Medicine (miscellaneous) (Q1); Orthodontics (Q1)";"Dentistry; Medicine" +2640;25392;"World Journal of Gastroenterology";journal;"22192840, 10079327";"Baishideng Publishing Group Inc";Yes;No;1,433;Q1;229;651;1508;32505;9038;1502;5,66;49,93;39,02;0;United States;Northern America;"Baishideng Publishing Group Inc";"1998-2026";"Gastroenterology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +2641;21100239264;"IEEE Control Systems";journal;"1941000X, 1066033X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,432;Q1;141;45;274;1674;820;161;2,91;37,20;20,16;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1991-2026";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Modeling and Simulation (Q1)";"Engineering; Mathematics" +2642;21101039172;"JPhys Energy";journal;"25157655";"IOP Publishing Ltd.";Yes;No;1,432;Q1;52;95;244;6789;1478;241;5,64;71,46;23,92;1;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2019-2026";"Energy (miscellaneous) (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1)";"Energy; Materials Science" +2643;22652;"Mammal Review";journal;"03051838, 13652907";"Wiley-Blackwell Publishing Ltd";No;No;1,431;Q1;99;30;92;3035;465;91;3,04;101,17;41,25;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1970-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +2644;18531;"European Journal of Cell Biology";journal;"16181298, 01719335";"Elsevier GmbH";Yes;No;1,430;Q1;114;52;241;3613;1207;234;4,27;69,48;50,74;0;Germany;Western Europe;"Elsevier GmbH";"1979-2026";"Histology (Q1); Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2645;23261;"International Mathematics Research Notices";journal;"10737928, 16870247";"Oxford University Press";No;No;1,430;Q1;83;391;1566;12077;1732;1566;1,07;30,89;18,47;0;United Kingdom;Western Europe;"Oxford University Press";"1991-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +2646;130080;"Journal of Chemical Information and Modeling";journal;"1549960X, 15499596";"American Chemical Society";No;No;1,430;Q1;219;1046;2037;64212;13020;2018;6,35;61,39;32,77;0;United States;Northern America;"American Chemical Society";"2005-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Computer Science Applications (Q1); Library and Information Sciences (Q1)";"Chemical Engineering; Chemistry; Computer Science; Social Sciences" +2647;5700161512;"Journal of Consumer Culture";journal;"14695405, 17412900";"SAGE Publications Ltd";No;No;1,430;Q1;75;29;126;1895;570;126;4,08;65,34;52,94;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Arts and Humanities (miscellaneous) (Q1); Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Psychology; Social Sciences" +2648;20297;"Molecular Ecology";journal;"1365294X, 09621083";"Wiley-Blackwell Publishing Ltd";No;No;1,429;Q1;272;504;1252;49999;5490;1218;4,10;99,20;41,68;6;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +2649;17400154834;"Neural Regeneration Research";journal;"18767958, 16735374";"Wolters Kluwer Medknow Publications";Yes;No;1,429;Q1;88;389;1425;28780;7890;1407;5,98;73,98;44,34;0;China;Asiatic Region;"Wolters Kluwer Medknow Publications";"2006-2026";"Developmental Neuroscience (Q1)";"Neuroscience" +2650;5700191205;"Forensic Science International: Genetics";journal;"18724973, 18780326";"Elsevier Ireland Ltd";No;No;1,428;Q1;107;139;339;6229;1393;324;3,86;44,81;53,13;2;Ireland;Western Europe;"Elsevier Ireland Ltd";"2007-2026";"Genetics (Q1); Pathology and Forensic Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2651;21100202148;"International Forum of Allergy and Rhinology";journal;"20426976, 20426984";"John Wiley and Sons Inc";No;No;1,428;Q1;80;249;548;5319;1779;412;3,49;21,36;36,55;0;United States;Northern America;"John Wiley and Sons Inc";"2011-2026";"Immunology and Allergy (Q1); Otorhinolaryngology (Q1)";"Medicine" +2652;28806;"Nurse Education Today";journal;"15322793, 02606917";"Churchill Livingstone";No;No;1,428;Q1;123;347;958;16673;5937;947;5,96;48,05;73,41;0;United Kingdom;Western Europe;"Churchill Livingstone";"1981-2026";"Education (Q1); Nursing (miscellaneous) (Q1)";"Nursing; Social Sciences" +2653;21100468501;"Open Forum Infectious Diseases";journal;"23288957";"Oxford University Press";Yes;No;1,428;Q1;83;766;2146;24589;7027;2071;3,17;32,10;49,97;3;United States;Northern America;"Oxford University Press";"2014-2026";"Infectious Diseases (Q1); Oncology (Q1)";"Medicine" +2654;21101263037;"Additive Manufacturing Frontiers";journal;"29504317";"Elsevier B.V.";No;No;1,426;Q1;13;71;56;4263;511;52;9,13;60,04;25,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Mechanical Engineering (Q1)";"Engineering" +2655;28110;"BMC Medical Research Methodology";journal;"14712288";"BioMed Central Ltd";Yes;No;1,426;Q1;189;279;941;12185;4082;936;3,73;43,67;46,87;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Epidemiology (Q1); Health Informatics (Q1)";"Medicine" +2656;29124;"Cancer Epidemiology Biomarkers and Prevention";journal;"10559965, 15387755";"American Association for Cancer Research Inc.";No;No;1,426;Q1;223;261;707;7709;2405;685;3,09;29,54;53,86;0;United States;Northern America;"American Association for Cancer Research Inc.";"1983, 1986, 1991-2026";"Epidemiology (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)";"Medicine" +2657;25561;"Futures";journal;"00163287";"Elsevier Ltd";No;No;1,426;Q1;114;127;419;9306;2338;414;5,19;73,28;45,34;3;United Kingdom;Western Europe;"Elsevier Ltd";"1968-2026";"Business and International Management (Q1); Development (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Social Sciences" +2658;7000153205;"Journal of Environmental Informatics";journal;"17262135, 16848799";"International Society for Environmental Information Sciences";No;No;1,426;Q1;41;18;71;1027;384;71;6,92;57,06;27,06;0;Canada;Northern America;"International Society for Environmental Information Sciences";"2007-2025";"Computer Science Applications (Q1); Decision Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Computer Science; Decision Sciences; Environmental Science" +2659;12461;"Journal of the National Cancer Institute - Monographs";journal;"10526773, 17456614";"Oxford University Press";No;No;1,426;Q1;101;47;103;1949;323;100;3,19;41,47;65,12;1;United Kingdom;Western Europe;"Oxford University Press";"1992-2001, 2003-2008, 2010-2015, 2017, 2019-2025";"Medicine (miscellaneous) (Q1); Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2660;21101060459;"Water Cycle";journal;"26664453";"KeAi Communications Co.";Yes;No;1,426;Q1;23;41;77;3174;554;74;8,00;77,41;42,50;1;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Engineering (miscellaneous) (Q1); Environmental Engineering (Q1); Water Science and Technology (Q1)";"Engineering; Environmental Science" +2661;21101230595;"Water Emerging Contaminants and Nanoplastics";journal;"28312597";"OAE Publishing Inc.";No;No;1,426;Q1;14;11;66;1069;356;60;5,32;97,18;47,73;0;United States;Northern America;"OAE Publishing Inc.";"2022-2025";"Materials Science (miscellaneous) (Q1); Polymers and Plastics (Q1); Public Health, Environmental and Occupational Health (Q1); Toxicology (Q1); Waste Management and Disposal (Q1)";"Environmental Science; Materials Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +2662;27062;"American Journal of Pathology";journal;"00029440, 15252191";"Elsevier Inc.";No;No;1,425;Q1;319;192;506;11234;2087;456;4,24;58,51;45,43;0;United States;Northern America;"Elsevier Inc.";"1946-2026";"Pathology and Forensic Medicine (Q1)";"Medicine" +2663;14733;"Financial Analysts Journal";journal;"0015198X";"Taylor and Francis Ltd.";No;No;1,425;Q1;99;28;85;1231;282;74;2,64;43,96;16,13;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2664;21100435972;"Journal of Global Fashion Marketing";journal;"20932685, 23254483";"Taylor and Francis Ltd.";No;No;1,425;Q1;43;28;87;1810;694;86;7,28;64,64;62,34;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2011, 2013-2026";"Cultural Studies (Q1); Management of Technology and Innovation (Q1); Marketing (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Social Sciences" +2665;19700175163;"Frontiers in Cellular Neuroscience";journal;"16625102";"Frontiers Media SA";Yes;No;1,425;Q2;152;245;1625;21639;7073;1459;3,73;88,32;46,79;0;Switzerland;Western Europe;"Frontiers Media SA";"2007-2026";"Cellular and Molecular Neuroscience (Q2)";"Neuroscience" +2666;17665;"Preventive Medicine";journal;"10960260, 00917435";"Elsevier Inc.";No;No;1,424;Q1;208;142;997;5408;3788;952;3,16;38,08;56,97;5;United States;Northern America;"Elsevier Inc.";"1946, 1972-2026";"Epidemiology (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2667;110362;"Proceedings of the ACM Conference on Computer and Communications Security";conference and proceedings;"15437221";"Association for Computing Machinery";No;No;1,424;-;229;128;376;6624;2636;370;2,72;51,75;23,21;0;United States;Northern America;"Association for Computing Machinery";"1994, 1996-2023, 2025";"Computer Networks and Communications; Software";"Computer Science" +2668;14260;"BMC Psychiatry";journal;"1471244X";"BioMed Central Ltd";Yes;No;1,423;Q1;164;1190;2698;66046;13226;2690;4,68;55,50;50,09;4;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +2669;20343;"Ecosystems";journal;"14329840, 14350629";"Springer";No;No;1,423;Q1;184;72;299;5880;1240;298;3,40;81,67;37,39;3;United States;Northern America;"Springer";"1998-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Environmental Chemistry (Q1)";"Agricultural and Biological Sciences; Environmental Science" +2670;21100884825;"International Journal of Bipolar Disorders";journal;"21947511";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,423;Q1;42;36;116;1766;486;109;4,65;49,06;51,11;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2013-2026";"Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)";"Medicine; Neuroscience" +2671;25150;"Applied and Computational Harmonic Analysis";journal;"1096603X, 10635203";"Academic Press Inc.";No;No;1,422;Q1;103;61;210;3015;694;183;2,98;49,43;17,97;0;United States;Northern America;"Academic Press Inc.";"1993-2026";"Applied Mathematics (Q1)";"Mathematics" +2672;12198;"Journal of Bone and Joint Surgery";journal;"15351386, 00219355";"Lippincott Williams and Wilkins";Yes;No;1,422;Q1;324;525;1245;14707;4002;899;3,18;28,01;25,45;0;United States;Northern America;"Lippincott Williams and Wilkins";"1946-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Sports Science (Q1); Surgery (Q1)";"Health Professions; Medicine" +2673;21100871606;"Plant Diversity";journal;"24682659, 20962703";"KeAi Publishing Communications Ltd.";Yes;Yes;1,422;Q1;46;130;213;10307;1231;209;5,50;79,28;35,42;1;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2016-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +2674;24451;"Child Abuse and Neglect";journal;"01452134, 18737757";"Elsevier Ltd";No;No;1,421;Q1;192;461;1164;27435;5229;1107;4,00;59,51;64,51;7;United Kingdom;Western Europe;"Elsevier Ltd";"1977-2026";"Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1); Social Work (Q1)";"Medicine; Psychology; Social Sciences" +2675;21101081603;"Neuro-Oncology Advances";journal;"26322498";"Oxford University Press";Yes;No;1,421;Q1;42;227;551;10793;2238;538;4,02;47,55;40,08;0;United Kingdom;Western Europe;"Oxford University Press";"2019-2026";"Neurology (clinical) (Q1); Oncology (Q1); Surgery (Q1)";"Medicine" +2676;21100784450;"Stem Cell Investigation";journal;"23069759";"AME Publishing Company";Yes;No;1,421;Q1;34;0;28;0;143;21;3,65;0,00;0,00;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2014-2023";"Developmental Biology (Q1); Genetics (Q1); Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2677;29487;"Structural Change and Economic Dynamics";journal;"0954349X";"Elsevier B.V.";No;No;1,421;Q1;87;203;478;14232;3345;474;7,03;70,11;35,55;17;Netherlands;Western Europe;"Elsevier B.V.";"1990-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +2678;26493;"Academic Medicine";journal;"10402446, 1938808X";"Wolters Kluwer Health";No;No;1,420;Q1;210;460;1416;9445;3477;795;2,33;20,53;59,84;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1927-1928, 1937, 1940-1941, 1945, 1953-1956, 1959, 1961, 1964-2026";"Education (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +2679;21100218506;"ACS Synthetic Biology";journal;"21615063";"American Chemical Society";No;No;1,419;Q1;111;431;1119;25398;5390;1110;4,57;58,93;36,86;1;United States;Northern America;"American Chemical Society";"2012-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +2680;26915;"Advances in Therapy";journal;"0741238X, 18658652";"";No;No;1,418;Q1;99;375;992;15977;4454;918;4,52;42,61;42,72;0;United Kingdom;Western Europe;"";"1984-2026";"Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1)";"Medicine" +2681;21100212112;"Insights into Imaging";journal;"18694101";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,418;Q1;85;281;707;11072;3968;695;5,75;39,40;41,36;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2012-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +2682;15983;"Journal of Molecular Diagnostics";journal;"15251578, 19437811";"Elsevier B.V.";No;No;1,418;Q1;119;114;314;4045;1088;297;3,48;35,48;48,93;0;Netherlands;Western Europe;"Elsevier B.V.";"1999-2026";"Molecular Medicine (Q1); Pathology and Forensic Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2683;21100843857;"Nanoscale Horizons";journal;"20556764, 20556756";"Royal Society of Chemistry";No;No;1,418;Q1;95;229;478;17155;2909;450;5,71;74,91;35,13;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2016-2026";"Materials Science (miscellaneous) (Q1)";"Materials Science" +2684;51166;"Natural Hazards and Earth System Sciences";journal;"16849981, 15618633";"Copernicus Publications";Yes;No;1,418;Q1;141;246;666;18447;3697;666;5,28;74,99;32,28;9;Germany;Western Europe;"Copernicus Publications";"2001-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +2685;21101034398;"American Journal of Obstetrics and Gynecology MFM";journal;"25899333";"Elsevier Inc.";No;No;1,417;Q1;45;256;983;4651;2776;706;2,76;18,17;64,75;1;United States;Northern America;"Elsevier Inc.";"2019-2026";"Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)";"Medicine" +2686;27204;"International Journal of Social Research Methodology: Theory and Practice";journal;"14645300, 13645579";"Taylor and Francis Ltd.";No;No;1,417;Q1;95;99;188;3979;1012;182;3,76;40,19;59,66;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +2687;21100254652;"Water Resources and Industry";journal;"22123717";"Elsevier B.V.";Yes;No;1,417;Q1;56;59;101;3843;986;101;11,49;65,14;34,84;1;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Geography, Planning and Development (Q1); Water Science and Technology (Q1)";"Environmental Science; Social Sciences" +2688;21101297680;"Artificial Intelligence and Applications";journal;"28110854";"Bon View Publishing Pte Ltd";No;No;1,416;Q1;21;39;59;1691;979;56;16,59;43,36;29,21;0;Singapore;Asiatic Region;"Bon View Publishing Pte Ltd";"2023-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1)";"Computer Science" +2689;21100926541;"Information and Inference";journal;"20498772";"Oxford University Press";No;No;1,416;Q1;37;37;145;1843;328;145;1,91;49,81;18,56;0;United States;Northern America;"Oxford University Press";"2012-2026";"Analysis (Q1); Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Numerical Analysis (Q1); Statistics and Probability (Q1)";"Computer Science; Mathematics" +2690;21100407241;"Journal of Service Theory and Practice";journal;"20556225";"Emerald Group Publishing Ltd.";No;No;1,416;Q1;108;59;123;5608;924;117;8,51;95,05;42,13;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2015-2026";"Strategy and Management (Q1)";"Business, Management and Accounting" +2691;110486;"Journal of Wind Engineering and Industrial Aerodynamics";journal;"01676105";"Elsevier B.V.";No;No;1,416;Q1;155;217;826;11238;5056;820;5,58;51,79;23,30;1;Netherlands;Western Europe;"Elsevier B.V.";"1975, 1977-2026";"Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering" +2692;21100239262;"Sustainable Energy Technologies and Assessments";journal;"22131388";"Elsevier Ltd";No;No;1,416;Q1;115;571;2146;38017;18195;2143;8,56;66,58;27,37;1;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Energy Engineering and Power Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +2693;19700175160;"Therapeutic Advances in Medical Oncology";journal;"17588340, 17588359";"SAGE Publications Inc.";Yes;No;1,416;Q1;80;273;588;14263;2422;578;3,95;52,25;43,26;0;United States;Northern America;"SAGE Publications Inc.";"2009-2026";"Oncology (Q1)";"Medicine" +2694;19700177557;"Mobile DNA";journal;"17598753";"BioMed Central Ltd";Yes;No;1,416;Q2;52;47;77;3567;266;73;4,38;75,89;43,91;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2695;29816;"Hematology/Oncology Clinics of North America";journal;"15581977, 08898588";"W.B. Saunders";No;No;1,415;Q1;103;81;278;5428;859;239;2,78;67,01;46,92;0;United States;Northern America;"W.B. Saunders";"1987-2026";"Hematology (Q1); Oncology (Q1)";"Medicine" +2696;21100324367;"Internet Interventions";journal;"22147829";"Elsevier B.V.";Yes;No;1,415;Q1;62;100;298;5999;1516;282;3,97;59,99;60,89;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Health Informatics (Q1)";"Medicine" +2697;14478;"Journal of Cataract and Refractive Surgery";journal;"18734502, 08863350";"Lippincott Williams and Wilkins";No;No;1,415;Q1;176;258;809;5004;2353;594;2,94;19,40;33,78;0;United States;Northern America;"Lippincott Williams and Wilkins";"1986-2026";"Ophthalmology (Q1); Sensory Systems (Q1); Surgery (Q1)";"Medicine; Neuroscience" +2698;5700166813;"Journal of Chinese Political Science";journal;"10806954, 18746357";"Springer Netherlands";No;No;1,415;Q1;36;37;89;2924;520;88;6,88;79,03;41,27;1;Netherlands;Western Europe;"Springer Netherlands";"1995-1997, 2003, 2008-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2699;21100349321;"Journal of Hydrology: Regional Studies";journal;"22145818";"Elsevier B.V.";Yes;No;1,415;Q1;72;917;1093;65001;7011;1091;6,23;70,88;32,89;5;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Water Science and Technology (Q1)";"Earth and Planetary Sciences; Environmental Science" +2700;15987;"Journal of Pain";journal;"15265900, 15288447";"Elsevier B.V.";No;No;1,415;Q1;174;266;643;16224;2945;612;4,01;60,99;52,43;3;United States;Northern America;"Elsevier B.V.";"2000-2026";"Anesthesiology and Pain Medicine (Q1); Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +2701;21100872187;"Journal of Tourism Futures";journal;"20555911, 2055592X";"Emarald Group Publishing Ltd";Yes;Yes;1,415;Q1;49;60;146;4020;1548;136;9,10;67,00;34,03;0;United Kingdom;Western Europe;"Emarald Group Publishing Ltd";"2015-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Environmental Science; Social Sciences" +2702;14016;"Psychology and Psychotherapy: Theory, Research and Practice";journal;"20448341, 14760835";"Wiley-Blackwell";No;No;1,415;Q1;83;73;173;4574;681;169;3,84;62,66;62,46;0;United States;Northern America;"Wiley-Blackwell";"1920-1939, 1996-2000, 2002-2026";"Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Arts and Humanities; Medicine; Psychology" +2703;12855;"Comparative Education";journal;"13600486, 03050068";"Routledge";No;No;1,414;Q1;78;48;94;3001;527;91;5,66;62,52;44,29;0;United Kingdom;Western Europe;"Routledge";"1964-2026";"Education (Q1)";"Social Sciences" +2704;7700153108;"International Journal of Nanomedicine";journal;"11782013, 11769114";"Dove Medical Press Ltd";Yes;No;1,414;Q1;209;765;1538;73956;13658;1518;8,75;96,67;45,16;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2006-2026";"Bioengineering (Q1); Biomaterials (Q1); Biophysics (Q1); Drug Discovery (Q1); Medicine (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1); Organic Chemistry (Q1); Pharmaceutical Science (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Materials Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +2705;19700176802;"Journal of Physiotherapy";journal;"18369553, 18369561";"Australian Physiotherapy Association";Yes;Yes;1,414;Q1;99;92;263;1910;792;106;2,58;20,76;61,05;0;Australia;Pacific Region;"Australian Physiotherapy Association";"2010-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1)";"Health Professions" +2706;21101206085;"Ocean-Land-Atmosphere Research";journal;"27710378";"American Association for the Advancement of Science";Yes;Yes;1,414;Q1;13;33;64;2563;319;62;4,55;77,67;30,37;0;United States;Northern America;"American Association for the Advancement of Science";"2022-2026";"Atmospheric Science (Q1); Global and Planetary Change (Q1); Oceanography (Q1)";"Earth and Planetary Sciences; Environmental Science" +2707;21100199724;"Qualitative Research in Sport, Exercise and Health";journal;"21596778, 2159676X";"Taylor and Francis Ltd.";No;No;1,414;Q1;57;50;154;2702;783;154;6,02;54,04;62,42;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Health (social science) (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Social Psychology (Q1); Sports Science (Q1)";"Health Professions; Psychology; Social Sciences" +2708;21101133427;"VIEW";journal;"26883988, 2688268X";"John Wiley and Sons Inc";Yes;No;1,414;Q1;40;90;156;6729;1275;154;7,30;74,77;39,14;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2020-2026";"Biomaterials (Q1); Biomedical Engineering (Q1)";"Engineering; Materials Science" +2709;21100853527;"Brain Informatics";journal;"21984018, 21984026";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,413;Q1;42;37;96;1886;912;96;11,23;50,97;34,83;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Cognitive Neuroscience (Q1); Computer Science Applications (Q1); Neurology (Q1)";"Computer Science; Neuroscience" +2710;15184;"Duke Law Journal";journal;"00127086";"Duke Law Publications";Yes;No;1,413;Q1;57;31;88;8355;175;86;1,43;269,52;30,00;0;United States;Northern America;"Duke Law Publications";"1978-1981, 1983-1986, 1988-1994, 1996-2026";"Law (Q1)";"Social Sciences" +2711;15398;"Journal of Career Assessment";journal;"10690727, 15524590";"SAGE Publications Inc.";No;No;1,413;Q1;87;65;121;4284;603;121;4,48;65,91;53,65;0;United States;Northern America;"SAGE Publications Inc.";"1993-2026";"Applied Psychology (Q1); Education (Q1); Organizational Behavior and Human Resource Management (Q1); Psychology (miscellaneous) (Q1)";"Business, Management and Accounting; Psychology; Social Sciences" +2712;22153;"Vehicle System Dynamics";journal;"00423114, 17445159";"Taylor and Francis Ltd.";No;No;1,413;Q1;125;243;482;9892;3292;477;6,78;40,71;22,22;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972-2026";"Automotive Engineering (Q1); Mechanical Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering" +2713;20489;"Annals of Thoracic Surgery";journal;"15526259, 00034975";"Elsevier Inc.";No;No;1,412;Q1;236;538;2393;8938;5194;1366;2,53;16,61;28,81;0;United States;Northern America;"Elsevier Inc.";"1965-2026";"Cardiology and Cardiovascular Medicine (Q1); Pulmonary and Respiratory Medicine (Q1); Surgery (Q1)";"Medicine" +2714;21100229837;"Environmental Science: Processes and Impacts";journal;"20507887, 20507895";"Royal Society of Chemistry";No;No;1,412;Q1;134;235;540;17411;2630;529;4,26;74,09;43,81;4;United Kingdom;Western Europe;"Royal Society of Chemistry";"2012-2026";"Environmental Chemistry (Q1); Management, Monitoring, Policy and Law (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Environmental Science; Medicine" +2715;15665;"General Hospital Psychiatry";journal;"01638343, 18737714";"Elsevier Inc.";No;No;1,412;Q1;131;217;431;7626;1422;298;3,09;35,14;45,01;0;United States;Northern America;"Elsevier Inc.";"1979-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +2716;26857;"International Migration Review";journal;"17477379, 01979183";"SAGE Publications Ltd";No;No;1,412;Q1;126;171;208;11602;963;207;4,46;67,85;51,95;13;United States;Northern America;"SAGE Publications Ltd";"1971-1974, 1977-2026";"Arts and Humanities (miscellaneous) (Q1); Demography (Q1)";"Arts and Humanities; Social Sciences" +2717;19700175113;"Frontiers in Molecular Neuroscience";journal;"16625099";"Frontiers Media SA";Yes;No;1,412;Q2;119;156;1594;11700;7105;1466;3,91;75,00;48,40;0;Switzerland;Western Europe;"Frontiers Media SA";"2008-2026";"Cellular and Molecular Neuroscience (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +2718;16003;"Journal of Rural Health";journal;"0890765X, 17480361";"Wiley-Blackwell";No;No;1,411;Q1;80;174;283;6808;1134;266;3,51;39,13;60,32;3;United States;Northern America;"Wiley-Blackwell";"1985-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2719;21100248891;"ACS Sustainable Chemistry and Engineering";journal;"21680485";"American Chemical Society";No;No;1,410;Q1;215;1873;4962;104006;38275;4925;7,59;55,53;36,62;1;United States;Northern America;"American Chemical Society";"2013-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Chemical Engineering; Chemistry; Energy; Environmental Science" +2720;19700188419;"Cancers";journal;"20726694";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,410;Q1;182;4009;16304;266756;83363;15897;4,88;66,54;43,72;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2721;20734;"Clinical and Experimental Immunology";journal;"00099104, 13652249";"Oxford University Press";No;No;1,410;Q1;167;126;368;6317;1609;357;4,17;50,13;50,20;0;United Kingdom;Western Europe;"Oxford University Press";"1966-2026";"Immunology (Q1); Immunology and Allergy (Q1)";"Immunology and Microbiology; Medicine" +2722;21101144895;"European Heart Journal Open";journal;"27524191";"Oxford University Press";Yes;No;1,410;Q1;24;163;320;5552;1188;271;3,38;34,06;28,81;0;United Kingdom;Western Europe;"Oxford University Press";"2021-2026";"Cardiology and Cardiovascular Medicine (Q1); Surgery (Q1)";"Medicine" +2723;12100155405;"Innovation: Organization and Management";journal;"14479338";"Taylor and Francis Ltd.";No;No;1,410;Q1;50;49;72;3732;474;69;3,22;76,16;32,41;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Management of Technology and Innovation (Q1)";"Business, Management and Accounting" +2724;13348;"Proceedings of the Nutrition Society";journal;"00296651, 14752719";"Cambridge University Press";No;No;1,410;Q1;161;73;153;6651;953;148;5,47;91,11;69,95;0;United Kingdom;Western Europe;"Cambridge University Press";"1944-1947, 1953, 1955-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +2725;21100857520;"Collabra: Psychology";journal;"24747394";"University of California Press";Yes;No;1,409;Q1;35;95;294;6099;1258;294;2,48;64,20;52,99;0;United States;Northern America;"University of California Press";"2017-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +2726;21100200658;"Teacher Education and Special Education";journal;"08884064, 19444931";"SAGE Publications Inc.";No;No;1,409;Q1;33;18;53;861;216;51;3,77;47,83;74,65;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1980, 1995-1997, 1999, 2008, 2010, 2015-2026";"Education (Q1)";"Social Sciences" +2727;21100199107;"Education Finance and Policy";journal;"15573079, 15573060";"MIT Press";No;No;1,408;Q1;41;13;92;506;245;88;2,18;38,92;44,00;2;United States;Northern America;"MIT Press";"2011-2025";"Education (Q1)";"Social Sciences" +2728;29903;"International Journal of Oncology";journal;"17912423, 10196439";"Spandidos Publications";No;No;1,408;Q1;146;103;395;10851;2177;395;6,14;105,35;44,01;0;Greece;Western Europe;"Spandidos Publications";"1993-2026";"Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2729;19200156952;"Journal of Innate Immunity";journal;"16628128, 1662811X";"S. Karger AG";Yes;No;1,408;Q1;91;36;147;2797;695;143;4,28;77,69;50,76;0;Switzerland;Western Europe;"S. Karger AG";"2008-2026";"Immunology and Allergy (Q1)";"Medicine" +2730;130030;"Proceedings of the Royal Society B: Biological Sciences";journal;"14712954, 09628452";"Royal Society Publishing";No;No;1,408;Q1;313;601;1690;40854;6505;1648;3,60;67,98;39,09;4;United Kingdom;Western Europe;"Royal Society Publishing";"1946-1947, 1949-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Immunology and Microbiology; Medicine" +2731;23326;"American Journal of Physiology - Lung Cellular and Molecular Physiology";journal;"15221504, 10400605";"American Physiological Society";No;No;1,407;Q1;190;138;442;8986;1648;411;3,71;65,12;44,83;1;United States;Northern America;"American Physiological Society";"1989-2026";"Physiology (Q1); Physiology (medical) (Q1); Pulmonary and Respiratory Medicine (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2732;19561;"American Journal of Public Health";journal;"00900036, 15410048";"American Public Health Association Inc.";No;No;1,407;Q1;336;405;1232;6433;3464;783;2,44;15,88;61,13;0;United States;Northern America;"American Public Health Association Inc.";"1949-1963, 1971-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2733;16400154777;"Asia Pacific Management Review";journal;"10293132";"National Cheng Kung University";Yes;No;1,407;Q1;51;53;121;3822;1222;121;10,94;72,11;34,06;0;Taiwan;Asiatic Region;"National Cheng Kung University";"2002, 2007-2026";"Business and International Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +2734;28792;"Cancer Biology and Therapy";journal;"15384047, 15558576";"Taylor and Francis Ltd.";Yes;No;1,407;Q1;138;84;257;4596;1431;255;5,76;54,71;48,40;0;United States;Northern America;"Taylor and Francis Ltd.";"2002-2026";"Molecular Medicine (Q1); Oncology (Q1); Pharmacology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +2735;29239;"Chinese Journal of Cancer Research";journal;"10009604, 19930631";"Chinese Journal of Cancer Research Co., Ltd. and Peking University Cancer Hospital and Institute";No;No;1,406;Q1;51;70;169;3978;920;155;5,92;56,83;39,78;0;Hong Kong;Asiatic Region;"Chinese Journal of Cancer Research Co., Ltd. and Peking University Cancer Hospital and Institute";"1988-1996, 1998-2017, 2020-2025";"Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2736;21101022831;"Current Research in Food Science";journal;"26659271";"Elsevier B.V.";Yes;No;1,406;Q1;56;314;761;20451;7062;759;8,57;65,13;46,56;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +2737;20717;"Epidemiology";journal;"15315487, 10443983";"Lippincott Williams and Wilkins";No;No;1,406;Q1;209;126;358;4193;1211;291;3,21;33,28;51,62;0;United States;Northern America;"Lippincott Williams and Wilkins";"1990-2026";"Epidemiology (Q1)";"Medicine" +2738;13068;"Spine";journal;"03622436, 15281159";"Wolters Kluwer Health";No;No;1,406;Q1;310;439;903;12076;3332;822;3,37;27,51;20,37;0;United States;Northern America;"Wolters Kluwer Health";"1976-2026";"Neurology (clinical) (Q1); Orthopedics and Sports Medicine (Q1); Sports Science (Q1)";"Health Professions; Medicine" +2739;22040;"Chemical Geology";journal;"00092541";"Elsevier B.V.";No;No;1,405;Q1;265;456;1180;40154;4748;1177;3,77;88,06;31,24;0;Netherlands;Western Europe;"Elsevier B.V.";"1966-2026";"Geochemistry and Petrology (Q1); Geology (Q1)";"Earth and Planetary Sciences" +2740;13831;"Chinese Journal of Aeronautics";journal;"10009361";"Elsevier B.V.";Yes;No;1,404;Q1;101;468;1192;20967;8906;1177;7,26;44,80;27,21;0;China;Asiatic Region;"Elsevier B.V.";"1990-1991, 1996-2026";"Aerospace Engineering (Q1); Mechanical Engineering (Q1)";"Engineering" +2741;24403;"Clinical Implant Dentistry and Related Research";journal;"15230899, 17088208";"John Wiley and Sons Inc";No;No;1,404;Q1;111;157;303;7150;1539;296;4,57;45,54;37,10;0;United States;Northern America;"John Wiley and Sons Inc";"1999-2026";"Dentistry (miscellaneous) (Q1); Oral Surgery (Q1)";"Dentistry" +2742;18517;"Cytometry Part A";journal;"15524922, 15524930";"John Wiley and Sons Inc";No;No;1,404;Q1;114;67;291;2845;915;251;2,81;42,46;41,80;0;United States;Northern America;"John Wiley and Sons Inc";"2003-2026";"Histology (Q1); Pathology and Forensic Medicine (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2743;14400;"European Journal of Communication";journal;"02673231, 14603705";"SAGE Publications Ltd";No;No;1,404;Q1;82;32;99;1632;476;98;4,00;51,00;60,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-2026";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +2744;24389;"Journal of Industrial Economics";journal;"14676451, 00221821";"Wiley-Blackwell Publishing Ltd";No;No;1,404;Q1;92;27;113;1115;199;112;1,47;41,30;20,37;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1978-1989, 1996-2026";"Accounting (Q1); Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2745;21101167215;"Resources Chemicals and Materials";journal;"27724433";"KeAi Communications Co.";Yes;No;1,404;Q1;23;33;75;2724;744;74;10,25;82,55;34,00;0;China;Asiatic Region;"KeAi Communications Co.";"2022-2026";"Chemical Engineering (miscellaneous) (Q1); Fuel Technology (Q1); Materials Science (miscellaneous) (Q1)";"Chemical Engineering; Energy; Materials Science" +2746;74973;"Communications in Contemporary Mathematics";journal;"17936683, 02191997";"World Scientific";No;No;1,403;Q1;56;147;271;4989;429;271;1,58;33,94;19,00;0;Singapore;Asiatic Region;"World Scientific";"1999-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +2747;21100255109;"Frontiers in Cellular and Infection Microbiology";journal;"22352988";"Frontiers Media SA";Yes;No;1,403;Q1;156;1408;4835;84384;26577;4513;5,08;59,93;46,89;2;Switzerland;Western Europe;"Frontiers Media SA";"2011-2026";"Immunology (Q1); Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q1); Microbiology (medical) (Q1)";"Immunology and Microbiology; Medicine" +2748;21101151249;"Frontiers of Engineering Management";journal;"20957513, 20960255";"Higher Education Press Limited Company";No;No;1,403;Q1;40;74;163;4833;1293;128;8,87;65,31;32,58;1;China;Asiatic Region;"Higher Education Press Limited Company";"2017, 2020-2025";"Decision Sciences (miscellaneous) (Q1); Management Science and Operations Research (Q1)";"Decision Sciences" +2749;21910;"Journal of Clinical Anesthesia";journal;"18734529, 09528180";"Elsevier Inc.";No;No;1,403;Q1;90;272;761;7837;2759;477;3,91;28,81;39,78;2;United States;Northern America;"Elsevier Inc.";"1988-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +2750;16767;"Journal of Neurosurgery";journal;"19330693, 00223085";"American Association of Neurological Surgeons";No;No;1,403;Q1;253;410;1342;12437;4766;1156;3,37;30,33;25,00;0;United States;Northern America;"American Association of Neurological Surgeons";"1945-2026";"Neurology (clinical) (Q1); Surgery (Q1)";"Medicine" +2751;16200154705;"Journal of Research in Music Education";journal;"00224294, 19450095";"SAGE Publications Inc.";No;No;1,403;Q1;59;35;80;1674;201;67;2,15;47,83;50,00;0;United States;Northern America;"SAGE Publications Inc.";"1953-2026";"Education (Q1); Music (Q1)";"Arts and Humanities; Social Sciences" +2752;20417;"Aesthetic Surgery Journal";journal;"1090820X, 1527330X";"Oxford University Press";No;No;1,402;Q1;93;227;1052;6831;2646;650;2,72;30,09;37,32;1;United Kingdom;Western Europe;"Oxford University Press";"1995-2026";"Medicine (miscellaneous) (Q1); Surgery (Q1)";"Medicine" +2753;20220;"Journal of Bacteriology";journal;"00219193, 10985530";"American Society for Microbiology";Yes;No;1,402;Q1;292;233;598;18526;2156;584;3,61;79,51;45,96;0;United States;Northern America;"American Society for Microbiology";"1934, 1940-1941, 1945-2026";"Microbiology (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +2754;21219;"Meat Science";journal;"03091740, 18734138";"Elsevier Ltd";No;No;1,402;Q1;215;216;714;13924;5737;706;7,67;64,46;45,40;0;United Kingdom;Western Europe;"Elsevier Ltd";"1977-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +2755;21100394188;"Biomolecules";journal;"2218273X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,401;Q1;161;1747;5338;161075;32494;5218;5,68;92,20;48,05;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Biochemistry (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2756;17500155105;"Emotion Review";journal;"17540747, 17540739";"SAGE Publications Ltd";No;No;1,401;Q1;109;24;97;1877;443;89;4,11;78,21;62,16;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2009-2026";"Arts and Humanities (miscellaneous) (Q1); Experimental and Cognitive Psychology (Q1); Social Psychology (Q1)";"Arts and Humanities; Psychology" +2757;27518;"International Journal of Gynecological Cancer";journal;"15251438, 1048891X";"Elsevier Inc.";No;No;1,401;Q1;112;483;990;10299;3282;812;3,48;21,32;54,71;1;United States;Northern America;"Elsevier Inc.";"1991-2026";"Obstetrics and Gynecology (Q1); Oncology (Q1)";"Medicine" +2758;15106;"Journal of Inherited Metabolic Disease";journal;"01418955, 15732665";"Springer Netherlands";Yes;No;1,401;Q1;131;175;311;10592;1201;280;3,85;60,53;56,59;3;Netherlands;Western Europe;"Springer Netherlands";"1978-2026";"Genetics (Q1); Genetics (clinical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2759;15984;"Journal of Molecular Medicine";journal;"09462716, 14321440";"Springer Science and Business Media Deutschland GmbH";No;No;1,401;Q1;167;103;345;7227;1702;341;4,85;70,17;46,02;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1976-1978, 1980-1981, 1995-2026";"Drug Discovery (Q1); Genetics (clinical) (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +2760;21101133300;"Medical sciences";journal;"20763271";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,401;Q1;51;347;219;19667;1264;216;5,97;56,68;42,75;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013, 2016-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +2761;16544;"Tourism Geographies";journal;"14701340, 14616688";"Routledge";No;No;1,400;Q1;105;145;238;9210;1814;213;7,34;63,52;47,06;3;United Kingdom;Western Europe;"Routledge";"1999-2026";"Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Social Sciences" +2762;16315;"Fuel Processing Technology";journal;"03783820";"Elsevier B.V.";Yes;No;1,399;Q1;194;195;843;13931;6913;843;8,21;71,44;27,32;0;Netherlands;Western Europe;"Elsevier B.V.";"1977-2026";"Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1)";"Chemical Engineering; Energy" +2763;21101224376;"IEEE Internet of Things Magazine";journal;"25763199, 25763180";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,399;Q1;38;123;322;1632;1999;306;6,75;13,27;25,21;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +2764;21101288834;"International Journal of Mathematics and Computer in Engineering";journal;"29567068";"";No;No;1,398;Q1;18;30;40;990;318;40;7,95;33,00;24,59;0;Germany;Western Europe;"";"2023-2026";"Computational Mathematics (Q1); Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1)";"Computer Science; Engineering; Mathematics" +2765;20377;"Journal of Quantitative Criminology";journal;"07484518, 15737799";"Springer New York";No;No;1,398;Q1;105;53;94;3242;459;94;4,33;61,17;24,40;3;United States;Northern America;"Springer New York";"1985-2026";"Law (Q1); Pathology and Forensic Medicine (Q1)";"Medicine; Social Sciences" +2766;13754;"Process Safety and Environmental Protection";journal;"17443598, 09575820";"Institution of Chemical Engineers";No;No;1,398;Q1;144;1508;3356;93303;29357;3341;8,97;61,87;34,13;0;United Kingdom;Western Europe;"Institution of Chemical Engineers";"1990-2026";"Chemical Engineering (miscellaneous) (Q1); Environmental Chemistry (Q1); Environmental Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)";"Chemical Engineering; Engineering; Environmental Science" +2767;28191;"Journal of Clinical Nursing";journal;"13652702, 09621067";"Wiley-Blackwell Publishing Ltd";No;No;1,397;Q1;138;534;1382;21227;6653;1227;4,47;39,75;64,78;8;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2026";"Medicine (miscellaneous) (Q1); Nursing (miscellaneous) (Q1)";"Medicine; Nursing" +2768;21100215166;"Journal of Obesity";journal;"20900716, 20900708";"John Wiley and Sons Ltd";Yes;No;1,397;Q1;74;26;51;1971;306;51;4,18;75,81;44,44;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Endocrinology, Diabetes and Metabolism (Q1)";"Medicine" +2769;21100887502;"Journal of Open Innovation: Technology, Market, and Complexity";journal;"21998531";"Elsevier B.V.";Yes;No;1,397;Q1;80;254;638;23097;7403;637;11,31;90,93;32,12;2;Switzerland;Western Europe;"Elsevier B.V.";"2015-2026";"Development (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Social Sciences" +2770;17790;"Medical Clinics of North America";journal;"15579859, 00257125";"W.B. Saunders";No;No;1,397;Q1;122;122;306;5743;1279;234;4,73;47,07;42,91;0;United States;Northern America;"W.B. Saunders";"1945-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +2771;17600155050;"Asian Economic Policy Review";journal;"18328105, 17483131";"Wiley-Blackwell Publishing Ltd";No;No;1,396;Q1;34;38;109;501;324;35;1,90;13,18;25,00;4;Australia;Pacific Region;"Wiley-Blackwell Publishing Ltd";"2008-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Political Science and International Relations (Q1)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +2772;12177;"Climatic Change";journal;"15731480, 01650009";"Springer Science and Business Media B.V.";No;No;1,396;Q1;240;235;530;16094;2933;514;5,05;68,49;40,39;12;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1977-2026";"Atmospheric Science (Q1); Global and Planetary Change (Q1)";"Earth and Planetary Sciences; Environmental Science" +2773;21100398775;"Clinical and Translational Allergy";journal;"20457022";"John Wiley & Sons Inc.";Yes;No;1,396;Q1;60;112;270;4697;1059;205;3,49;41,94;55,06;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2011-2026";"Immunology (Q1); Immunology and Allergy (Q1); Pulmonary and Respiratory Medicine (Q1)";"Immunology and Microbiology; Medicine" +2774;28879;"European Journal of Teacher Education";journal;"14695928, 02619768";"Routledge";No;No;1,396;Q1;71;120;194;6436;1030;178;4,68;53,63;59,27;5;United Kingdom;Western Europe;"Routledge";"1982-2026";"Education (Q1)";"Social Sciences" +2775;21100872100;"European Thyroid Journal";journal;"22350640, 22350802";"BioScientifica Ltd.";Yes;No;1,396;Q1;37;93;209;4441;1038;203;4,78;47,75;46,90;0;Switzerland;Western Europe;"BioScientifica Ltd.";"2013-2014, 2016-2026";"Endocrinology, Diabetes and Metabolism (Q1)";"Medicine" +2776;21100869398;"Work, Aging and Retirement";journal;"20544650";"Oxford University Press";No;No;1,396;Q1;45;27;97;2114;411;87;4,11;78,30;64,04;3;United States;Northern America;"Oxford University Press";"2015-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Geriatrics and Gerontology (Q1); Industrial Relations (Q1); Life-span and Life-course Studies (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Medicine; Social Sciences" +2777;21100909462;"BMJ Health and Care Informatics";journal;"26321009";"BMJ Publishing Group";Yes;No;1,395;Q1;53;116;180;2991;1014;163;5,73;25,78;44,43;1;United Kingdom;Western Europe;"BMJ Publishing Group";"2019-2026";"Computer Science Applications (Q1); Health Informatics (Q1); Health Information Management (Q1)";"Computer Science; Health Professions; Medicine" +2778;17700156312;"Environmental Policy and Governance";journal;"1756932X, 17569338";"John Wiley and Sons Ltd";No;No;1,394;Q1;67;74;141;5929;823;137;4,64;80,12;47,11;6;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)";"Environmental Science; Social Sciences" +2779;21101126567;"Environmental Science: Advances";journal;"27547000";"Royal Society of Chemistry";Yes;No;1,394;Q1;31;110;344;9474;2457;335;6,83;86,13;40,52;2;United Kingdom;Western Europe;"Royal Society of Chemistry";"2022-2026";"Environmental Chemistry (Q1); Environmental Engineering (Q1); Pollution (Q1); Water Science and Technology (Q1)";"Environmental Science" +2780;15598;"Experimental Neurology";journal;"00144886, 10902430";"Academic Press Inc.";No;No;1,394;Q1;219;357;785;23271;4080;773;5,03;65,18;44,65;1;United States;Northern America;"Academic Press Inc.";"1959-2026";"Developmental Neuroscience (Q1); Neurology (Q1)";"Neuroscience" +2781;21100906935;"Food Science and Human Wellness";journal;"22134530";"Tsinghua University Press";Yes;No;1,394;Q1;76;340;702;22016;5965;702;7,67;64,75;47,15;0;China;Asiatic Region;"Tsinghua University Press";"2012-2025";"Food Science (Q1)";"Agricultural and Biological Sciences" +2782;20744;"LWT";journal;"10961127, 00236438";"Academic Press";Yes;No;1,394;Q1;202;1666;4692;83215;40598;4687;7,89;49,95;47,79;0;United States;Northern America;"Academic Press";"1973, 1984-1989, 1991-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +2783;9700153101;"Chinese Journal of International Politics";journal;"17508924, 17508916";"Oxford University Press";No;No;1,393;Q1;49;26;64;3375;240;64;4,00;129,81;25,00;0;United Kingdom;Western Europe;"Oxford University Press";"2006-2025";"Political Science and International Relations (Q1)";"Social Sciences" +2784;17700156449;"International Journal of Minerals, Metallurgy and Materials";journal;"1869103X, 16744799";"University of Science and Technology Beijing";No;No;1,393;Q1;71;258;656;13495;5399;648;8,74;52,31;33,93;0;China;Asiatic Region;"University of Science and Technology Beijing";"2009-2026";"Geochemistry and Petrology (Q1); Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)";"Earth and Planetary Sciences; Engineering; Materials Science" +2785;40107;"Journal of Combinatorial Theory. Series A";journal;"00973165, 10960899";"Academic Press Inc.";No;No;1,393;Q1;64;70;234;1884;399;234;1,85;26,91;23,87;0;United States;Northern America;"Academic Press Inc.";"1971-2026";"Computational Theory and Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +2786;21101312751;"Journal of the Air Transport Research Society";journal;"2941198X";"Elsevier B.V.";No;No;1,393;Q1;13;41;44;3178;344;44;7,82;77,51;28,85;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Transportation (Q1)";"Social Sciences" +2787;21100422918;"Bone and Joint Research";journal;"20463758";"British Editorial Society of Bone and Joint Surgery";Yes;No;1,392;Q1;61;115;247;5017;1315;230;4,84;43,63;30,21;0;United Kingdom;Western Europe;"British Editorial Society of Bone and Joint Surgery";"2012-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +2788;19700175206;"Microbial Biotechnology";journal;"17517915, 17517907";"John Wiley and Sons Ltd";Yes;No;1,392;Q1;120;216;682;15314;4214;605;6,39;70,90;44,29;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Applied Microbiology and Biotechnology (Q1); Biochemistry (Q1); Bioengineering (Q1); Biotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +2789;22116;"Tribology International";journal;"0301679X";"Elsevier Inc.";No;No;1,392;Q1;170;728;2594;37075;20923;2591;8,12;50,93;27,55;0;United Kingdom;Western Europe;"Elsevier Inc.";"1972, 1974-2026";"Mechanical Engineering (Q1); Mechanics of Materials (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)";"Engineering; Materials Science; Physics and Astronomy" +2790;12507;"Aerospace Science and Technology";journal;"12709638";"Elsevier Masson s.r.l.";Yes;No;1,391;Q1;134;856;2181;39575;15238;2179;6,84;46,23;25,98;0;France;Western Europe;"Elsevier Masson s.r.l.";"1997-2026";"Aerospace Engineering (Q1)";"Engineering" +2791;21101092898;"Current Research in Immunology";journal;"25902555";"Elsevier B.V.";Yes;No;1,391;Q1;19;0;50;0;295;50;7,48;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2024";"Immunology (Q1)";"Immunology and Microbiology" +2792;21503;"Evolution and Human Behavior";journal;"10905138";"Elsevier Inc.";No;No;1,391;Q1;140;87;193;5591;592;163;2,63;64,26;40,41;0;United States;Northern America;"Elsevier Inc.";"1997-2026";"Arts and Humanities (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Experimental and Cognitive Psychology (Q1)";"Agricultural and Biological Sciences; Arts and Humanities; Psychology" +2793;19700187632;"Physical Education and Sport Pedagogy";journal;"17408989, 17425786";"Taylor and Francis Ltd.";No;No;1,391;Q1;65;120;178;5764;997;178;4,42;48,03;37,85;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Education (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine; Social Sciences" +2794;21101180668;"ACS Polymers Au";journal;"26942453";"American Chemical Society";Yes;No;1,390;Q1;17;72;82;6263;580;76;7,07;86,99;32,95;0;United States;Northern America;"American Chemical Society";"2023-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Polymers and Plastics (Q1)";"Chemical Engineering; Chemistry; Materials Science" +2795;19700200832;"Technology, Knowledge and Learning";journal;"22111662, 22111670";"Springer Science + Business Media";No;No;1,390;Q1;52;175;249;11998;1842;246;6,73;68,56;47,27;2;United States;Northern America;"Springer Science + Business Media";"2011-2026";"Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Education (Q1); Engineering (miscellaneous) (Q1); Human-Computer Interaction (Q1); Mathematics (miscellaneous) (Q1); Theoretical Computer Science (Q1)";"Computer Science; Engineering; Mathematics; Social Sciences" +2796;21101180445;"BME Frontiers";journal;"27658031";"American Association for the Advancement of Science";Yes;Yes;1,389;Q1;24;31;88;2678;612;87;7,72;86,39;35,47;0;United States;Northern America;"American Association for the Advancement of Science";"2020-2026";"Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1)";"Engineering; Medicine" +2797;21101075999;"Current Research in Pharmacology and Drug Discovery";journal;"25902571";"Elsevier B.V.";Yes;No;1,389;Q1;28;29;108;2054;743;106;7,27;70,83;44,69;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +2798;7200153156;"IEEE Transactions on Network and Service Management";journal;"19324537";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,389;Q1;93;415;1190;18662;7852;1185;6,54;44,97;27,48;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2004-2026";"Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +2799;17531;"Journal of International Financial Markets, Institutions and Money";journal;"10424431";"Elsevier B.V.";No;No;1,389;Q1;94;98;429;7470;3089;429;7,71;76,22;28,35;2;Netherlands;Western Europe;"Elsevier B.V.";"1997-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +2800;19700174806;"Korean Journal of Anesthesiology";journal;"20057563, 20056419";"Korean Society of Anesthesiologists";Yes;Yes;1,389;Q1;53;77;242;2081;1247;171;2,94;27,03;34,70;0;South Korea;Asiatic Region;"Korean Society of Anesthesiologists";"2010-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +2801;21100461914;"LGBT Health";journal;"23258306, 23258292";"Mary Ann Liebert Inc.";No;No;1,389;Q1;68;72;212;3436;980;211;3,76;47,72;56,92;0;United States;Northern America;"Mary Ann Liebert Inc.";"2014-2026";"Dermatology (Q1); Obstetrics and Gynecology (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1); Urology (Q1)";"Medicine" +2802;21101263160;"Microplastics";journal;"26738929";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,389;Q1;22;108;123;8289;817;120;6,05;76,75;44,19;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +2803;5800185422;"Theory and Research in Social Education";journal;"00933104, 21631654";"Taylor and Francis Ltd.";No;No;1,389;Q1;58;28;60;2684;251;60;3,65;95,86;51,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1973-2025";"Education (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2804;21101021573;"Emerging Topics in Life Sciences";journal;"23978554, 23978562";"Portland Press Ltd";No;No;1,388;Q1;45;24;102;1025;616;101;6,24;42,71;44,83;0;United Kingdom;Western Europe;"Portland Press Ltd";"2017-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +2805;19400158804;"Translational Stroke Research";journal;"1868601X, 18684483";"Springer";No;No;1,388;Q1;83;183;277;9711;1279;248;4,62;53,07;33,35;1;United States;Northern America;"Springer";"2010-2026";"Cardiology and Cardiovascular Medicine (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)";"Medicine; Neuroscience" +2806;21100201022;"Frontiers of Environmental Science and Engineering";journal;"20952201, 2095221X";"Higher Education Press Limited Company";No;No;1,387;Q1;75;173;458;12289;3026;448;6,94;71,03;40,62;1;China;Asiatic Region;"Higher Education Press Limited Company";"2013-2025";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +2807;21100420802;"GigaScience";journal;"2047217X";"Oxford University Press";Yes;No;1,387;Q1;106;165;358;12294;1648;356;4,33;74,51;34,40;0;United Kingdom;Western Europe;"Oxford University Press";"2012-2026";"Computer Science Applications (Q1); Health Informatics (Q1)";"Computer Science; Medicine" +2808;21101060181;"Physical Review Research";journal;"26431564";"American Physical Society";Yes;No;1,387;Q1;95;1593;3917;99726;15653;3911;3,86;62,60;18,97;0;United States;Northern America;"American Physical Society";"2019-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +2809;21100853493;"Regenerative Biomaterials";journal;"20563418, 20563426";"Oxford University Press";Yes;No;1,387;Q1;56;137;358;11531;2988;358;8,03;84,17;40,73;0;United Kingdom;Western Europe;"Oxford University Press";"2014-2026";"Biomaterials (Q1); Biomedical Engineering (Q1)";"Engineering; Materials Science" +2810;26356;"Revista Matematica Iberoamericana";journal;"02132230, 22350616";"European Mathematical Society Publishing House";Yes;Yes;1,387;Q1;58;70;228;2395;283;228;1,30;34,21;17,50;0;Spain;Western Europe;"European Mathematical Society Publishing House";"1988, 1996-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +2811;144986;"Career Development International";journal;"13620436";"Emerald Group Publishing Ltd.";No;No;1,386;Q1;92;74;131;4292;758;123;4,47;58,00;56,63;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1996-2026";"Organizational Behavior and Human Resource Management (Q1); Social Sciences (miscellaneous) (Q1)";"Business, Management and Accounting; Social Sciences" +2812;21100466855;"Neurology and Therapy";journal;"21938253, 21936536";"";Yes;No;1,386;Q1;47;167;358;7654;1677;319;3,93;45,83;46,53;0;United Kingdom;Western Europe;"";"2012-2026";"Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +2813;16595;"Plant Cell Reports";journal;"07217714, 1432203X";"Springer Science and Business Media Deutschland GmbH";No;No;1,385;Q1;144;286;592;18788;3764;583;5,47;65,69;44,48;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1981-2026";"Agronomy and Crop Science (Q1); Medicine (miscellaneous) (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Medicine" +2814;23311;"American Journal of Physiology - Heart and Circulatory Physiology";journal;"03636135, 15221539";"American Physiological Society";No;No;1,383;Q1;235;305;675;16291;2522;579;3,27;53,41;41,17;0;United States;Northern America;"American Physiological Society";"1977-2026";"Cardiology and Cardiovascular Medicine (Q1); Physiology (Q1); Physiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2815;21100980165;"China Petroleum Exploration";journal;"16727703";"Petroleum Industry Press";No;No;1,383;Q1;49;72;244;2851;1048;244;4,43;39,60;25,65;0;China;Asiatic Region;"Petroleum Industry Press";"2019-2026";"Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Geochemistry and Petrology (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Energy" +2816;21354;"Expert Opinion on Therapeutic Targets";journal;"14728222, 17447631";"Taylor and Francis Ltd.";No;No;1,383;Q1;120;69;272;6673;1322;231;4,52;96,71;47,47;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Clinical Biochemistry (Q1); Drug Discovery (Q1); Molecular Medicine (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +2817;19420;"International Journal of Human-Computer Interaction";journal;"15327590, 10447318";"Taylor and Francis Ltd.";No;No;1,383;Q1;110;1357;971;108740;9393;959;9,98;80,13;40,61;7;United States;Northern America;"Taylor and Francis Ltd.";"1989-1995, 1999-2026";"Computer Science Applications (Q1); Human Factors and Ergonomics (Q1); Human-Computer Interaction (Q1)";"Computer Science; Social Sciences" +2818;21101247455;"Journal of Substance Use and Addiction Treatment";journal;"29498759, 29498767";"Elsevier Inc.";No;No;1,383;Q1;132;193;613;9850;2184;601;3,09;51,04;59,15;1;United States;Northern America;"Elsevier Inc.";"2023-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +2819;16132;"Postharvest Biology and Technology";journal;"09255214";"Elsevier B.V.";No;No;1,383;Q1;186;541;1190;29897;9995;1189;8,06;55,26;47,97;0;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Agronomy and Crop Science (Q1); Food Science (Q1); Horticulture (Q1)";"Agricultural and Biological Sciences" +2820;19700175014;"Translational Oncology";journal;"19447124, 19365233";"Neoplasia Press, Inc.";Yes;No;1,383;Q1;84;405;876;21847;4301;865;5,03;53,94;44,87;0;United States;Northern America;"Neoplasia Press, Inc.";"2008-2026";"Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2821;19700173308;"Zoological Research";journal;"20958137";"Science Press";Yes;No;1,383;Q1;43;116;340;8661;1628;249;4,96;74,66;38,88;0;China;Asiatic Region;"Science Press";"2010-2026";"Animal Science and Zoology (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +2822;5600152888;"Journal of Genocide Research";journal;"14623528, 14699494";"Taylor and Francis Ltd.";No;No;1,382;Q1;42;72;104;4186;389;93;4,27;58,14;43,02;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1999-2026";"History (Q1); Law (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +2823;144669;"Journal of Intellectual Capital";journal;"17587468, 14691930";"Emerald Publishing";No;No;1,382;Q1;124;95;181;8387;1782;177;9,78;88,28;37,87;0;United Kingdom;Western Europe;"Emerald Publishing";"2000-2026";"Business, Management and Accounting (miscellaneous) (Q1); Education (Q1)";"Business, Management and Accounting; Social Sciences" +2824;21100780107;"Cell Regeneration";journal;"20459769";"Springer";Yes;Yes;1,381;Q1;31;52;104;3715;462;98;4,14;71,44;40,65;0;Singapore;Asiatic Region;"Springer";"2012-2026";"Developmental Biology (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2825;21101059780;"Cleaner Engineering and Technology";journal;"26667908";"Elsevier Ltd";Yes;No;1,381;Q1;59;252;490;17117;4645;488;8,86;67,92;28,39;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Engineering (miscellaneous) (Q1); Environmental Engineering (Q1)";"Engineering; Environmental Science" +2826;19700175165;"Frontiers in Neural Circuits";journal;"16625110";"Frontiers Media SA";Yes;No;1,381;Q1;94;57;300;4429;925;272;2,72;77,70;29,08;0;Switzerland;Western Europe;"Frontiers Media SA";"2007-2026";"Cognitive Neuroscience (Q1); Neuroscience (miscellaneous) (Q1); Sensory Systems (Q1); Cellular and Molecular Neuroscience (Q2)";"Neuroscience" +2827;14077;"Psychotherapy";journal;"19391536, 00333204";"American Psychological Association";No;No;1,381;Q1;103;50;153;1904;588;153;3,34;38,08;46,48;1;United States;Northern America;"American Psychological Association";"1973-2025";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +2828;21101097039;"Sociology of Race and Ethnicity";journal;"23326506, 23326492";"SAGE Publications Inc.";No;No;1,381;Q1;47;47;121;3009;435;111;3,03;64,02;54,12;1;United States;Northern America;"SAGE Publications Inc.";"2015-2026";"Anthropology (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +2829;5700168527;"Sustainability: Science, Practice, and Policy";journal;"15487733";"Taylor and Francis Ltd.";Yes;No;1,381;Q1;46;60;144;4557;959;142;5,80;75,95;48,28;3;United States;Northern America;"Taylor and Francis Ltd.";"2009-2026";"Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Environmental Science; Social Sciences" +2830;21101183779;"Contact";journal;"25152564";"SAGE Publications Inc.";Yes;No;1,380;Q1;15;17;61;1201;163;54;2,86;70,65;53,70;0;United States;Northern America;"SAGE Publications Inc.";"2018-2026";"Physiology (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +2831;28671;"Geographical Analysis";journal;"15384632, 00167363";"Wiley-Blackwell";No;No;1,380;Q1;84;44;116;2710;667;108;4,11;61,59;41,23;1;United States;Northern America;"Wiley-Blackwell";"1969-2026";"Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +2832;15452;"Journal of Counseling Psychology";journal;"19392168, 00220167";"American Psychological Association";No;No;1,380;Q1;181;62;181;3552;759;181;3,51;57,29;58,05;0;United States;Northern America;"American Psychological Association";"1954-2025";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Social Psychology (Q1)";"Medicine; Psychology" +2833;21100901136;"Bio-Design and Manufacturing";journal;"25228552, 20965524";"Zhejiang University";No;No;1,379;Q1;49;64;165;4527;1346;152;7,25;70,73;34,61;0;China;Asiatic Region;"Zhejiang University";"2018-2026";"Biomedical Engineering (Q1); Biotechnology (Q1); Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +2834;12000154478;"ChemSusChem";journal;"1864564X, 18645631";"Wiley-VCH Verlag";No;No;1,379;Q1;227;1197;1525;80997;10322;1512;6,29;67,67;34,70;4;Germany;Western Europe;"Wiley-VCH Verlag";"2008-2026";"Chemical Engineering (miscellaneous) (Q1); Energy (miscellaneous) (Q1); Environmental Chemistry (Q1); Materials Science (miscellaneous) (Q1)";"Chemical Engineering; Energy; Environmental Science; Materials Science" +2835;28558;"BMC Geriatrics";journal;"14712318";"BioMed Central Ltd";Yes;No;1,378;Q1;124;1068;2871;51413;14130;2867;4,46;48,14;52,98;7;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Geriatrics and Gerontology (Q1)";"Medicine" +2836;28611;"Geoforum";journal;"00167185";"Elsevier B.V.";No;No;1,378;Q1;158;233;596;19878;2773;573;4,31;85,31;52,05;4;United Kingdom;Western Europe;"Elsevier B.V.";"1970-2026";"Sociology and Political Science (Q1)";"Social Sciences" +2837;15453;"Journal of Cross-Cultural Psychology";journal;"00220221, 15525422";"SAGE Publications Inc.";No;No;1,378;Q1;143;63;152;4525;610;142;3,71;71,83;61,26;0;United States;Northern America;"SAGE Publications Inc.";"1970-2026";"Anthropology (Q1); Cultural Studies (Q1); Social Psychology (Q1)";"Psychology; Social Sciences" +2838;144820;"Journal of Happiness Studies";journal;"13894978, 15737780";"Springer Science and Business Media B.V.";No;No;1,378;Q1;126;144;428;10627;2039;428;4,30;73,80;52,04;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2001, 2003, 2005-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +2839;16816;"Journal of Psychiatry and Neuroscience";journal;"14882434, 11804882";"Canadian Medical Association";Yes;No;1,378;Q1;120;41;148;2140;541;108;3,68;52,20;50,79;0;Canada;Northern America;"Canadian Medical Association";"1991-2026";"Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)";"Medicine; Neuroscience" +2840;26405;"SIAM Journal on Control and Optimization";journal;"10957138, 03630129";"Society for Industrial and Applied Mathematics Publications";No;No;1,378;Q1;138;166;442;6530;1225;440;2,79;39,34;19,80;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"1969, 1976-2026";"Applied Mathematics (Q1); Control and Optimization (Q1)";"Mathematics" +2841;28302;"Digestive Endoscopy";journal;"09155635, 14431661";"John Wiley and Sons Inc";No;No;1,377;Q1;87;207;756;5370;1723;427;2,35;25,94;17,96;0;United States;Northern America;"John Wiley and Sons Inc";"1989-2026";"Gastroenterology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +2842;21101141438;"Engineering Microbiology";journal;"26673703";"KeAi Communications Co.";Yes;No;1,377;Q1;19;37;101;2111;622;91;6,29;57,05;46,91;0;Netherlands;Western Europe;"KeAi Communications Co.";"2021-2026";"Applied Microbiology and Biotechnology (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Bioengineering (Q1); Microbiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +2843;20928;"Environmental and Resource Economics";journal;"09246460, 15731502";"Springer Science and Business Media B.V.";No;No;1,377;Q1;129;123;303;7561;1365;299;4,23;61,47;26,85;9;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1991-2026";"Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1)";"Economics, Econometrics and Finance; Environmental Science" +2844;144744;"International Journal of Entrepreneurial Behaviour and Research";journal;"13552554";"Emerald Group Publishing Ltd.";No;No;1,377;Q1;110;179;364;16113;3032;352;7,72;90,02;42,35;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1995-2026";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +2845;21100239615;"Wiley Interdisciplinary Reviews: Energy and Environment";journal;"20418396, 2041840X";"John Wiley and Sons Ltd";No;No;1,377;Q1;64;19;116;2091;1052;115;8,47;110,05;23,68;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2026";"Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Environmental Science" +2846;21101038511;"Journal of Geophysical Research: Oceans";journal;"21699291, 21699275";"Wiley-Blackwell";No;No;1,376;Q1;224;530;1306;37923;4718;1296;3,25;71,55;33,40;0;United States;Northern America;"Wiley-Blackwell";"1986-1992, 1994-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geochemistry and Petrology (Q1); Geophysics (Q1); Oceanography (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences" +2847;28233;"Journal of Nursing Management";journal;"09660429, 13652834";"John Wiley and Sons Ltd";No;No;1,376;Q1;109;280;727;14953;4011;699;4,22;53,40;61,55;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1993-2026";"Leadership and Management (Q1)";"Nursing" +2848;27788;"Journal of Physical Oceanography";journal;"15200485, 00223670";"American Meteorological Society";Yes;No;1,376;Q1;180;139;484;8312;1472;480;2,84;59,80;27,96;0;United States;Northern America;"American Meteorological Society";"1969-2026";"Oceanography (Q1)";"Earth and Planetary Sciences" +2849;16432;"Journal of Telemedicine and Telecare";journal;"1357633X, 17581109";"SAGE Publications Ltd";No;No;1,376;Q1;100;184;336;7306;1657;329;4,93;39,71;56,12;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Health Informatics (Q1)";"Medicine" +2850;29559;"Journals of Gerontology - Series A Biological Sciences and Medical Sciences";journal;"10795006, 1758535X";"Oxford University Press";No;No;1,376;Q1;238;297;990;13975;4660;931;4,57;47,05;47,11;2;United Kingdom;Western Europe;"Oxford University Press";"1995-2026";"Geriatrics and Gerontology (Q1); Aging (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2851;20388;"Justice Quarterly";journal;"17459109, 07418825";"Taylor and Francis Ltd.";No;No;1,376;Q1;115;80;154;7006;627;151;3,61;87,58;44,20;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2026";"Law (Q1); Pathology and Forensic Medicine (Q1)";"Medicine; Social Sciences" +2852;21100817643;"Perspectives in Ecology and Conservation";journal;"25300644";"Associacao Brasileira de Ciencia Ecologica e Conservacao";Yes;Yes;1,376;Q1;55;40;136;2411;606;133;5,06;60,28;38,66;1;Brazil;Latin America;"Associacao Brasileira de Ciencia Ecologica e Conservacao";"2017-2026";"Ecology (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)";"Environmental Science" +2853;17500155127;"Sleep Medicine Clinics";journal;"1556407X, 15564088";"W.B. Saunders";No;No;1,376;Q1;69;59;181;3500;952;157;2,52;59,32;37,90;0;United States;Northern America;"W.B. Saunders";"2006-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Neuropsychology and Physiological Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +2854;21100437107;"Borsa Istanbul Review";journal;"22148450, 22148469";"Borsa Istanbul Anonim Sirketi";Yes;Yes;1,375;Q1;61;143;354;8929;3309;353;7,27;62,44;27,78;3;Turkey;Middle East;"Borsa Istanbul Anonim Sirketi";"2013-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +2855;17957;"Computers in Biology and Medicine";journal;"00104825, 18790534";"Elsevier Ltd";No;No;1,375;Q1;164;1750;3783;107539;32722;3774;8,35;61,45;32,90;1;United Kingdom;Western Europe;"Elsevier Ltd";"1970-2026";"Computer Science Applications (Q1); Health Informatics (Q1)";"Computer Science; Medicine" +2856;14993;"Current Opinion in Neurology";journal;"14736551, 13507540";"Lippincott Williams and Wilkins";No;No;1,375;Q1;147;111;294;5543;1333;265;4,48;49,94;39,33;0;United States;Northern America;"Lippincott Williams and Wilkins";"1993-2026";"Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +2857;21100823476;"Digital Communications and Networks";journal;"23528648, 24685925";"KeAi Communications Co.";Yes;Yes;1,375;Q1;68;173;420;8290;3364;413;7,60;47,92;28,41;0;China;Asiatic Region;"KeAi Communications Co.";"2015-2026";"Communication (Q1); Computer Networks and Communications (Q1); Hardware and Architecture (Q1)";"Computer Science; Social Sciences" +2858;88586;"Journal of Agricultural Economics";journal;"14779552, 0021857X";"Wiley-Blackwell";No;No;1,375;Q1;83;40;144;2533;785;139;5,45;63,33;32,38;5;United States;Northern America;"Wiley-Blackwell";"1928-1931, 1933-1938, 1940, 1946-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Economics and Econometrics (Q1)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +2859;5300152227;"ACS Chemical Biology";journal;"15548937, 15548929";"American Chemical Society";No;No;1,374;Q1;151;275;857;14334;3261;852;3,59;52,12;38,43;0;United States;Northern America;"American Chemical Society";"2006-2026";"Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2860;19634;"Crime and Justice";book series;"21530416, 01923234";"University of Chicago Press";No;No;1,374;Q1;58;10;31;1535;128;28;3,40;153,50;18,75;0;United States;Northern America;"University of Chicago Press";"2004-2026";"Sociology and Political Science (Q1)";"Social Sciences" +2861;24674;"Oikos";journal;"16000706, 00301299";"Wiley-Blackwell Publishing Ltd";Yes;No;1,374;Q1;217;242;514;19319;1905;508;3,44;79,83;34,45;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1973-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +2862;22411;"Inflammopharmacology";journal;"09254692, 15685608";"Springer Science and Business Media Deutschland GmbH";No;No;1,373;Q1;81;431;658;38834;4379;645;6,79;90,10;46,15;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1991-2026";"Immunology (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +2863;19600157309;"Journal of Hepato-Biliary-Pancreatic Sciences";journal;"18686982, 18686974";"Wiley-Blackwell";No;No;1,373;Q1;113;134;470;2670;1407;393;2,70;19,93;15,39;0;United States;Northern America;"Wiley-Blackwell";"2010-2026";"Hepatology (Q1); Surgery (Q1)";"Medicine" +2864;11000153782;"Management International Review";journal;"09388249, 18618901";"Springer Science and Business Media Deutschland GmbH";No;No;1,373;Q1;79;40;91;3914;608;88;6,40;97,85;33,04;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2026";"Business and International Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +2865;21100869487;"Forest Ecosystems";journal;"21975620, 20956355";"KeAi Communications Co.";Yes;No;1,372;Q1;50;114;240;9132;1475;237;5,66;80,11;31,53;3;China;Asiatic Region;"KeAi Communications Co.";"2014-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Forestry (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +2866;21466;"International Journal of Hygiene and Environmental Health";journal;"14384639, 1618131X";"Elsevier GmbH";No;No;1,372;Q1;133;170;383;10067;2003;378;4,97;59,22;54,62;7;Germany;Western Europe;"Elsevier GmbH";"2000-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2867;23127;"Journal of the ACM";journal;"00045411, 1557735X";"Association for Computing Machinery";No;No;1,372;Q1;154;43;130;2332;529;128;3,78;54,23;20,63;0;United States;Northern America;"Association for Computing Machinery";"1954-2025";"Artificial Intelligence (Q1); Control and Systems Engineering (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)";"Computer Science; Engineering" +2868;26796;"Socio-Economic Review";journal;"14751461";"Oxford University Press";No;No;1,372;Q1;86;87;245;6677;969;237;3,72;76,75;36,57;10;United Kingdom;Western Europe;"Oxford University Press";"2003, 2005-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Social Sciences" +2869;21101256250;"Waste Management Bulletin";journal;"29497507";"Elsevier B.V.";Yes;No;1,372;Q1;22;109;155;8290;1579;155;10,19;76,06;36,56;1;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Ecological Modeling (Q1); Environmental Science (miscellaneous) (Q1); Waste Management and Disposal (Q1)";"Environmental Science" +2870;21101063742;"Earth System Governance";journal;"25898116";"Elsevier B.V.";Yes;No;1,371;Q1;29;68;89;5484;504;80;4,72;80,65;50,86;4;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Political Science and International Relations (Q1); Social Sciences (miscellaneous) (Q1); Global and Planetary Change (Q2)";"Environmental Science; Social Sciences" +2871;15057;"Electronic Commerce Research and Applications";journal;"15674223";"Elsevier B.V.";No;No;1,371;Q1;116;81;306;6008;2641;303;8,07;74,17;38,66;0;Netherlands;Western Europe;"Elsevier B.V.";"2002-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Management of Technology and Innovation (Q1); Marketing (Q1)";"Business, Management and Accounting; Computer Science" +2872;21101071061;"Neurobiology of Language";journal;"26414368";"MIT Press";Yes;No;1,371;Q1;23;5;101;551;333;99;3,27;110,20;62,50;0;United States;Northern America;"MIT Press";"2020-2026";"Linguistics and Language (Q1); Neurology (Q1)";"Neuroscience; Social Sciences" +2873;26884;"Current Opinion in Colloid and Interface Science";journal;"18790399, 13590294";"Elsevier Ltd";No;No;1,370;Q1;186;59;193;4861;1570;185;6,99;82,39;35,20;0;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Colloid and Surface Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Polymers and Plastics (Q1); Surfaces and Interfaces (Q1)";"Chemical Engineering; Chemistry; Materials Science; Physics and Astronomy" +2874;21101039808;"Journal of Immunotherapy and Precision Oncology";journal;"26662345, 2590017X";"Innovative Healthcare Institute";Yes;No;1,370;Q1;15;33;78;1107;272;69;3,00;33,55;44,44;0;United States;Northern America;"Innovative Healthcare Institute";"2018-2026";"Immunology (Q1); Immunology and Allergy (Q1); Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +2875;13260;"Biological Research";journal;"07176287, 07169760";"BioMed Central Ltd";Yes;Yes;1,369;Q1;80;71;199;4824;1176;198;5,55;67,94;45,20;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1992-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +2876;21101250063;"Global Mental Health";journal;"20544251";"Cambridge University Press";Yes;No;1,369;Q1;26;166;268;9335;1140;262;4,12;56,23;58,28;2;United Kingdom;Western Europe;"Cambridge University Press";"2018, 2020-2026";"Health Policy (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +2877;21100943537;"Materials Today Sustainability";journal;"25892347";"Elsevier Ltd";Yes;No;1,369;Q1;58;214;949;24967;9142;948;10,07;116,67;30,70;0;United Kingdom;Western Europe;"Elsevier Ltd";"2018-2026";"Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Chemistry; Energy; Materials Science" +2878;19393;"BJU International";journal;"14644096, 1464410X";"John Wiley and Sons Inc";No;No;1,368;Q1;182;405;786;8169;2559;565;3,33;20,17;26,14;2;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1929-1994, 1996-2026";"Urology (Q1)";"Medicine" +2879;27155;"BMC Nursing";journal;"14726955";"BioMed Central Ltd";Yes;No;1,368;Q1;72;1508;1784;70730;10369;1783;5,50;46,90;63,79;4;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +2880;21100338351;"IEEE Transactions on Cloud Computing";journal;"21687161";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,368;Q1;78;107;584;4992;3612;582;5,97;46,65;27,12;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +2881;13500;"Developmental Psychology";journal;"19390599, 00121649";"American Psychological Association";No;No;1,367;Q1;265;182;595;11978;2154;594;2,82;65,81;66,42;2;United States;Northern America;"American Psychological Association";"1969-2026";"Demography (Q1); Developmental and Educational Psychology (Q1); Life-span and Life-course Studies (Q1)";"Psychology; Social Sciences" +2882;21100349513;"Ophthalmology and Therapy";journal;"21936528, 21938245";"";Yes;No;1,367;Q1;49;200;615;8800;2631;575;4,22;44,00;40,36;0;United Kingdom;Western Europe;"";"2014-2026";"Ophthalmology (Q1)";"Medicine" +2883;3100147501;"Clinical Research in Cardiology";journal;"18610692, 18610684";"Springer Science and Business Media Deutschland GmbH";No;No;1,366;Q1;92;307;532;9279;1787;459;3,45;30,22;27,27;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +2884;17497;"British Journal of Sociology";journal;"00071315, 14684446";"Wiley-Blackwell Publishing Ltd";No;No;1,365;Q1;124;106;170;6246;713;161;3,21;58,92;46,80;7;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1965-1977, 1979-1984, 1987-2026";"Sociology and Political Science (Q1)";"Social Sciences" +2885;12866;"Cognitive, Affective and Behavioral Neuroscience";journal;"15307026, 1531135X";"Springer";No;No;1,365;Q1;120;127;266;11006;1062;265;3,58;86,66;51,85;0;United States;Northern America;"Springer";"2001-2026";"Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1)";"Neuroscience" +2886;21101132925;"IEEE Open Journal of the Computer Society";journal;"26441268";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,364;Q1;29;159;114;7294;1077;113;8,29;45,87;18,39;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Computer Science (miscellaneous) (Q1)";"Computer Science" +2887;17533;"Journal of International Money and Finance";journal;"02615606";"Elsevier B.V.";No;No;1,364;Q1;126;152;486;9251;2238;479;4,20;60,86;29,37;18;United Kingdom;Western Europe;"Elsevier B.V.";"1982-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +2888;21100854147;"Journal of Pathology: Clinical Research";journal;"20564538";"Wiley-Blackwell Publishing Ltd";Yes;No;1,364;Q1;42;49;140;1919;581;138;4,22;39,16;40,94;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2015-2026";"Pathology and Forensic Medicine (Q1)";"Medicine" +2889;4700152204;"Structural Health Monitoring";journal;"17413168, 14759217";"SAGE Publications Ltd";No;No;1,364;Q1;106;513;601;24089;5028;600;7,47;46,96;25,94;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2026";"Biophysics (Q1); Mechanical Engineering (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering" +2890;14838;"Canadian Journal of Psychiatry";journal;"14970015, 07067437";"SAGE Publications Inc.";No;No;1,363;Q1;150;101;263;4608;954;210;3,17;45,62;51,55;4;Canada;Northern America;"SAGE Publications Inc.";"1979-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +2891;21100363813;"Current Opinion in Behavioral Sciences";journal;"23521546, 23521554";"Elsevier Ltd";No;No;1,363;Q1;96;115;269;6940;1310;262;4,51;60,35;43,36;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +2892;23194;"Indiana University Mathematics Journal";journal;"00222518";"Department of Mathematics, Indiana University";No;No;1,363;Q1;79;54;210;1789;277;210;1,17;33,13;10,53;0;United States;Northern America;"Department of Mathematics, Indiana University";"1970-1972, 1974-1978, 1980, 1995-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +2893;20323;"Journal of Education Policy";journal;"02680939, 14645106";"Routledge";No;No;1,363;Q1;100;71;146;4873;782;146;5,21;68,63;55,17;1;United Kingdom;Western Europe;"Routledge";"1986-2026";"Education (Q1)";"Social Sciences" +2894;25123;"Mathematische Zeitschrift";journal;"14328232, 00255874";"Springer New York";No;No;1,363;Q1;73;252;847;8112;997;846;1,12;32,19;19,28;0;Germany;Western Europe;"Springer New York";"1918-1940, 1942-1944, 1947-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +2895;21100852202;"Paleoceanography and Paleoclimatology";journal;"25724517, 25724525";"John Wiley and Sons Inc";No;No;1,363;Q1;154;139;312;13895;985;301;2,86;99,96;35,91;0;United States;Northern America;"John Wiley and Sons Inc";"2018-2026";"Atmospheric Science (Q1); Oceanography (Q1); Paleontology (Q1)";"Earth and Planetary Sciences" +2896;22786;"Policy Studies Journal";journal;"0190292X, 15410072";"Wiley-Blackwell Publishing Ltd";No;No;1,363;Q1;102;122;130;8871;720;118;5,20;72,71;42,26;7;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1972-2026";"Management, Monitoring, Policy and Law (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Environmental Science; Social Sciences" +2897;21100386467;"Sleep Health";journal;"23527218";"Elsevier Inc.";No;No;1,363;Q1;58;130;373;5514;1594;336;4,43;42,42;57,61;1;United States;Northern America;"Elsevier Inc.";"2015-2026";"Behavioral Neuroscience (Q1); Health (social science) (Q1); Neuropsychology and Physiological Psychology (Q1); Social Sciences (miscellaneous) (Q1)";"Neuroscience; Psychology; Social Sciences" +2898;29265;"Clinical Lung Cancer";journal;"19380690, 15257304";"Elsevier Inc.";No;No;1,362;Q1;83;185;454;5602;1632;431;3,63;30,28;36,94;0;United States;Northern America;"Elsevier Inc.";"2000-2026";"Oncology (Q1); Pulmonary and Respiratory Medicine (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2899;21101158576;"Harvard Kennedy School Misinformation Review";journal;"27661652";"Harvard Kennedy School";Yes;Yes;1,362;Q1;37;22;81;952;446;68;5,10;43,27;40,63;0;United States;Northern America;"Harvard Kennedy School";"2020-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +2900;5000158708;"Accounting Horizons";journal;"08887993, 15587975";"American Accounting Association";No;No;1,361;Q1;98;50;120;2370;430;118;3,31;47,40;34,65;0;United States;Northern America;"American Accounting Association";"1996-2025";"Accounting (Q1)";"Business, Management and Accounting" +2901;16891;"BioFactors";journal;"09516433, 18728081";"Wiley-Blackwell";No;No;1,361;Q1;125;119;245;8308;1543;238;5,35;69,82;50,46;0;United States;Northern America;"Wiley-Blackwell";"1988-1995, 1997-2026";"Biochemistry (Q1); Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2902;19500157074;"Building Simulation";journal;"19968744, 19963599";"Tsinghua University";No;No;1,361;Q1;63;173;410;10153;2798;400;6,86;58,69;33,77;0;China;Asiatic Region;"Tsinghua University";"2008-2026";"Building and Construction (Q1); Energy (miscellaneous) (Q1)";"Energy; Engineering" +2903;21100792556;"Composites Communications";journal;"24522139";"Elsevier Ltd";No;No;1,361;Q1;82;490;1009;23820;8260;1008;9,00;48,61;33,80;0;United Kingdom;Western Europe;"Elsevier Ltd";"2016-2026";"Ceramics and Composites (Q1); Materials Chemistry (Q1); Mechanics of Materials (Q1); Polymers and Plastics (Q1)";"Engineering; Materials Science" +2904;24345;"Dermatology";journal;"10188665, 14219832";"S. Karger AG";No;No;1,361;Q1;113;117;369;3372;1271;345;3,64;28,82;54,70;0;Switzerland;Western Europe;"S. Karger AG";"1893, 1895-2026";"Dermatology (Q1)";"Medicine" +2905;21100782250;"ERJ Open Research";journal;"23120541";"European Respiratory Society";Yes;No;1,361;Q1;58;523;1028;16942;3544;767;3,28;32,39;42,81;3;Switzerland;Western Europe;"European Respiratory Society";"2015-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +2906;21101041845;"Journal of Geovisualization and Spatial Analysis";journal;"25098829, 25098810";"Springer Nature";No;No;1,361;Q1;31;37;104;2386;721;103;7,52;64,49;28,75;0;United Kingdom;Western Europe;"Springer Nature";"2017-2026";"Computers in Earth Sciences (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +2907;18059;"Neuroscientist";journal;"10738584, 10894098";"SAGE Publications Inc.";No;No;1,361;Q1;155;52;191;3510;688;158;3,44;67,50;42,20;0;United States;Northern America;"SAGE Publications Inc.";"1995-2026";"Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)";"Medicine; Neuroscience" +2908;21101317654;"Smart Construction and Sustainable Cities";journal;"27319032";"Springer Nature";Yes;No;1,361;Q1;14;31;41;1344;335;36;8,17;43,35;20,99;0;Switzerland;Western Europe;"Springer Nature";"2023-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Environmental Engineering (Q1)";"Engineering; Environmental Science" +2909;21101167511;"Advanced Intelligent Systems";journal;"26404567";"John Wiley and Sons Inc";Yes;No;1,360;Q1;37;434;595;25814;4511;590;7,58;59,48;27,99;2;United States;Northern America;"John Wiley and Sons Inc";"2019-2020, 2022-2026";"Artificial Intelligence (Q1); Computer Vision and Pattern Recognition (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Human-Computer Interaction (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1)";"Computer Science; Engineering; Materials Science" +2910;21100248812;"Biomedical Journal";journal;"23202890, 23194170";"Elsevier B.V.";Yes;No;1,360;Q1;62;81;260;4975;1379;222;5,52;61,42;39,07;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +2911;26239;"Quaternary Science Reviews";journal;"02773791";"Elsevier Ltd";No;No;1,360;Q1;230;423;1199;43862;4321;1158;3,35;103,69;34,50;2;United Kingdom;Western Europe;"Elsevier Ltd";"1982-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Geology (Q1); Global and Planetary Change (Q2)";"Agricultural and Biological Sciences; Arts and Humanities; Earth and Planetary Sciences; Environmental Science; Social Sciences" +2912;21101163253;"Sustainable Horizons";journal;"27727378";"Elsevier B.V.";No;No;1,360;Q1;24;40;104;3313;814;85;7,64;82,83;38,99;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +2913;12600154758;"World Journal of Pediatrics";journal;"17088569, 18670687";"Zhejiang University School of Medicine Children's Hospital";No;No;1,360;Q1;56;133;355;6599;1712;286;5,73;49,62;48,16;2;China;Asiatic Region;"Zhejiang University School of Medicine Children's Hospital";"2008-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +2914;16500154708;"Annals of Physical and Rehabilitation Medicine";journal;"18770657, 18770665";"Elsevier Masson s.r.l.";No;No;1,359;Q1;76;84;236;3223;947;159;3,52;38,37;46,45;1;France;Western Europe;"Elsevier Masson s.r.l.";"2009-2026";"Orthopedics and Sports Medicine (Q1); Rehabilitation (Q1)";"Medicine" +2915;1000147124;"European Union Politics";journal;"17412757, 14651165";"SAGE Publications Ltd";No;No;1,359;Q1;83;37;115;2253;411;111;3,16;60,89;45,71;5;United Kingdom;Western Europe;"SAGE Publications Ltd";"2000-2026";"Demography (Q1); Health (social science) (Q1); Political Science and International Relations (Q1)";"Social Sciences" +2916;23915;"Analytical Chemistry";journal;"15206882, 00032700";"American Chemical Society";No;No;1,358;Q1;390;2976;6721;136471;46850;6703;6,95;45,86;40,80;7;United States;Northern America;"American Chemical Society";"1947-2026";"Analytical Chemistry (Q1)";"Chemistry" +2917;21101030810;"JMIR Public Health and Surveillance";journal;"23692960";"JMIR Publications Inc.";Yes;No;1,358;Q1;71;208;821;10237;3624;813;4,50;49,22;48,97;1;Canada;Northern America;"JMIR Publications Inc.";"2015-2026";"Health Informatics (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2918;21101102903;"Journal of Intelligent and Connected Vehicles";journal;"23999802";"Tsinghua University Press";Yes;No;1,358;Q1;23;24;77;1018;532;73;6,73;42,42;31,30;0;United Kingdom;Western Europe;"Tsinghua University Press";"2018-2025";"Automotive Engineering (Q1); Control and Systems Engineering (Q1); Mechanical Engineering (Q1); Transportation (Q1)";"Engineering; Social Sciences" +2919;21333;"European Journal of Pharmacology";journal;"00142999, 18790712";"Elsevier B.V.";No;No;1,357;Q1;217;1026;1896;73891;11138;1896;5,96;72,02;48,04;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Pharmacology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +2920;29269;"Journal of Biogeography";journal;"13652699, 03050270";"Wiley-Blackwell Publishing Ltd";No;No;1,357;Q1;191;285;555;25255;2172;520;3,90;88,61;32,13;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1948, 1974, 1979-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +2921;23985;"Neurobiology of Aging";journal;"01974580, 15581497";"Elsevier Inc.";No;No;1,357;Q1;228;125;509;9381;2096;505;4,23;75,05;48,86;0;United States;Northern America;"Elsevier Inc.";"1980-2026";"Developmental Biology (Q1); Geriatrics and Gerontology (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1); Aging (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +2922;19500157064;"School Mental Health";journal;"18662625, 18662633";"Springer New York";No;No;1,357;Q1;59;120;255;7910;1196;255;3,87;65,92;68,58;1;United States;Northern America;"Springer New York";"2009-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +2923;21100977383;"Annals of Gastroenterological Surgery";journal;"24750328";"Wiley-Blackwell Publishing Ltd";Yes;No;1,356;Q1;43;169;325;4868;1226;300;3,73;28,80;10,92;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2017-2026";"Gastroenterology (Q1); Surgery (Q1)";"Medicine" +2924;19621;"BMC Public Health";journal;"14712458";"BioMed Central Ltd";Yes;No;1,356;Q1;225;4380;8402;225653;40904;8388;4,58;51,52;52,54;59;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2925;21101145560;"Computer Methods and Programs in Biomedicine Update";journal;"26669900";"Elsevier B.V.";Yes;No;1,356;Q1;29;51;111;2744;1173;107;13,03;53,80;28,77;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Biomedical Engineering (Q1); Computer Science Applications (Q1); Computer Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Computer Science; Engineering; Medicine" +2926;21100907125;"iScience";journal;"25890042";"Elsevier Inc.";Yes;No;1,356;Q1;113;2612;7647;183233;36526;7600;4,50;70,15;40,82;13;United States;Northern America;"Elsevier Inc.";"2018-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +2927;21100197156;"Atmospheric Measurement Techniques";journal;"18671381, 18678548";"Copernicus Publications";Yes;No;1,355;Q1;133;400;1075;22276;4338;1074;3,88;55,69;28,29;2;Germany;Western Europe;"Copernicus Publications";"2009-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +2928;23752;"Hypertension Research";journal;"13484214, 09169636";"Springer Nature";No;No;1,355;Q1;113;486;1125;12616;3625;674;3,34;25,96;33,43;3;United Kingdom;Western Europe;"Springer Nature";"1992-2026";"Cardiology and Cardiovascular Medicine (Q1); Internal Medicine (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2929;19600157322;"Journal of Cheminformatics";journal;"17582946";"BioMed Central Ltd";Yes;No;1,355;Q1;101;180;350;9231;2652;337;7,84;51,28;30,25;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2009-2026";"Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q1); Library and Information Sciences (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Computer Science; Social Sciences" +2930;145202;"Journal of Mathematics Teacher Education";journal;"13864416, 15731820";"Springer Science and Business Media B.V.";No;No;1,355;Q1;57;106;121;6463;443;107;3,55;60,97;59,09;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2005-2026";"Education (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics; Social Sciences" +2931;21100875643;"Materials Chemistry Frontiers";journal;"20521537";"Royal Society of Chemistry";No;No;1,355;Q1;105;226;1035;14940;6959;1030;7,69;66,11;37,99;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2017-2026";"Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1)";"Materials Science" +2932;14033;"Psychology of Sport and Exercise";journal;"14690292";"Elsevier B.V.";No;No;1,355;Q1;133;195;488;13723;2405;480;4,59;70,37;41,82;0;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Applied Psychology (Q1); Sports Science (Q1)";"Health Professions; Psychology" +2933;23029;"Retrovirology";journal;"17424690";"BioMed Central Ltd";Yes;No;1,355;Q1;104;12;66;484;244;60;3,81;40,33;50,91;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Infectious Diseases (Q1); Virology (Q1)";"Immunology and Microbiology; Medicine" +2934;21241;"Drugs and Aging";journal;"1170229X, 11791969";"";No;No;1,354;Q1;119;97;244;6182;1166;240;4,50;63,73;47,07;0;Switzerland;Western Europe;"";"1991-2026";"Geriatrics and Gerontology (Q1); Pharmacology (medical) (Q1)";"Medicine" +2935;21245;"International Immunology";journal;"14602377, 09538178";"Oxford University Press";No;No;1,354;Q1;156;56;158;4005;634;154;3,67;71,52;31,01;0;United Kingdom;Western Europe;"Oxford University Press";"1989-2026";"Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1); Immunology (Q2)";"Immunology and Microbiology; Medicine" +2936;22432;"International Immunopharmacology";journal;"18781705, 15675769";"Elsevier B.V.";No;No;1,354;Q1;165;1859;4625;116039;26719;4596;5,64;62,42;44,71;4;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Immunology and Allergy (Q1); Pharmacology (Q1); Immunology (Q2)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +2937;19617;"Antiviral Research";journal;"01663542, 18729096";"Elsevier B.V.";No;No;1,353;Q1;162;170;545;10253;2355;543;4,29;60,31;43,95;1;Netherlands;Western Europe;"Elsevier B.V.";"1959, 1981-2026";"Pharmacology (Q1); Virology (Q1)";"Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +2938;21101136808;"Bioinformatics Advances";journal;"26350041";"Oxford University Press";Yes;No;1,353;Q1;23;313;479;10938;1643;479;2,73;34,95;34,35;1;United Kingdom;Western Europe;"Oxford University Press";"2021-2026";"Computer Science Applications (Q1); Genetics (Q1); Structural Biology (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Computer Science" +2939;12868;"Cognitive Behaviour Therapy";journal;"16512316, 16506073";"Taylor and Francis A.S.";No;No;1,352;Q1;83;98;106;5530;473;103;4,22;56,43;55,73;1;Sweden;Western Europe;"Taylor and Francis A.S.";"2002-2026";"Clinical Psychology (Q1)";"Psychology" +2940;14117;"European Journal of Social Psychology";journal;"10990992, 00462772";"John Wiley and Sons Ltd";No;No;1,352;Q1;146;91;271;6975;1042;269;3,48;76,65;51,17;3;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1971-2026";"Social Psychology (Q1)";"Psychology" +2941;21101209857;"IEEE Journal on Selected Areas in Information Theory";journal;"26418770";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,352;Q1;34;36;178;1681;603;168;2,66;46,69;20,83;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Applied Mathematics (Q1); Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Media Technology (Q1)";"Computer Science; Engineering; Mathematics" +2942;144971;"Linguistic Inquiry";journal;"15309150, 00243892";"MIT Press";No;No;1,352;Q1;95;26;92;1638;135;90;1,50;63,00;32,43;0;United States;Northern America;"MIT Press";"1996, 1998-2025";"Linguistics and Language (Q1)";"Social Sciences" +2943;27035;"Progress in Solid State Chemistry";journal;"00796786";"Elsevier Ltd";No;No;1,352;Q1;66;21;60;2973;571;59;9,82;141,57;33,01;0;United Kingdom;Western Europe;"Elsevier Ltd";"1964-1965, 1967, 1971-1973, 1975-1976, 1978-1991, 1993, 1995-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +2944;21101030210;"Research on Child and Adolescent Psychopathology";journal;"27307166, 27307174";"Springer New York";No;No;1,352;Q1;177;142;381;10420;1382;380;3,37;73,38;62,27;0;United States;Northern America;"Springer New York";"2021-2026";"Developmental and Educational Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +2945;21754;"Annals of the New York Academy of Sciences";journal;"17496632, 00778923";"John Wiley and Sons Inc";No;No;1,350;Q1;312;284;511;21924;2879;492;4,96;77,20;46,16;3;United States;Northern America;"John Wiley and Sons Inc";"1879, 1882-1883, 1889-1890, 1892-1894, 1896-1901, 1904-1906, 1908-1909, 1911-1912, 1914-1916, 1918, 1920, 1927, 1929-1933, 1936-1937, 1939-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); History and Philosophy of Science (Q1); Neuroscience (miscellaneous) (Q1)";"Arts and Humanities; Biochemistry, Genetics and Molecular Biology; Neuroscience" +2946;21101210369;"Chemical and Biomedical Imaging";journal;"28323637";"American Chemical Society";Yes;No;1,350;Q1;19;87;154;5311;911;148;5,92;61,05;39,77;0;United States;Northern America;"American Chemical Society";"2023-2026";"Analytical Chemistry (Q1); Biomedical Engineering (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Chemistry; Engineering; Medicine" +2947;14155;"Molecular Genetics and Metabolism";journal;"10967206, 10967192";"Academic Press Inc.";No;No;1,350;Q1;134;184;400;7848;1522;371;3,63;42,65;57,63;0;United States;Northern America;"Academic Press Inc.";"1998-2026";"Biochemistry (Q1); Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Genetics (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2948;20723;"Clinical and Experimental Allergy";journal;"09547894, 13652222";"Wiley-Blackwell Publishing Ltd";No;No;1,350;Q2;182;231;503;5243;1386;217;2,72;22,70;49,58;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1971-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +2949;21101149137;"Frontiers in Genome Editing";journal;"26733439";"Frontiers Media SA";Yes;No;1,349;Q1;32;50;150;3661;983;139;6,45;73,22;37,16;0;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Biotechnology (Q1); Genetics (Q1)";"Biochemistry, Genetics and Molecular Biology" +2950;21101096774;"Intelligent Medicine";journal;"20969376, 26671026";"Chinese Medical Association";Yes;No;1,349;Q1;18;44;92;1910;818;78;8,75;43,41;35,55;0;China;Asiatic Region;"Chinese Medical Association";"2021-2026";"Artificial Intelligence (Q1); Biomedical Engineering (Q1); Health Informatics (Q1); Medicine (miscellaneous) (Q1)";"Computer Science; Engineering; Medicine" +2951;21100463052;"NanoImpact";journal;"24520748";"Elsevier B.V.";No;No;1,349;Q1;57;62;163;4192;1274;159;7,94;67,61;47,99;1;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Materials Science (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering; Materials Science; Medicine; Social Sciences" +2952;21101301503;"Total Environment Advances";journal;"29503957";"Elsevier B.V.";No;No;1,349;Q1;24;21;112;1799;907;112;7,96;85,67;35,94;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +2953;23140;"Current Opinion in Lipidology";journal;"14736535, 09579672";"Lippincott Williams and Wilkins";No;No;1,348;Q1;142;49;145;2205;622;133;4,13;45,00;33,98;0;United States;Northern America;"Lippincott Williams and Wilkins";"1990-2026";"Cardiology and Cardiovascular Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q1); Genetics (Q1); Nutrition and Dietetics (Q1); Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +2954;28467;"Economic Modelling";journal;"02649993";"Elsevier B.V.";No;No;1,348;Q1;133;335;957;19058;5874;953;6,50;56,89;32,18;8;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +2955;21101021537;"International Journal of Thermofluids";journal;"26662027";"Elsevier B.V.";Yes;No;1,348;Q1;58;496;835;24045;7390;833;9,11;48,48;18,25;1;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Condensed Matter Physics (Q1); Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1)";"Chemical Engineering; Engineering; Physics and Astronomy" +2956;12369;"Journal of Rare Earths";journal;"10020721";"Editorial Office of Chinese Rare Earths";No;No;1,348;Q1;85;303;727;15978;6339;727;9,78;52,73;35,37;1;China;Asiatic Region;"Editorial Office of Chinese Rare Earths";"1993-2026";"Chemistry (miscellaneous) (Q1); Geochemistry and Petrology (Q1)";"Chemistry; Earth and Planetary Sciences" +2957;16400154731;"School Leadership and Management";journal;"13632434, 13642626";"Brill Academic Publishers";No;No;1,348;Q1;62;27;96;1335;571;80;5,45;49,44;63,77;0;United Kingdom;Western Europe;"Brill Academic Publishers";"1996-2026";"Arts and Humanities (miscellaneous) (Q1); Education (Q1); Strategy and Management (Q1)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +2958;19804;"CIRP Annals";journal;"00078506, 17260604";"Elsevier Inc.";No;No;1,347;Q1;202;147;397;5637;2254;397;5,69;38,35;15,58;0;United States;Northern America;"Elsevier Inc.";"1964, 1969-2025";"Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1)";"Engineering" +2959;21100931381;"High Voltage";journal;"23977264";"John Wiley & Sons Inc.";Yes;No;1,347;Q1;54;156;359;5584;2364;355;6,63;35,79;29,71;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2016-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering" +2960;25688;"Journal of Endodontics";journal;"00992399, 18783554";"Elsevier Inc.";No;No;1,347;Q1;199;210;565;7627;2495;519;4,23;36,32;42,39;0;United States;Northern America;"Elsevier Inc.";"1975-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +2961;19700187623;"Journal of Marketing Management";journal;"0267257X, 14721376";"Taylor and Francis Ltd.";No;No;1,347;Q1;105;90;244;8430;1171;196;4,54;93,67;62,03;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-1997, 2001, 2006, 2008-2026";"Marketing (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +2962;11400153332;"Asia Pacific Journal of Human Resources";journal;"10384111, 17447941";"Wiley-Blackwell";No;No;1,346;Q1;52;37;119;3102;762;119;6,25;83,84;56,30;0;United States;Northern America;"Wiley-Blackwell";"1966-1967, 1970, 1972-1974, 1976, 1978-1999, 2007-2026";"Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting" +2963;21101189036;"Chemical Synthesis";journal;"27695247";"OAE Publishing Inc.";No;No;1,346;Q1;20;58;147;4549;800;135;5,62;78,43;32,46;0;United States;Northern America;"OAE Publishing Inc.";"2021-2025";"Chemistry (miscellaneous) (Q1)";"Chemistry" +2964;28040;"International Journal of Geographical Information Science";journal;"13658816, 13658824";"Taylor and Francis Ltd.";No;No;1,346;Q1;149;162;304;9523;2122;302;6,89;58,78;31,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Geography, Planning and Development (Q1); Information Systems (Q1); Library and Information Sciences (Q1)";"Computer Science; Social Sciences" +2965;26032;"Endocrine Practice";journal;"1530891X, 19342403";"Elsevier B.V.";No;No;1,345;Q1;111;253;494;11168;1830;443;3,45;44,14;48,90;1;United States;Northern America;"Elsevier B.V.";"1996-2026";"Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2966;22695;"Remedial and Special Education";journal;"15384756, 07419325";"SAGE Publications Inc.";No;No;1,345;Q1;89;69;100;3455;403;100;3,21;50,07;70,12;0;United States;Northern America;"SAGE Publications Inc.";"1984-2026";"Education (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +2967;23295;"Environmental Modelling and Software";journal;"18736726, 13648152";"Elsevier Ltd";No;No;1,344;Q1;190;398;685;25340;4124;680;5,95;63,67;30,86;3;United Kingdom;Western Europe;"Elsevier Ltd";"1997-2026";"Ecological Modeling (Q1); Environmental Engineering (Q1); Modeling and Simulation (Q1); Software (Q1)";"Computer Science; Environmental Science; Mathematics" +2968;21100466461;"Friction";journal;"22237704, 22237690";"Tsinghua University Press";Yes;Yes;1,344;Q1;69;168;445;11738;3655;440;8,15;69,87;28,17;0;China;Asiatic Region;"Tsinghua University Press";"2013-2026";"Mechanical Engineering (Q1); Surfaces, Coatings and Films (Q1)";"Engineering; Materials Science" +2969;21101183576;"Frontiers in Bioinformatics";journal;"26737647";"Frontiers Media SA";Yes;No;1,344;Q1;24;153;311;8012;1589;290;3,51;52,37;35,83;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Biochemistry (Q1); Biotechnology (Q1); Computational Mathematics (Q1); Statistics and Probability (Q1); Structural Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Mathematics" +2970;22129;"Genes and Immunity";journal;"14664879, 14765470";"Springer Nature";No;No;1,344;Q1;117;56;141;2997;572;133;4,37;53,52;42,62;0;United Kingdom;Western Europe;"Springer Nature";"1999-2017, 2019-2026";"Genetics (Q1); Genetics (clinical) (Q1); Immunology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +2971;22380;"International Journal of Infectious Diseases";journal;"12019712, 18783511";"Elsevier B.V.";Yes;No;1,344;Q1;146;396;1434;10023;5492;1342;4,05;25,31;46,03;8;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q1)";"Medicine" +2972;25833;"International Political Science Review";journal;"01925121, 1460373X";"SAGE Publications Ltd";No;No;1,344;Q1;76;80;131;4051;569;127;3,85;50,64;38,26;5;United Kingdom;Western Europe;"SAGE Publications Ltd";"1980-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +2973;24245;"Journal of the American Academy of Dermatology";journal;"10976787, 01909622";"Elsevier Inc.";No;No;1,344;Q1;270;1153;3114;12637;7892;2277;2,51;10,96;51,10;3;United States;Northern America;"Elsevier Inc.";"1979-2026";"Dermatology (Q1)";"Medicine" +2974;12278;"Superconductor Science and Technology";journal;"09532048, 13616668";"IOP Publishing Ltd.";No;No;1,344;Q1;129;262;776;12508;2672;762;3,18;47,74;23,79;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1988-2025";"Ceramics and Composites (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science; Physics and Astronomy" +2975;500147002;"Worldviews on Evidence-Based Nursing";journal;"1545102X, 17416787";"Wiley-Blackwell Publishing Ltd";No;No;1,344;Q1;68;104;188;5043;970;168;5,45;48,49;69,46;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2004-2026";"Medicine (miscellaneous) (Q1); Nursing (miscellaneous) (Q1)";"Medicine; Nursing" +2976;30611;"Proceedings of the ACM SIGMOD International Conference on Management of Data";conference and proceedings;"07308078";"Association for Computing Machinery";No;No;1,344;-;191;158;380;3698;1514;373;2,53;23,41;22,09;0;United States;Northern America;"Association for Computing Machinery";"1970-1972, 1974-1989, 1991-1994, 1996, 1999, 2001-2008, 2010-2025";"Information Systems; Software";"Computer Science" +2977;4700152871;"Bernoulli";journal;"13507265";"Bernoulli Society for Mathematical Statistics and Probability";No;No;1,343;Q1;85;135;358;5393;717;358;1,82;39,95;23,51;0;Netherlands;Western Europe;"Bernoulli Society for Mathematical Statistics and Probability";"1995-2026";"Statistics and Probability (Q1)";"Mathematics" +2978;5000158308;"CBE Life Sciences Education";journal;"19317913";"American Society for Cell Biology";Yes;No;1,343;Q1;106;62;244;3680;1108;241;3,82;59,35;69,65;0;United States;Northern America;"American Society for Cell Biology";"2006-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Education (Q1)";"Biochemistry, Genetics and Molecular Biology; Social Sciences" +2979;21101165565;"Implementation Science Communications";journal;"26622211";"BioMed Central Ltd";Yes;No;1,343;Q1;34;136;422;6896;1572;408;3,37;50,71;65,15;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2020-2026";"Health Informatics (Q1); Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2980;21100404585;"One Health";journal;"23527714";"Elsevier B.V.";Yes;No;1,343;Q1;52;337;509;17552;2770;492;5,34;52,08;45,41;4;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +2981;21100463842;"Climate Services";journal;"24058807";"Elsevier B.V.";Yes;No;1,342;Q1;47;99;237;6157;1404;230;5,70;62,19;31,65;11;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Atmospheric Science (Q1); Global and Planetary Change (Q2)";"Earth and Planetary Sciences; Environmental Science" +2982;21101055470;"Environmental Challenges";journal;"26670100";"Elsevier B.V.";Yes;No;1,342;Q1;58;314;639;23771;5040;639;7,44;75,70;34,23;2;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Environmental Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Global and Planetary Change (Q2)";"Environmental Science" +2983;21100465205;"European Research on Management and Business Economics";journal;"24448834";"European Academy of Management and Business Economics";Yes;No;1,342;Q1;50;31;90;2687;868;90;8,62;86,68;44,32;0;Spain;Western Europe;"European Academy of Management and Business Economics";"2016-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +2984;19700182114;"Professional Development in Education";journal;"19415257, 19415265";"Routledge";No;No;1,342;Q1;63;153;285;8665;1398;267;4,61;56,63;62,28;1;United Kingdom;Western Europe;"Routledge";"2009-2026";"Education (Q1)";"Social Sciences" +2985;78905;"Research and Practice for Persons with Severe Disabilities";journal;"15407969, 21692408";"SAGE Publications Inc.";No;No;1,342;Q1;65;50;48;1522;165;45;2,33;30,44;76,47;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"1975-1980, 1986, 1988, 1990, 1992-2026";"Health Professions (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Social Psychology (Q1)";"Health Professions; Medicine; Psychology" +2986;68623;"Annual Review of Anthropology";book series;"15454290, 00846570";"Annual Reviews Inc.";No;No;1,341;Q1;157;26;84;3215;418;81;4,25;123,65;63,16;0;United States;Northern America;"Annual Reviews Inc.";"1980-1986, 1988, 1991, 1993-2025";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1)";"Arts and Humanities; Social Sciences" +2987;21101160578;"Life Metabolism";journal;"27550230, 20972555";"Oxford University Press";Yes;Yes;1,341;Q1;12;41;119;2180;357;106;2,94;53,17;44,70;0;United Kingdom;Western Europe;"Oxford University Press";"2022-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biochemistry (medical) (Q1); Endocrinology, Diabetes and Metabolism (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2988;26071;"Seminars in Hematology";journal;"00371963, 15328686";"W.B. Saunders";No;No;1,341;Q1;106;38;135;3680;509;118;3,84;96,84;40,00;0;United States;Northern America;"W.B. Saunders";"1964-2025";"Hematology (Q1)";"Medicine" +2989;28766;"Breast Cancer Research and Treatment";journal;"01676806, 15737217";"Springer";No;No;1,340;Q1;189;340;1056;11805;3791;1001;3,48;34,72;57,99;0;United States;Northern America;"Springer";"1981-2026";"Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2990;25094;"Environmental Toxicology and Chemistry";journal;"15528618, 07307268";"Oxford University Press";No;No;1,340;Q1;206;314;703;19014;2763;669;3,61;60,55;45,48;5;United States;Northern America;"Oxford University Press";"1982-2026";"Environmental Chemistry (Q1); Health, Toxicology and Mutagenesis (Q1)";"Environmental Science" +2991;12539;"European Journal of Nutrition";journal;"14366215, 14366207";"Springer Science and Business Media Deutschland GmbH";No;No;1,340;Q1;131;318;833;16379;4215;817;4,74;51,51;57,73;6;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +2992;25678;"Journal of Research on Adolescence";journal;"10508392, 15327795";"Wiley-Blackwell Publishing Ltd";No;No;1,340;Q1;127;155;335;10792;1284;320;2,95;69,63;64,62;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1993, 1996-2026";"Behavioral Neuroscience (Q1); Cultural Studies (Q1); Developmental and Educational Psychology (Q1); Social Sciences (miscellaneous) (Q1)";"Neuroscience; Psychology; Social Sciences" +2993;24849;"Scandinavian Journal of Economics";journal;"14679442, 03470520";"Wiley-Blackwell Publishing Ltd";No;No;1,340;Q1;82;34;99;1916;199;97;1,75;56,35;33,77;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1977-1980, 1983, 1985, 1991-1993, 1995-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +2994;21101306750;"Sinus Persicus";journal;"3041993X, 30419948";"Tissaphernes Archaeological Research Group";No;No;1,340;Q1;2;13;7;184;12;6;1,71;14,15;18,75;0;Iran;Middle East;"Tissaphernes Archaeological Research Group";"2024-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Arts and Humanities (miscellaneous) (Q1); History (Q1); Linguistics and Language (Q1)";"Arts and Humanities; Social Sciences" +2995;21101252431;"Computers and Education: X Reality";journal;"29496780";"Elsevier B.V.";Yes;No;1,339;Q1;19;34;84;1906;700;83;8,27;56,06;34,85;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Human-Computer Interaction (Q1); Social Sciences (miscellaneous) (Q1)";"Computer Science; Social Sciences" +2996;20770;"Drug Delivery";journal;"10717544, 15210464";"Taylor and Francis Ltd.";Yes;No;1,339;Q1;119;90;432;7228;4102;432;8,13;80,31;49,39;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993, 1995-2026";"Medicine (miscellaneous) (Q1); Pharmaceutical Science (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +2997;21101186976;"PNAS Nexus";journal;"27526542";"National Academy of Sciences";Yes;No;1,339;Q1;34;422;1271;24834;6049;1261;4,72;58,85;35,44;10;United States;Northern America;"National Academy of Sciences";"2022-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +2998;29551;"Bone";journal;"87563282";"Elsevier Inc.";No;No;1,338;Q1;236;288;719;15517;3036;683;3,85;53,88;42,08;0;United States;Northern America;"Elsevier Inc.";"1985-2026";"Endocrinology, Diabetes and Metabolism (Q1); Histology (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +2999;17486;"Neurochemistry International";journal;"18729754, 01970186";"Elsevier Ltd";No;No;1,338;Q2;145;142;407;11241;2241;403;5,67;79,16;45,76;0;United Kingdom;Western Europe;"Elsevier Ltd";"1980-2026";"Cell Biology (Q2); Cellular and Molecular Neuroscience (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +3000;21101041413;"AMS Review";journal;"18698182, 1869814X";"Springer New York";No;No;1,337;Q1;38;34;70;3500;249;40;4,04;102,94;50,56;0;United States;Northern America;"Springer New York";"2011-2025";"Marketing (Q1)";"Business, Management and Accounting" +3001;17225;"Journal of Magnetic Resonance Imaging";journal;"15222586, 10531807";"John Wiley and Sons Inc";No;No;1,337;Q1;195;519;1520;17680;4837;954;3,10;34,07;40,22;0;United States;Northern America;"John Wiley and Sons Inc";"1991-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +3002;16761;"Journal of Neuropathology and Experimental Neurology";journal;"15546578, 00223069";"Oxford University Press";No;No;1,337;Q1;187;118;325;4195;813;231;2,41;35,55;48,38;0;United Kingdom;Western Europe;"Oxford University Press";"1942-2026";"Medicine (miscellaneous) (Q1); Neurology (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1); Cellular and Molecular Neuroscience (Q2)";"Medicine; Neuroscience" +3003;29655;"Urban Geography";journal;"02723638, 19382847";"Routledge";No;No;1,337;Q1;100;154;316;10801;1475;301;4,39;70,14;41,99;0;United Kingdom;Western Europe;"Routledge";"1980-2026";"Geography, Planning and Development (Q1); Urban Studies (Q1)";"Social Sciences" +3004;4700152237;"Biomedical Signal Processing and Control";journal;"17468108, 17468094";"Elsevier Ltd";No;No;1,336;Q1;141;1356;3278;67221;25843;3275;7,99;49,57;33,44;1;United Kingdom;Western Europe;"Elsevier Ltd";"2006-2026";"Biomedical Engineering (Q1); Health Informatics (Q1); Signal Processing (Q1)";"Computer Science; Engineering; Medicine" +3005;29868;"California Law Review";journal;"00081221";"University of California, Berkeley";No;No;1,336;Q1;72;33;129;11584;196;128;1,10;351,03;32,35;0;United States;Northern America;"University of California, Berkeley";"1973-1979, 1982-1984, 1986-1988, 1990-1992, 1994-2025";"Law (Q1)";"Social Sciences" +3006;15530;"Dianwang Jishu/Power System Technology";journal;"10003673";"";No;No;1,336;Q1;103;368;1548;11630;7322;1548;4,81;31,60;32,05;0;China;Asiatic Region;"";"2004-2005, 2010-2025";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Mechanical Engineering (Q1)";"Energy; Engineering" +3007;18300156704;"Higher Education Research and Development";journal;"14698366, 07294360";"Taylor and Francis Ltd.";No;No;1,336;Q1;107;187;424;8772;2326;416;5,22;46,91;63,58;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-1995, 1997, 1999-2026";"Education (Q1)";"Social Sciences" +3008;21100927225;"Journal of Financial Regulation";journal;"20534841, 20534833";"Oxford University Press";No;No;1,336;Q1;19;12;32;1502;175;32;3,73;125,17;15,63;3;United States;Northern America;"Oxford University Press";"2015-2025";"Finance (Q1)";"Economics, Econometrics and Finance" +3009;24829;"Journal of Political Philosophy";journal;"14679760, 09638016";"Wiley-Blackwell Publishing Ltd";No;No;1,336;Q1;87;0;54;0;220;42;2,60;0,00;0,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1993-2024";"Philosophy (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +3010;16642;"Michigan Law Review";journal;"00262234";"Michigan Law Review Association";No;No;1,336;Q1;70;21;85;2668;94;74;0,88;127,05;47,62;0;United States;Northern America;"Michigan Law Review Association";"1938, 1940, 1955, 1957, 1974-1980, 1982-1983, 1985, 1991-2025";"Law (Q1)";"Social Sciences" +3011;13333;"Solar Energy";journal;"0038092X";"Elsevier Ltd";No;No;1,336;Q1;252;814;2290;47606;18238;2276;8,36;58,48;26,97;1;United Kingdom;Western Europe;"Elsevier Ltd";"1957-2026";"Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Materials Science" +3012;26913;"Advances in Health Sciences Education";journal;"15731677, 13824996";"Springer Science and Business Media B.V.";No;No;1,335;Q1;93;133;266;6961;1188;243;4,25;52,34;65,70;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1996-2026";"Education (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +3013;19723;"Harmful Algae";journal;"18781470, 15689883";"Elsevier B.V.";No;No;1,335;Q1;125;169;359;13856;1781;359;4,46;81,99;46,34;2;Netherlands;Western Europe;"Elsevier B.V.";"2002-2026";"Aquatic Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +3014;21101176723;"Journal of Cardiovascular Aging";journal;"27685993";"OAE Publishing Inc.";No;No;1,335;Q1;13;17;115;2496;288;69;2,81;146,82;47,14;0;United States;Northern America;"OAE Publishing Inc.";"2021-2025";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +3015;23997;"Journal of Contaminant Hydrology";journal;"01697722, 18736009";"Elsevier B.V.";No;No;1,335;Q1;119;185;351;13418;2057;347;6,36;72,53;35,07;0;Netherlands;Western Europe;"Elsevier B.V.";"1986-2026";"Environmental Chemistry (Q1); Water Science and Technology (Q1)";"Environmental Science" +3016;12282;"Journal of Social Policy";journal;"14697823, 00472794";"Cambridge University Press";No;No;1,335;Q1;87;82;162;4305;719;161;3,88;52,50;43,84;0;United Kingdom;Western Europe;"Cambridge University Press";"1973, 1976, 1978-1984, 1986-2026";"Management, Monitoring, Policy and Law (Q1); Public Administration (Q1); Social Sciences (miscellaneous) (Q1); Social Work (Q1)";"Environmental Science; Social Sciences" +3017;21100206244;"Open Biology";journal;"20462441";"Royal Society Publishing";Yes;No;1,335;Q1;93;137;356;11829;1291;352;3,03;86,34;42,11;0;United Kingdom;Western Europe;"Royal Society Publishing";"2011-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1); Immunology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Neuroscience" +3018;21100220161;"Physics of the Dark Universe";journal;"22126864";"Elsevier B.V.";No;No;1,335;Q1;69;449;703;45630;4535;701;6,70;101,63;24,56;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +3019;21308;"Health Policy and Planning";journal;"14602237, 02681080";"Oxford University Press";Yes;No;1,334;Q1;123;98;344;4987;1229;327;3,51;50,89;51,13;5;United Kingdom;Western Europe;"Oxford University Press";"1986-2026";"Health Policy (Q1)";"Medicine" +3020;12719;"Journal of Nutritional Biochemistry";journal;"09552863, 18734847";"Elsevier Inc.";No;No;1,334;Q1;176;235;597;15206;3605;594;5,78;64,71;52,61;0;United States;Northern America;"Elsevier Inc.";"1990-2026";"Biochemistry (Q1); Clinical Biochemistry (Q1); Endocrinology, Diabetes and Metabolism (Q1); Nutrition and Dietetics (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +3021;16047;"Race Ethnicity and Education";journal;"1470109X, 13613324";"Routledge";No;No;1,334;Q1;81;97;178;6167;784;176;3,77;63,58;68,95;3;United Kingdom;Western Europe;"Routledge";"1998-2026";"Cultural Studies (Q1); Demography (Q1); Education (Q1)";"Social Sciences" +3022;25263;"Reviews on Environmental Health";journal;"00487554, 21910308";"De Gruyter Open Ltd";No;No;1,334;Q1;80;59;174;4362;1156;160;7,49;73,93;56,39;3;Germany;Western Europe;"De Gruyter Open Ltd";"1974-1975, 1977, 1979-1982, 1984-1987, 1989, 1991, 1994, 1996-2026";"Health (social science) (Q1); Pollution (Q1); Public Health, Environmental and Occupational Health (Q1)";"Environmental Science; Medicine; Social Sciences" +3023;21100463869;"Advanced Electronic Materials";journal;"2199160X";"John Wiley and Sons Inc";Yes;No;1,333;Q1;116;558;1221;33706;6915;1214;5,91;60,41;28,28;0;United States;Northern America;"John Wiley and Sons Inc";"2015-2026";"Electronic, Optical and Magnetic Materials (Q1)";"Materials Science" +3024;21101028601;"Biofilm";journal;"25902075";"Elsevier B.V.";Yes;No;1,333;Q1;34;93;174;5605;1214;171;7,02;60,27;47,69;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Applied Microbiology and Biotechnology (Q1); Microbiology (Q1); Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +3025;14304;"Educational Review";journal;"14653397, 00131911";"Routledge";No;No;1,333;Q1;73;158;241;11509;1348;235;5,30;72,84;64,42;11;United Kingdom;Western Europe;"Routledge";"1948-2026";"Education (Q1)";"Social Sciences" +3026;25720;"Forest Ecology and Management";journal;"03781127";"Elsevier B.V.";No;No;1,333;Q1;227;683;2003;54136;9166;1983;4,34;79,26;35,72;9;Netherlands;Western Europe;"Elsevier B.V.";"1976, 1979-1980, 1982-2026";"Forestry (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +3027;23863;"Journal of Computational and Graphical Statistics";journal;"10618600, 15372715";"Taylor and Francis Ltd.";No;No;1,333;Q1;114;165;368;6902;882;357;2,02;41,83;25,95;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Discrete Mathematics and Combinatorics (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +3028;21100854161;"Molecular and Cellular Pediatrics";journal;"21947791";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,333;Q1;33;25;53;1145;225;51;4,27;45,80;51,65;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2015-2026";"Pediatrics, Perinatology and Child Health (Q1); Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3029;4400151705;"Ocean Science";journal;"18120792, 18120784";"Copernicus Publications";Yes;No;1,333;Q1;80;165;270;12073;1062;270;3,81;73,17;35,16;1;Germany;Western Europe;"Copernicus Publications";"2005-2026";"Oceanography (Q1); Paleontology (Q1)";"Earth and Planetary Sciences" +3030;18745;"Psychoneuroendocrinology";journal;"03064530, 18733360";"Elsevier Ltd";No;No;1,333;Q1;218;254;650;15684;2695;628;3,35;61,75;57,69;0;United Kingdom;Western Europe;"Elsevier Ltd";"1975-2026";"Endocrine and Autonomic Systems (Q1); Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +3031;21101055108;"Radiology: Cardiothoracic Imaging";journal;"26386135";"Radiological Society of North America Inc.";No;No;1,333;Q1;44;99;242;3214;738;168;3,23;32,46;29,96;0;United States;Northern America;"Radiological Society of North America Inc.";"2019-2025";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +3032;28333;"Ocean and Coastal Management";journal;"09645691";"Elsevier B.V.";No;No;1,332;Q1;124;349;1144;26234;7392;1137;6,50;75,17;38,93;11;United Kingdom;Western Europe;"Elsevier B.V.";"1992-2026";"Aquatic Science (Q1); Management, Monitoring, Policy and Law (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +3033;28324;"Current Issues in Tourism";journal;"17477603, 13683500";"Routledge";No;No;1,331;Q1;135;613;857;39469;6824;724;7,57;64,39;40,38;3;United Kingdom;Western Europe;"Routledge";"1998-2026";"Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Social Sciences" +3034;6300153105;"Current Opinion in HIV and AIDS";journal;"17466318, 1746630X";"Lippincott Williams and Wilkins";No;No;1,331;Q1;87;100;168;6485;566;150;2,79;64,85;55,26;0;United States;Northern America;"Lippincott Williams and Wilkins";"2006-2026";"Hematology (Q1); Infectious Diseases (Q1); Oncology (Q1); Oncology (nursing) (Q1); Virology (Q1); Immunology (Q2)";"Immunology and Microbiology; Medicine; Nursing" +3035;21101072516;"Frontiers in Climate";journal;"26249553";"Frontiers Media SA";Yes;No;1,331;Q1;44;192;599;13295;2824;547;3,72;69,24;42,79;7;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Atmospheric Science (Q1); Environmental Science (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1); Global and Planetary Change (Q2)";"Earth and Planetary Sciences; Environmental Science" +3036;21101150130;"Frontiers in Toxicology";journal;"26733080";"Frontiers Media SA";Yes;No;1,331;Q1;31;141;374;9384;2044;336;4,63;66,55;48,71;1;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Toxicology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +3037;13030;"Journal of Sound and Vibration";journal;"10958568, 0022460X";"Academic Press";No;No;1,331;Q1;230;519;1444;24265;9104;1433;6,34;46,75;21,32;0;United States;Northern America;"Academic Press";"1964-2026";"Acoustics and Ultrasonics (Q1); Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Physics and Astronomy" +3038;25236;"Sensors and Actuators B: Chemical";journal;"09254005, 19448201";"Elsevier B.V.";No;No;1,331;Q1;259;1839;5063;84376;43356;5062;8,56;45,88;40,24;0;Netherlands;Western Europe;"Elsevier B.V.";"1970, 1990-2026";"Analytical Chemistry (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electrochemistry (Q1); Electronic, Optical and Magnetic Materials (Q1); Instrumentation (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1); Spectroscopy (Q1); Surfaces, Coatings and Films (Q1)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +3039;40751;"Evolutionary Anthropology";journal;"15206505, 10601538";"Wiley-Liss Inc.";No;No;1,329;Q1;106;23;78;2761;276;66;3,33;120,04;43,75;0;United States;Northern America;"Wiley-Liss Inc.";"1992-2026";"Anthropology (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +3040;12235;"Journal of Neurotrauma";journal;"15579042, 08977151";"Mary Ann Liebert Inc.";No;No;1,329;Q1;187;212;583;12157;2448;543;4,01;57,34;44,13;4;United States;Northern America;"Mary Ann Liebert Inc.";"1988-2026";"Neurology (clinical) (Q1)";"Medicine" +3041;29102;"Health and Place";journal;"18732054, 13538292";"Elsevier Ltd";No;No;1,328;Q1;153;183;525;11449;2617;522;4,43;62,56;61,82;3;United Kingdom;Western Europe;"Elsevier Ltd";"1995-2026";"Geography, Planning and Development (Q1); Health (social science) (Q1); Life-span and Life-course Studies (Q1); Public Health, Environmental and Occupational Health (Q1); Sociology and Political Science (Q1)";"Medicine; Social Sciences" +3042;16001;"Journal of Physiology and Biochemistry";journal;"18778755, 11387548";"Springer Science and Business Media B.V.";Yes;No;1,328;Q1;68;84;208;6835;1115;203;5,27;81,37;51,60;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1996-2026";"Biochemistry (Q1); Medicine (miscellaneous) (Q1); Physiology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3043;22170;"Plastic and Reconstructive Surgery";journal;"15294242, 00321052";"Lippincott Williams and Wilkins";Yes;No;1,328;Q1;229;703;2182;17791;5857;1621;2,78;25,31;37,86;0;United States;Northern America;"Lippincott Williams and Wilkins";"1946-2026";"Surgery (Q1)";"Medicine" +3044;21100223304;"SIAM Journal on Financial Mathematics";journal;"1945497X";"Society for Industrial and Applied Mathematics Publications";No;No;1,328;Q1;42;44;139;1651;311;139;2,15;37,52;27,17;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"2010-2026";"Applied Mathematics (Q1); Finance (Q1); Numerical Analysis (Q1)";"Economics, Econometrics and Finance; Mathematics" +3045;28523;"Terrorism and Political Violence";journal;"15561836, 09546553";"Routledge";No;No;1,328;Q1;70;145;228;11641;867;227;3,16;80,28;40,06;16;United Kingdom;Western Europe;"Routledge";"1989-2026";"Political Science and International Relations (Q1); Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1); Sociology and Political Science (Q1)";"Engineering; Social Sciences" +3046;13222;"European Journal of Pain";journal;"10903801, 15322149";"John Wiley and Sons Inc";No;No;1,327;Q1;143;258;447;12969;1787;379;3,67;50,27;49,72;4;United States;Northern America;"John Wiley and Sons Inc";"1997-2026";"Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +3047;16812;"Journal of Psychiatric Research";journal;"18791379, 00223956";"Elsevier Ltd";No;No;1,327;Q1;180;624;1722;34732;6996;1698;3,63;55,66;47,91;8;United Kingdom;Western Europe;"Elsevier Ltd";"1961-1979, 1981-1982, 1984-2026";"Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)";"Medicine; Neuroscience" +3048;21100349594;"Linguistic Approaches to Bilingualism";journal;"18799272, 18799264";"John Benjamins Publishing Company";No;No;1,327;Q1;38;64;126;2710;273;94;2,03;42,34;64,06;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2011-2026";"Linguistics and Language (Q1)";"Social Sciences" +3049;16574;"Plant and Soil";journal;"15735036, 0032079X";"Springer Science and Business Media Deutschland GmbH";No;No;1,327;Q1;250;1300;1495;95902;8516;1462;5,60;73,77;41,36;7;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1948-2026";"Plant Science (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences" +3050;21100942216;"BJS Open";journal;"24749842";"Oxford University Press";Yes;No;1,326;Q1;45;180;483;7344;1704;409;3,57;40,80;34,57;2;United States;Northern America;"Oxford University Press";"2017-2026";"Medicine (miscellaneous) (Q1); Surgery (Q1)";"Medicine" +3051;20593;"Engineering Failure Analysis";journal;"13506307";"Elsevier B.V.";No;No;1,326;Q1;123;1096;2713;52972;19728;2707;7,50;48,33;25,44;1;Netherlands;Western Europe;"Elsevier B.V.";"1994-2026";"Aerospace Engineering (Q1); Automotive Engineering (Q1); Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering; Materials Science" +3052;22911;"Malaria Journal";journal;"14752875";"BioMed Central Ltd";Yes;No;1,326;Q1;131;449;1164;20739;4263;1152;3,53;46,19;37,09;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Infectious Diseases (Q1); Parasitology (Q1)";"Immunology and Microbiology; Medicine" +3053;21100324363;"Vehicular Communications";journal;"22142096, 2214210X";"Elsevier Inc.";No;No;1,326;Q1;69;117;317;8033;2657;316;7,53;68,66;28,29;0;United States;Northern America;"Elsevier Inc.";"2014-2026";"Automotive Engineering (Q1); Communication (Q1); Electrical and Electronic Engineering (Q1)";"Engineering; Social Sciences" +3054;21100212900;"Global Heart";journal;"22118179, 22118160";"Ubiquity Press";Yes;No;1,325;Q1;60;113;254;4557;1237;248;4,87;40,33;37,88;1;United Kingdom;Western Europe;"Ubiquity Press";"2011-2026";"Cardiology and Cardiovascular Medicine (Q1); Community and Home Care (Q1); Epidemiology (Q1)";"Medicine; Nursing" +3055;21101266871;"Nature-Based Solutions";journal;"27724115";"Elsevier Inc.";Yes;No;1,325;Q1;23;86;189;7123;1144;186;4,71;82,83;47,27;2;United States;Northern America;"Elsevier Inc.";"2021-2026";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +3056;21101147569;"Biomimetic Intelligence and Robotics";journal;"26673797, 20970242";"KeAi Communications Co.";Yes;No;1,324;Q1;19;50;99;3019;824;94;9,36;60,38;22,31;0;Netherlands;Western Europe;"KeAi Communications Co.";"2021-2026";"Artificial Intelligence (Q1); Computer Science (miscellaneous) (Q1); Control and Systems Engineering (Q1)";"Computer Science; Engineering" +3057;13448;"Comparative Politics";journal;"00104159, 21516227";"City University of New York";No;No;1,324;Q1;83;23;81;2410;211;81;2,18;104,78;41,86;0;United States;Northern America;"City University of New York";"1978, 1987-1989, 1996-2026";"Sociology and Political Science (Q1)";"Social Sciences" +3058;28976;"Journal of Economic Dynamics and Control";journal;"01651889";"Elsevier B.V.";No;No;1,324;Q1;110;132;424;6763;1020;414;2,10;51,23;22,78;7;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Applied Mathematics (Q1); Control and Optimization (Q1); Economics and Econometrics (Q1)";"Economics, Econometrics and Finance; Mathematics" +3059;29003;"Experimental Gerontology";journal;"18736815, 05315565";"Elsevier Inc.";Yes;No;1,323;Q1;170;285;788;14997;4018;779;5,35;52,62;45,63;3;United States;Northern America;"Elsevier Inc.";"1964-2026";"Biochemistry (Q1); Genetics (Q1); Aging (Q2); Cell Biology (Q2); Endocrinology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3060;15107;"IEEE Transactions on Information Theory";journal;"00189448, 15579654";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,323;Q1;310;533;1430;23626;4623;1429;3,06;44,33;22,76;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-2026";"Computer Science Applications (Q1); Information Systems (Q1); Library and Information Sciences (Q1)";"Computer Science; Social Sciences" +3061;15931;"Journal of Health Politics, Policy and Law";journal;"15271927, 03616878";"Duke University Press";No;No;1,323;Q1;69;41;115;2646;343;113;2,86;64,54;55,06;1;United States;Northern America;"Duke University Press";"1976-2026";"Health Policy (Q1)";"Medicine" +3062;40695;"Journal of Inflammation (United Kingdom)";journal;"14769255";"BioMed Central Ltd";Yes;No;1,323;Q1;75;54;115;2863;589;115;5,33;53,02;44,27;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Clinical Biochemistry (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3063;19700174928;"ASN Neuro";journal;"17590914";"SAGE Publications Inc.";Yes;No;1,322;Q1;62;21;76;984;364;75;4,48;46,86;54,37;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2009-2026";"Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)";"Medicine; Neuroscience" +3064;21100862741;"BMJ Sexual and Reproductive Health";journal;"25152009, 25151991";"BMJ Publishing Group";No;No;1,322;Q1;50;87;175;1743;455;122;2,54;20,03;78,77;2;United Kingdom;Western Europe;"BMJ Publishing Group";"2018-2026";"Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)";"Medicine" +3065;21101115395;"Function";journal;"26338823";"American Physiological Society";Yes;No;1,322;Q1;25;61;204;3394;561;151;2,97;55,64;44,01;0;United Kingdom;Western Europe;"American Physiological Society";"2020-2026";"Physiology (Q1); Cancer Research (Q2); Cell Biology (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology" +3066;21100463093;"Groundwater for Sustainable Development";journal;"2352801X";"Elsevier B.V.";No;No;1,322;Q1;78;170;678;13837;4651;672;7,03;81,39;31,74;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Environmental Engineering (Q1); Geography, Planning and Development (Q1); Water Science and Technology (Q1); Environmental Chemistry (Q2)";"Environmental Science; Social Sciences" +3067;15465;"Pacific Basin Finance Journal";journal;"0927538X";"Elsevier B.V.";No;No;1,322;Q1;92;340;747;18762;4845;745;6,12;55,18;36,22;1;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +3068;28541;"Archives of Gerontology and Geriatrics";journal;"18726976, 01674943";"Elsevier Ireland Ltd";No;No;1,321;Q1;108;318;792;17543;3766;732;4,65;55,17;46,38;2;Ireland;Western Europe;"Elsevier Ireland Ltd";"1982-2026";"Geriatrics and Gerontology (Q1); Gerontology (Q1); Health (social science) (Q1); Aging (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing; Social Sciences" +3069;21101267700;"Climate Resilience and Sustainability";journal;"26924587";"John Wiley and Sons Ltd";Yes;No;1,321;Q1;13;26;46;1997;276;44;5,17;76,81;38,30;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2022-2026";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +3070;21100787110;"Therapeutic Advances in Psychopharmacology";journal;"20451261, 20451253";"SAGE Publications Inc.";Yes;No;1,321;Q1;52;34;111;1838;461;103;4,39;54,06;39,80;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2011-2026";"Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +3071;21100868097;"Water Security";journal;"24683124";"Elsevier B.V.";No;No;1,321;Q1;33;5;66;547;417;62;5,93;109,40;53,33;0;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Management, Monitoring, Policy and Law (Q1); Oceanography (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Earth and Planetary Sciences; Environmental Science" +3072;12200154702;"Channels";journal;"19336969, 19336950";"Taylor and Francis Ltd.";Yes;No;1,320;Q1;59;24;72;1690;326;70;4,73;70,42;43,55;0;United States;Northern America;"Taylor and Francis Ltd.";"2007-2026";"Biochemistry (Q1); Biophysics (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3073;21101162821;"Global Studies Quarterly";journal;"26343797";"Oxford University Press";Yes;No;1,320;Q1;19;121;243;9568;898;242;3,42;79,07;50,00;1;United Kingdom;Western Europe;"Oxford University Press";"2021-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +3074;16200;"International Psychogeriatrics";journal;"1741203X, 10416102";"Elsevier Inc.";Yes;No;1,320;Q1;134;130;400;4478;1142;211;2,95;34,45;53,32;0;United States;Northern America;"Elsevier Inc.";"1989-2026";"Clinical Psychology (Q1); Geriatrics and Gerontology (Q1); Gerontology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Nursing; Psychology" +3075;23706;"Journal of Biomedical Informatics";journal;"15320480, 15320464";"Academic Press Inc.";No;No;1,320;Q1;145;199;613;10551;4050;575;6,55;53,02;38,27;1;United States;Northern America;"Academic Press Inc.";"2001-2026";"Computer Science Applications (Q1); Health Informatics (Q1)";"Computer Science; Medicine" +3076;11600154701;"Police Quarterly";journal;"10986111, 1552745X";"SAGE Publications Inc.";No;No;1,320;Q1;73;27;66;1904;290;66;3,84;70,52;57,83;2;United States;Northern America;"SAGE Publications Inc.";"1998-2026";"Law (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +3077;5100155099;"Qualitative Research in Psychology";journal;"14780895, 14780887";"Taylor and Francis Ltd.";No;No;1,320;Q1;62;55;105;3296;599;104;6,51;59,93;60,80;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +3078;17858;"Radiologia Medica";journal;"00338362, 18266983";"Springer-Verlag Italia s.r.l.";No;No;1,320;Q1;69;203;480;8155;2475;445;5,18;40,17;42,80;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1947-1971, 1973-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +3079;21101155822;"Neuromorphic Computing and Engineering";journal;"26344386";"Institute of Physics";Yes;No;1,319;Q1;26;75;200;4944;1041;186;3,66;65,92;22,76;0;United Kingdom;Western Europe;"Institute of Physics";"2021-2026";"Artificial Intelligence (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Hardware and Architecture (Q1)";"Computer Science; Engineering; Materials Science" +3080;21101059758;"Progress in Biomedical Engineering";journal;"25161091";"IOP Publishing Ltd.";No;No;1,319;Q1;28;41;60;6709;509;58;8,86;163,63;37,56;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2019-2026";"Biomedical Engineering (Q1)";"Engineering" +3081;27614;"Resource and Energy Economics";journal;"09287655";"Elsevier B.V.";No;No;1,319;Q1;89;39;100;2107;418;99;3,41;54,03;31,78;4;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +3082;19700184600;"Acta Ophthalmologica";journal;"1755375X, 17553768";"John Wiley and Sons Inc";Yes;No;1,318;Q1;118;225;718;8255;2481;646;2,95;36,69;44,70;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1923-1994, 2008-2026";"Medicine (miscellaneous) (Q1); Ophthalmology (Q1)";"Medicine" +3083;21101342180;"Climate Smart Agriculture";journal;"29504090";"Elsevier B.V.";Yes;No;1,318;Q1;8;31;18;2570;148;17;8,22;82,90;33,51;1;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Food Science (Q1)";"Agricultural and Biological Sciences" +3084;16150;"International Journal of Mental Health Nursing";journal;"14458330, 14470349";"Wiley-Blackwell Publishing Ltd";No;No;1,318;Q1;80;268;458;12095;2117;419;4,40;45,13;65,57;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2002-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +3085;18357;"Medical Teacher";journal;"0142159X, 1466187X";"Taylor and Francis Ltd.";No;No;1,318;Q1;156;417;864;11828;3247;588;4,40;28,36;54,87;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2026";"Education (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +3086;21101172023;"Plant Nano Biology";journal;"27731111";"Elsevier B.V.";Yes;No;1,318;Q1;26;96;116;10076;1302;109;11,64;104,96;37,71;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +3087;5800173377;"ACM Transactions on Knowledge Discovery from Data";journal;"1556472X, 15564681";"Association for Computing Machinery";No;No;1,317;Q1;83;150;461;9683;3252;460;7,53;64,55;31,86;0;United States;Northern America;"Association for Computing Machinery";"2007-2026";"Computer Science (miscellaneous) (Q1)";"Computer Science" +3088;19200157106;"Journal of Addiction Medicine";journal;"19320620, 19353227";"Lippincott Williams and Wilkins";No;No;1,317;Q1;67;212;543;5586;1672;503;2,80;26,35;54,01;0;United States;Northern America;"Lippincott Williams and Wilkins";"2007-2026";"Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +3089;145356;"Library Hi Tech News";journal;"07419058";"Emerald Group Publishing Ltd.";No;No;1,317;Q1;31;64;169;940;1127;136;8,17;14,69;37,04;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1999-2026";"Information Systems (Q1); Library and Information Sciences (Q1)";"Computer Science; Social Sciences" +3090;21101277761;"Nano Trends";journal;"26669781";"Elsevier B.V.";Yes;No;1,317;Q1;14;103;57;9158;514;56;9,02;88,91;30,88;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Materials Science (miscellaneous) (Q1)";"Materials Science" +3091;14588;"Theoretical and Applied Fracture Mechanics";journal;"01678442";"Elsevier B.V.";No;No;1,317;Q1;94;389;1399;20216;8548;1393;6,03;51,97;24,95;0;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Applied Mathematics (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1)";"Engineering; Materials Science; Mathematics; Physics and Astronomy" +3092;20740;"Clinical Immunology";journal;"15217035, 15216616";"Academic Press Inc.";No;No;1,317;Q2;151;122;699;6559;2921;672;4,04;53,76;50,51;0;United States;Northern America;"Academic Press Inc.";"1999-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +3093;16153;"International Journal of Methods in Psychiatric Research";journal;"10498931, 15570657";"Wiley-Blackwell";Yes;No;1,316;Q1;96;37;133;1940;466;130;3,53;52,43;54,03;0;United States;Northern America;"Wiley-Blackwell";"1996-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +3094;25879;"International Journal of Molecular Sciences";journal;"14220067, 16616596";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,316;Q1;365;12133;47483;979256;292954;46340;5,82;80,71;49,78;6;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2000-2026";"Catalysis (Q1); Computer Science Applications (Q1); Inorganic Chemistry (Q1); Medicine (miscellaneous) (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Spectroscopy (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Computer Science; Medicine" +3095;22915;"Journal of Economic Psychology";journal;"01674870";"Elsevier B.V.";No;No;1,316;Q1;131;32;171;1734;447;166;2,46;54,19;29,49;0;Netherlands;Western Europe;"Elsevier B.V.";"1981-2026";"Applied Psychology (Q1); Economics and Econometrics (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Psychology; Social Sciences" +3096;25218;"Toxicological Sciences";journal;"10960929, 10966080";"Oxford University Press";No;No;1,316;Q1;222;172;432;11111;2299;419;5,37;64,60;45,27;1;United Kingdom;Western Europe;"Oxford University Press";"1981-2026";"Toxicology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +3097;21337;"Health Research Policy and Systems";journal;"14784505";"BioMed Central Ltd";Yes;No;1,315;Q1;82;158;449;9111;1918;413;3,83;57,66;59,89;4;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Health Policy (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +3098;23490;"Journal of Scientific Computing";journal;"08857474, 15737691";"Springer New York";No;No;1,315;Q1;103;386;1031;16878;3716;1030;2,51;43,73;29,34;0;United States;Northern America;"Springer New York";"1986-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Computational Theory and Mathematics (Q1); Engineering (miscellaneous) (Q1); Numerical Analysis (Q1); Software (Q1); Theoretical Computer Science (Q1)";"Computer Science; Engineering; Mathematics" +3099;19600166326;"Mindfulness";journal;"18688535, 18688527";"Springer Verlag";No;No;1,315;Q1;110;244;682;17885;2964;657;4,03;73,30;55,25;0;Germany;Western Europe;"Springer Verlag";"2010-2026";"Applied Psychology (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Health (social science) (Q1); Social Psychology (Q1)";"Psychology; Social Sciences" +3100;6600153204;"Brain Structure and Function";journal;"18632653, 18632661";"Springer Science and Business Media Deutschland GmbH";No;No;1,314;Q1;125;186;490;11898;1806;470;3,41;63,97;46,86;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2007-2026";"Anatomy (Q1); Histology (Q1); Neuroscience (miscellaneous) (Q1)";"Medicine; Neuroscience" +3101;13274;"Environment and Planning D: Society and Space";journal;"02637758, 14723433";"SAGE Publications Inc.";No;No;1,314;Q1;140;121;161;8453;633;151;3,82;69,86;53,11;2;United Kingdom;Western Europe;"SAGE Publications Inc.";"1983-2026";"Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Environmental Science; Social Sciences" +3102;21100920134;"Epijournal de Geometrie Algebrique";journal;"24916765";"";Yes;Yes;1,314;Q1;12;23;83;903;79;83;0,85;39,26;17,02;0;France;Western Europe;"";"2017-2025";"Algebra and Number Theory (Q1); Geometry and Topology (Q1)";"Mathematics" +3103;18300156720;"IEEE Intelligent Transportation Systems Magazine";journal;"19411197, 19391390";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,314;Q1;72;65;294;2723;1758;248;6,03;41,89;32,34;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2009-2026";"Automotive Engineering (Q1); Computer Science Applications (Q1); Mechanical Engineering (Q1)";"Computer Science; Engineering" +3104;28186;"Journal of Advanced Nursing";journal;"03092402, 13652648";"Wiley-Blackwell Publishing Ltd";No;No;1,314;Q1;193;1080;1187;51469;6017;1076;4,86;47,66;71,90;19;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1976-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +3105;20298;"Molecular Microbiology";journal;"13652958, 0950382X";"John Wiley and Sons Inc";No;No;1,314;Q1;285;83;425;5475;1275;398;2,89;65,96;45,82;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1987-2026";"Microbiology (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +3106;21101028072;"Open Mind";journal;"24702986";"MIT Press";Yes;Yes;1,314;Q1;15;90;125;6830;387;125;3,07;75,89;47,13;0;United States;Northern America;"MIT Press";"2018-2026";"Cognitive Neuroscience (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Linguistics and Language (Q1)";"Neuroscience; Psychology; Social Sciences" +3107;19700186941;"Pregnancy Hypertension";journal;"22107797, 22107789";"Elsevier B.V.";No;No;1,314;Q1;47;96;252;3146;924;236;1,91;32,77;60,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Internal Medicine (Q1); Obstetrics and Gynecology (Q1)";"Medicine" +3108;14567;"Technometrics";journal;"15372723, 00401706";"Taylor and Francis Ltd.";No;No;1,314;Q1;102;75;136;2959;529;134;3,56;39,45;23,37;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1959-2026";"Applied Mathematics (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q1)";"Mathematics" +3109;19700188391;"Current Topics in Behavioral Neurosciences";book series;"18663389, 18663370";"Springer Science and Business Media Deutschland GmbH";No;No;1,313;Q1;82;97;284;7706;1071;17;2,85;79,44;49,50;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2009-2026";"Behavioral Neuroscience (Q1)";"Neuroscience" +3110;15382;"Journal of Applied Behavior Analysis";journal;"19383703, 00218855";"Wiley-Blackwell";No;No;1,313;Q1;96;63;210;3042;688;199;3,22;48,29;63,04;1;United States;Northern America;"Wiley-Blackwell";"1968-2026";"Applied Psychology (Q1); Philosophy (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Psychology; Social Sciences" +3111;25422;"Calcified Tissue International";journal;"14320827, 0171967X";"Springer";No;No;1,312;Q1;140;144;407;6503;1673;384;3,95;45,16;45,94;0;United States;Northern America;"Springer";"1973, 1976-1977, 1979-2026";"Endocrinology, Diabetes and Metabolism (Q1); Orthopedics and Sports Medicine (Q1); Endocrinology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3112;21100854855;"Clinical and Translational Immunology";journal;"20500068";"John Wiley & Sons Inc.";Yes;No;1,312;Q1;64;45;189;2740;706;185;3,43;60,89;63,94;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2012-2026";"Nursing (miscellaneous) (Q1); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine; Nursing" +3113;21100318415;"Computational and Structural Biotechnology Journal";journal;"20010370";"Elsevier B.V.";Yes;No;1,312;Q1;107;564;1566;36282;8385;1552;5,07;64,33;38,53;0;Sweden;Western Europe;"Elsevier B.V.";"2012-2026";"Biochemistry (Q1); Biophysics (Q1); Biotechnology (Q1); Computer Science Applications (Q1); Genetics (Q1); Structural Biology (Q1)";"Biochemistry, Genetics and Molecular Biology; Computer Science" +3114;21100870602;"Journal of Sustainable Finance and Investment";journal;"20430809, 20430795";"Taylor and Francis Ltd.";No;No;1,312;Q1;52;61;236;4691;2131;228;9,40;76,90;24,18;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Business and International Management (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3115;16617;"Plant Physiology and Biochemistry";journal;"09819428, 18732690";"Elsevier Masson s.r.l.";No;No;1,312;Q1;183;1362;2008;92264;14185;1995;6,80;67,74;44,08;0;France;Western Europe;"Elsevier Masson s.r.l.";"1989, 1991-2026";"Biochemistry (Q1); Genetics (Q1); Physiology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +3116;20515;"Seminars in Nephrology";journal;"15584488, 02709295";"W.B. Saunders";No;No;1,312;Q1;108;45;181;2991;663;163;2,61;66,47;46,15;0;United States;Northern America;"W.B. Saunders";"1981-2026";"Nephrology (Q1)";"Medicine" +3117;28861;"Biometrics";journal;"0006341X, 15410420";"Oxford University Press";No;No;1,311;Q1;160;158;660;4787;1396;642;1,96;30,30;35,03;0;United States;Northern America;"Oxford University Press";"1946-1951, 1965-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Statistics and Probability (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Mathematics; Medicine" +3118;26177;"Journal of Prosthodontics";journal;"1059941X, 1532849X";"Wiley-Blackwell Publishing Ltd";No;No;1,311;Q1;95;234;480;8520;2579;472;4,86;36,41;39,67;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +3119;21100833030;"Galaxies";journal;"20754434";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,310;Q1;45;137;326;11616;1261;316;3,77;84,79;31,86;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2025";"Astronomy and Astrophysics (Q1)";"Physics and Astronomy" +3120;22139;"Genes Chromosomes and Cancer";journal;"10982264, 10452257";"Wiley-Liss Inc.";No;No;1,310;Q1;137;73;258;2322;805;246;2,73;31,81;44,47;0;United States;Northern America;"Wiley-Liss Inc.";"1989-2026";"Genetics (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology" +3121;23791;"Journal d'Analyse Mathematique";journal;"00217670, 15658538";"Springer New York";No;No;1,310;Q1;59;81;155;2429;198;155;1,32;29,99;20,00;0;United States;Northern America;"Springer New York";"1951-1954, 1956, 1958-2025";"Analysis (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +3122;21844;"Current Opinion in Infectious Diseases";journal;"09517375, 14736527";"Lippincott Williams and Wilkins";No;No;1,309;Q1;127;80;255;4126;1101;237;4,48;51,58;49,19;0;United States;Northern America;"Lippincott Williams and Wilkins";"1988-2026";"Infectious Diseases (Q1); Microbiology (medical) (Q1)";"Medicine" +3123;19700175230;"Drug Design, Development and Therapy";journal;"11778881";"Dove Medical Press Ltd";Yes;No;1,309;Q1;121;739;982;43286;6340;948;5,98;58,57;46,28;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2007-2026";"Drug Discovery (Q1); Pharmaceutical Science (Q1); Pharmacology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +3124;5800228211;"European Physical Education Review";journal;"1356336X, 17412749";"SAGE Publications Ltd";No;No;1,309;Q1;63;59;139;3266;704;139;4,61;55,36;43,26;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Education (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine; Social Sciences" +3125;30088;"Journal of Social Issues";journal;"00224537, 15404560";"Wiley-Blackwell Publishing Ltd";No;No;1,309;Q1;160;56;167;4450;814;166;4,34;79,46;59,86;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1945-2025";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +3126;21100198495;"Journal of the Academy of Nutrition and Dietetics";journal;"22122672";"Elsevier B.V.";No;No;1,309;Q1;207;164;492;8423;1806;421;4,00;51,36;76,74;3;United States;Northern America;"Elsevier B.V.";"2012-2026";"Food Science (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Agricultural and Biological Sciences; Medicine; Nursing" +3127;21101041512;"Medicine in Microecology";journal;"25900978";"Elsevier B.V.";Yes;No;1,309;Q1;17;40;62;3647;441;59;9,10;91,18;43,71;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Gastroenterology (Q1); Medicine (miscellaneous) (Q1); Rheumatology (Q1); Immunology and Allergy (Q2)";"Medicine" +3128;21100875801;"npj Systems Biology and Applications";journal;"20567189";"Nature Publishing Group";Yes;No;1,309;Q1;43;139;258;9079;1111;257;4,46;65,32;35,86;0;United Kingdom;Western Europe;"Nature Publishing Group";"2015-2026";"Applied Mathematics (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Computer Science Applications (Q1); Drug Discovery (Q1); Modeling and Simulation (Q1)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics; Pharmacology, Toxicology and Pharmaceutics" +3129;21100830431;"Service Science";journal;"21643970, 21643962";"INFORMS Institute for Operations Research and the Management Sciences";No;No;1,309;Q1;29;11;57;644;155;55;2,37;58,55;28,00;0;United States;Northern America;"INFORMS Institute for Operations Research and the Management Sciences";"2012, 2014-2025";"Business and International Management (Q1); Management Science and Operations Research (Q1); Modeling and Simulation (Q1); Marketing (Q2)";"Business, Management and Accounting; Decision Sciences; Mathematics" +3130;11300153710;"Rice Science";journal;"16726308";"Elsevier B.V.";Yes;Yes;1,308;Q1;65;85;182;4564;1189;135;6,06;53,69;34,10;0;Netherlands;Western Europe;"Elsevier B.V.";"2007-2026";"Agronomy and Crop Science (Q1); Biotechnology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +3131;145220;"International Journal of Bilingual Education and Bilingualism";journal;"13670050";"Taylor and Francis Ltd.";No;No;1,307;Q1;81;87;406;4715;1856;399;3,70;54,20;63,68;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +3132;19700174927;"Journal of Ovarian Research";journal;"17572215";"BioMed Central Ltd";Yes;No;1,307;Q1;71;310;601;18451;3188;601;5,24;59,52;54,62;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2009-2026";"Obstetrics and Gynecology (Q1); Oncology (Q1)";"Medicine" +3133;20436;"Texas Law Review";journal;"00404411";"University of Texas at Austin";No;No;1,307;Q1;61;35;95;1189;117;80;1,37;33,97;32,26;0;United States;Northern America;"University of Texas at Austin";"1977, 1981-1982, 1987, 1990, 1992, 1994, 1996-2025";"Law (Q1)";"Social Sciences" +3134;21100401153;"Antimicrobial Resistance and Infection Control";journal;"20472994";"BioMed Central Ltd";Yes;No;1,306;Q1;87;153;454;6361;2346;440;5,11;41,58;54,93;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2012-2026";"Infectious Diseases (Q1); Microbiology (medical) (Q1); Pharmacology (medical) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3135;19400157151;"DMM Disease Models and Mechanisms";journal;"17548403, 17548411";"Company of Biologists Ltd";Yes;No;1,306;Q1;120;177;582;9529;1710;495;2,61;53,84;46,90;0;United Kingdom;Western Europe;"Company of Biologists Ltd";"2008-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Neuroscience" +3136;21100345623;"Global Spine Journal";journal;"21925682, 21925690";"SAGE Publications Inc.";Yes;No;1,306;Q1;69;553;873;17784;3474;782;3,67;32,16;19,10;0;United States;Northern America;"SAGE Publications Inc.";"2014-2026";"Neurology (clinical) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +3137;20058;"Innovative Food Science and Emerging Technologies";journal;"14668564";"Elsevier B.V.";No;No;1,305;Q1;167;367;783;20997;6581;780;7,79;57,21;44,72;0;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Chemistry (miscellaneous) (Q1); Food Science (Q1); Industrial and Manufacturing Engineering (Q1)";"Agricultural and Biological Sciences; Chemistry; Engineering" +3138;21100904990;"Kidney Medicine";journal;"25900595";"Elsevier Inc.";Yes;No;1,305;Q1;36;227;511;6934;1653;420;3,27;30,55;45,40;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Internal Medicine (Q1); Nephrology (Q1)";"Medicine" +3139;13460;"Learning Environments Research";journal;"15731855, 13871579";"Springer Netherlands";No;No;1,305;Q1;56;40;143;2367;734;143;4,61;59,18;62,83;0;Netherlands;Western Europe;"Springer Netherlands";"2000-2001, 2003-2026";"Communication (Q1); Developmental and Educational Psychology (Q1); Education (Q1); E-learning (Q1)";"Psychology; Social Sciences" +3140;144618;"Geo-Spatial Information Science";journal;"10095020";"Taylor and Francis Ltd.";Yes;No;1,304;Q1;52;355;220;21929;1702;217;7,48;61,77;33,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Computers in Earth Sciences (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +3141;22156;"Wear";journal;"00431648";"Elsevier B.V.";No;No;1,304;Q1;207;655;1159;29754;9013;1154;7,81;45,43;25,46;0;Netherlands;Western Europe;"Elsevier B.V.";"1957-2026";"Condensed Matter Physics (Q1); Materials Chemistry (Q1); Mechanics of Materials (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)";"Engineering; Materials Science; Physics and Astronomy" +3142;23328;"American Journal of Physiology - Renal Fluid and Electrolyte Physiology";journal;"03636127";"American Physiological Society";No;No;1,302;Q1;200;150;412;9285;1454;387;3,37;61,90;45,12;0;United States;Northern America;"American Physiological Society";"1977-2026";"Physiology (Q1); Urology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3143;26773;"Annals of Medicine";journal;"13652060, 07853890";"Taylor and Francis Ltd.";Yes;No;1,302;Q1;137;1093;1296;53537;7065;1256;5,02;48,98;43,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1961, 1973, 1989-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +3144;21101101317;"Blockchain: Research and Applications";journal;"20967209, 26669536";"Zhejiang University";Yes;No;1,302;Q1;32;63;128;3147;1355;125;9,99;49,95;28,33;0;China;Asiatic Region;"Zhejiang University";"2020-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Information Systems (Q1)";"Computer Science" +3145;130088;"Clinical Diabetes";journal;"08918929";"American Diabetes Association Inc.";No;No;1,302;Q1;54;115;232;3701;687;178;2,51;32,18;55,89;0;United States;Northern America;"American Diabetes Association Inc.";"2005-2025";"Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Medicine" +3146;24661;"Critical Reviews in Toxicology";journal;"15476898, 10408444";"Taylor and Francis Ltd.";No;No;1,302;Q1;139;39;113;5908;672;108;6,03;151,49;40,58;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Toxicology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +3147;21101170034;"Multimodal Transportation";journal;"27725871, 27725863";"Elsevier B.V.";Yes;No;1,302;Q1;23;47;100;2641;652;90;5,33;56,19;24,52;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Geography, Planning and Development (Q1); Transportation (Q1)";"Social Sciences" +3148;26061;"Endocrinology (United States)";journal;"00137227, 19457170";"Endocrine Society";No;No;1,302;Q2;296;175;613;13131;2125;562;3,21;75,03;51,71;0;United States;Northern America;"Endocrine Society";"1917-2026";"Endocrinology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3149;21100463801;"Annals of the American Association of Geographers";journal;"24694460, 24694452";"Taylor and Francis Ltd.";No;No;1,301;Q1;156;157;432;11543;2032;425;4,60;73,52;42,13;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +3150;12852;"Clinical Psychology and Psychotherapy";journal;"10633995, 10990879";"John Wiley and Sons Ltd";No;No;1,301;Q1;103;179;456;11946;1746;455;3,04;66,74;55,94;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1993-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Psychology" +3151;21100286318;"Energy, Sustainability and Society";journal;"21920567";"Springer Science + Business Media";Yes;No;1,301;Q1;55;52;166;4159;1118;162;6,30;79,98;45,56;0;United States;Northern America;"Springer Science + Business Media";"2011-2026";"Development (Q1); Energy Engineering and Power Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Social Sciences" +3152;19757;"International Journal of Antimicrobial Agents";journal;"09248579, 18727913";"Elsevier B.V.";No;No;1,301;Q1;167;202;749;9234;3340;647;4,29;45,71;50,21;0;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q1); Pharmacology (medical) (Q1)";"Medicine" +3153;20250;"Journal of Virology";journal;"10985514, 0022538X";"American Society for Microbiology";Yes;No;1,301;Q1;338;768;1844;47181;7169;1817;3,85;61,43;44,30;6;United States;Northern America;"American Society for Microbiology";"1967-2026";"Insect Science (Q1); Microbiology (Q1); Virology (Q1); Immunology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology" +3154;61490;"Biosystems Engineering";journal;"15375129, 15375110";"Academic Press";No;No;1,299;Q1;152;205;619;9121;4909;618;8,30;44,49;29,43;0;United States;Northern America;"Academic Press";"2002-2026";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Control and Systems Engineering (Q1); Food Science (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Engineering" +3155;21100787508;"Journal of Global Health";journal;"20472986, 20472978";"University of Edinburgh";Yes;No;1,299;Q1;78;401;970;19234;4575;964;4,78;47,97;48,97;1;United Kingdom;Western Europe;"University of Edinburgh";"2011-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3156;23710;"Journal of Medical Systems";journal;"01485598, 1573689X";"Springer";No;No;1,299;Q1;127;191;327;7096;2486;296;8,34;37,15;37,81;0;United States;Northern America;"Springer";"1977-2026";"Health Informatics (Q1); Health Information Management (Q1); Information Systems (Q1); Medicine (miscellaneous) (Q1)";"Computer Science; Health Professions; Medicine" +3157;25563;"Systems and Control Letters";journal;"01676911";"Elsevier B.V.";No;No;1,299;Q1;159;221;515;7678;1702;513;3,29;34,74;25,78;0;Netherlands;Western Europe;"Elsevier B.V.";"1981-2026";"Computer Science (miscellaneous) (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1)";"Computer Science; Engineering" +3158;4700151702;"Annali della Scuola Normale Superiore di Pisa - Classe di Scienze";journal;"0391173X, 20362145";"Scuola Normale Superiore";No;No;1,298;Q1;59;19;188;540;210;188;1,11;28,42;14,63;0;Italy;Western Europe;"Scuola Normale Superiore";"1996-2025";"Mathematics (miscellaneous) (Q1); Theoretical Computer Science (Q1)";"Mathematics" +3159;6400153120;"Chinese Medicine (United Kingdom)";journal;"17498546, 19910150";"BioMed Central Ltd";Yes;No;1,298;Q1;75;213;474;16177;3716;472;7,50;75,95;45,27;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Complementary and Alternative Medicine (Q1); Pharmacology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +3160;21100857212;"Current Opinion in Systems Biology";journal;"24523100";"Elsevier Ltd";No;No;1,298;Q1;43;18;68;1148;222;64;3,90;63,78;28,57;0;United Kingdom;Western Europe;"Elsevier Ltd";"2017-2025";"Applied Mathematics (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Computer Science Applications (Q1); Drug Discovery (Q1); Modeling and Simulation (Q1)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics; Pharmacology, Toxicology and Pharmaceutics" +3161;23292;"International Journal of Sustainable Development and World Ecology";journal;"17452627, 13504509";"Taylor and Francis Ltd.";No;No;1,298;Q1;73;65;205;4238;1963;204;9,19;65,20;31,80;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)";"Environmental Science; Social Sciences" +3162;25702;"Ore Geology Reviews";journal;"01691368";"Elsevier B.V.";Yes;No;1,298;Q1;149;533;1558;49091;6934;1539;4,44;92,10;29,41;0;Netherlands;Western Europe;"Elsevier B.V.";"1986-2026";"Economic Geology (Q1); Geochemistry and Petrology (Q1); Geology (Q1)";"Earth and Planetary Sciences" +3163;24602;"Aquatic Toxicology";journal;"0166445X, 18791514";"Elsevier B.V.";No;No;1,297;Q1;179;349;850;27100;4338;845;5,15;77,65;46,49;0;Netherlands;Western Europe;"Elsevier B.V.";"1981-2026";"Aquatic Science (Q1); Health, Toxicology and Mutagenesis (Q1)";"Agricultural and Biological Sciences; Environmental Science" +3164;145211;"Asia Pacific Journal of Management";journal;"02174561, 15729958";"Springer";No;No;1,297;Q1;105;154;195;14532;1290;195;6,27;94,36;37,86;0;United States;Northern America;"Springer";"1983-2026";"Business and International Management (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3165;25577;"Diabetic Medicine";journal;"14645491, 07423071";"Wiley-Blackwell Publishing Ltd";No;No;1,297;Q1;177;239;681;8406;2169;562;3,09;35,17;58,75;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1984-2026";"Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Endocrinology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3166;21101162721;"Additive Manufacturing Letters";journal;"27723690";"Elsevier B.V.";Yes;No;1,296;Q1;25;81;218;3240;1336;218;5,97;40,00;19,39;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +3167;21101140111;"Advances in Ophthalmology Practice and Research";journal;"26673762";"Elsevier Inc.";Yes;No;1,296;Q1;13;40;85;2123;412;71;4,70;53,08;50,51;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Ophthalmology (Q1)";"Medicine" +3168;22162;"Genetic Epidemiology";journal;"07410395, 10982272";"Wiley-Liss Inc.";Yes;No;1,296;Q1;111;47;104;2002;423;101;4,26;42,60;44,01;0;United States;Northern America;"Wiley-Liss Inc.";"1984-2026";"Epidemiology (Q1); Genetics (clinical) (Q1)";"Medicine" +3169;17259;"IEEE Geoscience and Remote Sensing Letters";journal;"15580571, 1545598X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,296;Q1;176;951;3813;18416;19667;3812;4,98;19,36;29,74;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2004-2026";"Electrical and Electronic Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Engineering" +3170;15313;"Suicide and Life-Threatening Behavior";journal;"03630234, 1943278X";"Wiley-Blackwell";No;No;1,296;Q1;118;122;286;6700;990;282;2,92;54,92;61,01;2;United States;Northern America;"Wiley-Blackwell";"1971-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Psychology" +3171;23675;"Artificial Intelligence";journal;"00043702";"Elsevier B.V.";No;No;1,295;Q1;181;104;365;6705;2370;362;5,73;64,47;18,97;1;Netherlands;Western Europe;"Elsevier B.V.";"1968, 1970-2026";"Artificial Intelligence (Q1); Linguistics and Language (Q1)";"Computer Science; Social Sciences" +3172;21101176003;"Gas Science and Engineering";journal;"29499097, 29499089";"Elsevier B.V.";No;No;1,295;Q1;132;181;867;12965;6153;865;7,18;71,63;25,33;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Energy" +3173;4000148310;"Geobiology";journal;"14724677, 14724669";"John Wiley and Sons Inc";No;No;1,294;Q1;93;32;140;3187;487;140;3,49;99,59;41,33;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2003-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Environmental Science (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +3174;25655;"Journal of Adolescence";journal;"10959254, 01401971";"John Wiley and Sons Inc";No;No;1,294;Q1;153;178;360;11733;1520;358;3,73;65,92;62,52;3;United States;Northern America;"John Wiley and Sons Inc";"1978-2026";"Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1); Social Psychology (Q1)";"Medicine; Psychology" +3175;21101040668;"npj Materials Degradation";journal;"23972106";"Nature Publishing Group";Yes;No;1,294;Q1;57;163;317;10492;2823;314;6,97;64,37;30,01;0;United Kingdom;Western Europe;"Nature Publishing Group";"2017-2026";"Ceramics and Composites (Q1); Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Materials Science" +3176;21100466871;"Review Journal of Autism and Developmental Disorders";journal;"21957177, 21957185";"Springer New York";No;No;1,294;Q1;48;94;193;7350;1141;193;5,61;78,19;71,06;4;United States;Northern America;"Springer New York";"2014-2026";"Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1); Developmental Neuroscience (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +3177;145630;"Diabetes Spectrum";journal;"19447353, 10409165";"American Diabetes Association Inc.";No;No;1,293;Q1;52;85;156;2727;410;129;3,02;32,08;68,04;0;United States;Northern America;"American Diabetes Association Inc.";"2005-2025";"Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)";"Medicine" +3178;26947;"Journal of Catalysis";journal;"10902694, 00219517";"Academic Press Inc.";No;No;1,293;Q1;295;490;1356;29275;8462;1352;5,98;59,74;36,47;0;United States;Northern America;"Academic Press Inc.";"1962-2026";"Catalysis (Q1); Physical and Theoretical Chemistry (Q1)";"Chemical Engineering; Chemistry" +3179;16711;"Annals of Botany";journal;"03057364, 10958290";"Oxford University Press";Yes;No;1,292;Q1;224;232;522;19520;2244;477;3,80;84,14;44,30;4;United Kingdom;Western Europe;"Oxford University Press";"1887-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +3180;21101223522;"Supply Chain Analytics";journal;"29498635";"Elsevier B.V.";Yes;No;1,292;Q1;21;77;72;5406;867;71;12,04;70,21;24,77;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Applied Mathematics (Q1)";"Mathematics" +3181;21100255737;"Anthropocene";journal;"22133054";"Elsevier B.V.";No;No;1,291;Q1;52;48;113;3884;597;112;4,85;80,92;31,35;0;United Kingdom;Western Europe;"Elsevier B.V.";"2013-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Ecology (Q1); Global and Planetary Change (Q2)";"Earth and Planetary Sciences; Environmental Science" +3182;21101080173;"Chemical Engineering Journal Advances";journal;"26668211";"Elsevier B.V.";Yes;No;1,291;Q1;54;270;478;20599;4119;473;7,87;76,29;32,72;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Environmental Chemistry (Q2)";"Chemical Engineering; Chemistry; Engineering; Environmental Science" +3183;26175;"Journal of Prosthetic Dentistry";journal;"00223913, 10976841";"Elsevier Inc.";No;No;1,291;Q1;168;982;1236;32202;6351;1170;5,38;32,79;42,50;4;United States;Northern America;"Elsevier Inc.";"1951-2026";"Medicine (miscellaneous) (Q1); Oral Surgery (Q1)";"Dentistry; Medicine" +3184;23168;"Language Testing";journal;"02655322, 14770946";"SAGE Publications Ltd";No;No;1,291;Q1;96;29;123;1559;437;106;3,46;53,76;45,71;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1984-2026";"Linguistics and Language (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +3185;27289;"Materials Characterization";journal;"10445803";"Elsevier Inc.";No;No;1,291;Q1;143;1111;2664;57626;17400;2663;6,38;51,87;29,78;0;United States;Northern America;"Elsevier Inc.";"1970, 1986, 1990-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science; Physics and Astronomy" +3186;19239;"Reviews in the Neurosciences";journal;"21910200, 03341763";"Walter de Gruyter GmbH";No;No;1,291;Q1;97;46;147;7433;803;147;5,71;161,59;47,06;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1986-1990, 1992-2026";"Neuroscience (miscellaneous) (Q1)";"Neuroscience" +3187;4700152255;"Women and Birth";journal;"18715192, 18781799";"Elsevier B.V.";No;No;1,291;Q1;71;109;432;4823;1707;415;3,50;44,25;83,57;1;Netherlands;Western Europe;"Elsevier B.V.";"2006-2026";"Maternity and Midwifery (Q1); Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)";"Medicine; Nursing" +3188;30081;"Archives of Disease in Childhood: Fetal and Neonatal Edition";journal;"13592998, 14682052";"BMJ Publishing Group";No;No;1,290;Q1;142;159;406;3956;1307;317;3,00;24,88;54,61;0;United Kingdom;Western Europe;"BMJ Publishing Group";"1994-2026";"Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +3189;5600155551;"International Political Sociology";journal;"17495687, 17495679";"Oxford University Press";No;No;1,290;Q1;64;42;104;3687;365;101;3,31;87,79;50,00;2;United Kingdom;Western Europe;"Oxford University Press";"2008-2026";"Sociology and Political Science (Q1)";"Social Sciences" +3190;26249;"Maritime Economics and Logistics";journal;"1479294X, 14792931";"Palgrave Macmillan";No;No;1,290;Q1;70;42;101;2215;770;90;7,09;52,74;28,57;3;United Kingdom;Western Europe;"Palgrave Macmillan";"2003-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Transportation (Q1)";"Economics, Econometrics and Finance; Social Sciences" +3191;11900154404;"PLOS Neglected Tropical Diseases";journal;"19352727, 19352735";"Public Library of Science";Yes;No;1,290;Q1;182;890;2179;43414;8487;2151;3,64;48,78;43,02;13;United States;Northern America;"Public Library of Science";"2007-2026";"Infectious Diseases (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +3192;21101047375;"Smart Materials in Medicine";journal;"25901834";"KeAi Communications Co.";Yes;No;1,290;Q1;38;24;128;3667;1139;127;9,55;152,79;42,26;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1)";"Chemical Engineering; Engineering; Materials Science" +3193;21100286445;"Journal of Current Issues and Research in Advertising";journal;"10641734, 21647313";"Taylor and Francis Ltd.";No;No;1,290;Q2;49;46;75;4011;424;74;5,88;87,20;49,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2010, 2012-2026";"Marketing (Q2)";"Business, Management and Accounting" +3194;19700176401;"Applied Economic Perspectives and Policy";journal;"20405804, 20405790";"John Wiley & Sons Inc.";No;No;1,289;Q1;75;102;305;5725;1429;305;5,07;56,13;34,83;5;United States;Northern America;"John Wiley & Sons Inc.";"1988-1989, 1996, 1999, 2010-2026";"Development (Q1); Economics and Econometrics (Q1)";"Economics, Econometrics and Finance; Social Sciences" +3195;18654;"Applied Psycholinguistics";journal;"14691817, 01427164";"Cambridge University Press";No;No;1,289;Q1;111;55;143;3928;529;143;3,84;71,42;71,01;0;United Kingdom;Western Europe;"Cambridge University Press";"1980-2026";"Experimental and Cognitive Psychology (Q1); Linguistics and Language (Q1); Psychology (miscellaneous) (Q1)";"Psychology; Social Sciences" +3196;6300153114;"Fungal Biology Reviews";journal;"17494613";"Elsevier B.V.";No;No;1,289;Q1;75;30;86;2894;600;80;5,39;96,47;49,55;0;Netherlands;Western Europe;"Elsevier B.V.";"2007-2026";"Microbiology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Immunology and Microbiology" +3197;21101184500;"Applied Corpus Linguistics";journal;"26667991";"Elsevier Inc.";No;No;1,288;Q1;14;45;89;2268;406;88;5,13;50,40;49,44;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Linguistics and Language (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +3198;14122;"Economic Development and Cultural Change";journal;"00130079, 15392988";"University of Chicago Press";No;Yes;1,288;Q1;92;56;146;3028;304;141;1,78;54,07;40,12;12;United States;Northern America;"University of Chicago Press";"1978-1979, 1982-2026";"Development (Q1); Economics and Econometrics (Q1)";"Economics, Econometrics and Finance; Social Sciences" +3199;30824;"Foot and Ankle International";journal;"19447876, 10711007";"SAGE Publications Inc.";No;No;1,288;Q1;138;191;534;5025;1484;474;2,49;26,31;24,10;0;United States;Northern America;"SAGE Publications Inc.";"1980-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +3200;21100900065;"International Journal of Neonatal Screening";journal;"2409515X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,288;Q1;35;113;212;3810;796;194;3,47;33,72;64,81;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2025";"Immunology and Microbiology (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Immunology and Microbiology; Medicine" +3201;12028;"Applied Psychological Measurement";journal;"01466216, 15523497";"SAGE Publications Inc.";No;No;1,287;Q1;79;39;102;1332;207;99;2,06;34,15;38,64;0;United States;Northern America;"SAGE Publications Inc.";"1977-2026";"Psychology (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Psychology; Social Sciences" +3202;6800153101;"Expert Opinion on Drug Discovery";journal;"1746045X, 17460441";"Taylor and Francis Ltd.";No;No;1,287;Q1;99;113;329;12398;2065;278;6,52;109,72;38,81;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Drug Discovery (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +3203;19700175115;"Frontiers in Systems Neuroscience";journal;"16625137";"Frontiers Media SA";Yes;No;1,287;Q1;109;45;250;3308;988;220;2,79;73,51;35,38;0;Switzerland;Western Europe;"Frontiers Media SA";"2007-2026";"Cognitive Neuroscience (Q1); Developmental Neuroscience (Q1); Neuroscience (miscellaneous) (Q1); Cellular and Molecular Neuroscience (Q2)";"Neuroscience" +3204;17544;"International Journal of Biological Macromolecules";journal;"01418130, 18790003";"Elsevier B.V.";No;No;1,287;Q1;247;10005;16830;697729;159128;16828;9,28;69,74;44,45;3;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Biochemistry (Q1); Biomaterials (Q1); Food Science (Q1); Structural Biology (Q1); Molecular Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Materials Science" +3205;21101023872;"JAMIA Open";journal;"25742531";"Oxford University Press";Yes;No;1,287;Q1;39;175;364;6695;1690;362;4,93;38,26;50,42;1;United States;Northern America;"Oxford University Press";"2018-2026";"Health Informatics (Q1)";"Medicine" +3206;16790;"Journal of Pain and Symptom Management";journal;"18736513, 08853924";"Elsevier Inc.";No;No;1,287;Q1;178;329;821;10866;2986;732;3,28;33,03;60,97;3;United States;Northern America;"Elsevier Inc.";"1986-2026";"Anesthesiology and Pain Medicine (Q1); Neurology (clinical) (Q1); Nursing (miscellaneous) (Q1)";"Medicine; Nursing" +3207;18487;"Cellular Signalling";journal;"18733913, 08986568";"Elsevier Inc.";No;No;1,287;Q2;176;591;1007;37215;4892;1006;4,76;62,97;44,22;0;United States;Northern America;"Elsevier Inc.";"1989-2026";"Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3208;30056;"Acta Obstetricia et Gynecologica Scandinavica";journal;"16000412, 00016349";"Wiley-Blackwell";Yes;No;1,286;Q1;131;273;642;8928;2188;553;3,32;32,70;64,12;3;United Kingdom;Western Europe;"Wiley-Blackwell";"1921-2026";"Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)";"Medicine" +3209;17369;"Clinical Chemistry and Laboratory Medicine";journal;"14346621, 14374331";"Walter de Gruyter GmbH";No;No;1,286;Q1;132;455;992;11195;3342;714;3,59;24,60;47,66;1;Germany;Western Europe;"Walter de Gruyter GmbH";"1963-2026";"Biochemistry (medical) (Q1); Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3210;20201;"International Journal of Manpower";journal;"01437720";"Emerald Group Publishing Ltd.";No;No;1,286;Q1;84;113;284;6298;2235;279;4,61;55,73;40,67;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1970, 1980-2026";"Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +3211;21100383742;"Journal of Materials Research and Technology";journal;"22387854, 22140697";"Elsevier Editora Ltda";Yes;No;1,286;Q1;141;3237;8353;176254;66626;8347;7,85;54,45;28,50;0;Brazil;Latin America;"Elsevier Editora Ltda";"2012-2026";"Biomaterials (Q1); Ceramics and Composites (Q1); Metals and Alloys (Q1); Surfaces, Coatings and Films (Q1)";"Materials Science" +3212;21100933196;"ChemBioEng Reviews";journal;"21969744";"Wiley-Blackwell Publishing Ltd";No;No;1,285;Q1;54;35;146;5672;1360;143;9,04;162,06;33,04;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2014-2026";"Biochemistry (Q1); Bioengineering (Q1); Chemical Engineering (miscellaneous) (Q1); Filtration and Separation (Q1); Industrial and Manufacturing Engineering (Q1); Process Chemistry and Technology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering" +3213;25837;"Constructive Approximation";journal;"14320940, 01764276";"Springer New York";No;No;1,285;Q1;59;45;134;1633;395;132;1,45;36,29;15,05;0;United States;Northern America;"Springer New York";"1985-2026";"Analysis (Q1); Computational Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +3214;100147342;"European Journal of Education";journal;"14653435, 01418211";"Wiley-Blackwell Publishing Ltd";No;No;1,285;Q1;72;478;304;30821;2016;290;5,10;64,48;51,64;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2005-2026";"Education (Q1)";"Social Sciences" +3215;22223;"Forest Policy and Economics";journal;"13899341";"Elsevier B.V.";No;No;1,285;Q1;97;212;446;16360;2390;407;5,27;77,17;39,37;7;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Economics and Econometrics (Q1); Forestry (Q1); Management, Monitoring, Policy and Law (Q1); Sociology and Political Science (Q1)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +3216;15481;"Journal of Experimental Psychology: Human Perception and Performance";journal;"00961523, 19391277";"American Psychological Association";No;No;1,285;Q1;175;135;272;6483;703;271;2,33;48,02;41,81;0;United States;Northern America;"American Psychological Association";"1975-2026";"Arts and Humanities (miscellaneous) (Q1); Behavioral Neuroscience (Q1); Experimental and Cognitive Psychology (Q1); Medicine (miscellaneous) (Q1)";"Arts and Humanities; Medicine; Neuroscience; Psychology" +3217;13197;"Nonprofit and Voluntary Sector Quarterly";journal;"15527395, 08997640";"SAGE Publications Inc.";No;No;1,285;Q1;111;89;226;6581;1017;218;4,68;73,94;50,68;0;United States;Northern America;"SAGE Publications Inc.";"1972-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +3218;26776;"Applied Ocean Research";journal;"01411187";"Elsevier B.V.";Yes;No;1,284;Q1;104;451;1022;21870;5774;1020;5,46;48,49;22,92;0;United Kingdom;Western Europe;"Elsevier B.V.";"1979-2026";"Ocean Engineering (Q1)";"Engineering" +3219;19900195063;"Frontiers of Medicine";journal;"20950225, 20950217";"Springer Science + Business Media";Yes;No;1,284;Q1;70;94;237;7865;962;220;3,99;83,67;46,09;0;China;Asiatic Region;"Springer Science + Business Media";"2011-2025";"Medicine (miscellaneous) (Q1)";"Medicine" +3220;33648;"Neurorehabilitation and Neural Repair";journal;"15526844, 15459683";"SAGE Publications Inc.";No;No;1,284;Q1;141;80;221;4212;1001;217;3,97;52,65;46,38;0;United States;Northern America;"SAGE Publications Inc.";"1987-2026";"Neurology (Q1); Neurology (clinical) (Q1); Rehabilitation (Q1)";"Medicine; Neuroscience" +3221;21101074923;"Smart Energy";journal;"26669552";"Elsevier Ltd";Yes;No;1,284;Q1;26;48;99;2623;624;97;6,65;54,65;22,16;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Energy Engineering and Power Technology (Q1); Energy (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Mechanical Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering; Environmental Science" +3222;21101060176;"International Journal of Nursing Studies Advances";journal;"2666142X";"Elsevier B.V.";Yes;No;1,283;Q1;23;169;205;8176;1147;203;5,69;48,38;67,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +3223;23015;"Journal of Ethnopharmacology";journal;"03788741, 18727573";"Elsevier Ireland Ltd";No;No;1,283;Q1;254;1465;3511;83928;26378;3507;7,67;57,29;48,01;3;Ireland;Western Europe;"Elsevier Ireland Ltd";"1979-2026";"Drug Discovery (Q1); Pharmacology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +3224;18537;"Journal of Fluid Mechanics";journal;"14697645, 00221120";"Cambridge University Press";No;No;1,283;Q1;281;1307;3460;72408;14116;3453;3,96;55,40;18,15;0;United Kingdom;Western Europe;"Cambridge University Press";"1956-2026";"Applied Mathematics (Q1); Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Mathematics; Physics and Astronomy" +3225;21101017693;"Motivation Science";journal;"23338113, 23338121";"American Psychological Association";No;No;1,283;Q1;24;28;127;2035;434;125;3,47;72,68;34,57;0;United States;Northern America;"American Psychological Association";"2015, 2019-2025";"Applied Psychology (Q1); Developmental and Educational Psychology (Q1); Environmental Engineering (Q1); Health, Toxicology and Mutagenesis (Q1)";"Environmental Science; Psychology" +3226;17700156745;"Psychology of Religion and Spirituality";journal;"19431562, 19411022";"American Psychological Association";No;No;1,283;Q1;58;46;175;2246;590;175;3,05;48,83;41,48;0;United States;Northern America;"American Psychological Association";"2009-2025";"Applied Psychology (Q1); Religious Studies (Q1); Social Psychology (Q1)";"Arts and Humanities; Psychology" +3227;22030;"Canadian Geotechnical Journal";journal;"12086010, 00083674";"Canadian Science Publishing";No;No;1,282;Q1;170;360;494;19088;2180;446;4,03;53,02;23,98;0;Canada;Northern America;"Canadian Science Publishing";"1968-1971, 1974, 1976-2026";"Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Engineering" +3228;21100823286;"Ecological Processes";journal;"21921709";"Springer International Publishing AG";Yes;No;1,282;Q1;59;90;214;6739;1126;211;4,88;74,88;38,21;0;Switzerland;Western Europe;"Springer International Publishing AG";"2012-2026";"Ecological Modeling (Q1); Ecology (Q1)";"Environmental Science" +3229;22243;"Human Gene Therapy";journal;"10430342, 15577422";"Mary Ann Liebert Inc.";No;No;1,282;Q1;167;103;341;4923;1237;318;3,78;47,80;46,86;0;United States;Northern America;"Mary Ann Liebert Inc.";"1990-2026";"Genetics (Q1); Molecular Biology (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology" +3230;21100900147;"Micro and Nano Systems Letters";journal;"22139621";"SpringerOpen";Yes;No;1,282;Q1;28;32;78;1922;422;19;5,18;60,06;22,22;0;Germany;Western Europe;"SpringerOpen";"2013-2026";"Biomaterials (Q1); Biomedical Engineering (Q1)";"Engineering; Materials Science" +3231;21101028427;"Review of Education";journal;"20496613";"John Wiley & Sons Inc.";No;No;1,282;Q1;37;105;179;9791;1007;174;4,96;93,25;59,21;2;United States;Northern America;"John Wiley & Sons Inc.";"2013-2026";"Education (Q1)";"Social Sciences" +3232;27746;"Intensive and Critical Care Nursing";journal;"09643397, 15324036";"Churchill Livingstone";No;No;1,281;Q1;74;339;492;8556;2101;376;4,07;25,24;56,29;0;United States;Northern America;"Churchill Livingstone";"1992-2026";"Critical Care Nursing (Q1)";"Nursing" +3233;23101;"Language and Education";journal;"09500782";"Taylor and Francis Ltd.";No;No;1,281;Q1;67;91;148;4566;758;139;5,25;50,18;65,58;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +3234;28409;"Progress in Oceanography";journal;"00796611";"Elsevier Ltd";No;No;1,281;Q1;166;140;432;11521;1812;430;4,03;82,29;38,62;4;United Kingdom;Western Europe;"Elsevier Ltd";"1963-1965, 1969, 1973, 1976-2026";"Aquatic Science (Q1); Geology (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +3235;19700182043;"Drug Delivery and Translational Research";journal;"21903948, 2190393X";"Springer";No;No;1,280;Q1;81;327;625;25471;5320;613;7,83;77,89;48,22;1;United States;Northern America;"Springer";"2011-2026";"Pharmaceutical Science (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +3236;21100836195;"Econometrics and Statistics";journal;"24523062";"Elsevier B.V.";No;No;1,280;Q1;22;70;189;2628;437;183;2,20;37,54;26,43;4;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Economics and Econometrics (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +3237;20783;"Expert Review of Vaccines";journal;"14760584, 17448395";"Taylor and Francis Ltd.";Yes;No;1,280;Q1;117;109;368;6970;1725;319;5,48;63,94;50,00;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Drug Discovery (Q1); Pharmacology (Q1); Immunology (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +3238;21100889858;"Indonesian Journal of Science and Technology";journal;"25278045, 25281410";"Universitas Pendidikan Indonesia";Yes;No;1,280;Q1;39;27;95;1370;1090;95;13,95;50,74;28,68;0;Indonesia;Asiatic Region;"Universitas Pendidikan Indonesia";"2016-2026";"Chemical Engineering (miscellaneous) (Q1); Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1); Space and Planetary Science (Q1)";"Chemical Engineering; Computer Science; Earth and Planetary Sciences; Engineering" +3239;32805;"Tellus, Series B: Chemical and Physical Meteorology";journal;"16000889, 02806509";"Stockholm University Press";Yes;No;1,280;Q1;117;5;12;265;54;12;1,38;53,00;39,29;0;United Kingdom;Western Europe;"Stockholm University Press";"1983-2025";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +3240;21101222661;"Proceedings of the ACM SIGKDD International Conference on Knowledge Discovery and Data Mining";conference and proceedings;"2154817X";"Association for Computing Machinery";No;No;1,280;-;213;839;1201;43563;9427;1195;7,85;51,92;28,18;3;United States;Northern America;"Association for Computing Machinery";"2002-2003, 2005-2015, 2018-2019, 2021, 2023-2025";"Information Systems; Software";"Computer Science" +3241;21100784665;"IEEE Transactions on Cognitive and Developmental Systems";journal;"23798920, 23798939";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,279;Q1;66;171;523;9479;3095;513;5,33;55,43;28,51;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2016-2026";"Artificial Intelligence (Q1); Software (Q1)";"Computer Science" +3242;21101045767;"Journal of Hospitality and Tourism Insights";journal;"25149806, 25149792";"Emerald Group Publishing Ltd.";No;No;1,279;Q1;44;301;351;21034;3387;348;9,58;69,88;41,57;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2018-2026";"Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +3243;21101150317;"Journal of the Society for Cardiovascular Angiography and Interventions";journal;"27729303";"Elsevier B.V.";Yes;No;1,279;Q1;21;291;569;5742;1637;449;2,78;19,73;21,89;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +3244;27851;"Marine Policy";journal;"0308597X";"Elsevier Ltd";No;No;1,279;Q1;140;358;1295;25001;6573;1292;4,81;69,84;43,58;25;United Kingdom;Western Europe;"Elsevier Ltd";"1977-2026";"Aquatic Science (Q1); Economics and Econometrics (Q1); Environmental Science (miscellaneous) (Q1); Law (Q1); Management, Monitoring, Policy and Law (Q1)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +3245;21101165016;"Resilient Cities and Structures";journal;"27727416";"Elsevier B.V.";Yes;Yes;1,279;Q1;18;34;85;2408;576;80;5,29;70,82;22,45;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Civil and Structural Engineering (Q1)";"Engineering" +3246;19700188307;"Chinese Journal of Communication";journal;"17544769, 17544750";"Taylor and Francis Ltd.";No;No;1,278;Q1;40;46;79;2656;283;76;3,20;57,74;50,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Communication (Q1)";"Social Sciences" +3247;23062;"Circulation Journal";journal;"13474820, 13469843";"Japanese Circulation Society";Yes;No;1,278;Q1;132;196;827;5444;2087;544;2,61;27,78;17,92;0;Japan;Asiatic Region;"Japanese Circulation Society";"1996, 1999-2000, 2002-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +3248;23689;"International Journal of Medical Informatics";journal;"18728243, 13865056";"Elsevier Ireland Ltd";No;No;1,278;Q1;150;327;738;14952;4511;723;6,18;45,72;45,06;2;Ireland;Western Europe;"Elsevier Ireland Ltd";"1997-2026";"Health Informatics (Q1)";"Medicine" +3249;26359;"Journal of International Relations and Development";journal;"14086980, 15811980";"Palgrave Macmillan Ltd.";No;No;1,278;Q1;49;25;103;1997;418;100;4,28;79,88;52,94;1;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1998-2026";"Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +3250;21100979265;"Railway Engineering Science";journal;"26624753, 26624745";"Springer";Yes;Yes;1,278;Q1;45;52;88;2527;641;86;6,18;48,60;22,83;0;Singapore;Asiatic Region;"Springer";"2020-2026";"Computational Mechanics (Q1); Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1); Transportation (Q1)";"Computer Science; Engineering; Social Sciences" +3251;12053;"Archives of Suicide Research";journal;"15436136, 13811118";"Routledge";No;No;1,277;Q1;73;108;311;5420;1139;311;2,88;50,19;55,25;4;United Kingdom;Western Europe;"Routledge";"1995-1999, 2002-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +3252;13279;"European Planning Studies";journal;"09654313, 14695944";"Routledge";No;No;1,277;Q1;116;113;391;6936;2046;379;4,89;61,38;40,82;4;United Kingdom;Western Europe;"Routledge";"1993-2026";"Geography, Planning and Development (Q1)";"Social Sciences" +3253;14852;"Intelligence";journal;"01602896";"Elsevier Ltd";No;No;1,277;Q1;119;47;140;3930;542;128;3,44;83,62;32,33;0;United Kingdom;Western Europe;"Elsevier Ltd";"1977-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1)";"Arts and Humanities; Psychology" +3254;14420;"Journal of Career Development";journal;"08948453, 15560856";"SAGE Publications Inc.";No;No;1,277;Q1;67;48;199;2912;999;198;3,50;60,67;63,40;0;United States;Northern America;"SAGE Publications Inc.";"1972-1973, 1975-2026";"Applied Psychology (Q1); Education (Q1); Organizational Behavior and Human Resource Management (Q1); Psychology (miscellaneous) (Q1)";"Business, Management and Accounting; Psychology; Social Sciences" +3255;17139;"Materials and Structures/Materiaux et Constructions";journal;"13595997, 18716873";"Springer Science and Business Media B.V.";No;No;1,277;Q1;157;358;657;19084;2808;631;3,85;53,31;28,07;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1985-1991, 1994, 1996-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +3256;18965;"Molecular Phylogenetics and Evolution";journal;"10959513, 10557903";"Academic Press Inc.";No;No;1,277;Q1;188;132;604;12522;2456;602;4,12;94,86;32,15;0;United States;Northern America;"Academic Press Inc.";"1992-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1); Molecular Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +3257;21100915393;"Neuroscience of Consciousness";journal;"20572107";"Oxford University Press";Yes;No;1,277;Q1;27;56;83;4681;359;83;3,60;83,59;36,40;0;United Kingdom;Western Europe;"Oxford University Press";"2017, 2019-2026";"Clinical Psychology (Q1); Experimental and Cognitive Psychology (Q1); Neurology (Q1); Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience; Psychology" +3258;21101021763;"Ophthalmology Glaucoma";journal;"25894196, 25894234";"American Academy of Ophthalmology";No;No;1,277;Q1;33;114;294;2999;755;218;2,43;26,31;37,55;0;United States;Northern America;"American Academy of Ophthalmology";"2018-2026";"Ophthalmology (Q1)";"Medicine" +3259;21101018944;"RILEM Technical Letters";journal;"25180231";"";Yes;Yes;1,277;Q1;33;12;55;777;225;55;3,14;64,75;26,03;0;France;Western Europe;"";"2016-2025";"Building and Construction (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +3260;19065;"Traffic";journal;"16000854, 13989219";"Blackwell Munksgaard";No;No;1,277;Q1;156;23;100;1903;308;96;2,84;82,74;52,21;0;Denmark;Western Europe;"Blackwell Munksgaard";"2000-2026";"Biochemistry (Q1); Genetics (Q1); Cell Biology (Q2); Molecular Biology (Q2); Structural Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3261;21100469670;"Antibiotics";journal;"20796382";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,276;Q1;124;1279;4787;82218;29079;4725;5,83;64,28;50,58;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010, 2012-2026";"Biochemistry (Q1); Infectious Diseases (Q1); Microbiology (Q1); Microbiology (medical) (Q1); Pharmacology (medical) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +3262;14352;"Brain Topography";journal;"15736792, 08960267";"Springer";No;No;1,276;Q1;92;76;203;4763;944;201;5,13;62,67;43,02;0;United States;Northern America;"Springer";"1988-2026";"Anatomy (Q1); Neurology (Q1); Neurology (clinical) (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Health Professions; Medicine; Neuroscience" +3263;14855;"Cerebral Cortex";journal;"10473211, 14602199";"Oxford University Press";No;No;1,276;Q1;294;353;1876;25184;6446;1874;3,29;71,34;41,39;1;United Kingdom;Western Europe;"Oxford University Press";"1991-2026";"Cognitive Neuroscience (Q1); Cellular and Molecular Neuroscience (Q2)";"Neuroscience" +3264;12178;"Journal of Lightwave Technology";journal;"15582213, 07338724";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,276;Q1;235;1274;2719;44431;15499;2702;5,53;34,88;27,31;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1983-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1)";"Engineering; Physics and Astronomy" +3265;12628;"Oral Oncology";journal;"18790593, 13688375";"Elsevier Ltd";No;No;1,276;Q1;149;577;1105;11459;2637;501;2,40;19,86;38,14;1;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Oncology (Q1); Oral Surgery (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Dentistry; Medicine" +3266;20863;"Trends in Parasitology";journal;"14715007, 14714922";"Elsevier Ltd";No;No;1,276;Q1;179;156;424;7504;1685;387;3,94;48,10;39,26;2;United Kingdom;Western Europe;"Elsevier Ltd";"2001-2026";"Infectious Diseases (Q1); Parasitology (Q1)";"Immunology and Microbiology; Medicine" +3267;14937;"Digest of Technical Papers - Symposium on VLSI Technology";conference and proceedings;"21589682, 07431562";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,276;-;88;270;694;2828;2483;689;3,37;10,47;20,21;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1982-2000, 2003-2025";"Electrical and Electronic Engineering";"Engineering" +3268;110527;"Proceedings of the Annual ACM-SIAM Symposium on Discrete Algorithms";conference and proceedings;"15579468, 10719040";"Association for Computing Machinery";No;No;1,276;-;116;149;535;6340;1552;530;2,99;42,55;15,86;0;United States;Northern America;"Association for Computing Machinery";"1990-1992, 1994-2025";"Mathematics (miscellaneous); Software";"Computer Science; Mathematics" +3269;21100435142;"Anaesthesia Critical Care and Pain Medicine";journal;"23525568";"Elsevier Masson s.r.l.";No;No;1,274;Q1;56;143;397;4182;1085;209;2,99;29,24;36,98;0;France;Western Europe;"Elsevier Masson s.r.l.";"2015-2026";"Anesthesiology and Pain Medicine (Q1); Critical Care and Intensive Care Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +3270;19700182013;"Genome Biology and Evolution";journal;"17596653";"Oxford University Press";Yes;No;1,274;Q1;109;245;683;18756;2126;668;3,03;76,56;35,68;0;United Kingdom;Western Europe;"Oxford University Press";"2009-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +3271;19700187515;"International Journal of Central Banking";journal;"18154654, 18157556";"European Central Bank";No;No;1,274;Q1;44;32;113;1673;214;112;1,97;52,28;20,00;2;Germany;Western Europe;"European Central Bank";"2010-2025";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +3272;13945;"Investigative Ophthalmology and Visual Science";journal;"01460404, 15525783";"Association for Research in Vision and Ophthalmology Inc.";Yes;No;1,274;Q1;268;811;1326;42023;5652;1308;4,17;51,82;45,23;1;United States;Northern America;"Association for Research in Vision and Ophthalmology Inc.";"1963, 1977-2026";"Ophthalmology (Q1); Sensory Systems (Q1); Cellular and Molecular Neuroscience (Q2)";"Medicine; Neuroscience" +3273;11900154396;"Journal of Cell Communication and Signaling";journal;"1873961X, 18739601";"John Wiley and Sons Inc";Yes;No;1,274;Q1;67;58;187;3088;914;174;4,67;53,24;40,00;0;Netherlands;Western Europe;"John Wiley and Sons Inc";"2007-2026";"Biochemistry (Q1); Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3274;21100945714;"Methods, Data, Analyses";journal;"21904936, 18646956";"GESIS - Leibniz Institute for the Social Sciences";Yes;Yes;1,274;Q1;11;11;36;422;169;35;1,67;38,36;37,04;1;Germany;Western Europe;"GESIS - Leibniz Institute for the Social Sciences";"2019-2025";"Applied Mathematics (Q1); Applied Psychology (Q1); Computer Science Applications (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Computer Science; Decision Sciences; Mathematics; Psychology" +3275;25456;"Proceedings - IEEE International Conference on Robotics and Automation";conference and proceedings;"10504729, 2577087X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,274;-;251;1605;4038;60441;19794;4032;4,72;37,66;22,11;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1984-1985, 1988-1989, 1991-2025";"Artificial Intelligence; Control and Systems Engineering; Electrical and Electronic Engineering; Software";"Computer Science; Engineering" +3276;21101085507;"Bone and Joint Open";journal;"26331462";"British Editorial Society of Bone and Joint Surgery";Yes;No;1,273;Q1;33;180;380;6414;1336;375;3,27;35,63;28,60;0;United Kingdom;Western Europe;"British Editorial Society of Bone and Joint Surgery";"2020-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +3277;21101049624;"International Journal of Research in Undergraduate Mathematics Education";journal;"21989753";"Springer Science and Business Media B.V.";No;No;1,273;Q1;18;41;87;2439;202;79;2,02;59,49;50,94;0;Germany;Western Europe;"Springer Science and Business Media B.V.";"2016-2026";"Education (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics; Social Sciences" +3278;21100255493;"Journal of Environmental Chemical Engineering";journal;"22133437, 22132929";"Elsevier Ltd";No;No;1,273;Q1;172;5521;8063;393784;67115;8056;8,10;71,32;38,62;1;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Chemical Engineering (miscellaneous) (Q1); Pollution (Q1); Process Chemistry and Technology (Q1); Waste Management and Disposal (Q1)";"Chemical Engineering; Environmental Science" +3279;5600153585;"Mass Communication and Society";journal;"15327825, 15205436";"Routledge";No;No;1,273;Q1;68;82;144;5570;619;139;4,16;67,93;52,38;1;United Kingdom;Western Europe;"Routledge";"2006, 2008-2026";"Communication (Q1)";"Social Sciences" +3280;22773;"Policy Sciences";journal;"00322687, 15730891";"Springer Netherlands";No;No;1,273;Q1;85;38;110;2811;603;101;4,92;73,97;46,46;2;Netherlands;Western Europe;"Springer Netherlands";"1970-2026";"Development (Q1); Management, Monitoring, Policy and Law (Q1); Public Administration (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Environmental Science; Social Sciences" +3281;23237;"Studies in Educational Evaluation";journal;"0191491X";"Elsevier Ltd";No;No;1,273;Q1;69;84;234;5953;1209;231;5,07;70,87;47,11;0;United Kingdom;Western Europe;"Elsevier Ltd";"1975-2026";"Education (Q1)";"Social Sciences" +3282;21101279750;"Annales Henri Lebesgue";journal;"26449463";"Ecole Normale Superieure de Rennes";Yes;No;1,272;Q1;12;22;110;769;145;110;0,93;34,95;10,26;0;France;Western Europe;"Ecole Normale Superieure de Rennes";"2021-2025";"Algebra and Number Theory (Q1); Analysis (Q1); Geometry and Topology (Q1); Statistics and Probability (Q1)";"Mathematics" +3283;28528;"Explorations in Economic History";journal;"00144983, 10902457";"Academic Press Inc.";No;No;1,272;Q1;61;59;106;3918;211;105;1,94;66,41;17,54;4;United States;Northern America;"Academic Press Inc.";"1969-2026";"Economics and Econometrics (Q1); History (Q1)";"Arts and Humanities; Economics, Econometrics and Finance" +3284;19870;"Journal of Applied Sport Psychology";journal;"10413200, 15331571";"Taylor and Francis Ltd.";No;No;1,272;Q1;99;69;162;3834;757;153;4,60;55,57;42,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Applied Psychology (Q1); Sports Science (Q1)";"Health Professions; Psychology" +3285;22481;"Journal of Phonetics";journal;"00954470, 10958576";"Academic Press";No;No;1,272;Q1;108;43;125;4136;351;125;2,39;96,19;45,00;0;United States;Northern America;"Academic Press";"1995-2026";"Linguistics and Language (Q1); Speech and Hearing (Q1)";"Health Professions; Social Sciences" +3286;21100779241;"Physical Review D";journal;"24700010, 24700029";"American Physical Society";No;No;1,272;Q1;424;4555;12943;337734;61757;12934;4,80;74,15;21,65;0;United States;Northern America;"American Physical Society";"1989, 2001-2003, 2008, 2015-2026";"Nuclear and High Energy Physics (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +3287;21101307614;"Transport Economics and Management";journal;"29498996";"Elsevier B.V.";Yes;No;1,272;Q1;9;37;29;2095;192;29;6,62;56,62;30,48;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1); Transportation (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +3288;21100900600;"Current Treatment Options in Psychiatry";journal;"21963061";"Springer International Publishing AG";No;No;1,271;Q1;34;36;82;2337;388;81;5,48;64,92;57,24;0;Switzerland;Western Europe;"Springer International Publishing AG";"2014-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +3289;21100431860;"Facta Universitatis, Series: Mechanical Engineering";journal;"23350164, 03542025";"University of Nis";Yes;Yes;1,271;Q1;47;48;127;2153;1264;126;11,82;44,85;18,83;0;Serbia;Eastern Europe;"University of Nis";"2015-2025";"Civil and Structural Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Polymers and Plastics (Q1)";"Engineering; Materials Science" +3290;21052;"Marine Structures";journal;"09518339";"Elsevier B.V.";No;No;1,271;Q1;95;156;411;8033;2461;411;6,01;51,49;21,92;0;Netherlands;Western Europe;"Elsevier B.V.";"1988-2026";"Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Ocean Engineering (Q1)";"Engineering; Materials Science" +3291;26441;"Social Science Research";journal;"10960317, 0049089X";"Academic Press Inc.";No;No;1,271;Q1;124;102;274;7588;1179;274;3,86;74,39;38,50;3;United States;Northern America;"Academic Press Inc.";"1972-2026";"Education (Q1); Sociology and Political Science (Q1)";"Social Sciences" +3292;18134;"American Journal of Chinese Medicine";journal;"0192415X, 17936853";"World Scientific";No;No;1,270;Q1;87;96;290;7220;2087;290;7,53;75,21;45,24;0;Singapore;Asiatic Region;"World Scientific";"1974-1977, 1979-2026";"Complementary and Alternative Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +3293;13210;"European Journal of Clinical Investigation";journal;"00142972, 13652362";"John Wiley and Sons Inc";No;No;1,270;Q1;130;174;614;9325;2368;520;4,02;53,59;39,47;1;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1970-2026";"Biochemistry (Q1); Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3294;29066;"Nuclear Fusion";journal;"17414326, 00295515";"IOP Publishing Ltd.";Yes;No;1,270;Q1;148;561;1451;34437;5482;1435;3,56;61,39;22,60;1;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1969-2026";"Condensed Matter Physics (Q1); Nuclear and High Energy Physics (Q1)";"Physics and Astronomy" +3295;28836;"Nursing Ethics";journal;"09697330, 14770989";"SAGE Publications Ltd";No;No;1,270;Q1;89;221;350;10192;1634;327;4,27;46,12;68,35;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994-2026";"Issues, Ethics and Legal Aspects (Q1)";"Nursing" +3296;14271;"Educational Psychology";journal;"14695820, 01443410";"Routledge";Yes;No;1,269;Q1;97;88;200;5509;865;188;3,03;62,60;54,84;0;United Kingdom;Western Europe;"Routledge";"1981-2026";"Developmental and Educational Psychology (Q1); Education (Q1); Experimental and Cognitive Psychology (Q1)";"Psychology; Social Sciences" +3297;19683;"Environmental Microbiology";journal;"14622912, 14622920";"Wiley-Blackwell Publishing Ltd";No;No;1,269;Q1;247;198;889;17019;3822;844;3,91;85,95;44,64;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992, 1999-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Microbiology (Q1)";"Agricultural and Biological Sciences; Immunology and Microbiology" +3298;21100897123;"Natural Gas Industry B";journal;"23528559, 23528540";"KeAi Communications Co.";Yes;Yes;1,269;Q1;40;55;159;2473;1144;156;5,09;44,96;30,59;0;China;Asiatic Region;"KeAi Communications Co.";"2014-2026";"Energy Engineering and Power Technology (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Modeling and Simulation (Q1); Process Chemistry and Technology (Q1)";"Chemical Engineering; Earth and Planetary Sciences; Energy; Mathematics" +3299;21101097345;"ACS Bio and Med Chem Au";journal;"26942437";"American Chemical Society";Yes;No;1,267;Q1;21;81;130;5495;605;126;4,15;67,84;37,58;0;United States;Northern America;"American Chemical Society";"2021-2026";"Biochemistry (Q1); Drug Discovery (Q1); Pharmaceutical Science (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +3300;21101348159;"IEEE Transactions on Machine Learning in Communications and Networking";journal;"2831316X";"Institute of Electrical and Electronics Engineers";Yes;No;1,267;Q1;16;75;119;3704;697;119;5,86;49,39;25,35;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2023-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Science Applications (Q1); Signal Processing (Q1); Software (Q1)";"Computer Science" +3301;25219;"Toxicology";journal;"0300483X, 18793185";"Elsevier Ireland Ltd";No;No;1,267;Q1;189;212;639;14248;3931;636;5,41;67,21;49,41;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1973-2026";"Toxicology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +3302;19400158663;"Biocybernetics and Biomedical Engineering";journal;"02085216";"Elsevier B.V.";No;No;1,266;Q1;77;62;192;3754;1603;191;6,24;60,55;35,83;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Biomedical Engineering (Q1)";"Engineering" +3303;23118;"Current Cardiology Reports";journal;"15233782, 15343170";"Springer";No;No;1,266;Q1;77;172;517;12781;2286;517;4,33;74,31;38,61;0;United States;Northern America;"Springer";"1999-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +3304;21100788713;"Intestinal Research";journal;"15989100, 22881956";"Korean Association for the Study of Intestinal Diseases";Yes;Yes;1,266;Q1;42;56;154;2150;570;138;3,89;38,39;34,62;0;South Korea;Asiatic Region;"Korean Association for the Study of Intestinal Diseases";"2016-2026";"Gastroenterology (Q1)";"Medicine" +3305;21101056433;"Journal of Communications and Information Networks";journal;"20961081, 25093312";"Posts and Telecom Press Co Ltd";No;No;1,266;Q1;28;41;103;1341;466;103;3,48;32,71;29,01;0;China;Asiatic Region;"Posts and Telecom Press Co Ltd";"2017, 2019-2025";"Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +3306;23865;"Journal of Economic Behavior and Organization";journal;"01672681";"Elsevier B.V.";No;No;1,266;Q1;153;419;1165;23718;3737;1155;3,06;56,61;29,62;17;Netherlands;Western Europe;"Elsevier B.V.";"1980-2026";"Economics and Econometrics (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3307;21221;"MRS Bulletin";journal;"08837694, 19381425";"Springer Nature";No;No;1,266;Q1;185;167;424;8274;1795;306;3,74;49,54;28,40;0;Switzerland;Western Europe;"Springer Nature";"1980, 1982-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +3308;21101341269;"Natural Language Processing Journal";journal;"29497191";"Elsevier Ltd";Yes;No;1,266;Q1;16;70;76;4701;865;76;11,38;67,16;27,51;0;United Kingdom;Western Europe;"Elsevier Ltd";"2024-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Science (miscellaneous) (Q1); Linguistics and Language (Q1)";"Computer Science; Social Sciences" +3309;17500155019;"Orthopaedics and Traumatology: Surgery and Research";journal;"18770568";"Elsevier Masson s.r.l.";No;No;1,266;Q1;91;295;767;9406;2399;700;3,00;31,88;20,34;0;France;Western Europe;"Elsevier Masson s.r.l.";"2009-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +3310;21101185682;"Soil Security";journal;"26670062";"Elsevier Ltd";Yes;No;1,266;Q1;22;40;141;3389;773;140;5,16;84,73;31,93;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Earth-Surface Processes (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +3311;12300154709;"Asian Journal of Psychiatry";journal;"18762018, 18762026";"Elsevier B.V.";No;No;1,265;Q1;78;371;1077;12167;3260;622;3,19;32,80;42,36;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Psychology" +3312;21100894555;"BJPsych Open";journal;"20564724";"Cambridge University Press";Yes;No;1,265;Q1;56;281;632;11566;2422;630;3,51;41,16;54,59;3;United Kingdom;Western Europe;"Cambridge University Press";"2015-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +3313;25755;"Precambrian Research";journal;"03019268";"Elsevier B.V.";No;No;1,265;Q1;207;213;799;24593;2493;773;2,76;115,46;26,90;0;Netherlands;Western Europe;"Elsevier B.V.";"1974-2026";"Geochemistry and Petrology (Q1); Geology (Q1)";"Earth and Planetary Sciences" +3314;81697;"Publications of the Astronomical Society of Australia";journal;"13233580, 14486083";"Cambridge University Press";No;No;1,265;Q1;87;168;231;15383;761;231;2,88;91,57;32,68;0;United Kingdom;Western Europe;"Cambridge University Press";"1982, 1987-1988, 1992, 1996-2026";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)";"Earth and Planetary Sciences; Physics and Astronomy" +3315;21101080486;"Array";journal;"25900056";"Elsevier B.V.";Yes;No;1,264;Q1;33;245;206;13091;1935;204;8,14;53,43;28,92;0;Netherlands;Western Europe;"Elsevier B.V.";"2019, 2021-2026";"Computer Science (miscellaneous) (Q1)";"Computer Science" +3316;21100222556;"Journal of Contextual Behavioral Science";journal;"22121447";"Elsevier Inc.";No;No;1,264;Q1;58;74;291;4807;1086;281;3,32;64,96;53,38;1;United States;Northern America;"Elsevier Inc.";"2012-2026";"Applied Psychology (Q1); Behavioral Neuroscience (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Health (social science) (Q1); Organizational Behavior and Human Resource Management (Q1)";"Agricultural and Biological Sciences; Business, Management and Accounting; Neuroscience; Psychology; Social Sciences" +3317;19900193557;"Sports Health";journal;"19410921, 19417381";"Sage Periodicals Press";No;No;1,264;Q1;83;180;342;7436;1402;306;3,83;41,31;31,01;0;United States;Northern America;"Sage Periodicals Press";"2009-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)";"Health Professions; Medicine" +3318;21101040699;"Tunisian Journal of Mathematics";journal;"25767666, 25767658";"Mathematical Sciences Publishers";No;No;1,264;Q1;11;25;62;780;71;62;1,16;31,20;14,89;0;United States;Northern America;"Mathematical Sciences Publishers";"2019-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +3319;21101091928;"ACS ES and T Water";journal;"26900637";"American Chemical Society";No;No;1,263;Q1;48;671;1222;40586;5817;1187;4,54;60,49;38,99;2;United States;Northern America;"American Chemical Society";"2021-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Water Science and Technology (Q1); Environmental Chemistry (Q2)";"Chemical Engineering; Chemistry; Environmental Science" +3320;19170;"Industrial Management and Data Systems";journal;"02635577";"Emerald Group Publishing Ltd.";No;No;1,263;Q1;141;217;370;17092;3047;363;8,89;78,76;37,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1980-2026";"Computer Science Applications (Q1); Industrial and Manufacturing Engineering (Q1); Industrial Relations (Q1); Management Information Systems (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Computer Science; Engineering" +3321;19700166522;"Journal of Plant Ecology";journal;"17529921, 1752993X";"Oxford University Press";No;No;1,263;Q1;61;142;310;9225;1412;297;4,22;64,96;42,92;1;United Kingdom;Western Europe;"Oxford University Press";"2009-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +3322;12653;"Nutrition Journal";journal;"14752891";"BioMed Central Ltd";Yes;No;1,263;Q1;125;185;297;10006;1462;292;5,01;54,09;51,82;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +3323;21101179187;"touchREVIEWS in Endocrinology";journal;"27525457";"Touch Briefings";No;No;1,263;Q1;15;3;73;55;339;61;4,70;18,33;40,00;0;United Kingdom;Western Europe;"Touch Briefings";"2021-2025";"Endocrine and Autonomic Systems (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +3324;21100855756;"Spanish Journal of Marketing - ESIC";journal;"24449709, 24449695";"Emerald Group Publishing Ltd.";Yes;Yes;1,263;Q2;44;50;65;4093;652;65;10,47;81,86;37,41;0;Spain;Western Europe;"Emerald Group Publishing Ltd.";"2016-2026";"Marketing (Q2)";"Business, Management and Accounting" +3325;21100786533;"Anthropocene Review";journal;"20530196, 2053020X";"SAGE Publications Inc.";No;No;1,262;Q1;45;35;100;2910;464;100;4,97;83,14;28,18;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2014-2026";"Ecology (Q1); Geology (Q1); Global and Planetary Change (Q2)";"Earth and Planetary Sciences; Environmental Science" +3326;21100200437;"Applied Psychology: Health and Well-Being";journal;"17580854, 17580846";"Wiley-Blackwell";No;No;1,261;Q1;59;148;299;10421;1348;295;4,01;70,41;53,18;1;United States;Northern America;"Wiley-Blackwell";"2010-2026";"Applied Psychology (Q1)";"Psychology" +3327;5800173376;"Biology Direct";journal;"17456150";"BioMed Central Ltd";Yes;No;1,261;Q1;87;115;265;6271;1301;263;5,01;54,53;47,49;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Modeling and Simulation (Q1); Immunology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Mathematics" +3328;21100788918;"Human Resource Development International";journal;"13678868, 14698374";"Taylor and Francis Ltd.";No;No;1,261;Q1;71;85;122;6285;804;107;5,21;73,94;45,71;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting" +3329;27516;"Applied Health Economics and Health Policy";journal;"11755652, 11791896";"Springer Nature";No;No;1,260;Q1;60;80;222;4217;861;204;4,23;52,71;53,02;5;Switzerland;Western Europe;"Springer Nature";"2002-2006, 2008-2026";"Economics and Econometrics (Q1); Health Policy (Q1); Medicine (miscellaneous) (Q1)";"Economics, Econometrics and Finance; Medicine" +3330;21100226442;"Frontiers in Microbiology";journal;"1664302X";"Frontiers Media SA";Yes;No;1,260;Q1;287;2972;12986;187957;75052;12336;5,52;63,24;45,72;9;Switzerland;Western Europe;"Frontiers Media SA";"2010-2026";"Microbiology (Q1); Microbiology (medical) (Q1)";"Immunology and Microbiology; Medicine" +3331;21101134736;"SSM - Mental Health";journal;"26665603";"Elsevier Ltd";Yes;No;1,260;Q1;23;191;311;11325;1244;299;3,79;59,29;63,42;2;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Psychology (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Psychology; Social Sciences" +3332;21101134668;"Human-Machine Communication";journal;"2638602X, 26386038";"";Yes;Yes;1,259;Q1;18;10;56;565;198;56;3,53;56,50;39,13;0;United States;Northern America;"";"2020-2025";"Communication (Q1); Health (social science) (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +3333;11900154312;"Petroleum Science";journal;"16725107, 19958226";"KeAi Communications Co.";Yes;Yes;1,259;Q1;71;335;837;20228;6084;836;6,89;60,38;28,49;0;China;Asiatic Region;"KeAi Communications Co.";"2008-2026";"Economic Geology (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Geochemistry and Petrology (Q1); Geology (Q1); Geophysics (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Energy" +3334;17646;"Presse Medicale";journal;"07554982, 22130276";"Elsevier Masson s.r.l.";No;No;1,259;Q1;62;32;105;2133;440;87;4,50;66,66;51,58;0;France;Western Europe;"Elsevier Masson s.r.l.";"1983-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +3335;21100784204;"Public Health Research and Practice";journal;"22042091";"CSIRO Publishing";Yes;Yes;1,259;Q1;42;40;153;875;617;142;1,97;21,88;72,83;0;Australia;Pacific Region;"CSIRO Publishing";"2014-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3336;21100198541;"Climate and Development";journal;"17565529, 17565537";"Taylor and Francis Ltd.";No;No;1,258;Q1;72;132;230;10057;1341;209;5,39;76,19;48,27;29;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Development (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q2)";"Environmental Science; Social Sciences" +3337;21100313905;"Frontiers in Plant Science";journal;"1664462X";"Frontiers Media SA";Yes;No;1,258;Q1;279;2903;12951;184127;80602;12138;5,76;63,43;40,05;2;Switzerland;Western Europe;"Frontiers Media SA";"2010-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +3338;11300153734;"IEEE Systems Journal";journal;"19379234, 19328184";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,258;Q1;124;120;1425;4563;8416;1412;5,82;38,03;26,93;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2007-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Information Systems (Q1)";"Computer Science; Engineering" +3339;22418;"Journal of Antimicrobial Chemotherapy";journal;"03057453, 14602091";"Oxford University Press";No;No;1,258;Q1;236;487;1356;16150;4972;1265;3,68;33,16;51,86;6;United Kingdom;Western Europe;"Oxford University Press";"1975-2026";"Infectious Diseases (Q1); Microbiology (medical) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +3340;21101044934;"npj Science of Learning";journal;"20567936";"Nature Publishing Group";Yes;No;1,258;Q1;40;91;168;6339;766;159;4,71;69,66;48,09;2;United Kingdom;Western Europe;"Nature Publishing Group";"2016-2026";"Education (Q1); Developmental Neuroscience (Q2)";"Neuroscience; Social Sciences" +3341;28960;"Soil Dynamics and Earthquake Engineering";journal;"02677261";"Elsevier B.V.";No;No;1,258;Q1;150;601;1672;31776;9177;1661;5,31;52,87;25,12;0;United Kingdom;Western Europe;"Elsevier B.V.";"1986-2026";"Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering" +3342;13646;"VLDB Journal";journal;"10668888, 0949877X";"Springer New York";No;No;1,258;Q1;106;72;194;4923;1143;187;5,79;68,38;24,01;0;United States;Northern America;"Springer New York";"1992-2026";"Hardware and Architecture (Q1); Information Systems (Q1)";"Computer Science" +3343;21101185958;"Cleaner Energy Systems";journal;"27727831";"Elsevier B.V.";Yes;No;1,257;Q1;23;53;157;3145;1165;155;6,79;59,34;23,64;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +3344;21100779404;"Macromolecules";journal;"00249297, 15205835";"American Chemical Society";No;No;1,257;Q1;356;1142;2998;67618;16507;2990;5,40;59,21;32,24;0;United States;Northern America;"American Chemical Society";"1968-2026";"Inorganic Chemistry (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)";"Chemistry; Materials Science" +3345;11900154329;"BMB Reports";journal;"1976670X, 19766696";"The Biochemical Society of the Republic of Korea";Yes;No;1,256;Q1;104;63;266;3213;1089;263;3,82;51,00;45,06;0;South Korea;Asiatic Region;"The Biochemical Society of the Republic of Korea";"2008-2026";"Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3346;19700174684;"Journal of Diabetes Science and Technology";journal;"19322968";"SAGE Publications Inc.";No;No;1,256;Q1;106;320;614;10999;2545;465;4,33;34,37;43,97;1;United States;Northern America;"SAGE Publications Inc.";"2007-2026";"Bioengineering (Q1); Biomedical Engineering (Q1); Internal Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Chemical Engineering; Engineering; Medicine" +3347;19700175016;"Journal of Gynecologic Oncology";journal;"20050399, 20050380";"Korean Society of Gynecologic Oncology and Colposcopy";Yes;No;1,256;Q1;59;134;280;3792;1040;256;3,81;28,30;43,71;0;South Korea;Asiatic Region;"Korean Society of Gynecologic Oncology and Colposcopy";"2009-2026";"Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Oncology (Q1)";"Medicine" +3348;130054;"Neurocritical Care";journal;"15560961, 15416933";"Springer";No;No;1,256;Q1;103;263;769;7897;2516;614;3,30;30,03;37,89;0;United States;Northern America;"Springer";"2004-2026";"Critical Care and Intensive Care Medicine (Q1); Neurology (clinical) (Q1)";"Medicine" +3349;13344;"Social Psychology of Education";journal;"15731928, 13812890";"Springer Netherlands";No;No;1,256;Q1;76;202;269;15034;1313;269;4,14;74,43;61,67;2;Netherlands;Western Europe;"Springer Netherlands";"1996-2026";"Developmental and Educational Psychology (Q1); Education (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +3350;22806;"Chemical Record";journal;"15278999, 15280691";"John Wiley & Sons Inc.";No;No;1,255;Q1;110;129;525;21872;4147;515;8,11;169,55;35,36;0;United States;Northern America;"John Wiley & Sons Inc.";"2001-2026";"Biochemistry (Q1); Biochemistry (medical) (Q1); Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Materials Science; Medicine" +3351;15048;"FASEB Journal";journal;"15306860, 08926638";"John Wiley & Sons Inc.";No;No;1,255;Q1;320;1026;1953;60196;8200;1932;3,99;58,67;44,30;1;United States;Northern America;"John Wiley & Sons Inc.";"1987-2026";"Biochemistry (Q1); Biotechnology (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3352;20374;"Journal of Interpersonal Violence";journal;"15526518, 08862605";"SAGE Publications Inc.";No;No;1,255;Q1;139;593;1802;34548;7485;1798;3,46;58,26;65,00;7;United States;Northern America;"SAGE Publications Inc.";"1986-2026";"Applied Psychology (Q1); Clinical Psychology (Q1)";"Psychology" +3353;19700181316;"Journal of Public Relations Research";journal;"1062726X, 1532754X";"Routledge";No;No;1,255;Q1;73;38;65;2731;425;60;5,86;71,87;53,25;0;United Kingdom;Western Europe;"Routledge";"1992-1995, 2004, 2007-2026";"Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +3354;21100779233;"Journal of Racial and Ethnic Health Disparities";journal;"21968837, 21973792";"Springer Science and Business Media Deutschland GmbH";No;No;1,255;Q1;64;850;875;44977;3417;875;3,57;52,91;62,01;6;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Anthropology (Q1); Health Policy (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Sociology and Political Science (Q1)";"Medicine; Social Sciences" +3355;144656;"Management Decision";journal;"00251747";"Emerald Group Publishing Ltd.";No;No;1,255;Q1;147;462;578;39808;4765;566;7,89;86,16;39,26;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1967-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management Science and Operations Research (Q1)";"Business, Management and Accounting; Decision Sciences" +3356;21100830172;"Psychology of Sexual Orientation and Gender Diversity";journal;"23290382, 23290390";"American Psychological Association";No;No;1,255;Q1;61;100;236;6555;1107;236;3,37;65,55;56,85;0;United States;Northern America;"American Psychological Association";"2014-2025";"Gender Studies (Q1); Psychology (miscellaneous) (Q1)";"Psychology; Social Sciences" +3357;17449;"Science Communication";journal;"15528545, 10755470";"SAGE Publications Inc.";No;No;1,255;Q1;87;70;99;4545;534;80;3,84;64,93;52,32;1;United States;Northern America;"SAGE Publications Inc.";"1979-2026";"Sociology and Political Science (Q1)";"Social Sciences" +3358;22068;"Vanderbilt Law Review";journal;"00422533";"Vanderbilt Law Review";No;No;1,255;Q1;56;35;126;10322;176;123;1,25;294,91;42,86;0;United States;Northern America;"Vanderbilt Law Review";"1973-1976, 1978-1979, 1986-1987, 1989-1990, 1992-1993, 1995-2025";"Law (Q1)";"Social Sciences" +3359;27437;"Communications in Mathematical Physics";journal;"14320916, 00103616";"Springer New York";No;No;1,254;Q1;168;320;915;16060;2625;915;2,85;50,19;15,30;0;Germany;Western Europe;"Springer New York";"1965-2026";"Mathematical Physics (Q1); Statistical and Nonlinear Physics (Q1)";"Mathematics; Physics and Astronomy" +3360;27891;"Earthquake Spectra";journal;"87552930";"Earthquake Engineering Research Institute";No;No;1,254;Q1;128;156;336;8608;1470;318;3,95;55,18;26,47;2;United States;Northern America;"Earthquake Engineering Research Institute";"1984-1990, 1992-1993, 1996-2025";"Geophysics (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences" +3361;21100890672;"Financial Innovation";journal;"21994730";"SpringerOpen";Yes;Yes;1,254;Q1;66;141;361;11033;3234;343;8,47;78,25;28,65;2;Germany;Western Europe;"SpringerOpen";"2015-2026";"Finance (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3362;16230;"Global Finance Journal";journal;"10440283";"Elsevier B.V.";No;No;1,254;Q1;59;111;309;7279;2199;305;6,49;65,58;29,08;2;Netherlands;Western Europe;"Elsevier B.V.";"1989-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +3363;26171;"Journal of Periodontal Research";journal;"16000765, 00223484";"Blackwell Munksgaard";No;No;1,254;Q1;105;151;338;10021;1700;331;5,41;66,36;40,57;0;Denmark;Western Europe;"Blackwell Munksgaard";"1946-1951, 1966-2026";"Periodontics (Q1)";"Dentistry" +3364;4700152621;"Journal of Philosophical Logic";journal;"00223611, 15730433";"Springer Netherlands";No;No;1,254;Q1;54;45;162;1990;283;161;1,44;44,22;15,87;0;Netherlands;Western Europe;"Springer Netherlands";"1972-2026";"Philosophy (Q1)";"Arts and Humanities" +3365;21100324364;"Schizophrenia Research: Cognition";journal;"22150013";"Elsevier Inc.";Yes;No;1,254;Q1;35;58;113;2918;385;107;2,32;50,31;48,50;0;United States;Northern America;"Elsevier Inc.";"2014-2026";"Cognitive Neuroscience (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Neuroscience" +3366;18916;"Social Science Computer Review";journal;"15528286, 08944393";"SAGE Publications Inc.";No;No;1,254;Q1;104;119;272;7788;1654;272;5,31;65,45;38,55;2;United States;Northern America;"SAGE Publications Inc.";"1983-2026";"Computer Science Applications (Q1); Law (Q1); Library and Information Sciences (Q1); Social Sciences (miscellaneous) (Q1)";"Computer Science; Social Sciences" +3367;14356;"Environment and Behavior";journal;"1552390X, 00139165";"SAGE Publications Ltd";No;No;1,253;Q1;159;25;89;2221;519;89;4,38;88,84;51,19;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1969-2026";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +3368;18027;"IEEE Robotics and Automation Magazine";journal;"10709932, 1558223X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,253;Q1;115;104;204;2670;1015;166;4,07;25,67;19,15;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1994-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +3369;21100431535;"Physical Review Applied";journal;"23317019";"American Physical Society";No;No;1,253;Q1;127;1009;2823;55354;12588;2818;4,33;54,86;21,89;0;United States;Northern America;"American Physical Society";"2014-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +3370;21101272100;"Solar Compass";journal;"27729400";"Elsevier Ltd";Yes;No;1,253;Q1;17;44;84;3317;569;72;7,15;75,39;10,20;1;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Energy (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy" +3371;19700172204;"Analysis and Applications";journal;"17936861, 02195305";"World Scientific";No;No;1,252;Q1;32;85;132;3153;351;132;2,74;37,09;29,41;0;Singapore;Asiatic Region;"World Scientific";"2008, 2010-2026";"Analysis (Q1); Applied Mathematics (Q1)";"Mathematics" +3372;23357;"Atmospheric Environment";journal;"13522310, 18732844";"Elsevier Ltd";No;No;1,252;Q1;299;549;1554;36375;7052;1554;4,38;66,26;38,14;4;United Kingdom;Western Europe;"Elsevier Ltd";"1972-1981, 1983, 1986-1987, 1994-2026";"Atmospheric Science (Q1); Environmental Science (miscellaneous) (Q1)";"Earth and Planetary Sciences; Environmental Science" +3373;77191;"Early Childhood Research Quarterly";journal;"08852006";"Elsevier Ltd";No;No;1,252;Q1;135;110;362;7797;1412;353;3,54;70,88;74,88;4;United Kingdom;Western Europe;"Elsevier Ltd";"1986-2026";"Developmental and Educational Psychology (Q1); Education (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +3374;20594;"Engineering Fracture Mechanics";journal;"00137944";"Elsevier B.V.";No;No;1,252;Q1;175;860;1967;46661;12145;1961;6,34;54,26;24,11;0;Netherlands;Western Europe;"Elsevier B.V.";"1968-2026";"Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +3375;16705;"Journal of Emotional and Behavioral Disorders";journal;"15384799, 10634266";"SAGE Publications Inc.";No;No;1,252;Q1;81;19;70;999;258;68;2,98;52,58;64,20;1;United States;Northern America;"SAGE Publications Inc.";"1993-2026";"Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Education (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology; Social Sciences" +3376;21101206920;"Open Journal of Astrophysics";journal;"25656120";"National University of Ireland Maynooth";Yes;Yes;1,252;Q1;16;193;187;17709;584;187;3,26;91,76;28,59;0;Ireland;Western Europe;"National University of Ireland Maynooth";"2020-2026";"Astronomy and Astrophysics (Q1)";"Physics and Astronomy" +3377;21100979314;"ACM Transactions on Human-Robot Interaction";journal;"25739522";"Association for Computing Machinery";No;No;1,251;Q1;39;78;183;6651;1364;180;6,90;85,27;35,95;0;United States;Northern America;"Association for Computing Machinery";"2018-2026";"Artificial Intelligence (Q1); Human-Computer Interaction (Q1)";"Computer Science" +3378;21101152625;"Advanced Agrochem";journal;"27732371";"KeAi Communications Co.";Yes;No;1,251;Q1;22;60;103;2920;1141;96;11,48;48,67;41,45;0;China;Asiatic Region;"KeAi Communications Co.";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Chemistry" +3379;19700202610;"Cancer Genetics";journal;"22107762, 22107770";"Elsevier Inc.";No;No;1,251;Q1;59;115;166;4383;997;164;9,34;38,11;46,09;0;United States;Northern America;"Elsevier Inc.";"2011-2026";"Genetics (Q1); Cancer Research (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3380;21100202110;"Environmental Development";journal;"22114645";"Elsevier B.V.";No;No;1,251;Q1;66;171;330;13112;2120;322;5,87;76,68;35,05;6;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)";"Environmental Science; Social Sciences" +3381;21100395911;"Asia Pacific Journal of Marketing and Logistics";journal;"13555855, 17584248";"Emerald Group Publishing Ltd.";No;No;1,250;Q1;82;380;459;24166;3832;457;8,43;63,59;43,69;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1993-2026";"Business and International Management (Q1); Strategy and Management (Q1); Marketing (Q2)";"Business, Management and Accounting" +3382;21101311307;"BMC Global and Public Health";journal;"2731913X";"BioMed Central Ltd";Yes;No;1,250;Q1;14;106;112;4876;386;78;3,45;46,00;53,55;4;United Kingdom;Western Europe;"BioMed Central Ltd";"2023-2026";"Health (social science) (Q1); Public Administration (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +3383;23455;"Journal of Cellular Physiology";journal;"10974652, 00219541";"Wiley-Liss Inc.";No;No;1,250;Q1;221;169;778;12084;3538;765;4,06;71,50;47,90;0;United States;Northern America;"Wiley-Liss Inc.";"1945-1958, 1963-2026";"Clinical Biochemistry (Q1); Physiology (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3384;29539;"Journal of Hydrometeorology";journal;"1525755X, 15257541";"American Meteorological Society";No;No;1,250;Q1;161;106;344;7267;1252;339;3,21;68,56;28,72;0;United States;Northern America;"American Meteorological Society";"2000-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +3385;19400158590;"Journal of Neurodevelopmental Disorders";journal;"18661947, 18661955";"BioMed Central Ltd";Yes;No;1,250;Q1;69;74;170;5009;712;168;3,51;67,69;61,36;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2009-2026";"Cognitive Neuroscience (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine; Neuroscience" +3386;26162;"Journal of Endocrinological Investigation";journal;"03914097, 17208386";"Springer Science and Business Media Deutschland GmbH";No;No;1,250;Q2;108;306;784;14504;3168;723;4,23;47,40;52,86;1;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1978-2026";"Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3387;23930;"Conflict Management and Peace Science";journal;"07388942, 15499219";"SAGE Publications Inc.";No;No;1,249;Q1;60;50;100;3358;294;97;1,75;67,16;41,05;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"1973, 1975-1986, 1988-1996, 1998-2026";"Economics and Econometrics (Q1); Political Science and International Relations (Q1)";"Economics, Econometrics and Finance; Social Sciences" +3388;25935;"Cytotherapy";journal;"14772566, 14653249";"Elsevier B.V.";No;No;1,249;Q1;115;153;449;7541;1748;433;4,15;49,29;44,88;0;United States;Northern America;"Elsevier B.V.";"1999-2026";"Genetics (clinical) (Q1); Oncology (Q1); Transplantation (Q1); Cancer Research (Q2); Cell Biology (Q2); Immunology (Q2); Immunology and Allergy (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +3389;14310;"Educational Studies";journal;"03055698, 14653400";"Routledge";No;No;1,249;Q1;63;103;185;5968;982;185;5,45;57,94;54,98;1;United Kingdom;Western Europe;"Routledge";"1975-2026";"Education (Q1)";"Social Sciences" +3390;23940;"Journal of Mathematical Behavior";journal;"07323123, 18738028";"Elsevier Inc.";No;No;1,249;Q1;64;42;197;2245;440;193;1,95;53,45;56,47;0;United States;Northern America;"Elsevier Inc.";"1994-2026";"Applied Mathematics (Q1); Applied Psychology (Q1); Education (Q1)";"Mathematics; Psychology; Social Sciences" +3391;29482;"Physics Letters, Section B: Nuclear, Elementary Particle and High-Energy Physics";journal;"03702693";"Elsevier B.V.";Yes;Yes;1,249;Q1;297;874;2162;50169;8642;2161;4,03;57,40;22,99;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Nuclear and High Energy Physics (Q1)";"Physics and Astronomy" +3392;7000153204;"Social Cognitive and Affective Neuroscience";journal;"17495024, 17495016";"Oxford University Press";Yes;No;1,249;Q1;140;125;303;8903;1134;300;3,44;71,22;53,92;1;United Kingdom;Western Europe;"Oxford University Press";"2006-2026";"Cognitive Neuroscience (Q1); Experimental and Cognitive Psychology (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Neuroscience; Psychology" +3393;21101089369;"Tungsten";journal;"26618036, 26618028";"Springer International Publishing";No;No;1,249;Q1;40;87;163;5367;1282;150;8,68;61,69;35,99;0;Switzerland;Western Europe;"Springer International Publishing";"2019-2026";"Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1); Metals and Alloys (Q1); Surfaces, Coatings and Films (Q1)";"Materials Science" +3394;21100924772;"Clinical and Translational Radiation Oncology";journal;"24056308";"Elsevier Ireland Ltd";Yes;No;1,248;Q1;43;158;449;5674;1647;435;3,58;35,91;42,81;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"2016-2026";"Oncology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +3395;21100214102;"Frontiers in Pharmacology";journal;"16639812";"Frontiers Media SA";Yes;No;1,248;Q1;203;3714;12584;243764;70415;11879;5,07;65,63;46,86;3;Switzerland;Western Europe;"Frontiers Media SA";"2010-2026";"Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +3396;19900193216;"Journal of Management Accounting Research";journal;"15588033, 10492127";"American Accounting Association";No;No;1,248;Q1;38;26;87;1624;205;83;1,91;62,46;26,32;0;United States;Northern America;"American Accounting Association";"2008-2025";"Accounting (Q1); Business and International Management (Q1)";"Business, Management and Accounting" +3397;18617;"Journal of Risk and Insurance";journal;"15396975, 00224367";"Wiley-Blackwell Publishing Ltd";No;No;1,248;Q1;78;36;101;2055;260;97;2,23;57,08;35,11;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1978-1979, 1996-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3398;16430;"Meitan Xuebao/Journal of the China Coal Society";journal;"02539993";"China Coal Society";Yes;No;1,248;Q1;102;478;1234;20151;6263;1234;4,83;42,16;26,57;0;China;Asiatic Region;"China Coal Society";"1981-1982, 1984-1987, 1994-1995, 1998, 2001-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Mechanical Engineering (Q1)";"Earth and Planetary Sciences; Energy; Engineering" +3399;19700174930;"Diabetology and Metabolic Syndrome";journal;"17585996";"BioMed Central Ltd";Yes;No;1,247;Q1;81;454;753;25823;3701;749;4,85;56,88;47,91;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2009-2026";"Internal Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Medicine" +3400;21101090720;"Frontiers in Digital Health";journal;"2673253X";"Frontiers Media SA";Yes;No;1,247;Q1;49;477;753;24728;4346;691;5,40;51,84;44,64;1;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Biomedical Engineering (Q1); Computer Science Applications (Q1); Health Informatics (Q1); Medicine (miscellaneous) (Q1)";"Computer Science; Engineering; Medicine" +3401;22893;"Journal of Business and Industrial Marketing";journal;"08858624";"Emerald Group Publishing Ltd.";No;No;1,247;Q1;94;171;544;16477;3490;534;6,25;96,36;40,42;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1986-2026";"Business and International Management (Q1); Marketing (Q2)";"Business, Management and Accounting" +3402;146169;"Magnetic Resonance in Medical Sciences";journal;"18802206, 13473182";"Japanese Society for Magnetic Resonance in Medicine";Yes;Yes;1,247;Q1;53;100;151;3691;744;145;4,43;36,91;24,23;0;Japan;Asiatic Region;"Japanese Society for Magnetic Resonance in Medicine";"2002-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +3403;19600161832;"Science China Information Sciences";journal;"1674733X, 18691919";"Science China Press";No;No;1,247;Q1;101;381;1050;19046;5823;700;5,97;49,99;30,58;0;China;Asiatic Region;"Science China Press";"2010-2026";"Computer Science (miscellaneous) (Q1)";"Computer Science" +3404;23607;"Computerized Medical Imaging and Graphics";journal;"18790771, 08956111";"Elsevier Ltd";No;No;1,246;Q1;106;197;327;10713;2364;327;6,23;54,38;34,40;0;United Kingdom;Western Europe;"Elsevier Ltd";"1988-2026";"Computer Graphics and Computer-Aided Design (Q1); Computer Vision and Pattern Recognition (Q1); Health Informatics (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Computer Science; Health Professions; Medicine" +3405;13867;"Eye (Basingstoke)";journal;"0950222X, 14765454";"Springer Nature";No;No;1,246;Q1;140;770;1762;17807;5688;1357;3,25;23,13;41,79;1;United Kingdom;Western Europe;"Springer Nature";"1987-2026";"Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Ophthalmology (Q1); Sensory Systems (Q1)";"Arts and Humanities; Medicine; Neuroscience" +3406;26444;"Polymer Degradation and Stability";journal;"01413910";"Elsevier Ltd";No;No;1,246;Q1;210;551;1000;30387;8491;1000;8,48;55,15;36,48;0;United Kingdom;Western Europe;"Elsevier Ltd";"1979-2026";"Condensed Matter Physics (Q1); Materials Chemistry (Q1); Mechanics of Materials (Q1); Polymers and Plastics (Q1)";"Engineering; Materials Science; Physics and Astronomy" +3407;17300154988;"BioData Mining";journal;"17560381";"BioMed Central Ltd";Yes;No;1,245;Q1;46;89;126;5224;1044;123;9,74;58,70;42,33;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2009-2026";"Biochemistry (Q1); Computational Mathematics (Q1); Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Genetics (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics" +3408;14347;"Brain Research Bulletin";journal;"03619230, 18732747";"Elsevier Inc.";Yes;No;1,245;Q1;154;474;664;31251;3172;654;4,81;65,93;45,58;0;United States;Northern America;"Elsevier Inc.";"1976-2026";"Neuroscience (miscellaneous) (Q1)";"Neuroscience" +3409;4700152846;"Japanese Journal of Mathematics";journal;"18613624, 02892316";"Springer";No;No;1,245;Q1;27;4;11;353;19;11;1,38;88,25;10,00;0;Japan;Asiatic Region;"Springer";"1975-1978, 1980-1986, 1989-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +3410;21101028415;"JMIR Aging";journal;"25617605";"JMIR Publications Inc.";Yes;No;1,245;Q1;38;192;293;11047;1641;292;4,85;57,54;53,07;2;Canada;Northern America;"JMIR Publications Inc.";"2018-2026";"Geriatrics and Gerontology (Q1); Gerontology (Q1); Health Informatics (Q1); Health (social science) (Q1)";"Medicine; Nursing; Social Sciences" +3411;21100921027;"Journal of ISAKOS";journal;"20597762, 20597754";"Elsevier Inc.";Yes;No;1,245;Q1;26;125;322;4326;1176;295;3,67;34,61;19,35;0;United Kingdom;Western Europe;"Elsevier Inc.";"2019-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +3412;20934;"Sport, Education and Society";journal;"14701243, 13573322";"Routledge";No;No;1,245;Q1;90;218;261;12131;1313;257;4,24;55,65;47,88;5;United Kingdom;Western Europe;"Routledge";"1996-2026";"Education (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)";"Health Professions; Medicine; Social Sciences" +3413;16831;"Biochimica et Biophysica Acta - Molecular and Cell Biology of Lipids";journal;"13881981, 18792618";"Elsevier B.V.";No;No;1,245;Q2;191;129;260;9111;1116;259;3,85;70,63;45,10;0;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3414;5800171965;"Asia Pacific Law Review";journal;"18758444, 10192557";"Routledge";No;No;1,244;Q1;17;21;75;652;155;75;2,14;31,05;51,72;1;United Kingdom;Western Europe;"Routledge";"2008-2026";"Law (Q1)";"Social Sciences" +3415;36209;"European Journal of Soil Science";journal;"13510754, 13652389";"Wiley-Blackwell Publishing Ltd";No;No;1,244;Q1;150;225;447;14462;2182;431;4,09;64,28;41,10;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Soil Science (Q1)";"Agricultural and Biological Sciences" +3416;16274;"Journal of Constructional Steel Research";journal;"0143974X";"Elsevier B.V.";No;No;1,244;Q1;155;716;1771;33183;9228;1768;5,02;46,34;25,96;0;Netherlands;Western Europe;"Elsevier B.V.";"1980-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science" +3417;17667;"Primary Care - Clinics in Office Practice";journal;"1558299X, 00954543";"W.B. Saunders";No;No;1,244;Q1;69;67;188;2729;815;150;3,16;40,73;63,64;0;United States;Northern America;"W.B. Saunders";"1974-2026";"Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1)";"Medicine" +3418;14272;"Stem Cells";journal;"10665099, 15494918";"Oxford University Press";No;No;1,244;Q1;264;91;270;5610;1142;265;4,43;61,65;41,75;0;United Kingdom;Western Europe;"Oxford University Press";"1981-1982, 1993-2026";"Developmental Biology (Q1); Medicine (miscellaneous) (Q1); Cell Biology (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3419;21100372549;"Teaching English with Technology";journal;"16421027";"University of Nicosia";Yes;No;1,244;Q1;25;10;42;441;277;39;9,50;44,10;72,73;0;Cyprus;Western Europe;"University of Nicosia";"2006, 2014-2025";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +3420;21101257840;"Journal of Extracellular Biology";journal;"27682811";"John Wiley and Sons Inc";Yes;No;1,244;Q2;16;73;153;5197;765;149;4,53;71,19;50,68;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3421;18171;"Computers and Structures";journal;"00457949";"Elsevier Ltd";No;No;1,243;Q1;177;295;521;16624;3145;521;6,36;56,35;22,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"1971-2026";"Civil and Structural Engineering (Q1); Computer Science Applications (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Modeling and Simulation (Q1)";"Computer Science; Engineering; Materials Science; Mathematics" +3422;25033;"IEEE Transactions on Computers";journal;"00189340, 15579956";"IEEE Computer Society";No;No;1,243;Q1;148;312;746;12401;4123;741;5,60;39,75;26,99;0;United States;Northern America;"IEEE Computer Society";"1968-2026";"Computational Theory and Mathematics (Q1); Hardware and Architecture (Q1); Software (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +3423;21100228018;"International Journal of Disaster Risk Reduction";journal;"22124209";"Elsevier Ltd";No;No;1,243;Q1;115;786;2226;57773;13589;2206;5,62;73,50;40,86;26;United Kingdom;Western Europe;"Elsevier Ltd";"2012-2026";"Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Safety Research (Q1)";"Earth and Planetary Sciences; Social Sciences" +3424;21101140102;"JID Innovations";journal;"26670267";"Elsevier Inc.";Yes;No;1,243;Q1;22;82;188;3834;687;162;3,32;46,76;49,48;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Dermatology (Q1)";"Medicine" +3425;19700174913;"Therapeutic Advances in Neurological Disorders";journal;"17562864, 17562856";"SAGE Publications Ltd";Yes;No;1,243;Q1;81;131;274;6814;1086;261;3,57;52,02;43,82;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Neurology (Q1); Neurology (clinical) (Q1); Pharmacology (Q1)";"Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +3426;21101243356;"Communications Engineering";journal;"27313395";"Springer Nature";Yes;No;1,242;Q1;27;221;320;11738;2079;303;6,53;53,11;24,89;2;United Kingdom;Western Europe;"Springer Nature";"2022-2026";"Chemical Engineering (miscellaneous) (Q1); Energy (miscellaneous) (Q1)";"Chemical Engineering; Energy" +3427;14945;"Cortex";journal;"19738102, 00109452";"Masson SpA";No;No;1,242;Q1;155;229;668;15736;2259;599;2,91;68,72;45,50;0;Italy;Western Europe;"Masson SpA";"1964-1965, 1968-2026";"Cognitive Neuroscience (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Neurology (Q1); Neurology (clinical) (Q1); Neuropsychology and Physiological Psychology (Q1)";"Medicine; Neuroscience; Psychology" +3428;21100854641;"IEEE Transactions on Signal and Information Processing over Networks";journal;"2373776X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,242;Q1;49;124;219;5976;1265;219;5,35;48,19;25,24;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015-2026";"Computer Networks and Communications (Q1); Information Systems (Q1); Signal Processing (Q1)";"Computer Science" +3429;20268;"Microbiology (United Kingdom)";journal;"13500872, 14652080";"Microbiology Society";Yes;No;1,242;Q1;215;120;386;6834;1627;372;4,21;56,95;47,14;1;United Kingdom;Western Europe;"Microbiology Society";"1994-2026";"Microbiology (Q1)";"Immunology and Microbiology" +3430;22549;"Public Health Reviews";journal;"21076952, 03010422";"Frontiers Media SA";Yes;No;1,242;Q1;58;53;133;2655;488;107;3,61;50,09;54,33;1;Switzerland;Western Europe;"Frontiers Media SA";"1973-1980, 1982-2003, 2010-2026";"Community and Home Care (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Nursing" +3431;21100200208;"Asian Spine Journal";journal;"19767846, 19761902";"Korean Society of Spine Surgery";Yes;Yes;1,241;Q1;57;134;349;3176;1132;326;2,86;23,70;18,30;0;South Korea;Asiatic Region;"Korean Society of Spine Surgery";"2008, 2011-2025";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +3432;22810;"British Journal of Criminology";journal;"00070955, 14643529";"Oxford University Press";No;No;1,241;Q1;127;72;248;4989;971;247;3,69;69,29;45,93;4;United Kingdom;Western Europe;"Oxford University Press";"1960-2026";"Arts and Humanities (miscellaneous) (Q1); Law (Q1); Pathology and Forensic Medicine (Q1); Social Psychology (Q1)";"Arts and Humanities; Medicine; Psychology; Social Sciences" +3433;18012;"Environmental and Experimental Botany";journal;"00988472";"Elsevier B.V.";Yes;No;1,241;Q1;183;183;1088;13426;6655;1084;5,54;73,37;43,05;1;Netherlands;Western Europe;"Elsevier B.V.";"1976-2026";"Agronomy and Crop Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +3434;4700152634;"Journal of Geographical Sciences";journal;"18619568, 1009637X";"Science China Press";No;No;1,241;Q1;93;125;368;8164;2168;368;5,75;65,31;37,39;0;China;Asiatic Region;"Science China Press";"2001, 2006-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +3435;7200153173;"Quaternary Geochronology";journal;"18711014";"Elsevier B.V.";No;No;1,241;Q1;87;23;277;1563;630;273;2,23;67,96;36,80;0;Netherlands;Western Europe;"Elsevier B.V.";"2006-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geology (Q1); Stratigraphy (Q1)";"Earth and Planetary Sciences" +3436;28082;"South European Society and Politics";journal;"13608746, 17439612";"Routledge";No;No;1,241;Q1;61;40;64;2643;306;60;2,39;66,08;46,15;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Sociology and Political Science (Q1)";"Social Sciences" +3437;21100875599;"Turkish Journal of Emergency Medicine";journal;"24522473";"Wolters Kluwer Medknow Publications";Yes;Yes;1,241;Q1;25;46;119;1346;649;118;6,75;29,26;36,60;0;Turkey;Middle East;"Wolters Kluwer Medknow Publications";"2009, 2015-2026";"Critical Care and Intensive Care Medicine (Q1); Emergency Medicine (Q1)";"Medicine" +3438;28496;"Aging Clinical and Experimental Research";journal;"17208319, 15940667";"Springer Science and Business Media Deutschland GmbH";No;No;1,240;Q1;102;342;920;15087;4050;868;4,30;44,11;47,99;5;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1989-2026";"Geriatrics and Gerontology (Q1); Aging (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3439;28632;"Biostatistics";journal;"14654644, 14684357";"Oxford University Press";No;No;1,240;Q1;100;85;208;3400;463;208;2,32;40,00;48,79;1;United Kingdom;Western Europe;"Oxford University Press";"2003-2026";"Medicine (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics; Medicine" +3440;20970;"Environmental Education Research";journal;"14695871, 13504622";"Carfax Publishing Ltd.";No;No;1,240;Q1;108;222;324;14768;1903;319;5,04;66,52;66,51;4;United Kingdom;Western Europe;"Carfax Publishing Ltd.";"1995-2026";"Education (Q1)";"Social Sciences" +3441;145598;"European Journal of International Law";journal;"09385428, 14643596";"Oxford University Press";No;No;1,240;Q1;86;29;149;4265;293;128;1,63;147,07;35,48;0;United Kingdom;Western Europe;"Oxford University Press";"2005-2025";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +3442;21100804573;"Information Processing in Agriculture";journal;"20970153, 22143173";"China Agricultural University";Yes;Yes;1,240;Q1;69;56;137;3242;1363;137;9,68;57,89;32,59;0;China;Asiatic Region;"China Agricultural University";"2014-2026";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Aquatic Science (Q1); Computer Science Applications (Q1); Forestry (Q1)";"Agricultural and Biological Sciences; Computer Science" +3443;14161;"Molecular Plant-Microbe Interactions";journal;"08940282";"American Phytopathological Society";Yes;No;1,240;Q1;190;93;302;6814;1124;285;3,63;73,27;44,26;0;United States;Northern America;"American Phytopathological Society";"1988-2026";"Agronomy and Crop Science (Q1); Medicine (miscellaneous) (Q1); Physiology (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +3444;21101310084;"NPJ Imaging";journal;"2948197X";"Springer Nature";Yes;No;1,240;Q1;10;64;49;4245;288;47;5,88;66,33;33,14;0;United Kingdom;Western Europe;"Springer Nature";"2023-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Health Informatics (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3445;21100904991;"Results in Engineering";journal;"25901230";"Elsevier B.V.";Yes;No;1,240;Q1;79;4656;3269;286963;34095;3267;10,64;61,63;24,47;1;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Engineering (miscellaneous) (Q1)";"Engineering" +3446;28946;"Seismological Research Letters";journal;"19382057, 08950695";"Seismological Society of America";No;No;1,240;Q1;113;273;698;14226;2264;687;2,99;52,11;29,24;1;United States;Northern America;"Seismological Society of America";"1984-1985, 1987-1993, 1995-2026";"Geophysics (Q1)";"Earth and Planetary Sciences" +3447;21100823212;"Echo Research and Practice";journal;"20550464";"BioMed Central Ltd";Yes;No;1,239;Q1;31;35;61;1407;244;58;4,22;40,20;35,91;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2014-2026";"Advanced and Specialized Nursing (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Health Professions; Medicine; Nursing" +3448;4700152497;"European Review of Aging and Physical Activity";journal;"18616909, 18137253";"Springer Verlag";Yes;No;1,239;Q1;50;26;82;1574;372;81;4,59;60,54;53,19;0;Germany;Western Europe;"Springer Verlag";"2006-2026";"Geriatrics and Gerontology (Q1)";"Medicine" +3449;21100371258;"Sustainable Energy, Grids and Networks";journal;"23524677";"Elsevier Ltd";No;No;1,239;Q1;62;478;811;19916;5192;811;6,57;41,67;20,09;3;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Engineering" +3450;14035;"Psychology of Women Quarterly";journal;"14716402, 03616843";"SAGE Publications Ltd";No;No;1,238;Q1;127;30;96;2230;434;93;4,21;74,33;79,78;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1976-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Gender Studies (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Psychology; Social Sciences" +3451;22852;"Yale Journal on Regulation";journal;"23765925, 07419457";"Yale Journal on Regulation";No;No;1,238;Q1;13;35;59;6956;106;58;2,32;198,74;27,27;0;United States;Northern America;"Yale Journal on Regulation";"1991, 1994, 1998, 2019-2025";"Law (Q1); Public Administration (Q1)";"Social Sciences" +3452;19700174631;"Allergy, Asthma and Immunology Research";journal;"20927355, 20927363";"Korean Academy of Asthma, Allergy and Clinical Immunology";Yes;No;1,237;Q1;71;62;187;2535;747;155;3,60;40,89;46,00;0;South Korea;Asiatic Region;"Korean Academy of Asthma, Allergy and Clinical Immunology";"2009-2026";"Pulmonary and Respiratory Medicine (Q1); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +3453;23807;"American Journal of Orthodontics and Dentofacial Orthopedics";journal;"10976752, 08895406";"Elsevier Inc.";No;No;1,237;Q1;165;215;875;5880;2510;562;2,96;27,35;41,52;0;United States;Northern America;"Elsevier Inc.";"1986-2026";"Orthodontics (Q1)";"Dentistry" +3454;144837;"International Journal of Science and Mathematics Education";journal;"15731774, 15710068";"Springer Science and Business Media B.V.";No;No;1,237;Q1;68;164;302;10391;1295;300;4,07;63,36;55,05;3;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2003-2026";"Education (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics; Social Sciences" +3455;19600166212;"Journal of Physical Chemistry Letters";journal;"19487185";"American Chemical Society";No;No;1,237;Q1;278;1624;4687;81236;21214;4681;4,35;50,02;30,56;0;United States;Northern America;"American Chemical Society";"2010-2026";"Materials Science (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Materials Science" +3456;10900153323;"Georisk";journal;"17499518, 17499526";"Taylor and Francis Ltd.";No;No;1,236;Q1;45;90;153;5239;871;141;5,77;58,21;25,94;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Safety, Risk, Reliability and Quality (Q1)";"Earth and Planetary Sciences; Engineering" +3457;18972;"Information Economics and Policy";journal;"01676245";"Elsevier B.V.";No;No;1,236;Q1;65;18;70;859;244;70;2,19;47,72;22,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1983-1984, 1986, 1988-1989, 1993-2026";"Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1)";"Economics, Econometrics and Finance; Environmental Science" +3458;18572;"Parkinsonism and Related Disorders";journal;"18735126, 13538020";"Elsevier Ltd";No;No;1,236;Q1;134;373;918;9529;2944;676;3,14;25,55;46,19;0;United Kingdom;Western Europe;"Elsevier Ltd";"1995-2026";"Geriatrics and Gerontology (Q1); Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +3459;17300154987;"Molecular Brain";journal;"17566606";"BioMed Central Ltd";Yes;No;1,236;Q2;88;89;275;4003;1016;273;3,74;44,98;38,90;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2008-2026";"Cellular and Molecular Neuroscience (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +3460;21100782247;"BMJ Open Respiratory Research";journal;"20524439";"BMJ Publishing Group";Yes;No;1,235;Q1;51;221;438;8581;1791;436;4,03;38,83;44,11;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2014-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +3461;29586;"Journal of Guidance, Control, and Dynamics";journal;"15333884, 07315090";"American Institute of Aeronautics and Astronautics Inc. (AIAA)";No;No;1,235;Q1;174;229;605;8338;2417;448;3,85;36,41;19,51;0;United States;Northern America;"American Institute of Aeronautics and Astronautics Inc. (AIAA)";"1978-2026";"Aerospace Engineering (Q1); Applied Mathematics (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Engineering; Mathematics" +3462;21101092872;"Journal of Intensive Medicine";journal;"2667100X, 20970250";"Chinese Medical Association";Yes;No;1,235;Q1;18;77;150;2843;684;134;4,95;36,92;33,73;0;China;Asiatic Region;"Chinese Medical Association";"2021-2026";"Critical Care and Intensive Care Medicine (Q1)";"Medicine" +3463;21100874236;"Physical Review B";journal;"24699950, 24699969";"American Physical Society";No;No;1,235;Q1;534;4722;15091;295683;52716;15073;3,56;62,62;23,27;0;United States;Northern America;"American Physical Society";"2005, 2012-2014, 2016-2026";"Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Materials Science; Physics and Astronomy" +3464;18140;"Sociology of Religion";journal;"10694404";"Association for the Sociology of Religion";No;No;1,235;Q1;63;21;55;1507;160;55;2,64;71,76;45,95;1;United States;Northern America;"Association for the Sociology of Religion";"1964-1975, 1977-1978, 1980-1984, 1986-1996, 1998-2025";"Religious Studies (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +3465;19853;"Zhongguo Dianji Gongcheng Xuebao/Proceedings of the Chinese Society of Electrical Engineering";journal;"02588013";"Chinese Society for Electrical Engineering";No;No;1,235;Q1;150;765;2475;24992;10590;2470;4,02;32,67;30,98;0;China;Asiatic Region;"Chinese Society for Electrical Engineering";"1985-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +3466;17773;"Mediators of Inflammation";journal;"09629351, 14661861";"John Wiley and Sons Ltd";Yes;No;1,235;Q2;154;190;418;10710;2233;416;5,10;56,37;45,77;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1992-2026";"Cell Biology (Q2); Immunology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +3467;19700201314;"Mycology";journal;"21501211, 21501203";"Taylor and Francis Ltd.";Yes;No;1,234;Q1;46;93;92;7340;724;91;7,44;78,92;41,36;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Infectious Diseases (Q1); Microbiology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +3468;23604;"Computer Methods and Programs in Biomedicine";journal;"01692607, 18727565";"Elsevier Ireland Ltd";No;No;1,233;Q1;165;478;1582;25347;11296;1574;6,66;53,03;33,95;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1985-2026";"Computer Science Applications (Q1); Health Informatics (Q1); Software (Q1)";"Computer Science; Medicine" +3469;28488;"Economic Theory";journal;"14320479, 09382259";"Springer New York";No;No;1,233;Q1;73;117;249;4911;313;245;1,34;41,97;21,34;2;Germany;Western Europe;"Springer New York";"1991-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +3470;19400158816;"Mathematics Education Research Journal";journal;"2211050X, 10332170";"Springer Netherlands";No;No;1,233;Q1;48;59;131;3675;426;129;3,13;62,29;60,87;0;Netherlands;Western Europe;"Springer Netherlands";"1989-2026";"Education (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics; Social Sciences" +3471;93180;"Organogenesis";journal;"15558592, 15476278";"Taylor and Francis Ltd.";Yes;No;1,233;Q1;66;12;21;543;112;21;6,33;45,25;40,43;0;United States;Northern America;"Taylor and Francis Ltd.";"2004-2005, 2007-2026";"Biomedical Engineering (Q1); Developmental Biology (Q1); Embryology (Q1); Transplantation (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +3472;29802;"Psychology and Aging";journal;"08827974, 19391498";"American Psychological Association";No;No;1,233;Q1;186;69;205;4088;753;204;3,48;59,25;54,12;1;United States;Northern America;"American Psychological Association";"1986-2026";"Geriatrics and Gerontology (Q1); Social Psychology (Q1); Aging (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Psychology" +3473;18747;"Psychophysiology";journal;"00485772, 14698986";"John Wiley and Sons Inc";No;No;1,233;Q1;191;276;706;21863;2551;703;3,33;79,21;45,61;0;United States;Northern America;"John Wiley and Sons Inc";"1964-2026";"Cognitive Neuroscience (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Neurology (Q1); Neuropsychology and Physiological Psychology (Q1); Neuroscience (miscellaneous) (Q1); Physiology (Q1); Physiology (medical) (Q1); Biological Psychiatry (Q2); Developmental Neuroscience (Q2); Endocrine and Autonomic Systems (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience; Psychology" +3474;21100970248;"CAAI Transactions on Intelligence Technology";journal;"24686557, 24682322";"John Wiley & Sons Inc.";Yes;No;1,232;Q1;51;127;311;6837;2313;301;7,31;53,83;28,64;1;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2017-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Vision and Pattern Recognition (Q1); Human-Computer Interaction (Q1); Information Systems (Q1)";"Computer Science" +3475;19700188146;"Food and Function";journal;"20426496, 2042650X";"Royal Society of Chemistry";No;No;1,232;Q1;143;556;2601;35488;17538;2594;6,48;63,83;50,29;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2010-2026";"Food Science (Q1); Medicine (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Medicine" +3476;25092;"Mathematics of Computation";journal;"00255718, 10886842";"American Mathematical Society";No;No;1,232;Q1;120;94;272;3743;617;272;2,20;39,82;21,12;0;United States;Northern America;"American Mathematical Society";"1864, 1926, 1943-2026";"Algebra and Number Theory (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1)";"Mathematics" +3477;26206;"Molecular and Cellular Endocrinology";journal;"03037207, 18728057";"Elsevier Ireland Ltd";No;No;1,232;Q1;181;159;487;10290;2167;473;3,46;64,72;53,26;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1974-2026";"Biochemistry (Q1); Endocrinology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3478;28708;"National Tax Journal";journal;"19447477, 00280283";"University of Chicago Press";No;No;1,232;Q1;72;38;104;1751;136;91;1,06;46,08;42,68;5;United States;Northern America;"University of Chicago Press";"1985, 1989, 1995-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3479;21100885366;"IEEE Control Systems Letters";journal;"24751456";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,231;Q1;56;528;1834;11712;4994;1828;2,37;22,18;18,89;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017-2026";"Control and Optimization (Q1); Control and Systems Engineering (Q1)";"Engineering; Mathematics" +3480;21101068036;"IEEE Open Journal of the Industrial Electronics Society";journal;"26441284";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,231;Q1;35;113;190;5804;1264;189;5,90;51,36;10,85;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1)";"Engineering" +3481;24419;"Journal of Glaciology";journal;"17275652, 00221430";"Cambridge University Press";Yes;No;1,231;Q1;124;121;359;7857;1186;359;3,23;64,93;26,88;2;United Kingdom;Western Europe;"Cambridge University Press";"1972, 1977, 1979-1986, 1988-2026";"Earth-Surface Processes (Q1)";"Earth and Planetary Sciences" +3482;21100856611;"Journal of Responsible Innovation";journal;"23299460, 23299037";"Taylor and Francis Ltd.";Yes;No;1,231;Q1;46;46;137;2939;515;121;3,56;63,89;55,34;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Information Systems and Management (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +3483;25323;"Liver Transplantation";journal;"15276465, 15276473";"Lippincott Williams and Wilkins";No;No;1,231;Q1;177;298;718;6983;1726;457;2,36;23,43;38,35;0;United States;Northern America;"Lippincott Williams and Wilkins";"2000-2026";"Hepatology (Q1); Surgery (Q1); Transplantation (Q1)";"Medicine" +3484;18062;"Sociologia Ruralis";journal;"14679523, 00380199";"Wiley-Blackwell Publishing Ltd";No;No;1,231;Q1;110;25;120;1704;596;116;4,31;68,16;52,46;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1960, 1962-2026";"Sociology and Political Science (Q1)";"Social Sciences" +3485;21101082068;"Cerebral Circulation - Cognition and Behavior";journal;"26662450";"Elsevier B.V.";Yes;No;1,230;Q1;16;39;121;1781;397;109;2,94;45,67;49,24;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1); Biological Psychiatry (Q2)";"Medicine; Neuroscience" +3486;24652;"Chemico-Biological Interactions";journal;"00092797, 18727786";"Elsevier Ireland Ltd";No;No;1,230;Q1;160;365;1143;23549;7208;1127;5,67;64,52;48,34;2;Ireland;Western Europe;"Elsevier Ireland Ltd";"1969-2026";"Medicine (miscellaneous) (Q1); Toxicology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +3487;21100898838;"International Journal of Geo-Engineering";journal;"20929196, 21982783";"Springer Singapore";Yes;No;1,230;Q1;28;27;60;1446;449;60;7,58;53,56;11,24;0;Singapore;Asiatic Region;"Springer Singapore";"2015-2026";"Energy (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1); Mechanics of Materials (Q1)";"Earth and Planetary Sciences; Energy; Engineering" +3488;21100307484;"Journal of the Association for Information Science and Technology";journal;"23301643, 23301635";"John Wiley and Sons Ltd";No;No;1,230;Q1;181;101;302;7189;1883;293;6,85;71,18;46,30;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2014-2026";"Computer Networks and Communications (Q1); Information Systems (Q1); Information Systems and Management (Q1); Library and Information Sciences (Q1)";"Computer Science; Decision Sciences; Social Sciences" +3489;19355;"Schizophrenia Research";journal;"09209964, 15732509";"Elsevier B.V.";No;No;1,230;Q1;211;318;1252;16960;3704;976;2,92;53,33;51,19;1;Netherlands;Western Europe;"Elsevier B.V.";"1988-2026";"Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)";"Medicine; Neuroscience" +3490;4200151510;"Future Oncology";journal;"17448301, 14796694";"Taylor and Francis Ltd.";No;No;1,229;Q1;102;373;948;12969;2718;896;2,61;34,77;41,48;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Medicine (miscellaneous) (Q1); Oncology (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3491;21100324365;"Journal of Water Process Engineering";journal;"22147144";"Elsevier Ltd";No;No;1,229;Q1;125;2624;4064;184266;30984;4058;7,34;70,22;38,34;1;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Biotechnology (Q1); Process Chemistry and Technology (Q1); Safety, Risk, Reliability and Quality (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Environmental Science" +3492;144804;"Acta Orthopaedica";journal;"17453682, 17453674";"Medical Journals Sweden AB";Yes;No;1,228;Q1;142;130;337;3713;1007;310;3,20;28,56;31,93;0;United Kingdom;Western Europe;"Medical Journals Sweden AB";"1930, 1932-1945, 1948-1959, 1961-2002, 2004-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +3493;14120;"European Psychologist";journal;"1878531X, 10169040";"Hogrefe Publishing";No;No;1,228;Q1;81;24;70;1894;370;67;4,07;78,92;68,60;1;United States;Northern America;"Hogrefe Publishing";"2003-2026";"Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Psychology" +3494;12349;"International Journal of Engineering Science";journal;"00207225";"Elsevier Ltd";No;No;1,228;Q1;140;142;280;8116;1581;280;5,88;57,15;26,34;0;United Kingdom;Western Europe;"Elsevier Ltd";"1963-2026";"Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +3495;22751;"Journal of Economic Inequality";journal;"15691721, 15738701";"Springer Netherlands";No;No;1,228;Q1;54;79;120;4664;377;120;2,56;59,04;33,51;8;Netherlands;Western Europe;"Springer Netherlands";"2003-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +3496;21100446963;"Materials for Renewable and Sustainable Energy";journal;"21941459, 21941467";"Springer International Publishing AG";Yes;No;1,228;Q1;37;63;72;4340;585;72;7,25;68,89;23,10;1;Switzerland;Western Europe;"Springer International Publishing AG";"2013-2026";"Electronic, Optical and Magnetic Materials (Q1); Fuel Technology (Q1); Materials Chemistry (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Materials Science" +3497;21101195678;"Microbiome Research Reports";journal;"27715965";"OAE Publishing Inc.";No;No;1,228;Q1;16;34;117;2986;571;115;4,76;87,82;50,88;0;United States;Northern America;"OAE Publishing Inc.";"2022-2025";"Microbiology (Q1)";"Immunology and Microbiology" +3498;21101277817;"Oxygen";journal;"26739801";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,228;Q1;16;27;96;1580;780;94;4,18;58,52;40,46;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry" +3499;21100826425;"Environment and Planning C: Politics and Space";journal;"23996552, 23996544";"SAGE Publications Ltd";No;No;1,227;Q1;93;112;284;7800;1087;274;2,74;69,64;46,63;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"2017-2026";"Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Public Administration (Q1)";"Environmental Science; Social Sciences" +3500;15391;"Journal of Black Psychology";journal;"15524558, 00957984";"SAGE Publications Inc.";No;No;1,227;Q1;76;40;91;2740;363;87;3,44;68,50;78,68;0;United States;Northern America;"SAGE Publications Inc.";"1978-2026";"Anthropology (Q1); Applied Psychology (Q1)";"Psychology; Social Sciences" +3501;15932;"Journal of Health Services Research and Policy";journal;"17581060, 13558196";"SAGE Publications Ltd";No;No;1,227;Q1;88;49;101;1512;374;92;3,48;30,86;64,14;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3502;16727;"Journal of Mental Health";journal;"09638237, 13600567";"Taylor and Francis Ltd.";No;No;1,227;Q1;93;80;278;4721;1095;261;3,89;59,01;58,65;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +3503;21366;"Cambridge Journal of Economics";journal;"14643545, 0309166X";"Oxford University Press";No;No;1,226;Q1;106;62;170;4283;520;166;2,26;69,08;25,49;2;United Kingdom;Western Europe;"Oxford University Press";"1977-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +3504;17600155126;"Energy for Sustainable Development";journal;"23524669, 09730826";"Elsevier B.V.";No;No;1,226;Q1;96;246;553;16368;3435;550;6,02;66,54;31,85;7;Netherlands;Western Europe;"Elsevier B.V.";"1994-1997, 2000-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Renewable Energy, Sustainability and the Environment (Q1)";"Energy; Environmental Science; Social Sciences" +3505;21100799944;"German Journal of Human Resource Management";journal;"23970022, 23970030";"SAGE Publications Inc.";No;No;1,226;Q1;28;29;50;2312;334;46;5,65;79,72;54,17;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2016-2026";"Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting" +3506;15806;"International Public Management Journal";journal;"15593169, 10967494";"Routledge";No;No;1,226;Q1;63;69;148;5521;585;143;3,86;80,01;41,67;3;United Kingdom;Western Europe;"Routledge";"1998-2026";"Business and International Management (Q1); Public Administration (Q1)";"Business, Management and Accounting; Social Sciences" +3507;3200147837;"Journal of Exercise Science and Fitness";journal;"1728869X";"Elsevier (Singapore) Pte Ltd";Yes;No;1,226;Q1;39;61;155;3239;759;155;4,71;53,10;34,44;0;Singapore;Asiatic Region;"Elsevier (Singapore) Pte Ltd";"2005-2026";"Pharmaceutical Science (Q1); Pharmacology (nursing) (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Public Health, Environmental and Occupational Health (Q1); Sports Science (Q1)";"Health Professions; Medicine; Nursing; Pharmacology, Toxicology and Pharmaceutics" +3508;15701;"Pediatric Allergy and Immunology";journal;"13993038, 09056157";"Blackwell Munksgaard";No;No;1,226;Q1;112;241;628;8028;1969;369;2,98;33,31;57,23;0;United Kingdom;Western Europe;"Blackwell Munksgaard";"1990-2026";"Pediatrics, Perinatology and Child Health (Q1); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +3509;21101174373;"Sustainable Food Technology";journal;"27538095";"Royal Society of Chemistry";Yes;Yes;1,226;Q1;25;250;203;18013;2008;201;9,89;72,05;45,70;1;United Kingdom;Western Europe;"Royal Society of Chemistry";"2023-2026";"Analytical Chemistry (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Chemistry" +3510;21101238116;"Advanced Devices and Instrumentation";journal;"27679713";"American Association for the Advancement of Science";Yes;Yes;1,225;Q1;15;32;51;1999;310;51;5,78;62,47;30,16;0;United States;Northern America;"American Association for the Advancement of Science";"2020-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Engineering (miscellaneous) (Q1); Instrumentation (Q1)";"Engineering; Physics and Astronomy" +3511;22800;"Basic and Applied Ecology";journal;"16180089, 14391791";"Elsevier GmbH";Yes;No;1,225;Q1;105;98;240;7693;1041;233;4,14;78,50;37,05;1;Germany;Western Europe;"Elsevier GmbH";"2000-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +3512;22250;"Forestry";journal;"0015752X, 14643626";"Oxford University Press";No;No;1,225;Q1;84;62;171;4901;853;171;5,37;79,05;32,69;4;United Kingdom;Western Europe;"Oxford University Press";"1927-1945, 1947-1948, 1950-1959, 1962-2026";"Forestry (Q1)";"Agricultural and Biological Sciences" +3513;21100843667;"Frontiers in Molecular Biosciences";journal;"2296889X";"Frontiers Media SA";Yes;No;1,225;Q1;99;480;2829;31793;11919;2556;3,86;66,24;44,92;0;Switzerland;Western Europe;"Frontiers Media SA";"2014-2026";"Biochemistry (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3514;21100409410;"International Journal of Disaster Risk Science";journal;"21926395, 20950055";"Beijing Normal University Press";Yes;Yes;1,225;Q1;63;81;215;4148;1281;212;6,14;51,21;40,97;3;China;Asiatic Region;"Beijing Normal University Press";"2010-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Safety Research (Q1); Global and Planetary Change (Q2)";"Environmental Science; Social Sciences" +3515;19900192334;"Journal of Applied Accounting Research";journal;"09675426";"Emerald Group Publishing Ltd.";No;No;1,225;Q1;50;74;160;5425;1482;158;8,05;73,31;33,16;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1999-2002, 2004-2006, 2008-2026";"Accounting (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Information Systems and Management (Q1)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +3516;21101162637;"Machine Learning with Applications";journal;"26668270";"Elsevier Ltd";Yes;No;1,225;Q1;52;187;297;9962;2768;295;9,11;53,27;24,58;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Artificial Intelligence (Q1); Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Information Systems (Q1)";"Computer Science" +3517;22494;"Population Health Metrics";journal;"14787954";"BioMed Central Ltd";Yes;No;1,225;Q1;71;74;80;3409;279;75;3,15;46,07;44,83;3;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Epidemiology (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3518;14798;"Sex Roles";journal;"03600025, 15732762";"Springer New York";No;No;1,225;Q1;159;83;283;6272;1220;283;3,84;75,57;70,59;2;United States;Northern America;"Springer New York";"1975-2026";"Developmental and Educational Psychology (Q1); Gender Studies (Q1); Social Psychology (Q1)";"Psychology; Social Sciences" +3519;19700176005;"World Allergy Organization Journal";journal;"19394551";"Elsevier Inc.";Yes;No;1,225;Q1;67;142;367;6040;1715;332;4,03;42,54;46,35;0;United States;Northern America;"Elsevier Inc.";"2010-2026";"Pulmonary and Respiratory Medicine (Q1); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +3520;23602;"BMC Medical Informatics and Decision Making";journal;"14726947";"BioMed Central Ltd";Yes;No;1,224;Q1;117;444;1044;20850;6657;1041;6,68;46,96;40,98;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Computer Science Applications (Q1); Health Informatics (Q1); Health Policy (Q1)";"Computer Science; Medicine" +3521;21752;"Chromosoma";journal;"14320886, 00095915";"Springer Science and Business Media Deutschland GmbH";No;No;1,224;Q1;100;13;57;1111;158;53;2,58;85,46;51,11;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1939, 1941, 1948, 1950-1953, 1955-2025";"Genetics (Q1); Genetics (clinical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3522;19700186873;"Foundations and Trends in Databases";journal;"19317883, 19317891";"Now Publishers Inc";No;No;1,224;Q1;23;1;9;128;40;9;3,29;128,00;0,00;0;United States;Northern America;"Now Publishers Inc";"2007, 2009-2013, 2015-2018, 2020-2025";"Computer Science (miscellaneous) (Q1)";"Computer Science" +3523;20448;"International Journal of Heat and Mass Transfer";journal;"00179310";"Elsevier Ltd";No;No;1,224;Q1;276;1186;3712;60135;24418;3703;6,80;50,70;24,41;0;United Kingdom;Western Europe;"Elsevier Ltd";"1960-2026";"Condensed Matter Physics (Q1); Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1)";"Chemical Engineering; Engineering; Physics and Astronomy" +3524;20601;"Pediatric Drugs";journal;"11792019, 11745878";"";No;No;1,224;Q1;77;64;171;3891;717;167;4,19;60,80;63,19;0;Switzerland;Western Europe;"";"1999-2026";"Pediatrics, Perinatology and Child Health (Q1); Pharmacology (medical) (Q1)";"Medicine" +3525;21101161915;"Complex Psychiatry";journal;"26733005, 2673298X";"S. Karger AG";No;No;1,223;Q1;10;10;30;867;102;27;4,42;86,70;51,35;0;Switzerland;Western Europe;"S. Karger AG";"2015, 2019-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +3526;28457;"Computational Mechanics";journal;"14320924, 01787675";"Springer Verlag";No;No;1,223;Q1;131;225;399;12811;1947;396;5,37;56,94;17,22;0;Germany;Western Europe;"Springer Verlag";"1986-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Computational Mechanics (Q1); Computational Theory and Mathematics (Q1); Mechanical Engineering (Q1); Ocean Engineering (Q1)";"Computer Science; Engineering; Mathematics" +3527;21101086775;"Data and Information Management";journal;"25439251";"Elsevier Ltd";Yes;No;1,223;Q1;20;24;68;1203;556;61;10,46;50,13;38,71;0;United Kingdom;Western Europe;"Elsevier Ltd";"2017-2026";"Computer Science (miscellaneous) (Q1); Library and Information Sciences (Q1)";"Computer Science; Social Sciences" +3528;21101212714;"iEnergy";journal;"27719197";"Institute of Electrical and Electronics Engineers Inc.";Yes;Yes;1,223;Q1;18;25;111;814;627;102;4,98;32,56;33,90;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2022-2025";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Energy (miscellaneous) (Q1); Fuel Technology (Q1)";"Energy; Engineering" +3529;5600153618;"International Journal of Inclusive Education";journal;"14645173, 13603116";"Routledge";No;No;1,223;Q1;80;326;392;17324;2192;390;5,23;53,14;65,20;9;United Kingdom;Western Europe;"Routledge";"1997-2026";"Arts and Humanities (miscellaneous) (Q1); Education (Q1)";"Arts and Humanities; Social Sciences" +3530;17900156718;"Journal of Strategic Marketing";journal;"0965254X, 14664488";"Routledge";No;No;1,223;Q1;76;89;204;5700;1320;201;6,49;64,04;40,89;0;United Kingdom;Western Europe;"Routledge";"1984, 1993-2026";"Strategy and Management (Q1); Marketing (Q2)";"Business, Management and Accounting" +3531;21101065105;"Fundamental Research";journal;"20969457, 26673258";"KeAi Communications Co.";Yes;No;1,222;Q1;43;484;474;34079;2980;435;6,34;70,41;35,87;3;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +3532;21100913307;"Journal of Mining Institute";journal;"25419404, 24113336";"Saint-Petersburg Mining University";Yes;Yes;1,222;Q1;37;102;264;4342;1165;257;4,15;42,57;33,02;0;Russian Federation;Eastern Europe;"Saint-Petersburg Mining University";"2017-2025";"Economic Geology (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Energy (miscellaneous) (Q2)";"Earth and Planetary Sciences; Energy" +3533;16051;"American Review of Public Administration";journal;"15523357, 02750740";"SAGE Publications Inc.";No;No;1,221;Q1;90;36;106;3054;440;106;3,61;84,83;47,31;1;United States;Northern America;"SAGE Publications Inc.";"1967-1983, 1987-2026";"Public Administration (Q1); Sociology and Political Science (Q1); Marketing (Q2)";"Business, Management and Accounting; Social Sciences" +3534;16796;"Journal of Psychiatric and Mental Health Nursing";journal;"13510126, 13652850";"Wiley-Blackwell Publishing Ltd";No;No;1,221;Q1;83;154;291;5726;1238;267;3,78;37,18;64,15;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +3535;14522;"Virchows Archiv";journal;"09456317, 14322307";"Springer Science and Business Media Deutschland GmbH";No;No;1,221;Q1;119;435;625;13688;2248;596;3,70;31,47;44,16;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1947-1948, 1950, 1952-1954, 1956, 1958, 1994-2026";"Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1); Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3536;11400153301;"Botanical Review";journal;"18749372, 00068101";"Springer";No;No;1,220;Q1;84;13;45;1818;300;45;5,71;139,85;38,10;0;United States;Northern America;"Springer";"1935-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +3537;18174;"Control Engineering Practice";journal;"09670661";"Elsevier Ltd";No;No;1,220;Q1;143;400;748;17017;4756;744;5,90;42,54;23,74;0;United Kingdom;Western Europe;"Elsevier Ltd";"1993-2026";"Applied Mathematics (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering; Mathematics" +3538;28298;"Digestive and Liver Disease";journal;"15908658, 18783562";"Elsevier B.V.";No;No;1,220;Q1;117;478;955;12178;2851;735;3,21;25,48;42,79;1;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Gastroenterology (Q1); Hepatology (Q1)";"Medicine" +3539;38062;"Exercise Immunology Review";journal;"10775552";"Association for the Advancement of Sports Medicine";No;No;1,220;Q1;65;5;17;0;81;17;4,70;0,00;40,74;0;Germany;Western Europe;"Association for the Advancement of Sports Medicine";"1996-2025";"Medicine (miscellaneous) (Q1); Sports Science (Q1); Immunology (Q2)";"Health Professions; Immunology and Microbiology; Medicine" +3540;21100364916;"IEEE Transactions on Computational Social Systems";journal;"2329924X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,220;Q1;76;584;1116;30092;7042;1100;6,09;51,53;33,02;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2014-2026";"Human-Computer Interaction (Q1); Modeling and Simulation (Q1); Social Sciences (miscellaneous) (Q1)";"Computer Science; Mathematics; Social Sciences" +3541;23896;"Journal of Geometric Analysis";journal;"10506926, 1559002X";"Springer";No;No;1,220;Q1;55;405;1056;13259;1615;1056;1,49;32,74;23,44;0;United States;Northern America;"Springer";"1991-2026";"Geometry and Topology (Q1)";"Mathematics" +3542;18291;"Socio-Economic Planning Sciences";journal;"00380121";"Elsevier Ltd";No;No;1,220;Q1;83;187;835;12466;5324;831;6,03;66,66;37,06;0;United Kingdom;Western Europe;"Elsevier Ltd";"1967-2026";"Economics and Econometrics (Q1); Geography, Planning and Development (Q1); Management Science and Operations Research (Q1); Statistics, Probability and Uncertainty (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Social Sciences" +3543;28180;"Journal of Advertising Research";journal;"00218499, 17401909";"Taylor and Francis Ltd.";No;No;1,219;Q1;107;40;91;2710;336;76;2,85;67,75;43,81;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972, 1991, 1996-2025";"Communication (Q1); Marketing (Q2)";"Business, Management and Accounting; Social Sciences" +3544;15482;"Journal of Experimental Psychology: Learning Memory and Cognition";journal;"19391285, 02787393";"American Psychological Association";No;No;1,219;Q1;187;118;334;7649;866;334;2,13;64,82;42,59;0;United States;Northern America;"American Psychological Association";"1975, 1982-2025";"Experimental and Cognitive Psychology (Q1); Linguistics and Language (Q1)";"Psychology; Social Sciences" +3545;24537;"Surface and Coatings Technology";journal;"02578972";"Elsevier B.V.";No;No;1,219;Q1;219;1158;3012;61403;21610;3005;7,29;53,03;29,87;0;Netherlands;Western Europe;"Elsevier B.V.";"1986-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Chemistry (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +3546;20897;"Transportation Research Part F: Traffic Psychology and Behaviour";journal;"13698478";"Elsevier Ltd";No;No;1,219;Q1;135;329;760;22718;4547;760;5,64;69,05;39,19;1;United Kingdom;Western Europe;"Elsevier Ltd";"1998-2026";"Applied Psychology (Q1); Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Transportation (Q1)";"Engineering; Psychology; Social Sciences" +3547;19300156906;"Journal of Modern Dynamics";journal;"19305311, 1930532X";"American Institute of Mathematical Sciences";No;No;1,218;Q1;26;20;62;755;64;62;1,07;37,75;18,42;0;United States;Northern America;"American Institute of Mathematical Sciences";"2007-2026";"Algebra and Number Theory (Q1); Analysis (Q1); Applied Mathematics (Q1)";"Mathematics" +3548;19900193252;"Journal of the American Taxation Association";journal;"15588017, 01989073";"American Accounting Association";No;No;1,218;Q1;36;11;38;598;82;37;2,20;54,36;43,75;0;United States;Northern America;"American Accounting Association";"1999, 2001, 2003-2004, 2007, 2009-2025";"Accounting (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3549;32816;"Neural Plasticity";journal;"16875443, 20905904";"John Wiley and Sons Ltd";Yes;No;1,218;Q1;102;35;118;2280;564;118;4,03;65,14;46,41;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1998-2005, 2007-2026";"Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +3550;5700191213;"Orphanet Journal of Rare Diseases";journal;"17501172";"BioMed Central Ltd";Yes;No;1,218;Q1;150;637;1304;27369;5216;1255;3,51;42,97;55,10;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Genetics (clinical) (Q2)";"Medicine" +3551;28874;"European Journal of Psychology of Education";journal;"18785174, 02562928";"Springer Netherlands";No;No;1,217;Q1;77;138;353;10164;1582;352;4,28;73,65;61,32;1;Netherlands;Western Europe;"Springer Netherlands";"1986-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +3552;21100285057;"Food Structure";journal;"22133291";"Elsevier B.V.";No;No;1,217;Q1;50;79;128;3795;881;125;6,59;48,04;42,33;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Chemical Engineering; Immunology and Microbiology" +3553;19889;"Journal of Strength and Conditioning Research";journal;"10648011, 15334287";"NSCA National Strength and Conditioning Association";Yes;No;1,217;Q1;185;335;1215;14875;4242;1209;3,14;44,40;26,24;0;United States;Northern America;"NSCA National Strength and Conditioning Association";"1987-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)";"Health Professions; Medicine" +3554;17400154824;"Stem Cell Reviews and Reports";journal;"26293269, 26293277";"Springer";No;No;1,217;Q2;96;187;550;14882;2754;514;4,47;79,58;47,28;1;United States;Northern America;"Springer";"2009-2026";"Cancer Research (Q2); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3555;15081;"Agriculture and Human Values";journal;"15728366, 0889048X";"Springer Science and Business Media B.V.";No;No;1,216;Q1;105;176;312;15034;1651;309;5,13;85,42;60,51;11;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1984-2026";"Agronomy and Crop Science (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1)";"Agricultural and Biological Sciences; Social Sciences" +3556;27459;"Bulletin of Volcanology";journal;"02588900, 14320819";"Springer Verlag";No;No;1,216;Q1;112;127;267;9471;896;264;2,62;74,57;36,25;1;Germany;Western Europe;"Springer Verlag";"1930, 1940, 1949-1956, 1958-1960, 1962-1983, 1986-2026";"Geochemistry and Petrology (Q1)";"Earth and Planetary Sciences" +3557;21101044921;"Journal of Cognition";journal;"25144820";"Ubiquity Press";Yes;No;1,216;Q1;27;55;187;3646;526;186;3,07;66,29;42,11;0;United Kingdom;Western Europe;"Ubiquity Press";"2018-2026";"Experimental and Cognitive Psychology (Q1)";"Psychology" +3558;12005;"Journal of Traumatic Stress";journal;"15736598, 08949867";"Wiley-Blackwell";No;No;1,216;Q1;165;112;350;5087;1285;331;3,68;45,42;62,61;4;United States;Northern America;"Wiley-Blackwell";"1988-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +3559;21100420316;"Applied Materials Today";journal;"23529415, 23529407";"Elsevier Ltd";No;No;1,215;Q1;112;449;1194;34925;8865;1192;7,22;77,78;35,64;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Materials Science (miscellaneous) (Q1)";"Materials Science" +3560;28098;"BMC Health Services Research";journal;"14726963";"BioMed Central Ltd";Yes;No;1,215;Q1;172;1605;4638;79207;18480;4630;3,50;49,35;56,03;16;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Health Policy (Q1)";"Medicine" +3561;20885;"Health Expectations";journal;"13696513, 13697625";"Wiley-Blackwell Publishing Ltd";Yes;No;1,215;Q1;106;382;923;17833;3764;906;3,62;46,68;70,53;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1999-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3562;17785;"Medical Care";journal;"15371948, 00257079";"Lippincott Williams and Wilkins";No;No;1,215;Q1;215;137;422;4775;1105;374;1,66;34,85;56,27;0;United States;Northern America;"Lippincott Williams and Wilkins";"1963-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3563;29139;"Public Relations Review";journal;"03638111";"Elsevier B.V.";No;No;1,215;Q1;118;94;265;7305;1592;263;5,21;77,71;61,46;1;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Communication (Q1); Organizational Behavior and Human Resource Management (Q1); Marketing (Q2)";"Business, Management and Accounting; Social Sciences" +3564;26398;"Electronic Journal of Probability";journal;"10836489";"Institute of Mathematical Statistics";Yes;No;1,214;Q1;58;195;534;7054;647;534;1,12;36,17;20,69;0;United States;Northern America;"Institute of Mathematical Statistics";"1996-2026";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +3565;130036;"Pediatric Critical Care Medicine";journal;"15297535, 19473893";"Lippincott Williams and Wilkins Ltd.";No;No;1,213;Q1;116;228;783;5073;2093;546;2,76;22,25;52,45;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2000-2026";"Critical Care and Intensive Care Medicine (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +3566;28161;"Reproductive BioMedicine Online";journal;"14726483, 14726491";"Elsevier Ltd";No;No;1,213;Q1;146;261;741;11893;2896;653;3,71;45,57;55,18;0;United Kingdom;Western Europe;"Elsevier Ltd";"2000-2026";"Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Developmental Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3567;13121;"Seminars in Radiation Oncology";journal;"10534296, 15329461";"W.B. Saunders";No;No;1,213;Q1;111;59;145;4572;617;137;4,10;77,49;37,50;0;United States;Northern America;"W.B. Saunders";"1991-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3568;21100901150;"Data Science and Engineering";journal;"23641541, 23641185";"Springer International Publishing";Yes;Yes;1,212;Q1;36;58;86;3316;526;82;5,10;57,17;36,40;1;Switzerland;Western Europe;"Springer International Publishing";"2016-2026";"Artificial Intelligence (Q1); Computational Mechanics (Q1); Computer Science Applications (Q1); Information Systems (Q1); Software (Q1)";"Computer Science; Engineering" +3569;14097;"European Eating Disorders Review";journal;"10990968, 10724133";"John Wiley and Sons Ltd";No;No;1,212;Q1;94;129;222;7417;964;213;3,93;57,50;66,09;3;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1993-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +3570;21101171878;"Frontiers in Soil Science";journal;"26738619";"Frontiers Media SA";Yes;No;1,212;Q1;20;75;156;5352;962;147;5,35;71,36;29,52;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Soil Science (Q1)";"Agricultural and Biological Sciences" +3571;21389;"International Journal of Technology and Design Education";journal;"15731804, 09577572";"Springer Netherlands";No;No;1,212;Q1;67;133;288;8294;1650;288;5,55;62,36;49,07;2;Netherlands;Western Europe;"Springer Netherlands";"1990-2026";"Education (Q1); Engineering (miscellaneous) (Q1)";"Engineering; Social Sciences" +3572;21100370879;"Journal of Managed Care and Specialty Pharmacy";journal;"23761032, 23760540";"Academy of Managed Care Pharmacy (AMCP)";No;No;1,212;Q1;82;143;440;4127;1325;426;2,96;28,86;50,50;2;United States;Northern America;"Academy of Managed Care Pharmacy (AMCP)";"2014-2026";"Health Policy (Q1); Pharmaceutical Science (Q1); Pharmacy (Q1)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +3573;21101020041;"Proceedings of the ACM on Interactive, Mobile, Wearable and Ubiquitous Technologies";journal;"24749567";"Association for Computing Machinery";No;No;1,212;Q1;62;242;623;19277;4544;623;6,79;79,66;32,71;0;United States;Northern America;"Association for Computing Machinery";"2017-2025";"Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Human-Computer Interaction (Q1)";"Computer Science" +3574;20142;"Review of Income and Wealth";journal;"00346586, 14754991";"Wiley-Blackwell Publishing Ltd";No;No;1,212;Q1;77;85;151;4500;436;149;2,34;52,94;25,47;25;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1951-1953, 1955, 1957-1959, 1961-2026";"Economics and Econometrics (Q1)";"Economics, Econometrics and Finance" +3575;20624;"Clinical Pharmacokinetics";journal;"11791926, 03125963";"";No;No;1,211;Q1;197;125;373;5762;1555;356;3,85;46,10;42,75;0;Switzerland;Western Europe;"";"1976-2026";"Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +3576;15442;"Information Systems Management";journal;"10580530";"Taylor and Francis Ltd.";No;No;1,211;Q1;77;29;79;2413;477;65;4,87;83,21;36,25;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Computer Science Applications (Q1); Information Systems (Q1); Library and Information Sciences (Q1)";"Computer Science; Social Sciences" +3577;23972;"Landscape Ecology";journal;"15729761, 09212973";"Springer Science and Business Media B.V.";No;No;1,211;Q1;162;234;664;20454;3077;643;4,62;87,41;36,21;2;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1987-2026";"Ecology (Q1); Geography, Planning and Development (Q1); Nature and Landscape Conservation (Q1)";"Environmental Science; Social Sciences" +3578;21948;"Regional Anesthesia and Pain Medicine";journal;"10987339, 15328651";"BMJ Publishing Group";No;No;1,211;Q1;136;383;552;11066;1677;379;3,35;28,89;34,89;2;United States;Northern America;"BMJ Publishing Group";"1979-1980, 1990, 1994, 1998-2026";"Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +3579;14091;"Development and Change";journal;"14677660, 0012155X";"Wiley-Blackwell Publishing Ltd";No;No;1,210;Q1;118;50;161;3830;639;152;3,83;76,60;53,70;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1970-2026";"Development (Q1)";"Social Sciences" +3580;21100259111;"Journal of Legal Analysis";journal;"21617201, 19465319";"Oxford University Press";Yes;Yes;1,210;Q1;21;11;19;718;142;19;11,63;65,27;11,76;1;United States;Northern America;"Oxford University Press";"2013-2017, 2019-2022, 2024-2026";"Law (Q1)";"Social Sciences" +3581;21101018551;"Chinese Journal of Electrical Engineering";journal;"20961529";"Institute of Electrical and Electronics Engineers Inc.";Yes;Yes;1,209;Q1;39;66;116;3164;617;112;5,41;47,94;23,51;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015-2025";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering" +3582;17892;"Ecology and Society";journal;"17083087";"Resilience Alliance";Yes;No;1,209;Q1;190;174;451;14463;2064;444;4,23;83,12;56,60;0;Canada;Northern America;"Resilience Alliance";"1997-2026";"Ecology (Q1)";"Environmental Science" +3583;29536;"European Journal of Population";journal;"15729885, 01686577";"Springer Netherlands";No;No;1,209;Q1;69;34;114;2526;453;113;3,42;74,29;55,91;1;Netherlands;Western Europe;"Springer Netherlands";"1985-2026";"Demography (Q1)";"Social Sciences" +3584;21100850718;"mSphere";journal;"23795042";"American Society for Microbiology";Yes;No;1,209;Q1;86;340;818;17710;2855;798;3,55;52,09;46,47;2;United States;Northern America;"American Society for Microbiology";"2016-2026";"Microbiology (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +3585;33982;"Health Communication";journal;"10410236, 15327027";"Routledge";No;No;1,208;Q1;106;369;819;24386;3649;810;4,15;66,09;63,56;5;United Kingdom;Western Europe;"Routledge";"1989-2026";"Communication (Q1); Health (social science) (Q1)";"Social Sciences" +3586;12716;"Journal of Nutrition";journal;"15416100, 00223166";"Elsevier B.V.";No;No;1,208;Q1;319;437;1106;26637;4315;983;3,92;60,95;54,37;5;United States;Northern America;"Elsevier B.V.";"1937-1941, 1944-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +3587;4000151603;"Space Weather";journal;"15427390";"John Wiley and Sons Inc";Yes;No;1,208;Q1;82;212;537;12059;2178;526;3,83;56,88;27,79;0;United States;Northern America;"John Wiley and Sons Inc";"2005-2026";"Atmospheric Science (Q1)";"Earth and Planetary Sciences" +3588;28478;"Aging and Mental Health";journal;"13646915, 13607863";"Taylor and Francis Ltd.";No;No;1,207;Q1;127;284;753;15438;2997;745;3,54;54,36;64,23;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Geriatrics and Gerontology (Q1); Gerontology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Nursing" +3589;26445;"European Journal of Combinatorics";journal;"10959971, 01956698";"Academic Press";No;No;1,207;Q1;62;136;418;3319;494;414;1,11;24,40;24,75;0;United States;Northern America;"Academic Press";"1980-2026";"Computational Theory and Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +3590;21101310677;"JAACAP Open";journal;"29497329";"Elsevier B.V.";Yes;No;1,207;Q1;9;114;63;6202;169;52;2,68;54,40;60,39;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Applied Psychology (Q1); Clinical Psychology (Q1); Experimental and Cognitive Psychology (Q1); Psychology (miscellaneous) (Q1)";"Psychology" +3591;21101030139;"JMIR Medical Informatics";journal;"22919694";"JMIR Publications Inc.";Yes;No;1,207;Q1;65;300;499;12824;2913;496;5,78;42,75;40,51;1;Canada;Northern America;"JMIR Publications Inc.";"2013-2026";"Health Informatics (Q1); Health Information Management (Q1)";"Health Professions; Medicine" +3592;16620;"Plant Science";journal;"01689452, 18732259";"Elsevier Ireland Ltd";No;No;1,207;Q1;201;379;895;28712;4891;889;5,14;75,76;45,20;1;Ireland;Western Europe;"Elsevier Ireland Ltd";"1985-2026";"Agronomy and Crop Science (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +3593;21101062805;"Quantitative Science Studies";journal;"26413337";"MIT Press";Yes;No;1,207;Q1;38;60;180;3565;963;170;5,38;59,42;31,21;2;United States;Northern America;"MIT Press";"2020-2025";"Analysis (Q1); Cultural Studies (Q1); Library and Information Sciences (Q1); Numerical Analysis (Q1)";"Mathematics; Social Sciences" +3594;18853;"Water Resources Management";journal;"09204741, 15731650";"Springer Science and Business Media B.V.";No;No;1,207;Q1;144;382;934;17303;5475;931;6,49;45,30;31,73;3;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1987-2026";"Civil and Structural Engineering (Q1); Water Science and Technology (Q1)";"Engineering; Environmental Science" +3595;28582;"Biogerontology";journal;"15736768, 13895729";"Springer Science and Business Media B.V.";No;No;1,206;Q1;100;199;186;18850;982;179;5,44;94,72;45,70;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2000-2026";"Geriatrics and Gerontology (Q1); Gerontology (Q1); Aging (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +3596;21101107573;"Global Challenges";journal;"20566646";"John Wiley and Sons Inc";Yes;No;1,206;Q1;56;106;216;9044;1819;212;8,17;85,32;34,91;2;United States;Northern America;"John Wiley and Sons Inc";"2017-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +3597;33722;"Journal of Agricultural and Food Chemistry";journal;"15205118, 00218561";"American Chemical Society";No;No;1,206;Q1;372;2617;5589;155818;40452;5563;6,88;59,54;43,77;5;United States;Northern America;"American Chemical Society";"1953-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Chemistry" +3598;16305;"Journal of Structural Engineering";journal;"07339445, 1943541X";"American Society of Civil Engineers (ASCE)";No;No;1,206;Q1;199;279;817;12082;3572;805;4,12;43,30;21,07;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1955, 1975, 1977-1979, 1982-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +3599;21100433120;"Microbiology Spectrum";journal;"21650497";"American Society for Microbiology";Yes;No;1,206;Q1;111;1663;5385;79347;23639;5307;4,03;47,71;46,66;6;United States;Northern America;"American Society for Microbiology";"2013-2026";"Ecology (Q1); Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (medical) (Q1); Physiology (Q1); Cell Biology (Q2); Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Immunology and Microbiology; Medicine" +3600;21100469613;"Movement Ecology";journal;"20513933";"BioMed Central Ltd";Yes;No;1,206;Q1;55;90;211;7528;842;207;3,58;83,64;30,58;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2013-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +3601;18687;"Psychiatric Clinics of North America";journal;"15583147, 0193953X";"W.B. Saunders";No;No;1,206;Q1;122;84;180;4754;666;154;3,23;56,60;59,79;0;United States;Northern America;"W.B. Saunders";"1978-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +3602;22281;"Reading and Writing";journal;"09224777, 15730905";"Springer Netherlands";No;No;1,206;Q1;101;214;326;15146;1211;319;3,58;70,78;64,44;3;Netherlands;Western Europe;"Springer Netherlands";"1989-2026";"Education (Q1); Linguistics and Language (Q1); Neuropsychology and Physiological Psychology (Q1); Speech and Hearing (Q1)";"Health Professions; Psychology; Social Sciences" +3603;21101041552;"Clinical and Experimental Pediatrics";journal;"27134148";"Korean Pediatric Society";Yes;Yes;1,205;Q1;50;129;278;4460;926;188;3,11;34,57;52,00;0;South Korea;Asiatic Region;"Korean Pediatric Society";"2020-2026";"Pediatrics (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine; Nursing" +3604;11300153314;"European Journal of Engineering Education";journal;"03043797, 14695898";"Taylor and Francis Ltd.";No;No;1,205;Q1;69;124;215;8681;1234;210;6,32;70,01;54,03;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1975-2026";"Education (Q1); Engineering (miscellaneous) (Q1)";"Engineering; Social Sciences" +3605;21101196704;"HydroResearch";journal;"25897578";"KeAi Communications Co.";Yes;No;1,205;Q1;30;32;68;2353;443;66;6,64;73,53;22,22;0;China;Asiatic Region;"KeAi Communications Co.";"2019-2025";"Aquatic Science (Q1); Earth-Surface Processes (Q1); Management, Monitoring, Policy and Law (Q1); Water Science and Technology (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +3606;15410;"Journal of Clinical Psychology";journal;"00219762, 10974679";"John Wiley & Sons Inc.";No;No;1,205;Q1;157;107;480;5634;1669;465;3,14;52,65;58,65;0;United States;Northern America;"John Wiley & Sons Inc.";"1945-2026";"Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1)";"Arts and Humanities; Psychology" +3607;15300154855;"Journal of Neural Transmission";journal;"03009564, 14351463";"Springer";No;No;1,205;Q1;138;217;393;16284;1792;376;4,67;75,04;48,78;0;Austria;Western Europe;"Springer";"1972-2026";"Neurology (Q1); Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)";"Medicine; Neuroscience" +3608;12066;"Journal of the American Medical Directors Association";journal;"15258610, 15389375";"Elsevier Inc.";No;No;1,205;Q1;147;422;1157;15784;3726;941;2,94;37,40;53,80;5;United States;Northern America;"Elsevier Inc.";"2001-2026";"Geriatrics and Gerontology (Q1); Health Policy (Q1); Medicine (miscellaneous) (Q1); Nursing (miscellaneous) (Q1)";"Medicine; Nursing" +3609;21926;"Decision Sciences";journal;"00117315, 15405915";"Wiley-Blackwell Publishing Ltd";No;No;1,204;Q1;134;35;109;2428;421;109;3,74;69,37;28,07;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1970-2026";"Business, Management and Accounting (miscellaneous) (Q1); Information Systems and Management (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +3610;19900192726;"Electronic Journal of Statistics";journal;"19357524";"Institute of Mathematical Statistics";Yes;No;1,204;Q1;68;140;387;6520;608;387;1,45;46,57;28,65;0;United States;Northern America;"Institute of Mathematical Statistics";"2007-2026";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +3611;21100433204;"Health Promotion and Chronic Disease Prevention in Canada : Research, Policy and Practice";journal;"2368738X";"Public Health Agency of Canada";Yes;Yes;1,204;Q1;41;43;163;1723;528;130;2,83;40,07;67,94;1;Canada;Northern America;"Public Health Agency of Canada";"2015-2026";"Epidemiology (Q1); Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3612;15961;"Naval Research Logistics";journal;"15206750, 0894069X";"John Wiley & Sons Inc.";No;No;1,204;Q1;80;88;188;3970;576;186;2,78;45,11;29,41;0;United States;Northern America;"John Wiley & Sons Inc.";"1973-1978, 1987-2026";"Management Science and Operations Research (Q1); Modeling and Simulation (Q1); Ocean Engineering (Q1)";"Decision Sciences; Engineering; Mathematics" +3613;19618;"Applied and Environmental Microbiology";journal;"00992240, 10985336";"American Society for Microbiology";Yes;No;1,203;Q1;392;661;1515;41912;6838;1514;4,14;63,41;45,87;9;United States;Northern America;"American Society for Microbiology";"1976-2026";"Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1); Ecology (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Immunology and Microbiology" +3614;12145;"Biological Psychology";journal;"03010511, 18736246";"Elsevier B.V.";No;No;1,203;Q1;158;142;440;10485;1637;415;3,06;73,84;46,39;0;Netherlands;Western Europe;"Elsevier B.V.";"1973-2026";"Neuropsychology and Physiological Psychology (Q1); Neuroscience (miscellaneous) (Q1)";"Neuroscience; Psychology" +3615;12773;"British Journal of Mathematical and Statistical Psychology";journal;"00071102, 20448317";"Wiley-Blackwell";No;No;1,203;Q1;69;62;90;3396;236;87;2,34;54,77;33,13;0;United States;Northern America;"Wiley-Blackwell";"1965-2026";"Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1); Statistics and Probability (Q1)";"Arts and Humanities; Mathematics; Medicine; Psychology" +3616;130095;"Journal of NeuroEngineering and Rehabilitation";journal;"17430003";"BioMed Central Ltd";Yes;No;1,203;Q1;137;269;531;16154;3424;530;6,02;60,05;42,37;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Health Informatics (Q1); Rehabilitation (Q1)";"Medicine" +3617;130052;"Journal of the American College of Radiology";journal;"1558349X, 15461440";"Elsevier B.V.";No;No;1,203;Q1;91;383;967;9375;2597;699;2,74;24,48;45,96;2;Netherlands;Western Europe;"Elsevier B.V.";"2004-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +3618;25987;"Social Networks";journal;"03788733";"Elsevier B.V.";No;No;1,203;Q1;123;43;235;2836;769;232;3,19;65,95;32,82;1;Netherlands;Western Europe;"Elsevier B.V.";"1978-2026";"Anthropology (Q1); Psychology (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +3619;29607;"Journal of Leukocyte Biology";journal;"07415400, 19383673";"Oxford University Press";No;No;1,203;Q2;231;255;578;16426;2039;543;3,18;64,42;48,25;0;United States;Northern America;"Oxford University Press";"1984-2026";"Cell Biology (Q2); Immunology (Q2); Immunology and Allergy (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +3620;36450;"Design Studies";journal;"0142694X";"Elsevier Ltd";No;No;1,202;Q1;123;35;86;2397;607;81;5,83;68,49;46,24;0;United Kingdom;Western Europe;"Elsevier Ltd";"1979-2026";"Architecture (Q1); Artificial Intelligence (Q1); Arts and Humanities (miscellaneous) (Q1); Computer Science Applications (Q1); Engineering (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Computer Science; Engineering; Social Sciences" +3621;21101092560;"Engineered Regeneration";journal;"26661381";"KeAi Communications Co.";Yes;No;1,202;Q1;44;22;112;1828;915;112;6,99;83,09;45,73;1;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Biomaterials (Q1); Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1)";"Engineering; Materials Science; Medicine" +3622;17700156774;"European Management Review";journal;"17404762, 17404754";"Wiley-Blackwell";No;No;1,202;Q1;54;103;164;9652;852;158;5,17;93,71;39,10;1;United States;Northern America;"Wiley-Blackwell";"2004, 2006, 2009-2026";"Business and International Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +3623;27241;"Icarus";journal;"10902643, 00191035";"Academic Press Inc.";No;No;1,202;Q1;187;322;1089;19590;3716;1087;3,44;60,84;29,31;1;United States;Northern America;"Academic Press Inc.";"1962-2026";"Astronomy and Astrophysics (Q1); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +3624;100147313;"Journal of Business Finance and Accounting";journal;"0306686X, 14685957";"Wiley-Blackwell Publishing Ltd";No;No;1,202;Q1;102;101;200;7660;823;200;3,81;75,84;34,53;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1974-2026";"Accounting (Q1); Business, Management and Accounting (miscellaneous) (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3625;27711;"Meteoritics and Planetary Science";journal;"10869379";"Wiley-Blackwell";No;No;1,201;Q1;124;160;387;11325;1021;379;2,73;70,78;29,43;0;United States;Northern America;"Wiley-Blackwell";"1984, 1996-2026";"Geophysics (Q1); Space and Planetary Science (Q2)";"Earth and Planetary Sciences" +3626;4000149402;"Virologica Sinica";journal;"1995820X, 16740769";"KeAi Communications Co.";No;No;1,201;Q1;54;110;326;4194;1270;256;3,88;38,13;45,69;0;China;Asiatic Region;"KeAi Communications Co.";"2006-2026";"Infectious Diseases (Q1); Virology (Q1); Immunology (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +3627;110320;"American Journal of Medical Genetics, Part C: Seminars in Medical Genetics";journal;"15524876, 15524868";"Wiley-Liss Inc.";No;No;1,201;Q2;122;37;140;1585;485;115;1,93;42,84;62,42;0;United States;Northern America;"Wiley-Liss Inc.";"1980-1981, 1984-1985, 1987-1989, 1991-1996, 1999-2026";"Genetics (Q2); Genetics (clinical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3628;16950;"Chromosome Research";journal;"15736849, 09673849";"";No;No;1,201;Q2;92;30;82;2600;232;79;2,78;86,67;48,53;0;Netherlands;Western Europe;"";"1993-2026";"Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology" +3629;21101095132;"Behavioural Public Policy";journal;"23980648, 2398063X";"Cambridge University Press";No;No;1,200;Q1;29;86;159;4451;610;153;3,45;51,76;35,29;10;United Kingdom;Western Europe;"Cambridge University Press";"2017-2026";"Applied Psychology (Q1); Political Science and International Relations (Q1); Social Psychology (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +3630;13579;"Data Mining and Knowledge Discovery";journal;"13845810, 1573756X";"Springer Netherlands";No;No;1,200;Q1;131;89;268;4772;1740;267;6,52;53,62;23,73;0;Netherlands;Western Europe;"Springer Netherlands";"1997-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Information Systems (Q1)";"Computer Science" +3631;21100976126;"IEEE Solid-State Circuits Letters";journal;"25739603";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,200;Q1;31;94;249;1067;624;244;2,27;11,35;18,54;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2018-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +3632;21100285028;"IEEE Transactions on Human-Machine Systems";journal;"21682291, 21682305";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,200;Q1;148;102;297;5221;1930;296;6,00;51,19;30,50;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Human Factors and Ergonomics (Q1); Human-Computer Interaction (Q1); Signal Processing (Q1)";"Computer Science; Engineering; Social Sciences" +3633;19700187627;"International Journal of Digital Earth";journal;"17538955, 17538947";"Taylor and Francis Ltd.";Yes;No;1,200;Q1;76;372;686;21905;4109;676;5,82;58,88;35,91;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Computer Science Applications (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Software (Q1)";"Computer Science; Earth and Planetary Sciences" +3634;15000154801;"Journal of Human Kinetics";journal;"16405544, 18997562";"Termedia Publishing House Ltd.";Yes;No;1,200;Q1;66;100;297;4125;1153;297;4,09;41,25;21,29;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2008-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Physiology (medical) (Q1); Sports Science (Q2)";"Health Professions; Medicine" +3635;17852;"NDT and E International";journal;"09638695";"Elsevier Ltd";No;No;1,200;Q1;123;185;506;8013;3295;505;6,46;43,31;24,09;0;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1)";"Engineering; Materials Science; Physics and Astronomy" +3636;21101215111;"Environmental Systems Research";journal;"21932697";"Springer Medizin";Yes;No;1,199;Q1;40;43;121;3210;806;120;6,10;74,65;30,72;0;Germany;Western Europe;"Springer Medizin";"2012-2026";"Ecological Modeling (Q1); Environmental Science (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Environmental Science; Materials Science" +3637;21351;"Expert Opinion on Investigational Drugs";journal;"13543784, 17447658";"Taylor and Francis Ltd.";No;No;1,199;Q1;126;86;323;6602;1355;296;4,22;76,77;43,58;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Medicine (miscellaneous) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +3638;21100200426;"Frontiers of Computer Science";journal;"20952228, 20952236";"Higher Education Press Limited Company";No;No;1,199;Q1;56;156;413;7893;2489;291;7,45;50,60;34,00;1;China;Asiatic Region;"Higher Education Press Limited Company";"2013-2026";"Computer Science (miscellaneous) (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +3639;32795;"Journal of Dairy Science";journal;"15253198, 00220302";"Elsevier Inc.";Yes;No;1,199;Q1;252;955;2235;55475;11105;2229;4,80;58,09;43,46;15;United States;Northern America;"Elsevier Inc.";"1917-2026";"Animal Science and Zoology (Q1); Food Science (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +3640;20669;"Journal of Multinational Financial Management";journal;"1042444X";"Elsevier B.V.";No;No;1,199;Q1;65;21;71;1334;413;71;6,30;63,52;45,10;0;Netherlands;Western Europe;"Elsevier B.V.";"1997-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +3641;97030;"Research in Science Education";journal;"15731898, 0157244X";"Springer Netherlands";No;No;1,199;Q1;77;111;236;6528;1096;222;4,69;58,81;54,43;0;Netherlands;Western Europe;"Springer Netherlands";"1971-2026";"Education (Q1)";"Social Sciences" +3642;21101021192;"Cell Stress";journal;"25230204";"Shared Science Publishers OG";Yes;No;1,198;Q1;33;11;34;1739;108;34;3,00;158,09;36,36;0;Austria;Western Europe;"Shared Science Publishers OG";"2017-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Physiology (Q1); Cancer Research (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology" +3643;20291;"Ecological Engineering";journal;"09258574";"Elsevier B.V.";No;No;1,198;Q1;181;261;700;18501;3674;695;4,73;70,89;36,23;0;Netherlands;Western Europe;"Elsevier B.V.";"1992-2026";"Environmental Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)";"Environmental Science" +3644;21101183492;"El-Mashlahah";journal;"20891970, 26228645";"Sharia Faculty of State Islamic Institute (IAIN) Palangka Raya";No;No;1,198;Q1;16;20;44;1014;247;44;6,34;50,70;30,51;0;Indonesia;Asiatic Region;"Sharia Faculty of State Islamic Institute (IAIN) Palangka Raya";"2019-2025";"Law (Q1)";"Social Sciences" +3645;16688;"Journal of Cognitive Neuroscience";journal;"0898929X, 15308898";"MIT Press";Yes;No;1,198;Q1;249;132;443;3276;1271;434;2,64;24,82;43,76;0;United States;Northern America;"MIT Press";"1989-2026";"Cognitive Neuroscience (Q1)";"Neuroscience" +3646;17529;"Journal of Financial Services Research";journal;"15730735, 09208550";"Springer Netherlands";No;No;1,198;Q1;66;38;69;1905;256;68;4,30;50,13;31,68;3;Netherlands;Western Europe;"Springer Netherlands";"1987-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3647;16242;"Journal of Law, Economics, and Organization";journal;"14657341, 87566222";"Oxford University Press";No;No;1,198;Q1;84;39;75;1910;164;75;2,17;48,97;20,24;6;United Kingdom;Western Europe;"Oxford University Press";"1985-2026";"Economics and Econometrics (Q1); Law (Q1); Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +3648;21100385605;"Smart and Sustainable Built Environment";journal;"20466102, 20466099";"Emerald Group Publishing Ltd.";No;No;1,198;Q1;46;243;231;17967;2130;225;9,38;73,94;29,63;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2012-2026";"Architecture (Q1); Building and Construction (Q1); Civil and Structural Engineering (Q1); Cultural Studies (Q1); Human Factors and Ergonomics (Q1); Management, Monitoring, Policy and Law (Q1); Renewable Energy, Sustainability and the Environment (Q1); Urban Studies (Q1)";"Energy; Engineering; Environmental Science; Social Sciences" +3649;4800153101;"Expert Review of Clinical Immunology";journal;"1744666X, 17448409";"Taylor and Francis Ltd.";No;No;1,198;Q2;85;134;367;12631;1543;327;4,07;94,26;47,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +3650;21101055201;"Applied Water Science";journal;"21905495, 21905487";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,197;Q1;114;314;779;20263;5689;779;6,49;64,53;29,55;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Water Science and Technology (Q1)";"Environmental Science" +3651;19400158515;"Cognitive Computation";journal;"18669964, 18669956";"Springer New York";No;No;1,197;Q1;81;175;494;10024;3865;479;8,72;57,28;30,68;0;United States;Northern America;"Springer New York";"2009-2026";"Computer Science Applications (Q1); Computer Vision and Pattern Recognition (Q1); Cognitive Neuroscience (Q2)";"Computer Science; Neuroscience" +3652;21100389511;"Energy Reports";journal;"23524847";"Elsevier Ltd";Yes;No;1,197;Q1;132;810;5423;49121;37984;5407;7,56;60,64;25,70;8;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Building and Construction (Q1); Chemical Engineering (miscellaneous) (Q1); Civil and Structural Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Management, Monitoring, Policy and Law (Q1); Mechanical Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Chemical Engineering; Energy; Engineering; Environmental Science" +3653;21101046659;"Materials Science for Energy Technologies";journal;"25892991";"KeAi Communications Co.";Yes;No;1,197;Q1;62;22;139;1632;1254;139;9,65;74,18;32,35;0;China;Asiatic Region;"KeAi Communications Co.";"2018-2026";"Chemical Engineering (miscellaneous) (Q1); Fuel Technology (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Chemical Engineering; Energy; Materials Science" +3654;19700188360;"Pharmaceutics";journal;"19994923";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,197;Q1;157;1614;7182;129490;53282;7085;7,51;80,23;49,18;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Pharmaceutical Science (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +3655;13261;"Progress in Organic Coatings";journal;"03009440";"Elsevier B.V.";No;No;1,197;Q1;149;648;1954;37399;15909;1951;8,08;57,71;37,75;1;Netherlands;Western Europe;"Elsevier B.V.";"1972-2026";"Chemical Engineering (miscellaneous) (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1); Surfaces, Coatings and Films (Q1)";"Chemical Engineering; Chemistry; Materials Science" +3656;26613;"Administration and Policy in Mental Health and Mental Health Services Research";journal;"15733289, 0894587X";"Springer New York";No;No;1,196;Q1;100;89;227;5553;821;215;3,41;62,39;65,05;1;United States;Northern America;"Springer New York";"1988-2026";"Health Policy (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3657;21101093601;"IEEE Transactions on Artificial Intelligence";journal;"26914581";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,196;Q1;44;422;758;23214;4886;752;6,07;55,01;26,62;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1)";"Computer Science" +3658;24154;"Journal of Analytical and Applied Pyrolysis";journal;"01652370";"Elsevier B.V.";No;No;1,196;Q1;185;409;1297;25725;9050;1295;6,93;62,90;33,86;0;Netherlands;Western Europe;"Elsevier B.V.";"1970, 1979-2026";"Analytical Chemistry (Q1); Fuel Technology (Q1)";"Chemistry; Energy" +3659;26661;"Journal of Nutrition, Health and Aging";journal;"17604788, 12797707";"Elsevier B.V.";Yes;No;1,196;Q1;116;230;581;9381;2486;485;4,11;40,79;52,08;0;Italy;Western Europe;"Elsevier B.V.";"1997-2026";"Geriatrics and Gerontology (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +3660;20199;"Transplant International";journal;"09340874, 14322277";"Frontiers Media SA";Yes;No;1,196;Q1;100;181;677;6997;2130;579;3,13;38,66;39,98;0;Switzerland;Western Europe;"Frontiers Media SA";"1988-2026";"Transplantation (Q1)";"Medicine" +3661;16925;"American Journal of Community Psychology";journal;"00910562, 15732770";"John Wiley and Sons Inc";No;No;1,195;Q1;143;99;213;5551;851;200;3,07;56,07;72,67;4;United States;Northern America;"John Wiley and Sons Inc";"1973-2026";"Applied Psychology (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Social Work (Q1)";"Medicine; Psychology; Social Sciences" +3662;21101043776;"Current Research in Green and Sustainable Chemistry";journal;"26660865";"Elsevier B.V.";Yes;No;1,195;Q1;53;53;193;3367;1904;192;7,91;63,53;35,22;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Materials Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Environmental Chemistry (Q2)";"Chemistry; Environmental Science; Materials Science" +3663;21100242201;"Romanian Journal of Information Science and Technology";journal;"14538245";"Publishing House of the Romanian Academy";Yes;No;1,195;Q1;29;31;83;780;322;80;5,18;25,16;24,78;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2008-2025";"Computer Science (miscellaneous) (Q1)";"Computer Science" +3664;21101055806;"Advances in Industrial and Manufacturing Engineering";journal;"26669129";"Elsevier B.V.";Yes;No;1,194;Q1;28;23;77;1017;620;76;7,18;44,22;26,26;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2025";"Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering" +3665;17625;"Journal of Proteome Research";journal;"15353893, 15353907";"American Chemical Society";No;No;1,194;Q1;198;515;1060;27533;4199;1047;3,91;53,46;43,88;0;United States;Northern America;"American Chemical Society";"2002-2026";"Biochemistry (Q1); Chemistry (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +3666;21100324439;"npj Primary Care Respiratory Medicine";journal;"20551010";"Nature Research";Yes;No;1,194;Q1;69;60;136;2307;643;126;4,78;38,45;49,55;2;United Kingdom;Western Europe;"Nature Research";"2014-2026";"Family Practice (Q1); Public Health, Environmental and Occupational Health (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine" +3667;5700156763;"Teachers and Teaching: Theory and Practice";journal;"13540602, 14701278";"Routledge";No;No;1,194;Q1;88;156;180;8291;782;176;4,12;53,15;69,58;2;United Kingdom;Western Europe;"Routledge";"1995-2026";"Arts and Humanities (miscellaneous) (Q1); Education (Q1)";"Arts and Humanities; Social Sciences" +3668;26662;"Pancreatology";journal;"14243911, 14243903";"Elsevier B.V.";No;No;1,193;Q1;97;217;483;6206;1621;431;3,42;28,60;28,36;0;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Gastroenterology (Q1); Hepatology (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3669;21101068929;"Smart Cities";journal;"26246511";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,193;Q1;57;210;396;14537;3882;396;9,60;69,22;28,72;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2018-2026";"Artificial Intelligence (Q1); Electrical and Electronic Engineering (Q1); Urban Studies (Q1)";"Computer Science; Engineering; Social Sciences" +3670;19900191735;"Topics in Cognitive Science";journal;"17568765, 17568757";"Wiley-Blackwell";No;No;1,193;Q1;84;75;170;5453;579;136;3,58;72,71;47,25;3;United States;Northern America;"Wiley-Blackwell";"2009-2026";"Artificial Intelligence (Q1); Experimental and Cognitive Psychology (Q1); Human-Computer Interaction (Q1); Linguistics and Language (Q1); Cognitive Neuroscience (Q2)";"Computer Science; Neuroscience; Psychology; Social Sciences" +3671;21101053582;"Business Ethics, the Environment and Responsibility";journal;"26946424, 26946416";"John Wiley and Sons Inc";No;No;1,192;Q1;61;256;246;23970;1802;233;6,91;93,63;43,88;4;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2021-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1); Organizational Behavior and Human Resource Management (Q1); Philosophy (Q1)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science" +3672;16044;"Electric Power Systems Research";journal;"03787796";"Elsevier B.V.";No;No;1,192;Q1;162;907;2931;33075;15891;2930;5,56;36,47;26,42;1;Netherlands;Western Europe;"Elsevier B.V.";"1977-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering" +3673;27955;"Fortschritte der Physik";journal;"15213978, 00158208";"Wiley-VCH Verlag";No;No;1,192;Q1;78;75;192;5423;1074;189;5,14;72,31;18,34;0;Germany;Western Europe;"Wiley-VCH Verlag";"1953-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +3674;21101198451;"Frontiers in Remote Sensing";journal;"26736187";"Frontiers Media SA";Yes;No;1,192;Q1;25;134;264;7801;1215;256;3,18;58,22;30,80;2;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Biophysics (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Earth and Planetary Sciences; Physics and Astronomy" +3675;20100195008;"Research in Psychotherapy: Psychopathology, Process and Outcome";journal;"22398031";"Page Press Publications";Yes;No;1,192;Q1;25;14;87;838;306;85;3,88;59,86;52,70;0;Italy;Western Europe;"Page Press Publications";"2011-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +3676;20649;"Annals of Allergy, Asthma and Immunology";journal;"15344436, 10811206";"American College of Allergy, Asthma and Immunology";No;No;1,191;Q1;137;316;1023;8939;2990;752;3,17;28,29;50,51;0;United States;Northern America;"American College of Allergy, Asthma and Immunology";"1995-2026";"Pulmonary and Respiratory Medicine (Q1); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +3677;19700174918;"Clinical and Translational Science";journal;"17528062, 17528054";"John Wiley and Sons Inc";Yes;No;1,191;Q1;71;340;828;11888;3295;806;4,26;34,96;44,56;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2008-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +3678;5000156906;"Current Hematologic Malignancy Reports";journal;"15588211, 1558822X";"Springer";No;No;1,191;Q1;52;24;89;1699;339;89;4,34;70,79;40,21;0;United States;Northern America;"Springer";"2006-2026";"Hematology (Q1); Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3679;7100153132;"Human Resource Development Review";journal;"15526712, 15344843";"SAGE Publications Ltd";No;No;1,191;Q1;74;31;86;3267;506;64;5,59;105,39;46,97;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2026";"Organizational Behavior and Human Resource Management (Q1)";"Business, Management and Accounting" +3680;25296;"Journal of Gastroenterology and Hepatology (Australia)";journal;"14401746, 08159319";"Wiley-Blackwell Publishing Ltd";No;No;1,191;Q1;162;389;988;12023;3220;840;3,09;30,91;32,38;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1986-2026";"Gastroenterology (Q1); Hepatology (Q2)";"Medicine" +3681;21100934557;"Journal of Intelligence";journal;"20793200";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,191;Q1;38;165;478;11739;2320;463;4,49;71,15;48,65;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Developmental and Educational Psychology (Q1); Education (Q1); Experimental and Cognitive Psychology (Q1); Cognitive Neuroscience (Q2)";"Neuroscience; Psychology; Social Sciences" +3682;18069;"Neurosurgery";journal;"15244040, 0148396X";"Lippincott Williams and Wilkins";Yes;No;1,191;Q1;236;633;1308;16554;3282;847;2,67;26,15;24,79;0;United States;Northern America;"Lippincott Williams and Wilkins";"1977-2026";"Neurology (clinical) (Q1); Surgery (Q1)";"Medicine" +3683;28805;"Nurse Education in Practice";journal;"18735223, 14715953";"Elsevier Ltd";No;No;1,191;Q1;76;360;734;15778;3793;666;4,92;43,83;70,97;0;United Kingdom;Western Europe;"Elsevier Ltd";"2001-2026";"Education (Q1); Medicine (miscellaneous) (Q1); Nursing (miscellaneous) (Q1)";"Medicine; Nursing; Social Sciences" +3684;19608;"Annals of Clinical Microbiology and Antimicrobials";journal;"14760711";"BioMed Central Ltd";Yes;No;1,190;Q1;80;65;271;3135;1387;269;5,16;48,23;46,32;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q1)";"Medicine" +3685;26043;"Economy and Society";journal;"03085147, 14695766";"Routledge";No;No;1,190;Q1;109;34;93;2554;455;92;4,62;75,12;36,84;1;United Kingdom;Western Europe;"Routledge";"1972-2026";"Business and International Management (Q1); Economics and Econometrics (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); History (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +3686;19700201452;"European Cardiology Review";journal;"17583764, 17583756";"";Yes;No;1,190;Q1;35;38;91;1624;360;77;3,79;42,74;28,78;0;United Kingdom;Western Europe;"";"2007, 2011-2012, 2014-2025";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +3687;22577;"Food Control";journal;"09567135";"Elsevier B.V.";No;No;1,190;Q1;186;650;2003;38411;16162;1988;8,10;59,09;47,48;1;Netherlands;Western Europe;"Elsevier B.V.";"1990-2026";"Biotechnology (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +3688;21100317418;"International Journal of Precision Engineering and Manufacturing - Green Technology";journal;"21980810, 22886206";"Springer Science + Business Media";No;No;1,190;Q1;65;164;308;10859;2500;305;7,99;66,21;22,71;0;United States;Northern America;"Springer Science + Business Media";"2014-2026";"Industrial and Manufacturing Engineering (Q1); Management of Technology and Innovation (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Business, Management and Accounting; Energy; Engineering; Materials Science" +3689;25696;"Nonlinearity";journal;"09517715, 13616544";"IOP Publishing Ltd.";No;No;1,190;Q1;112;271;693;9889;1278;693;1,70;36,49;21,82;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1988-2025";"Applied Mathematics (Q1); Mathematical Physics (Q1); Physics and Astronomy (miscellaneous) (Q1); Statistical and Nonlinear Physics (Q1)";"Mathematics; Physics and Astronomy" +3690;22460;"Patient Education and Counseling";journal;"18735134, 07383991";"Elsevier Ireland Ltd";No;No;1,190;Q1;175;379;1055;17745;4048;961;3,47;46,82;67,29;1;Ireland;Western Europe;"Elsevier Ireland Ltd";"1983-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +3691;19700201679;"Therapeutic Advances in Musculoskeletal Disease";journal;"1759720X, 17597218";"SAGE Publications Inc.";Yes;No;1,190;Q1;59;48;212;2495;867;211;3,47;51,98;46,71;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2009-2026";"Orthopedics and Sports Medicine (Q1); Rheumatology (Q1)";"Medicine" +3692;21101272844;"JMIR AI";journal;"28171705";"JMIR Publications Inc.";Yes;No;1,189;Q1;17;105;117;4283;759;114;6,59;40,79;32,70;0;Canada;Northern America;"JMIR Publications Inc.";"2022-2026";"Health Informatics (Q1); Health Policy (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Reviews and References (medical) (Q1)";"Medicine" +3693;12100155712;"Language Assessment Quarterly";journal;"15434303, 15434311";"Routledge";No;No;1,189;Q1;44;31;70;1564;268;58;4,38;50,45;58,00;0;United States;Northern America;"Routledge";"2009-2026";"Linguistics and Language (Q1)";"Social Sciences" +3694;12807;"Personality and Individual Differences";journal;"01918869";"Elsevier B.V.";No;No;1,189;Q1;228;506;1250;26223;4682;1241;3,46;51,82;51,78;4;United Kingdom;Western Europe;"Elsevier B.V.";"1980-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +3695;21200;"Pharmacotherapy";journal;"18759114, 02770008";"American College of Clinical Pharmacy";No;No;1,189;Q1;136;98;305;3428;1235;282;3,72;34,98;46,40;0;United States;Northern America;"American College of Clinical Pharmacy";"1981-2026";"Pharmacology (medical) (Q1)";"Medicine" +3696;21101291381;"Autophagy Reports";journal;"27694127";"Informa UK Ltd";Yes;No;1,188;Q1;10;49;169;4725;241;55;1,86;96,43;38,42;0;United Kingdom;Western Europe;"Informa UK Ltd";"2022-2026";"Geriatrics and Gerontology (Q1); Oncology (nursing) (Q1); Pharmacology (Q1); Neuroscience (miscellaneous) (Q2)";"Medicine; Neuroscience; Nursing; Pharmacology, Toxicology and Pharmaceutics" +3697;16794;"BMC Plant Biology";journal;"14712229";"BioMed Central Ltd";Yes;No;1,188;Q1;172;1762;2514;115296;14761;2512;5,67;65,43;41,25;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +3698;13524;"Discourse and Society";journal;"14603624, 09579265";"SAGE Publications Ltd";No;No;1,188;Q1;97;67;115;3563;481;115;2,80;53,18;55,17;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1990-2026";"Communication (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q1)";"Social Sciences" +3699;21101036139;"Environmental and Sustainability Indicators";journal;"26659727";"Elsevier B.V.";Yes;No;1,188;Q1;44;495;371;37055;2568;369;6,63;74,86;34,86;4;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Environmental Science (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1)";"Agricultural and Biological Sciences; Environmental Science" +3700;21101043576;"Epigenomes";journal;"20754655";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,188;Q1;22;53;118;4973;456;112;4,42;93,83;51,00;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2025";"Biochemistry (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Health, Toxicology and Mutagenesis (Q1); Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology; Environmental Science" +3701;5200153112;"European Financial Management";journal;"13547798, 1468036X";"Wiley-Blackwell Publishing Ltd";No;No;1,188;Q1;82;80;167;5641;947;166;5,58;70,51;28,44;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1995-2026";"Accounting (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3702;21101037157;"Visual Computing for Industry, Biomedicine, and Art";journal;"25244442, 2096496X";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;1,188;Q1;29;29;82;1932;545;81;7,58;66,62;36,90;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2018-2026";"Computer Graphics and Computer-Aided Design (Q1); Computer Science (miscellaneous) (Q1); Computer Vision and Pattern Recognition (Q1); Medicine (miscellaneous) (Q1); Software (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Computer Science; Medicine" +3703;29256;"Clinical and Experimental Metastasis";journal;"02620898, 15737276";"Springer Science and Business Media B.V.";No;No;1,187;Q1;114;63;197;3704;749;179;3,40;58,79;39,80;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1983-2026";"Medicine (miscellaneous) (Q1); Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3704;19900193691;"Journal of Political Ecology";journal;"10730451";"University of Arizona Libraries";Yes;Yes;1,187;Q1;48;61;147;5052;546;147;3,73;82,82;59,50;1;United States;Northern America;"University of Arizona Libraries";"1999, 2001-2002, 2004, 2011-2026";"Ecology (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Environmental Science; Social Sciences" +3705;17600155060;"Cell Adhesion and Migration";journal;"19336918, 19336926";"Taylor and Francis Ltd.";Yes;No;1,187;Q2;84;15;34;978;157;33;4,15;65,20;50,00;0;United States;Northern America;"Taylor and Francis Ltd.";"2007-2026";"Cell Biology (Q2); Cellular and Molecular Neuroscience (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +3706;13452;"Creativity Research Journal";journal;"15326934, 10400419";"Routledge";No;No;1,186;Q1;113;101;137;7189;803;133;5,54;71,18;47,60;3;United States;Northern America;"Routledge";"1988-1999, 2001-2026";"Developmental and Educational Psychology (Q1); Psychology (miscellaneous) (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Psychology" +3707;21101087138;"Food Frontiers";journal;"26438429";"John Wiley and Sons Inc";Yes;No;1,186;Q1;43;176;335;15389;2642;318;7,39;87,44;45,92;1;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +3708;14929;"Global Networks";journal;"14710374, 14702266";"Wiley-Blackwell Publishing Ltd";No;No;1,186;Q1;94;60;158;4114;647;155;3,38;68,57;57,94;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2001-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +3709;16248;"Journal of Attention Disorders";journal;"10870547, 15571246";"SAGE Publications Inc.";No;No;1,186;Q1;100;113;434;7013;1722;430;3,57;62,06;60,33;0;United States;Northern America;"SAGE Publications Inc.";"1996-2026";"Clinical Psychology (Q1); Developmental and Educational Psychology (Q1)";"Psychology" +3710;21100456759;"Journal of Graduate Medical Education";journal;"19498349, 19498357";"Accreditation Council for Graduate Medical Education";No;No;1,186;Q1;51;187;514;2908;1564;288;1,64;15,55;58,62;0;United States;Northern America;"Accreditation Council for Graduate Medical Education";"2010, 2012, 2014-2026";"Education (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +3711;11200153565;"Pigment Cell and Melanoma Research";journal;"1755148X, 17551471";"Wiley-Blackwell Publishing Ltd";No;No;1,186;Q1;131;89;154;4440;540;136;3,02;49,89;47,38;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2008-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Dermatology (Q1); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3712;21376;"Vaccine";journal;"0264410X, 18732518";"Elsevier Ltd";No;No;1,186;Q1;230;1198;2870;49708;9838;2750;3,38;41,49;52,30;24;United Kingdom;Western Europe;"Elsevier Ltd";"1983-2026";"Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1); Veterinary (miscellaneous) (Q1); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Veterinary" +3713;21101055712;"Case Studies in Chemical and Environmental Engineering";journal;"26660164";"Elsevier Ltd";Yes;No;1,185;Q1;59;271;854;16459;6888;852;7,83;60,73;36,31;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Chemical Engineering (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1); Environmental Chemistry (Q2)";"Chemical Engineering; Engineering; Environmental Science" +3714;13444;"Journal of the Meteorological Society of Japan";journal;"21869057, 00261165";"Springer";Yes;No;1,185;Q2;99;37;118;2127;346;102;3,42;57,49;17,99;1;Japan;Asiatic Region;"Springer";"1905-1907, 1910-1918, 1920-1922, 1966-1967, 1974, 1976-1978, 1980-1983, 1986-2026";"Atmospheric Science (Q2)";"Earth and Planetary Sciences" +3715;28253;"Best Practice and Research: Clinical Gastroenterology";journal;"15321916, 15216918";"Bailliere Tindall Ltd";No;No;1,184;Q1;117;77;143;5684;664;132;4,65;73,82;43,80;0;United Kingdom;Western Europe;"Bailliere Tindall Ltd";"1999-2026";"Gastroenterology (Q1)";"Medicine" +3716;21101215114;"Discover Artificial Intelligence";journal;"27310809";"Springer Nature";Yes;No;1,184;Q1;27;421;183;20687;2089;180;11,29;49,14;35,25;2;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Artificial Intelligence (Q1); Computer Vision and Pattern Recognition (Q1); Human-Computer Interaction (Q1); Information Systems (Q1)";"Computer Science" +3717;19400158481;"Journal of Web Librarianship";journal;"19322909, 19322917";"Routledge";No;No;1,184;Q1;24;10;26;509;119;25;4,65;50,90;31,58;0;United States;Northern America;"Routledge";"2007-2026";"Computer Science Applications (Q1); Library and Information Sciences (Q1)";"Computer Science; Social Sciences" +3718;145516;"Language, Culture and Curriculum";journal;"07908318";"Taylor and Francis Ltd.";No;No;1,184;Q1;53;37;89;2008;460;87;4,75;54,27;55,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +3719;21100788744;"OpenNano";journal;"23529520";"Elsevier Inc.";Yes;No;1,184;Q1;38;42;175;3456;1793;174;8,84;82,29;50,30;0;United States;Northern America;"Elsevier Inc.";"2016-2019, 2021-2026";"Biotechnology (Q1); Internal Medicine (Q1); Pharmaceutical Science (Q1); Pharmacology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +3720;29603;"Clinical Orthopaedics and Related Research";journal;"15281132, 0009921X";"";No;No;1,183;Q1;254;489;1250;8683;2401;620;1,87;17,76;26,06;0;United States;Northern America;"";"1963-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1); Sports Science (Q2)";"Health Professions; Medicine" +3721;21101005180;"Global Media and China";journal;"20594372";"SAGE Publications Ltd";Yes;Yes;1,183;Q1;25;39;88;2195;379;85;3,14;56,28;56,36;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2016-2026";"Communication (Q1); Cultural Studies (Q1)";"Social Sciences" +3722;13332;"Solar Energy Materials and Solar Cells";journal;"09270248";"Elsevier B.V.";No;No;1,183;Q1;235;550;1441;28482;9847;1436;6,69;51,79;31,31;0;Netherlands;Western Europe;"Elsevier B.V.";"1970, 1992-2026";"Electronic, Optical and Magnetic Materials (Q1); Surfaces, Coatings and Films (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Materials Science" +3723;19400158595;"World Trade Review";journal;"14747456, 14753138";"Cambridge University Press";No;No;1,183;Q1;42;52;111;4421;301;106;2,66;85,02;29,17;0;United Kingdom;Western Europe;"Cambridge University Press";"2002-2026";"Economics and Econometrics (Q1); Law (Q1); Political Science and International Relations (Q1)";"Economics, Econometrics and Finance; Social Sciences" +3724;25666;"Common Market Law Review";journal;"01650750, 18758320";"Kluwer Law International";No;No;1,182;Q1;74;50;211;6096;481;184;1,98;121,92;44,23;1;Netherlands;Western Europe;"Kluwer Law International";"1996-2025";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +3725;21101045704;"Composites Part C: Open Access";journal;"26666820";"Elsevier B.V.";Yes;No;1,182;Q1;46;134;313;8298;2759;311;7,71;61,93;16,24;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Ceramics and Composites (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +3726;20052;"Medical Care Research and Review";journal;"15526801, 10775587";"SAGE Publications Inc.";No;No;1,182;Q1;101;46;166;2279;519;166;3,28;49,54;65,48;6;United States;Northern America;"SAGE Publications Inc.";"1944-1954, 1963-1971, 1974-1975, 1978-1990, 1993-2026";"Health Policy (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +3727;13069;"Psycho-Oncology";journal;"10579249, 10991611";"John Wiley and Sons Ltd";No;No;1,182;Q1;172;298;608;12758;2648;577;4,02;42,81;65,86;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1992-2026";"Experimental and Cognitive Psychology (Q1); Psychiatry and Mental Health (Q1); Oncology (Q2)";"Medicine; Psychology" +3728;21101302104;"Blood Neoplasia";journal;"29503280";"Elsevier B.V.";Yes;No;1,181;Q1;6;121;44;4289;104;44;2,36;35,45;41,45;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Hematology (Q1); Oncology (Q2)";"Medicine" +3729;5700161712;"City and Community";journal;"15356841, 15406040";"SAGE Publications Inc.";No;No;1,181;Q1;55;12;50;1023;190;48;2,50;85,25;55,56;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2002-2026";"Urban Studies (Q1)";"Social Sciences" +3730;21100891048;"Epigenetics Insights";journal;"25168657";"SAGE Publications Ltd";Yes;No;1,181;Q1;17;0;20;0;100;18;5,75;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2023";"Biochemistry (Q1); Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology" +3731;17481;"FEBS Letters";journal;"00145793, 18733468";"John Wiley and Sons Inc";No;No;1,181;Q1;295;296;703;21585;2345;680;3,15;72,92;42,44;1;United States;Northern America;"John Wiley and Sons Inc";"1968-2026";"Biochemistry (Q1); Biophysics (Q1); Cell Biology (Q2); Genetics (Q2); Molecular Biology (Q2); Structural Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3732;26350;"Journal of European Social Policy";journal;"14617269, 09589287";"SAGE Publications Ltd";No;No;1,181;Q1;96;53;113;2808;544;113;3,68;52,98;48,36;5;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991-2026";"Management, Monitoring, Policy and Law (Q1); Social Sciences (miscellaneous) (Q1)";"Environmental Science; Social Sciences" +3733;4700152279;"Journal of Marketing for Higher Education";journal;"15407144, 08841241";"Routledge";No;No;1,181;Q1;51;41;109;3221;626;109;5,58;78,56;39,36;0;United States;Northern America;"Routledge";"1988-1991, 1993-2026";"Education (Q1); Marketing (Q2)";"Business, Management and Accounting; Social Sciences" +3734;28010;"Molecular Human Reproduction";journal;"14602407, 13609947";"Oxford University Press";No;No;1,181;Q1;145;57;136;4036;509;125;3,47;70,81;50,59;0;United Kingdom;Western Europe;"Oxford University Press";"1995-2026";"Embryology (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Cell Biology (Q2); Developmental Biology (Q2); Genetics (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3735;14395;"New Carbon Materials";journal;"20971605, 18725805";"Science Press";No;No;1,181;Q1;64;66;232;5783;1707;232;7,30;87,62;32,65;0;China;Asiatic Region;"Science Press";"2004-2025";"Materials Science (miscellaneous) (Q1)";"Materials Science" +3736;12604;"American Naturalist";journal;"00030147, 15375323";"University of Chicago";No;No;1,180;Q1;242;101;415;8210;1152;401;2,68;81,29;36,23;0;United States;Northern America;"University of Chicago";"1946-1948, 1960-1961, 1973-1975, 1978-1979, 1981-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +3737;21100928679;"Arctic Science";journal;"23687460";"Canadian Science Publishing";Yes;No;1,180;Q1;23;90;162;7099;586;156;2,90;78,88;49,20;1;Canada;Northern America;"Canadian Science Publishing";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +3738;21101075633;"Current Research in Environmental Sustainability";journal;"26660490";"Elsevier B.V.";Yes;No;1,180;Q1;30;49;154;3885;960;149;5,89;79,29;45,59;4;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +3739;21101030144;"JMIR Serious Games";journal;"22919279";"JMIR Publications Inc.";Yes;No;1,180;Q1;54;137;299;7667;1863;297;5,17;55,96;48,68;0;Canada;Northern America;"JMIR Publications Inc.";"2013-2026";"Biomedical Engineering (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Psychiatry and Mental Health (Q1); Rehabilitation (Q1)";"Engineering; Health Professions; Medicine" +3740;18138;"Sociology of Health and Illness";journal;"01419889, 14679566";"Wiley-Blackwell Publishing Ltd";No;No;1,180;Q1;122;129;296;7918;1137;285;3,67;61,38;68,06;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1979-2026";"Health Policy (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +3741;28275;"Clinics in Liver Disease";journal;"10893261, 15578224";"W.B. Saunders";No;No;1,180;Q2;101;55;193;3516;794;169;4,06;63,93;32,43;0;United States;Northern America;"W.B. Saunders";"1997-2026";"Hepatology (Q2)";"Medicine" +3742;21100216569;"Frontiers in Psychiatry";journal;"16640640";"Frontiers Media SA";Yes;No;1,179;Q1;154;2068;7683;115193;30739;7181;3,53;55,70;51,14;5;Switzerland;Western Europe;"Frontiers Media SA";"2010-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +3743;15383;"Journal of Applied Behavioral Science";journal;"15526879, 00218863";"SAGE Publications Inc.";No;No;1,179;Q1;87;34;109;2687;479;103;4,28;79,03;48,15;0;United States;Northern America;"SAGE Publications Inc.";"1965-2026";"Applied Psychology (Q1)";"Psychology" +3744;19489;"Archives of Women's Mental Health";journal;"14341816, 14351102";"Springer";No;No;1,178;Q1;111;155;294;6725;1148;280;3,52;43,39;67,06;3;Austria;Western Europe;"Springer";"1998-2026";"Obstetrics and Gynecology (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +3745;19400158558;"Biophysical Reviews";journal;"18672469, 18672450";"Springer Science and Business Media Deutschland GmbH";No;No;1,178;Q1;77;142;342;14647;1294;237;3,56;103,15;43,91;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2009-2026";"Biophysics (Q1); Molecular Biology (Q2); Structural Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3746;14841;"Cephalalgia";journal;"14682982, 03331024";"SAGE Publications Ltd";No;No;1,178;Q1;153;193;445;7643;2126;402;5,14;39,60;45,34;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1981-2026";"Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1)";"Medicine" +3747;31405;"Journal of Archaeological Science";journal;"03054403, 10959238";"Elsevier Inc.";No;No;1,178;Q1;168;224;333;18792;1134;326;3,18;83,89;42,32;1;United States;Northern America;"Elsevier Inc.";"1974-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +3748;145502;"Journal of Youth Studies";journal;"14699680, 13676261";"Routledge";No;No;1,178;Q1;83;170;239;9475;1110;236;3,70;55,74;61,98;5;United Kingdom;Western Europe;"Routledge";"2003-2026";"Life-span and Life-course Studies (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +3749;3500148011;"Journal of Zhejiang University: Science B";journal;"16731581, 18621783";"Zhejiang University";No;No;1,178;Q1;86;87;266;6980;1292;197;4,68;80,23;46,04;0;China;Asiatic Region;"Zhejiang University";"2005-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Veterinary (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics; Veterinary" +3750;13239;"Molecular Nutrition and Food Research";journal;"16134133, 16134125";"Wiley-VCH Verlag";No;No;1,178;Q1;179;334;734;22074;3862;728;4,80;66,09;51,69;0;Germany;Western Europe;"Wiley-VCH Verlag";"2004-2026";"Biotechnology (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +3751;27778;"Publications of the Astronomical Society of Japan";journal;"2053051X, 00046264";"Oxford University Press";No;No;1,178;Q2;117;109;317;7115;849;317;2,32;65,28;20,88;0;United Kingdom;Western Europe;"Oxford University Press";"1996-2026";"Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +3752;21101039477;"City and Environment Interactions";journal;"25902520";"Elsevier B.V.";Yes;No;1,177;Q1;28;84;102;6639;673;101;5,98;79,04;35,69;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Urban Studies (Q1)";"Environmental Science; Social Sciences" +3753;21100913479;"Frontiers in Nutrition";journal;"2296861X";"Frontiers Media SA";Yes;No;1,177;Q1;117;2542;7316;147489;44467;6863;5,21;58,02;49,85;11;Switzerland;Western Europe;"Frontiers Media SA";"2014-2026";"Food Science (Q1); Nutrition and Dietetics (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Agricultural and Biological Sciences; Medicine; Nursing" +3754;14277;"Health Psychology";journal;"19307810, 02786133";"American Psychological Association";No;No;1,177;Q1;201;93;299;4836;1112;295;2,82;52,00;60,94;2;United States;Northern America;"American Psychological Association";"1982, 1984-2026";"Applied Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +3755;19900191822;"Kinetic and Related Models";journal;"19375093, 19375077";"American Institute of Mathematical Sciences";No;No;1,177;Q1;38;33;104;1330;160;103;1,10;40,30;31,51;0;United States;Northern America;"American Institute of Mathematical Sciences";"2010-2026";"Modeling and Simulation (Q1); Numerical Analysis (Q1)";"Mathematics" +3756;18593;"Microbial Cell Factories";journal;"14752859";"BioMed Central Ltd";Yes;No;1,177;Q1;144;248;864;16081;5359;863;5,99;64,84;42,07;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +3757;29302;"Clinical and Experimental Medicine";journal;"15918890, 15919528";"Springer Science and Business Media Deutschland GmbH";No;No;1,176;Q1;64;364;756;24300;3429;733;4,49;66,76;45,93;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2001-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3758;25675;"Journal of Early Adolescence";journal;"15525449, 02724316";"SAGE Publications Inc.";No;No;1,176;Q1;89;74;133;5112;502;132;3,30;69,08;65,99;1;United States;Northern America;"SAGE Publications Inc.";"1981-2026";"Developmental and Educational Psychology (Q1); Life-span and Life-course Studies (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +3759;21100823995;"Non-coding RNA Research";journal;"24680540";"KeAi Communications Co.";Yes;No;1,176;Q1;37;109;217;9929;1264;215;5,90;91,09;45,84;0;China;Asiatic Region;"KeAi Communications Co.";"2016-2026";"Biochemistry (Q1); Biochemistry (medical) (Q1); Genetics (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3760;19046;"Theoretical and Applied Genetics";journal;"14322242, 00405752";"Springer Science and Business Media Deutschland GmbH";No;No;1,176;Q1;211;310;812;22145;3652;811;4,12;71,44;38,38;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1933, 1941, 1946, 1965, 1968-2026";"Agronomy and Crop Science (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +3761;26176;"Journal of Molecular Endocrinology";journal;"14796813, 09525041";"BioScientifica Ltd.";No;No;1,176;Q2;118;38;126;2286;516;124;3,03;60,16;45,32;0;United Kingdom;Western Europe;"BioScientifica Ltd.";"1988-2026";"Endocrinology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3762;18961;"European Journal of Industrial Relations";journal;"14617129, 09596801";"SAGE Publications Ltd";No;No;1,175;Q1;53;31;68;1858;259;66;2,95;59,94;47,14;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +3763;144636;"Linguistics and Philosophy";journal;"15730549, 01650157";"Springer Science and Business Media B.V.";No;No;1,175;Q1;67;24;103;1945;161;103;1,51;81,04;24,44;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1977-2002, 2005-2026";"Linguistics and Language (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +3764;26799;"Ad Hoc Networks";journal;"15708705, 15708713";"Elsevier B.V.";No;No;1,174;Q1;122;266;562;12810;4041;559;7,34;48,16;28,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2003-2026";"Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Software (Q1)";"Computer Science" +3765;23199;"Annales de l'Institut Fourier";journal;"03730956";"Association des Annales de l'Institut Fourier";No;No;1,174;Q1;59;60;183;2057;160;183;0,84;34,28;10,91;0;France;Western Europe;"Association des Annales de l'Institut Fourier";"1996-2026";"Algebra and Number Theory (Q1); Geometry and Topology (Q1)";"Mathematics" +3766;22504;"Canadian Journal of Cardiology";journal;"19167075, 0828282X";"Elsevier Inc.";No;No;1,174;Q1;124;452;982;13461;2940;686;2,76;29,78;32,56;4;Canada;Northern America;"Elsevier Inc.";"1985-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +3767;12300154704;"CIRP Journal of Manufacturing Science and Technology";journal;"17555817, 18780016";"Elsevier Ltd";No;No;1,174;Q1;77;152;454;6713;3304;452;7,24;44,16;23,28;0;United Kingdom;Western Europe;"Elsevier Ltd";"2008-2026";"Industrial and Manufacturing Engineering (Q1)";"Engineering" +3768;21101266483;"Food Physics";journal;"29500699";"KeAi Publishing Communications Ltd.";Yes;No;1,174;Q1;9;28;25;1812;250;24;10,00;64,71;31,45;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2024-2026";"Engineering (miscellaneous) (Q1); Food Science (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Engineering; Physics and Astronomy" +3769;21100897027;"JCO Clinical Cancer Informatics";journal;"24734276";"Lippincott Williams and Wilkins";No;No;1,174;Q1;46;176;368;4799;1150;331;3,06;27,27;40,12;0;United States;Northern America;"Lippincott Williams and Wilkins";"2017-2026";"Health Informatics (Q1); Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3770;21101347038;"Journal of Operations Intelligence";journal;"30094267";"Scientific Oasis";No;No;1,174;Q1;16;20;25;874;218;25;8,72;43,70;40,48;0;Serbia;Eastern Europe;"Scientific Oasis";"2023-2025";"Applied Mathematics (Q1); Artificial Intelligence (Q1); Management Science and Operations Research (Q1); Statistics, Probability and Uncertainty (Q1)";"Computer Science; Decision Sciences; Mathematics" +3771;15206;"Journal of the American Academy of Orthopaedic Surgeons";journal;"19405480, 1067151X";"Lippincott Williams and Wilkins";No;No;1,174;Q1;153;419;907;13504;3189;856;3,03;32,23;23,27;0;United States;Northern America;"Lippincott Williams and Wilkins";"1994, 1996-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +3772;14134;"Molecular and Cellular Biochemistry";journal;"15734919, 03008177";"Springer";No;No;1,174;Q1;146;411;665;35004;3295;663;5,33;85,17;45,41;0;United States;Northern America;"Springer";"1973-2026";"Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1); Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3773;21101364770;"advances.in/psychology";journal;"2976937X";"Advances.in Ltd";No;No;1,173;Q1;7;11;32;830;88;31;2,75;75,45;60,71;0;United Kingdom;Western Europe;"Advances.in Ltd";"2023-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +3774;5000157803;"Bilingualism";journal;"14691841, 13667289";"Cambridge University Press";No;No;1,173;Q1;94;154;313;11980;921;275;2,92;77,79;62,79;0;United Kingdom;Western Europe;"Cambridge University Press";"1999, 2005-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +3775;21101048255;"Environmental Epigenetics";journal;"20585888";"Oxford University Press";Yes;No;1,173;Q1;35;34;63;2448;262;59;3,72;72,00;57,92;0;United Kingdom;Western Europe;"Oxford University Press";"2015-2026";"Health, Toxicology and Mutagenesis (Q1); Genetics (Q2); Genetics (clinical) (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine" +3776;21100376821;"Extreme Mechanics Letters";journal;"23524316";"Elsevier Ltd";No;No;1,173;Q1;86;136;469;6865;2270;469;4,67;50,48;30,05;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Bioengineering (Q1); Chemical Engineering (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Chemical Engineering; Engineering" +3777;14003;"Palaeontology";journal;"14754983, 00310239";"John Wiley and Sons Inc";No;No;1,173;Q1;82;40;116;4156;377;116;3,05;103,90;31,12;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1979-1985, 1987, 1989-1994, 1996-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Paleontology (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +3778;15185;"Academic Emergency Medicine";journal;"15532712, 10696563";"Wiley-Blackwell";No;No;1,172;Q1;154;228;603;4679;1273;372;1,97;20,52;45,76;0;United States;Northern America;"Wiley-Blackwell";"1994-2026";"Emergency Medicine (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +3779;21101152131;"ASEAN Journal of Science and Engineering";journal;"27766098, 27765938";"Universitas Pendidikan Indonesia";No;No;1,172;Q1;21;25;93;1724;801;93;7,79;68,96;32,46;0;Indonesia;Asiatic Region;"Universitas Pendidikan Indonesia";"2021-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Mechanical Engineering (Q1)";"Chemical Engineering; Chemistry; Engineering" +3780;28747;"BMC Cancer";journal;"14712407";"BioMed Central Ltd";Yes;No;1,172;Q2;180;1902;4127;81967;17143;4113;4,05;43,10;44,41;3;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Cancer Research (Q2); Genetics (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3781;21101018850;"Journal of Translational Autoimmunity";journal;"25899090";"Elsevier B.V.";Yes;No;1,172;Q2;32;72;120;5272;517;117;3,63;73,22;46,23;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +3782;21100367128;"Environmental Nanotechnology, Monitoring and Management";journal;"22151532";"Elsevier B.V.";Yes;No;1,171;Q1;80;79;414;6196;3331;414;7,26;78,43;40,44;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Management, Monitoring, Policy and Law (Q1); Materials Science (miscellaneous) (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)";"Environmental Science; Materials Science" +3783;22104;"Evolution";journal;"15585646, 00143820";"Oxford University Press";No;No;1,171;Q1;234;225;663;17004;1751;649;2,48;75,57;35,87;0;United Kingdom;Western Europe;"Oxford University Press";"1948-1949, 1955, 1963-1964, 1970-1978, 1980-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +3784;22343;"Infection and Immunity";journal;"10985522, 00199567";"American Society for Microbiology";Yes;No;1,171;Q1;257;176;528;12482;1778;527;3,28;70,92;47,26;1;United States;Northern America;"American Society for Microbiology";"1970-2026";"Infectious Diseases (Q1); Parasitology (Q1); Immunology (Q2); Microbiology (Q2)";"Immunology and Microbiology; Medicine" +3785;21101242416;"Journal of Dynamics, Monitoring and Diagnostics";journal;"2833650X, 28315308";"Intelligence Science and Technology Press Inc.";No;No;1,171;Q1;20;27;77;945;509;73;7,31;35,00;25,89;0;United States;Northern America;"Intelligence Science and Technology Press Inc.";"2022-2025";"Mechanical Engineering (Q1)";"Engineering" +3786;17484;"Neurochemical Research";journal;"03643190, 15736903";"Springer";No;No;1,171;Q1;143;349;789;25259;3915;782;4,97;72,38;47,10;0;United States;Northern America;"Springer";"1976-2026";"Biochemistry (Q1); Medicine (miscellaneous) (Q1); Cellular and Molecular Neuroscience (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +3787;21101306833;"SIAM Journal on Mathematics of Data Science";journal;"25770187";"Society for Industrial and Applied Mathematics Publications";No;No;1,171;Q1;33;69;150;3634;464;150;2,62;52,67;19,89;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"2019-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Statistics and Probability (Q1)";"Mathematics" +3788;25932;"Current Opinion in Hematology";journal;"15317048, 10656251";"Lippincott Williams and Wilkins";No;No;1,170;Q1;113;53;132;3152;367;123;2,47;59,47;45,93;0;United States;Northern America;"Lippincott Williams and Wilkins";"1994-2026";"Hematology (Q1)";"Medicine" +3789;5700165201;"Diabetes and Metabolic Syndrome: Clinical Research and Reviews";journal;"18780334, 18714021";"Diabetes India";No;No;1,170;Q1;98;95;537;4589;2380;513;4,64;48,31;39,01;0;United Kingdom;Western Europe;"Diabetes India";"2007-2026";"Internal Medicine (Q1); Medicine (miscellaneous) (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Medicine" +3790;19257;"Journal of Plant Physiology";journal;"01761617, 16181328";"Elsevier GmbH";No;No;1,170;Q1;173;160;496;11923;2632;476;4,99;74,52;45,50;0;Germany;Western Europe;"Elsevier GmbH";"1979, 1984-2026";"Agronomy and Crop Science (Q1); Physiology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +3791;15559;"American Politics Research";journal;"15523373, 1532673X";"SAGE Publications Inc.";No;No;1,169;Q1;71;56;175;2975;433;175;2,38;53,13;29,91;0;United States;Northern America;"SAGE Publications Inc.";"1973-2026";"Sociology and Political Science (Q1)";"Social Sciences" +3792;21101094829;"Brain, Behavior, and Immunity - Health";journal;"26663546";"Elsevier Inc.";Yes;No;1,169;Q1;44;219;447;15346;1797;437;3,85;70,07;50,09;1;United States;Northern America;"Elsevier Inc.";"2020-2026";"Nephrology (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +3793;20500195020;"Gut Pathogens";journal;"17574749";"BioMed Central Ltd";Yes;No;1,169;Q1;65;107;186;7670;929;186;4,70;71,68;45,26;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2009-2026";"Gastroenterology (Q1); Infectious Diseases (Q1); Parasitology (Q1); Virology (Q1); Microbiology (Q2)";"Immunology and Microbiology; Medicine" +3794;100147329;"International Journal of Applied Linguistics";journal;"08026106, 14734192";"Wiley-Blackwell Publishing Ltd";No;No;1,169;Q1;60;283;148;16601;697;145;4,67;58,66;47,22;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1991-2026";"Linguistics and Language (Q1)";"Social Sciences" +3795;22111;"Journal of Autism and Developmental Disorders";journal;"15733432, 01623257";"Springer";No;No;1,169;Q1;234;792;1294;44006;5980;1245;4,18;55,56;66,55;4;United States;Northern America;"Springer";"1979-2026";"Developmental and Educational Psychology (Q1)";"Psychology" +3796;20230;"Journal of General Virology";journal;"00221317, 14652099";"Microbiology Society";No;No;1,169;Q1;200;134;350;7618;1426;350;3,62;56,85;41,47;2;United Kingdom;Western Europe;"Microbiology Society";"1967-2026";"Virology (Q1)";"Immunology and Microbiology" +3797;58130;"Journal of the Energy Institute";journal;"17460220, 17439671";"Elsevier B.V.";No;No;1,169;Q1;83;400;777;24120;5321;777;6,92;60,30;32,61;0;United Kingdom;Western Europe;"Elsevier B.V.";"2004-2026";"Condensed Matter Physics (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Engineering; Physics and Astronomy" +3798;16300154723;"Research Studies in Music Education";journal;"1321103X, 18345530";"SAGE Publications Ltd";No;No;1,169;Q1;40;47;109;2674;344;105;3,25;56,89;55,81;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1993-2026";"Education (Q1); Music (Q1)";"Arts and Humanities; Social Sciences" +3799;21101111783;"Smart Agricultural Technology";journal;"27723755";"Elsevier B.V.";Yes;No;1,169;Q1;52;952;657;49926;6712;655;9,86;52,44;29,03;3;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Artificial Intelligence (Q1); Computer Science (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Computer Science" +3800;19700170417;"Journal of Information Technology and Politics";journal;"19331681, 1933169X";"Routledge";No;No;1,168;Q1;58;105;104;6170;449;92;4,05;58,76;40,24;6;United States;Northern America;"Routledge";"2008-2026";"Computer Science (miscellaneous) (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Computer Science; Social Sciences" +3801;21100215712;"Permanente Journal";journal;"15525767, 15525775";"The Permanente Federation LLC";Yes;No;1,168;Q1;56;64;254;910;860;222;3,87;14,22;50,17;0;United States;Northern America;"The Permanente Federation LLC";"2010, 2012-2025";"Health Policy (Q1); Health (social science) (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +3802;19700175042;"Journal of Inflammation Research";journal;"11787031";"Dove Medical Press Ltd";Yes;No;1,168;Q2;67;1172;1715;66576;8367;1689;4,52;56,81;44,93;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +3803;73771;"Agricultural Economics (United Kingdom)";journal;"15740862, 01695150";"Wiley-Blackwell Publishing Ltd";No;No;1,167;Q1;117;71;173;4879;830;172;4,00;68,72;35,79;10;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1986-2026";"Agronomy and Crop Science (Q1); Economics and Econometrics (Q1)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +3804;21101044948;"Journal of Agriculture and Food Research";journal;"26661543";"Elsevier B.V.";Yes;No;1,167;Q1;66;971;1276;70612;12066;1272;8,99;72,72;39,27;6;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q1); Food Science (Q1)";"Agricultural and Biological Sciences" +3805;13798;"Language, Speech, and Hearing Services in Schools";journal;"01611461, 15589129";"American Speech-Language-Hearing Association (ASHA)";No;No;1,167;Q1;88;81;246;4853;924;235;3,36;59,91;80,36;0;United States;Northern America;"American Speech-Language-Hearing Association (ASHA)";"1984, 1990, 1992-1994, 1996-2026";"Linguistics and Language (Q1); Speech and Hearing (Q1)";"Health Professions; Social Sciences" +3806;19367;"American Journal of Nephrology";journal;"14219670, 02508095";"S. Karger AG";No;No;1,166;Q1;109;115;224;4494;782;212;3,74;39,08;39,84;0;Switzerland;Western Europe;"S. Karger AG";"1981-2026";"Nephrology (Q1)";"Medicine" +3807;20028;"American Journal of Neuroradiology";journal;"1936959X, 01956108";"American Society of Neuroradiology";No;No;1,166;Q1;212;390;898;11060;2969;792;3,12;28,36;31,60;0;United States;Northern America;"American Society of Neuroradiology";"1980-2026";"Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +3808;23090;"Annals of Operations Research";journal;"02545330, 15729338";"Springer Netherlands";No;No;1,166;Q1;143;1008;2032;57828;12959;1986;6,13;57,37;28,95;10;Netherlands;Western Europe;"Springer Netherlands";"1984-2026";"Decision Sciences (miscellaneous) (Q1); Management Science and Operations Research (Q1)";"Decision Sciences" +3809;19700173162;"BioScience Trends";journal;"18817823, 18817815";"International Advancement Center for Medicine and Health Research Co., Ltd.";No;No;1,166;Q1;55;59;179;3940;886;152;4,49;66,78;39,80;0;Japan;Asiatic Region;"International Advancement Center for Medicine and Health Research Co., Ltd.";"2007-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Health (social science) (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Social Sciences" +3810;21100977385;"Chronic Stress";journal;"24705470";"SAGE Publications Inc.";Yes;No;1,166;Q1;34;20;60;882;308;58;2,88;44,10;51,02;0;United States;Northern America;"SAGE Publications Inc.";"2017-2026";"Behavioral Neuroscience (Q1); Clinical Psychology (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)";"Medicine; Neuroscience; Psychology" +3811;21101331989;"Digital Engineering";journal;"2950550X";"Elsevier B.V.";Yes;No;1,166;Q1;9;43;23;2464;186;18;8,09;57,30;21,88;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Information Systems (Q1)";"Computer Science; Engineering" +3812;21100787828;"International Journal of Health Policy and Management";journal;"23225939";"Kerman University of Medical Sciences";Yes;No;1,166;Q1;61;143;770;4231;2023;505;2,21;29,59;56,20;2;Iran;Middle East;"Kerman University of Medical Sciences";"2013-2025";"Health Information Management (Q1); Health Policy (Q1); Health (social science) (Q1); Leadership and Management (Q1); Management, Monitoring, Policy and Law (Q1)";"Environmental Science; Health Professions; Medicine; Nursing; Social Sciences" +3813;19871;"Journal of Athletic Training";journal;"10626050, 1938162X";"National Athletic Trainers' Association Inc.";Yes;No;1,166;Q1;146;85;393;2535;1155;377;2,67;29,82;45,89;1;United States;Northern America;"National Athletic Trainers' Association Inc.";"1996-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)";"Health Professions; Medicine" +3814;12063;"Journal of Meteorological Research";journal;"20956037, 21980934";"Chinese Meteorological Society";No;No;1,166;Q1;56;101;195;7064;689;194;3,45;69,94;39,92;0;China;Asiatic Region;"Chinese Meteorological Society";"2014-2025";"Ocean Engineering (Q1); Atmospheric Science (Q2)";"Earth and Planetary Sciences; Engineering" +3815;30042;"Journal of Personality Assessment";journal;"15327752, 00223891";"Routledge";No;No;1,166;Q1;128;90;218;5643;746;208;3,05;62,70;46,26;0;United Kingdom;Western Europe;"Routledge";"1971-2026";"Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1); Health, Toxicology and Mutagenesis (Q1); Psychiatry and Mental Health (Q1)";"Arts and Humanities; Environmental Science; Medicine; Psychology" +3816;21100840442;"Biomedicines";journal;"22279059";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,165;Q1;108;3096;9523;215639;46921;9348;4,74;69,65;48,07;5;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3817;14872;"Child Psychiatry and Human Development";journal;"15733327, 0009398X";"Kluwer Academic/Human Sciences Press Inc.";No;No;1,165;Q1;87;289;520;17293;1809;519;3,44;59,84;64,78;9;United States;Northern America;"Kluwer Academic/Human Sciences Press Inc.";"1970-2026";"Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +3818;21100407152;"Earth Surface Dynamics";journal;"2196632X, 21966311";"Copernicus Publications";Yes;No;1,165;Q1;54;61;201;5060;696;201;3,14;82,95;23,75;0;Germany;Western Europe;"Copernicus Publications";"2013-2026";"Earth-Surface Processes (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +3819;11700154619;"Journal of Biological Engineering";journal;"17541611";"BioMed Central Ltd";Yes;No;1,165;Q1;67;112;182;7196;1386;181;6,31;64,25;42,36;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2007-2026";"Biomedical Engineering (Q1); Environmental Engineering (Q1); Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering; Environmental Science" +3820;21101184726;"Immunometabolism (United States)";journal;"26330407";"Lippincott Williams and Wilkins";No;No;1,165;Q2;20;23;64;1588;215;62;3,62;69,04;40,58;0;United States;Northern America;"Lippincott Williams and Wilkins";"2019-2025";"Endocrinology, Diabetes and Metabolism (Q2); Immunology and Allergy (Q2)";"Medicine" +3821;18089;"Advances in Engineering Software";journal;"18735339, 09659978";"Elsevier Ltd";No;No;1,164;Q1;113;154;437;8207;3382;437;8,21;53,29;22,05;0;United Kingdom;Western Europe;"Elsevier Ltd";"1982-1983, 1992-2026";"Engineering (miscellaneous) (Q1); Software (Q1)";"Computer Science; Engineering" +3822;28066;"Dili Xuebao/Acta Geographica Sinica";journal;"03755444";"Science Press";No;No;1,164;Q1;94;188;552;10934;2737;552;4,77;58,16;41,27;0;China;Asiatic Region;"Science Press";"1978-2025";"Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +3823;25956;"ESAIM: Mathematical Modelling and Numerical Analysis";journal;"28047214, 28227840";"EDP Sciences";Yes;No;1,164;Q1;88;113;281;4420;522;281;1,62;39,12;26,10;0;France;Western Europe;"EDP Sciences";"1996-2026";"Analysis (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1); Modeling and Simulation (Q1); Numerical Analysis (Q1)";"Mathematics" +3824;21101041614;"Giant";journal;"26665425";"Elsevier B.V.";Yes;No;1,164;Q1;32;34;253;2304;1551;247;6,43;67,76;40,50;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Polymers and Plastics (Q1); Surfaces, Coatings and Films (Q1)";"Chemistry; Materials Science" +3825;21100456854;"Journal of University Teaching and Learning Practice";journal;"14499789";"";Yes;No;1,164;Q1;34;90;275;4954;1767;261;7,67;55,04;61,89;0;Australia;Pacific Region;"";"2016-2025";"Education (Q1)";"Social Sciences" +3826;13356;"Health Economics (United Kingdom)";journal;"10579230, 10991050";"John Wiley and Sons Ltd";No;No;1,163;Q1;136;121;421;6612;1276;418;2,44;54,64;43,96;7;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1992-2026";"Health Policy (Q1)";"Medicine" +3827;15807;"International Review of Administrative Sciences";journal;"00208523, 14617226";"SAGE Publications Ltd";No;No;1,163;Q1;80;40;192;2091;893;187;5,14;52,28;31,82;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1957-2026";"Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +3828;19490;"Journal of Higher Education";journal;"15384640, 00221546";"Taylor and Francis Ltd.";No;No;1,163;Q1;115;103;110;6623;506;108;3,32;64,30;61,47;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1962, 1970-1971, 1975, 1980, 1983, 1986, 1989, 1994, 1996-2026";"Education (Q1)";"Social Sciences" +3829;27660;"Maturitas";journal;"03785122, 18734111";"Elsevier Ireland Ltd";No;No;1,163;Q1;144;235;450;9423;1959;401;4,32;40,10;52,55;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1978-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3830;25026;"European Journal of Orthodontics";journal;"14602210, 01415387";"Oxford University Press";No;No;1,162;Q1;112;109;259;4396;1127;255;4,44;40,33;43,85;0;United Kingdom;Western Europe;"Oxford University Press";"1979-2026";"Orthodontics (Q1)";"Dentistry" +3831;19700170617;"EXCLI Journal";journal;"16112156";"Leibniz Research Centre for Working Environment and Human Factors";Yes;Yes;1,162;Q1;68;106;279;8119;1264;201;4,68;76,59;37,90;1;Germany;Western Europe;"Leibniz Research Centre for Working Environment and Human Factors";"2009-2026";"Animal Science and Zoology (Q1); Drug Discovery (Q1); Pharmacology (Q1); Molecular Medicine (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +3832;21101017158;"International Journal of Innovation Studies";journal;"20962487, 25892975";"KeAi Publishing Communications Ltd.";Yes;Yes;1,162;Q1;30;27;73;2529;680;71;9,98;93,67;26,98;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2017-2026";"Information Systems and Management (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +3833;20369;"Journal of Family Violence";journal;"08857482, 15732851";"Springer New York";No;No;1,162;Q1;103;339;398;20647;1742;394;3,28;60,91;72,32;15;United States;Northern America;"Springer New York";"1986-2026";"Clinical Psychology (Q1); Law (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +3834;82360;"Journal of Nonlinear Science";journal;"09388974, 14321467";"Springer New York";No;No;1,162;Q1;73;119;328;4712;844;328;2,59;39,60;19,56;0;United States;Northern America;"Springer New York";"1991-2026";"Applied Mathematics (Q1); Engineering (miscellaneous) (Q1); Modeling and Simulation (Q1)";"Engineering; Mathematics" +3835;17591;"Law and Society Review";journal;"00239216, 15405893";"Cambridge University Press";No;No;1,162;Q1;97;34;79;3864;233;68;2,46;113,65;56,45;1;United States;Northern America;"Cambridge University Press";"1977-1979, 1983, 1985, 1987, 1995-2026";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +3836;21100889709;"Pain Reports";journal;"24712531";"Lippincott Williams and Wilkins";Yes;No;1,162;Q1;53;120;236;6335;904;230;3,90;52,79;45,25;0;United States;Northern America;"Lippincott Williams and Wilkins";"2016-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +3837;144970;"Science and Education";journal;"09267220, 15731901";"Springer Science and Business Media B.V.";No;No;1,162;Q1;70;230;205;18244;1067;193;5,28;79,32;47,09;2;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1992-2026";"Education (Q1)";"Social Sciences" +3838;6400153171;"ASTIN Bulletin";journal;"05150361, 17831350";"Cambridge University Press";No;No;1,161;Q1;53;34;91;1257;233;91;2,08;36,97;22,62;0;United Kingdom;Western Europe;"Cambridge University Press";"1958-1969, 1971-1975, 1977-1982, 1984-2026";"Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3839;4000148301;"Current Heart Failure Reports";journal;"15469530, 15469549";"Springer";No;No;1,161;Q1;59;44;146;3608;629;146;4,24;82,00;39,92;0;United States;Northern America;"Springer";"2004-2026";"Cardiology and Cardiovascular Medicine (Q1); Emergency Medicine (Q1); Physiology (medical) (Q1)";"Medicine" +3840;25095;"Environmental Toxicology and Pharmacology";journal;"18727077, 13826689";"Elsevier B.V.";No;No;1,161;Q1;117;215;619;14308;3246;617;5,02;66,55;53,72;1;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q1); Toxicology (Q1)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +3841;27545;"European Physical Journal C";journal;"14346052, 14346044";"";Yes;Yes;1,161;Q1;212;1448;3610;101728;15348;3568;4,39;70,25;23,89;1;Germany;Western Europe;"";"1991-1995, 1998-2026";"Engineering (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Engineering; Physics and Astronomy" +3842;21100980170;"Matrix Biology Plus";journal;"25900285";"Elsevier B.V.";Yes;No;1,161;Q1;27;17;58;784;195;57;2,81;46,12;47,12;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Biochemistry (Q1); Biophysics (Q1); Histology (Q1); Cell Biology (Q2); Genetics (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3843;17058;"Nicotine and Tobacco Research";journal;"1469994X, 14622203";"Oxford University Press";No;No;1,161;Q1;136;304;803;11685;2407;723;2,74;38,44;57,73;11;United Kingdom;Western Europe;"Oxford University Press";"1999-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3844;21100977374;"Solar RRL";journal;"2367198X";"Wiley-VCH Verlag";No;No;1,161;Q1;93;352;1432;19988;6801;1424;4,67;56,78;28,91;0;Germany;Western Europe;"Wiley-VCH Verlag";"2017-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering; Materials Science; Physics and Astronomy" +3845;21101044947;"Current Research in Structural Biology";journal;"2665928X";"Elsevier B.V.";Yes;No;1,161;Q2;20;13;92;774;359;91;4,32;59,54;36,54;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Molecular Biology (Q2); Structural Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3846;21101153025;"Animal Microbiome";journal;"25244671";"BioMed Central Ltd";Yes;No;1,160;Q1;38;127;208;9826;1111;207;4,56;77,37;42,39;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Animal Science and Zoology (Q1); Microbiology (medical) (Q1); Veterinary (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Medicine; Veterinary" +3847;4000149001;"Cancer Imaging";journal;"17405025, 14707330";"BioMed Central Ltd";Yes;No;1,160;Q1;73;144;365;5196;1749;364;4,86;36,08;39,42;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2026";"Medicine (miscellaneous) (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)";"Health Professions; Medicine" +3848;16649;"Dentomaxillofacial Radiology";journal;"0250832X, 1476542X";"Oxford University Press";No;No;1,160;Q1;96;80;224;2462;1006;217;4,24;30,78;39,75;0;United Kingdom;Western Europe;"Oxford University Press";"1972-1973, 1976-2026";"Dentistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Otorhinolaryngology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Dentistry; Medicine" +3849;21100203948;"EvoDevo";journal;"20419139";"BioMed Central Ltd";Yes;No;1,160;Q1;48;17;50;1252;191;50;2,69;73,65;39,80;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Developmental Biology (Q2); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +3850;17387;"IEEE Transactions on Reliability";journal;"15581721, 00189529";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,160;Q1;131;295;412;13497;2891;404;7,04;45,75;29,13;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-2026";"Electrical and Electronic Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering" +3851;30086;"Journal of Social and Personal Relationships";journal;"14603608, 02654075";"SAGE Publications Ltd";No;No;1,160;Q1;115;169;522;10306;1835;521;3,14;60,98;65,90;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1984-2026";"Communication (Q1); Developmental and Educational Psychology (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +3852;15634;"Paediatric and Perinatal Epidemiology";journal;"02695022, 13653016";"Wiley-Blackwell Publishing Ltd";No;No;1,160;Q1;107;143;299;3700;672;199;1,83;25,87;63,88;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1987-2026";"Epidemiology (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +3853;18106;"Sociological Review";journal;"1467954X, 00380261";"SAGE Publications Inc.";No;No;1,160;Q1;119;117;224;6784;845;217;3,70;57,98;63,27;7;United Kingdom;Western Europe;"SAGE Publications Inc.";"1908-2026";"Sociology and Political Science (Q1)";"Social Sciences" +3854;29890;"Strength and Conditioning Journal";journal;"15334295, 15241602";"Lippincott Williams and Wilkins";No;No;1,160;Q1;68;94;198;6505;651;194;3,38;69,20;23,59;0;United States;Northern America;"Lippincott Williams and Wilkins";"1996-2025";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)";"Health Professions; Medicine" +3855;26678;"Pituitary";journal;"15737403, 1386341X";"Springer";No;No;1,160;Q2;88;126;285;4621;984;272;2,89;36,67;38,79;0;United States;Northern America;"Springer";"1998-2026";"Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3856;21101118501;"Biomaterials and Biosystems";journal;"26665344";"Elsevier Ltd";Yes;No;1,159;Q1;18;20;57;1795;339;57;8,65;89,75;43,12;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Biochemistry (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Biotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +3857;23161;"Food Quality and Preference";journal;"09503293";"Elsevier Ltd";No;No;1,159;Q1;171;300;722;19748;4830;714;6,84;65,83;57,55;3;United Kingdom;Western Europe;"Elsevier Ltd";"1988-1991, 1993-2026";"Food Science (Q1); Nutrition and Dietetics (Q1)";"Agricultural and Biological Sciences; Nursing" +3858;26150;"Journal of Evidence-Based Dental Practice";journal;"15323382, 15323390";"Elsevier Inc.";No;No;1,159;Q1;50;99;218;3574;632;113;2,28;36,10;54,24;0;United States;Northern America;"Elsevier Inc.";"2001-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +3859;16700154701;"Journal of Prosthodontic Research";journal;"22124632, 18831958";"Japan Prosthodontic Society";No;No;1,159;Q1;66;80;264;3283;1111;233;4,05;41,04;33,75;0;Japan;Asiatic Region;"Japan Prosthodontic Society";"2009-2026";"Dentistry (miscellaneous) (Q1); Oral Surgery (Q1)";"Dentistry" +3860;5700161511;"Social Movement Studies";journal;"14742837, 14742829";"Routledge";No;No;1,159;Q1;57;91;151;4672;607;149;4,15;51,34;47,02;2;United Kingdom;Western Europe;"Routledge";"2010-2026";"Cultural Studies (Q1); Sociology and Political Science (Q1)";"Social Sciences" +3861;21100932744;"Oncology and Therapy";journal;"23661070, 23661089";"";Yes;No;1,159;Q2;24;97;126;3746;398;98;3,14;38,62;46,10;1;United Kingdom;Western Europe;"";"2016-2026";"Oncology (Q2)";"Medicine" +3862;21100899442;"Comparative Migration Studies";journal;"2214594X";"SpringerOpen";Yes;No;1,158;Q1;45;92;136;5441;616;129;3,48;59,14;54,17;7;Switzerland;Western Europe;"SpringerOpen";"2013-2026";"Demography (Q1); Geography, Planning and Development (Q1); Law (Q1); Sociology and Political Science (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Social Sciences" +3863;19900191537;"International Theory";journal;"17529727, 17529719";"Cambridge University Press";Yes;No;1,158;Q1;50;25;65;2660;201;64;3,42;106,40;32,26;0;United Kingdom;Western Europe;"Cambridge University Press";"2009-2026";"Law (Q1); Philosophy (Q1); Political Science and International Relations (Q1)";"Arts and Humanities; Social Sciences" +3864;24152;"Jiegou Huaxue";journal;"02545861";"Fujian Institute of Research of the Structure of Matter";No;No;1,158;Q1;36;0;96;0;548;91;0,00;0,00;0,00;0;China;Asiatic Region;"Fujian Institute of Research of the Structure of Matter";"1996-2022";"Chemistry (miscellaneous) (Q1)";"Chemistry" +3865;24738;"Lab on a Chip";journal;"14730197, 14730189";"Royal Society of Chemistry";No;No;1,158;Q1;265;418;1203;29697;7644;1195;6,22;71,05;35,91;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2001-2026";"Biochemistry (Q1); Bioengineering (Q1); Biomedical Engineering (Q1); Chemistry (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Engineering; Materials Science" +3866;26320;"Sedimentology";journal;"00370746, 13653091";"John Wiley and Sons Inc";No;No;1,158;Q1;138;95;281;10456;964;273;3,46;110,06;31,72;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1962-2026";"Geology (Q1); Stratigraphy (Q1)";"Earth and Planetary Sciences" +3867;21101198622;"Frontiers in Health Services";journal;"28130146";"Frontiers Media SA";Yes;No;1,157;Q1;20;280;459;11930;1443;422;2,54;42,61;60,61;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +3868;11700154648;"Tissue Engineering - Part B: Reviews";journal;"19373368, 19373376";"Mary Ann Liebert Inc.";No;No;1,157;Q1;125;89;166;10068;1106;166;5,61;113,12;47,00;0;United States;Northern America;"Mary Ann Liebert Inc.";"2008-2026";"Biochemistry (Q1); Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +3869;26886;"Bulletin de la Societe Mathematique de France";journal;"00379484, 2102622X";"Societe Mathematique de France";No;No;1,156;Q1;35;15;108;142;102;107;0,50;9,47;20,00;0;France;Western Europe;"Societe Mathematique de France";"1996-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +3870;21100317990;"Cancer Medicine";journal;"20457634";"John Wiley and Sons Inc";Yes;No;1,156;Q1;105;933;3386;46761;12294;3370;3,58;50,12;45,49;1;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2012-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3871;12740;"New Ideas in Psychology";journal;"0732118X";"Elsevier B.V.";No;No;1,156;Q1;60;44;118;3521;515;93;4,81;80,02;28,57;0;United Kingdom;Western Europe;"Elsevier B.V.";"1983-2026";"History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Psychology" +3872;19900194500;"Practical Radiation Oncology";journal;"18798500, 18798519";"Elsevier Inc.";No;No;1,156;Q1;63;184;448;4495;1255;382;2,58;24,43;41,67;0;United States;Northern America;"Elsevier Inc.";"2011-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)";"Medicine" +3873;21100830708;"Toxics";journal;"23056304";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,156;Q1;80;1085;2739;72678;15218;2688;5,39;66,98;47,60;4;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Chemical Health and Safety (Q1); Health, Toxicology and Mutagenesis (Q1); Toxicology (Q1)";"Chemical Engineering; Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +3874;13523;"Early Education and Development";journal;"15566935, 10409289";"Routledge";No;No;1,155;Q1;92;119;281;9528;1066;276;3,31;80,07;71,05;6;United Kingdom;Western Europe;"Routledge";"1989-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +3875;21101181913;"Forestry Research";journal;"27673812";"Maximum Academic Press";Yes;No;1,155;Q1;15;31;86;2086;441;85;4,51;67,29;39,15;0;United States;Northern America;"Maximum Academic Press";"2021-2026";"Forestry (Q1); Horticulture (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +3876;21100791701;"Journal of Pathology Informatics";journal;"22295089, 21533539";"Elsevier B.V.";Yes;No;1,155;Q1;37;71;202;2516;1155;201;6,33;35,44;34,50;0;India;Asiatic Region;"Elsevier B.V.";"2010-2026";"Computer Science Applications (Q1); Health Informatics (Q1); Pathology and Forensic Medicine (Q1)";"Computer Science; Medicine" +3877;25522;"Tsinghua Science and Technology";journal;"10070214, 18787606";"Tsinghua University";Yes;No;1,155;Q1;69;139;306;6106;2078;303;7,06;43,93;32,68;0;China;Asiatic Region;"Tsinghua University";"2003-2025";"Multidisciplinary (Q1)";"Multidisciplinary" +3878;23310;"American Journal of Physiology - Gastrointestinal and Liver Physiology";journal;"01931857, 15221547";"American Physiological Society";No;No;1,154;Q1;203;134;328;7631;1100;314;2,82;56,95;44,13;0;United States;Northern America;"American Physiological Society";"1980-2026";"Gastroenterology (Q1); Physiology (Q1); Physiology (medical) (Q1); Hepatology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3879;16665;"Journal of Biological Rhythms";journal;"15524531, 07487304";"SAGE Publications Inc.";No;No;1,154;Q1;121;51;134;2548;514;115;2,94;49,96;51,87;0;United States;Northern America;"SAGE Publications Inc.";"1986-2026";"Physiology (Q1); Physiology (medical) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3880;21548;"Journal of the European Ceramic Society";journal;"1873619X, 09552219";"Elsevier B.V.";No;No;1,154;Q1;199;771;2443;38950;16681;2439;6,91;50,52;33,11;0;Netherlands;Western Europe;"Elsevier B.V.";"1989-2026";"Ceramics and Composites (Q1); Materials Chemistry (Q1)";"Materials Science" +3881;17732;"Quality of Life Research";journal;"15732649, 09629343";"Springer Netherlands";No;No;1,154;Q1;185;293;841;13862;3191;817;3,65;47,31;54,60;2;Netherlands;Western Europe;"Springer Netherlands";"1992-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3882;16082;"Economic and Industrial Democracy";journal;"0143831X, 14617099";"SAGE Publications Ltd";No;No;1,153;Q1;55;101;200;6614;699;188;3,65;65,49;45,65;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1980-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +3883;26109;"Philosophical Studies";journal;"15730883, 00318116";"Springer Science and Business Media B.V.";No;No;1,153;Q1;100;196;516;9653;873;516;1,49;49,25;19,66;6;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1950-2026";"Philosophy (Q1)";"Arts and Humanities" +3884;22370;"Public Understanding of Science";journal;"09636625, 13616609";"SAGE Publications Ltd";No;No;1,153;Q1;109;74;200;4283;941;193;4,62;57,88;55,92;5;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2026";"Arts and Humanities (miscellaneous) (Q1); Communication (Q1); Developmental and Educational Psychology (Q1)";"Arts and Humanities; Psychology; Social Sciences" +3885;17464;"European Journal of Medicinal Chemistry";journal;"02235234, 17683254";"Elsevier Masson s.r.l.";No;No;1,152;Q1;225;975;2554;69655;17444;2550;6,96;71,44;43,43;0;France;Western Europe;"Elsevier Masson s.r.l.";"1974-2026";"Drug Discovery (Q1); Medicine (miscellaneous) (Q1); Organic Chemistry (Q1); Pharmacology (Q1)";"Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +3886;21101178594;"Health Care Science";journal;"27711749, 27711757";"John Wiley and Sons Inc";Yes;No;1,152;Q1;13;49;99;1730;565;81;6,55;35,31;44,30;1;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Epidemiology (Q1); Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3887;23774;"International Journal of Cardiology";journal;"18741754, 01675273";"Elsevier Ireland Ltd";No;No;1,152;Q1;164;917;2251;19054;5566;1532;2,46;20,78;33,63;3;Ireland;Western Europe;"Elsevier Ireland Ltd";"1981-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +3888;21100810714;"Materials Today Chemistry";journal;"24685194";"Elsevier Ltd";No;No;1,152;Q1;88;789;1793;59349;13203;1788;7,57;75,22;37,22;0;United Kingdom;Western Europe;"Elsevier Ltd";"2016-2026";"Biomaterials (Q1); Catalysis (Q1); Colloid and Surface Chemistry (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Polymers and Plastics (Q1)";"Chemical Engineering; Materials Science" +3889;80321;"Pacific Review";journal;"09512748, 14701332";"Taylor and Francis Ltd.";No;No;1,152;Q1;63;68;138;6184;520;138;4,04;90,94;34,34;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Geography, Planning and Development (Q1); Sociology and Political Science (Q1)";"Social Sciences" +3890;17392;"Soils and Foundations";journal;"00380806";"Elsevier B.V.";Yes;No;1,152;Q1;121;111;288;4946;1284;286;3,80;44,56;23,94;0;Japan;Asiatic Region;"Elsevier B.V.";"1960-1972, 1975-2026";"Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Engineering" +3891;78019;"American Ethnologist";journal;"00940496, 15481425";"Wiley-Blackwell";No;No;1,151;Q1;106;36;160;1583;395;138;2,44;43,97;38,10;0;United States;Northern America;"Wiley-Blackwell";"1974-2026";"Anthropology (Q1)";"Social Sciences" +3892;13174;"BioEssays";journal;"02659247, 15211878";"John Wiley & Sons Inc.";No;No;1,151;Q1;213;136;436;12069;1221;383;2,91;88,74;40,57;0;United States;Northern America;"John Wiley & Sons Inc.";"1984-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology" +3893;28947;"Bulletin of the Seismological Society of America";journal;"00371106, 19433573";"Seismological Society of America";No;No;1,151;Q1;187;186;528;11542;1693;515;3,21;62,05;29,93;3;United States;Northern America;"Seismological Society of America";"1962, 1964, 1967, 1969-1971, 1973-1974, 1981-1982, 1984-2026";"Geochemistry and Petrology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +3894;21100830505;"Communication and Sport";journal;"21674809, 21674795";"SAGE Publications Ltd";No;No;1,151;Q1;43;126;183;7588;962;168;4,61;60,22;41,08;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2015-2026";"Communication (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +3895;21101066249;"IEEE Open Journal of Intelligent Transportation Systems";journal;"26877813";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,151;Q1;28;99;199;6547;1197;192;5,29;66,13;24,23;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Automotive Engineering (Q1); Computer Science Applications (Q1); Mechanical Engineering (Q1)";"Computer Science; Engineering" +3896;5400152645;"Journal of Cancer Survivorship";journal;"19322267, 19322259";"Springer New York";No;No;1,151;Q1;93;381;505;19439;2123;502;4,09;51,02;64,95;9;United States;Northern America;"Springer New York";"2007-2026";"Oncology (nursing) (Q1); Oncology (Q2)";"Medicine; Nursing" +3897;21100232419;"Andrology";journal;"20472927, 20472919";"John Wiley & Sons Inc.";No;No;1,150;Q1;85;253;522;14009;2140;492;4,25;55,37;44,98;0;United States;Northern America;"John Wiley & Sons Inc.";"2013-2026";"Reproductive Medicine (Q1); Urology (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3898;21995;"Contemporary Economic Policy";journal;"14657287, 10743529";"Wiley-Blackwell Publishing Ltd";No;No;1,150;Q1;65;56;106;2707;278;104;1,72;48,34;31,00;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1982-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Public Administration (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +3899;21100898535;"Internet Policy Review";journal;"21976775";"Alexander von Humboldt Institute for Internet and Society";Yes;Yes;1,150;Q1;43;39;117;2290;624;115;5,53;58,72;47,31;2;Germany;Western Europe;"Alexander von Humboldt Institute for Internet and Society";"2012-2026";"Communication (Q1); Computer Networks and Communications (Q1); Management, Monitoring, Policy and Law (Q1)";"Computer Science; Environmental Science; Social Sciences" +3900;21100820602;"Journal of Computational Design and Engineering";journal;"22885048, 22884300";"Oxford University Press";Yes;No;1,150;Q1;61;130;370;6972;2673;370;7,67;53,63;27,22;0;United Kingdom;Western Europe;"Oxford University Press";"2014-2026";"Computational Mathematics (Q1); Computational Mechanics (Q1); Computer Graphics and Computer-Aided Design (Q1); Engineering (miscellaneous) (Q1); Human-Computer Interaction (Q1); Modeling and Simulation (Q1)";"Computer Science; Engineering; Mathematics" +3901;21721;"Journal of Refractive Surgery";journal;"19382391, 1081597X";"Slack Incorporated";No;No;1,150;Q1;117;173;372;4485;1144;315;2,58;25,92;39,35;0;United States;Northern America;"Slack Incorporated";"1995-2026";"Ophthalmology (Q1); Surgery (Q1)";"Medicine" +3902;130162;"Management of Environmental Quality";journal;"17586119, 14777835";"Emerald Publishing";No;No;1,150;Q1;69;150;254;10724;1947;253;7,72;71,49;29,09;0;United Kingdom;Western Europe;"Emerald Publishing";"2003-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Public Health, Environmental and Occupational Health (Q1)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine" +3903;19963;"Molecular Pharmacology";journal;"15210111, 0026895X";"Elsevier Inc.";No;No;1,150;Q1;218;87;191;5052;589;185;2,93;58,07;44,40;2;United States;Northern America;"Elsevier Inc.";"1965-2026";"Pharmacology (Q1); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +3904;21100870687;"Perspectives on Behavior Science";journal;"25208969, 25208977";"Springer International Publishing AG";No;No;1,150;Q1;49;58;111;3312;462;96;2,33;57,10;29,59;0;Switzerland;Western Europe;"Springer International Publishing AG";"2018-2026";"Clinical Psychology (Q1); Experimental and Cognitive Psychology (Q1); Social Psychology (Q1)";"Psychology" +3905;145291;"Business Process Management Journal";journal;"14637154";"Emerald Group Publishing Ltd.";No;No;1,149;Q1;108;223;296;18877;2583;296;9,10;84,65;36,44;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1997-2026";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +3906;21100455625;"Family Medicine and Community Health";journal;"20098774, 23056983";"BMJ Publishing Group";Yes;Yes;1,149;Q1;25;35;104;1293;467;98;4,29;36,94;58,41;1;Ireland;Western Europe;"BMJ Publishing Group";"2013-2026";"Family Practice (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3907;16800154711;"Journal of Infection and Public Health";journal;"18760341, 1876035X";"Elsevier Ltd";Yes;No;1,149;Q1;82;310;802;13545;3676;760;5,00;43,69;44,24;3;United Kingdom;Western Europe;"Elsevier Ltd";"2008-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3908;19700187625;"Journal of Research on Educational Effectiveness";journal;"19345739, 19345747";"Routledge";No;No;1,149;Q1;53;66;106;3966;299;104;2,79;60,09;53,02;1;United States;Northern America;"Routledge";"2008-2026";"Education (Q1)";"Social Sciences" +3909;21100409442;"Liquid Crystals Reviews";journal;"21680418, 21680396";"Taylor and Francis Inc.";No;No;1,149;Q1;25;6;17;1072;84;16;3,82;178,67;34,78;0;United States;Northern America;"Taylor and Francis Inc.";"2013-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +3910;21101167206;"Advances in Simulation";journal;"20590628";"BioMed Central Ltd";Yes;No;1,148;Q1;37;65;123;2848;568;120;3,93;43,82;52,72;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2016-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Cognitive Neuroscience (Q2); Developmental Neuroscience (Q2)";"Agricultural and Biological Sciences; Medicine; Neuroscience; Psychology; Social Sciences" +3911;21100394399;"Orthopaedic Journal of Sports Medicine";journal;"23259671";"SAGE Publications Inc.";Yes;No;1,148;Q1;77;618;1372;21016;4501;1335;3,00;34,01;22,36;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2013-2026";"Orthopedics and Sports Medicine (Q1)";"Medicine" +3912;21101192679;"Bioelectronic Medicine";journal;"23328886";"BioMed Central Ltd";Yes;No;1,147;Q1;31;28;76;2548;487;72;7,04;91,00;34,57;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2014-2016, 2018-2026";"Biomedical Engineering (Q1); Computer Science Applications (Q1); Medicine (miscellaneous) (Q1)";"Computer Science; Engineering; Medicine" +3913;18690;"Psychiatric Quarterly";journal;"00332720, 15736709";"Springer";No;No;1,147;Q1;71;144;163;8561;683;163;2,62;59,45;46,93;0;United States;Northern America;"Springer";"1927-1975, 1977-2026";"Psychiatry and Mental Health (Q1)";"Medicine" +3914;21782;"Psychopharmacology";journal;"00333158, 14322072";"Springer Science and Business Media Deutschland GmbH";No;No;1,147;Q1;224;314;652;22461;2548;646;3,38;71,53;47,71;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1959-2026";"Pharmacology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +3915;12246;"Structural Control and Health Monitoring";journal;"15452263, 15452255";"John Wiley and Sons Ltd";Yes;No;1,147;Q1;109;153;553;7637;3365;552;5,51;49,92;29,35;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2004-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanics of Materials (Q1)";"Engineering" +3916;5800173370;"Cell Division";journal;"17471028";"BioMed Central Ltd";Yes;No;1,146;Q1;58;27;62;1362;311;61;5,29;50,44;36,57;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Biochemistry (Q1); Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3917;29189;"Journal of Aging and Health";journal;"15526887, 08982643";"SAGE Publications Inc.";No;No;1,146;Q1;98;117;251;6551;812;250;2,99;55,99;60,79;3;United States;Northern America;"SAGE Publications Inc.";"1989-2026";"Community and Home Care (Q1); Geriatrics and Gerontology (Q1); Gerontology (Q1); Health (social science) (Q1); Life-span and Life-course Studies (Q1); Sociology and Political Science (Q1)";"Medicine; Nursing; Social Sciences" +3918;18966;"Mutagenesis";journal;"02678357, 14643804";"Oxford University Press";No;No;1,146;Q1;107;31;79;1729;339;78;3,36;55,77;49,82;0;United Kingdom;Western Europe;"Oxford University Press";"1986-2025";"Health, Toxicology and Mutagenesis (Q1); Toxicology (Q1); Genetics (Q2); Genetics (clinical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +3919;15754;"Pediatric Research";journal;"00313998, 15300447";"Springer Nature";No;No;1,146;Q1;182;1207;1788;44785;5718;1358;3,07;37,10;54,27;7;United States;Northern America;"Springer Nature";"1967-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +3920;21100897530;"Ecosystems and People";journal;"26395908, 26395916";"Taylor and Francis Ltd.";Yes;No;1,145;Q1;53;47;165;4095;774;160;4,45;87,13;54,51;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +3921;6200180178;"International Journal of COPD";journal;"11782005, 11769106";"Dove Medical Press Ltd";Yes;No;1,145;Q1;102;327;715;14659;2995;696;4,04;44,83;46,04;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2006-2026";"Health Policy (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine" +3922;17517;"IUBMB Life";journal;"15216543, 15216551";"John Wiley and Sons Inc";No;No;1,145;Q1;144;98;254;6164;1041;249;3,28;62,90;48,19;0;United States;Northern America;"John Wiley and Sons Inc";"1999-2026";"Biochemistry (Q1); Clinical Biochemistry (Q1); Cell Biology (Q2); Genetics (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3923;20636;"Journal of Management and Governance";journal;"1572963X, 13853457";"Springer";No;No;1,145;Q1;71;53;137;4748;987;131;6,70;89,58;49,63;0;United States;Northern America;"Springer";"1997-2026";"Business and International Management (Q1)";"Business, Management and Accounting" +3924;15424;"Measurement: Journal of the International Measurement Confederation";journal;"02632241";"Elsevier B.V.";No;No;1,145;Q1;164;2871;4479;132472;32610;4471;7,21;46,14;28,26;1;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Applied Mathematics (Q1); Condensed Matter Physics (Q1); Education (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1); Statistics and Probability (Q1)";"Engineering; Mathematics; Physics and Astronomy; Social Sciences" +3925;21101039878;"Medicine in Drug Discovery";journal;"25900986";"Elsevier B.V.";Yes;No;1,145;Q1;28;32;83;3204;693;83;8,40;100,13;41,14;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Drug Discovery (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +3926;6500153208;"Philosophical Quarterly";journal;"00318094, 14679213";"Oxford University Press";No;No;1,145;Q1;64;71;173;3200;306;172;1,58;45,07;22,22;0;United Kingdom;Western Europe;"Oxford University Press";"1950-1978, 1980-2026";"Philosophy (Q1)";"Arts and Humanities" +3927;26811;"Computer Networks";journal;"13891286";"Elsevier B.V.";No;No;1,144;Q1;177;715;1539;38575;9806;1509;5,92;53,95;28,06;0;Netherlands;Western Europe;"Elsevier B.V.";"1978, 1980, 1990, 1996-2026";"Computer Networks and Communications (Q1)";"Computer Science" +3928;21101060498;"Current Research in Microbial Sciences";journal;"26665174";"Elsevier B.V.";Yes;No;1,144;Q1;35;186;214;14204;1493;210;5,76;76,37;46,87;1;United Kingdom;Western Europe;"Elsevier B.V.";"2020-2026";"Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (medical) (Q1); Microbiology (Q2)";"Immunology and Microbiology; Medicine" +3929;21100216308;"GCB Bioenergy";journal;"17571693, 17571707";"Wiley-VCH Verlag";Yes;No;1,144;Q1;96;82;250;6613;1380;244;5,36;80,65;36,89;1;Germany;Western Europe;"Wiley-VCH Verlag";"2009-2026";"Agronomy and Crop Science (Q1); Forestry (Q1); Waste Management and Disposal (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Agricultural and Biological Sciences; Energy; Environmental Science" +3930;25136;"German Politics";journal;"09644008, 17438993";"Routledge";No;No;1,144;Q1;29;60;100;3931;360;94;3,91;65,52;38,24;4;United Kingdom;Western Europe;"Routledge";"1992-1995, 2010-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +3931;16259;"Journal of Composites for Construction";journal;"10900268, 19435614";"American Society of Civil Engineers (ASCE)";No;No;1,144;Q1;145;71;281;3339;1188;279;4,15;47,03;20,97;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1997-2026";"Building and Construction (Q1); Ceramics and Composites (Q1); Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +3932;23892;"Journal of Evolution Equations";journal;"14243199, 14243202";"Springer International Publishing";No;No;1,144;Q1;47;112;269;4044;394;269;1,55;36,11;21,76;0;Switzerland;Western Europe;"Springer International Publishing";"2001-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +3933;25468;"Public Personnel Management";journal;"00910260, 19457421";"SAGE Publications Inc.";No;No;1,144;Q1;60;29;76;2520;416;74;4,13;86,90;45,83;0;United States;Northern America;"SAGE Publications Inc.";"1973, 1981-1984, 1989, 1993, 1995-2026";"Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Public Administration (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Social Sciences" +3934;20927;"Yale Journal of Biology and Medicine";journal;"15514056, 00440086";"Yale Journal of Biology and Medicine Inc.";Yes;Yes;1,144;Q1;79;47;152;2558;764;138;4,75;54,43;46,56;0;United States;Northern America;"Yale Journal of Biology and Medicine Inc.";"1945-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3935;14550;"Differentiation";journal;"14320436, 03014681";"Elsevier Ltd";No;No;1,144;Q2;111;52;111;3935;423;107;3,68;75,67;50,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"1973-2026";"Cancer Research (Q2); Cell Biology (Q2); Developmental Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +3936;16759;"Advances in Clinical Chemistry";book series;"00652423, 21629471";"Academic Press Inc.";Yes;No;1,143;Q1;73;46;119;7996;569;12;4,54;173,83;36,36;0;United States;Northern America;"Academic Press Inc.";"1958-1961, 1963-1964, 1966-1967, 1969-1973, 1975-1978, 1980-1981, 1983, 1985-1987, 1989-1990, 1992-1994, 1996, 1998-1999, 2001, 2003-2026";"Chemistry (miscellaneous) (Q1); Clinical Biochemistry (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +3937;21101079225;"Cleaner Environmental Systems";journal;"26667894";"Elsevier Ltd";Yes;No;1,143;Q1;32;131;172;9184;1174;172;6,28;70,11;37,69;4;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Environmental Science" +3938;21101184722;"Computational Psychiatry";journal;"23796227";"Ubiquity Press";Yes;No;1,143;Q1;13;15;29;961;85;29;3,00;64,07;42,03;0;United Kingdom;Western Europe;"Ubiquity Press";"2019-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +3939;17700156219;"Gut and Liver";journal;"19762283, 20051212";"Editorial Office of Gut and Liver";Yes;No;1,143;Q1;70;102;349;3700;1186;282;3,11;36,27;35,49;0;South Korea;Asiatic Region;"Editorial Office of Gut and Liver";"2009-2026";"Gastroenterology (Q1); Hepatology (Q2)";"Medicine" +3940;21101329156;"Informatics and Health";journal;"29499534";"KeAi Communications Co.";Yes;No;1,143;Q1;7;16;13;783;135;13;10,38;48,94;26,00;0;China;Asiatic Region;"KeAi Communications Co.";"2024-2026";"Health Informatics (Q1); Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3941;15968;"Journal of Medical Virology";journal;"10969071, 01466615";"John Wiley and Sons Inc";No;No;1,143;Q1;164;604;2702;25096;9248;2296;3,38;41,55;47,77;1;United States;Northern America;"John Wiley and Sons Inc";"1977-2026";"Infectious Diseases (Q1); Virology (Q1)";"Immunology and Microbiology; Medicine" +3942;21100338508;"IEEE Transactions on Emerging Topics in Computing";journal;"21686750";"IEEE Computer Society";No;No;1,142;Q1;75;134;340;5246;1858;330;4,61;39,15;22,50;0;United States;Northern America;"IEEE Computer Society";"2013-2026";"Computer Science Applications (Q1); Computer Science (miscellaneous) (Q1); Human-Computer Interaction (Q1); Information Systems (Q1)";"Computer Science" +3943;21101051831;"Intelligent Systems with Applications";journal;"26673053";"Elsevier B.V.";Yes;No;1,142;Q1;45;147;384;8556;3306;382;8,54;58,20;26,01;1;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Computer Science (miscellaneous) (Q1); Computer Vision and Pattern Recognition (Q1); Signal Processing (Q1)";"Computer Science" +3944;21100907127;"Journal of Urban Management";journal;"25890360, 22265856";"Elsevier B.V.";Yes;No;1,142;Q1;44;125;136;7710;884;124;6,25;61,68;37,76;2;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Geography, Planning and Development (Q1); Public Administration (Q1); Urban Studies (Q1)";"Social Sciences" +3945;130083;"Reproductive Medicine and Biology";journal;"14470578, 14455781";"John Wiley and Sons Ltd";Yes;No;1,142;Q1;48;83;193;5041;857;190;4,18;60,73;38,94;0;Japan;Asiatic Region;"John Wiley and Sons Ltd";"2002-2026";"Reproductive Medicine (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +3946;15852;"Journal of Cellular and Molecular Medicine";journal;"15821838, 15824934";"John Wiley and Sons Inc";Yes;No;1,142;Q2;172;641;1701;32891;7676;1682;4,40;51,31;43,82;0;United States;Northern America;"John Wiley and Sons Inc";"2000-2026";"Cell Biology (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology" +3947;21309;"AIDS";journal;"14735571, 02699370";"Lippincott Williams and Wilkins";No;No;1,141;Q1;237;347;945;10664;2045;716;2,04;30,73;54,09;0;United States;Northern America;"Lippincott Williams and Wilkins";"1987-2026";"Infectious Diseases (Q1); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +3948;19633;"BMC Microbiology";journal;"14712180";"BioMed Central Ltd";Yes;No;1,141;Q1;157;806;1252;45333;7104;1250;5,53;56,24;45,03;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Microbiology (medical) (Q1); Microbiology (Q2)";"Immunology and Microbiology; Medicine" +3949;4700152301;"Journal of Field Robotics";journal;"15564967, 15564959";"John Wiley & Sons Inc.";No;No;1,141;Q1;125;297;320;15532;2604;319;7,44;52,30;23,49;1;United States;Northern America;"John Wiley & Sons Inc.";"2006-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1)";"Computer Science; Engineering" +3950;17267;"Magnetic Resonance in Medicine";journal;"07403194, 15222594";"John Wiley and Sons Inc";No;No;1,141;Q1;262;401;1190;19182;4035;1166;3,38;47,84;29,59;0;United States;Northern America;"John Wiley and Sons Inc";"1984-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +3951;25205;"Papers in Regional Science";journal;"14355957, 10568190";"Elsevier B.V.";Yes;No;1,141;Q1;85;51;142;3757;596;138;4,01;73,67;30,08;2;Netherlands;Western Europe;"Elsevier B.V.";"1955-2026";"Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Environmental Science; Social Sciences" +3952;23715;"Science Technology and Human Values";journal;"01622439, 15528251";"SAGE Publications Inc.";No;No;1,141;Q1;99;88;185;5911;722;169;2,88;67,17;60,95;0;United States;Northern America;"SAGE Publications Inc.";"1976-2026";"Anthropology (Q1); Economics and Econometrics (Q1); Engineering (miscellaneous) (Q1); Human-Computer Interaction (Q1); Philosophy (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Computer Science; Economics, Econometrics and Finance; Engineering; Social Sciences" +3953;17700156714;"Pharmaceuticals";journal;"14248247";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,140;Q1;120;1890;5016;148948;31615;4957;6,16;78,81;49,23;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2004, 2009-2026";"Drug Discovery (Q1); Pharmaceutical Science (Q1); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +3954;29434;"American Journal of Education";journal;"15496511, 01956744";"University of Chicago Press";No;No;1,139;Q1;74;20;64;1367;174;63;2,09;68,35;68,97;0;United States;Northern America;"University of Chicago Press";"1995-2001, 2003-2026";"Education (Q1)";"Social Sciences" +3955;8300153135;"Global Journal of Flexible Systems Management";journal;"09722696, 09740198";"Springer";No;No;1,139;Q1;56;56;128;6341;1106;128;8,88;113,23;23,95;0;India;Asiatic Region;"Springer";"2000-2026";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Management Information Systems (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +3956;12100156819;"Green Chemistry Letters and Reviews";journal;"17517192, 17518253";"Taylor and Francis Ltd.";Yes;No;1,139;Q1;64;87;203;7648;1580;160;7,86;87,91;38,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q2)";"Chemistry; Environmental Science" +3957;17499;"Journal of Empirical Finance";journal;"09275398";"Elsevier B.V.";No;No;1,139;Q1;101;66;244;3411;700;243;3,05;51,68;32,77;1;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +3958;21101091765;"Biomaterials Advances";journal;"27729508";"Elsevier Ltd";No;No;1,138;Q1;212;311;1140;22449;8181;1134;6,85;72,18;43,14;0;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1)";"Chemical Engineering; Engineering; Materials Science" +3959;21100203121;"Clinical and Translational Gastroenterology";journal;"2155384X";"Lippincott Williams and Wilkins";Yes;No;1,138;Q1;69;143;366;4480;1201;346;3,14;31,33;39,72;0;United States;Northern America;"Lippincott Williams and Wilkins";"2010-2026";"Gastroenterology (Q1)";"Medicine" +3960;11700154353;"European Journal of Physical and Rehabilitation Medicine";journal;"19739095, 19739087";"Edizioni Minerva Medica";Yes;No;1,138;Q1;85;86;313;3376;1292;286;3,92;39,26;49,82;0;Italy;Western Europe;"Edizioni Minerva Medica";"2008-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1)";"Health Professions; Medicine" +3961;100147033;"Journal of Competition Law and Economics";journal;"17446422, 17446414";"Oxford University Press";No;No;1,138;Q1;37;24;69;2956;176;68;1,98;123,17;17,78;1;United Kingdom;Western Europe;"Oxford University Press";"2005-2025";"Economics and Econometrics (Q1); Law (Q1)";"Economics, Econometrics and Finance; Social Sciences" +3962;21100332453;"Vertebrate Zoology";journal;"18645755";"Senckenbergische Naturforschende Gesellschaft";Yes;Yes;1,138;Q1;24;20;112;1805;364;112;3,55;90,25;23,21;0;Germany;Western Europe;"Senckenbergische Naturforschende Gesellschaft";"2011-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +3963;12125;"Behaviour and Information Technology";journal;"13623001, 0144929X";"Taylor and Francis Ltd.";No;No;1,137;Q1;111;415;614;34612;4088;608;6,17;83,40;42,70;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Human-Computer Interaction (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Computer Science; Psychology; Social Sciences" +3964;21101064807;"Cleaner and Responsible Consumption";journal;"26667843";"Elsevier B.V.";Yes;No;1,137;Q1;33;120;193;9117;1494;190;8,26;75,98;42,53;0;United Kingdom;Western Europe;"Elsevier B.V.";"2020-2026";"Economics and Econometrics (Q1); Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Social Sciences (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Economics, Econometrics and Finance; Energy; Environmental Science; Social Sciences" +3965;19700175906;"Diabetes Therapy";journal;"18696961, 18696953";"";Yes;No;1,137;Q1;66;143;447;5972;1674;410;4,05;41,76;40,73;2;United Kingdom;Western Europe;"";"2010-2026";"Internal Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Medicine" +3966;5800207375;"European Journal of Sport Science";journal;"17461391, 15367290";"John Wiley and Sons Inc";Yes;No;1,137;Q1;94;208;624;10078;2349;622;3,43;48,45;28,64;1;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2001-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)";"Health Professions; Medicine" +3967;21129;"European Spine Journal";journal;"09406719, 14320932";"Springer Science and Business Media Deutschland GmbH";No;No;1,137;Q1;182;1023;1428;25655;4853;1298;3,22;25,08;24,06;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1992-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +3968;17600154902;"Japanese Journal of Radiology";journal;"1867108X, 18671071";"Springer";No;No;1,137;Q1;57;226;452;7844;2034;406;4,88;34,71;26,89;0;Japan;Asiatic Region;"Springer";"2009-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +3969;130081;"Leadership and Organization Development Journal";journal;"01437739";"Emerald Group Publishing Ltd.";No;No;1,137;Q1;96;82;225;6100;1360;225;5,42;74,39;45,02;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1980-2026";"Business, Management and Accounting (miscellaneous) (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +3970;19400158544;"Probiotics and Antimicrobial Proteins";journal;"18671314, 18671306";"Springer";No;No;1,137;Q2;73;684;375;57363;2718;375;7,17;83,86;46,77;0;United States;Northern America;"Springer";"2009-2026";"Microbiology (Q2); Molecular Biology (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +3971;21100435208;"Financial Accountability and Management";journal;"14680408, 02674424";"John Wiley & Sons Inc.";No;No;1,136;Q1;58;51;99;3866;628;97;4,33;75,80;53,28;0;United States;Northern America;"John Wiley & Sons Inc.";"1985-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +3972;21101045217;"Geochronology";journal;"26283697, 26283719";"Copernicus Publications";Yes;No;1,136;Q1;24;34;109;2043;301;109;2,93;60,09;20,69;0;Germany;Western Europe;"Copernicus Publications";"2019-2026";"Geology (Q1); Paleontology (Q1); Stratigraphy (Q1)";"Earth and Planetary Sciences" +3973;17857;"Journal of the Medical Library Association";journal;"15365050, 15589439";"Medical Library Association";Yes;Yes;1,136;Q1;82;55;162;1385;838;139;1,51;25,18;76,24;0;United States;Northern America;"Medical Library Association";"1999, 2001-2026";"Library and Information Sciences (Q1); Medicine (miscellaneous) (Q1); Health Informatics (Q2)";"Medicine; Social Sciences" +3974;20687;"Journalism and Mass Communication Quarterly";journal;"2161430X, 10776990";"SAGE Publications Inc.";No;No;1,136;Q1;109;90;173;6333;671;164;3,24;70,37;51,67;1;United States;Northern America;"SAGE Publications Inc.";"1955-1974, 1976-1986, 1988-1990, 1992-1993, 1995-2026";"Communication (Q1)";"Social Sciences" +3975;16658;"Preslia";journal;"00327786, 2570950X";"Czech Botanical Society";No;No;1,136;Q1;61;16;42;1823;167;42;3,46;113,94;31,76;0;Czech Republic;Eastern Europe;"Czech Botanical Society";"1979, 1982-2025";"Ecology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +3976;4100151501;"Surgery for Obesity and Related Diseases";journal;"15507289, 18787533";"Elsevier Inc.";No;No;1,136;Q1;119;236;704;5967;1648;453;2,06;25,28;40,41;2;United States;Northern America;"Elsevier Inc.";"2005-2026";"Surgery (Q1)";"Medicine" +3977;28471;"Ageing and Society";journal;"0144686X, 14691779";"Cambridge University Press";No;No;1,135;Q1;109;89;445;5917;1699;445;3,80;66,48;72,17;0;United Kingdom;Western Europe;"Cambridge University Press";"1981-2026";"Arts and Humanities (miscellaneous) (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Social Psychology (Q1); Geriatrics and Gerontology (Q2)";"Arts and Humanities; Medicine; Psychology; Social Sciences" +3978;13487;"Depression and Anxiety";journal;"10914269, 15206394";"John Wiley and Sons Inc";No;No;1,135;Q1;180;156;234;9492;842;233;2,63;60,85;48,47;0;United States;Northern America;"John Wiley and Sons Inc";"1993, 1996-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +3979;5700165635;"Journal of Elections, Public Opinion and Parties";journal;"17457289, 17457297";"Routledge";No;No;1,135;Q1;42;90;152;4713;345;120;2,20;52,37;27,33;2;United Kingdom;Western Europe;"Routledge";"2009-2026";"Sociology and Political Science (Q1)";"Social Sciences" +3980;14859;"Biophysical Journal";journal;"15420086, 00063495";"Elsevier Inc.";No;No;1,134;Q1;308;454;1199;27030;3214;1094;2,68;59,54;31,57;0;United States;Northern America;"Elsevier Inc.";"1960-2026";"Biophysics (Q1)";"Biochemistry, Genetics and Molecular Biology" +3981;21101092534;"Data Science and Management";journal;"26667649";"KeAi Communications Co.";Yes;Yes;1,134;Q1;27;45;80;2666;734;78;9,66;59,24;25,90;2;China;Asiatic Region;"KeAi Communications Co.";"2021-2025";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1); Management Science and Operations Research (Q1)";"Business, Management and Accounting; Computer Science; Decision Sciences" +3982;20733;"European Journal of Public Health";journal;"1464360X, 11011262";"Oxford University Press";Yes;No;1,134;Q1;123;231;589;6503;1847;533;3,01;28,15;56,55;9;United Kingdom;Western Europe;"Oxford University Press";"1991-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +3983;21101248991;"Hybrid Advances";journal;"2773207X";"Elsevier B.V.";Yes;No;1,134;Q1;32;224;322;17845;3336;320;10,57;79,67;25,59;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Ceramics and Composites (Q1); Materials Chemistry (Q1); Mechanics of Materials (Q1); Polymers and Plastics (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)";"Engineering; Materials Science; Physics and Astronomy" +3984;12960;"International Journal of Human Computer Studies";journal;"10959300, 10715819";"Academic Press";No;No;1,134;Q1;162;190;346;16567;2867;342;7,21;87,19;37,60;1;United States;Northern America;"Academic Press";"1994-2026";"Education (Q1); Engineering (miscellaneous) (Q1); Hardware and Architecture (Q1); Human Factors and Ergonomics (Q1); Human-Computer Interaction (Q1); Software (Q1)";"Computer Science; Engineering; Social Sciences" +3985;21101321303;"Journal of English-Medium Instruction";journal;"26668890, 26668882";"John Benjamins Publishing Company";No;No;1,134;Q1;9;12;33;587;183;30;2,58;48,92;65,38;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2022-2025";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +3986;15771;"Muscle and Nerve";journal;"10974598, 0148639X";"John Wiley & Sons Inc.";No;No;1,134;Q1;178;277;651;9240;1820;520;2,78;33,36;47,36;0;United States;Northern America;"John Wiley & Sons Inc.";"1978-2026";"Neurology (clinical) (Q1); Physiology (Q1); Physiology (medical) (Q1); Cellular and Molecular Neuroscience (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +3987;21101178123;"ZFW - Advances in Economic Geography";journal;"27481956, 27481964";"Walter de Gruyter GmbH";No;No;1,134;Q1;24;17;49;1190;215;47;4,00;70,00;21,95;1;Germany;Western Europe;"Walter de Gruyter GmbH";"2022-2025";"Economics and Econometrics (Q1); Geography, Planning and Development (Q1)";"Economics, Econometrics and Finance; Social Sciences" +3988;21101227993;"Acta Materia Medica";journal;"27377946";"Compuscript Ltd";Yes;Yes;1,133;Q1;23;33;102;3102;627;97;6,34;94,00;42,58;0;Ireland;Western Europe;"Compuscript Ltd";"2022-2025";"Complementary and Manual Therapy (Q1); Inorganic Chemistry (Q1); Occupational Therapy (Q1); Pathophysiology (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Health Professions; Nursing; Pharmacology, Toxicology and Pharmaceutics" +3989;27479;"Annals of Family Medicine";journal;"15441717, 15441709";"Annals of Family Medicine, Inc";Yes;No;1,133;Q1;144;131;561;2630;1288;456;2,51;20,08;52,33;0;United States;Northern America;"Annals of Family Medicine, Inc";"2003-2026";"Family Practice (Q1)";"Medicine" +3990;21101076323;"Digital Geography and Society";journal;"26663783";"Elsevier Ltd";Yes;No;1,133;Q1;17;40;76;2476;376;73;4,16;61,90;55,68;1;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Computer Science Applications (Q1); Development (Q1); Geography, Planning and Development (Q1); Information Systems (Q1); Social Sciences (miscellaneous) (Q1)";"Computer Science; Social Sciences" +3991;20598;"English for Specific Purposes";journal;"08894906";"Elsevier B.V.";No;No;1,133;Q1;103;34;129;1693;632;125;4,78;49,79;62,71;0;United Kingdom;Western Europe;"Elsevier B.V.";"1980-1981, 1986-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +3992;9000153105;"Nonlinear Analysis: Hybrid Systems";journal;"1751570X";"Elsevier B.V.";No;No;1,133;Q1;74;60;266;2397;1136;265;4,31;39,95;28,42;0;Netherlands;Western Europe;"Elsevier B.V.";"2007-2026";"Analysis (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1)";"Computer Science; Engineering; Mathematics" +3993;19834;"Sleep Medicine";journal;"18785506, 13899457";"Elsevier B.V.";No;No;1,133;Q1;167;513;1178;24232;4639;1096;3,78;47,24;47,49;1;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +3994;12070;"Attachment and Human Development";journal;"14616734, 14692988";"Routledge";No;No;1,132;Q1;92;48;108;2879;405;101;2,34;59,98;60,42;0;United States;Northern America;"Routledge";"1999-2026";"Developmental and Educational Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +3995;28810;"Biomass and Bioenergy";journal;"09619534, 18732909";"Elsevier Ltd";No;No;1,132;Q1;222;763;888;58881;6938;887;7,63;77,17;33,71;4;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Agronomy and Crop Science (Q1); Forestry (Q1); Waste Management and Disposal (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Agricultural and Biological Sciences; Energy; Environmental Science" +3996;19700175787;"Psychology Research and Behavior Management";journal;"11791578";"Dove Medical Press Ltd";Yes;No;1,132;Q1;65;179;995;10447;4994;970;4,93;58,36;49,15;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2008-2026";"Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Psychology" +3997;29319;"Current Oncology";journal;"17187729";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,132;Q2;84;712;2144;36764;8352;2087;3,64;51,63;47,62;2;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"1998-2026";"Oncology (Q2)";"Medicine" +3998;36099;"Archives of Pathology and Laboratory Medicine";journal;"15432165, 00039985";"College of American Pathologists";No;No;1,131;Q1;149;189;538;5338;1743;477;3,07;28,24;47,50;0;United States;Northern America;"College of American Pathologists";"1973-2026";"Medical Laboratory Technology (Q1); Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1)";"Health Professions; Medicine" +3999;21100324971;"Biotechnology Reports";journal;"2215017X";"Elsevier B.V.";Yes;No;1,131;Q1;84;69;159;5125;1295;158;8,76;74,28;45,28;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +4000;29144;"Cell Stress and Chaperones";journal;"14661268, 13558145";"Elsevier B.V.";Yes;No;1,131;Q1;108;46;194;3191;786;179;4,19;69,37;46,15;0;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Biochemistry (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4001;64461;"European Journal of Political Economy";journal;"01762680";"Elsevier B.V.";No;No;1,131;Q1;108;127;322;8255;1097;318;3,42;65,00;25,00;13;Netherlands;Western Europe;"Elsevier B.V.";"1985-2026";"Economics and Econometrics (Q1); Political Science and International Relations (Q1)";"Economics, Econometrics and Finance; Social Sciences" +4002;21101312378;"NPJ Viruses";journal;"29481767";"Springer Nature";Yes;No;1,131;Q1;11;84;77;5483;258;74;3,35;65,27;41,03;0;United Kingdom;Western Europe;"Springer Nature";"2023-2026";"Immunology and Microbiology (miscellaneous) (Q1); Microbiology (Q2); Virology (Q2)";"Immunology and Microbiology" +4003;28112;"BMC Palliative Care";journal;"1472684X";"BioMed Central Ltd";Yes;No;1,130;Q1;69;303;701;14392;2810;693;3,71;47,50;62,27;4;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +4004;21100935976;"Cognitive Research: Principles and Implications";journal;"23657464";"SpringerOpen";Yes;No;1,130;Q1;51;83;245;5565;1005;244;4,04;67,05;50,16;0;United Kingdom;Western Europe;"SpringerOpen";"2016-2026";"Experimental and Cognitive Psychology (Q1); Cognitive Neuroscience (Q2)";"Neuroscience; Psychology" +4005;11500153401;"Cornell Hospitality Quarterly";journal;"19389663, 19389655";"SAGE Publications Inc.";No;No;1,130;Q1;100;41;123;2934;665;111;5,50;71,56;37,27;0;United States;Northern America;"SAGE Publications Inc.";"2008-2026";"Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +4006;21101090589;"Experimental and Computational Multiphase Flow";journal;"26618877, 26618869";"Tsinghua University Press";No;No;1,130;Q1;26;39;99;1741;597;97;7,79;44,64;18,12;0;China;Asiatic Region;"Tsinghua University Press";"2019-2026";"Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1); Nuclear and High Energy Physics (Q1); Nuclear Energy and Engineering (Q1)";"Chemical Engineering; Energy; Engineering; Physics and Astronomy" +4007;29164;"International Journal of Geriatric Psychiatry";journal;"10991166, 08856230";"John Wiley and Sons Ltd";No;No;1,130;Q1;162;136;542;6009;1944;490;3,08;44,18;55,19;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1986-2026";"Psychiatry and Mental Health (Q1); Geriatrics and Gerontology (Q2)";"Medicine" +4008;20586;"Journal of Food Engineering";journal;"02608774";"Elsevier Ltd";No;No;1,130;Q1;237;284;928;13837;6861;919;7,07;48,72;38,83;0;United Kingdom;Western Europe;"Elsevier Ltd";"1982-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +4009;15800154704;"Cancer Prevention Research";journal;"19406207, 19406215";"American Association for Cancer Research Inc.";No;No;1,129;Q1;120;74;237;2997;682;227;3,01;40,50;53,35;0;United States;Northern America;"American Association for Cancer Research Inc.";"2008-2026";"Medicine (miscellaneous) (Q1); Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4010;19727;"Educational Policy";journal;"08959048, 15523896";"SAGE Publications Inc.";No;No;1,129;Q1;72;59;193;4046;634;192;3,13;68,58;60,81;5;United States;Northern America;"SAGE Publications Inc.";"1987-2026";"Education (Q1)";"Social Sciences" +4011;17277;"IEEE Journal of Oceanic Engineering";journal;"15581691, 03649059";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,129;Q1;122;222;293;10320;1981;288;6,65;46,49;25,17;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1976-2026";"Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1); Ocean Engineering (Q1)";"Engineering" +4012;21100199827;"International Journal of Tryptophan Research";journal;"11786469";"SAGE Publications Ltd";Yes;No;1,129;Q1;38;7;42;440;170;40;3,91;62,86;44,74;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Biochemistry (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4013;28122;"Perspectives on Sexual and Reproductive Health";journal;"15386341, 19312393";"John Wiley and Sons Inc";No;No;1,129;Q1;105;52;80;2379;262;74;2,63;45,75;78,46;2;United States;Northern America;"John Wiley and Sons Inc";"1996-2026";"Obstetrics and Gynecology (Q1); Public Health, Environmental and Occupational Health (Q1); Sociology and Political Science (Q1)";"Medicine; Social Sciences" +4014;21100209317;"ACS Macro Letters";journal;"21611653";"American Chemical Society";No;No;1,128;Q1;136;266;723;12402;3600;720;4,82;46,62;30,50;0;United States;Northern America;"American Chemical Society";"2012-2026";"Inorganic Chemistry (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)";"Chemistry; Materials Science" +4015;17636;"Animal Health Research Reviews";journal;"14662523, 14752654";"Cambridge University Press";No;No;1,128;Q1;76;6;20;731;142;20;2,56;121,83;42,50;0;United Kingdom;Western Europe;"Cambridge University Press";"1996, 2000-2023, 2025-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +4016;21100901149;"Current Clinical Microbiology Reports";journal;"21965471";"Springer Science and Business Media Deutschland GmbH";No;No;1,128;Q1;36;27;62;2660;307;62;5,00;98,52;43,56;1;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Infectious Diseases (Q1); Microbiology (medical) (Q1)";"Medicine" +4017;23460;"Journal of General Physiology";journal;"00221295, 15407748";"Rockefeller University Press";No;No;1,128;Q2;145;73;270;657;620;214;2,23;9,00;36,89;0;United States;Northern America;"Rockefeller University Press";"1918-1940, 1942-2026";"Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4018;12000154320;"Addiction Science and Clinical Practice";journal;"19400632, 19400640";"BioMed Central Ltd";Yes;No;1,127;Q1;54;97;241;4387;689;233;2,60;45,23;58,76;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2007-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +4019;21100464683;"BMC Psychology";journal;"20507283";"BioMed Central Ltd";Yes;No;1,127;Q1;61;1385;1516;90199;7380;1514;5,01;65,13;52,63;5;United Kingdom;Western Europe;"BioMed Central Ltd";"2013-2026";"Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Psychology" +4020;19700183007;"Breathe";journal;"18106838, 20734735";"European Respiratory Society";Yes;No;1,127;Q1;48;95;200;4170;803;166;4,34;43,89;50,46;0;United Kingdom;Western Europe;"European Respiratory Society";"2010-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +4021;21101044946;"Frontiers in Forests and Global Change";journal;"2624893X";"Frontiers Media SA";Yes;No;1,127;Q1;51;171;901;11878;3780;829;3,88;69,46;32,54;1;Switzerland;Western Europe;"Frontiers Media SA";"2018-2026";"Ecology (Q1); Environmental Science (miscellaneous) (Q1); Forestry (Q1); Nature and Landscape Conservation (Q1); Global and Planetary Change (Q2)";"Agricultural and Biological Sciences; Environmental Science" +4022;5800207756;"International Journal of Multilingualism";journal;"14790718";"Routledge";No;No;1,127;Q1;60;224;224;12221;1066;218;4,58;54,56;57,31;0;United Kingdom;Western Europe;"Routledge";"2004-2026";"Linguistics and Language (Q1)";"Social Sciences" +4023;21101306225;"Med-X";journal;"27318710, 2097440X";"Springer";No;No;1,127;Q1;12;27;40;3894;264;38;6,60;144,22;36,49;0;Singapore;Asiatic Region;"Springer";"2023-2026";"Biomedical Engineering (Q1)";"Engineering" +4024;19700182654;"Project Management Journal";journal;"19389507, 87569728";"SAGE Publications Inc.";No;No;1,127;Q1;72;63;127;5126;818;112;5,91;81,37;33,81;0;United States;Northern America;"SAGE Publications Inc.";"1986, 2000, 2009-2026";"Business and International Management (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +4025;26764;"Astroparticle Physics";journal;"09276505";"Elsevier B.V.";No;No;1,127;Q2;127;56;129;3056;541;128;4,76;54,57;23,47;0;Netherlands;Western Europe;"Elsevier B.V.";"1992-2026";"Astronomy and Astrophysics (Q2)";"Physics and Astronomy" +4026;21101056819;"Environmental Epidemiology";journal;"24747882";"Wolters Kluwer Health";Yes;No;1,126;Q1;31;78;170;4101;637;159;3,54;52,58;54,48;0;United States;Northern America;"Wolters Kluwer Health";"2017-2026";"Epidemiology (Q1); Health, Toxicology and Mutagenesis (Q1); Pollution (Q1); Public Health, Environmental and Occupational Health (Q1); Global and Planetary Change (Q2)";"Environmental Science; Medicine" +4027;16916;"Physical Therapy";journal;"00319023, 15386724";"Oxford University Press";No;No;1,126;Q1;192;159;555;7237;1870;482;2,67;45,52;55,85;0;United States;Northern America;"Oxford University Press";"1964-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1)";"Health Professions" +4028;21100256980;"Plant Genome";journal;"19403372";"John Wiley & Sons Inc.";Yes;No;1,126;Q1;78;206;321;15112;1624;308;5,33;73,36;35,05;1;United States;Northern America;"John Wiley & Sons Inc.";"2008-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +4029;21101097037;"Water Biology and Security";journal;"27727351";"KeAi Communications Co.";Yes;No;1,126;Q1;19;132;129;9914;689;124;4,51;75,11;38,13;0;China;Asiatic Region;"KeAi Communications Co.";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Animal Science and Zoology (Q1); Aquatic Science (Q1); Water Science and Technology (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4030;21101060444;"Future Foods";journal;"26668335";"Elsevier B.V.";Yes;No;1,125;Q1;45;336;400;24992;3393;395;7,39;74,38;50,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +4031;21100201916;"Pediatric Obesity";journal;"20476302, 20476310";"John Wiley and Sons Ltd";No;No;1,125;Q1;92;95;298;4566;932;295;2,71;48,06;60,57;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2026";"Health Policy (Q1); Nutrition and Dietetics (Q1); Pediatrics, Perinatology and Child Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Nursing" +4032;21101174247;"AI (Switzerland)";journal;"26732688";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,124;Q1;38;328;257;17541;2261;251;9,47;53,48;26,58;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2026";"Artificial Intelligence (Q1)";"Computer Science" +4033;31445;"American Journal of Medicine";journal;"00029343, 15557162";"Elsevier Inc.";No;No;1,124;Q1;272;487;1212;8081;2684;613;2,13;16,59;37,29;5;United States;Northern America;"Elsevier Inc.";"1946-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +4034;21843;"Anesthesia and Analgesia";journal;"15267598, 00032999";"Lippincott Williams and Wilkins";No;No;1,124;Q1;245;664;1332;15293;3646;916;2,64;23,03;39,28;0;United States;Northern America;"Lippincott Williams and Wilkins";"1957-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +4035;26438;"Ergodic Theory and Dynamical Systems";journal;"14694417, 01433857";"Cambridge University Press";No;No;1,124;Q1;65;122;385;3654;367;385;0,93;29,95;17,37;0;United Kingdom;Western Europe;"Cambridge University Press";"1981-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +4036;22897;"Journal of Consumer Marketing";journal;"07363761";"Emerald Group Publishing Ltd.";No;No;1,124;Q1;127;104;187;9393;1201;185;6,09;90,32;45,61;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1984-2026";"Business and International Management (Q1); Marketing (Q2)";"Business, Management and Accounting" +4037;16100154770;"Journal of Global History";journal;"17400228, 17400236";"Cambridge University Press";No;No;1,124;Q1;45;34;74;4718;153;74;1,42;138,76;38,10;0;United Kingdom;Western Europe;"Cambridge University Press";"2006-2026";"History (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +4038;12000154319;"Mental Health and Physical Activity";journal;"18780199, 17552966";"Elsevier Ltd";No;No;1,124;Q1;55;62;175;3516;615;175;3,31;56,71;51,96;1;United Kingdom;Western Europe;"Elsevier Ltd";"2008-2026";"Applied Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +4039;21100870853;"npj Microgravity";journal;"23738065";"Nature Publishing Group";Yes;No;1,124;Q1;48;87;259;5244;1318;256;5,03;60,28;35,07;0;United Kingdom;Western Europe;"Nature Publishing Group";"2015-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1); Space and Planetary Science (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Earth and Planetary Sciences; Materials Science; Medicine; Physics and Astronomy" +4040;17379;"Molecular and Cellular Neuroscience";journal;"10959327, 10447431";"Academic Press Inc.";No;No;1,124;Q2;154;47;181;4796;573;178;3,28;102,04;50,40;0;United States;Northern America;"Academic Press Inc.";"1990-2026";"Cell Biology (Q2); Cellular and Molecular Neuroscience (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +4041;21100780480;"Arrhythmia and Electrophysiology Review";journal;"20503377, 20503369";"";Yes;No;1,123;Q1;37;26;73;1095;297;69;4,40;42,12;19,00;0;United Kingdom;Western Europe;"";"2015-2025";"Cardiology and Cardiovascular Medicine (Q1); Physiology (medical) (Q2)";"Medicine" +4042;25347;"Chaos, Solitons and Fractals";journal;"09600779";"Elsevier Ltd";No;No;1,123;Q1;185;1528;3723;76565;21381;3688;5,99;50,11;30,36;1;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Applied Mathematics (Q1); Mathematical Physics (Q1); Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1); Statistical and Nonlinear Physics (Q1)";"Mathematics; Physics and Astronomy" +4043;27947;"Geophysical Journal International";journal;"0956540X, 1365246X";"Oxford University Press";Yes;No;1,123;Q1;220;499;1563;32103;5027;1561;3,09;64,33;26,08;1;United Kingdom;Western Europe;"Oxford University Press";"1922-1943, 1945, 1947-1958, 1988-2026";"Geochemistry and Petrology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +4044;19500157063;"International Journal of Social Robotics";journal;"18754805, 18754791";"Springer Verlag";No;No;1,123;Q1;94;170;384;11211;2445;373;5,53;65,95;36,95;0;Germany;Western Europe;"Springer Verlag";"2009-2026";"Computer Science (miscellaneous) (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Human-Computer Interaction (Q1); Philosophy (Q1); Social Psychology (Q1)";"Arts and Humanities; Computer Science; Engineering; Psychology" +4045;17781;"International Review of Research in Open and Distributed Learning";journal;"14923831";"Athabasca University";Yes;Yes;1,123;Q1;104;51;156;2383;829;146;5,75;46,73;40,48;0;Canada;Northern America;"Athabasca University";"2000-2026";"Education (Q1); E-learning (Q1)";"Social Sciences" +4046;17900156735;"Journal of Optical Communications and Networking";journal;"19430639, 19430620";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,123;Q1;87;172;464;6401;2686;452;5,74;37,22;22,81;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2009-2026";"Computer Networks and Communications (Q1)";"Computer Science" +4047;22367;"Progress in Natural Science: Materials International";journal;"10020071, 17455391";"Elsevier B.V.";Yes;No;1,123;Q1;95;110;325;6880;2274;325;7,36;62,55;33,08;0;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Materials Science (miscellaneous) (Q1); Multidisciplinary (Q1)";"Materials Science; Multidisciplinary" +4048;19700174916;"Therapeutic Advances in Gastroenterology";journal;"1756283X, 17562848";"SAGE Publications Ltd";Yes;No;1,123;Q1;77;232;407;10377;1601;395;3,85;44,73;41,66;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Gastroenterology (Q1)";"Medicine" +4049;21100904205;"ACS Applied Energy Materials";journal;"25740962";"American Chemical Society";No;No;1,122;Q1;116;1593;3958;90371;21402;3944;5,35;56,73;31,53;0;United States;Northern America;"American Chemical Society";"2018-2026";"Chemical Engineering (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Electrochemistry (Q1); Energy Engineering and Power Technology (Q1); Materials Chemistry (Q1)";"Chemical Engineering; Chemistry; Energy; Engineering; Materials Science" +4050;5600155894;"Advances in Life Course Research";journal;"18796974, 15694909";"Elsevier Ltd";No;No;1,122;Q1;54;38;113;2976;406;113;3,10;78,32;58,33;1;United Kingdom;Western Europe;"Elsevier Ltd";"2000-2003, 2005-2026";"Life-span and Life-course Studies (Q1)";"Social Sciences" +4051;21101075718;"AVS Quantum Science";journal;"26390213";"American Institute of Physics";No;No;1,122;Q1;32;45;187;2814;672;187;3,00;62,53;29,45;0;United States;Northern America;"American Institute of Physics";"2019-2026";"Atomic and Molecular Physics, and Optics (Q1); Computational Theory and Mathematics (Q1); Computer Networks and Communications (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Computer Science; Engineering; Materials Science; Physics and Astronomy" +4052;21100899501;"EFSA Journal";journal;"18314732";"Wiley-Blackwell Publishing Ltd";Yes;Yes;1,122;Q1;167;420;1459;15369;5064;1435;3,71;36,59;56,13;128;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2003-2026";"Animal Science and Zoology (Q1); Food Science (Q1); Parasitology (Q1); Plant Science (Q1); Veterinary (miscellaneous) (Q1); Microbiology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Veterinary" +4053;5700191218;"Geosphere";journal;"1553040X";"Geological Society of America";Yes;No;1,122;Q1;87;45;222;4554;574;222;2,11;101,20;23,40;0;United States;Northern America;"Geological Society of America";"2005-2025";"Geology (Q1); Stratigraphy (Q1)";"Earth and Planetary Sciences" +4054;21100920651;"Advanced Sustainable Systems";journal;"23667486";"John Wiley & Sons Inc.";No;No;1,121;Q1;70;552;620;44575;4034;616;5,89;80,75;35,33;0;United States;Northern America;"John Wiley & Sons Inc.";"2017-2026";"Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Environmental Science" +4055;22017;"Basin Research";journal;"0950091X, 13652117";"John Wiley and Sons Inc";No;No;1,121;Q1;106;68;287;6440;831;281;2,83;94,71;21,43;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1988-1989, 1991-2026";"Geology (Q1)";"Earth and Planetary Sciences" +4056;19700176047;"Cyberpsychology, Behavior, and Social Networking";journal;"21522715, 21522723";"Mary Ann Liebert Inc.";No;No;1,121;Q1;198;132;382;4816;1745;338;3,88;36,48;53,87;1;United States;Northern America;"Mary Ann Liebert Inc.";"2010-2026";"Applied Psychology (Q1); Communication (Q1); Computer Science Applications (Q1); Human-Computer Interaction (Q1); Medicine (miscellaneous) (Q1); Social Psychology (Q1)";"Computer Science; Medicine; Psychology; Social Sciences" +4057;17700156740;"Journal of Diversity in Higher Education";journal;"19388926, 19388934";"American Psychological Association";No;No;1,121;Q1;64;97;253;6385;933;253;2,59;65,82;71,78;0;United States;Northern America;"American Psychological Association";"2008-2025";"Education (Q1)";"Social Sciences" +4058;15894;"Journal of Epidemiology";journal;"13499092, 09175040";"Japan Epidemiology Association";Yes;No;1,121;Q1;99;69;268;2168;831;232;2,87;31,42;36,48;0;Japan;Asiatic Region;"Japan Epidemiology Association";"1991-2026";"Epidemiology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +4059;21082;"Pharmaceutical Biology";journal;"13880209, 17445116";"Taylor and Francis Ltd.";Yes;No;1,121;Q1;103;56;410;3588;2535;409;6,46;64,07;47,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1961-1972, 1975-2026";"Complementary and Alternative Medicine (Q1); Drug Discovery (Q1); Medicine (miscellaneous) (Q1); Pharmaceutical Science (Q1); Pharmacology (Q1); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +4060;21101045748;"Plants People Planet";journal;"25722611";"Wiley-Blackwell Publishing Ltd";Yes;No;1,121;Q1;41;206;265;14279;1295;254;4,60;69,32;43,28;8;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2019-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Forestry (Q1); Horticulture (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +4061;23450;"Chinese Journal of Chemistry";journal;"16147065, 1001604X";"John Wiley and Sons Inc";No;No;1,120;Q1;69;379;1064;24713;5112;1057;5,21;65,21;38,22;0;United States;Northern America;"John Wiley and Sons Inc";"1990-2026";"Chemistry (miscellaneous) (Q1)";"Chemistry" +4062;12998;"IEEE Transactions on Ultrasonics, Ferroelectrics, and Frequency Control";journal;"15258955, 08853010";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,120;Q1;162;142;619;7026;2804;615;4,55;49,48;24,88;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1986-2025";"Acoustics and Ultrasonics (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1)";"Engineering; Physics and Astronomy" +4063;21101306754;"Journal of Endometriosis and Uterine Disorders";journal;"29498384";"Elsevier Masson s.r.l.";No;No;1,120;Q1;7;24;26;853;115;22;4,42;35,54;57,14;0;France;Western Europe;"Elsevier Masson s.r.l.";"2024-2026";"Obstetrics and Gynecology (Q1); Surgery (Q1); Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4064;21100829284;"Physical Review C";journal;"24699985, 24699993";"American Physical Society";No;No;1,120;Q1;253;900;2869;54378;8843;2864;3,07;60,42;24,21;0;United States;Northern America;"American Physical Society";"2016-2026";"Nuclear and High Energy Physics (Q1)";"Physics and Astronomy" +4065;25176;"Regulatory Toxicology and Pharmacology";journal;"02732300, 10960295";"Academic Press Inc.";No;No;1,120;Q1;139;136;454;6741;2082;402;4,48;49,57;49,25;6;United States;Northern America;"Academic Press Inc.";"1970, 1981-2026";"Medicine (miscellaneous) (Q1); Toxicology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4066;13821;"Current Opinion in Ophthalmology";journal;"10408738, 15317021";"Lippincott Williams and Wilkins";No;No;1,119;Q1;112;83;255;4362;883;237;3,34;52,55;35,61;0;United States;Northern America;"Lippincott Williams and Wilkins";"1990-2026";"Medicine (miscellaneous) (Q1); Ophthalmology (Q1)";"Medicine" +4067;21100255550;"Food Bioscience";journal;"22124306, 22124292";"Elsevier Ltd";No;No;1,119;Q1;94;2430;3979;147885;28313;3975;6,91;60,86;47,46;1;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Biochemistry (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +4068;21100265182;"Mental Health and Prevention";journal;"22126570";"Elsevier GmbH";No;No;1,119;Q1;30;82;145;4481;503;138;3,45;54,65;69,06;2;Germany;Western Europe;"Elsevier GmbH";"2013-2026";"Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4069;12772;"British Journal of Health Psychology";journal;"1359107X, 20448287";"Wiley-Blackwell";No;No;1,118;Q1;113;97;197;6290;801;195;3,72;64,85;67,63;0;United States;Northern America;"Wiley-Blackwell";"1996-2026";"Applied Psychology (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Psychology" +4070;21100904743;"European Radiology Experimental";journal;"25099280";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,118;Q1;41;125;276;4312;1289;274;4,85;34,50;34,53;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2017-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +4071;21100220372;"International Journal of Mobile Learning and Organisation";journal;"17467268, 1746725X";"Inderscience";No;No;1,118;Q1;33;20;77;1092;290;76;3,81;54,60;29,79;0;Switzerland;Western Europe;"Inderscience";"2007-2026";"Computer Science Applications (Q1); Education (Q1); E-learning (Q1)";"Computer Science; Social Sciences" +4072;20266;"Microbial Ecology";journal;"00953628, 1432184X";"Springer";No;No;1,118;Q1;161;143;721;10323;3491;713;4,94;72,19;41,46;1;United States;Northern America;"Springer";"1974-1977, 1979-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4073;5200152603;"Neonatology";journal;"16617819, 16617800";"S. Karger AG";No;No;1,118;Q1;104;132;296;4002;995;266;3,84;30,32;48,29;0;Switzerland;Western Europe;"S. Karger AG";"1959-1997, 2007-2026";"Pediatrics, Perinatology and Child Health (Q1); Developmental Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4074;14223;"Photosynthesis Research";journal;"15735079, 01668595";"Springer";No;No;1,118;Q1;140;65;248;3540;960;238;3,47;54,46;33,23;0;Netherlands;Western Europe;"Springer";"1980-2026";"Biochemistry (Q1); Medicine (miscellaneous) (Q1); Plant Science (Q1); Cell Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +4075;21101286157;"PLOS Sustainability and Transformation";journal;"27673197";"Public Library of Science";Yes;No;1,118;Q1;18;43;109;2823;545;92;4,69;65,65;40,65;4;United States;Northern America;"Public Library of Science";"2022-2026";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +4076;28983;"Applied Surface Science";journal;"01694332";"Elsevier B.V.";No;No;1,117;Q1;264;3016;8762;162505;59270;8758;6,89;53,88;34,64;0;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Physics and Astronomy (miscellaneous) (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +4077;21101212766;"Discover Internet of Things";journal;"27307239";"Springer Nature";Yes;No;1,117;Q1;19;153;65;7878;603;65;10,14;51,49;28,50;0;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1); Hardware and Architecture (Q1); Human-Computer Interaction (Q1); Information Systems (Q1); Software (Q1)";"Computer Science; Engineering" +4078;13679;"Ear and Hearing";journal;"15384667, 01960202";"Lippincott Williams and Wilkins Ltd.";No;No;1,117;Q1;136;173;467;10379;1684;457;3,32;59,99;52,48;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1980-2026";"Otorhinolaryngology (Q1); Speech and Hearing (Q1)";"Health Professions; Medicine" +4079;35510;"European Review of Agricultural Economics";journal;"14643618, 01651587";"Oxford University Press";No;No;1,117;Q1;81;48;138;3406;589;138;4,29;70,96;31,75;1;United Kingdom;Western Europe;"Oxford University Press";"1981-1982, 1986-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Economics and Econometrics (Q1)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +4080;28373;"Hepatology Research";journal;"13866346, 1872034X";"John Wiley and Sons Inc";No;No;1,117;Q1;96;205;338;6040;1184;304;3,59;29,46;21,46;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1997-2026";"Infectious Diseases (Q1); Hepatology (Q2)";"Medicine" +4081;18111;"Insurance: Mathematics and Economics";journal;"01676687";"Elsevier B.V.";No;No;1,117;Q1;95;93;237;4163;592;235;2,01;44,76;31,16;0;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Economics and Econometrics (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +4082;19400158456;"International Journal of Sustainable Transportation";journal;"15568334, 15568318";"Taylor and Francis Ltd.";No;No;1,117;Q1;72;90;241;5689;1359;241;4,82;63,21;32,63;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Environmental Engineering (Q1); Geography, Planning and Development (Q1); Transportation (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Engineering; Environmental Science; Social Sciences" +4083;21101142660;"Journal of Climate Change and Health";journal;"26672782";"Elsevier Masson s.r.l.";Yes;No;1,117;Q1;29;111;222;4932;1060;205;4,55;44,43;59,74;2;France;Western Europe;"Elsevier Masson s.r.l.";"2021-2026";"Public Health, Environmental and Occupational Health (Q1); Global and Planetary Change (Q2)";"Environmental Science; Medicine" +4084;25337;"Neurogastroenterology and Motility";journal;"13652982, 13501925";"Wiley-Blackwell Publishing Ltd";No;No;1,117;Q1;138;284;634;11830;2117;588;3,03;41,65;43,79;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1989-2026";"Gastroenterology (Q1); Endocrine and Autonomic Systems (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +4085;14604;"Ophthalmic and Physiological Optics";journal;"02755408, 14751313";"Springer Nature";No;No;1,117;Q1;93;207;465;8818;1526;412;3,44;42,60;50,99;0;United Kingdom;Western Europe;"Springer Nature";"1981-2026";"Ophthalmology (Q1); Optometry (Q1); Sensory Systems (Q1)";"Health Professions; Medicine; Neuroscience" +4086;19760;"International Journal of Food Microbiology";journal;"18793460, 01681605";"Elsevier B.V.";No;No;1,116;Q1;237;403;850;24187;5730;849;6,32;60,02;51,77;4;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Food Science (Q1); Medicine (miscellaneous) (Q1); Safety, Risk, Reliability and Quality (Q1); Microbiology (Q2)";"Agricultural and Biological Sciences; Engineering; Immunology and Microbiology; Medicine" +4087;29756;"Occupational and Environmental Medicine";journal;"14707926, 13510711";"BMJ Publishing Group";No;No;1,116;Q1;172;93;335;3122;1004;298;2,88;33,57;50,91;4;United Kingdom;Western Europe;"BMJ Publishing Group";"1994-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4088;14286;"Proteomics";journal;"16159861, 16159853";"Wiley-VCH Verlag";No;No;1,116;Q1;191;160;465;10162;1742;442;3,85;63,51;42,61;1;Germany;Western Europe;"Wiley-VCH Verlag";"2001-2026";"Biochemistry (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4089;21101041901;"RSC Chemical Biology";journal;"26330679";"Royal Society of Chemistry";Yes;No;1,116;Q1;37;137;344;9620;1279;333;3,67;70,22;38,30;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2020-2026";"Biochemistry (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +4090;19959;"Visual Neuroscience";journal;"14698714, 09525238";"Maximum Academic Press";Yes;No;1,116;Q1;92;27;19;1757;74;19;4,83;65,07;46,24;0;United States;Northern America;"Maximum Academic Press";"1988-2026";"Sensory Systems (Q1); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +4091;14453;"Emerging Markets Review";journal;"18736173, 15660141";"Elsevier B.V.";No;No;1,115;Q1;83;117;262;7728;1555;261;5,16;66,05;37,46;7;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Business and International Management (Q1); Economics and Econometrics (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4092;21100255547;"Journal of Outdoor Recreation and Tourism";journal;"22130780";"Elsevier B.V.";Yes;No;1,115;Q1;55;113;276;8188;1704;273;5,92;72,46;46,17;2;United Kingdom;Western Europe;"Elsevier B.V.";"2013-2026";"Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting" +4093;4400151412;"Journal of Preventive Medicine and Public Health";journal;"19758375, 22334521";"Korean Society for Preventive Medicine";Yes;No;1,115;Q1;49;68;203;2304;678;189;2,95;33,88;52,28;0;South Korea;Asiatic Region;"Korean Society for Preventive Medicine";"2006-2026";"Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4094;71628;"Aging";journal;"19454589";"Impact Journals LLC";Yes;No;1,115;Q2;144;160;2260;8769;8578;2139;3,56;54,81;45,06;0;United States;Northern America;"Impact Journals LLC";"2009-2026";"Aging (Q2); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4095;13519;"Contemporary Southeast Asia";journal;"0129797X";"ISEAS - Yusof Ishak Institute";No;No;1,114;Q1;49;23;67;1430;181;64;2,60;62,17;36,36;1;Singapore;Asiatic Region;"ISEAS - Yusof Ishak Institute";"1979-2025";"Development (Q1); History (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +4096;16474;"Journal of Contemporary China";journal;"10670564, 14699400";"Routledge";No;No;1,114;Q1;73;88;184;114;748;183;4,13;1,30;41,78;6;United Kingdom;Western Europe;"Routledge";"1992-2026";"Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +4097;19700188364;"Viruses";journal;"19994915";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,114;Q1;155;1625;7192;103996;27648;7012;3,81;64,00;48,45;13;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Infectious Diseases (Q1); Virology (Q2)";"Immunology and Microbiology; Medicine" +4098;58745;"Proceedings - International Conference on Data Engineering";conference and proceedings;"23750286, 10844627";"IEEE Computer Society";No;No;1,114;-;164;399;1209;19981;5620;1201;3,91;50,08;29,11;0;United States;Northern America;"IEEE Computer Society";"1984, 1986, 1991-2015, 2017, 2019-2025";"Information Systems; Signal Processing; Software";"Computer Science" +4099;28542;"Journal of Mathematical Fluid Mechanics";journal;"14226928, 14226952";"Springer International Publishing";No;No;1,113;Q1;43;76;270;2565;370;270;1,38;33,75;29,32;0;Switzerland;Western Europe;"Springer International Publishing";"2004-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Condensed Matter Physics (Q1); Mathematical Physics (Q1)";"Mathematics; Physics and Astronomy" +4100;13042;"Plant Molecular Biology";journal;"15735028, 01674412";"Springer Science and Business Media B.V.";No;No;1,113;Q1;208;124;331;10577;1466;325;3,69;85,30;40,49;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1981-2026";"Agronomy and Crop Science (Q1); Medicine (miscellaneous) (Q1); Plant Science (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +4101;20793;"Benchmarking";journal;"14635771";"Emerald Publishing";No;No;1,112;Q1;104;245;472;24462;4081;471;8,66;99,84;31,03;0;United Kingdom;Western Europe;"Emerald Publishing";"1999-2026";"Business and International Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +4102;12068;"International Statistical Review";journal;"03067734, 17515823";"John Wiley & Sons Inc.";No;No;1,112;Q1;69;45;81;2114;253;76;2,02;46,98;29,35;0;United States;Northern America;"John Wiley & Sons Inc.";"1982, 1985, 1987, 1990, 1992-1994, 1996-2026";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +4103;24330;"Journal of Artificial Intelligence Research";journal;"10769757";"AI Access Foundation";Yes;Yes;1,112;Q1;150;132;314;10321;2065;314;4,73;78,19;23,27;2;United States;Northern America;"AI Access Foundation";"1993, 1996-2026";"Artificial Intelligence (Q1)";"Computer Science" +4104;15413;"Journal of Cognition and Development";journal;"15327647, 15248372";"Routledge";No;No;1,112;Q1;76;63;117;3766;371;115;3,74;59,78;72,81;0;United States;Northern America;"Routledge";"2000-2026";"Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Psychiatry and Mental Health (Q1)";"Medicine; Psychology" +4105;24513;"Separation and Purification Reviews";journal;"15422119, 15422127";"Taylor and Francis Ltd.";No;No;1,112;Q1;76;43;79;5861;565;79;6,65;136,30;43,39;0;United States;Northern America;"Taylor and Francis Ltd.";"1972-1995, 2003-2026";"Analytical Chemistry (Q1); Filtration and Separation (Q2)";"Chemical Engineering; Chemistry" +4106;21101235561;"Proceedings of the Annual International Conference on Mobile Computing and Networking, MOBICOM";conference and proceedings;"15435679";"Association for Computing Machinery";No;No;1,112;-;151;0;265;0;1394;263;4,72;0,00;0,00;0;United States;Northern America;"Association for Computing Machinery";"1995-1997, 2000-2015, 2017-2018, 2021-2023";"Computer Networks and Communications; Hardware and Architecture; Software";"Computer Science" +4107;17929;"BMC Bioinformatics";journal;"14712105";"BioMed Central Ltd";Yes;No;1,111;Q1;265;307;1441;13187;7067;1438;5,31;42,95;33,90;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2026";"Applied Mathematics (Q1); Biochemistry (Q1); Computer Science Applications (Q1); Molecular Biology (Q2); Structural Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics" +4108;20846;"Health and Quality of Life Outcomes";journal;"14777525";"BioMed Central Ltd";Yes;No;1,111;Q1;152;125;409;6847;1740;407;3,95;54,78;56,32;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4109;145735;"Language Learning Journal";journal;"09571736, 17532167";"Routledge";No;No;1,111;Q1;48;82;160;4513;643;154;3,94;55,04;58,71;0;United Kingdom;Western Europe;"Routledge";"1990-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +4110;19700175203;"Therapeutic Advances in Urology";journal;"17562872, 17562880";"SAGE Publications Inc.";Yes;No;1,111;Q1;48;48;132;1677;500;128;3,41;34,94;25,15;0;United States;Northern America;"SAGE Publications Inc.";"2009-2026";"Urology (Q1)";"Medicine" +4111;9000153111;"Comparative Biochemistry and Physiology Part - C: Toxicology and Pharmacology";journal;"15320456, 18781659";"Elsevier Inc.";No;No;1,110;Q1;132;220;572;14593;3128;572;5,30;66,33;45,75;1;United States;Northern America;"Elsevier Inc.";"1989, 2000-2026";"Animal Science and Zoology (Q1); Aquatic Science (Q1); Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Toxicology (Q1); Biochemistry (Q2); Cell Biology (Q2); Physiology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +4112;14194;"Games and Economic Behavior";journal;"10902473, 08998256";"Academic Press Inc.";No;No;1,110;Q1;114;137;443;4989;580;443;1,17;36,42;20,07;1;United States;Northern America;"Academic Press Inc.";"1989-2026";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +4113;21101048248;"Innovation in Aging";journal;"23995300";"Oxford University Press";Yes;No;1,110;Q1;37;138;310;6368;1149;299;3,46;46,14;58,14;1;United States;Northern America;"Oxford University Press";"2017-2026";"Health Professions (miscellaneous) (Q1); Health (social science) (Q1); Life-span and Life-course Studies (Q1); Geriatrics and Gerontology (Q2)";"Health Professions; Medicine; Social Sciences" +4114;21100853961;"ImmunoTargets and Therapy";journal;"22531556";"Dove Medical Press Ltd";Yes;No;1,110;Q2;36;91;76;7436;324;74;3,94;81,71;47,36;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2015-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +4115;22420;"American Journal of Hypertension";journal;"08957061, 19417225";"Oxford University Press";No;No;1,109;Q1;161;155;366;5068;964;293;2,13;32,70;40,04;0;United Kingdom;Western Europe;"Oxford University Press";"1954, 1988-2026";"Internal Medicine (Q1)";"Medicine" +4116;10300153341;"Clinical Interventions in Aging";journal;"11781998, 11769092";"Dove Medical Press Ltd";Yes;No;1,109;Q1;122;216;548;10428;2317;511;3,92;48,28;50,16;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2006-2026";"Medicine (miscellaneous) (Q1); Geriatrics and Gerontology (Q2)";"Medicine" +4117;13247;"Experimental and Molecular Pathology";journal;"10960945, 00144800";"Academic Press Inc.";Yes;No;1,109;Q1;84;58;115;4120;491;114;3,77;71,03;46,53;1;United States;Northern America;"Academic Press Inc.";"1962-1995, 1997-2026";"Clinical Biochemistry (Q1); Pathology and Forensic Medicine (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4118;23875;"Journal of Human Hypertension";journal;"09509240, 14765527";"Springer Nature";No;No;1,109;Q1;113;131;431;4403;1364;383;3,28;33,61;41,69;3;United Kingdom;Western Europe;"Springer Nature";"1987-2026";"Internal Medicine (Q1)";"Medicine" +4119;21100203903;"Journal of Integrative Agriculture";journal;"20953119, 23523425";"KeAi Publishing Communications Ltd.";Yes;Yes;1,109;Q1;103;338;890;19573;4906;866;5,44;57,91;39,88;1;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2012-2026";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Ecology (Q1); Food Animals (Q1); Food Science (Q1); Plant Science (Q1); Biochemistry (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Veterinary" +4120;5800175970;"Leadership";journal;"17427150, 17427169";"SAGE Publications Ltd";No;No;1,109;Q1;66;29;90;1962;367;83;3,49;67,66;50,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2026";"Sociology and Political Science (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Social Sciences" +4121;21101072019;"Biotechnology for Biofuels and Bioproducts";journal;"27313654";"BioMed Central Ltd";Yes;No;1,108;Q1;150;120;490;8550;3275;490;6,49;71,25;40,37;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2022-2026";"Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1); Management, Monitoring, Policy and Law (Q1); Energy (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Biochemistry, Genetics and Molecular Biology; Energy; Environmental Science; Immunology and Microbiology" +4122;22193;"Genetics Selection Evolution";journal;"0999193X, 12979686";"BioMed Central Ltd";Yes;No;1,108;Q1;97;73;251;4670;1069;249;4,34;63,97;37,02;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1970, 1972-1977, 1983, 1989-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Medicine (miscellaneous) (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +4123;16273;"Journal of Construction Engineering and Management";journal;"19437862, 07339364";"American Society of Civil Engineers (ASCE)";No;No;1,108;Q1;158;282;664;18935;4389;660;6,16;67,15;31,92;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1982-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Industrial Relations (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Engineering" +4124;21100860697;"Journalism and Mass Communication Educator";journal;"21614326, 10776958";"SAGE Publications Ltd";No;No;1,108;Q1;32;29;78;1498;449;72;7,98;51,66;60,29;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2026";"Communication (Q1); Education (Q1)";"Social Sciences" +4125;21100372467;"Structures";journal;"23520124";"Elsevier Ltd";No;No;1,108;Q1;82;2887;5454;150123;30545;5449;5,49;52,00;26,26;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Architecture (Q1); Building and Construction (Q1); Civil and Structural Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering" +4126;5600152808;"Acta Politica";journal;"17411416, 00016810";"Palgrave Macmillan";No;No;1,107;Q1;50;65;129;4202;403;127;3,37;64,65;39,06;2;United Kingdom;Western Europe;"Palgrave Macmillan";"2006-2026";"Political Science and International Relations (Q1)";"Social Sciences" +4127;19700175111;"Asia-Pacific Psychiatry";journal;"17585872, 17585864";"Wiley-Blackwell";No;No;1,107;Q1;40;10;67;426;221;59;2,76;42,60;28,79;0;United States;Northern America;"Wiley-Blackwell";"2010-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)";"Medicine" +4128;22208;"Australasian Journal of Philosophy";journal;"14716828, 00048402";"Routledge";No;No;1,107;Q1;60;110;196;4779;301;172;1,50;43,45;24,81;0;United Kingdom;Western Europe;"Routledge";"1947-2026";"Philosophy (Q1)";"Arts and Humanities" +4129;19966;"Bulletin of Indonesian Economic Studies";journal;"14727234, 00074918";"Taylor and Francis Ltd.";No;No;1,107;Q1;45;15;37;799;159;36;4,35;53,27;37,04;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1965-2025";"Development (Q1); Economics and Econometrics (Q1)";"Economics, Econometrics and Finance; Social Sciences" +4130;21100248934;"China Journal of Accounting Research";journal;"17553091";"Sun Yat-sen (Zhongshan) University";Yes;No;1,107;Q1;36;32;94;1906;534;94;5,95;59,56;46,07;0;China;Asiatic Region;"Sun Yat-sen (Zhongshan) University";"2013-2026";"Accounting (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4131;21368;"Instructional Science";journal;"00204277, 15731952";"Springer Netherlands";No;No;1,107;Q1;100;74;111;4824;434;111;3,64;65,19;52,48;0;Netherlands;Western Europe;"Springer Netherlands";"1972-1992, 1994-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +4132;21101177470;"JMIR Nursing";journal;"25627600";"JMIR Publications Inc.";Yes;No;1,107;Q1;16;47;69;1878;374;68;5,65;39,96;63,21;0;Canada;Northern America;"JMIR Publications Inc.";"2018-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +4133;26459;"Latin American Politics and Society";journal;"15482456, 1531426X";"Cambridge University Press";No;No;1,107;Q1;58;32;94;2028;211;87;2,62;63,38;21,82;1;United States;Northern America;"Cambridge University Press";"2001-2026";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +4134;21100904379;"Nanotheranostics";journal;"22067418";"Ivyspring International Publisher";Yes;No;1,107;Q1;43;22;98;1596;806;93;8,76;72,55;42,21;0;Australia;Pacific Region;"Ivyspring International Publisher";"2017-2026";"Biomedical Engineering (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine; Pharmacology, Toxicology and Pharmaceutics" +4135;23611;"Public Choice";journal;"15737101, 00485829";"Springer Netherlands";No;No;1,107;Q1;103;153;259;8483;731;241;2,78;55,44;20,35;9;Netherlands;Western Europe;"Springer Netherlands";"1966-2026";"Economics and Econometrics (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Social Sciences" +4136;6500153242;"Expert Review of Endocrinology and Metabolism";journal;"17446651, 17448417";"Taylor and Francis Ltd.";No;No;1,107;Q2;41;58;145;4148;441;133;2,89;71,52;43,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Endocrinology, Diabetes and Metabolism (Q2)";"Medicine" +4137;144969;"Regional Environmental Change";journal;"14363798, 1436378X";"Springer Science and Business Media Deutschland GmbH";No;No;1,107;Q2;108;150;463;10945;2089;457;4,34;72,97;42,57;7;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2026";"Global and Planetary Change (Q2)";"Environmental Science" +4138;21370;"Expert Review of Neurotherapeutics";journal;"14737175, 17448360";"Taylor and Francis Ltd.";No;No;1,106;Q1;110;113;299;11574;1192;260;4,13;102,42;37,72;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Neurology (clinical) (Q1); Pharmacology (medical) (Q1); Neuroscience (miscellaneous) (Q2)";"Medicine; Neuroscience" +4139;19900191718;"International Journal of Accounting and Information Management";journal;"17589037, 18347649";"Emerald Publishing";No;No;1,106;Q1;46;58;108;4167;868;108;7,07;71,84;32,85;0;United Kingdom;Western Europe;"Emerald Publishing";"2007-2026";"Accounting (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Management Information Systems (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4140;23454;"Journal of Applied Physiology";journal;"87507587, 15221601";"American Physiological Society";No;No;1,106;Q1;276;327;984;16888;2968;821;2,84;51,65;33,96;3;United States;Northern America;"American Physiological Society";"1948-1976, 1985-2026";"Medicine (miscellaneous) (Q1); Physiology (Q2); Physiology (medical) (Q2); Sports Science (Q2)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +4141;23089;"Journal of Pharmacy and Pharmaceutical Sciences";journal;"14821826";"Frontiers Media SA";Yes;No;1,106;Q1;95;21;84;697;423;80;4,72;33,19;47,62;0;Switzerland;Western Europe;"Frontiers Media SA";"1998-2026";"Medicine (miscellaneous) (Q1); Pharmaceutical Science (Q1); Pharmacology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4142;18446;"Cell and Tissue Research";journal;"14320878, 0302766X";"Springer Science and Business Media Deutschland GmbH";No;No;1,105;Q1;170;99;378;7041;1524;374;3,43;71,12;44,75;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1924-1943, 1945, 1948-2026";"Histology (Q1); Pathology and Forensic Medicine (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4143;12887;"Cognitive Therapy and Research";journal;"01475916, 15732819";"Springer";No;No;1,105;Q1;126;188;264;11362;822;263;2,71;60,44;55,94;0;United States;Northern America;"Springer";"1977-2026";"Clinical Psychology (Q1); Experimental and Cognitive Psychology (Q1)";"Psychology" +4144;21101267124;"Geohazard Mechanics";journal;"29497418";"KeAi Communications Co.";No;No;1,105;Q1;12;24;56;872;337;56;6,02;36,33;25,47;0;China;Asiatic Region;"KeAi Communications Co.";"2023-2026";"Engineering (miscellaneous) (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Safety, Risk, Reliability and Quality (Q1)";"Earth and Planetary Sciences; Engineering" +4145;26890;"Health Reports";journal;"12091367, 08406529";"Statistics Canada";Yes;No;1,105;Q1;76;24;81;645;267;81;3,27;26,88;59,26;17;Canada;Northern America;"Statistics Canada";"1989-2026";"Demography (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +4146;15385;"Journal of Applied Developmental Psychology";journal;"01933973";"Elsevier B.V.";No;No;1,105;Q1;113;121;231;9458;745;231;2,88;78,17;67,64;0;United Kingdom;Western Europe;"Elsevier B.V.";"1980-2026";"Developmental and Educational Psychology (Q1)";"Psychology" +4147;23369;"Journal of Environmental Law";journal;"1464374X, 09528873";"Oxford University Press";No;No;1,105;Q1;45;35;93;4491;255;86;2,58;128,31;37,21;6;United Kingdom;Western Europe;"Oxford University Press";"1989-2025";"Law (Q1); Management, Monitoring, Policy and Law (Q1)";"Environmental Science; Social Sciences" +4148;5100155103;"Journal of Informetrics";journal;"18755879, 17511577";"Elsevier B.V.";No;No;1,105;Q1;107;114;271;6401;1227;270;4,18;56,15;37,96;0;Netherlands;Western Europe;"Elsevier B.V.";"2007-2026";"Applied Mathematics (Q1); Computer Science Applications (Q1); Library and Information Sciences (Q1); Management Science and Operations Research (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q1)";"Computer Science; Decision Sciences; Mathematics; Social Sciences" +4149;13892;"International Journal of Urban and Regional Research";journal;"03091317, 14682427";"Wiley-Blackwell Publishing Ltd";No;No;1,104;Q1;146;103;186;7692;648;185;2,73;74,68;45,77;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1977-2026";"Development (Q1); Sociology and Political Science (Q1); Urban Studies (Q1)";"Social Sciences" +4150;21100897526;"Journal of Causal Inference";journal;"21933685, 21933677";"Walter de Gruyter GmbH";Yes;No;1,104;Q1;18;30;82;1530;200;81;2,52;51,00;27,71;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2018-2026";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +4151;21576;"Nonlinear Dynamics";journal;"0924090X, 1573269X";"Springer Netherlands";No;No;1,104;Q1;165;1667;3149;79894;19745;3143;6,35;47,93;29,06;1;Netherlands;Western Europe;"Springer Netherlands";"1990-2026";"Aerospace Engineering (Q1); Applied Mathematics (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1); Ocean Engineering (Q1)";"Engineering; Mathematics" +4152;21101390488;"Urban Informatics";journal;"27316963";"Springer";No;No;1,104;Q1;8;24;33;1674;205;32;6,21;69,75;26,47;0;Singapore;Asiatic Region;"Springer";"2024-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Management, Monitoring, Policy and Law (Q1); Urban Studies (Q1)";"Computer Science; Environmental Science; Social Sciences" +4153;28065;"Applied Mathematical Modelling";journal;"0307904X";"Elsevier Inc.";No;No;1,103;Q1;159;514;1487;25551;9072;1486;6,51;49,71;28,96;0;United States;Northern America;"Elsevier Inc.";"1976-2026";"Applied Mathematics (Q1); Modeling and Simulation (Q1)";"Mathematics" +4154;21100798718;"Frontiers in Public Health";journal;"22962565";"Frontiers Media SA";Yes;No;1,103;Q1;138;4942;14164;239078;60719;13620;4,03;48,38;51,49;27;Switzerland;Western Europe;"Frontiers Media SA";"2013-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4155;21100403917;"Inorganic Chemistry Frontiers";journal;"20521545, 20521553";"Royal Society of Chemistry";No;No;1,103;Q1;110;582;2120;37853;12025;2112;5,80;65,04;38,07;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2014-2026";"Inorganic Chemistry (Q1)";"Chemistry" +4156;21101061444;"Journal of Rheumatic Diseases";journal;"2093940X, 22334718";"Korean College of Rheumatology";Yes;Yes;1,103;Q1;19;38;92;1217;305;77;3,23;32,03;39,32;0;South Korea;Asiatic Region;"Korean College of Rheumatology";"2019-2026";"Rheumatology (Q1)";"Medicine" +4157;26419;"SIAM Journal on Matrix Analysis and Applications";journal;"10957162, 08954798";"Society for Industrial and Applied Mathematics Publications";No;No;1,103;Q1;118;89;242;3566;602;242;2,54;40,07;26,47;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"1996-2026";"Analysis (Q1)";"Mathematics" +4158;21100943924;"World Journal of Men's Health";journal;"22874690, 22874208";"Korean Society for Sexual Medicine and Andrology";Yes;Yes;1,103;Q1;42;53;227;2540;981;212;3,99;47,92;23,78;0;South Korea;Asiatic Region;"Korean Society for Sexual Medicine and Andrology";"2019-2026";"Health Policy (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1); Reproductive Medicine (Q1); Urology (Q1); Aging (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4159;20031;"Academic Radiology";journal;"10766332, 18784046";"Elsevier Inc.";No;No;1,102;Q1;117;890;1515;27149;5290;1217;3,70;30,50;39,93;0;United States;Northern America;"Elsevier Inc.";"1994-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +4160;21100256955;"Advances in Differential Equations";journal;"10799389";"Khayyam Publishing, Inc.";No;No;1,102;Q1;63;24;71;886;118;71;1,50;36,92;25,93;0;United States;Northern America;"Khayyam Publishing, Inc.";"1996-2025";"Analysis (Q1); Applied Mathematics (Q1)";"Mathematics" +4161;28459;"Computational Optimization and Applications";journal;"15732894, 09266003";"Springer Netherlands";No;No;1,102;Q1;97;126;279;5213;785;275;2,60;41,37;25,67;0;Netherlands;Western Europe;"Springer Netherlands";"1992-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Control and Optimization (Q1)";"Mathematics" +4162;18159;"Computers and Electrical Engineering";journal;"00457906";"Elsevier Ltd";No;No;1,102;Q1;119;747;1871;37966;13369;1837;7,30;50,82;25,97;0;United Kingdom;Western Europe;"Elsevier Ltd";"1973-1984, 1986-2026";"Computer Science (miscellaneous) (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +4163;22645;"Geothermics";journal;"03756505";"Elsevier Ltd";No;No;1,102;Q1;110;259;633;16154;3233;631;5,09;62,37;25,80;1;United Kingdom;Western Europe;"Elsevier Ltd";"1970, 1972-1975, 1977-2026";"Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Earth and Planetary Sciences; Energy" +4164;14000155855;"International Multilingual Research Journal";journal;"19313160, 19313152";"Routledge";No;No;1,102;Q1;39;35;66;2089;275;62;4,45;59,69;67,14;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +4165;4700153607;"Journal of Curriculum Studies";journal;"13665839, 00220272";"Taylor and Francis Ltd.";Yes;No;1,102;Q1;79;87;142;5256;539;141;3,23;60,41;51,49;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1968-1977, 1981-2026";"Education (Q1)";"Social Sciences" +4166;18575;"Notre Dame Law Review";journal;"07453515";"Notre Dame Law Review";No;No;1,102;Q1;42;8;152;2805;115;150;0,82;350,63;37,50;0;United States;Northern America;"Notre Dame Law Review";"1984, 1986, 1989-1990, 1992-1993, 1995-2025";"Law (Q1)";"Social Sciences" +4167;12593;"Oncology Research";journal;"09650407, 15553906";"Tech Science Press";No;No;1,102;Q1;79;239;232;17255;1085;230;4,69;72,20;44,28;0;United States;Northern America;"Tech Science Press";"1992-2000, 2002-2026";"Medicine (miscellaneous) (Q1); Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4168;25259;"Restoration Ecology";journal;"1526100X, 10612971";"Wiley-Blackwell Publishing Ltd";No;No;1,102;Q1;131;352;747;21582;2557;742;3,30;61,31;44,99;8;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1993-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4169;20086;"Statistics in Medicine";journal;"02776715, 10970258";"John Wiley and Sons Ltd";No;No;1,102;Q1;237;393;1002;15967;2251;971;1,99;40,63;38,07;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1982-2026";"Epidemiology (Q1); Statistics and Probability (Q1)";"Mathematics; Medicine" +4170;29071;"Gerontology";journal;"14230003, 0304324X";"S. Karger AG";No;No;1,102;Q2;124;106;401;5008;1537;390;3,08;47,25;44,22;0;Switzerland;Western Europe;"S. Karger AG";"1957-2026";"Geriatrics and Gerontology (Q2); Aging (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4171;4700152495;"International Journal of Mental Health and Addiction";journal;"15571882, 15571874";"Springer New York";No;No;1,102;Q2;87;442;754;27482;3231;719;3,41;62,18;51,69;10;United States;Northern America;"Springer New York";"2006-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +4172;21100979312;"JCO Global Oncology";journal;"26878941";"Lippincott Williams and Wilkins";Yes;No;1,102;Q2;50;271;529;8415;1606;476;2,90;31,05;46,79;0;United States;Northern America;"Lippincott Williams and Wilkins";"2020-2026";"Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4173;26767;"Altex";journal;"1868596X, 18688551";"ALTEX Edition";Yes;No;1,101;Q1;74;62;165;3096;745;146;4,18;49,94;52,30;5;Germany;Western Europe;"ALTEX Edition";"2000-2026";"Medical Laboratory Technology (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q1)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +4174;29419;"Aquaculture";journal;"00448486";"Elsevier B.V.";No;No;1,101;Q1;232;1310;3523;83660;18841;3516;5,17;63,86;39,06;15;Netherlands;Western Europe;"Elsevier B.V.";"1972-2026";"Aquatic Science (Q1)";"Agricultural and Biological Sciences" +4175;21100896684;"International Journal of Pharmaceutics: X";journal;"25901567";"Elsevier B.V.";Yes;No;1,101;Q1;37;151;188;11849;1593;188;8,69;78,47;45,10;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Pharmaceutical Science (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +4176;21100383744;"Journal of Cloud Computing";journal;"2192113X";"Springer Science + Business Media";Yes;No;1,101;Q1;58;88;428;4104;3644;428;8,02;46,64;28,78;0;United States;Northern America;"Springer Science + Business Media";"2012-2026";"Computer Networks and Communications (Q1); Software (Q1)";"Computer Science" +4177;24862;"Journal of Dermatological Treatment";journal;"14711753, 09546634";"Taylor and Francis Ltd.";Yes;No;1,101;Q1;73;188;828;5442;2682;676;3,63;28,95;50,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Dermatology (Q1)";"Medicine" +4178;21101267126;"Next Energy";journal;"2949821X";"Elsevier B.V.";Yes;No;1,101;Q1;16;288;111;21159;749;108;6,75;73,47;28,42;1;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Electronic, Optical and Magnetic Materials (Q1); Energy (miscellaneous) (Q2)";"Energy; Materials Science" +4179;28007;"Security Dialogue";journal;"14603640, 09670106";"SAGE Publications Ltd";No;No;1,101;Q1;95;42;99;3591;375;99;2,88;85,50;57,14;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1970-1972, 1976-2025";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +4180;19700172804;"ACS Chemical Neuroscience";journal;"19487193";"American Chemical Society";No;No;1,100;Q1;112;384;1055;24388;4574;1048;4,37;63,51;42,18;0;United States;Northern America;"American Chemical Society";"2010-2026";"Medicine (miscellaneous) (Q1); Biochemistry (Q2); Cell Biology (Q2); Cognitive Neuroscience (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +4181;21101309429;"American Chemical Society Environmental Science and Technology Air";journal;"28371402";"American Chemical Society";No;No;1,100;Q1;12;283;138;17984;522;132;3,78;63,55;36,31;3;United States;Northern America;"American Chemical Society";"2024-2025";"Chemistry (miscellaneous) (Q1); Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1); Health, Toxicology and Mutagenesis (Q1); Pollution (Q1); Atmospheric Science (Q2); Environmental Chemistry (Q2)";"Chemistry; Earth and Planetary Sciences; Environmental Science" +4182;12100154911;"Anatomical Sciences Education";journal;"19359772, 19359780";"John Wiley & Sons Inc.";No;No;1,100;Q1;83;166;355;7801;1434;318;4,02;46,99;51,10;1;United States;Northern America;"John Wiley & Sons Inc.";"2008-2026";"Anatomy (Q1); Embryology (Q1); Histology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +4183;21100247072;"Biomaterials Science";journal;"20474849, 20474830";"Royal Society of Chemistry";No;No;1,100;Q1;120;371;1520;29059;9486;1513;5,84;78,33;44,51;2;United Kingdom;Western Europe;"Royal Society of Chemistry";"2013-2026";"Biomedical Engineering (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +4184;24859;"Journal of Dermatological Science";journal;"1873569X, 09231811";"Elsevier Ireland Ltd";No;No;1,100;Q1;120;66;267;1880;773;175;3,06;28,48;37,18;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1990-2026";"Dermatology (Q1); Biochemistry (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4185;5000155901;"Journal of Systematic Palaeontology";journal;"14780941, 14772019";"Taylor and Francis Ltd.";No;No;1,100;Q1;62;48;95;5289;278;94;2,89;110,19;27,46;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Paleontology (Q1)";"Earth and Planetary Sciences" +4186;21101021993;"APL Bioengineering";journal;"24732877";"American Institute of Physics";Yes;No;1,099;Q1;47;103;226;8338;1115;222;4,72;80,95;40,54;0;United States;Northern America;"American Institute of Physics";"2017-2026";"Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Biophysics (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +4187;21100262310;"EuroMed Journal of Business";journal;"14502194, 1758888X";"Emerald Group Publishing Ltd.";No;No;1,099;Q1;47;121;153;9955;1340;151;7,72;82,27;41,61;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2006-2026";"Business, Management and Accounting (miscellaneous) (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4188;22954;"Journal of Marketing Communications";journal;"14664445, 13527266";"Routledge";No;No;1,099;Q1;70;114;168;8545;991;159;5,07;74,96;48,99;0;United Kingdom;Western Europe;"Routledge";"1995-2026";"Business and International Management (Q1); Marketing (Q2)";"Business, Management and Accounting" +4189;24486;"Lithos";journal;"00244937, 18726143";"Elsevier B.V.";No;No;1,099;Q1;223;364;985;29734;2655;957;2,58;81,69;27,90;0;Netherlands;Western Europe;"Elsevier B.V.";"1968-2026";"Geochemistry and Petrology (Q1); Geology (Q1)";"Earth and Planetary Sciences" +4190;13241;"Nutrition, Metabolism and Cardiovascular Diseases";journal;"15903729, 09394753";"Elsevier B.V.";No;No;1,099;Q1;129;323;908;14810;3597;863;3,77;45,85;49,03;0;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Medicine; Nursing" +4191;21100464778;"Open Heart";journal;"20533624, 2398595X";"BMJ Publishing Group";Yes;No;1,099;Q1;59;243;469;7515;1468;454;3,11;30,93;30,19;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2014-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +4192;21100941739;"Journal of the Endocrine Society";journal;"24721972";"Endocrine Society";Yes;No;1,099;Q2;56;193;575;8954;1773;543;3,07;46,39;50,41;1;United States;Northern America;"Endocrine Society";"2017-2026";"Endocrinology, Diabetes and Metabolism (Q2)";"Medicine" +4193;21100791825;"Bioprinting";journal;"24058866";"Elsevier B.V.";No;No;1,098;Q1;54;79;187;7233;1585;187;8,19;91,56;44,10;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Biomedical Engineering (Q1); Biotechnology (Q1); Computer Science Applications (Q1)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Engineering" +4194;18440;"Clinics in Chest Medicine";journal;"02725231, 15578216";"W.B. Saunders";No;No;1,098;Q1;105;65;219;4856;773;194;3,18;74,71;42,47;0;United States;Northern America;"W.B. Saunders";"1980-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +4195;21100244407;"East European Politics";journal;"21599165, 21599173";"Taylor and Francis Ltd.";No;No;1,098;Q1;38;43;99;2892;386;99;2,70;67,26;45,21;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +4196;21353;"Expert Opinion on Therapeutic Patents";journal;"13543776, 17447674";"Taylor and Francis Ltd.";No;No;1,098;Q1;98;69;185;6693;929;179;4,92;97,00;35,49;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-2026";"Drug Discovery (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4197;30084;"Journal of Sex Research";journal;"00224499, 15598519";"Taylor and Francis Ltd.";No;No;1,098;Q1;145;215;328;15188;1384;314;4,03;70,64;62,92;5;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1965-2026";"Gender Studies (Q1); History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Psychology; Social Sciences" +4198;144680;"Reproductive Health";journal;"17424755";"BioMed Central Ltd";Yes;No;1,098;Q1;93;273;614;13343;2513;587;3,46;48,88;61,86;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)";"Medicine" +4199;13923;"Hippocampus";journal;"10981063, 10509631";"Wiley-Liss Inc.";No;No;1,098;Q2;180;75;200;5690;555;187;2,73;75,87;52,31;0;United States;Northern America;"Wiley-Liss Inc.";"1991-2026";"Cognitive Neuroscience (Q2)";"Neuroscience" +4200;16800154743;"Academic Pediatrics";journal;"18762859, 18762867";"Elsevier Inc.";No;No;1,097;Q1;104;217;705;5989;1782;587;2,21;27,60;66,94;4;United States;Northern America;"Elsevier Inc.";"2009-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +4201;29540;"Australian Educational Researcher";journal;"03116999, 22105328";"Springer Science and Business Media B.V.";No;No;1,097;Q1;52;208;257;11684;1168;254;4,76;56,17;71,03;3;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1985-1996, 2001, 2003-2026";"Education (Q1)";"Social Sciences" +4202;21100463829;"Chinese Journal of Population Resources and Environment";journal;"23254262, 20969589";"KeAi Communications Co.";Yes;Yes;1,097;Q1;29;51;119;2342;621;119;5,03;45,92;34,87;0;China;Asiatic Region;"KeAi Communications Co.";"1992, 2004-2013, 2015-2025";"Demography (Q1); Environmental Science (miscellaneous) (Q1); Toxicology (Q1)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +4203;21100921194;"Journal of Analysis and Testing";journal;"25094696, 2096241X";"Springer International Publishing";No;No;1,097;Q1;32;90;133;5248;1002;126;8,32;58,31;45,58;0;Switzerland;Western Europe;"Springer International Publishing";"2017-2026";"Analytical Chemistry (Q1); Electrochemistry (Q1); Instrumentation (Q1); Materials Chemistry (Q1); Spectroscopy (Q1); Environmental Chemistry (Q2)";"Chemistry; Environmental Science; Materials Science; Physics and Astronomy" +4204;21100448513;"Journal of Healthcare Leadership";journal;"11793201";"Dove Medical Press Ltd";Yes;No;1,097;Q1;30;65;104;3113;500;97;4,54;47,89;57,87;0;United Kingdom;Western Europe;"Dove Medical Press Ltd";"2014-2026";"Leadership and Management (Q1); Public Health, Environmental and Occupational Health (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Medicine; Nursing" +4205;21100901162;"Large-Scale Assessments in Education";journal;"21960739";"SpringerOpen";Yes;Yes;1,097;Q1;33;35;112;1960;414;109;3,54;56,00;44,87;1;United States;Northern America;"SpringerOpen";"2013-2026";"Education (Q1)";"Social Sciences" +4206;19700174688;"Medical Education Online";journal;"10872981";"Taylor and Francis Ltd.";Yes;No;1,097;Q1;61;105;325;4179;1527;315;4,89;39,80;52,83;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006, 2009-2026";"Education (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +4207;21101186481;"Natural Hazards Research";journal;"26665921";"KeAi Communications Co.";Yes;No;1,097;Q1;26;80;166;5301;1084;162;6,39;66,26;25,10;1;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +4208;5800169457;"Public Performance and Management Review";journal;"15309576, 15579271";"Routledge";No;No;1,097;Q1;48;79;164;6726;730;164;4,06;85,14;30,49;2;United States;Northern America;"Routledge";"2007-2008, 2011-2026";"Public Administration (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Social Sciences" +4209;21101065044;"Sustainable Futures";journal;"26661888";"Elsevier B.V.";Yes;No;1,097;Q1;37;1139;329;90914;2782;328;8,43;79,82;35,84;5;United Kingdom;Western Europe;"Elsevier B.V.";"2019-2026";"Management of Technology and Innovation (Q1); Management Science and Operations Research (Q1); Sociology and Political Science (Q1)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +4210;23651;"System Dynamics Review";journal;"10991727, 08837066";"John Wiley and Sons Ltd";No;No;1,097;Q1;72;16;75;620;301;66;4,48;38,75;27,27;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1985-2026";"Management of Technology and Innovation (Q1); Modeling and Simulation (Q1); Social Sciences (miscellaneous) (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Mathematics; Social Sciences" +4211;19700201635;"China Agricultural Economic Review";journal;"1756137X, 17561388";"Emarald Group Publishing Ltd";No;No;1,096;Q1;52;77;132;3807;826;129;5,49;49,44;40,00;0;United Kingdom;Western Europe;"Emarald Group Publishing Ltd";"2008-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Economics and Econometrics (Q1)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +4212;59665;"Chinese Journal of Natural Medicines";journal;"18755364, 20956975";"China Pharmaceutical University";No;No;1,096;Q1;60;133;286;7581;1738;266;6,81;57,00;44,72;0;China;Asiatic Region;"China Pharmaceutical University";"2004-2026";"Complementary and Alternative Medicine (Q1); Drug Discovery (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4213;19400158557;"European Transport Research Review";journal;"18668887, 18670717";"Springer Verlag";Yes;No;1,096;Q1;58;65;166;3959;1080;162;6,25;60,91;32,48;4;Germany;Western Europe;"Springer Verlag";"2009-2026";"Automotive Engineering (Q1); Mechanical Engineering (Q1); Transportation (Q1)";"Engineering; Social Sciences" +4214;26803;"Journal of Pragmatics";journal;"03782166";"Elsevier B.V.";No;No;1,096;Q1;136;140;446;8702;1161;417;2,55;62,16;58,47;0;Netherlands;Western Europe;"Elsevier B.V.";"1977-2026";"Artificial Intelligence (Q1); Linguistics and Language (Q1)";"Computer Science; Social Sciences" +4215;25055;"Mathematical Research Letters";journal;"10732780, 1945001X";"International Press, Inc.";No;No;1,096;Q1;64;66;204;1905;156;204;0,75;28,86;16,00;0;United States;Northern America;"International Press, Inc.";"1995-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +4216;21100464901;"Neurophotonics";journal;"2329423X, 23294248";"SPIE";Yes;No;1,096;Q1;60;89;260;6134;1053;244;3,47;68,92;36,80;0;United States;Northern America;"SPIE";"2014-2025";"Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Neuroscience (miscellaneous) (Q2)";"Health Professions; Medicine; Neuroscience" +4217;18875;"Seminars in Diagnostic Pathology";journal;"19301111, 07402570";"W.B. Saunders";No;No;1,096;Q1;84;51;136;2373;558;135;4,10;46,53;50,51;0;United States;Northern America;"W.B. Saunders";"1984-2026";"Pathology and Forensic Medicine (Q1)";"Medicine" +4218;21100975562;"Sports Coaching Review";journal;"21640637, 21640629";"Taylor and Francis Ltd.";No;No;1,096;Q1;33;61;81;3511;339;80;3,70;57,56;35,51;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Business and International Management (Q1); Social Sciences (miscellaneous) (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Social Sciences" +4219;15700154704;"Oncology Reviews";journal;"19705557, 19705565";"Frontiers Media SA";Yes;No;1,096;Q2;35;46;58;4210;290;58;3,86;91,52;41,91;0;Switzerland;Western Europe;"Frontiers Media SA";"2007-2026";"Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4220;14283;"Proteins: Structure, Function and Genetics";journal;"10970134, 08873585";"";No;No;1,096;Q2;214;184;436;11241;1301;435;3,30;61,09;37,67;0;United States;Northern America;"";"1986-2026";"Biochemistry (Q2); Genetics (Q2); Molecular Biology (Q2); Structural Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4221;21100307458;"Ecosphere";journal;"21508925";"Wiley-Blackwell";Yes;No;1,095;Q1;105;363;1132;29421;3820;1131;3,02;81,05;42,01;5;United States;Northern America;"Wiley-Blackwell";"2010-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4222;18643;"Journal of Computing in Civil Engineering";journal;"08873801, 19435487";"American Society of Civil Engineers (ASCE)";No;No;1,095;Q1;114;130;166;6637;1150;165;6,78;51,05;31,34;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1987-2026";"Civil and Structural Engineering (Q1); Computer Science Applications (Q1)";"Computer Science; Engineering" +4223;26072;"Seminars in Thrombosis and Hemostasis";journal;"10989064, 00946176";"Thieme Medical Publishers, Inc.";No;No;1,095;Q1;119;94;384;6858;1265;294;3,44;72,96;47,69;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1974-2026";"Cardiology and Cardiovascular Medicine (Q1); Hematology (Q1)";"Medicine" +4224;19505;"Climacteric";journal;"14730804, 13697137";"Taylor and Francis Ltd.";No;No;1,094;Q1;91;111;264;4752;1148;229;4,47;42,81;59,21;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)";"Medicine" +4225;21100200427;"Human Vaccines and Immunotherapeutics";journal;"21645515, 2164554X";"Taylor and Francis Ltd.";Yes;No;1,094;Q1;113;553;1711;27829;6307;1475;3,68;50,32;50,67;3;United States;Northern America;"Taylor and Francis Ltd.";"2012-2026";"Medicine (miscellaneous) (Q1); Pharmacology (Q1); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +4226;29543;"Australian Journal of Education";journal;"00049441, 20505884";"SAGE Publications Inc.";No;No;1,093;Q1;48;20;56;851;225;46;2,29;42,55;76,36;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1975, 1992-2026";"Education (Q1)";"Social Sciences" +4227;24481;"Bulletin of the London Mathematical Society";journal;"14692120, 00246093";"John Wiley and Sons Ltd";No;No;1,093;Q1;55;262;585;6184;552;585;0,91;23,60;21,01;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1969-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +4228;21100464956;"Exposure and Health";journal;"24519766, 24519685";"Springer";No;No;1,093;Q1;60;94;221;5981;1164;220;5,35;63,63;48,18;1;Netherlands;Western Europe;"Springer";"2015-2026";"Pollution (Q1); Public Health, Environmental and Occupational Health (Q1); Water Science and Technology (Q1); Health, Toxicology and Mutagenesis (Q2)";"Environmental Science; Medicine" +4229;16246;"Journal of Alzheimer's Disease";journal;"13872877, 18758908";"SAGE Publications Ltd";No;No;1,093;Q1;198;819;2381;40013;8544;2355;3,22;48,86;46,68;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1998-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Geriatrics and Gerontology (Q2); Neuroscience (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Neuroscience; Psychology" +4230;21100299417;"Young Consumers";journal;"17473616, 17587212";"Emerald Group Publishing Ltd.";No;No;1,093;Q1;50;84;140;6628;1167;139;8,30;78,90;46,54;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2002-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Life-span and Life-course Studies (Q1)";"Economics, Econometrics and Finance; Social Sciences" +4231;19400158465;"Asia Pacific Journal of Education";journal;"02188791, 17426855";"Routledge";No;No;1,092;Q1;46;177;234;10397;1177;228;5,03;58,74;47,03;4;United Kingdom;Western Europe;"Routledge";"2008-2026";"Education (Q1)";"Social Sciences" +4232;21101140437;"Energy Advances";journal;"27531457";"Royal Society of Chemistry";Yes;No;1,092;Q1;27;77;486;5816;2783;480;5,66;75,53;24,28;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2022-2026";"Energy Engineering and Power Technology (Q1); Energy (miscellaneous) (Q2); Fuel Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy" +4233;28332;"Gastroenterology Clinics of North America";journal;"08898553, 15581942";"W.B. Saunders";No;No;1,092;Q1;103;68;180;4182;598;149;3,13;61,50;52,80;0;United States;Northern America;"W.B. Saunders";"1987-2026";"Gastroenterology (Q1)";"Medicine" +4234;36431;"Poultry Science";journal;"15253171, 00325791";"Elsevier Inc.";Yes;No;1,092;Q1;192;1564;2898;79965;14626;2874;4,87;51,13;43,80;2;United States;Northern America;"Elsevier Inc.";"1953, 1955-1957, 1959-2026";"Animal Science and Zoology (Q1); Medicine (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Medicine" +4235;28945;"Industrial and Corporate Change";journal;"14643650, 09606491";"Oxford University Press";No;No;1,091;Q1;137;60;183;4333;576;183;3,10;72,22;23,18;8;United Kingdom;Western Europe;"Oxford University Press";"1992-2026";"Economics and Econometrics (Q1); Management of Technology and Innovation (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4236;22743;"International Environmental Agreements: Politics, Law and Economics";journal;"15679764, 15731553";"Springer Netherlands";No;No;1,091;Q1;58;38;96;2618;401;94;3,97;68,89;49,12;4;Netherlands;Western Europe;"Springer Netherlands";"2002-2026";"Economics and Econometrics (Q1); Law (Q1); Political Science and International Relations (Q1)";"Economics, Econometrics and Finance; Social Sciences" +4237;19491;"Journal of Higher Education Policy and Management";journal;"14699508, 1360080X";"Routledge";No;No;1,091;Q1;64;60;127;2563;545;114;4,38;42,72;61,43;0;United Kingdom;Western Europe;"Routledge";"2003-2026";"Education (Q1); Public Administration (Q1)";"Social Sciences" +4238;7000153208;"Service Business";journal;"18628508, 18628516";"Springer Verlag";No;No;1,091;Q1;54;27;105;2245;671;104;7,81;83,15;38,03;0;Germany;Western Europe;"Springer Verlag";"2007-2026";"Business and International Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +4239;21101167236;"Sustainable Chemistry for Climate Action";journal;"27728269";"Elsevier B.V.";Yes;No;1,091;Q1;15;110;45;9324;398;45;9,10;84,76;32,40;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Environmental Chemistry (Q2)";"Chemistry; Environmental Science; Materials Science" +4240;21100404576;"2D Materials";journal;"20531583";"IOP Publishing Ltd.";No;No;1,090;Q1;114;143;466;10793;1833;462;3,85;75,48;27,00;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2014-2025";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +4241;21101183778;"Current Research in Neurobiology";journal;"2665945X";"Elsevier B.V.";Yes;No;1,090;Q1;15;8;102;529;345;100;2,91;66,13;38,78;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Behavioral Neuroscience (Q1); Bioengineering (Q1); Neurology (clinical) (Q1); Cognitive Neuroscience (Q2); Developmental Neuroscience (Q2); Neuroscience (miscellaneous) (Q2)";"Chemical Engineering; Medicine; Neuroscience" +4242;20500195056;"Journal of Epidemiology and Global Health";journal;"22106014, 22106006";"Springer Science and Business Media B.V.";Yes;No;1,090;Q1;44;144;293;5625;1086;278;3,96;39,06;39,61;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2011-2026";"Epidemiology (Q1)";"Medicine" +4243;20440;"Journal of the American College of Surgeons";journal;"18791190, 10727515";"Lippincott Williams and Wilkins";No;No;1,090;Q1;218;312;1039;1798;2121;666;1,90;5,76;39,50;0;United States;Northern America;"Lippincott Williams and Wilkins";"1994-2026";"Surgery (Q1)";"Medicine" +4244;21101165606;"Telematics and Informatics Reports";journal;"27725030";"Elsevier B.V.";Yes;No;1,090;Q1;27;92;165;6335;1490;164;8,92;68,86;32,68;1;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Computer Networks and Communications (Q1); Engineering (miscellaneous) (Q1); Human-Computer Interaction (Q1)";"Computer Science; Engineering" +4245;29627;"Current Opinion in Critical Care";journal;"15317072, 10705295";"Lippincott Williams and Wilkins";No;No;1,089;Q1;109;113;296;5649;1099;270;3,60;49,99;34,60;0;United States;Northern America;"Lippincott Williams and Wilkins";"1996-2026";"Critical Care and Intensive Care Medicine (Q1)";"Medicine" +4246;21100792085;"Media and Communication";journal;"21832439";"Cogitatio Press";Yes;No;1,089;Q1;53;151;404;8910;1526;359;3,43;59,01;52,51;3;Portugal;Western Europe;"Cogitatio Press";"2013-2026";"Communication (Q1)";"Social Sciences" +4247;17697;"Public Health";journal;"00333506, 14765616";"Elsevier B.V.";Yes;No;1,089;Q1;107;458;1077;19760;3764;988;3,46;43,14;51,20;10;Netherlands;Western Europe;"Elsevier B.V.";"1888-1913, 1915-2026";"Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4248;3500148027;"Science as Culture";journal;"14701189, 09505431";"Routledge";No;No;1,089;Q1;56;30;76;1845;269;73;2,18;61,50;47,06;0;United Kingdom;Western Europe;"Routledge";"1987-2026";"Biomedical Engineering (Q1); Biotechnology (Q1); Cultural Studies (Q1); Health (social science) (Q1); History and Philosophy of Science (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Biochemistry, Genetics and Molecular Biology; Engineering; Social Sciences" +4249;21101274001;"Substance Use and Addiction Journal";journal;"29767342, 29767350";"SAGE Publications Inc.";No;No;1,089;Q1;66;114;291;4911;832;269;2,46;43,08;64,81;3;United Kingdom;Western Europe;"SAGE Publications Inc.";"2024-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)";"Medicine" +4250;20864;"Transportation";journal;"00494488, 15729435";"Springer Netherlands";No;No;1,089;Q1;127;213;303;13670;1568;301;4,78;64,18;31,20;5;Netherlands;Western Europe;"Springer Netherlands";"1972-2026";"Civil and Structural Engineering (Q1); Development (Q1); Transportation (Q1)";"Engineering; Social Sciences" +4251;21100327967;"Trends in Hearing";journal;"23312165";"SAGE Publications Inc.";Yes;No;1,089;Q1;72;67;191;4268;724;189;3,64;63,70;41,05;0;United States;Northern America;"SAGE Publications Inc.";"2014-2026";"Otorhinolaryngology (Q1); Speech and Hearing (Q1)";"Health Professions; Medicine" +4252;21101183612;"Al-Manahij: Jurnal Kajian Hukum Islam";journal;"19786670, 25794167";"Universitas Islam Negeri Profesor Kiai Haji Saifuddin Zuhri Purwokerto";Yes;No;1,088;Q1;15;21;60;1322;305;60;6,41;62,95;20,93;0;Indonesia;Asiatic Region;"Universitas Islam Negeri Profesor Kiai Haji Saifuddin Zuhri Purwokerto";"2019-2025";"Law (Q1); Religious Studies (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +4253;27856;"BIT Numerical Mathematics";journal;"15729125, 00063835";"Springer Netherlands";No;No;1,088;Q1;69;50;172;1625;360;172;1,65;32,50;24,43;0;Netherlands;Western Europe;"Springer Netherlands";"1961-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Computer Networks and Communications (Q1); Software (Q1)";"Computer Science; Mathematics" +4254;20532;"Journal of Air Transport Management";journal;"09696997";"Elsevier Ltd";No;No;1,088;Q1;107;125;353;7324;2040;352;5,68;58,59;31,07;1;United Kingdom;Western Europe;"Elsevier Ltd";"1994-1995, 1997-2026";"Law (Q1); Management, Monitoring, Policy and Law (Q1); Strategy and Management (Q1); Transportation (Q1)";"Business, Management and Accounting; Environmental Science; Social Sciences" +4255;110112;"Journal of Immunotherapy";journal;"15249557, 15374513";"Lippincott Williams and Wilkins";No;No;1,088;Q1;111;45;145;1740;426;145;2,75;38,67;40,59;0;United States;Northern America;"Lippincott Williams and Wilkins";"1991-2026";"Pharmacology (Q1); Cancer Research (Q2); Immunology (Q2); Immunology and Allergy (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +4256;4000149610;"Politics";journal;"14679256, 02633957";"SAGE Publications Inc.";No;No;1,088;Q1;50;74;110;4742;463;110;3,96;64,08;33,33;5;United Kingdom;Western Europe;"SAGE Publications Inc.";"1966-1995, 1997, 2006-2026";"Political Science and International Relations (Q1)";"Social Sciences" +4257;145078;"Accounting Forum";journal;"01559982, 14676303";"Taylor and Francis Ltd.";No;No;1,087;Q1;70;60;75;4467;434;72;5,81;74,45;35,95;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Accounting (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4258;17700156425;"Handbook of Numerical Analysis";book series;"15708659";"Elsevier B.V.";No;No;1,087;Q1;41;7;42;654;135;42;3,35;93,43;18,52;0;Netherlands;Western Europe;"Elsevier B.V.";"1990-1991, 1994, 1996-1998, 2000, 2002-2005, 2009, 2011, 2016-2025";"Applied Mathematics (Q1); Computational Mathematics (Q1); Modeling and Simulation (Q1); Numerical Analysis (Q1)";"Mathematics" +4259;26005;"IEEE Electron Device Letters";journal;"07413106, 15580563";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,087;Q1;184;557;1599;13795;7605;1591;4,65;24,77;27,93;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1980-2026";"Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Engineering; Materials Science" +4260;14676;"Infection";journal;"03008126, 14390973";"Springer Science and Business Media Deutschland GmbH";No;No;1,087;Q1;98;304;640;10932;2106;566;3,46;35,96;44,42;6;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1973-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q1)";"Medicine" +4261;16521;"Journal of Bridge Engineering";journal;"10840702, 19435592";"American Society of Civil Engineers (ASCE)";No;No;1,087;Q1;112;114;450;5018;1989;446;4,31;44,02;24,76;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1996-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1)";"Engineering" +4262;21100237615;"Progress of Theoretical and Experimental Physics";journal;"20503911";"Oxford University Press";Yes;No;1,087;Q1;59;178;527;9058;1727;520;1,79;50,89;16,42;0;United Kingdom;Western Europe;"Oxford University Press";"2012-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +4263;19600166418;"Tax Policy and the Economy";book series;"15372650, 08928649";"University of Chicago Press";No;No;1,087;Q1;20;6;19;181;33;11;1,62;30,17;35,71;0;United States;Northern America;"University of Chicago Press";"2009-2025";"Economics and Econometrics (Q1); Finance (Q1)";"Economics, Econometrics and Finance" +4264;13516;"Ultrasonics";journal;"18749968, 0041624X";"Elsevier B.V.";No;No;1,087;Q1;123;260;682;11541;3689;682;5,53;44,39;29,71;0;Netherlands;Western Europe;"Elsevier B.V.";"1963-2026";"Acoustics and Ultrasonics (Q1)";"Physics and Astronomy" +4265;21100206283;"Journal of Bone Oncology";journal;"22121374";"Elsevier GmbH";Yes;No;1,087;Q2;46;79;172;4116;712;171;3,94;52,10;35,65;0;Germany;Western Europe;"Elsevier GmbH";"2012-2026";"Oncology (Q2)";"Medicine" +4266;21100782678;"Agriculture and Food Security";journal;"20487010";"BioMed Central Ltd";Yes;No;1,086;Q1;67;47;176;3165;1314;173;6,89;67,34;36,92;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2012-2026";"Agronomy and Crop Science (Q1); Ecology (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4267;19900191746;"Asia-Pacific Journal of Business Administration";journal;"17574331, 17574323";"Emerald Group Publishing Ltd.";No;No;1,086;Q1;43;105;135;10733;1175;134;8,50;102,22;36,04;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2026";"Business, Management and Accounting (miscellaneous) (Q1); Public Administration (Q1)";"Business, Management and Accounting; Social Sciences" +4268;14386;"CNS Spectrums";journal;"10928529, 21656509";"Cambridge University Press";Yes;No;1,086;Q1;100;92;282;5350;975;240;3,32;58,15;44,32;0;United Kingdom;Western Europe;"Cambridge University Press";"1996-2026";"Neurology (clinical) (Q1); Psychiatry and Mental Health (Q2)";"Medicine" +4269;19700201682;"International Journal of Smart and Nano Materials";journal;"19475411, 1947542X";"Taylor and Francis Ltd.";Yes;No;1,086;Q1;42;36;104;3680;682;104;6,27;102,22;33,93;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +4270;21101204432;"Sustainable Chemistry for the Environment";journal;"29498392";"Elsevier B.V.";Yes;No;1,086;Q1;21;108;185;8655;1431;185;7,74;80,14;37,44;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Environmental Chemistry (Q2)";"Chemistry; Environmental Science; Materials Science" +4271;20122;"Women's Health Issues";journal;"10493867, 18784321";"Elsevier Inc.";No;No;1,086;Q1;80;80;234;3141;711;206;2,39;39,26;83,48;0;United States;Northern America;"Elsevier Inc.";"1990-2026";"Health (social science) (Q1); Maternity and Midwifery (Q1); Obstetrics and Gynecology (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Nursing; Social Sciences" +4272;19400157210;"Biochip Journal";journal;"20927843, 19760280";"SpringerOpen";No;No;1,085;Q1;42;59;135;3723;885;135;6,72;63,10;36,01;1;Germany;Western Europe;"SpringerOpen";"2008-2026";"Bioengineering (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Electrical and Electronic Engineering (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering" +4273;21100869488;"Bioresources and Bioprocessing";journal;"21974365";"Springer";Yes;No;1,085;Q1;67;153;330;11209;2420;330;6,92;73,26;39,62;0;Germany;Western Europe;"Springer";"2014-2026";"Biomedical Engineering (Q1); Biotechnology (Q1); Food Science (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Energy; Engineering" +4274;21101095931;"Complex and Intelligent Systems";journal;"21994536, 21986053";"Springer International Publishing AG";Yes;No;1,085;Q1;73;486;1204;25428;8096;1194;6,26;52,32;31,88;0;Switzerland;Western Europe;"Springer International Publishing AG";"2019-2026";"Artificial Intelligence (Q1); Computational Mathematics (Q1); Engineering (miscellaneous) (Q1); Information Systems (Q1)";"Computer Science; Engineering; Mathematics" +4275;21101067145;"Environmental Science: Atmospheres";journal;"26343606";"Royal Society of Chemistry";Yes;No;1,085;Q1;24;77;342;5421;1311;333;3,49;70,40;36,15;1;United Kingdom;Western Europe;"Royal Society of Chemistry";"2021-2026";"Analytical Chemistry (Q1); Chemistry (miscellaneous) (Q1); Pollution (Q1); Environmental Chemistry (Q2)";"Chemistry; Environmental Science" +4276;19700173130;"Food and Nutrition Research";journal;"1654661X, 16546628";"Swedish Nutrition Foundation";Yes;No;1,085;Q1;68;48;204;2248;973;204;4,42;46,83;59,31;1;United Kingdom;Western Europe;"Swedish Nutrition Foundation";"2008-2026";"Food Science (Q1); Nutrition and Dietetics (Q1); Public Health, Environmental and Occupational Health (Q1)";"Agricultural and Biological Sciences; Medicine; Nursing" +4277;21100820630;"Translation Spaces (The Netherlands)";journal;"22113711, 2211372X";"John Benjamins Publishing Company";No;No;1,085;Q1;24;26;46;1390;180;44;2,88;53,46;55,26;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2016-2026";"Communication (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +4278;26492;"Waste Management and Research";journal;"0734242X, 10963669";"SAGE Publications Ltd";No;No;1,085;Q1;116;176;429;12132;2720;394;6,54;68,93;36,68;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1983-2026";"Environmental Engineering (Q1); Pollution (Q1); Waste Management and Disposal (Q1)";"Environmental Science" +4279;20153;"AIDS and Behavior";journal;"10907165, 15733254";"Springer New York";No;No;1,084;Q1;139;420;1069;20838;3216;1060;2,79;49,61;57,21;5;United States;Northern America;"Springer New York";"1997-2026";"Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1); Social Psychology (Q1)";"Medicine; Psychology" +4280;21100817408;"Annals of Cardiothoracic Surgery";journal;"23041021, 2225319X";"AME Publishing Company";No;No;1,084;Q1;54;74;263;1524;793;219;2,89;20,59;22,56;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2016-2026";"Cardiology and Cardiovascular Medicine (Q1); Surgery (Q1)";"Medicine" +4281;14947;"Bulletin of Engineering Geology and the Environment";journal;"14359537, 14359529";"Springer Verlag";No;No;1,084;Q1;103;634;1478;34488;7418;1476;4,93;54,40;27,10;0;Germany;Western Europe;"Springer Verlag";"1984, 1996, 1998-2026";"Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences" +4282;21101097218;"Climate Change Ecology";journal;"26669005";"Elsevier Inc.";Yes;No;1,084;Q1;16;14;40;1368;168;38;3,22;97,71;47,27;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Ecological Modeling (Q1); Ecology (Q1); Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q2)";"Environmental Science" +4283;25175;"Infancy";journal;"15327078, 15250008";"Wiley-Blackwell";No;No;1,084;Q1;90;94;163;6781;468;161;2,89;72,14;73,45;1;United States;Northern America;"Wiley-Blackwell";"2000-2026";"Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine; Psychology" +4284;23828;"Journal of Cardiology";journal;"18764738, 09145087";"Japanese College of Cardiology (Nippon-Sinzobyo-Gakkai)";No;No;1,084;Q1;70;220;484;7542;1593;436;3,37;34,28;23,14;0;Japan;Asiatic Region;"Japanese College of Cardiology (Nippon-Sinzobyo-Gakkai)";"1987-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +4285;21100199856;"Journal of Information Technology Education: Research";journal;"15393585, 15479714";"Informing Science Institute";Yes;No;1,084;Q1;42;44;78;3151;484;78;6,11;71,61;52,78;0;United States;Northern America;"Informing Science Institute";"2011-2026";"Computer Science (miscellaneous) (Q1); Education (Q1); E-learning (Q2)";"Computer Science; Social Sciences" +4286;50090;"Journal of the Geological Society";journal;"2041479X, 00167649";"Geological Society of London";No;No;1,084;Q1;140;150;312;13689;963;308;2,92;91,26;23,91;0;United Kingdom;Western Europe;"Geological Society of London";"1845-1931, 1933-2026";"Geology (Q1)";"Earth and Planetary Sciences" +4287;21101192778;"Kidney Diseases";journal;"22969381, 22969357";"S. Karger AG";Yes;No;1,084;Q1;31;71;143;3105;590;142;3,74;43,73;48,73;0;Switzerland;Western Europe;"S. Karger AG";"2019-2026";"Nephrology (Q1)";"Medicine" +4288;21101256429;"Pharmaceutical Science Advances";journal;"27732169";"Elsevier B.V.";Yes;No;1,084;Q1;12;36;45;2300;338;43;7,51;63,89;42,93;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Pharmaceutical Science (Q1); Pharmacology (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +4289;22083;"Cytokine";journal;"10960023, 10434666";"Academic Press";No;No;1,083;Q1;147;240;807;14240;3382;798;3,76;59,33;46,50;0;United States;Northern America;"Academic Press";"1989-2026";"Hematology (Q1); Biochemistry (Q2); Immunology (Q2); Immunology and Allergy (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +4290;16318;"IEEE Transactions on Biomedical Engineering";journal;"00189294, 15582531";"IEEE Computer Society";No;No;1,083;Q1;255;459;1021;22225;5651;1019;4,60;48,42;30,78;0;United States;Northern America;"IEEE Computer Society";"1963-2026";"Biomedical Engineering (Q1)";"Engineering" +4291;2700147401;"Journal of Immigrant and Minority Health";journal;"15571912, 15571920";"Springer New York";No;No;1,083;Q1;84;176;415;6925;1300;414;2,49;39,35;70,45;1;United States;Northern America;"Springer New York";"2006-2026";"Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2)";"Medicine" +4292;11300153602;"Parenting";journal;"15295192, 15327922";"Psychology Press Ltd";No;No;1,083;Q1;64;35;40;1965;157;40;3,29;56,14;74,83;1;United Kingdom;Western Europe;"Psychology Press Ltd";"2001-2026";"Developmental and Educational Psychology (Q1); Education (Q1); Social Psychology (Q1)";"Psychology; Social Sciences" +4293;19700174999;"Patient";journal;"11781653, 11781661";"";No;No;1,083;Q1;60;61;161;2911;548;150;3,73;47,72;66,59;0;Switzerland;Western Europe;"";"2009-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +4294;20200;"Travel Medicine and Infectious Disease";journal;"18730442, 14778939";"Elsevier Inc.";Yes;No;1,083;Q1;80;150;502;5428;1444;279;3,17;36,19;50,64;5;United States;Northern America;"Elsevier Inc.";"2003-2026";"Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4295;5100152905;"Clinical Neuropsychiatry";journal;"23850787, 17244935";"Giovanni Fioriti Editore";Yes;No;1,083;Q2;42;57;149;3311;497;126;3,34;58,09;52,72;0;Italy;Western Europe;"Giovanni Fioriti Editore";"2006-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +4296;21101087137;"Animal Models and Experimental Medicine";journal;"25762095, 20965451";"John Wiley and Sons Inc";Yes;No;1,082;Q1;36;200;219;11155;911;203;3,82;55,78;40,24;0;United States;Northern America;"John Wiley and Sons Inc";"2018-2026";"Medical Laboratory Technology (Q1); Medicine (miscellaneous) (Q1); Veterinary (miscellaneous) (Q1); Biochemistry (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Veterinary" +4297;21100948915;"MDM Policy and Practice";journal;"23814683";"SAGE Publications Inc.";Yes;No;1,082;Q1;22;34;95;1472;270;94;2,23;43,29;63,32;1;United States;Northern America;"SAGE Publications Inc.";"2016-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4298;21101303670;"Mesopotamian Journal of Computer Science";journal;"29586631";"Mesopotamian Academic Press";No;No;1,082;Q1;12;28;37;1403;341;36;9,63;50,11;32,47;0;Iraq;Middle East;"Mesopotamian Academic Press";"2021-2025";"Computer Science Applications (Q1); Computer Science (miscellaneous) (Q1); Computer Vision and Pattern Recognition (Q1)";"Computer Science" +4299;18001;"Neuropsychobiology";journal;"0302282X, 14230224";"S. Karger AG";No;No;1,082;Q1;97;31;102;1916;406;100;4,07;61,81;43,64;1;Switzerland;Western Europe;"S. Karger AG";"1975-1990, 1992-2026";"Neuropsychology and Physiological Psychology (Q1); Biological Psychiatry (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Neuroscience; Psychology" +4300;21101068931;"Radiology: Imaging Cancer";journal;"2638616X";"Radiological Society of North America Inc.";No;No;1,082;Q1;30;161;231;3058;566;105;2,62;18,99;39,77;0;United States;Northern America;"Radiological Society of North America Inc.";"2019-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)";"Medicine" +4301;5700166815;"Sexuality Research and Social Policy";journal;"15536610, 18689884";"Springer New York";No;No;1,082;Q1;61;296;393;19698;1634;392;4,03;66,55;56,55;10;United States;Northern America;"Springer New York";"2005-2006, 2008-2026";"Gender Studies (Q1); Health (social science) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +4302;17508;"Social Development";journal;"14679507, 0961205X";"Wiley-Blackwell Publishing Ltd";No;No;1,082;Q1;120;78;217;5222;604;216;2,45;66,95;74,17;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2026";"Developmental and Educational Psychology (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +4303;21100258398;"MicrobiologyOpen";journal;"20458827";"John Wiley and Sons Inc";Yes;No;1,082;Q2;71;164;165;10310;728;138;2,98;62,87;45,30;0;United States;Northern America;"John Wiley and Sons Inc";"2012-2026";"Microbiology (Q2)";"Immunology and Microbiology" +4304;21100262580;"Case Studies in Thermal Engineering";journal;"2214157X";"Elsevier Ltd";Yes;No;1,081;Q1;101;925;3790;41199;26271;3790;7,00;44,54;24,82;0;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2025";"Engineering (miscellaneous) (Q1); Fluid Flow and Transfer Processes (Q1)";"Chemical Engineering; Engineering" +4305;17800156748;"Groups, Geometry, and Dynamics";journal;"16617207, 16617215";"European Mathematical Society Publishing House";Yes;Yes;1,081;Q1;25;50;151;1388;142;151;0,93;27,76;16,47;0;Germany;Western Europe;"European Mathematical Society Publishing House";"2009-2025";"Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1)";"Mathematics" +4306;21101182768;"Hygiene and Environmental Health Advances";journal;"27730492";"Elsevier B.V.";Yes;No;1,081;Q1;15;42;109;2948;539;105;5,39;70,19;48,87;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Environmental Science (miscellaneous) (Q1); Epidemiology (Q2)";"Environmental Science; Medicine" +4307;16186;"International Journal of Social Psychiatry";journal;"00207640, 17412854";"SAGE Publications Ltd";No;No;1,081;Q1;90;224;639;11164;2061;543;2,93;49,84;50,75;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1955-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)";"Medicine" +4308;21101063838;"Regional Sustainability";journal;"2666660X, 20970129";"KeAi Communications Co.";Yes;Yes;1,081;Q1;27;37;106;2313;733;106;7,14;62,51;28,91;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2025";"Development (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Social Sciences" +4309;23080;"Advances in Computers";book series;"00652458";"Academic Press Inc.";No;No;1,080;Q1;49;89;138;3379;208;2;1,65;37,97;41,41;0;United States;Northern America;"Academic Press Inc.";"1960-1962, 1964, 1966-1967, 1969-1973, 1975-2000, 2002-2026";"Computer Science (miscellaneous) (Q1)";"Computer Science" +4310;21101176928;"Circular Economy and Sustainability";journal;"27305988, 2730597X";"Springer Nature";No;No;1,080;Q1;39;290;316;22554;2367;314;7,03;77,77;41,62;1;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Environmental Science" +4311;19200157056;"Journal of Earth Science";journal;"1867111X, 1674487X";"China University of Geosciences";No;No;1,080;Q1;56;193;483;12286;1861;420;4,22;63,66;30,25;0;China;Asiatic Region;"China University of Geosciences";"2009-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +4312;23373;"Journal of Environmental Planning and Management";journal;"13600559, 09640568";"Routledge";No;No;1,080;Q1;100;233;427;16940;2589;427;5,82;72,70;47,57;10;United Kingdom;Western Europe;"Routledge";"1992-2026";"Environmental Science (miscellaneous) (Q1); Fluid Flow and Transfer Processes (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Water Science and Technology (Q1)";"Chemical Engineering; Environmental Science; Social Sciences" +4313;5700177114;"Language Awareness";journal;"17477565, 09658416";"Routledge";No;No;1,080;Q1;55;77;103;4643;420;99;4,11;60,30;58,54;0;United Kingdom;Western Europe;"Routledge";"1992-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +4314;5800169479;"Representation";journal;"17494001, 00344893";"Taylor and Francis Ltd.";No;No;1,080;Q1;34;60;114;3595;279;98;2,45;59,92;35,71;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1960-1986, 1988-2026";"Sociology and Political Science (Q1)";"Social Sciences" +4315;21101070986;"Conservation Science and Practice";journal;"25784854";"John Wiley and Sons Ltd";Yes;No;1,079;Q1;44;225;664;14979;2266;632;2,96;66,57;43,55;2;United States;Northern America;"John Wiley and Sons Ltd";"2019-2026";"Ecology (Q1); Environmental Science (miscellaneous) (Q1); Nature and Landscape Conservation (Q1); Global and Planetary Change (Q2)";"Environmental Science" +4316;21101227952;"Discovery Immunology";journal;"27542483";"Oxford University Press";Yes;No;1,079;Q1;9;20;57;1132;180;53;3,23;56,60;50,82;0;United Kingdom;Western Europe;"Oxford University Press";"2022-2026";"Immunology and Microbiology (miscellaneous) (Q1); Immunology (Q2)";"Immunology and Microbiology" +4317;19700175114;"Frontiers in Integrative Neuroscience";journal;"16625145";"Frontiers Media SA";Yes;No;1,079;Q1;86;25;269;2092;928;233;2,53;83,68;45,83;0;Switzerland;Western Europe;"Frontiers Media SA";"2007-2026";"Sensory Systems (Q1); Cellular and Molecular Neuroscience (Q2); Cognitive Neuroscience (Q2)";"Neuroscience" +4318;19724;"Helicobacter";journal;"10834389, 15235378";"Wiley-Blackwell Publishing Ltd";No;No;1,079;Q1;99;88;276;3702;1260;262;4,58;42,07;45,43;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Gastroenterology (Q1); Infectious Diseases (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +4319;13507;"International Journal of Climatology";journal;"10970088, 08998418";"John Wiley and Sons Ltd";No;No;1,079;Q1;211;403;1390;26123;5090;1390;3,26;64,82;32,79;9;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1989-2026";"Statistics and Probability (Q1); Atmospheric Science (Q2)";"Earth and Planetary Sciences; Mathematics" +4320;12325;"Journal of Alloys and Compounds";journal;"09258388";"Elsevier B.V.";No;No;1,079;Q1;251;8350;14572;488050;99112;14512;7,03;58,45;33,52;0;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science" +4321;20823;"Immunology and Cell Biology";journal;"14401711, 08189641";"John Wiley & Sons Inc.";No;No;1,079;Q2;126;94;284;3736;648;199;2,32;39,74;51,79;0;United States;Northern America;"John Wiley & Sons Inc.";"1987-2026";"Cell Biology (Q2); Immunology (Q2); Immunology and Allergy (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +4322;12372;"Acta Astronautica";journal;"00945765";"Elsevier Ltd";No;No;1,078;Q1;122;650;1856;30088;8037;1840;4,29;46,29;25,85;1;United Kingdom;Western Europe;"Elsevier Ltd";"1974-2026";"Aerospace Engineering (Q1)";"Engineering" +4323;23952;"Cooperation and Conflict";journal;"00108367, 14603691";"SAGE Publications Ltd";No;No;1,078;Q1;61;76;91;6328;345;89;3,59;83,26;50,38;9;United Kingdom;Western Europe;"SAGE Publications Ltd";"1965, 1967-2026";"Development (Q1); Political Science and International Relations (Q1); Social Sciences (miscellaneous) (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Social Sciences" +4324;21100890597;"Geomechanics and Geophysics for Geo-Energy and Geo-Resources";journal;"23638427, 23638419";"Springer International Publishing AG";Yes;No;1,078;Q1;47;140;569;7046;2993;562;5,63;50,33;23,27;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Economic Geology (Q1); Geophysics (Q1); Geotechnical Engineering and Engineering Geology (Q1); Energy (miscellaneous) (Q2)";"Earth and Planetary Sciences; Energy" +4325;24309;"International Journal of Neural Systems";journal;"01290657, 17936462";"World Scientific Publishing Co. Pte Ltd";No;No;1,078;Q1;83;73;219;3950;1251;211;6,18;54,11;28,38;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1992-1997, 1999-2026";"Computer Networks and Communications (Q1); Medicine (miscellaneous) (Q1)";"Computer Science; Medicine" +4326;12061;"Memory and Cognition";journal;"0090502X, 15325946";"Springer New York";No;No;1,078;Q1;152;200;365;12869;1023;363;2,38;64,35;50,31;1;United States;Northern America;"Springer New York";"1973-2026";"Arts and Humanities (miscellaneous) (Q1); Experimental and Cognitive Psychology (Q1); Medicine (miscellaneous) (Q1); Neuropsychology and Physiological Psychology (Q1)";"Arts and Humanities; Medicine; Psychology" +4327;14255;"Autonomic Neuroscience: Basic and Clinical";journal;"15660702, 18727484";"Elsevier B.V.";No;No;1,077;Q1;100;88;164;6469;580;154;2,76;73,51;45,02;0;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Neurology (clinical) (Q1); Cellular and Molecular Neuroscience (Q2); Endocrine and Autonomic Systems (Q2)";"Medicine; Neuroscience" +4328;15980;"Cold Regions Science and Technology";journal;"18727441, 0165232X";"Elsevier B.V.";No;No;1,077;Q1;116;226;670;11994;3456;670;5,14;53,07;29,15;1;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences" +4329;13547;"Eating Disorders";journal;"1532530X, 10640266";"Routledge";No;No;1,077;Q1;67;99;129;4548;466;125;4,02;45,94;73,20;2;United States;Northern America;"Routledge";"1993-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +4330;19700175166;"Frontiers in Behavioral Neuroscience";journal;"16625153";"Frontiers Media SA";Yes;No;1,077;Q1;115;144;1028;10757;3458;911;2,97;74,70;48,88;0;Switzerland;Western Europe;"Frontiers Media SA";"2007-2026";"Behavioral Neuroscience (Q1); Neuropsychology and Physiological Psychology (Q1); Cognitive Neuroscience (Q2)";"Neuroscience; Psychology" +4331;19300157103;"Insect Conservation and Diversity";journal;"17524598, 1752458X";"Wiley-Blackwell";No;No;1,077;Q1;59;100;225;8418;845;221;3,41;84,18;37,44;1;United Kingdom;Western Europe;"Wiley-Blackwell";"2009-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1)";"Agricultural and Biological Sciences" +4332;21100881654;"Journal of Law and the Biosciences";journal;"20539711";"Oxford University Press";Yes;Yes;1,077;Q1;38;29;101;3911;409;101;4,07;134,86;53,42;0;United Kingdom;Western Europe;"Oxford University Press";"2014, 2016-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Law (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine; Social Sciences" +4333;21100933947;"Microorganisms";journal;"20762607";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,077;Q1;139;2844;8150;193974;44321;7946;4,94;68,20;48,23;8;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Microbiology (medical) (Q1); Microbiology (Q2); Virology (Q2)";"Immunology and Microbiology; Medicine" +4334;21101257876;"Neuroscience Informatics";journal;"27725286";"Elsevier Masson s.r.l.";Yes;No;1,077;Q1;22;52;98;2225;717;95;5,45;42,79;24,58;0;France;Western Europe;"Elsevier Masson s.r.l.";"2021-2026";"Health Information Management (Q1); Health Informatics (Q2); Neuroscience (miscellaneous) (Q2)";"Health Professions; Medicine; Neuroscience" +4335;19600166401;"Science China: Physics, Mechanics and Astronomy";journal;"18691927, 16747348";"Science China Press";No;No;1,077;Q1;84;281;691;18055;3746;625;5,74;64,25;30,23;0;China;Asiatic Region;"Science China Press";"2010-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +4336;24222;"Scientometrics";journal;"15882861, 01389130";"Springer Nature";No;No;1,077;Q1;167;284;991;17093;4262;931;3,92;60,19;36,42;4;Switzerland;Western Europe;"Springer Nature";"1978-2026";"Computer Science Applications (Q1); Library and Information Sciences (Q1); Social Sciences (miscellaneous) (Q1)";"Computer Science; Social Sciences" +4337;21101302942;"Surface Science and Technology";journal;"20973624, 27317838";"Springer";No;No;1,077;Q1;11;42;60;2843;404;58;6,73;67,69;31,13;0;Singapore;Asiatic Region;"Springer";"2023-2026";"Ceramics and Composites (Q1); Materials Science (miscellaneous) (Q1); Metals and Alloys (Q1); Surfaces, Coatings and Films (Q1)";"Materials Science" +4338;17700155010;"Australasian Marketing Journal";journal;"14413582, 18393349";"SAGE Publications Ltd";No;No;1,076;Q1;67;67;109;6059;619;98;4,31;90,43;44,75;0;Australia;Pacific Region;"SAGE Publications Ltd";"2003-2026";"Economics and Econometrics (Q1); Marketing (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4339;21100371216;"Environmental Science: Nano";journal;"20518161, 20518153";"Royal Society of Chemistry";No;No;1,076;Q1;131;257;1001;20476;5972;990;5,62;79,67;41,62;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2014-2026";"Environmental Science (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Environmental Science; Materials Science" +4340;15371;"Journal of Adolescent Research";journal;"07435584, 15526895";"SAGE Publications Inc.";No;No;1,076;Q1;101;80;136;5576;516;135;3,30;69,70;77,27;5;United States;Northern America;"SAGE Publications Inc.";"1986-2026";"Developmental and Educational Psychology (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +4341;21100298690;"Journal of Immunology Research";journal;"23147156, 23148861";"John Wiley and Sons Ltd";Yes;No;1,076;Q1;133;70;633;4557;2696;633;3,22;65,10;49,76;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012, 2014-2026";"Medicine (miscellaneous) (Q1); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +4342;17973;"Neuromodulation";journal;"15251403, 10947159";"International Neuromodulation Society";No;No;1,076;Q1;86;190;532;8708;1961;491;3,31;45,83;36,21;1;United States;Northern America;"International Neuromodulation Society";"1998-2026";"Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1); Neurology (Q1); Neurology (clinical) (Q1)";"Medicine; Neuroscience" +4343;13543;"Reproduction";journal;"17417899, 14701626";"BioScientifica Ltd.";No;No;1,076;Q1;182;148;313;10133;1276;312;3,49;68,47;53,81;0;United Kingdom;Western Europe;"BioScientifica Ltd.";"1996-1997, 2001-2026";"Embryology (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Cell Biology (Q2); Endocrinology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4344;130068;"European Business Review";journal;"0955534X";"Emerald Group Publishing Ltd.";No;No;1,075;Q1;65;54;135;5292;960;133;7,20;98,00;35,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1970, 1989-2026";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +4345;16677;"European Journal of Radiology";journal;"18727727, 0720048X";"Elsevier Ireland Ltd";No;No;1,075;Q1;145;529;1406;19254;5577;1335;4,03;36,40;38,82;1;Ireland;Western Europe;"Elsevier Ireland Ltd";"1981-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +4346;21100403227;"Geomechanics for Energy and the Environment";journal;"23523808";"Elsevier Ltd";No;No;1,075;Q1;40;153;295;8833;1432;292;5,07;57,73;27,26;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Computers in Earth Sciences (Q1); Geotechnical Engineering and Engineering Geology (Q1); Safety, Risk, Reliability and Quality (Q1)";"Earth and Planetary Sciences; Engineering" +4347;21101099106;"Journal of Nanostructure in Chemistry";journal;"20089244, 21938865";"OICC Press";No;No;1,075;Q1;72;0;127;0;1099;127;9,64;0,00;0,00;0;Germany;Western Europe;"OICC Press";"2013-2024";"Chemistry (miscellaneous) (Q1)";"Chemistry" +4348;4000152113;"Journal of Sports Science and Medicine";journal;"13032968";"Journal of Sport Science and Medicine";Yes;No;1,075;Q1;93;81;233;4008;903;231;3,96;49,48;30,95;0;Turkey;Middle East;"Journal of Sport Science and Medicine";"2002-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)";"Health Professions; Medicine" +4349;21101050345;"Phytopathology Research";journal;"20965362, 25244167";"BioMed Central Ltd";Yes;Yes;1,075;Q1;27;99;181;6307;847;175;4,40;63,71;41,19;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2019-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Plant Science (Q1); Genetics (Q2); Physiology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +4350;13378;"Psicothema";journal;"02149915, 1886144X";"Colegio Oficial de Psicologos Asturias";Yes;No;1,075;Q1;91;29;150;1747;601;148;4,11;60,24;53,89;0;Spain;Western Europe;"Colegio Oficial de Psicologos Asturias";"1996-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +4351;19700181414;"European Journal for Philosophy of Science";journal;"18794920, 18794912";"Springer Netherlands";No;No;1,074;Q1;36;73;194;4704;404;191;1,81;64,44;26,42;0;Netherlands;Western Europe;"Springer Netherlands";"2011-2026";"History and Philosophy of Science (Q1); Philosophy (Q1)";"Arts and Humanities" +4352;27682;"European Journal of Cardiovascular Nursing";journal;"14745151, 18731953";"Oxford University Press";No;No;1,074;Q1;71;243;438;6697;1439;315;3,23;27,56;59,55;2;United Kingdom;Western Europe;"Oxford University Press";"2002-2025";"Advanced and Specialized Nursing (Q1); Cardiology and Cardiovascular Medicine (Q1); Medical and Surgical Nursing (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Nursing" +4353;18300156733;"Foundations and Trends in Marketing";journal;"15550761, 15550753";"Now Publishers Inc";No;No;1,074;Q1;18;1;13;220;22;13;1,40;220,00;25,00;0;United States;Northern America;"Now Publishers Inc";"2006-2007, 2009-2025";"Economics and Econometrics (Q1); Marketing (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4354;21100416071;"Remote Sensing Applications: Society and Environment";journal;"23529385";"Elsevier B.V.";No;No;1,074;Q1;72;423;716;30469;4346;716;6,02;72,03;27,92;3;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Computers in Earth Sciences (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +4355;5700163398;"Swiss Political Science Review";journal;"14247755, 16626370";"Wiley-Blackwell";No;No;1,074;Q1;49;54;88;3627;226;78;2,13;67,17;39,08;1;United States;Northern America;"Wiley-Blackwell";"1995-2026";"Political Science and International Relations (Q1)";"Social Sciences" +4356;16032;"Administration and Society";journal;"00953997, 15523039";"SAGE Publications Inc.";No;No;1,073;Q1;86;48;193;3258;769;192;2,88;67,88;40,57;0;United States;Northern America;"SAGE Publications Inc.";"1969-2026";"Public Administration (Q1); Sociology and Political Science (Q1); Marketing (Q2)";"Business, Management and Accounting; Social Sciences" +4357;13907;"Alexandria Engineering Journal";journal;"11100168, 20902670";"Elsevier B.V.";Yes;No;1,073;Q1;126;933;3112;45616;25443;3107;8,52;48,89;28,23;1;Netherlands;Western Europe;"Elsevier B.V.";"2000-2025";"Engineering (miscellaneous) (Q1)";"Engineering" +4358;21101071785;"BMC Primary Care";journal;"27314553";"BioMed Central Ltd";Yes;No;1,073;Q1;101;411;1063;18720;3503;1061;3,00;45,55;56,36;6;United Kingdom;Western Europe;"BioMed Central Ltd";"2022-2026";"Family Practice (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +4359;27965;"Geophysics";journal;"00168033, 19422156";"Society of Exploration Geophysicists";No;No;1,073;Q1;228;343;1061;17274;3967;1051;3,87;50,36;22,49;0;United States;Northern America;"Society of Exploration Geophysicists";"1936-2026";"Geochemistry and Petrology (Q1); Geophysics (Q1); Energy (miscellaneous) (Q2)";"Earth and Planetary Sciences; Energy" +4360;13904;"Graefe's Archive for Clinical and Experimental Ophthalmology";journal;"0721832X, 1435702X";"Springer Science and Business Media Deutschland GmbH";No;No;1,073;Q1;121;397;1233;13354;3546;1128;3,06;33,64;38,48;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1870-1944, 1947-1965, 1982-2026";"Ophthalmology (Q1); Sensory Systems (Q1); Cellular and Molecular Neuroscience (Q2)";"Medicine; Neuroscience" +4361;25979;"Hematological Oncology";journal;"10991069, 02780232";"John Wiley and Sons Ltd";No;No;1,073;Q1;59;136;355;4648;915;275;2,76;34,18;48,46;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1983-2026";"Hematology (Q1); Medicine (miscellaneous) (Q1); Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4362;26023;"IEEE Journal of Selected Topics in Quantum Electronics";journal;"1077260X, 15584542";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,073;Q1;184;140;474;6691;2170;455;4,22;47,79;24,39;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1995-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1)";"Engineering; Physics and Astronomy" +4363;14300154705;"Neuroethics";journal;"18745490, 18745504";"Springer Science and Business Media B.V.";No;No;1,073;Q1;44;53;89;3246;428;88;4,57;61,25;38,24;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2007-2026";"Health Policy (Q1); Issues, Ethics and Legal Aspects (Q1); Neurology (Q1); Philosophy (Q1); Psychiatry and Mental Health (Q2)";"Arts and Humanities; Medicine; Neuroscience; Nursing" +4364;21101046232;"Soil Ecology Letters";journal;"26622289, 26622297";"Higher Education Press Limited Company";No;No;1,073;Q1;31;105;169;7016;737;162;4,37;66,82;39,65;1;China;Asiatic Region;"Higher Education Press Limited Company";"2019-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4365;17807;"Tree Physiology";journal;"0829318X, 17584469";"Oxford University Press";No;No;1,073;Q1;163;153;540;11156;2126;505;3,63;72,92;37,40;0;United Kingdom;Western Europe;"Oxford University Press";"1987, 1989-2026";"Plant Science (Q1); Physiology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +4366;19786;"Utilities Policy";journal;"09571787";"Elsevier B.V.";No;No;1,073;Q1;72;175;396;11849;2204;394;5,88;67,71;31,35;0;United Kingdom;Western Europe;"Elsevier B.V.";"1990-1995, 1997-2001, 2003-2026";"Business and International Management (Q1); Development (Q1); Economics and Econometrics (Q1); Law (Q1); Management, Monitoring, Policy and Law (Q1); Sociology and Political Science (Q1); Transportation (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +4367;21101042482;"Environmental Humanities";journal;"22011919";"Duke University Press";Yes;Yes;1,072;Q1;24;44;146;2118;328;139;2,08;48,14;46,88;0;United States;Northern America;"Duke University Press";"2012-2026";"Anthropology (Q1); Ecology (Q1); Environmental Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Environmental Science; Social Sciences" +4368;21100775662;"Food and Energy Security";journal;"20483694";"Wiley-Blackwell Publishing Ltd";Yes;No;1,072;Q1;55;143;253;10552;1583;249;6,63;73,79;32,67;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2012-2026";"Agronomy and Crop Science (Q1); Food Science (Q1); Forestry (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Agricultural and Biological Sciences; Energy" +4369;28367;"HPB";journal;"14772574, 1365182X";"Elsevier B.V.";No;No;1,072;Q1;103;186;622;6620;1729;551;2,59;35,59;27,92;1;United Kingdom;Western Europe;"Elsevier B.V.";"2000-2026";"Gastroenterology (Q1); Hepatology (Q2)";"Medicine" +4370;27298;"ICES Journal of Marine Science";journal;"10959289, 10543139";"Oxford University Press";Yes;No;1,072;Q1;151;320;589;22491;2305;586;3,93;70,28;43,19;37;United Kingdom;Western Europe;"Oxford University Press";"1903-1915, 1918, 1920, 1922-1939, 1947-1976, 1978-2026";"Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +4371;23222;"Journal of Geochemical Exploration";journal;"03756742";"Elsevier B.V.";No;No;1,072;Q1;121;188;451;16030;2133;449;4,84;85,27;29,08;2;Netherlands;Western Europe;"Elsevier B.V.";"1972-2026";"Economic Geology (Q1); Geochemistry and Petrology (Q1)";"Earth and Planetary Sciences" +4372;18661;"Structural and Multidisciplinary Optimization";journal;"16151488, 1615147X";"Springer Verlag";No;No;1,072;Q1;157;261;821;13416;4040;819;4,67;51,40;20,58;0;Germany;Western Europe;"Springer Verlag";"1999-2026";"Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q1); Control and Optimization (Q1); Control and Systems Engineering (Q1); Software (Q1)";"Computer Science; Engineering; Mathematics" +4373;14424;"European Societies";journal;"14616696, 14698307";"Routledge";Yes;No;1,071;Q1;64;29;122;2030;474;119;4,00;70,00;44,44;0;United Kingdom;Western Europe;"Routledge";"2001, 2005-2025";"Demography (Q1); Geography, Planning and Development (Q1)";"Social Sciences" +4374;14200154736;"Food and Bioprocess Technology";journal;"19355149, 19355130";"Springer";No;No;1,071;Q1;136;620;717;45943;5248;713;7,25;74,10;46,17;1;United States;Northern America;"Springer";"2008-2026";"Food Science (Q1); Industrial and Manufacturing Engineering (Q1); Process Chemistry and Technology (Q1); Safety, Risk, Reliability and Quality (Q1)";"Agricultural and Biological Sciences; Chemical Engineering; Engineering" +4375;19901;"IEEE Transactions on Broadcasting";journal;"15579611, 00189316";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,071;Q1;94;88;262;4264;1546;260;6,65;48,45;30,81;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-2026";"Electrical and Electronic Engineering (Q1); Media Technology (Q1)";"Engineering" +4376;21100788884;"International Journal of Multimedia Information Retrieval";journal;"21926611, 2192662X";"Springer London";No;No;1,071;Q1;37;39;127;2332;881;125;5,08;59,79;24,53;0;United Kingdom;Western Europe;"Springer London";"2012-2026";"Information Systems (Q1); Library and Information Sciences (Q1); Media Technology (Q1)";"Computer Science; Engineering; Social Sciences" +4377;21100235813;"Kidney Research and Clinical Practice";journal;"22119132, 22119140";"The Korean Society of Nephrology";Yes;Yes;1,071;Q1;41;96;251;3312;733;197;2,57;34,50;41,28;0;South Korea;Asiatic Region;"The Korean Society of Nephrology";"2012-2026";"Nephrology (Q1); Urology (Q1)";"Medicine" +4378;19700201455;"Sustainable Computing: Informatics and Systems";journal;"22105379";"Elsevier Inc.";No;No;1,071;Q1;64;167;313;7572;2447;311;8,40;45,34;26,73;0;United States;Northern America;"Elsevier Inc.";"2011-2026";"Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +4379;16766;"Journal of Neuroscience Research";journal;"10974547, 03604012";"Wiley-Liss Inc.";No;No;1,071;Q2;187;87;414;6705;1476;400;3,63;77,07;51,94;0;United States;Northern America;"Wiley-Liss Inc.";"1975-2026";"Cellular and Molecular Neuroscience (Q2)";"Neuroscience" +4380;14900;"Clinical Neurophysiology";journal;"13882457, 18728952";"Elsevier Ireland Ltd";No;No;1,070;Q1;237;307;783;15332;2511;617;2,85;49,94;38,45;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1999-2026";"Neurology (Q1); Neurology (clinical) (Q1); Sensory Systems (Q1); Physiology (medical) (Q2)";"Medicine; Neuroscience" +4381;4700152879;"Health Information Management Journal";journal;"18333575, 18333583";"SAGE Publications Inc.";No;No;1,070;Q1;37;64;75;2601;312;67;3,90;40,64;57,85;2;Australia;Pacific Region;"SAGE Publications Inc.";"2002-2026";"Health Information Management (Q1); Health Policy (Q1); Leadership and Management (Q1); Health Informatics (Q2)";"Health Professions; Medicine; Nursing" +4382;23239;"Land Degradation and Development";journal;"1099145X, 10853278";"John Wiley and Sons Ltd";No;No;1,070;Q1;125;622;1145;42810;5526;1141;4,62;68,83;35,42;4;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1989-1990, 1992-2026";"Development (Q1); Environmental Science (miscellaneous) (Q1); Soil Science (Q1); Environmental Chemistry (Q2)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +4383;18402;"Medicine, Health Care and Philosophy";journal;"15728633, 13867423";"Springer Netherlands";No;No;1,070;Q1;61;64;176;3568;778;163;4,10;55,75;51,24;0;Netherlands;Western Europe;"Springer Netherlands";"1998-2026";"Education (Q1); Health Policy (Q1); Health (social science) (Q1); Philosophy (Q1)";"Arts and Humanities; Medicine; Social Sciences" +4384;17712;"Qualitative Health Research";journal;"15527557, 10497323";"SAGE Publications Inc.";No;No;1,070;Q1;150;240;388;14094;1494;381;3,67;58,73;69,15;2;United States;Northern America;"SAGE Publications Inc.";"1991-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4385;22845;"Radiocarbon";journal;"19455755, 00338222";"Cambridge University Press";No;No;1,070;Q1;101;109;321;5646;622;315;1,64;51,80;39,38;0;United States;Northern America;"Cambridge University Press";"1959, 1962-1964, 1966-1967, 1969, 1971, 1973, 1975, 1977-1978, 1980-1983, 1986-1987, 1989-2026";"Archeology (arts and humanities) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1)";"Arts and Humanities; Earth and Planetary Sciences" +4386;5300152613;"Animal";journal;"1751732X, 17517311";"Elsevier B.V.";Yes;No;1,069;Q1;143;287;788;17879;3903;758;4,23;62,30;45,45;7;United Kingdom;Western Europe;"Elsevier B.V.";"2007-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +4387;11200153524;"Biochimica et Biophysica Acta - Gene Regulatory Mechanisms";journal;"18749399, 18764320";"Elsevier B.V.";No;No;1,069;Q1;152;30;170;2608;584;168;3,72;86,93;37,86;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Biophysics (Q1); Biochemistry (Q2); Genetics (Q2); Molecular Biology (Q2); Structural Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4388;23877;"Journal of Hypertension";journal;"14735598, 02636352";"Lippincott Williams and Wilkins";No;No;1,069;Q1;201;320;854;11228;2359;685;2,80;35,09;39,53;0;United States;Northern America;"Lippincott Williams and Wilkins";"1983-2026";"Cardiology and Cardiovascular Medicine (Q1); Internal Medicine (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4389;16646;"Planta";journal;"14322048, 00320935";"Springer Science and Business Media Deutschland GmbH";No;No;1,069;Q1;204;282;755;24425;3815;752;4,81;86,61;43,27;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1925-1945, 1947-2026";"Plant Science (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +4390;5800173371;"Sexual Development";journal;"16615433, 16615425";"S. Karger AG";No;No;1,069;Q1;59;10;71;508;195;67;1,61;50,80;49,44;0;Switzerland;Western Europe;"S. Karger AG";"2006-2026";"Embryology (Q1); Developmental Biology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4391;21100199546;"Translational Behavioral Medicine";journal;"16139860, 18696716";"Oxford University Press";No;No;1,069;Q1;68;103;301;4493;902;292;2,70;43,62;72,19;0;United States;Northern America;"Oxford University Press";"2011-2026";"Applied Psychology (Q1); Behavioral Neuroscience (Q1)";"Neuroscience; Psychology" +4392;21601;"Annals of Dyslexia";journal;"07369387, 19347243";"Springer New York";No;No;1,068;Q1;62;40;70;2358;327;66;5,39;58,95;65,33;2;United States;Northern America;"Springer New York";"1982-2026";"Education (Q1); Speech and Hearing (Q1)";"Health Professions; Social Sciences" +4393;24813;"Experimental Dermatology";journal;"16000625, 09066705";"John Wiley and Sons Inc";No;No;1,068;Q1;129;152;739;6883;2673;664;3,34;45,28;46,64;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1992-2026";"Dermatology (Q1); Biochemistry (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4394;800147112;"IRAL - International Review of Applied Linguistics in Language Teaching";journal;"0019042X, 16134141";"Walter de Gruyter GmbH & Co. KG";No;No;1,068;Q1;59;146;200;8735;728;198;3,70;59,83;41,86;0;Germany;Western Europe;"Walter de Gruyter GmbH & Co. KG";"1963-2026";"Linguistics and Language (Q1)";"Social Sciences" +4395;27285;"Journal for the Scientific Study of Religion";journal;"14685906, 00218294";"John Wiley and Sons Inc";No;No;1,068;Q1;91;32;143;2050;386;143;2,41;64,06;43,75;0;United States;Northern America;"John Wiley and Sons Inc";"1977, 1979-1980, 1983-1984, 1987-1988, 1996-2001, 2003-2026";"Religious Studies (Q1)";"Arts and Humanities" +4396;130146;"Journal of Experimental Criminology";journal;"15728315, 15733750";"Springer Science and Business Media B.V.";No;No;1,068;Q1;72;110;154;7294;596;152;3,87;66,31;45,73;3;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2005-2026";"Law (Q1)";"Social Sciences" +4397;12398;"Journal of Systems Architecture";journal;"13837621";"Elsevier B.V.";No;No;1,068;Q1;79;206;558;10860;3100;552;6,22;52,72;33,17;0;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Hardware and Architecture (Q1); Software (Q1)";"Computer Science" +4398;21100454953;"Mineral Economics";journal;"21912203, 21912211";"Springer Science and Business Media Deutschland GmbH";No;No;1,068;Q1;34;101;171;7058;835;153;4,70;69,88;25,53;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Economic Geology (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Geography, Planning and Development (Q1); Social Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences; Economics, Econometrics and Finance; Social Sciences" +4399;21100199812;"Frontiers in Neuroscience";journal;"1662453X, 16624548";"Frontiers Media SA";Yes;No;1,068;Q2;186;989;5794;61484;22908;5352;3,73;62,17;43,65;3;Switzerland;Western Europe;"Frontiers Media SA";"2007-2026";"Neuroscience (miscellaneous) (Q2)";"Neuroscience" +4400;16203;"International Review of Psychiatry";journal;"13691627, 09540261";"Taylor and Francis Ltd.";No;No;1,068;Q2;113;118;243;6664;899;216;2,43;56,47;43,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +4401;21100903066;"AIMS Microbiology";journal;"24711888";"AIMS Press";Yes;No;1,067;Q1;34;46;127;4165;823;122;6,01;90,54;48,52;0;United States;Northern America;"AIMS Press";"2015-2026";"Microbiology (medical) (Q1); Microbiology (Q2)";"Immunology and Microbiology; Medicine" +4402;29306;"Clinical Autonomic Research";journal;"09599851, 16191560";"Springer Science and Business Media Deutschland GmbH";No;No;1,067;Q1;77;110;218;3917;551;117;2,99;35,61;45,42;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1991-2026";"Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Endocrine and Autonomic Systems (Q2)";"Medicine; Neuroscience" +4403;14279;"Educational Research";journal;"00131881, 14695847";"Routledge";No;No;1,067;Q1;74;27;81;1535;400;78;4,22;56,85;72,62;1;United Kingdom;Western Europe;"Routledge";"1958-2026";"Education (Q1)";"Social Sciences" +4404;21100370010;"Endoscopic Ultrasound";journal;"23039027, 22267190";"Wolters Kluwer Health";Yes;No;1,067;Q1;45;107;215;3245;719;175;3,42;30,33;30,70;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2012-2025";"Gastroenterology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Hepatology (Q2)";"Medicine" +4405;22443;"Journal of Medical Screening";journal;"09691413, 14755793";"SAGE Publications Ltd";No;No;1,067;Q1;72;44;117;1130;283;88;2,16;25,68;49,32;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4406;11700154617;"Journal of the International Society of Sports Nutrition";journal;"15502783";"Taylor and Francis Ltd.";Yes;No;1,067;Q1;79;120;157;7581;770;155;5,21;63,18;35,02;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Food Science (Q1); Nutrition and Dietetics (Q1); Sports Science (Q2)";"Agricultural and Biological Sciences; Health Professions; Nursing" +4407;21100842323;"Journal of Trust Research";journal;"2151559X, 21515581";"Routledge";No;No;1,067;Q1;30;18;32;1331;147;28;4,83;73,94;44,44;0;United States;Northern America;"Routledge";"2011-2026";"Business, Management and Accounting (miscellaneous) (Q1); Social Psychology (Q1); Sociology and Political Science (Q1); Applied Psychology (Q2)";"Business, Management and Accounting; Psychology; Social Sciences" +4408;24548;"Marine and Petroleum Geology";journal;"02648172, 18734073";"Elsevier Ltd";No;No;1,067;Q1;175;345;1430;31046;6100;1426;4,05;89,99;26,72;0;United Kingdom;Western Europe;"Elsevier Ltd";"1984-2026";"Economic Geology (Q1); Geology (Q1); Geophysics (Q1); Oceanography (Q1); Stratigraphy (Q1)";"Earth and Planetary Sciences" +4409;24800;"Neural Computing and Applications";journal;"09410643, 14333058";"Springer London";No;No;1,067;Q1;166;1241;3991;65195;26917;3943;6,71;52,53;27,05;1;United Kingdom;Western Europe;"Springer London";"1993-2026";"Artificial Intelligence (Q1); Software (Q1)";"Computer Science" +4410;18200156707;"Psychological Trauma: Theory, Research, Practice, and Policy";journal;"1942969X, 19429681";"American Psychological Association";No;No;1,067;Q1;91;240;729;9989;2377;724;2,79;41,62;63,13;15;United States;Northern America;"American Psychological Association";"2009-2026";"Clinical Psychology (Q1); Social Psychology (Q1)";"Psychology" +4411;21101151822;"Adversity and Resilience Science";journal;"26622416, 26622424";"Springer Nature";No;No;1,066;Q1;20;47;88;3305;298;86;2,61;70,32;61,15;0;Switzerland;Western Europe;"Springer Nature";"2020-2026";"Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Psychology (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +4412;12550;"BMC Pregnancy and Childbirth";journal;"14712393";"BioMed Central Ltd";Yes;No;1,066;Q1;131;1344;2691;56980;9756;2679;3,30;42,40;58,07;4;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Obstetrics and Gynecology (Q1)";"Medicine" +4413;15300154823;"Journal of Acquired Immune Deficiency Syndromes (1999)";journal;"15254135, 19447884";"Wolters Kluwer Health";No;No;1,066;Q1;180;252;702;8387;1612;661;2,04;33,28;55,38;0;United States;Northern America;"Wolters Kluwer Health";"1988-1994, 1996-1997, 1999-2026";"Infectious Diseases (Q1); Pharmacology (medical) (Q1)";"Medicine" +4414;21680;"Journal of Hand Surgery";journal;"03635023, 15316564";"W.B. Saunders";No;No;1,066;Q1;146;374;791;9252;1732;695;2,08;24,74;24,85;1;United States;Northern America;"W.B. Saunders";"1976-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +4415;20238;"Journal of Microbiology, Immunology and Infection";journal;"19959133, 16841182";"Elsevier Ltd";Yes;No;1,066;Q1;85;126;426;4881;1445;379;3,51;38,74;47,30;0;United Kingdom;Western Europe;"Elsevier Ltd";"1998-2026";"Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Immunology and Allergy (Q2); Microbiology (medical) (Q2)";"Immunology and Microbiology; Medicine" +4416;21100835138;"Journal of Neuromuscular Diseases";journal;"22143599, 22143602";"SAGE Publications Ltd";No;No;1,066;Q1;49;79;266;629;875;263;3,31;7,96;56,49;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2014-2026";"Neurology (clinical) (Q1); Neurology (Q2)";"Medicine; Neuroscience" +4417;17025;"Pflugers Archiv European Journal of Physiology";journal;"00316768, 14322013";"Springer Science and Business Media Deutschland GmbH";No;No;1,066;Q1;153;107;364;6975;1130;319;2,82;65,19;39,58;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1950-1959, 1968-2026";"Clinical Biochemistry (Q1); Physiology (Q2); Physiology (medical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4418;16575;"Plant Biology";journal;"14388677, 14358603";"Wiley-Blackwell";No;No;1,066;Q1;121;173;365;12427;1776;361;3,59;71,83;41,04;1;United States;Northern America;"Wiley-Blackwell";"1999-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Medicine (miscellaneous) (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Medicine" +4419;21101023628;"Research and Practice in Thrombosis and Haemostasis";journal;"24750379";"Elsevier B.V.";Yes;No;1,066;Q1;49;317;799;11536;2234;669;2,80;36,39;43,54;0;United States;Northern America;"Elsevier B.V.";"2017-2026";"Hematology (Q1)";"Medicine" +4420;19400158383;"Saudi Journal of Biological Sciences";journal;"1319562X";"Elsevier B.V.";Yes;No;1,066;Q1;115;12;967;800;5829;967;5,71;66,67;52,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2009-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1)";"Agricultural and Biological Sciences" +4421;28034;"Accounting and Business Research";journal;"21594260, 00014788";"Routledge";No;No;1,065;Q1;77;54;104;3859;369;100;3,62;71,46;34,35;0;United Kingdom;Western Europe;"Routledge";"1970-2026";"Accounting (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4422;21101128145;"ACS Measurement Science Au";journal;"2694250X";"American Chemical Society";Yes;No;1,065;Q1;26;93;183;5433;1109;173;5,61;58,42;40,39;0;United States;Northern America;"American Chemical Society";"2021-2026";"Analytical Chemistry (Q1); Electrochemistry (Q1); Spectroscopy (Q1)";"Chemistry" +4423;28099;"BMC Medical Education";journal;"14726920";"BioMed Central Ltd";Yes;No;1,065;Q1;120;1748;3389;69286;15590;3361;4,55;39,64;51,92;5;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Education (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +4424;21100870585;"Environmental Sociology";journal;"23251042";"Taylor and Francis Ltd.";No;No;1,065;Q1;38;89;110;6541;445;108;3,01;73,49;55,93;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Ecology (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Sociology and Political Science (Q1)";"Environmental Science; Social Sciences" +4425;13312;"Journal of Urban Technology";journal;"10630732, 14661853";"Routledge";No;No;1,065;Q1;64;46;109;3249;487;95;3,43;70,63;33,03;1;United Kingdom;Western Europe;"Routledge";"1992-2026";"Urban Studies (Q1)";"Social Sciences" +4426;19700166521;"Scandinavian Journal of Trauma, Resuscitation and Emergency Medicine";journal;"17577241";"BioMed Central Ltd";Yes;No;1,065;Q1;80;201;316;6946;1105;281;3,08;34,56;30,39;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2008-2026";"Critical Care and Intensive Care Medicine (Q1); Emergency Medicine (Q1)";"Medicine" +4427;16867;"Biochemistry";journal;"15204995, 00062960";"American Chemical Society";No;No;1,065;Q2;289;398;904;26079;2419;891;2,64;65,53;37,27;0;United States;Northern America;"American Chemical Society";"1962-2026";"Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology" +4428;21100215107;"Frontiers in Physiology";journal;"1664042X";"Frontiers Media SA";Yes;No;1,065;Q2;195;1068;5808;65853;23950;5270;3,96;61,66;38,62;0;Switzerland;Western Europe;"Frontiers Media SA";"2010-2026";"Physiology (Q2); Physiology (medical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4429;16317;"Clinical Rehabilitation";journal;"14770873, 02692155";"SAGE Publications Ltd";No;No;1,064;Q1;134;164;369;6131;1491;360;3,48;37,38;56,37;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1987-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1)";"Health Professions; Medicine" +4430;21101070922;"IEEE Transactions on Biometrics, Behavior, and Identity Science";journal;"26376407";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,064;Q1;38;73;149;4410;845;143;4,93;60,41;30,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2019-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Computer Vision and Pattern Recognition (Q1); Instrumentation (Q1)";"Computer Science; Physics and Astronomy" +4431;25609;"International Dental Journal";journal;"00206539, 1875595X";"Elsevier Inc.";Yes;No;1,064;Q1;84;479;456;20809;2183;415;4,44;43,44;45,87;0;Netherlands;Western Europe;"Elsevier Inc.";"1960-1962, 1965-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +4432;19263;"Journal of Vegetation Science";journal;"16541103, 11009233";"John Wiley and Sons Inc";No;No;1,064;Q1;143;99;212;7474;692;207;3,31;75,49;41,12;0;United States;Northern America;"John Wiley and Sons Inc";"1990-2026";"Ecology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4433;19400157006;"Judgment and Decision Making";journal;"19302975";"Society for Judgment and Decision making";Yes;No;1,064;Q1;82;48;126;2702;341;124;2,37;56,29;34,03;0;United States;Northern America;"Society for Judgment and Decision making";"2007-2026";"Decision Sciences (miscellaneous) (Q1); Applied Psychology (Q2); Economics and Econometrics (Q2)";"Decision Sciences; Economics, Econometrics and Finance; Psychology" +4434;5300152513;"Progress in Electromagnetics Research";journal;"15598985, 10704698";"Electromagnetics Academy";Yes;No;1,064;Q1;101;30;90;1915;472;90;6,07;63,83;27,22;0;United States;Northern America;"Electromagnetics Academy";"1998, 2000-2026";"Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Radiation (Q1)";"Engineering; Physics and Astronomy" +4435;21101081676;"Sensors International";journal;"26663511";"KeAi Communications Co.";Yes;No;1,064;Q1;52;40;129;2771;1509;129;13,29;69,28;33,89;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Bioengineering (Q1); Chemical Health and Safety (Q1); Chemistry (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Electrochemistry (Q1); Materials Science (miscellaneous) (Q1)";"Chemical Engineering; Chemistry; Engineering; Materials Science" +4436;21100316069;"Journal of Clinical and Translational Endocrinology";journal;"22146237";"Elsevier B.V.";Yes;No;1,064;Q2;36;42;94;1544;379;89;4,48;36,76;52,41;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4437;16724;"Applied Vegetation Science";journal;"1654109X, 14022001";"Wiley-Blackwell";No;No;1,063;Q1;80;44;178;3199;577;173;3,45;72,70;38,01;0;United States;Northern America;"Wiley-Blackwell";"1998-2026";"Ecology (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)";"Environmental Science" +4438;21101186194;"Journal of Infrastructure Intelligence and Resilience";journal;"27729915";"Elsevier B.V.";Yes;No;1,063;Q1;15;32;58;1936;437;57;8,46;60,50;29,13;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Civil and Structural Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering" +4439;18700156709;"Management and Organization Review";journal;"17408776, 17408784";"Cambridge University Press";No;No;1,063;Q1;82;70;163;6018;568;137;3,34;85,97;43,92;0;United Kingdom;Western Europe;"Cambridge University Press";"2005-2026";"Business and International Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +4440;27804;"Mineral Processing and Extractive Metallurgy Review";journal;"08827508, 15477401";"Taylor and Francis Ltd.";No;No;1,063;Q1;66;101;196;8779;1333;196;6,58;86,92;31,97;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983, 1985, 1987-1998, 2000-2026";"Chemistry (miscellaneous) (Q1); Economic Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Mechanical Engineering (Q1)";"Chemistry; Earth and Planetary Sciences; Engineering" +4441;19600161825;"Revista de Psicodidactica";journal;"22544372, 11361034";"Escuela Universitaria de Magisterio";Yes;Yes;1,063;Q1;40;20;60;1381;305;60;5,13;69,05;50,79;0;Spain;Western Europe;"Escuela Universitaria de Magisterio";"2005-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +4442;28287;"Current Gastroenterology Reports";journal;"15228037, 1534312X";"Springer";No;No;1,062;Q1;88;75;120;4553;483;120;4,64;60,71;40,80;0;United States;Northern America;"Springer";"1999-2026";"Gastroenterology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +4443;13217;"European Journal of Health Economics";journal;"16187598, 16187601";"Springer Science and Business Media Deutschland GmbH";No;No;1,062;Q1;75;178;334;9089;1249;308;3,31;51,06;44,25;6;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2002-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Health Policy (Q1)";"Economics, Econometrics and Finance; Medicine" +4444;21101155955;"Kidney360";journal;"26417650";"Lippincott Williams and Wilkins";Yes;No;1,062;Q1;34;366;882;9301;2156;711;2,21;25,41;41,21;0;United States;Northern America;"Lippincott Williams and Wilkins";"2020-2026";"Medicine (miscellaneous) (Q1); Nephrology (Q1)";"Medicine" +4445;145422;"Natural Resources Research";journal;"15207439, 15738981";"Springer";No;No;1,062;Q1;84;150;439;9582;2766;437;6,43;63,88;27,97;0;United States;Northern America;"Springer";"1996-2026";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +4446;11700154315;"New Biotechnology";journal;"18716784, 18764347";"Elsevier B.V.";Yes;No;1,062;Q1;117;96;209;5736;1269;207;6,48;59,75;44,53;1;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Bioengineering (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Medicine" +4447;16072;"Harvard Review of Psychiatry";journal;"14657309, 10673229";"Lippincott Williams and Wilkins";No;No;1,062;Q2;101;32;91;1901;316;89;2,61;59,41;60,94;0;United States;Northern America;"Lippincott Williams and Wilkins";"1993-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +4448;21100829148;"Asian Englishes";journal;"13488678, 23312548";"Routledge";No;No;1,061;Q1;32;47;100;2339;377;93;2,13;49,77;48,39;0;United Kingdom;Western Europe;"Routledge";"1998-2012, 2014-2026";"Linguistics and Language (Q1)";"Social Sciences" +4449;5700153364;"Assessment in Education: Principles, Policy and Practice";journal;"0969594X, 1465329X";"Routledge";No;No;1,061;Q1;66;30;86;1690;251;72;2,78;56,33;49,30;0;United States;Northern America;"Routledge";"1994-2026";"Education (Q1)";"Social Sciences" +4450;25780;"Biomacromolecules";journal;"15264602, 15257797";"American Chemical Society";No;No;1,061;Q1;276;683;1582;40438;9418;1576;5,78;59,21;43,16;0;United States;Northern America;"American Chemical Society";"2000-2026";"Bioengineering (Q1); Biomaterials (Q1); Materials Chemistry (Q1); Polymers and Plastics (Q1)";"Chemical Engineering; Materials Science" +4451;21100898636;"Foods";journal;"23048158";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,061;Q1;154;4348;12767;284956;90464;12524;6,54;65,54;51,54;7;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Food Science (Q1); Health Professions (miscellaneous) (Q1); Health (social science) (Q1); Plant Science (Q1); Microbiology (Q2)";"Agricultural and Biological Sciences; Health Professions; Immunology and Microbiology; Social Sciences" +4452;21100406867;"IUCrJ";journal;"20522525";"International Union of Crystallography";Yes;No;1,061;Q1;65;71;267;3548;696;231;2,71;49,97;27,59;0;United Kingdom;Western Europe;"International Union of Crystallography";"2014-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Physics and Astronomy" +4453;20654;"Journal of Managerial Psychology";journal;"02683946";"Emerald Group Publishing Ltd.";No;No;1,061;Q1;110;111;165;6828;761;159;4,45;61,51;44,24;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1986-2026";"Management Science and Operations Research (Q1); Social Psychology (Q1); Applied Psychology (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Decision Sciences; Psychology" +4454;22307;"HIV Medicine";journal;"14681293, 14642662";"Wiley-Blackwell Publishing Ltd";No;No;1,060;Q1;90;181;413;6378;1226;378;3,01;35,24;55,92;7;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1999-2026";"Health Policy (Q1); Infectious Diseases (Q1); Pharmacology (medical) (Q1)";"Medicine" +4455;21100859816;"International Journal of Retina and Vitreous";journal;"20569920";"BioMed Central Ltd";Yes;No;1,060;Q1;40;141;259;4560;828;242;3,65;32,34;32,62;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Ophthalmology (Q1)";"Medicine" +4456;28237;"Journal of Nursing Scholarship";journal;"15475069, 15276546";"Wiley-Blackwell Publishing Ltd";No;No;1,060;Q1;105;97;278;3744;1102;251;4,15;38,60;61,19;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +4457;21100901580;"Research Involvement and Engagement";journal;"20567529";"BioMed Central Ltd";Yes;No;1,060;Q1;51;150;325;6741;1385;235;4,15;44,94;70,37;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Health Professions (miscellaneous) (Q1); Health (social science) (Q1)";"Health Professions; Social Sciences" +4458;19550;"Veterinary Quarterly";journal;"01652176, 18755941";"Taylor and Francis Ltd.";Yes;No;1,060;Q1;62;62;141;4123;728;134;3,98;66,50;45,98;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979, 1982-2007, 2011-2026";"Medicine (miscellaneous) (Q1); Veterinary (miscellaneous) (Q1)";"Medicine; Veterinary" +4459;21101038578;"Cells and Development";journal;"2667291X, 26672901";"Elsevier B.V.";No;No;1,060;Q2;154;48;114;4242;269;109;2,29;88,38;47,16;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Developmental Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4460;13045;"Plasmid";journal;"0147619X, 10959890";"Academic Press Inc.";No;No;1,060;Q2;71;11;45;533;100;44;2,26;48,45;39,39;0;United States;Northern America;"Academic Press Inc.";"1977-2026";"Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4461;27854;"Transactions of Nonferrous Metals Society of China (English Edition)";journal;"10036326, 22103384";"Nonferrous Metals Society of China";No;No;1,059;Q1;109;285;862;12594;5123;862;5,61;44,19;29,85;0;China;Asiatic Region;"Nonferrous Metals Society of China";"1994-2026";"Condensed Matter Physics (Q1); Geotechnical Engineering and Engineering Geology (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1)";"Earth and Planetary Sciences; Materials Science; Physics and Astronomy" +4462;21101166812;"Advanced NanoBiomed Research";journal;"26999307";"John Wiley and Sons Inc";Yes;No;1,058;Q1;31;87;251;8610;1432;248;5,20;98,97;36,82;0;United States;Northern America;"John Wiley and Sons Inc";"2021-2026";"Applied Microbiology and Biotechnology (Q1); Biomaterials (Q1); Engineering (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Engineering; Immunology and Microbiology; Materials Science; Medicine" +4463;28846;"Disability and Society";journal;"13600508, 09687599";"Routledge";No;No;1,058;Q1;107;210;367;10715;1759;365;4,44;51,02;64,30;8;United Kingdom;Western Europe;"Routledge";"1994-2026";"Health Professions (miscellaneous) (Q1); Health (social science) (Q1); Social Sciences (miscellaneous) (Q1)";"Health Professions; Social Sciences" +4464;25854;"European Polymer Journal";journal;"00143057";"Elsevier Ltd";No;No;1,058;Q1;194;626;2103;41069;14885;2100;7,11;65,61;38,95;0;United Kingdom;Western Europe;"Elsevier Ltd";"1965-2026";"Materials Chemistry (Q1); Organic Chemistry (Q1); Physics and Astronomy (miscellaneous) (Q1); Polymers and Plastics (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +4465;21100854164;"IEEE Transactions on Computational Imaging";journal;"25730436, 23339403";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,058;Q1;55;128;327;6732;1702;327;5,04;52,59;26,13;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015-2026";"Computational Mathematics (Q1); Computer Science Applications (Q1); Signal Processing (Q1)";"Computer Science; Mathematics" +4466;11600154149;"International Journal of Agricultural Sustainability";journal;"14735903, 1747762X";"Taylor and Francis Ltd.";Yes;No;1,058;Q1;62;54;208;4411;1153;207;6,52;81,69;43,10;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Agronomy and Crop Science (Q1); Economics and Econometrics (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +4467;4400151515;"Molecular Pain";journal;"17448069";"SAGE Publications Inc.";Yes;No;1,058;Q1;104;64;170;3268;622;170;3,60;51,06;42,24;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2005-2026";"Anesthesiology and Pain Medicine (Q1); Cellular and Molecular Neuroscience (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +4468;21100878009;"Neurobiology of Pain";journal;"2452073X";"Elsevier B.V.";Yes;No;1,058;Q1;26;30;92;1992;357;90;3,19;66,40;43,88;0;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Anesthesiology and Pain Medicine (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q2)";"Medicine; Neuroscience" +4469;22130;"Obesity Surgery";journal;"09608923, 17080428";"Springer";No;No;1,058;Q1;169;752;1789;19698;4425;1387;2,55;26,19;36,88;0;United States;Northern America;"Springer";"1991-2026";"Nutrition and Dietetics (Q1); Surgery (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Medicine; Nursing" +4470;29994;"Appetite";journal;"01956663, 10958304";"Academic Press";No;No;1,057;Q1;205;357;1280;24014;6063;1273;4,31;67,27;66,42;5;United States;Northern America;"Academic Press";"1970, 1980-2026";"Nutrition and Dietetics (Q1); Psychology (miscellaneous) (Q1)";"Nursing; Psychology" +4471;29767;"European Journal of Surgical Oncology";journal;"15322157, 07487983";"W.B. Saunders Ltd";No;No;1,057;Q1;129;715;1299;22656;3852;1093;2,84;31,69;36,77;3;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1985-2026";"Medicine (miscellaneous) (Q1); Surgery (Q1); Oncology (Q2)";"Medicine" +4472;84948;"Expert Opinion on Drug Delivery";journal;"17425247, 17447593";"Taylor and Francis Ltd.";No;No;1,057;Q1;152;142;340;15571;2242;322;5,94;109,65;45,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Pharmaceutical Science (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +4473;19327;"Historical Methods";journal;"19401906, 01615440";"Taylor and Francis Ltd.";No;No;1,057;Q1;31;20;45;1159;105;42;1,63;57,95;27,78;2;United States;Northern America;"Taylor and Francis Ltd.";"1978-2026";"History (Q1)";"Arts and Humanities" +4474;12202;"Intermetallics";journal;"09669795";"Elsevier Ltd";No;No;1,057;Q1;149;375;877;18739;5046;876;5,73;49,97;29,75;0;United Kingdom;Western Europe;"Elsevier Ltd";"1993-2026";"Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)";"Chemistry; Engineering; Materials Science" +4475;21101101225;"JAC-Antimicrobial Resistance";journal;"26321823";"Oxford University Press";Yes;No;1,057;Q1;36;243;491;9759;1860;469;3,60;40,16;49,76;4;United Kingdom;Western Europe;"Oxford University Press";"2019-2026";"Infectious Diseases (Q1); Immunology (Q2); Immunology and Allergy (Q2); Microbiology (Q2); Microbiology (medical) (Q2)";"Immunology and Microbiology; Medicine" +4476;24176;"Journal of Computational Chemistry";journal;"1096987X, 01928651";"John Wiley & Sons Inc.";No;No;1,057;Q1;226;329;624;20905;3128;617;3,47;63,54;25,51;0;United States;Northern America;"John Wiley & Sons Inc.";"1980-2026";"Chemistry (miscellaneous) (Q1); Computational Mathematics (Q1)";"Chemistry; Mathematics" +4477;21100868089;"Journal of Science: Advanced Materials and Devices";journal;"24682284, 24682179";"Elsevier B.V.";Yes;Yes;1,057;Q1;69;211;332;14309;2522;332;7,07;67,82;31,79;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Ceramics and Composites (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Science (miscellaneous) (Q1); Biomaterials (Q2)";"Materials Science" +4478;21100830444;"SIAM-ASA Journal on Uncertainty Quantification";journal;"21662525";"Society for Industrial and Applied Mathematics Publications";No;No;1,057;Q1;43;83;155;4318;369;155;2,43;52,02;16,23;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"2013-2026";"Applied Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +4479;26160;"Journal of Diabetes and its Complications";journal;"10568727, 1873460X";"Elsevier Inc.";No;No;1,057;Q2;108;163;440;6518;1393;416;3,10;39,99;43,27;0;United States;Northern America;"Elsevier Inc.";"1992-2026";"Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4480;26978;"Advances in Physics";journal;"14606976, 00018732";"Taylor and Francis Ltd.";No;No;1,056;Q1;130;3;8;464;31;7;3,00;154,67;12,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1952-2026";"Condensed Matter Physics (Q1)";"Physics and Astronomy" +4481;21101019779;"Cybersecurity";journal;"20964862, 25233246";"SpringerOpen";Yes;Yes;1,056;Q1;37;121;166;5532;1236;166;6,43;45,72;30,08;0;United Kingdom;Western Europe;"SpringerOpen";"2018-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +4482;21101125269;"Infectious Medicine";journal;"2772431X, 20970684";"Elsevier B.V.";Yes;No;1,056;Q1;16;44;131;2106;564;120;4,33;47,86;45,80;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Immunology and Allergy (Q2); Microbiology (medical) (Q2)";"Immunology and Microbiology; Medicine" +4483;21100901140;"Journal of Innovation and Entrepreneurship";journal;"21925372";"SpringerOpen";Yes;No;1,056;Q1;51;145;243;11524;2083;241;9,17;79,48;36,31;0;Germany;Western Europe;"SpringerOpen";"2014-2015, 2017-2026";"Information Systems (Q1); Management Information Systems (Q1); Management of Technology and Innovation (Q1); Sociology and Political Science (Q1); Economics and Econometrics (Q2)";"Business, Management and Accounting; Computer Science; Economics, Econometrics and Finance; Social Sciences" +4484;14311;"Otolaryngology - Head and Neck Surgery";journal;"10976817, 01945998";"John Wiley and Sons Inc";No;No;1,056;Q1;156;447;1190;15080;3478;1100;2,92;33,74;41,83;2;United States;Northern America;"John Wiley and Sons Inc";"1978-2026";"Otorhinolaryngology (Q1); Surgery (Q1)";"Medicine" +4485;21101136300;"Food Chemistry Advances";journal;"2772753X";"Elsevier Ltd";Yes;No;1,055;Q1;43;322;827;18590;6383;826;7,50;57,73;40,27;0;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Food Science (Q1); Organic Chemistry (Q1)";"Agricultural and Biological Sciences; Chemistry" +4486;19400157320;"Foundations and Trends in Accounting";journal;"15540642, 15540650";"Now Publishers Inc";No;No;1,055;Q1;22;8;7;322;11;7;1,60;40,25;0,00;5;United States;Northern America;"Now Publishers Inc";"2006-2012, 2014-2016, 2018-2025";"Accounting (Q1); Finance (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4487;21100242611;"International Journal of Gender and Entrepreneurship";journal;"17566274, 17566266";"Emarald Group Publishing Ltd";No;No;1,055;Q1;56;60;70;5015;582;65;7,05;83,58;66,15;0;United Kingdom;Western Europe;"Emarald Group Publishing Ltd";"2009-2025";"Business and International Management (Q1); Gender Studies (Q1); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +4488;21100398003;"International Journal of Information and Learning Technology";journal;"20564899, 20564880";"Emerald Group Publishing Ltd.";No;No;1,055;Q1;50;35;104;2145;668;104;8,03;61,29;37,18;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2015-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Education (Q1)";"Computer Science; Social Sciences" +4489;86448;"Journal of Anthropological Archaeology";journal;"02784165, 10902686";"Academic Press Inc.";No;No;1,055;Q1;89;61;168;7876;400;168;2,24;129,11;46,74;0;United States;Northern America;"Academic Press Inc.";"1982-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1); Human Factors and Ergonomics (Q1)";"Arts and Humanities; Social Sciences" +4490;144980;"Multiscale Modeling and Simulation";journal;"15403459, 15403467";"Society for Industrial and Applied Mathematics Publications";No;No;1,055;Q1;80;57;164;2543;323;164;2,04;44,61;22,08;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"2003-2026";"Chemistry (miscellaneous) (Q1); Computer Science Applications (Q1); Ecological Modeling (Q1); Modeling and Simulation (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Chemistry; Computer Science; Environmental Science; Mathematics; Physics and Astronomy" +4491;21100461918;"ACS Infectious Diseases";journal;"23738227";"American Chemical Society";No;No;1,054;Q1;77;300;750;18011;3254;731;4,39;60,04;45,38;0;United States;Northern America;"American Chemical Society";"2015-2026";"Infectious Diseases (Q1)";"Medicine" +4492;21226;"Drug Metabolism and Disposition";journal;"00909556, 1521009X";"Elsevier Inc.";No;No;1,054;Q1;202;188;467;10214;1802;453;3,38;54,33;41,79;0;United States;Northern America;"Elsevier Inc.";"1973-2026";"Pharmaceutical Science (Q1); Pharmacology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +4493;145669;"Electronic Commerce Research";journal;"13895753, 15729362";"Springer";No;No;1,054;Q1;64;293;285;20005;2203;279;8,03;68,28;38,17;3;United States;Northern America;"Springer";"2001-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Human-Computer Interaction (Q1)";"Computer Science; Economics, Econometrics and Finance" +4494;22138;"Genes, Brain and Behavior";journal;"1601183X, 16011848";"Wiley-Blackwell Publishing Ltd";No;No;1,054;Q1;107;34;131;2616;371;128;2,38;76,94;44,16;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2002-2025";"Behavioral Neuroscience (Q1); Genetics (Q2); Neurology (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +4495;18732;"Information and Software Technology";journal;"09505849";"Elsevier B.V.";No;No;1,054;Q1;137;244;494;17555;3356;478;6,24;71,95;31,26;1;Netherlands;Western Europe;"Elsevier B.V.";"1970, 1987-2026";"Computer Science Applications (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +4496;21101158600;"Journal of Metaverse";journal;"27920232";"Izmir Academy Association";Yes;Yes;1,054;Q1;19;15;46;919;423;46;7,83;61,27;25,49;0;Turkey;Middle East;"Izmir Academy Association";"2021-2025";"Artificial Intelligence (Q1); Social Sciences (miscellaneous) (Q1)";"Computer Science; Social Sciences" +4497;13928;"Journal of Planning Education and Research";journal;"0739456X, 15526577";"SAGE Publications Inc.";No;No;1,054;Q1;94;111;317;6733;1088;285;3,46;60,66;52,29;0;United States;Northern America;"SAGE Publications Inc.";"1981-2026";"Development (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1)";"Social Sciences" +4498;24432;"Journal of Structural Geology";journal;"01918141";"Elsevier Ltd";No;No;1,054;Q1;158;167;520;14918;1602;511;3,16;89,33;26,56;0;United Kingdom;Western Europe;"Elsevier Ltd";"1979-2026";"Geology (Q1)";"Earth and Planetary Sciences" +4499;26252;"Maritime Policy and Management";journal;"03088839, 14645254";"Routledge";No;No;1,054;Q1;80;104;220;4696;1244;215;5,43;45,15;34,29;2;United Kingdom;Western Europe;"Routledge";"1976-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Ocean Engineering (Q1); Transportation (Q1)";"Engineering; Environmental Science; Social Sciences" +4500;36538;"Soil Use and Management";journal;"14752743, 02660032";"John Wiley and Sons Inc";No;No;1,054;Q1;103;156;457;12206;2323;443;3,73;78,24;37,76;1;United States;Northern America;"John Wiley and Sons Inc";"1985-2026";"Agronomy and Crop Science (Q1); Pollution (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4501;21101039766;"Structural Heart";journal;"24748706, 24748714";"Cardiovascular Research Foundation";Yes;No;1,054;Q1;15;131;189;3179;406;156;2,36;24,27;22,65;0;United States;Northern America;"Cardiovascular Research Foundation";"2017-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +4502;21100403124;"Advanced Materials Interfaces";journal;"21967350";"John Wiley and Sons Ltd";Yes;No;1,053;Q1;123;640;2152;42066;10435;2144;4,87;65,73;32,83;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2014-2026";"Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering" +4503;5700153276;"Convergence";journal;"17487382, 13548565";"SAGE Publications Inc.";No;No;1,053;Q1;66;151;333;9911;1384;329;3,40;65,64;45,31;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"1995-2026";"Arts and Humanities (miscellaneous) (Q1); Communication (Q1)";"Arts and Humanities; Social Sciences" +4504;21100203914;"Discourse, Context and Media";journal;"22116958";"Elsevier B.V.";No;No;1,053;Q1;42;79;107;3965;411;97;2,66;50,19;65,89;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Communication (Q1); Cultural Studies (Q1)";"Social Sciences" +4505;19700201443;"Engineering Applications of Computational Fluid Mechanics";journal;"1997003X, 19942060";"Taylor and Francis Ltd.";Yes;No;1,053;Q1;68;152;346;7914;2209;346;6,44;52,07;24,81;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009, 2011-2026";"Computer Science (miscellaneous) (Q1); Modeling and Simulation (Q1)";"Computer Science; Mathematics" +4506;21100824973;"Endocrine Connections";journal;"20493614";"BioScientifica Ltd.";Yes;No;1,053;Q2;57;193;427;8405;1444;421;3,36;43,55;53,61;0;United Kingdom;Western Europe;"BioScientifica Ltd.";"2013-2026";"Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4507;16900;"Biological Chemistry";journal;"14316730, 14374315";"Walter de Gruyter GmbH";No;No;1,052;Q1;137;43;231;3965;570;215;2,20;92,21;38,03;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1881, 1952, 1975, 1996-2026";"Clinical Biochemistry (Q1); Biochemistry (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4508;28888;"Computer Law and Security Review";journal;"22124748, 2212473X";"Elsevier Ltd";No;No;1,052;Q1;70;35;283;609;1835;279;6,80;17,40;42,62;5;United Kingdom;Western Europe;"Elsevier Ltd";"1985-2026";"Business, Management and Accounting (miscellaneous) (Q1); Computer Networks and Communications (Q1); Law (Q1)";"Business, Management and Accounting; Computer Science; Social Sciences" +4509;19700175116;"Frontiers in Neuroanatomy";journal;"16625129";"Frontiers Media SA";Yes;No;1,052;Q1;95;51;298;4153;758;271;2,19;81,43;46,69;0;Switzerland;Western Europe;"Frontiers Media SA";"2007-2026";"Anatomy (Q1); Cellular and Molecular Neuroscience (Q2); Neuroscience (miscellaneous) (Q2)";"Medicine; Neuroscience" +4510;15600154711;"International Journal of Sport and Exercise Psychology";journal;"1557251X, 1612197X";"Taylor and Francis Ltd.";No;No;1,052;Q1;53;238;294;15020;1225;288;3,93;63,11;40,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Social Psychology (Q1); Applied Psychology (Q2); Sports Science (Q2)";"Health Professions; Psychology" +4511;6100153017;"Journal of Hyperbolic Differential Equations";journal;"17936993, 02198916";"World Scientific Publishing Co. Pte Ltd";No;No;1,052;Q1;39;22;77;655;94;76;1,21;29,77;19,05;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2004-2025";"Analysis (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +4512;21100843270;"Progress in Earth and Planetary Science";journal;"21974284";"SpringerOpen";Yes;No;1,052;Q1;55;111;203;6441;657;199;3,19;58,03;19,03;1;United Kingdom;Western Europe;"SpringerOpen";"2014-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +4513;21101152501;"Geoenergy Science and Engineering";journal;"29498910";"Elsevier B.V.";No;No;1,051;Q1;173;633;3623;35383;19924;3607;4,95;55,90;26,06;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Energy Engineering and Power Technology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Energy (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Earth and Planetary Sciences; Energy" +4514;22076;"Gifted Child Quarterly";journal;"00169862, 19349041";"SAGE Publications Inc.";No;No;1,051;Q1;73;43;86;3548;349;57;4,83;82,51;65,67;1;United States;Northern America;"SAGE Publications Inc.";"1957-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +4515;21100924771;"Natural Products and Bioprospecting";journal;"21922209, 21922195";"Springer Singapore";Yes;Yes;1,051;Q1;47;67;152;4649;1058;150;6,30;69,39;41,25;0;Singapore;Asiatic Region;"Springer Singapore";"2011-2026";"Analytical Chemistry (Q1); Food Science (Q1); Organic Chemistry (Q1); Pharmacology (Q1); Plant Science (Q1); Toxicology (Q1); Biochemistry (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +4516;4000148813;"Clinical Genitourinary Cancer";journal;"15587673, 19380682";"Elsevier Inc.";No;No;1,050;Q1;62;209;606;6168;1523;593;2,51;29,51;29,82;0;United States;Northern America;"Elsevier Inc.";"2005-2026";"Urology (Q1); Oncology (Q2)";"Medicine" +4517;10100153313;"Epigenetics";journal;"15592308, 15592294";"Taylor and Francis Ltd.";Yes;No;1,050;Q1;121;68;371;5184;1315;370;3,60;76,24;46,36;0;United States;Northern America;"Taylor and Francis Ltd.";"2006-2026";"Medicine (miscellaneous) (Q1); Cancer Research (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4518;21100372295;"Preventive Medicine Reports";journal;"22113355";"Elsevier Inc.";Yes;No;1,050;Q1;66;358;1210;12060;3840;1190;2,91;33,69;55,71;2;United States;Northern America;"Elsevier Inc.";"2014-2026";"Public Health, Environmental and Occupational Health (Q1); Health Informatics (Q2)";"Medicine" +4519;5800179603;"Radiation Oncology";journal;"1748717X";"BioMed Central Ltd";Yes;No;1,050;Q1;102;183;586;7115;2189;585;3,72;38,88;41,30;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2005-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)";"Medicine" +4520;21101017244;"Drones";journal;"2504446X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,049;Q1;75;875;1917;43845;12954;1910;6,46;50,11;26,93;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2026";"Aerospace Engineering (Q1); Artificial Intelligence (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Information Systems (Q1)";"Computer Science; Engineering" +4521;23825;"Journal of Atherosclerosis and Thrombosis";journal;"18803873, 13403478";"Japan Atherosclerosis Society";Yes;No;1,049;Q1;95;133;494;4743;1407;385;3,19;35,66;30,23;0;Japan;Asiatic Region;"Japan Atherosclerosis Society";"1994-1998, 2000-2026";"Biochemistry (medical) (Q1); Cardiology and Cardiovascular Medicine (Q1); Internal Medicine (Q2)";"Medicine" +4522;5800207540;"Journal of Politeness Research";journal;"16125681, 16134877";"De Gruyter Mouton";No;No;1,049;Q1;45;18;58;1006;135;57;2,27;55,89;53,85;0;Germany;Western Europe;"De Gruyter Mouton";"2005-2026";"Communication (Q1); Cultural Studies (Q1); Linguistics and Language (Q1); Social Psychology (Q1)";"Psychology; Social Sciences" +4523;130149;"Hereditary Cancer in Clinical Practice";journal;"18974287, 17312302";"BioMed Central Ltd";Yes;No;1,049;Q2;36;27;91;1052;247;86;2,75;38,96;61,17;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Genetics (clinical) (Q2); Oncology (Q2)";"Medicine" +4524;21101094825;"ACR Open Rheumatology";journal;"25785745";"John Wiley and Sons Inc";Yes;No;1,048;Q1;32;193;355;5593;868;289;2,46;28,98;56,41;2;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Rheumatology (Q1)";"Medicine" +4525;16270;"Archives of Physical Medicine and Rehabilitation";journal;"1532821X, 00039993";"W.B. Saunders";No;No;1,048;Q1;235;284;897;12355;3178;734;3,21;43,50;53,61;3;United States;Northern America;"W.B. Saunders";"1945-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Sports Science (Q2)";"Health Professions; Medicine" +4526;21100203911;"European Journal of Training and Development";journal;"20469012, 20469020";"Emerald Publishing";No;No;1,048;Q1;77;77;163;5516;1051;161;5,57;71,64;52,66;0;United Kingdom;Western Europe;"Emerald Publishing";"2012-2026";"Business, Management and Accounting (miscellaneous) (Q1); Education (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +4527;5800207505;"IEEE Industrial Electronics Magazine";journal;"19410115, 19324529";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,048;Q1;94;25;136;1013;520;108;3,87;40,52;13,83;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2007-2026";"Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1)";"Engineering" +4528;19700201424;"Journal of Diabetes Investigation";journal;"20401116, 20401124";"John Wiley and Sons Inc";Yes;No;1,048;Q1;82;263;633;8770;2126;547;3,13;33,35;35,97;0;Australia;Pacific Region;"John Wiley and Sons Inc";"2010-2026";"Medicine (miscellaneous) (Q1); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)";"Medicine" +4529;23898;"Journal of Graph Theory";journal;"03649024, 10970118";"Wiley-Liss Inc.";No;No;1,048;Q1;62;133;379;2790;400;379;1,13;20,98;21,69;0;United States;Northern America;"Wiley-Liss Inc.";"1977-2026";"Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1)";"Mathematics" +4530;25737;"Permafrost and Periglacial Processes";journal;"10991530, 10456740";"John Wiley and Sons Ltd";No;No;1,048;Q1;98;54;103;4630;413;103;4,06;85,74;39,94;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1990-2026";"Earth-Surface Processes (Q1)";"Earth and Planetary Sciences" +4531;12437;"Molecular Carcinogenesis";journal;"10982744, 08991987";"Wiley-Liss Inc.";No;No;1,048;Q2;114;157;418;7101;1507;418;3,54;45,23;41,89;0;United States;Northern America;"Wiley-Liss Inc.";"1988-2026";"Cancer Research (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4532;21100852014;"International Journal of Business Communication";journal;"23294884, 23294892";"SAGE Publications Inc.";No;No;1,047;Q1;72;92;154;6632;794;149;5,23;72,09;50,54;1;United States;Northern America;"SAGE Publications Inc.";"2015-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4533;21101185306;"Journal of Audiovisual Translation";journal;"26179148";"European Association for Studies in Screen Translation";Yes;Yes;1,047;Q1;15;24;62;1290;159;59;2,44;53,75;70,97;0;United Kingdom;Western Europe;"European Association for Studies in Screen Translation";"2019-2026";"Linguistics and Language (Q1)";"Social Sciences" +4534;21101196042;"Journal of Environmental Exposure Assessment";journal;"27715949";"OAE Publishing Inc.";No;No;1,047;Q1;8;42;73;2237;235;69;2,67;53,26;48,83;0;United States;Northern America;"OAE Publishing Inc.";"2022-2026";"Environmental Science (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Environmental Science; Medicine" +4535;21101339663;"Journal of Natural Resources";journal;"10003037";"";Yes;No;1,047;Q1;35;196;584;8890;2508;584;4,35;45,36;38,70;0;China;Asiatic Region;"";"2021-2025";"Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Energy (miscellaneous) (Q2)";"Energy; Environmental Science; Social Sciences" +4536;17500154721;"Parasites and Vectors";journal;"17563305";"BioMed Central Ltd";Yes;No;1,047;Q1;129;504;1466;29927;5816;1457;3,68;59,38;44,57;6;United Kingdom;Western Europe;"BioMed Central Ltd";"2008-2026";"Infectious Diseases (Q1); Parasitology (Q1)";"Immunology and Microbiology; Medicine" +4537;21100218364;"Creativity and Innovation Management";journal;"09631690, 14678691";"John Wiley and Sons Ltd";No;No;1,046;Q1;87;68;137;6020;748;129;5,15;88,53;40,10;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1992-2026";"Management of Technology and Innovation (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +4538;15495;"Finance and Stochastics";journal;"14321122, 09492984";"Springer Verlag";No;No;1,046;Q1;58;30;84;1208;156;81;1,93;40,27;16,18;0;Germany;Western Europe;"Springer Verlag";"2004-2026";"Finance (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +4539;12186;"Joint Bone Spine";journal;"17787254, 1297319X";"Elsevier Masson s.r.l.";No;No;1,046;Q1;99;143;451;4085;1160;301;2,80;28,57;46,22;0;France;Western Europe;"Elsevier Masson s.r.l.";"2000-2026";"Rheumatology (Q1)";"Medicine" +4540;20648;"Thrombosis Research";journal;"00493848, 18792472";"Elsevier Ltd";No;No;1,046;Q1;141;218;838;7910;2312;633;2,81;36,28;43,78;0;United Kingdom;Western Europe;"Elsevier Ltd";"1972-2026";"Hematology (Q1)";"Medicine" +4541;26142;"Technical Digest - International Electron Devices Meeting";conference and proceedings;"01631918";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,046;-;132;0;738;0;2759;734;3,38;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1961, 1980-2024";"Condensed Matter Physics; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Materials Chemistry";"Engineering; Materials Science; Physics and Astronomy" +4542;12538;"European Journal of Clinical Nutrition";journal;"09543007, 14765640";"Springer Nature";No;No;1,045;Q1;194;169;557;7178;1972;515;3,37;42,47;57,11;1;United Kingdom;Western Europe;"Springer Nature";"1988-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +4543;13250;"Expert Opinion on Biological Therapy";journal;"14712598, 17447682";"Taylor and Francis Ltd.";No;No;1,045;Q1;112;125;401;8097;1403;337;3,31;64,78;44,70;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Clinical Biochemistry (Q1); Drug Discovery (Q1); Pharmacology (Q1)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +4544;21101186927;"IEEE Journal of Microwaves";journal;"26928388";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;1,045;Q1;39;117;227;4919;1207;227;5,46;42,04;19,19;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2021-2026";"Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Materials Chemistry (Q1)";"Engineering; Materials Science; Physics and Astronomy" +4545;21100923464;"International Data Privacy Law";journal;"20443994, 20444001";"Oxford University Press";No;No;1,045;Q1;35;21;68;2170;200;61;2,53;103,33;33,33;0;United States;Northern America;"Oxford University Press";"2011-2025";"Law (Q1)";"Social Sciences" +4546;145601;"International Relations of the Asia-Pacific";journal;"14704838, 1470482X";"Oxford University Press";No;No;1,045;Q1;40;18;48;1315;164;48;2,91;73,06;30,77;0;United Kingdom;Western Europe;"Oxford University Press";"2001-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Social Sciences" +4547;21101053557;"Nizhnevolzhskiy Arkheologicheskiy Vestnik";journal;"26585995, 25878123";"Volgograd State University";Yes;Yes;1,045;Q1;5;33;102;1650;54;102;0,60;50,00;38,46;0;Russian Federation;Eastern Europe;"Volgograd State University";"2019-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +4548;19885;"Stress and Health";journal;"15323005, 15322998";"John Wiley & Sons Inc.";No;No;1,045;Q1;95;151;427;10181;1517;412;3,16;67,42;52,51;0;United States;Northern America;"John Wiley & Sons Inc.";"2001-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Applied Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +4549;21101198454;"Stresses";journal;"26737140";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,045;Q1;20;70;155;7101;1093;153;4,96;101,44;39,81;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +4550;17500155156;"Early Intervention in Psychiatry";journal;"17517885, 17517893";"Wiley-Blackwell Publishing Ltd";No;No;1,045;Q2;65;174;399;8476;1112;382;2,68;48,71;58,72;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2007-2026";"Biological Psychiatry (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Neuroscience" +4551;21100809808;"Educational and Developmental Psychologist";journal;"20590784, 20590776";"Routledge";No;No;1,044;Q1;27;25;68;1448;309;63;4,22;57,92;62,96;1;United Kingdom;Western Europe;"Routledge";"2016-2026";"Developmental and Educational Psychology (Q1); Education (Q1)";"Psychology; Social Sciences" +4552;144790;"Marine Drugs";journal;"16603397";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,044;Q1;188;486;2009;38767;13938;1986;6,26;79,77;48,70;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2003-2026";"Drug Discovery (Q1); Pharmaceutical Science (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +4553;500147005;"Maternal and Child Nutrition";journal;"17408695, 17408709";"Wiley-Blackwell Publishing Ltd";Yes;No;1,044;Q1;93;210;419;10296;1571;407;2,99;49,03;63,03;13;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2005-2026";"Nutrition and Dietetics (Q1); Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Nursing" +4554;16182;"Seminars in Perinatology";journal;"1558075X, 01460005";"W.B. Saunders";No;No;1,044;Q1;120;99;241;6608;785;217;3,17;66,75;67,42;1;United States;Northern America;"W.B. Saunders";"1977-2026";"Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +4555;22305;"Surgery (United States)";journal;"15327361, 00396060";"Elsevier Inc.";No;No;1,044;Q1;193;848;1919;17439;4323;1394;2,23;20,56;35,44;0;United States;Northern America;"Elsevier Inc.";"1937-2026";"Surgery (Q1)";"Medicine" +4556;15773;"ACM Transactions on Internet Technology";journal;"15576051, 15335399";"Association for Computing Machinery";No;No;1,043;Q1;76;27;192;1147;956;183;5,15;42,48;33,64;0;United States;Northern America;"Association for Computing Machinery";"2001-2026";"Computer Networks and Communications (Q1)";"Computer Science" +4557;21101331990;"Journal of Alloys and Compounds Communications";journal;"29502845";"Elsevier B.V.";No;No;1,043;Q1;9;99;41;5854;266;38;6,49;59,13;24,69;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science" +4558;21100780475;"Journal of Commodity Markets";journal;"24058513";"Elsevier B.V.";No;No;1,043;Q1;36;49;153;2984;827;153;5,56;60,90;23,44;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Finance (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +4559;21759;"Journal of Consumer Affairs";journal;"00220078, 17456606";"Wiley-Blackwell";No;No;1,043;Q1;83;39;188;3072;840;173;4,28;78,77;50,93;1;United States;Northern America;"Wiley-Blackwell";"1967-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Social Sciences" +4560;22920;"Journal of Fashion Marketing and Management";journal;"13612026";"Emerald Group Publishing Ltd.";No;No;1,043;Q1;79;93;168;7502;1163;167;5,96;80,67;55,60;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1996-2026";"Business and International Management (Q1); Marketing (Q2)";"Business, Management and Accounting" +4561;21101160648;"Journal on Migration and Human Security";journal;"23302488, 23315024";"SAGE Publications Inc.";No;No;1,043;Q1;34;30;57;1600;169;57;3,07;53,33;65,57;1;United States;Northern America;"SAGE Publications Inc.";"2013-2026";"Demography (Q1); Geography, Planning and Development (Q1)";"Social Sciences" +4562;19700173215;"Nanoscale";journal;"20403372, 20403364";"Royal Society of Chemistry";No;No;1,043;Q1;317;1827;5368;122790;27361;5347;5,05;67,21;35,16;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2009-2026";"Materials Science (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q2)";"Materials Science" +4563;27544;"Archives of Medical Research";journal;"01884409, 18735487";"Elsevier Inc.";No;No;1,042;Q1;104;121;297;5794;1029;255;3,46;47,88;43,87;0;United States;Northern America;"Elsevier Inc.";"1992-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +4564;21100794828;"Chemical and Biological Technologies in Agriculture";journal;"21965641";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,042;Q1;56;175;433;12070;2938;432;6,24;68,97;43,70;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Agronomy and Crop Science (Q1); Biotechnology (Q1); Food Science (Q1); Biochemistry (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +4565;21101088421;"Clean Technologies";journal;"25718797";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,042;Q1;37;114;228;8116;1630;224;6,88;71,19;37,05;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q2)";"Environmental Science" +4566;12867;"Cognitive and Behavioral Practice";journal;"1878187X, 10777229";"Elsevier Inc.";No;No;1,042;Q1;81;80;193;4374;628;185;2,90;54,68;63,68;0;United States;Northern America;"Elsevier Inc.";"1994-2026";"Clinical Psychology (Q1)";"Psychology" +4567;17300154971;"International Journal of Critical Infrastructure Protection";journal;"18745482";"Elsevier B.V.";No;No;1,042;Q1;56;50;128;3206;874;119;5,68;64,12;30,22;1;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Computer Science Applications (Q1); Information Systems and Management (Q1); Modeling and Simulation (Q1); Safety, Risk, Reliability and Quality (Q1)";"Computer Science; Decision Sciences; Engineering; Mathematics" +4568;21100903475;"Journal of Hydrology X";journal;"25899155";"Elsevier B.V.";Yes;No;1,042;Q1;25;15;65;770;263;61;4,24;51,33;21,43;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Water Science and Technology (Q1)";"Environmental Science" +4569;19900192517;"Revista Espanola de Derecho Constitucional";journal;"02115743, 19890648";"Centro de Estudios Politicos y Constitucionales";No;Yes;1,042;Q1;12;34;87;981;45;70;0,54;28,85;25,00;0;Spain;Western Europe;"Centro de Estudios Politicos y Constitucionales";"2008-2013, 2015-2025";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +4570;21100461927;"ACS Biomaterials Science and Engineering";journal;"23739878";"American Chemical Society";No;No;1,041;Q1;117;518;1506;37734;9558;1499;6,11;72,85;40,30;1;United States;Northern America;"American Chemical Society";"2015-2026";"Biomedical Engineering (Q1); Biomaterials (Q2)";"Engineering; Materials Science" +4571;21101127319;"ACS Physical Chemistry Au";journal;"26942445";"American Chemical Society";Yes;No;1,041;Q1;18;72;177;4286;727;171;4,50;59,53;21,60;0;United States;Northern America;"American Chemical Society";"2021-2026";"Chemistry (miscellaneous) (Q1); Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Computer Science" +4572;21100254615;"Atmospheric Pollution Research";journal;"13091042";"Elsevier B.V.";Yes;No;1,041;Q1;84;350;811;22593;3643;811;4,61;64,55;38,65;1;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Pollution (Q1); Waste Management and Disposal (Q1); Atmospheric Science (Q2)";"Earth and Planetary Sciences; Environmental Science" +4573;29712;"Clinical Therapeutics";journal;"1879114X, 01492918";"Elsevier Inc.";No;No;1,041;Q1;158;218;538;6545;1768;450;2,89;30,02;46,36;2;United States;Northern America;"Elsevier Inc.";"1977-2026";"Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4574;12300;"IEEE Transactions on Very Large Scale Integration (VLSI) Systems";journal;"15579999, 10638210";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,041;Q1;127;356;608;10876;2672;603;4,28;30,55;24,07;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1993-2026";"Electrical and Electronic Engineering (Q1); Hardware and Architecture (Q1); Software (Q1)";"Computer Science; Engineering" +4575;21101067067;"Lithologic Reservoirs";journal;"16738926";"Science Press";No;No;1,041;Q1;22;103;245;3666;849;245;3,48;35,59;33,79;0;China;Asiatic Region;"Science Press";"2019-2026";"Energy Engineering and Power Technology (Q1); Geology (Q1); Geophysics (Q1); Geotechnical Engineering and Engineering Geology (Q1); Fuel Technology (Q2)";"Earth and Planetary Sciences; Energy" +4576;16000154743;"Nous-Supplement: Philosophical Perspectives";journal;"17582245, 15208583";"Wiley-Blackwell Publishing Ltd";No;No;1,041;Q1;56;2;51;126;90;51;1,51;63,00;33,33;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1997, 1999-2000, 2002-2010, 2014-2025";"Philosophy (Q1)";"Arts and Humanities" +4577;15300154824;"Nutrition and Metabolism";journal;"17437075";"BioMed Central Ltd";Yes;No;1,041;Q1;112;158;245;9562;1074;244;3,89;60,52;50,65;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Medicine; Nursing" +4578;21166;"Pharmacoepidemiology and Drug Safety";journal;"10991557, 10538569";"John Wiley and Sons Ltd";No;No;1,041;Q1;117;201;537;6938;1332;488;2,39;34,52;50,39;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1992-2026";"Pharmacology (medical) (Q1); Epidemiology (Q2)";"Medicine" +4579;14265;"Reviews in Chemical Engineering";journal;"01678299, 21910235";"Walter de Gruyter GmbH";No;No;1,041;Q1;78;30;125;4665;880;125;5,61;155,50;25,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1982-1985, 1987-1988, 1990-2026";"Chemical Engineering (miscellaneous) (Q1)";"Chemical Engineering" +4580;130145;"Clinical Proteomics";journal;"15590275, 15426416";"BioMed Central Ltd";Yes;No;1,041;Q2;49;49;171;2813;679;165;4,22;57,41;38,74;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2004, 2006-2026";"Clinical Biochemistry (Q2); Molecular Biology (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology" +4581;14853;"Cerebellum";journal;"14734230, 14734222";"Springer";No;No;1,040;Q1;94;187;460;8614;1382;435;2,94;46,06;46,19;0;United States;Northern America;"Springer";"2002-2026";"Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Neurology (Q2)";"Medicine; Neuroscience" +4582;13681;"Computer Communications";journal;"1873703X, 01403664";"Elsevier B.V.";No;No;1,040;Q1;145;232;1066;11224;6360;1051;5,98;48,38;27,54;0;Netherlands;Western Europe;"Elsevier B.V.";"1978-2026";"Computer Networks and Communications (Q1)";"Computer Science" +4583;21101039902;"Current Research in Biotechnology";journal;"25902628";"Elsevier B.V.";Yes;No;1,040;Q1;32;77;191;7577;1348;191;7,49;98,40;38,49;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Biotechnology (Q1)";"Biochemistry, Genetics and Molecular Biology" +4584;11700154725;"Education for Chemical Engineers";journal;"17497728";"Elsevier B.V.";No;No;1,040;Q1;39;52;117;1883;613;116;5,67;36,21;39,60;0;Netherlands;Western Europe;"Elsevier B.V.";"2006-2026";"Chemical Engineering (miscellaneous) (Q1); Education (Q1)";"Chemical Engineering; Social Sciences" +4585;19900194300;"Journal of Systematics and Evolution";journal;"17596831, 16744918";"Wiley-Blackwell";No;No;1,040;Q1;70;120;253;10183;1023;245;3,52;84,86;35,96;0;United States;Northern America;"Wiley-Blackwell";"2008-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +4586;16820;"Journal of the Neurological Sciences";journal;"0022510X, 18785883";"Elsevier B.V.";No;No;1,040;Q1;163;360;1019;11754;2941;830;2,43;32,65;38,71;0;Netherlands;Western Europe;"Elsevier B.V.";"1964-2026";"Neurology (clinical) (Q1); Neurology (Q2)";"Medicine; Neuroscience" +4587;21101068012;"North American Spine Society Journal";journal;"26665484";"Elsevier Inc.";Yes;No;1,040;Q1;19;110;261;4632;804;235;3,22;42,11;22,09;0;United States;Northern America;"Elsevier Inc.";"2020-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1); Neurology (clinical) (Q2)";"Medicine" +4588;21101381389;"npj Sustainable Agriculture";journal;"27319202";"Springer Nature";Yes;No;1,040;Q1;9;65;31;4310;163;24;5,26;66,31;36,13;4;United Kingdom;Western Europe;"Springer Nature";"2024-2026";"Agronomy and Crop Science (Q1); Ecology (Q1); Food Science (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Economics and Econometrics (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Energy; Environmental Science; Social Sciences" +4589;14536;"Developmental Biology";journal;"1095564X, 00121606";"Elsevier Inc.";No;No;1,040;Q2;257;250;415;16656;902;386;2,01;66,62;50,15;1;United States;Northern America;"Elsevier Inc.";"1959-2026";"Cell Biology (Q2); Developmental Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4590;21101092012;"Applied Food Research";journal;"27725022";"Elsevier B.V.";Yes;No;1,039;Q1;39;907;599;61377;4624;599;6,48;67,67;46,87;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +4591;17900156738;"Clinical and Experimental Otorhinolaryngology";journal;"19768710, 20050720";"Korean Society of Otolaryngology";Yes;No;1,039;Q1;45;39;129;1842;435;117;3,24;47,23;31,67;0;South Korea;Asiatic Region;"Korean Society of Otolaryngology";"2009-2025";"Otorhinolaryngology (Q1); Surgery (Q1)";"Medicine" +4592;13822;"Cornell Law Review";journal;"00108847";"Cornell Law School";No;No;1,039;Q1;62;17;40;2931;48;38;0,80;172,41;50,00;0;United States;Northern America;"Cornell Law School";"1975-1981, 1984-1986, 1988-2025";"Law (Q1)";"Social Sciences" +4593;21101039610;"Current Protocols";journal;"26911299";"John Wiley and Sons Inc";No;No;1,039;Q1;157;180;811;5467;2129;807;2,44;30,37;47,12;0;United States;Northern America;"John Wiley and Sons Inc";"2021-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medical Laboratory Technology (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Health Informatics (Q2); Neuroscience (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Immunology and Microbiology; Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +4594;21100981413;"International Journal of Lightweight Materials and Manufacture";journal;"25888404";"KeAi Publishing Communications Ltd.";Yes;Yes;1,039;Q1;41;60;157;3461;1207;157;7,92;57,68;18,03;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2018-2026";"Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +4595;21100201997;"Journal of Information Display";journal;"15980316, 21581606";"Springer";Yes;No;1,039;Q1;35;45;86;1908;459;86;5,14;42,40;28,14;0;United Kingdom;Western Europe;"Springer";"2000-2025";"Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +4596;21101055718;"Marine Life Science and Technology";journal;"26621746, 20966490";"Springer Verlag";No;No;1,039;Q1;33;76;139;5310;783;137;5,57;69,87;36,50;1;Germany;Western Europe;"Springer Verlag";"2019-2026";"Aquatic Science (Q1); Biotechnology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Earth and Planetary Sciences" +4597;19700187622;"Research Papers in Education";journal;"02671522, 14701146";"Taylor and Francis Ltd.";No;No;1,039;Q1;62;53;142;3882;603;141;3,59;73,25;58,62;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2026";"Education (Q1)";"Social Sciences" +4598;21100943534;"Transportation Research Interdisciplinary Perspectives";journal;"25901982";"Elsevier Ltd";Yes;No;1,039;Q1;68;460;722;28700;4158;717;5,69;62,39;35,46;3;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Management Science and Operations Research (Q1); Urban Studies (Q1); Transportation (Q2)";"Decision Sciences; Engineering; Environmental Science; Social Sciences" +4599;5600153363;"Equity and Excellence in Education";journal;"10665684, 15473457";"Routledge";No;No;1,038;Q1;69;40;120;1776;278;108;2,32;44,40;69,12;0;United Kingdom;Western Europe;"Routledge";"1963-1982, 1984, 1986-1988, 1991, 1993-2026";"Education (Q1)";"Social Sciences" +4600;4500151401;"Geostandards and Geoanalytical Research";journal;"1751908X, 16394488";"John Wiley and Sons Inc";No;No;1,038;Q1;98;46;150;2922;478;148;2,66;63,52;28,72;0;United States;Northern America;"John Wiley and Sons Inc";"2004-2026";"Geochemistry and Petrology (Q1); Geology (Q1)";"Earth and Planetary Sciences" +4601;19700171310;"Hormone Research in Paediatrics";journal;"16632826, 16632818";"S. Karger AG";No;No;1,038;Q1;107;207;244;8523;814;229;3,62;41,17;59,74;0;Switzerland;Western Europe;"S. Karger AG";"1970-1997, 2010-2026";"Pediatrics, Perinatology and Child Health (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4602;23374;"Journal of Environmental Policy and Planning";journal;"15227200, 1523908X";"Routledge";No;No;1,038;Q1;73;73;156;4941;608;151;3,74;67,68;49,46;0;United Kingdom;Western Europe;"Routledge";"1999-2026";"Management, Monitoring, Policy and Law (Q1)";"Environmental Science" +4603;19700168907;"Korean Journal of Orthodontics";journal;"2005372X, 22347518";"Korean Association of Orthodontists";No;No;1,038;Q1;42;49;124;1362;431;117;2,99;27,80;43,54;0;South Korea;Asiatic Region;"Korean Association of Orthodontists";"2008-2026";"Orthodontics (Q1)";"Dentistry" +4604;12710;"Motivation and Emotion";journal;"15736644, 01467239";"Springer New York";No;No;1,038;Q1;115;91;183;6514;586;183;2,85;71,58;51,72;0;United States;Northern America;"Springer New York";"1977-2026";"Experimental and Cognitive Psychology (Q1); Social Psychology (Q1)";"Psychology" +4605;29253;"Nursing Outlook";journal;"15283968, 00296554";"Elsevier Inc.";No;No;1,038;Q1;81;211;410;8473;1322;311;2,98;40,16;73,98;0;United States;Northern America;"Elsevier Inc.";"1953-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +4606;26951;"Studies in Applied Mathematics";journal;"14679590, 00222526";"John Wiley & Sons Inc.";No;No;1,038;Q1;58;173;306;7220;858;306;2,50;41,73;26,65;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"1922-1928, 1930-2026";"Applied Mathematics (Q1)";"Mathematics" +4607;21101181927;"Vegetable Research";journal;"27690520";"Maximum Academic Press";Yes;No;1,038;Q1;13;48;89;2730;373;86;4,18;56,88;49,20;0;United States;Northern America;"Maximum Academic Press";"2021-2026";"Horticulture (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +4608;19186;"Clinical and Experimental Rheumatology";journal;"0392856X, 1593098X";"Clinical and Experimental Rheumatology S.A.S.";No;No;1,038;Q2;114;320;1058;8960;2796;858;2,68;28,00;51,07;1;Italy;Western Europe;"Clinical and Experimental Rheumatology S.A.S.";"1983-2026";"Immunology (Q2); Immunology and Allergy (Q2); Rheumatology (Q2)";"Immunology and Microbiology; Medicine" +4609;20825;"Immunology Letters";journal;"01652478, 18790542";"Elsevier B.V.";No;No;1,038;Q2;118;79;263;4174;814;244;3,03;52,84;50,87;0;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +4610;21100241689;"Journal of Diabetes Research";journal;"23146745, 23146753";"John Wiley and Sons Ltd";Yes;No;1,038;Q2;99;161;344;7549;1428;343;3,68;46,89;48,16;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4611;21100913138;"Atmospheric and Oceanic Science Letters";journal;"23766123, 16742834";"KeAi Communications Co.";Yes;No;1,037;Q1;40;131;188;4107;627;184;3,48;31,35;40,64;1;China;Asiatic Region;"KeAi Communications Co.";"2008-2026";"Oceanography (Q1); Atmospheric Science (Q2)";"Earth and Planetary Sciences" +4612;19700200835;"Geomatics, Natural Hazards and Risk";journal;"19475713, 19475705";"Taylor and Francis Ltd.";Yes;No;1,037;Q1;74;228;480;13326;2769;480;5,44;58,45;29,36;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Earth and Planetary Sciences; Environmental Science" +4613;15721;"Pediatric Diabetes";journal;"13995448, 1399543X";"John Wiley and Sons Inc";No;No;1,037;Q1;106;66;267;2547;1378;243;1,94;38,59;60,82;1;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2000-2026";"Pediatrics, Perinatology and Child Health (Q1); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)";"Medicine" +4614;144702;"Virtual Reality";journal;"14349957, 13594338";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,037;Q1;84;175;503;12035;3737;502;6,81;68,77;35,07;2;United Kingdom;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1995, 1998-2000, 2002, 2004-2026";"Computer Graphics and Computer-Aided Design (Q1); Human-Computer Interaction (Q1); Software (Q1)";"Computer Science" +4615;18930;"American Mineralogist";journal;"0003004X, 19453027";"Walter de Gruyter GmbH";No;No;1,036;Q1;170;168;610;11036;1684;598;2,68;65,69;29,36;0;United States;Northern America;"Walter de Gruyter GmbH";"1920-1921, 1923-1924, 1927, 1929-1931, 1934-1937, 1939-1940, 1946, 1953-1954, 1958, 1960-1962, 1965, 1967-1974, 1979, 1981-2026";"Geochemistry and Petrology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +4616;83418;"Breast Cancer";journal;"18804233, 13406868";"Springer";No;No;1,036;Q1;72;139;331;4814;1149;318;3,48;34,63;40,88;1;Japan;Asiatic Region;"Springer";"1994-2026";"Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)";"Medicine" +4617;21101020142;"International Journal of Wellbeing";journal;"11798602";"";Yes;Yes;1,036;Q1;18;15;65;1227;253;64;3,85;81,80;45,45;0;New Zealand;Pacific Region;"";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Social Psychology (Q1); Applied Psychology (Q2)";"Economics, Econometrics and Finance; Psychology" +4618;21101089492;"Project Leadership and Society";journal;"26667215";"Elsevier Ltd";Yes;No;1,036;Q1;26;34;107;2405;708;107;5,15;70,74;43,56;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2025";"Public Administration (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +4619;17700155032;"Cancer Epidemiology";journal;"18777821, 1877783X";"Elsevier Ltd";No;No;1,036;Q2;94;212;487;8218;1530;469;3,14;38,76;48,30;1;United Kingdom;Western Europe;"Elsevier Ltd";"2009-2026";"Cancer Research (Q2); Epidemiology (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4620;4000148406;"Clinical Toxicology";journal;"15569519, 15563650";"Taylor and Francis Ltd.";No;No;1,035;Q1;118;179;571;3528;1305;401;2,35;19,71;42,94;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1968-1998, 2005-2026";"Medicine (miscellaneous) (Q1); Toxicology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4621;21101346359;"Journal of Data Science and Intelligent Systems";journal;"29723841";"Bon View Publishing Pte Ltd";No;No;1,035;Q1;16;33;37;1123;334;36;9,03;34,03;25,51;0;Singapore;Asiatic Region;"Bon View Publishing Pte Ltd";"2023-2026";"Computer Science Applications (Q1); Information Systems (Q1)";"Computer Science" +4622;22308;"Philosophy of Science";journal;"1539767X, 00318248";"Cambridge University Press";No;No;1,035;Q1;95;134;278;5947;496;276;1,65;44,38;29,59;0;United Kingdom;Western Europe;"Cambridge University Press";"1936-1937, 1949, 1959, 1961-1963, 1967-1968, 1973, 1977-1980, 1986-1987, 1990-2026";"History (Q1); History and Philosophy of Science (Q1); Philosophy (Q1)";"Arts and Humanities" +4623;18842;"Scandinavian Journal of Public Health";journal;"14034948, 16511905";"SAGE Publications Ltd";No;No;1,035;Q1;108;199;436;6705;1244;402;2,42;33,69;65,31;10;United Kingdom;Western Europe;"SAGE Publications Ltd";"1973-1982, 1984-1986, 1988-2026";"Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4624;23017;"Second Language Research";journal;"14770326, 02676583";"SAGE Publications Ltd";No;No;1,035;Q1;80;54;128;3426;354;128;2,55;63,44;57,38;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1985-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +4625;25783;"Alkaloids: Chemistry and Biology";book series;"10994831";"Academic Press Inc.";No;No;1,035;Q2;52;5;17;1337;49;2;1,58;267,40;50,00;0;United States;Northern America;"Academic Press Inc.";"1998-2003, 2005-2026";"Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology" +4626;20688;"Autoimmunity";journal;"08916934, 1607842X";"Taylor and Francis Ltd.";Yes;No;1,035;Q2;87;35;169;1668;682;169;4,47;47,66;40,76;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +4627;21100199857;"Annals of Laboratory Medicine";journal;"22343806, 22343814";"Korean Society for Laboratory Medicine";Yes;No;1,034;Q1;55;80;262;2309;706;161;2,78;28,86;50,29;0;South Korea;Asiatic Region;"Korean Society for Laboratory Medicine";"2012-2026";"Biochemistry (medical) (Q1); Medicine (miscellaneous) (Q1); Clinical Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4628;5700154545;"International Journal of Heritage Studies";journal;"14703610, 13527258";"Taylor and Francis Ltd.";No;No;1,034;Q1;72;101;250;6173;886;250;2,99;61,12;55,73;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Conservation (Q1); Cultural Studies (Q1); Geography, Planning and Development (Q1); History (Q1); Museology (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +4629;18533;"Lung";journal;"14321750, 03412040";"Springer";No;No;1,034;Q1;78;108;250;4711;947;223;4,07;43,62;42,41;0;United States;Northern America;"Springer";"1959, 1964, 1976-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +4630;21100815426;"Online Learning Journal";journal;"24725730, 24725749";"The Online Learning Consortium";Yes;Yes;1,034;Q1;80;75;228;4197;936;213;4,08;55,96;65,26;0;United States;Northern America;"The Online Learning Consortium";"2015-2025";"Computer Networks and Communications (Q1); Education (Q1)";"Computer Science; Social Sciences" +4631;20712;"Cellular Immunology";journal;"10902163, 00088749";"Academic Press Inc.";No;No;1,034;Q2;114;85;223;5619;761;218;3,25;66,11;46,92;0;United States;Northern America;"Academic Press Inc.";"1970-2026";"Immunology (Q2)";"Immunology and Microbiology" +4632;21101138302;"Proceedings of the Annual Meeting of the Association for Computational Linguistics";conference and proceedings;"0736587X";"Association for Computational Linguistics (ACL)";No;No;1,034;-;189;3361;6050;170649;39542;5957;6,12;50,77;30,01;3;Australia;Pacific Region;"Association for Computational Linguistics (ACL)";"1979, 1981-1982, 1985-2004, 2007-2008, 2010-2018, 2020, 2022-2025";"Computer Science Applications; Linguistics and Language";"Computer Science; Social Sciences" +4633;21101020112;"Big Data and Cognitive Computing";journal;"25042289";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,033;Q1;59;323;541;18575;4414;536;8,67;57,51;30,18;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Information Systems (Q1); Management Information Systems (Q1)";"Business, Management and Accounting; Computer Science" +4634;110327;"Computers and Geosciences";journal;"00983004";"Elsevier Ltd";No;No;1,033;Q1;171;183;475;9056;2541;470;4,92;49,49;24,77;0;United Kingdom;Western Europe;"Elsevier Ltd";"1975-2026";"Computers in Earth Sciences (Q1); Information Systems (Q1)";"Computer Science; Earth and Planetary Sciences" +4635;29364;"Energy and Fuels";journal;"08870624, 15205029";"American Chemical Society";No;No;1,033;Q1;242;1658;4466;118478;26749;4438;6,15;71,46;30,58;0;United States;Northern America;"American Chemical Society";"1987-2026";"Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q2)";"Chemical Engineering; Energy" +4636;21100431308;"Environmental Processes";journal;"21987505, 21987491";"Springer Science and Business Media Deutschland GmbH";No;No;1,033;Q1;53;66;185;4450;984;182;5,60;67,42;39,34;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Environmental Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1); Water Science and Technology (Q1); Health, Toxicology and Mutagenesis (Q2)";"Environmental Science" +4637;14648;"European Journal of Soil Biology";journal;"11645563";"Elsevier Masson s.r.l.";No;No;1,033;Q1;102;63;211;4808;886;210;3,88;76,32;40,30;0;France;Western Europe;"Elsevier Masson s.r.l.";"1993-2026";"Insect Science (Q1); Soil Science (Q1); Microbiology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology" +4638;19700201416;"Frontiers of Physics";journal;"20950462, 20950470";"Higher Education Press Limited Company";No;No;1,033;Q1;65;114;330;8679;1738;326;5,77;76,13;32,29;0;China;Asiatic Region;"Higher Education Press Limited Company";"2011-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +4639;21100897503;"Health Promotion Perspectives";journal;"22286497";"Tabriz University of Medical Sciences";Yes;Yes;1,033;Q1;32;46;132;1881;546;126;4,73;40,89;48,10;0;Iran;Middle East;"Tabriz University of Medical Sciences";"2018-2025";"Education (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +4640;21100817456;"High Power Laser Science and Engineering";journal;"20954719, 20523289";"Cambridge University Press";Yes;No;1,033;Q1;43;115;221;4868;1156;218;5,40;42,33;25,78;0;United Kingdom;Western Europe;"Cambridge University Press";"2013-2026";"Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1); Nuclear and High Energy Physics (Q1); Nuclear Energy and Engineering (Q1)";"Energy; Materials Science; Physics and Astronomy" +4641;3900148612;"Journal of Clinical Sleep Medicine";journal;"15509397, 15509389";"Springer Nature";No;No;1,033;Q1;136;290;912;9554;2873;792;2,70;32,94;43,88;3;United States;Northern America;"Springer Nature";"2005-2026";"Pulmonary and Respiratory Medicine (Q1); Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +4642;5700162193;"Leiden Journal of International Law";journal;"09221565, 14789698";"Cambridge University Press";Yes;No;1,033;Q1;51;53;153;8335;366;143;2,63;157,26;50,79;0;United Kingdom;Western Europe;"Cambridge University Press";"1988-2026";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +4643;21101148005;"Materials for Quantum Technology";journal;"26334356";"Institute of Physics";Yes;No;1,033;Q1;14;29;82;2456;335;78;4,02;84,69;18,33;0;United Kingdom;Western Europe;"Institute of Physics";"2021-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)";"Materials Science; Physics and Astronomy" +4644;110175;"Psychiatric Services";journal;"15579700, 10752730";"American Psychiatric Association";No;No;1,033;Q1;178;0;731;0;1899;631;2,37;0,00;0,00;0;United States;Northern America;"American Psychiatric Association";"1971-1973, 1976, 1978, 1982-1983, 1985, 1987, 1995-2025";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)";"Medicine" +4645;21101140103;"SSM - Qualitative Research in Health";journal;"26673215";"Elsevier Ltd";Yes;No;1,033;Q1;22;160;477;9756;1563;471;2,85;60,98;72,59;2;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Health (social science) (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +4646;18518;"Cytometry Part B - Clinical Cytometry";journal;"15524957, 15524949";"Wiley-Liss Inc.";No;No;1,032;Q1;74;65;151;1658;340;112;2,64;25,51;46,25;0;United States;Northern America;"Wiley-Liss Inc.";"2002-2026";"Histology (Q1); Pathology and Forensic Medicine (Q1); Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4647;20500195141;"Dental and Medical Problems";journal;"1644387X, 23009020";"Wroclaw Medical University";Yes;No;1,032;Q1;29;130;263;5557;1148;252;4,56;42,75;54,84;0;Poland;Eastern Europe;"Wroclaw Medical University";"2009-2026";"Dentistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Dentistry; Medicine" +4648;15904;"Geosynthetics International";journal;"10726349, 17517613";"ICE Publishing";No;No;1,032;Q1;76;56;181;2800;637;172;3,26;50,00;26,01;0;United Kingdom;Western Europe;"ICE Publishing";"1994-2025";"Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Engineering" +4649;12133;"Hydrometallurgy";journal;"0304386X";"Elsevier B.V.";No;No;1,032;Q1;155;130;446;6937;2878;446;6,54;53,36;37,52;0;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Industrial and Manufacturing Engineering (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science" +4650;21100383743;"International Journal of Concrete Structures and Materials";journal;"22341315, 19760485";"Springer Science + Business Media";Yes;No;1,032;Q1;59;132;229;7308;1142;229;4,78;55,36;24,02;0;United States;Northern America;"Springer Science + Business Media";"2012-2026";"Civil and Structural Engineering (Q1); Ocean Engineering (Q1)";"Engineering" +4651;21101077113;"Resuscitation Plus";journal;"26665204";"Elsevier B.V.";Yes;No;1,032;Q1;25;314;614;9111;1681;540;2,75;29,02;30,97;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Cardiology and Cardiovascular Medicine (Q1); Emergency Medicine (Q1); Emergency Nursing (Q1)";"Medicine; Nursing" +4652;18400156701;"Aeolian Research";journal;"18759637";"Elsevier B.V.";No;No;1,031;Q1;69;39;84;2896;344;84;5,10;74,26;31,61;0;Netherlands;Western Europe;"Elsevier B.V.";"2009-2026";"Earth-Surface Processes (Q1); Geology (Q1)";"Earth and Planetary Sciences" +4653;21101176796;"Alcohol, Clinical and Experimental Research";journal;"29937175";"John Wiley and Sons Inc";No;No;1,031;Q1;180;240;606;12907;1652;553;2,37;53,78;54,74;0;United States;Northern America;"John Wiley and Sons Inc";"2023-2026";"Medicine (miscellaneous) (Q1); Toxicology (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4654;21369;"Expert Review of Molecular Diagnostics";journal;"17448352, 14737159";"Taylor and Francis Ltd.";No;No;1,031;Q1;95;87;307;7036;1236;274;3,98;80,87;43,97;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Pathology and Forensic Medicine (Q1); Genetics (Q2); Molecular Biology (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4655;15463;"IEEE Micro";journal;"19374143, 02721732";"IEEE Computer Society";No;No;1,031;Q1;111;98;248;923;999;204;4,06;9,42;18,07;0;United States;Northern America;"IEEE Computer Society";"1981-2026";"Electrical and Electronic Engineering (Q1); Hardware and Architecture (Q1); Software (Q1)";"Computer Science; Engineering" +4656;144830;"Journal of Dynamics and Differential Equations";journal;"10407294, 15729222";"Springer";No;No;1,031;Q1;61;170;395;5729;668;394;1,70;33,70;20,06;0;United States;Northern America;"Springer";"1989-2002, 2005-2026";"Analysis (Q1)";"Mathematics" +4657;25697;"Journal of Pest Science";journal;"16124758, 16124766";"Springer Science and Business Media Deutschland GmbH";No;No;1,031;Q1;91;179;395;13195;2045;393;5,02;73,72;38,46;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1925-1944, 1948-1950, 1953-1972, 2004-2026";"Agronomy and Crop Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4658;21780;"Nonlinear Analysis: Real World Applications";journal;"14681218";"Elsevier B.V.";No;No;1,031;Q1;109;187;523;6324;1079;521;1,93;33,82;30,10;0;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Analysis (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Economics, Econometrics and Finance; Engineering; Mathematics; Medicine" +4659;25813;"Potential Analysis";journal;"09262601, 1572929X";"Springer Netherlands";No;No;1,031;Q1;54;107;249;3519;337;249;1,42;32,89;19,23;0;Netherlands;Western Europe;"Springer Netherlands";"1992-2026";"Analysis (Q1)";"Mathematics" +4660;14189;"Statistica Sinica";journal;"10170405";"Institute of Statistical Science";No;No;1,031;Q1;93;0;297;0;464;295;1,32;0,00;0,00;0;Taiwan;Asiatic Region;"Institute of Statistical Science";"1996-2024";"Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +4661;21101041526;"Volcanica";journal;"26103540";"Volcanica";Yes;Yes;1,031;Q1;18;31;96;2444;254;96;2,18;78,84;34,25;0;United States;Northern America;"Volcanica";"2018-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geochemistry and Petrology (Q1); Geology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +4662;27186;"Canadian Journal of Nursing Research";journal;"08445621, 17057051";"SAGE Publications Inc.";No;No;1,030;Q1;52;54;129;2501;509;125;3,27;46,31;80,29;3;United States;Northern America;"SAGE Publications Inc.";"1988, 1990-2013, 2015-2026";"Nursing (miscellaneous) (Q1); Research and Theory (Q1)";"Nursing" +4663;21100804457;"Current Opinion in Toxicology";journal;"24682020";"Elsevier B.V.";No;No;1,030;Q1;52;12;94;487;388;87;2,56;40,58;56,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Toxicology (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +4664;4000151613;"Journal of College Student Retention: Research, Theory and Practice";journal;"15414167, 15210251";"SAGE Publications Inc.";No;No;1,030;Q1;48;83;169;4568;625;169;3,96;55,04;58,70;3;United Kingdom;Western Europe;"SAGE Publications Inc.";"2002, 2004-2026";"Education (Q1)";"Social Sciences" +4665;13147;"Supportive Care in Cancer";journal;"14337339, 09414355";"Springer Science and Business Media Deutschland GmbH";No;No;1,030;Q1;151;1143;2578;44567;9249;2393;3,34;38,99;59,85;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1993-2026";"Oncology (nursing) (Q1); Rehabilitation (Q1); Oncology (Q2)";"Medicine; Nursing" +4666;29954;"Journal of Neuro-Oncology";journal;"15737373, 0167594X";"Springer";No;No;1,030;Q2;147;389;905;15593;2988;849;3,24;40,08;35,17;0;United States;Northern America;"Springer";"1983-2026";"Cancer Research (Q2); Neurology (Q2); Neurology (clinical) (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +4667;21101165632;"AAPPS Bulletin";journal;"02182203, 23094710";"Springer";Yes;No;1,029;Q1;21;33;90;1733;488;84;3,47;52,52;27,47;0;Germany;Western Europe;"Springer";"2021-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +4668;11300153406;"Disability and Health Journal";journal;"19366574, 18767583";"Elsevier Inc.";No;No;1,029;Q1;69;161;317;6196;1216;282;2,99;38,48;56,61;4;United States;Northern America;"Elsevier Inc.";"2008-2026";"Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4669;14200154735;"Educational Assessment, Evaluation and Accountability";journal;"18748597, 18748600";"Springer Netherlands";No;No;1,029;Q1;47;30;72;1736;243;63;2,88;57,87;45,68;0;Netherlands;Western Europe;"Springer Netherlands";"2009-2026";"Education (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +4670;5600157637;"European Journal of Criminology";journal;"14773708, 17412609";"SAGE Publications Inc.";No;No;1,029;Q1;73;64;212;4169;794;212;3,45;65,14;48,80;3;United States;Northern America;"SAGE Publications Inc.";"2004-2026";"Law (Q1)";"Social Sciences" +4671;5700191212;"Journal of Orthopaedic Surgery and Research";journal;"1749799X";"BioMed Central Ltd";Yes;No;1,029;Q1;84;1081;2395;44766;9531;2331;3,79;41,41;27,96;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +4672;19400158521;"Review of Philosophy and Psychology";journal;"18785166, 18785158";"Springer Verlag";No;No;1,029;Q1;51;70;185;4930;534;178;2,73;70,43;25,66;1;Germany;Western Europe;"Springer Verlag";"2010-2026";"Experimental and Cognitive Psychology (Q1); Philosophy (Q1)";"Arts and Humanities; Psychology" +4673;19700200705;"Ain Shams Engineering Journal";journal;"20904479, 20904495";"Ain Shams University";Yes;No;1,028;Q1;98;548;1409;27822;11012;1409;7,92;50,77;24,93;0;Egypt;Africa/Middle East;"Ain Shams University";"2010-2026";"Engineering (miscellaneous) (Q1)";"Engineering" +4674;21101140114;"American Journal of Medicine Open";journal;"26670364";"Elsevier Inc.";Yes;No;1,028;Q1;9;37;67;1153;261;59;4,61;31,16;49,80;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Cardiology and Cardiovascular Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q2); Geriatrics and Gerontology (Q2); Internal Medicine (Q2)";"Medicine" +4675;21101194575;"Cleaner Production Letters";journal;"26667916";"Elsevier B.V.";Yes;No;1,028;Q1;16;36;76;2962;449;76;5,92;82,28;38,33;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Industrial and Manufacturing Engineering (Q1); Strategy and Management (Q1); Waste Management and Disposal (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Business, Management and Accounting; Energy; Engineering; Environmental Science" +4676;26382;"Drug and Alcohol Review";journal;"14653362, 09595236";"Wiley-Blackwell";No;No;1,028;Q1;96;191;563;7894;1656;486;2,62;41,33;57,83;10;United States;Northern America;"Wiley-Blackwell";"1989-2026";"Health (social science) (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +4677;19705;"FEMS Microbiology Ecology";journal;"01686496, 15746941";"Oxford University Press";Yes;No;1,028;Q1;199;126;471;9347;1860;466;3,87;74,18;46,27;0;United Kingdom;Western Europe;"Oxford University Press";"1990-2026";"Applied Microbiology and Biotechnology (Q1); Ecology (Q1); Microbiology (Q2)";"Environmental Science; Immunology and Microbiology" +4678;19691;"International Journal of Electronic Commerce";journal;"10864415, 15579301";"M.E. Sharpe Inc.";No;No;1,028;Q1;104;25;73;1885;331;61;4,16;75,40;33,85;0;United States;Northern America;"M.E. Sharpe Inc.";"1996-2025";"Business and International Management (Q1); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4679;19700183300;"Lung Cancer: Targets and Therapy";journal;"11792728";"Dove Medical Press Ltd";Yes;No;1,028;Q2;32;18;39;911;114;23;2,94;50,61;45,63;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2026";"Oncology (Q2)";"Medicine" +4680;21100403902;"Metabolites";journal;"22181989";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,028;Q2;97;796;3212;54743;15404;3180;4,84;68,77;47,76;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Biochemistry (Q2); Endocrinology, Diabetes and Metabolism (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4681;26906;"Advances in Anatomic Pathology";journal;"10724109, 15334031";"Lippincott Williams and Wilkins";No;No;1,027;Q1;97;51;144;3881;441;125;2,88;76,10;46,33;0;United States;Northern America;"Lippincott Williams and Wilkins";"1995-2026";"Anatomy (Q1); Pathology and Forensic Medicine (Q1)";"Medicine" +4682;28679;"British Journal of General Practice";journal;"14785242, 09601643";"Royal College of General Practitioners";No;No;1,027;Q1;130;399;1156;6352;1951;647;1,48;15,92;58,34;0;United Kingdom;Western Europe;"Royal College of General Practitioners";"1990-2026";"Family Practice (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +4683;21100892509;"Cannabis and Cannabinoid Research";journal;"23788763";"Mary Ann Liebert Inc.";No;No;1,027;Q1;52;90;369;3868;1300;350;3,16;42,98;46,44;2;United States;Northern America;"Mary Ann Liebert Inc.";"2016-2025";"Complementary and Alternative Medicine (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4684;21101082065;"Carbohydrate Polymer Technologies and Applications";journal;"26668939";"Elsevier Ltd";Yes;No;1,027;Q1;49;423;421;31399;3681;420;8,84;74,23;44,48;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Analytical Chemistry (Q1); Biotechnology (Q1); Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Polymers and Plastics (Q1); Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science" +4685;15249;"Engineering, Construction and Architectural Management";journal;"1365232X, 09699988";"Emerald Publishing";No;No;1,027;Q1;87;753;694;56005;5342;692;7,53;74,38;37,14;0;United Kingdom;Western Europe;"Emerald Publishing";"1994-2026";"Architecture (Q1); Building and Construction (Q1); Business, Management and Accounting (miscellaneous) (Q1); Civil and Structural Engineering (Q1)";"Business, Management and Accounting; Engineering" +4686;26599;"European Urban and Regional Studies";journal;"09697764, 14617145";"SAGE Publications Ltd";No;No;1,027;Q1;83;56;92;3242;381;81;3,82;57,89;39,34;4;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994-2026";"Environmental Science (miscellaneous) (Q1); Urban Studies (Q1)";"Environmental Science; Social Sciences" +4687;21100349522;"Global Ecology and Conservation";journal;"23519894";"Elsevier B.V.";Yes;No;1,027;Q1;93;630;1378;47973;5836;1372;3,90;76,15;38,61;10;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4688;66374;"Journal of Educational Measurement";journal;"17453984, 00220655";"John Wiley and Sons Inc";No;No;1,027;Q1;63;38;85;1753;148;79;1,16;46,13;31,43;0;United States;Northern America;"John Wiley and Sons Inc";"1964-2026";"Developmental and Educational Psychology (Q1); Education (Q1); Psychology (miscellaneous) (Q1); Applied Psychology (Q2)";"Psychology; Social Sciences" +4689;30045;"Journal of Personality Disorders";journal;"0885579X, 19432763";"Guilford Publications";No;No;1,027;Q1;114;27;115;1584;380;114;2,65;58,67;53,51;0;United States;Northern America;"Guilford Publications";"1987-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +4690;24775;"Machine Learning";journal;"15730565, 08856125";"Springer Netherlands";No;No;1,027;Q1;183;289;595;14497;3434;594;5,83;50,16;23,38;2;Netherlands;Western Europe;"Springer Netherlands";"1986-2026";"Artificial Intelligence (Q1); Software (Q1)";"Computer Science" +4691;21101155811;"Memory, Mind and Media";journal;"26350238";"Cambridge University Press";Yes;No;1,027;Q1;9;29;54;1532;193;50;2,69;52,83;58,33;0;United Kingdom;Western Europe;"Cambridge University Press";"2022-2026";"Communication (Q1); History (Q1); Philosophy (Q1); Social Psychology (Q1)";"Arts and Humanities; Psychology; Social Sciences" +4692;14685;"Planning Theory and Practice";journal;"14649357, 1470000X";"Routledge";No;No;1,027;Q1;65;44;108;1870;358;76;3,31;42,50;50,00;0;United Kingdom;Western Europe;"Routledge";"2000-2026";"Geography, Planning and Development (Q1)";"Social Sciences" +4693;27997;"Public Health Nutrition";journal;"14752727, 13689800";"Cambridge University Press";Yes;No;1,027;Q1;179;211;939;9498;3251;913;3,04;45,01;72,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1998-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Nursing" +4694;19900191743;"Qualitative Research in Accounting and Management";journal;"11766093";"Emerald Group Publishing Ltd.";No;No;1,027;Q1;42;32;86;2545;379;84;3,70;79,53;53,42;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2004-2026";"Business and International Management (Q1); Accounting (Q2)";"Business, Management and Accounting" +4695;21100899309;"Research and Practice in Technology Enhanced Learning";journal;"17937078";"Asia-Pacific Society for Computers in Education";Yes;Yes;1,027;Q1;38;40;104;2585;538;104;4,43;64,63;47,32;0;Taiwan;Asiatic Region;"Asia-Pacific Society for Computers in Education";"2015-2026";"Education (Q1); Management of Technology and Innovation (Q1); Media Technology (Q1); Social Psychology (Q1)";"Business, Management and Accounting; Engineering; Psychology; Social Sciences" +4696;21101088422;"Ecological Solutions and Evidence";journal;"26888319";"John Wiley and Sons Inc";Yes;No;1,026;Q1;27;168;266;10247;929;256;3,28;60,99;38,85;3;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2020-2026";"Ecology (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1); Global and Planetary Change (Q2)";"Environmental Science" +4697;12419;"International Journal of Systems Science";journal;"00207721, 14645319";"Taylor and Francis Ltd.";Yes;No;1,026;Q1;93;448;643;19361;2987;639;5,21;43,22;27,87;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1970-2026";"Computer Science Applications (Q1); Control and Systems Engineering (Q1); Theoretical Computer Science (Q1)";"Computer Science; Engineering; Mathematics" +4698;144861;"Journal of Industrial and Engineering Chemistry";journal;"1226086X";"Korean Society of Industrial Engineering Chemistry";No;No;1,026;Q1;163;840;1764;66864;12246;1764;7,30;79,60;33,00;0;South Korea;Asiatic Region;"Korean Society of Industrial Engineering Chemistry";"1996-2026";"Chemical Engineering (miscellaneous) (Q1)";"Chemical Engineering" +4699;4400151519;"Journal of Women, Politics and Policy";journal;"15544788, 1554477X";"Routledge";No;No;1,026;Q1;43;22;95;1415;216;89;1,89;64,32;72,50;0;United States;Northern America;"Routledge";"2005-2026";"Gender Studies (Q1); Sociology and Political Science (Q1)";"Social Sciences" +4700;27666;"Menopause";journal;"10723714, 15300374";"Wolters Kluwer Health";No;No;1,026;Q1;131;218;563;7105;1751;457;3,07;32,59;65,70;0;United States;Northern America;"Wolters Kluwer Health";"1994-2026";"Obstetrics and Gynecology (Q1)";"Medicine" +4701;18073;"NeuroToxicology";journal;"18729711, 0161813X";"Elsevier B.V.";No;No;1,026;Q1;141;119;380;9452;1790;374;3,98;79,43;54,79;1;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Toxicology (Q1); Neuroscience (miscellaneous) (Q2)";"Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +4702;25372;"Psychology of Addictive Behaviors";journal;"19391501, 0893164X";"Educational Publishing Foundation";No;No;1,026;Q1;132;71;263;3242;784;263;2,68;45,66;55,19;4;United States;Northern America;"Educational Publishing Foundation";"1993-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +4703;21101021585;"Journal of Movement Disorders";journal;"2005940X, 20934939";"Korean Movement Disorder Society";Yes;Yes;1,026;Q2;24;65;179;1519;363;94;1,98;23,37;38,22;0;South Korea;Asiatic Region;"Korean Movement Disorder Society";"2016, 2019-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +4704;21100388400;"Addictive Behaviors Reports";journal;"23528532";"Elsevier Ltd";Yes;No;1,025;Q1;48;65;168;3586;612;166;3,25;55,17;50,76;2;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +4705;17242;"Biodiversity and Conservation";journal;"15729710, 09603115";"Springer Science and Business Media B.V.";No;No;1,025;Q1;167;241;604;20108;2371;575;3,64;83,44;39,87;3;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1992-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4706;21100869188;"BMJ Open Sport and Exercise Medicine";journal;"20557647";"BMJ Publishing Group";Yes;No;1,025;Q1;58;194;441;7605;1410;413;2,92;39,20;40,86;1;United Kingdom;Western Europe;"BMJ Publishing Group";"2015-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)";"Health Professions; Medicine" +4707;21100970266;"IEEE Transactions on Sustainable Computing";journal;"23773782";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,025;Q1;42;107;205;5558;1089;199;5,33;51,94;22,79;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2016-2026";"Computational Theory and Mathematics (Q1); Control and Optimization (Q1); Hardware and Architecture (Q1); Software (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Computer Science; Energy; Mathematics" +4708;12212;"Journal of Critical Care";journal;"15578615, 08839441";"W.B. Saunders";No;No;1,025;Q1;115;221;606;5562;1552;428;2,57;25,17;34,45;1;United States;Northern America;"W.B. Saunders";"1986-2026";"Critical Care and Intensive Care Medicine (Q1)";"Medicine" +4709;19640;"Journal of the American Water Resources Association";journal;"1093474X, 17521688";"Wiley-Blackwell Publishing Ltd";No;No;1,025;Q1;130;90;268;5696;916;245;3,12;63,29;38,31;2;United States;Northern America;"Wiley-Blackwell Publishing Ltd";"1967-2026";"Earth-Surface Processes (Q1); Ecology (Q1); Water Science and Technology (Q1)";"Earth and Planetary Sciences; Environmental Science" +4710;21100942825;"Progress in Additive Manufacturing";journal;"23639520, 23639512";"Springer Verlag";No;No;1,025;Q1;53;697;409;37339;2847;392;6,70;53,57;19,78;0;Germany;Western Europe;"Springer Verlag";"2016-2026";"Industrial and Manufacturing Engineering (Q1)";"Engineering" +4711;21100386506;"Prostate International";journal;"2287903X, 22878882";"Elsevier B.V.";Yes;No;1,025;Q1;29;57;107;2020;378;107;4,15;35,44;18,20;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Urology (Q1)";"Medicine" +4712;19196;"Surgical Endoscopy";journal;"14322218, 09302794";"Springer";No;No;1,025;Q1;185;893;2949;26574;9368;2931;3,16;29,76;29,47;4;United States;Northern America;"Springer";"1987-2026";"Surgery (Q1)";"Medicine" +4713;18699;"Theory, Culture and Society";journal;"02632764, 14603616";"SAGE Publications Ltd";No;No;1,025;Q1;140;70;198;4001;613;192;1,71;57,16;33,73;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1982-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +4714;4500151518;"Women's Health";journal;"17455065, 17455057";"SAGE Publications Inc.";Yes;No;1,025;Q1;61;224;476;12389;1839;457;3,26;55,31;66,70;2;United Kingdom;Western Europe;"SAGE Publications Inc.";"2005-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +4715;13438;"Counseling Psychologist";journal;"15523861, 00110000";"SAGE Publications Inc.";No;No;1,025;Q2;101;43;135;2453;463;131;3,42;57,05;60,26;0;United States;Northern America;"SAGE Publications Inc.";"1969-2026";"Applied Psychology (Q2)";"Psychology" +4716;19240;"Journal of Rheumatology";journal;"14992752, 0315162X";"Journal of Rheumatology";No;No;1,025;Q2;208;266;837;4602;1675;596;1,94;17,30;51,55;2;Canada;Northern America;"Journal of Rheumatology";"1974-2026";"Immunology (Q2); Immunology and Allergy (Q2); Rheumatology (Q2)";"Immunology and Microbiology; Medicine" +4717;20000195043;"Nature and Science of Sleep";journal;"11791608";"Dove Medical Press Ltd";Yes;No;1,025;Q2;61;251;454;12282;1787;438;3,33;48,93;45,77;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Applied Psychology (Q2); Behavioral Neuroscience (Q2)";"Neuroscience; Psychology" +4718;19700183047;"ACM Transactions on Computing Education";journal;"19466226";"Association for Computing Machinery";No;No;1,024;Q1;57;71;155;5309;958;154;5,24;74,77;48,08;1;United States;Northern America;"Association for Computing Machinery";"2010-2026";"Computer Science (miscellaneous) (Q1); Education (Q1)";"Computer Science; Social Sciences" +4719;19627;"Advances in Water Resources";journal;"03091708";"Elsevier Ltd";No;No;1,024;Q1;179;229;489;13570;2472;488;4,43;59,26;22,83;0;United Kingdom;Western Europe;"Elsevier Ltd";"1977-2026";"Water Science and Technology (Q1)";"Environmental Science" +4720;21101369105;"APL Machine Learning";journal;"27709019";"American Institute of Physics";Yes;No;1,024;Q1;14;14;153;809;643;150;4,20;57,79;29,82;0;United States;Northern America;"American Institute of Physics";"2023-2026";"Computer Science Applications (Q1); Computer Vision and Pattern Recognition (Q1); Human-Computer Interaction (Q1); Software (Q1)";"Computer Science" +4721;28944;"Atomic Data and Nuclear Data Tables";journal;"10902090, 0092640X";"Elsevier Inc.";No;No;1,024;Q1;72;30;62;1803;229;62;3,43;60,10;25,00;0;United States;Northern America;"Elsevier Inc.";"1969-2026";"Atomic and Molecular Physics, and Optics (Q1); Nuclear and High Energy Physics (Q1)";"Physics and Astronomy" +4722;25411;"BMC Endocrine Disorders";journal;"14726823";"BioMed Central Ltd";Yes;No;1,024;Q1;67;290;881;11798;3584;880;3,71;40,68;44,85;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Medicine (miscellaneous) (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Medicine" +4723;19499;"BMC Women's Health";journal;"14726874";"BioMed Central Ltd";Yes;No;1,024;Q1;80;626;1867;27152;7128;1866;3,48;43,37;57,04;6;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)";"Medicine" +4724;16576;"British Journal of Radiology";journal;"1748880X, 00071285";"Oxford University Press";No;No;1,024;Q1;135;262;949;9306;3806;900;3,68;35,52;39,40;1;United Kingdom;Western Europe;"Oxford University Press";"1945-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +4725;32733;"Brodogradnja";journal;"18455859, 0007215X";"University of Zagreb Faculty of Mechanical Engineering and Naval Architecture";Yes;Yes;1,024;Q1;25;32;96;1420;401;96;4,97;44,38;24,04;0;Croatia;Eastern Europe;"University of Zagreb Faculty of Mechanical Engineering and Naval Architecture";"1985-1988, 1994, 1996-2026";"Mechanical Engineering (Q1); Ocean Engineering (Q1)";"Engineering" +4726;19600166302;"Current Molecular Pharmacology";journal;"18744702, 18744672";"KeAi Communications Co.";No;No;1,024;Q1;54;19;257;1646;1277;249;5,53;86,63;40,91;0;United Arab Emirates;Middle East;"KeAi Communications Co.";"2008-2025";"Drug Discovery (Q1); Pharmacology (Q1); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +4727;10600153365;"Economics of Innovation and New Technology";journal;"14768364, 10438599";"Routledge";No;No;1,024;Q1;75;112;142;7266;694;141;4,31;64,88;33,97;10;United Kingdom;Western Europe;"Routledge";"1990-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4728;16341;"Expert Review of Anti-Infective Therapy";journal;"14787210, 17448336";"Taylor and Francis Ltd.";No;No;1,024;Q1;110;110;375;10400;1653;338;4,22;94,55;41,01;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Infectious Diseases (Q1); Microbiology (Q2); Microbiology (medical) (Q2); Virology (Q2)";"Immunology and Microbiology; Medicine" +4729;14152;"Family Process";journal;"15455300, 00147370";"Wiley-Blackwell Publishing Ltd";No;No;1,024;Q1;104;160;356;9415;1168;345;2,79;58,84;61,55;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1962-2026";"Clinical Psychology (Q1); Social Psychology (Q1); Social Sciences (miscellaneous) (Q1)";"Psychology; Social Sciences" +4730;21100835954;"Frontiers in Bioengineering and Biotechnology";journal;"22964185";"Frontiers Media SA";Yes;No;1,024;Q1;144;1114;5543;69377;32751;5192;5,52;62,28;39,17;6;Switzerland;Western Europe;"Frontiers Media SA";"2013-2026";"Bioengineering (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Histology (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Medicine" +4731;21100228541;"International Journal of Child-Computer Interaction";journal;"22128689";"Elsevier B.V.";No;No;1,024;Q1;51;55;177;3534;981;170;4,11;64,25;67,30;1;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Education (Q1); Human-Computer Interaction (Q1)";"Computer Science; Social Sciences" +4732;22427;"Journal of Hospital Infection";journal;"15322939, 01956701";"W.B. Saunders Ltd";No;No;1,024;Q1;147;272;830;8022;2425;674;2,94;29,49;48,68;6;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1980-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q2)";"Medicine" +4733;23947;"Journal of Multivariate Analysis";journal;"0047259X, 10957243";"Academic Press Inc.";No;No;1,024;Q1;97;84;339;3355;664;336;1,51;39,94;24,17;0;United States;Northern America;"Academic Press Inc.";"1971-2026";"Numerical Analysis (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +4734;21101044943;"Minerva Urology and Nephrology";journal;"27246442, 27246051";"Edizioni Minerva Medica";No;No;1,024;Q1;43;152;394;3700;1180;251;3,43;24,34;26,27;0;Italy;Western Europe;"Edizioni Minerva Medica";"2021-2026";"Nephrology (Q1); Urology (Q1)";"Medicine" +4735;50039;"Review of Policy Research";journal;"1541132X, 15411338";"Wiley-Blackwell Publishing Ltd";No;No;1,024;Q1;63;81;136;6056;597;118;4,82;74,77;46,58;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1981-1995, 1998-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Political Science and International Relations (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Environmental Science; Social Sciences" +4736;21100862637;"Applied Computing and Informatics";journal;"22108327, 26341964";"Emerald Group Publishing Ltd.";Yes;Yes;1,023;Q1;47;47;63;1637;474;63;7,31;34,83;29,36;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011, 2014-2019, 2021-2026";"Computer Science Applications (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +4737;21100802702;"Bioengineered";journal;"21655987, 21655979";"Taylor and Francis Ltd.";Yes;No;1,023;Q1;77;15;1147;1054;6022;1141;8,13;70,27;51,35;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology; Medicine" +4738;18425;"Bioscience Reports";journal;"01448463, 15734935";"Portland Press Ltd";Yes;No;1,023;Q1;107;56;508;3360;1929;505;3,49;60,00;45,48;0;United Kingdom;Western Europe;"Portland Press Ltd";"1981-2026";"Biophysics (Q1); Biochemistry (Q2); Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4739;38138;"Current Opinion in Clinical Nutrition and Metabolic Care";journal;"13631950, 14736519";"Lippincott Williams and Wilkins";No;No;1,023;Q1;146;91;272;3330;876;236;3,19;36,59;40,55;0;United States;Northern America;"Lippincott Williams and Wilkins";"1998-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)";"Medicine; Nursing" +4740;13877;"European Journal of Mechanics, A/Solids";journal;"09977538";"Elsevier B.V.";No;No;1,023;Q1;117;302;796;15818;4012;792;5,06;52,38;22,34;0;Netherlands;Western Europe;"Elsevier B.V.";"1990-1992, 1995-2026";"Materials Science (miscellaneous) (Q1); Mathematical Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Engineering; Materials Science; Mathematics; Physics and Astronomy" +4741;20422;"International Communications in Heat and Mass Transfer";journal;"07351933";"Elsevier Ltd";No;No;1,023;Q1;160;1456;2294;72368;14821;2286;6,26;49,70;26,50;1;United Kingdom;Western Europe;"Elsevier Ltd";"1983-2026";"Atomic and Molecular Physics, and Optics (Q1); Chemical Engineering (miscellaneous) (Q1); Condensed Matter Physics (Q1)";"Chemical Engineering; Physics and Astronomy" +4742;12219;"International Journal of Refractory Metals and Hard Materials";journal;"22133917, 02634368";"Elsevier B.V.";No;No;1,023;Q1;118;416;1018;18491;5570;1015;5,12;44,45;29,50;0;Netherlands;Western Europe;"Elsevier B.V.";"1982-1993, 1995-2026";"Ceramics and Composites (Q1); Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science" +4743;15390;"Journal of Applied Social Psychology";journal;"00219029, 15591816";"Wiley-Blackwell";No;No;1,023;Q1;146;67;217;5114;714;216;2,97;76,33;62,50;0;United States;Northern America;"Wiley-Blackwell";"1971-2026";"Social Psychology (Q1)";"Psychology" +4744;22421;"Journal of Clinical Virology";journal;"13866532, 18735967";"Elsevier B.V.";No;No;1,023;Q1;133;82;339;2221;1001;328;3,38;27,09;54,09;0;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Infectious Diseases (Q1); Virology (Q2)";"Immunology and Microbiology; Medicine" +4745;21100229202;"Journal of Materials Chemistry B";journal;"2050750X, 20507518";"Royal Society of Chemistry";No;No;1,023;Q1;170;906;2666;67000;16392;2647;6,03;73,95;41,87;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2013-2026";"Biomedical Engineering (Q1); Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)";"Chemistry; Engineering; Materials Science; Medicine" +4746;21100468817;"Journal of Sustainable Cement-Based Materials";journal;"21650373, 21650381";"Taylor and Francis Ltd.";No;No;1,023;Q1;46;177;270;11722;1188;265;4,35;66,23;27,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Ceramics and Composites (Q1); Waste Management and Disposal (Q2)";"Environmental Science; Materials Science" +4747;19590;"Archives of Public Health";journal;"20493258, 07787367";"BioMed Central Ltd";Yes;No;1,022;Q1;58;318;702;16045;2492;670;3,46;50,46;52,21;2;United Kingdom;Western Europe;"BioMed Central Ltd";"1996-2006, 2008-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4748;19800188022;"IEEE Transactions on Terahertz Science and Technology";journal;"2156342X, 21563446";"IEEE Microwave Theory and Techniques Society";No;No;1,022;Q1;82;128;251;4305;1147;246;3,74;33,63;20,75;0;United States;Northern America;"IEEE Microwave Theory and Techniques Society";"2011-2026";"Electrical and Electronic Engineering (Q1); Radiation (Q1)";"Engineering; Physics and Astronomy" +4749;21100414384;"MycoKeys";journal;"13144057, 13144049";"Pensoft Publishers";Yes;No;1,022;Q1;41;213;282;13660;1186;280;4,17;64,13;41,81;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2015-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +4750;19900195033;"Nano Biomedicine and Engineering";journal;"21505578";"KeAi Communications Co.";Yes;Yes;1,022;Q1;35;39;128;2730;821;128;7,68;70,00;42,17;0;China;Asiatic Region;"KeAi Communications Co.";"2009-2025";"Biomedical Engineering (Q1); Nanoscience and Nanotechnology (Q2)";"Engineering; Materials Science" +4751;21100324714;"Annals of Global Health";journal;"22149996";"Ubiquity Press";Yes;No;1,021;Q1;92;91;282;2918;1153;268;4,45;32,07;51,55;1;United States;Northern America;"Ubiquity Press";"2014-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +4752;145290;"Bottom Line";journal;"0888045X";"Emerald Group Publishing Ltd.";No;No;1,021;Q1;33;43;41;2930;384;39;8,00;68,14;37,61;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1988-2026";"Business, Management and Accounting (miscellaneous) (Q1); Library and Information Sciences (Q1)";"Business, Management and Accounting; Social Sciences" +4753;21101272726;"Canadian Journal of Mineralogy and Petrology";journal;"28171713";"Mineralogical Association of Canada";No;No;1,021;Q1;100;44;163;2408;291;160;1,37;54,73;20,13;0;Canada;Northern America;"Mineralogical Association of Canada";"2023-2026";"Geochemistry and Petrology (Q1)";"Earth and Planetary Sciences" +4754;24303;"Computer Standards and Interfaces";journal;"09205489";"Elsevier B.V.";No;No;1,021;Q1;84;125;195;6722;1287;194;6,60;53,78;31,60;1;Netherlands;Western Europe;"Elsevier B.V.";"1986-2026";"Computer Science Applications (Q1); Hardware and Architecture (Q1); Law (Q1); Software (Q1)";"Computer Science; Social Sciences" +4755;23648;"Health Technology Assessment";journal;"20464924, 13665278";"NIHR Journals Library";Yes;Yes;1,021;Q1;149;80;171;7746;589;171;2,64;96,83;54,55;0;United Kingdom;Western Europe;"NIHR Journals Library";"1994-2026";"Health Policy (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +4756;31436;"Hepatobiliary and Pancreatic Diseases International";journal;"14993872";"Elsevier (Singapore) Pte Ltd";No;No;1,021;Q1;61;134;318;5209;786;181;2,37;38,87;26,67;0;Singapore;Asiatic Region;"Elsevier (Singapore) Pte Ltd";"2002-2026";"Gastroenterology (Q1); Hepatology (Q2)";"Medicine" +4757;15315;"Oxford Review of Education";journal;"14653915, 03054985";"Routledge";No;No;1,021;Q1;85;96;144;5254;607;138;3,64;54,73;48,99;5;United Kingdom;Western Europe;"Routledge";"1975-2026";"Education (Q1)";"Social Sciences" +4758;18500161700;"Pain Medicine (United States)";journal;"15262375, 15264637";"Oxford University Press";No;No;1,021;Q1;135;132;590;3923;1734;460;2,66;29,72;44,78;0;United Kingdom;Western Europe;"Oxford University Press";"2000-2026";"Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1); Neurology (clinical) (Q2)";"Medicine" +4759;12457;"Progress in Physical Geography";journal;"14770296, 03091333";"SAGE Publications Ltd";No;No;1,021;Q1;129;53;143;4005;561;138;3,80;75,57;32,41;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1977-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +4760;130035;"Virology Journal";journal;"1743422X";"BioMed Central Ltd";Yes;No;1,021;Q1;111;397;851;20338;3381;842;3,90;51,23;44,90;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Infectious Diseases (Q1); Virology (Q2)";"Immunology and Microbiology; Medicine" +4761;29236;"Carcinogenesis";journal;"01433334, 14602180";"Oxford University Press";No;No;1,020;Q1;230;97;278;4867;979;272;3,42;50,18;44,59;0;United Kingdom;Western Europe;"Oxford University Press";"1980-2026";"Medicine (miscellaneous) (Q1); Cancer Research (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4762;27433;"Classical and Quantum Gravity";journal;"13616382, 02649381";"IOP Publishing Ltd.";No;No;1,020;Q1;205;400;1139;25390;3997;1125;3,60;63,48;20,27;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1984-2025";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +4763;17562;"Social Psychology Quarterly";journal;"01902725, 19398999";"SAGE Publications Inc.";No;No;1,020;Q1;112;26;77;1349;255;72;2,75;51,88;36,17;0;United States;Northern America;"SAGE Publications Inc.";"1979-1984, 1989, 1996-2026";"Social Psychology (Q1)";"Psychology" +4764;21100275443;"Frontiers in Oncology";journal;"2234943X";"Frontiers Media SA";Yes;No;1,020;Q2;173;4138;16261;188760;58630;15494;3,14;45,62;43,55;1;Switzerland;Western Europe;"Frontiers Media SA";"2011-2026";"Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4765;16436;"JRAAS - Journal of the Renin-Angiotensin-Aldosterone System";journal;"14703203, 17528976";"SAGE Publications Ltd";Yes;No;1,020;Q2;54;35;40;1944;230;40;6,86;55,54;43,05;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2000-2026";"Endocrinology (Q2); Internal Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4766;21101039845;"Algebraic Combinatorics";journal;"25895486";"Combinatorics Consortium";Yes;Yes;1,019;Q1;15;62;205;1801;218;205;1,07;29,05;20,67;0;France;Western Europe;"Combinatorics Consortium";"2018-2025";"Discrete Mathematics and Combinatorics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +4767;145326;"International Journal of Information Security";journal;"16155270, 16155262";"Springer Verlag";No;No;1,019;Q1;60;236;359;13725;2583;359;7,48;58,16;24,52;1;Germany;Western Europe;"Springer Verlag";"2005-2026";"Computer Networks and Communications (Q1); Information Systems (Q1); Safety, Risk, Reliability and Quality (Q1); Software (Q1)";"Computer Science; Engineering" +4768;16936;"Minerals Engineering";journal;"08926875";"Elsevier Ltd";No;No;1,019;Q1;156;578;1414;31316;9260;1413;6,06;54,18;29,31;1;United Kingdom;Western Europe;"Elsevier Ltd";"1988-2026";"Chemistry (miscellaneous) (Q1); Control and Systems Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1); Mechanical Engineering (Q1)";"Chemistry; Earth and Planetary Sciences; Engineering" +4769;13929;"Applied Ergonomics";journal;"18729126, 00036870";"Elsevier Ltd";No;No;1,018;Q1;142;189;620;10691;3184;614;4,80;56,57;43,11;4;United Kingdom;Western Europe;"Elsevier Ltd";"1969-2026";"Engineering (miscellaneous) (Q1); Human Factors and Ergonomics (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering; Health Professions; Social Sciences" +4770;24615;"Applied Geochemistry";journal;"18729134, 08832927";"Elsevier Ltd";No;No;1,018;Q1;169;255;758;17906;3056;750;3,94;70,22;33,43;0;United Kingdom;Western Europe;"Elsevier Ltd";"1986-2026";"Geochemistry and Petrology (Q1); Environmental Chemistry (Q2); Pollution (Q2)";"Earth and Planetary Sciences; Environmental Science" +4771;21101021196;"Environment and Planning B: Urban Analytics and City Science";journal;"23998083, 23998091";"SAGE Publications Ltd";No;No;1,018;Q1;123;221;500;10047;2127;449;4,15;45,46;40,15;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2017-2026";"Architecture (Q1); Geography, Planning and Development (Q1); Nature and Landscape Conservation (Q1); Urban Studies (Q1); Management, Monitoring, Policy and Law (Q2)";"Engineering; Environmental Science; Social Sciences" +4772;21101060161;"IEEE Transactions on Medical Robotics and Bionics";journal;"25763202";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,018;Q1;37;162;355;7237;1691;349;4,74;44,67;24,66;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2019-2026";"Artificial Intelligence (Q1); Biomedical Engineering (Q1); Computer Science Applications (Q1); Control and Optimization (Q1); Human-Computer Interaction (Q2)";"Computer Science; Engineering; Mathematics" +4773;16249;"Journal of Behavior Therapy and Experimental Psychiatry";journal;"18737943, 00057916";"Elsevier Ltd";No;No;1,018;Q1;99;47;199;2527;539;196;2,67;53,77;60,44;0;United Kingdom;Western Europe;"Elsevier Ltd";"1970-2026";"Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1); Experimental and Cognitive Psychology (Q1); Psychiatry and Mental Health (Q2)";"Arts and Humanities; Medicine; Psychology" +4774;21090;"Journal of Sports Sciences";journal;"1466447X, 02640414";"Routledge";No;No;1,018;Q1;181;310;743;16940;2454;733;2,91;54,65;27,71;1;United Kingdom;Western Europe;"Routledge";"1983-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)";"Health Professions; Medicine" +4775;23282;"Natural Hazards";journal;"15730840, 0921030X";"Springer Science and Business Media B.V.";No;No;1,018;Q1;162;922;1817;59355;9561;1795;5,26;64,38;29,61;21;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1988-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Water Science and Technology (Q1); Atmospheric Science (Q2)";"Earth and Planetary Sciences; Environmental Science" +4776;21100783390;"Therapeutic Advances in Hematology";journal;"20406207, 20406215";"SAGE Publications Inc.";Yes;No;1,018;Q1;41;58;175;2330;524;170;2,63;40,17;44,16;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2010-2026";"Hematology (Q1)";"Medicine" +4777;16563;"Tourism Recreation Research";journal;"02508281, 23200308";"Taylor and Francis Ltd.";No;No;1,018;Q1;76;270;264;20578;1885;257;7,00;76,21;41,03;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976-2026";"Cultural Studies (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Environmental Science; Social Sciences" +4778;17180;"Animal Conservation";journal;"13679430, 14691795";"Wiley-Blackwell";No;No;1,017;Q1;104;93;228;6451;718;197;3,01;69,37;38,89;2;United States;Northern America;"Wiley-Blackwell";"1998-2026";"Ecology (Q1); Nature and Landscape Conservation (Q1)";"Environmental Science" +4779;28100;"BMC Medical Ethics";journal;"14726939";"BioMed Central Ltd";Yes;No;1,017;Q1;72;184;397;9018;1765;387;3,92;49,01;57,02;5;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2026";"Health Policy (Q1); Health (social science) (Q1); Issues, Ethics and Legal Aspects (Q1)";"Medicine; Nursing; Social Sciences" +4780;27901;"Family Practice";journal;"02632136, 14602229";"Oxford University Press";Yes;No;1,017;Q1;120;142;428;4126;1126;380;2,01;29,06;54,47;2;United Kingdom;Western Europe;"Oxford University Press";"1984-2026";"Family Practice (Q1)";"Medicine" +4781;12073;"International Journal of Educational Research";journal;"08830355";"Elsevier B.V.";No;No;1,017;Q1;94;302;444;21140;2007;441;4,33;70,00;62,21;4;United Kingdom;Western Europe;"Elsevier B.V.";"1986-2026";"Education (Q1)";"Social Sciences" +4782;15472;"Journal of Experimental Child Psychology";journal;"00220965, 10960457";"Academic Press Inc.";No;No;1,017;Q1;146;175;538;10692;1414;537;2,40;61,10;66,14;1;United States;Northern America;"Academic Press Inc.";"1964-2026";"Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1)";"Psychology" +4783;21100229207;"Journal of Materials Chemistry C";journal;"20507534, 20507526";"Royal Society of Chemistry";No;No;1,017;Q1;216;1770;5340;108867;26579;5317;4,82;61,51;34,21;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2013-2026";"Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1)";"Chemistry; Materials Science" +4784;16530;"Physiologia Plantarum";journal;"00319317, 13993054";"Wiley-Blackwell Publishing Ltd";No;No;1,017;Q1;187;667;1071;48826;4928;1050;4,08;73,20;42,74;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1948-2026";"Medicine (miscellaneous) (Q1); Plant Science (Q1); Cell Biology (Q2); Genetics (Q2); Physiology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +4785;39465;"Annals of Surgical Oncology";journal;"10689265, 15344681";"Springer Science and Business Media Deutschland GmbH";No;No;1,016;Q1;217;1806;4065;34181;8475;2804;2,06;18,93;36,22;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1900, 1994-2026";"Surgery (Q1); Oncology (Q2)";"Medicine" +4786;22552;"Cardiovascular Drugs and Therapy";journal;"15737241, 09203206";"Springer";No;No;1,016;Q1;85;255;377;10978;1225;313;3,27;43,05;35,94;0;United States;Northern America;"Springer";"1987-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4787;28652;"Clinical Gerontologist";journal;"15452301, 07317115";"Routledge";No;No;1,016;Q1;49;139;274;6914;866;250;2,78;49,74;65,16;3;United States;Northern America;"Routledge";"1982-2026";"Clinical Psychology (Q1); Gerontology (Q1); Health (social science) (Q1); Social Psychology (Q1); Geriatrics and Gerontology (Q2)";"Medicine; Nursing; Psychology; Social Sciences" +4788;21100782808;"eNeuro";journal;"23732822";"Society for Neuroscience";Yes;No;1,016;Q1;74;280;997;16516;2434;959;2,35;58,99;41,38;0;United States;Northern America;"Society for Neuroscience";"2014-2026";"Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q2)";"Medicine; Neuroscience" +4789;5700163567;"Episteme";journal;"17423600, 17500117";"Cambridge University Press";No;No;1,016;Q1;49;143;162;6832;374;162;2,01;47,78;26,85;0;United Kingdom;Western Europe;"Cambridge University Press";"2004-2026";"History and Philosophy of Science (Q1); Philosophy (Q1)";"Arts and Humanities" +4790;130164;"Journal of Neural Engineering";journal;"17412552, 17412560";"Institute of Physics";No;No;1,016;Q1;151;348;952;17781;4115;944;4,07;51,09;30,75;0;United Kingdom;Western Europe;"Institute of Physics";"2004-2026";"Biomedical Engineering (Q1); Cellular and Molecular Neuroscience (Q2)";"Engineering; Neuroscience" +4791;130063;"Pharmacological Reports";journal;"17341140, 22995684";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,016;Q1;104;127;329;10395;1483;324;4,72;81,85;51,87;0;Netherlands;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2026";"Medicine (miscellaneous) (Q1); Pharmacology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4792;28654;"Clinics in Geriatric Medicine";journal;"07490690, 18798853";"W.B. Saunders";No;No;1,016;Q2;99;55;170;2825;556;141;2,07;51,36;46,85;0;United States;Northern America;"W.B. Saunders";"1985-2026";"Geriatrics and Gerontology (Q2)";"Medicine" +4793;21100871633;"Current Opinion in Physiology";journal;"24688681, 24688673";"Elsevier Ltd";No;No;1,016;Q2;39;37;128;2143;308;105;2,03;57,92;52,38;0;United Kingdom;Western Europe;"Elsevier Ltd";"2018-2026";"Physiology (Q2); Physiology (medical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4794;5700164242;"Comparative European Politics";journal;"1740388X, 14724790";"Palgrave Macmillan Ltd.";No;No;1,015;Q1;47;52;122;3258;380;119;2,75;62,65;36,90;4;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2008-2026";"Political Science and International Relations (Q1)";"Social Sciences" +4795;21100900279;"Cytokine: X";journal;"25901532";"Academic Press";Yes;No;1,015;Q1;16;0;4;0;9;4;0,00;0,00;0,00;0;United States;Northern America;"Academic Press";"2019-2022";"Hematology (Q1); Biochemistry (Q2); Immunology (Q2); Immunology and Allergy (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +4796;17700156413;"Dianli Xitong Baohu yu Kongzhi/Power System Protection and Control";journal;"16743415";"Power System Protection and Control Press";Yes;No;1,015;Q1;64;236;1263;6916;5152;1263;4,67;29,31;31,35;0;China;Asiatic Region;"Power System Protection and Control Press";"2009-2026";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Engineering" +4797;5700168400;"Feminist Media Studies";journal;"14680777, 14715902";"Routledge";No;No;1,015;Q1;72;254;561;12319;1604;544;2,66;48,50;73,24;3;United Kingdom;Western Europe;"Routledge";"2001-2026";"Communication (Q1); Gender Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +4798;28143;"Prenatal Diagnosis";journal;"10970223, 01973851";"John Wiley and Sons Ltd";No;No;1,015;Q1;114;242;574;7361;1677;536;2,63;30,42;62,49;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1980-2026";"Obstetrics and Gynecology (Q1); Genetics (clinical) (Q2)";"Medicine" +4799;19700201402;"Annals of GIS";journal;"19475691, 19475683";"Taylor and Francis Ltd.";Yes;No;1,014;Q1;50;35;104;2717;518;98;4,60;77,63;35,37;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Computer Science Applications (Q1); Earth and Planetary Sciences (miscellaneous) (Q1)";"Computer Science; Earth and Planetary Sciences" +4800;24596;"Cluster Computing";journal;"13867857, 15737543";"Springer";No;No;1,014;Q1;91;1067;1180;56347;8584;1180;7,68;52,81;29,47;2;United States;Northern America;"Springer";"1998-1999, 2005-2026";"Computer Networks and Communications (Q1); Software (Q1)";"Computer Science" +4801;4700152631;"International Entrepreneurship and Management Journal";journal;"15547191, 15551938";"Springer";No;No;1,014;Q1;97;114;265;10641;1781;265;6,33;93,34;45,11;2;United States;Northern America;"Springer";"2006-2026";"Management Information Systems (Q1); Management of Technology and Innovation (Q2)";"Business, Management and Accounting" +4802;21100200829;"International Journal of Engineering Business Management";journal;"18479790";"SAGE Publications Inc.";Yes;No;1,014;Q1;46;32;73;1865;605;73;9,43;58,28;24,32;0;Croatia;Eastern Europe;"SAGE Publications Inc.";"2009-2026";"Management Science and Operations Research (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Decision Sciences" +4803;144819;"International Journal of Sustainability in Higher Education";journal;"14676370";"Emerald Group Publishing Ltd.";No;No;1,014;Q1;95;254;366;15181;2516;359;5,86;59,77;55,53;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2026";"Education (Q1); Human Factors and Ergonomics (Q1)";"Social Sciences" +4804;20474;"Prostate";journal;"10970045, 02704137";"John Wiley and Sons Inc";No;No;1,014;Q1;141;171;494;5437;1422;474;2,73;31,80;24,22;0;United States;Northern America;"John Wiley and Sons Inc";"1980-2026";"Urology (Q1); Oncology (Q2)";"Medicine" +4805;20500195043;"Research in Transportation Business and Management";journal;"22105395";"Elsevier B.V.";No;No;1,014;Q1;65;209;432;15031;2474;425;5,62;71,92;35,01;1;Netherlands;Western Europe;"Elsevier B.V.";"2011-2026";"Business and International Management (Q1); Decision Sciences (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1); Transportation (Q2)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Social Sciences" +4806;19700166403;"Science China Mathematics";journal;"16747283, 18691862";"Science China Press";No;No;1,014;Q1;52;156;370;5449;609;366;1,55;34,93;28,94;0;China;Asiatic Region;"Science China Press";"2010-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +4807;21100832688;"Synthetic and Systems Biotechnology";journal;"2405805X";"KeAi Communications Co.";Yes;No;1,014;Q1;49;140;267;8012;1372;250;4,95;57,23;42,01;0;China;Asiatic Region;"KeAi Communications Co.";"2016-2026";"Applied Microbiology and Biotechnology (Q1); Biomedical Engineering (Q1); Genetics (Q2); Structural Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering; Immunology and Microbiology" +4808;58112;"Transplantation Reviews";journal;"15579816, 0955470X";"Elsevier Inc.";No;No;1,014;Q1;59;48;112;3466;399;111;3,38;72,21;36,12;0;United States;Northern America;"Elsevier Inc.";"1987-2026";"Surgery (Q1); Transplantation (Q1)";"Medicine" +4809;21100228564;"Frontiers of Optoelectronics";journal;"20952767, 20952759";"Higher Education Press Limited Company";Yes;Yes;1,013;Q1;41;24;137;1404;671;125;4,20;58,50;35,62;0;China;Asiatic Region;"Higher Education Press Limited Company";"2012-2025";"Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Engineering; Materials Science" +4810;26051;"IEEE Transactions on Electromagnetic Compatibility";journal;"00189375, 1558187X";"Institute of Electrical and Electronics Engineers Inc.";No;No;1,013;Q1;113;197;668;5844;2180;665;3,34;29,66;25,15;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1964-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1)";"Engineering; Physics and Astronomy" +4811;5000154606;"Internal and Emergency Medicine";journal;"18280447, 19709366";"Springer Science and Business Media Deutschland GmbH";No;No;1,013;Q1;72;460;908;11258;2711;668;3,51;24,47;47,82;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2006-2026";"Emergency Medicine (Q1); Internal Medicine (Q2)";"Medicine" +4812;35722;"Journal of Reconstructive Microsurgery";journal;"0743684X, 10988947";"Thieme Medical Publishers, Inc.";No;No;1,013;Q1;69;119;325;3945;759;313;2,29;33,15;36,24;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1984-2026";"Surgery (Q1)";"Medicine" +4813;24381;"Econometric Reviews";journal;"07474938, 15324168";"Taylor and Francis Ltd.";No;No;1,013;Q2;72;64;121;2969;177;119;1,24;46,39;26,56;2;United States;Northern America;"Taylor and Francis Ltd.";"1982-1987, 1989-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +4814;21100865008;"Neurology: Genetics";journal;"23767839";"Lippincott Williams and Wilkins";Yes;No;1,013;Q2;44;77;235;2461;594;234;2,54;31,96;49,16;0;United States;Northern America;"Lippincott Williams and Wilkins";"2015-2026";"Genetics (clinical) (Q2); Neurology (clinical) (Q2)";"Medicine" +4815;21100469749;"International Journal of Nursing Sciences";journal;"23520132";"Chinese Nursing Association";Yes;No;1,012;Q1;50;79;213;3871;918;199;4,34;49,00;64,37;0;China;Asiatic Region;"Chinese Nursing Association";"2014-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +4816;21101046170;"Journal of Statistics and Data Science Education";journal;"26939169";"Taylor and Francis Ltd.";Yes;Yes;1,012;Q1;44;69;112;2835;357;101;3,35;41,09;57,78;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2021-2026";"Education (Q1); Management Science and Operations Research (Q1); Statistics and Probability (Q1)";"Decision Sciences; Mathematics; Social Sciences" +4817;21100206609;"Journal of the World Federation of Orthodontists";journal;"22124438";"Elsevier Inc.";No;No;1,012;Q1;24;59;126;1927;471;107;3,51;32,66;39,62;0;United States;Northern America;"Elsevier Inc.";"1970, 2012-2026";"Orthodontics (Q1)";"Dentistry" +4818;18553;"Northwestern University Law Review";journal;"00293571";"Northwestern University School of Law";No;No;1,012;Q1;56;25;101;1544;153;85;1,48;61,76;38,71;0;United States;Northern America;"Northwestern University School of Law";"1973, 1977, 1981, 1989-1990, 1992-2025";"Law (Q1)";"Social Sciences" +4819;25387;"Acta Diabetologica";journal;"14325233, 09405429";"Springer-Verlag Italia s.r.l.";No;No;1,011;Q1;93;233;526;9155;1698;491;3,44;39,29;51,09;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1991-2026";"Medicine (miscellaneous) (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4820;21101039767;"Cardiology and Therapy";journal;"21936544, 21938261";"";Yes;No;1,011;Q1;31;48;141;1728;473;132;3,32;36,00;37,83;0;United Kingdom;Western Europe;"";"2012-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +4821;13674;"Dysphagia";journal;"0179051X, 14320460";"Springer";Yes;No;1,011;Q1;110;169;444;6827;1612;434;3,68;40,40;56,40;0;United States;Northern America;"Springer";"1986-2026";"Gastroenterology (Q1); Otorhinolaryngology (Q1); Speech and Hearing (Q1)";"Health Professions; Medicine" +4822;14024;"Human Pathology";journal;"15328392, 00468177";"W.B. Saunders";No;No;1,011;Q1;163;158;464;7280;1396;441;3,05;46,08;42,61;0;United States;Northern America;"W.B. Saunders";"1970-2026";"Pathology and Forensic Medicine (Q1)";"Medicine" +4823;30064;"Journal of Psychology";journal;"19401019, 00223980";"Routledge";No;No;1,011;Q1;88;54;90;4173;382;88;2,84;77,28;45,25;0;United States;Northern America;"Routledge";"1936-2026";"Business, Management and Accounting (miscellaneous) (Q1); Education (Q1); Psychology (miscellaneous) (Q1)";"Business, Management and Accounting; Psychology; Social Sciences" +4824;5600157642;"Public Policy and Administration";journal;"09520767, 17494192";"SAGE Publications Ltd";No;No;1,011;Q1;54;55;80;3519;426;79;5,11;63,98;41,67;8;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-2026";"Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +4825;86430;"Remote Sensing";journal;"20724292";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,011;Q1;246;4057;16889;237427;86505;16638;4,79;58,52;32,93;12;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"1992, 1997, 2007, 2009-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +4826;21101185419;"Technology, Mind, and Behavior";journal;"26890208";"American Psychological Association";Yes;No;1,011;Q1;22;8;74;385;309;74;4,21;48,13;60,00;0;United States;Northern America;"American Psychological Association";"2020-2025";"Communication (Q1); Experimental and Cognitive Psychology (Q1); Social Psychology (Q1); Human-Computer Interaction (Q2)";"Computer Science; Psychology; Social Sciences" +4827;21100817122;"Agricultural and Food Economics";journal;"21937532";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,010;Q1;43;96;130;6807;849;125;6,19;70,91;48,90;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2013-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Food Science (Q1); Economics and Econometrics (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +4828;21100871130;"Animal Frontiers";journal;"21606064, 21606056";"Oxford University Press";Yes;Yes;1,010;Q1;60;54;161;1829;869;139;6,20;33,87;40,00;1;India;Asiatic Region;"Oxford University Press";"2011-2025";"Animal Science and Zoology (Q1); Food Animals (Q1)";"Agricultural and Biological Sciences; Veterinary" +4829;145209;"Bulletin of Earthquake Engineering";journal;"1570761X, 15731456";"Springer Science and Business Media B.V.";No;No;1,010;Q1;109;270;767;14250;3306;751;4,42;52,78;25,20;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2003-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Geophysics (Q1); Geotechnical Engineering and Engineering Geology (Q1)";"Earth and Planetary Sciences; Engineering" +4830;100147030;"Current Sociology";journal;"00113921, 14617064";"SAGE Publications Ltd";No;No;1,010;Q1;90;94;218;5365;758;208;3,53;57,07;50,00;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1952-1965, 1967-1969, 1972-1984, 1986-2026";"Sociology and Political Science (Q1)";"Social Sciences" +4831;21100823385;"Defence Technology";journal;"20963459, 22149147";"KeAi Communications Co.";Yes;Yes;1,010;Q1;69;311;702;17068;4964;700;6,97;54,88;27,40;1;China;Asiatic Region;"KeAi Communications Co.";"2013-2026";"Ceramics and Composites (Q1); Computational Mechanics (Q1); Mechanical Engineering (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science" +4832;19900193870;"Frontiers in Energy";journal;"20951698, 20951701";"Higher Education Press Limited Company";No;No;1,010;Q1;48;77;191;4748;1048;174;6,63;61,66;33,24;0;China;Asiatic Region;"Higher Education Press Limited Company";"2011-2025";"Energy Engineering and Power Technology (Q1)";"Energy" +4833;12300154722;"International Journal of Tourism Research";journal;"10992340, 15221970";"John Wiley and Sons Ltd";No;No;1,010;Q1;96;175;300;12993;2128;299;6,55;74,25;41,45;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Geography, Planning and Development (Q1); Nature and Landscape Conservation (Q1); Tourism, Leisure and Hospitality Management (Q1); Transportation (Q2)";"Business, Management and Accounting; Environmental Science; Social Sciences" +4834;17545;"Law and Human Behavior";journal;"01477307, 1573661X";"Springer New York";No;No;1,010;Q1;120;40;119;2828;450;119;3,52;70,70;54,48;0;United States;Northern America;"Springer New York";"1977-2025";"Arts and Humanities (miscellaneous) (Q1); Law (Q1); Psychology (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)";"Arts and Humanities; Medicine; Psychology; Social Sciences" +4835;12100156621;"Revista Matematica Complutense";journal;"19882807, 11391138";"Springer-Verlag Italia s.r.l.";Yes;No;1,010;Q1;30;54;105;1555;181;105;1,61;28,80;24,35;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"2008-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +4836;14818;"Small Group Research";journal;"15528278, 10464964";"SAGE Publications Inc.";No;No;1,010;Q1;93;42;81;3608;391;80;3,94;85,90;45,92;0;United States;Northern America;"SAGE Publications Inc.";"1970-2026";"Social Psychology (Q1); Applied Psychology (Q2)";"Psychology" +4837;18532;"Experimental Cell Research";journal;"10902422, 00144827";"Elsevier Inc.";No;No;1,010;Q2;213;315;833;18825;3260;824;3,94;59,76;44,44;1;United States;Northern America;"Elsevier Inc.";"1950-2026";"Cell Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4838;19900191989;"Stem Cells International";journal;"16879678, 1687966X";"John Wiley and Sons Ltd";Yes;No;1,010;Q2;110;94;329;5396;1517;326;4,01;57,40;47,99;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Cell Biology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4839;21101036625;"Advanced Biology";journal;"27010198";"John Wiley & Sons Inc.";No;No;1,009;Q1;51;170;481;13680;1686;465;3,30;80,47;43,36;0;United States;Northern America;"John Wiley & Sons Inc.";"2021-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biomedical Engineering (Q1); Biomaterials (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +4840;21100440520;"EJNMMI Physics";journal;"21977364";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,009;Q1;45;100;274;3651;971;271;3,37;36,51;32,20;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Biomedical Engineering (Q1); Instrumentation (Q1); Radiation (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Engineering; Medicine; Physics and Astronomy" +4841;21100464638;"Journal of Frailty and Aging";journal;"22601341, 22734309";"Elsevier Masson s.r.l.";Yes;No;1,009;Q1;39;73;205;3067;727;182;3,47;42,01;51,20;0;France;Western Europe;"Elsevier Masson s.r.l.";"2015-2026";"Medicine (miscellaneous) (Q1); Geriatrics and Gerontology (Q2); Physiology (medical) (Q2); Aging (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4842;19700188253;"Journal of Further and Higher Education";journal;"14699486, 0309877X";"Routledge";No;No;1,009;Q1;67;96;266;4875;1152;266;3,03;50,78;56,85;0;United States;Northern America;"Routledge";"1977-2026";"Education (Q1)";"Social Sciences" +4843;16817;"Journal of Psychosomatic Research";journal;"18791360, 00223999";"Elsevier Inc.";No;No;1,009;Q1;190;266;704;12378;2333;630;3,12;46,53;50,47;0;United States;Northern America;"Elsevier Inc.";"1956-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +4844;5800179601;"Substance Abuse: Treatment, Prevention, and Policy";journal;"1747597X";"BioMed Central Ltd";Yes;No;1,009;Q1;63;54;197;2797;658;192;3,29;51,80;57,09;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Health Policy (Q1); Psychiatry and Mental Health (Q2)";"Medicine" +4845;14900154702;"Therapeutic Advances in Respiratory Disease";journal;"17534658, 17534666";"SAGE Publications Ltd";Yes;No;1,009;Q1;59;104;239;5487;859;236;3,19;52,76;46,86;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2026";"Pharmacology (medical) (Q1); Pulmonary and Respiratory Medicine (Q1)";"Medicine" +4846;21100268395;"Journal of the Economics of Ageing";journal;"2212828X";"Elsevier B.V.";No;No;1,009;Q2;32;51;109;2655;362;108;3,21;52,06;33,08;8;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Economics and Econometrics (Q2); Life-span and Life-course Studies (Q2)";"Economics, Econometrics and Finance; Social Sciences" +4847;14222;"Peptides";journal;"18735169, 01969781";"Elsevier Inc.";No;No;1,009;Q2;148;64;347;5532;1139;319;3,23;86,44;46,29;0;United States;Northern America;"Elsevier Inc.";"1980-2026";"Biochemistry (Q2); Cellular and Molecular Neuroscience (Q2); Endocrinology (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +4848;14957;"Applied Microbiology and Biotechnology";journal;"14320614, 01757598";"Springer Science and Business Media Deutschland GmbH";Yes;No;1,008;Q1;296;283;1647;19001;8738;1645;4,99;67,14;45,90;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1984-2026";"Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +4849;21101147600;"Biophysics Reports";journal;"23643439, 23643420";"";Yes;Yes;1,008;Q1;12;35;98;1814;226;92;2,28;51,83;41,99;0;China;Asiatic Region;"";"2016, 2021-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biophysics (Q1); Biotechnology (Q1); Cell Biology (Q2); Oncology (Q2); Structural Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4850;21100453600;"Geothermal Energy";journal;"21959706";"Springer Science + Business Media";Yes;No;1,008;Q1;42;45;110;2832;540;110;4,63;62,93;25,45;0;United States;Northern America;"Springer Science + Business Media";"2013-2026";"Geotechnical Engineering and Engineering Geology (Q1); Economic Geology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Earth and Planetary Sciences; Energy" +4851;21100811143;"Propulsion and Power Research";journal;"2212540X";"KeAi Communications Co.";Yes;No;1,008;Q1;49;40;108;3153;810;108;7,24;78,83;26,52;0;China;Asiatic Region;"KeAi Communications Co.";"2012-2025";"Aerospace Engineering (Q1); Automotive Engineering (Q1); Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1); Fuel Technology (Q2)";"Chemical Engineering; Energy; Engineering" +4852;21100914527;"ACS Applied Nano Materials";journal;"25740970";"American Chemical Society";No;No;1,007;Q1;113;2113;6697;117227;38651;6690;5,81;55,48;36,35;0;United States;Northern America;"American Chemical Society";"2018-2026";"Materials Science (miscellaneous) (Q1)";"Materials Science" +4853;6500153129;"Cambridge Archaeological Journal";journal;"09597743, 14740540";"Cambridge University Press";No;No;1,007;Q1;62;47;131;4630;272;130;2,04;98,51;45,16;0;United Kingdom;Western Europe;"Cambridge University Press";"1991-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1)";"Arts and Humanities; Social Sciences" +4854;21101062817;"Frontiers in Artificial Intelligence";journal;"26248212";"Frontiers Media SA";Yes;No;1,007;Q1;62;536;885;25412;6318;830;7,78;47,41;32,71;1;Switzerland;Western Europe;"Frontiers Media SA";"2018-2026";"Artificial Intelligence (Q1)";"Computer Science" +4855;40900;"International Journal of Sport Nutrition and Exercise Metabolism";journal;"1526484X, 15432742";"Human Kinetics Publishers Inc.";No;No;1,007;Q1;98;49;138;2411;430;128;2,57;49,20;32,45;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1996-1998, 2000-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1); Orthopedics and Sports Medicine (Q1); Sports Science (Q2)";"Health Professions; Medicine; Nursing" +4856;21101023286;"JBMR Plus";journal;"24734039";"Oxford University Press";Yes;No;1,007;Q1;43;208;366;8328;1116;363;2,97;40,04;47,93;0;United States;Northern America;"Oxford University Press";"2017-2026";"Orthopedics and Sports Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Medicine" +4857;21100854471;"Migration Studies";journal;"20495838, 20495846";"Oxford University Press";No;No;1,007;Q1;30;63;126;5004;439;125;3,08;79,43;58,27;3;United Kingdom;Western Europe;"Oxford University Press";"2016-2026";"Demography (Q1); Geography, Planning and Development (Q1)";"Social Sciences" +4858;29090;"Nuclear Science and Techniques";journal;"22103147, 10018042";"Springer";No;No;1,007;Q1;42;236;576;12084;2361;565;4,28;51,20;29,38;0;Singapore;Asiatic Region;"Springer";"1993-1994, 1996, 1998-2010, 2013-2026";"Nuclear and High Energy Physics (Q1); Nuclear Energy and Engineering (Q1)";"Energy; Physics and Astronomy" +4859;26396;"Organic Letters";journal;"15237052, 15237060";"American Chemical Society";No;No;1,007;Q1;268;2452;5486;105911;24372;5469;4,53;43,19;34,09;0;United States;Northern America;"American Chemical Society";"1999-2026";"Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +4860;21101176795;"RSC Sustainability";journal;"27538125";"Royal Society of Chemistry";Yes;Yes;1,007;Q1;27;306;549;25409;3452;528;6,29;83,04;38,06;1;United Kingdom;Western Europe;"Royal Society of Chemistry";"2023-2026";"Analytical Chemistry (Q1); Chemistry (miscellaneous) (Q1); Electrochemistry (Q1); Organic Chemistry (Q1)";"Chemistry" +4861;19700166804;"Ticks and Tick-borne Diseases";journal;"18779603, 1877959X";"Elsevier GmbH";Yes;No;1,007;Q1;74;121;445;6009;1601;431;3,62;49,66;52,60;0;Germany;Western Europe;"Elsevier GmbH";"2010-2026";"Infectious Diseases (Q1); Insect Science (Q1); Parasitology (Q1); Microbiology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +4862;27562;"Archives of Sexual Behavior";journal;"15732800, 00040002";"Springer New York";No;No;1,006;Q1;148;312;855;19661;2865;733;2,68;63,02;59,52;2;United States;Northern America;"Springer New York";"1971-2026";"Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Psychology" +4863;12126;"Behaviour Change";journal;"20497768, 08134839";"Cambridge University Press";No;No;1,006;Q1;50;0;45;0;161;43;2,19;0,00;0,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1984-2023";"Clinical Psychology (Q1); Experimental and Cognitive Psychology (Q1)";"Psychology" +4864;21100201056;"Electronic Journal of e-Learning";journal;"14794403";"Academic Conferences and Publishing International Limited";Yes;No;1,006;Q1;45;40;154;2174;1022;150;5,68;54,35;41,23;0;United Kingdom;Western Europe;"Academic Conferences and Publishing International Limited";"2011-2026";"Computer Science Applications (Q1); Education (Q1); E-learning (Q2)";"Computer Science; Social Sciences" +4865;17300154924;"Epidemics";journal;"17554365, 18780067";"Elsevier B.V.";Yes;No;1,006;Q1;60;65;236;3243;596;227;2,29;49,89;39,39;0;Netherlands;Western Europe;"Elsevier B.V.";"2009-2026";"Infectious Diseases (Q1); Parasitology (Q1); Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2); Microbiology (Q2); Virology (Q2)";"Immunology and Microbiology; Medicine" +4866;15066;"Fish and Shellfish Immunology";journal;"10959947, 10504648";"Academic Press";No;No;1,006;Q1;173;622;2121;37714;9835;2118;4,23;60,63;44,90;0;United States;Northern America;"Academic Press";"1991-2026";"Aquatic Science (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Environmental Chemistry (Q2); Immunology (Q2)";"Agricultural and Biological Sciences; Environmental Science; Immunology and Microbiology; Medicine" +4867;13838;"Housing Policy Debate";journal;"10511482, 2152050X";"Taylor and Francis Ltd.";No;No;1,006;Q1;81;69;188;3816;636;161;2,79;55,30;50,97;12;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2008, 2010-2026";"Development (Q1); Urban Studies (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +4868;21101254074;"Intelligent Computing";journal;"27715892";"American Association for the Advancement of Science";Yes;Yes;1,006;Q1;16;35;88;2335;562;85;7,51;66,71;28,78;1;United States;Northern America;"American Association for the Advancement of Science";"2022-2026";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Computer Vision and Pattern Recognition (Q1); Electrical and Electronic Engineering (Q1); Human-Computer Interaction (Q2)";"Computer Science; Engineering" +4869;22819;"International Journal of Market Research";journal;"25152173, 14707853";"SAGE Publications Ltd";No;No;1,006;Q1;69;47;133;2621;620;126;3,06;55,77;41,35;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2026";"Business and International Management (Q1); Economics and Econometrics (Q2); Marketing (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4870;14879;"Journal of Web Semantics";journal;"15708268";"Elsevier B.V.";Yes;No;1,006;Q1;94;29;67;1383;337;66;5,47;47,69;39,00;2;Netherlands;Western Europe;"Elsevier B.V.";"2003-2026";"Computer Networks and Communications (Q1); Software (Q1); Human-Computer Interaction (Q2)";"Computer Science" +4871;51013;"Acta Biochimica et Biophysica Sinica";journal;"17457270, 16729145";"Science Press";Yes;No;1,005;Q1;80;201;581;9894;2115;527;3,65;49,22;46,20;0;China;Asiatic Region;"Science Press";"1996-2026";"Biophysics (Q1); Medicine (miscellaneous) (Q1); Biochemistry (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4872;19700201448;"Critical Studies on Terrorism";journal;"17539153, 17539161";"Taylor and Francis Ltd.";No;No;1,005;Q1;41;38;124;3345;367;119;2,09;88,03;44,44;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Political Science and International Relations (Q1)";"Social Sciences" +4873;21101159013;"FEMS Microbes";journal;"26336685";"Oxford University Press";Yes;No;1,005;Q1;16;21;90;1483;340;87;4,15;70,62;49,06;0;United Kingdom;Western Europe;"Oxford University Press";"2020-2026";"Immunology and Microbiology (miscellaneous) (Q1); Parasitology (Q1); Microbiology (Q2); Virology (Q2)";"Immunology and Microbiology" +4874;21100238624;"Journal of Civil Structural Health Monitoring";journal;"21905479, 21905452";"Springer Science + Business Media";No;No;1,005;Q1;57;212;293;9652;1813;285;6,07;45,53;28,02;1;United States;Northern America;"Springer Science + Business Media";"2011-2026";"Civil and Structural Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering" +4875;18700156719;"Journal of Flood Risk Management";journal;"1753318X";"John Wiley and Sons Inc";Yes;No;1,005;Q1;66;216;212;12819;994;194;5,00;59,35;32,75;10;United States;Northern America;"John Wiley and Sons Inc";"2009-2026";"Environmental Engineering (Q1); Geography, Planning and Development (Q1); Safety, Risk, Reliability and Quality (Q1); Water Science and Technology (Q1)";"Engineering; Environmental Science; Social Sciences" +4876;19700167014;"Journal of Gay and Lesbian Mental Health";journal;"19359705, 19359713";"Routledge";No;No;1,005;Q1;47;36;93;2019;289;68;3,10;56,08;50,31;0;United States;Northern America;"Routledge";"2008-2025";"Clinical Psychology (Q1); Health (social science) (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Psychology; Social Sciences" +4877;28811;"Journal of Health Care Chaplaincy";journal;"15286916, 08854726";"Routledge";No;No;1,005;Q1;29;25;100;1045;300;99;2,86;41,80;65,91;0;United States;Northern America;"Routledge";"1987-1994, 1997-2002, 2004, 2008, 2010-2026";"Clinical Psychology (Q1); Health (social science) (Q1); Religious Studies (Q1)";"Arts and Humanities; Psychology; Social Sciences" +4878;21100218004;"Journal of Institutional Economics";journal;"17441374, 17441382";"Cambridge University Press";Yes;No;1,005;Q1;47;46;165;3744;514;165;2,56;81,39;23,17;0;United Kingdom;Western Europe;"Cambridge University Press";"2005-2009, 2011-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +4879;20563;"Minerva";journal;"00264695, 15731871";"Springer Netherlands";Yes;No;1,005;Q1;57;80;76;6220;384;76;3,88;77,75;45,18;2;Netherlands;Western Europe;"Springer Netherlands";"1962-2026";"Education (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +4880;21100220500;"Plant Reproduction";journal;"21947961, 21947953";"Springer Science and Business Media Deutschland GmbH";No;No;1,005;Q1;73;23;81;1568;220;79;2,74;68,17;51,76;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2013-2026";"Plant Science (Q1); Cell Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +4881;12978;"Prehospital Emergency Care";journal;"15450066, 10903127";"Taylor and Francis Ltd.";No;No;1,005;Q1;80;242;416;7715;1114;394;2,70;31,88;38,83;7;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Emergency Medicine (Q1); Emergency Nursing (Q1)";"Medicine; Nursing" +4882;14012;"Psychology and Health";journal;"08870446, 14768321";"Routledge";No;No;1,005;Q1;117;194;282;12604;974;280;3,32;64,97;66,03;1;United Kingdom;Western Europe;"Routledge";"1987-2026";"Public Health, Environmental and Occupational Health (Q1); Applied Psychology (Q2)";"Medicine; Psychology" +4883;6200180175;"Annali di Matematica Pura ed Applicata";journal;"03733114, 16181891";"";No;No;1,004;Q1;48;172;361;5257;405;361;1,05;30,56;23,19;0;Germany;Western Europe;"";"1858-1861, 1863-1865, 1867-1871, 1873, 1875, 1877-1878, 1880, 1882-1883, 1885-1919, 1921-1922, 1924-2026";"Applied Mathematics (Q1)";"Mathematics" +4884;21101293208;"Cambridge Prisms: Plastics";journal;"2755094X";"Cambridge University Press";Yes;No;1,004;Q1;13;43;58;1802;311;56;5,36;41,91;52,67;2;United Kingdom;Western Europe;"Cambridge University Press";"2023-2026";"Ecology (Q1); Environmental Science (miscellaneous) (Q1); Environmental Chemistry (Q2); Health, Toxicology and Mutagenesis (Q2)";"Environmental Science" +4885;28466;"Economic History Review";journal;"00130117, 14680289";"Wiley-Blackwell Publishing Ltd";No;No;1,004;Q1;69;79;159;6031;304;151;1,46;76,34;22,22;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1927-2026";"History (Q1); Economics and Econometrics (Q2)";"Arts and Humanities; Economics, Econometrics and Finance" +4886;1000147118;"Journal of Academic Ethics";journal;"15701727, 15728544";"Springer Science and Business Media B.V.";No;No;1,004;Q1;39;136;111;7727;584;108;5,26;56,82;49,45;2;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2003, 2005-2026";"Arts and Humanities (miscellaneous) (Q1); Education (Q1); Philosophy (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +4887;21100923896;"Wind Energy Science";journal;"23667451, 23667443";"Copernicus Publications";Yes;No;1,004;Q1;49;147;343;7094;1605;342;4,17;48,26;20,27;2;Germany;Western Europe;"Copernicus Publications";"2016-2026";"Energy Engineering and Power Technology (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy" +4888;24409;"Clinical Oral Investigations";journal;"14326981, 14363771";"Springer Verlag";No;No;1,003;Q1;117;591;1990;25690;8063;1979;3,91;43,47;45,44;1;Germany;Western Europe;"Springer Verlag";"1997-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +4889;26979;"Geomorphology";journal;"0169555X, 1872695X";"Elsevier B.V.";No;No;1,003;Q1;214;369;921;27818;3424;911;3,56;75,39;27,47;0;Netherlands;Western Europe;"Elsevier B.V.";"1984, 1987-2026";"Earth-Surface Processes (Q1)";"Earth and Planetary Sciences" +4890;145293;"International Journal of Productivity and Performance Management";journal;"17410401";"Emerald Group Publishing Ltd.";No;No;1,003;Q1;91;212;450;19125;3375;447;6,99;90,21;29,93;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2004-2026";"Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +4891;19700200833;"Journal of Integrative Environmental Sciences";journal;"19438168, 1943815X";"Taylor and Francis Ltd.";Yes;No;1,003;Q1;37;14;40;1133;210;37;4,04;80,93;51,72;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Environmental Science (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Environmental Science; Medicine" +4892;8200153106;"Plant Signaling and Behavior";journal;"15592316, 15592324";"Taylor and Francis Ltd.";Yes;No;1,003;Q1;123;98;338;6354;1683;326;5,29;64,84;38,77;0;United States;Northern America;"Taylor and Francis Ltd.";"2006-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +4893;21100941750;"Antibody Therapeutics";journal;"25164236";"Oxford University Press";Yes;No;1,003;Q2;30;26;88;2191;405;88;4,17;84,27;42,47;0;United States;Northern America;"Oxford University Press";"2018-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +4894;28533;"American Journal of Alzheimer's Disease and other Dementias";journal;"15333175, 19382731";"SAGE Publications Inc.";Yes;No;1,002;Q1;79;22;94;939;379;94;3,56;42,68;51,33;0;United States;Northern America;"SAGE Publications Inc.";"1986-2026";"Clinical Psychology (Q1); Geriatrics and Gerontology (Q2); Neuroscience (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Neuroscience; Psychology" +4895;25277;"Contemporary Drug Problems";journal;"00914509";"SAGE Publications Inc.";No;No;1,002;Q1;28;54;76;3723;253;75;3,42;68,94;61,84;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1973-1981, 1994-1995, 2014-2026";"Health Policy (Q1); Health (social science) (Q1); Law (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +4896;14398;"International Journal of Solids and Structures";journal;"00207683";"Elsevier Ltd";No;No;1,002;Q1;216;406;1190;21429;5199;1186;4,57;52,78;21,80;0;United Kingdom;Western Europe;"Elsevier Ltd";"1965-2026";"Applied Mathematics (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Modeling and Simulation (Q1)";"Engineering; Materials Science; Mathematics; Physics and Astronomy" +4897;21100853985;"Journal of Xenobiotics";journal;"20394705, 20394713";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;1,002;Q1;22;211;184;19508;994;182;4,92;92,45;55,00;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2014-2016, 2019-2025";"Toxicology (Q1); Pharmacology (Q2); Pollution (Q2)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +4898;21100253424;"Journal of Global Antimicrobial Resistance";journal;"22137173, 22137165";"Elsevier Ltd";Yes;No;1,002;Q2;60;264;695;8359;2256;537;3,27;31,66;47,54;0;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Immunology (Q2); Immunology and Allergy (Q2); Microbiology (Q2); Microbiology (medical) (Q2)";"Immunology and Microbiology; Medicine" +4899;20720;"Ethnicity and Health";journal;"14653419, 13557858";"Routledge";No;No;1,001;Q1;75;53;244;2841;795;244;2,54;53,60;68,77;1;United Kingdom;Western Europe;"Routledge";"1996-2026";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Public Health, Environmental and Occupational Health (Q1)";"Arts and Humanities; Medicine; Social Sciences" +4900;27546;"International Journal of Geomechanics";journal;"15323641, 19435622";"American Society of Civil Engineers (ASCE)";No;No;1,001;Q1;100;400;1139;18824;4250;1112;3,49;47,06;24,09;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"2001-2026";"Geotechnical Engineering and Engineering Geology (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +4901;21100197706;"International Journal of Naval Architecture and Ocean Engineering";journal;"20926790, 20926782";"Society of Naval Architects of Korea";Yes;No;1,001;Q1;54;69;187;2687;825;185;4,61;38,94;27,76;0;South Korea;Asiatic Region;"Society of Naval Architects of Korea";"2009-2026";"Control and Systems Engineering (Q1); Ocean Engineering (Q1)";"Engineering" +4902;25676;"Nonlinear Differential Equations and Applications";journal;"10219722, 14209004";"Springer International Publishing";No;No;1,001;Q1;51;132;264;4464;318;264;1,14;33,82;23,17;0;Switzerland;Western Europe;"Springer International Publishing";"1994-2026";"Analysis (Q1); Applied Mathematics (Q1)";"Mathematics" +4903;14464;"Polymer Testing";journal;"01429418";"Elsevier Ltd";Yes;No;1,001;Q1;139;318;970;17073;6641;970;6,48;53,69;31,08;0;United Kingdom;Western Europe;"Elsevier Ltd";"1980-1988, 1990-2026";"Organic Chemistry (Q1); Polymers and Plastics (Q1)";"Chemistry; Materials Science" +4904;18746;"Psychopathology";journal;"02544962, 1423033X";"S. Karger AG";No;No;1,001;Q1;81;45;142;3022;424;137;3,18;67,16;44,55;1;Switzerland;Western Europe;"S. Karger AG";"1968-2026";"Clinical Psychology (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +4905;28563;"American Journal of Industrial Medicine";journal;"02713586, 10970274";"Wiley-Liss Inc.";No;No;1,000;Q1;123;113;288;5505;1078;259;3,90;48,72;54,24;20;United States;Northern America;"Wiley-Liss Inc.";"1980-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4906;20082;"British Journal of Clinical Pharmacology";journal;"13652125, 03065251";"Wiley-Blackwell Publishing Ltd";No;No;1,000;Q1;183;454;1209;17727;3953;1084;2,93;39,05;45,30;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1974-2026";"Pharmacology (medical) (Q1); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4907;24649;"Chemical Research in Toxicology";journal;"15205010, 0893228X";"American Chemical Society";No;No;1,000;Q1;189;176;585;10945;2583;554;4,18;62,19;42,41;2;United States;Northern America;"American Chemical Society";"1988-2026";"Medicine (miscellaneous) (Q1); Toxicology (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4908;13857;"Housing, Theory and Society";journal;"16512278, 14036096";"Taylor and Francis Ltd.";No;No;1,000;Q1;65;60;110;3593;442;102;4,36;59,88;57,85;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Development (Q1); Sociology and Political Science (Q1); Urban Studies (Q1)";"Social Sciences" +4909;19972;"Journal of Endourology";journal;"1557900X, 08927790";"Mary Ann Liebert Inc.";No;No;1,000;Q1;113;249;635;5403;1905;585;2,68;21,70;23,33;1;United States;Northern America;"Mary Ann Liebert Inc.";"1987-2026";"Medicine (miscellaneous) (Q1); Urology (Q1)";"Medicine" +4910;24826;"Journal of Philosophy";journal;"0022362X, 19398549";"Philosophy Documentation Center";No;No;1,000;Q1;71;12;39;735;64;37;1,64;61,25;36,36;0;United States;Northern America;"Philosophy Documentation Center";"1977, 1980, 1989-1990, 2002-2021, 2023-2025";"Philosophy (Q1)";"Arts and Humanities" +4911;12166;"Mathematics and Computers in Simulation";journal;"03784754";"Elsevier B.V.";No;No;1,000;Q1;103;338;1104;13977;5722;1100;4,64;41,35;31,50;0;Netherlands;Western Europe;"Elsevier B.V.";"1958-2026";"Applied Mathematics (Q1); Computer Science (miscellaneous) (Q1); Modeling and Simulation (Q1); Numerical Analysis (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +4912;4700152848;"PPAR Research";journal;"16874757, 16874765";"John Wiley and Sons Ltd";Yes;No;1,000;Q1;65;4;34;183;142;34;3,58;45,75;32,35;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2006-2026";"Drug Discovery (Q1); Pharmacology (medical) (Q1)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +4913;23594;"World Economy";journal;"03785920, 14679701";"Wiley-Blackwell Publishing Ltd";No;No;1,000;Q1;90;121;440;6108;1597;439;3,61;50,48;31,70;7;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1977-2026";"Finance (Q1); Political Science and International Relations (Q1); Accounting (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +4914;21100397361;"BMC Sports Science, Medicine and Rehabilitation";journal;"20521847";"BioMed Central Ltd";Yes;No;0,999;Q1;44;380;633;19579;2513;633;3,62;51,52;36,03;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2013-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1)";"Health Professions; Medicine" +4915;15503;"Journal of Family Psychology";journal;"08933200, 19391293";"American Psychological Association";No;No;0,999;Q1;154;121;379;5057;1116;378;2,41;41,79;68,10;0;United States;Northern America;"American Psychological Association";"1990-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +4916;21101138552;"Juris: Jurnal Ilmiah Syariah";journal;"25802763, 14126109";"Universitas Islam Negeri Mahmud Yunus Batusangkar";Yes;No;0,999;Q1;16;30;79;1899;334;79;4,22;63,30;21,62;0;Indonesia;Asiatic Region;"Universitas Islam Negeri Mahmud Yunus Batusangkar";"2019-2025";"Law (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +4917;14906;"Progress in Biophysics and Molecular Biology";journal;"18731732, 00796107";"Elsevier Ltd";No;No;0,999;Q1;131;39;184;5452;827;153;5,13;139,79;40,66;0;United Kingdom;Western Europe;"Elsevier Ltd";"1960-1961, 1963-1976, 1978-1989, 1991-2026";"Biophysics (Q1); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +4918;21101060166;"Research in Globalization";journal;"2590051X";"Elsevier B.V.";Yes;No;0,999;Q1;29;64;181;5385;1242;178;7,21;84,14;32,67;4;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Development (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1); Global and Planetary Change (Q2)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +4919;21101057896;"Sensors and Actuators Reports";journal;"26660539";"Elsevier B.V.";Yes;No;0,999;Q1;36;146;184;11232;1511;181;7,47;76,93;37,82;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Analytical Chemistry (Q1); Atomic and Molecular Physics, and Optics (Q1); Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Instrumentation (Q1)";"Chemistry; Computer Science; Engineering; Materials Science; Physics and Astronomy" +4920;21100463834;"Territory, Politics, Governance";journal;"2162268X, 21622671";"Routledge";No;No;0,999;Q1;42;117;217;8150;846;204;3,74;69,66;35,35;10;United States;Northern America;"Routledge";"2013-2026";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +4921;27432;"Chinese Physics Letters";journal;"17413540, 0256307X";"IOP Publishing Ltd.";No;No;0,998;Q1;85;286;642;16151;2485;631;4,23;56,47;31,04;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1984-2025";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +4922;19700;"European Journal of Clinical Microbiology and Infectious Diseases";journal;"09349723, 14354373";"Springer Science and Business Media Deutschland GmbH";No;No;0,998;Q1;133;378;622;14198;2056;588;3,34;37,56;52,10;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1988-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q2)";"Medicine" +4923;14971;"European Journal of Finance";journal;"1351847X, 14664364";"Routledge";No;No;0,998;Q1;61;124;272;8524;1533;269;4,85;68,74;28,45;0;United Kingdom;Western Europe;"Routledge";"1995-1998, 2000-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +4924;17500155110;"Foundations and Trends in Entrepreneurship";journal;"15513114, 15513122";"Now Publishers Inc";No;No;0,998;Q1;42;15;20;1793;100;20;6,36;119,53;57,14;0;United States;Northern America;"Now Publishers Inc";"2005-2025";"Business and International Management (Q1); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +4925;21593;"Hernia";journal;"12654906, 12489204";"Springer-Verlag Italia s.r.l.";No;No;0,998;Q1;94;291;718;8297;1739;553;2,34;28,51;30,34;2;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1997-2026";"Surgery (Q1)";"Medicine" +4926;100147341;"International Journal of Research and Method in Education";journal;"17437288, 1743727X";"Taylor and Francis Ltd.";No;No;0,998;Q1;48;36;113;1922;475;108;3,81;53,39;60,40;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Education (Q1)";"Social Sciences" +4927;21101081717;"Methods in Psychology";journal;"25902601";"Elsevier B.V.";Yes;No;0,998;Q1;20;38;59;2119;252;57;4,17;55,76;72,41;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +4928;16543;"Tourism Economics";journal;"20440375, 13548166";"SAGE Publications Inc.";No;No;0,998;Q1;83;146;336;7832;1779;322;4,70;53,64;31,65;2;United Kingdom;Western Europe;"SAGE Publications Inc.";"1995-2026";"Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Social Sciences" +4929;21101021458;"JMIR Human Factors";journal;"22929495";"JMIR Publications Inc.";Yes;No;0,998;Q2;44;253;534;12494;2398;532;4,25;49,38;55,44;2;Canada;Northern America;"JMIR Publications Inc.";"2014-2026";"Health Informatics (Q2); Human Factors and Ergonomics (Q2)";"Medicine; Social Sciences" +4930;21101161419;"Acupuncture and Herbal Medicine";journal;"20970226, 27658619";"Wolters Kluwer";Yes;Yes;0,997;Q1;18;34;120;2073;651;109;5,82;60,97;46,59;0;Netherlands;Western Europe;"Wolters Kluwer";"2021-2026";"Complementary and Alternative Medicine (Q1)";"Medicine" +4931;21101142746;"Autonomous Intelligent Systems";journal;"2730616X";"Springer";Yes;Yes;0,997;Q1;16;31;63;1169;389;62;4,22;37,71;29,23;0;Singapore;Asiatic Region;"Springer";"2021-2026";"Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +4932;12560;"Birth";journal;"1523536X, 07307659";"Wiley-Blackwell Publishing Ltd";No;No;0,997;Q1;99;98;262;4123;835;240;2,67;42,07;80,44;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1973-2026";"Obstetrics and Gynecology (Q1)";"Medicine" +4933;14230;"Cultural Diversity and Ethnic Minority Psychology";journal;"10999809, 19390106";"American Psychological Association";No;No;0,997;Q1;113;49;223;3249;737;222;2,54;66,31;65,00;0;United States;Northern America;"American Psychological Association";"1999-2026";"Social Psychology (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +4934;19900193539;"Fractional Calculus and Applied Analysis";journal;"13110454, 13142224";"Springer International Publishing AG";No;No;0,997;Q1;73;113;343;4165;1007;342;3,08;36,86;26,97;0;Switzerland;Western Europe;"Springer International Publishing AG";"2011-2026";"Analysis (Q1); Applied Mathematics (Q1)";"Mathematics" +4935;19700187806;"Journal of Child and Adolescent Trauma";journal;"19361521, 1936153X";"Springer Science and Business Media Deutschland GmbH";No;No;0,997;Q1;39;143;289;8479;979;287;2,81;59,29;70,19;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2009-2026";"Critical Care and Intensive Care Medicine (Q1); Emergency Medicine (Q1)";"Medicine" +4936;13205;"Urologic Oncology: Seminars and Original Investigations";journal;"10781439, 18732496";"Elsevier Inc.";No;No;0,997;Q1;93;330;813;10030;2001;790;2,45;30,39;27,85;0;United States;Northern America;"Elsevier Inc.";"1995-2026";"Urology (Q1); Oncology (Q2)";"Medicine" +4937;29452;"Aggressive Behavior";journal;"10982337, 0096140X";"Wiley-Liss Inc.";No;No;0,996;Q1;121;37;179;2443;593;177;2,59;66,03;43,98;0;United States;Northern America;"Wiley-Liss Inc.";"1974-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Psychology" +4938;21101078148;"Annales Fennici Mathematici";journal;"27370690, 2737114X";"Finnish Mathematical Society";No;No;0,996;Q1;44;34;109;748;112;109;0,70;22,00;19,40;0;Finland;Western Europe;"Finnish Mathematical Society";"2021-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +4939;10800153305;"Brazilian Journal of Physical Therapy";journal;"18099246, 14133555";"Revista Brasileira de Fisioterapia";Yes;Yes;0,996;Q1;62;73;185;3459;695;160;3,37;47,38;47,99;1;Brazil;Latin America;"Revista Brasileira de Fisioterapia";"2007-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1)";"Health Professions; Medicine" +4940;21101041955;"Crohn's and Colitis 360";journal;"2631827X";"Oxford University Press";Yes;No;0,996;Q1;21;81;199;2431;567;181;2,66;30,01;44,27;0;United Kingdom;Western Europe;"Oxford University Press";"2019-2026";"Gastroenterology (Q1)";"Medicine" +4941;21100255082;"International Journal of Integrated Care";journal;"15684156";"Ubiquity Press";Yes;No;0,996;Q1;51;82;265;3320;733;251;2,42;40,49;66,17;1;Netherlands;Western Europe;"Ubiquity Press";"2007-2026";"Health Policy (Q1); Health (social science) (Q1); Sociology and Political Science (Q1)";"Medicine; Social Sciences" +4942;23973;"Critical Reviews in Analytical Chemistry";journal;"15476510, 10408347";"Taylor and Francis Ltd.";No;No;0,995;Q1;88;221;365;28805;3086;365;8,38;130,34;46,30;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Analytical Chemistry (Q1)";"Chemistry" +4943;19717;"Food Microbiology";journal;"07400020, 10959998";"Academic Press";No;No;0,995;Q1;160;165;555;9633;3396;554;6,06;58,38;48,87;1;United States;Northern America;"Academic Press";"1984-2026";"Food Science (Q1); Microbiology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology" +4944;16214;"International Journal for Numerical and Analytical Methods in Geomechanics";journal;"03639061, 10969853";"John Wiley and Sons Ltd";No;No;0,995;Q1;127;245;501;13614;1922;500;3,87;55,57;24,89;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1977-2026";"Computational Mechanics (Q1); Geotechnical Engineering and Engineering Geology (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Earth and Planetary Sciences; Engineering; Materials Science" +4945;12739;"New Directions for Child and Adolescent Development";book series;"15348687, 15203247";"John Wiley and Sons Inc";No;No;0,995;Q1;78;18;36;1290;127;24;4,00;71,67;66,15;0;United States;Northern America;"John Wiley and Sons Inc";"1978-1996, 1998-2026";"Developmental and Educational Psychology (Q1); Medicine (miscellaneous) (Q1); Social Psychology (Q1)";"Medicine; Psychology" +4946;28355;"Oceanography";journal;"10428275";"Oceanography Society";Yes;No;0,995;Q1;119;87;274;1565;571;149;1,70;17,99;39,95;0;United States;Northern America;"Oceanography Society";"1992, 1996-2025";"Oceanography (Q1)";"Earth and Planetary Sciences" +4947;21100827188;"Cancer Treatment and Research Communications";journal;"24682942";"Elsevier Ltd";Yes;No;0,995;Q2;35;153;357;7521;1289;356;3,49;49,16;43,76;0;United Kingdom;Western Europe;"Elsevier Ltd";"2016-2026";"Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +4948;21100212316;"Frontiers in Neurology";journal;"16642295";"Frontiers Media SA";Yes;No;0,995;Q2;132;2295;7845;105483;26407;7502;3,12;45,96;44,21;0;Switzerland;Western Europe;"Frontiers Media SA";"2010-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +4949;19015;"Metabolic Brain Disease";journal;"15737365, 08857490";"Springer";No;No;0,995;Q2;87;330;555;23319;2466;548;4,18;70,66;49,13;0;United States;Northern America;"Springer";"1986-2026";"Biochemistry (Q2); Cellular and Molecular Neuroscience (Q2); Neurology (clinical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +4950;4700153006;"ACM Transactions on Algorithms";journal;"15496325, 15496333";"Association for Computing Machinery";No;No;0,994;Q1;66;46;128;1853;279;125;1,87;40,28;10,14;0;United States;Northern America;"Association for Computing Machinery";"2005-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +4951;21100872040;"Cognitive Behaviour Therapist";journal;"1754470X";"Cambridge University Press";No;No;0,994;Q1;29;60;138;3464;444;136;2,62;57,73;73,89;0;United Kingdom;Western Europe;"Cambridge University Press";"2008-2026";"Clinical Psychology (Q1); Experimental and Cognitive Psychology (Q2)";"Psychology" +4952;21101129711;"Green Analytical Chemistry";journal;"27725774";"Elsevier B.V.";Yes;No;0,994;Q1;26;129;171;7111;1575;170;8,80;55,12;45,26;1;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Analytical Chemistry (Q1)";"Chemistry" +4953;21100779066;"JBJS Reviews";journal;"23299185";"Journal of Bone and Joint Surgery Inc.";No;No;0,994;Q1;52;92;294;4870;944;291;3,13;52,93;20,39;0;United States;Northern America;"Journal of Bone and Joint Surgery Inc.";"2014-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +4954;21101077293;"Journal of Migration and Health";journal;"26666235";"Elsevier B.V.";Yes;No;0,994;Q1;27;94;201;4648;702;201;3,27;49,45;61,68;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Demography (Q1); Health (social science) (Q1); Infectious Diseases (Q1); Sociology and Political Science (Q1)";"Medicine; Social Sciences" +4955;25325;"Mathematical Proceedings of the Cambridge Philosophical Society";journal;"03050041, 14698064";"Cambridge University Press";No;No;0,994;Q1;52;56;172;1427;162;172;0,94;25,48;14,81;0;United Kingdom;Western Europe;"Cambridge University Press";"1924-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +4956;15528;"Annals of the American Academy of Political and Social Science";journal;"15523349, 00027162";"SAGE Publications Inc.";No;No;0,993;Q1;137;1;240;46;798;228;1,37;46,00;0,00;0;United States;Northern America;"SAGE Publications Inc.";"1890-2025";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +4957;15300154806;"Dementia";journal;"17412684, 14713012";"SAGE Publications Ltd";No;No;0,993;Q1;75;156;306;8153;1157;304;3,28;52,26;74,37;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2026";"History (Q1); Medicine (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Medicine; Social Sciences" +4958;21100456187;"International Journal of Rail Transportation";journal;"23248386, 23248378";"Taylor and Francis Ltd.";No;No;0,993;Q1;40;100;135;4379;772;135;5,60;43,79;24,88;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Automotive Engineering (Q1); Mechanics of Materials (Q1); Transportation (Q2)";"Engineering; Social Sciences" +4959;28249;"Journal of Professional Nursing";journal;"15328481, 87557223";"W.B. Saunders";No;No;0,993;Q1;72;130;400;4961;1433;380;2,97;38,16;82,45;0;United States;Northern America;"W.B. Saunders";"1985-2026";"Medicine (miscellaneous) (Q1); Nursing (miscellaneous) (Q1)";"Medicine; Nursing" +4960;6400153153;"Plant Methods";journal;"17464811";"BioMed Central Ltd";Yes;No;0,993;Q1;113;159;463;8151;2600;462;5,28;51,26;37,90;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2005-2026";"Biotechnology (Q1); Plant Science (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +4961;4700151922;"Research in Social and Administrative Pharmacy";journal;"15517411";"Elsevier Inc.";No;No;0,993;Q1;78;107;537;5940;2022;473;3,69;55,51;60,57;2;United States;Northern America;"Elsevier Inc.";"2005-2026";"Pharmaceutical Science (Q1); Pharmacy (Q1)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +4962;18500157300;"Corporate Governance (Bingley)";journal;"14720701";"Emerald Group Publishing Ltd.";No;No;0,992;Q1;94;154;247;13773;1981;245;7,86;89,44;38,62;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2026";"Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +4963;19317;"Salud Publica de Mexico";journal;"16067916, 00363634";"Instituto Nacional de Salud Publica";Yes;Yes;0,992;Q1;72;140;415;2828;901;303;2,54;20,20;50,27;1;Mexico;Latin America;"Instituto Nacional de Salud Publica";"1961-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4964;19700175783;"Breast Cancer: Targets and Therapy";journal;"11791314";"Dove Medical Press Ltd";Yes;No;0,992;Q2;51;103;196;4996;772;191;3,71;48,50;48,59;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2026";"Oncology (Q2)";"Medicine" +4965;21100381004;"CNS Oncology";journal;"20450915, 20450907";"Taylor and Francis Ltd.";Yes;No;0,992;Q2;38;5;41;250;116;41;2,07;50,00;39,13;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +4966;21100978912;"Endocrinology, Diabetes and Metabolism";journal;"23989238";"Wiley-Blackwell Publishing Ltd";Yes;No;0,992;Q2;27;108;209;5113;724;206;3,53;47,34;39,88;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2019-2026";"Endocrinology, Diabetes and Metabolism (Q2)";"Medicine" +4967;16689;"Journal of Comparative Neurology";journal;"10969861, 00219967";"Wiley-Liss Inc.";No;No;0,992;Q2;238;91;380;7197;800;366;2,03;79,09;47,31;0;United States;Northern America;"Wiley-Liss Inc.";"1911-2026";"Neuroscience (miscellaneous) (Q2)";"Neuroscience" +4968;21101237954;"Animal Research and One Health";journal;"28355075";"John Wiley and Sons Inc";Yes;No;0,991;Q1;11;63;62;3700;331;52;5,34;58,73;36,93;0;China;Asiatic Region;"John Wiley and Sons Inc";"2023-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +4969;21100924250;"Digital Health";journal;"20552076";"SAGE Publications Inc.";Yes;No;0,991;Q1;54;747;1698;37836;7944;1685;4,39;50,65;49,22;4;United Kingdom;Western Europe;"SAGE Publications Inc.";"2015, 2018-2026";"Computer Science Applications (Q1); Health Information Management (Q1); Health Policy (Q1); Health Informatics (Q2)";"Computer Science; Health Professions; Medicine" +4970;23814;"Journal of Algebra";journal;"00218693, 1090266X";"Academic Press Inc.";No;No;0,991;Q1;90;553;1433;14038;1383;1429;0,93;25,39;23,13;0;United States;Northern America;"Academic Press Inc.";"1964-2026";"Algebra and Number Theory (Q1)";"Mathematics" +4971;21100901614;"Learning Health Systems";journal;"23796146";"John Wiley & Sons Inc.";Yes;No;0,991;Q1;30;75;148;2657;497;124;2,69;35,43;56,10;0;United States;Northern America;"John Wiley & Sons Inc.";"2017-2026";"Public Health, Environmental and Occupational Health (Q1); Health Informatics (Q2); Health Information Management (Q2)";"Health Professions; Medicine" +4972;21101226473;"PLOS Global Public Health";journal;"27673375";"Public Library of Science";Yes;No;0,991;Q1;35;1104;2765;49637;8311;2683;2,77;44,96;48,69;25;United States;Northern America;"Public Library of Science";"2021-2026";"Critical Care and Intensive Care Medicine (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +4973;21100241736;"Transportmetrica B";journal;"21680582, 21680566";"Taylor and Francis Ltd.";No;No;0,991;Q1;41;100;196;5406;887;195;4,72;54,06;30,91;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Modeling and Simulation (Q1); Software (Q1); Transportation (Q2)";"Computer Science; Mathematics; Social Sciences" +4974;22631;"Zoological Journal of the Linnean Society";journal;"10963642, 00244082";"Oxford University Press";No;No;0,991;Q1;104;234;538;20136;1639;524;2,87;86,05;32,96;1;United Kingdom;Western Europe;"Oxford University Press";"1866-1916, 1918-1937, 1939-1941, 1943, 1947, 1949-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +4975;21101041868;"Rheumatology and Therapy";journal;"21986576, 21986584";"";Yes;No;0,991;Q2;47;77;319;2851;932;304;2,97;37,03;43,07;0;United Kingdom;Western Europe;"";"2014-2026";"Immunology and Allergy (Q2); Rheumatology (Q2)";"Medicine" +4976;21100235630;"Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration";journal;"21679223, 21678421";"Taylor and Francis Ltd.";No;No;0,990;Q1;93;147;297;4783;779;288;2,74;32,54;51,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Medicine (miscellaneous) (Q1); Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +4977;21101175734;"Combinatorial Theory";journal;"27661334";"eScholarship University of California";Yes;Yes;0,990;Q1;9;70;140;2114;189;140;1,46;30,20;19,58;0;United States;Northern America;"eScholarship University of California";"2021-2025";"Discrete Mathematics and Combinatorics (Q1)";"Mathematics" +4978;21100369715;"Metabolic Engineering Communications";journal;"22140301";"Elsevier B.V.";Yes;No;0,990;Q1;47;11;61;635;289;61;4,11;57,73;29,33;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Biomedical Engineering (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Engineering; Medicine" +4979;22378;"Vascular Pharmacology";journal;"18793649, 15371891";"Elsevier Inc.";No;No;0,990;Q2;114;74;219;5538;783;197;3,23;74,84;47,03;0;United States;Northern America;"Elsevier Inc.";"2002-2026";"Molecular Medicine (Q2); Pharmacology (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +4980;19303;"Xenotransplantation";journal;"13993089, 0908665X";"Wiley-Blackwell Publishing Ltd";No;No;0,990;Q2;74;78;133;3499;407;102;3,29;44,86;31,86;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Immunology (Q2); Transplantation (Q2)";"Immunology and Microbiology; Medicine" +4981;17600155056;"Biologics: Targets and Therapy";journal;"11775491, 11775475";"Dove Medical Press Ltd";Yes;No;0,989;Q1;53;56;69;3108;318;64;4,37;55,50;51,52;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"1988, 2007-2026";"Gastroenterology (Q1); Pharmacology (medical) (Q1); Immunology and Allergy (Q2); Oncology (Q2); Rheumatology (Q2)";"Medicine" +4982;21100854907;"Borderline Personality Disorder and Emotion Dysregulation";journal;"20516673";"BioMed Central Ltd";Yes;No;0,989;Q1;40;52;102;3417;386;100;2,95;65,71;52,65;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2014-2026";"Clinical Psychology (Q1); Biological Psychiatry (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Neuroscience; Psychology" +4983;29284;"Journal of Safety Research";journal;"00224375";"Elsevier Ltd";No;No;0,989;Q1;117;180;489;10402;2680;486;5,08;57,79;44,99;10;United Kingdom;Western Europe;"Elsevier Ltd";"1969-1980, 1982-2026";"Safety, Risk, Reliability and Quality (Q1)";"Engineering" +4984;13047;"Platelets";journal;"13691635, 09537104";"Taylor and Francis Ltd.";Yes;No;0,989;Q1;86;38;324;1686;969;300;3,32;44,37;44,83;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2026";"Hematology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +4985;19700200914;"Classroom Discourse";journal;"19463014, 19463022";"Taylor and Francis Ltd.";No;No;0,988;Q1;28;26;58;1460;161;57;1,95;56,15;61,02;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013, 2015-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +4986;75869;"Discrete and Continuous Dynamical Systems- Series A";journal;"15535231, 10780947";"American Institute of Mathematical Sciences";No;No;0,988;Q1;84;181;528;5642;651;527;1,17;31,17;25,07;0;United States;Northern America;"American Institute of Mathematical Sciences";"1996-2026";"Analysis (Q1); Applied Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1)";"Mathematics" +4987;19700188147;"Journal of International and Intercultural Communication";journal;"17513065, 17513057";"Routledge";No;No;0,988;Q1;37;22;72;1553;229;70;2,27;70,59;70,73;0;United States;Northern America;"Routledge";"2008-2026";"Communication (Q1); Cultural Studies (Q1)";"Social Sciences" +4988;14005;"Paleobiology";journal;"00948373, 19385331";"Cambridge University Press";No;No;0,988;Q1;110;57;121;7163;348;121;2,48;125,67;36,02;0;United Kingdom;Western Europe;"Cambridge University Press";"1975-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Paleontology (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +4989;20577;"World Journal of Urology";journal;"07244983, 14338726";"Springer Science and Business Media Deutschland GmbH";No;No;0,988;Q1;111;710;1578;18206;4582;1334;2,88;25,64;24,52;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1983-2026";"Urology (Q1)";"Medicine" +4990;21100310046;"APL Materials";journal;"2166532X";"American Institute of Physics";Yes;No;0,987;Q1;104;289;855;16176;3892;839;4,24;55,97;25,35;0;United States;Northern America;"American Institute of Physics";"2013-2026";"Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Engineering; Materials Science" +4991;12768;"British Journal of Developmental Psychology";journal;"2044835X, 0261510X";"Wiley-Blackwell";No;No;0,987;Q1;99;79;101;4525;315;98;2,62;57,28;68,53;1;United States;Northern America;"Wiley-Blackwell";"1988, 1995-2026";"Developmental and Educational Psychology (Q1); Developmental Neuroscience (Q2)";"Neuroscience; Psychology" +4992;21101160674;"Frontiers in Fungal Biology";journal;"26736128";"Frontiers Media SA";Yes;No;0,987;Q1;21;42;160;2608;722;139;3,37;62,10;43,69;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Environmental Science (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (Q2)";"Agricultural and Biological Sciences; Environmental Science; Immunology and Microbiology; Medicine" +4993;26824;"Genus";journal;"00166987, 20355556";"Springer International Publishing AG";Yes;No;0,987;Q1;28;37;87;2426;256;85;2,98;65,57;64,21;2;Switzerland;Western Europe;"Springer International Publishing AG";"1970, 1975-1998, 2007-2026";"Demography (Q1)";"Social Sciences" +4994;29817;"International Orthopaedics";journal;"14325195, 03412695";"";No;No;0,987;Q1;121;327;1108;9035;2978;953;2,70;27,63;20,92;0;Germany;Western Europe;"";"1977-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +4995;18920;"Journal of Evolutionary Biology";journal;"1010061X, 14209101";"Oxford University Press";No;No;0,987;Q1;151;150;422;10970;1047;395;2,34;73,13;40,13;0;United Kingdom;Western Europe;"Oxford University Press";"1988-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +4996;21101162893;"Journal of Sustainable Agriculture and Environment";journal;"2767035X";"John Wiley and Sons Inc";Yes;No;0,987;Q1;17;80;137;5453;691;131;4,13;68,16;41,88;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q1); Ecology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +4997;21100448905;"Translational Lung Cancer Research";journal;"22264477, 22186751";"AME Publishing Company";No;No;0,987;Q2;78;430;793;17841;2437;655;2,72;41,49;37,73;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2012-2026";"Oncology (Q2)";"Medicine" +4998;90600;"Proceedings of the ACM SIGPLAN Conference on Programming Language Design and Implementation (PLDI)";conference and proceedings;"15317102";"Association for Computing Machinery";No;No;0,987;-;120;0;70;0;335;68;0,00;0,00;0,00;0;United States;Northern America;"Association for Computing Machinery";"1988, 1990-1991, 1994-2022";"Software";"Computer Science" +4999;15220;"Annals of Emergency Medicine";journal;"01960644, 10976760";"Elsevier Inc.";No;No;0,986;Q1;184;284;943;5096;1738;665;2,07;17,94;40,60;2;United States;Northern America;"Elsevier Inc.";"1980-2026";"Emergency Medicine (Q1)";"Medicine" +5000;4700152856;"Expert Opinion on Drug Metabolism and Toxicology";journal;"17425255, 17447607";"Taylor and Francis Ltd.";No;No;0,986;Q1;112;111;231;9393;1017;208;4,52;84,62;45,84;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Medicine (miscellaneous) (Q1); Toxicology (Q1); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +5001;83986;"Gaodianya Jishu/High Voltage Engineering";journal;"10036520";"Science Press";No;No;0,986;Q1;81;504;1500;21516;6083;1498;4,09;42,69;29,15;0;China;Asiatic Region;"Science Press";"2001-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering" +5002;5800179586;"International Breastfeeding Journal";journal;"17464358";"BioMed Central Ltd";Yes;No;0,986;Q1;64;94;242;4219;936;239;3,51;44,88;71,34;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +5003;144889;"Journal of Intelligent Transportation Systems: Technology, Planning, and Operations";journal;"15472450, 15472442";"Taylor and Francis Ltd.";No;No;0,986;Q1;66;117;169;5452;906;169;5,01;46,60;26,33;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Aerospace Engineering (Q1); Applied Mathematics (Q1); Automotive Engineering (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Information Systems (Q1); Software (Q1)";"Computer Science; Engineering; Mathematics" +5004;21124;"Pharmaceutical Statistics";journal;"15391612, 15391604";"John Wiley and Sons Ltd";No;No;0,986;Q1;53;107;244;3203;439;239;1,92;29,93;32,58;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2004-2026";"Pharmacology (medical) (Q1); Statistics and Probability (Q1); Pharmacology (Q2)";"Mathematics; Medicine; Pharmacology, Toxicology and Pharmaceutics" +5005;21101094555;"Reproduction and Fertility";journal;"26338386";"BioScientifica Ltd.";Yes;Yes;0,986;Q1;22;69;124;3272;509;121;3,72;47,42;51,42;0;United Kingdom;Western Europe;"BioScientifica Ltd.";"2020-2026";"Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Urology (Q1); Embryology (Q2)";"Medicine" +5006;21100842663;"Thermal Science and Engineering Progress";journal;"24519049";"Elsevier Ltd";No;No;0,986;Q1;78;1246;1792;56301;10751;1787;5,99;45,19;24,97;0;United Kingdom;Western Europe;"Elsevier Ltd";"2017-2026";"Fluid Flow and Transfer Processes (Q1)";"Chemical Engineering" +5007;21100236604;"Neurology: Clinical Practice";journal;"21630402, 21630933";"Lippincott Williams and Wilkins";No;No;0,986;Q2;52;95;376;2736;1049;361;2,93;28,80;47,52;0;United States;Northern America;"Lippincott Williams and Wilkins";"2011-2026";"Neurology (clinical) (Q2)";"Medicine" +5008;17800156704;"American Journal of Rhinology and Allergy";journal;"19458932, 19458924";"OceanSide Publications Inc.";No;No;0,985;Q1;96;64;254;1800;702;233;2,56;28,13;31,34;0;United States;Northern America;"OceanSide Publications Inc.";"2009-2026";"Medicine (miscellaneous) (Q1); Otorhinolaryngology (Q1); Immunology and Allergy (Q2)";"Medicine" +5009;21727;"BMC Genomics";journal;"14712164";"BioMed Central Ltd";Yes;No;0,985;Q1;218;1142;2857;76441;11837;2847;3,84;66,94;41,41;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2026";"Biotechnology (Q1); Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology" +5010;19700182731;"Egyptian Informatics Journal";journal;"11108665, 20904754";"Elsevier B.V.";Yes;No;0,985;Q1;56;226;234;9447;1792;234;7,24;41,80;28,10;0;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Computer Science Applications (Q1); Information Systems (Q1); Management Science and Operations Research (Q1)";"Computer Science; Decision Sciences" +5011;23402;"European Journal of Applied Physiology";journal;"14396319, 14396327";"Springer Science and Business Media Deutschland GmbH";No;No;0,985;Q1;176;413;722;21832;2353;683;2,94;52,86;31,47;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996, 2000-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Public Health, Environmental and Occupational Health (Q1); Physiology (medical) (Q2); Sports Science (Q2)";"Health Professions; Medicine" +5012;15500154704;"Head and Neck Pathology";journal;"1936055X, 19360568";"Humana Press";No;No;0,985;Q1;79;132;387;4001;1310;363;2,04;30,31;44,37;0;United States;Northern America;"Humana Press";"2007-2026";"Otorhinolaryngology (Q1); Pathology and Forensic Medicine (Q1); Oncology (Q2)";"Medicine" +5013;28809;"Journal of American College Health";journal;"07448481";"Routledge";No;No;0,985;Q1;121;589;1131;29302;3785;1113;3,02;49,75;69,58;3;United States;Northern America;"Routledge";"1984-1985, 1987-1999, 2002-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +5014;20100195034;"Journal of Neurogastroenterology and Motility";journal;"20930887, 20930879";"Korean Society of Neurogastroenterology and Motility";Yes;No;0,985;Q1;71;61;212;2309;654;160;2,99;37,85;36,45;0;South Korea;Asiatic Region;"Korean Society of Neurogastroenterology and Motility";"2010-2026";"Gastroenterology (Q1); Neurology (clinical) (Q2)";"Medicine" +5015;21101344617;"Mesopotamian Journal of Artificial Intelligence in Healthcare";journal;"3005365X";"Mesopotamian Academic Press";No;No;0,985;Q1;13;22;35;826;290;35;8,29;37,55;32,20;0;Iraq;Middle East;"Mesopotamian Academic Press";"2023-2025";"Artificial Intelligence (Q1); Computer Science Applications (Q1); Computer Vision and Pattern Recognition (Q1); Signal Processing (Q1)";"Computer Science" +5016;29251;"Plasma Physics and Controlled Fusion";journal;"13616587, 07413335";"IOP Publishing Ltd.";No;No;0,985;Q1;128;393;730;16823;1778;724;2,47;42,81;19,95;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1984-2025";"Condensed Matter Physics (Q1); Nuclear Energy and Engineering (Q1)";"Energy; Physics and Astronomy" +5017;6000195389;"Developmental Neurobiology";journal;"1932846X, 19328451";"John Wiley & Sons Inc.";No;No;0,985;Q2;146;59;78;4301;199;78;2,00;72,90;50,35;0;United States;Northern America;"John Wiley & Sons Inc.";"2007-2026";"Cellular and Molecular Neuroscience (Q2); Developmental Neuroscience (Q2)";"Neuroscience" +5018;29659;"Journal of Structural Biology";journal;"10478477, 10958657";"Academic Press Inc.";No;No;0,985;Q2;171;86;242;4823;618;237;2,46;56,08;33,92;0;United States;Northern America;"Academic Press Inc.";"1990-2026";"Structural Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +5019;12100156088;"Critical Inquiry in Language Studies";journal;"15427595, 15427587";"Routledge";No;No;0,984;Q1;32;28;63;1586;297;61;5,11;56,64;62,96;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +5020;5300152207;"Current Opinion in Endocrinology, Diabetes and Obesity";journal;"1752296X, 17522978";"Lippincott Williams and Wilkins";No;No;0,984;Q1;93;46;180;2273;535;157;3,17;49,41;52,33;0;United States;Northern America;"Lippincott Williams and Wilkins";"2007-2026";"Medicine (miscellaneous) (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2); Nutrition and Dietetics (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +5021;20848;"Health and Social Care in the Community";journal;"09660410, 13652524";"John Wiley and Sons Ltd";No;No;0,984;Q1;91;160;1088;9660;3583;1087;1,94;60,38;70,14;5;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1993-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1); Social Sciences (miscellaneous) (Q1); Social Work (Q1); Sociology and Political Science (Q1)";"Medicine; Social Sciences" +5022;9500154152;"Intelligent Service Robotics";journal;"18612784, 18612776";"Springer Verlag";No;No;0,984;Q1;49;88;171;3338;1105;166;7,74;37,93;28,33;0;Germany;Western Europe;"Springer Verlag";"2008-2026";"Artificial Intelligence (Q1); Computational Mechanics (Q1); Engineering (miscellaneous) (Q1); Mechanical Engineering (Q1)";"Computer Science; Engineering" +5023;14150;"Molecular and Cellular Biology";journal;"02707306, 10985549";"Taylor and Francis Ltd.";No;No;0,984;Q2;367;49;162;3573;360;162;2,37;72,92;41,91;0;United States;Northern America;"Taylor and Francis Ltd.";"1981-2026";"Molecular Biology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +5024;21101083126;"ACM Transactions on Internet of Things";journal;"25776207";"Association for Computing Machinery";No;No;0,983;Q1;19;28;85;1600;411;84;4,57;57,14;18,92;0;United States;Northern America;"Association for Computing Machinery";"2020-2026";"Computer Networks and Communications (Q1); Computer Science Applications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +5025;18120;"ACM Transactions on Mathematical Software";journal;"15577295, 00983500";"Association for Computing Machinery";No;No;0,983;Q1;102;30;117;1156;394;117;2,15;38,53;18,82;0;United States;Northern America;"Association for Computing Machinery";"1975-2025";"Applied Mathematics (Q1); Software (Q1)";"Computer Science; Mathematics" +5026;4400151511;"Behavioral and Brain Functions";journal;"17449081";"BioMed Central Ltd";Yes;No;0,983;Q1;79;42;74;3315;266;74;2,88;78,93;48,26;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2005-2026";"Medicine (miscellaneous) (Q1); Behavioral Neuroscience (Q2); Biological Psychiatry (Q2); Cognitive Neuroscience (Q2)";"Medicine; Neuroscience" +5027;13703;"Biology of Reproduction";journal;"00063363, 15297268";"Oxford University Press";No;No;0,983;Q1;214;226;585;14193;2022;568;3,19;62,80;51,08;0;United States;Northern America;"Oxford University Press";"1969-2026";"Medicine (miscellaneous) (Q1); Reproductive Medicine (Q1); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5028;36513;"BMC Infectious Diseases";journal;"14712334";"BioMed Central Ltd";Yes;No;0,983;Q1;143;1800;3278;72628;10848;3267;3,21;40,35;46,00;5;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Infectious Diseases (Q1)";"Medicine" +5029;21101059745;"IEEE Open Journal of Antennas and Propagation";journal;"26376431";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,983;Q1;36;206;393;8529;1681;388;4,16;41,40;21,43;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +5030;19700175010;"Journal of Asthma and Allergy";journal;"11786965";"Dove Medical Press Ltd";Yes;No;0,983;Q1;51;146;384;6558;1413;365;3,32;44,92;46,24;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2008-2026";"Pulmonary and Respiratory Medicine (Q1); Immunology and Allergy (Q2)";"Medicine" +5031;22596;"Revista de Saude Publica";journal;"00348910, 15188787";"Universidade de Sao Paulo. Museu de Zoologia";Yes;No;0,983;Q1;95;68;310;1793;923;302;2,26;26,37;62,21;0;Brazil;Latin America;"Universidade de Sao Paulo. Museu de Zoologia";"1967-2026";"Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +5032;27896;"Studies in Family Planning";journal;"17284465, 00393665";"Wiley-Blackwell Publishing Ltd";No;No;0,983;Q1;82;47;84;2486;273;75;3,52;52,89;73,14;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1970-2026";"Demography (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +5033;17600155059;"Cancer Cytopathology";journal;"1934662X, 19346638";"John Wiley and Sons Inc";No;No;0,983;Q2;78;89;321;2185;785;223;2,13;24,55;50,26;0;United States;Northern America;"John Wiley and Sons Inc";"2008-2026";"Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5034;78208;"Endocrine";journal;"15590100, 1355008X";"Springer";No;No;0,983;Q2;111;472;1113;18697;3845;1066;3,55;39,61;51,35;0;United States;Northern America;"Springer";"1993-2026";"Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5035;22235;"Heredity";journal;"0018067X, 13652540";"Springer Nature";Yes;No;0,983;Q2;146;79;238;6287;948;229;2,57;79,58;37,79;0;Switzerland;Western Europe;"Springer Nature";"1947-2026";"Genetics (Q2); Genetics (clinical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5036;4100151618;"Journal of Physiological Sciences";journal;"18806546, 18806562";"Elsevier Inc.";Yes;No;0,983;Q2;65;38;121;1841;422;121;3,13;48,45;29,44;0;United States;Northern America;"Elsevier Inc.";"2006-2026";"Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology" +5037;145678;"Biology Letters";journal;"17449561, 1744957X";"The Royal Society";No;No;0,982;Q1;148;211;537;11476;1525;519;2,59;54,39;35,56;3;United Kingdom;Western Europe;"The Royal Society";"2005-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1)";"Agricultural and Biological Sciences" +5038;21101075728;"Food Production, Processing and Nutrition";journal;"26618974";"BioMed Central Ltd";Yes;Yes;0,982;Q1;33;72;193;6798;1435;193;7,47;94,42;45,41;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2019-2026";"Food Science (Q1); Public Health, Environmental and Occupational Health (Q1); Nutrition and Dietetics (Q2)";"Agricultural and Biological Sciences; Medicine; Nursing" +5039;21101220017;"Implementation and Replication Studies in Mathematics Education";journal;"26670127, 26670135";"Brill Academic Publishers";No;No;0,982;Q1;8;10;25;451;34;19;1,60;45,10;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2026";"Education (Q1)";"Social Sciences" +5040;14902;"International Journal of Psychophysiology";journal;"18727697, 01678760";"Elsevier B.V.";No;No;0,982;Q1;160;121;358;8914;1233;351;3,34;73,67;51,94;1;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Neuropsychology and Physiological Psychology (Q1); Neuroscience (miscellaneous) (Q2); Physiology (medical) (Q2)";"Medicine; Neuroscience; Psychology" +5041;16400154776;"Personality and Mental Health";journal;"19328621, 1932863X";"John Wiley and Sons Ltd";No;No;0,982;Q1;39;61;101;3288;352;93;3,70;53,90;56,80;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Health Policy (Q1); Psychiatry and Mental Health (Q2)";"Medicine" +5042;28796;"Cancer Causes and Control";journal;"15737225, 09575243";"Springer Science and Business Media Deutschland GmbH";No;No;0,982;Q2;153;172;406;8189;1050;398;2,55;47,61;59,26;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1990-2026";"Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5043;12099;"British Educational Research Journal";journal;"14693518, 01411926";"Routledge";No;No;0,981;Q1;111;218;288;15832;1259;276;3,74;72,62;52,47;10;United Kingdom;Western Europe;"Routledge";"1978-2026";"Education (Q1)";"Social Sciences" +5044;21101166977;"Deep Underground Science and Engineering";journal;"20970668, 27701328";"John Wiley and Sons Inc";Yes;No;0,981;Q1;16;116;89;6156;486;82;5,48;53,07;25,38;0;Australia;Pacific Region;"John Wiley and Sons Inc";"2022-2026";"Engineering (miscellaneous) (Q1)";"Engineering" +5045;12305;"Information Systems";journal;"03064379";"Elsevier Ltd";No;No;0,981;Q1;103;89;325;4484;1796;307;5,73;50,38;26,54;2;United Kingdom;Western Europe;"Elsevier Ltd";"1975-2026";"Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +5046;22925;"Journal of Global Marketing";journal;"08911762, 15286975";"Routledge";No;No;0,981;Q1;48;58;66;5529;427;65;5,45;95,33;41,09;0;United States;Northern America;"Routledge";"1988-2026";"Business and International Management (Q1); Marketing (Q2)";"Business, Management and Accounting" +5047;21100428207;"Journal of the Pediatric Infectious Diseases Society";journal;"20487207, 20487193";"Oxford University Press";No;No;0,981;Q1;59;133;386;3238;934;339;2,51;24,35;53,94;0;United Kingdom;Western Europe;"Oxford University Press";"2012-2026";"Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +5048;21101041808;"Materials Advances";journal;"26335409";"Royal Society of Chemistry";Yes;No;0,981;Q1;78;616;2103;43700;12354;2089;5,61;70,94;34,63;1;United Kingdom;Western Europe;"Royal Society of Chemistry";"2020-2026";"Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Materials Science" +5049;21101023187;"Petroleum Geology and Experiment";journal;"23637625, 10016112";"Science Press";Yes;Yes;0,981;Q1;22;116;344;4576;1045;341;3,48;39,45;33,14;0;China;Asiatic Region;"Science Press";"2020-2026";"Geology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +5050;22064;"Clinical Genetics";journal;"00099163, 13990004";"Wiley-Blackwell Publishing Ltd";No;No;0,981;Q2;125;198;513;4793;1262;433;2,39;24,21;56,80;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1970-2026";"Genetics (Q2); Genetics (clinical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5051;21100827923;"Eurasian Business Review";journal;"13094297, 21474281";"Springer International Publishing AG";Yes;No;0,980;Q1;38;40;94;3250;500;94;4,82;81,25;37,72;4;Switzerland;Western Europe;"Springer International Publishing AG";"2011-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +5052;21101251266;"Food Innovation and Advances";journal;"2836774X";"Maximum Academic Press";Yes;No;0,980;Q1;15;50;75;3452;419;74;5,66;69,04;41,64;0;United States;Northern America;"Maximum Academic Press";"2022-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +5053;26364;"Journal of Strategic Studies";journal;"01402390, 1743937X";"Routledge";No;No;0,980;Q1;49;67;152;5008;382;137;2,64;74,75;20,69;10;United Kingdom;Western Europe;"Routledge";"1978-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5054;14965;"World Wide Web";journal;"15731413, 1386145X";"Springer New York";No;No;0,980;Q1;68;74;376;3373;2009;363;5,83;45,58;35,22;0;United States;Northern America;"Springer New York";"1998-2026";"Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Software (Q1)";"Computer Science" +5055;16180;"International Journal of Psychiatry in Clinical Practice";journal;"14711788, 13651501";"Taylor and Francis Ltd.";No;No;0,980;Q2;50;38;130;1699;411;120;3,12;44,71;48,94;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +5056;14257;"Protein Engineering, Design and Selection";journal;"17410126, 17410134";"Oxford University Press";No;No;0,979;Q1;124;15;57;802;166;55;3,24;53,47;37,93;0;United Kingdom;Western Europe;"Oxford University Press";"1986-1996, 2004-2026";"Bioengineering (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1); Biochemistry (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Medicine" +5057;18639;"Respiratory Medicine";journal;"09546111, 15323064";"W.B. Saunders Ltd";No;No;0,979;Q1;151;550;769;22119;2604;736;3,26;40,22;44,73;1;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1989-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +5058;21100927981;"Tropical Medicine and Infectious Disease";journal;"24146366";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,979;Q1;54;350;1268;17836;4403;1241;3,29;50,96;45,55;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2026";"Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1)";"Immunology and Microbiology; Medicine" +5059;21101136811;"Aging Brain";journal;"25899589";"Elsevier Inc.";Yes;No;0,979;Q2;13;20;104;1432;308;86;2,62;71,60;41,80;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Geriatrics and Gerontology (Q2); Neuroscience (miscellaneous) (Q2)";"Medicine; Neuroscience" +5060;19569;"Annals of Epidemiology";journal;"18732585, 10472797";"Elsevier Inc.";No;No;0,979;Q2;150;192;395;7091;1032;379;2,40;36,93;52,62;1;United States;Northern America;"Elsevier Inc.";"1990-2026";"Epidemiology (Q2)";"Medicine" +5061;29323;"Current Opinion in Oncology";journal;"1531703X, 10408746";"Lippincott Williams and Wilkins";No;No;0,979;Q2;108;92;274;4182;727;253;2,43;45,46;38,76;0;United States;Northern America;"Lippincott Williams and Wilkins";"1989-2026";"Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5062;4700152784;"Journal of Internet Commerce";journal;"1533287X, 15332861";"Routledge";No;No;0,979;Q2;51;14;60;1224;413;59;6,93;87,43;36,36;0;United States;Northern America;"Routledge";"2002-2026";"Human-Computer Interaction (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Computer Science" +5063;17975;"NeuroMolecular Medicine";journal;"15351084, 15591174";"Springer";No;No;0,979;Q2;89;76;152;5170;565;151;3,63;68,03;44,15;0;United States;Northern America;"Springer";"2002-2026";"Molecular Medicine (Q2); Neurology (Q2); Cellular and Molecular Neuroscience (Q3)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +5064;20047;"Basic and Clinical Pharmacology and Toxicology";journal;"17427843, 17427835";"Wiley-Blackwell";No;No;0,978;Q1;113;179;377;8322;1433;357;3,70;46,49;50,88;2;United States;Northern America;"Wiley-Blackwell";"2004-2026";"Medicine (miscellaneous) (Q1); Toxicology (Q1); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +5065;16874;"Biochimie";journal;"03009084, 61831638";"Elsevier B.V.";No;No;0,978;Q1;168;200;591;14407;2129;577;3,40;72,04;49,50;0;Netherlands;Western Europe;"Elsevier B.V.";"1971-2026";"Medicine (miscellaneous) (Q1); Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5066;12874;"Cognitive Science";journal;"03640213, 15516709";"Wiley-Blackwell";No;No;0,978;Q1;146;126;415;9194;1089;369;2,52;72,97;48,10;0;United States;Northern America;"Wiley-Blackwell";"1977-2026";"Artificial Intelligence (Q1); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)";"Computer Science; Neuroscience; Psychology" +5067;14985;"Current Problems in Pediatric and Adolescent Health Care";journal;"15383199, 15385442";"Elsevier Inc.";No;No;0,978;Q1;64;62;153;2367;415;112;1,61;38,18;59,32;1;United States;Northern America;"Elsevier Inc.";"1996-1999, 2001-2026";"Medicine (miscellaneous) (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +5068;15006;"European Journal of Pediatrics";journal;"03406199, 14321076";"Springer Science and Business Media Deutschland GmbH";No;No;0,978;Q1;120;793;1583;26524;5143;1504;3,16;33,45;56,72;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1975-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +5069;25535;"IEEE Transactions on Visualization and Computer Graphics";journal;"19410506, 10772626";"IEEE Computer Society";No;No;0,978;Q1;184;891;1490;57247;10259;1466;6,59;64,25;30,76;0;United States;Northern America;"IEEE Computer Society";"1995-2026";"Computer Graphics and Computer-Aided Design (Q1); Computer Vision and Pattern Recognition (Q1); Signal Processing (Q1); Software (Q1)";"Computer Science" +5070;15136;"Information Society";journal;"01972243, 10876537";"Taylor and Francis Ltd.";No;No;0,978;Q1;95;20;72;1730;332;71;5,68;86,50;34,09;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-1990, 1992-2026";"Cultural Studies (Q1); Information Systems (Q1); Management Information Systems (Q1); Political Science and International Relations (Q1)";"Business, Management and Accounting; Computer Science; Social Sciences" +5071;12373;"Journal of Computer Information Systems";journal;"23802057, 08874417";"Taylor and Francis Ltd.";No;No;0,978;Q1;89;116;307;7962;2000;307;6,71;68,64;31,25;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Computer Networks and Communications (Q1); Education (Q1); Information Systems (Q1)";"Computer Science; Social Sciences" +5072;22556;"Journal of Experimental Zoology Part B: Molecular and Developmental Evolution";journal;"15525007, 15525015";"John Wiley & Sons Inc.";No;No;0,978;Q1;77;56;153;3580;297;125;1,54;63,93;44,84;0;United States;Northern America;"John Wiley & Sons Inc.";"2003-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Developmental Biology (Q2); Genetics (Q2); Molecular Medicine (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +5073;20471;"Pediatric Nephrology";journal;"1432198X, 0931041X";"Springer Science and Business Media Deutschland GmbH";No;No;0,978;Q1;134;480;1237;16288;3111;1029;2,52;33,93;55,54;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1987-2026";"Nephrology (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +5074;144933;"Review of Economics of the Household";journal;"15737152, 15695239";"Kluwer Academic Publishers";No;No;0,978;Q1;52;93;157;5050;405;156;1,94;54,30;50,00;7;Netherlands;Western Europe;"Kluwer Academic Publishers";"2005-2026";"Social Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +5075;21542;"Urban Review";journal;"15731960, 00420972";"Springer Netherlands";No;No;0,978;Q1;65;68;93;4293;272;93;2,34;63,13;61,90;0;Netherlands;Western Europe;"Springer Netherlands";"1967-1976, 1978-2026";"Education (Q1); Sociology and Political Science (Q1); Urban Studies (Q1)";"Social Sciences" +5076;25444;"Clinical Endocrinology";journal;"13652265, 03000664";"Wiley-Blackwell Publishing Ltd";No;No;0,978;Q2;176;208;509;7938;1596;452;2,61;38,16;50,64;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1972-2026";"Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5077;10100153328;"Genes and Nutrition";journal;"15558932, 18653499";"BioMed Central Ltd";Yes;No;0,978;Q2;72;29;53;2024;219;52;2,81;69,79;51,95;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2007-2026";"Endocrinology, Diabetes and Metabolism (Q2); Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5078;15536;"Journal of Health Psychology";journal;"14617277, 13591053";"SAGE Publications Ltd";No;No;0,978;Q2;118;414;460;21393;1632;455;2,85;51,67;63,47;5;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2026";"Applied Psychology (Q2)";"Psychology" +5079;21101077112;"Cardiovascular Digital Health Journal";journal;"26666936";"Elsevier Inc.";Yes;No;0,977;Q1;20;0;91;0;331;86;4,07;0,00;0,00;0;United States;Northern America;"Elsevier Inc.";"2020-2024";"Biomedical Engineering (Q1); Cardiology and Cardiovascular Medicine (Q1); Critical Care and Intensive Care Medicine (Q1)";"Engineering; Medicine" +5080;25948;"European Journal of Haematology";journal;"16000609, 09024441";"John Wiley and Sons Inc";No;No;0,977;Q1;102;190;552;7289;1402;510;2,60;38,36;45,42;3;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1986-2026";"Medicine (miscellaneous) (Q1); Hematology (Q2)";"Medicine" +5081;21100836194;"ICT Express";journal;"24059595";"Korean Institute of Communications and Information Sciences";Yes;No;0,977;Q1;61;167;399;7140;2497;399;6,41;42,75;26,09;1;South Korea;Asiatic Region;"Korean Institute of Communications and Information Sciences";"2015-2026";"Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +5082;21100207601;"International Journal of Climate Change Strategies and Management";journal;"17568692";"Emerald Group Publishing Ltd.";Yes;No;0,977;Q1;46;55;107;3380;644;105;5,24;61,45;29,87;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2026";"Development (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q2); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +5083;22454;"International Journal of Pharmaceutics";journal;"18733476, 03785173";"Elsevier B.V.";Yes;No;0,977;Q1;279;1218;3145;96381;19932;3131;6,34;79,13;45,64;1;Netherlands;Western Europe;"Elsevier B.V.";"1978-2026";"Pharmaceutical Science (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +5084;19700175131;"Journal of Evidence-Based Medicine";journal;"17565391, 17565383";"John Wiley and Sons Inc";No;No;0,977;Q1;40;105;197;5385;640;134;2,99;51,29;43,81;0;United States;Northern America;"John Wiley and Sons Inc";"2008-2026";"Health Policy (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +5085;21101199384;"Macromol";journal;"26736209";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,977;Q1;23;61;134;5401;1010;132;8,30;88,54;47,78;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Materials Science" +5086;34645;"Skin Pharmacology and Physiology";journal;"16605527, 16605535";"S. Karger AG";No;No;0,977;Q1;91;36;71;1197;290;69;4,64;33,25;46,67;0;Switzerland;Western Europe;"S. Karger AG";"1988-1997, 2004-2026";"Dermatology (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +5087;12093;"Atmospheric Science Letters";journal;"1530261X";"John Wiley & Sons Inc.";Yes;No;0,977;Q2;62;50;175;2002;470;175;2,71;40,04;38,66;0;United States;Northern America;"John Wiley & Sons Inc.";"2000-2026";"Atmospheric Science (Q2)";"Earth and Planetary Sciences" +5088;4000149005;"Clinical Psychopharmacology and Neuroscience";journal;"20934327, 17381088";"Korean College of Neuropsychopharmacology";Yes;No;0,976;Q1;51;75;240;3207;794;233;3,51;42,76;41,96;0;South Korea;Asiatic Region;"Korean College of Neuropsychopharmacology";"2005-2026";"Pharmacology (medical) (Q1); Behavioral Neuroscience (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Neuroscience" +5089;19692;"Economics of Education Review";journal;"02727757";"Elsevier Ltd";No;No;0,976;Q1;114;85;257;4285;663;257;2,31;50,41;34,43;8;United Kingdom;Western Europe;"Elsevier Ltd";"1981-1982, 1984-2026";"Education (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +5090;18186;"Engineering with Computers";journal;"14355663, 01770667";"Springer London";No;No;0,976;Q1;99;225;938;12533;5455;931;5,82;55,70;17,86;0;United Kingdom;Western Europe;"Springer London";"1985-2026";"Computer Science Applications (Q1); Engineering (miscellaneous) (Q1); Modeling and Simulation (Q1); Software (Q1)";"Computer Science; Engineering; Mathematics" +5091;21100944557;"Health Equity";journal;"24731242";"Mary Ann Liebert Inc.";Yes;No;0,976;Q1;38;68;308;2471;820;294;2,00;36,34;73,55;0;United States;Northern America;"Mary Ann Liebert Inc.";"2017-2025";"Health Policy (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Health Information Management (Q2)";"Health Professions; Medicine; Social Sciences" +5092;64864;"Midwifery";journal;"02666138, 15323099";"Churchill Livingstone";No;No;0,976;Q1;96;336;641;15085;2211;621;3,22;44,90;77,79;7;United Kingdom;Western Europe;"Churchill Livingstone";"1985-2026";"Maternity and Midwifery (Q1); Obstetrics and Gynecology (Q1)";"Medicine; Nursing" +5093;19700188254;"Research in Mathematics Education";journal;"17540178, 14794802";"Routledge";No;No;0,976;Q1;29;50;83;2593;166;74;1,81;51,86;59,41;1;United States;Northern America;"Routledge";"1998, 2000-2026";"Education (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics; Social Sciences" +5094;29264;"Clinical Colorectal Cancer";journal;"15330028, 19380674";"Elsevier Inc.";No;No;0,976;Q2;71;73;174;2385;509;163;2,52;32,67;40,92;0;United States;Northern America;"Elsevier Inc.";"2001-2026";"Gastroenterology (Q2); Oncology (Q2)";"Medicine" +5095;4700152295;"Journal of Promotion Management";journal;"10496491, 15407594";"Routledge";No;No;0,976;Q2;50;47;148;4124;871;147;6,08;87,74;42,74;0;United Kingdom;Western Europe;"Routledge";"1992-1997, 1999-2002, 2004, 2006-2026";"Marketing (Q2)";"Business, Management and Accounting" +5096;4700152843;"ACM Transactions on Sensor Networks";journal;"15504859, 15504867";"Association for Computing Machinery";No;No;0,975;Q1;80;47;289;2640;1322;282;4,66;56,17;30,40;0;United States;Northern America;"Association for Computing Machinery";"2005-2026";"Computer Networks and Communications (Q1)";"Computer Science" +5097;13683;"Computer Communication Review";journal;"19435819, 01464833";"Association for Computing Machinery";No;No;0,975;Q1;198;19;44;671;141;39;3,95;35,32;11,11;0;United States;Northern America;"Association for Computing Machinery";"1985, 1988-1989, 1994-2025";"Computer Networks and Communications (Q1); Software (Q1)";"Computer Science" +5098;14995;"Current Pain and Headache Reports";journal;"15343081, 15313433";"Springer";No;No;0,975;Q1;94;122;307;6852;1590;306;5,52;56,16;38,28;0;United States;Northern America;"Springer";"2001-2026";"Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1); Neurology (clinical) (Q2)";"Medicine" +5099;17248;"IEEE Antennas and Propagation Magazine";journal;"15584143, 10459243";"IEEE Computer Society";No;No;0,975;Q1;109;81;256;3201;681;188;2,44;39,52;20,97;0;United States;Northern America;"IEEE Computer Society";"1990-2026";"Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1)";"Engineering; Physics and Astronomy" +5100;5100152922;"Revista de Ciencia Politica";journal;"0718090X, 07161417";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,975;Q1;28;6;72;350;146;71;1,91;58,33;22,22;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2002, 2006-2025";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5101;24555;"Talanta";journal;"00399140, 18733573";"Elsevier B.V.";No;No;0,975;Q1;202;1476;3529;75575;25076;3527;7,23;51,20;43,66;1;Netherlands;Western Europe;"Elsevier B.V.";"1958-2026";"Analytical Chemistry (Q1); Spectroscopy (Q1); Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +5102;21101153015;"Proceedings of Machine Learning Research";conference and proceedings;"26403498";"";No;No;0,975;-;224;5220;12008;274182;54080;11865;3,65;52,53;24,03;0;Netherlands;Western Europe;"";"2018-2025";"Artificial Intelligence; Control and Systems Engineering; Software; Statistics and Probability";"Computer Science; Engineering; Mathematics" +5103;21100456202;"Adipocyte";journal;"21623945, 2162397X";"Taylor and Francis Ltd.";Yes;No;0,974;Q1;43;40;110;1899;358;109;3,36;47,48;45,99;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Histology (Q1); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5104;21101039059;"Annals of K-Theory";journal;"23791691, 23791683";"Mathematical Sciences Publishers";No;No;0,974;Q1;11;15;50;458;35;50;0,71;30,53;19,05;0;United States;Northern America;"Mathematical Sciences Publishers";"2016-2025";"Analysis (Q1); Assessment and Diagnosis (Q1); Geometry and Topology (Q1)";"Mathematics; Nursing" +5105;21101196202;"Earthquake Research Advances";journal;"27724670";"KeAi Communications Co.";Yes;No;0,974;Q1;17;38;103;2115;452;96;4,92;55,66;37,78;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Computers in Earth Sciences (Q1); Earth-Surface Processes (Q1); Geology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +5106;15116;"Journal of Pediatrics";journal;"00223476, 10976833";"Elsevier Inc.";No;No;0,974;Q1;252;359;1476;11123;3982;1218;2,89;30,98;60,97;2;United States;Northern America;"Elsevier Inc.";"1932-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +5107;21100853248;"Journal of Strategy and Management";journal;"1755425X, 17554268";"Emerald Group Publishing Ltd.";No;No;0,974;Q1;47;56;135;4839;897;133;4,66;86,41;39,53;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2026";"Business and International Management (Q1); Strategy and Management (Q1)";"Business, Management and Accounting" +5108;21100446969;"Meditari Accountancy Research";journal;"20493738, 2049372X";"Emerald Publishing";No;No;0,974;Q1;59;86;259;7899;1855;259;5,94;91,85;43,00;0;United Kingdom;Western Europe;"Emerald Publishing";"2012-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Accounting (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +5109;20731;"Research in Higher Education";journal;"1573188X, 03610365";"Springer Netherlands";No;No;0,974;Q1;119;50;172;3505;640;171;3,45;70,10;56,38;0;Netherlands;Western Europe;"Springer Netherlands";"1973-2026";"Education (Q1)";"Social Sciences" +5110;21101321500;"Textiles (Switzerland)";journal;"26737248";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,974;Q1;26;71;98;4278;705;96;5,53;60,25;40,68;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Materials Science (miscellaneous) (Q1)";"Materials Science" +5111;21100979259;"Transgender Studies Quarterly";journal;"23289252, 23289260";"Duke University Press";No;No;0,974;Q1;21;46;125;1296;251;112;0,78;28,17;50,00;0;United States;Northern America;"Duke University Press";"2014, 2019-2025";"Cultural Studies (Q1); Gender Studies (Q1)";"Social Sciences" +5112;21101202123;"Advances in Kidney Disease and Health";journal;"29498139";"W.B. Saunders";No;No;0,973;Q1;91;56;190;2943;512;165;2,87;52,55;49,66;0;United States;Northern America;"W.B. Saunders";"2023-2026";"Nephrology (Q1)";"Medicine" +5113;21101183660;"AJPM Focus";journal;"27730654";"Elsevier B.V.";Yes;No;0,973;Q1;12;128;230;4763;628;217;2,84;37,21;61,86;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2); Health Informatics (Q2)";"Medicine" +5114;22344;"Infection Control and Hospital Epidemiology";journal;"15596834, 0899823X";"Cambridge University Press";No;No;0,973;Q1;161;219;1181;4809;2355;903;2,02;21,96;56,07;4;United Kingdom;Western Europe;"Cambridge University Press";"1986, 1988-2026";"Infectious Diseases (Q1); Epidemiology (Q2); Microbiology (medical) (Q2)";"Medicine" +5115;14481;"Journal of Glaucoma";journal;"10570829, 1536481X";"Lippincott Williams and Wilkins";No;No;0,973;Q1;109;163;553;4687;1215;505;2,16;28,75;42,81;0;United States;Northern America;"Lippincott Williams and Wilkins";"1992-2026";"Ophthalmology (Q1)";"Medicine" +5116;21100205751;"Journal of Public Transportation";journal;"1077291X, 23750901";"Elsevier B.V.";Yes;No;0,973;Q1;41;32;102;1771;483;102;4,79;55,34;28,57;0;Netherlands;Western Europe;"Elsevier B.V.";"1996, 2006-2007, 2009-2018, 2020-2026";"Geography, Planning and Development (Q1); Urban Studies (Q1); Transportation (Q2)";"Social Sciences" +5117;13985;"Palaeogeography, Palaeoclimatology, Palaeoecology";journal;"00310182";"Elsevier B.V.";No;No;0,973;Q1;192;572;1322;59032;4075;1317;2,93;103,20;32,51;2;Netherlands;Western Europe;"Elsevier B.V.";"1965-2026";"Earth-Surface Processes (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Oceanography (Q1); Paleontology (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +5118;19900191756;"Social Responsibility Journal";journal;"1758857X, 17471117";"Emerald Group Publishing Ltd.";No;No;0,973;Q1;71;160;306;13030;2231;306;7,24;81,44;45,01;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005-2026";"Business, Management and Accounting (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Business, Management and Accounting; Social Sciences" +5119;21773;"AIDS Reviews";journal;"11396121, 16986997";"Permanyer Publications";Yes;No;0,972;Q1;64;23;74;160;146;59;1,62;6,96;38,03;0;Spain;Western Europe;"Permanyer Publications";"2000-2025";"Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Infectious Diseases (Q2)";"Medicine" +5120;24614;"Applied Clay Science";journal;"01691317";"Elsevier B.V.";No;No;0,972;Q1;182;268;937;17452;5593;929;5,59;65,12;37,03;0;Netherlands;Western Europe;"Elsevier B.V.";"1985-2026";"Geochemistry and Petrology (Q1); Geology (Q1); Soil Science (Q1); Water Science and Technology (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +5121;21101021077;"Asian-Pacific Journal of Second and Foreign Language Education";journal;"23635169";"Springer Science + Business Media";Yes;No;0,972;Q1;26;62;154;3838;789;152;5,23;61,90;48,78;0;Germany;Western Europe;"Springer Science + Business Media";"2016-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +5122;20902;"Environment, Development and Sustainability";journal;"1387585X, 15732975";"Springer Science and Business Media B.V.";No;No;0,972;Q1;112;2349;3108;170455;19929;3102;6,28;72,56;35,12;31;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1999-2026";"Geography, Planning and Development (Q1); Economics and Econometrics (Q2); Management, Monitoring, Policy and Law (Q2)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +5123;21100900344;"Geoenvironmental Disasters";journal;"21978670";"SpringerOpen";Yes;No;0,972;Q1;43;45;99;2744;527;95;4,74;60,98;32,39;0;United Kingdom;Western Europe;"SpringerOpen";"2014-2026";"Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Geotechnical Engineering and Engineering Geology (Q1); Safety, Risk, Reliability and Quality (Q1); Management, Monitoring, Policy and Law (Q2)";"Earth and Planetary Sciences; Engineering; Environmental Science; Social Sciences" +5124;17227;"Journal of Neuroradiology";journal;"17730406, 01509861";"Elsevier Masson s.r.l.";No;No;0,972;Q1;55;59;223;1810;633;173;2,83;30,68;23,08;1;France;Western Europe;"Elsevier Masson s.r.l.";"1974, 1977-2026";"Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Neurology (clinical) (Q2)";"Health Professions; Medicine" +5125;21101039764;"JPhys Materials";journal;"25157639";"IOP Publishing Ltd.";Yes;No;0,972;Q1;44;69;176;5349;707;173;3,90;77,52;25,37;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2018-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)";"Materials Science; Physics and Astronomy" +5126;26406;"SIAM Journal on Discrete Mathematics";journal;"10957146, 08954801";"Society for Industrial and Applied Mathematics Publications";No;No;0,972;Q1;74;98;410;2828;496;410;1,13;28,86;22,49;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"1989, 1996-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +5127;21101291062;"Brain-X";journal;"28353153";"John Wiley and Sons Inc";Yes;No;0,972;Q2;11;25;74;1846;317;44;4,28;73,84;41,38;0;Australia;Pacific Region;"John Wiley and Sons Inc";"2023-2025";"Artificial Intelligence (Q2); Neurology (Q2); Neuroscience (miscellaneous) (Q2)";"Computer Science; Neuroscience" +5128;17743;"British Journal of Industrial Relations";journal;"14678543, 00071080";"Wiley-Blackwell Publishing Ltd";No;No;0,971;Q1;85;39;103;2781;316;103;2,88;71,31;38,00;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1963, 1965, 1967-1968, 1970-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +5129;12648;"Clinics in Perinatology";journal;"00955108, 15579840";"W.B. Saunders";No;No;0,971;Q1;105;73;222;3932;644;173;2,94;53,86;62,32;0;United States;Northern America;"W.B. Saunders";"1974-2026";"Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +5130;25802;"Communications in Analysis and Geometry";journal;"19449992, 10198385";"International Press, Inc.";No;No;0,971;Q1;51;37;209;1059;170;209;0,75;28,62;19,48;0;United States;Northern America;"International Press, Inc.";"1996-2025";"Analysis (Q1); Geometry and Topology (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +5131;21100875628;"EPJ Quantum Technology";journal;"26624400, 21960763";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,971;Q1;38;142;176;8316;979;176;4,57;58,56;25,60;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Engineering; Physics and Astronomy" +5132;24693;"Journal of Applied Crystallography";journal;"00218898, 16005767";"International Union of Crystallography";No;No;0,971;Q1;195;204;546;9061;1617;537;2,47;44,42;24,08;0;United Kingdom;Western Europe;"International Union of Crystallography";"1969-1971, 1983-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)";"Biochemistry, Genetics and Molecular Biology" +5133;21101167219;"Journal of Digital Economy";journal;"27730670";"KeAi Publishing Communications Ltd.";No;No;0,971;Q1;17;22;59;1660;407;59;5,59;75,45;34,55;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2022-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +5134;17827;"Mechanics of Advanced Materials and Structures";journal;"15376532, 15376494";"Taylor and Francis Ltd.";No;No;0,971;Q1;77;871;1809;46616;10364;1806;5,78;53,52;25,54;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997, 2001-2026";"Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science; Mathematics" +5135;22902;"Oxford Bulletin of Economics and Statistics";journal;"03059049, 14680084";"Wiley-Blackwell Publishing Ltd";No;No;0,971;Q1;93;74;159;3701;342;159;2,18;50,01;22,16;15;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1973-2026";"Social Sciences (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1); Economics and Econometrics (Q2)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics; Social Sciences" +5136;19700200807;"Research in Science and Technological Education";journal;"14701138, 02635143";"Taylor and Francis Ltd.";No;No;0,971;Q1;46;139;164;8928;762;163;4,77;64,23;47,92;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2026";"Education (Q1); Multidisciplinary (Q1)";"Multidisciplinary; Social Sciences" +5137;11600154157;"TQM Journal";journal;"17542731";"Emerald Group Publishing Ltd.";No;No;0,971;Q1;89;192;395;15356;3087;387;7,71;79,98;35,69;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2026";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Decision Sciences (miscellaneous) (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Decision Sciences" +5138;25229;"American Journal of Drug and Alcohol Abuse";journal;"10979891, 00952990";"Taylor & Francis Group LLC Philadelphia";No;No;0,970;Q1;88;85;237;4255;671;222;2,75;50,06;55,42;1;United States;Northern America;"Taylor & Francis Group LLC Philadelphia";"1974-1982, 1984-2026";"Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +5139;21101034521;"Insect Systematics and Diversity";journal;"23993421";"Oxford University Press";No;No;0,970;Q1;24;53;97;4915;256;96;1,82;92,74;31,79;0;United Kingdom;Western Europe;"Oxford University Press";"2017-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Developmental Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +5140;21100932767;"JOR Spine";journal;"25721143";"Wiley-Blackwell Publishing Ltd";Yes;No;0,970;Q1;34;124;192;7542;812;183;4,19;60,82;33,84;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2018-2026";"Orthopedics and Sports Medicine (Q1)";"Medicine" +5141;29849;"Journal of Accounting and Public Policy";journal;"18732070, 02784254";"Elsevier Inc.";No;No;0,970;Q1;104;73;200;5087;714;193;2,74;69,68;29,72;0;United States;Northern America;"Elsevier Inc.";"1982-2026";"Sociology and Political Science (Q1); Accounting (Q2)";"Business, Management and Accounting; Social Sciences" +5142;18122;"Nutritional Neuroscience";journal;"14768305, 1028415X";"Taylor and Francis Ltd.";No;No;0,970;Q1;85;143;450;9752;1942;443;4,36;68,20;55,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q2); Nutrition and Dietetics (Q2)";"Medicine; Neuroscience; Nursing" +5143;21100248865;"Tissue Engineering and Regenerative Medicine";journal;"17382696, 22125469";"Korean Tissue Engineering and Regenerative Medicine Society";No;No;0,970;Q1;50;87;274;4988;1353;269;5,33;57,33;39,69;0;South Korea;Asiatic Region;"Korean Tissue Engineering and Regenerative Medicine Society";"2008-2026";"Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1)";"Engineering; Medicine" +5144;21100904307;"European Journal of International Security";journal;"20575637, 20575645";"Cambridge University Press";Yes;No;0,969;Q1;27;70;96;8947;273;96;2,47;127,81;30,51;11;United Kingdom;Western Europe;"Cambridge University Press";"2016-2026";"Political Science and International Relations (Q1); Safety Research (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5145;21101059747;"IEEE Open Access Journal of Power and Energy";journal;"26877910";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,969;Q1;33;75;171;3095;664;167;3,43;41,27;19,83;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)";"Energy; Engineering" +5146;21100406884;"IMA Fungus";journal;"22106359, 22106340";"Pensoft Publishers";Yes;No;0,969;Q1;57;81;85;8594;405;81;4,27;106,10;39,71;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2010-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +5147;19700201530;"International Journal of Sport Policy and Politics";journal;"19406940, 19406959";"Taylor and Francis Ltd.";No;No;0,969;Q1;47;75;134;4969;526;124;3,99;66,25;32,64;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Social Sciences (miscellaneous) (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Social Sciences" +5148;21100947283;"Journal of Clinical and Translational Science";journal;"20598661";"Cambridge University Press";Yes;No;0,969;Q1;26;259;610;8045;1450;572;2,41;31,06;65,13;1;United Kingdom;Western Europe;"Cambridge University Press";"2017-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +5149;21101103383;"Journal of Research in Innovative Teaching and Learning";journal;"23977604";"Emerald Group Publishing Ltd.";Yes;Yes;0,969;Q1;30;37;92;1752;548;81;6,42;47,35;48,75;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2017-2025";"Education (Q1)";"Social Sciences" +5150;28845;"Nursing Inquiry";journal;"13207881, 14401800";"Wiley-Blackwell Publishing Ltd";No;No;0,969;Q1;68;76;237;3556;822;209;3,59;46,79;72,58;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +5151;21100868271;"Pulmonology";journal;"25310429, 25310437";"Taylor and Francis Ltd.";Yes;Yes;0,969;Q1;48;110;356;2407;810;173;2,33;21,88;46,77;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2026";"Pulmonary and Respiratory Medicine (Q1)";"Medicine" +5152;147233;"Punishment and Society";journal;"17413095, 14624745";"SAGE Publications Ltd";No;No;0,969;Q1;78;46;151;3209;441;150;2,82;69,76;56,57;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1999-2026";"Law (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +5153;18800156730;"Biomolecules and Therapeutics";journal;"19769148, 20054483";"Korean Society of Applied Pharmacology";No;No;0,969;Q2;66;96;212;5460;953;212;4,78;56,88;45,60;0;South Korea;Asiatic Region;"Korean Society of Applied Pharmacology";"2008-2026";"Biochemistry (Q2); Drug Discovery (Q2); Molecular Medicine (Q2); Pharmacology (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +5154;21100853518;"Journal of Functional Biomaterials";journal;"20794983";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,969;Q2;61;471;1254;33714;8448;1243;6,27;71,58;44,36;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Biomaterials (Q2); Biomedical Engineering (Q2)";"Engineering; Materials Science" +5155;14156;"Molecular Immunology";journal;"01615890, 18729142";"Elsevier Ltd";No;No;0,969;Q2;160;186;520;10248;1853;513;3,56;55,10;43,79;0;United Kingdom;Western Europe;"Elsevier Ltd";"1975, 1977-2026";"Immunology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +5156;19700183014;"Egyptian Journal of Remote Sensing and Space Science";journal;"11109823, 20902476";"Elsevier B.V.";Yes;No;0,968;Q1;72;58;238;2580;1386;237;6,30;44,48;26,75;0;Netherlands;Western Europe;"Elsevier B.V.";"2003, 2010-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +5157;21100944558;"Frontiers in Cardiovascular Medicine";journal;"2297055X";"Frontiers Media SA";Yes;No;0,968;Q1;97;1664;7624;73593;25041;7207;2,87;44,23;39,01;1;Switzerland;Western Europe;"Frontiers Media SA";"2014-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +5158;21100373623;"Geoderma Regional";journal;"23520094";"Elsevier B.V.";No;No;0,968;Q1;52;131;429;10069;1827;424;4,10;76,86;29,58;2;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Soil Science (Q1)";"Agricultural and Biological Sciences" +5159;27580;"Journal of Assisted Reproduction and Genetics";journal;"10580468, 15737330";"Springer";No;No;0,968;Q1;108;414;988;18190;2996;903;2,57;43,94;54,88;0;United States;Northern America;"Springer";"1992-2026";"Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Developmental Biology (Q2); Genetics (Q2); Genetics (clinical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5160;4000148210;"Nutrition and Dietetics";journal;"14466368, 17470080";"John Wiley and Sons Inc";No;No;0,968;Q1;45;76;166;3113;554;135;3,03;40,96;82,52;1;United States;Northern America;"John Wiley and Sons Inc";"2006-2026";"Public Health, Environmental and Occupational Health (Q1); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +5161;19635;"Teaching and Learning in Medicine";journal;"10401334, 15328015";"Routledge";No;No;0,968;Q1;67;106;179;5923;571;173;3,18;55,88;64,06;1;United States;Northern America;"Routledge";"1989-2026";"Education (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Social Sciences" +5162;21058;"UCLA Law Review";journal;"00415650";"University of California, Berkeley";No;No;0,968;Q1;58;27;77;1636;87;74;0,89;60,59;42,42;0;United States;Northern America;"University of California, Berkeley";"1968, 1976, 1978, 1980-1983, 1986, 1989, 1991-2026";"Law (Q1)";"Social Sciences" +5163;69138;"American Journal of Managed Care";journal;"10880224, 19362692";"Ascend Media";No;No;0,967;Q1;115;169;501;3276;1003;462;1,65;19,38;48,93;1;United States;Northern America;"Ascend Media";"1996-2026";"Health Policy (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +5164;21100241807;"Artificial Cells, Nanomedicine and Biotechnology";journal;"2169141X, 21691401";"Taylor and Francis Ltd.";Yes;No;0,967;Q1;105;36;130;2170;781;129;6,26;60,28;48,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Biotechnology (Q1); Medicine (miscellaneous) (Q1); Pharmaceutical Science (Q1); Biomedical Engineering (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine; Pharmacology, Toxicology and Pharmaceutics" +5165;21100802698;"ESP Today";journal;"23349050";"University of Belgrade";Yes;Yes;0,967;Q1;16;18;48;1008;169;46;2,59;56,00;67,74;0;Serbia;Eastern Europe;"University of Belgrade";"2013-2026";"Linguistics and Language (Q1)";"Social Sciences" +5166;21100934655;"International Journal of Transportation Science and Technology";journal;"20460430, 20460449";"KeAi Communications Co.";Yes;No;0,967;Q1;47;159;214;7762;1232;213;5,92;48,82;33,73;0;China;Asiatic Region;"KeAi Communications Co.";"2012-2026";"Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Management, Monitoring, Policy and Law (Q2); Transportation (Q2)";"Engineering; Environmental Science; Social Sciences" +5167;26156;"Journal of Oral Rehabilitation";journal;"13652842, 0305182X";"Wiley-Blackwell Publishing Ltd";No;No;0,967;Q1;122;248;550;10126;2233;532;4,08;40,83;48,07;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1974-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +5168;19600161903;"Molecular Oral Microbiology";journal;"20411006, 20411014";"American Journal of Nursing Company";No;No;0,967;Q1;98;23;103;1732;428;99;3,95;75,30;45,37;0;United States;Northern America;"American Journal of Nursing Company";"2010-2026";"Dentistry (miscellaneous) (Q1); Immunology (Q2); Microbiology (Q2); Microbiology (medical) (Q2)";"Dentistry; Immunology and Microbiology; Medicine" +5169;21100444313;"Sustainable Chemistry and Pharmacy";journal;"23525541";"Elsevier B.V.";No;No;0,967;Q1;70;351;1144;23819;8399;1134;7,45;67,86;42,69;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Pharmaceutical Science (Q1); Environmental Chemistry (Q2); Management, Monitoring, Policy and Law (Q2); Pollution (Q2)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +5170;21100836322;"Proteomes";journal;"22277382";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,967;Q2;40;68;111;5562;554;111;4,87;81,79;41,71;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2025";"Biochemistry (Q2); Clinical Biochemistry (Q2); Molecular Biology (Q2); Structural Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +5171;130115;"Contemporary Clinical Trials";journal;"15592030, 15517144";"Elsevier Inc.";No;No;0,966;Q1;84;283;794;13493;1847;790;2,13;47,68;60,94;2;United States;Northern America;"Elsevier Inc.";"2005-2026";"Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1)";"Medicine" +5172;15112;"Freshwater Biology";journal;"13652427, 00465070";"Wiley-Blackwell Publishing Ltd";No;No;0,966;Q1;188;184;453;14477;1414;452;2,81;78,68;34,89;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1971-2026";"Aquatic Science (Q1)";"Agricultural and Biological Sciences" +5173;17344;"IEEE Transactions on Education";journal;"00189359, 15579638";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,966;Q1;83;50;239;2383;1114;235;3,43;47,66;36,87;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-2026";"Education (Q1); Electrical and Electronic Engineering (Q1)";"Engineering; Social Sciences" +5174;21101055720;"International Journal of Bullying Prevention";journal;"25233653, 25233661";"Springer International Publishing";No;No;0,966;Q1;24;109;110;7713;459;109;3,53;70,76;69,12;6;Switzerland;Western Europe;"Springer International Publishing";"2019-2026";"Social Psychology (Q1); Social Sciences (miscellaneous) (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +5175;23270;"Israel Journal of Mathematics";journal;"00212172, 15658511";"Springer New York";No;No;0,966;Q1;68;237;399;6319;382;397;0,96;26,66;16,34;0;United States;Northern America;"Springer New York";"1963-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +5176;21101150071;"NEJM Catalyst Innovations in Care Delivery";journal;"26420007";"Massachussetts Medical Society";No;No;0,966;Q1;20;94;297;1953;729;260;2,80;20,78;49,81;0;United States;Northern America;"Massachussetts Medical Society";"2020-2026";"Health Policy (Q1); Leadership and Management (Q1); Health Informatics (Q2)";"Medicine; Nursing" +5177;63659;"European Solid-State Circuits Conference";conference and proceedings;"19308833";"IEEE Computer Society";No;No;0,966;-;42;187;320;2038;552;316;1,73;10,90;20,95;0;United States;Northern America;"IEEE Computer Society";"1975-1977, 1992-1993, 1998-2003, 2011-2016, 2023-2025";"Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering" +5178;32791;"Industrial Crops and Products";journal;"09266690";"Elsevier B.V.";Yes;No;0,965;Q1;201;2211;5340;141216;37319;5339;6,84;63,87;41,70;0;Netherlands;Western Europe;"Elsevier B.V.";"1992-2026";"Agronomy and Crop Science (Q1)";"Agricultural and Biological Sciences" +5179;500147003;"International Wound Journal";journal;"1742481X, 17424801";"John Wiley and Sons Inc";Yes;No;0,965;Q1;99;299;831;7969;3433;756;3,90;26,65;49,19;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2004-2026";"Dermatology (Q1); Surgery (Q1)";"Medicine" +5180;3200147830;"Journal of Accounting, Auditing and Finance";journal;"21604061, 0148558X";"SAGE Publications Ltd";No;No;0,965;Q1;68;84;123;5214;349;122;1,91;62,07;37,99;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q1); Accounting (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +5181;21100316071;"Journal of Behavioral and Experimental Finance";journal;"22146350, 22146369";"Elsevier B.V.";No;No;0,965;Q1;54;84;250;5498;1246;250;4,68;65,45;36,71;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Finance (Q1)";"Economics, Econometrics and Finance" +5182;6400153111;"Journal of Ethnobiology and Ethnomedicine";journal;"17464269";"BioMed Central Ltd";Yes;No;0,965;Q1;107;88;237;6312;1539;236;6,60;71,73;32,17;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2005-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Complementary and Alternative Medicine (Q1); Cultural Studies (Q1); Health (social science) (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Medicine; Social Sciences" +5183;21100337905;"Pathogens";journal;"20760817";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,965;Q1;96;1299;4138;81541;16439;4015;3,91;62,77;50,48;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Immunology and Microbiology (miscellaneous) (Q1); Immunology and Allergy (Q2); Infectious Diseases (Q2); Microbiology (medical) (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +5184;21101282783;"Substance Use: Research and Treatment";journal;"29768357";"SAGE Publications Ltd";No;No;0,965;Q1;38;32;137;1662;487;130;3,43;51,94;52,41;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2024-2026";"Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)";"Medicine" +5185;21100972600;"Technology Innovation Management Review";journal;"19270321";"Carleton University";Yes;Yes;0,965;Q1;30;0;8;0;58;5;0,00;0,00;0,00;0;Canada;Northern America;"Carleton University";"2019-2022";"Computer Science Applications (Q1); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Computer Science" +5186;25050;"American Journal of International Law";journal;"21617953, 00029300";"Cambridge University Press";Yes;No;0,964;Q1;102;38;144;4191;272;140;1,49;110,29;41,18;2;United States;Northern America;"Cambridge University Press";"1937, 1959, 1979, 1982, 1984, 1987-1988, 1992-1994, 1996-2026";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +5187;21100283377;"Australasian Journal of Engineering Education";journal;"22054952, 13254340";"Taylor and Francis Ltd.";No;No;0,964;Q1;19;16;42;857;148;36;4,23;53,56;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013, 2015-2026";"Education (Q1); Engineering (miscellaneous) (Q1); Human-Computer Interaction (Q2)";"Computer Science; Engineering; Social Sciences" +5188;21101192740;"BJA Open";journal;"27726096";"Elsevier B.V.";Yes;No;0,964;Q1;12;82;160;3207;453;141;3,24;39,11;43,01;1;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +5189;19700180908;"Integrative Zoology";journal;"17494869, 17494877";"John Wiley and Sons Inc";No;No;0,964;Q1;50;204;272;13982;1003;233;3,65;68,54;35,79;1;United States;Northern America;"John Wiley and Sons Inc";"2008-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +5190;147231;"International Review for the Sociology of Sport";journal;"10126902, 14617218";"SAGE Publications Ltd";No;No;0,964;Q1;80;137;198;8467;870;196;4,37;61,80;38,26;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1966-2002, 2004-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Sports Science (Q2)";"Health Professions; Social Sciences" +5191;21172;"Complementary Therapies in Medicine";journal;"18736963, 09652299";"Elsevier Ltd";Yes;No;0,963;Q1;93;183;295;9065;1248;268;3,88;49,54;48,47;0;United Kingdom;Western Europe;"Elsevier Ltd";"1993-2026";"Advanced and Specialized Nursing (Q1); Complementary and Alternative Medicine (Q1); Complementary and Manual Therapy (Q1)";"Health Professions; Medicine; Nursing" +5192;29360;"Energy and Environment";journal;"0958305X, 20484070";"SAGE Publications Inc.";No;No;0,963;Q1;55;298;473;21525;3126;473;6,66;72,23;31,95;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1981, 1995-2026";"Energy Engineering and Power Technology (Q1); Environmental Engineering (Q1); Energy (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Environmental Science" +5193;12336;"International Journal for Numerical Methods in Engineering";journal;"00295981, 10970207";"John Wiley and Sons Ltd";No;No;0,963;Q1;208;300;657;15732;2323;654;3,76;52,44;20,02;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1969-2026";"Applied Mathematics (Q1); Engineering (miscellaneous) (Q1); Numerical Analysis (Q1)";"Engineering; Mathematics" +5194;12403;"Medical Oncology";journal;"13570560, 1559131X";"Springer";No;No;0,963;Q1;98;540;910;49020;3884;865;4,66;90,78;42,35;0;United States;Northern America;"Springer";"1994-2026";"Medicine (miscellaneous) (Q1); Cancer Research (Q2); Hematology (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5195;21101276709;"Ornithological Applications";journal;"27324621";"Oxford University Press";No;No;0,963;Q1;19;37;141;2676;401;140;2,66;72,32;37,44;1;United Kingdom;Western Europe;"Oxford University Press";"2021-2025";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +5196;10600153347;"Brain Imaging and Behavior";journal;"19317565, 19317557";"Springer";No;No;0,962;Q1;76;123;452;6917;1485;452;3,10;56,24;48,73;0;United States;Northern America;"Springer";"2007-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Behavioral Neuroscience (Q2); Cognitive Neuroscience (Q2); Neurology (Q2); Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2); Cellular and Molecular Neuroscience (Q3)";"Medicine; Neuroscience" +5197;21100398885;"Carbon Letters";journal;"22334998, 19764251";"";No;No;0,962;Q1;49;201;502;13977;3283;502;6,27;69,54;34,06;0;Singapore;Asiatic Region;"";"2014-2026";"Ceramics and Composites (Q1); Energy Engineering and Power Technology (Q1); Inorganic Chemistry (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1); Process Chemistry and Technology (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Chemical Engineering; Chemistry; Energy; Materials Science" +5198;16377;"Catalysis Today";journal;"09205861";"Elsevier B.V.";No;No;0,962;Q1;253;364;1371;21802;7353;1331;5,48;59,90;38,31;0;Netherlands;Western Europe;"Elsevier B.V.";"1987-2026";"Chemistry (miscellaneous) (Q1); Catalysis (Q2)";"Chemical Engineering; Chemistry" +5199;21101090689;"Energy Geoscience";journal;"26667592";"KeAi Communications Co.";Yes;No;0,962;Q1;31;90;237;5240;1196;232;5,22;58,22;29,52;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Geology (Q1); Geophysics (Q1); Energy (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Earth and Planetary Sciences; Energy" +5200;21100934090;"Recycling";journal;"23134321";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,962;Q1;51;225;317;15119;2123;314;6,24;67,20;36,31;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2026";"Materials Science (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q2); Waste Management and Disposal (Q2)";"Environmental Science; Materials Science" +5201;12189;"Simulation Modelling Practice and Theory";journal;"1569190X";"Elsevier B.V.";No;No;0,962;Q1;95;166;381;8063;2274;372;6,07;48,57;28,43;1;Netherlands;Western Europe;"Elsevier B.V.";"2002-2026";"Hardware and Architecture (Q1); Modeling and Simulation (Q1); Software (Q1)";"Computer Science; Mathematics" +5202;21100810716;"South African Journal of Chemical Engineering";journal;"10269185";"Elsevier B.V.";Yes;No;0,962;Q1;52;152;375;8745;2710;373;7,42;57,53;29,93;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Education (Q1); Fluid Flow and Transfer Processes (Q1); Process Chemistry and Technology (Q1); Catalysis (Q2); Energy (miscellaneous) (Q2); Filtration and Separation (Q2)";"Chemical Engineering; Energy; Social Sciences" +5203;21100900324;"Epilepsia Open";journal;"24709239";"Wiley-Blackwell Publishing Ltd";Yes;No;0,962;Q2;43;229;494;10523;1749;465;3,41;45,95;47,11;0;United States;Northern America;"Wiley-Blackwell Publishing Ltd";"2016-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +5204;21101133557;"Neurological Research and Practice";journal;"25243489";"Springer Medizin";Yes;No;0,962;Q2;29;94;186;3877;607;146;3,38;41,24;38,76;0;United Kingdom;Western Europe;"Springer Medizin";"2019-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +5205;19500157492;"Algebraic and Geometric Topology";journal;"14722747, 14722739";"Mathematical Sciences Publishers";No;No;0,961;Q1;35;166;351;4523;267;349;0,80;27,25;21,62;0;United States;Northern America;"Mathematical Sciences Publishers";"2003-2026";"Geometry and Topology (Q1)";"Mathematics" +5206;21522;"Ceramics International";journal;"02728842";"Elsevier Ltd";No;No;0,961;Q1;185;6238;13527;326901;81706;13510;6,08;52,40;33,98;1;United Kingdom;Western Europe;"Elsevier Ltd";"1981-2026";"Ceramics and Composites (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Surfaces, Coatings and Films (Q1); Process Chemistry and Technology (Q2)";"Chemical Engineering; Materials Science" +5207;21101151625;"Discover Nano";journal;"27319229";"Springer";Yes;No;0,961;Q1;27;229;363;19375;2599;362;7,16;84,61;33,30;0;Germany;Western Europe;"Springer";"2023-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)";"Materials Science; Physics and Astronomy" +5208;144967;"Early Childhood Education Journal";journal;"15731707, 10823301";"Springer Netherlands";No;No;0,961;Q1;67;424;407;23623;1658;407;3,69;55,71;76,04;11;Netherlands;Western Europe;"Springer Netherlands";"1995-2002, 2005-2026";"Education (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +5209;25963;"Haemophilia";journal;"13518216, 13652516";"John Wiley and Sons Inc";No;No;0,961;Q1;112;173;618;4586;1320;465;2,17;26,51;57,00;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1995-2026";"Medicine (miscellaneous) (Q1); Genetics (clinical) (Q2); Hematology (Q2)";"Medicine" +5210;28968;"Interfaces and Free Boundaries";journal;"14639971, 14639963";"European Mathematical Society Publishing House";Yes;Yes;0,961;Q1;43;16;51;575;57;51;0,95;35,94;9,76;0;Germany;Western Europe;"European Mathematical Society Publishing House";"1999-2025";"Applied Mathematics (Q1); Surfaces and Interfaces (Q1)";"Mathematics; Physics and Astronomy" +5211;21100886355;"Journal of Fungi";journal;"2309608X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,961;Q1;94;890;3387;58406;16707;3340;4,60;65,62;47,98;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Microbiology (medical) (Q2)";"Agricultural and Biological Sciences; Medicine" +5212;21101186925;"Mathematical Statistics and Learning";journal;"25202324, 25202316";"European Mathematical Society Publishing House";Yes;Yes;0,961;Q1;11;7;16;297;25;16;1,80;42,43;16,67;0;Germany;Western Europe;"European Mathematical Society Publishing House";"2018-2025";"Computational Theory and Mathematics (Q1); Signal Processing (Q1); Statistics and Probability (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +5213;14031;"Psychology of Men and Masculinity";journal;"1939151X, 15249220";"American Psychological Association";No;No;0,961;Q1;86;24;139;1636;420;138;2,01;68,17;57,50;0;United States;Northern America;"American Psychological Association";"2000-2025";"Gender Studies (Q1); Social Psychology (Q1); Applied Psychology (Q2); Life-span and Life-course Studies (Q2)";"Psychology; Social Sciences" +5214;21100244224;"Religion, Brain and Behavior";journal;"2153599X, 21535981";"Taylor and Francis Ltd.";No;No;0,961;Q1;37;81;176;3999;262;57;1,56;49,37;34,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2025";"Religious Studies (Q1); Experimental and Cognitive Psychology (Q2)";"Arts and Humanities; Psychology" +5215;21101018848;"SAE International Journal of Vehicle Dynamics, Stability, and NVH";journal;"23802170, 23802162";"SAE International";No;No;0,961;Q1;28;37;94;1833;640;92;8,11;49,54;22,14;0;United States;Northern America;"SAE International";"2016-2026";"Automotive Engineering (Q1); Computational Mechanics (Q1); Control and Optimization (Q1); Mechanical Engineering (Q1)";"Engineering; Mathematics" +5216;21100894508;"Atmospheric Environment: X";journal;"25901621";"Elsevier Ltd";Yes;No;0,960;Q1;34;91;159;5556;641;159;3,74;61,05;32,42;1;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Environmental Science (miscellaneous) (Q1); Atmospheric Science (Q2)";"Earth and Planetary Sciences; Environmental Science" +5217;13479;"Current Psychology";journal;"19364733, 10461310";"Springer";No;No;0,960;Q1;83;1400;6296;85999;22858;6284;3,54;61,43;52,31;3;United States;Northern America;"Springer";"1981-1982, 1984-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +5218;21101081608;"Green Synthesis and Catalysis";journal;"26665549";"KeAi Communications Co.";Yes;No;0,960;Q1;36;152;170;10629;838;170;4,96;69,93;36,26;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Biotechnology (Q1); Catalysis (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +5219;21101169875;"Journal of Responsible Technology";journal;"26666596";"Elsevier Ltd";Yes;No;0,960;Q1;15;39;73;2438;452;68;7,26;62,51;49,14;1;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2025";"Computer Science (miscellaneous) (Q1); Human-Computer Interaction (Q2)";"Computer Science" +5220;21100788294;"Plants";journal;"22237747";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,960;Q1;146;3848;11338;264974;62941;11227;5,24;68,86;44,93;2;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +5221;3700148010;"Policy, Politics, and Nursing Practice";journal;"15271544, 15527468";"SAGE Publications Inc.";No;No;0,960;Q1;40;40;83;1478;257;70;3,09;36,95;69,66;0;United States;Northern America;"SAGE Publications Inc.";"2000-2026";"Issues, Ethics and Legal Aspects (Q1); Leadership and Management (Q1); Medicine (miscellaneous) (Q1)";"Medicine; Nursing" +5222;5700155900;"Applied Developmental Science";journal;"1532480X, 10888691";"Psychology Press Ltd";No;No;0,960;Q2;89;68;127;5070;451;126;3,33;74,56;69,49;3;United States;Northern America;"Psychology Press Ltd";"1997-2026";"Applied Psychology (Q2); Developmental and Educational Psychology (Q2); Life-span and Life-course Studies (Q2)";"Psychology; Social Sciences" +5223;19700186870;"Alpine Botany";journal;"1664221X, 16642201";"Springer Science and Business Media Deutschland GmbH";No;No;0,959;Q1;38;26;54;1695;164;53;3,23;65,19;35,11;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +5224;21100790929;"Frontiers in Marine Science";journal;"22967745";"Frontiers Media SA";Yes;No;0,959;Q1;135;1347;6783;88466;24563;6465;3,25;65,68;40,16;9;Switzerland;Western Europe;"Frontiers Media SA";"2014-2026";"Aquatic Science (Q1); Environmental Science (miscellaneous) (Q1); Ocean Engineering (Q1); Oceanography (Q1); Water Science and Technology (Q1); Global and Planetary Change (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering; Environmental Science" +5225;20000195097;"Multiple Sclerosis and Related Disorders";journal;"22110356, 22110348";"Elsevier B.V.";No;No;0,959;Q1;77;523;1777;20650;5089;1589;2,82;39,48;49,98;1;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Medicine (miscellaneous) (Q1); Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +5226;24677;"Proceedings of the American Mathematical Society";journal;"10886826, 00029939";"American Mathematical Society";No;No;0,959;Q1;99;421;1325;8824;1297;1324;0,97;20,96;20,34;0;United States;Northern America;"American Mathematical Society";"1950-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +5227;24274;"Social Politics";journal;"10724745, 14682893";"Oxford University Press";No;No;0,959;Q1;73;30;150;1897;452;147;2,99;63,23;93,62;1;United Kingdom;Western Europe;"Oxford University Press";"1994-2025";"Gender Studies (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +5228;21101132920;"Advances in Redox Research";journal;"26671379";"Elsevier Inc.";Yes;No;0,959;Q2;15;26;76;2514;368;76;4,39;96,69;39,26;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology" +5229;21101021989;"European Journal of Politics and Gender";journal;"25151096, 25151088";"Bristol University Press";No;No;0,958;Q1;23;36;85;2456;259;70;1,93;68,22;75,44;0;United Kingdom;Western Europe;"Bristol University Press";"2018-2025";"Gender Studies (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5230;22053;"European Journal of Special Needs Education";journal;"08856257, 1469591X";"Routledge";No;No;0,958;Q1;65;123;202;5655;846;199;3,70;45,98;68,75;3;United Kingdom;Western Europe;"Routledge";"1986-2026";"Education (Q1); Health Professions (miscellaneous) (Q1); Developmental and Educational Psychology (Q2)";"Health Professions; Psychology; Social Sciences" +5231;12174;"Navigation, Journal of the Institute of Navigation";journal;"00281522, 21614296";"The Institute of Navigation Inc";Yes;No;0,958;Q1;63;51;175;1798;632;164;3,50;35,25;17,51;0;United States;Northern America;"The Institute of Navigation Inc";"1946-2025";"Aerospace Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Engineering" +5232;18054;"Neuroscience Research";journal;"18728111, 01680102";"Elsevier Ireland Ltd";Yes;No;0,958;Q1;116;128;291;9190;889;284;3,03;71,80;31,73;1;Ireland;Western Europe;"Elsevier Ireland Ltd";"1984-2026";"Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q2)";"Medicine; Neuroscience" +5233;21100854887;"Nursing Open";journal;"20541058";"Wiley-Blackwell Publishing Ltd";Yes;No;0,958;Q1;56;267;1337;11679;5140;1302;3,56;43,74;70,06;0;United States;Northern America;"Wiley-Blackwell Publishing Ltd";"2014-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +5234;4700152623;"Applied Research in Quality of Life";journal;"18712584, 18712576";"Springer Netherlands";No;No;0,958;Q2;61;126;452;9211;1654;445;3,35;73,10;48,49;1;Netherlands;Western Europe;"Springer Netherlands";"2006-2026";"Life-span and Life-course Studies (Q2)";"Social Sciences" +5235;14323;"Brain, Behavior and Evolution";journal;"14219743, 00068977";"S. Karger AG";No;No;0,958;Q2;90;28;81;2143;128;78;1,45;76,54;50,00;0;Switzerland;Western Europe;"S. Karger AG";"1968-2026";"Behavioral Neuroscience (Q2); Developmental Neuroscience (Q2)";"Neuroscience" +5236;25949;"Experimental Hematology";journal;"0301472X, 18732399";"Elsevier Inc.";No;No;0,958;Q2;133;85;230;4906;527;221;2,34;57,72;42,76;0;United States;Northern America;"Elsevier Inc.";"1973-2026";"Cancer Research (Q2); Genetics (Q2); Hematology (Q2); Molecular Biology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5237;12860;"Compare";journal;"14693623, 03057925";"Routledge";No;No;0,957;Q1;64;136;252;7595;1005;250;3,52;55,85;52,43;6;United Kingdom;Western Europe;"Routledge";"1975-2026";"Education (Q1)";"Social Sciences" +5238;21100901909;"Current Developments in Nutrition";journal;"24752991";"Elsevier B.V.";Yes;No;0,957;Q1;46;190;438;10830;1530;424;3,44;57,00;60,64;10;United Kingdom;Western Europe;"Elsevier B.V.";"2017-2026";"Food Science (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q2)";"Agricultural and Biological Sciences; Medicine; Nursing" +5239;21100806003;"Engineering Science and Technology, an International Journal";journal;"22150986";"Elsevier B.V.";Yes;No;0,957;Q1;104;245;535;13787;3841;535;7,06;56,27;19,78;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Civil and Structural Engineering (Q1); Computer Networks and Communications (Q1); Electronic, Optical and Magnetic Materials (Q1); Fluid Flow and Transfer Processes (Q1); Hardware and Architecture (Q1); Mechanical Engineering (Q1); Metals and Alloys (Q1); Biomaterials (Q2)";"Chemical Engineering; Computer Science; Engineering; Materials Science" +5240;19400157205;"Evolutionary Applications";journal;"17524571";"John Wiley and Sons Inc";Yes;No;0,957;Q1;102;124;464;11375;1722;461;3,27;91,73;40,72;3;United States;Northern America;"John Wiley and Sons Inc";"2008-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +5241;19225;"Journal of Phycology";journal;"15298817, 00223646";"Wiley-Blackwell Publishing Ltd";No;No;0,957;Q1;152;134;282;8020;1038;255;3,58;59,85;42,72;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1965-2026";"Aquatic Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +5242;24083;"Mitigation and Adaptation Strategies for Global Change";journal;"15731596, 13812386";"Springer Netherlands";No;No;0,957;Q1;100;78;212;7265;1001;208;4,88;93,14;31,95;4;Netherlands;Western Europe;"Springer Netherlands";"1996-2026";"Ecology (Q1); Global and Planetary Change (Q2)";"Environmental Science" +5243;130126;"Molecular Pharmaceutics";journal;"15438384, 15438392";"American Chemical Society";No;No;0,957;Q1;172;592;1434;36877;7218;1362;4,86;62,29;41,18;1;United States;Northern America;"American Chemical Society";"2004-2026";"Pharmaceutical Science (Q1); Drug Discovery (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +5244;145175;"Neurosurgical Focus";journal;"10920684";"American Association of Neurological Surgeons";Yes;No;0,957;Q1;135;184;501;5504;1636;466;3,09;29,91;23,04;0;United States;Northern America;"American Association of Neurological Surgeons";"1996-2026";"Medicine (miscellaneous) (Q1); Surgery (Q1); Neurology (clinical) (Q2)";"Medicine" +5245;21101239840;"Quantum Frontiers";journal;"27316106";"Springer International Publishing";Yes;Yes;0,957;Q1;11;24;66;1568;237;65;4,02;65,33;32,26;0;Switzerland;Western Europe;"Springer International Publishing";"2022-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Materials Science; Physics and Astronomy" +5246;28281;"Colorectal Disease";journal;"14628910, 14631318";"John Wiley and Sons Inc";No;No;0,957;Q2;115;414;1194;7151;1684;559;1,35;17,27;33,38;6;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1999-2026";"Gastroenterology (Q2)";"Medicine" +5247;21101055006;"Arthroscopy, Sports Medicine, and Rehabilitation";journal;"2666061X";"Elsevier Inc.";Yes;No;0,956;Q1;28;211;600;7395;1806;599;2,66;35,05;19,65;1;United States;Northern America;"Elsevier Inc.";"2019-2025";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Public Health, Environmental and Occupational Health (Q1); Rehabilitation (Q1)";"Health Professions; Medicine" +5248;25440;"Canadian Journal of Diabetes";journal;"23523840, 14992671";"Elsevier B.V.";No;No;0,956;Q1;63;70;288;2769;704;265;2,40;39,56;67,19;0;Netherlands;Western Europe;"Elsevier B.V.";"2002-2026";"Medicine (miscellaneous) (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5249;21100905984;"Journal of Experimental Orthopaedics";journal;"21971153";"John Wiley and Sons Inc";Yes;No;0,956;Q1;45;483;470;18614;1631;457;3,28;38,54;20,15;0;Germany;Western Europe;"John Wiley and Sons Inc";"2014-2026";"Orthopedics and Sports Medicine (Q1)";"Medicine" +5250;21284;"Journal of Reproductive Immunology";journal;"18727603, 01650378";"Elsevier Ireland Ltd";No;No;0,956;Q1;109;124;400;7636;1493;387;3,68;61,58;53,78;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1979-2026";"Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +5251;24021;"Marine Environmental Research";journal;"18790291, 01411136";"Elsevier Ltd";No;No;0,956;Q1;118;686;1041;54010;3993;1040;3,77;78,73;41,40;6;United Kingdom;Western Europe;"Elsevier Ltd";"1978-2026";"Aquatic Science (Q1); Medicine (miscellaneous) (Q1); Oceanography (Q1); Pollution (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science; Medicine" +5252;28990;"Tectonophysics";journal;"00401951";"Elsevier B.V.";No;No;0,956;Q1;218;229;845;19363;2294;834;2,59;84,55;25,48;0;Netherlands;Western Europe;"Elsevier B.V.";"1964-2026";"Earth-Surface Processes (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +5253;29643;"Urban Affairs Review";journal;"10780874, 15528332";"SAGE Publications Inc.";No;No;0,956;Q1;93;84;201;5925;594;186;2,98;70,54;40,46;4;United States;Northern America;"SAGE Publications Inc.";"1965-2026";"Sociology and Political Science (Q1); Urban Studies (Q1)";"Social Sciences" +5254;21101251295;"Journal of the Canadian Association of Gastroenterology";journal;"25152092, 25152084";"Oxford University Press";Yes;No;0,956;Q2;24;54;151;2114;400;139;2,76;39,15;42,57;0;United Kingdom;Western Europe;"Oxford University Press";"2018-2026";"Gastroenterology (Q2)";"Medicine" +5255;20384;"Insect Biochemistry and Molecular Biology";journal;"09651748, 18790240";"Elsevier Ltd";No;No;0,955;Q1;142;139;259;8690;1214;258;4,92;62,52;38,44;0;United Kingdom;Western Europe;"Elsevier Ltd";"1992-2026";"Insect Science (Q1); Biochemistry (Q2); Molecular Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +5256;21101242572;"Review of Management Literature";book series;"27545865, 27545873";"Emerald Publishing";No;No;0,955;Q1;13;26;35;1946;339;35;10,73;74,85;34,62;0;United Kingdom;Western Europe;"Emerald Publishing";"2022-2025";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +5257;21511;"Russian Chemical Reviews";journal;"0036021X, 14684837";"Editorial Board of the Journal Uspekhi Khimii (Russian Chemical Reviews)";No;No;0,955;Q1;96;41;115;8497;761;114;7,09;207,24;35,95;0;Russian Federation;Eastern Europe;"Editorial Board of the Journal Uspekhi Khimii (Russian Chemical Reviews)";"1970-2026";"Chemistry (miscellaneous) (Q1)";"Chemistry" +5258;21100335701;"Vaccines";journal;"2076393X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,955;Q1;111;1246;5469;75960;19379;5360;3,61;60,96;49,97;15;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Pharmacology (medical) (Q1); Drug Discovery (Q2); Immunology (Q2); Infectious Diseases (Q2); Pharmacology (Q2)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +5259;4400151717;"Journal of Applied Meteorology and Climatology";journal;"15588432, 15588424";"American Meteorological Society";No;No;0,955;Q2;169;112;310;6522;834;307;2,53;58,23;32,95;0;United States;Northern America;"American Meteorological Society";"1977, 2006-2026";"Atmospheric Science (Q2)";"Earth and Planetary Sciences" +5260;18926;"Journal of Heredity";journal;"14657333, 00221503";"Oxford University Press";No;No;0,955;Q2;108;75;199;5282;570;198;2,30;70,43;39,29;0;United Kingdom;Western Europe;"Oxford University Press";"1905-2026";"Biotechnology (Q2); Genetics (Q2); Genetics (clinical) (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5261;25023;"Computer Graphics Forum";journal;"01677055, 14678659";"Wiley-Blackwell Publishing Ltd";No;No;0,954;Q1;154;313;767;18550;2847;764;2,95;59,27;25,31;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1982-2026";"Computer Graphics and Computer-Aided Design (Q1); Computer Networks and Communications (Q1)";"Computer Science" +5262;19700187630;"Critical Studies in Education";journal;"17508495, 17508487";"Taylor and Francis Ltd.";No;No;0,954;Q1;58;85;96;4876;445;94;4,67;57,36;61,85;5;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Education (Q1)";"Social Sciences" +5263;25181;"Electrochimica Acta";journal;"00134686";"Elsevier Ltd";No;No;0,954;Q1;303;1949;4462;105274;25540;4443;5,78;54,01;36,77;0;United Kingdom;Western Europe;"Elsevier Ltd";"1959-2026";"Chemical Engineering (miscellaneous) (Q1); Electrochemistry (Q1)";"Chemical Engineering; Chemistry" +5264;21255;"Feminist Economics";journal;"14664372, 13545701";"Routledge";No;No;0,954;Q1;80;34;107;2464;441;105;2,99;72,47;63,29;3;United Kingdom;Western Europe;"Routledge";"1995-2026";"Arts and Humanities (miscellaneous) (Q1); Business, Management and Accounting (miscellaneous) (Q1); Gender Studies (Q1); Economics and Econometrics (Q2)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +5265;21101373114;"IEEE Transactions on Technology and Society";journal;"26376415";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,954;Q1;27;47;104;3173;624;100;6,84;67,51;31,72;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Engineering (miscellaneous) (Q1)";"Engineering" +5266;21101017225;"International Journal of Data Science and Analytics";journal;"2364415X, 23644168";"Springer International Publishing";No;No;0,954;Q1;43;431;169;22485;1051;161;4,56;52,17;29,81;2;Switzerland;Western Europe;"Springer International Publishing";"2016-2026";"Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Information Systems (Q1); Modeling and Simulation (Q1)";"Computer Science; Mathematics" +5267;13278;"International Journal of Housing Policy";journal;"19491247, 19491255";"Taylor and Francis Ltd.";No;No;0,954;Q1;49;83;108;5202;397;99;3,50;62,67;53,23;11;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +5268;29930;"Journal of Cancer Research and Clinical Oncology";journal;"01715216, 14321335";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,954;Q1;118;338;2229;13779;7623;2184;3,40;40,77;42,24;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1979-2026";"Medicine (miscellaneous) (Q1); Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5269;130100;"Journal of Educational Administration";journal;"09578234";"Emerald Group Publishing Ltd.";No;No;0,954;Q1;80;57;129;3033;466;117;3,01;53,21;51,01;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1963-2026";"Education (Q1); Public Administration (Q1)";"Social Sciences" +5270;5800207542;"Linguistic Typology";journal;"14300532, 1613415X";"De Gruyter Mouton";Yes;Yes;0,954;Q1;48;34;56;2014;107;54;1,63;59,24;47,22;0;Germany;Western Europe;"De Gruyter Mouton";"1997-2025";"Linguistics and Language (Q1)";"Social Sciences" +5271;21101024040;"Soil Systems";journal;"25718789";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,954;Q1;38;137;341;9610;1696;336;4,71;70,15;37,65;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2026";"Earth-Surface Processes (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +5272;13307;"Nutrition";journal;"18731244, 08999007";"Elsevier Inc.";No;No;0,954;Q2;174;213;816;10509;3067;775;3,71;49,34;53,12;0;United States;Northern America;"Elsevier Inc.";"1987-2026";"Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +5273;24469;"Child Maltreatment";journal;"10775595, 15526119";"SAGE Publications Inc.";No;No;0,953;Q1;107;90;198;5070;686;183;3,16;56,33;72,89;4;United States;Northern America;"SAGE Publications Inc.";"1996-2026";"Pediatrics, Perinatology and Child Health (Q1); Social Work (Q1); Developmental and Educational Psychology (Q2)";"Medicine; Psychology; Social Sciences" +5274;21101307607;"Cleaner Water";journal;"29502632";"Elsevier B.V.";Yes;No;0,953;Q1;11;122;55;9730;364;55;6,62;79,75;34,60;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Environmental Engineering (Q1)";"Environmental Science" +5275;21101112809;"Current Research in Parasitology and Vector-Borne Diseases";journal;"2667114X";"Elsevier B.V.";Yes;No;0,953;Q1;20;104;145;6502;568;145;3,34;62,52;48,56;1;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Animal Science and Zoology (Q1); Insect Science (Q1); Parasitology (Q1); Veterinary (miscellaneous) (Q1); Virology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Veterinary" +5276;26831;"Deep-Sea Research Part II: Topical Studies in Oceanography";journal;"09670645";"Elsevier Ltd";No;No;0,953;Q1;168;80;233;5777;722;221;3,61;72,21;42,55;0;United Kingdom;Western Europe;"Elsevier Ltd";"1993-2026";"Oceanography (Q1)";"Earth and Planetary Sciences" +5277;21100908527;"Ecosystem Health and Sustainability";journal;"23328878, 20964129";"American Association for the Advancement of Science";Yes;No;0,953;Q1;48;80;168;4042;667;167;3,55;50,53;37,68;0;United Kingdom;Western Europe;"American Association for the Advancement of Science";"2015-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Management, Monitoring, Policy and Law (Q2)";"Agricultural and Biological Sciences; Environmental Science" +5278;50101;"Experimental Biology and Medicine";journal;"15353699, 15353702";"Frontiers Media SA";Yes;No;0,953;Q1;169;93;508;5692;1964;498;3,82;61,20;48,60;0;United States;Northern America;"Frontiers Media SA";"1996-2026";"Medicine (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5279;19700201678;"IEEE Journal on Emerging and Selected Topics in Circuits and Systems";journal;"21563357, 21563365";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,953;Q1;74;68;252;3502;1221;243;4,41;51,50;20,35;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2011-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +5280;4400151417;"Integrated Environmental Assessment and Management";journal;"15513793, 15513777";"Oxford University Press";No;No;0,953;Q1;83;136;484;7134;1628;426;3,28;52,46;37,25;3;United States;Northern America;"Oxford University Press";"2005-2026";"Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Medicine (miscellaneous) (Q1)";"Environmental Science; Medicine; Social Sciences" +5281;23832;"Journal of Cardiovascular Electrophysiology";journal;"15408167, 10453873";"John Wiley and Sons Inc";No;No;0,953;Q1;157;475;1127;9719;2155;803;2,09;20,46;21,86;0;United States;Northern America;"John Wiley and Sons Inc";"1990-2026";"Cardiology and Cardiovascular Medicine (Q1); Physiology (medical) (Q2)";"Medicine" +5282;22633;"Learning Disability Quarterly";journal;"07319487, 2168376X";"SAGE Publications Inc.";No;No;0,953;Q1;66;23;71;1331;234;68;2,93;57,87;64,00;0;United States;Northern America;"SAGE Publications Inc.";"1978-2026";"Education (Q1); Health Professions (miscellaneous) (Q1); Behavioral Neuroscience (Q2)";"Health Professions; Neuroscience; Social Sciences" +5283;13717;"Powder Technology";journal;"1873328X, 00325910";"Elsevier B.V.";No;No;0,953;Q1;191;973;3001;48368;16625;2991;5,55;49,71;28,27;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Chemical Engineering (miscellaneous) (Q1)";"Chemical Engineering" +5284;19900191969;"Solid Earth";journal;"18699510, 18699529";"Copernicus Publications";Yes;No;0,953;Q1;72;69;224;5337;638;224;2,38;77,35;24,93;0;Germany;Western Europe;"Copernicus Publications";"2010-2026";"Earth-Surface Processes (Q1); Geochemistry and Petrology (Q1); Geology (Q1); Geophysics (Q1); Paleontology (Q1); Soil Science (Q1); Stratigraphy (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +5285;21101053571;"Translation, Cognition and Behavior";journal;"25425285, 25425277";"John Benjamins Publishing Company";No;No;0,953;Q1;15;5;38;365;71;34;1,77;73,00;22,22;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2018-2026";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +5286;28668;"Acta Oncologica";journal;"1651226X, 0284186X";"Medical Journals Sweden AB";Yes;No;0,952;Q1;127;208;614;7024;1419;480;2,31;33,77;55,86;0;United Kingdom;Western Europe;"Medical Journals Sweden AB";"1963-1966, 1968-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Hematology (Q2); Oncology (Q2)";"Medicine" +5287;22416;"American Journal of Cardiovascular Drugs";journal;"11753277, 1179187X";"";No;No;0,952;Q1;66;87;188;3879;604;174;3,39;44,59;35,81;0;Switzerland;Western Europe;"";"2001-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1)";"Medicine" +5288;15221;"Archives of Orthopaedic and Trauma Surgery";journal;"14343916, 09368051";"Springer Science and Business Media Deutschland GmbH";No;No;0,952;Q1;104;506;1763;17728;4931;1755;2,78;35,04;19,34;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1989-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +5289;26590;"Colloids and Surfaces B: Biointerfaces";journal;"09277765, 18734367";"Elsevier B.V.";No;No;0,952;Q1;215;779;1718;49552;11292;1716;6,69;63,61;44,09;1;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Colloid and Surface Chemistry (Q1); Medicine (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1); Surfaces and Interfaces (Q1); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Medicine; Physics and Astronomy" +5290;4100151514;"Critical Care and Resuscitation";journal;"26529335, 14412772";"Elsevier B.V.";No;No;0,952;Q1;47;57;140;1523;291;114;2,28;26,72;33,97;0;Australia;Pacific Region;"Elsevier B.V.";"1999, 2002, 2004-2026";"Anesthesiology and Pain Medicine (Q1); Critical Care and Intensive Care Medicine (Q1); Emergency Medicine (Q1)";"Medicine" +5291;21101066155;"Food Chemistry: Molecular Sciences";journal;"26665662";"Elsevier B.V.";Yes;No;0,952;Q1;30;100;157;5307;1020;154;5,63;53,07;40,03;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Food Science (Q1); Molecular Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +5292;21100868809;"Frontiers in Medicine";journal;"2296858X";"Frontiers Media SA";Yes;No;0,952;Q1;118;4470;9921;191640;35382;9335;3,36;42,87;46,51;4;Switzerland;Western Europe;"Frontiers Media SA";"2014-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +5293;21463;"International Journal of Health Geographics";journal;"1476072X";"BioMed Central Ltd";Yes;No;0,952;Q1;99;47;86;2647;357;84;4,06;56,32;43,50;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Business, Management and Accounting (miscellaneous) (Q1); Computer Science (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Business, Management and Accounting; Computer Science; Medicine" +5294;10400153306;"International Journal of Organizational Analysis";journal;"19348835";"Emerald Group Publishing Ltd.";No;No;0,952;Q1;55;381;439;32257;3169;433;6,19;84,66;43,53;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005-2026";"Strategy and Management (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +5295;11700154505;"Journal of Hospitality, Leisure, Sport and Tourism Education";journal;"14738376";"Elsevier B.V.";No;No;0,952;Q1;51;50;130;3128;771;127;4,96;62,56;40,82;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Education (Q1); Tourism, Leisure and Hospitality Management (Q1)";"Business, Management and Accounting; Social Sciences" +5296;21101038920;"Society and Business Review";journal;"17465680, 17465699";"Emerald Group Publishing Ltd.";No;No;0,952;Q1;25;47;95;4108;667;94;6,80;87,40;40,35;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2019-2026";"Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +5297;21101158942;"Watershed Ecology and the Environment";journal;"25894714";"KeAi Communications Co.";Yes;No;0,952;Q1;17;32;69;2701;372;69;6,12;84,41;32,41;0;China;Asiatic Region;"KeAi Communications Co.";"2019-2026";"Ecology (Q1); Environmental Science (miscellaneous) (Q1); Water Science and Technology (Q1)";"Environmental Science" +5298;4700152459;"Economic Change and Restructuring";journal;"15740277, 15739414";"Springer Netherlands";No;No;0,952;Q2;45;99;383;7380;2221;381;5,85;74,55;31,89;1;Netherlands;Western Europe;"Springer Netherlands";"1996-2002, 2005-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +5299;15504;"Diangong Jishu Xuebao/Transactions of China Electrotechnical Society";journal;"10006753";"Chinese Machine Press";No;No;0,951;Q1;78;543;1716;17178;7332;1713;4,68;31,64;31,14;0;China;Asiatic Region;"Chinese Machine Press";"1998, 2001-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +5300;21101272014;"Ergo";journal;"23304014";"Michigan Publishing";Yes;Yes;0,951;Q1;11;59;173;3015;270;168;1,41;51,10;10,96;0;United States;Northern America;"Michigan Publishing";"2021-2025";"Philosophy (Q1)";"Arts and Humanities" +5301;21331;"European Journal of Pharmaceutical Sciences";journal;"18790720, 09280987";"Elsevier B.V.";Yes;No;0,951;Q1;176;370;761;21839;4472;755;5,82;59,02;45,83;0;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Pharmaceutical Science (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +5302;15031;"Infant Mental Health Journal";journal;"01639641, 10970355";"John Wiley & Sons Inc.";No;No;0,951;Q1;90;56;173;3596;484;172;2,37;64,21;87,22;1;United States;Northern America;"John Wiley & Sons Inc.";"1980-2026";"Pediatrics, Perinatology and Child Health (Q1); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +5303;15962;"Journal of Medical Ethics";journal;"14734257, 03066800";"BMJ Publishing Group";No;No;0,951;Q1;97;331;694;8236;1628;458;2,56;24,88;44,79;8;United Kingdom;Western Europe;"BMJ Publishing Group";"1975-2026";"Arts and Humanities (miscellaneous) (Q1); Health Policy (Q1); Health (social science) (Q1); Issues, Ethics and Legal Aspects (Q1)";"Arts and Humanities; Medicine; Nursing; Social Sciences" +5304;21100928198;"Nanoscale Advances";journal;"25160230";"Royal Society of Chemistry";Yes;No;0,951;Q1;90;526;1664;35638;10015;1650;6,04;67,75;35,83;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2019-2026";"Atomic and Molecular Physics, and Optics (Q1); Chemistry (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Bioengineering (Q2)";"Chemical Engineering; Chemistry; Engineering; Materials Science; Physics and Astronomy" +5305;22415;"American Journal of Cardiology";journal;"00029149, 18791913";"Elsevier Inc.";No;No;0,950;Q1;248;437;2251;10152;4370;1749;1,89;23,23;25,77;1;United States;Northern America;"Elsevier Inc.";"1958-2026";"Cardiology and Cardiovascular Medicine (Q1)";"Medicine" +5306;4400151601;"Asia Pacific Education Review";journal;"1876407X, 15981037";"Springer Science and Business Media B.V.";No;No;0,950;Q1;56;121;250;7875;1036;245;3,48;65,08;50,68;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2003, 2005-2026";"Education (Q1)";"Social Sciences" +5307;21100904468;"Journal of Bone Metabolism";journal;"22876375, 22877029";"Korean Society for Bone and Mineral Research";No;No;0,950;Q1;22;25;106;807;329;104;3,49;32,28;43,75;0;South Korea;Asiatic Region;"Korean Society for Bone and Mineral Research";"2017-2025";"Orthopedics and Sports Medicine (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5308;15945;"Journal of Interprofessional Care";journal;"14699567, 13561820";"Informa Healthcare";No;No;0,950;Q1;96;128;375;5205;1060;361;2,32;40,66;72,65;7;United Kingdom;Western Europe;"Informa Healthcare";"1986-1990, 1992-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +5309;19309;"Journal of Systems and Software";journal;"01641212";"Elsevier Inc.";No;No;0,950;Q1;141;272;663;19115;3902;655;5,88;70,28;26,41;0;United States;Northern America;"Elsevier Inc.";"1979, 1981, 1983-2026";"Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)";"Computer Science" +5310;21100853993;"Neuro-Oncology Practice";journal;"20542577, 20542585";"Oxford University Press";No;No;0,950;Q1;40;119;243;4451;618;190;2,28;37,40;49,41;0;United States;Northern America;"Oxford University Press";"2014-2025";"Medicine (miscellaneous) (Q1); Neurology (Q2); Oncology (Q2)";"Medicine; Neuroscience" +5311;13093;"Quarterly Review of Biology";journal;"15397718, 00335770";"University of Chicago Press";No;No;0,950;Q1;94;7;17;1601;61;15;2,00;228,71;38,10;0;United States;Northern America;"University of Chicago Press";"1945-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1)";"Agricultural and Biological Sciences" +5312;11600154632;"Studies in History and Philosophy of Science";journal;"00393681, 18792510";"Elsevier Ltd";No;No;0,950;Q1;60;70;277;4178;583;267;1,74;59,69;35,63;0;United Kingdom;Western Europe;"Elsevier Ltd";"1970-2026";"History (Q1); History and Philosophy of Science (Q1)";"Arts and Humanities" +5313;19500157803;"Journal of the Knowledge Economy";journal;"18687873, 18687865";"Springer";No;No;0,950;Q2;67;548;1129;44241;7324;1129;6,21;80,73;35,49;5;United States;Northern America;"Springer";"2010-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +5314;21101039478;"Current Research in Toxicology";journal;"2666027X";"Elsevier B.V.";Yes;No;0,949;Q1;21;60;130;3851;599;129;5,29;64,18;44,60;1;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Applied Microbiology and Biotechnology (Q1); Toxicology (Q1); Health, Toxicology and Mutagenesis (Q2)";"Environmental Science; Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +5315;19700175204;"European Geriatric Medicine";journal;"18787657, 18787649";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,949;Q1;52;261;518;10413;1684;450;2,97;39,90;52,55;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2010-2026";"Gerontology (Q1); Geriatrics and Gerontology (Q2)";"Medicine; Nursing" +5316;21100390415;"Global Health Science and Practice";journal;"2169575X";"Johns Hopkins University Press";Yes;Yes;0,949;Q1;53;28;377;941;977;319;2,41;33,61;59,74;0;United States;Northern America;"Johns Hopkins University Press";"2013-2025";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +5317;21101298327;"Global Social Challenges Journal";journal;"27523349";"Policy Press";Yes;No;0,949;Q1;11;22;53;1536;220;48;4,18;69,82;47,89;0;United Kingdom;Western Europe;"Policy Press";"2022-2025";"Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5318;21100229269;"International Journal of Urban Sciences";journal;"12265934, 21616779";"Taylor and Francis Ltd.";No;No;0,949;Q1;38;116;115;7552;574;112;6,00;65,10;41,42;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Geography, Planning and Development (Q1); Urban Studies (Q1)";"Social Sciences" +5319;21100397712;"Journal of Pathology and Translational Medicine";journal;"23837845, 23837837";"Seoul National University";Yes;No;0,949;Q1;42;50;113;1406;318;110;3,06;28,12;50,43;0;South Korea;Asiatic Region;"Seoul National University";"2015-2026";"Pathology and Forensic Medicine (Q1); Histology (Q2)";"Medicine" +5320;19232;"Journal of Plant Growth Regulation";journal;"07217595, 14358107";"Springer";No;No;0,949;Q1;120;556;1069;44315;6028;1067;5,57;79,70;40,29;0;United States;Northern America;"Springer";"1982-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +5321;13900154734;"Journal of the Taiwan Institute of Chemical Engineers";journal;"18761070";"Taiwan Institute of Chemical Engineers";No;No;0,949;Q1;132;521;1254;33961;8449;1250;7,32;65,18;32,37;0;Taiwan;Asiatic Region;"Taiwan Institute of Chemical Engineers";"2009-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)";"Chemical Engineering; Chemistry" +5322;17871;"Medical Physics";journal;"24734209, 00942405";"John Wiley and Sons Ltd";No;No;0,949;Q1;229;864;1937;35017;7345;1887;3,45;40,53;31,16;0;United States;Northern America;"John Wiley and Sons Ltd";"1974-2026";"Biophysics (Q1); Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5323;21101053698;"Transportation Engineering";journal;"2666691X";"Elsevier Ltd";Yes;No;0,949;Q1;31;117;185;6548;1239;185;6,73;55,97;22,11;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Aerospace Engineering (Q1); Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering" +5324;21101156994;"Journal of Allergy and Clinical Immunology: Global";journal;"27728293";"Elsevier B.V.";Yes;No;0,949;Q2;15;209;313;6025;908;305;2,91;28,83;45,05;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Immunology and Allergy (Q2)";"Medicine" +5325;26649;"Neuroendocrinology";journal;"00283835, 14230194";"S. Karger AG";No;No;0,949;Q2;119;88;263;6326;808;258;2,81;71,89;48,21;0;Switzerland;Western Europe;"S. Karger AG";"1965, 1967-2026";"Endocrine and Autonomic Systems (Q2); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Cellular and Molecular Neuroscience (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +5326;21101120603;"ChemPhysMater";journal;"27725715, 20970323";"KeAi Communications Co.";Yes;No;0,948;Q1;19;47;112;3229;675;112;5,69;68,70;31,65;1;China;Asiatic Region;"KeAi Communications Co.";"2022-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +5327;12859;"Cognition and Instruction";journal;"1532690X, 07370008";"Routledge";No;No;0,948;Q1;102;15;53;1314;175;53;2,72;87,60;58,70;0;United Kingdom;Western Europe;"Routledge";"1984-2026";"Education (Q1); Psychology (miscellaneous) (Q1); Applied Psychology (Q2); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)";"Psychology; Social Sciences" +5328;21100248023;"CPT: Pharmacometrics and Systems Pharmacology";journal;"21638306";"American Society for Clinical Pharmacology and Therapeutics";Yes;No;0,948;Q1;66;194;480;6906;1503;454;2,94;35,60;40,29;0;United States;Northern America;"American Society for Clinical Pharmacology and Therapeutics";"2012-2026";"Cardiology and Cardiovascular Medicine (Q1); Modeling and Simulation (Q1); Pharmacology (medical) (Q1)";"Mathematics; Medicine" +5329;17426;"DNA Research";journal;"17561663, 13402838";"Oxford University Press";Yes;No;0,948;Q1;120;38;113;2599;365;113;2,81;68,39;28,74;0;United Kingdom;Western Europe;"Oxford University Press";"1994-2026";"Medicine (miscellaneous) (Q1); Genetics (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5330;21101257208;"IEEE Open Journal of Control Systems";journal;"2694085X";"Institute of Electrical and Electronics Engineers";Yes;No;0,948;Q1;11;43;93;1870;258;93;2,57;43,49;16,41;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2022-2026";"Computer Vision and Pattern Recognition (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1); Human-Computer Interaction (Q2)";"Computer Science; Engineering" +5331;26319;"Sedimentary Geology";journal;"00370738";"Elsevier B.V.";No;No;0,948;Q1;145;99;370;10443;1267;370;3,47;105,48;27,72;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Geology (Q1); Stratigraphy (Q1)";"Earth and Planetary Sciences" +5332;14231;"Statistical Methods in Medical Research";journal;"14770334, 09622802";"SAGE Publications Ltd";No;No;0,948;Q1;113;148;421;5803;1007;419;2,55;39,21;40,08;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2026";"Statistics and Probability (Q1); Epidemiology (Q2); Health Information Management (Q2)";"Health Professions; Mathematics; Medicine" +5333;21100348991;"Therapeutic Advances in Infectious Disease";journal;"2049937X, 20499361";"SAGE Publications Inc.";Yes;No;0,948;Q2;38;90;257;4780;856;230;3,47;53,11;41,23;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2013-2026";"Infectious Diseases (Q2); Pharmacology (medical) (Q2)";"Medicine" +5334;21101023387;"Batteries and Supercaps";journal;"25666223";"Wiley-VCH Verlag";No;No;0,947;Q1;52;377;701;23492;2991;689;4,16;62,31;30,17;0;Germany;Western Europe;"Wiley-VCH Verlag";"2018-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Electrochemistry (Q2)";"Chemistry; Energy; Engineering" +5335;16876;"Bioconjugate Chemistry";journal;"15204812, 10431802";"American Chemical Society";No;No;0,947;Q1;204;236;649;12936;2727;640;4,30;54,81;41,14;0;United States;Northern America;"American Chemical Society";"1973, 1990-2026";"Organic Chemistry (Q1); Pharmaceutical Science (Q1); Bioengineering (Q2); Biomedical Engineering (Q2); Biotechnology (Q2); Pharmacology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Engineering; Pharmacology, Toxicology and Pharmaceutics" +5336;19700175081;"Clinical Ophthalmology";journal;"11775467, 11775483";"Dove Medical Press Ltd";Yes;No;0,947;Q1;91;479;1211;14725;3269;1140;2,59;30,74;37,59;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Ophthalmology (Q1)";"Medicine" +5337;28694;"Geographical Journal";journal;"00167398, 14754959";"Wiley-Blackwell Publishing Ltd";No;No;0,947;Q1;84;76;167;3733;782;145;3,30;49,12;40,37;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1973, 1975-1976, 1978-1994, 1996-2026";"Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +5338;15047;"IEEE Sensors Journal";journal;"1530437X, 15581748";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,947;Q1;188;4125;9411;166636;50593;9399;5,04;40,40;29,33;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2001-2026";"Electrical and Electronic Engineering (Q1); Instrumentation (Q1)";"Engineering; Physics and Astronomy" +5339;12722;"Journal of Pediatric Gastroenterology and Nutrition";journal;"02772116, 15364801";"John Wiley and Sons Inc";Yes;No;0,947;Q1;167;306;1006;10171;2957;889;3,08;33,24;52,88;0;United States;Northern America;"John Wiley and Sons Inc";"1982-2026";"Pediatrics, Perinatology and Child Health (Q1); Gastroenterology (Q2)";"Medicine" +5340;19912;"Physical Therapy in Sport";journal;"1466853X, 18731600";"Churchill Livingstone";No;No;0,947;Q1;72;108;313;4796;893;313;2,60;44,41;33,20;0;United States;Northern America;"Churchill Livingstone";"2000-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)";"Health Professions; Medicine" +5341;15550;"European Journal of Neuroscience";journal;"14609568, 0953816X";"John Wiley and Sons Inc";No;No;0,947;Q2;238;415;1097;29443;3107;1042;2,43;70,95;40,23;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1989-2026";"Neuroscience (miscellaneous) (Q2)";"Neuroscience" +5342;4100151703;"Neuropsychiatric Disease and Treatment";journal;"11782021";"Dove Medical Press Ltd";Yes;No;0,947;Q2;106;217;723;11369;2469;687;3,10;52,39;46,02;0;United Kingdom;Western Europe;"Dove Medical Press Ltd";"2001, 2006-2026";"Psychiatry and Mental Health (Q2); Biological Psychiatry (Q3)";"Medicine; Neuroscience" +5343;21101196455;"Al-Ahkam";journal;"08544603, 25023209";"State Islamic University Walisongo Semarang";Yes;No;0,946;Q1;12;16;40;925;176;40;4,54;57,81;22,73;0;Indonesia;Asiatic Region;"State Islamic University Walisongo Semarang";"2020-2025";"Law (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +5344;29595;"Applied Spectroscopy Reviews";journal;"05704928, 1520569X";"Taylor and Francis Ltd.";No;No;0,946;Q1;92;50;109;6017;876;108;7,25;120,34;37,93;0;United States;Northern America;"Taylor and Francis Ltd.";"1967-1989, 1991-2026";"Instrumentation (Q1); Spectroscopy (Q1)";"Chemistry; Physics and Astronomy" +5345;5800208102;"Corpus Linguistics and Linguistic Theory";journal;"16137027, 16137035";"De Gruyter Mouton";No;No;0,946;Q1;37;41;62;2410;158;62;2,56;58,78;49,35;1;Germany;Western Europe;"De Gruyter Mouton";"2005-2026";"Linguistics and Language (Q1)";"Social Sciences" +5346;21101136809;"Current Research in Ecological and Social Psychology";journal;"26666227";"Elsevier B.V.";Yes;No;0,946;Q1;17;41;171;3178;620;171;3,37;77,51;52,69;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Geography, Planning and Development (Q1); Psychology (miscellaneous) (Q1); Social Psychology (Q1); Human Factors and Ergonomics (Q2)";"Psychology; Social Sciences" +5347;21101077279;"Frontiers in Agronomy";journal;"26733218";"Frontiers Media SA";Yes;No;0,946;Q1;37;216;362;13674;1897;333;4,19;63,31;33,93;8;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q1); Plant Science (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences" +5348;11600153433;"Games and Culture";journal;"15554139, 15554120";"SAGE Publications Inc.";No;No;0,946;Q1;70;95;200;5513;750;199;3,12;58,03;39,06;0;United States;Northern America;"SAGE Publications Inc.";"2006-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Communication (Q1); Cultural Studies (Q1); Applied Psychology (Q2); Human-Computer Interaction (Q2)";"Arts and Humanities; Computer Science; Psychology; Social Sciences" +5349;5800207556;"International Journal of Corpus Linguistics";journal;"15699811, 13846655";"John Benjamins Publishing Company";No;No;0,946;Q1;58;23;60;1318;222;59;4,10;57,30;56,36;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1996-2025";"Linguistics and Language (Q1)";"Social Sciences" +5350;21100890158;"Journal of Family Business Management";journal;"20436238, 20436246";"Emerald Group Publishing Ltd.";No;No;0,946;Q1;41;103;230;8622;1299;218;5,86;83,71;37,15;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +5351;7000153262;"Journal of Forestry Research";journal;"1007662X, 19930607";"Springer Nature";No;No;0,946;Q1;55;140;467;9264;1999;461;4,21;66,17;32,55;1;China;Asiatic Region;"Springer Nature";"1996-1998, 2004, 2006-2026";"Forestry (Q1)";"Agricultural and Biological Sciences" +5352;21100220486;"Journal of Pharmaceutical Investigation";journal;"20935552, 20936214";"Springer";No;No;0,946;Q1;50;86;146;7462;948;146;6,79;86,77;40,05;0;Singapore;Asiatic Region;"Springer";"2012-2026";"Pharmaceutical Science (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +5353;21100782672;"Journal of Spectral Theory";journal;"1664039X, 16640403";"European Mathematical Society Publishing House";Yes;Yes;0,946;Q1;23;41;136;1372;140;136;0,88;33,46;17,28;0;Switzerland;Western Europe;"European Mathematical Society Publishing House";"2011-2025";"Geometry and Topology (Q1); Mathematical Physics (Q1); Statistical and Nonlinear Physics (Q1)";"Mathematics; Physics and Astronomy" +5354;20495;"Renal Failure";journal;"0886022X, 15256049";"Taylor and Francis Ltd.";Yes;No;0,946;Q1;76;622;1036;30013;3886;973;3,73;48,25;46,42;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976-1985, 1987, 1989-2026";"Critical Care and Intensive Care Medicine (Q1); Medicine (miscellaneous) (Q1); Nephrology (Q1)";"Medicine" +5355;21101021638;"Stochastic Systems";journal;"19465238";"INFORMS Inst.for Operations Res.and the Management Sciences";Yes;Yes;0,946;Q1;11;11;50;466;79;49;1,58;42,36;24,14;0;United States;Northern America;"INFORMS Inst.for Operations Res.and the Management Sciences";"2019-2025";"Management Science and Operations Research (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +5356;21100915392;"Synthetic Biology";journal;"23977000, 19397267";"Oxford University Press";Yes;No;0,946;Q1;22;20;64;1011;147;60;2,57;50,55;32,67;0;United Kingdom;Western Europe;"Oxford University Press";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2); Biotechnology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +5357;20941;"Ultramicroscopy";journal;"03043991, 18792723";"Elsevier B.V.";No;No;0,946;Q1;144;95;358;4299;914;356;2,46;45,25;20,86;0;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1); Instrumentation (Q1)";"Materials Science; Physics and Astronomy" +5358;144794;"Written Communication";journal;"07410883, 15528472";"SAGE Publications Inc.";No;No;0,946;Q1;70;30;86;1841;265;81;2,97;61,37;57,38;0;United States;Northern America;"SAGE Publications Inc.";"1984-2026";"Communication (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +5359;23404;"Experimental Physiology";journal;"1469445X, 09580670";"John Wiley and Sons Inc";Yes;No;0,946;Q2;123;328;506;16492;1532;440;2,86;50,28;33,21;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1990-2026";"Nutrition and Dietetics (Q2); Physiology (Q2); Physiology (medical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +5360;28067;"Applied Numerical Mathematics";journal;"01689274";"Elsevier B.V.";No;No;0,945;Q1;95;223;665;8073;1760;663;2,55;36,20;31,32;0;Netherlands;Western Europe;"Elsevier B.V.";"1985-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Numerical Analysis (Q1)";"Mathematics" +5361;21100197977;"Cartilage";journal;"19476035, 19476043";"SAGE Publications Inc.";No;No;0,945;Q1;61;105;203;4530;754;196;3,07;43,14;28,40;2;United States;Northern America;"SAGE Publications Inc.";"2010-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Biomedical Engineering (Q2); Immunology and Allergy (Q2)";"Engineering; Health Professions; Medicine" +5362;21100914882;"Gels";journal;"23102861";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,945;Q1;79;1008;2656;75196;18345;2616;6,71;74,60;46,45;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2026";"Organic Chemistry (Q1); Polymers and Plastics (Q1); Bioengineering (Q2); Biomaterials (Q2)";"Chemical Engineering; Chemistry; Materials Science" +5363;21312;"Health Promotion International";journal;"09574824, 14602245";"Oxford University Press";No;No;0,945;Q1;110;250;728;14034;2280;701;3,29;56,14;69,21;6;United Kingdom;Western Europe;"Oxford University Press";"1986-2026";"Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +5364;39526;"IIC International Review of Intellectual Property and Competition Law";journal;"00189855, 21950237";"Springer International Publishing AG";No;No;0,945;Q1;29;63;161;3597;342;121;2,21;57,10;55,41;2;Germany;Western Europe;"Springer International Publishing AG";"1982, 1989, 1991, 1994-2026";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +5365;29897;"International Journal of Clinical Oncology";journal;"13419625, 14377772";"Springer";No;No;0,945;Q1;83;268;587;10002;1778;580;2,99;37,32;19,04;0;Japan;Asiatic Region;"Springer";"1996-2026";"Medicine (miscellaneous) (Q1); Surgery (Q1); Hematology (Q2); Oncology (Q2)";"Medicine" +5366;18800156713;"International Journal of Construction Management";journal;"15623599, 23312327";"Taylor and Francis Ltd.";No;No;0,945;Q1;62;256;666;15536;4387;666;6,13;60,69;26,01;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Architecture (Q1); Building and Construction (Q1); Strategy and Management (Q1); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Engineering" +5367;21100227425;"International Journal of E-Health and Medical Communications";journal;"19473168, 1947315X";"IGI Global Publishing";No;No;0,945;Q1;22;4;29;231;261;29;13,88;57,75;40,00;0;United States;Northern America;"IGI Global Publishing";"2010-2025";"Computer Science Applications (Q1); Health Informatics (Q2)";"Computer Science; Medicine" +5368;5700164218;"International Relations";journal;"17412862, 00471178";"SAGE Publications Ltd";No;No;0,945;Q1;52;55;113;4094;306;113;2,56;74,44;30,12;5;United Kingdom;Western Europe;"SAGE Publications Ltd";"1957-1965, 1967-1972, 1975-2026";"Political Science and International Relations (Q1)";"Social Sciences" +5369;13180;"Journal of Renal Nutrition";journal;"15328503, 10512276";"W.B. Saunders";No;No;0,945;Q1;76;143;302;5080;936;267;3,12;35,52;49,71;0;United States;Northern America;"W.B. Saunders";"1991-2026";"Medicine (miscellaneous) (Q1); Nephrology (Q1); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +5370;12140;"Journal of Time Series Analysis";journal;"01439782, 14679892";"Wiley-Blackwell";No;No;0,945;Q1;64;115;128;4443;209;116;1,27;38,63;21,66;2;United States;Northern America;"Wiley-Blackwell";"1980-2026";"Applied Mathematics (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +5371;144821;"Language Policy";journal;"15731863, 15684555";"Springer Science and Business Media B.V.";No;No;0,945;Q1;49;29;69;1716;257;63;4,46;59,17;73,91;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2002-2026";"Linguistics and Language (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5372;10900153311;"Musicae Scientiae";journal;"10298649, 20454147";"SAGE Publications Inc.";No;No;0,945;Q1;53;39;132;2833;405;128;2,76;72,64;61,48;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1997-2026";"Music (Q1); Experimental and Cognitive Psychology (Q2)";"Arts and Humanities; Psychology" +5373;4100151536;"Research in Transportation Economics";journal;"07398859";"Emerald Publishing";No;No;0,945;Q1;78;130;217;7191;1073;212;4,50;55,32;39,09;5;United States;Northern America;"Emerald Publishing";"1994, 1996, 1999, 2001, 2004-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Transportation (Q2)";"Economics, Econometrics and Finance; Social Sciences" +5374;25450;"Best Practice and Research: Clinical Haematology";journal;"15321924, 15216926";"Bailliere Tindall Ltd";No;No;0,945;Q2;84;26;129;2459;339;119;2,93;94,58;45,45;0;United Kingdom;Western Europe;"Bailliere Tindall Ltd";"1999-2025";"Clinical Biochemistry (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5375;12858;"Cognition and Emotion";journal;"02699931, 14640600";"Routledge";No;No;0,944;Q1;163;220;326;12482;923;310;2,56;56,74;56,11;0;United Kingdom;Western Europe;"Routledge";"1987-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)";"Arts and Humanities; Psychology" +5376;21100357506;"Colloids and Interface Science Communications";journal;"22150382";"Elsevier B.V.";Yes;No;0,944;Q1;57;42;249;2265;1559;249;6,85;53,93;32,86;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Materials Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Surfaces, Coatings and Films (Q1); Biotechnology (Q2); Colloid and Surface Chemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Materials Science" +5377;5700165148;"European Constitutional Law Review";journal;"17445515, 15740196";"Cambridge University Press";Yes;No;0,944;Q1;42;27;96;3126;197;95;1,65;115,78;40,00;0;United Kingdom;Western Europe;"Cambridge University Press";"2005-2026";"Law (Q1)";"Social Sciences" +5378;9700153238;"International Transactions in Operational Research";journal;"09696016, 14753995";"John Wiley and Sons Inc";No;No;0,944;Q1;75;231;449;12425;2032;438;4,89;53,79;37,66;0;Denmark;Western Europe;"John Wiley and Sons Inc";"1994-2026";"Business and International Management (Q1); Computer Science Applications (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences" +5379;21100258397;"Journal of Integrative Medicine";journal;"20954964";"Elsevier (Singapore) Pte Ltd";No;No;0,944;Q1;55;76;184;4948;920;170;5,14;65,11;46,05;0;Singapore;Asiatic Region;"Elsevier (Singapore) Pte Ltd";"2013-2026";"Complementary and Alternative Medicine (Q1)";"Medicine" +5380;21101297958;"Journal of Machine Learning for Modeling and Computing";journal;"26893975, 26893967";"Begell House Inc.";No;No;0,944;Q1;13;21;59;861;198;57;3,74;41,00;22,54;0;United States;Northern America;"Begell House Inc.";"2020-2025";"Computational Mechanics (Q1); Computer Science (miscellaneous) (Q1); Modeling and Simulation (Q1); Artificial Intelligence (Q2)";"Computer Science; Engineering; Mathematics" +5381;21100920649;"Physics and Imaging in Radiation Oncology";journal;"24056316";"Elsevier Ireland Ltd";Yes;No;0,944;Q1;35;201;379;7240;1137;362;3,00;36,02;35,48;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"2017-2026";"Radiation (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)";"Medicine; Physics and Astronomy" +5382;16514;"Review of Research in Education";journal;"0091732X, 19351038";"SAGE Publications Inc.";No;No;0,944;Q1;88;0;52;0;202;40;2,61;0,00;0,00;0;United States;Northern America;"SAGE Publications Inc.";"1973-1981, 1983-1988, 1990-2000, 2002-2024";"Education (Q1)";"Social Sciences" +5383;28297;"Digestion";journal;"14219867, 00122823";"S. Karger AG";No;No;0,944;Q2;96;94;154;4942;585;151;3,95;52,57;23,67;0;Switzerland;Western Europe;"S. Karger AG";"1896, 1898-2026";"Gastroenterology (Q2)";"Medicine" +5384;21100786205;"Experimental Neurobiology";journal;"12262560, 20938144";"Korean Society for Neurodegenerative Disease";Yes;No;0,944;Q2;37;22;95;1262;254;95;2,55;57,36;38,06;0;South Korea;Asiatic Region;"Korean Society for Neurodegenerative Disease";"2015-2025";"Neurology (clinical) (Q2); Cellular and Molecular Neuroscience (Q3)";"Medicine; Neuroscience" +5385;16791;"Biochimica et Biophysica Acta - Bioenergetics";journal;"00052728, 18792650";"Elsevier B.V.";No;No;0,943;Q1;203;60;168;4018;503;166;2,99;66,97;42,52;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Biophysics (Q1); Biochemistry (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +5386;18455;"Cell Cycle";journal;"15384101, 15514005";"Taylor and Francis Ltd.";No;No;0,943;Q1;182;41;437;2840;1667;436;3,40;69,27;48,76;0;United States;Northern America;"Taylor and Francis Ltd.";"2002-2026";"Medicine (miscellaneous) (Q1); Developmental Biology (Q2); Molecular Biology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5387;19700187804;"Children's Geographies";journal;"14733277, 14733285";"Carfax Publishing Ltd.";No;No;0,943;Q1;74;71;248;4026;802;231;3,08;56,70;76,44;1;United Kingdom;Western Europe;"Carfax Publishing Ltd.";"2003-2026";"Geography, Planning and Development (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)";"Psychology; Social Sciences" +5388;19700188321;"Database : the journal of biological databases and curation";journal;"17580463";"Oxford University Press";Yes;No;0,943;Q1;93;89;336;4172;1093;336;2,33;46,88;40,27;0;United Kingdom;Western Europe;"Oxford University Press";"2009-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Information Systems (Q1); Medicine (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Computer Science; Medicine" +5389;21100842665;"Earth and Space Science";journal;"23335084";"Wiley-Blackwell Publishing Ltd";Yes;No;0,943;Q1;62;288;859;16529;2852;828;3,34;57,39;30,75;0;United States;Northern America;"Wiley-Blackwell Publishing Ltd";"2014-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Earth and Planetary Sciences; Environmental Science" +5390;21101066387;"Frontiers in Water";journal;"26249375";"Frontiers Media SA";Yes;No;0,943;Q1;37;188;606;12368;2300;552;3,68;65,79;35,84;5;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Water Science and Technology (Q1)";"Environmental Science" +5391;5700163852;"Globalisation, Societies and Education";journal;"14767732, 14767724";"Routledge";No;No;0,943;Q1;52;187;260;10982;971;252;3,38;58,73;50,48;6;United Kingdom;Western Europe;"Routledge";"2009-2026";"Education (Q1)";"Social Sciences" +5392;17510;"Journal of Great Lakes Research";journal;"03801330";"International Association of Great Lakes Research";No;No;0,943;Q1;101;176;413;11811;1120;387;2,74;67,11;35,58;2;United States;Northern America;"International Association of Great Lakes Research";"1975-2026";"Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +5393;19555;"Veterinary Research";journal;"09284249, 12979716";"BioMed Central Ltd";Yes;No;0,943;Q1;135;244;387;51;1598;386;3,53;0,21;46,61;1;United Kingdom;Western Europe;"BioMed Central Ltd";"1993-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +5394;21101042192;"World Tax Journal";journal;"23529237, 18784917";"International Bureau of Fiscal Documentation (IBFD)";No;No;0,943;Q1;11;20;61;1667;55;59;0,78;83,35;35,90;3;Netherlands;Western Europe;"International Bureau of Fiscal Documentation (IBFD)";"2019-2025";"Law (Q1); Accounting (Q2); Economics and Econometrics (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +5395;19700175259;"Journal of Geriatric Oncology";journal;"18794068, 18794076";"Elsevier Ltd";No;No;0,943;Q2;63;174;548;5935;1456;529;2,34;34,11;54,36;0;United Kingdom;Western Europe;"Elsevier Ltd";"2010-2026";"Geriatrics and Gerontology (Q2); Oncology (Q2)";"Medicine" +5396;17526;"Neurologic Clinics";journal;"07338619, 15579875";"W.B. Saunders";No;No;0,943;Q2;108;56;185;4014;635;162;3,92;71,68;44,23;0;United States;Northern America;"W.B. Saunders";"1983-2026";"Neurology (clinical) (Q2)";"Medicine" +5397;21101357988;"Advances in Wind Engineering";journal;"29506018";"KeAi Publishing Communications Ltd.";No;No;0,942;Q1;6;23;16;1146;105;15;6,56;49,83;31,94;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2024-2025";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Safety, Risk, Reliability and Quality (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Engineering" +5398;5600155004;"Contemporary Politics";journal;"14693631, 13569775";"Routledge";No;No;0,942;Q1;45;67;94;5508;331;93;3,52;82,21;41,51;4;United Kingdom;Western Europe;"Routledge";"1995-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5399;21101092741;"Critical Care Explorations";journal;"26398028";"Lippincott Williams and Wilkins";Yes;No;0,942;Q1;41;146;575;5117;1661;573;2,62;35,05;40,20;0;United States;Northern America;"Lippincott Williams and Wilkins";"2019-2026";"Critical Care and Intensive Care Medicine (Q1)";"Medicine" +5400;23509;"Ethical Theory and Moral Practice";journal;"13862820, 15728447";"Springer Netherlands";No;No;0,942;Q1;42;67;165;2392;360;150;1,93;35,70;29,76;0;Netherlands;Western Europe;"Springer Netherlands";"1999-2002, 2004-2026";"Philosophy (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +5401;21101092738;"Food Hydrocolloids for Health";journal;"26670259";"Elsevier B.V.";Yes;No;0,942;Q1;28;64;139;4120;942;136;5,82;64,38;46,13;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Food Science (Q1); Pharmaceutical Science (Q1); Gastroenterology (Q2); Nutrition and Dietetics (Q2)";"Agricultural and Biological Sciences; Medicine; Nursing; Pharmacology, Toxicology and Pharmaceutics" +5402;17343;"IEEE Transactions on Dielectrics and Electrical Insulation";journal;"10709878, 15584135";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,942;Q1;159;603;1034;17837;4689;1030;4,38;29,58;27,58;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1994-2026";"Electrical and Electronic Engineering (Q1)";"Engineering" +5403;21101068040;"IEEE Transactions on Quantum Engineering";journal;"26891808";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,942;Q1;37;75;191;3811;1128;190;5,30;50,81;16,38;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Computer Science Applications (Q1); Computer Science (miscellaneous) (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Engineering (miscellaneous) (Q1); Mechanical Engineering (Q1); Software (Q1)";"Computer Science; Engineering; Physics and Astronomy" +5404;16973;"Pathology";journal;"14653931, 00313025";"Elsevier B.V.";No;No;0,942;Q1;84;177;552;5250;1026;277;1,93;29,66;45,53;1;United States;Northern America;"Elsevier B.V.";"1969-2026";"Pathology and Forensic Medicine (Q1)";"Medicine" +5405;13466;"Psychological Research";journal;"14302772, 03400727";"Springer Verlag";No;No;0,942;Q1;97;180;547;11077;1423;544;2,45;61,54;45,35;0;Germany;Western Europe;"Springer Verlag";"1974-2026";"Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)";"Arts and Humanities; Medicine; Psychology" +5406;21100898706;"Sexual and Reproductive Health Matters";journal;"26410397";"Taylor and Francis Ltd.";Yes;No;0,942;Q1;74;52;239;2554;752;191;2,71;49,12;74,27;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2025";"Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)";"Medicine" +5407;21101018849;"ACS Pharmacology and Translational Science";journal;"25759108";"American Chemical Society";No;No;0,942;Q2;51;307;571;22411;2361;559;4,18;73,00;45,91;0;United States;Northern America;"American Chemical Society";"2018-2026";"Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +5408;14820;"Infant and Child Development";journal;"15227227, 15227219";"John Wiley and Sons Ltd";No;No;0,942;Q2;75;79;274;5315;848;216;2,96;67,28;71,84;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1996-2026";"Developmental and Educational Psychology (Q2)";"Psychology" +5409;21101288812;"ASEAN Journal for Science and Engineering in Materials";journal;"28289951, 2828920X";"Yayasan Bumi Publikasi Nusantara";No;No;0,941;Q1;13;21;45;910;171;45;4,57;43,33;31,37;0;Indonesia;Asiatic Region;"Yayasan Bumi Publikasi Nusantara";"2022-2026";"Ceramics and Composites (Q1); Chemical Engineering (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Mechanical Engineering (Q1)";"Chemical Engineering; Engineering; Materials Science" +5410;21101180567;"Biophysics Reviews";journal;"26884089";"American Institute of Physics";No;No;0,941;Q1;17;26;93;3198;415;92;4,16;123,00;29,89;0;United States;Northern America;"American Institute of Physics";"2020-2026";"Biophysics (Q1); Bioengineering (Q2); Biomaterials (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Materials Science" +5411;21101303338;"Carbon Footprints";journal;"2831932X";"OAE Publishing Inc.";No;No;0,941;Q1;11;37;46;2346;219;44;4,37;63,41;39,46;0;United States;Northern America;"OAE Publishing Inc.";"2022-2025";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +5412;21101054327;"CMAJ Open";journal;"22910026";"Canadian Medical Association";No;No;0,941;Q1;41;0;166;0;414;166;2,83;0,00;0,00;0;Canada;Northern America;"Canadian Medical Association";"2017-2023";"Medicine (miscellaneous) (Q1)";"Medicine" +5413;21100216571;"Frontiers in Psychology";journal;"16641078";"Frontiers Media SA";Yes;No;0,941;Q1;241;3820;16990;235560;75438;16029;3,94;61,66;50,36;9;Switzerland;Western Europe;"Frontiers Media SA";"2010-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +5414;21100807094;"Geoscience Letters";journal;"21964092";"SpringerOpen";Yes;No;0,941;Q1;42;74;160;4185;670;146;3,72;56,55;29,55;0;United Kingdom;Western Europe;"SpringerOpen";"2014-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +5415;29029;"Journal of Physics G: Nuclear and Particle Physics";journal;"13616471, 09543899";"IOP Publishing Ltd.";No;No;0,941;Q1;129;113;366;9274;1062;365;2,88;82,07;23,99;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1989-2025";"Nuclear and High Energy Physics (Q1)";"Physics and Astronomy" +5416;16834;"Journal of the Peripheral Nervous System";journal;"10859489, 15298027";"Wiley-Blackwell Publishing Ltd";No;No;0,941;Q1;82;93;167;2605;488;156;2,75;28,01;45,79;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Medicine (miscellaneous) (Q1); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q2)";"Medicine; Neuroscience" +5417;28289;"Current Opinion in Gastroenterology";journal;"02671379, 15317056";"Lippincott Williams and Wilkins";No;No;0,941;Q2;100;72;246;3478;660;217;2,76;48,31;35,19;0;United States;Northern America;"Lippincott Williams and Wilkins";"1989-2026";"Gastroenterology (Q2)";"Medicine" +5418;24213;"Acta Dermato-Venereologica";journal;"16512057, 00015555";"Medical Journals Sweden AB";Yes;No;0,940;Q1;111;312;690;6614;1532;526;2,17;21,20;51,33;0;Sweden;Western Europe;"Medical Journals Sweden AB";"1945-1946, 1948-2026";"Dermatology (Q1); Medicine (miscellaneous) (Q1)";"Medicine" +5419;29426;"Aquaculture Nutrition";journal;"13535773, 13652095";"John Wiley and Sons Ltd";Yes;No;0,940;Q1;107;152;309;11440;1601;309;5,16;75,26;41,38;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1995-2026";"Aquatic Science (Q1)";"Agricultural and Biological Sciences" +5420;6400153172;"Journal of Robotic Surgery";journal;"18632483, 18632491";"Springer Nature";No;No;0,940;Q1;48;730;916;18418;3575;872;4,05;25,23;29,67;5;United Kingdom;Western Europe;"Springer Nature";"2007-2026";"Surgery (Q1); Health Informatics (Q2)";"Medicine" +5421;21101022488;"Metabarcoding and Metagenomics";journal;"25349708";"Pensoft Publishers";Yes;No;0,940;Q1;25;27;66;1989;253;65;3,33;73,67;52,05;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2017-2025";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Nature and Landscape Conservation (Q1); Plant Science (Q1); Genetics (Q2); Molecular Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +5422;23164;"School Psychology International";journal;"14617374, 01430343";"SAGE Publications Ltd";No;No;0,940;Q1;75;37;98;2248;300;94;3,12;60,76;60,98;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1979-2026";"Education (Q1); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology; Social Sciences" +5423;5800179627;"Self and Identity";journal;"15298868, 15298876";"Taylor and Francis Ltd.";No;No;0,940;Q1;68;47;117;3894;318;117;2,56;82,85;61,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Psychology (miscellaneous) (Q1)";"Psychology" +5424;26929;"Stochastic Processes and their Applications";journal;"03044149";"Elsevier B.V.";No;No;0,940;Q1;93;184;549;6559;763;548;1,35;35,65;22,02;0;Netherlands;Western Europe;"Elsevier B.V.";"1973-2026";"Applied Mathematics (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q1)";"Mathematics" +5425;16800154727;"Water Alternatives";journal;"19650175";"Water Alternatives Association";Yes;Yes;0,940;Q1;59;31;105;2720;427;105;4,10;87,74;35,29;0;France;Western Europe;"Water Alternatives Association";"2008-2025";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1); Water Science and Technology (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +5426;21101044914;"Capillarity";journal;"26523310, 27092119";"Yandy Scientific Press";No;No;0,940;Q2;22;35;70;1780;406;69;6,51;50,86;29,58;0;Hong Kong;Asiatic Region;"Yandy Scientific Press";"2018-2025";"Surfaces and Interfaces (Q2)";"Physics and Astronomy" +5427;12869;"Cognitive Development";journal;"08852014";"Elsevier Ltd";No;No;0,940;Q2;99;97;288;6712;692;282;2,23;69,20;66,24;0;United Kingdom;Western Europe;"Elsevier Ltd";"1986-2026";"Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)";"Psychology" +5428;21101171780;"Analytica";journal;"26734532";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,939;Q1;16;59;108;3652;768;108;7,79;61,90;45,60;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Analytical Chemistry (Q1); Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Chemical Engineering; Chemistry; Materials Science" +5429;19700182730;"Asian American Journal of Psychology";journal;"19481985, 19481993";"American Psychological Association";No;No;0,939;Q1;47;34;106;1858;311;106;1,89;54,65;62,37;0;United States;Northern America;"American Psychological Association";"2010-2025";"Psychology (miscellaneous) (Q1)";"Psychology" +5430;22579;"Catheterization and Cardiovascular Interventions";journal;"1522726X, 15221946";"John Wiley and Sons Inc";No;No;0,939;Q1;140;736;1252;16476;2381;1010;1,94;22,39;22,06;1;United States;Northern America;"John Wiley and Sons Inc";"1999-2026";"Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +5431;19849;"Current Opinion in Nephrology and Hypertension";journal;"14736543, 10624821";"Lippincott Williams and Wilkins";No;No;0,939;Q1;113;92;251;4427;728;235;2,94;48,12;40,63;0;United States;Northern America;"Lippincott Williams and Wilkins";"1992-2026";"Nephrology (Q1); Internal Medicine (Q2)";"Medicine" +5432;21100863103;"European Journal of Higher Education";journal;"21568235, 21568243";"Taylor and Francis Ltd.";No;No;0,939;Q1;36;57;100;3684;441;96;4,21;64,63;55,19;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Education (Q1)";"Social Sciences" +5433;110111;"IEEE Intelligent Systems";journal;"15411672, 19411294";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,939;Q1;152;65;180;1181;896;175;5,08;18,17;26,24;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2001-2026";"Computer Networks and Communications (Q1); Artificial Intelligence (Q2)";"Computer Science" +5434;29195;"Journal of Applied Gerontology";journal;"15524523, 07334648";"SAGE Publications Inc.";No;No;0,939;Q1;73;319;675;13521;2069;669;2,84;42,39;61,77;1;United States;Northern America;"SAGE Publications Inc.";"1982-2026";"Gerontology (Q1); Geriatrics and Gerontology (Q2)";"Medicine; Nursing" +5435;21100827467;"Translational Vision Science and Technology";journal;"21642591";"Association for Research in Vision and Ophthalmology Inc.";Yes;No;0,939;Q1;56;387;1035;15472;3120;1009;2,81;39,98;40,88;0;United States;Northern America;"Association for Research in Vision and Ophthalmology Inc.";"2012-2026";"Ophthalmology (Q1); Biomedical Engineering (Q2)";"Engineering; Medicine" +5436;15725;"Voluntas";journal;"09578765, 15737888";"Cambridge University Press";No;No;0,939;Q1;77;77;299;4527;1060;289;3,21;58,79;44,97;0;United States;Northern America;"Cambridge University Press";"1990-2025";"Business and International Management (Q1); Geography, Planning and Development (Q1); Public Administration (Q1); Sociology and Political Science (Q1); Strategy and Management (Q1)";"Business, Management and Accounting; Social Sciences" +5437;15300154836;"Zeitschrift fur Psychologie / Journal of Psychology";journal;"21512604, 21908370";"Hogrefe Publishing";No;No;0,939;Q1;55;28;92;1473;252;82;2,10;52,61;55,70;0;Germany;Western Europe;"Hogrefe Publishing";"2011-2025";"Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Psychology" +5438;21100213700;"Journal of Clinical Neurology (Korea)";journal;"17386586, 20055013";"Korean Neurological Association";Yes;Yes;0,939;Q2;63;92;309;2298;612;177;2,02;24,98;36,28;0;South Korea;Asiatic Region;"Korean Neurological Association";"2008-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +5439;21100465147;"Election Law Journal: Rules, Politics, and Policy";journal;"15578062, 15331296";"Mary Ann Liebert Inc.";No;No;0,938;Q1;20;39;64;2371;123;63;1,70;60,79;32,74;2;United States;Northern America;"Mary Ann Liebert Inc.";"2005, 2008-2009, 2012, 2016-2025";"Law (Q1)";"Social Sciences" +5440;26898;"Faraday Discussions";journal;"13645498, 13596640";"Royal Society of Chemistry";No;No;0,938;Q1;130;101;668;5208;1989;563;3,11;51,56;33,88;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"1947, 1950-1951, 1962, 1969, 1972-2026";"Medicine (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Medicine" +5441;21100834347;"Journal of Marketing Analytics";journal;"20503318, 20503326";"Springer International Publishing AG";No;No;0,938;Q1;35;125;191;9043;1336;179;6,27;72,34;30,03;3;Switzerland;Western Europe;"Springer International Publishing AG";"2013-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Statistics, Probability and Uncertainty (Q1); Marketing (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +5442;21100843798;"Journal of Southern Hemisphere Earth Systems Science";journal;"22065865";"CSIRO Publishing";Yes;Yes;0,938;Q1;19;36;46;2018;141;46;1,84;56,06;35,54;0;Australia;Pacific Region;"CSIRO Publishing";"2016-2026";"Oceanography (Q1); Atmospheric Science (Q2); Global and Planetary Change (Q2)";"Earth and Planetary Sciences; Environmental Science" +5443;18898;"Journal of Terramechanics";journal;"00224898";"Elsevier Ltd";No;No;0,938;Q1;71;54;115;2301;572;115;5,43;42,61;19,32;0;United Kingdom;Western Europe;"Elsevier Ltd";"1964-2026";"Mechanical Engineering (Q1)";"Engineering" +5444;19700175228;"Management Research Review";journal;"20408269";"Emerald Group Publishing Ltd.";No;No;0,938;Q1;85;93;266;7452;1669;264;5,78;80,13;36,40;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2026";"Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +5445;17069;"Placenta";journal;"01434004, 15323102";"W.B. Saunders Ltd";No;No;0,938;Q1;154;260;573;12766;1843;561;3,06;49,10;55,82;0;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1980-2026";"Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Developmental Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5446;26324;"Random Structures and Algorithms";journal;"10429832, 10982418";"John Wiley and Sons Ltd";No;No;0,938;Q1;76;76;194;2374;251;193;1,18;31,24;15,98;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1990-2026";"Applied Mathematics (Q1); Computer Graphics and Computer-Aided Design (Q1); Mathematics (miscellaneous) (Q1); Software (Q1)";"Computer Science; Mathematics" +5447;25292;"Journal of Clinical Gastroenterology";journal;"15392031, 01920790";"Lippincott Williams and Wilkins";No;No;0,938;Q2;140;172;542;5988;1362;506;2,45;34,81;39,13;0;United States;Northern America;"Lippincott Williams and Wilkins";"1979-2026";"Gastroenterology (Q2)";"Medicine" +5448;16749;"Journal of Neuroimmunology";journal;"18728421, 01655728";"Elsevier B.V.";No;No;0,938;Q2;163;204;448;9666;1387;432;3,08;47,38;45,75;0;Netherlands;Western Europe;"Elsevier B.V.";"1981-2026";"Immunology (Q2); Immunology and Allergy (Q2); Neurology (Q2); Neurology (clinical) (Q2)";"Immunology and Microbiology; Medicine; Neuroscience" +5449;13401;"Consciousness and Cognition";journal;"10538100, 10902376";"Academic Press Inc.";No;No;0,937;Q1;139;94;313;6556;851;312;2,42;69,74;43,29;0;United States;Northern America;"Academic Press Inc.";"1992-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)";"Arts and Humanities; Psychology" +5450;21100778661;"European Journal of Management and Business Economics";journal;"24448451, 24448494";"Emerald Group Publishing Ltd.";Yes;Yes;0,937;Q1;43;47;110;3305;713;108;6,85;70,32;52,14;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2016-2025";"Business and International Management (Q1); Tourism, Leisure and Hospitality Management (Q1); Finance (Q2); Marketing (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +5451;19900192612;"Europe's Journal of Psychology";journal;"18410413";"PsychOpen";Yes;Yes;0,937;Q1;45;28;88;1625;304;84;2,77;58,04;42,67;0;Germany;Western Europe;"PsychOpen";"2011-2025";"Psychology (miscellaneous) (Q1)";"Psychology" +5452;21100904891;"Forensic Science International: Synergy";journal;"2589871X";"Elsevier B.V.";Yes;No;0,937;Q1;27;66;162;3566;563;131;3,41;54,03;48,65;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Law (Q1); Pathology and Forensic Medicine (Q1)";"Medicine; Social Sciences" +5453;29030;"Journal of Synchrotron Radiation";journal;"16005775, 09090495";"International Union of Crystallography";Yes;No;0,937;Q1;124;159;462;6620;1298;453;2,74;41,64;23,46;0;United Kingdom;Western Europe;"International Union of Crystallography";"1995-2026";"Instrumentation (Q1); Nuclear and High Energy Physics (Q1); Radiation (Q1)";"Physics and Astronomy" +5454;21101251543;"Mayo Clinic Proceedings: Digital Health";journal;"29497612";"Elsevier B.V.";Yes;No;0,937;Q1;15;89;164;3030;645;131;3,93;34,04;41,62;4;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Dentistry (miscellaneous) (Q1); Health Informatics (Q2); Internal Medicine (Q2)";"Dentistry; Medicine" +5455;16559;"Phytopathology";journal;"19437684, 0031949X";"American Phytopathological Society";No;No;0,937;Q1;165;184;706;8227;2543;704;3,73;44,71;40,21;0;United States;Northern America;"American Phytopathological Society";"1946-1948, 1965-1971, 1974-1975, 1977-1989, 1993-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +5456;21101281244;"Sustainable Chemistry One World";journal;"29503574";"Elsevier B.V.";No;No;0,937;Q1;11;119;31;9807;261;31;8,42;82,41;36,32;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Environmental Chemistry (Q2)";"Chemistry; Environmental Science; Materials Science" +5457;19700201154;"Therapeutic Advances in Chronic Disease";journal;"20406231, 20406223";"SAGE Publications Inc.";Yes;No;0,937;Q1;59;34;243;2170;833;237;2,95;63,82;45,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2010-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +5458;17542;"International Journal of Biochemistry and Cell Biology";journal;"13572725, 18785875";"Elsevier Ltd";No;No;0,937;Q2;219;81;299;4362;1010;293;3,60;53,85;49,30;0;United Kingdom;Western Europe;"Elsevier Ltd";"1995-2026";"Biochemistry (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +5459;24341;"BMC Oral Health";journal;"14726831";"BioMed Central Ltd";Yes;No;0,936;Q1;89;1982;3208;84133;13772;3202;4,19;42,45;50,96;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +5460;21100826280;"Frontiers in Environmental Science";journal;"2296665X";"Frontiers Media SA";Yes;No;0,936;Q1;107;892;4940;54301;24071;4694;4,55;60,88;38,90;4;Switzerland;Western Europe;"Frontiers Media SA";"2013-2026";"Environmental Science (miscellaneous) (Q1)";"Environmental Science" +5461;130171;"Metabolomics";journal;"15733890, 15733882";"Springer";No;No;0,936;Q2;107;169;331;8836;1327;329;3,46;52,28;46,06;0;United States;Northern America;"Springer";"2005-2026";"Biochemistry (Q2); Clinical Biochemistry (Q2); Endocrinology, Diabetes and Metabolism (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5462;22941;"Microbial Pathogenesis";journal;"10961208, 08824010";"Academic Press";No;No;0,936;Q2;119;927;1475;63145;6629;1468;4,38;68,12;44,59;4;United States;Northern America;"Academic Press";"1986-2026";"Infectious Diseases (Q2); Microbiology (Q2)";"Immunology and Microbiology; Medicine" +5463;29286;"Clinica Chimica Acta";journal;"00098981, 18733492";"Elsevier B.V.";No;No;0,935;Q1;182;441;1028;27126;4017;1003;4,13;61,51;46,23;0;Netherlands;Western Europe;"Elsevier B.V.";"1956-2026";"Medicine (miscellaneous) (Q1); Biochemistry (Q2); Biochemistry (medical) (Q2); Clinical Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5464;21100829261;"Clinical Neuroradiology";journal;"18691447, 18691439";"Springer Science and Business Media Deutschland GmbH";No;No;0,935;Q1;46;154;370;4088;975;307;2,65;26,55;25,59;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2000, 2010-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Neurology (clinical) (Q2)";"Medicine" +5465;21100886391;"Computers";journal;"2073431X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,935;Q1;63;567;789;31934;5857;781;7,85;56,32;29,36;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Computer Networks and Communications (Q1); Human-Computer Interaction (Q2)";"Computer Science" +5466;20988;"Journal of Turbomachinery";journal;"0889504X, 15288900";"The American Society of Mechanical Engineers(ASME)";No;No;0,935;Q1;141;196;484;6534;1672;484;3,29;33,34;17,18;1;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"1986-2026";"Mechanical Engineering (Q1)";"Engineering" +5467;25642;"Perspectives: Studies in Translation Theory and Practice";journal;"0907676X, 17476623";"Routledge";No;No;0,935;Q1;45;128;226;6692;607;214;2,62;52,28;63,24;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Cultural Studies (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +5468;12915;"Space Policy";journal;"02659646, 1879338X";"Elsevier B.V.";No;No;0,935;Q1;37;45;106;3170;339;104;3,25;70,44;37,50;0;United Kingdom;Western Europe;"Elsevier B.V.";"1985-2026";"Law (Q1); Sociology and Political Science (Q1); Economics and Econometrics (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Economics, Econometrics and Finance; Social Sciences" +5469;21100287109;"Sustainable Environment Research";journal;"24682039";"BioMed Central Ltd";Yes;No;0,935;Q1;61;28;121;1465;689;121;4,64;52,32;39,84;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Environmental Engineering (Q1); Water Science and Technology (Q1); Pollution (Q2); Renewable Energy, Sustainability and the Environment (Q2); Waste Management and Disposal (Q2)";"Energy; Environmental Science" +5470;23069;"Clinical and Experimental Hypertension";journal;"15256006, 10641963";"Taylor & Francis Group LLC Philadelphia";Yes;No;0,934;Q1;59;45;195;2048;759;195;6,15;45,51;47,41;0;United States;Northern America;"Taylor & Francis Group LLC Philadelphia";"1978-2026";"Medicine (miscellaneous) (Q1); Internal Medicine (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5471;26361;"Demographic Research";journal;"23637064, 14359871";"Max Planck Institute for Demographic Research";Yes;Yes;0,934;Q1;90;76;242;4650;616;242;2,41;61,18;54,27;0;Germany;Western Europe;"Max Planck Institute for Demographic Research";"1999-2000, 2002-2026";"Demography (Q1)";"Social Sciences" +5472;24958;"Dental Traumatology";journal;"16009657, 16004469";"Blackwell Munksgaard";No;No;0,934;Q1;98;123;261;5016;1000;236;4,24;40,78;48,01;0;Denmark;Western Europe;"Blackwell Munksgaard";"1985-1995, 1999-2026";"Oral Surgery (Q1)";"Dentistry" +5473;144736;"Innovative Higher Education";journal;"07425627, 15731758";"Springer Netherlands";No;No;0,934;Q1;61;125;159;7453;726;157;4,99;59,62;58,42;1;Netherlands;Western Europe;"Springer Netherlands";"1983-2002, 2004-2026";"Education (Q1)";"Social Sciences" +5474;21101017498;"Journal of Healthcare Informatics Research";journal;"2509498X";"Springer International Publishing";No;No;0,934;Q1;25;40;73;2256;434;72;5,35;56,40;35,37;0;Switzerland;Western Europe;"Springer International Publishing";"2017-2026";"Computer Science Applications (Q1); Information Systems (Q1); Artificial Intelligence (Q2); Health Informatics (Q2)";"Computer Science; Medicine" +5475;12715;"Journal of Human Nutrition and Dietetics";journal;"09523871, 1365277X";"Taylor and Francis Ltd.";No;No;0,934;Q1;95;222;438;11527;1450;418;2,65;51,92;74,35;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +5476;21100885607;"Journal of World Investment and Trade";journal;"16607112, 22119000";"Brill Academic Publishers";No;No;0,934;Q1;28;34;84;4944;159;77;2,17;145,41;38,30;0;Netherlands;Western Europe;"Brill Academic Publishers";"2000-2001, 2003-2025";"Business and International Management (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Law (Q1); Political Science and International Relations (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +5477;5600153974;"Policing and Society";journal;"14772728, 10439463";"Routledge";No;No;0,934;Q1;61;100;204;7106;686;200;2,95;71,06;49,80;3;United Kingdom;Western Europe;"Routledge";"1990-2003, 2005-2026";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5478;21101226899;"World Development Sustainability";journal;"2772655X";"Elsevier B.V.";Yes;No;0,934;Q1;20;64;181;4896;1133;177;5,99;76,50;30,51;1;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Geography, Planning and Development (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +5479;4700153004;"AIDS Research and Therapy";journal;"17426405";"BioMed Central Ltd";Yes;No;0,934;Q2;54;126;255;4579;735;254;2,62;36,34;42,35;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Molecular Medicine (Q2); Pharmacology (medical) (Q2); Virology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +5480;100895;"Biological Procedures Online";journal;"14809222";"BioMed Central Ltd";Yes;No;0,934;Q2;56;53;88;3131;412;88;4,51;59,08;52,45;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1998-1999, 2001-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology" +5481;51882;"IEEE/ACM International Conference on Computer-Aided Design, Digest of Technical Papers";conference and proceedings;"10923152";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,934;-;106;554;368;18751;1751;364;5,14;33,85;24,33;1;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1995-2013, 2015-2023, 2025";"Computer Graphics and Computer-Aided Design; Computer Science Applications; Software";"Computer Science" +5482;21101222665;"Proceedings of the ACM SIGPLAN Symposium on Principles and Practice of Parallel Programming, PPOPP";conference and proceedings;"15420205";"Association for Computing Machinery";No;No;0,934;-;71;50;142;2325;605;133;3,46;46,50;20,36;0;United States;Northern America;"Association for Computing Machinery";"1988, 1990-1991, 1993, 1995, 1997, 1999, 2001, 2003, 2005-2025";"Software";"Computer Science" +5483;21101092528;"AJOG Global Reports";journal;"26665778";"Elsevier Inc.";Yes;No;0,933;Q1;16;150;374;4580;979;347;2,63;30,53;59,09;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Obstetrics and Gynecology (Q1)";"Medicine" +5484;21101045751;"Geology, Ecology, and Landscapes";journal;"24749508";"Taylor and Francis Ltd.";Yes;No;0,933;Q1;33;114;104;6978;580;102;6,22;61,21;22,87;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Ecology (Q1); Geology (Q1); Nature and Landscape Conservation (Q1)";"Earth and Planetary Sciences; Environmental Science" +5485;21101178118;"Journal of Chemical Reviews";journal;"26764938, 26766868";"Sami Publishing Company";No;No;0,933;Q1;28;27;65;3366;547;65;9,63;124,67;44,09;0;France;Western Europe;"Sami Publishing Company";"2019-2025";"Chemistry (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1); Organic Chemistry (Q1); Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Environmental Science" +5486;19500156812;"Psychology of Aesthetics, Creativity, and the Arts";journal;"1931390X, 19313896";"American Psychological Association";No;No;0,933;Q1;93;101;264;7085;1008;255;3,36;70,15;50,61;0;United States;Northern America;"American Psychological Association";"2007-2025";"Visual Arts and Performing Arts (Q1); Applied Psychology (Q2); Developmental and Educational Psychology (Q2)";"Arts and Humanities; Psychology" +5487;21101079403;"Heart Rhythm O2";journal;"26665018";"Elsevier B.V.";Yes;No;0,933;Q2;25;270;392;6716;925;340;2,29;24,87;25,16;2;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +5488;18800156706;"Molecular Medicine Reports";journal;"17913004, 17912997";"Spandidos Publications";No;No;0,933;Q2;106;315;807;24455;3228;807;4,04;77,63;44,63;0;Greece;Western Europe;"Spandidos Publications";"2008-2026";"Biochemistry (Q2); Cancer Research (Q2); Genetics (Q2); Molecular Biology (Q2); Molecular Medicine (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5489;12100154706;"Baltic Journal of Management";journal;"17465273, 17465265";"Emerald Publishing";No;No;0,932;Q1;47;54;131;3641;624;130;4,40;67,43;34,21;0;United Kingdom;Western Europe;"Emerald Publishing";"2006-2026";"Business and International Management (Q1); Management of Technology and Innovation (Q2); Marketing (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +5490;21100205998;"Pathogens and Global Health";journal;"20477724, 20477732";"Taylor and Francis Ltd.";No;No;0,932;Q1;87;48;181;2757;618;168;3,42;57,44;49,47;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Medicine (miscellaneous) (Q1); Parasitology (Q1); Public Health, Environmental and Occupational Health (Q1); Infectious Diseases (Q2); Microbiology (Q2)";"Immunology and Microbiology; Medicine" +5491;29260;"Clinical Breast Cancer";journal;"15268209, 19380666";"Elsevier Inc.";No;No;0,932;Q2;88;241;535;9378;1507;510;2,72;38,91;51,68;1;United States;Northern America;"Elsevier Inc.";"2000-2026";"Cancer Research (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5492;21101046176;"Clinical Psychology in Europe";journal;"26253410";"PsychOpen";Yes;Yes;0,932;Q2;21;30;107;1304;288;91;2,53;43,47;50,43;0;Germany;Western Europe;"PsychOpen";"2019-2025";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +5493;25178;"Applied Mathematics and Mechanics (English Edition)";journal;"02534827, 15732754";"Springer China";No;No;0,931;Q1;64;130;372;5896;1968;371;5,12;45,35;29,45;0;Netherlands;Western Europe;"Springer China";"1980-2026";"Applied Mathematics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Mathematics" +5494;18422;"Biology of the Cell";journal;"02484900, 1768322X";"Wiley-Blackwell";No;No;0,931;Q1;99;61;74;3906;197;65;2,24;64,03;48,48;0;United States;Northern America;"Wiley-Blackwell";"1981-2026";"Medicine (miscellaneous) (Q1); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5495;24184;"Chinese Journal of Electronics";journal;"10224653, 20755597";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,931;Q1;38;164;384;6252;1649;384;4,80;38,12;31,59;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1996-2025";"Applied Mathematics (Q1); Electrical and Electronic Engineering (Q1)";"Engineering; Mathematics" +5496;21100913557;"Earth Systems and Environment";journal;"25099426, 25099434";"Springer International Publishing AG";No;No;0,931;Q1;49;446;208;35300;1155;208;5,63;79,15;25,79;3;Switzerland;Western Europe;"Springer International Publishing AG";"2017-2026";"Computers in Earth Sciences (Q1); Environmental Science (miscellaneous) (Q1); Geology (Q1); Economic Geology (Q2); Global and Planetary Change (Q2)";"Earth and Planetary Sciences; Environmental Science" +5497;21101140507;"Frontiers in Reproductive Health";journal;"26733153";"Frontiers Media SA";Yes;No;0,931;Q1;25;178;381;7790;1281;346;2,89;43,76;55,01;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Family Practice (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Epidemiology (Q2)";"Medicine" +5498;27211;"International Journal of Technology Assessment in Health Care";journal;"14716348, 02664623";"Cambridge University Press";No;No;0,931;Q1;81;94;242;3517;691;232;2,75;37,41;54,19;0;United Kingdom;Western Europe;"Cambridge University Press";"1970, 1978, 1985-2026";"Health Policy (Q1)";"Medicine" +5499;12000154485;"Journal of Land Use Science";journal;"1747423X, 17474248";"Taylor and Francis Ltd.";Yes;No;0,931;Q1;50;16;75;1078;286;73;3,24;67,38;43,28;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Earth-Surface Processes (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +5500;19202;"Mathematics of Control, Signals, and Systems";journal;"09324194, 1435568X";"Springer London";No;No;0,931;Q1;46;37;86;1299;169;84;1,76;35,11;19,10;0;United Kingdom;Western Europe;"Springer London";"1988-2026";"Applied Mathematics (Q1); Control and Optimization (Q1); Control and Systems Engineering (Q1); Signal Processing (Q1)";"Computer Science; Engineering; Mathematics" +5501;15460;"Eating and Weight Disorders";journal;"11244909, 15901262";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,931;Q2;70;91;530;4108;1887;510;3,31;45,14;59,05;2;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1998-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +5502;19700188352;"Toxins";journal;"20726651";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,931;Q2;141;601;2129;39732;9964;2086;4,17;66,11;47,56;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +5503;19800188003;"BMJ Open";journal;"20446055";"BMJ Publishing Group";Yes;No;0,930;Q1;196;4932;13043;211415;36324;13043;2,55;42,87;52,33;30;United Kingdom;Western Europe;"BMJ Publishing Group";"2011-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +5504;21101260647;"Crop Design";journal;"27728994";"Elsevier B.V.";Yes;No;0,930;Q1;12;26;47;1673;276;45;6,61;64,35;38,30;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q1)";"Agricultural and Biological Sciences" +5505;12584;"Drug Metabolism Reviews";journal;"10979883, 03602532";"Taylor and Francis Ltd.";No;No;0,930;Q1;117;26;61;3394;290;61;4,79;130,54;43,52;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972, 1974-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +5506;13433;"Healthcare Management Forum";journal;"23523883, 08404704";"SAGE Publications Inc.";No;No;0,930;Q1;31;116;233;3600;741;214;2,75;31,03;71,46;1;United States;Northern America;"SAGE Publications Inc.";"1988-2026";"Health Policy (Q1)";"Medicine" +5507;22383;"International Journal of Medical Microbiology";journal;"14384221, 16180607";"Elsevier GmbH";Yes;No;0,930;Q1;118;48;81;2151;267;79;3,13;44,81;47,23;0;Germany;Western Europe;"Elsevier GmbH";"2000-2026";"Medicine (miscellaneous) (Q1); Infectious Diseases (Q2); Microbiology (Q2); Microbiology (medical) (Q2)";"Immunology and Microbiology; Medicine" +5508;29826;"Research on Aging";journal;"01640275, 15527573";"SAGE Publications Inc.";No;No;0,930;Q1;83;73;151;4286;476;150;2,88;58,71;64,02;0;United States;Northern America;"SAGE Publications Inc.";"1979-2026";"Health (social science) (Q1); Social Psychology (Q1); Geriatrics and Gerontology (Q2)";"Medicine; Psychology; Social Sciences" +5509;21100788797;"Surfaces and Interfaces";journal;"24680230";"Elsevier B.V.";No;No;0,930;Q1;96;2504;3598;148868;22412;3583;6,29;59,45;35,01;1;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Physics and Astronomy (miscellaneous) (Q1); Surfaces, Coatings and Films (Q1); Surfaces and Interfaces (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +5510;21100228128;"Trends in Neuroscience and Education";journal;"22119493";"Elsevier GmbH";No;No;0,930;Q1;41;27;66;1764;265;62;3,80;65,33;50,00;0;Germany;Western Europe;"Elsevier GmbH";"2012-2026";"Education (Q1); Behavioral Neuroscience (Q2); Cognitive Neuroscience (Q2); Neuroscience (miscellaneous) (Q2)";"Neuroscience; Social Sciences" +5511;21101134476;"CES Transactions on Electrical Machines and Systems";journal;"20963564";"China Electrotechnical Society";Yes;Yes;0,929;Q1;33;40;154;1883;744;147;4,67;47,08;24,34;0;China;Asiatic Region;"China Electrotechnical Society";"2019-2025";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)";"Engineering" +5512;25075;"Ecotoxicology";journal;"09639292, 15733017";"Springer";No;No;0,929;Q1;117;171;321;12313;1107;317;2,89;72,01;47,32;0;United States;Northern America;"Springer";"1992-2026";"Medicine (miscellaneous) (Q1); Health, Toxicology and Mutagenesis (Q2); Management, Monitoring, Policy and Law (Q2); Toxicology (Q2)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +5513;14873;"International Journal of Behavioral Medicine";journal;"15327558, 10705503";"Routledge";No;No;0,929;Q2;84;152;254;7926;765;253;3,09;52,14;55,81;3;United States;Northern America;"Routledge";"1994-2026";"Applied Psychology (Q2)";"Psychology" +5514;12500154701;"Advances in Atomic, Molecular and Optical Physics";book series;"1049250X";"Academic Press Inc.";No;No;0,928;Q1;61;4;10;567;32;10;2,38;141,75;37,50;0;United States;Northern America;"Academic Press Inc.";"1965-1966, 1968-1969, 1976, 1982-1983, 1989-1996, 1998-2003, 2005-2025";"Electronic, Optical and Magnetic Materials (Q1); Statistical and Nonlinear Physics (Q1)";"Materials Science; Physics and Astronomy" +5515;21100316035;"Biology";journal;"20797737";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,928;Q1;110;1783;4434;127272;20480;4385;4,39;71,38;43,57;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +5516;25989;"Discourse Processes";journal;"0163853X, 15326950";"Taylor and Francis Ltd.";No;No;0,928;Q1;74;48;120;2990;290;108;1,93;62,29;56,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-2001, 2004-2026";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +5517;23185;"European Journal of Cardio-thoracic Surgery";journal;"1873734X, 10107940";"European Association for Cardio-Thoracic Surgery";No;No;0,928;Q1;163;461;1685;11526;3225;1099;1,97;25,00;28,07;1;United Kingdom;Western Europe;"European Association for Cardio-Thoracic Surgery";"1987-2026";"Medicine (miscellaneous) (Q1); Pulmonary and Respiratory Medicine (Q1); Surgery (Q1); Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +5518;26216;"European Journal of Migration and Law";journal;"1388364X, 15718166";"Martinus Nijhoff Publishers";No;No;0,928;Q1;44;20;66;2112;181;63;1,98;105,60;60,71;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"1999-2025";"Demography (Q1); Law (Q1)";"Social Sciences" +5519;27724;"IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems";journal;"02780070, 19374151";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,928;Q1;142;587;1264;22990;5459;1264;4,29;39,17;25,52;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1982-2026";"Computer Graphics and Computer-Aided Design (Q1); Electrical and Electronic Engineering (Q1); Software (Q1)";"Computer Science; Engineering" +5520;26339;"International and Comparative Law Quarterly";journal;"00205893, 14716895";"Cambridge University Press";No;No;0,928;Q1;70;53;109;8365;272;109;2,60;157,83;39,44;0;United Kingdom;Western Europe;"Cambridge University Press";"1952-2025";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +5521;54222;"Polymers";journal;"20734360";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,928;Q1;199;3337;13857;203612;90426;13766;6,13;61,02;38,37;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Chemistry (miscellaneous) (Q1); Polymers and Plastics (Q1)";"Chemistry; Materials Science" +5522;21101020042;"Proceedings of the ACM on Programming Languages";journal;"24751421";"Association for Computing Machinery";Yes;No;0,928;Q1;62;419;857;23699;3313;857;3,81;56,56;20,28;0;United States;Northern America;"Association for Computing Machinery";"2017-2026";"Safety, Risk, Reliability and Quality (Q1); Software (Q1)";"Computer Science; Engineering" +5523;12004;"Journal of Trauma and Dissociation";journal;"15299740, 15299732";"Routledge";No;No;0,928;Q2;67;50;135;2357;412;116;3,08;47,14;60,11;0;United States;Northern America;"Routledge";"2000-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +5524;21101385449;"Babylonian Journal of Mechanical Engineering";journal;"30065410";"Mesopotamian Academic Press";No;No;0,927;Q1;7;9;25;529;160;25;6,40;58,78;12,50;0;Iraq;Middle East;"Mesopotamian Academic Press";"2023-2025";"Automotive Engineering (Q1); Computational Mechanics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering" +5525;24613;"Contraception";journal;"00107824, 18790518";"Elsevier Inc.";No;No;0,927;Q1;121;183;505;5740;1136;459;2,08;31,37;77,86;0;United States;Northern America;"Elsevier Inc.";"1970-2026";"Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)";"Medicine" +5526;21100924379;"Environments - MDPI";journal;"20763298";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,927;Q1;60;494;676;34464;3338;663;4,91;69,77;44,51;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2014-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Agricultural and Biological Sciences; Energy; Environmental Science" +5527;144989;"International Journal of Environmental Research and Public Health";journal;"16617827, 16604601";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,927;Q1;256;1876;25936;103425;117122;25609;4,17;55,13;58,62;19;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2004-2026";"Public Health, Environmental and Occupational Health (Q1); Health, Toxicology and Mutagenesis (Q2); Pollution (Q2)";"Environmental Science; Medicine" +5528;21100856536;"Journal of Antitrust Enforcement";journal;"20500688, 20500696";"Oxford University Press";No;No;0,927;Q1;16;31;123;3523;211;115;1,67;113,65;30,77;3;United Kingdom;Western Europe;"Oxford University Press";"2013-2025";"Law (Q1)";"Social Sciences" +5529;144826;"Journal of Business Strategy";journal;"02756668";"Emerald Group Publishing Ltd.";No;No;0,927;Q1;57;23;146;1678;766;138;5,55;72,96;37,78;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1980-2026";"Management Information Systems (Q1); Strategy and Management (Q2)";"Business, Management and Accounting" +5530;19900191425;"Journal of Politics in Latin America";journal;"18684890, 1866802X";"SAGE Publications Inc.";Yes;Yes;0,927;Q1;21;22;50;1655;159;49;2,62;75,23;30,00;0;Germany;Western Europe;"SAGE Publications Inc.";"2015-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5531;21100888814;"Journal of Race, Ethnicity and Politics";journal;"20566085";"Cambridge University Press";No;No;0,927;Q1;22;78;80;6239;195;78;2,53;79,99;63,58;2;United Kingdom;Western Europe;"Cambridge University Press";"2016-2026";"Anthropology (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5532;21101132273;"Quantitative Plant Biology";journal;"26328828";"Cambridge University Press";Yes;No;0,927;Q1;12;46;61;3208;171;61;2,00;69,74;40,10;0;United Kingdom;Western Europe;"Cambridge University Press";"2020-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +5533;21100935804;"Autism and Developmental Language Impairments";journal;"23969415";"SAGE Publications Ltd";Yes;No;0,927;Q2;27;26;77;1970;315;77;3,24;75,77;77,27;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2016-2026";"Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +5534;29271;"Clinical Oncology";journal;"14332981, 09366555";"Elsevier Ltd";No;No;0,926;Q1;97;213;577;6445;1225;376;1,97;30,26;44,92;1;United Kingdom;Western Europe;"Elsevier Ltd";"1975, 1984-1985, 1989-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)";"Medicine" +5535;28461;"Computational Statistics and Data Analysis";journal;"01679473";"Elsevier B.V.";No;No;0,926;Q1;145;121;447;5355;915;444;1,87;44,26;34,33;0;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Computational Theory and Mathematics (Q1); Statistics and Probability (Q1)";"Computer Science; Mathematics" +5536;17500154705;"Global Health Action";journal;"16549716, 16549880";"Taylor and Francis Ltd.";Yes;No;0,926;Q1;83;159;353;7379;1202;339;3,33;46,41;53,47;5;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine" +5537;21100802700;"Health Economics Review";journal;"21911991";"BioMed Central Ltd";Yes;No;0,926;Q1;48;110;218;5165;760;210;3,12;46,95;44,11;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2011-2026";"Health Policy (Q1)";"Medicine" +5538;21100201986;"Interface Focus";journal;"20428898, 20428901";"The Royal Society";No;No;0,926;Q1;84;36;137;1726;445;127;2,87;47,94;36,99;0;United Kingdom;Western Europe;"The Royal Society";"2011-2025";"Biophysics (Q1); Biochemistry (Q2); Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +5539;28497;"Inverse Problems";journal;"13616420, 02665611";"Institute of Physics";No;No;0,926;Q1;137;149;503;6604;1057;497;2,01;44,32;28,88;0;United Kingdom;Western Europe;"Institute of Physics";"1985-2025";"Applied Mathematics (Q1); Computer Science Applications (Q1); Mathematical Physics (Q1); Signal Processing (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +5540;23315;"Physics and Chemistry of the Earth";journal;"14747065";"Elsevier Ltd";No;No;0,926;Q1;121;356;600;25243;3142;600;5,37;70,91;25,33;0;United Kingdom;Western Europe;"Elsevier Ltd";"1992, 2002-2026";"Geochemistry and Petrology (Q1); Geophysics (Q1)";"Earth and Planetary Sciences" +5541;23590;"Science and Engineering Ethics";journal;"13533452, 14715546";"Springer Netherlands";No;No;0,926;Q1;90;41;165;2772;755;160;4,32;67,61;48,12;0;Netherlands;Western Europe;"Springer Netherlands";"1995-2026";"Health (social science) (Q1); Issues, Ethics and Legal Aspects (Q1); Health Policy (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Medicine; Nursing; Social Sciences" +5542;21101375570;"Allergologie Select";journal;"25128957";"Dustri-Verlag Dr. Karl Feistle";No;No;0,926;Q2;15;5;27;78;98;27;4,28;15,60;62,07;0;Germany;Western Europe;"Dustri-Verlag Dr. Karl Feistle";"2021-2025";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +5543;12100157191;"Innate Immunity";journal;"17534259, 17534267";"SAGE Publications Ltd";Yes;No;0,926;Q2;84;26;50;1672;191;50;3,77;64,31;47,40;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-1997, 1999, 2008-2026";"Immunology (Q2); Infectious Diseases (Q2); Microbiology (Q2); Molecular Biology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +5544;4700151918;"ACM Transactions on Multimedia Computing, Communications and Applications";journal;"15516865, 15516857";"Association for Computing Machinery";No;No;0,925;Q1;81;303;826;19468;4744;813;5,63;64,25;32,15;0;United States;Northern America;"Association for Computing Machinery";"2005-2026";"Computer Networks and Communications (Q1); Hardware and Architecture (Q1)";"Computer Science" +5545;23911;"Analytica Chimica Acta";journal;"00032670, 18734324";"Elsevier B.V.";No;No;0,925;Q1;253;1039;3045;51436;19675;3041;6,42;49,51;44,60;0;Netherlands;Western Europe;"Elsevier B.V.";"1947-2026";"Analytical Chemistry (Q1); Spectroscopy (Q1); Biochemistry (Q2); Environmental Chemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Environmental Science" +5546;4500151408;"Journal of Physiological Anthropology";journal;"18806791, 18806805";"BioMed Central Ltd";Yes;No;0,925;Q1;67;35;104;1987;424;101;4,15;56,77;41,41;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Anthropology (Q1); Orthopedics and Sports Medicine (Q1); Public Health, Environmental and Occupational Health (Q1); Human Factors and Ergonomics (Q2); Physiology (Q2); Physiology (medical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Social Sciences" +5547;21101136304;"Geosystems and Geoenvironment";journal;"27728838";"Elsevier B.V.";Yes;No;0,924;Q1;26;87;240;7220;1090;237;4,07;82,99;22,53;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)";"Earth and Planetary Sciences; Environmental Science" +5548;21101060315;"Integrative Systematics";journal;"26282380, 26282429";"State Museum for Natural History Stuttgart";No;No;0,924;Q1;9;10;64;312;108;64;1,50;31,20;18,92;0;Germany;Western Europe;"State Museum for Natural History Stuttgart";"2018-2025";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +5549;16747;"Journal of Neuroimaging";journal;"10512284, 15526569";"Wiley-Blackwell";No;No;0,924;Q1;78;118;301;4778;937;301;3,01;40,49;32,94;0;United States;Northern America;"Wiley-Blackwell";"1991-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Neurology (clinical) (Q2)";"Medicine" +5550;27391;"Population, Space and Place";journal;"15448444, 15448452";"John Wiley and Sons Ltd";No;No;0,924;Q1;101;188;336;11705;1213;333;3,50;62,26;51,05;6;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2004-2026";"Demography (Q1); Geography, Planning and Development (Q1)";"Social Sciences" +5551;15330;"Thinking and Reasoning";journal;"14640708, 13546783";"Taylor and Francis Ltd.";No;No;0,924;Q1;61;35;76;2105;246;73;2,81;60,14;43,68;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995, 2000-2026";"Philosophy (Q1); Psychology (miscellaneous) (Q1); Experimental and Cognitive Psychology (Q2)";"Arts and Humanities; Psychology" +5552;21100258400;"Blood Research";journal;"2287979X, 22880011";"Springer";Yes;No;0,924;Q2;38;65;175;1757;464;121;2,50;27,03;46,29;0;Singapore;Asiatic Region;"Springer";"2013-2026";"Hematology (Q2)";"Medicine" +5553;18928;"Journal of Human Genetics";journal;"1435232X, 14345161";"Springer Nature";No;No;0,924;Q2;100;132;310;4772;812;298;2,97;36,15;47,64;0;United Kingdom;Western Europe;"Springer Nature";"1961, 1996, 1998-2026";"Genetics (Q2); Genetics (clinical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5554;27000;"Annales Henri Poincare";journal;"14240637, 14240661";"Birkhauser";No;No;0,923;Q1;59;195;343;9007;622;342;1,59;46,19;14,95;0;Switzerland;Western Europe;"Birkhauser";"2000-2026";"Mathematical Physics (Q1); Nuclear and High Energy Physics (Q1); Statistical and Nonlinear Physics (Q1)";"Mathematics; Physics and Astronomy" +5555;21101149044;"Electrochemical Science Advances";journal;"26985977";"John Wiley and Sons Inc";Yes;No;0,923;Q1;25;34;233;2256;1011;211;4,49;66,35;25,58;0;United States;Northern America;"John Wiley and Sons Inc";"2021-2026";"Chemistry (miscellaneous) (Q1); Electrochemistry (Q2)";"Chemistry" +5556;144738;"Employee Relations";journal;"01425455";"Emerald Group Publishing Ltd.";No;No;0,923;Q1;78;98;274;7425;1394;271;4,49;75,77;50,85;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1979-2026";"Industrial Relations (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +5557;130020;"International Journal of Medical Sciences";journal;"14491907";"Ivyspring International Publisher";Yes;No;0,923;Q1;91;367;657;21379;2490;655;3,77;58,25;41,40;0;Australia;Pacific Region;"Ivyspring International Publisher";"2005-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +5558;19450;"Journal of Health, Population and Nutrition";journal;"16060997, 20721315";"BioMed Central Ltd";Yes;No;0,923;Q1;84;431;420;21414;1664;416;3,90;49,68;46,90;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2026";"Food Science (Q1); Public Health, Environmental and Occupational Health (Q1); Health, Toxicology and Mutagenesis (Q2)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +5559;12257;"Journal of Orthopaedic Trauma";journal;"08905339, 15312291";"Wolters Kluwer Health";No;No;0,923;Q1;159;162;677;3185;1368;643;2,03;19,66;24,53;0;United States;Northern America;"Wolters Kluwer Health";"1987-2026";"Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1); Sports Science (Q2)";"Health Professions; Medicine" +5560;25671;"Washington Quarterly";journal;"15309177, 0163660X";"Taylor and Francis Ltd.";No;No;0,923;Q1;61;37;112;1876;270;112;2,30;50,70;26,79;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-2025";"Law (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5561;21101344622;"Social and Emotional Learning: Research, Practice, and Policy";journal;"27732339";"Elsevier B.V.";Yes;No;0,923;Q2;10;82;58;5231;291;58;5,02;63,79;71,68;1;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Developmental and Educational Psychology (Q2)";"Psychology" +5562;5700164288;"Cambridge Review of International Affairs";journal;"09557571, 1474449X";"Routledge";No;No;0,922;Q1;61;77;161;4986;339;114;1,65;64,75;31,03;1;United Kingdom;Western Europe;"Routledge";"1986, 1988-2026";"Political Science and International Relations (Q1)";"Social Sciences" +5563;21100285069;"Hospital Pediatrics";journal;"21541671, 21541663";"American Academy of Pediatrics";No;No;0,922;Q1;45;238;694;6286;1383;590;1,84;26,41;67,75;0;United States;Northern America;"American Academy of Pediatrics";"2011-2026";"Medicine (miscellaneous) (Q1); Pediatrics (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine; Nursing" +5564;19900192221;"Journal of Management Control";journal;"2191477X, 21914761";"Physica-Verlag";No;No;0,922;Q1;37;21;52;2163;282;49;4,40;103,00;34,09;0;Germany;Western Europe;"Physica-Verlag";"2011-2026";"Management Information Systems (Q1); Management Science and Operations Research (Q1); Accounting (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +5565;17828;"Mechanics of Materials";journal;"01676636";"Elsevier B.V.";No;No;0,922;Q1;137;218;716;12876;3193;715;4,23;59,06;23,93;0;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Instrumentation (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science; Physics and Astronomy" +5566;16970;"Pathologica";journal;"00312983, 1591951X";"Pacini Editore Srl";Yes;No;0,922;Q1;32;73;153;2311;478;138;2,87;31,66;54,16;0;Italy;Western Europe;"Pacini Editore Srl";"1945-1948, 1950-2025";"Pathology and Forensic Medicine (Q1)";"Medicine" +5567;21101230650;"Peer Community Journal";journal;"28043871";"Centre Mersenne";Yes;Yes;0,922;Q1;16;140;321;10342;735;321;2,15;73,87;45,01;1;France;Western Europe;"Centre Mersenne";"2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +5568;4100151507;"Research in Social Stratification and Mobility";journal;"02765624";"Emerald Publishing";No;No;0,922;Q1;66;67;181;5302;502;179;2,46;79,13;49,64;3;United States;Northern America;"Emerald Publishing";"2001-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5569;200147127;"Scandinavian Journal of Educational Research";journal;"14701170, 00313831";"Routledge";No;No;0,922;Q1;64;177;262;9274;945;261;3,49;52,40;72,32;6;United Kingdom;Western Europe;"Routledge";"1971-2026";"Education (Q1)";"Social Sciences" +5570;24749;"Addiction Biology";journal;"13556215, 13691600";"Wiley-Blackwell";Yes;No;0,921;Q1;101;99;335;5482;973;328;2,61;55,37;40,27;0;United States;Northern America;"Wiley-Blackwell";"1996-2026";"Medicine (miscellaneous) (Q1); Pharmacology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +5571;21100905390;"Batteries";journal;"23130105";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,921;Q1;68;465;1331;32480;8467;1325;6,43;69,85;28,34;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2026";"Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Electrochemistry (Q2)";"Chemistry; Energy; Engineering" +5572;16593;"Canadian Association of Radiologists Journal";journal;"08465371, 14882361";"Elsevier Inc.";No;No;0,921;Q1;48;134;361;3971;894;224;2,80;29,63;41,87;0;Canada;Northern America;"Elsevier Inc.";"1969, 1973-2026";"Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +5573;21101133622;"Cancer Innovation";journal;"27709191, 27709183";"John Wiley and Sons Inc";Yes;No;0,921;Q1;13;55;124;3365;443;115;3,78;61,18;45,54;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Drug Discovery (Q2); Oncology (Q2); Pharmacology (medical) (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +5574;5700165209;"Community College Review";journal;"19402325, 00915521";"SAGE Publications Inc.";No;No;0,921;Q1;44;20;70;1217;203;70;2,44;60,85;67,86;0;United States;Northern America;"SAGE Publications Inc.";"1973-2026";"Education (Q1)";"Social Sciences" +5575;5600155022;"Current Issues in Language Planning";journal;"14664208, 17477506";"Routledge";No;No;0,921;Q1;42;94;81;5504;356;80;4,29;58,55;49,36;0;United Kingdom;Western Europe;"Routledge";"2008-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +5576;25385;"Elements";journal;"18115209, 18115217";"Mineralogical Society of America";Yes;No;0,921;Q1;113;58;196;1164;367;144;2,11;20,07;39,00;0;United States;Northern America;"Mineralogical Society of America";"1973, 2005-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geochemistry and Petrology (Q1)";"Earth and Planetary Sciences" +5577;21098;"International Journal of Damage Mechanics";journal;"10567895, 15307921";"SAGE Publications Ltd";No;No;0,921;Q1;65;60;162;3049;652;162;3,89;50,82;17,06;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2026";"Computational Mechanics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +5578;23086;"Journal of Pharmacology and Experimental Therapeutics";journal;"15210103, 00223565";"Elsevier Inc.";No;No;0,921;Q2;254;287;440;17023;1418;418;3,40;59,31;41,15;0;United States;Northern America;"Elsevier Inc.";"1943, 1945-2026";"Molecular Medicine (Q2); Pharmacology (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +5579;17500155126;"Attention, Perception, and Psychophysics";journal;"1943393X, 19433921";"Springer New York";No;No;0,920;Q1;145;166;588;9391;1163;587;1,87;56,57;40,17;1;United States;Northern America;"Springer New York";"2009-2026";"Linguistics and Language (Q1); Experimental and Cognitive Psychology (Q2); Sensory Systems (Q2)";"Neuroscience; Psychology; Social Sciences" +5580;18650;"Empirical Software Engineering";journal;"13823256, 15737616";"Springer Netherlands";No;No;0,920;Q1;106;174;506;12407;2276;499;4,13;71,30;30,37;1;Netherlands;Western Europe;"Springer Netherlands";"1996-2026";"Software (Q1)";"Computer Science" +5581;20992;"Environmental Geochemistry and Health";journal;"15732983, 02694042";"Springer";No;No;0,920;Q1;106;567;1357;41254;6110;1321;4,76;72,76;37,57;0;Netherlands;Western Europe;"Springer";"1983-2026";"Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1); Geochemistry and Petrology (Q1); Medicine (miscellaneous) (Q1); Water Science and Technology (Q1); Environmental Chemistry (Q2)";"Earth and Planetary Sciences; Environmental Science; Medicine" +5582;21101063734;"Journal of Global Responsibility";journal;"20412568, 20412576";"Emerald Group Publishing Ltd.";No;No;0,920;Q1;35;63;73;5124;470;68;6,00;81,33;44,06;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2026";"Business and International Management (Q1)";"Business, Management and Accounting" +5583;12346;"Optics and Laser Technology";journal;"00303992";"Elsevier Ltd";No;No;0,920;Q1;130;2552;3583;113626;21137;3578;6,01;44,52;30,59;0;United Kingdom;Western Europe;"Elsevier Ltd";"1970-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)";"Engineering; Materials Science; Physics and Astronomy" +5584;5700191215;"Infectious Agents and Cancer";journal;"17509378";"BioMed Central Ltd";Yes;No;0,920;Q2;54;85;203;5064;721;195;3,17;59,58;50,62;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Epidemiology (Q2); Infectious Diseases (Q2); Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5585;21101150680;"Diseases";journal;"20799721";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,919;Q1;34;405;645;23253;2536;638;4,03;57,41;47,48;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016, 2020-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +5586;21143;"Foot and Ankle Surgery";journal;"14609584, 12687731";"Elsevier Ltd";No;No;0,919;Q1;58;142;440;4106;1206;417;2,60;28,92;23,00;2;United Kingdom;Western Europe;"Elsevier Ltd";"1994, 1996-2026";"Orthopedics and Sports Medicine (Q1)";"Medicine" +5587;25993;"IEEE Aerospace and Electronic Systems Magazine";journal;"08858985, 1557959X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,919;Q1;81;92;161;3535;783;151;4,76;38,42;22,58;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1986-2026";"Aerospace Engineering (Q1); Electrical and Electronic Engineering (Q1); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Engineering" +5588;15877;"Journal of Community Health";journal;"00945145, 15733610";"Springer Netherlands";No;No;0,919;Q1;88;137;354;5126;1077;346;2,73;37,42;61,35;0;Netherlands;Western Europe;"Springer Netherlands";"1975-2026";"Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +5589;4000151907;"Journal of the Royal Society Interface";journal;"17425689, 17425662";"Royal Society Publishing";Yes;No;0,919;Q1;186;255;672;15455;2525;670;3,29;60,61;27,85;4;United Kingdom;Western Europe;"Royal Society Publishing";"2004-2026";"Biophysics (Q1); Biochemistry (Q2); Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +5590;21100239235;"Natural Gas Geoscience";journal;"16721926";"Science Press";No;No;0,919;Q1;53;165;470;7364;1499;469;3,35;44,63;33,47;0;China;Asiatic Region;"Science Press";"2013-2025";"Geology (Q1)";"Earth and Planetary Sciences" +5591;21100855744;"Petroleum";journal;"24055816, 24056561";"KeAi Communications Co.";Yes;No;0,919;Q1;53;66;172;4472;995;172;6,17;67,76;20,56;0;China;Asiatic Region;"KeAi Communications Co.";"2015-2026";"Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Geochemistry and Petrology (Q2)";"Earth and Planetary Sciences; Energy" +5592;15094;"Retina";journal;"15392864, 0275004X";"Lippincott Williams and Wilkins";Yes;No;0,919;Q1;153;477;1039;8776;2201;918;1,99;18,40;36,82;0;United States;Northern America;"Lippincott Williams and Wilkins";"1981-2026";"Medicine (miscellaneous) (Q1); Ophthalmology (Q1)";"Medicine" +5593;28300;"Digestive Diseases and Sciences";journal;"01632116, 15732568";"Springer";No;No;0,919;Q2;152;790;1745;19663;4043;1450;2,15;24,89;37,76;0;United States;Northern America;"Springer";"1970, 1979-2026";"Gastroenterology (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5594;21100197927;"FEBS Open Bio";journal;"22115463";"John Wiley and Sons Inc";Yes;No;0,919;Q2;58;194;503;10057;1428;487;2,72;51,84;45,62;1;United States;Northern America;"John Wiley and Sons Inc";"2011-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology" +5595;29424;"Acta Psychologica";journal;"18736297, 00016918";"Elsevier B.V.";Yes;No;0,918;Q1;122;1306;993;93773;4316;984;4,38;71,80;46,11;3;Netherlands;Western Europe;"Elsevier B.V.";"1936-1937, 1939, 1941, 1949-1951, 1953-2026";"Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)";"Arts and Humanities; Medicine; Psychology" +5596;144617;"Complementary Therapies in Clinical Practice";journal;"17443881";"Churchill Livingstone";No;No;0,918;Q1;71;76;326;4226;1265;318;3,96;55,61;55,73;0;United Kingdom;Western Europe;"Churchill Livingstone";"2005-2026";"Complementary and Alternative Medicine (Q1)";"Medicine" +5597;21101114151;"eFood";journal;"26663066";"John Wiley and Sons Inc";Yes;No;0,918;Q1;29;83;183;6309;1114;168;5,96;76,01;42,59;0;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +5598;21100338307;"IEEE Journal of Translational Engineering in Health and Medicine";journal;"21682372";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,918;Q1;53;51;184;2148;1067;184;4,74;42,12;32,92;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2026";"Medicine (miscellaneous) (Q1); Biomedical Engineering (Q2)";"Engineering; Medicine" +5599;21101201218;"Journal of Anesthesia, Analgesia and Critical Care";journal;"27313786";"BioMed Central Ltd";Yes;No;0,918;Q1;17;89;181;3430;700;158;3,70;38,54;42,07;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2021-2026";"Anesthesiology and Pain Medicine (Q1); Critical Care and Intensive Care Medicine (Q1)";"Medicine" +5600;21100899443;"Language Testing in Asia";journal;"22290443";"SpringerOpen";Yes;No;0,918;Q1;28;75;170;3688;714;169;4,11;49,17;41,67;0;United States;Northern America;"SpringerOpen";"2011-2026";"Linguistics and Language (Q1)";"Social Sciences" +5601;21617;"Nations and Nationalism";journal;"14698129, 13545078";"Wiley-Blackwell Publishing Ltd";No;No;0,918;Q1;64;126;230;8290;667;219;3,09;65,79;34,76;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1995-2026";"Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Arts and Humanities; Social Sciences" +5602;19989;"Perspectives in Plant Ecology, Evolution and Systematics";journal;"16180437, 14338319";"Elsevier GmbH";No;No;0,918;Q1;97;39;91;3421;304;91;2,77;87,72;45,58;0;Germany;Western Europe;"Elsevier GmbH";"1998-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +5603;21101081715;"Progress in Biomaterials";journal;"21940517, 21940509";"OICC Press";No;No;0,918;Q1;45;0;44;0;321;44;7,58;0,00;0,00;0;Germany;Western Europe;"OICC Press";"2013-2023";"Chemical Engineering (miscellaneous) (Q1); Biomaterials (Q2)";"Chemical Engineering; Materials Science" +5604;21100304259;"Quantum Topology";journal;"1664073X, 1663487X";"European Mathematical Society Publishing House";Yes;Yes;0,918;Q1;21;10;45;483;75;45;2,03;48,30;13,33;0;Germany;Western Europe;"European Mathematical Society Publishing House";"2013-2025";"Geometry and Topology (Q1); Mathematical Physics (Q1)";"Mathematics" +5605;19391;"Social Indicators Research";journal;"03038300, 15730921";"Springer Netherlands";No;No;0,918;Q1;157;280;732;18581;3115;728;3,86;66,36;45,51;10;Netherlands;Western Europe;"Springer Netherlands";"1974-2026";"Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Developmental and Educational Psychology (Q2)";"Arts and Humanities; Psychology; Social Sciences" +5606;21000196010;"Topics in Antiviral Medicine";journal;"21615861, 21615853";"International Antiviral Society";No;No;0,918;Q1;48;14;49;284;123;49;2,08;20,29;54,55;0;United States;Northern America;"International Antiviral Society";"2011-2025";"Medicine (miscellaneous) (Q1); Infectious Diseases (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2); Virology (Q2)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +5607;21264;"Drugs in R and D";journal;"11796901, 11745886";"";Yes;No;0,918;Q2;58;32;119;1115;291;117;2,68;34,84;52,52;1;Switzerland;Western Europe;"";"1999, 2002-2008, 2010-2025";"Pharmacology (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +5608;19172;"Psychosomatic Medicine";journal;"00333174, 15347796";"Lippincott Williams and Wilkins";No;No;0,918;Q2;223;11;333;515;891;315;2,51;46,82;82,35;0;United States;Northern America;"Lippincott Williams and Wilkins";"1945-2025";"Applied Psychology (Q2); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +5609;14491;"Archives of Disease in Childhood";journal;"00039888, 14682044";"BMJ Publishing Group";No;No;0,917;Q1;176;356;923;6771;1741;637;1,85;19,02;58,40;4;United Kingdom;Western Europe;"BMJ Publishing Group";"1930, 1932-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +5610;23224;"Australian Journal of International Affairs";journal;"10357718, 1465332X";"Taylor and Francis Ltd.";No;No;0,917;Q1;43;86;168;4361;437;120;2,10;50,71;32,08;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2026";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +5611;15076;"Italian Journal of Pediatrics";journal;"18247288, 17208424";"BioMed Central Ltd";Yes;No;0,917;Q1;69;327;624;12833;2292;592;3,63;39,24;57,49;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1992, 2001-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +5612;21100975552;"Journal of Chinese Governance";journal;"23812354, 23812346";"Taylor and Francis Ltd.";No;No;0,917;Q1;26;41;73;2985;296;73;4,08;72,80;42,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Political Science and International Relations (Q1); Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5613;26751;"Scientia Horticulturae";journal;"03044238";"Elsevier B.V.";Yes;No;0,917;Q1;169;650;2828;40323;14961;2826;5,13;62,04;43,29;1;Netherlands;Western Europe;"Elsevier B.V.";"1973-2026";"Horticulture (Q1)";"Agricultural and Biological Sciences" +5614;16703;"American Journal of Botany";journal;"15372197, 00029122";"John Wiley & Sons Inc.";No;No;0,916;Q1;186;153;469;12065;1256;453;2,69;78,86;44,04;1;United States;Northern America;"John Wiley & Sons Inc.";"1922, 1934-1935, 1939-1943, 1946-1957, 1959-1960, 1965-1970, 1974, 1976-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +5615;21101262998;"Frontiers in Environmental Chemistry";journal;"26734486";"Frontiers Media SA";Yes;No;0,916;Q1;15;27;74;1835;254;65;4,22;67,96;52,78;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Analytical Chemistry (Q1); Atomic and Molecular Physics, and Optics (Q1); Spectroscopy (Q1); Environmental Chemistry (Q2)";"Chemistry; Environmental Science; Physics and Astronomy" +5616;15168;"Hydrobiologia";journal;"15735117, 00188158";"Springer Science and Business Media Deutschland GmbH";No;No;0,916;Q1;179;394;899;31804;2894;882;3,46;80,72;42,13;8;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1948-2026";"Aquatic Science (Q1)";"Agricultural and Biological Sciences" +5617;12782;"Lifetime Data Analysis";journal;"15729249, 13807870";"Springer";No;No;0,916;Q1;58;38;102;1556;150;99;1,67;40,95;44,44;0;United States;Northern America;"Springer";"1995-2026";"Applied Mathematics (Q1); Medicine (miscellaneous) (Q1)";"Mathematics; Medicine" +5618;21100372101;"Nanotechnology Reviews";journal;"21919097, 21919089";"Walter de Gruyter GmbH";Yes;No;0,916;Q1;80;116;487;10059;3622;487;5,94;86,72;33,22;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2012-2026";"Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Surfaces, Coatings and Films (Q1); Biomaterials (Q2); Biotechnology (Q2); Energy Engineering and Power Technology (Q2); Process Chemistry and Technology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Energy; Engineering; Materials Science; Medicine" +5619;19900193816;"Numerical Mathematics";journal;"20797338, 10048979";"Global Science Press";No;No;0,916;Q1;30;37;132;1241;234;130;1,14;33,54;33,98;0;Hong Kong;Asiatic Region;"Global Science Press";"2010-2025";"Applied Mathematics (Q1); Computational Mathematics (Q1); Control and Optimization (Q1); Modeling and Simulation (Q1)";"Mathematics" +5620;12647;"Pediatric Blood and Cancer";journal;"15455017, 15455009";"Wiley-Liss Inc.";No;No;0,916;Q1;138;730;1935;20534;3503;1249;1,70;28,13;57,22;2;United States;Northern America;"Wiley-Liss Inc.";"2004-2026";"Medicine (miscellaneous) (Q1); Pediatrics, Perinatology and Child Health (Q1); Hematology (Q2); Oncology (Q2)";"Medicine" +5621;20354;"Research in Microbiology";journal;"09232508, 17697123";"Elsevier Masson s.r.l.";No;No;0,916;Q1;129;47;174;3701;755;171;4,44;78,74;52,49;0;France;Western Europe;"Elsevier Masson s.r.l.";"1987-2025";"Medicine (miscellaneous) (Q1); Microbiology (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +5622;21101083451;"Vegetation Classification and Survey";journal;"26830671";"Pensoft Publishers";Yes;No;0,916;Q1;13;21;71;1562;195;71;2,96;74,38;35,45;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2020-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +5623;21100781411;"Journal of Risk Finance";journal;"23312947, 15265943";"Emerald Publishing";No;No;0,916;Q2;53;47;112;3212;666;109;5,28;68,34;39,67;0;United Kingdom;Western Europe;"Emerald Publishing";"1999-2026";"Accounting (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +5624;21100211345;"Annals of Applied Statistics";journal;"19417330, 19326157";"Institute of Mathematical Statistics";No;No;0,915;Q1;96;160;457;8088;807;457;1,67;50,55;32,42;0;United States;Northern America;"Institute of Mathematical Statistics";"2007-2025";"Modeling and Simulation (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +5625;24603;"Archives of Environmental Contamination and Toxicology";journal;"14320703, 00904341";"Springer";No;No;0,915;Q1;134;90;222;4908;674;219;2,47;54,53;43,88;9;United States;Northern America;"Springer";"1973-2026";"Medicine (miscellaneous) (Q1); Health, Toxicology and Mutagenesis (Q2); Pollution (Q2); Toxicology (Q2)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +5626;12825;"Canadian Psychology";journal;"07085591, 18787304";"Canadian Psychological Association";No;No;0,915;Q1;77;32;114;2384;326;112;2,22;74,50;55,00;0;Canada;Northern America;"Canadian Psychological Association";"1986-1988, 1990-1991, 1993, 1996-2025";"Psychology (miscellaneous) (Q1)";"Psychology" +5627;27974;"Frontiers in Bioscience - Landmark";journal;"27686701, 27686698";"IMR Press Limited";Yes;No;0,915;Q1;174;380;1133;28896;4466;1119;4,02;76,04;47,73;0;Hong Kong;Asiatic Region;"IMR Press Limited";"1987, 1996-2026";"Medicine (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +5628;21101038730;"International Journal of Geoheritage and Parks";journal;"25774441, 2577445X";"KeAi Communications Co.";Yes;Yes;0,915;Q1;32;43;121;2366;700;118;5,46;55,02;24,52;0;China;Asiatic Region;"KeAi Communications Co.";"2018-2026";"Development (Q1); Geography, Planning and Development (Q1); Geology (Q1); Nature and Landscape Conservation (Q1); Social Sciences (miscellaneous) (Q1); Urban Studies (Q1)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +5629;3500148005;"Joint Commission Journal on Quality and Patient Safety";journal;"15537250";"Joint Commission Resources, Inc.";No;No;0,915;Q1;92;98;318;2781;666;233;2,14;28,38;59,62;3;United States;Northern America;"Joint Commission Resources, Inc.";"2005-2026";"Dermatology (Q1); Leadership and Management (Q1); Pediatrics (Q1); Pulmonary and Respiratory Medicine (Q1); Gastroenterology (Q2); Immunology and Allergy (Q2)";"Medicine; Nursing" +5630;21100327124;"Journal of Primary Care and Community Health";journal;"21501327, 21501319";"Sage Periodicals Press";Yes;No;0,915;Q1;48;270;626;9777;1830;595;2,65;36,21;61,47;2;United States;Northern America;"Sage Periodicals Press";"2010-2026";"Community and Home Care (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Nursing" +5631;5700154786;"Journal of Vocational Education and Training";journal;"17475090, 13636820";"Routledge";No;No;0,915;Q1;49;95;149;5391;592;141;4,06;56,75;52,55;3;United Kingdom;Western Europe;"Routledge";"1996-2026";"Education (Q1)";"Social Sciences" +5632;26370;"Molecules";journal;"14203049";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,915;Q1;296;4790;23193;314829;138722;23040;5,55;65,73;46,90;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"1996-2026";"Analytical Chemistry (Q1); Chemistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Organic Chemistry (Q1); Pharmaceutical Science (Q1); Physical and Theoretical Chemistry (Q1); Drug Discovery (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +5633;17976;"Neuromuscular Disorders";journal;"18732364, 09608966";"Elsevier Ltd";No;No;0,915;Q1;121;106;369;3838;951;355;2,76;36,21;55,08;0;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Pediatrics, Perinatology and Child Health (Q1); Genetics (clinical) (Q2); Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +5634;21100854841;"Pain and Therapy";journal;"2193651X, 21938237";"";Yes;No;0,915;Q1;47;112;318;5886;1232;281;3,96;52,55;35,98;1;United Kingdom;Western Europe;"";"2012-2026";"Anesthesiology and Pain Medicine (Q1); Neurology (clinical) (Q2)";"Medicine" +5635;16603;"Plant Growth Regulation";journal;"15735087, 01676903";"Springer Science and Business Media B.V.";No;No;0,915;Q1;135;145;495;11138;2563;492;5,14;76,81;40,44;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1967, 1982, 1984-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1); Physiology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +5636;21100367158;"Brain Sciences";journal;"20763425";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,915;Q2;90;1337;4717;87783;17529;4578;3,61;65,66;47,06;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Neuroscience (miscellaneous) (Q2)";"Neuroscience" +5637;21100941127;"Journal of Patient-Reported Outcomes";journal;"25098020";"Springer International Publishing AG";Yes;No;0,915;Q2;43;139;413;5327;1288;406;2,82;38,32;56,06;0;Switzerland;Western Europe;"Springer International Publishing AG";"2017-2026";"Health Informatics (Q2); Health Information Management (Q2)";"Health Professions; Medicine" +5638;13343;"Nutrition Research";journal;"18790739, 02715317";"Elsevier Inc.";No;No;0,915;Q2;124;126;339;8274;1300;331;3,70;65,67;57,62;0;United States;Northern America;"Elsevier Inc.";"1981-2026";"Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +5639;21101130465;"ACS Organic and Inorganic Au";journal;"2694247X";"American Chemical Society";Yes;No;0,914;Q1;21;55;161;3160;705;152;4,71;57,45;36,80;0;United States;Northern America;"American Chemical Society";"2021-2026";"Inorganic Chemistry (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry" +5640;21100201089;"Algal Research";journal;"22119264";"Elsevier B.V.";No;No;0,914;Q1;123;617;1233;42368;7394;1233;5,64;68,67;44,20;1;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Agronomy and Crop Science (Q1)";"Agricultural and Biological Sciences" +5641;12128;"Behavioural and Cognitive Psychotherapy";journal;"14691833, 13524658";"Cambridge University Press";No;No;0,914;Q1;85;39;157;1815;416;155;2,52;46,54;64,56;0;United Kingdom;Western Europe;"Cambridge University Press";"1993-2026";"Medicine (miscellaneous) (Q1); Clinical Psychology (Q2)";"Medicine; Psychology" +5642;21101307731;"ESMO Gastrointestinal Oncology";journal;"29498198";"Elsevier B.V.";Yes;No;0,914;Q1;6;124;48;5574;80;44;1,67;44,95;36,22;2;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Oncology (nursing) (Q1); Epidemiology (Q2); Gastroenterology (Q2); Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +5643;27684;"European Journal of Oncology Nursing";journal;"15322122, 14623889";"Churchill Livingstone";No;No;0,914;Q1;79;264;498;12734;2016;494;3,86;48,23;66,91;0;United Kingdom;Western Europe;"Churchill Livingstone";"1998-2026";"Medicine (miscellaneous) (Q1); Oncology (nursing) (Q2)";"Medicine; Nursing" +5644;16473;"Journal of Contemporary Asia";journal;"00472336, 17527554";"Taylor and Francis Ltd.";No;No;0,914;Q1;58;57;117;3376;421;115;3,46;59,23;28,79;5;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1970-2026";"Cultural Studies (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +5645;21100284946;"Journal of Critical Realism";journal;"14767430, 15725138";"Maney Publishing";No;No;0,914;Q1;26;32;97;2019;311;80;2,07;63,09;46,43;0;United Kingdom;Western Europe;"Maney Publishing";"2013-2026";"Philosophy (Q1)";"Arts and Humanities" +5646;21101210522;"Journal of Islamic Law";journal;"27215032, 27215040";"Institut Agama Islam Negeri Pontianak";Yes;No;0,914;Q1;13;17;38;1395;160;38;4,85;82,06;27,27;0;Indonesia;Asiatic Region;"Institut Agama Islam Negeri Pontianak";"2020-2025";"Arts and Humanities (miscellaneous) (Q1); Law (Q1); Religious Studies (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +5647;23837;"Linguistics and Education";journal;"08985898";"Elsevier Ltd";No;No;0,914;Q1;67;64;228;4157;743;224;3,27;64,95;56,49;0;United Kingdom;Western Europe;"Elsevier Ltd";"1988-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +5648;21101060255;"Novum Jus";journal;"16926013, 25008692";"Universidad Catolica de Colombia";Yes;Yes;0,914;Q1;10;47;140;2344;197;131;1,38;49,87;36,11;0;Colombia;Latin America;"Universidad Catolica de Colombia";"2019-2025";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5649;90223;"Nutrition Bulletin";journal;"14673010, 14719827";"John Wiley and Sons Ltd";No;No;0,914;Q1;60;54;146;4172;546;124;3,31;77,26;59,29;3;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1968-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +5650;21100874237;"Physical Review A";journal;"24699934, 24699926";"American Physical Society";No;No;0,914;Q1;320;2507;7033;142364;20084;7023;2,82;56,79;21,88;0;United States;Northern America;"American Physical Society";"2006, 2008-2009, 2015-2026";"Atomic and Molecular Physics, and Optics (Q1)";"Physics and Astronomy" +5651;20500195116;"Probation Journal";journal;"17413079, 02645505";"SAGE Publications Ltd";No;No;0,914;Q1;44;51;74;2367;203;58;2,17;46,41;56,36;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1929-1949, 1954-1956, 1959, 1962, 1965-2026";"Law (Q1)";"Social Sciences" +5652;5800208246;"TESOL Journal";journal;"19493533, 10567941";"John Wiley and Sons Inc";No;No;0,914;Q1;38;112;209;5253;618;194;2,96;46,90;64,14;0;United States;Northern America;"John Wiley and Sons Inc";"2001-2003, 2010-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +5653;21100305282;"Emerging Adulthood";journal;"21676984, 21676968";"SAGE Publications Ltd";No;No;0,914;Q2;54;104;326;7259;958;326;2,38;69,80;65,24;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2013-2026";"Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2); Life-span and Life-course Studies (Q2)";"Psychology; Social Sciences" +5654;21100200804;"ACM Transactions on Management Information Systems";journal;"21586578, 2158656X";"Association for Computing Machinery";No;No;0,913;Q1;45;34;86;2142;425;83;5,07;63,00;27,56;0;United States;Northern America;"Association for Computing Machinery";"2010-2025";"Computer Science (miscellaneous) (Q1); Management Information Systems (Q1)";"Business, Management and Accounting; Computer Science" +5655;18450;"Cell Biology International";journal;"10958355, 10656995";"Wiley-Blackwell";No;No;0,913;Q1;97;127;491;8334;1774;486;3,44;65,62;47,79;0;United States;Northern America;"Wiley-Blackwell";"1993-2026";"Medicine (miscellaneous) (Q1); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5656;28425;"Fire Safety Journal";journal;"03797112";"Elsevier Ltd";No;No;0,913;Q1;112;194;614;8264;2625;608;3,97;42,60;24,89;0;United Kingdom;Western Europe;"Elsevier Ltd";"1977-2026";"Building and Construction (Q1); Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1); Safety, Risk, Reliability and Quality (Q1)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +5657;25733;"Journal of Criminal Justice";journal;"00472352";"Elsevier B.V.";Yes;No;0,913;Q1;110;180;313;13848;993;311;2,64;76,93;51,86;3;United Kingdom;Western Europe;"Elsevier B.V.";"1973-2026";"Law (Q1); Social Psychology (Q1); Sociology and Political Science (Q1); Applied Psychology (Q2)";"Psychology; Social Sciences" +5658;15568;"Journal of Mathematical Psychology";journal;"10960880, 00222496";"Academic Press Inc.";No;No;0,913;Q1;88;34;110;1534;231;106;1,40;45,12;23,75;0;United States;Northern America;"Academic Press Inc.";"1964-2026";"Applied Mathematics (Q1); Psychology (miscellaneous) (Q1)";"Mathematics; Psychology" +5659;13933;"Journal of Regional Science";journal;"14679787, 00224146";"Wiley-Blackwell Publishing Ltd";No;No;0,913;Q1;98;72;160;4922;533;158;3,21;68,36;30,60;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1958-2026";"Development (Q1); Environmental Science (miscellaneous) (Q1)";"Environmental Science; Social Sciences" +5660;144659;"Journal of Small Business and Enterprise Development";journal;"14626004";"Emerald Group Publishing Ltd.";No;No;0,913;Q1;97;86;208;8552;1244;196;5,95;99,44;38,02;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1994-2026";"Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q2)";"Business, Management and Accounting" +5661;18338;"Journal of the Royal Society of Medicine";journal;"17581095, 01410768";"SAGE Publications Ltd";Yes;No;0,913;Q1;102;88;273;1443;522;117;1,97;16,40;30,63;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1908-1918, 1920-1922, 1924-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +5662;21100886228;"Policy Insights from the Behavioral and Brain Sciences";journal;"23727330, 23727322";"SAGE Publications Ltd";No;No;0,913;Q1;46;21;87;1426;393;87;4,52;67,90;65,67;2;United States;Northern America;"SAGE Publications Ltd";"2014-2026";"Public Administration (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +5663;4100151702;"Vascular Health and Risk Management";journal;"11782048, 11766344";"Dove Medical Press Ltd";Yes;No;0,913;Q1;90;89;226;3564;780;212;3,24;40,04;43,41;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2005-2026";"Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Cardiology and Cardiovascular Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q2); Hematology (Q2); Pharmacology (medical) (Q2)";"Medicine" +5664;30082;"Archives of Gynecology and Obstetrics";journal;"14320711, 09320067";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,912;Q1;96;424;1583;13852;4196;1441;2,72;32,67;53,87;4;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1987-2026";"Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)";"Medicine" +5665;12117;"Asia Pacific Journal of Tourism Research";journal;"10941665, 17416507";"Taylor and Francis Ltd.";No;No;0,912;Q1;75;154;249;12572;1509;249;5,70;81,64;43,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +5666;30025;"British Journal of Nutrition";journal;"00071145, 14752662";"Cambridge University Press";No;No;0,912;Q1;238;267;1224;14155;4169;1190;3,08;53,01;58,62;0;United Kingdom;Western Europe;"Cambridge University Press";"1947-2026";"Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +5667;13486;"Death Studies";journal;"10917683, 07481187";"Taylor and Francis Ltd.";No;No;0,912;Q1;91;336;468;17250;1805;467;3,10;51,34;62,62;2;United States;Northern America;"Taylor and Francis Ltd.";"1985-2026";"Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q2); Developmental and Educational Psychology (Q2)";"Arts and Humanities; Psychology" +5668;21101088224;"ImmunoHorizons";journal;"25737732";"American Association of Immunologists";Yes;No;0,912;Q1;28;82;243;4119;528;231;2,28;50,23;47,54;0;United States;Northern America;"American Association of Immunologists";"2017-2026";"Medicine (miscellaneous) (Q1); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +5669;12791;"Journal of Academic Librarianship";journal;"00991333";"Elsevier B.V.";No;No;0,912;Q1;75;130;370;6408;1415;367;3,86;49,29;64,49;1;United Kingdom;Western Europe;"Elsevier B.V.";"1988-2026";"Education (Q1); Library and Information Sciences (Q1)";"Social Sciences" +5670;16300154722;"Psychology of Music";journal;"17413087, 03057356";"SAGE Publications Ltd";No;No;0,912;Q1;86;107;270;6826;745;269;2,42;63,79;53,61;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1973-2026";"Music (Q1); Psychology (miscellaneous) (Q1)";"Arts and Humanities; Psychology" +5671;21100242826;"Safety and Health at Work";journal;"20937997, 20937911";"Elsevier B.V.";Yes;No;0,912;Q1;63;68;206;2660;761;199;3,61;39,12;42,41;0;South Korea;Asiatic Region;"Elsevier B.V.";"2010-2026";"Chemical Health and Safety (Q1); Public Health, Environmental and Occupational Health (Q1); Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1)";"Chemical Engineering; Engineering; Medicine; Social Sciences" +5672;23122;"Tropical Medicine and International Health";journal;"13602276, 13653156";"Wiley-Blackwell Publishing Ltd";No;No;0,912;Q1;138;124;311;5571;862;304;2,55;44,93;45,54;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Parasitology (Q1); Public Health, Environmental and Occupational Health (Q1); Infectious Diseases (Q2)";"Immunology and Microbiology; Medicine" +5673;21100265668;"Journal of Accounting Literature";journal;"07374607";"Emerald Publishing";No;No;0,912;Q2;31;157;73;12979;283;73;3,80;82,67;31,09;0;United Kingdom;Western Europe;"Emerald Publishing";"2013-2019, 2022-2026";"Accounting (Q2)";"Business, Management and Accounting" +5674;15039;"African Affairs";journal;"00019909, 14682621";"Oxford University Press";No;No;0,911;Q1;93;18;85;1292;237;81;2,29;71,78;39,13;2;United Kingdom;Western Europe;"Oxford University Press";"1901-2025";"Geography, Planning and Development (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5675;21100457325;"African Journalism Studies";journal;"23743689, 23743670";"Taylor and Francis Ltd.";No;No;0,911;Q1;31;35;60;2066;171;58;1,74;59,03;31,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Communication (Q1)";"Social Sciences" +5676;21100932472;"Journal of Learning Analytics";journal;"19297750";"UTS ePRESS";Yes;No;0,911;Q1;31;48;107;3090;428;101;4,11;64,38;40,63;0;Australia;Pacific Region;"UTS ePRESS";"2014, 2019-2025";"Computer Science Applications (Q1); Education (Q1)";"Computer Science; Social Sciences" +5677;22097;"Neurosurgical Review";journal;"03445607, 14372320";"Springer Science and Business Media Deutschland GmbH";No;No;0,911;Q1;83;629;1428;23941;3450;1047;1,99;38,06;26,06;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1978-2026";"Medicine (miscellaneous) (Q1); Surgery (Q1); Neurology (clinical) (Q2)";"Medicine" +5678;25222;"Toxicology and Applied Pharmacology";journal;"10960333, 0041008X";"Academic Press Inc.";No;No;0,911;Q2;199;345;807;17641;3175;799;3,79;51,13;46,41;0;United States;Northern America;"Academic Press Inc.";"1959-2026";"Pharmacology (Q2); Toxicology (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +5679;17548;"Acta Neurologica Scandinavica";journal;"16000404, 00016314";"John Wiley and Sons Inc";No;No;0,910;Q1;119;64;275;2369;748;250;1,04;37,02;47,12;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1961-2026";"Medicine (miscellaneous) (Q1); Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +5680;25184;"Applied Mathematics Letters";journal;"18735452, 08939659";"Elsevier Ltd";No;No;0,910;Q1;122;331;1035;5640;2787;1030;2,75;17,04;37,30;0;United Kingdom;Western Europe;"Elsevier Ltd";"1988-2026";"Applied Mathematics (Q1)";"Mathematics" +5681;21101074914;"BBA Advances";journal;"26671603";"Elsevier B.V.";Yes;No;0,910;Q1;15;47;88;3648;352;87;4,57;77,62;43,33;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Biophysics (Q1); Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology" +5682;21101158935;"Frontiers in Medical Technology";journal;"26733129";"Frontiers Media SA";Yes;No;0,910;Q1;29;67;219;4067;1160;195;4,02;60,70;38,68;0;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Health Professions (miscellaneous) (Q1); Medical Laboratory Technology (Q1); Medicine (miscellaneous) (Q1); Radiological and Ultrasound Technology (Q1); Biomedical Engineering (Q2); Pharmacology (medical) (Q2)";"Engineering; Health Professions; Medicine" +5683;25677;"Journal of Child Language";journal;"03050009, 14697602";"Cambridge University Press";No;No;0,910;Q1;93;98;250;6057;610;244;2,17;61,81;72,80;0;United Kingdom;Western Europe;"Cambridge University Press";"1974-2026";"Linguistics and Language (Q1); Psychology (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)";"Psychology; Social Sciences" +5684;29610;"Journal of Mathematical Biology";journal;"03036812, 14321416";"Springer Science and Business Media Deutschland GmbH";No;No;0,910;Q1;116;149;456;7381;1222;456;2,68;49,54;30,48;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1974-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q1); Modeling and Simulation (Q1)";"Agricultural and Biological Sciences; Mathematics" +5685;13457;"Learning and Motivation";journal;"00239690, 10959122";"Academic Press Inc.";No;No;0,910;Q1;55;117;196;7335;965;195;5,20;62,69;43,42;0;United States;Northern America;"Academic Press Inc.";"1970-2026";"Education (Q1); Health (social science) (Q1); Neuropsychology and Physiological Psychology (Q1); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)";"Psychology; Social Sciences" +5686;14506;"Local Environment";journal;"14696711, 13549839";"Routledge";No;No;0,910;Q1;90;180;276;11865;1073;261;3,34;65,92;48,43;7;United Kingdom;Western Europe;"Routledge";"1996-2026";"Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +5687;21100456856;"Mathematics and Mechanics of Complex Systems";journal;"23253444, 23267186";"Mathematical Sciences Publishers";No;No;0,910;Q1;23;20;61;1126;273;61;5,17;56,30;25,64;0;United States;Northern America;"Mathematical Sciences Publishers";"2013-2026";"Civil and Structural Engineering (Q1); Computational Mathematics (Q1); Numerical Analysis (Q1)";"Engineering; Mathematics" +5688;21100912215;"ACS Applied Bio Materials";journal;"25766422";"American Chemical Society";No;No;0,909;Q1;82;834;1680;54012;9678;1672;5,74;64,76;41,15;0;United States;Northern America;"American Chemical Society";"2018-2026";"Chemistry (miscellaneous) (Q1); Biochemistry (medical) (Q2); Biomaterials (Q2); Biomedical Engineering (Q2)";"Chemistry; Engineering; Materials Science; Medicine" +5689;16811;"Archives of Biochemistry and Biophysics";journal;"00039861, 10960384";"Academic Press Inc.";No;No;0,909;Q1;205;323;725;19710;2587;696;3,64;61,02;46,41;0;United States;Northern America;"Academic Press Inc.";"1951-2026";"Biophysics (Q1); Biochemistry (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +5690;23918;"Environmental Science and Pollution Research";journal;"09441344, 16147499";"Springer";No;No;0,909;Q1;234;1894;18778;136958;100606;18604;5,03;72,31;39,77;15;Germany;Western Europe;"Springer";"1994-2026";"Medicine (miscellaneous) (Q1); Environmental Chemistry (Q2); Health, Toxicology and Mutagenesis (Q2); Pollution (Q2)";"Environmental Science; Medicine" +5691;21100286942;"Hague Journal on the Rule of Law";journal;"18764053, 18764045";"Springer International Publishing AG";No;No;0,909;Q1;29;26;67;1792;188;64;1,98;68,92;43,75;0;Switzerland;Western Europe;"Springer International Publishing AG";"2009-2026";"Law (Q1)";"Social Sciences" +5692;21100211334;"Journal of Cognitive Engineering and Decision Making";journal;"21695032, 15553434";"SAGE Publications Inc.";No;No;0,909;Q1;47;25;66;2043;272;63;2,86;81,72;39,00;2;United States;Northern America;"SAGE Publications Inc.";"2007-2026";"Computer Science Applications (Q1); Engineering (miscellaneous) (Q1); Applied Psychology (Q2); Human Factors and Ergonomics (Q2)";"Computer Science; Engineering; Psychology; Social Sciences" +5693;28449;"Journal of Volcanology and Geothermal Research";journal;"03770273";"Elsevier B.V.";No;No;0,909;Q1;152;161;515;13296;1360;512;2,51;82,58;29,05;1;Netherlands;Western Europe;"Elsevier B.V.";"1976-2026";"Geophysics (Q1); Geochemistry and Petrology (Q2)";"Earth and Planetary Sciences" +5694;12925;"Oecologia";journal;"00298549, 14321939";"Springer Science and Business Media Deutschland GmbH";No;No;0,909;Q1;234;190;553;13234;1569;553;2,65;69,65;40,22;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1968-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +5695;16152;"World Journal of Microbiology and Biotechnology";journal;"09593993, 15730972";"Springer Science and Business Media B.V.";No;No;0,909;Q1;133;498;1012;41212;5482;1008;5,26;82,76;44,06;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1990-2026";"Applied Microbiology and Biotechnology (Q1); Medicine (miscellaneous) (Q1); Biotechnology (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +5696;21100870389;"Chronic Obstructive Pulmonary Diseases";journal;"2372952X";"COPD Foundation";No;No;0,909;Q2;26;52;143;1940;375;137;2,60;37,31;46,25;0;United States;Northern America;"COPD Foundation";"2015-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +5697;18477;"Cell Transplantation";journal;"09636897, 15553892";"SAGE Publications Inc.";Yes;No;0,908;Q1;124;82;302;4566;1084;286;3,73;55,68;41,41;0;United States;Northern America;"SAGE Publications Inc.";"1992-2026";"Medicine (miscellaneous) (Q1); Biomedical Engineering (Q2); Transplantation (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +5698;19700175164;"Frontiers in Human Neuroscience";journal;"16625161";"Frontiers Media SA";Yes;No;0,908;Q1;180;507;2111;29164;7253;1904;3,26;57,52;43,51;0;Switzerland;Western Europe;"Frontiers Media SA";"2008-2026";"Neuropsychology and Physiological Psychology (Q1); Behavioral Neuroscience (Q2); Neurology (Q2); Psychiatry and Mental Health (Q2); Biological Psychiatry (Q3)";"Medicine; Neuroscience; Psychology" +5699;27623;"Journal of Perinatology";journal;"14765543, 07438346";"Springer Nature";No;No;0,908;Q1;126;402;852;13276;2228;798;2,47;33,02;62,28;1;United States;Northern America;"Springer Nature";"1987-2026";"Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +5700;21100777379;"Journal of Personalized Medicine";journal;"20754426";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,908;Q1;79;626;4956;34723;18715;4795;3,63;55,47;41,62;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Medicine (miscellaneous) (Q1)";"Medicine" +5701;21350;"Expert Opinion on Emerging Drugs";journal;"14728214, 17447623";"Taylor and Francis Ltd.";No;No;0,908;Q2;59;22;96;1674;308;83;3,44;76,09;54,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2025";"Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +5702;20416;"Aesthetic Plastic Surgery";journal;"0364216X, 14325241";"Springer New York";No;No;0,907;Q1;89;1183;1726;26232;3524;1107;2,24;22,17;39,09;2;United States;Northern America;"Springer New York";"1976, 1978-2026";"Surgery (Q1)";"Medicine" +5703;26939;"Building Research and Information";journal;"09613218, 14664321";"Taylor and Francis Ltd.";No;No;0,907;Q1;116;72;171;4861;981;166;5,37;67,51;41,86;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1)";"Engineering" +5704;29100;"Cancer Control";journal;"10732748, 15262359";"SAGE Publications Ltd";Yes;No;0,907;Q1;88;243;526;11985;1670;502;2,99;49,32;50,10;0;United States;Northern America;"SAGE Publications Ltd";"1995-2026";"Medicine (miscellaneous) (Q1); Hematology (Q2); Oncology (Q2)";"Medicine" +5705;22781;"Chemical Communications";journal;"1364548X, 13597345";"Royal Society of Chemistry";No;No;0,907;Q1;397;2690;7851;125349;31249;7835;4,08;46,60;35,12;1;United Kingdom;Western Europe;"Royal Society of Chemistry";"1965-1968, 1996-2026";"Ceramics and Composites (Q1); Chemistry (miscellaneous) (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1); Surfaces, Coatings and Films (Q1); Catalysis (Q2)";"Chemical Engineering; Chemistry; Materials Science" +5706;21100910579;"Curriculum Studies in Health and Physical Education";journal;"25742981, 2574299X";"Routledge";No;No;0,907;Q1;29;49;72;2555;251;68;3,98;52,14;48,98;1;United States;Northern America;"Routledge";"2018-2026";"Education (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)";"Health Professions; Medicine; Social Sciences" +5707;19700186900;"Water Science and Engineering";journal;"16742370, 24058106";"Editorial Office of Water Science and Engineering";Yes;Yes;0,907;Q1;47;62;127;2646;735;127;6,20;42,68;34,45;0;China;Asiatic Region;"Editorial Office of Water Science and Engineering";"2010-2026";"Civil and Structural Engineering (Q1); Ocean Engineering (Q1)";"Engineering" +5708;27446;"Youth and Society";journal;"15528499, 0044118X";"SAGE Publications Inc.";No;No;0,907;Q1;82;95;212;5721;707;210;2,97;60,22;57,50;0;United States;Northern America;"SAGE Publications Inc.";"1969-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5709;130160;"Diabetes and Vascular Disease Research";journal;"14791641, 17528984";"SAGE Publications Ltd";Yes;No;0,907;Q2;68;24;93;873;309;88;2,91;36,38;40,68;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2004-2026";"Cardiology and Cardiovascular Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)";"Medicine" +5710;17792;"Medical Decision Making";journal;"1552681X, 0272989X";"SAGE Publications Inc.";No;No;0,907;Q2;129;91;254;3852;657;230;2,31;42,33;53,49;0;United States;Northern America;"SAGE Publications Inc.";"1981-2026";"Health Policy (Q2)";"Medicine" +5711;19773;"Rheumatology International";journal;"01728172, 1437160X";"Springer Science and Business Media Deutschland GmbH";No;No;0,907;Q2;100;277;796;11753;2573;766;3,31;42,43;49,81;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1981-2026";"Immunology (Q2); Immunology and Allergy (Q2); Rheumatology (Q2)";"Immunology and Microbiology; Medicine" +5712;25179;"Applied Mathematics and Optimization";journal;"00954616, 14320606";"Springer New York";No;No;0,906;Q1;60;149;365;5689;744;365;2,11;38,18;19,82;0;United States;Northern America;"Springer New York";"1974-1977, 1979-2026";"Applied Mathematics (Q1); Control and Optimization (Q1)";"Mathematics" +5713;25711;"Biodegradation";journal;"09239820, 15729729";"Springer Science and Business Media B.V.";No;No;0,906;Q1;98;124;130;9728;605;130;4,93;78,45;44,83;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1990-2026";"Environmental Engineering (Q1); Bioengineering (Q2); Environmental Chemistry (Q2); Microbiology (Q2); Pollution (Q2)";"Chemical Engineering; Environmental Science; Immunology and Microbiology" +5714;13257;"Biological Invasions";journal;"15731464, 13873547";"Springer Nature";No;No;0,906;Q1;146;244;792;16422;2431;780;2,90;67,30;41,72;1;Switzerland;Western Europe;"Springer Nature";"1978, 1999-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +5715;26480;"Finite Fields and their Applications";journal;"10715797, 10902465";"Academic Press Inc.";No;No;0,906;Q1;60;116;394;2873;578;394;1,40;24,77;32,64;0;United States;Northern America;"Academic Press Inc.";"1995-2026";"Algebra and Number Theory (Q1); Applied Mathematics (Q1); Engineering (miscellaneous) (Q1); Theoretical Computer Science (Q1)";"Engineering; Mathematics" +5716;21100798653;"FlatChem";journal;"24522627";"Elsevier B.V.";No;No;0,906;Q1;52;145;356;11301;2199;355;5,98;77,94;34,51;0;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Ceramics and Composites (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Surfaces, Coatings and Films (Q1)";"Materials Science" +5717;21101162817;"IEEE Open Journal of Industry Applications";journal;"26441241";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,906;Q1;22;62;86;2593;406;86;5,35;41,82;17,09;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1)";"Engineering" +5718;13549;"Journal of Atmospheric and Oceanic Technology";journal;"15200426, 07390572";"American Meteorological Society";No;No;0,906;Q1;154;100;302;4742;702;299;2,17;47,42;23,84;0;United States;Northern America;"American Meteorological Society";"1985-1994, 1996-2026";"Ocean Engineering (Q1); Atmospheric Science (Q2)";"Earth and Planetary Sciences; Engineering" +5719;21100199820;"Journal of Periodontal and Implant Science";journal;"20932278, 20932286";"Korean Academy of Periodontology";Yes;No;0,906;Q1;40;37;117;1267;329;106;2,34;34,24;38,52;0;South Korea;Asiatic Region;"Korean Academy of Periodontology";"2010-2025";"Oral Surgery (Q1); Periodontics (Q1)";"Dentistry" +5720;27691;"Journal of Public Policy";journal;"14697815, 0143814X";"Cambridge University Press";Yes;No;0,906;Q1;61;35;111;2668;366;111;2,75;76,23;36,84;0;United Kingdom;Western Europe;"Cambridge University Press";"1981-2026";"Public Administration (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +5721;21100862635;"Matter and Radiation at Extremes";journal;"24682047, 2468080X";"American Institute of Physics";Yes;Yes;0,906;Q1;41;63;168;3664;683;163;4,30;58,16;23,71;0;United States;Northern America;"American Institute of Physics";"2016-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Nuclear and High Energy Physics (Q1); Nuclear Energy and Engineering (Q1)";"Energy; Engineering; Physics and Astronomy" +5722;21100853016;"Antibodies";journal;"20734468";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,906;Q2;50;108;264;6965;915;258;3,43;64,49;45,20;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2025";"Drug Discovery (Q2); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +5723;17598;"Journal of Cellular Biochemistry";journal;"07302312, 10974644";"Wiley-Liss Inc.";No;No;0,906;Q2;195;89;394;5647;1383;389;3,19;63,45;43,03;0;United States;Northern America;"Wiley-Liss Inc.";"1982-2026";"Biochemistry (Q2); Molecular Biology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +5724;13880;"Artificial Intelligence and Law";journal;"09248463, 15728382";"Springer Nature";No;No;0,905;Q1;54;98;96;5401;656;96;7,00;55,11;25,71;9;Netherlands;Western Europe;"Springer Nature";"1992-1993, 1995-2026";"Law (Q1); Artificial Intelligence (Q2)";"Computer Science; Social Sciences" +5725;13734;"Biometrical Journal";journal;"03233847, 15214036";"John Wiley and Sons Inc";No;No;0,905;Q1;83;82;317;3162;653;309;2,28;38,56;36,12;0;Germany;Western Europe;"John Wiley and Sons Inc";"1959, 1964, 1966-1967, 1970, 1977-2026";"Medicine (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics; Medicine" +5726;200147131;"Cambridge Journal of Education";journal;"0305764X, 14693577";"Routledge";No;No;0,905;Q1;80;43;126;2521;475;126;2,72;58,63;54,72;0;United Kingdom;Western Europe;"Routledge";"1971-2026";"Education (Q1)";"Social Sciences" +5727;19851;"Current Urology Reports";journal;"15346285, 15272737";"Springer";Yes;No;0,905;Q1;60;80;143;4111;544;143;3,59;51,39;26,37;0;United States;Northern America;"Springer";"2000-2026";"Urology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +5728;19794;"Entomologia Generalis";journal;"01718177";"Schweizerbart Science Publishers";No;No;0,905;Q1;42;151;342;9084;1574;329;4,82;60,16;36,54;3;Germany;Western Europe;"Schweizerbart Science Publishers";"1994-2002, 2004-2025";"Insect Science (Q1)";"Agricultural and Biological Sciences" +5729;21100332403;"Journal of Information Security and Applications";journal;"22142126, 22142134";"Elsevier Ltd";No;No;0,905;Q1;80;311;610;15999;3455;608;6,07;51,44;28,79;0;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Computer Networks and Communications (Q1); Safety, Risk, Reliability and Quality (Q1); Software (Q1)";"Computer Science; Engineering" +5730;5600156029;"Journal of Legislative Studies";journal;"13572334, 17439337";"Routledge";No;No;0,905;Q1;48;78;82;3996;152;79;1,31;51,23;32,59;6;United Kingdom;Western Europe;"Routledge";"1995-2026";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +5731;19400157008;"Revista de la Real Academia de Ciencias Exactas, Fisicas y Naturales - Serie A: Matematicas";journal;"15791505, 15787303";"Springer-Verlag Italia s.r.l.";No;No;0,905;Q1;45;124;517;3296;873;517;1,80;26,58;25,94;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"2008-2026";"Algebra and Number Theory (Q1); Analysis (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1); Geometry and Topology (Q1)";"Mathematics" +5732;5600155256;"Television and New Media";journal;"15528316, 15274764";"SAGE Publications Inc.";No;No;0,905;Q1;57;64;160;3066;446;159;2,24;47,91;60,00;0;United States;Northern America;"SAGE Publications Inc.";"2000-2026";"Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +5733;16075;"Headache";journal;"00178748, 15264610";"Wiley-Blackwell Publishing Ltd";No;No;0,905;Q2;154;219;485;7169;1568;378;3,12;32,74;47,90;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1961-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +5734;18502;"International Journal of Tuberculosis and Lung Disease";journal;"18157920, 10273719";"International Union Against Tuberculosis and Lung Disease";Yes;No;0,905;Q2;127;117;587;2568;1075;319;2,03;21,95;43,95;0;France;Western Europe;"International Union Against Tuberculosis and Lung Disease";"1997-2026";"Infectious Diseases (Q2); Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +5735;12020;"Anxiety, Stress and Coping";journal;"10615806, 14772205";"Brunner - Routledge (US)";No;No;0,904;Q1;98;59;158;3444;484;158;2,82;58,37;65,80;0;United States;Northern America;"Brunner - Routledge (US)";"1992-2026";"Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)";"Arts and Humanities; Medicine; Psychology" +5736;18145;"CAD Computer Aided Design";journal;"00104485";"Elsevier Ltd";No;No;0,904;Q1;135;88;305;4347;1265;298;3,83;49,40;26,35;0;United Kingdom;Western Europe;"Elsevier Ltd";"1968-2026";"Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q1); Industrial and Manufacturing Engineering (Q1)";"Computer Science; Engineering" +5737;21101018925;"Humanities and Social Sciences Communications";journal;"26629992";"Springer Nature";Yes;No;0,904;Q1;84;1976;3072;139707;17257;3021;5,68;70,70;43,66;21;United Kingdom;Western Europe;"Springer Nature";"2020-2026";"Arts and Humanities (miscellaneous) (Q1); Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Psychology (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Psychology; Social Sciences" +5738;19930;"International Braz J Urol";journal;"16776119, 16775538";"Brazilian Society of Urology";Yes;Yes;0,904;Q1;54;109;345;1888;808;280;2,38;17,32;19,43;0;Brazil;Latin America;"Brazilian Society of Urology";"2000, 2002-2026";"Urology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +5739;23893;"Journal of Fourier Analysis and Applications";journal;"10695869, 15315851";"Springer Nature";No;No;0,904;Q1;68;75;222;2619;299;217;1,45;34,92;22,08;0;United States;Northern America;"Springer Nature";"1994-2026";"Analysis (Q1); Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +5740;5200152805;"Journal of Hospital Medicine";journal;"15535606, 15535592";"John Wiley and Sons Inc";No;No;0,904;Q1;91;316;659;5351;1032;402;1,49;16,93;56,59;0;United States;Northern America;"John Wiley and Sons Inc";"2006-2026";"Assessment and Diagnosis (Q1); Care Planning (Q1); Fundamentals and Skills (Q1); Leadership and Management (Q1); Health Policy (Q2); Internal Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +5741;23255;"Marine Chemistry";journal;"03044203";"Elsevier B.V.";No;No;0,904;Q1;161;67;207;5221;559;207;2,62;77,93;42,86;1;Netherlands;Western Europe;"Elsevier B.V.";"1972-2026";"Chemistry (miscellaneous) (Q1); Oceanography (Q1); Water Science and Technology (Q1); Environmental Chemistry (Q2)";"Chemistry; Earth and Planetary Sciences; Environmental Science" +5742;21101278533;"RSC Applied Polymers";journal;"2755371X";"Royal Society of Chemistry";Yes;No;0,904;Q1;15;123;147;8854;737;146;5,01;71,98;33,07;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2023-2026";"Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1); Polymers and Plastics (Q1); Surfaces, Coatings and Films (Q1)";"Materials Science" +5743;21100413715;"Sport, Exercise, and Performance Psychology";journal;"21573913, 21573905";"American Psychological Association";No;No;0,904;Q1;42;26;85;1595;258;83;3,06;61,35;41,05;0;United States;Northern America;"American Psychological Association";"2013-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Applied Psychology (Q2); Social Psychology (Q2)";"Health Professions; Psychology" +5744;23890;"Terra Nova";journal;"13653121, 09544879";"John Wiley and Sons Inc";No;No;0,904;Q1;112;49;163;2270;352;163;2,00;46,33;23,98;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1989-2026";"Geology (Q1)";"Earth and Planetary Sciences" +5745;29549;"Journal of Geriatric Psychiatry and Neurology";journal;"15525708, 08919887";"SAGE Publications Inc.";No;No;0,904;Q2;84;74;177;4113;644;176;3,52;55,58;51,19;0;United States;Northern America;"SAGE Publications Inc.";"1988-2026";"Geriatrics and Gerontology (Q2); Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +5746;30035;"Administrative Law Review";journal;"00018368";"American Bar Association";No;No;0,903;Q1;33;0;11;0;5;10;0,60;0,00;0,00;0;United States;Northern America;"American Bar Association";"1977, 1988, 1990, 1996-2012, 2016-2019, 2022-2023";"Law (Q1); Public Administration (Q1)";"Social Sciences" +5747;19395;"BMC Nephrology";journal;"14712369";"BioMed Central Ltd";Yes;No;0,903;Q1;91;701;1252;27960;3879;1248;3,02;39,89;45,02;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2026";"Nephrology (Q1)";"Medicine" +5748;12104;"British Journal of Sociology of Education";journal;"14653346, 01425692";"Taylor and Francis Ltd.";No;No;0,903;Q1;97;88;204;5298;785;202;2,87;60,20;59,56;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2026";"Education (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5749;19700201422;"Computer Science Education";journal;"17445175, 08993408";"Taylor and Francis Ltd.";No;No;0,903;Q1;52;52;86;3771;353;76;3,83;72,52;53,01;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-1995, 1999, 2002, 2004-2026";"Computer Science (miscellaneous) (Q1); Education (Q1)";"Computer Science; Social Sciences" +5750;21100794686;"Higher Education Pedagogies";journal;"23752696";"Taylor and Francis Ltd.";Yes;No;0,903;Q1;25;0;12;0;62;12;13,00;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2023";"Education (Q1)";"Social Sciences" +5751;21101335349;"Human-Centric Intelligent Systems";journal;"26671336";"Springer Nature";Yes;No;0,903;Q1;17;38;85;1798;691;84;7,93;47,32;28,69;0;Netherlands;Western Europe;"Springer Nature";"2021-2026";"Computer Science (miscellaneous) (Q1); Information Systems (Q1); Artificial Intelligence (Q2)";"Computer Science" +5752;24305;"International Journal of Intelligent Systems";journal;"1098111X, 08848173";"John Wiley and Sons Inc";No;No;0,903;Q1;121;185;808;10593;4414;806;6,15;57,26;31,86;0;United States;Northern America;"John Wiley and Sons Inc";"1986-2026";"Software (Q1); Theoretical Computer Science (Q1); Artificial Intelligence (Q2); Human-Computer Interaction (Q2)";"Computer Science; Mathematics" +5753;13761;"International Journal of Thermal Sciences";journal;"12900729";"Elsevier Masson s.r.l.";No;No;0,903;Q1;163;729;1805;32184;10104;1803;5,43;44,15;27,75;0;France;Western Europe;"Elsevier Masson s.r.l.";"1973-1978, 1987, 1999-2026";"Condensed Matter Physics (Q1); Engineering (miscellaneous) (Q1)";"Engineering; Physics and Astronomy" +5754;7900153106;"Reproductive Sciences";journal;"19337191, 19337205";"Springer Nature";No;No;0,903;Q1;98;308;1007;16883;3341;995;3,07;54,81;52,61;0;Switzerland;Western Europe;"Springer Nature";"2007-2026";"Obstetrics and Gynecology (Q1)";"Medicine" +5755;5800179620;"Technology, Pedagogy and Education";journal;"17475139, 1475939X";"Routledge";No;No;0,903;Q1;59;78;119;4448;548;119;3,54;57,03;57,77;0;United Kingdom;Western Europe;"Routledge";"2003-2026";"Communication (Q1); Computer Science Applications (Q1); Education (Q1); Information Systems (Q1)";"Computer Science; Social Sciences" +5756;28251;"BMC Gastroenterology";journal;"1471230X";"BioMed Central Ltd";Yes;No;0,903;Q2;106;885;1446;35537;4710;1443;3,18;40,15;40,98;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Gastroenterology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +5757;22575;"Cardiovascular Toxicology";journal;"15307905, 15590259";"Springer";No;No;0,903;Q2;70;134;225;8460;922;225;3,53;63,13;46,01;1;United States;Northern America;"Springer";"2001-2026";"Cardiology and Cardiovascular Medicine (Q2); Molecular Biology (Q2); Toxicology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +5758;21100258385;"Journal of Comparative Effectiveness Research";journal;"20426305, 20426313";"";Yes;No;0,903;Q2;43;117;320;3649;854;292;2,56;31,19;46,85;0;United Kingdom;Western Europe;"";"2012-2026";"Health Policy (Q2)";"Medicine" +5759;21101044710;"China Geology";journal;"20965192, 25899430";"KeAi Communications Co.";Yes;Yes;0,902;Q1;35;82;198;4419;785;173;3,91;53,89;29,27;0;China;Asiatic Region;"KeAi Communications Co.";"2018-2025";"Computers in Earth Sciences (Q1); Earth-Surface Processes (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Oceanography (Q1); Paleontology (Q1); Economic Geology (Q2); Geochemistry and Petrology (Q2)";"Earth and Planetary Sciences" +5760;26168;"Computers and Composition";journal;"87554615";"Elsevier Ltd";No;No;0,902;Q1;49;39;95;1823;378;83;4,82;46,74;54,41;0;United Kingdom;Western Europe;"Elsevier Ltd";"1983-2026";"Computer Science (miscellaneous) (Q1); Education (Q1); Linguistics and Language (Q1)";"Computer Science; Social Sciences" +5761;5800191489;"Foreign Policy Analysis";journal;"17438594, 17438586";"Oxford University Press";No;No;0,902;Q1;42;45;113;3645;298;113;2,40;81,00;25,00;0;United States;Northern America;"Oxford University Press";"2011-2026";"Political Science and International Relations (Q1)";"Social Sciences" +5762;29901;"International Journal of Hyperthermia";journal;"02656736, 14645157";"Taylor and Francis Ltd.";Yes;No;0,902;Q1;108;110;422;4373;1422;415;2,81;39,75;43,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-2026";"Radiological and Ultrasound Technology (Q1); Medicine (miscellaneous) (Q2); Physiology (Q2); Physiology (medical) (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +5763;25939;"Macromolecular Rapid Communications";journal;"10221336, 15213927";"Wiley-VCH Verlag";No;No;0,902;Q1;183;596;1112;38026;5032;1097;4,33;63,80;34,57;0;Germany;Western Europe;"Wiley-VCH Verlag";"1994-2026";"Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)";"Chemistry; Materials Science" +5764;5900153310;"Mobilities";journal;"17450101, 1745011X";"Routledge";No;No;0,902;Q1;79;121;182;8266;719;178;3,89;68,31;56,22;1;United Kingdom;Western Europe;"Routledge";"2006-2026";"Demography (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5765;27387;"Population Research and Policy Review";journal;"15737829, 01675923";"Springer Netherlands";No;No;0,902;Q1;68;59;273;3420;703;273;2,27;57,97;49,03;3;Netherlands;Western Europe;"Springer Netherlands";"1982-2026";"Demography (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +5766;21101089490;"SciPost Physics Core";journal;"26669366";"SciPost Foundation";Yes;Yes;0,902;Q1;23;95;220;5753;635;220;3,00;60,56;20,22;0;Netherlands;Western Europe;"SciPost Foundation";"2019-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Nuclear and High Energy Physics (Q1); Statistical and Nonlinear Physics (Q1)";"Physics and Astronomy" +5767;21101196749;"Solar Energy and Sustainable Development";journal;"24119636, 24146013";"Libyan Center for Solar Energy Research and Studies";Yes;Yes;0,902;Q1;12;39;51;2000;295;51;5,78;51,28;16,67;0;Libya;Africa;"Libyan Center for Solar Energy Research and Studies";"2023-2025";"Environmental Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Environmental Science" +5768;21100239606;"Therapeutic Innovation and Regulatory Science";journal;"21684790, 21684804";"Springer Science and Business Media Deutschland GmbH";No;No;0,902;Q1;57;155;345;4859;967;318;2,70;31,35;51,56;5;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1970, 1972, 1974-2006, 2008-2011, 2013-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +5769;23327;"American Journal of Physiology - Regulatory Integrative and Comparative Physiology";journal;"15221490, 03636119";"American Physiological Society";Yes;No;0,902;Q2;206;177;393;9382;1115;385;2,67;53,01;39,12;0;United States;Northern America;"American Physiological Society";"1977-2026";"Physiology (Q2); Physiology (medical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5770;10900153303;"Health Economics, Policy and Law";journal;"17441331, 1744134X";"Cambridge University Press";Yes;No;0,902;Q2;50;50;101;2427;312;95;2,46;48,54;42,47;0;United Kingdom;Western Europe;"Cambridge University Press";"2006-2026";"Health Policy (Q2)";"Medicine" +5771;15946;"Journal of Korean Medical Science";journal;"15986357, 10118934";"Korean Academy of Medical Science";Yes;No;0,902;Q2;94;334;1082;10647;3008;997;2,83;31,88;41,82;3;South Korea;Asiatic Region;"Korean Academy of Medical Science";"1986-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +5772;21100367469;"Toxicology Reports";journal;"22147500";"Elsevier Inc.";Yes;No;0,902;Q2;81;315;592;19636;2990;591;4,96;62,34;44,87;1;United States;Northern America;"Elsevier Inc.";"2014-2026";"Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +5773;21100908545;"Aquaculture and Fisheries";journal;"20961758, 2468550X";"KeAi Communications Co.";Yes;Yes;0,901;Q1;41;121;269;7000;1479;265;4,94;57,85;41,98;5;China;Asiatic Region;"KeAi Communications Co.";"2016-2026";"Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +5774;26825;"Coral Reefs";journal;"07224028, 14320975";"";No;No;0,901;Q1;131;184;383;14528;1340;366;3,54;78,96;44,42;1;Germany;Western Europe;"";"1982-2026";"Aquatic Science (Q1)";"Agricultural and Biological Sciences" +5775;21100413834;"Frontiers of Architectural Research";journal;"20952635, 20952643";"KeAi Communications Co.";Yes;No;0,901;Q1;53;195;241;12074;1345;238;5,11;61,92;39,48;0;China;Asiatic Region;"KeAi Communications Co.";"2012-2026";"Archeology (Q1); Architecture (Q1); Building and Construction (Q1); Urban Studies (Q1)";"Engineering; Social Sciences" +5776;29501;"International Journal of Food Properties";journal;"15322386, 10942912";"Taylor and Francis Ltd.";Yes;No;0,901;Q1;97;88;498;4648;3292;498;6,66;52,82;42,13;0;United States;Northern America;"Taylor and Francis Ltd.";"1998-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +5777;99584;"Journal of Soils and Sediments";journal;"16147480, 14390108";"Springer Science and Business Media Deutschland GmbH";No;No;0,901;Q1;111;278;848;18214;3332;842;3,86;65,52;42,15;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2001-2026";"Earth-Surface Processes (Q1); Stratigraphy (Q1)";"Earth and Planetary Sciences" +5778;13801;"Laryngoscope";journal;"15314995, 0023852X";"Wiley-Blackwell";No;No;0,901;Q1;190;862;1859;21369;4459;1659;2,30;24,79;40,36;1;United States;Northern America;"Wiley-Blackwell";"1896-2026";"Otorhinolaryngology (Q1)";"Medicine" +5779;23987;"Neuroinformatics";journal;"15392791, 15590089";"Humana Press";No;No;0,901;Q1;73;58;163;2900;546;151;3,03;50,00;27,60;0;United States;Northern America;"Humana Press";"2003-2026";"Information Systems (Q1); Software (Q1); Neuroscience (miscellaneous) (Q2)";"Computer Science; Neuroscience" +5780;24001;"Pathophysiology";journal;"09284680, 1873149X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,901;Q1;63;69;146;4221;525;143;3,82;61,17;46,51;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"1994-2025";"Pathology and Forensic Medicine (Q1); Physiology (medical) (Q2)";"Medicine" +5781;21100911068;"School Psychology";journal;"25784226, 25784218";"American Psychological Association";No;No;0,901;Q1;97;33;190;1581;478;187;2,46;47,91;56,90;0;United States;Northern America;"American Psychological Association";"2019-2026";"Education (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +5782;4700152270;"State Politics and Policy Quarterly";journal;"15324400, 19461607";"Cambridge University Press";No;No;0,901;Q1;52;29;72;1671;142;72;1,56;57,62;39,29;0;United States;Northern America;"Cambridge University Press";"2001-2026";"Arts and Humanities (miscellaneous) (Q1); Political Science and International Relations (Q1)";"Arts and Humanities; Social Sciences" +5783;28487;"Economic Systems Research";journal;"09535314, 14695758";"Routledge";No;No;0,901;Q2;71;39;83;2050;275;82;2,78;52,56;33,04;0;United Kingdom;Western Europe;"Routledge";"1989-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +5784;20700195025;"Journal of Clinical and Experimental Hepatology";journal;"09736883, 22133453";"Elsevier B.V.";No;No;0,901;Q2;61;197;538;7177;1480;406;2,40;36,43;31,55;0;Netherlands;Western Europe;"Elsevier B.V.";"2011-2026";"Hepatology (Q2)";"Medicine" +5785;18735;"Accountability in Research";journal;"15455815, 08989621";"Taylor and Francis Ltd.";No;No;0,900;Q1;43;103;152;4021;643;127;4,36;39,04;47,77;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Education (Q1); Library and Information Sciences (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Social Sciences" +5786;28041;"Advances in Computational Mathematics";journal;"10197168, 15729044";"Springer Netherlands";No;No;0,900;Q1;73;60;295;2449;659;295;2,20;40,82;25,35;0;Netherlands;Western Europe;"Springer Netherlands";"1993-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1)";"Mathematics" +5787;19900191733;"ChemCatChem";journal;"18673880, 18673899";"Wiley - VCH Verlag GmbH & CO. KGaA";No;No;0,900;Q1;144;973;1903;65911;7712;1892;4,03;67,74;35,00;0;Germany;Western Europe;"Wiley - VCH Verlag GmbH & CO. KGaA";"2009-2026";"Inorganic Chemistry (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Catalysis (Q2)";"Chemical Engineering; Chemistry" +5788;21478;"Environmental Management";journal;"0364152X, 14321009";"Springer";Yes;No;0,900;Q1;153;242;497;17479;2051;493;4,16;72,23;42,04;5;United States;Northern America;"Springer";"1977-2026";"Ecology (Q1); Global and Planetary Change (Q2); Pollution (Q2)";"Environmental Science" +5789;21101136668;"European Journal of Medicinal Chemistry Reports";journal;"27724174";"Elsevier Masson s.r.l.";Yes;No;0,900;Q1;25;70;214;5792;1449;214;6,93;82,74;46,10;0;France;Western Europe;"Elsevier Masson s.r.l.";"2021-2026";"Chemistry (miscellaneous) (Q1); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +5790;19700201531;"Journal of Social Entrepreneurship";journal;"19420684, 19420676";"Taylor and Francis Ltd.";No;No;0,900;Q1;50;110;110;9762;642;110;5,86;88,75;47,77;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Development (Q1); Business and International Management (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +5791;19700178100;"Nanotechnology, Science and Applications";journal;"11778903";"Dove Medical Press Ltd";Yes;No;0,900;Q1;40;40;25;3275;183;25;7,91;81,88;56,19;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2012, 2014-2026";"Pharmaceutical Science (Q1); Bioengineering (Q2); Biomedical Engineering (Q2); Nanoscience and Nanotechnology (Q2)";"Chemical Engineering; Engineering; Materials Science; Pharmacology, Toxicology and Pharmaceutics" +5792;21100198497;"Quality Technology and Quantitative Management";journal;"16843703";"Taylor and Francis Ltd.";No;No;0,900;Q1;33;67;120;2785;478;120;3,86;41,57;30,05;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Business and International Management (Q1); Industrial Relations (Q1); Information Systems and Management (Q1); Management Science and Operations Research (Q1); Statistics, Probability and Uncertainty (Q1); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Decision Sciences" +5793;21101054449;"Journal of Clinical Medicine";journal;"20770383";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,900;Q2;155;8959;23095;439578;80573;22348;3,45;49,07;42,10;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +5794;18042;"Neuroscience";journal;"03064522, 18737544";"Elsevier Ltd";No;No;0,900;Q2;262;751;1211;56738;3898;1169;3,15;75,55;44,43;3;United Kingdom;Western Europe;"Elsevier Ltd";"1976-2026";"Neuroscience (miscellaneous) (Q2)";"Neuroscience" +5795;21101019256;"ACS Applied Electronic Materials";journal;"26376113";"American Chemical Society";No;No;0,899;Q1;74;1005;2270;53552;10389;2263;4,55;53,29;30,03;0;United States;Northern America;"American Chemical Society";"2019-2026";"Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Electrochemistry (Q2)";"Chemistry; Materials Science" +5796;21101240760;"ECS Sensors Plus";journal;"27542726";"Institute of Physics";Yes;No;0,899;Q1;25;30;118;2733;764;114;5,72;91,10;31,11;0;United Kingdom;Western Europe;"Institute of Physics";"2022-2026";"Materials Science (miscellaneous) (Q1); Electrochemistry (Q2); Energy (miscellaneous) (Q2)";"Chemistry; Energy; Materials Science" +5797;21100446531;"Journal of Entrepreneurship in Emerging Economies";journal;"20534604, 20534612";"Emerald Publishing";No;No;0,899;Q1;47;102;213;9879;1446;212;6,75;96,85;37,45;0;United Kingdom;Western Europe;"Emerald Publishing";"2014-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2); Marketing (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +5798;29283;"Journal of Occupational Rehabilitation";journal;"15733688, 10530487";"Springer New York";No;No;0,899;Q1;93;139;194;6765;698;185;3,92;48,67;61,54;6;United States;Northern America;"Springer New York";"1991-2026";"Occupational Therapy (Q1); Rehabilitation (Q1)";"Health Professions; Medicine" +5799;21938;"Pain Physician";journal;"21501149, 15333159";"American Society of Interventional Pain Physicians";Yes;No;0,899;Q1;123;153;556;5455;1701;471;3,02;35,65;33,55;0;United States;Northern America;"American Society of Interventional Pain Physicians";"1999-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +5800;21101079127;"AIMS Public Health";journal;"23278994";"American Institute of Mathematical Sciences";Yes;No;0,898;Q1;25;61;178;3638;829;178;4,66;59,64;58,20;0;United States;Northern America;"American Institute of Mathematical Sciences";"2015, 2019-2026";"Public Health, Environmental and Occupational Health (Q1); Health Informatics (Q2)";"Medicine" +5801;28710;"British Journal of Social Work";journal;"00453102, 1468263X";"Oxford University Press";No;No;0,898;Q1;105;229;717;10225;2001;685;2,60;44,65;71,90;5;United Kingdom;Western Europe;"Oxford University Press";"1971-2026";"Health (social science) (Q1); Social Sciences (miscellaneous) (Q1); Social Work (Q1)";"Social Sciences" +5802;5700191217;"European Educational Research Journal";journal;"14749041";"SAGE Publications Inc.";No;No;0,898;Q1;59;84;152;5308;593;148;3,19;63,19;68,12;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2003, 2005, 2007-2026";"Education (Q1)";"Social Sciences" +5803;21101019738;"Human Behavior and Emerging Technologies";journal;"25781863";"John Wiley and Sons Inc";Yes;No;0,898;Q1;49;180;220;13928;1444;220;6,59;77,38;43,25;0;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Social Sciences (miscellaneous) (Q1); Human-Computer Interaction (Q2); Social Psychology (Q2)";"Computer Science; Psychology; Social Sciences" +5804;21101132927;"Journal of Cannabis Research";journal;"25225782";"BioMed Central Ltd";Yes;No;0,898;Q1;27;105;139;5553;623;132;3,64;52,89;47,40;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2019-2026";"Complementary and Alternative Medicine (Q1); Health (social science) (Q1); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +5805;15641;"Journal of Family Issues";journal;"15525481, 0192513X";"SAGE Publications Inc.";No;No;0,898;Q1;107;93;434;5087;1214;434;2,58;54,70;69,50;0;United States;Northern America;"SAGE Publications Inc.";"1980-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +5806;28352;"Ocean Modelling";journal;"14635003, 14635011";"Elsevier Ltd";No;No;0,898;Q1;112;115;294;6489;1025;294;3,57;56,43;25,39;2;United Kingdom;Western Europe;"Elsevier Ltd";"1988, 1994, 1999-2026";"Computer Science (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1); Oceanography (Q1); Atmospheric Science (Q2)";"Computer Science; Earth and Planetary Sciences" +5807;15965;"Personal Relationships";journal;"13504126, 14756811";"Wiley-Blackwell Publishing Ltd";No;No;0,898;Q1;105;60;167;3609;489;166;2,75;60,15;62,43;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Anthropology (Q1); Developmental and Educational Psychology (Q2); Life-span and Life-course Studies (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +5808;22774;"Policy Studies";journal;"14701006, 01442872";"Routledge";No;No;0,898;Q1;55;115;162;7950;644;157;4,88;69,13;37,30;2;United Kingdom;Western Europe;"Routledge";"1980-2026";"Political Science and International Relations (Q1)";"Social Sciences" +5809;21100803572;"Systems Science and Control Engineering";journal;"21642583";"Taylor and Francis Ltd.";Yes;No;0,898;Q1;43;85;244;3829;1261;244;6,55;45,05;30,68;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Control and Optimization (Q1); Control and Systems Engineering (Q1); Artificial Intelligence (Q2)";"Computer Science; Engineering; Mathematics" +5810;17844;"Vegetation History and Archaeobotany";journal;"16176278, 09396314";"Springer Science and Business Media Deutschland GmbH";No;No;0,898;Q1;79;62;144;5172;350;141;2,23;83,42;52,74;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1992-2026";"Archeology (arts and humanities) (Q1); Paleontology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Arts and Humanities; Earth and Planetary Sciences" +5811;21100817644;"Frontline Gastroenterology";journal;"20414137, 20414145";"BMJ Publishing Group";No;No;0,898;Q2;36;216;317;7265;767;252;2,08;33,63;41,90;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2013-2026";"Gastroenterology (Q2); Hepatology (Q2)";"Medicine" +5812;27797;"Revista Mexicana de Astronomia y Astrofisica";journal;"30618649, 01851101";"Universidad Nacional Autonoma de Mexico";Yes;No;0,898;Q2;35;33;87;1889;154;87;2,34;57,24;25,95;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1996-2025";"Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +5813;21101204645;"Anbar Journal of Agricultural Sciences";journal;"19927479, 26176211";"University of Anbar";Yes;No;0,897;Q1;9;101;173;3066;452;173;2,61;30,36;35,10;0;Iraq;Middle East;"University of Anbar";"2023-2025";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Food Science (Q1); Horticulture (Q1)";"Agricultural and Biological Sciences" +5814;21100910195;"BMJ Open Ophthalmology";journal;"23973269";"BMJ Publishing Group";Yes;No;0,897;Q1;32;133;346;4642;892;337;2,79;34,90;44,88;1;United Kingdom;Western Europe;"BMJ Publishing Group";"2016-2026";"Ophthalmology (Q1)";"Medicine" +5815;13710;"Disability and Rehabilitation";journal;"09638288, 14645165";"Informa Healthcare";No;No;0,897;Q1;147;824;1900;44768;6274;1875;3,02;54,33;65,42;3;United Kingdom;Western Europe;"Informa Healthcare";"1978-2026";"Rehabilitation (Q1)";"Medicine" +5816;28572;"Journal of Plasma Physics";journal;"00223778, 14697807";"Cambridge University Press";No;No;0,897;Q1;59;147;405;7972;1061;405;2,54;54,23;12,53;0;United Kingdom;Western Europe;"Cambridge University Press";"1967-2026";"Condensed Matter Physics (Q1)";"Physics and Astronomy" +5817;21101366453;"Journal of Soft Computing and Decision Analytics";journal;"30093481";"Scientific Oasis";No;No;0,897;Q1;17;15;40;546;243;40;6,08;36,40;40,00;0;Serbia;Eastern Europe;"Scientific Oasis";"2023-2026";"Applied Mathematics (Q1); Decision Sciences (miscellaneous) (Q1); Management Science and Operations Research (Q1); Artificial Intelligence (Q2)";"Computer Science; Decision Sciences; Mathematics" +5818;21101055221;"Proceedings of the ACM on Computer Graphics and Interactive Techniques";journal;"25776193";"Association for Computing Machinery";No;No;0,897;Q1;27;60;163;2415;470;163;2,98;40,25;24,10;0;United States;Northern America;"Association for Computing Machinery";"2018-2025";"Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q1)";"Computer Science" +5819;17398;"Current Issues in Molecular Biology";journal;"14673037, 14673045";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,897;Q2;72;1062;1939;82187;7990;1917;4,27;77,39;46,56;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"1999-2026";"Medicine (miscellaneous) (Q2); Microbiology (Q2); Microbiology (medical) (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +5820;21101182803;"ACM Transactions on Evolutionary Learning and Optimization";journal;"26883007, 2688299X";"Association for Computing Machinery";No;No;0,896;Q1;16;28;56;1451;283;51;4,53;51,82;21,18;0;United States;Northern America;"Association for Computing Machinery";"2021-2026";"Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Computer Science (miscellaneous) (Q1); Computer Vision and Pattern Recognition (Q1); Artificial Intelligence (Q2); Software (Q2)";"Computer Science" +5821;21101055891;"Ahkam: Jurnal Ilmu Syariah";journal;"24078646, 14124734";"Syarif Hidayatullah State Islamic University (UIN) Jakarta";Yes;Yes;0,896;Q1;16;21;68;1406;234;68;3,46;66,95;28,85;0;Indonesia;Asiatic Region;"Syarif Hidayatullah State Islamic University (UIN) Jakarta";"2012-2025";"Law (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +5822;21101055723;"Computational Brain and Behavior";journal;"2522087X";"Springer Nature";No;No;0,896;Q1;25;44;99;2952;275;98;2,32;67,09;36,78;0;Switzerland;Western Europe;"Springer Nature";"2018-2026";"Neuropsychology and Physiological Psychology (Q1); Developmental and Educational Psychology (Q2)";"Psychology" +5823;21448;"Journal of Experimental Education";journal;"19400683, 00220973";"Routledge";No;No;0,896;Q1;82;91;149;5795;436;149;2,62;63,68;57,53;0;United States;Northern America;"Routledge";"1932-2026";"Education (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +5824;15386;"Online Information Review";journal;"14684527, 14684535";"Emerald Publishing";No;No;0,896;Q1;85;100;232;6937;1233;230;5,08;69,37;40,22;0;United Kingdom;Western Europe;"Emerald Publishing";"1980-1995, 1997, 1999-2026";"Computer Science Applications (Q1); Information Systems (Q1); Library and Information Sciences (Q1)";"Computer Science; Social Sciences" +5825;17409;"Poetics";journal;"0304422X";"Elsevier B.V.";No;No;0,896;Q1;86;57;168;4443;527;166;3,26;77,95;38,79;1;Netherlands;Western Europe;"Elsevier B.V.";"1971-2026";"Communication (Q1); Cultural Studies (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +5826;19806;"Chinese Journal of Mechanical Engineering (English Edition)";journal;"21928258, 10009345";"KeAi Communications Co.";Yes;Yes;0,895;Q1;64;198;473;9296;2749;470;5,44;46,95;27,51;0;China;Asiatic Region;"KeAi Communications Co.";"1990, 1998-2026";"Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1)";"Engineering" +5827;19900191719;"Construction Innovation";journal;"14770857, 14714175";"Emerald Group Publishing Ltd.";No;No;0,895;Q1;64;139;219;11034;1514;218;6,53;79,38;26,46;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2026";"Architecture (Q1); Building and Construction (Q1); Civil and Structural Engineering (Q1); Computer Science (miscellaneous) (Q1); Control and Systems Engineering (Q1)";"Computer Science; Engineering" +5828;21100774318;"Epidemiology and Health";journal;"20927193";"";Yes;No;0,895;Q1;47;78;312;2812;820;310;2,49;36,05;54,02;0;South Korea;Asiatic Region;"";"2015-2026";"Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2)";"Medicine" +5829;21100821145;"Journal of the American Philosophical Association";journal;"20534477, 20534485";"Cambridge University Press";No;No;0,895;Q1;29;55;136;2542;252;136;2,13;46,22;24,59;0;United Kingdom;Western Europe;"Cambridge University Press";"2015-2026";"Philosophy (Q1)";"Arts and Humanities" +5830;39487;"Pesticide Biochemistry and Physiology";journal;"10959939, 00483575";"Academic Press Inc.";No;No;0,895;Q1;110;414;992;24483;5193;990;5,09;59,14;41,98;2;United States;Northern America;"Academic Press Inc.";"1971-2026";"Agronomy and Crop Science (Q1); Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +5831;18026;"BMC Pulmonary Medicine";journal;"14712466";"BioMed Central Ltd";Yes;No;0,895;Q2;92;564;1607;20381;5335;1603;3,11;36,14;44,17;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +5832;21100241668;"Pathogens and Disease";journal;"2049632X";"Oxford University Press";No;No;0,895;Q2;129;11;111;629;369;111;3,04;57,18;40,00;0;United Kingdom;Western Europe;"Oxford University Press";"2013-2025";"Immunology and Allergy (Q2); Immunology and Microbiology (miscellaneous) (Q2); Infectious Diseases (Q2); Medicine (miscellaneous) (Q2); Microbiology (medical) (Q2)";"Immunology and Microbiology; Medicine" +5833;12090;"Atmosphere - Ocean";journal;"14809214, 07055900";"Taylor and Francis Ltd.";No;No;0,894;Q1;63;23;75;1167;197;72;2,06;50,74;24,64;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1963, 1966-2026";"Oceanography (Q1); Atmospheric Science (Q2)";"Earth and Planetary Sciences" +5834;21100972443;"Chinese Political Science Review";journal;"23654252, 23654244";"Springer International Publishing";No;No;0,894;Q1;25;68;65;5261;262;64;5,41;77,37;30,63;0;Singapore;Asiatic Region;"Springer International Publishing";"2016-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5835;18297;"Journal of Feline Medicine and Surgery";journal;"1098612X, 15322750";"SAGE Publications Inc.";Yes;No;0,894;Q1;88;137;452;5247;1225;425;2,56;38,30;62,86;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1999-2026";"Small Animals (Q1)";"Veterinary" +5836;144959;"Journal of Studies in International Education";journal;"10283153, 15527808";"SAGE Publications Inc.";No;No;0,894;Q1;87;45;129;2292;564;127;3,56;50,93;51,96;1;United States;Northern America;"SAGE Publications Inc.";"1997-2026";"Education (Q1)";"Social Sciences" +5837;7200153151;"Vadose Zone Journal";journal;"15391663";"John Wiley and Sons Inc";Yes;No;0,894;Q1;108;69;178;4937;634;169;3,35;71,55;31,27;0;United States;Northern America;"John Wiley and Sons Inc";"2002-2026";"Soil Science (Q1)";"Agricultural and Biological Sciences" +5838;21100207626;"Advances in Biological Regulation";journal;"22124934, 22124926";"Elsevier Ltd";No;No;0,894;Q2;75;25;92;1822;238;89;2,45;72,88;43,48;0;United Kingdom;Western Europe;"Elsevier Ltd";"2012-2026";"Genetics (Q2); Molecular Biology (Q2); Molecular Medicine (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology" +5839;21101290582;"Advances in Drug and Alcohol Research";journal;"26740001";"Frontiers Media SA";Yes;No;0,894;Q2;10;6;49;557;165;44;3,34;92,83;58,62;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +5840;14346;"Brain Research";journal;"18726240, 00068993";"Elsevier B.V.";No;No;0,894;Q2;268;573;924;41060;3159;922;3,39;71,66;44,62;1;Netherlands;Western Europe;"Elsevier B.V.";"1966-2026";"Developmental Biology (Q2); Molecular Biology (Q2); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +5841;21100902029;"IEEE Journal of Electromagnetics, RF and Microwaves in Medicine and Biology";journal;"24697249";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,893;Q1;36;57;169;2221;637;168;3,22;38,96;32,14;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017-2026";"Instrumentation (Q1); Radiation (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine; Physics and Astronomy" +5842;21101183608;"IEEE Microwave and Wireless Technology Letters";journal;"27719588, 2771957X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,893;Q1;140;604;1115;11326;4059;1112;3,78;18,75;26,37;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2023-2026";"Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1)";"Engineering; Physics and Astronomy" +5843;21100794597;"IISE Transactions";journal;"24725862, 24725854";"Taylor and Francis Ltd.";No;No;0,893;Q1;115;125;260;5911;862;257;3,65;47,29;33,99;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Industrial and Manufacturing Engineering (Q1)";"Engineering" +5844;29401;"Journal of the Japanese and International Economies";journal;"08891583, 10958681";"Academic Press Inc.";No;No;0,893;Q1;54;28;76;1367;225;75;3,07;48,82;21,21;3;United States;Northern America;"Academic Press Inc.";"1987-2026";"Political Science and International Relations (Q1); Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance; Social Sciences" +5845;5700163050;"Qualitative Social Work";journal;"17413117, 14733250";"SAGE Publications Inc.";No;No;0,893;Q1;64;57;211;2215;562;188;2,37;38,86;77,78;0;United States;Northern America;"SAGE Publications Inc.";"2002-2026";"Health (social science) (Q1); Social Sciences (miscellaneous) (Q1); Social Work (Q1)";"Social Sciences" +5846;21100200805;"Scientific Reports";journal;"20452322";"Nature Research";Yes;No;0,893;Q1;382;44996;75095;2233151;378327;75019;5,01;49,63;39,02;122;United Kingdom;Western Europe;"Nature Research";"2011-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +5847;21100206605;"Spatial Statistics";journal;"22116753";"Elsevier B.V.";No;No;0,893;Q1;45;72;237;2997;724;232;3,01;41,63;24,75;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Computers in Earth Sciences (Q1); Statistics and Probability (Q1); Management, Monitoring, Policy and Law (Q2)";"Earth and Planetary Sciences; Environmental Science; Mathematics" +5848;20653;"Topics in Stroke Rehabilitation";journal;"19455119, 10749357";"Taylor and Francis Ltd.";No;No;0,893;Q1;85;111;215;4741;734;211;3,31;42,71;50,91;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Community and Home Care (Q1); Rehabilitation (Q1); Neurology (clinical) (Q2)";"Medicine; Nursing" +5849;21386;"Canadian Journal of Economics";journal;"15405982, 00084085";"Wiley-Blackwell";No;No;0,893;Q2;85;56;183;2671;268;182;1,02;47,70;21,77;4;United States;Northern America;"Wiley-Blackwell";"1977, 1979-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +5850;21100232417;"G3: Genes, Genomes, Genetics";journal;"21601836";"Genetics Society of America";Yes;No;0,893;Q2;98;291;990;16027;2489;982;2,46;55,08;43,25;0;United States;Northern America;"Genetics Society of America";"2011-2026";"Genetics (Q2); Genetics (clinical) (Q2); Medicine (miscellaneous) (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5851;18627;"Respiration";journal;"14230356, 00257931";"S. Karger AG";No;No;0,893;Q2;104;130;303;4683;939;285;2,56;36,02;43,84;0;Switzerland;Western Europe;"S. Karger AG";"1944-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +5852;21101210509;"Clinics in Shoulder and Elbow";journal;"23838337, 22888721";"Korean Shoulder and Elbow Society";Yes;Yes;0,892;Q1;10;64;129;2084;315;119;2,44;32,56;16,32;0;South Korea;Asiatic Region;"Korean Shoulder and Elbow Society";"2023-2025";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Bioengineering (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Health Professions; Medicine" +5853;29224;"International Archives of Occupational and Environmental Health";journal;"14321246, 03400131";"Springer Science and Business Media Deutschland GmbH";No;No;0,892;Q1;108;77;355;3795;1148;349;2,94;49,29;44,81;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1975-2026";"Public Health, Environmental and Occupational Health (Q1)";"Medicine" +5854;21101300615;"Journal of Imaging Informatics in Medicine";journal;"29482933";"Springer Nature";No;No;0,892;Q1;90;527;615;21338;3149;607;5,32;40,49;31,14;0;Switzerland;Western Europe;"Springer Nature";"2024-2026";"Computer Science Applications (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Computer Science; Health Professions; Medicine" +5855;21100894055;"Physical Review Materials";journal;"24759953";"American Physical Society";No;No;0,892;Q1;89;632;1938;38809;6693;1936;3,33;61,41;21,58;0;United States;Northern America;"American Physical Society";"2017-2026";"Materials Science (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Materials Science; Physics and Astronomy" +5856;21643;"Probabilistic Engineering Mechanics";journal;"02668920, 18784275";"Elsevier Ltd";No;No;0,892;Q1;100;127;359;6069;1546;356;4,59;47,79;27,23;0;United Kingdom;Western Europe;"Elsevier Ltd";"1986-2026";"Aerospace Engineering (Q1); Civil and Structural Engineering (Q1); Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Nuclear Energy and Engineering (Q1); Ocean Engineering (Q1); Statistical and Nonlinear Physics (Q1)";"Energy; Engineering; Physics and Astronomy" +5857;21100435556;"Regional Science Policy and Practice";journal;"17577802";"Elsevier B.V.";Yes;No;0,892;Q1;33;82;344;5436;1259;318;4,00;66,29;37,82;3;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Development (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +5858;16342;"Applied Catalysis A: General";journal;"0926860X, 18733875";"Elsevier B.V.";No;No;0,892;Q2;250;418;1042;25528;5294;1037;5,00;61,07;37,25;0;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Catalysis (Q2); Process Chemistry and Technology (Q2)";"Chemical Engineering" +5859;29884;"Journal of International Accounting, Auditing and Taxation";journal;"10619518";"Elsevier B.V.";No;No;0,892;Q2;58;39;117;3310;540;106;4,27;84,87;26,26;1;United Kingdom;Western Europe;"Elsevier B.V.";"1992-2026";"Accounting (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +5860;4700151726;"Trials";journal;"17456215";"BioMed Central Ltd";Yes;No;0,892;Q2;111;591;2653;23030;5980;2566;2,04;38,97;47,37;3;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)";"Medicine" +5861;21101050348;"Canadian Journal of Pain";journal;"24740527";"Taylor and Francis Ltd.";Yes;No;0,891;Q1;23;22;109;910;339;96;3,01;41,36;53,93;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +5862;27507;"Infectious Diseases in Obstetrics and Gynecology";journal;"10980997, 10647449";"John Wiley and Sons Inc";Yes;No;0,891;Q1;57;0;29;0;111;29;1,30;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Inc";"1993-2024";"Dermatology (Q1); Obstetrics and Gynecology (Q1); Infectious Diseases (Q2)";"Medicine" +5863;21100304262;"International Journal of Emerging Markets";journal;"17468809, 17468817";"Emerald Publishing";No;No;0,891;Q1;56;250;656;19274;3876;654;5,80;77,10;32,41;0;United Kingdom;Western Europe;"Emerald Publishing";"2006-2026";"Business, Management and Accounting (miscellaneous) (Q1); Business and International Management (Q2)";"Business, Management and Accounting" +5864;21100935003;"Journal of Fractal Geometry";journal;"23081309, 23081317";"European Mathematical Society Publishing House";Yes;Yes;0,891;Q1;8;13;44;315;55;44;1,31;24,23;15,38;0;Germany;Western Europe;"European Mathematical Society Publishing House";"2015-2016, 2019-2025";"Applied Mathematics (Q1); Geometry and Topology (Q1)";"Mathematics" +5865;19700182810;"Patient Safety in Surgery";journal;"17549493";"BioMed Central Ltd";Yes;No;0,891;Q1;39;44;109;1712;373;102;3,35;38,91;33,17;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Anesthesiology and Pain Medicine (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +5866;145212;"Sociological Research Online";journal;"13607804";"SAGE Publications Ltd";Yes;No;0,891;Q1;69;91;199;4129;585;193;2,73;45,37;62,69;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2001, 2003-2026";"Sociology and Political Science (Q1)";"Social Sciences" +5867;21101270278;"Translational Breast Cancer Research";journal;"22186778";"AME Publishing Company";No;No;0,891;Q1;10;41;107;2152;262;81;3,01;52,49;51,52;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2020-2026";"Surgery (Q1); Oncology (Q2)";"Medicine" +5868;13707;"Hearing Research";journal;"18785891, 03785955";"Elsevier B.V.";No;No;0,891;Q2;145;206;432;12051;1435;426;3,13;58,50;39,47;0;Netherlands;Western Europe;"Elsevier B.V.";"1978-2026";"Sensory Systems (Q2)";"Neuroscience" +5869;23085;"Journal of Pharmacological Sciences";journal;"13478648, 13478613";"Japanese Pharmacological Society";Yes;No;0,891;Q2;106;110;274;4553;909;271;3,05;41,39;35,15;0;Japan;Asiatic Region;"Japanese Pharmacological Society";"1996, 2000, 2003-2026";"Molecular Medicine (Q2); Pharmacology (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +5870;13151;"Behavioral Ecology";journal;"14657279, 10452249";"Oxford University Press";No;No;0,890;Q1;142;146;373;11186;906;355;2,17;76,62;44,86;0;United Kingdom;Western Europe;"Oxford University Press";"1990-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +5871;16901;"Biological Trace Element Research";journal;"15590720, 01634984";"Springer";Yes;No;0,890;Q1;119;704;1465;44034;7202;1451;5,00;62,55;46,41;4;United States;Northern America;"Springer";"1979-2026";"Inorganic Chemistry (Q1); Biochemistry (Q2); Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Endocrinology, Diabetes and Metabolism (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine" +5872;21100775590;"Games for Health Journal";journal;"21617856, 2161783X";"Mary Ann Liebert Inc.";No;No;0,890;Q1;56;64;145;3224;586;143;3,75;50,38;53,18;0;United States;Northern America;"Mary Ann Liebert Inc.";"2012-2025";"Computer Science Applications (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Rehabilitation (Q1)";"Computer Science; Medicine; Social Sciences" +5873;5300152615;"International Journal of Public Health";journal;"16618564, 16618556";"Frontiers Media SA";Yes;No;0,890;Q1;94;152;811;6398;2338;732;2,86;42,09;48,95;2;Switzerland;Western Europe;"Frontiers Media SA";"2003-2004, 2007-2026";"Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)";"Medicine; Social Sciences" +5874;12490;"Journal of Fluids and Structures";journal;"10958622, 08899746";"Academic Press";No;No;0,890;Q1;141;160;478;7464;1960;476;3,85;46,65;21,60;0;United States;Northern America;"Academic Press";"1987-2026";"Mechanical Engineering (Q1)";"Engineering" +5875;13530;"Journal of the Royal Statistical Society. Series A: Statistics in Society";journal;"09641998, 1467985X";"Oxford University Press";No;No;0,890;Q1;101;95;302;2884;523;254;1,63;30,36;31,02;3;United Kingdom;Western Europe;"Oxford University Press";"1988-2026";"Social Sciences (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1); Economics and Econometrics (Q2)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics; Social Sciences" +5876;19700174905;"Diabetes, Metabolic Syndrome and Obesity";journal;"11787007";"Dove Medical Press Ltd";Yes;No;0,890;Q2;80;386;1131;17712;3935;1072;3,35;45,89;51,07;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Internal Medicine (Q2); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +5877;19400157274;"Journal of Breast Cancer";journal;"17386756, 20929900";"Korean Breast Cancer Society";Yes;No;0,890;Q2;55;44;133;1191;421;126;3,87;27,07;42,91;0;South Korea;Asiatic Region;"Korean Breast Cancer Society";"2008-2025";"Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5878;21100922610;"Journal of Professions and Organization";journal;"20518811, 20518803";"Oxford University Press";No;No;0,890;Q2;32;14;64;1020;173;64;2,14;72,86;54,55;1;United States;Northern America;"Oxford University Press";"2014-2026";"Business and International Management (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +5879;21899;"Nonprofit Management and Leadership";journal;"10486682, 15427854";"John Wiley and Sons Inc";No;No;0,890;Q2;72;67;127;4461;443;113;2,98;66,58;50,00;0;United States;Northern America;"John Wiley and Sons Inc";"1990-2026";"Strategy and Management (Q2)";"Business, Management and Accounting" +5880;21101028205;"ACS Applied Polymer Materials";journal;"26376105";"American Chemical Society";No;No;0,889;Q1;76;1520;3335;80306;16983;3329;5,16;52,83;36,87;0;United States;Northern America;"American Chemical Society";"2019-2026";"Organic Chemistry (Q1); Polymers and Plastics (Q1); Process Chemistry and Technology (Q2)";"Chemical Engineering; Chemistry; Materials Science" +5881;21100403506;"Applications in Plant Sciences";journal;"21680450";"John Wiley & Sons Inc.";Yes;No;0,889;Q1;51;46;143;2371;444;127;3,35;51,54;45,93;0;United States;Northern America;"John Wiley & Sons Inc.";"2013-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +5882;21101197409;"Cancer Pathogenesis and Therapy";journal;"29497132, 20972563";"Chinese Medical Association";Yes;No;0,889;Q1;13;61;78;4014;302;74;3,87;65,80;36,39;1;China;Asiatic Region;"Chinese Medical Association";"2023-2026";"Pathology and Forensic Medicine (Q1); Histology (Q2); Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5883;21101310673;"Environmental Research: Health";journal;"27525309";"Institute of Physics";Yes;No;0,889;Q1;11;73;91;4830;279;91;3,07;66,16;49,60;3;United Kingdom;Western Europe;"Institute of Physics";"2023-2026";"Public Health, Environmental and Occupational Health (Q1); Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2)";"Environmental Science; Medicine" +5884;4700152445;"Estuaries and Coasts";journal;"15592731, 15592723";"Springer";No;No;0,889;Q1;130;175;483;13187;1397;481;2,57;75,35;41,00;1;United States;Northern America;"Springer";"1978-1998, 2000-2001, 2006-2026";"Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +5885;21100899291;"Journal of Financial Reporting and Accounting";journal;"20425856, 19852517";"Emerald Group Publishing Ltd.";No;No;0,889;Q1;42;258;251;21388;1999;246;7,94;82,90;36,82;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003, 2007, 2009, 2017-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Management Information Systems (Q1); Accounting (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +5886;23144;"Language in Society";journal;"14698013, 00474045";"Cambridge University Press";No;No;0,889;Q1;81;70;99;4443;331;94;3,49;63,47;50,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1972-2026";"Linguistics and Language (Q1); Sociology and Political Science (Q1)";"Social Sciences" +5887;23674;"Applied Intelligence";journal;"0924669X, 15737497";"Springer Netherlands";No;No;0,889;Q2;119;1126;3460;58152;17285;3455;4,84;51,64;31,43;1;Netherlands;Western Europe;"Springer Netherlands";"1991-2026";"Artificial Intelligence (Q2)";"Computer Science" +5888;21101048373;"Current Sustainable/Renewable Energy Reports";journal;"21963010";"Springer International Publishing";No;No;0,888;Q1;34;34;45;2058;175;41;3,19;60,53;31,91;0;Switzerland;Western Europe;"Springer International Publishing";"2014-2026";"Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Engineering" +5889;21101041516;"Intensive Care Medicine Experimental";journal;"2197425X";"Springer Nature";Yes;No;0,888;Q1;44;133;266;4885;714;238;2,63;36,73;45,23;0;Switzerland;Western Europe;"Springer Nature";"2013-2026";"Critical Care and Intensive Care Medicine (Q1); Emergency Medicine (Q1); Physiology (medical) (Q2)";"Medicine" +5890;144732;"Journal of Science Teacher Education";journal;"1046560X, 15731847";"Taylor and Francis Ltd.";No;No;0,888;Q1;66;64;134;3820;419;128;3,02;59,69;64,24;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2002, 2005-2026";"Education (Q1)";"Social Sciences" +5891;5800207751;"Metaphor and Symbol";journal;"15327868, 10926488";"Psychology Press Ltd";No;No;0,888;Q1;39;19;60;1007;206;57;3,13;53,00;43,59;0;United States;Northern America;"Psychology Press Ltd";"2007-2026";"Communication (Q1); Linguistics and Language (Q1); Experimental and Cognitive Psychology (Q2)";"Psychology; Social Sciences" +5892;21100379294;"Operations Research Perspectives";journal;"22147160";"Elsevier Ltd";Yes;No;0,888;Q1;41;49;88;2736;513;87;4,06;55,84;21,80;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Control and Optimization (Q1); Statistics and Probability (Q1); Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences; Mathematics" +5893;21101042146;"Sports";journal;"20754663";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,888;Q1;57;457;808;24572;2943;803;3,56;53,77;29,69;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)";"Health Professions; Medicine" +5894;19928;"Transcultural Psychiatry";journal;"14617471, 13634615";"SAGE Publications Ltd";No;No;0,888;Q1;77;61;214;4056;702;199;2,76;66,49;60,45;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1964-2026";"Health (social science) (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Social Sciences" +5895;21100801725;"VINE Journal of Information and Knowledge Management Systems";journal;"20595905, 20595891";"Emerald Publishing";No;No;0,888;Q1;48;120;179;10332;1230;176;7,26;86,10;36,42;0;United Kingdom;Western Europe;"Emerald Publishing";"2016-2026";"Computer Networks and Communications (Q1); Information Systems (Q1); Library and Information Sciences (Q1); Computer Science Applications (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Computer Science; Social Sciences" +5896;25998;"Journal of Clinical Apheresis";journal;"07332459, 10981101";"Wiley-Liss Inc.";No;No;0,888;Q2;57;77;198;1512;505;183;2,99;19,64;51,23;0;United States;Northern America;"Wiley-Liss Inc.";"1982-2026";"Hematology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +5897;21100356807;"Current Plant Biology";journal;"22146628";"Elsevier B.V.";Yes;No;0,887;Q1;42;131;181;11299;994;172;5,18;86,25;44,86;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Plant Science (Q1); Biochemistry (Q2); Developmental Biology (Q2); Genetics (Q2); Cell Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +5898;21100886407;"European Policy Analysis";journal;"23806567";"John Wiley and Sons Ltd";No;No;0,887;Q1;28;40;78;3408;287;66;3,67;85,20;52,63;1;United States;Northern America;"John Wiley and Sons Ltd";"2015-2026";"Political Science and International Relations (Q1); Public Administration (Q1); Sociology and Political Science (Q1); Health Policy (Q2); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Medicine; Social Sciences" +5899;13866;"Experimental Eye Research";journal;"00144835, 10960007";"Academic Press";No;No;0,887;Q1;162;416;942;23813;3415;925;3,32;57,24;45,76;0;United States;Northern America;"Academic Press";"1961-2026";"Ophthalmology (Q1); Sensory Systems (Q2); Cellular and Molecular Neuroscience (Q3)";"Medicine; Neuroscience" +5900;93220;"International Journal of Sediment Research";journal;"10016279";"KeAi Communications Co.";Yes;No;0,887;Q1;63;88;218;5615;937;216;3,82;63,81;26,04;0;China;Asiatic Region;"KeAi Communications Co.";"1981-1987, 1991, 2000-2026";"Geology (Q1); Stratigraphy (Q1)";"Earth and Planetary Sciences" +5901;18200156708;"Journal of Optometry";journal;"19891342, 18884296";"Spanish Council of Optometry";Yes;No;0,887;Q1;40;51;139;1759;421;120;2,87;34,49;42,52;0;Spain;Western Europe;"Spanish Council of Optometry";"2008-2026";"Optometry (Q1)";"Health Professions" +5902;20670;"Journal of Organizational Change Management";journal;"09534814";"Emerald Group Publishing Ltd.";No;No;0,887;Q1;94;104;228;7774;1303;223;5,98;74,75;44,60;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1988-2026";"Decision Sciences (miscellaneous) (Q1); Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +5903;19400157156;"Journal of Pacific Rim Psychology";journal;"18344909";"SAGE Publications Ltd";Yes;Yes;0,887;Q1;31;29;84;2250;304;80;3,68;77,59;48,55;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Psychology (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Psychology; Social Sciences" +5904;5700164250;"Pedagogy, Culture and Society";journal;"17475104, 14681366";"Routledge";No;No;0,887;Q1;53;120;185;7391;656;183;3,20;61,59;61,11;9;United Kingdom;Western Europe;"Routledge";"1999-2026";"Cultural Studies (Q1); Education (Q1)";"Social Sciences" +5905;21101254896;"Mayo Clinic Proceedings: Innovations, Quality and Outcomes";journal;"25424548";"Elsevier B.V.";Yes;No;0,887;Q2;31;66;182;1916;552;174;2,82;29,03;42,57;1;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +5906;12568;"Oncology Reports";journal;"1021335X, 17912431";"Spandidos Publications";No;No;0,887;Q2;125;154;578;10074;2025;578;3,48;65,42;38,60;1;Greece;Western Europe;"Spandidos Publications";"1994-2026";"Medicine (miscellaneous) (Q2); Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5907;19700175087;"Open Access Rheumatology: Research and Reviews";journal;"1179156X";"Dove Medical Press Ltd";Yes;No;0,887;Q2;30;20;68;1111;232;65;3,51;55,55;50,00;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Rheumatology (Q2)";"Medicine" +5908;21100293900;"Biosensors";journal;"20796374";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,886;Q1;103;818;2848;63387;19534;2787;6,64;77,49;41,54;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Analytical Chemistry (Q1); Biophysics (Q1); Instrumentation (Q1); Biomedical Engineering (Q2); Biotechnology (Q2); Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Engineering; Medicine; Physics and Astronomy" +5909;21100830709;"Journal of Sensor and Actuator Networks";journal;"22242708";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,886;Q1;55;118;254;7709;1749;245;7,42;65,33;25,44;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2025";"Computer Networks and Communications (Q1); Control and Optimization (Q1); Instrumentation (Q1)";"Computer Science; Mathematics; Physics and Astronomy" +5910;21100824892;"Law, Innovation and Technology";journal;"1757997X, 17579961";"Taylor and Francis Ltd.";No;No;0,886;Q1;31;28;68;2070;330;67;5,58;73,93;38,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Computer Science (miscellaneous) (Q1); Law (Q1); Artificial Intelligence (Q2); Biotechnology (Q2); Computer Science Applications (Q2)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Social Sciences" +5911;21100202948;"Nous-Supplement: Philosophical Issues";journal;"15336077, 17582237";"Wiley-VCH Verlag";No;No;0,886;Q1;36;0;68;0;94;68;0,84;0,00;0,00;0;Germany;Western Europe;"Wiley-VCH Verlag";"2001-2003, 2005, 2007-2024, 2026";"Philosophy (Q1)";"Arts and Humanities" +5912;14592;"Theoretical and Computational Fluid Dynamics";journal;"09354964, 14322250";"Springer New York";No;No;0,886;Q1;73;51;131;2295;430;130;3,58;45,00;10,42;0;United States;Northern America;"Springer New York";"1989-2026";"Computational Mechanics (Q1); Condensed Matter Physics (Q1); Engineering (miscellaneous) (Q1); Fluid Flow and Transfer Processes (Q1)";"Chemical Engineering; Engineering; Physics and Astronomy" +5913;21326;"European Journal of Clinical Pharmacology";journal;"00316970, 14321041";"Springer Science and Business Media Deutschland GmbH";No;No;0,886;Q2;128;160;549;6680;1680;494;3,48;41,75;44,25;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1968-2026";"Medicine (miscellaneous) (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +5914;29163;"International Journal of Aging and Human Development";journal;"00914150, 15413535";"SAGE Publications Inc.";No;No;0,886;Q2;76;62;160;3328;482;160;3,03;53,68;62,77;0;United States;Northern America;"SAGE Publications Inc.";"1973-2026";"Developmental and Educational Psychology (Q2); Geriatrics and Gerontology (Q2); Aging (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Psychology" +5915;21100879731;"Journal of Experimental Psychopathology";journal;"20438087";"SAGE Publications Ltd";Yes;No;0,886;Q2;37;10;54;705;114;54;2,14;70,50;51,52;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2010-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +5916;130111;"Clean Technologies and Environmental Policy";journal;"1618954X, 16189558";"Springer Science and Business Media Deutschland GmbH";No;No;0,885;Q1;93;499;683;33533;3857;652;5,67;67,20;35,12;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1998, 2002, 2004-2026";"Business, Management and Accounting (miscellaneous) (Q1); Environmental Engineering (Q1); Economics and Econometrics (Q2); Environmental Chemistry (Q2); Management, Monitoring, Policy and Law (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science" +5917;28070;"Combinatorics Probability and Computing";journal;"09635483, 14692163";"Cambridge University Press";No;No;0,885;Q1;61;60;144;1593;156;144;1,04;26,55;21,71;0;United Kingdom;Western Europe;"Cambridge University Press";"1992-2026";"Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Statistics and Probability (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +5918;13816;"Cornea";journal;"15364798, 02773740";"Lippincott Williams and Wilkins";No;No;0,885;Q1;146;378;856;10173;1947;762;2,30;26,91;42,86;0;United States;Northern America;"Lippincott Williams and Wilkins";"1982-2026";"Ophthalmology (Q1)";"Medicine" +5919;16100154783;"European Journal of Archaeology";journal;"14619571, 17412722";"Cambridge University Press";No;No;0,885;Q1;45;28;82;1487;130;70;1,51;53,11;50,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1998-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +5920;5700153422;"Higher Education Quarterly";journal;"09515224, 14682273";"John Wiley and Sons Inc";No;No;0,885;Q1;57;103;220;6801;866;213;3,71;66,03;48,83;3;United States;Northern America;"John Wiley and Sons Inc";"1947-2026";"Education (Q1)";"Social Sciences" +5921;21101064700;"IACR Transactions on Cryptographic Hardware and Embedded Systems";journal;"25692925";"Ruhr-University of Bochum";Yes;Yes;0,885;Q1;54;111;240;5630;989;240;3,89;50,72;21,63;0;Germany;Western Europe;"Ruhr-University of Bochum";"2018-2026";"Computer Graphics and Computer-Aided Design (Q1); Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Signal Processing (Q1); Artificial Intelligence (Q2); Software (Q2)";"Computer Science" +5922;17243;"Journal of Vascular and Interventional Radiology";journal;"10510443, 15357732";"Elsevier Inc.";No;No;0,885;Q1;154;346;1048;6403;1945;687;1,93;18,51;24,78;1;United States;Northern America;"Elsevier Inc.";"1990-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +5923;21101161672;"Measurement: Food";journal;"27722759";"Elsevier Ltd";Yes;No;0,885;Q1;25;49;163;3366;1127;162;7,29;68,69;35,98;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Food Science (Q1); Instrumentation (Q1); Nutrition and Dietetics (Q2)";"Agricultural and Biological Sciences; Nursing; Physics and Astronomy" +5924;21101042487;"European Journal of Investigation in Health, Psychology and Education";journal;"21748144, 22549625";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;Yes;0,885;Q2;40;260;533;16911;2223;520;4,41;65,04;55,17;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Applied Psychology (Q2); Clinical Psychology (Q2); Developmental and Educational Psychology (Q2)";"Psychology" +5925;21101039875;"Journal of Alzheimer's Disease Reports";journal;"25424823";"SAGE Publications Ltd";Yes;No;0,885;Q2;32;181;266;9592;935;265;3,26;52,99;46,88;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2017-2025";"Clinical Psychology (Q2); Geriatrics and Gerontology (Q2); Neuroscience (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Neuroscience; Psychology" +5926;12721;"Journal of Parenteral and Enteral Nutrition";journal;"19412444, 01486071";"John Wiley & Sons Inc.";No;No;0,885;Q2;124;112;449;3885;1402;399;3,15;34,69;55,73;0;United States;Northern America;"John Wiley & Sons Inc.";"1977-2026";"Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +5927;21100861038;"Non-coding RNA";journal;"2311553X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,885;Q2;48;80;217;7474;782;205;4,01;93,43;50,14;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2025";"Biochemistry (Q2); Genetics (Q2); Molecular Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +5928;17650;"Communications";journal;"03412059, 16134087";"De Gruyter Mouton";No;No;0,884;Q1;45;59;91;3118;281;86;3,19;52,85;47,58;0;Germany;Western Europe;"De Gruyter Mouton";"1976-1988, 1990-2026";"Arts and Humanities (miscellaneous) (Q1); Communication (Q1)";"Arts and Humanities; Social Sciences" +5929;145221;"Educational Assessment";journal;"10627197, 15326977";"Routledge";No;No;0,884;Q1;41;18;55;994;218;54;4,33;55,22;59,57;0;United States;Northern America;"Routledge";"1993-1995, 2004-2026";"Education (Q1)";"Social Sciences" +5930;21100205502;"European Journal of Remote Sensing";journal;"22797254";"Taylor and Francis Ltd.";Yes;No;0,884;Q1;60;67;173;4145;743;170;4,29;61,87;35,51;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Applied Mathematics (Q1); Atmospheric Science (Q2); Computers in Earth Sciences (Q2); Environmental Science (miscellaneous) (Q2)";"Earth and Planetary Sciences; Environmental Science; Mathematics" +5931;21100374601;"IEEE Access";journal;"21693536";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,884;Q1;338;13919;33086;723375;207594;33077;6,01;51,97;25,72;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2026";"Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)";"Computer Science; Engineering; Materials Science" +5932;21100368801;"IEEE/ACM Transactions on Audio Speech and Language Processing";journal;"23299304, 23299290";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,884;Q1;104;1;991;77;6650;991;6,58;77,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2014-2025";"Acoustics and Ultrasonics (Q1); Computational Mathematics (Q1); Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1); Media Technology (Q1); Signal Processing (Q1); Speech and Hearing (Q1)";"Computer Science; Engineering; Health Professions; Mathematics; Physics and Astronomy" +5933;21100897717;"Informatics";journal;"22279709";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,884;Q1;50;141;286;8030;2067;285;7,98;56,95;35,17;2;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2014-2026";"Communication (Q1); Computer Networks and Communications (Q1); Human-Computer Interaction (Q2)";"Computer Science; Social Sciences" +5934;18198;"International Journal of Computer Integrated Manufacturing";journal;"0951192X, 13623052";"Taylor and Francis Ltd.";No;No;0,884;Q1;79;156;255;8161;1542;246;5,95;52,31;26,05;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Aerospace Engineering (Q1); Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Computer Science Applications (Q2)";"Computer Science; Engineering" +5935;23968;"Journal of Pure and Applied Algebra";journal;"00224049";"Elsevier B.V.";No;No;0,884;Q1;71;313;718;7607;613;718;0,81;24,30;21,78;0;Netherlands;Western Europe;"Elsevier B.V.";"1971-2026";"Algebra and Number Theory (Q1)";"Mathematics" +5936;5700179507;"Language and Intercultural Communication";journal;"1747759X, 14708477";"Routledge";No;No;0,884;Q1;49;71;138;3793;428;119;2,02;53,42;52,25;1;United Kingdom;Western Europe;"Routledge";"2001-2026";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +5937;21101158943;"Osteoarthritis and Cartilage Open";journal;"26659131";"Elsevier Ltd";Yes;No;0,884;Q1;23;136;242;6232;759;242;3,04;45,82;46,48;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Orthopedics and Sports Medicine (Q1); Rehabilitation (Q1); Biomedical Engineering (Q2)";"Engineering; Medicine" +5938;13995;"Teachers College Record";journal;"01614681, 14679620";"Teachers College Record";No;No;0,884;Q1;117;60;279;3805;753;278;1,54;63,42;62,33;0;United States;Northern America;"Teachers College Record";"1919, 1963-1965, 1970, 1976, 1980-1981, 1985, 1987-1990, 1992, 1994-2025";"Education (Q1)";"Social Sciences" +5939;21100851290;"World Journal of Stem Cells";journal;"19480210";"Baishideng Publishing Group Inc";Yes;No;0,884;Q2;48;131;220;8410;962;205;4,47;64,20;41,48;0;United States;Northern America;"Baishideng Publishing Group Inc";"2016-2025";"Genetics (Q2); Genetics (clinical) (Q2); Histology (Q2); Molecular Biology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5940;23078;"Language";journal;"15350665, 00978507";"Linguistic Society of America";No;No;0,883;Q1;102;40;108;2911;193;93;1,41;72,78;40,26;0;United States;Northern America;"Linguistic Society of America";"1980, 1996-2025";"Linguistics and Language (Q1)";"Social Sciences" +5941;21100399828;"ChemElectroChem";journal;"21960216";"John Wiley and Sons Ltd";Yes;No;0,883;Q2;106;275;1108;17501;4659;1093;4,94;63,64;32,37;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2014-2026";"Catalysis (Q2); Electrochemistry (Q2)";"Chemical Engineering; Chemistry" +5942;21101165602;"Cleaner Waste Systems";journal;"27729125";"Elsevier B.V.";Yes;No;0,883;Q2;24;252;188;18695;1204;187;6,18;74,19;33,80;1;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Environmental Science (miscellaneous) (Q2); Waste Management and Disposal (Q2)";"Environmental Science" +5943;21101088220;"Exploration of Targeted Anti-tumor Therapy";journal;"26923114";"Open Exploration Publishing Inc";Yes;Yes;0,883;Q2;21;70;215;6505;827;214;3,77;92,93;45,79;0;China;Asiatic Region;"Open Exploration Publishing Inc";"2020-2026";"Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +5944;15500;"Journal of Family and Economic Issues";journal;"15733475, 10580476";"Springer International Publishing AG";No;No;0,883;Q2;69;91;198;6163;863;194;3,89;67,73;60,48;4;United States;Northern America;"Springer International Publishing AG";"1992-2026";"Economics and Econometrics (Q2); Social Psychology (Q2)";"Economics, Econometrics and Finance; Psychology" +5945;21100933297;"Liver Research";journal;"25425684, 20962878";"KeAi Communications Co.";Yes;No;0,883;Q2;34;37;108;2685;357;101;3,88;72,57;43,78;0;China;Asiatic Region;"KeAi Communications Co.";"2017-2025";"Gastroenterology (Q2); Hepatology (Q2)";"Medicine" +5946;16597;"CardioVascular and Interventional Radiology";journal;"1432086X, 01741551";"Springer";No;No;0,882;Q1;104;352;866;6319;1792;506;1,93;17,95;26,32;0;United States;Northern America;"Springer";"1978-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +5947;14880;"Clinical Journal of Pain";journal;"15365409, 07498047";"Lippincott Williams and Wilkins";No;No;0,882;Q1;154;70;279;2905;881;250;2,85;41,50;44,64;0;United States;Northern America;"Lippincott Williams and Wilkins";"1985-2026";"Anesthesiology and Pain Medicine (Q1); Neurology (clinical) (Q2)";"Medicine" +5948;21100901159;"International Journal of Child Care and Education Policy";journal;"19765681, 22886729";"SpringerOpen";Yes;Yes;0,882;Q1;27;24;46;1452;191;45;4,42;60,50;72,50;2;Singapore;Asiatic Region;"SpringerOpen";"2007-2026";"Community and Home Care (Q1); Education (Q1); Pediatrics (Q1); Pediatrics, Perinatology and Child Health (Q1); Sociology and Political Science (Q1)";"Medicine; Nursing; Social Sciences" +5949;16664;"Journal of Behavioral Medicine";journal;"15733521, 01607715";"Springer New York";No;No;0,882;Q1;118;91;271;5751;866;269;3,32;63,20;62,00;1;United States;Northern America;"Springer New York";"1978-2026";"Psychology (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +5950;12789;"Journal of Creative Behavior";journal;"21626057, 00220175";"John Wiley & Sons Inc.";No;No;0,882;Q1;82;132;146;9683;704;133;4,86;73,36;45,81;3;United States;Northern America;"John Wiley & Sons Inc.";"1967-2026";"Education (Q1); Visual Arts and Performing Arts (Q1); Developmental and Educational Psychology (Q2)";"Arts and Humanities; Psychology; Social Sciences" +5951;27287;"Journal of Network and Systems Management";journal;"15737705, 10647570";"Springer New York";No;No;0,882;Q1;51;99;257;4784;1434;255;5,12;48,32;26,55;0;United States;Northern America;"Springer New York";"1993-2026";"Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Strategy and Management (Q2)";"Business, Management and Accounting; Computer Science" +5952;23582;"Journal of Real Estate Finance and Economics";journal;"1573045X, 08955638";"Springer Netherlands";No;No;0,882;Q1;78;70;160;3246;464;160;3,01;46,37;22,09;10;Netherlands;Western Europe;"Springer Netherlands";"1988-2026";"Urban Studies (Q1); Accounting (Q2); Economics and Econometrics (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +5953;19836;"Mycorrhiza";journal;"14321890, 09406360";"Springer Science and Business Media Deutschland GmbH";No;No;0,882;Q1;113;70;114;5232;467;113;4,09;74,74;41,90;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1991-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Genetics (Q2); Medicine (miscellaneous) (Q2); Molecular Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +5954;25231;"American Journal on Addictions";journal;"10550496, 15210391";"Wiley-Blackwell";No;No;0,882;Q2;97;80;165;2142;415;162;2,62;26,78;51,55;0;United States;Northern America;"Wiley-Blackwell";"1992-2026";"Clinical Psychology (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +5955;21100286315;"Brain and Behavior";journal;"21623279";"John Wiley and Sons Ltd";Yes;No;0,882;Q2;78;903;1329;46314;4344;1312;2,93;51,29;45,53;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2026";"Behavioral Neuroscience (Q2)";"Neuroscience" +5956;15399;"Journal of Child and Family Studies";journal;"15732843, 10621024";"Springer New York";No;No;0,882;Q2;112;244;849;15756;2290;849;2,36;64,57;68,13;2;United States;Northern America;"Springer New York";"1992-2026";"Developmental and Educational Psychology (Q2); Life-span and Life-course Studies (Q2)";"Psychology; Social Sciences" +5957;35934;"Physiological Genomics";journal;"15312267, 10948341";"American Physiological Society";No;No;0,882;Q2;132;66;166;3509;445;163;2,62;53,17;50,74;0;United States;Northern America;"American Physiological Society";"1999-2026";"Genetics (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology" +5958;19664;"Criminal Justice and Behavior";journal;"15523594, 00938548";"SAGE Publications Inc.";No;No;0,881;Q1;121;106;284;5912;872;284;2,53;55,77;60,70;3;United States;Northern America;"SAGE Publications Inc.";"1974-2026";"Law (Q1); Pathology and Forensic Medicine (Q1); Psychology (miscellaneous) (Q1)";"Medicine; Psychology; Social Sciences" +5959;5700191209;"Diagnostic Pathology";journal;"17461596";"BioMed Central Ltd";Yes;No;0,881;Q1;70;134;394;4058;1282;392;3,45;30,28;49,41;2;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Pathology and Forensic Medicine (Q1); Histology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +5960;27879;"Earthquake Engineering and Engineering Vibration";journal;"16713664, 1993503X";"Institute of Engineering Mechanics (IEM)";No;No;0,881;Q1;59;69;202;3169;741;202;3,64;45,93;27,69;0;China;Asiatic Region;"Institute of Engineering Mechanics (IEM)";"1986, 1988, 1990-1995, 2002-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Geophysics (Q1); Mechanical Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +5961;29467;"Hydrological Processes";journal;"10991085, 08856087";"John Wiley and Sons Ltd";No;No;0,881;Q1;195;329;883;24102;2876;842;3,01;73,26;33,85;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1986-2026";"Water Science and Technology (Q1)";"Environmental Science" +5962;25549;"Image and Vision Computing";journal;"02628856";"Elsevier Ltd";No;No;0,881;Q1;154;357;679;21474;3966;677;6,08;60,15;29,67;0;United Kingdom;Western Europe;"Elsevier Ltd";"1983-2026";"Computer Vision and Pattern Recognition (Q1); Electrical and Electronic Engineering (Q1); Signal Processing (Q1)";"Computer Science; Engineering" +5963;21100232821;"Inland Waters";journal;"20442041, 2044205X";"Taylor and Francis Ltd.";No;No;0,881;Q1;44;50;122;3528;310;118;2,09;70,56;37,19;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Aquatic Science (Q1); Water Science and Technology (Q1)";"Agricultural and Biological Sciences; Environmental Science" +5964;21100199779;"Korean Journal of Pain";journal;"20930569, 20059159";"Korean Pain Society";Yes;Yes;0,881;Q1;40;65;142;2273;484;116;3,59;34,97;46,43;0;South Korea;Asiatic Region;"Korean Pain Society";"2011-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +5965;21100416140;"Nano-Structures and Nano-Objects";journal;"2352507X";"Elsevier B.V.";No;No;0,881;Q1;66;155;532;13659;3690;532;7,33;88,12;34,02;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +5966;14630;"Ophthalmic Research";journal;"14230259, 00303747";"S. Karger AG";Yes;No;0,881;Q1;68;46;294;1922;771;292;2,26;41,78;42,61;0;Switzerland;Western Europe;"S. Karger AG";"1970-2026";"Ophthalmology (Q1); Medicine (miscellaneous) (Q2); Sensory Systems (Q2); Cellular and Molecular Neuroscience (Q3)";"Medicine; Neuroscience" +5967;16938;"Physiotherapy (United Kingdom)";journal;"00319406, 18731465";"Elsevier Ltd";No;No;0,881;Q1;76;64;154;1842;463;138;2,77;28,78;60,96;0;United Kingdom;Western Europe;"Elsevier Ltd";"1945-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1)";"Health Professions" +5968;23542;"Problems of Post-Communism";journal;"1557783X, 10758216";"M.E. Sharpe Inc.";No;No;0,881;Q1;43;70;150;5374;485;146;3,55;76,77;52,46;6;United States;Northern America;"M.E. Sharpe Inc.";"1996-2026";"Sociology and Political Science (Q1)";"Social Sciences" +5969;14000155895;"Sociology Compass";journal;"17519020";"John Wiley and Sons Inc";No;No;0,881;Q1;72;125;308;10596;1033;303;2,89;84,77;53,30;1;United States;Northern America;"John Wiley and Sons Inc";"2010-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +5970;18142;"Sociology of Sport Journal";journal;"15432785, 07411235";"Human Kinetics Publishers Inc.";No;No;0,881;Q1;74;42;124;2978;400;120;2,58;70,90;48,96;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1986, 1995-2026";"Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sociology and Political Science (Q1); Sports Science (Q2)";"Health Professions; Medicine; Social Sciences" +5971;17113;"Postgraduate Medicine";journal;"19419260, 00325481";"Taylor and Francis Ltd.";No;No;0,881;Q2;80;110;321;4085;1036;299;2,74;37,14;44,25;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1947-2006, 2008-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +5972;28149;"Affilia - Feminist Inquiry in Social Work";journal;"15523020, 08861099";"SAGE Publications Inc.";No;No;0,880;Q1;51;46;134;2477;429;122;2,82;53,85;81,48;0;United States;Northern America;"SAGE Publications Inc.";"1986-2026";"Gender Studies (Q1); Social Sciences (miscellaneous) (Q1); Social Work (Q1)";"Social Sciences" +5973;16799;"Annals of Microbiology";journal;"18692044, 15904261";"BioMed Central Ltd";Yes;No;0,880;Q1;78;36;124;2920;694;124;5,75;81,11;44,56;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1992, 1995, 1997-2026";"Applied Microbiology and Biotechnology (Q1)";"Immunology and Microbiology" +5974;15608;"Engineering in Life Sciences";journal;"16182863, 16180240";"Wiley-VCH Verlag";Yes;No;0,880;Q1;87;60;130;3117;669;127;4,71;51,95;34,93;0;Germany;Western Europe;"Wiley-VCH Verlag";"2004-2026";"Environmental Engineering (Q1); Bioengineering (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Environmental Science" +5975;19600166406;"European Business Organization Law Review";journal;"17416205, 15667529";"Springer International Publishing AG";No;No;0,880;Q1;37;27;100;1467;436;96;2,77;54,33;26,47;0;Switzerland;Western Europe;"Springer International Publishing AG";"2000-2026";"Law (Q1); Political Science and International Relations (Q1); Business and International Management (Q2)";"Business, Management and Accounting; Social Sciences" +5976;144957;"Journal of Marketing Education";journal;"02734753, 15526550";"SAGE Publications Inc.";No;No;0,880;Q1;72;31;70;2181;405;62;5,66;70,35;46,91;0;United States;Northern America;"SAGE Publications Inc.";"1979-2025";"Education (Q1); Marketing (Q2)";"Business, Management and Accounting; Social Sciences" +5977;21100932754;"Obesity Science and Practice";journal;"20552238";"Wiley-Blackwell";Yes;No;0,880;Q2;35;71;262;3126;759;261;2,85;44,03;52,70;0;United States;Northern America;"Wiley-Blackwell";"2015-2026";"Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +5978;144655;"Qualitative Market Research";journal;"13522752";"Emerald Group Publishing Ltd.";No;No;0,880;Q2;72;40;114;3545;511;108;4,01;88,63;51,72;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1998-2026";"Marketing (Q2)";"Business, Management and Accounting" +5979;94067;"Proceedings of the Annual ACM Symposium on Principles of Distributed Computing";conference and proceedings;"-";"Association for Computing Machinery";No;No;0,880;-;83;68;171;2021;378;165;2,03;29,72;19,64;0;United States;Northern America;"Association for Computing Machinery";"1982, 1984-2025";"Computer Networks and Communications; Hardware and Architecture; Software";"Computer Science" +5980;19700188267;"Accounting Education";journal;"14684489, 09639284";"Routledge";No;No;0,879;Q1;58;70;94;5284;548;94;5,76;75,49;53,80;0;United Kingdom;Western Europe;"Routledge";"1992-1996, 1998, 2000-2026";"Education (Q1); Accounting (Q2)";"Business, Management and Accounting; Social Sciences" +5981;25264;"Inorganic Chemistry";journal;"00201669, 1520510X";"American Chemical Society";No;No;0,879;Q1;267;2455;6754;143070;30018;6729;4,48;58,28;35,18;0;United States;Northern America;"American Chemical Society";"1962-2026";"Chemistry (miscellaneous) (Q1); Inorganic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry" +5982;15496;"International Journal of Intercultural Relations";journal;"01471767";"Elsevier Ltd";No;No;0,879;Q1;113;173;381;12194;1430;376;3,51;70,49;55,32;0;United Kingdom;Western Europe;"Elsevier Ltd";"1977-2026";"Sociology and Political Science (Q1); Business and International Management (Q2); Social Psychology (Q2)";"Business, Management and Accounting; Psychology; Social Sciences" +5983;21101030140;"JMIR Rehabilitation and Assistive Technologies";journal;"23692529";"JMIR Publications Inc.";Yes;No;0,879;Q1;29;60;120;2714;461;120;3,29;45,23;55,79;0;Canada;Northern America;"JMIR Publications Inc.";"2014-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1)";"Health Professions; Medicine" +5984;21100889857;"Journal of Benefit-Cost Analysis";journal;"21522812, 21945888";"Cambridge University Press";No;No;0,879;Q1;19;33;84;1307;161;84;1,77;39,61;22,92;2;United Kingdom;Western Europe;"Cambridge University Press";"2011, 2017-2025";"Public Administration (Q1); Sociology and Political Science (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +5985;29021;"Journal of Nuclear Materials";journal;"00223115";"Elsevier B.V.";No;No;0,879;Q1;182;666;1638;34287;5850;1628;3,43;51,48;26,72;1;Netherlands;Western Europe;"Elsevier B.V.";"1959-2026";"Materials Science (miscellaneous) (Q1); Nuclear and High Energy Physics (Q1); Nuclear Energy and Engineering (Q1)";"Energy; Materials Science; Physics and Astronomy" +5986;19500157002;"Archaeological and Anthropological Sciences";journal;"18669565, 18669557";"Springer Verlag";Yes;No;0,878;Q1;53;243;628;20484;1327;626;1,94;84,30;45,16;0;Germany;Western Europe;"Springer Verlag";"2009-2026";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +5987;21100936535;"Clean Energy";journal;"25154230, 2515396X";"Oxford University Press";Yes;Yes;0,878;Q1;35;93;287;6168;1728;286;5,70;66,32;29,84;2;United Kingdom;Western Europe;"Oxford University Press";"2017-2026";"Environmental Engineering (Q1); Energy Engineering and Power Technology (Q2); Management, Monitoring, Policy and Law (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Environmental Science" +5988;28751;"Critical Social Policy";journal;"02610183, 1461703X";"SAGE Publications Ltd";No;No;0,878;Q1;85;37;101;1886;313;96;2,76;50,97;60,29;5;United Kingdom;Western Europe;"SAGE Publications Ltd";"1981-2026";"Political Science and International Relations (Q1)";"Social Sciences" +5989;21100897500;"Education Sciences";journal;"22277102";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,878;Q1;85;1707;3596;101689;17694;3536;5,10;59,57;58,84;9;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Computer Science (miscellaneous) (Q1); Education (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Public Administration (Q1); Computer Science Applications (Q2); Developmental and Educational Psychology (Q2)";"Computer Science; Health Professions; Psychology; Social Sciences" +5990;22021;"Ibis";journal;"1474919X, 00191019";"Wiley-Blackwell Publishing Ltd";Yes;No;0,878;Q1;97;105;304;7620;783;294;2,63;72,57;32,94;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1859-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +5991;16299;"Journal of Materials in Civil Engineering";journal;"19435533, 08991561";"American Society of Civil Engineers (ASCE)";No;No;0,878;Q1;160;627;1757;31906;6129;1718;3,25;50,89;29,80;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1989-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science" +5992;28999;"Journal of Mathematical Economics";journal;"03044068, 18731538";"Elsevier B.V.";No;No;0,878;Q1;49;70;263;2421;248;263;0,96;34,59;19,01;0;Netherlands;Western Europe;"Elsevier B.V.";"1974-2026";"Applied Mathematics (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Mathematics" +5993;145429;"Pain Practice";journal;"15332500, 15307085";"Wiley-Blackwell Publishing Ltd";No;No;0,878;Q1;83;140;315;5071;924;255;2,96;36,22;33,80;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2004-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +5994;5100154503;"Road Materials and Pavement Design";journal;"14680629, 21647402";"Taylor and Francis Ltd.";No;No;0,878;Q1;78;316;531;16835;2288;509;4,14;53,28;26,99;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Civil and Structural Engineering (Q1)";"Engineering" +5995;23072;"Clinical Cardiology";journal;"19328737, 01609289";"John Wiley and Sons Inc";Yes;No;0,878;Q2;92;165;595;4304;1566;520;2,62;26,08;33,48;1;United States;Northern America;"John Wiley and Sons Inc";"1978-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +5996;12100154708;"Expert Review of Gastroenterology and Hepatology";journal;"17474132, 17474124";"Taylor and Francis Ltd.";No;No;0,878;Q2;78;115;297;9742;910;275;3,15;84,71;39,58;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Gastroenterology (Q2); Hepatology (Q2)";"Medicine" +5997;21101092013;"Maritime Transport Research";journal;"2666822X";"Elsevier Ltd";Yes;No;0,878;Q2;21;14;71;587;347;66;4,33;41,93;22,73;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Transportation (Q2)";"Social Sciences" +5998;30787;"AAPG Bulletin";journal;"01491423";"American Association of Petroleum Geologists";No;No;0,877;Q1;175;0;242;0;783;235;3,18;0,00;0,00;0;United States;Northern America;"American Association of Petroleum Geologists";"1943, 1950, 1967-2024";"Earth and Planetary Sciences (miscellaneous) (Q1); Geology (Q1); Energy Engineering and Power Technology (Q2); Energy (miscellaneous) (Q2); Fuel Technology (Q2); Geochemistry and Petrology (Q2)";"Earth and Planetary Sciences; Energy" +5999;15477;"Biotechnology and Bioengineering";journal;"00063592, 10970290";"Wiley-VCH Verlag";No;No;0,877;Q1;225;269;816;14137;3664;812;4,39;52,55;39,00;1;Germany;Western Europe;"Wiley-VCH Verlag";"1962-2026";"Applied Microbiology and Biotechnology (Q1); Bioengineering (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +6000;25807;"Communications in Nonlinear Science and Numerical Simulation";journal;"10075704";"Elsevier B.V.";No;No;0,877;Q1;149;684;1642;30477;6587;1636;4,12;44,56;31,35;0;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Applied Mathematics (Q1); Modeling and Simulation (Q1); Numerical Analysis (Q1)";"Mathematics" +6001;21101194987;"Environmental Research: Infrastructure and Sustainability";journal;"26344505";"Institute of Physics";Yes;No;0,877;Q1;22;85;186;5623;742;175;3,41;66,15;36,01;1;United Kingdom;Western Europe;"Institute of Physics";"2021-2026";"Environmental Engineering (Q1); Geography, Planning and Development (Q1); Environmental Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Environmental Science; Social Sciences" +6002;21101093582;"Health and Social Care Delivery Research";journal;"27550079, 27550060";"NIHR Journals Library";Yes;Yes;0,877;Q1;12;53;120;4708;355;120;2,80;88,83;66,77;0;United Kingdom;Western Europe;"NIHR Journals Library";"2022-2026";"Care Planning (Q1); Health (social science) (Q1); Health Policy (Q2)";"Medicine; Nursing; Social Sciences" +6003;28134;"Journal of Chemical Physics";journal;"10897690, 00219606";"American Institute of Physics";Yes;No;0,877;Q1;423;2273;6109;145516;20297;6063;3,44;64,02;24,05;0;United States;Northern America;"American Institute of Physics";"1933-2026";"Physical and Theoretical Chemistry (Q1); Physics and Astronomy (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Chemistry; Medicine; Physics and Astronomy" +6004;21100942111;"Journal of Law and Courts";journal;"21646589, 21646570";"Cambridge University Press";No;No;0,877;Q1;23;40;58;2582;92;58;1,52;64,55;41,98;0;United States;Northern America;"Cambridge University Press";"2013-2026";"Law (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6005;15300154846;"Journal of Occupational Medicine and Toxicology";journal;"17456673";"BioMed Central Ltd";Yes;No;0,877;Q1;55;46;100;2353;353;100;3,52;51,15;47,60;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Safety Research (Q1); Public Health, Environmental and Occupational Health (Q2); Toxicology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +6006;25014;"Meitiandizhi Yu Kantan/Coal Geology and Exploration";journal;"10011986";"Science China Press";Yes;No;0,877;Q1;30;251;701;11712;2537;701;3,75;46,66;28,65;0;China;Asiatic Region;"Science China Press";"1998, 2001-2003, 2019-2026";"Geology (Q1); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Energy" +6007;27699;"Synthese";journal;"00397857, 15730964";"Springer Netherlands";No;No;0,877;Q1;95;543;1312;31244;2499;1287;1,76;57,54;23,31;1;Netherlands;Western Europe;"Springer Netherlands";"1936-1939, 1946-1949, 1955-1956, 1959-1963, 1966-2026";"Philosophy (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +6008;21100467356;"Current Research in Translational Medicine";journal;"24523186";"Elsevier Masson s.r.l.";No;No;0,877;Q2;72;61;116;3346;327;92;2,74;54,85;41,85;0;France;Western Europe;"Elsevier Masson s.r.l.";"2016-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Hematology (Q2); Infectious Diseases (Q2); Medicine (miscellaneous) (Q2); Oncology (Q2); Transplantation (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6009;21101142705;"Implementation Research and Practice";journal;"26334895";"SAGE Publications Ltd";Yes;No;0,877;Q2;9;24;63;1320;154;63;2,38;55,00;65,52;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2022-2026";"Neurology (Q2); Psychiatry and Mental Health (Q2); Biological Psychiatry (Q3)";"Medicine; Neuroscience" +6010;20427;"Naunyn-Schmiedeberg's Archives of Pharmacology";journal;"00281298, 14321912";"Springer Science and Business Media Deutschland GmbH";No;No;0,877;Q2;104;1270;1044;98351;4915;1041;4,73;77,44;45,56;4;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1969-2026";"Medicine (miscellaneous) (Q2); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6011;21100454916;"Abdominal Radiology";journal;"23660058, 2366004X";"Springer";No;No;0,876;Q1;95;771;1191;28189;3366;1125;2,71;36,56;38,73;2;United States;Northern America;"Springer";"2016-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Urology (Q1); Gastroenterology (Q2); Radiological and Ultrasound Technology (Q2)";"Health Professions; Medicine" +6012;21101112616;"American Journal of Biological Anthropology";journal;"26927691";"John Wiley and Sons Inc";No;No;0,876;Q1;150;212;461;16650;1145;435;2,23;78,54;53,80;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Anatomy (Q1); Anthropology (Q1); Archeology (Q1); Paleontology (Q1); Epidemiology (Q2); Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology; Earth and Planetary Sciences; Medicine; Social Sciences" +6013;20600195519;"Contemporary Social Science";journal;"2158205X, 21582041";"Routledge, Taylor & Francis Group";No;No;0,876;Q1;38;48;117;3067;508;108;5,62;63,90;45,61;2;United Kingdom;Western Europe;"Routledge, Taylor & Francis Group";"2011-2026";"History (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +6014;21101323940;"Encyclopedia";journal;"26738392";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,876;Q1;37;216;368;16603;2720;368;6,99;76,87;38,56;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +6015;4700152618;"Erkenntnis";journal;"15728420, 01650106";"Springer Netherlands";No;No;0,876;Q1;55;301;468;12964;761;461;1,61;43,07;15,85;0;Netherlands;Western Europe;"Springer Netherlands";"1919-1921, 1924-1925, 1928-1932, 1934-1937, 1939, 1975-2002, 2004-2026";"Logic (Q1); Philosophy (Q1)";"Arts and Humanities; Mathematics" +6016;21100464557;"Food Science and Nutrition";journal;"20487177";"John Wiley and Sons Ltd";Yes;No;0,876;Q1;90;1412;1864;90335;10721;1856;5,67;63,98;45,78;5;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +6017;21101092873;"International Journal of Educational Research Open";journal;"26663740";"Elsevier Ltd";Yes;No;0,876;Q1;30;143;284;9332;1301;283;5,08;65,26;56,01;1;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Education (Q1)";"Social Sciences" +6018;26965;"Journal of Molecular Liquids";journal;"18733166, 01677322";"Elsevier B.V.";Yes;No;0,876;Q1;202;2132;8015;135802;45757;8007;5,73;63,70;37,64;0;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Spectroscopy (Q1)";"Chemistry; Materials Science; Physics and Astronomy" +6019;25621;"Journal of Parallel and Distributed Computing";journal;"07437315, 10960848";"Academic Press Inc.";No;No;0,876;Q1;118;105;407;5153;2040;402;4,69;49,08;25,00;0;United States;Northern America;"Academic Press Inc.";"1984-2026";"Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Theoretical Computer Science (Q1); Artificial Intelligence (Q2); Software (Q2)";"Computer Science; Mathematics" +6020;26400;"Organic Process Research and Development";journal;"1520586X, 10836160";"American Chemical Society";No;No;0,876;Q1;136;293;915;11138;3041;888;3,25;38,01;25,38;1;United States;Northern America;"American Chemical Society";"1997-2026";"Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry" +6021;21100201770;"Health Policy and Technology";journal;"22118845, 22118837";"Elsevier B.V.";No;No;0,876;Q2;47;109;237;4744;938;224;4,01;43,52;44,59;2;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Biomedical Engineering (Q2); Health Policy (Q2)";"Engineering; Medicine" +6022;26133;"Hormones and Behavior";journal;"0018506X, 10956867";"Academic Press Inc.";No;No;0,876;Q2;171;105;357;8745;927;344;2,59;83,29;62,90;0;United States;Northern America;"Academic Press Inc.";"1969-2026";"Behavioral Neuroscience (Q2); Endocrine and Autonomic Systems (Q2); Endocrinology (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +6023;16052;"International Biodeterioration and Biodegradation";journal;"09648305";"Elsevier Ltd";No;No;0,876;Q2;146;204;339;13354;1742;329;5,30;65,46;43,71;0;United Kingdom;Western Europe;"Elsevier Ltd";"1992-2026";"Biomaterials (Q2); Microbiology (Q2); Waste Management and Disposal (Q2)";"Environmental Science; Immunology and Microbiology; Materials Science" +6024;26017;"Leukemia Research";journal;"18735835, 01452126";"Elsevier Ltd";No;No;0,876;Q2;100;96;349;3699;700;260;1,92;38,53;41,27;0;United Kingdom;Western Europe;"Elsevier Ltd";"1977-2026";"Hematology (Q2); Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6025;11800154587;"China Information";journal;"0920203X, 1741590X";"SAGE Publications Ltd";No;No;0,875;Q1;37;24;53;1385;158;51;2,23;57,71;46,88;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-2026";"Arts and Humanities (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +6026;24838;"International Journal of Dermatology";journal;"00119059, 13654632";"John Wiley and Sons Inc";No;No;0,875;Q1;117;623;1648;10973;2411;606;1,44;17,61;50,96;1;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1963-2026";"Dermatology (Q1)";"Medicine" +6027;12694;"International Journal of Science Education";journal;"09500693, 14645289";"Taylor and Francis Ltd.";No;No;0,875;Q1;137;240;303;15024;1107;302;3,08;62,60;53,47;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Education (Q1)";"Social Sciences" +6028;18316;"Journal of Veterinary Internal Medicine";journal;"19391676, 08916640";"Wiley-Blackwell";Yes;No;0,875;Q1;139;316;850;11040;2074;816;2,40;34,94;59,68;0;United States;Northern America;"Wiley-Blackwell";"1987-2025";"Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Veterinary" +6029;14988;"BMC Biotechnology";journal;"14726750";"BioMed Central Ltd";Yes;No;0,875;Q2;105;138;198;7772;969;198;4,99;56,32;48,10;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology" +6030;21100857423;"Journal of Developmental Biology";journal;"22213759";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,875;Q2;33;45;131;3554;374;125;2,49;78,98;42,80;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2025";"Developmental Biology (Q2); Molecular Biology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +6031;14163;"Molecular Reproduction and Development";journal;"1040452X, 10982795";"Wiley-Liss Inc.";No;No;0,875;Q2;121;63;167;4142;596;160;3,42;65,75;50,00;0;United States;Northern America;"Wiley-Liss Inc.";"1988-2026";"Developmental Biology (Q2); Genetics (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +6032;25557;"Annals of Forest Science";journal;"1297966X, 12864560";"Springer-Verlag Italia s.r.l.";Yes;No;0,874;Q1;98;45;145;2956;487;125;3,23;65,69;30,89;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1999-2026";"Ecology (Q1); Forestry (Q1)";"Agricultural and Biological Sciences; Environmental Science" +6033;29421;"Aquaculture Economics and Management";journal;"13657305, 13657313";"Taylor and Francis Ltd.";No;No;0,874;Q1;48;41;91;2614;391;87;4,16;63,76;27,66;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Aquatic Science (Q1); Ecology (Q1); Geography, Planning and Development (Q1)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +6034;21100197766;"Chinese Sociological Review";journal;"21620555, 21620563";"M.E. Sharpe Inc.";No;No;0,874;Q1;38;31;62;2023;178;62;1,34;65,26;40,30;0;United States;Northern America;"M.E. Sharpe Inc.";"2011-2026";"Anthropology (Q1); Demography (Q1); Gender Studies (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6035;4100151709;"European Journal of Political Theory";journal;"17412730, 14748851";"SAGE Publications Ltd";No;No;0,874;Q1;43;79;119;4028;313;118;2,67;50,99;25,00;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6036;21100216575;"GM Crops and Food";journal;"21645701, 21645698";"Landes Bioscience";Yes;No;0,874;Q1;51;51;81;3255;523;80;5,98;63,82;43,88;1;United States;Northern America;"Landes Bioscience";"2012-2026";"Agronomy and Crop Science (Q1); Food Science (Q1); Biotechnology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +6037;27603;"Journal of Midwifery and Women's Health";journal;"15422011, 15269523";"John Wiley and Sons Inc";No;No;0,874;Q1;82;136;338;4448;878;277;2,52;32,71;85,99;1;United States;Northern America;"John Wiley and Sons Inc";"2000-2026";"Maternity and Midwifery (Q1); Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)";"Medicine; Nursing" +6038;14414;"Journal of Process Control";journal;"09591524";"Elsevier Ltd";No;No;0,874;Q1;138;167;446;7084;2261;446;4,95;42,42;27,26;0;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Control and Systems Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Modeling and Simulation (Q1); Computer Science Applications (Q2)";"Computer Science; Engineering; Mathematics" +6039;21101048533;"Proceedings of the ACM on Measurement and Analysis of Computing Systems";journal;"24761249";"Association for Computing Machinery";No;No;0,874;Q1;21;66;158;3889;576;153;3,33;58,92;21,48;0;United States;Northern America;"Association for Computing Machinery";"2017-2025";"Computer Networks and Communications (Q1); Computer Science (miscellaneous) (Q1); Hardware and Architecture (Q1); Safety, Risk, Reliability and Quality (Q1)";"Computer Science; Engineering" +6040;19086;"Seminars in Respiratory and Critical Care Medicine";journal;"10989048, 10693424";"Thieme Medical Publishers, Inc.";No;No;0,874;Q1;87;73;229;7299;765;212;3,26;99,99;43,86;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1994-2026";"Critical Care and Intensive Care Medicine (Q1); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +6041;21100209501;"Statistics in Biopharmaceutical Research";journal;"19466315";"Taylor and Francis Ltd.";No;No;0,874;Q1;29;83;218;2428;284;169;1,36;29,25;34,33;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Pharmaceutical Science (Q1); Statistics and Probability (Q1)";"Mathematics; Pharmacology, Toxicology and Pharmaceutics" +6042;5800220705;"Translation Studies";journal;"14781700, 17512921";"Taylor and Francis Ltd.";No;No;0,874;Q1;32;27;83;1453;172;70;2,14;53,81;66,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2025";"Linguistics and Language (Q1)";"Social Sciences" +6043;21100826864;"Climate";journal;"22251154";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,874;Q2;63;254;668;18010;3010;664;4,48;70,91;34,80;4;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Atmospheric Science (Q2)";"Earth and Planetary Sciences" +6044;21101152702;"Frontiers in Allergy";journal;"26736101";"Frontiers Media SA";Yes;No;0,874;Q2;26;179;377;8293;1205;339;2,97;46,33;51,05;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Immunology and Allergy (Q2); Infectious Diseases (Q2)";"Medicine" +6045;16085;"Journal of Industrial Microbiology and Biotechnology";journal;"14765535, 13675435";"Oxford University Press";Yes;No;0,874;Q2;144;37;144;2597;694;143;4,31;70,19;48,72;0;United Kingdom;Western Europe;"Oxford University Press";"1996-2026";"Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology; Medicine" +6046;20264;"Microbes and Infection";journal;"1769714X, 12864579";"Elsevier Masson s.r.l.";No;No;0,874;Q2;165;97;300;4960;965;294;3,11;51,13;53,14;1;France;Western Europe;"Elsevier Masson s.r.l.";"1999-2025";"Immunology (Q2); Infectious Diseases (Q2); Microbiology (Q2)";"Immunology and Microbiology; Medicine" +6047;14200;"Nitric Oxide - Biology and Chemistry";journal;"10898611, 10898603";"Academic Press Inc.";No;No;0,874;Q2;116;64;194;4722;774;191;4,46;73,78;46,18;0;United States;Northern America;"Academic Press Inc.";"1997-2026";"Biochemistry (Q2); Clinical Biochemistry (Q2); Physiology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology" +6048;21100777278;"Communications in Mathematics";journal;"18041388, 23361298";"Episciences";Yes;Yes;0,873;Q1;11;33;131;792;208;131;1,69;24,00;21,31;0;United States;Northern America;"Episciences";"2016-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +6049;24600;"Computers and Chemical Engineering";journal;"00981354";"Elsevier B.V.";No;No;0,873;Q1;170;387;984;20330;5264;981;5,46;52,53;22,13;0;United Kingdom;Western Europe;"Elsevier B.V.";"1977-2026";"Chemical Engineering (miscellaneous) (Q1); Computer Science Applications (Q2)";"Chemical Engineering; Computer Science" +6050;300147008;"European Journal of Cultural Studies";journal;"13675494, 14603551";"SAGE Publications Ltd";No;No;0,873;Q1;68;175;228;8593;710;226;2,92;49,10;55,33;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1998-2026";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Education (Q1)";"Arts and Humanities; Social Sciences" +6051;21101292997;"Frontiers in Drug Discovery";journal;"26740338";"Frontiers Media SA";Yes;No;0,873;Q1;15;18;121;1103;535;108;5,61;61,28;39,13;1;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6052;13382;"Health Care Management Review";journal;"15505030, 03616274";"Lippincott Williams and Wilkins Ltd.";No;No;0,873;Q1;71;41;121;1700;352;113;2,56;41,46;63,04;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1976-2026";"Leadership and Management (Q1); Health Policy (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Medicine; Nursing" +6053;4900152613;"Husserl Studies";journal;"01679848, 15728501";"Springer Science and Business Media B.V.";No;No;0,873;Q1;21;16;45;818;55;44;1,34;51,13;26,67;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1984-2002, 2006-2026";"Philosophy (Q1)";"Arts and Humanities" +6054;5400152656;"IET Nanobiotechnology";journal;"1751875X, 17518741";"John Wiley and Sons Ltd";Yes;No;0,873;Q1;66;12;86;834;554;84;5,36;69,50;39,29;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2007-2026";"Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Biotechnology (Q2); Nanoscience and Nanotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +6055;21101132928;"Intelligent and Converged Networks";journal;"27086240";"Tsinghua University Press";Yes;Yes;0,873;Q1;26;25;81;931;369;78;3,22;37,24;35,53;0;United States;Northern America;"Tsinghua University Press";"2020-2025";"Computer Networks and Communications (Q1)";"Computer Science" +6056;18224;"Local Government Studies";journal;"03003930, 17439388";"Routledge";No;No;0,873;Q1;62;78;180;4568;613;177;2,56;58,56;36,94;3;United Kingdom;Western Europe;"Routledge";"1975-2026";"Development (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6057;22815;"Oral Diseases";journal;"16010825, 1354523X";"Wiley-Blackwell";No;No;0,873;Q1;115;541;1273;18715;4113;1073;3,36;34,59;45,13;0;United Kingdom;Western Europe;"Wiley-Blackwell";"1995-2026";"Dentistry (miscellaneous) (Q1); Otorhinolaryngology (Q1)";"Dentistry; Medicine" +6058;21123;"Pharmaceutical Research";journal;"07248741, 1573904X";"Springer";No;No;0,873;Q1;241;172;625;10162;2839;611;4,02;59,08;40,62;0;United States;Northern America;"Springer";"1984-2026";"Organic Chemistry (Q1); Pharmaceutical Science (Q1); Biotechnology (Q2); Molecular Medicine (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6059;19700187621;"Psychology and Sexuality";journal;"19419902, 19419899";"Routledge";No;No;0,873;Q1;47;98;182;6419;652;179;2,57;65,50;61,28;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Gender Studies (Q1); Health (social science) (Q1); Applied Psychology (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +6060;16668;"School Effectiveness and School Improvement";journal;"09243453, 17445124";"Taylor and Francis Ltd.";No;No;0,873;Q1;79;28;73;1787;233;71;2,76;63,82;49,32;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2025";"Education (Q1)";"Social Sciences" +6061;27207;"Social Epistemology";journal;"02691728, 14645297";"Routledge";No;No;0,873;Q1;47;95;184;4312;584;180;3,27;45,39;38,89;1;United Kingdom;Western Europe;"Routledge";"1987-2026";"Philosophy (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +6062;145570;"Urban Ecosystems";journal;"15731642, 10838155";"Springer";No;No;0,873;Q1;93;241;471;18366;1734;468;3,40;76,21;44,37;1;United States;Northern America;"Springer";"1997-1998, 2001-2002, 2005-2026";"Ecology (Q1); Urban Studies (Q1)";"Environmental Science; Social Sciences" +6063;21101177606;"Urban Governance";journal;"26643286";"Elsevier B.V.";Yes;No;0,873;Q1;17;51;88;3839;446;81;4,66;75,27;35,59;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Development (Q1); Geography, Planning and Development (Q1); Public Administration (Q1); Sociology and Political Science (Q1); Urban Studies (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +6064;11700154614;"Journal of Management and Organization";journal;"18393527, 18333672";"Cambridge University Press";No;No;0,873;Q2;60;160;248;13672;1069;239;4,03;85,45;48,08;3;United Kingdom;Western Europe;"Cambridge University Press";"1995-2026";"Business and International Management (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +6065;21100255479;"Transportation Letters";journal;"19427867, 19427875";"Maney Publishing";No;No;0,873;Q2;46;142;300;7709;1337;300;4,57;54,29;32,01;0;United Kingdom;Western Europe;"Maney Publishing";"2009-2026";"Transportation (Q2)";"Social Sciences" +6066;10600153306;"Communications in Computational Physics";journal;"18152406, 19917120";"Global Science Press";No;No;0,872;Q1;76;84;281;3924;523;280;1,62;46,71;30,24;0;Hong Kong;Asiatic Region;"Global Science Press";"2007-2026";"Computational Mathematics (Q1); Mathematical Physics (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Mathematics; Physics and Astronomy" +6067;21101322602;"Computational Materials Today";journal;"29504635";"Elsevier Ltd";Yes;No;0,872;Q1;6;25;17;1706;65;16;3,82;68,24;30,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"2024-2026";"Materials Science (miscellaneous) (Q1); Modeling and Simulation (Q1); Computer Science Applications (Q2)";"Computer Science; Materials Science; Mathematics" +6068;21100337101;"IEEE Consumer Electronics Magazine";trade journal;"21622256, 21622248";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,872;Q1;62;95;211;1843;1102;209;5,60;19,40;18,10;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2012, 2014-2026";"Electrical and Electronic Engineering (Q1); Hardware and Architecture (Q1); Computer Science Applications (Q2); Human-Computer Interaction (Q2)";"Computer Science; Engineering" +6069;35941;"Journal of Animal Science";journal;"15253163, 00218812";"Oxford University Press";No;No;0,872;Q1;196;425;1232;23413;4218;1223;3,20;55,09;40,53;1;United States;Northern America;"Oxford University Press";"1946-1951, 1953, 1958-1959, 1961-2026";"Animal Science and Zoology (Q1); Food Science (Q1); Genetics (Q2); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +6070;21100814023;"SLAS Discovery";journal;"24725552, 24725560";"Society for Laboratory Automation and Screening (SLAS)";Yes;No;0,872;Q1;93;78;182;4245;526;174;3,14;54,42;44,01;0;United States;Northern America;"Society for Laboratory Automation and Screening (SLAS)";"2017-2026";"Analytical Chemistry (Q1); Biochemistry (Q2); Biotechnology (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +6071;22215;"Genomics";journal;"08887543, 10898646";"Academic Press Inc.";Yes;No;0,872;Q2;164;191;634;11938;2316;633;3,54;62,50;43,66;0;United States;Northern America;"Academic Press Inc.";"1987-2026";"Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology" +6072;21101039775;"Machine Learning: Science and Technology";journal;"26322153";"Institute of Physics Publishing";Yes;No;0,872;Q2;48;322;634;18836;3106;633;4,42;58,50;21,34;1;United Kingdom;Western Europe;"Institute of Physics Publishing";"2020-2026";"Artificial Intelligence (Q2); Human-Computer Interaction (Q2); Software (Q2)";"Computer Science" +6073;98073;"Antiquity";journal;"17451744, 0003598X";"Cambridge University Press";No;No;0,871;Q1;99;166;381;4954;709;359;1,75;29,84;35,67;0;United Kingdom;Western Europe;"Cambridge University Press";"1927-2026";"Archeology (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +6074;20002;"Economic Inquiry";journal;"00952583, 14657295";"Wiley-Blackwell Publishing Ltd";No;No;0,871;Q1;93;71;219;3495;533;216;1,59;49,23;26,58;6;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1962-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +6075;13947;"Japanese Journal of Ophthalmology";journal;"00215155, 16132246";"Springer";No;No;0,871;Q1;74;158;223;4902;581;220;2,69;31,03;29,61;0;Japan;Asiatic Region;"Springer";"1973-2026";"Ophthalmology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6076;21101258748;"Journal of Business and Socio-economic Development";journal;"26351374, 26351692";"Emerald Publishing";Yes;Yes;0,871;Q1;22;42;61;2370;444;60;6,54;56,43;22,83;0;United Kingdom;Western Europe;"Emerald Publishing";"2021-2026";"Business, Management and Accounting (miscellaneous) (Q1); Accounting (Q2); Business and International Management (Q2); Marketing (Q2)";"Business, Management and Accounting" +6077;3900148620;"Journal of Family Nursing";journal;"10748407, 1552549X";"SAGE Publications Inc.";No;No;0,871;Q1;56;22;88;994;255;78;2,05;45,18;86,96;0;United States;Northern America;"SAGE Publications Inc.";"1995-2026";"Community and Home Care (Q1); Family Practice (Q1)";"Medicine; Nursing" +6078;19400157007;"Microbes and Environments";journal;"13426311, 13474405";"Japanese Society of Microbial Ecology";No;No;0,871;Q1;74;49;120;2449;406;120;2,77;49,98;26,94;0;Japan;Asiatic Region;"Japanese Society of Microbial Ecology";"1996-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Soil Science (Q1); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Medicine" +6079;13182;"Progress in Nuclear Energy";journal;"01491970";"Elsevier Ltd";No;No;0,871;Q1;98;370;1162;15040;4533;1160;3,56;40,65;23,56;0;United Kingdom;Western Europe;"Elsevier Ltd";"1977-1988, 1990-1992, 1994-2026";"Nuclear Energy and Engineering (Q1); Safety, Risk, Reliability and Quality (Q1); Energy Engineering and Power Technology (Q2); Waste Management and Disposal (Q2)";"Energy; Engineering; Environmental Science" +6080;21100788801;"Rhizosphere";journal;"24522198";"Elsevier B.V.";No;No;0,871;Q1;52;224;504;15705;2290;503;4,37;70,11;40,78;1;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1); Soil Science (Q1); Microbiology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology" +6081;21100787040;"Clinical Neurophysiology Practice";journal;"2467981X";"Elsevier B.V.";Yes;No;0,871;Q2;33;72;118;2859;331;101;2,17;39,71;38,28;1;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Neurology (Q2); Neurology (clinical) (Q2); Physiology (medical) (Q2)";"Medicine; Neuroscience" +6082;4700152268;"CONTINUUM Lifelong Learning in Neurology";journal;"10802371, 15386899";"Lippincott Williams and Wilkins";No;No;0,871;Q2;71;119;320;4823;876;298;1,54;40,53;46,00;0;United States;Northern America;"Lippincott Williams and Wilkins";"2006-2026";"Genetics (clinical) (Q2); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)";"Medicine" +6083;25300;"Journal of Viral Hepatitis";journal;"13520504, 13652893";"Wiley-Blackwell Publishing Ltd";No;No;0,871;Q2;113;145;351;5229;776;327;2,21;36,06;45,55;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Hepatology (Q2); Infectious Diseases (Q2); Virology (Q2)";"Immunology and Microbiology; Medicine" +6084;5800207369;"ACM Transactions on the Web";journal;"15591131, 1559114X";"Association for Computing Machinery";No;No;0,870;Q1;54;44;109;2721;552;107;5,22;61,84;30,72;1;United States;Northern America;"Association for Computing Machinery";"2007-2025";"Computer Networks and Communications (Q1)";"Computer Science" +6085;27789;"International Journal of Marine and Coastal Law";journal;"09273522, 15718085";"Martinus Nijhoff Publishers";No;No;0,870;Q1;42;64;105;4910;206;104;1,58;76,72;36,99;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"1986-2025";"Geography, Planning and Development (Q1); Law (Q1); Oceanography (Q1); Environmental Science (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +6086;18569;"Journal of Membrane Biology";journal;"14321424, 00222631";"Springer";No;No;0,870;Q1;110;36;123;2481;373;118;2,55;68,92;37,19;0;United States;Northern America;"Springer";"1969-2026";"Biophysics (Q1); Physiology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +6087;25842;"Publicacions Matematiques";journal;"20144350, 02141493";"Universitat Autonoma de Barcelona";Yes;No;0,870;Q1;31;21;77;564;79;77;0,92;26,86;16,28;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2001-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +6088;26404;"SIAM Journal on Applied Mathematics";journal;"00361399, 1095712X";"Society for Industrial and Applied Mathematics Publications";No;No;0,870;Q1;119;114;327;4554;736;326;2,02;39,95;25,33;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"1969-2026";"Applied Mathematics (Q1)";"Mathematics" +6089;21100237201;"Transportmetrica A: Transport Science";journal;"23249943, 23249935";"Taylor and Francis Inc.";No;No;0,870;Q1;59;207;210;10973;930;207;4,46;53,01;34,41;0;United States;Northern America;"Taylor and Francis Inc.";"2013-2026";"Engineering (miscellaneous) (Q1); Transportation (Q2)";"Engineering; Social Sciences" +6090;21100902938;"Trends in Language Acquisition Research";book series;"15690644";"John Benjamins Publishing Company";No;No;0,870;Q1;11;0;11;0;20;1;4,00;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2011, 2018, 2020-2023";"Communication (Q1); Cultural Studies (Q1); Education (Q1); Linguistics and Language (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +6091;21101209860;"Aging and Cancer";journal;"26438909";"John Wiley and Sons Inc";Yes;No;0,870;Q2;11;12;26;782;73;26;1,93;65,17;33,33;0;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Oncology (Q2); Aging (Q3); Cancer Research (Q3); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6092;22142;"Genesis (United States)";journal;"1526954X, 1526968X";"Wiley-Liss Inc.";No;No;0,870;Q2;128;28;128;1387;291;86;1,44;49,54;41,43;0;United States;Northern America;"Wiley-Liss Inc.";"2000-2026";"Endocrinology (Q2); Genetics (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6093;21101304710;"Journal of Activity, Sedentary and Sleep Behaviors";journal;"27314391";"BioMed Central Ltd";No;No;0,870;Q2;10;21;70;1398;233;67;3,43;66,57;59,54;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2022-2026";"Epidemiology (Q2); Health Informatics (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6094;21101107176;"Artificial Intelligence in Geosciences";journal;"26665441";"KeAi Communications Co.";Yes;No;0,869;Q1;17;58;66;3072;378;65;5,57;52,97;24,56;1;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Control and Systems Engineering (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Artificial Intelligence (Q2); Computers in Earth Sciences (Q2)";"Computer Science; Earth and Planetary Sciences; Engineering" +6095;21101094861;"Biophysical Reports";journal;"26670747";"Biophysical Society";Yes;No;0,869;Q1;14;33;97;1746;192;94;1,93;52,91;39,86;0;United States;Northern America;"Biophysical Society";"2021-2026";"Biophysics (Q1); Biochemistry (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology" +6096;21100933233;"Bioresource Technology Reports";journal;"2589014X";"Elsevier Ltd";No;No;0,869;Q1;69;437;1100;31560;6492;1097;5,88;72,22;38,24;0;United Kingdom;Western Europe;"Elsevier Ltd";"2018-2026";"Environmental Engineering (Q1); Bioengineering (Q2); Renewable Energy, Sustainability and the Environment (Q2); Waste Management and Disposal (Q2)";"Chemical Engineering; Energy; Environmental Science" +6097;5600153659;"European Journal of Social Work";journal;"13691457, 14682664";"Routledge";No;No;0,869;Q1;42;140;277;5931;741;259;2,41;42,36;68,35;1;United Kingdom;Western Europe;"Routledge";"2008-2026";"Social Sciences (miscellaneous) (Q1); Social Work (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6098;15591;"JASSS";journal;"14607425";"University of Surrey";Yes;No;0,869;Q1;69;32;110;1830;356;109;3,26;57,19;29,90;1;United Kingdom;Western Europe;"University of Surrey";"2000-2026";"Computer Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Computer Science; Social Sciences" +6099;19200156910;"Journal of Symplectic Geometry";journal;"15275256, 15402347";"International Press of Boston, Inc.";No;No;0,869;Q1;26;20;77;539;59;76;0,76;26,95;12,12;0;United States;Northern America;"International Press of Boston, Inc.";"2009-2026";"Geometry and Topology (Q1)";"Mathematics" +6100;15703;"Knowledge and Information Systems";journal;"02191377, 02193116";"Springer London";No;No;0,869;Q1;106;396;573;23810;3183;573;4,99;60,13;31,11;1;United Kingdom;Western Europe;"Springer London";"1999-2026";"Information Systems (Q1); Artificial Intelligence (Q2); Hardware and Architecture (Q2); Human-Computer Interaction (Q2); Software (Q2)";"Computer Science" +6101;27202;"Life";journal;"20751729";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,869;Q1;88;1932;6163;118655;26818;6056;4,27;61,42;46,15;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Paleontology (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Space and Planetary Science (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Earth and Planetary Sciences" +6102;24475;"Linear Algebra and Its Applications";journal;"00243795";"Elsevier Inc.";No;No;0,869;Q1;118;326;946;7512;1163;942;1,19;23,04;25,64;0;United States;Northern America;"Elsevier Inc.";"1968-2026";"Algebra and Number Theory (Q1); Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1); Numerical Analysis (Q1)";"Mathematics" +6103;17525;"Neurologia Medico-Chirurgica";journal;"13498029, 04708105";"Japan Neurosurgical Society";Yes;No;0,869;Q1;68;80;205;2040;533;203;1,84;25,50;10,59;0;Japan;Asiatic Region;"Japan Neurosurgical Society";"1959-1968, 1971-2026";"Surgery (Q1); Neurology (clinical) (Q2)";"Medicine" +6104;9500153979;"Cancer Journal (United States)";journal;"15289117, 1540336X";"Lippincott Williams and Wilkins";No;No;0,869;Q2;110;45;186;2135;469;170;1,93;47,44;47,37;0;United States;Northern America;"Lippincott Williams and Wilkins";"1996, 1998, 2000-2026";"Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6105;16188;"Journal of the International Neuropsychological Society";journal;"13556177, 14697661";"Cambridge University Press";No;No;0,869;Q2;155;76;296;4604;935;295;2,83;60,58;57,32;0;United Kingdom;Western Europe;"Cambridge University Press";"1995-2026";"Clinical Psychology (Q2); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Neuroscience; Psychology" +6106;21100465104;"Advances in Radiation Oncology";journal;"24521094";"Elsevier Inc.";Yes;No;0,868;Q1;45;208;679;5809;1693;646;2,60;27,93;37,59;0;United States;Northern America;"Elsevier Inc.";"2016-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)";"Medicine" +6107;25101;"Boreas";journal;"03009483, 15023885";"John Wiley and Sons Inc";Yes;No;0,868;Q1;90;58;108;5189;265;106;2,61;89,47;37,81;0;United States;Northern America;"John Wiley and Sons Inc";"1972-2026";"Archeology (arts and humanities) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Geology (Q1)";"Agricultural and Biological Sciences; Arts and Humanities; Earth and Planetary Sciences" +6108;19700175784;"CiOS Clinics in Orthopedic Surgery";journal;"20054408, 2005291X";"Korean Orthopaedic Association";Yes;Yes;0,868;Q1;57;122;324;3469;876;318;2,62;28,43;18,63;0;South Korea;Asiatic Region;"Korean Orthopaedic Association";"2009-2026";"Orthopedics and Sports Medicine (Q1); Surgery (Q1)";"Medicine" +6109;21101254818;"EAI Endorsed Transactions on AI and Robotics";journal;"27907511";"European Alliance for Innovation";No;No;0,868;Q1;16;38;60;1421;359;60;5,91;37,39;19,26;0;Belgium;Western Europe;"European Alliance for Innovation";"2022-2026";"Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Artificial Intelligence (Q2); Computer Science Applications (Q2)";"Computer Science; Engineering" +6110;21100940430;"Food Science of Animal Resources";journal;"26360780, 26360772";"Springer";Yes;No;0,868;Q1;57;102;246;6631;1324;246;5,03;65,01;39,24;0;South Korea;Asiatic Region;"Springer";"2018-2026";"Animal Science and Zoology (Q1); Food Science (Q1)";"Agricultural and Biological Sciences" +6111;4800154012;"Journal of Communications and Networks";journal;"12292370, 19765541";"Korean Institute of Communications Information Sciences";No;No;0,868;Q1;63;17;168;552;671;167;3,58;32,47;33,90;0;South Korea;Asiatic Region;"Korean Institute of Communications Information Sciences";"1999-2025";"Computer Networks and Communications (Q1); Information Systems (Q1)";"Computer Science" +6112;22510;"Learned Publishing";journal;"09531513, 17414857";"Wiley-Blackwell";No;No;0,868;Q1;52;55;200;2380;719;186;4,29;43,27;53,33;2;United States;Northern America;"Wiley-Blackwell";"1996-2026";"Communication (Q1); Library and Information Sciences (Q1)";"Social Sciences" +6113;21101291004;"Low-Carbon Materials and Green Construction";journal;"27316319";"Springer";Yes;No;0,868;Q1;11;33;59;1752;267;57;4,53;53,09;23,08;0;Singapore;Asiatic Region;"Springer";"2023-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Environmental Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Environmental Science" +6114;29037;"Geriatric Nursing";journal;"15283984, 01974572";"Elsevier Inc.";No;No;0,868;Q2;62;585;866;27128;2772;851;3,08;46,37;62,18;1;United States;Northern America;"Elsevier Inc.";"1980-2026";"Gerontology (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +6115;19800188032;"MIS Quarterly Executive";journal;"15401979, 15401960";"Association for Information Systems";No;No;0,868;Q2;61;18;77;140;194;62;2,69;7,78;32,14;0;United States;Northern America;"Association for Information Systems";"2010-2025";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +6116;18594;"Pharmacopsychiatry";journal;"14390795, 01763679";"Georg Thieme Verlag";No;No;0,868;Q2;88;21;108;857;286;97;2,36;40,81;37,39;0;Germany;Western Europe;"Georg Thieme Verlag";"1984-2026";"Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +6117;81474;"Proceedings of the ACM SIGACT-SIGMOD-SIGART Symposium on Principles of Database Systems";conference and proceedings;"10556338";"";No;No;0,868;-;91;3;80;117;152;74;2,05;39,00;20,00;0;United States;Northern America;"";"1982, 1984-1986, 1988, 1990-1995, 1998-2025";"Hardware and Architecture; Information Systems; Software";"Computer Science" +6118;13631;"American Statistician";journal;"00031305, 15372731";"Taylor and Francis Ltd.";No;No;0,867;Q1;108;61;153;2364;407;128;1,91;38,75;22,76;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1947-2026";"Mathematics (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)";"Decision Sciences; Mathematics" +6119;28586;"BioMedical Engineering Online";journal;"1475925X";"BioMed Central Ltd";Yes;No;0,867;Q1;107;150;344;8186;1778;343;5,45;54,57;39,26;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2002-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Biomaterials (Q2); Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2); Radiological and Ultrasound Technology (Q2)";"Engineering; Health Professions; Materials Science; Medicine" +6120;24856;"Journal of Cutaneous Medicine and Surgery";journal;"16157109, 12034754";"SAGE Publications Inc.";No;No;0,867;Q1;63;309;588;3995;711;200;1,17;12,93;54,72;0;United States;Northern America;"SAGE Publications Inc.";"1996-2026";"Dermatology (Q1); Surgery (Q1)";"Medicine" +6121;24709;"Materials Research Bulletin";journal;"00255408";"Elsevier Ltd";No;No;0,867;Q1;146;455;1236;28287;7129;1233;6,17;62,17;34,42;0;United Kingdom;Western Europe;"Elsevier Ltd";"1966-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science; Physics and Astronomy" +6122;21100836848;"Physical Review Fluids";journal;"2469990X";"American Physical Society";No;No;0,867;Q1;73;517;1544;27594;4344;1534;2,79;53,37;19,93;0;United States;Northern America;"American Physical Society";"2016-2026";"Computational Mechanics (Q1); Fluid Flow and Transfer Processes (Q1); Modeling and Simulation (Q1)";"Chemical Engineering; Engineering; Mathematics" +6123;21101045766;"Policy Design and Practice";journal;"25741292";"Taylor and Francis Ltd.";Yes;No;0,867;Q1;33;35;93;1856;438;85;4,67;53,03;56,58;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2026";"Political Science and International Relations (Q1); Public Administration (Q1)";"Social Sciences" +6124;5800179609;"Global Public Health";journal;"17441706, 17441692";"Taylor and Francis Ltd.";Yes;No;0,867;Q2;72;138;561;7731;1583;527;2,82;56,02;64,98;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6125;21101023806;"Annals of Data Science";journal;"21985812, 21985804";"Springer Science and Business Media Deutschland GmbH";No;No;0,866;Q1;38;125;234;5538;1518;231;7,40;44,30;26,37;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Business, Management and Accounting (miscellaneous) (Q1); Artificial Intelligence (Q2); Computer Science Applications (Q2); Statistics, Probability and Uncertainty (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences" +6126;26589;"Colloids and Surfaces A: Physicochemical and Engineering Aspects";journal;"18734359, 09277757";"Elsevier B.V.";No;No;0,866;Q1;213;2769;6948;150779;40627;6944;5,96;54,45;37,90;0;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Physical and Theoretical Chemistry (Q1); Colloid and Surface Chemistry (Q2); Surfaces and Interfaces (Q2)";"Chemical Engineering; Chemistry; Physics and Astronomy" +6127;17950;"Dendrochronologia";journal;"16120051, 11257865";"Elsevier GmbH";No;No;0,866;Q1;65;126;234;9000;705;228;3,16;71,43;37,41;0;Germany;Western Europe;"Elsevier GmbH";"1989, 2002-2026";"Ecology (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +6128;4800152404;"Dianli Zidonghua Shebei/Electric Power Automation Equipment";journal;"10066047";"Electric Power Automation Equipment Press";No;No;0,866;Q1;62;315;1071;7810;3464;1068;3,43;24,79;29,87;0;China;Asiatic Region;"Electric Power Automation Equipment Press";"2005-2026";"Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q2)";"Energy; Engineering" +6129;21909;"Journal of Anesthesia";journal;"14388359, 09138668";"Springer";No;No;0,866;Q1;65;213;396;4809;928;276;2,26;22,58;32,90;0;Japan;Asiatic Region;"Springer";"1987-2026";"Anesthesiology and Pain Medicine (Q1)";"Medicine" +6130;24431;"Journal of Quaternary Science";journal;"02678179, 10991417";"John Wiley and Sons Ltd";No;No;0,866;Q1;111;99;279;8387;661;269;2,13;84,72;35,34;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1986-2026";"Arts and Humanities (miscellaneous) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Paleontology (Q1)";"Arts and Humanities; Earth and Planetary Sciences" +6131;21101167216;"Reviews of Modern Plasma Physics";journal;"23673192";"Springer";No;No;0,866;Q1;30;32;105;4060;454;103;4,48;126,88;22,14;0;Germany;Western Europe;"Springer";"2017-2026";"Condensed Matter Physics (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +6132;6500153243;"International Review of Environmental and Resource Economics";journal;"19321465, 19321473";"Now Publishers Inc";No;No;0,866;Q2;36;7;26;1363;40;25;1,81;194,71;38,10;0;United States;Northern America;"Now Publishers Inc";"2007-2025";"Accounting (Q2); Economics and Econometrics (Q2); Finance (Q2); Management, Monitoring, Policy and Law (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science" +6133;21100202146;"Journal of Obsessive-Compulsive and Related Disorders";journal;"22113649, 22113657";"Elsevier B.V.";No;No;0,866;Q2;49;34;142;1996;334;140;2,27;58,71;58,23;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +6134;19768;"Rheumatic Disease Clinics of North America";journal;"0889857X, 15583163";"W.B. Saunders";No;No;0,866;Q2;106;58;194;3677;437;159;1,51;63,40;53,03;0;United States;Northern America;"W.B. Saunders";"1987-2026";"Rheumatology (Q2)";"Medicine" +6135;21101042149;"Stigma and Health";journal;"23766964, 23766972";"American Psychological Association";No;No;0,866;Q2;29;71;252;3797;697;250;2,08;53,48;61,20;0;United States;Northern America;"American Psychological Association";"2017, 2019-2025";"Clinical Psychology (Q2); Health Policy (Q2); Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2); Social Psychology (Q2)";"Medicine; Psychology" +6136;21100388419;"Aquaculture Reports";journal;"23525134";"Elsevier B.V.";Yes;No;0,865;Q1;61;717;1568;45015;7167;1567;4,09;62,78;38,35;2;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Animal Science and Zoology (Q1); Aquatic Science (Q1)";"Agricultural and Biological Sciences" +6137;12853;"Communication Monographs";journal;"03637751, 14795787";"Routledge";No;No;0,865;Q1;92;50;78;3158;291;77;2,89;63,16;65,54;1;United Kingdom;Western Europe;"Routledge";"1976-2026";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +6138;21101019623;"Depositional Record";journal;"20554877";"John Wiley & Sons Inc.";Yes;No;0,865;Q1;24;69;129;6707;349;125;2,52;97,20;31,37;0;United States;Northern America;"John Wiley & Sons Inc.";"2015-2026";"Geology (Q1); Oceanography (Q1); Paleontology (Q1); Stratigraphy (Q1); Environmental Science (miscellaneous) (Q2)";"Earth and Planetary Sciences; Environmental Science" +6139;19700201653;"Frontiers of Mechanical Engineering";journal;"20950233, 20950241";"Higher Education Press Limited Company";Yes;No;0,865;Q1;53;53;159;3358;903;158;5,81;63,36;32,41;0;China;Asiatic Region;"Higher Education Press Limited Company";"2011-2025";"Mechanical Engineering (Q1)";"Engineering" +6140;10300153305;"Transboundary and Emerging Diseases";journal;"18651674, 18651682";"John Wiley and Sons Ltd";No;No;0,865;Q1;100;253;1053;13965;3660;1033;2,50;55,20;41,58;7;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Veterinary (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Immunology and Microbiology; Medicine; Veterinary" +6141;23358;"BMC Neuroscience";journal;"14712202";"BioMed Central Ltd";Yes;No;0,865;Q2;122;61;220;3212;686;208;3,13;52,66;45,48;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2026";"Neuroscience (miscellaneous) (Q2); Cellular and Molecular Neuroscience (Q3)";"Neuroscience" +6142;25093;"Environmental Toxicology";journal;"15227278, 15204081";"John Wiley & Sons Inc.";No;No;0,865;Q2;98;130;849;6879;3601;849;4,20;52,92;46,25;1;United States;Northern America;"John Wiley & Sons Inc.";"1980, 1999-2026";"Health, Toxicology and Mutagenesis (Q2); Management, Monitoring, Policy and Law (Q2); Medicine (miscellaneous) (Q2); Toxicology (Q2)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6143;21101256249;"Italian Journal of Marketing";journal;"26623323, 26623331";"Springer International Publishing";No;No;0,865;Q2;17;19;62;1469;344;58;6,59;77,32;53,85;0;Switzerland;Western Europe;"Springer International Publishing";"2020-2026";"Marketing (Q2)";"Business, Management and Accounting" +6144;19227;"Research in Developmental Disabilities";journal;"18733379, 08914222";"Elsevier Inc.";No;No;0,865;Q2;124;190;467;10229;1600;460;3,15;53,84;63,07;0;United States;Northern America;"Elsevier Inc.";"1987-2026";"Clinical Psychology (Q2); Developmental and Educational Psychology (Q2)";"Psychology" +6145;22258;"Bioethics";journal;"14678519, 02699702";"Wiley-Blackwell Publishing Ltd";No;No;0,864;Q1;75;136;334;5729;941;282;2,54;42,13;39,30;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1987-2026";"Health (social science) (Q1); Philosophy (Q1); Health Policy (Q2)";"Arts and Humanities; Medicine; Social Sciences" +6146;21101163252;"International Journal of Social Determinants of Health and Health Services";journal;"27551946, 27551938";"SAGE Publications Inc.";No;No;0,864;Q1;72;46;158;2830;439;151;2,56;61,52;55,21;2;United States;Northern America;"SAGE Publications Inc.";"2023-2026";"Health (social science) (Q1); Health Policy (Q2)";"Medicine; Social Sciences" +6147;5800207554;"Interpreting";journal;"1569982X, 13846647";"John Benjamins Publishing Company";No;No;0,864;Q1;49;14;29;868;92;27;3,06;62,00;72,09;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1996-2000, 2004-2026";"Linguistics and Language (Q1)";"Social Sciences" +6148;21101196119;"Oxford Open Energy";journal;"27525082";"Oxford University Press";Yes;No;0,864;Q1;10;13;54;897;192;48;2,97;69,00;28,89;0;United Kingdom;Western Europe;"Oxford University Press";"2022-2026";"Nuclear Energy and Engineering (Q1); Energy Engineering and Power Technology (Q2); Energy (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy" +6149;13422;"Psychoanalytic Quarterly";journal;"00332828, 21674086";"Taylor and Francis Ltd.";No;No;0,864;Q1;49;25;88;1142;106;67;1,31;45,68;36,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1945-2026";"Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Arts and Humanities; Medicine; Psychology" +6150;21101054787;"Quantum Machine Intelligence";journal;"25244914, 25244906";"Springer Science and Business Media Deutschland GmbH";No;No;0,864;Q1;28;112;162;5977;1044;162;5,89;53,37;23,27;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2019-2026";"Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Theoretical Computer Science (Q1); Artificial Intelligence (Q2); Software (Q2)";"Computer Science; Mathematics" +6151;10300153313;"ACM Transactions on Embedded Computing Systems";journal;"15583465, 15399087";"Association for Computing Machinery";No;No;0,864;Q2;70;151;375;7266;1501;363;3,80;48,12;23,54;0;United States;Northern America;"Association for Computing Machinery";"2002-2026";"Hardware and Architecture (Q2); Software (Q2)";"Computer Science" +6152;28299;"Digestive Diseases";journal;"02572753, 14219875";"S. Karger AG";No;No;0,864;Q2;86;85;263;3208;696;255;2,32;37,74;37,58;0;Switzerland;Western Europe;"S. Karger AG";"1983-2025";"Gastroenterology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +6153;15476;"Journal of Experimental Psychology: Applied";journal;"19392192, 1076898X";"American Psychological Association";No;No;0,864;Q2;108;21;146;1269;434;146;2,48;60,43;51,35;0;United States;Northern America;"American Psychological Association";"1995-2025";"Experimental and Cognitive Psychology (Q2)";"Psychology" +6154;21101150408;"Unconventional Resources";journal;"26665190";"KeAi Communications Co.";Yes;No;0,864;Q2;18;103;99;6249;487;98;4,85;60,67;30,81;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Energy (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)";"Energy; Environmental Science" +6155;24096;"Atti della Accademia Nazionale dei Lincei, Classe di Scienze Fisiche, Matematiche e Naturali, Rendiconti Lincei Matematica e Applicazioni";journal;"17200768, 11206330";"European Mathematical Society Publishing House";Yes;Yes;0,863;Q1;32;8;97;210;96;97;0,95;26,25;35,29;0;Germany;Western Europe;"European Mathematical Society Publishing House";"1996-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +6156;12072;"International Journal of Educational Development";journal;"07380593";"Elsevier B.V.";No;No;0,863;Q1;85;215;463;12923;1653;433;3,41;60,11;46,21;9;United Kingdom;Western Europe;"Elsevier B.V.";"1981-2026";"Development (Q1); Education (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6157;20575;"Journal of Engineering and Technology Management - JET-M";journal;"18791719, 09234748";"Elsevier B.V.";No;No;0,863;Q1;84;48;103;4393;567;103;5,69;91,52;38,06;1;Netherlands;Western Europe;"Elsevier B.V.";"1989-2026";"Engineering (miscellaneous) (Q1); Industrial Relations (Q1); Information Systems and Management (Q1); Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences; Engineering" +6158;21101038512;"Journal of Geophysical Research: Space Physics";journal;"21699402, 21699380";"Wiley-Blackwell";No;No;0,863;Q1;213;676;1848;40945;5547;1828;2,91;60,57;28,54;0;United States;Northern America;"Wiley-Blackwell";"1986, 1990-1991, 1993-1994, 1996, 1998-2026";"Geophysics (Q1); Space and Planetary Science (Q2)";"Earth and Planetary Sciences" +6159;19357;"Molecular Breeding";journal;"13803743, 15729788";"Springer Science and Business Media B.V.";No;No;0,863;Q1;124;100;248;5276;909;247;3,64;52,76;38,05;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1995-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1); Biotechnology (Q2); Genetics (Q2); Molecular Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +6160;19262;"Brazilian Journal of Psychiatry";journal;"1809452X, 15164446";"Associacao Brasileira de Psiquiatria";Yes;Yes;0,863;Q2;76;82;266;2900;559;173;1,96;35,37;45,41;0;Brazil;Latin America;"Associacao Brasileira de Psiquiatria";"1999-2025";"Psychiatry and Mental Health (Q2)";"Medicine" +6161;21100862081;"Gastroenterology Report";journal;"20520034";"Oxford University Press";Yes;No;0,863;Q2;51;105;285;4240;928;274;3,00;40,38;40,71;0;United Kingdom;Western Europe;"Oxford University Press";"2013-2026";"Gastroenterology (Q2)";"Medicine" +6162;11900154357;"Scandinavian Journal of Hospitality and Tourism";journal;"15022269, 15022250";"Routledge";No;No;0,863;Q2;67;27;69;1789;340;66;3,85;66,26;60,66;0;United Kingdom;Western Europe;"Routledge";"2001-2026";"Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting" +6163;22568;"Earth, Planets and Space";journal;"18805981, 13438832";"Springer International Publishing AG";Yes;No;0,862;Q1;101;196;549;10019;1769;486;3,06;51,12;21,76;1;Switzerland;Western Europe;"Springer International Publishing AG";"1996-2026";"Geology (Q1); Space and Planetary Science (Q2)";"Earth and Planetary Sciences" +6164;21100235610;"EJNMMI Research";journal;"2191219X";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,862;Q1;62;145;304;5040;956;303;2,90;34,76;35,57;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +6165;21100838766;"Frontiers of Agricultural Science and Engineering";journal;"20957505, 2095977X";"Higher Education Press Limited Company";Yes;Yes;0,862;Q1;39;50;155;3408;586;147;3,18;68,16;29,50;0;China;Asiatic Region;"Higher Education Press Limited Company";"2014-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Veterinary (miscellaneous) (Q1); Biotechnology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +6166;21100967061;"Journal for Deradicalization";journal;"23639849";"German Institute on Radicalization and De-Radicalization Studies (GIRDS)";Yes;Yes;0,862;Q1;16;18;77;1358;137;77;1,13;75,44;44,64;0;Germany;Western Europe;"German Institute on Radicalization and De-Radicalization Studies (GIRDS)";"2019-2025";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6167;19200156914;"Journal of Policy and Practice in Intellectual Disabilities";journal;"17411130, 17411122";"Wiley-Blackwell Publishing Ltd";No;No;0,862;Q1;47;35;120;1512;337;119;2,59;43,20;64,90;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2008-2026";"Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +6168;23483;"Knee";journal;"18735800, 09680160";"Elsevier B.V.";No;No;0,862;Q1;102;268;533;8720;1357;493;2,53;32,54;19,94;0;Netherlands;Western Europe;"Elsevier B.V.";"1994-2026";"Orthopedics and Sports Medicine (Q1); Sports Science (Q2)";"Health Professions; Medicine" +6169;40042;"Research in Nursing and Health";journal;"1098240X, 01606891";"John Wiley & Sons Inc.";No;No;0,862;Q1;103;82;205;3432;534;155;2,41;41,85;53,07;2;United States;Northern America;"John Wiley & Sons Inc.";"1978-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +6170;18777;"Violence Against Women";journal;"10778012, 15528448";"SAGE Publications Inc.";No;No;0,862;Q1;126;355;534;21258;1766;522;3,09;59,88;79,75;17;United States;Northern America;"SAGE Publications Inc.";"1995-2026";"Gender Studies (Q1); Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6171;14285;"Behavioural Brain Research";journal;"18727549, 01664328";"Elsevier B.V.";No;No;0,862;Q2;206;437;1224;31659;3694;1219;3,12;72,45;49,53;0;Netherlands;Western Europe;"Elsevier B.V.";"1980-2026";"Behavioral Neuroscience (Q2)";"Neuroscience" +6172;21100445637;"Clinical Nutrition ESPEN";journal;"24054577";"Elsevier Ltd";No;No;0,862;Q2;54;497;1089;22675;3729;1048;3,26;45,62;48,68;4;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +6173;21100892339;"Health Systems and Reform";journal;"23288604, 23288620";"Taylor and Francis Ltd.";Yes;No;0,862;Q2;36;25;123;1478;331;93;2,44;59,12;51,35;0;United States;Northern America;"Taylor and Francis Ltd.";"2015-2026";"Health Informatics (Q2); Health Information Management (Q2); Public Health, Environmental and Occupational Health (Q2)";"Health Professions; Medicine" +6174;130009;"Purinergic Signalling";journal;"15739538, 15739546";"Springer Science and Business Media B.V.";No;No;0,862;Q2;73;106;173;6702;477;152;2,60;63,23;50,44;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2004-2026";"Molecular Biology (Q2); Cell Biology (Q3); Cellular and Molecular Neuroscience (Q3)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +6175;15000154803;"Therapeutic Advances in Cardiovascular Disease";journal;"17539455, 17539447";"SAGE Publications Ltd";Yes;No;0,862;Q2;44;13;57;306;171;55;3,39;23,54;25,88;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2026";"Cardiology and Cardiovascular Medicine (Q2); Pharmacology (medical) (Q2)";"Medicine" +6176;21100938000;"Facets";journal;"23711671";"Canadian Science Publishing";Yes;No;0,861;Q1;35;118;212;9259;653;203;2,58;78,47;52,20;2;Canada;Northern America;"Canadian Science Publishing";"2017-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +6177;21100246506;"Journal of Choice Modelling";journal;"17555345";"Elsevier B.V.";Yes;No;0,861;Q1;45;26;107;1366;354;106;3,00;52,54;24,32;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Modeling and Simulation (Q1); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +6178;21100455460;"Journal of Heritage Tourism";journal;"1743873X, 17476631";"Taylor and Francis Ltd.";No;No;0,861;Q1;55;44;135;3286;725;134;4,27;74,68;45,05;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"History (Q1); Tourism, Leisure and Hospitality Management (Q2)";"Arts and Humanities; Business, Management and Accounting" +6179;5700153461;"Management Communication Quarterly";journal;"08933189, 15526798";"SAGE Publications Inc.";No;No;0,861;Q1;86;27;99;1629;457;98;4,38;60,33;63,41;1;United States;Northern America;"SAGE Publications Inc.";"1987-2026";"Communication (Q1); Strategy and Management (Q2)";"Business, Management and Accounting; Social Sciences" +6180;19600161828;"Public Transport";journal;"16137159, 1866749X";"Springer Verlag";No;No;0,861;Q1;41;47;88;2720;390;86;3,75;57,87;19,40;0;Germany;Western Europe;"Springer Verlag";"2009-2026";"Information Systems (Q1); Mechanical Engineering (Q1); Management Science and Operations Research (Q2); Transportation (Q2)";"Computer Science; Decision Sciences; Engineering; Social Sciences" +6181;15272;"Spanish Journal of Psychology";journal;"19882904, 11387416";"Cambridge University Press";No;No;0,861;Q1;62;28;90;1863;255;90;2,76;66,54;57,80;0;United Kingdom;Western Europe;"Cambridge University Press";"1998-2026";"Linguistics and Language (Q1); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +6182;26016;"Leukemia and Lymphoma";journal;"10292403, 10428194";"Taylor and Francis Ltd.";No;No;0,861;Q2;109;369;1072;12899;1720;679;1,64;34,96;44,47;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Hematology (Q2); Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6183;18071;"Neurotoxicity Research";journal;"14763524, 10298428";"Springer";No;No;0,861;Q2;94;49;269;3494;1036;268;3,79;71,31;52,51;1;United States;Northern America;"Springer";"1999-2026";"Neuroscience (miscellaneous) (Q2); Toxicology (Q2)";"Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +6184;21101022490;"BMJ Nutrition, Prevention and Health";journal;"25165542";"BMJ Publishing Group";Yes;No;0,860;Q1;25;91;157;3269;448;145;2,50;35,92;50,32;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2019-2026";"Health (social science) (Q1); Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)";"Medicine; Nursing; Social Sciences" +6185;5700185098;"Competitiveness Review";journal;"20513143, 10595422";"Emerald Publishing";No;No;0,860;Q1;49;83;176;5930;1089;166;6,25;71,45;34,03;0;United Kingdom;Western Europe;"Emerald Publishing";"1996-2026";"Business, Management and Accounting (miscellaneous) (Q1); Business and International Management (Q2)";"Business, Management and Accounting" +6186;21100834704;"Frontiers in Ecology and Evolution";journal;"2296701X";"Frontiers Media SA";Yes;No;0,860;Q1;88;251;2795;17695;8931;2581;3,03;70,50;38,97;1;Switzerland;Western Europe;"Frontiers Media SA";"2013-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +6187;21101041844;"Healthcare (Switzerland)";journal;"22279032";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,860;Q1;95;3316;8333;171352;32178;8243;3,86;51,67;52,75;13;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Leadership and Management (Q1); Health Informatics (Q2); Health Information Management (Q2); Health Policy (Q2)";"Health Professions; Medicine; Nursing" +6188;4700151503;"Journal of the American Board of Family Medicine";journal;"15572625, 15587118";"American Board of Family Medicine";Yes;No;0,860;Q1;101;129;503;2861;928;436;1,59;22,18;55,41;0;United States;Northern America;"American Board of Family Medicine";"2002, 2006-2025";"Family Practice (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6189;21101212781;"Management and Sustainability";journal;"27529819, 27529827";"Emerald Publishing";No;No;0,860;Q1;13;118;52;10302;406;49;8,59;87,31;25,10;0;United Kingdom;Western Europe;"Emerald Publishing";"2022-2026";"Business, Management and Accounting (miscellaneous) (Q1); Business and International Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +6190;21101253551;"Mechanobiology in Medicine";journal;"29499070";"Elsevier B.V.";Yes;No;0,860;Q1;10;40;61;3364;213;46;3,49;84,10;48,28;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Biophysics (Q1); Biomaterials (Q2); Biomedical Engineering (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +6191;24946;"Sexually Transmitted Infections";journal;"14723263, 13684973";"BMJ Publishing Group";No;No;0,860;Q1;118;157;392;3127;722;300;1,77;19,92;56,07;4;United Kingdom;Western Europe;"BMJ Publishing Group";"1940-1942, 1973-1975, 1980-1988, 1992-1994, 1996-2026";"Dermatology (Q1); Infectious Diseases (Q2)";"Medicine" +6192;21101038829;"Trees, Forests and People";journal;"26667193";"Elsevier B.V.";Yes;No;0,860;Q1;34;346;542;26239;2405;532;4,33;75,84;30,96;5;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Forestry (Q1); Management, Monitoring, Policy and Law (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Environmental Science" +6193;21100821132;"Decision";journal;"23259973, 23259965";"American Psychological Association";No;No;0,860;Q2;26;10;90;759;131;90;1,56;75,90;21,05;0;United States;Northern America;"American Psychological Association";"2014-2025";"Applied Psychology (Q2); Neuropsychology and Physiological Psychology (Q2); Social Psychology (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Psychology" +6194;21349;"Expert Opinion on Drug Safety";journal;"14740338, 1744764X";"Taylor and Francis Ltd.";No;No;0,860;Q2;101;315;476;13470;1668;439;3,09;42,76;46,17;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)";"Medicine" +6195;30091;"Journal of Sport and Exercise Psychology";journal;"08952779, 15432904";"Human Kinetics Publishers Inc.";No;No;0,860;Q2;129;37;95;1838;298;93;2,54;49,68;49,30;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1988-1991, 1996-2026";"Applied Psychology (Q2); Sports Science (Q2)";"Health Professions; Psychology" +6196;21100932732;"PharmacoEconomics - Open";journal;"25094262, 25094254";"";Yes;No;0,860;Q2;28;83;218;4024;574;213;2,83;48,48;41,55;2;Switzerland;Western Europe;"";"2017-2026";"Health Policy (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6197;29471;"American Journal of Orthopsychiatry";journal;"19390025, 00029432";"American Orthopsychiatric Association Inc.";No;No;0,859;Q1;120;60;226;4236;610;226;2,01;70,60;69,33;0;United States;Northern America;"American Orthopsychiatric Association Inc.";"1930-2025";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Medicine; Psychology" +6198;16728;"Aquatic Botany";journal;"03043770";"Elsevier B.V.";No;No;0,859;Q1;113;72;212;3505;618;210;2,69;48,68;48,00;1;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Aquatic Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +6199;21100393521;"Archaeological Research in Asia";journal;"23522267";"Elsevier B.V.";No;No;0,859;Q1;28;65;150;4525;246;149;1,67;69,62;38,81;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +6200;21101107165;"BIO Integration";journal;"27120082";"Compuscript Ltd";Yes;Yes;0,859;Q1;18;37;85;3470;405;75;6,23;93,78;34,32;0;Ireland;Western Europe;"Compuscript Ltd";"2020-2026";"Biophysics (Q1); Biochemistry (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biomedical Engineering (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering" +6201;144891;"Digital Creativity";journal;"17443806, 14626268";"Taylor and Francis Ltd.";No;No;0,859;Q1;33;29;62;1438;310;59;5,85;49,59;49,28;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Arts and Humanities (miscellaneous) (Q1); Computational Theory and Mathematics (Q1); Computer Graphics and Computer-Aided Design (Q1); Human-Computer Interaction (Q2)";"Arts and Humanities; Computer Science" +6202;23274;"Ecological Modelling";journal;"18727026, 03043800";"Elsevier B.V.";No;No;0,859;Q1;197;332;793;22713;3001;787;3,99;68,41;33,87;6;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Ecological Modeling (Q1); Ecology (Q1)";"Environmental Science" +6203;21101178737;"Journal of Cybersecurity and Privacy";journal;"2624800X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,859;Q1;27;112;131;6020;938;130;5,88;53,75;25,00;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Computer Science (miscellaneous) (Q1); Artificial Intelligence (Q2)";"Computer Science" +6204;21100934093;"Journal of Econometric Methods";journal;"21566674";"Walter de Gruyter GmbH";No;No;0,859;Q1;16;6;28;84;69;28;1,00;14,00;12,50;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2012-2013, 2015-2026";"Applied Mathematics (Q1); Statistics and Probability (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Mathematics" +6205;20580;"Journal of Food Biochemistry";journal;"17454514, 01458884";"John Wiley and Sons Inc";No;No;0,859;Q1;76;205;816;11712;4231;812;2,58;57,13;47,61;0;United States;Northern America;"John Wiley and Sons Inc";"1977-2026";"Biophysics (Q1); Food Science (Q1); Pharmacology (Q2); Cell Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +6206;21071;"Journal of Sport and Social Issues";journal;"01937235, 15527638";"SAGE Publications Inc.";No;No;0,859;Q1;78;36;70;1824;244;70;2,91;50,67;50,57;0;United States;Northern America;"SAGE Publications Inc.";"1977-2026";"Sociology and Political Science (Q1)";"Social Sciences" +6207;21100199840;"RSC Advances";journal;"20462069";"Royal Society of Chemistry";Yes;No;0,859;Q1;254;3430;9898;224158;57271;9876;6,03;65,35;36,65;1;United Kingdom;Western Europe;"Royal Society of Chemistry";"2011-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)";"Chemical Engineering; Chemistry" +6208;21101018930;"SIAM Journal on Applied Algebra and Geometry";journal;"24706566";"Society for Industrial and Applied Mathematics Publications";No;No;0,859;Q1;24;34;94;1233;196;94;1,87;36,26;24,66;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"2017-2026";"Algebra and Number Theory (Q1); Applied Mathematics (Q1); Geometry and Topology (Q1)";"Mathematics" +6209;17442;"Structural Concrete";journal;"14644177, 17517648";"Wiley-Blackwell";No;No;0,859;Q1;72;631;978;32108;4004;958;4,10;50,88;23,65;0;United States;Northern America;"Wiley-Blackwell";"2001-2002, 2004-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +6210;21100208071;"Teoria y Realidad Constitucional";journal;"11395583, 21748950";"Universidad Nacional de Educacion a Distancia (UNED)";No;No;0,859;Q1;11;29;111;1056;74;111;0,65;36,41;40,00;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2012-2025";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +6211;13150;"Wound Repair and Regeneration";journal;"10671927, 1524475X";"Wiley-Blackwell Publishing Ltd";No;No;0,859;Q1;143;136;223;6623;905;220;4,15;48,70;46,10;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1993-2026";"Dermatology (Q1); Surgery (Q1)";"Medicine" +6212;19700173224;"Clinical Medicine Insights: Cardiology";journal;"11795468";"SAGE Publications Ltd";Yes;No;0,859;Q2;39;23;42;1025;159;40;2,09;44,57;31,06;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +6213;11600153423;"American Journal of Men's Health";journal;"15579891, 15579883";"SAGE Publications Inc.";Yes;No;0,858;Q1;63;106;321;3792;899;302;2,43;35,77;39,07;1;United States;Northern America;"SAGE Publications Inc.";"2007-2026";"Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +6214;24455;"Child and Youth Care Forum";journal;"15733319, 10531890";"Springer New York";No;No;0,858;Q1;56;101;181;7000;508;181;2,68;69,31;72,57;1;United States;Northern America;"Springer New York";"1991-2026";"Social Sciences (miscellaneous) (Q1); Life-span and Life-course Studies (Q2)";"Social Sciences" +6215;29390;"Gender and Education";journal;"13600516, 09540253";"Routledge";No;No;0,858;Q1;83;72;185;3944;651;182;3,25;54,78;76,40;3;United Kingdom;Western Europe;"Routledge";"1989-2026";"Education (Q1); Gender Studies (Q1)";"Social Sciences" +6216;27519;"International Journal of Gynecological Pathology";journal;"15387151, 02771691";"Lippincott Williams and Wilkins";No;No;0,858;Q1;91;98;269;2698;605;257;2,07;27,53;53,35;0;United States;Northern America;"Lippincott Williams and Wilkins";"1982-2026";"Pathology and Forensic Medicine (Q1); Obstetrics and Gynecology (Q2)";"Medicine" +6217;21100869243;"JDR Clinical and Translational Research";journal;"23800844, 23800852";"SAGE Publications Ltd";No;No;0,858;Q1;32;90;146;2600;485;129;2,76;28,89;51,20;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2016-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +6218;21101082054;"Journal of Safety Science and Resilience";journal;"26664496, 20967527";"KeAi Communications Co.";Yes;No;0,858;Q1;25;55;113;3065;774;110;7,65;55,73;28,95;1;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1); Computer Science Applications (Q2); Management Science and Operations Research (Q2); Statistics, Probability and Uncertainty (Q2)";"Computer Science; Decision Sciences; Engineering; Social Sciences" +6219;25967;"Social and Cultural Geography";journal;"14701197, 14649365";"Routledge";No;No;0,858;Q1;99;86;265;5726;843;259;3,11;66,58;57,97;2;United Kingdom;Western Europe;"Routledge";"2000-2026";"Cultural Studies (Q1); Geography, Planning and Development (Q1)";"Social Sciences" +6220;19607;"Anaerobe";journal;"10759964, 10958274";"Academic Press";No;No;0,858;Q2;106;87;284;3480;884;278;3,22;40,00;45,39;0;United States;Northern America;"Academic Press";"1995-2026";"Infectious Diseases (Q2); Microbiology (Q2)";"Immunology and Microbiology; Medicine" +6221;21100943510;"Annals of Geriatric Medicine and Research";journal;"25084798, 25084909";"Korean Geriatrics Society";Yes;Yes;0,858;Q2;30;64;156;2309;522;143;2,61;36,08;32,53;0;South Korea;Asiatic Region;"Korean Geriatrics Society";"2016-2025";"Geriatrics and Gerontology (Q2)";"Medicine" +6222;22538;"Public Health Reports";journal;"00333549, 14682877";"SAGE Publications Inc.";No;No;0,858;Q2;114;121;460;4175;1144;402;2,31;34,50;64,64;3;United States;Northern America;"SAGE Publications Inc.";"1945-1970, 1974-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6223;21101032719;"Forensic Science International: Digital Investigation";journal;"26662817, 26662825";"Elsevier Ltd";No;No;0,857;Q1;72;96;265;3826;955;241;3,82;39,85;26,25;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Information Systems (Q1); Law (Q1); Medical Laboratory Technology (Q1); Pathology and Forensic Medicine (Q1); Computer Science Applications (Q2)";"Computer Science; Health Professions; Medicine; Social Sciences" +6224;21431;"Indoor Air";journal;"09056947, 16000668";"John Wiley and Sons Inc";No;No;0,857;Q1;139;117;354;7297;1716;341;2,75;62,37;38,63;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1991-2026";"Building and Construction (Q1); Environmental Engineering (Q2); Public Health, Environmental and Occupational Health (Q2)";"Engineering; Environmental Science; Medicine" +6225;21100467423;"Journal of Educational Evaluation for Health Professions";journal;"19755937";"Korea Health Personnel Licensing Examination Institute";Yes;Yes;0,857;Q1;31;41;119;640;526;107;5,30;15,61;46,03;0;South Korea;Asiatic Region;"Korea Health Personnel Licensing Examination Institute";"2016-2026";"Education (Q1); Health Professions (miscellaneous) (Q1)";"Health Professions; Social Sciences" +6226;29972;"Journal of Homosexuality";journal;"15403602, 00918369";"Routledge";No;No;0,857;Q1;101;233;431;13158;1513;427;3,53;56,47;55,29;2;United States;Northern America;"Routledge";"1974, 1976-2026";"Education (Q1); Gender Studies (Q1); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2); Social Psychology (Q2)";"Medicine; Psychology; Social Sciences" +6227;20500195063;"Quantitative InfraRed Thermography Journal";journal;"17686733, 21167176";"Taylor and Francis Ltd.";No;No;0,857;Q1;34;40;63;1739;326;63;5,14;43,48;18,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Electrical and Electronic Engineering (Q1); Fluid Flow and Transfer Processes (Q1); Instrumentation (Q1); Mechanical Engineering (Q1)";"Chemical Engineering; Engineering; Physics and Astronomy" +6228;26372;"Risk Analysis";journal;"15396924, 02724332";"Wiley-Blackwell Publishing Ltd";No;No;0,857;Q1;171;292;544;21229;2472;486;4,40;72,70;38,59;12;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1981-2026";"Safety, Risk, Reliability and Quality (Q1); Physiology (medical) (Q2)";"Engineering; Medicine" +6229;11900154314;"Cardiovascular Therapeutics";journal;"17555914, 17555922";"John Wiley and Sons Inc";Yes;No;0,857;Q2;62;64;136;2698;533;136;2,83;42,16;39,39;0;China;Asiatic Region;"John Wiley and Sons Inc";"2008-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6230;29975;"Current Opinion in Organ Transplantation";journal;"15317013, 10872418";"Lippincott Williams and Wilkins";No;No;0,857;Q2;66;68;220;3069;541;203;2,51;45,13;42,86;0;United States;Northern America;"Lippincott Williams and Wilkins";"1996, 2000-2026";"Immunology and Allergy (Q2); Transplantation (Q2)";"Medicine" +6231;21101037913;"IBRO Neuroscience Reports";journal;"26672421";"Elsevier B.V.";Yes;No;0,857;Q2;27;211;321;12644;1136;319;3,39;59,92;46,69;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Neuroscience (miscellaneous) (Q2)";"Neuroscience" +6232;27030;"Applied Physics Letters";journal;"10773118, 00036951";"American Institute of Physics";No;No;0,856;Q1;498;2770;7182;113112;25902;7146;3,67;40,83;28,89;0;United States;Northern America;"American Institute of Physics";"1962-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +6233;27642;"Asian Journal of Andrology";journal;"17457262, 1008682X";"Wolters Kluwer Medknow Publications";Yes;No;0,856;Q1;100;113;364;5657;985;310;2,63;50,06;32,85;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1999-2026";"Urology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6234;21100265662;"CardioRenal Medicine";journal;"16645502, 16643828";"S. Karger AG";Yes;No;0,856;Q1;35;50;125;2557;409;122;2,96;51,14;38,44;0;Switzerland;Western Europe;"S. Karger AG";"2011-2026";"Urology (Q1); Cardiology and Cardiovascular Medicine (Q2); Nephrology (Q2)";"Medicine" +6235;21101168846;"Chemistry-Methods";journal;"26289725";"Wiley-VCH Verlag";No;No;0,856;Q1;20;109;103;7429;347;95;3,38;68,16;36,35;0;United States;Northern America;"Wiley-VCH Verlag";"2021-2026";"Fluid Flow and Transfer Processes (Q1); Spectroscopy (Q1); Catalysis (Q2); Electrochemistry (Q2)";"Chemical Engineering; Chemistry" +6236;11400153312;"Feminist Criminology";journal;"15570851, 1557086X";"SAGE Publications Ltd";No;No;0,856;Q1;51;41;75;2659;219;71;2,81;64,85;71,43;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2006-2026";"Gender Studies (Q1); Law (Q1)";"Social Sciences" +6237;28521;"Journal of Hydrodynamics";journal;"10016058, 18780342";"Springer";No;No;0,856;Q1;69;73;268;2591;1062;268;3,74;35,49;27,27;0;Singapore;Asiatic Region;"Springer";"1990-2026";"Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Modeling and Simulation (Q1)";"Engineering; Mathematics; Physics and Astronomy" +6238;21100901156;"Journal of Reliable Intelligent Environments";journal;"21994668, 21994676";"Springer International Publishing AG";No;No;0,856;Q1;33;23;93;1169;488;81;6,03;50,83;32,98;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Computer Networks and Communications (Q1); Computer Science (miscellaneous) (Q1); Artificial Intelligence (Q2); Computer Science Applications (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Computer Science; Energy" +6239;21101224040;"RAS Techniques and Instruments";journal;"27528200";"Oxford University Press";Yes;No;0,856;Q1;12;68;125;3763;292;123;2,39;55,34;21,75;0;United Kingdom;Western Europe;"Oxford University Press";"2022-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Artificial Intelligence (Q2); Astronomy and Astrophysics (Q2)";"Computer Science; Earth and Planetary Sciences; Engineering; Physics and Astronomy" +6240;13450;"Counselling Psychology Quarterly";journal;"09515070, 14693674";"Routledge";No;No;0,856;Q2;52;78;119;4487;322;118;2,17;57,53;55,93;0;United Kingdom;Western Europe;"Routledge";"1988-2026";"Applied Psychology (Q2); Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +6241;29391;"Energy Journal";journal;"19449089, 01956574";"SAGE Publications Ltd";No;No;0,856;Q2;99;59;207;3516;616;206;3,11;59,59;28,92;3;United States;Northern America;"SAGE Publications Ltd";"1980-1985, 1987, 1989, 1991, 1993-2025";"Economics and Econometrics (Q2); Energy (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Energy" +6242;21101076715;"Journal of Affective Disorders Reports";journal;"26669153";"Elsevier B.V.";Yes;No;0,856;Q2;39;138;477;7555;1335;467;3,07;54,75;50,98;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +6243;13445;"Meteorological Applications";journal;"13504827, 14698080";"Wiley-Blackwell";Yes;No;0,856;Q2;81;117;186;5859;618;184;3,18;50,08;34,42;1;United States;Northern America;"Wiley-Blackwell";"1994-2026";"Atmospheric Science (Q2)";"Earth and Planetary Sciences" +6244;19700175144;"Neurology International";journal;"20358377, 20358385";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,856;Q2;33;205;310;12013;1050;305;3,50;58,60;45,26;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Neurology (clinical) (Q2)";"Medicine" +6245;12946;"Applied Acoustics";journal;"0003682X, 1872910X";"Elsevier Ltd";No;No;0,855;Q1;122;641;1517;27054;7508;1515;5,01;42,21;28,70;0;United Kingdom;Western Europe;"Elsevier Ltd";"1968-2026";"Acoustics and Ultrasonics (Q1)";"Physics and Astronomy" +6246;21869;"Canadian Journal of Anesthesia";journal;"0832610X, 14968975";"Springer";No;No;0,855;Q1;121;202;704;5302;1403;409;2,07;26,25;43,89;0;United States;Northern America;"Springer";"1981, 1987-2026";"Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6247;13214;"European Journal of General Practice";journal;"13814788, 17511402";"Taylor and Francis Ltd.";Yes;No;0,855;Q1;46;41;143;1100;378;125;2,59;26,83;53,56;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Family Practice (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6248;27753;"International Journal of Legal Medicine";journal;"09379827, 14371596";"Springer Verlag";No;No;0,855;Q1;102;264;603;11798;1802;586;3,09;44,69;45,22;10;Germany;Western Europe;"Springer Verlag";"1990-2026";"Pathology and Forensic Medicine (Q1)";"Medicine" +6249;11800154591;"Journal of Economic Policy Reform";journal;"17487889, 17487870";"Routledge";No;No;0,855;Q1;37;26;68;1301;261;65;3,81;50,04;25,93;1;United Kingdom;Western Europe;"Routledge";"2007-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +6250;21101120348;"Journal of Human, Earth, and Future";journal;"27852997";"";Yes;No;0,855;Q1;23;61;121;3436;681;121;7,20;56,33;48,76;0;Italy;Western Europe;"";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Engineering; Environmental Science" +6251;21100258636;"Research and Reports in Urology";journal;"22532447";"Dove Medical Press Ltd";Yes;No;0,855;Q1;35;47;137;1823;461;137;2,68;38,79;20,80;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2012-2026";"Urology (Q1)";"Medicine" +6252;18947;"User Modeling and User-Adapted Interaction";journal;"15731391, 09241868";"Springer Netherlands";No;No;0,855;Q1;90;15;115;1208;612;109;5,89;80,53;23,33;0;Netherlands;Western Europe;"Springer Netherlands";"1991-2026";"Education (Q1); Computer Science Applications (Q2); Human-Computer Interaction (Q2)";"Computer Science; Social Sciences" +6253;21100967059;"BMC Rheumatology";journal;"25201026";"BioMed Central Ltd";Yes;No;0,855;Q2;29;143;208;5585;613;206;3,16;39,06;50,58;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2017-2026";"Rheumatology (Q2)";"Medicine" +6254;19900193503;"International Journal of Stem Cells";journal;"20055447, 20053606";"Sungkyunkwan University";No;No;0,855;Q2;39;35;118;1981;380;117;2,61;56,60;43,59;1;South Korea;Asiatic Region;"Sungkyunkwan University";"2008-2025";"Developmental Biology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +6255;21101108188;"Journal of the American Nutrition Association";journal;"2769707X, 27697061";"Routledge";No;No;0,855;Q2;143;82;231;4558;930;225;4,23;55,59;49,36;1;United Kingdom;Western Europe;"Routledge";"2022-2026";"Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +6256;21101182759;"Rheumatology and Immunology Research";journal;"27194523";"Walter de Gruyter GmbH";No;No;0,855;Q2;14;31;102;751;232;81;2,21;24,23;54,96;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2020-2025";"Immunology and Allergy (Q2); Internal Medicine (Q2); Rheumatology (Q2)";"Medicine" +6257;21101136812;"Advances in Cancer Biology - Metastasis";journal;"26673940";"Elsevier Inc.";Yes;No;0,855;Q3;19;29;102;1762;503;100;5,85;60,76;43,06;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Cancer Research (Q3); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +6258;14442;"Advances in Pediatrics";book series;"00653101, 18781926";"Academic Press Inc.";No;No;0,854;Q1;47;23;50;1061;173;47;2,52;46,13;61,82;0;United States;Northern America;"Academic Press Inc.";"1948, 1952-1953, 1955-1957, 1960, 1962, 1964, 1966, 1968-1970, 1973-1974, 1976-2002, 2004-2025";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +6259;14566;"American Journal of Speech-Language Pathology";journal;"10580360, 15589110";"American Speech-Language-Hearing Association (ASHA)";No;No;0,854;Q1;98;236;593;14598;1837;577;2,69;61,86;74,29;0;United States;Northern America;"American Speech-Language-Hearing Association (ASHA)";"1993-2026";"Linguistics and Language (Q1); Otorhinolaryngology (Q1); Speech and Hearing (Q1); Developmental and Educational Psychology (Q2); Medicine (miscellaneous) (Q2)";"Health Professions; Medicine; Psychology; Social Sciences" +6260;29363;"Annals of Nuclear Energy";journal;"03064549, 18732100";"Elsevier Ltd";No;No;0,854;Q1;93;775;1831;27000;5138;1827;2,85;34,84;22,97;2;United Kingdom;Western Europe;"Elsevier Ltd";"1975-2026";"Nuclear Energy and Engineering (Q1)";"Energy" +6261;19994;"Bulletin of Science, Technology and Society";journal;"02704676, 15524183";"SAGE Publications Inc.";No;No;0,854;Q1;33;8;26;623;155;26;4,93;77,88;35,29;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1982-1985, 1987-2005, 2008, 2012, 2014-2026";"Arts and Humanities (miscellaneous) (Q1); Education (Q1); History and Philosophy of Science (Q1); Social Sciences (miscellaneous) (Q1); Management of Technology and Innovation (Q2)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +6262;21100466229;"Environment and Society: Advances in Research";journal;"21506779, 21506787";"Berghahn Journals";Yes;Yes;0,854;Q1;28;0;30;0;104;30;1,48;0,00;0,00;0;United States;Northern America;"Berghahn Journals";"2015-2024";"Anthropology (Q1); Geography, Planning and Development (Q1); Nature and Landscape Conservation (Q1); Global and Planetary Change (Q2)";"Environmental Science; Social Sciences" +6263;21101080470;"Journal of Applied and Computational Topology";journal;"23671726, 23671734";"Springer International Publishing AG";No;No;0,854;Q1;18;30;115;1092;163;111;1,28;36,40;20,83;0;Switzerland;Western Europe;"Springer International Publishing AG";"2017-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1); Geometry and Topology (Q1)";"Mathematics" +6264;26989;"Microporous and Mesoporous Materials";journal;"13871811";"Elsevier B.V.";No;No;0,854;Q1;208;383;1386;22857;7156;1381;5,20;59,68;39,23;0;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q2)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +6265;21101183614;"Addiction Neuroscience";journal;"27723925";"Elsevier Inc.";Yes;No;0,854;Q2;14;40;143;3608;375;140;2,28;90,20;57,14;0;United States;Northern America;"Elsevier Inc.";"2022-2026";"Genetics (Q2); Neuroscience (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +6266;21101251268;"Frontiers in Antibiotics";journal;"28132467";"Frontiers Media SA";Yes;No;0,854;Q2;11;20;76;1123;288;66;3,75;56,15;45,31;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Drug Discovery (Q2); Infectious Diseases (Q2); Microbiology (medical) (Q2); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6267;22241;"Human Cell";journal;"17490774, 09147470";"Springer";No;No;0,854;Q2;52;181;488;10030;1555;450;3,01;55,41;43,59;0;Japan;Asiatic Region;"Springer";"1988-2026";"Medicine (miscellaneous) (Q2); Cancer Research (Q3); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6268;21100853991;"Movement Disorders Clinical Practice";journal;"23301619";"John Wiley and Sons Ltd";No;No;0,854;Q2;49;507;800;13451;1798;546;2,24;26,53;47,05;0;United States;Northern America;"John Wiley and Sons Ltd";"2014-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +6269;18009;"Neuropsychologia";journal;"18733514, 00283932";"Elsevier Ltd";No;No;0,854;Q2;244;151;600;11562;1528;592;2,51;76,57;48,43;1;United Kingdom;Western Europe;"Elsevier Ltd";"1963-2026";"Behavioral Neuroscience (Q2); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)";"Neuroscience; Psychology" +6270;19600156814;"Cryptography and Communications";journal;"19362447, 19362455";"Springer Publishing Company";No;No;0,853;Q1;28;100;224;2780;364;219;1,47;27,80;29,66;1;United States;Northern America;"Springer Publishing Company";"2009-2026";"Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Computer Networks and Communications (Q1)";"Computer Science; Mathematics" +6271;21101198446;"De Jure: Jurnal Hukum dan Syar'iah";journal;"20851618, 25281658";"Maulana Malik Ibrahim State Islamic University of Malang";No;No;0,853;Q1;13;25;70;1523;269;70;4,52;60,92;39,39;0;Indonesia;Asiatic Region;"Maulana Malik Ibrahim State Islamic University of Malang";"2020-2025";"Gender Studies (Q1); Law (Q1); Political Science and International Relations (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +6272;21100873338;"Environmental Technology Reviews";journal;"21622523, 21622515";"Taylor and Francis Ltd.";No;No;0,853;Q1;41;50;79;6186;468;79;6,23;123,72;36,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Water Science and Technology (Q1); Environmental Engineering (Q2); Pollution (Q2); Waste Management and Disposal (Q2)";"Environmental Science" +6273;25660;"Journal of Adhesive Dentistry";journal;"17579988, 14615185";"Quintessenz Verlags-GmbH";Yes;No;0,853;Q1;82;29;98;1046;318;98;2,75;36,07;44,24;0;United States;Northern America;"Quintessenz Verlags-GmbH";"1999-2026";"Oral Surgery (Q1); Orthodontics (Q1); Periodontics (Q1)";"Dentistry" +6274;20000195010;"Korean Journal of Family Medicine";journal;"20926715, 20056443";"Korean Journal of Family Medicine";Yes;Yes;0,853;Q1;36;68;164;1678;492;138;2,64;24,68;54,55;1;South Korea;Asiatic Region;"Korean Journal of Family Medicine";"2009-2026";"Family Practice (Q1)";"Medicine" +6275;17389;"Rural Sociology";journal;"00360112, 15490831";"Rural Sociological Society";No;No;0,853;Q1;85;36;132;2447;433;129;2,65;67,97;54,95;1;United States;Northern America;"Rural Sociological Society";"1978-2026";"Sociology and Political Science (Q1)";"Social Sciences" +6276;14830;"Infant Behavior and Development";journal;"01636383, 19348800";"Elsevier Ltd";No;No;0,853;Q2;103;124;249;8765;659;240;2,58;70,69;73,08;0;United Kingdom;Western Europe;"Elsevier Ltd";"1978-2026";"Developmental and Educational Psychology (Q2)";"Psychology" +6277;21100872102;"Journal of Organizational Effectiveness";journal;"20516614, 20516622";"Emerald Group Holdings Ltd.";No;No;0,853;Q2;37;58;145;5086;830;143;5,31;87,69;46,31;0;United Kingdom;Western Europe;"Emerald Group Holdings Ltd.";"2014-2026";"Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +6278;21101074921;"Annals of Tourism Research Empirical Insights";journal;"26669579";"Elsevier B.V.";Yes;No;0,852;Q1;25;41;126;2653;688;123;4,90;64,71;44,72;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Geography, Planning and Development (Q1); Sociology and Political Science (Q1); Marketing (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +6279;19900192615;"Cyberpsychology";journal;"18027962";"Masaryk University";Yes;Yes;0,852;Q1;47;41;134;3327;460;134;2,64;81,15;52,26;0;Czech Republic;Eastern Europe;"Masaryk University";"2011-2026";"Communication (Q1); Social Sciences (miscellaneous) (Q1); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +6280;13869;"Eye and Contact Lens";journal;"1542233X, 15422321";"Lippincott Williams and Wilkins";No;No;0,852;Q1;74;105;290;3501;672;272;2,24;33,34;47,76;0;United States;Northern America;"Lippincott Williams and Wilkins";"1986, 1993-1994, 2003-2026";"Ophthalmology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6281;5100155071;"Foundations and Trends in Information Retrieval";journal;"15540669, 15540677";"Now Publishers Inc";No;No;0,852;Q1;42;4;9;1028;107;9;9,33;257,00;33,33;0;United States;Northern America;"Now Publishers Inc";"2006, 2008-2025";"Computer Science (miscellaneous) (Q1); Information Systems (Q1)";"Computer Science" +6282;79889;"Journal of Sea Research";journal;"13851101";"Elsevier B.V.";Yes;No;0,852;Q1;94;90;285;5529;1106;283;4,24;61,43;40,84;0;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +6283;21101055722;"Measurement: Sensors";journal;"26659174";"Elsevier Ltd";Yes;No;0,852;Q1;47;567;755;10260;5381;754;7,55;18,10;22,77;5;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Industrial and Manufacturing Engineering (Q1); Instrumentation (Q1); Mechanics of Materials (Q1)";"Engineering; Materials Science; Physics and Astronomy" +6284;21100403813;"Organic Chemistry Frontiers";journal;"20524110, 20524129";"Royal Society of Chemistry";No;No;0,852;Q1;95;549;2398;34790;9804;2395;4,21;63,37;35,83;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2014-2026";"Organic Chemistry (Q1)";"Chemistry" +6285;25467;"Blood Cells, Molecules, and Diseases";journal;"10960961, 10799796";"Academic Press Inc.";No;No;0,852;Q2;105;32;107;1151;213;92;2,11;35,97;49,71;0;United States;Northern America;"Academic Press Inc.";"1995-2026";"Hematology (Q2); Molecular Biology (Q2); Molecular Medicine (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6286;21100248801;"Journal of Cancer";journal;"18379664";"Ivyspring International Publisher";Yes;No;0,852;Q2;99;334;1157;16695;3929;1156;3,19;49,99;41,18;0;Australia;Pacific Region;"Ivyspring International Publisher";"2010-2026";"Oncology (Q2)";"Medicine" +6287;12252;"Journal of Public Health";journal;"17413850, 17413842";"Oxford University Press";No;No;0,852;Q2;107;274;917;6854;1934;576;2,02;25,01;50,17;5;United Kingdom;Western Europe;"Oxford University Press";"1980-2025";"Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6288;21100784787;"Translational Gastroenterology and Hepatology";journal;"24151289";"AME Publishing Company";Yes;No;0,852;Q2;37;75;164;3338;491;135;2,76;44,51;41,18;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2016-2026";"Gastroenterology (Q2); Hepatology (Q2)";"Medicine" +6289;21101095935;"Archives of Physiotherapy";journal;"20570082";"AboutScience Srl";Yes;Yes;0,851;Q1;23;32;64;1575;235;63;3,11;49,22;40,80;0;United Kingdom;Western Europe;"AboutScience Srl";"2015-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1)";"Health Professions; Medicine" +6290;21101262344;"Bacteria";journal;"26741334";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,851;Q1;14;63;69;5025;389;67;6,98;79,76;42,95;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +6291;16561;"BMC Medical Imaging";journal;"14712342";"BioMed Central Ltd";Yes;No;0,851;Q1;61;523;780;19055;3712;780;4,41;36,43;39,83;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +6292;21134;"Facial Plastic Surgery Clinics of North America";journal;"10647406, 15581926";"W.B. Saunders";No;No;0,851;Q1;52;68;196;2340;413;157;1,93;34,41;34,97;0;United States;Northern America;"W.B. Saunders";"1995, 2001-2026";"Surgery (Q1)";"Medicine" +6293;21101152881;"Frontiers in Pain Research";journal;"2673561X";"Frontiers Media SA";Yes;No;0,851;Q1;28;174;567;9822;1863;502;2,94;56,45;46,96;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Anesthesiology and Pain Medicine (Q1); Health Professions (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Health Professions; Medicine; Neuroscience" +6294;16216;"International Journal of Pavement Engineering";journal;"1477268X, 10298436";"Taylor and Francis Ltd.";No;No;0,851;Q1;81;300;1116;15182;4667;1103;3,64;50,61;28,35;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Civil and Structural Engineering (Q1); Mechanics of Materials (Q1)";"Engineering" +6295;27339;"Journal of Religion and Health";journal;"15736571, 00224197";"Springer";No;No;0,851;Q1;70;351;791;17322;2365;773;2,63;49,35;57,42;2;United States;Northern America;"Springer";"1961-2026";"Nursing (miscellaneous) (Q1); Religious Studies (Q1); Medicine (miscellaneous) (Q2)";"Arts and Humanities; Medicine; Nursing" +6296;21100810712;"Journal of Remanufacturing";journal;"2210464X, 22104690";"SpringerOpen";Yes;No;0,851;Q1;30;12;45;1141;218;45;5,59;95,08;22,92;0;Netherlands;Western Europe;"SpringerOpen";"2011-2026";"Industrial and Manufacturing Engineering (Q1); Management, Monitoring, Policy and Law (Q2); Waste Management and Disposal (Q2)";"Engineering; Environmental Science" +6297;17641;"Prehospital and Disaster Medicine";journal;"1049023X, 19451938";"Cambridge University Press";No;No;0,851;Q1;67;49;370;1164;924;314;2,88;23,76;33,62;0;United Kingdom;Western Europe;"Cambridge University Press";"1985-1987, 1989-2026";"Emergency Medicine (Q1); Emergency Nursing (Q1)";"Medicine; Nursing" +6298;21101055135;"Water Quality Research Journal";journal;"27098052, 27098044";"IWA Publishing";Yes;No;0,851;Q1;55;38;61;1836;265;60;4,27;48,32;36,04;0;United Kingdom;Western Europe;"IWA Publishing";"2017-2025";"Water Science and Technology (Q1)";"Environmental Science" +6299;29097;"Cancer Chemotherapy and Pharmacology";journal;"14320843, 03445704";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,851;Q2;132;119;351;4848;902;345;2,44;40,74;39,60;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1978-2026";"Oncology (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2); Toxicology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6300;21100841829;"Immunity, Inflammation and Disease";journal;"20504527";"John Wiley and Sons Inc";Yes;No;0,851;Q2;43;190;855;10385;2949;839;3,53;54,66;45,67;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2013-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +6301;20320;"Journal of Policy Modeling";journal;"01618938";"Elsevier B.V.";No;No;0,851;Q2;76;86;219;3760;783;216;3,43;43,72;29,19;4;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +6302;14561;"Child: Care, Health and Development";journal;"03051862, 13652214";"Wiley-Blackwell Publishing Ltd";No;No;0,850;Q1;106;171;418;7899;1229;411;2,80;46,19;68,65;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1975-2026";"Pediatrics, Perinatology and Child Health (Q1); Developmental and Educational Psychology (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Psychology" +6303;21101146661;"European Law Open";journal;"27526135";"Cambridge University Press";Yes;No;0,850;Q1;11;52;162;5909;259;152;1,59;113,63;40,68;1;United Kingdom;Western Europe;"Cambridge University Press";"2022-2026";"Law (Q1)";"Social Sciences" +6304;25162;"Global Society";journal;"1469798X, 13600826";"Taylor and Francis Ltd.";No;No;0,850;Q1;46;36;87;3373;309;85;3,55;93,69;44,44;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Geography, Planning and Development (Q1); Global and Planetary Change (Q2)";"Environmental Science; Social Sciences" +6305;4000148206;"Journal of Neurologic Physical Therapy";journal;"15570584, 15570576";"Lippincott Williams and Wilkins Ltd.";No;No;0,850;Q1;72;40;102;1544;286;83;2,33;38,60;61,31;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2004-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Geriatrics and Gerontology (Q2); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)";"Health Professions; Medicine" +6306;21100205753;"Journal of Water and Climate Change";journal;"20402244, 24089354";"IWA Publishing";Yes;No;0,850;Q1;49;195;835;11930;3562;830;4,13;61,18;31,03;2;United Kingdom;Western Europe;"IWA Publishing";"2010-2026";"Water Science and Technology (Q1); Atmospheric Science (Q2); Global and Planetary Change (Q2); Management, Monitoring, Policy and Law (Q2)";"Earth and Planetary Sciences; Environmental Science" +6307;15774;"Mycoses";journal;"09337407, 14390507";"Wiley-Blackwell Publishing Ltd";No;No;0,850;Q1;95;128;398;5928;1471;398;3,38;46,31;43,08;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1957-2026";"Dermatology (Q1); Infectious Diseases (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +6308;28839;"Nursing in Critical Care";journal;"14785153, 13621017";"Wiley-Blackwell Publishing Ltd";No;No;0,850;Q1;59;396;449;14254;1487;384;3,28;35,99;60,72;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2000, 2002-2026";"Critical Care Nursing (Q1)";"Nursing" +6309;21101109778;"Whiteness and Education";journal;"23793414, 23793406";"Informa UK Limited";No;No;0,850;Q1;18;39;54;2947;140;54;2,26;75,56;58,57;0;United Kingdom;Western Europe;"Informa UK Limited";"2016-2026";"Cultural Studies (Q1); Demography (Q1); Education (Q1)";"Social Sciences" +6310;29541;"BMC Musculoskeletal Disorders";journal;"14712474";"BioMed Central Ltd";Yes;No;0,850;Q2;141;1118;3160;42333;10076;3156;2,91;37,86;31,65;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2026";"Orthopedics and Sports Medicine (Q2); Rheumatology (Q2)";"Medicine" +6311;21101059717;"Cardio-Oncology";journal;"20573804";"BioMed Central Ltd";Yes;No;0,850;Q2;29;115;158;4880;564;148;3,52;42,43;40,52;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Cardiology and Cardiovascular Medicine (Q2); Oncology (Q2)";"Medicine" +6312;19700180534;"Interdisciplinary Sciences - Computational Life Sciences";journal;"19132751, 18671462";"Springer Science and Business Media Deutschland GmbH";No;No;0,850;Q2;43;124;184;5946;997;184;6,15;47,95;41,42;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2009-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Computer Science Applications (Q2); Health Informatics (Q2)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Medicine" +6313;21101028595;"JMIR Cardio";journal;"25611011";"JMIR Publications Inc.";Yes;No;0,850;Q2;24;44;103;1963;349;101;3,28;44,61;50,84;0;Canada;Northern America;"JMIR Publications Inc.";"2017-2026";"Cardiology and Cardiovascular Medicine (Q2); Health Informatics (Q2)";"Medicine" +6314;23081;"Journal of Pharmacokinetics and Pharmacodynamics";journal;"15738744, 1567567X";"Springer";No;No;0,850;Q2;77;60;154;2506;458;137;2,95;41,77;39,47;0;United States;Northern America;"Springer";"1996-1997, 1999, 2001-2026";"Pharmacology (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +6315;21101232716;"IEEE International Conference on Program Comprehension";conference and proceedings;"26437171, 26437147";"IEEE Computer Society";No;No;0,850;-;16;61;118;2783;474;114;3,69;45,62;32,37;0;United States;Northern America;"IEEE Computer Society";"2022, 2024-2025";"Hardware and Architecture; Software";"Computer Science" +6316;24580;"Animal Behaviour";journal;"00033472, 10958282";"Academic Press";No;No;0,849;Q1;202;323;631;23974;1588;616;2,22;74,22;46,39;0;United States;Northern America;"Academic Press";"1958-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +6317;21101199212;"Biomass (Switzerland)";journal;"26738783";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,849;Q1;17;82;120;6736;785;119;6,72;82,15;41,76;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Agronomy and Crop Science (Q1); Forestry (Q1); Renewable Energy, Sustainability and the Environment (Q2); Waste Management and Disposal (Q2)";"Agricultural and Biological Sciences; Energy; Environmental Science" +6318;19700173005;"Cancer Nanotechnology";journal;"18686958, 18686966";"BioMed Central Ltd";Yes;No;0,849;Q1;46;49;181;4607;1065;181;6,25;94,02;49,30;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Pharmaceutical Science (Q1); Physical and Theoretical Chemistry (Q1); Biomedical Engineering (Q2); Oncology (Q2)";"Chemistry; Engineering; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6319;21101198452;"Frontiers in Radiology";journal;"26738740";"Frontiers Media SA";Yes;No;0,849;Q1;14;76;133;2821;471;126;3,92;37,12;33,65;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +6320;4700152908;"Knowledge Management Research and Practice";journal;"14778238, 14778246";"Taylor and Francis Ltd.";No;No;0,849;Q1;62;105;198;8184;1280;192;6,02;77,94;38,97;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Library and Information Sciences (Q1); Management Information Systems (Q1); Business and International Management (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +6321;28837;"Nursing Forum";journal;"17446198, 00296473";"John Wiley and Sons Inc";No;No;0,849;Q1;59;95;263;4119;891;259;2,00;43,36;65,63;0;United States;Northern America;"John Wiley and Sons Inc";"1961-1981, 1984-1985, 1987-2000, 2002-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +6322;12863;"Optics Letters";journal;"01469592, 15394794";"Optica Publishing Group (formerly OSA)";Yes;No;0,849;Q1;313;1938;5100;34626;17200;4690;3,38;17,87;28,99;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"1977-2026";"Atomic and Molecular Physics, and Optics (Q1)";"Physics and Astronomy" +6323;21100898763;"Plant Direct";journal;"24754455";"John Wiley & Sons Inc.";Yes;No;0,849;Q1;39;90;266;5216;833;263;2,82;57,96;43,87;0;United States;Northern America;"John Wiley & Sons Inc.";"2017-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +6324;19916;"Research in Sports Medicine";journal;"15438635, 15438627";"Taylor and Francis Ltd.";No;No;0,849;Q1;54;70;207;2705;545;207;2,68;38,64;32,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)";"Health Professions; Medicine" +6325;29769;"Familial Cancer";journal;"15737292, 13899600";"Springer Science and Business Media B.V.";No;No;0,849;Q2;72;88;171;3346;391;164;2,19;38,02;60,45;3;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2001, 2003-2026";"Genetics (Q2); Genetics (clinical) (Q2); Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6326;21101311594;"Journal of Aging Research and Lifestyle";journal;"2534773X";"Serdi-Editions";Yes;No;0,849;Q2;4;32;18;1237;50;17;2,78;38,66;50,82;0;France;Western Europe;"Serdi-Editions";"2018, 2021, 2024-2026";"Geriatrics and Gerontology (Q2); Health Policy (Q2); Internal Medicine (Q2); Physiology (medical) (Q2)";"Medicine" +6327;21332;"European Journal of Pharmaceutics and Biopharmaceutics";journal;"18733441, 09396411";"Elsevier B.V.";No;No;0,848;Q1;201;237;783;14430;4093;771;5,26;60,89;47,83;0;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Pharmaceutical Science (Q1); Biotechnology (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6328;10300153301;"Expert Review of Clinical Pharmacology";journal;"17512433, 17512441";"Taylor and Francis Ltd.";No;No;0,848;Q1;73;98;343;7052;1144;305;3,19;71,96;44,73;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6329;145600;"International Journal of Law and Information Technology";journal;"09670769, 14643693";"Oxford University Press";No;No;0,848;Q1;28;19;61;2729;251;61;3,97;143,63;40,00;1;United Kingdom;Western Europe;"Oxford University Press";"1993-2026";"Law (Q1); Library and Information Sciences (Q1)";"Social Sciences" +6330;17987;"International Journal of Robust and Nonlinear Control";journal;"10498923, 10991239";"John Wiley and Sons Ltd";No;No;0,848;Q1;134;573;1768;23287;6069;1759;3,42;40,64;29,52;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1991-2026";"Aerospace Engineering (Q1); Chemical Engineering (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Biomedical Engineering (Q2); Control and Systems Engineering (Q2)";"Chemical Engineering; Engineering" +6331;20861;"Systematic and Applied Microbiology";journal;"16180984, 07232020";"Elsevier GmbH";No;No;0,848;Q1;123;59;140;3726;490;139;2,83;63,15;50,91;0;Germany;Western Europe;"Elsevier GmbH";"1983-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Applied Microbiology and Biotechnology (Q2); Microbiology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology" +6332;21101152701;"Biomolecules and Biomedicine";journal;"28310896, 2831090X";"Association of Basic Medical Sciences of FBIH";Yes;No;0,848;Q2;50;256;384;12369;1312;368;3,37;48,32;46,24;0;Bosnia and Herzegovina;Eastern Europe;"Association of Basic Medical Sciences of FBIH";"2023-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology" +6333;21100854130;"BMJ Open Gastroenterology";journal;"20544774";"BMJ Publishing Group";Yes;No;0,848;Q2;44;98;218;3701;691;212;2,58;37,77;41,06;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2014-2026";"Gastroenterology (Q2)";"Medicine" +6334;21100932650;"Current Opinion in Biomedical Engineering";journal;"24684511";"Elsevier B.V.";No;No;0,848;Q2;54;54;174;3092;763;158;4,29;57,26;50,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2)";"Chemical Engineering; Engineering; Materials Science; Medicine" +6335;21100852989;"Diagnostics";journal;"20754418";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,848;Q2;103;3238;9771;152881;41489;9631;4,36;47,21;42,00;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Clinical Biochemistry (Q2); Internal Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6336;11900154313;"Energy Efficiency";journal;"1570646X, 15706478";"Springer Netherlands";No;No;0,848;Q2;68;111;273;7015;1194;273;3,84;63,20;37,54;4;Netherlands;Western Europe;"Springer Netherlands";"2008-2026";"Energy (miscellaneous) (Q2)";"Energy" +6337;21101277814;"Innovation Medicine";journal;"29598745";"Innovation Press";Yes;No;0,848;Q2;11;63;97;3457;345;54;3,56;54,87;39,34;0;China;Asiatic Region;"Innovation Press";"2023-2026";"Cardiology and Cardiovascular Medicine (Q2); Epidemiology (Q2); Oncology (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6338;21100790809;"International Review of Social Psychology";journal;"23978570";"Ubiquity Press";Yes;Yes;0,848;Q2;32;16;57;1297;112;57;1,74;81,06;29,73;1;United Kingdom;Western Europe;"Ubiquity Press";"2016-2025";"Social Psychology (Q2)";"Psychology" +6339;19700175255;"Journal of Personnel Psychology";journal;"18665888, 21905150";"Hogrefe Publishing";No;No;0,848;Q2;44;21;60;1111;164;60;2,48;52,90;55,56;0;United States;Northern America;"Hogrefe Publishing";"2010-2026";"Applied Psychology (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Psychology" +6340;24413;"Community Dentistry and Oral Epidemiology";journal;"03015661, 16000528";"Blackwell Munksgaard";No;No;0,847;Q1;121;91;314;4115;918;291;2,98;45,22;58,40;2;Denmark;Western Europe;"Blackwell Munksgaard";"1973-2026";"Dentistry (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q2)";"Dentistry; Medicine" +6341;25955;"ESAIM - Control, Optimisation and Calculus of Variations";journal;"12623377, 12928119";"EDP Sciences";No;No;0,847;Q1;72;102;261;3844;403;261;1,36;37,69;21,19;0;France;Western Europe;"EDP Sciences";"1996-2026";"Computational Mathematics (Q1); Control and Optimization (Q1); Control and Systems Engineering (Q2)";"Engineering; Mathematics" +6342;27226;"Journal of Clinical Laboratory Analysis";journal;"08878013, 10982825";"Wiley-Liss Inc.";Yes;No;0,847;Q1;71;155;942;6516;3369;929;2,72;42,04;45,63;0;United States;Northern America;"Wiley-Liss Inc.";"1987-2026";"Medical Laboratory Technology (Q1); Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Hematology (Q2); Immunology and Allergy (Q2); Microbiology (medical) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +6343;4900152415;"Journal of Real-Time Image Processing";journal;"18618200, 18618219";"";No;No;0,847;Q1;52;215;407;8368;2312;403;6,44;38,92;31,09;0;Germany;Western Europe;"";"2006-2026";"Information Systems (Q1)";"Computer Science" +6344;11200153508;"Memory Studies";journal;"17506999, 17506980";"SAGE Publications Ltd";No;No;0,847;Q1;51;139;302;8061;693;286;2,08;57,99;61,80;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Cultural Studies (Q1); Experimental and Cognitive Psychology (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +6345;21100874334;"Russian Journal of Linguistics";journal;"26868024, 26870088";"RUDN University";Yes;Yes;0,847;Q1;19;40;122;1835;228;120;2,18;45,88;55,17;0;Russian Federation;Eastern Europe;"RUDN University";"2018-2025";"Linguistics and Language (Q1)";"Social Sciences" +6346;20960;"Science and Public Policy";journal;"03023427, 14715430";"Oxford University Press";No;No;0,847;Q1;91;73;254;5274;880;254;3,31;72,25;40,49;1;United Kingdom;Western Europe;"Oxford University Press";"1974, 1976-1982, 1984-2026";"Geography, Planning and Development (Q1); Public Administration (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +6347;14573;"Social Policy and Administration";journal;"01445596, 14679515";"Wiley-Blackwell Publishing Ltd";No;No;0,847;Q1;86;130;211;7482;764;211;3,38;57,55;58,22;11;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1967-2026";"Development (Q1); Public Administration (Q1); Social Work (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6348;21101039904;"Sports Medicine and Health Science";journal;"26663376";"KeAi Communications Co.";Yes;Yes;0,847;Q1;22;110;134;6380;450;130;3,15;58,00;40,53;1;China;Asiatic Region;"KeAi Communications Co.";"2019-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2); Physiology (medical) (Q2)";"Health Professions; Medicine" +6349;19700201534;"Beneficial Microbes";journal;"18762891, 18762883";"";Yes;No;0,847;Q2;74;63;130;3624;467;128;3,35;57,52;49,74;0;Netherlands;Western Europe;"";"2010-2026";"Microbiology (Q2); Microbiology (medical) (Q2)";"Immunology and Microbiology; Medicine" +6350;21100236016;"Journal of Islamic Marketing";journal;"17590833, 17590841";"Emerald Group Publishing Ltd.";No;No;0,847;Q2;71;229;463;20499;3984;462;8,54;89,52;36,12;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2026";"Marketing (Q2)";"Business, Management and Accounting" +6351;21101038828;"STAR Protocols";journal;"26661667";"Cell Press";Yes;No;0,847;Q2;34;731;2401;10784;3728;2397;1,41;14,75;43,57;2;United States;Northern America;"Cell Press";"2020-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Neuroscience" +6352;13848;"Wind Energy";journal;"10991824, 10954244";"John Wiley and Sons Ltd";Yes;No;0,847;Q2;123;92;249;4457;1045;249;3,70;48,45;18,67;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1977, 1998-2026";"Renewable Energy, Sustainability and the Environment (Q2)";"Energy" +6353;21100445819;"Arthroplasty Today";journal;"23523441";"Elsevier Inc.";Yes;No;0,846;Q1;38;268;739;7342;1713;699;2,17;27,40;19,91;0;United States;Northern America;"Elsevier Inc.";"2015-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +6354;144664;"British Food Journal";journal;"0007070X";"Emerald Publishing";No;No;0,846;Q1;116;448;823;30950;5055;817;6,12;69,08;46,51;0;United Kingdom;Western Europe;"Emerald Publishing";"1899-2026";"Business, Management and Accounting (miscellaneous) (Q1); Food Science (Q1)";"Agricultural and Biological Sciences; Business, Management and Accounting" +6355;16413;"Chemical Engineering Science";journal;"00092509";"Elsevier B.V.";No;No;0,846;Q1;233;1407;3167;73446;16101;3159;5,37;52,20;34,02;0;United Kingdom;Western Europe;"Elsevier B.V.";"1951-2026";"Applied Mathematics (Q1); Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1)";"Chemical Engineering; Chemistry; Engineering; Mathematics" +6356;26389;"Electronic Journal of Combinatorics";journal;"10778926, 10971440";"Australian National University";Yes;Yes;0,846;Q1;61;237;675;5417;597;674;0,81;22,86;23,44;0;United States;Northern America;"Australian National University";"1996-2026";"Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1); Theoretical Computer Science (Q1)";"Computer Science; Mathematics" +6357;26488;"Forum Mathematicum";journal;"09337741, 14355337";"Walter de Gruyter GmbH";No;No;0,846;Q1;43;99;259;2904;286;259;1,08;29,33;28,92;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1989-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +6358;16300154765;"Levant";journal;"00758914, 17563801";"Maney Publishing";No;No;0,846;Q1;31;26;69;2014;110;67;1,48;77,46;52,50;0;United Kingdom;Western Europe;"Maney Publishing";"1969-1988, 1990-1995, 1998-1999, 2002-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +6359;17158;"Textile Progress";journal;"17542278, 00405167";"Taylor and Francis Ltd.";No;No;0,846;Q1;39;4;13;1255;80;13;5,13;313,75;26,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1969-1978, 1981-1995, 1997-1998, 2000-2025";"Chemical Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q2)";"Chemical Engineering; Engineering; Materials Science" +6360;21615;"International Journal of Colorectal Disease";journal;"01791958, 14321262";"";No;No;0,846;Q2;108;240;729;8302;2027;704;2,72;34,59;31,64;0;Germany;Western Europe;"";"1986-2026";"Gastroenterology (Q2)";"Medicine" +6361;22903;"Oxford Economic Papers";journal;"00307653, 14643812";"Oxford University Press";No;No;0,846;Q2;84;55;171;2691;395;171;2,71;48,93;18,46;9;United Kingdom;Western Europe;"Oxford University Press";"1938-1942, 1945, 1947, 1949-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +6362;19700169607;"Annals of Public and Cooperative Economics";journal;"13704788, 14678292";"Wiley-Blackwell";No;No;0,845;Q1;52;52;144;4094;573;144;4,08;78,73;44,85;1;United Kingdom;Western Europe;"Wiley-Blackwell";"1925-1942, 1948-2026";"Sociology and Political Science (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +6363;4900152805;"Archaeology, Ethnology and Anthropology of Eurasia";journal;"15630110";"Elsevier";No;No;0,845;Q1;26;57;183;2127;121;183;0,70;37,32;42,98;0;Russian Federation;Eastern Europe;"Elsevier";"2006-2025";"Archeology (arts and humanities) (Q1); Cultural Studies (Q1)";"Arts and Humanities; Social Sciences" +6364;15237;"BMC Emergency Medicine";journal;"1471227X";"BioMed Central Ltd";Yes;No;0,845;Q1;56;261;577;9416;1775;570;3,02;36,08;35,87;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Emergency Medicine (Q1)";"Medicine" +6365;11500153402;"Discourse and Communication";journal;"17504813, 17504821";"SAGE Publications Ltd";No;No;0,845;Q1;46;44;127;2402;341;111;2,43;54,59;43,24;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2026";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +6366;26124;"Ethnic and Racial Studies";journal;"01419870, 14664356";"Routledge";No;No;0,845;Q1;132;320;559;16331;1639;498;2,50;51,03;61,19;4;United Kingdom;Western Europe;"Routledge";"1978-2026";"Anthropology (Q1); Cultural Studies (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6367;21100862198;"EURO Journal on Transportation and Logistics";journal;"21924384, 21924376";"Elsevier B.V.";Yes;No;0,845;Q1;33;21;70;1676;234;67;3,48;79,81;30,30;0;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Modeling and Simulation (Q1); Management Science and Operations Research (Q2); Transportation (Q2)";"Decision Sciences; Mathematics; Social Sciences" +6368;21100409311;"Future Internet";journal;"19995903";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,845;Q1;90;582;1268;33839;8439;1238;7,15;58,14;24,76;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Computer Networks and Communications (Q1)";"Computer Science" +6369;20537;"Journal of Behavioral Decision Making";journal;"08943257, 10990771";"John Wiley and Sons Ltd";No;No;0,845;Q1;99;46;155;2321;323;155;1,69;50,46;32,74;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1988-2026";"Arts and Humanities (miscellaneous) (Q1); Sociology and Political Science (Q1); Applied Psychology (Q2); Decision Sciences (miscellaneous) (Q2); Strategy and Management (Q2)";"Arts and Humanities; Business, Management and Accounting; Decision Sciences; Psychology; Social Sciences" +6370;34814;"Journal of Cereal Science";journal;"10959963, 07335210";"Academic Press";No;No;0,845;Q1;154;220;552;8119;2786;545;4,71;36,90;43,02;0;United States;Northern America;"Academic Press";"1983-2026";"Food Science (Q1); Biochemistry (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +6371;23842;"Journal of Classification";journal;"01764268, 14321343";"Springer New York";No;No;0,845;Q1;51;46;84;2056;240;76;2,05;44,70;28,04;0;United States;Northern America;"Springer New York";"1984-2026";"Library and Information Sciences (Q1); Mathematics (miscellaneous) (Q1); Psychology (miscellaneous) (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics; Psychology; Social Sciences" +6372;6000195388;"Journal of Physical Activity and Health";journal;"15433080, 15435474";"Human Kinetics Publishers Inc.";No;No;0,845;Q1;100;169;393;7419;1104;353;2,37;43,90;48,42;0;United States;Northern America;"Human Kinetics Publishers Inc.";"2004-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Epidemiology (Q2); Orthopedics and Sports Medicine (Q2); Public Health, Environmental and Occupational Health (Q2)";"Health Professions; Medicine" +6373;26363;"Journal of Refugee Studies";journal;"09516328, 14716925";"Oxford University Press";No;No;0,845;Q1;82;71;186;4254;508;186;2,57;59,92;72,22;3;United Kingdom;Western Europe;"Oxford University Press";"1988-2025";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +6374;21100215165;"Knowledge Management and E-Learning";journal;"20737904";"Hong Kong Bao Long Accounting And Secretarial Limited";Yes;Yes;0,845;Q1;37;18;102;1054;399;102;3,31;58,56;33,33;0;Hong Kong;Asiatic Region;"Hong Kong Bao Long Accounting And Secretarial Limited";"2009-2025";"Education (Q1); E-learning (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Social Sciences" +6375;21100386521;"Language, Cognition and Neuroscience";journal;"23273801, 23273798";"Routledge";No;No;0,845;Q1;102;89;245;6967;498;233;2,07;78,28;55,63;0;United Kingdom;Western Europe;"Routledge";"2013-2026";"Linguistics and Language (Q1); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)";"Neuroscience; Psychology; Social Sciences" +6376;4000149101;"Nanomedicine: Nanotechnology, Biology, and Medicine";journal;"15499634, 15499642";"Elsevier Inc.";No;No;0,845;Q1;166;79;308;4739;1502;306;4,97;59,99;41,58;0;United States;Northern America;"Elsevier Inc.";"2005-2026";"Pharmaceutical Science (Q1); Bioengineering (Q2); Biomedical Engineering (Q2); Materials Science (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Molecular Medicine (Q2); Nanoscience and Nanotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6377;17100154712;"Pakistan Veterinary Journal";journal;"02538318, 20747764";"University of Agriculture";Yes;No;0,845;Q1;44;222;393;12630;2213;393;6,53;56,89;40,55;0;Pakistan;Asiatic Region;"University of Agriculture";"2009-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +6378;19915;"Physician and Sportsmedicine";journal;"23263660, 00913847";"Taylor and Francis Ltd.";No;No;0,845;Q1;63;74;236;2635;619;231;2,46;35,61;30,77;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-2005, 2008-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)";"Health Professions; Medicine" +6379;26378;"Proceedings of the Royal Society of Edinburgh Section A: Mathematics";journal;"14737124, 03082105";"Cambridge University Press";No;No;0,845;Q1;67;172;346;5471;353;346;0,98;31,81;18,42;0;United Kingdom;Western Europe;"Cambridge University Press";"1975-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +6380;28540;"SIAM Journal on Computing";journal;"00975397, 10957111";"Society for Industrial and Applied Mathematics Publications";No;No;0,845;Q1;137;55;182;2909;383;179;2,12;52,89;13,14;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"1984-2025";"Computer Science (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1)";"Computer Science; Mathematics" +6381;21101056543;"BMJ Neurology Open";journal;"26326140";"BMJ Publishing Group";Yes;No;0,845;Q2;18;111;191;3752;466;190;2,43;33,80;44,90;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2019-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +6382;19700201458;"Carbon Management";journal;"17583012, 17583004";"Taylor and Francis Ltd.";Yes;No;0,845;Q2;57;55;122;3591;495;108;3,68;65,29;36,31;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +6383;110123;"Natural Resources Forum";journal;"01650203, 14778947";"John Wiley and Sons Inc";No;No;0,845;Q2;65;223;133;18494;754;133;6,01;82,93;29,48;3;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1976-2026";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +6384;28085;"Obstetrical and Gynecological Survey";journal;"00297828, 15339866";"Lippincott Williams and Wilkins";No;No;0,845;Q2;100;197;677;1909;514;171;0,72;9,69;55,81;0;United States;Northern America;"Lippincott Williams and Wilkins";"1946-2026";"Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)";"Medicine" +6385;21101212779;"Technological Sustainability";journal;"27541320, 27541312";"Emerald Publishing";No;No;0,845;Q2;13;30;61;1820;422;60;7,65;60,67;35,06;0;United Kingdom;Western Europe;"Emerald Publishing";"2022-2026";"Management of Technology and Innovation (Q2)";"Business, Management and Accounting" +6386;21101060132;"IEEE Journal of Radio Frequency Identification";journal;"24697281";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,844;Q1;34;90;292;3467;1268;282;4,30;38,52;24,24;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017-2026";"Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1)";"Computer Science; Engineering; Physics and Astronomy" +6387;29605;"Journal of Experimental Biology";journal;"14779145, 00220949";"Company of Biologists Ltd";No;No;0,844;Q1;228;544;1551;27489;3112;1112;1,92;50,53;41,66;0;United Kingdom;Western Europe;"Company of Biologists Ltd";"1926, 1945-1951, 1962-2026";"Animal Science and Zoology (Q1); Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Medicine (miscellaneous) (Q2); Molecular Biology (Q2); Physiology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +6388;18153;"Pain Research and Management";journal;"19181523, 12036765";"John Wiley and Sons Ltd";Yes;No;0,844;Q1;80;93;214;4664;825;213;3,36;50,15;46,41;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1996-2026";"Anesthesiology and Pain Medicine (Q1); Neurology (Q2)";"Medicine; Neuroscience" +6389;24899;"Photodermatology Photoimmunology and Photomedicine";journal;"09054383, 16000781";"Blackwell Munksgaard";No;No;0,844;Q1;76;68;284;2027;637;186;2,14;29,81;52,71;0;United Kingdom;Western Europe;"Blackwell Munksgaard";"1990-1992, 1994-2026";"Dermatology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Immunology (Q2); Immunology and Allergy (Q2); Medicine (miscellaneous) (Q2)";"Immunology and Microbiology; Medicine" +6390;17511;"Glycobiology";journal;"09596658, 14602423";"Oxford University Press";No;No;0,844;Q2;150;79;278;4157;820;268;2,88;52,62;39,94;0;United Kingdom;Western Europe;"Oxford University Press";"1990-2026";"Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology" +6391;144958;"Journal of Macromarketing";journal;"15526534, 02761467";"SAGE Publications Inc.";No;No;0,844;Q2;76;62;144;5165;512;141;3,25;83,31;44,23;0;United States;Northern America;"SAGE Publications Inc.";"1981-2026";"Marketing (Q2)";"Business, Management and Accounting" +6392;21100356018;"Big Data Research";journal;"22145796, 2214580X";"Elsevier Inc.";No;No;0,843;Q1;51;50;126;2214;691;124;5,62;44,28;33,72;1;United States;Northern America;"Elsevier Inc.";"2014-2026";"Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1); Computer Science Applications (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences" +6393;25751;"Earth Surface Processes and Landforms";journal;"01979337, 10969837";"John Wiley and Sons Ltd";No;No;0,843;Q1;163;258;746;19534;2282;722;2,95;75,71;31,38;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1981-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +6394;21101037328;"In Silico Plants";journal;"25175025";"Oxford University Press";Yes;No;0,843;Q1;20;22;68;1396;206;68;2,91;63,45;28,42;0;United States;Northern America;"Oxford University Press";"2019-2026";"Agronomy and Crop Science (Q1); Modeling and Simulation (Q1); Plant Science (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Mathematics" +6395;15951;"Journal of Medical Economics";journal;"13696998, 1941837X";"Taylor and Francis Ltd.";No;No;0,843;Q2;61;198;477;8263;1389;437;2,70;41,73;42,02;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Health Policy (Q2)";"Medicine" +6396;21101170020;"Solar Energy Advances";journal;"26671131";"Elsevier Ltd";Yes;No;0,843;Q2;17;47;65;3135;320;65;4,39;66,70;20,50;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Energy Engineering and Power Technology (Q2); Environmental Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Environmental Science" +6397;17914;"Venture Capital";journal;"14645343, 13691066";"Routledge";No;No;0,843;Q2;71;36;57;3701;245;54;4,37;102,81;41,35;2;United Kingdom;Western Europe;"Routledge";"1999-2026";"Business and International Management (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +6398;27139;"Australian Critical Care";journal;"10367314";"Elsevier Ireland Ltd";No;No;0,842;Q1;54;219;392;7982;1271;349;3,39;36,45;59,67;1;Ireland;Western Europe;"Elsevier Ireland Ltd";"1992-2026";"Critical Care Nursing (Q1); Emergency Nursing (Q1)";"Nursing" +6399;14991;"European Journal of Paediatric Neurology";journal;"15322130, 10903798";"W.B. Saunders Ltd";No;No;0,842;Q1;83;117;351;4107;817;277;2,26;35,10;62,07;1;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1997-2026";"Pediatrics, Perinatology and Child Health (Q1); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)";"Medicine" +6400;28025;"Gait and Posture";journal;"18792219, 09666362";"Elsevier B.V.";No;No;0,842;Q1;186;263;935;10223;2974;919;2,91;38,87;40,33;0;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Biophysics (Q1); Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +6401;16875;"IEEE Internet Computing";journal;"10897801, 19410131";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,842;Q1;127;53;161;832;734;155;3,51;15,70;25,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1997-2026";"Computer Networks and Communications (Q1)";"Computer Science" +6402;21101142662;"Laboratory Animal Research";journal;"17386055, 22337660";"BioMed Central Ltd";Yes;Yes;0,842;Q1;30;31;116;1678;494;116;3,09;54,13;35,96;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Veterinary (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Veterinary" +6403;21101299022;"npj Heritage Science";journal;"30593220";"Springer Science and Business Media Deutschland GmbH";No;No;0,842;Q1;50;689;883;37992;4933;870;5,64;55,14;42,47;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2025-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Chemistry (miscellaneous) (Q1); Conservation (Q1); Spectroscopy (Q1); Computer Science Applications (Q2); Materials Science (miscellaneous) (Q2)";"Arts and Humanities; Chemistry; Computer Science; Materials Science; Social Sciences" +6404;15753;"Pediatric Radiology";journal;"14321998, 03010449";"";No;No;0,842;Q1;108;347;857;9950;2169;717;2,22;28,67;47,10;0;Germany;Western Europe;"";"1973-2026";"Pediatrics, Perinatology and Child Health (Q1); Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +6405;21101063741;"Plant Phenome Journal";journal;"25782703";"John Wiley and Sons Ltd";Yes;No;0,842;Q1;21;40;84;2516;381;81;4,52;62,90;33,48;0;United States;Northern America;"John Wiley and Sons Ltd";"2018-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +6406;22284;"Seminars in Thoracic and Cardiovascular Surgery";journal;"15329488, 10430679";"W.B. Saunders";No;No;0,842;Q1;69;112;506;3389;648;235;1,26;30,26;23,72;0;United States;Northern America;"W.B. Saunders";"1989-2026";"Surgery (Q1); Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +6407;25391;"Annales d'Endocrinologie";journal;"00034266, 22133941";"Elsevier Masson s.r.l.";No;No;0,842;Q2;53;107;229;3923;559;170;2,33;36,66;57,20;0;France;Western Europe;"Elsevier Masson s.r.l.";"1946-1947, 1949-2026";"Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6408;21101234810;"INFORMS Journal on Applied Analytics";journal;"26440865, 26440873";"INFORMS Inst.for Operations Res.and the Management Sciences";No;No;0,842;Q2;15;0;42;0;116;40;0,00;0,00;0,00;0;United States;Northern America;"INFORMS Inst.for Operations Res.and the Management Sciences";"2019-2022";"Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +6409;27486;"Area";journal;"14754762, 00040894";"Wiley-Blackwell Publishing Ltd";No;No;0,841;Q1;106;104;206;3617;592;200;2,40;34,78;59,12;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1976, 1978-2026";"Geography, Planning and Development (Q1)";"Social Sciences" +6410;12164;"Brain and Language";journal;"10902155, 0093934X";"Academic Press Inc.";No;No;0,841;Q1;152;73;195;5725;492;176;2,34;78,42;56,38;0;United States;Northern America;"Academic Press Inc.";"1974-2026";"Linguistics and Language (Q1); Speech and Hearing (Q1); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)";"Health Professions; Neuroscience; Psychology; Social Sciences" +6411;21100283790;"Case Studies on Transport Policy";journal;"22136258, 2213624X";"Elsevier B.V.";No;No;0,841;Q1;50;291;547;16402;2411;540;3,93;56,36;32,05;4;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Geography, Planning and Development (Q1); Urban Studies (Q1); Transportation (Q2)";"Social Sciences" +6412;23816;"Journal of Algebraic Combinatorics";journal;"09259899, 15729192";"Springer Netherlands";No;No;0,841;Q1;49;116;324;2766;338;320;0,98;23,84;31,36;0;Netherlands;Western Europe;"Springer Netherlands";"1992-2026";"Algebra and Number Theory (Q1); Discrete Mathematics and Combinatorics (Q1)";"Mathematics" +6413;5700185131;"Journal of Management Education";journal;"10525629, 15526658";"SAGE Publications Inc.";No;No;0,841;Q1;68;37;123;2277;461;98;3,31;61,54;54,69;0;United States;Northern America;"SAGE Publications Inc.";"1975-1984, 1986-2026";"Business, Management and Accounting (miscellaneous) (Q1); Education (Q1)";"Business, Management and Accounting; Social Sciences" +6414;12132;"Boundary-Layer Meteorology";journal;"00068314, 15731472";"Springer Netherlands";No;No;0,841;Q2;137;49;221;2835;605;218;2,62;57,86;24,54;0;Netherlands;Western Europe;"Springer Netherlands";"1970-2026";"Atmospheric Science (Q2)";"Earth and Planetary Sciences" +6415;21101194311;"Cleaner and Circular Bioeconomy";journal;"27728013";"Elsevier B.V.";Yes;No;0,841;Q2;18;58;116;3998;648;115;4,98;68,93;37,50;2;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Economics and Econometrics (Q2); Environmental Science (miscellaneous) (Q2); Finance (Q2)";"Economics, Econometrics and Finance; Environmental Science" +6416;4400151523;"Clinical Practice and Epidemiology in Mental Health";journal;"17450179";"Bentham Science Publishers";Yes;No;0,841;Q2;65;23;73;1120;264;71;3,82;48,70;47,86;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2005-2025";"Epidemiology (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +6417;21101188713;"GigaByte";journal;"27094715";"GigaScience Press";Yes;No;0,841;Q2;14;24;110;1058;195;110;1,46;44,08;38,50;0;China;Asiatic Region;"GigaScience Press";"2020-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biotechnology (Q2); Genetics (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology" +6418;13465;"Psychological Reports";journal;"00332941, 1558691X";"SAGE Publications Inc.";No;No;0,841;Q2;91;490;557;32409;1807;550;3,04;66,14;53,66;6;United States;Northern America;"SAGE Publications Inc.";"1955, 1960-2026";"Psychology (miscellaneous) (Q2)";"Psychology" +6419;21100902913;"Transplantation Direct";journal;"23738731";"Wolters Kluwer Health";Yes;No;0,841;Q2;39;128;464;4529;1057;449;2,36;35,38;38,39;0;United States;Northern America;"Wolters Kluwer Health";"2015-2026";"Transplantation (Q2)";"Medicine" +6420;19700177325;"China Communications";journal;"16735447";"Editorial Board of Journal on Communications";Yes;No;0,840;Q1;76;274;763;9720;2558;739;3,23;35,47;29,72;0;China;Asiatic Region;"Editorial Board of Journal on Communications";"2008-2026";"Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1)";"Computer Science; Engineering" +6421;25827;"Chinese Journal of Polymer Science (English Edition)";journal;"02567679, 14396203";"Springer Verlag";No;No;0,840;Q1;57;233;586;12247;2421;559;4,36;52,56;35,05;0;Germany;Western Europe;"Springer Verlag";"1985-2026";"Chemical Engineering (miscellaneous) (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)";"Chemical Engineering; Chemistry; Materials Science" +6422;21101020045;"Integrative Medicine Research";journal;"22134239, 22134220";"Korea Institute of Oriental Medicine";Yes;Yes;0,840;Q1;24;67;159;3228;685;140;5,05;48,18;50,55;1;South Korea;Asiatic Region;"Korea Institute of Oriental Medicine";"2018, 2020-2026";"Complementary and Alternative Medicine (Q1)";"Medicine" +6423;24863;"Journal of Dermatology";journal;"13468138, 03852407";"John Wiley and Sons Inc";No;No;0,840;Q1;90;550;1164;9659;1951;644;1,77;17,56;39,21;0;United States;Northern America;"John Wiley and Sons Inc";"1974-2026";"Dermatology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6424;15656;"Journal of Plant Nutrition and Soil Science";journal;"15222624, 14368730";"Wiley-VCH Verlag";No;No;0,840;Q1;113;89;211;5590;771;206;3,36;62,81;29,35;0;Germany;Western Europe;"Wiley-VCH Verlag";"1996-2026";"Plant Science (Q1); Soil Science (Q1)";"Agricultural and Biological Sciences" +6425;21101058922;"Legume Science";journal;"26396181";"John Wiley and Sons Inc";Yes;No;0,840;Q1;34;53;148;3595;846;145;4,88;67,83;40,86;0;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Food Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +6426;144796;"Linguistic Review";journal;"01676318, 16133676";"De Gruyter Mouton";No;No;0,840;Q1;46;19;65;1404;63;65;0,93;73,89;34,29;0;Germany;Western Europe;"De Gruyter Mouton";"1981-1987, 1990-2026";"Linguistics and Language (Q1)";"Social Sciences" +6427;14775;"Scandinavian Journal of Psychology";journal;"14679450, 00365564";"Wiley-Blackwell Publishing Ltd";No;No;0,840;Q1;95;85;262;5534;762;262;2,51;65,11;58,04;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1960-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Medicine; Psychology" +6428;19010;"Stochastic Environmental Research and Risk Assessment";journal;"14363259, 14363240";"Springer Science and Business Media Deutschland GmbH";No;No;0,840;Q1;96;303;775;19895;3419;774;4,26;65,66;29,63;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996, 1999-2026";"Safety, Risk, Reliability and Quality (Q1); Statistics and Probability (Q1); Water Science and Technology (Q1); Environmental Chemistry (Q2); Environmental Engineering (Q2); Environmental Science (miscellaneous) (Q2)";"Engineering; Environmental Science; Mathematics" +6429;17483;"Zeitschrift fur Medizinische Physik";journal;"18764436, 09393889";"Elsevier GmbH";Yes;No;0,840;Q1;45;91;133;3019;533;119;4,62;33,18;24,58;0;Germany;Western Europe;"Elsevier GmbH";"2000-2026";"Biophysics (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Radiological and Ultrasound Technology (Q2)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +6430;14287;"Behavioural Neurology";journal;"09534180, 18758584";"John Wiley and Sons Ltd";Yes;No;0,840;Q2;66;29;102;1482;397;100;4,27;51,10;47,47;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1988-1998, 2000-2001, 2003-2026";"Medicine (miscellaneous) (Q2); Neurology (Q2); Neurology (clinical) (Q2); Neuropsychology and Physiological Psychology (Q2)";"Medicine; Neuroscience; Psychology" +6431;21355;"Expert Review of Anticancer Therapy";journal;"14737140, 17448328";"Taylor and Francis Ltd.";No;No;0,840;Q2;91;154;365;11135;1036;335;2,84;72,31;36,35;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Oncology (Q2); Pharmacology (medical) (Q2)";"Medicine" +6432;145523;"Cognition, Technology and Work";journal;"14355558, 14355566";"Springer London";No;No;0,839;Q1;59;65;107;4066;590;107;5,11;62,55;38,58;0;United Kingdom;Western Europe;"Springer London";"2002-2026";"Philosophy (Q1); Computer Science Applications (Q2); Human-Computer Interaction (Q2)";"Arts and Humanities; Computer Science" +6433;21101022413;"International Journal of Information Technology (Singapore)";journal;"25112104, 25112112";"Springer Science + Business Media";No;No;0,839;Q1;59;844;1327;27948;8023;1304;6,37;33,11;36,81;0;Singapore;Asiatic Region;"Springer Science + Business Media";"2017-2026";"Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1); Information Systems (Q1); Artificial Intelligence (Q2); Computer Science Applications (Q2)";"Computer Science; Engineering; Mathematics" +6434;21100899300;"Journal of Accounting in Emerging Economies";journal;"20421168, 20421176";"Emerald Group Publishing Ltd.";No;No;0,839;Q1;37;65;121;5553;786;120;6,53;85,43;32,70;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2015-2026";"Development (Q1); Sociology and Political Science (Q1); Accounting (Q2)";"Business, Management and Accounting; Social Sciences" +6435;3600148104;"Journal of Family Studies";journal;"13229400";"Taylor and Francis Ltd.";No;No;0,839;Q1;37;87;270;5715;822;269;2,96;65,69;76,15;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995, 1997-2002, 2005-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +6436;7000153203;"Journal of Studies on Alcohol and Drugs";journal;"19371888, 19384114";"Alcohol Research Documentation Inc.";No;No;0,839;Q1;145;111;335;2935;689;293;1,92;26,44;55,19;1;United States;Northern America;"Alcohol Research Documentation Inc.";"2007-2026";"Health (social science) (Q1); Psychiatry and Mental Health (Q2); Toxicology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +6437;21100464918;"NeoBiota";journal;"16190033, 13142488";"Pensoft Publishers";Yes;No;0,839;Q1;46;130;257;10276;864;255;3,19;79,05;40,47;1;Bulgaria;Eastern Europe;"Pensoft Publishers";"2015-2026";"Animal Science and Zoology (Q1); Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Plant Science (Q1); Ecological Modeling (Q2)";"Agricultural and Biological Sciences; Environmental Science" +6438;17700156753;"Journal of Financial Services Marketing";journal;"14791846, 13630539";"Palgrave Macmillan Ltd.";No;No;0,839;Q2;38;33;178;2854;1152;177;7,01;86,48;37,35;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2004, 2009-2026";"Finance (Q2); Marketing (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +6439;17282;"Learning and Memory";journal;"10720502, 15495485";"Cold Spring Harbor Laboratory Press";No;No;0,839;Q2;156;30;142;1551;263;136;1,47;51,70;56,69;0;United States;Northern America;"Cold Spring Harbor Laboratory Press";"1994-2026";"Cognitive Neuroscience (Q2); Neuropsychology and Physiological Psychology (Q2); Cellular and Molecular Neuroscience (Q3)";"Neuroscience; Psychology" +6440;13600;"Georgetown Law Journal";journal;"00168092";"Georgetown Law Journal Association";No;No;0,838;Q1;62;16;63;5617;74;63;1,25;351,06;50,00;0;United States;Northern America;"Georgetown Law Journal Association";"1973-1974, 1976-1977, 1979, 1981, 1983-1986, 1988, 1992, 1994-2020, 2022-2025";"Law (Q1)";"Social Sciences" +6441;5700181569;"Journal of Gambling Studies";journal;"10505350, 15733602";"Springer International Publishing AG";No;No;0,838;Q1;97;130;303;6918;968;303;3,17;53,22;50,33;3;United States;Northern America;"Springer International Publishing AG";"1990-2026";"Sociology and Political Science (Q1); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +6442;17900156729;"Journal of Human Capital";journal;"19328664, 19328575";"University of Chicago Press";No;No;0,838;Q1;32;21;51;1318;67;51;1,32;62,76;44,00;4;United States;Northern America;"University of Chicago Press";"2009-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +6443;21101021489;"Socius";journal;"23780231";"SAGE Publications Inc.";Yes;No;0,838;Q1;50;123;401;8230;931;401;1,92;66,91;50,56;4;United States;Northern America;"SAGE Publications Inc.";"2015-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +6444;21101162823;"Biotechnology Notes";journal;"26659069";"KeAi Communications Co.";No;No;0,838;Q2;13;24;59;1753;310;52;7,05;73,04;28,99;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Bioengineering (Q2); Biomedical Engineering (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering" +6445;21101081716;"Current Research in Behavioral Sciences";journal;"26665182";"Elsevier B.V.";Yes;No;0,838;Q2;22;29;84;1721;281;84;3,54;59,34;57,55;1;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Behavioral Neuroscience (Q2); Psychology (miscellaneous) (Q2)";"Neuroscience; Psychology" +6446;19900193217;"Journal of Emerging Technologies in Accounting";journal;"15541908, 15587940";"American Accounting Association";No;No;0,838;Q2;34;19;86;948;363;77;3,56;49,89;30,77;0;United States;Northern America;"American Accounting Association";"2009-2025";"Accounting (Q2); Computer Science Applications (Q2)";"Business, Management and Accounting; Computer Science" +6447;21101347331;"Agrochemicals";journal;"28133145";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,837;Q1;10;15;54;807;416;52;8,37;53,80;38,60;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Chemistry; Environmental Science" +6448;21100854825;"Current Trauma Reports";journal;"21986096";"Springer Science and Business Media Deutschland GmbH";No;No;0,837;Q1;20;24;53;1283;179;53;2,76;53,46;42,35;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2015-2026";"Rehabilitation (Q1); Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +6449;12100156346;"Interpreter and Translator Trainer";journal;"1750399X, 17570417";"Taylor and Francis Ltd.";No;No;0,837;Q1;41;27;96;1280;297;94;3,08;47,41;61,54;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +6450;37206;"Soil Science Society of America Journal";journal;"14350661, 03615995";"John Wiley & Sons Inc.";No;No;0,837;Q1;207;180;395;10954;1263;390;2,75;60,86;31,78;0;United States;Northern America;"John Wiley & Sons Inc.";"1937, 1949, 1955, 1958-1961, 1963-1964, 1966-1969, 1971-2026";"Soil Science (Q1)";"Agricultural and Biological Sciences" +6451;14538;"Developmental Dynamics";journal;"10588388, 10970177";"Wiley-Liss Inc.";No;No;0,837;Q2;161;119;288;7262;540;250;1,59;61,03;45,76;0;United States;Northern America;"Wiley-Liss Inc.";"1992-2026";"Developmental Biology (Q2)";"Biochemistry, Genetics and Molecular Biology" +6452;21101195082;"Frontiers in Clinical Diabetes and Healthcare";journal;"26736616";"Frontiers Media SA";Yes;No;0,837;Q2;15;84;189;3436;560;177;3,28;40,90;49,30;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Endocrinology, Diabetes and Metabolism (Q2)";"Medicine" +6453;19950;"Journal of Nephrology";journal;"17246059, 11218428";"Oxford University Press";No;No;0,837;Q2;87;360;964;8589;2073;726;2,00;23,86;43,66;0;United Kingdom;Western Europe;"Oxford University Press";"1989-2025";"Nephrology (Q2)";"Medicine" +6454;32845;"American Anthropologist";journal;"00027294, 15481433";"John Wiley & Sons Inc.";No;No;0,836;Q1;110;102;233;4463;512;177;1,64;43,75;76,52;0;United States;Northern America;"John Wiley & Sons Inc.";"1888-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +6455;100147352;"Educational Measurement: Issues and Practice";journal;"17453992, 07311745";"Wiley-Blackwell Publishing Ltd";No;No;0,836;Q1;70;28;144;867;222;90;1,56;30,96;45,28;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1982-2026";"Education (Q1)";"Social Sciences" +6456;21101093031;"F and S Reviews";journal;"26665719";"";No;No;0,836;Q1;13;18;49;2315;126;46;2,28;128,61;51,58;0;United States;Northern America;"";"2020-2025";"Reproductive Medicine (Q1); Obstetrics and Gynecology (Q2)";"Medicine" +6457;21101328546;"High Entropy Alloys and Materials";journal;"27315827, 27315819";"Springer Publishing Company";No;No;0,836;Q1;10;26;48;2169;209;47;4,35;83,42;13,45;0;United States;Northern America;"Springer Publishing Company";"2023-2026";"Inorganic Chemistry (Q1); Metals and Alloys (Q1); Materials Science (miscellaneous) (Q2)";"Chemistry; Materials Science" +6458;5700178973;"International Journal of Bilingualism";journal;"13670069, 17566878";"SAGE Publications Ltd";No;No;0,836;Q1;72;185;161;11105;435;160;3,02;60,03;64,63;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1997-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +6459;21101288670;"Journal of Behavioral Data Science";journal;"25758306, 25741284";"International Society for Data Science and Analytics";No;No;0,836;Q1;7;8;31;419;109;31;4,26;52,38;33,33;0;United States;Northern America;"International Society for Data Science and Analytics";"2021-2025";"Applied Mathematics (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q1)";"Mathematics" +6460;200147109;"Journal of Education for Teaching";journal;"13600540, 02607476";"Routledge";No;No;0,836;Q1;62;75;182;3038;511;166;2,91;40,51;62,25;1;United Kingdom;Western Europe;"Routledge";"1981-1998, 2001-2003, 2005-2026";"Education (Q1)";"Social Sciences" +6461;12862;"Optics Express";journal;"10944087";"Optica Publishing Group (formerly OSA)";Yes;No;0,836;Q1;338;4054;10852;150341;39316;10852;3,53;37,08;28,02;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"1997-2026";"Atomic and Molecular Physics, and Optics (Q1)";"Physics and Astronomy" +6462;21790;"Antiviral Therapy";journal;"20402058, 13596535";"Sage Publications";Yes;No;0,836;Q2;96;18;74;745;194;70;3,34;41,39;48,02;0;United Kingdom;Western Europe;"Sage Publications";"1996-2025";"Infectious Diseases (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6463;19900192031;"International Journal of Biomaterials";journal;"16878787, 16878795";"John Wiley and Sons Ltd";Yes;No;0,836;Q2;50;23;116;1920;769;116;4,26;83,48;38,46;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2026";"Biomaterials (Q2); Biomedical Engineering (Q2)";"Engineering; Materials Science" +6464;21101288489;"International Journal of Cognitive Behavioral Therapy";journal;"30593042";"Springer Science and Business Media Deutschland GmbH";No;No;0,836;Q2;43;37;105;2187;255;105;2,13;59,11;47,77;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2025-2026";"Experimental and Cognitive Psychology (Q2)";"Psychology" +6465;130032;"Journal of Cosmology and Astroparticle Physics";journal;"14757516";"Institute of Physics";No;No;0,836;Q2;160;956;2459;83717;7369;2457;2,93;87,57;22,96;0;United Kingdom;Western Europe;"Institute of Physics";"2003-2025";"Astronomy and Astrophysics (Q2)";"Physics and Astronomy" +6466;21100286958;"Journal of Space Weather and Space Climate";journal;"21157251";"EDP Sciences";Yes;No;0,836;Q2;51;58;109;3039;323;109;2,84;52,40;23,35;0;France;Western Europe;"EDP Sciences";"2011-2026";"Atmospheric Science (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences" +6467;16467;"Kaohsiung Journal of Medical Sciences";journal;"24108650, 1607551X";"John Wiley and Sons Inc";Yes;No;0,836;Q2;57;160;396;4844;1095;308;2,82;30,28;40,45;0;Singapore;Asiatic Region;"John Wiley and Sons Inc";"1996-2002, 2006-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +6468;21100848457;"Regenerative Therapy";journal;"23523204";"Japanese Society of Regenerative Medicine";Yes;No;0,836;Q2;42;222;422;13280;1782;414;4,25;59,82;36,55;0;Japan;Asiatic Region;"Japanese Society of Regenerative Medicine";"2015-2026";"Biomaterials (Q2); Biomedical Engineering (Q2); Developmental Biology (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +6469;21100854829;"Tropical Diseases, Travel Medicine and Vaccines";journal;"20550936";"BioMed Central Ltd";Yes;No;0,836;Q2;28;45;76;2419;244;74;3,23;53,76;41,38;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6470;21101282698;"BJR Open";journal;"25139878";"Oxford University Press";Yes;No;0,835;Q1;21;31;119;1550;384;115;3,62;50,00;36,65;1;United Kingdom;Western Europe;"Oxford University Press";"2019-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +6471;24337;"Dermatologic Clinics";journal;"07338635, 15580520";"W.B. Saunders";No;No;0,835;Q1;93;60;193;3589;562;168;3,46;59,82;57,14;0;United States;Northern America;"W.B. Saunders";"1983-2026";"Dermatology (Q1)";"Medicine" +6472;15430;"Journal of Community Psychology";journal;"15206629, 00904392";"Wiley-Liss Inc.";No;No;0,835;Q1;107;97;474;6350;1426;467;2,61;65,46;68,04;1;United States;Northern America;"Wiley-Liss Inc.";"1973-2026";"Social Work (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +6473;19900190213;"Journal of Current Southeast Asian Affairs";journal;"18684882, 18681034";"SAGE Publications Ltd";Yes;Yes;0,835;Q1;26;28;59;1665;209;59;3,05;59,46;20,00;2;Germany;Western Europe;"SAGE Publications Ltd";"2015-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6474;25097;"Mathematika";journal;"20417942, 00255793";"John Wiley & Sons Inc.";No;No;0,835;Q1;33;57;157;1411;131;157;0,66;24,75;15,04;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"1954-2007, 2009-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +6475;21101208908;"Open Praxis";journal;"2304070X, 13699997";"International Council for Open and Distance Education";Yes;Yes;0,835;Q1;21;46;102;2884;631;92;8,03;62,70;42,24;1;Norway;Western Europe;"International Council for Open and Distance Education";"2020-2025";"Education (Q1); Library and Information Sciences (Q1)";"Social Sciences" +6476;21100870078;"PFG - Journal of Photogrammetry, Remote Sensing and Geoinformation Science";journal;"25122819, 25122789";"Springer International Publishing AG";No;No;0,835;Q1;39;41;111;2130;391;94;3,80;51,95;22,63;0;Switzerland;Western Europe;"Springer International Publishing AG";"2017-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1); Instrumentation (Q1)";"Earth and Planetary Sciences; Physics and Astronomy; Social Sciences" +6477;21076;"Sports Biomechanics";journal;"17526116, 14763141";"Taylor and Francis Ltd.";No;No;0,835;Q1;61;271;473;11206;1351;459;2,85;41,35;25,31;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)";"Health Professions; Medicine" +6478;14036;"Theory into Practice";journal;"00405841, 15430421";"Routledge";No;No;0,835;Q1;90;46;121;1811;367;116;2,24;39,37;65,57;0;United States;Northern America;"Routledge";"1962-2026";"Education (Q1)";"Social Sciences" +6479;19605;"Australian and New Zealand Journal of Public Health";journal;"13260200, 17536405";"Elsevier B.V.";Yes;No;0,835;Q2;94;75;322;2498;808;292;2,40;33,31;65,17;2;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6480;19187;"Clinical Rheumatology";journal;"14349949, 07703198";"Springer Science and Business Media Deutschland GmbH";No;No;0,835;Q2;108;593;1283;20104;3185;1097;2,43;33,90;49,27;0;United Kingdom;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1982-2026";"Medicine (miscellaneous) (Q2); Rheumatology (Q2)";"Medicine" +6481;21100868211;"ESC Heart Failure";journal;"20555822";"John Wiley and Sons Inc";Yes;No;0,835;Q2;67;456;1293;16384;5032;1231;3,82;35,93;33,58;4;United States;Northern America;"John Wiley and Sons Inc";"2014-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +6482;57468;"Journal of Preventive Medicine and Hygiene";journal;"24214248, 11212233";"Pacini Editore Srl";Yes;No;0,835;Q2;43;72;265;2452;982;252;1,72;34,06;53,48;0;Italy;Western Europe;"Pacini Editore Srl";"1992-1995, 2004-2025";"Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6483;28468;"Computers and Mathematics with Applications";journal;"18737668";"Elsevier Ltd";No;No;0,834;Q1;165;359;1236;15328;3351;1228;2,71;42,70;25,03;0;United Kingdom;Western Europe;"Elsevier Ltd";"1975-2026";"Computational Mathematics (Q1); Computational Theory and Mathematics (Q1); Modeling and Simulation (Q1)";"Computer Science; Mathematics" +6484;21100415545;"International Journal for Uncertainty Quantification";journal;"21525080, 21525099";"Begell House Inc.";No;No;0,834;Q1;31;23;72;938;140;72;1,55;40,78;20,78;0;United States;Northern America;"Begell House Inc.";"2014-2025";"Control and Optimization (Q1); Discrete Mathematics and Combinatorics (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q2)";"Mathematics" +6485;4000151101;"Journal of Cosmetic Dermatology";journal;"14732165, 14732130";"John Wiley and Sons Inc";No;No;0,834;Q1;75;788;2166;21579;6066;1674;3,10;27,38;52,48;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2002, 2004-2026";"Dermatology (Q1)";"Medicine" +6486;20329;"Journal of Political Ideologies";journal;"13569317, 14699613";"Taylor and Francis Ltd.";No;No;0,834;Q1;48;69;92;4092;259;85;2,96;59,30;25,77;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +6487;25917;"Journal of Polymers and the Environment";journal;"15662543, 15728919";"Springer";No;No;0,834;Q1;118;320;1199;21149;7454;1199;6,30;66,09;44,55;0;United States;Northern America;"Springer";"2000-2026";"Materials Chemistry (Q1); Polymers and Plastics (Q1); Environmental Engineering (Q2)";"Environmental Science; Materials Science" +6488;27628;"Journal of Psychosomatic Obstetrics and Gynecology";journal;"0167482X, 17438942";"Taylor and Francis Ltd.";Yes;No;0,834;Q1;82;41;151;1493;453;144;2,71;36,41;76,54;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-2026";"Reproductive Medicine (Q1); Clinical Psychology (Q2); Obstetrics and Gynecology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +6489;14788;"Human Performance";journal;"08959285, 15327043";"Routledge";No;No;0,834;Q2;87;14;42;1158;125;41;2,48;82,71;36,07;0;United States;Northern America;"Routledge";"1988-2026";"Applied Psychology (Q2); Organizational Behavior and Human Resource Management (Q2); Psychology (miscellaneous) (Q2)";"Business, Management and Accounting; Psychology" +6490;15509;"Journal of Genetic Counseling";journal;"10597700, 15733599";"Kluwer Academic/Human Sciences Press Inc.";No;No;0,834;Q2;70;295;384;12475;1104;369;2,72;42,29;79,17;0;United States;Northern America;"Kluwer Academic/Human Sciences Press Inc.";"1992-2026";"Genetics (clinical) (Q2)";"Medicine" +6491;21100873858;"Sustainable Energy and Fuels";journal;"23984902";"Royal Society of Chemistry";No;No;0,834;Q2;99;404;1391;30524;6265;1385;4,42;75,55;30,29;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2017-2026";"Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy" +6492;19900192548;"Conservation and Society";journal;"09724923, 09753133";"Wolters Kluwer Medknow Publications";Yes;No;0,833;Q1;58;11;64;606;216;63;1,97;55,09;37,50;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2007-2025";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1); Management, Monitoring, Policy and Law (Q2)";"Agricultural and Biological Sciences; Environmental Science" +6493;145273;"Documenta Mathematica";journal;"14310635, 14310643";"European Mathematical Society Publishing House";Yes;Yes;0,833;Q1;38;37;141;1379;105;141;0,70;37,27;12,99;0;Germany;Western Europe;"European Mathematical Society Publishing House";"2002-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +6494;21100899437;"Frontline Learning Research";journal;"22953159";"European Association for Research on Learning and Instruction";Yes;No;0,833;Q1;32;14;34;843;106;34;3,12;60,21;50,00;0;Belgium;Western Europe;"European Association for Research on Learning and Instruction";"2013-2025";"Education (Q1)";"Social Sciences" +6495;21101259094;"IEEE Networking Letters";journal;"25763156";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,833;Q1;24;78;164;1103;618;163;3,52;14,14;28,52;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Communication (Q1); Electrical and Electronic Engineering (Q1); Hardware and Architecture (Q2); Information Systems (Q2)";"Computer Science; Engineering; Social Sciences" +6496;145557;"International Journal of Lexicography";journal;"09503846, 14774577";"Oxford University Press";No;No;0,833;Q1;40;21;70;1378;124;68;2,30;65,62;51,35;0;United Kingdom;Western Europe;"Oxford University Press";"1988-2026";"Linguistics and Language (Q1)";"Social Sciences" +6497;20000195001;"Media International Australia";journal;"1329878X, 2200467X";"SAGE Publications Inc.";No;No;0,833;Q1;42;98;135;5498;439;135;3,11;56,10;53,18;0;Australia;Pacific Region;"SAGE Publications Inc.";"2008-2026";"Communication (Q1); Cultural Studies (Q1)";"Social Sciences" +6498;16532;"Physiology and Molecular Biology of Plants";journal;"09740430, 09715894";"Springer";No;No;0,833;Q1;71;136;411;10665;1854;410;3,85;78,42;41,35;1;India;Asiatic Region;"Springer";"2000-2026";"Plant Science (Q1); Molecular Biology (Q2); Physiology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +6499;21100924251;"SAGE Open Nursing";journal;"23779608";"SAGE Publications Inc.";Yes;No;0,833;Q1;33;224;619;8708;2154;605;3,11;38,88;57,78;0;United States;Northern America;"SAGE Publications Inc.";"2015-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +6500;21101054326;"Studies in Big Data";book series;"21976511, 21976503";"Springer Science and Business Media Deutschland GmbH";No;No;0,833;Q1;43;431;1055;11785;1783;1;1,96;27,34;0,00;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Engineering (miscellaneous) (Q1); Artificial Intelligence (Q2); Computer Science Applications (Q2); Control and Systems Engineering (Q2)";"Computer Science; Engineering" +6501;27388;"Acta Petrologica Sinica";journal;"20958927, 10000569";"Science Press";No;No;0,833;Q2;113;154;647;14258;1711;646;2,67;92,58;30,05;0;China;Asiatic Region;"Science Press";"1980-1983, 1986-2025";"Geochemistry and Petrology (Q2)";"Earth and Planetary Sciences" +6502;19700175044;"Clinical and Experimental Gastroenterology";journal;"11787023";"Dove Medical Press Ltd";Yes;No;0,833;Q2;53;25;75;1232;222;74;2,47;49,28;33,95;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2008, 2010-2026";"Gastroenterology (Q2)";"Medicine" +6503;3500148006;"Clinical and Translational Oncology";journal;"1699048X, 16993055";"Springer Science and Business Media Deutschland GmbH";No;No;0,833;Q2;69;515;813;24468;2443;802;2,81;47,51;49,95;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2000-2026";"Medicine (miscellaneous) (Q2); Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6504;24635;"European Journal of Contraception and Reproductive Health Care";journal;"14730782, 13625187";"Taylor and Francis Ltd.";No;No;0,833;Q2;58;68;167;1874;406;149;2,02;27,56;68,30;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2); Pharmacology (medical) (Q2); Reproductive Medicine (Q2)";"Medicine" +6505;21100236803;"Frontiers in Genetics";journal;"16648021";"Frontiers Media SA";Yes;No;0,833;Q2;147;870;6800;40142;21396;6350;2,88;46,14;45,56;1;Switzerland;Western Europe;"Frontiers Media SA";"2010-2026";"Genetics (Q2); Genetics (clinical) (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6506;21101323946;"IEEE Transactions on Computational Biology and Bioinformatics";journal;"29984165";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,833;Q2;102;251;957;12020;4278;947;4,62;47,89;33,95;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025-2026";"Biotechnology (Q2); Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology" +6507;15054;"Injury Prevention";journal;"14755785, 13538047";"BMJ Publishing Group";No;No;0,833;Q2;104;230;312;7440;701;297;1,96;32,35;49,91;10;United Kingdom;Western Europe;"BMJ Publishing Group";"1995-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6508;21100199817;"Therapeutic Advances in Drug Safety";journal;"20420986, 20420994";"SAGE Publications Ltd";Yes;No;0,833;Q2;55;66;110;3051;366;102;2,96;46,23;48,57;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2010-2026";"Pharmacology (medical) (Q2)";"Medicine" +6509;21100938253;"Environmental Pollutants and Bioavailability";journal;"26395940, 26395932";"Taylor and Francis Ltd.";Yes;No;0,832;Q1;47;51;150;4727;680;150;4,67;92,69;42,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2026";"Chemical Health and Safety (Q1); Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2)";"Chemical Engineering; Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +6510;12780;"Fisheries Oceanography";journal;"10546006, 13652419";"Wiley-Blackwell Publishing Ltd";No;No;0,832;Q1;93;61;114;4513;311;112;3,09;73,98;28,93;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2026";"Aquatic Science (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +6511;19700181431;"Journal of Decision Systems";journal;"21167052, 12460125";"Taylor and Francis Ltd.";No;No;0,832;Q1;42;38;188;2706;1020;183;5,92;71,21;22,83;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Library and Information Sciences (Q1); Management Information Systems (Q1); Software (Q2)";"Business, Management and Accounting; Computer Science; Social Sciences" +6512;13152;"Surgical Oncology Clinics of North America";journal;"10553207, 15585042";"W.B. Saunders";No;No;0,832;Q1;72;61;183;2987;418;147;1,67;48,97;62,50;0;United States;Northern America;"W.B. Saunders";"1994-2026";"Surgery (Q1); Oncology (Q2)";"Medicine" +6513;21100825161;"AIMS Neuroscience";journal;"23737972";"AIMS Press";Yes;No;0,832;Q2;25;27;92;1979;403;86;4,81;73,30;46,76;0;United States;Northern America;"AIMS Press";"2014-2026";"Neuroscience (miscellaneous) (Q2)";"Neuroscience" +6514;21482;"Environmental Monitoring and Assessment";journal;"01676369, 15732959";"Springer Science and Business Media Deutschland GmbH";No;No;0,832;Q2;161;1382;3710;97482;15528;3706;4,21;70,54;36,50;6;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1981-2026";"Environmental Science (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2); Medicine (miscellaneous) (Q2); Pollution (Q2)";"Environmental Science; Medicine" +6515;21101243609;"Glomerular Diseases";journal;"26733633";"S. Karger AG";Yes;No;0,832;Q2;13;41;83;1489;175;78;1,97;36,32;43,72;0;Switzerland;Western Europe;"S. Karger AG";"2021-2025";"Nephrology (Q2)";"Medicine" +6516;14892;"International Journal of Mental Health";journal;"00207411, 15579328";"Taylor and Francis Ltd.";No;No;0,832;Q2;30;59;89;2804;209;75;2,47;47,53;55,60;0;United States;Northern America;"Taylor and Francis Ltd.";"1974-1991, 1993, 1995-2026";"Health Policy (Q2); Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6517;21100445642;"Journal of Clinical Tuberculosis and Other Mycobacterial Diseases";journal;"24055794";"Elsevier Ltd";Yes;No;0,832;Q2;31;72;201;1966;525;198;2,32;27,31;50,36;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Infectious Diseases (Q2); Microbiology (medical) (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +6518;21101303303;"Journal of Liquid Biopsy";journal;"29501954";"Elsevier B.V.";Yes;No;0,832;Q2;9;54;50;3015;229;46;4,58;55,83;48,46;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Genetics (Q2); Oncology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6519;26685;"Prostaglandins Leukotrienes and Essential Fatty Acids";journal;"09523278, 15322823";"Churchill Livingstone";No;No;0,832;Q2;125;35;133;2233;400;131;2,49;63,80;43,30;0;United Kingdom;Western Europe;"Churchill Livingstone";"1988-2026";"Clinical Biochemistry (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +6520;21101113286;"Sexual Abuse";journal;"1573286X, 10790632";"SAGE Publications Inc.";No;No;0,832;Q2;93;36;115;2667;325;111;2,89;74,08;51,24;1;United States;Northern America;"SAGE Publications Inc.";"1988-1993, 1995-2026";"Psychiatry and Mental Health (Q2); Psychology (miscellaneous) (Q2)";"Medicine; Psychology" +6521;21101064702;"Therapeutic Advances in Vaccines and Immunotherapy";journal;"25151355, 25151363";"SAGE Publications Ltd";Yes;Yes;0,832;Q2;20;21;62;911;196;50;1,96;43,38;46,05;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2017-2026";"Drug Discovery (Q2); Immunology (Q2); Immunology and Allergy (Q2); Oncology (Q2); Pharmacology (medical) (Q2)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6522;21100205908;"Biomedical Optics Express";journal;"21567085";"Optica Publishing Group (formerly OSA)";Yes;No;0,831;Q1;124;354;1314;16212;4510;1310;3,38;45,80;32,81;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"2010-2026";"Atomic and Molecular Physics, and Optics (Q1); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Physics and Astronomy" +6523;21100976150;"Business Strategy and Development";journal;"25723170";"John Wiley & Sons Inc.";No;No;0,831;Q1;39;201;281;16986;1851;280;6,96;84,51;35,92;0;United States;Northern America;"John Wiley & Sons Inc.";"2018-2026";"Development (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +6524;20877;"Health Education and Behavior";journal;"15526127, 10901981";"SAGE Publications Inc.";No;No;0,831;Q1;118;89;265;3310;738;259;2,57;37,19;64,90;0;United States;Northern America;"SAGE Publications Inc.";"1957-1970, 1972-1978, 1980-2026";"Arts and Humanities (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q2)";"Arts and Humanities; Medicine" +6525;22236;"Journal of the Operational Research Society";journal;"01605682, 14769360";"Taylor and Francis Ltd.";No;No;0,831;Q1;134;276;482;14066;1828;476;3,59;50,96;36,19;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-2026";"Management Information Systems (Q1); Modeling and Simulation (Q1); Management Science and Operations Research (Q2); Marketing (Q2); Statistics, Probability and Uncertainty (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences; Mathematics" +6526;21101047053;"JSES International";journal;"26666383";"Elsevier B.V.";Yes;No;0,831;Q1;35;314;556;10257;1325;546;2,17;32,67;18,69;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +6527;21101337322;"Model Theory";journal;"2832904X, 28329058";"Mathematical Sciences Publishers";No;No;0,831;Q1;4;10;55;234;39;51;0,60;23,40;5,56;0;United States;Northern America;"Mathematical Sciences Publishers";"2022-2025";"Algebra and Number Theory (Q1); Logic (Q1)";"Mathematics" +6528;14030;"Psychology in the Schools";journal;"00333085, 15206807";"Wiley-Liss Inc.";No;No;0,831;Q1;101;363;692;26740;2155;689;2,82;73,66;58,29;3;United States;Northern America;"Wiley-Liss Inc.";"1964-2026";"Education (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +6529;21101309421;"Advanced Sensor Research";journal;"27511219";"Wiley-VCH Verlag";Yes;No;0,831;Q2;21;133;274;9530;1396;271;5,16;71,65;33,38;0;Germany;Western Europe;"Wiley-VCH Verlag";"2023-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Computer Science Applications (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Medicine" +6530;16940;"Cell Biochemistry and Function";journal;"02636484, 10990844";"John Wiley and Sons Ltd";No;No;0,831;Q2;79;115;464;7155;1759;464;3,68;62,22;51,17;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1983-2026";"Biochemistry (Q2); Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6531;19400157504;"IJCAI International Joint Conference on Artificial Intelligence";conference and proceedings;"10450823";"International Joint Conferences on Artificial Intelligence";No;No;0,831;-;203;1264;2749;48133;10652;2744;3,36;38,08;27,87;1;United States;Northern America;"International Joint Conferences on Artificial Intelligence";"1971, 1975, 1987, 1995, 1997, 1999, 2001, 2003, 2005, 2007, 2009, 2011, 2013, 2015-2025";"Artificial Intelligence";"Computer Science" +6532;25202;"Chinese Geographical Science";journal;"10020063, 1993064X";"Science Press";No;No;0,830;Q1;60;98;223;6160;924;223;4,24;62,86;43,63;0;China;Asiatic Region;"Science Press";"1991-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Earth and Planetary Sciences; Social Sciences" +6533;200147108;"Distance Education";journal;"14750198, 01587919";"Routledge";No;No;0,830;Q1;79;48;119;2513;421;106;3,28;52,35;55,47;1;United Kingdom;Western Europe;"Routledge";"1980-2026";"Education (Q1); E-learning (Q2)";"Social Sciences" +6534;21101198697;"El-Usrah";journal;"26208075, 26208083";"State Islamic University of Ar-Raniry Faculty of Sharia and Law";No;No;0,830;Q1;13;60;110;2997;364;110;4,49;49,95;34,19;0;Indonesia;Asiatic Region;"State Islamic University of Ar-Raniry Faculty of Sharia and Law";"2020-2025";"Anthropology (Q1); Gender Studies (Q1); Law (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +6535;26844;"Estuarine, Coastal and Shelf Science";journal;"10960015, 02727714";"Academic Press";No;No;0,830;Q1;171;441;995;33649;3070;989;2,99;76,30;40,33;9;United States;Northern America;"Academic Press";"1981-2026";"Aquatic Science (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +6536;5700183394;"First Language";journal;"17402344, 01427237";"SAGE Publications Ltd";No;No;0,830;Q1;55;62;119;3378;280;114;1,94;54,48;76,14;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1980-1984, 1986-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +6537;16400154732;"International Journal of Leadership in Education";journal;"13603124, 14645092";"Routledge";No;No;0,830;Q1;55;120;296;7926;996;286;3,22;66,05;49,82;8;United Kingdom;Western Europe;"Routledge";"1998-2026";"Arts and Humanities (miscellaneous) (Q1); Education (Q1); Strategy and Management (Q2)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +6538;12218;"Journal of Head Trauma Rehabilitation";journal;"08859701, 1550509X";"Lippincott Williams and Wilkins";No;No;0,830;Q1;122;151;266;6055;883;260;3,27;40,10;54,89;0;United States;Northern America;"Lippincott Williams and Wilkins";"1986-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Neurology (clinical) (Q2)";"Health Professions; Medicine" +6539;100147345;"Journal of Sociolinguistics";journal;"13606441, 14679841";"Wiley-Blackwell Publishing Ltd";No;No;0,830;Q1;73;29;102;1827;253;67;2,05;63,00;55,56;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1999, 2003-2026";"History and Philosophy of Science (Q1); Linguistics and Language (Q1); Philosophy (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +6540;21100223534;"Journal of Transport and Land Use";journal;"19387849";"University of Minnesota";Yes;No;0,830;Q1;50;28;91;1978;304;91;2,35;70,64;28,41;1;United States;Northern America;"University of Minnesota";"2012-2026";"Geography, Planning and Development (Q1); Urban Studies (Q1); Transportation (Q2)";"Social Sciences" +6541;21101176851;"Volksgeist: Jurnal Ilmu Hukum dan Konstitusi";journal;"2615174X, 26155648";"Universitas Islam Negeri Profesor Kiai Haji Saifuddin Zuhri Purwokerto";Yes;No;0,830;Q1;14;29;62;1476;250;62;4,48;50,90;28,00;0;Indonesia;Asiatic Region;"Universitas Islam Negeri Profesor Kiai Haji Saifuddin Zuhri Purwokerto";"2019-2025";"Law (Q1); Political Science and International Relations (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6542;19700187604;"AJOB Neuroscience";journal;"21507740, 21507759";"Taylor and Francis Inc.";No;No;0,830;Q2;36;84;245;1959;311;42;1,15;23,32;45,24;1;United States;Northern America;"Taylor and Francis Inc.";"2010-2026";"Neuroscience (miscellaneous) (Q2)";"Neuroscience" +6543;29970;"Current Medical Research and Opinion";journal;"14734877, 03007995";"Taylor and Francis Ltd.";No;No;0,830;Q2;129;228;699;8113;1799;626;2,75;35,58;44,99;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +6544;20805;"Immunobiology";journal;"18783279, 01712985";"Elsevier GmbH";Yes;No;0,830;Q2;114;119;288;5834;903;286;3,48;49,03;45,58;0;Germany;Western Europe;"Elsevier GmbH";"1979-2026";"Hematology (Q2); Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +6545;21100262412;"Journal of Research in Marketing and Entrepreneurship";journal;"14715201, 1471521X";"Emerald Publishing";No;No;0,830;Q2;37;24;76;1787;374;75;4,79;74,46;28,85;0;United Kingdom;Western Europe;"Emerald Publishing";"1999-2007, 2009-2026";"Business and International Management (Q2); Marketing (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +6546;144935;"Statistical Modelling";journal;"1471082X";"SAGE Publications Ltd";No;No;0,830;Q2;53;40;81;1447;138;75;1,80;36,18;31,73;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +6547;16800154737;"Archive for the Psychology of Religion";journal;"00846724, 15736121";"Sage Publications";No;No;0,829;Q1;24;31;47;2337;127;47;2,53;75,39;41,76;0;Netherlands;Western Europe;"Sage Publications";"1914, 1921, 1929, 1936, 1964, 1967, 1976, 1980, 1982-1983, 1985, 1988, 1990, 1992, 1997, 2000, 2003-2026";"Philosophy (Q1); Religious Studies (Q1); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Psychology" +6548;13256;"Biological Control";journal;"10902112, 10499644";"Academic Press Inc.";Yes;No;0,829;Q1;136;190;609;11978;2663;604;4,11;63,04;43,17;2;United States;Northern America;"Academic Press Inc.";"1991-2026";"Agronomy and Crop Science (Q1); Insect Science (Q1)";"Agricultural and Biological Sciences" +6549;21101107314;"Buildings and Cities";journal;"26326655";"Ubiquity Press";Yes;No;0,829;Q1;26;60;164;3189;695;154;3,78;53,15;48,35;4;United Kingdom;Western Europe;"Ubiquity Press";"2020-2026";"Architecture (Q1); Building and Construction (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1); Environmental Science (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2)";"Engineering; Environmental Science; Social Sciences" +6550;130173;"Community, Work and Family";journal;"14693615, 13668803";"Routledge";No;No;0,829;Q1;59;96;137;6296;449;123;2,29;65,58;72,29;4;United Kingdom;Western Europe;"Routledge";"2003-2026";"Development (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6551;20450;"International Journal of Multiphase Flow";journal;"03019322";"Elsevier B.V.";No;No;0,829;Q1;152;303;782;16956;3334;782;4,16;55,96;20,33;1;United Kingdom;Western Europe;"Elsevier B.V.";"1973-2026";"Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Chemical Engineering; Engineering; Physics and Astronomy" +6552;17600155034;"Journal of Dental Sciences";journal;"22138862, 19917902";"Association for Dental Sciences of the Republic of China";Yes;No;0,829;Q1;41;467;999;11436;2834;723;2,82;24,49;39,95;0;Taiwan;Asiatic Region;"Association for Dental Sciences of the Republic of China";"2009-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +6553;23014;"Journal of Drug Targeting";journal;"10292330, 1061186X";"Taylor and Francis Ltd.";No;No;0,829;Q1;116;155;261;16387;1370;261;4,92;105,72;46,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-1987, 1992-2026";"Pharmaceutical Science (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +6554;12100156325;"Journal of Intervention and Statebuilding";journal;"17502977, 17502985";"Routledge";No;No;0,829;Q1;33;51;106;3883;312;95;3,10;76,14;52,94;4;United Kingdom;Western Europe;"Routledge";"2012-2026";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +6555;27786;"Journal of Marine Systems";journal;"18791573, 09247963";"Elsevier B.V.";No;No;0,829;Q1;126;93;208;6841;562;208;2,38;73,56;36,08;0;Netherlands;Western Europe;"Elsevier B.V.";"1990-2026";"Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Oceanography (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +6556;16986;"Pathology International";journal;"13205463, 14401827";"Wiley-Blackwell Publishing Ltd";No;No;0,829;Q1;86;90;273;2268;559;166;1,39;25,20;27,72;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1951-2026";"Pathology and Forensic Medicine (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6557;21101187716;"Polysaccharides";journal;"26734176";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,829;Q1;28;115;127;8267;861;125;4,38;71,89;51,94;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Chemistry (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q2)";"Chemistry; Engineering; Materials Science" +6558;12828;"Population and Environment";journal;"15737810, 01990039";"Springer Science and Business Media B.V.";No;No;0,829;Q1;72;41;81;2786;273;81;2,78;67,95;46,76;2;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1980-1985, 1987-2026";"Demography (Q1); Environmental Science (miscellaneous) (Q2)";"Environmental Science; Social Sciences" +6559;7500153130;"Annals of Gastroenterology";journal;"17927463, 11087471";"Hellenic Society of Gastroenterology";Yes;No;0,829;Q2;61;91;255;3151;751;254;2,96;34,63;32,97;0;Greece;Western Europe;"Hellenic Society of Gastroenterology";"2000-2026";"Gastroenterology (Q2)";"Medicine" +6560;21100466851;"Biomass Conversion and Biorefinery";journal;"21906815, 21906823";"Springer Verlag";No;No;0,829;Q2;72;2061;3951;126755;22919;3939;5,84;61,50;36,18;3;Germany;Western Europe;"Springer Verlag";"2011-2026";"Renewable Energy, Sustainability and the Environment (Q2)";"Energy" +6561;21101152852;"Frontiers in Global Women's Health";journal;"26735059";"Frontiers Media SA";Yes;No;0,829;Q2;29;263;526;12158;1551;500;2,32;46,23;55,60;1;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +6562;22982;"Journal of Cardiovascular Pharmacology and Therapeutics";journal;"10742484, 19404034";"SAGE Publications Ltd";Yes;No;0,829;Q2;63;19;77;964;249;77;3,09;50,74;43,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2025";"Cardiology and Cardiovascular Medicine (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6563;20888;"Virus Research";journal;"01681702, 18727492";"Elsevier B.V.";Yes;No;0,829;Q2;158;129;703;6638;2265;700;3,51;51,46;45,85;2;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Infectious Diseases (Q2); Virology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +6564;21100310027;"Advances in Manufacturing";journal;"20953127, 21953597";"Springer Science + Business Media";No;No;0,828;Q1;49;72;131;3543;705;130;4,31;49,21;28,69;0;United States;Northern America;"Springer Science + Business Media";"2013-2026";"Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Polymers and Plastics (Q1)";"Engineering; Materials Science" +6565;29417;"Aquacultural Engineering";journal;"01448609";"Elsevier B.V.";No;No;0,828;Q1;100;107;177;5725;1068;177;5,39;53,50;30,92;1;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Aquatic Science (Q1)";"Agricultural and Biological Sciences" +6566;21100901748;"Behavioral Sciences";journal;"2076328X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,828;Q1;64;1741;2768;116308;10938;2746;3,81;66,81;56,01;9;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Development (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Behavioral Neuroscience (Q2); Genetics (Q2); Psychology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Neuroscience; Psychology; Social Sciences" +6567;16601;"Ethnos";journal;"00141844, 1469588X";"Routledge";No;No;0,828;Q1;60;67;146;4012;314;143;2,20;59,88;55,41;1;United Kingdom;Western Europe;"Routledge";"1936-2026";"Anthropology (Q1); Archeology (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +6568;21100774810;"Health and Justice";journal;"21947899";"BioMed Central Ltd";Yes;No;0,828;Q1;29;75;133;4899;428;129;2,65;65,32;65,11;3;United Kingdom;Western Europe;"BioMed Central Ltd";"2014-2026";"Law (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +6569;5700168982;"Pacific Philosophical Quarterly";journal;"02790750, 14680114";"John Wiley and Sons Inc";No;No;0,828;Q1;43;21;99;1007;162;99;1,25;47,95;13,04;0;United States;Northern America;"John Wiley and Sons Inc";"1980-1982, 1984, 1986, 1994, 1996-2026";"Philosophy (Q1)";"Arts and Humanities" +6570;18578;"Paediatric Respiratory Reviews";journal;"15260550, 15260542";"W.B. Saunders Ltd";No;No;0,828;Q1;84;58;125;3647;416;108;3,01;62,88;47,97;0;United Kingdom;Western Europe;"W.B. Saunders Ltd";"2000-2026";"Pediatrics, Perinatology and Child Health (Q1); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +6571;19372;"Quality and Quantity";journal;"00335177, 15737845";"Springer Netherlands";No;No;0,828;Q1;92;592;788;37266;3798;780;3,37;62,95;39,76;3;Netherlands;Western Europe;"Springer Netherlands";"1967-2026";"Social Sciences (miscellaneous) (Q1); Statistics and Probability (Q2)";"Mathematics; Social Sciences" +6572;10600153366;"Structure and Infrastructure Engineering";journal;"17448980, 15732479";"Taylor and Francis Ltd.";No;No;0,828;Q1;85;276;426;14610;1830;425;3,92;52,93;25,63;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Ocean Engineering (Q1); Safety, Risk, Reliability and Quality (Q1); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +6573;23475;"Journal of Neurophysiology";journal;"15221598, 00223077";"American Physiological Society";No;No;0,828;Q2;279;349;793;21253;1852;772;2,16;60,90;36,29;0;United States;Northern America;"American Physiological Society";"1945-2026";"Neuroscience (miscellaneous) (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +6574;19558;"Journal of Women's Health";journal;"15409996, 1931843X";"Mary Ann Liebert Inc.";No;No;0,828;Q2;129;236;616;8556;1363;563;1,87;36,25;73,86;4;United States;Northern America;"Mary Ann Liebert Inc.";"1993, 1997-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +6575;19900191708;"Oncotarget";journal;"19492553";"Impact Journals LLC";Yes;No;0,828;Q2;201;73;390;3235;765;320;1,89;44,32;36,41;1;United States;Northern America;"Impact Journals LLC";"2010-2026";"Oncology (Q2)";"Medicine" +6576;24007;"Physiology and Behavior";journal;"1873507X, 00319384";"Elsevier Inc.";No;No;0,828;Q2;200;279;741;19081;2233;728;2,92;68,39;49,93;1;United States;Northern America;"Elsevier Inc.";"1966-2026";"Behavioral Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)";"Neuroscience; Psychology" +6577;13559;"Journal of Loss Prevention in the Process Industries";journal;"09504230";"Elsevier B.V.";No;No;0,827;Q1;117;221;705;10194;3490;698;4,80;46,13;30,83;0;Netherlands;Western Europe;"Elsevier B.V.";"1988-2026";"Chemical Engineering (miscellaneous) (Q1); Food Science (Q1); Industrial and Manufacturing Engineering (Q1); Safety, Risk, Reliability and Quality (Q1); Control and Systems Engineering (Q2); Energy Engineering and Power Technology (Q2); Management Science and Operations Research (Q2)";"Agricultural and Biological Sciences; Chemical Engineering; Decision Sciences; Energy; Engineering" +6578;30047;"Journal of Positive Behavior Interventions";journal;"10983007, 15384772";"SAGE Publications Inc.";No;No;0,827;Q1;78;27;65;1381;189;64;2,58;51,15;62,71;1;United States;Northern America;"SAGE Publications Inc.";"1999-2026";"Pediatrics, Perinatology and Child Health (Q1); Applied Psychology (Q2); Developmental and Educational Psychology (Q2)";"Medicine; Psychology" +6579;28937;"Journal of the World Aquaculture Society";journal;"17497345, 08938849";"Wiley-Blackwell";Yes;No;0,827;Q1;82;96;256;5718;1240;244;5,13;59,56;36,29;3;United States;Northern America;"Wiley-Blackwell";"1986-2026";"Agronomy and Crop Science (Q1); Aquatic Science (Q1)";"Agricultural and Biological Sciences" +6580;27376;"Metals and Materials International";journal;"15989623, 20054149";"Korean Institute of Metals and Materials";Yes;No;0,827;Q1;68;337;752;17979;3399;751;4,78;53,35;25,98;0;South Korea;Asiatic Region;"Korean Institute of Metals and Materials";"1996-2026";"Condensed Matter Physics (Q1); Materials Chemistry (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science; Physics and Astronomy" +6581;18944;"Shock";journal;"10732322, 15400514";"Lippincott Williams and Wilkins";No;No;0,827;Q1;140;239;610;8870;1715;590;2,56;37,11;36,84;0;United States;Northern America;"Lippincott Williams and Wilkins";"1994-2026";"Emergency Medicine (Q1); Critical Care and Intensive Care Medicine (Q2)";"Medicine" +6582;100147330;"World Englishes";journal;"1467971X, 08832919";"John Wiley and Sons Inc";No;No;0,827;Q1;72;55;129;3159;353;125;2,23;57,44;51,16;0;United States;Northern America;"John Wiley and Sons Inc";"1981-2026";"Anthropology (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6583;21101092526;"Blood Science";journal;"25436368";"Lippincott Williams and Wilkins";Yes;Yes;0,827;Q2;16;47;113;1807;292;91;2,83;38,45;44,06;0;United States;Northern America;"Lippincott Williams and Wilkins";"2019-2026";"Hematology (Q2)";"Medicine" +6584;21100853958;"Health Information Science and Systems";journal;"20472501";"Springer";No;No;0,827;Q2;43;77;147;3875;852;147;5,85;50,32;33,70;0;United States;Northern America;"Springer";"2013-2026";"Health Informatics (Q2); Health Information Management (Q2); Information Systems (Q2)";"Computer Science; Health Professions; Medicine" +6585;21100204115;"Interventional Cardiology: Reviews, Research, Resources";journal;"17561485, 17561477";"";Yes;No;0,827;Q2;31;29;74;1030;194;69;2,31;35,52;22,08;0;United Kingdom;Western Europe;"";"2010-2025";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +6586;23853;"Journal of Clinical Hypertension";journal;"15246175, 17517176";"Wiley-Blackwell Publishing Ltd";Yes;No;0,827;Q2;90;238;491;8095;1318;436;2,82;34,01;43,57;0;United States;Northern America;"Wiley-Blackwell Publishing Ltd";"2001-2026";"Cardiology and Cardiovascular Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)";"Medicine" +6587;38787;"Journal of Investigational Allergology and Clinical Immunology";journal;"10189068, 16980808";"ESMON Publicidad S.A.";Yes;Yes;0,827;Q2;78;94;315;2276;645;165;1,97;24,21;55,10;1;Spain;Western Europe;"ESMON Publicidad S.A.";"1991-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +6588;16762;"Journal of Neuropsychiatry and Clinical Neurosciences";journal;"08950172, 15457222";"American Psychiatric Association";No;No;0,827;Q2;122;0;136;0;325;110;2,24;0,00;0,00;0;United States;Northern America;"American Psychiatric Association";"1989-2025";"Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +6589;21100967310;"Translational Medicine of Aging";journal;"24685011";"KeAi Communications Co.";Yes;No;0,827;Q2;15;11;27;965;71;26;2,48;87,73;48,00;0;China;Asiatic Region;"KeAi Communications Co.";"2017-2025";"Geriatrics and Gerontology (Q2); Neurology (clinical) (Q2); Physiology (Q2); Aging (Q3); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6590;24514;"Clinical Child Psychology and Psychiatry";journal;"13591045, 14617021";"SAGE Publications Ltd";No;No;0,826;Q1;73;91;310;3545;838;298;2,79;38,96;67,47;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2026";"Pediatrics, Perinatology and Child Health (Q1); Clinical Psychology (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +6591;28802;"Electricity Journal";journal;"10406190";"Elsevier Inc.";No;No;0,826;Q1;67;47;203;2276;655;196;2,83;48,43;25,00;1;United States;Northern America;"Elsevier Inc.";"1988-2026";"Law (Q1); Business and International Management (Q2); Energy (miscellaneous) (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Energy; Social Sciences" +6592;50088;"European Journal of Forest Research";journal;"16124677, 16124669";"Springer Science and Business Media Deutschland GmbH";No;No;0,826;Q1;85;110;297;8561;955;297;3,43;77,83;29,45;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-1997, 2002, 2004-2026";"Forestry (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +6593;21101150733;"Frontiers in Sustainability";journal;"26734524";"Frontiers Media SA";Yes;No;0,826;Q1;33;141;418;9792;1923;379;4,26;69,45;44,03;1;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Nature and Landscape Conservation (Q1); Environmental Science (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2)";"Environmental Science" +6594;130152;"Frontiers in Zoology";journal;"17429994";"BioMed Central Ltd";Yes;No;0,826;Q1;79;36;103;3064;299;103;2,87;85,11;36,70;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +6595;19700180783;"International Journal of Sports Science and Coaching";journal;"2048397X, 17479541";"SAGE Publications Inc.";No;No;0,826;Q1;54;377;583;18186;1744;579;2,94;48,24;25,46;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2009-2026";"Social Sciences (miscellaneous) (Q1); Sports Science (Q2)";"Health Professions; Social Sciences" +6596;13936;"Journal of Urban Affairs";journal;"07352166, 14679906";"Taylor and Francis Ltd.";No;No;0,826;Q1;78;289;270;21353;930;260;3,60;73,89;46,90;17;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2026";"Geography, Planning and Development (Q1); Sociology and Political Science (Q1); Urban Studies (Q1)";"Social Sciences" +6597;21444;"Polymer";journal;"00323861";"Elsevier B.V.";No;No;0,826;Q1;304;1218;2740;65858;13489;2731;5,09;54,07;35,43;0;Netherlands;Western Europe;"Elsevier B.V.";"1960-2026";"Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)";"Chemistry; Materials Science" +6598;19600161827;"Qualitative Theory of Dynamical Systems";journal;"16623592, 15755460";"Springer International Publishing";Yes;No;0,826;Q1;35;263;622;10417;1864;622;3,34;39,61;35,79;0;Switzerland;Western Europe;"Springer International Publishing";"1999-2005, 2008-2026";"Applied Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1)";"Mathematics" +6599;15115;"Seminars in Ophthalmology";journal;"08820538, 17445205";"Taylor and Francis Ltd.";No;No;0,826;Q1;67;191;325;6243;907;291;3,08;32,69;40,85;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2026";"Ophthalmology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6600;26403;"SIAM Journal on Applied Dynamical Systems";journal;"15360040";"Society for Industrial and Applied Mathematics Publications";No;No;0,826;Q1;74;97;286;4752;608;286;2,11;48,99;20,73;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"2002-2026";"Analysis (Q1); Modeling and Simulation (Q1)";"Mathematics" +6601;21100240500;"Catalysis Science and Technology";journal;"20444761, 20444753";"Royal Society of Chemistry";No;No;0,826;Q2;164;526;1954;33758;7935;1946;3,88;64,18;35,65;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2011-2026";"Catalysis (Q2)";"Chemical Engineering" +6602;21101184257;"Discover Mental Health";journal;"27314383";"Springer Nature";Yes;No;0,826;Q2;11;211;118;11121;354;113;2,59;52,71;50,06;1;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Molecular Medicine (Q2); Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6603;21101363747;"Journal of Cyber Security and Risk Auditing";journal;"30795354";"Smart Technologies Academic Press";No;No;0,826;Q2;15;30;9;1025;89;7;9,89;34,17;23,33;0;Jordan;Middle East;"Smart Technologies Academic Press";"2023-2026";"Computer Science Applications (Q2)";"Computer Science" +6604;12239;"Journal of Orthopaedic Research";journal;"1554527X, 07360266";"Wiley-Blackwell";No;No;0,826;Q2;187;212;840;9441;2451;825;2,61;44,53;30,58;1;United States;Northern America;"Wiley-Blackwell";"1983-2026";"Orthopedics and Sports Medicine (Q2)";"Medicine" +6605;19380;"Seizure";journal;"10591311, 15322688";"W.B. Saunders Ltd";No;No;0,826;Q2;110;278;721;10514;2091;659;2,63;37,82;47,54;1;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1992-2026";"Medicine (miscellaneous) (Q2); Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +6606;21100299408;"Supply Chain Forum";journal;"16246039, 16258312";"Taylor and Francis Ltd.";No;No;0,826;Q2;36;67;100;4679;572;97;5,56;69,84;31,98;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002, 2013-2026";"Business and International Management (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2)";"Business, Management and Accounting; Decision Sciences" +6607;21100841779;"ADMET and DMPK";journal;"18487718";"International Association of Physical Chemists";Yes;Yes;0,825;Q1;29;55;110;3315;661;106;5,73;60,27;47,12;0;Croatia;Eastern Europe;"International Association of Physical Chemists";"2013-2025";"Chemistry (miscellaneous) (Q1); Health (social science) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)";"Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +6608;21100979268;"BMC Complementary Medicine and Therapies";journal;"26627671";"BioMed Central Ltd";Yes;No;0,825;Q1;133;438;1162;23886;5653;1156;4,78;54,53;48,48;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2020-2026";"Complementary and Alternative Medicine (Q1)";"Medicine" +6609;21101063028;"Frontiers in Sports and Active Living";journal;"26249367";"Frontiers Media SA";Yes;No;0,825;Q1;38;782;1571;37462;4843;1441;2,77;47,91;34,01;1;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Anthropology (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2); Physiology (Q2); Public Health, Environmental and Occupational Health (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Biochemistry, Genetics and Molecular Biology; Business, Management and Accounting; Health Professions; Medicine; Social Sciences" +6610;18548;"Histochemistry and Cell Biology";journal;"1432119X, 09486143";"Springer Science and Business Media Deutschland GmbH";No;No;0,825;Q1;120;120;284;6311;690;245;2,56;52,59;46,00;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1995-2026";"Medical Laboratory Technology (Q1); Histology (Q2); Molecular Biology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +6611;19700182275;"International Journal of Clinical Pharmacy";journal;"22107711, 22107703";"Springer Science and Business Media Deutschland GmbH";No;No;0,825;Q1;77;226;455;9515;1463;418;3,29;42,10;56,10;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Pharmaceutical Science (Q1); Pharmacy (Q1); Pharmacology (Q2); Pharmacology (medical) (Q2); Toxicology (Q2)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6612;6700153283;"Journal of Hand Surgery: European Volume";journal;"20436289, 17531934";"SAGE Publications Ltd";No;No;0,825;Q1;97;282;672;5060;1082;458;1,73;17,94;29,17;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-1999, 2007-2026";"Surgery (Q1)";"Medicine" +6613;21100464627;"Entrepreneurship Research Journal";journal;"21575665, 21946175";"Walter de Gruyter GmbH";No;No;0,825;Q2;33;34;132;3114;551;131;3,69;91,59;39,78;3;Germany;Western Europe;"Walter de Gruyter GmbH";"2011-2012, 2014-2026";"Business and International Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +6614;21100858473;"Injury Epidemiology";journal;"21971714";"BioMed Central Ltd";Yes;No;0,825;Q2;38;89;180;3611;464;175;2,40;40,57;50,34;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2014-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +6615;21101028421;"JMIR Diabetes";journal;"23714379";"JMIR Publications Inc.";Yes;No;0,825;Q2;29;49;122;2009;421;122;3,31;41,00;57,43;0;Canada;Northern America;"JMIR Publications Inc.";"2016-2026";"Biomedical Engineering (Q2); Endocrinology, Diabetes and Metabolism (Q2); Health Informatics (Q2); Health Information Management (Q2)";"Engineering; Health Professions; Medicine" +6616;21100220158;"Remediation";journal;"10515658, 15206831";"John Wiley & Sons Inc.";No;No;0,825;Q2;39;41;84;1994;266;68;2,62;48,63;37,84;1;United States;Northern America;"John Wiley & Sons Inc.";"1990-2026";"Environmental Engineering (Q2); Pollution (Q2); Waste Management and Disposal (Q2)";"Environmental Science" +6617;21101253556;"AIS Transactions on Human-Computer Interaction";journal;"19443900";"Association for Information Systems";No;No;0,824;Q1;21;20;56;2069;258;52;4,57;103,45;38,98;0;United States;Northern America;"Association for Information Systems";"2010-2011, 2016, 2020-2025";"Computer Networks and Communications (Q1); Computer Science Applications (Q2); Human-Computer Interaction (Q2)";"Computer Science" +6618;15097;"Journal of Child Health Care";journal;"17412889, 13674935";"SAGE Publications Inc.";No;No;0,824;Q1;54;93;166;4176;463;154;2,61;44,90;76,59;1;United States;Northern America;"SAGE Publications Inc.";"1997-2026";"Pediatrics (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Medicine; Nursing" +6619;19700194016;"Journal of Cultural Economy";journal;"17530369, 17530350";"Taylor and Francis Ltd.";No;No;0,824;Q1;43;74;174;5076;463;173;1,87;68,59;53,15;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Cultural Studies (Q1)";"Social Sciences" +6620;21100797724;"Journal of Survey Statistics and Methodology";journal;"23250992, 23250984";"Oxford University Press";No;No;0,824;Q1;29;27;184;1052;336;182;1,88;38,96;47,06;2;United States;Northern America;"Oxford University Press";"2013-2025";"Applied Mathematics (Q1); Social Sciences (miscellaneous) (Q1); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics; Social Sciences" +6621;21100901579;"Microbial Cell";journal;"23112638";"Shared Science Publishers OG";Yes;No;0,824;Q1;47;23;74;1786;282;74;4,33;77,65;51,82;0;Austria;Western Europe;"Shared Science Publishers OG";"2014-2026";"Parasitology (Q1); Applied Microbiology and Biotechnology (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Genetics (Q2); Microbiology (Q2); Virology (Q2); Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +6622;12348;"Optics and Lasers in Engineering";journal;"01438166";"Elsevier Ltd";No;No;0,824;Q1;138;716;1457;29687;6784;1456;4,56;41,46;32,45;0;United Kingdom;Western Europe;"Elsevier Ltd";"1980-1986, 1988-2026";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Mechanical Engineering (Q1)";"Engineering; Materials Science; Physics and Astronomy" +6623;3200147819;"Pervasive and Mobile Computing";journal;"15741192";"Elsevier B.V.";No;No;0,824;Q1;87;62;212;3104;998;208;4,89;50,06;27,43;0;Netherlands;Western Europe;"Elsevier B.V.";"2005-2026";"Applied Mathematics (Q1); Computer Networks and Communications (Q1); Computer Science (miscellaneous) (Q1); Computer Science Applications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)";"Computer Science; Mathematics" +6624;23614;"Statistics and Computing";journal;"09603174, 15731375";"Springer Netherlands";No;No;0,824;Q1;94;219;467;9232;914;467;1,92;42,16;33,21;0;Netherlands;Western Europe;"Springer Netherlands";"1991-2026";"Computational Theory and Mathematics (Q1); Theoretical Computer Science (Q1); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Computer Science; Decision Sciences; Mathematics" +6625;144798;"High Blood Pressure and Cardiovascular Prevention";journal;"11791985, 11209879";"";No;No;0,824;Q2;40;78;187;3224;545;174;2,89;41,33;40,67;0;Switzerland;Western Europe;"";"2004-2026";"Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2)";"Medicine" +6626;21101284608;"IJTLD Open";journal;"30057590";"International Union Against Tuberculosis and Lung Disease";Yes;No;0,824;Q2;8;127;104;3392;239;66;2,30;26,71;50,34;0;France;Western Europe;"International Union Against Tuberculosis and Lung Disease";"2024-2026";"Infectious Diseases (Q2)";"Medicine" +6627;14715;"Technology Analysis and Strategic Management";journal;"14653990, 09537325";"Routledge";No;No;0,824;Q2;96;509;528;23502;2778;528;5,01;46,17;41,87;4;United Kingdom;Western Europe;"Routledge";"1989-2026";"Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +6628;12102;"Behavior Modification";journal;"01454455, 15524167";"SAGE Publications Inc.";No;No;0,823;Q1;98;21;135;1258;411;132;2,72;59,90;56,25;0;United States;Northern America;"SAGE Publications Inc.";"1977-2026";"Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q2); Developmental and Educational Psychology (Q2)";"Arts and Humanities; Psychology" +6629;18160;"Computers and Fluids";journal;"00457930";"Elsevier Ltd";No;No;0,823;Q1;144;267;725;13830;2494;723;3,38;51,80;17,78;0;United Kingdom;Western Europe;"Elsevier Ltd";"1973-2026";"Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1)";"Computer Science; Engineering" +6630;19700180907;"Environmental Microbiology Reports";journal;"17582229";"John Wiley and Sons Inc";No;No;0,823;Q1;97;190;331;14257;1028;320;3,21;75,04;45,73;0;United States;Northern America;"John Wiley and Sons Inc";"2009-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +6631;21100838559;"Fashion and Textiles";journal;"21980802";"Springer Singapore";Yes;No;0,823;Q1;41;40;132;1972;642;132;4,80;49,30;59,62;0;Singapore;Asiatic Region;"Springer Singapore";"2014-2026";"Cultural Studies (Q1); Marketing (Q2); Materials Science (miscellaneous) (Q2); Social Psychology (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Materials Science; Psychology; Social Sciences" +6632;19700188275;"International Journal of Innovation Science";journal;"17572223, 17572231";"Emerald Group Publishing Ltd.";No;No;0,823;Q1;39;146;152;11675;913;148;5,82;79,97;37,19;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2026";"Engineering (miscellaneous) (Q1); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Engineering" +6633;21100922757;"Journal of Research on Leadership Education";journal;"19427751";"SAGE Publications Inc.";No;No;0,823;Q1;29;25;64;1832;242;64;4,14;73,28;52,54;0;United States;Northern America;"SAGE Publications Inc.";"2006-2026";"Education (Q1)";"Social Sciences" +6634;16300154767;"Media, War and Conflict";journal;"17506352, 17506360";"SAGE Publications Ltd";No;No;0,823;Q1;34;80;88;4388;282;88;3,21;54,85;51,09;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2026";"Arts and Humanities (miscellaneous) (Q1); Communication (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +6635;25708;"Numerical Algorithms";journal;"10171398, 15729265";"Springer Netherlands";No;No;0,823;Q1;85;413;670;14690;1675;668;2,61;35,57;31,63;0;Netherlands;Western Europe;"Springer Netherlands";"1991-2026";"Applied Mathematics (Q1)";"Mathematics" +6636;22762;"Policy and Politics";journal;"03055736, 14708442";"Policy Press";No;No;0,823;Q1;75;34;95;2532;397;94;3,89;74,47;43,18;0;United Kingdom;Western Europe;"Policy Press";"1979-2025";"Public Administration (Q1); Sociology and Political Science (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +6637;19195;"Surgical Clinics of North America";journal;"00396109, 15583171";"W.B. Saunders";No;No;0,823;Q1;110;94;308;4049;914;255;2,32;43,07;45,66;0;United States;Northern America;"W.B. Saunders";"1945-2026";"Surgery (Q1)";"Medicine" +6638;20603;"Clinical Drug Investigation";journal;"11791918, 11732563";"";No;No;0,823;Q2;75;81;282;3563;761;264;2,81;43,99;42,44;2;Switzerland;Western Europe;"";"1995-2026";"Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)";"Medicine" +6639;19700188368;"Genes";journal;"20734425";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,823;Q2;119;1519;6277;96255;21287;6195;3,32;63,37;50,21;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Genetics (Q2); Genetics (clinical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6640;21101256430;"Genetics in Medicine Open";journal;"29497744";"Elsevier B.V.";Yes;No;0,823;Q2;10;58;126;2238;283;118;2,25;38,59;58,40;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Genetics (Q2); Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +6641;21100870666;"Immunological Medicine";journal;"25785826";"Taylor and Francis Ltd.";Yes;No;0,823;Q2;29;56;85;3190;230;85;2,53;56,96;21,23;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2026";"Immunology (Q2); Immunology and Allergy (Q2)";"Immunology and Microbiology; Medicine" +6642;21100870402;"Journal of Small Business and Entrepreneurship";journal;"08276331, 21692610";"Taylor and Francis Ltd.";No;No;0,823;Q2;48;45;106;3959;591;101;4,76;87,98;38,18;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-1998, 2000-2014, 2016-2026";"Business and International Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +6643;21301;"Medical Microbiology and Immunology";journal;"14321831, 03008584";"Springer Science and Business Media Deutschland GmbH";No;No;0,823;Q2;77;49;84;2548;244;82;3,06;52,00;51,77;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1971-2026";"Immunology (Q2); Immunology and Allergy (Q2); Medicine (miscellaneous) (Q2); Microbiology (medical) (Q2)";"Immunology and Microbiology; Medicine" +6644;21100448524;"Orthopedic Research and Reviews";journal;"11791462";"Dove Medical Press Ltd";Yes;No;0,823;Q2;28;54;105;2168;346;102;2,21;40,15;30,08;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2014-2026";"Orthopedics and Sports Medicine (Q2)";"Medicine" +6645;21101039765;"Advanced Quantum Technologies";journal;"25119044";"John Wiley & Sons Inc.";No;No;0,822;Q1;52;374;437;24110;1949;435;4,38;64,47;27,77;0;United States;Northern America;"John Wiley & Sons Inc.";"2018-2026";"Computational Theory and Mathematics (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Mathematical Physics (Q1); Nuclear and High Energy Physics (Q1); Statistical and Nonlinear Physics (Q2)";"Computer Science; Engineering; Materials Science; Mathematics; Physics and Astronomy" +6646;26352;"BSGF - Earth Sciences Bulletin";journal;"17775817, 00379409";"Societe Geologique de France";Yes;No;0,822;Q1;66;14;64;1292;141;64;1,95;92,29;20,31;0;France;Western Europe;"Societe Geologique de France";"1978-1985, 1987-2025";"Earth and Planetary Sciences (miscellaneous) (Q1); Geology (Q1)";"Earth and Planetary Sciences" +6647;21100369845;"European Journal of Radiology Open";journal;"23520477";"Elsevier Ltd";Yes;No;0,822;Q1;33;89;214;3036;767;209;3,81;34,11;34,95;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Radiology, Nuclear Medicine and Imaging (Q1)";"Medicine" +6648;21100887441;"Folia Geographica";journal;"24541001, 13366157";"University of Presov";Yes;Yes;0,822;Q1;14;8;28;514;109;28;4,29;64,25;27,27;0;Slovakia;Eastern Europe;"University of Presov";"2018-2025";"Cultural Studies (Q1); Demography (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1)";"Social Sciences" +6649;21100445643;"Food and Waterborne Parasitology";journal;"24056766";"Elsevier Inc.";Yes;No;0,822;Q1;31;48;80;2206;284;80;2,87;45,96;47,64;0;United States;Northern America;"Elsevier Inc.";"2015-2026";"Food Science (Q1); Parasitology (Q1); Epidemiology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +6650;11700154719;"Gender in Management";journal;"17542413";"Emerald Group Publishing Ltd.";No;No;0,822;Q1;76;69;186;4970;898;183;4,70;72,03;58,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2026";"Business, Management and Accounting (miscellaneous) (Q1); Gender Studies (Q1)";"Business, Management and Accounting; Social Sciences" +6651;17304;"NMR in Biomedicine";journal;"10991492, 09523480";"John Wiley and Sons Ltd";No;No;0,822;Q1;140;230;604;11611;1854;588;3,13;50,48;34,08;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1988-2026";"Radiology, Nuclear Medicine and Imaging (Q1); Spectroscopy (Q1); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine" +6652;21100923620;"Phytobiomes Journal";journal;"24712906";"American Phytopathological Society";Yes;No;0,822;Q1;36;60;134;4422;411;131;2,91;73,70;47,04;0;United States;Northern America;"American Phytopathological Society";"2017-2025";"Agronomy and Crop Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +6653;21100849723;"BJA Education";journal;"20585357, 20585349";"Elsevier Ltd";Yes;No;0,822;Q2;66;66;187;2296;618;186;2,24;34,79;35,78;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +6654;21100461983;"Frontiers in Chemistry";journal;"22962646";"Frontiers Media SA";Yes;No;0,822;Q2;138;388;3114;21758;15311;2874;4,83;56,08;38,28;1;Switzerland;Western Europe;"Frontiers Media SA";"2013-2026";"Chemistry (miscellaneous) (Q2)";"Chemistry" +6655;21905;"Journal of Public Health Management and Practice";journal;"10784659, 15505022";"Lippincott Williams and Wilkins Ltd.";No;No;0,822;Q2;67;223;681;5384;1183;617;1,50;24,14;66,77;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1995-2026";"Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6656;18013;"Neuropsychology";journal;"08944105, 19311559";"American Psychological Association";No;No;0,822;Q2;154;62;203;2916;644;202;2,69;47,03;57,94;0;United States;Northern America;"American Psychological Association";"1989-2026";"Neuropsychology and Physiological Psychology (Q2)";"Psychology" +6657;16783;"Amino Acids";journal;"09394451, 14382199";"Springer";Yes;No;0,821;Q1;153;54;348;3228;1329;344;3,42;59,78;40,13;0;Austria;Western Europe;"Springer";"1991-2026";"Organic Chemistry (Q1); Biochemistry (Q2); Clinical Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +6658;14649;"Evolution and Development";journal;"1525142X, 1520541X";"Wiley-Blackwell Publishing Ltd";No;No;0,821;Q1;92;28;72;2001;171;70;2,59;71,46;40,52;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1999-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Developmental Biology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +6659;21101248642;"Frontiers in Epidemiology";journal;"26741199";"Frontiers Media SA";Yes;No;0,821;Q1;13;54;205;2712;556;192;2,77;50,22;38,98;1;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Health (social science) (Q1); Epidemiology (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +6660;13744;"JARO - Journal of the Association for Research in Otolaryngology";journal;"14387573, 15253961";"Springer";No;No;0,821;Q1;91;46;148;3131;391;138;2,86;68,07;37,62;0;United States;Northern America;"Springer";"2000-2026";"Otorhinolaryngology (Q1); Sensory Systems (Q2)";"Medicine; Neuroscience" +6661;20979;"Journal of Mechanical Design";journal;"10500472";"American Society of Mechanical Engineers (ASME)";No;No;0,821;Q1;153;124;459;6601;1944;446;4,06;53,23;27,39;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1978-2026";"Computer Graphics and Computer-Aided Design (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Computer Science Applications (Q2)";"Computer Science; Engineering" +6662;35022;"Clinical Medicine, Journal of the Royal College of Physicians of London";journal;"14702118, 14734893";"Elsevier B.V.";Yes;No;0,821;Q2;96;107;532;2538;1374;423;2,22;23,72;45,75;0;United Kingdom;Western Europe;"Elsevier B.V.";"1973-1975, 2001-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +6663;19686;"Epidemiology and Infection";journal;"14694409, 09502688";"Cambridge University Press";Yes;No;0,821;Q2;133;136;581;4877;1364;564;2,40;35,86;52,75;0;United Kingdom;Western Europe;"Cambridge University Press";"1970, 1987-2026";"Epidemiology (Q2); Infectious Diseases (Q2)";"Medicine" +6664;29203;"Physics in Medicine and Biology";journal;"00319155, 13616560";"IOP Publishing Ltd.";No;No;0,821;Q2;231;581;1655;21570;5788;1633;3,24;37,13;31,09;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1956-2026";"Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Health Professions; Medicine" +6665;21100873115;"Annals of Pediatric Endocrinology and Metabolism";journal;"22871012, 22871292";"Korean society of pediatric endocrinology";Yes;Yes;0,820;Q1;26;58;166;1473;349;125;1,79;25,40;56,60;0;South Korea;Asiatic Region;"Korean society of pediatric endocrinology";"2012, 2015-2016, 2018-2025";"Pediatrics, Perinatology and Child Health (Q1); Endocrinology, Diabetes and Metabolism (Q2)";"Medicine" +6666;24161;"Computer Vision and Image Understanding";journal;"10773142, 1090235X";"Academic Press Inc.";No;No;0,820;Q1;162;239;544;14416;2745;543;4,43;60,32;30,12;0;United States;Northern America;"Academic Press Inc.";"1993-2026";"Computer Vision and Pattern Recognition (Q1); Signal Processing (Q1); Software (Q2)";"Computer Science" +6667;5200153123;"Journal of Physical Chemistry C";journal;"19327447, 19327455";"American Chemical Society";No;No;0,820;Q1;364;2137;6894;121908;22635;6863;3,27;57,05;29,75;0;United States;Northern America;"American Chemical Society";"2007-2026";"Electronic, Optical and Magnetic Materials (Q1); Physical and Theoretical Chemistry (Q1); Surfaces, Coatings and Films (Q1); Energy (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q2)";"Chemistry; Energy; Materials Science" +6668;15122;"Journal of Speech, Language, and Hearing Research";journal;"10924388, 15589102";"American Speech-Language-Hearing Association (ASHA)";No;No;0,820;Q1;170;370;915;25008;2743;887;2,72;67,59;65,08;0;United States;Northern America;"American Speech-Language-Hearing Association (ASHA)";"1996-2026";"Linguistics and Language (Q1); Speech and Hearing (Q1); Medicine (miscellaneous) (Q2)";"Health Professions; Medicine; Social Sciences" +6669;4700152411;"Chronic Illness";journal;"17423953, 17459206";"SAGE Publications Ltd";No;No;0,820;Q2;55;39;197;1465;522;195;2,32;37,56;65,96;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2026";"Health Policy (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +6670;28308;"Endoscopy";journal;"14388812, 0013726X";"Georg Thieme Verlag";No;No;0,820;Q2;177;951;2440;4340;3625;1713;1,19;4,56;28,83;0;Germany;Western Europe;"Georg Thieme Verlag";"1969-2026";"Gastroenterology (Q2)";"Medicine" +6671;130005;"European Journal of Medical Genetics";journal;"18780849, 17697212";"Elsevier Masson s.r.l.";No;No;0,820;Q2;71;78;420;2200;972;407;2,39;28,21;58,52;0;France;Western Europe;"Elsevier Masson s.r.l.";"2005-2026";"Genetics (Q2); Genetics (clinical) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6672;37502;"Journal of Obstetrics and Gynaecology Canada";journal;"17012163";"Elsevier Inc.";No;No;0,820;Q2;90;213;651;4241;874;344;1,22;19,91;72,07;0;United States;Northern America;"Elsevier Inc.";"2002-2026";"Obstetrics and Gynecology (Q2)";"Medicine" +6673;130178;"Cognitive Linguistics";journal;"09365907, 16133641";"De Gruyter Mouton";Yes;No;0,819;Q1;70;22;60;1524;127;59;1,81;69,27;35,56;0;Germany;Western Europe;"De Gruyter Mouton";"1990-2026";"Linguistics and Language (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +6674;14523;"Multibody System Dynamics";journal;"13845640, 1573272X";"Springer Netherlands";No;No;0,819;Q1;80;144;178;5957;753;173;4,47;41,37;13,38;0;Netherlands;Western Europe;"Springer Netherlands";"1997-2026";"Aerospace Engineering (Q1); Control and Optimization (Q1); Mechanical Engineering (Q1); Modeling and Simulation (Q1); Computer Science Applications (Q2)";"Computer Science; Engineering; Mathematics" +6675;22848;"Orthodontics and Craniofacial Research";journal;"16016335, 16016343";"Wiley-Blackwell Publishing Ltd";No;No;0,819;Q1;75;150;316;5729;957;314;2,96;38,19;45,48;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2000-2026";"Oral Surgery (Q1); Orthodontics (Q1); Otorhinolaryngology (Q1); Surgery (Q1)";"Dentistry; Medicine" +6676;21100898691;"Signs and Society";journal;"23264497, 23264489";"Cambridge University Press";No;No;0,819;Q1;19;32;47;1543;136;47;2,70;48,22;57,89;0;United Kingdom;Western Europe;"Cambridge University Press";"2015-2026";"Communication (Q1); Cultural Studies (Q1); Linguistics and Language (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +6677;21855;"BMC Anesthesiology";journal;"14712253";"BioMed Central Ltd";Yes;No;0,819;Q2;64;623;1270;19841;4246;1260;3,10;31,85;42,29;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +6678;18730;"Psychiatry Research - Neuroimaging";journal;"18727506, 09254927";"Elsevier Ireland Ltd";No;No;0,819;Q2;128;100;301;5865;839;300;2,66;58,65;47,24;1;Ireland;Western Europe;"Elsevier Ireland Ltd";"1990-2026";"Neuroscience (miscellaneous) (Q2); Psychiatry and Mental Health (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine; Neuroscience" +6679;18622;"Pulmonary Pharmacology and Therapeutics";journal;"10945539, 15229629";"Academic Press";No;No;0,819;Q2;87;31;123;1232;406;117;3,77;39,74;46,63;0;United States;Northern America;"Academic Press";"1997-2026";"Biochemistry (medical) (Q2); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +6680;25170;"Applied Mathematics and Computation";journal;"18735649, 00963003";"Elsevier Inc.";No;No;0,818;Q1;189;420;1841;15660;6634;1839;3,53;37,29;32,58;0;United States;Northern America;"Elsevier Inc.";"1975-2026";"Applied Mathematics (Q1); Computational Mathematics (Q1)";"Mathematics" +6681;13115;"BMC Ecology and Evolution";journal;"27307182";"BioMed Central Ltd";Yes;No;0,818;Q1;160;138;363;10743;1042;353;2,65;77,85;37,29;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Environmental Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Environmental Science" +6682;21101027511;"Facial Plastic Surgery and Aesthetic Medicine";journal;"26893622, 26893614";"Mary Ann Liebert Inc.";No;No;0,818;Q1;82;204;424;3102;725;345;1,69;15,21;37,54;0;United States;Northern America;"Mary Ann Liebert Inc.";"2020-2026";"Surgery (Q1)";"Medicine" +6683;21100201941;"Journal of Arid Land";journal;"16746767, 21947783";"KeAi Communications Co.";No;No;0,818;Q1;52;96;276;6130;1054;276;3,66;63,85;37,71;0;China;Asiatic Region;"KeAi Communications Co.";"2009-2026";"Earth-Surface Processes (Q1); Water Science and Technology (Q1); Management, Monitoring, Policy and Law (Q2)";"Earth and Planetary Sciences; Environmental Science" +6684;21100855505;"Journal of Cybersecurity";journal;"20572093";"Oxford University Press";Yes;No;0,818;Q1;38;47;68;3676;382;68;5,06;78,21;36,22;4;United Kingdom;Western Europe;"Oxford University Press";"2015-2026";"Computer Science (miscellaneous) (Q1); Law (Q1); Political Science and International Relations (Q1); Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Social Psychology (Q2); Software (Q2)";"Computer Science; Engineering; Psychology; Social Sciences" +6685;21100901949;"Nano Futures";journal;"23991984";"Institute of Physics Publishing";No;No;0,818;Q1;28;24;78;2542;294;76;4,59;105,92;18,68;0;United Kingdom;Western Europe;"Institute of Physics Publishing";"2017-2025";"Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Bioengineering (Q2); Biomedical Engineering (Q2); Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Chemical Engineering; Chemistry; Engineering; Materials Science; Physics and Astronomy" +6686;18962;"Mammalian Genome";journal;"14321777, 09388990";"Springer";No;No;0,818;Q2;109;90;164;6467;416;161;2,39;71,86;42,36;0;United States;Northern America;"Springer";"1991-2026";"Genetics (Q2)";"Biochemistry, Genetics and Molecular Biology" +6687;14129;"Methods";journal;"10462023, 10959130";"Academic Press Inc.";No;No;0,818;Q2;183;163;535;9338;2402;504;3,51;57,29;41,83;1;United States;Northern America;"Academic Press Inc.";"1990-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +6688;28090;"Obstetrics and Gynecology Clinics of North America";journal;"08898545, 15580474";"W.B. Saunders";No;No;0,818;Q2;83;67;190;2679;450;153;1,67;39,99;75,59;0;United States;Northern America;"W.B. Saunders";"1987-2026";"Obstetrics and Gynecology (Q2)";"Medicine" +6689;17600155106;"Flexible Services and Manufacturing Journal";journal;"19366590, 19366582";"Springer New York";No;No;0,817;Q1;58;98;138;5773;567;133;4,34;58,91;30,94;0;United States;Northern America;"Springer New York";"2006, 2008-2026";"Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q2)";"Decision Sciences; Engineering" +6690;110302;"Geografiska Annaler, Series B: Human Geography";journal;"04353684, 14680467";"Taylor and Francis Ltd.";No;No;0,817;Q1;75;37;75;2818;236;70;2,62;76,16;42,59;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976, 1978-1979, 1982-2026";"Geography, Planning and Development (Q1)";"Social Sciences" +6691;19700175053;"International Journal of Women's Health";journal;"11791411";"Dove Medical Press Ltd";Yes;No;0,817;Q1;76;490;568;18629;1753;541;2,61;38,02;56,29;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Maternity and Midwifery (Q1); Obstetrics and Gynecology (Q2); Oncology (Q2)";"Medicine; Nursing" +6692;12834;"Journal of Research in Reading";journal;"14679817, 01410423";"Wiley-Blackwell Publishing Ltd";No;No;0,817;Q1;69;21;84;1198;243;82;2,00;57,05;60,76;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1978-2026";"Education (Q1); Developmental and Educational Psychology (Q2); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +6693;11700154623;"Pediatric Rheumatology";journal;"15460096";"BioMed Central Ltd";Yes;No;0,817;Q1;63;129;376;4448;917;354;2,21;34,48;60,65;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2007-2026";"Pediatrics, Perinatology and Child Health (Q1); Immunology and Allergy (Q2); Rheumatology (Q2)";"Medicine" +6694;17534;"Social Justice Research";journal;"15736725, 08857466";"Springer New York";No;No;0,817;Q1;71;23;62;1625;185;60;2,28;70,65;44,44;1;United States;Northern America;"Springer New York";"1987-1990, 1992-2026";"Anthropology (Q1); Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6695;21100409365;"Strategic Change";journal;"10861718, 10991697";"John Wiley and Sons Inc";No;No;0,817;Q1;52;124;107;10290;696;105;5,44;82,98;37,35;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1992-2026";"Business, Management and Accounting (miscellaneous) (Q1); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +6696;5100152302;"Gastroenterology and Hepatology";journal;"15547914";"Gastro-Hep Communications, Inc.";No;No;0,817;Q2;65;90;239;2359;383;120;1,58;26,21;39,29;0;United States;Northern America;"Gastro-Hep Communications, Inc.";"2006-2026";"Gastroenterology (Q2); Hepatology (Q2)";"Medicine" +6697;19700175133;"Heart International";journal;"20362579, 18261868";"Touch Medical Media";Yes;No;0,817;Q2;16;14;52;726;119;40;1,88;51,86;51,47;0;Italy;Western Europe;"Touch Medical Media";"2010-2017, 2019-2025";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +6698;17909;"Skeletal Radiology";journal;"03642348, 14322161";"Springer Science and Business Media Deutschland GmbH";No;No;0,817;Q2;112;297;835;10030;2186;701;2,58;33,77;31,43;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1976-2026";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +6699;21101056928;"AWWA Water Science";journal;"25778161";"John Wiley and Sons Inc";No;No;0,816;Q1;23;34;126;1544;251;124;1,96;45,41;47,95;0;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Ocean Engineering (Q1); Oceanography (Q1); Water Science and Technology (Q1); Environmental Engineering (Q2); Filtration and Separation (Q2); Waste Management and Disposal (Q2)";"Chemical Engineering; Earth and Planetary Sciences; Engineering; Environmental Science" +6700;4000150001;"Bioinorganic Chemistry and Applications";journal;"15653633, 1687479X";"John Wiley and Sons Ltd";Yes;No;0,816;Q1;57;25;105;1912;682;105;4,59;76,48;40,54;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2003-2026";"Inorganic Chemistry (Q1); Organic Chemistry (Q1); Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +6701;28216;"Geocarto International";journal;"17520762, 10106049";"Taylor and Francis Ltd.";Yes;No;0,816;Q1;75;189;1174;11825;5262;1172;4,36;62,57;31,14;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2026";"Geography, Planning and Development (Q1); Water Science and Technology (Q1)";"Environmental Science; Social Sciences" +6702;21101390059;"International Journal of Fluid Engineering";journal;"29949017";"American Institute of Physics";No;No;0,816;Q1;8;37;38;1678;184;36;4,84;45,35;23,81;0;United States;Northern America;"American Institute of Physics";"2024-2026";"Aerospace Engineering (Q1); Electrical and Electronic Engineering (Q1); Fluid Flow and Transfer Processes (Q1); Industrial and Manufacturing Engineering (Q1); Ocean Engineering (Q1); Energy Engineering and Power Technology (Q2); Environmental Engineering (Q2)";"Chemical Engineering; Energy; Engineering; Environmental Science" +6703;16113;"International Journal of Refrigeration";journal;"01407007";"Elsevier Ltd";No;No;0,816;Q1;154;387;1018;16550;4331;1000;4,15;42,76;25,63;0;United Kingdom;Western Europe;"Elsevier Ltd";"1978-2026";"Building and Construction (Q1); Mechanical Engineering (Q1)";"Engineering" +6704;15096;"Jornal de Pediatria";journal;"16784782, 00217557";"Elsevier Editora Ltda";Yes;Yes;0,816;Q1;69;145;323;4320;1031;320;2,92;29,79;62,50;0;Brazil;Latin America;"Elsevier Editora Ltda";"1945-1965, 1973-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +6705;23935;"Journal of Mathematical Analysis and Applications";journal;"10960813, 0022247X";"Academic Press Inc.";No;No;0,816;Q1;171;907;2506;26616;3636;2505;1,40;29,35;27,89;0;United States;Northern America;"Academic Press Inc.";"1960-2026";"Analysis (Q1); Applied Mathematics (Q1)";"Mathematics" +6706;26867;"Millennium: Journal of International Studies";journal;"03058298, 14779021";"SAGE Publications Ltd";No;No;0,816;Q1;85;29;99;3475;256;90;2,08;119,83;38,46;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1971-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6707;21100399483;"Papers in Palaeontology";journal;"20562799, 20562802";"John Wiley and Sons Inc";No;No;0,816;Q1;31;59;167;6248;427;167;2,45;105,90;34,05;0;United States;Northern America;"John Wiley and Sons Inc";"2015-2026";"Paleontology (Q1)";"Earth and Planetary Sciences" +6708;19700174965;"Breast Cancer: Basic and Clinical Research";journal;"11782234";"SAGE Publications Ltd";Yes;No;0,816;Q2;40;27;63;1357;149;60;2,10;50,26;47,24;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6709;21101089332;"China CDC Weekly";journal;"20967071";"Chinese Center for Disease Control and Prevention";No;No;0,816;Q2;35;259;678;3723;1956;558;2,94;14,37;46,81;3;China;Asiatic Region;"Chinese Center for Disease Control and Prevention";"2019-2026";"Epidemiology (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6710;19300156904;"Communications of the Association for Information Systems";journal;"15293181";"Association for Information Systems";No;No;0,816;Q2;70;133;269;11266;1005;264;3,50;84,71;36,13;0;United States;Northern America;"Association for Information Systems";"2003-2004, 2006-2025";"Information Systems (Q2)";"Computer Science" +6711;22477;"Investigational New Drugs";journal;"01676997, 15730646";"Springer";No;No;0,816;Q2;104;108;317;4796;875;309;2,76;44,41;40,05;0;United States;Northern America;"Springer";"1983-2026";"Oncology (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6712;21101142737;"Computational Urban Science";journal;"27306852";"Springer";Yes;Yes;0,815;Q1;21;70;131;4126;737;131;5,32;58,94;31,43;0;Singapore;Asiatic Region;"Springer";"2021-2026";"Urban Studies (Q1); Artificial Intelligence (Q2); Computer Science Applications (Q2); Environmental Science (miscellaneous) (Q2)";"Computer Science; Environmental Science; Social Sciences" +6713;21101138720;"Discover Sustainability";journal;"26629984";"Springer Nature";Yes;No;0,815;Q1;33;1465;620;109620;4063;612;6,71;74,83;33,41;17;Switzerland;Western Europe;"Springer Nature";"2020-2026";"Geography, Planning and Development (Q1); Energy (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Environmental Science; Social Sciences" +6714;29460;"Ground Water";journal;"0017467X, 17456584";"Wiley-Blackwell";No;No;0,815;Q1;118;80;267;3335;577;208;2,32;41,69;26,17;1;United States;Northern America;"Wiley-Blackwell";"1963-2026";"Water Science and Technology (Q1); Computers in Earth Sciences (Q2)";"Earth and Planetary Sciences; Environmental Science" +6715;16247;"Journal of Applied Research in Intellectual Disabilities";journal;"14683148, 13602322";"Wiley-Blackwell Publishing Ltd";No;No;0,815;Q1;84;187;376;9328;1134;375;2,55;49,88;74,34;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Education (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +6716;15875;"Journal of Clinical Pathology";journal;"00219746, 14724146";"BMJ Publishing Group";No;No;0,815;Q1;163;145;453;4293;936;391;2,09;29,61;45,74;0;United Kingdom;Western Europe;"BMJ Publishing Group";"1948-2026";"Pathology and Forensic Medicine (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6717;21101039770;"Pulmonary Therapy";journal;"23641746, 23641754";"Adis";Yes;No;0,815;Q1;27;58;96;2834;295;90;3,13;48,86;38,39;1;United Kingdom;Western Europe;"Adis";"2015-2026";"Respiratory Care (Q1); Pulmonary and Respiratory Medicine (Q2)";"Health Professions; Medicine" +6718;19464;"Annals of Pharmacotherapy";journal;"10600280, 15426270";"SAGE Publications Inc.";No;No;0,815;Q2;129;181;494;4536;1213;397;2,52;25,06;55,18;1;United States;Northern America;"SAGE Publications Inc.";"1981, 1983, 1985, 1987, 1990-2026";"Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)";"Medicine" +6719;20137;"Canadian Journal of Public Health";journal;"19207476, 00084263";"Springer Nature";No;No;0,815;Q2;88;193;348;5914;744;264;1,71;30,64;65,25;3;Switzerland;Western Europe;"Springer Nature";"1945-2026";"Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6720;21101343523;"Precision Medicine and Engineering";journal;"29504821";"Elsevier B.V.";No;No;0,815;Q2;6;34;13;5307;66;11;5,08;156,09;42,69;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2025";"Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2)";"Engineering; Medicine" +6721;200147123;"Accounting and Finance";journal;"1467629X, 08105391";"Wiley-Blackwell";No;No;0,814;Q1;77;234;494;17306;2106;494;3,53;73,96;38,58;1;United States;Northern America;"Wiley-Blackwell";"1979-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Accounting (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +6722;21100927405;"Advances in Statistical Climatology, Meteorology and Oceanography";journal;"23643587, 23643579";"Copernicus Publications";Yes;Yes;0,814;Q1;11;12;30;754;69;30;2,67;62,83;35,90;0;Germany;Western Europe;"Copernicus Publications";"2019-2026";"Applied Mathematics (Q1); Oceanography (Q1); Atmospheric Science (Q2); Statistics and Probability (Q2)";"Earth and Planetary Sciences; Mathematics" +6723;27620;"American Journal of Health Promotion";journal;"21686602, 08901171";"SAGE Publications Inc.";No;No;0,814;Q1;106;188;456;6182;1124;377;2,13;32,88;65,78;3;United States;Northern America;"SAGE Publications Inc.";"1986-2026";"Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +6724;21101140117;"Dentistry Review";journal;"27725596";"Elsevier Inc.";Yes;No;0,814;Q1;12;9;64;533;248;64;3,46;59,22;46,15;0;United States;Northern America;"Elsevier Inc.";"2021-2025";"Dentistry (miscellaneous) (Q1)";"Dentistry" +6725;21679;"Journal of Gastrointestinal Surgery";journal;"1091255X, 18734626";"Society for Surgery of the Alimentary Tract";No;No;0,814;Q1;155;370;1160;7821;2438;984;2,00;21,14;30,73;0;United States;Northern America;"Society for Surgery of the Alimentary Tract";"1997-2026";"Surgery (Q1); Gastroenterology (Q2)";"Medicine" +6726;15564;"Journal of Language and Social Psychology";journal;"15526526, 0261927X";"SAGE Publications Inc.";No;No;0,814;Q1;72;46;101;2874;328;101;2,78;62,48;68,03;0;United States;Northern America;"SAGE Publications Inc.";"1982-2026";"Anthropology (Q1); Education (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +6727;19700175004;"Open Medicinal Chemistry Journal";journal;"18741045";"Bentham Science Publishers";Yes;No;0,814;Q1;26;15;20;1154;154;20;0,86;76,93;46,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2009-2026";"Pharmaceutical Science (Q1); Drug Discovery (Q2); Molecular Medicine (Q2); Pharmacology (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +6728;12892;"Refugee Survey Quarterly";journal;"1471695X, 10204067";"Oxford University Press";No;No;0,814;Q1;39;34;76;3484;198;73;2,11;102,47;74,00;1;United Kingdom;Western Europe;"Oxford University Press";"1982, 1985, 1988-1990, 1992, 1994-1995, 1997, 2000-2025";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +6729;23879;"Journal of Interventional Cardiac Electrophysiology";journal;"15728595, 1383875X";"Springer";No;No;0,814;Q2;68;324;853;6550;1616;657;2,05;20,22;23,04;1;United States;Northern America;"Springer";"1997-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Physiology (medical) (Q2)";"Medicine" +6730;19700174903;"Journal of Pain Research";journal;"11787090";"Dove Medical Press Ltd";Yes;No;0,814;Q2;84;622;1072;26245;3389;978;2,88;42,19;41,63;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2002, 2009-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +6731;2600147401;"Universal Access in the Information Society";journal;"16155289, 16155297";"Springer Verlag";No;No;0,814;Q2;65;170;317;9407;1688;310;5,35;55,34;46,40;5;Germany;Western Europe;"Springer Verlag";"2003-2026";"Computer Networks and Communications (Q2); Human-Computer Interaction (Q2); Information Systems (Q2); Software (Q2)";"Computer Science" +6732;20691;"BMC Immunology";journal;"14712172";"BioMed Central Ltd";Yes;No;0,814;Q3;79;100;198;4456;619;197;2,74;44,56;45,59;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2026";"Immunology (Q3)";"Immunology and Microbiology" +6733;18700156727;"Animal Cells and Systems";journal;"21512485, 19768354";"Taylor and Francis Ltd.";Yes;No;0,813;Q1;28;52;128;3082;440;128;3,54;59,27;42,32;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Animal Science and Zoology (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +6734;11300153701;"Insect Science";journal;"17447917, 16729609";"Wiley-Blackwell Publishing Ltd";No;No;0,813;Q1;72;307;410;19962;1618;397;4,08;65,02;40,26;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Agronomy and Crop Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +6735;14761;"International Journal of Stress Management";journal;"10725245, 15733424";"American Psychological Association";No;No;0,813;Q1;81;33;111;2759;311;111;2,62;83,61;53,06;0;United States;Northern America;"American Psychological Association";"1994-2026";"Business, Management and Accounting (miscellaneous) (Q1); Education (Q1); Applied Psychology (Q2); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)";"Business, Management and Accounting; Medicine; Psychology; Social Sciences" +6736;16151;"Medical Law Review";journal;"14643790, 09670742";"Oxford University Press";No;No;0,813;Q1;38;42;97;5459;249;68;2,57;129,98;60,00;1;United Kingdom;Western Europe;"Oxford University Press";"1993-2026";"Law (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Social Sciences" +6737;21101005205;"Nursing Research and Practice";journal;"20901429, 20901437";"John Wiley and Sons Ltd";Yes;No;0,813;Q1;15;68;58;2745;208;58;2,62;40,37;68,33;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2013, 2020-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +6738;39591;"Pest Management Science";journal;"15264998, 1526498X";"John Wiley and Sons Ltd";No;No;0,813;Q1;173;764;1662;43064;7592;1651;4,54;56,37;39,34;3;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2000-2026";"Agronomy and Crop Science (Q1); Insect Science (Q1); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Medicine" +6739;6500153159;"Philosophical Explorations";journal;"17415918, 13869795";"Routledge";No;No;0,813;Q1;42;23;80;1180;167;72;1,44;51,30;22,22;0;United Kingdom;Western Europe;"Routledge";"1998-2026";"Philosophy (Q1)";"Arts and Humanities" +6740;21101065550;"QRB Discovery";journal;"26332892";"Cambridge University Press";Yes;No;0,813;Q1;13;22;46;1645;153;44;1,88;74,77;35,71;0;United Kingdom;Western Europe;"Cambridge University Press";"2020-2026";"Biophysics (Q1)";"Biochemistry, Genetics and Molecular Biology" +6741;21100817648;"Race and Justice";journal;"21533687";"SAGE Publications Inc.";No;No;0,813;Q1;28;72;106;4578;351;97;3,06;63,58;50,00;6;United States;Northern America;"SAGE Publications Inc.";"2011-2026";"Anthropology (Q1); Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6742;100147343;"Sex Education";journal;"14720825, 14681811";"Routledge";No;No;0,813;Q1;55;100;165;4557;537;157;3,30;45,57;71,25;4;United Kingdom;Western Europe;"Routledge";"2004-2026";"Education (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +6743;5700162123;"Turkish Studies";journal;"14683849, 17439663";"Routledge";Yes;No;0,813;Q1;39;58;115;3432;272;113;2,07;59,17;41,67;1;United Kingdom;Western Europe;"Routledge";"2009-2026";"History (Q1); Political Science and International Relations (Q1)";"Arts and Humanities; Social Sciences" +6744;21101056011;"mHealth";journal;"23069740";"AME Publishing Company";No;No;0,813;Q2;24;66;104;3310;364;94;3,61;50,15;53,07;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2016, 2018-2026";"Health Informatics (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6745;21101298335;"Organoids";journal;"26741172";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,813;Q2;10;33;50;2860;159;44;2,59;86,67;47,02;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biomedical Engineering (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering" +6746;28585;"Acta Metallurgica Sinica (English Letters)";journal;"21941289, 10067191";"Springer International Publishing";No;No;0,812;Q1;60;165;497;9265;1997;479;4,15;56,15;30,49;0;China;Asiatic Region;"Springer International Publishing";"1997-2025";"Industrial and Manufacturing Engineering (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science" +6747;21100862642;"Australasian Emergency Care";journal;"25891375, 2588994X";"Elsevier Australia";No;No;0,812;Q1;40;63;145;2480;457;142;3,15;39,37;58,85;0;Australia;Pacific Region;"Elsevier Australia";"2018-2026";"Emergency Nursing (Q1)";"Nursing" +6748;21101040213;"Constructive Mathematical Analysis";journal;"26512939";"";Yes;Yes;0,812;Q1;19;20;64;467;151;64;2,75;23,35;24,39;0;Turkey;Middle East;"";"2018-2025";"Analysis (Q1); Applied Mathematics (Q1); Numerical Analysis (Q1)";"Mathematics" +6749;26394;"Electronic Journal of Linear Algebra";journal;"10813810, 15379582";"International Linear Algebra Society";Yes;No;0,812;Q1;38;48;146;963;133;146;0,90;20,06;25,27;0;United States;Northern America;"International Linear Algebra Society";"1996-2026";"Algebra and Number Theory (Q1)";"Mathematics" +6750;5800179585;"European archives of paediatric dentistry : official journal of the European Academy of Paediatric Dentistry";journal;"19969805, 18186300";"Springer Verlag";No;No;0,812;Q1;59;200;283;6442;847;250;1,96;32,21;60,17;0;Germany;Western Europe;"Springer Verlag";"2006-2026";"Dentistry (miscellaneous) (Q1); Pediatrics, Perinatology and Child Health (Q1)";"Dentistry; Medicine" +6751;95143;"Fungal Ecology";journal;"17545048";"Elsevier B.V.";No;No;0,812;Q1;83;43;149;3220;495;147;3,51;74,88;39,70;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Ecological Modeling (Q2)";"Agricultural and Biological Sciences; Environmental Science" +6752;29601;"Hydrology Research";journal;"22247955, 19989563";"IWA Publishing";Yes;No;0,812;Q1;63;72;263;3786;931;257;3,88;52,58;31,63;0;United Kingdom;Western Europe;"IWA Publishing";"1973-2026";"Water Science and Technology (Q1)";"Environmental Science" +6753;26855;"International Migration";journal;"14682435, 00207985";"Wiley-Blackwell Publishing Ltd";No;No;0,812;Q1;90;188;365;10595;1002;300;2,59;56,36;54,69;15;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1961-2026";"Demography (Q1)";"Social Sciences" +6754;15506;"Journal of Fluency Disorders";journal;"0094730X, 1873801X";"Elsevier Inc.";No;No;0,812;Q1;72;53;70;3688;191;69;2,53;69,58;60,00;0;United States;Northern America;"Elsevier Inc.";"1974, 1977-2026";"Linguistics and Language (Q1); LPN and LVN (Q1); Speech and Hearing (Q1); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)";"Health Professions; Neuroscience; Nursing; Psychology; Social Sciences" +6755;21712;"Journal of Pediatric Surgery";journal;"00223468, 15315037";"W.B. Saunders";No;No;0,812;Q1;155;634;1402;15200;3032;1161;2,06;23,97;45,64;1;United States;Northern America;"W.B. Saunders";"1966-2026";"Pediatrics, Perinatology and Child Health (Q1); Surgery (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6756;21100310028;"Journal of Transport and Health";journal;"22141413, 22141405";"Elsevier Ltd";No;No;0,812;Q1;71;215;454;13249;1759;441;3,52;61,62;51,21;5;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1); Health Policy (Q2); Pollution (Q2); Public Health, Environmental and Occupational Health (Q2); Transportation (Q2)";"Engineering; Environmental Science; Medicine; Social Sciences" +6757;27847;"Marine Geology";journal;"00253227";"Elsevier B.V.";No;No;0,812;Q1;167;137;493;11730;1293;486;2,65;85,62;31,73;1;Netherlands;Western Europe;"Elsevier B.V.";"1964-2026";"Geology (Q1); Geochemistry and Petrology (Q2); Oceanography (Q2)";"Earth and Planetary Sciences" +6758;20738;"Review of Higher Education";journal;"01625748, 10907009";"Johns Hopkins University Press";No;No;0,812;Q1;85;22;49;1716;147;49;2,59;78,00;46,67;0;United States;Northern America;"Johns Hopkins University Press";"1996-2025";"Education (Q1)";"Social Sciences" +6759;21101202202;"ChemSystemsChem";journal;"25704206";"John Wiley and Sons Inc";No;No;0,812;Q2;21;39;86;3016;193;79;2,12;77,33;36,49;0;Germany;Western Europe;"John Wiley and Sons Inc";"2019-2026";"Biochemistry (Q2); Bioengineering (Q2); Catalysis (Q2); Chemistry (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry" +6760;24089;"North American Journal of Economics and Finance";journal;"10629408";"Elsevier Inc.";No;No;0,812;Q2;73;208;519;12268;2481;517;4,69;58,98;30,86;1;United States;Northern America;"Elsevier Inc.";"1992-2026";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +6761;21100908411;"BMC Molecular and Cell Biology";journal;"26618850";"BioMed Central Ltd";Yes;No;0,812;Q3;28;34;121;1484;379;121;3,03;43,65;50,90;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2019-2026";"Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +6762;20442;"American Journal of Surgery";journal;"00029610, 18791883";"Elsevier Inc.";No;No;0,811;Q1;177;518;1474;12821;2822;1029;1,78;24,75;44,92;0;United States;Northern America;"Elsevier Inc.";"1917, 1919, 1926-2026";"Surgery (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6763;21100970310;"BJGP Open";journal;"23983795";"Royal College of General Practitioners";Yes;No;0,811;Q1;32;152;330;5353;746;329;2,12;35,22;60,00;0;United Kingdom;Western Europe;"Royal College of General Practitioners";"2017-2025";"Family Practice (Q1)";"Medicine" +6764;25810;"Cellulose";journal;"09690239";"Springer Netherlands";No;No;0,811;Q1;175;589;1962;35379;10369;1958;4,92;60,07;39,32;0;Netherlands;Western Europe;"Springer Netherlands";"1994-2026";"Polymers and Plastics (Q1)";"Materials Science" +6765;21100446523;"International Journal of Mentoring and Coaching in Education";journal;"20466862, 20466854";"Emerald Publishing";No;No;0,811;Q1;30;38;88;2117;299;86;3,13;55,71;69,61;0;United Kingdom;Western Europe;"Emerald Publishing";"2012-2026";"Education (Q1); Life-span and Life-course Studies (Q2)";"Social Sciences" +6766;5600153495;"Journal of Industrial Relations";journal;"00221856, 14729296";"SAGE Publications Inc.";No;No;0,811;Q1;47;39;117;2813;358;111;1,99;72,13;42,86;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"1959-2026";"Industrial Relations (Q1); Business and International Management (Q2)";"Business, Management and Accounting" +6767;21100241646;"Journal of Vascular Surgery: Venous and Lymphatic Disorders";journal;"2213333X, 22133348";"Elsevier Inc.";Yes;No;0,811;Q1;59;129;559;2901;1241;474;1,98;22,49;34,80;0;United States;Northern America;"Elsevier Inc.";"2013-2026";"Surgery (Q1); Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +6768;144973;"Men and Masculinities";journal;"15526828, 1097184X";"SAGE Publications Inc.";No;No;0,811;Q1;82;50;107;2974;366;107;2,68;59,48;57,45;0;United States;Northern America;"SAGE Publications Inc.";"1998-2026";"Gender Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +6769;25148;"Michigan Mathematical Journal";journal;"19452365, 00262285";"University of Michigan";No;No;0,811;Q1;45;34;131;897;95;131;0,63;26,38;14,67;0;United States;Northern America;"University of Michigan";"1996-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +6770;21100886380;"Bioengineering";journal;"23065354";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,811;Q2;83;1373;3556;78814;18456;3489;5,00;57,40;35,62;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"1981, 2014-2026";"Bioengineering (Q2)";"Chemical Engineering" +6771;13194;"Career Development Quarterly";journal;"21610045, 08894019";"Wiley-Blackwell";No;No;0,811;Q2;70;25;74;1569;227;74;2,67;62,76;65,75;0;United States;Northern America;"Wiley-Blackwell";"1986-2026";"Applied Psychology (Q2); Organizational Behavior and Human Resource Management (Q2); Psychology (miscellaneous) (Q2)";"Business, Management and Accounting; Psychology" +6772;18436;"Chronic Respiratory Disease";journal;"14799723, 14799731";"SAGE Publications Ltd";Yes;No;0,811;Q2;58;49;141;1924;392;129;2,66;39,27;50,95;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2004-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +6773;4000148019;"AAPS Journal";journal;"15507416";"Springer Science and Business Media Deutschland GmbH";No;No;0,810;Q1;141;157;318;6543;1260;290;3,39;41,68;41,90;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1999-2026";"Pharmaceutical Science (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +6774;27122;"Applied Nursing Research";journal;"15328201, 08971897";"W.B. Saunders";No;No;0,810;Q1;74;107;209;4359;703;204;2,83;40,74;65,08;0;United States;Northern America;"W.B. Saunders";"1988-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +6775;14432;"Daedalus";journal;"00115266, 15486192";"MIT Press";No;No;0,810;Q1;76;53;230;2348;882;210;2,12;44,30;59,42;1;United States;Northern America;"MIT Press";"1965, 1968-1989, 1992-1996, 1998-2025";"Arts and Humanities (miscellaneous) (Q1); History and Philosophy of Science (Q1); Political Science and International Relations (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +6776;21100901062;"Dentistry Journal";journal;"23046767";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,810;Q1;50;611;948;29890;3784;942;3,80;48,92;46,58;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +6777;11000153737;"Head and Neck";journal;"10970347, 10433074";"John Wiley & Sons Inc.";No;No;0,810;Q1;158;401;942;14243;2459;903;2,42;35,52;38,64;2;United States;Northern America;"John Wiley & Sons Inc.";"1989-2026";"Otorhinolaryngology (Q1)";"Medicine" +6778;144977;"Homicide Studies";journal;"15526720, 10887679";"SAGE Publications Inc.";No;No;0,810;Q1;60;26;86;1407;253;81;3,00;54,12;67,14;2;United States;Northern America;"SAGE Publications Inc.";"1997-2026";"Law (Q1); Pathology and Forensic Medicine (Q1); Psychology (miscellaneous) (Q2)";"Medicine; Psychology; Social Sciences" +6779;5700165203;"Journal of Cardiopulmonary Rehabilitation and Prevention";journal;"1932751X, 19327501";"Lippincott Williams and Wilkins";Yes;No;0,810;Q1;83;75;264;2564;543;229;1,87;34,19;48,51;0;United States;Northern America;"Lippincott Williams and Wilkins";"2007-2026";"Rehabilitation (Q1); Cardiology and Cardiovascular Medicine (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +6780;21101208643;"Journal of Computational and Cognitive Engineering";journal;"28109503, 28109570";"Bon View Publishing Pte Ltd";No;No;0,810;Q1;30;50;107;2194;786;106;5,84;43,88;30,34;0;Singapore;Asiatic Region;"Bon View Publishing Pte Ltd";"2022-2025";"Engineering (miscellaneous) (Q1); Computer Science Applications (Q2)";"Computer Science; Engineering" +6781;21101193873;"Journal of Economics and Development";journal;"26325330, 18590020";"Emerald Publishing";Yes;Yes;0,810;Q1;27;22;66;1252;426;66;5,72;56,91;38,89;0;United Kingdom;Western Europe;"Emerald Publishing";"2019-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Accounting (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +6782;14127;"Macromolecular Bioscience";journal;"16165195, 16165187";"Wiley-VCH Verlag";No;No;0,810;Q1;129;189;644;13559;3126;641;4,54;71,74;43,52;0;Germany;Western Europe;"Wiley-VCH Verlag";"2001-2026";"Materials Chemistry (Q1); Polymers and Plastics (Q1); Bioengineering (Q2); Biomaterials (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Materials Science" +6783;21101274786;"Monographs of the Palaeontographical Society";journal;"02693445, 25761900";"Taylor and Francis Ltd.";No;No;0,810;Q1;5;2;9;199;24;9;2,17;99,50;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2020-2025";"Paleontology (Q1)";"Earth and Planetary Sciences" +6784;21101275454;"Update: Applications of Research in Music Education";journal;"19450109, 87551233";"SAGE Publications Inc.";No;No;0,810;Q1;9;38;75;1788;129;66;1,68;47,05;56,82;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1988, 1991-1993, 1995, 2002, 2006-2009, 2012, 2016, 2018, 2021-2026";"Education (Q1); Music (Q1)";"Arts and Humanities; Social Sciences" +6785;21100256972;"Water Resources and Economics";journal;"22124284";"Elsevier B.V.";No;No;0,810;Q1;33;17;61;1092;204;61;3,20;64,24;37,68;1;Netherlands;Western Europe;"Elsevier B.V.";"2013-2025";"Geography, Planning and Development (Q1); Water Science and Technology (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +6786;21100446517;"International Journal of Managing Projects in Business";journal;"17538378, 17538386";"Emerald Publishing";No;No;0,810;Q2;57;68;138;6116;718;136;4,52;89,94;37,37;0;United Kingdom;Western Europe;"Emerald Publishing";"2008-2026";"Business and International Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +6787;21194;"Pharmacology";journal;"00317012, 14230313";"S. Karger AG";No;No;0,810;Q2;73;37;160;1635;492;158;2,47;44,19;40,78;0;Switzerland;Western Europe;"S. Karger AG";"1959-2025";"Medicine (miscellaneous) (Q2); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6788;24335;"Australian Dental Journal";journal;"18347819, 00450421";"Wiley-Blackwell";No;No;0,809;Q1;95;50;161;1926;474;138;2,95;38,52;34,23;1;United States;Northern America;"Wiley-Blackwell";"1945-1951, 1956-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +6789;21100854640;"Evolution, Medicine and Public Health";journal;"20506201";"Oxford University Press";Yes;No;0,809;Q1;40;34;115;2447;287;111;2,17;71,97;42,61;0;United Kingdom;Western Europe;"Oxford University Press";"2013-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +6790;26052;"IEEE Transactions on Electron Devices";journal;"00189383, 15579646";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,809;Q1;221;1032;3296;33190;12646;3289;3,74;32,16;27,30;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-2026";"Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science" +6791;22511;"Invertebrate Systematics";journal;"14472600, 14455226";"CSIRO Publishing";No;No;0,809;Q1;60;29;96;2187;225;96;2,39;75,41;29,93;0;Australia;Pacific Region;"CSIRO Publishing";"1987-2026";"Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +6792;27602;"Journal of Asian Earth Sciences";journal;"18785786, 13679120";"Elsevier Ltd";No;No;0,809;Q1;173;315;978;26711;2946;969;2,73;84,80;28,47;0;United Kingdom;Western Europe;"Elsevier Ltd";"1997-2026";"Earth-Surface Processes (Q1); Geology (Q1)";"Earth and Planetary Sciences" +6793;19447;"Journal of the American Pharmacists Association";journal;"15443191, 15443450";"Elsevier B.V.";No;No;0,809;Q1;78;195;786;6185;1648;661;1,94;31,72;59,82;2;United States;Northern America;"Elsevier B.V.";"2003-2026";"Pharmacology (nursing) (Q1); Pharmacy (Q1); Pharmacology (Q2)";"Health Professions; Nursing; Pharmacology, Toxicology and Pharmaceutics" +6794;28911;"Leisure Studies";journal;"14664496, 02614367";"Routledge";No;No;0,809;Q1;86;147;210;9370;917;192;4,38;63,74;45,56;2;United Kingdom;Western Europe;"Routledge";"1981-2026";"Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +6795;21101050036;"Political Research Exchange";journal;"2474736X";"Taylor and Francis Ltd.";Yes;No;0,809;Q1;16;37;73;2550;264;58;2,69;68,92;44,93;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2026";"Political Science and International Relations (Q1)";"Social Sciences" +6796;17400154828;"Psychological Injury and Law";journal;"1938971X, 19389728";"Springer New York";No;No;0,809;Q1;39;27;92;1671;373;90;3,25;61,89;38,20;0;United States;Northern America;"Springer New York";"2008-2026";"Ecology (Q1); Law (Q1); Psychiatry and Mental Health (Q2)";"Environmental Science; Medicine; Social Sciences" +6797;28214;"Seminars in Fetal and Neonatal Medicine";journal;"18780946, 1744165X";"W.B. Saunders Ltd";No;No;0,809;Q1;116;51;146;3327;474;138;2,90;65,24;50,74;0;United Kingdom;Western Europe;"W.B. Saunders Ltd";"2004-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +6798;24944;"Sexually Transmitted Diseases";journal;"15374521, 01485717";"Lippincott Williams and Wilkins";No;No;0,809;Q1;118;184;544;4130;853;468;1,54;22,45;57,37;0;United States;Northern America;"Lippincott Williams and Wilkins";"1977-2026";"Dermatology (Q1); Infectious Diseases (Q2); Microbiology (medical) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6799;21101263161;"Sustainable Chemistry";journal;"26734079";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,809;Q1;26;49;82;4005;435;76;5,60;81,73;44,44;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2)";"Chemical Engineering; Chemistry" +6800;21101161459;"Journal of Hepatocellular Carcinoma";journal;"22535969";"Dove Medical Press Ltd";Yes;No;0,809;Q2;17;217;355;8605;1287;350;3,63;39,65;38,46;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2019, 2021-2026";"Hepatology (Q2); Oncology (Q2)";"Medicine" +6801;6700153281;"Asian Journal of Mathematics";journal;"19450036, 10936106";"International Press, Inc.";No;No;0,808;Q1;28;24;80;632;57;78;0,66;26,33;25,00;0;United States;Northern America;"International Press, Inc.";"2000, 2005-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)";"Mathematics" +6802;29291;"Community Mental Health Journal";journal;"15732789, 00103853";"Springer Netherlands";No;No;0,808;Q1;89;190;452;8097;1155;449;2,32;42,62;67,67;1;United States;Northern America;"Springer Netherlands";"1965-2026";"Health (social science) (Q1); Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +6803;28969;"European Physical Journal A";journal;"1434601X, 14346001";"Springer";No;No;0,808;Q1;116;277;794;18539;2000;781;2,40;66,93;23,13;0;Germany;Western Europe;"Springer";"1998-2026";"Nuclear and High Energy Physics (Q1)";"Physics and Astronomy" +6804;12100155404;"Health Sociology Review";journal;"14461242, 18393551";"Routledge";No;No;0,808;Q1;43;25;70;1309;216;66;3,20;52,36;62,50;0;United Kingdom;Western Europe;"Routledge";"2008-2026";"Health (social science) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6805;88345;"Journal of Global Optimization";journal;"09255001, 15732916";"Springer Netherlands";No;No;0,808;Q1;105;144;376;6201;804;373;2,06;43,06;26,59;0;Netherlands;Western Europe;"Springer Netherlands";"1991-2026";"Applied Mathematics (Q1); Business, Management and Accounting (miscellaneous) (Q1); Control and Optimization (Q1); Computer Science Applications (Q2); Management Science and Operations Research (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences; Mathematics" +6806;27959;"Journal of the Franklin Institute";journal;"00160032";"Elsevier Ltd";No;No;0,808;Q1;116;696;1912;29293;7819;1901;4,14;42,09;30,98;2;United Kingdom;Western Europe;"Elsevier Ltd";"1826-2026";"Applied Mathematics (Q1); Signal Processing (Q1); Computer Networks and Communications (Q2); Control and Systems Engineering (Q2)";"Computer Science; Engineering; Mathematics" +6807;21101321448;"Virtual Worlds";journal;"28132084";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,808;Q1;14;59;61;3411;433;60;6,63;57,81;43,91;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Computer Science (miscellaneous) (Q1)";"Computer Science" +6808;29325;"Current Problems in Cancer";journal;"01470272, 15356345";"Elsevier Inc.";No;No;0,808;Q2;54;40;162;2085;439;154;2,79;52,13;42,23;0;United States;Northern America;"Elsevier Inc.";"1976-2026";"Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6809;21101061925;"F and S Reports";journal;"26663341";"Elsevier Inc.";Yes;No;0,808;Q2;21;117;265;2182;585;192;2,06;18,65;54,21;0;United States;Northern America;"Elsevier Inc.";"2020-2026";"Embryology (Q2); Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)";"Medicine" +6810;25106;"Human and Experimental Toxicology";journal;"14770903, 09603271";"SAGE Publications Ltd";Yes;No;0,808;Q2;99;66;293;2721;1140;289;3,84;41,23;43,54;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1981-2026";"Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2); Toxicology (Q2)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6811;17467;"Neurobiology of Learning and Memory";journal;"10959564, 10747427";"Academic Press Inc.";No;No;0,808;Q2;140;63;221;5065;478;216;2,11;80,40;50,85;0;United States;Northern America;"Academic Press Inc.";"1995-2026";"Behavioral Neuroscience (Q2); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)";"Neuroscience; Psychology" +6812;24028;"Reproductive Toxicology";journal;"08906238, 18731708";"Elsevier Inc.";No;No;0,808;Q2;139;225;441;14001;1614;429;3,71;62,23;53,11;0;United States;Northern America;"Elsevier Inc.";"1987-2026";"Toxicology (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +6813;19400158810;"Child Indicators Research";journal;"18748988, 1874897X";"Springer Netherlands";No;No;0,807;Q1;57;117;322;8212;940;322;2,70;70,19;54,18;2;Netherlands;Western Europe;"Springer Netherlands";"2010-2026";"Health (social science) (Q1); Sociology and Political Science (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +6814;21100857389;"Entrepreneurial Business and Economics Review";journal;"2353883X, 23538821";"Cracow University of Economics";Yes;Yes;0,807;Q1;33;45;131;3033;776;131;7,18;67,40;44,85;0;Poland;Eastern Europe;"Cracow University of Economics";"2013-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Political Science and International Relations (Q1); Business and International Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +6815;21101151497;"International Journal of Mechanical System Dynamics";journal;"27671402, 27671399";"John Wiley and Sons Inc";Yes;No;0,807;Q1;20;56;93;2605;422;91;3,56;46,52;24,55;0;United States;Northern America;"John Wiley and Sons Inc";"2021-2026";"Mechanical Engineering (Q1); Control and Systems Engineering (Q2)";"Engineering" +6816;23704;"Journal of Gender Studies";journal;"14653869, 09589236";"Routledge";No;No;0,807;Q1;60;199;253;11434;899;228;2,45;57,46;68,06;3;United Kingdom;Western Europe;"Routledge";"1991-2026";"Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +6817;30021;"Journal of Pediatric Psychology";journal;"01468693, 1465735X";"Oxford University Press";No;No;0,807;Q1;147;108;319;5937;837;286;2,29;54,97;74,83;1;United Kingdom;Western Europe;"Oxford University Press";"1976-2025";"Pediatrics, Perinatology and Child Health (Q1); Developmental and Educational Psychology (Q2)";"Medicine; Psychology" +6818;21100829144;"Journal of the Australian Library and Information Association";journal;"24750158, 24750166";"Taylor and Francis Ltd.";No;No;0,807;Q1;32;44;90;1718;241;75;1,83;39,05;63,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Library and Information Sciences (Q1)";"Social Sciences" +6819;28529;"Nonlinear Processes in Geophysics";journal;"10235809, 16077946";"Copernicus Publications";Yes;No;0,807;Q1;71;28;94;1581;242;94;2,61;56,46;18,69;0;Germany;Western Europe;"Copernicus Publications";"1994-2026";"Geophysics (Q1); Geochemistry and Petrology (Q2); Statistical and Nonlinear Physics (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +6820;21100386454;"Nuclear Materials and Energy";journal;"23521791";"Elsevier Ltd";Yes;No;0,807;Q1;47;207;690;7774;1930;687;2,84;37,56;25,82;2;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Nuclear and High Energy Physics (Q1); Nuclear Energy and Engineering (Q1); Materials Science (miscellaneous) (Q2)";"Energy; Materials Science; Physics and Astronomy" +6821;21100255400;"Water (Switzerland)";journal;"20734441";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,807;Q1;145;3582;12103;202744;49408;11910;3,96;56,60;35,69;14;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Aquatic Science (Q1); Geography, Planning and Development (Q1); Water Science and Technology (Q1); Biochemistry (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Social Sciences" +6822;21100946920;"Aging Medicine";journal;"24750360";"John Wiley and Sons Inc";Yes;No;0,807;Q2;25;59;172;2734;486;150;2,75;46,34;41,06;0;United States;Northern America;"John Wiley and Sons Inc";"2018-2026";"Geriatrics and Gerontology (Q2); Aging (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6823;130074;"Cancer Genomics and Proteomics";journal;"17906245, 11096535";"International Institute of Anticancer Research";No;No;0,807;Q2;53;76;183;3919;533;183;2,66;51,57;35,46;0;Greece;Western Europe;"International Institute of Anticancer Research";"2004-2026";"Biochemistry (Q2); Genetics (Q2); Medicine (miscellaneous) (Q2); Cancer Research (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6824;21101152874;"ES Energy and Environment";journal;"25780646, 25780654";"Engineered Science Publisher";No;No;0,807;Q2;36;65;124;3758;965;122;8,38;57,82;44,18;0;United States;Northern America;"Engineered Science Publisher";"2019-2025";"Environmental Engineering (Q2); Materials Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Environmental Science; Materials Science" +6825;17332;"International Journal of Finance and Economics";journal;"10991158, 10769307";"John Wiley and Sons Ltd";No;No;0,807;Q2;64;329;755;23689;3620;752;5,20;72,00;27,88;5;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1996-2026";"Accounting (Q2); Economics and Econometrics (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +6826;17581;"Journal of Biochemistry";journal;"0021924X, 17562651";"Oxford University Press";Yes;No;0,807;Q2;134;83;333;3936;690;321;2,26;47,42;26,60;0;United Kingdom;Western Europe;"Oxford University Press";"1922-1942, 1944, 1950-2026";"Biochemistry (Q2); Medicine (miscellaneous) (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6827;23064;"Scandinavian Journal of Management";journal;"09565221, 18733387";"Elsevier Ltd";No;No;0,807;Q2;77;41;94;3721;288;81;2,50;90,76;48,57;1;United Kingdom;Western Europe;"Elsevier Ltd";"1988-2026";"Applied Psychology (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Psychology" +6828;19700175102;"Tropical Medicine and Health";journal;"13488945, 13494147";"BioMed Central Ltd";Yes;No;0,807;Q2;47;198;267;8768;1097;236;4,26;44,28;37,72;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6829;21101150689;"Analytical Science Advances";journal;"26285452";"John Wiley and Sons Inc";Yes;No;0,806;Q1;21;63;92;3120;410;73;4,41;49,52;42,12;0;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Analytical Chemistry (Q1)";"Chemistry" +6830;21101140358;"Clinical Hematology International";journal;"25900048";"Saabron Press";Yes;Yes;0,806;Q1;11;27;103;1046;210;70;1,98;38,74;39,78;0;United Kingdom;Western Europe;"Saabron Press";"2022-2026";"Health Professions (miscellaneous) (Q1); Hematology (Q2)";"Health Professions; Medicine" +6831;25201;"International Journal of Adolescence and Youth";journal;"02673843";"Taylor and Francis Ltd.";Yes;No;0,806;Q1;45;193;211;11268;666;207;2,81;58,38;59,42;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Health (social science) (Q1)";"Social Sciences" +6832;13739;"International Journal of Language and Communication Disorders";journal;"13682822, 14606984";"Wiley-Blackwell";No;No;0,806;Q1;94;181;405;9427;1342;394;3,23;52,08;73,35;1;United States;Northern America;"Wiley-Blackwell";"1966-2026";"Linguistics and Language (Q1); Speech and Hearing (Q1)";"Health Professions; Social Sciences" +6833;5800207538;"Journal of Early Childhood Literacy";journal;"17412919, 14687984";"SAGE Publications Ltd";No;No;0,806;Q1;56;54;93;2905;274;83;2,36;53,80;82,79;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Education (Q1)";"Social Sciences" +6834;20582;"Journal of Food Composition and Analysis";journal;"10960481, 08891575";"Academic Press Inc.";No;No;0,806;Q1;156;1676;2339;92614;14115;2334;5,98;55,26;46,35;3;United States;Northern America;"Academic Press Inc.";"1987-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +6835;24273;"Signs";journal;"15456943, 00979740";"University of Chicago Press";No;No;0,806;Q1;96;51;126;2118;247;109;1,69;41,53;90,74;0;United States;Northern America;"University of Chicago Press";"1979, 1985-1987, 1989, 1991, 1993, 1996, 1998-2026";"Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1)";"Arts and Humanities; Social Sciences" +6836;15471;"Third World Quarterly";journal;"01436597, 13602241";"Routledge";No;No;0,806;Q1;123;236;440;16706;1369;419;2,78;70,79;41,44;4;United Kingdom;Western Europe;"Routledge";"1979-1990, 1992-2026";"Development (Q1)";"Social Sciences" +6837;27971;"Zeitschrift fur Angewandte Mathematik und Physik";journal;"14209039, 00442275";"Springer International Publishing";No;No;0,806;Q1;76;256;741;9661;1462;741;1,93;37,74;28,06;0;Switzerland;Western Europe;"Springer International Publishing";"1950-2026";"Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Mathematics; Physics and Astronomy" +6838;19700175823;"Briefings in Functional Genomics";journal;"20412649, 20412657";"Oxford University Press";No;No;0,806;Q2;91;37;165;2420;548;161;3,34;65,41;42,70;1;United Kingdom;Western Europe;"Oxford University Press";"2010-2026";"Biochemistry (Q2); Genetics (Q2); Medicine (miscellaneous) (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6839;21100828963;"ACS Omega";journal;"24701343";"American Chemical Society";Yes;No;0,805;Q1;148;4960;13187;280155;70637;13177;5,27;56,48;37,60;0;United States;Northern America;"American Chemical Society";"2016-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2)";"Chemical Engineering; Chemistry" +6840;70201;"Clinical Neuropsychologist";journal;"13854046, 17444144";"Taylor and Francis Ltd.";No;No;0,805;Q1;106;193;305;11682;1105;303;3,23;60,53;57,17;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Medicine (miscellaneous) (Q2); Neuropsychology and Physiological Psychology (Q2); Psychiatry and Mental Health (Q2)";"Arts and Humanities; Medicine; Psychology" +6841;23552;"Cultural geographies";journal;"14744740, 14770881";"SAGE Publications Ltd";No;No;0,805;Q1;75;65;136;3299;264;129;1,82;50,75;46,15;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994-1998, 2002-2026";"Cultural Studies (Q1); Geography, Planning and Development (Q1); Environmental Science (miscellaneous) (Q2)";"Environmental Science; Social Sciences" +6842;21100857214;"International Journal of Bioprinting";journal;"24247723, 24248002";"AccScience Publishing";Yes;No;0,805;Q1;50;150;420;12522;2200;420;4,65;83,48;38,99;0;Singapore;Asiatic Region;"AccScience Publishing";"2015-2026";"Industrial and Manufacturing Engineering (Q1); Biotechnology (Q2); Materials Science (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +6843;19900191757;"Journal of Accounting and Organizational Change";journal;"18325912";"Emerald Publishing";No;No;0,805;Q1;43;102;130;8611;740;127;5,59;84,42;39,18;0;United Kingdom;Western Europe;"Emerald Publishing";"2005-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Accounting (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +6844;98028;"Journal of Biomedical Materials Research - Part A";journal;"15493296, 15524965";"John Wiley and Sons Inc";No;No;0,805;Q1;186;243;462;14950;2147;456;4,50;61,52;44,31;0;United States;Northern America;"John Wiley and Sons Inc";"2003-2026";"Ceramics and Composites (Q1); Metals and Alloys (Q1); Biomaterials (Q2); Biomedical Engineering (Q2)";"Engineering; Materials Science" +6845;4700151740;"Journal of Broadcasting and Electronic Media";journal;"08838151, 15506878";"Taylor and Francis Ltd.";No;No;0,805;Q1;96;34;108;2106;346;106;2,87;61,94;47,87;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-1996, 1998-2001, 2005-2026";"Communication (Q1)";"Social Sciences" +6846;29589;"Journal of Spacecraft and Rockets";journal;"15336794, 00224650";"American Institute of Aeronautics and Astronautics Inc. (AIAA)";No;No;0,805;Q1;98;178;470;6546;1084;421;2,29;36,78;15,97;0;United States;Northern America;"American Institute of Aeronautics and Astronautics Inc. (AIAA)";"1964-2025";"Aerospace Engineering (Q1); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Engineering" +6847;21100253674;"Nanomaterials";journal;"20794991";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,805;Q1;175;1889;9609;123521;50129;9366;4,90;65,39;37,12;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Chemical Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q2)";"Chemical Engineering; Materials Science" +6848;21100936973;"Palliative Care and Social Practice";journal;"26323524";"SAGE Publications Ltd";Yes;No;0,805;Q1;20;109;186;4606;561;174;2,81;42,26;65,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2019-2026";"Advanced and Specialized Nursing (Q1)";"Nursing" +6849;21101079132;"Wellbeing, Space and Society";journal;"26665581";"Elsevier B.V.";Yes;No;0,805;Q1;21;90;154;6218;524;151;3,22;69,09;61,68;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Geography, Planning and Development (Q1); Health (social science) (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +6850;21100923492;"Biosensors and Bioelectronics: X";journal;"25901370";"Elsevier Ltd";Yes;No;0,805;Q2;37;113;370;6997;2388;369;6,19;61,92;36,13;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Biomedical Engineering (Q2); Biophysics (Q2); Biotechnology (Q2); Electrochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Engineering" +6851;21100223111;"Information (Switzerland)";journal;"20782489";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,805;Q2;90;1113;2066;59793;12613;2053;6,46;53,72;30,79;4;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Information Systems (Q2)";"Computer Science" +6852;11500153412;"International Journal of Environmental Research";journal;"17356865, 20082304";"Springer Science and Business Media Deutschland GmbH";No;No;0,805;Q2;56;280;280;21212;1283;280;5,44;75,76;36,02;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2007-2026";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +6853;16275;"AIChE Journal";journal;"00011541, 15475905";"American Institute of Chemical Engineers";No;No;0,804;Q1;201;416;1131;20618;5107;1117;4,75;49,56;34,20;0;United States;Northern America;"American Institute of Chemical Engineers";"1955-2026";"Chemical Engineering (miscellaneous) (Q1); Biotechnology (Q2); Environmental Engineering (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Environmental Science" +6854;21100264002;"Ecology and Evolution";journal;"20457758";"John Wiley and Sons Ltd";Yes;No;0,804;Q1;121;1963;3846;143558;10349;3818;2,54;73,13;40,93;6;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +6855;21100945900;"Health Psychology and Behavioral Medicine";journal;"21642850";"Taylor and Francis Ltd.";Yes;No;0,804;Q1;27;59;181;3084;558;179;2,84;52,27;61,17;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014, 2017-2026";"Health (social science) (Q1); Behavioral Neuroscience (Q2); Psychology (miscellaneous) (Q2)";"Neuroscience; Psychology; Social Sciences" +6856;21100399701;"Clinical Obesity";journal;"17588103, 17588111";"John Wiley & Sons Inc.";No;No;0,804;Q2;45;75;191;3024;483;182;2,22;40,32;38,26;1;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2011-2026";"Endocrinology, Diabetes and Metabolism (Q2)";"Medicine" +6857;22271;"Immunogenetics";journal;"00937711, 14321211";"Springer Science and Business Media Deutschland GmbH";No;No;0,804;Q2;104;33;120;1752;275;116;2,14;53,09;43,39;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1974-2026";"Genetics (Q2); Immunology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +6858;19700194023;"Infectious Disease Reports";journal;"20367449, 20367430";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,804;Q2;34;150;272;6623;716;267;2,56;44,15;49,20;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2025";"Infectious Diseases (Q2)";"Medicine" +6859;27521;"International Journal of Gynecology and Obstetrics";journal;"00207292, 18793479";"John Wiley and Sons Ltd";No;No;0,804;Q2;128;827;1871;25297;4448;1710;2,36;30,59;56,18;5;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1973-2026";"Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)";"Medicine" +6860;15816;"Journal of the National Medical Association";journal;"00279684, 19434693";"National Medical Association";Yes;No;0,804;Q2;91;111;282;2914;656;241;2,04;26,25;57,18;0;United States;Northern America;"National Medical Association";"1946-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +6861;21101077109;"Meitan Kexue Jishu/Coal Science and Technology (Peking)";journal;"02532336";"China Coal Society";Yes;No;0,804;Q2;35;414;1149;14708;3703;1149;3,62;35,53;26,41;0;China;Asiatic Region;"China Coal Society";"2020-2026";"Energy (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Energy" +6862;21100369818;"Neurodegenerative Disease Management";journal;"17582024, 17582032";"Taylor and Francis Ltd.";No;No;0,804;Q2;38;73;90;3690;234;81;2,67;50,55;52,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)";"Medicine" +6863;20043;"Scandinavian Actuarial Journal";journal;"03461238, 16512030";"Taylor and Francis Ltd.";No;No;0,804;Q2;48;64;122;2388;229;122;1,93;37,31;33,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1918-2026";"Economics and Econometrics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +6864;23392;"Chemistry - A European Journal";journal;"15213765, 09476539";"John Wiley and Sons Inc";No;No;0,803;Q1;290;2028;5667;133124;18905;5621;3,37;65,64;33,06;0;Germany;Western Europe;"John Wiley and Sons Inc";"1995-2026";"Organic Chemistry (Q1); Catalysis (Q2); Chemistry (miscellaneous) (Q2)";"Chemical Engineering; Chemistry" +6865;21101033903;"Civil Engineering Journal (Iran)";journal;"26766957, 24763055";"Salehan Institute of Higher Education";No;No;0,803;Q1;48;282;678;13820;3254;678;5,52;49,01;27,49;0;Iran;Middle East;"Salehan Institute of Higher Education";"2019-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Environmental Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering; Environmental Science" +6866;14963;"Current Opinion in Pediatrics";journal;"10408703, 1531698X";"Lippincott Williams and Wilkins";No;No;0,803;Q1;112;99;306;5019;836;278;2,81;50,70;66,38;0;United States;Northern America;"Lippincott Williams and Wilkins";"1989-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +6867;21101055810;"IEEE Transactions on Radiation and Plasma Medical Sciences";journal;"24697311";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,803;Q1;46;150;260;6909;1104;260;4,04;46,06;29,32;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017-2026";"Instrumentation (Q1); Atomic and Molecular Physics, and Optics (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine; Physics and Astronomy" +6868;21101134423;"International Journal of Hydromechatronics";journal;"25150464, 25150472";"Inderscience Publishers";No;No;0,803;Q1;22;24;66;916;366;66;5,80;38,17;22,13;0;United Kingdom;Western Europe;"Inderscience Publishers";"2019-2025";"Automotive Engineering (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +6869;28042;"Journal of Geographical Systems";journal;"14355949, 14355930";"Springer Verlag";No;No;0,803;Q1;67;31;89;1085;257;76;2,75;35,00;32,00;0;Germany;Western Europe;"Springer Verlag";"1999-2026";"Earth-Surface Processes (Q1); Geography, Planning and Development (Q1); Economics and Econometrics (Q2)";"Earth and Planetary Sciences; Economics, Econometrics and Finance; Social Sciences" +6870;17300154920;"Journal of Semiconductors";journal;"16744926";"IOS Press BV";No;No;0,803;Q1;59;117;431;5965;1619;409;4,05;50,98;33,01;0;United Kingdom;Western Europe;"IOS Press BV";"2009-2025";"Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Materials Chemistry (Q1); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +6871;6300153121;"Journal of Theoretical and Applied Electronic Commerce Research";journal;"07181876";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;Yes;0,803;Q1;63;358;379;25765;2571;376;6,10;71,97;42,72;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2006-2026";"Business, Management and Accounting (miscellaneous) (Q1); Computer Science Applications (Q2)";"Business, Management and Accounting; Computer Science" +6872;21101227929;"Nordic Journal of Media Studies";journal;"2003184X";"Goteborg University";Yes;Yes;0,803;Q1;11;9;29;451;60;29;1,50;50,11;73,33;0;Germany;Western Europe;"Goteborg University";"2019-2025";"Communication (Q1); Education (Q1); Media Technology (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Computer Networks and Communications (Q2); Global and Planetary Change (Q2)";"Computer Science; Engineering; Environmental Science; Social Sciences" +6873;4000149603;"Political Studies Review";journal;"14789299, 14789302";"SAGE Publications Ltd";No;No;0,803;Q1;48;92;179;4932;476;175;2,93;53,61;35,33;6;United Kingdom;Western Europe;"SAGE Publications Ltd";"2006-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6874;24786;"Alcohol and Alcoholism";journal;"07350414, 14643502";"Oxford University Press";No;No;0,803;Q2;115;80;284;3684;672;265;1,97;46,05;54,38;2;United Kingdom;Western Europe;"Oxford University Press";"1965-2026";"Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2); Toxicology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6875;27123;"Archives of Psychiatric Nursing";journal;"15328228, 08839417";"W.B. Saunders";No;No;0,803;Q2;71;102;397;4011;1037;367;2,38;39,32;64,80;1;United States;Northern America;"W.B. Saunders";"1987-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +6876;18075;"Neurotoxicology and Teratology";journal;"08920362, 18729738";"Elsevier Inc.";No;No;0,803;Q2;119;46;136;3227;491;132;3,91;70,15;55,02;0;United States;Northern America;"Elsevier Inc.";"1987-2026";"Developmental Neuroscience (Q2); Toxicology (Q2); Cellular and Molecular Neuroscience (Q3)";"Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +6877;19252;"Transplant Infectious Disease";journal;"13993062, 13982273";"Wiley-Blackwell Publishing Ltd";No;No;0,803;Q2;82;181;626;4121;1119;439;1,84;22,77;47,46;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1999-2026";"Infectious Diseases (Q2); Transplantation (Q2)";"Medicine" +6878;145656;"Proceedings of the IEEE Real-Time and Embedded Technology and Applications Symposium, RTAS";conference and proceedings;"15453421";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,803;-;64;39;104;1526;368;98;3,65;39,13;22,14;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2005-2009, 2015, 2017-2025";"Engineering (miscellaneous)";"Engineering" +6879;21100447811;"Agronomy";journal;"20734395";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,802;Q1;141;2917;9342;179737;44449;9208;4,61;61,62;41,22;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Agronomy and Crop Science (Q1)";"Agricultural and Biological Sciences" +6880;21101034382;"Asia Pacific Journal of Public Administration";journal;"23276665, 23276673";"Routledge";No;No;0,802;Q1;24;30;71;1934;230;53;3,96;64,47;45,95;0;United Kingdom;Western Europe;"Routledge";"2004-2026";"Public Administration (Q1)";"Social Sciences" +6881;14614;"Chinese Journal of Rock Mechanics and Engineering";journal;"10006915";"Science Press";No;No;0,802;Q1;115;213;943;7633;2977;942;3,02;35,84;27,78;0;China;Asiatic Region;"Science Press";"1998-2026";"Civil and Structural Engineering (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +6882;5700152813;"English World-Wide";journal;"15699730, 01728865";"John Benjamins Publishing Company";No;No;0,802;Q1;44;12;43;747;90;40;1,87;62,25;51,72;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1980-2025";"Linguistics and Language (Q1)";"Social Sciences" +6883;21101121175;"Frontiers in Oral Health";journal;"26734842";"Frontiers Media SA";Yes;No;0,802;Q1;33;329;427;13894;1502;379;3,11;42,23;45,94;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Dentistry (miscellaneous) (Q1); Oral Surgery (Q1); Periodontics (Q1)";"Dentistry" +6884;25267;"Inorganic Chemistry Communications";journal;"13877003";"Elsevier B.V.";No;No;0,802;Q1;92;2003;4029;138235;24696;4029;6,37;69,01;36,33;0;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Inorganic Chemistry (Q1); Materials Chemistry (Q1); Physical and Theoretical Chemistry (Q1)";"Chemistry; Materials Science" +6885;14500154702;"Journal of Cardiovascular Translational Research";journal;"19375395, 19375387";"Springer";No;No;0,802;Q1;68;163;400;9633;1110;369;2,70;59,10;39,29;0;United States;Northern America;"Springer";"2008-2026";"Pharmaceutical Science (Q1); Cardiology and Cardiovascular Medicine (Q2); Genetics (Q2); Genetics (clinical) (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6886;10100153322;"Journal of Immigrant and Refugee Studies";journal;"15562956, 15562948";"Routledge";No;No;0,802;Q1;43;114;180;7112;493;179;2,41;62,39;67,98;8;United States;Northern America;"Routledge";"2006-2026";"Demography (Q1); Geography, Planning and Development (Q1); Health (social science) (Q1)";"Social Sciences" +6887;130124;"Sensors";journal;"14248220";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,802;Q1;303;7681;28039;358570;146974;27835;5,05;46,68;29,75;9;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2001-2026";"Analytical Chemistry (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1); Atomic and Molecular Physics, and Optics (Q2); Biochemistry (Q2); Information Systems (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Computer Science; Engineering; Medicine; Physics and Astronomy" +6888;13660;"Sensors and Actuators A: Physical";journal;"09244247";"Elsevier B.V.";No;No;0,802;Q1;188;1033;2405;52052;13528;2405;5,58;50,39;28,52;0;Netherlands;Western Europe;"Elsevier B.V.";"1990-2026";"Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1); Metals and Alloys (Q1); Surfaces, Coatings and Films (Q1); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +6889;23288;"Topics in Early Childhood Special Education";journal;"02711214, 15384845";"SAGE Publications Inc.";No;No;0,802;Q1;68;45;94;2191;269;90;2,14;48,69;76,26;1;United States;Northern America;"SAGE Publications Inc.";"1981-2026";"Education (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +6890;22487;"BMC Cardiovascular Disorders";journal;"14712261";"BioMed Central Ltd";Yes;No;0,802;Q2;81;895;1918;32826;5846;1913;3,10;36,68;38,14;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +6891;38664;"European Heart Journal, Supplement";journal;"1520765X, 15542815";"Oxford University Press";No;No;0,802;Q2;46;116;325;2717;775;318;2,63;23,42;39,78;0;United Kingdom;Western Europe;"Oxford University Press";"1999-2012, 2014-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +6892;13170;"Tumor Biology";journal;"14230380, 10104283";"SAGE Publications Ltd";Yes;No;0,802;Q2;111;6;59;287;163;58;3,05;47,83;48,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1985-2026";"Medicine (miscellaneous) (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6893;21101089362;"Blue-Green Systems";journal;"26174782";"IWA Publishing";Yes;No;0,801;Q1;20;34;61;1844;241;61;3,02;54,24;40,12;0;United Kingdom;Western Europe;"IWA Publishing";"2019-2025";"Water Science and Technology (Q1); Environmental Science (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2)";"Environmental Science" +6894;13896;"Construction Management and Economics";journal;"01446193, 1466433X";"Taylor and Francis Ltd.";No;No;0,801;Q1;121;54;169;4585;804;162;4,65;84,91;38,32;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2026";"Building and Construction (Q1); Industrial and Manufacturing Engineering (Q1); Management Information Systems (Q1)";"Business, Management and Accounting; Engineering" +6895;21101133329;"Earth (Switzerland)";journal;"26734834";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,801;Q1;25;160;167;10346;771;166;4,80;64,66;31,02;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q2)";"Earth and Planetary Sciences; Environmental Science" +6896;17777;"Equine Veterinary Journal";journal;"20423306, 04251644";"Wiley-Blackwell";No;No;0,801;Q1;108;232;377;9800;894;333;2,27;42,24;58,39;1;United States;Northern America;"Wiley-Blackwell";"1968-2026";"Equine (Q1)";"Veterinary" +6897;12400154723;"Mathematical Geosciences";journal;"18748961, 18748953";"Springer Netherlands";No;No;0,801;Q1;93;91;177;5027;830;173;4,91;55,24;26,19;0;Germany;Western Europe;"Springer Netherlands";"2008-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1)";"Earth and Planetary Sciences; Mathematics" +6898;21101336762;"Medicinal Plant Biology";journal;"28356969";"Maximum Academic Press";Yes;No;0,801;Q1;9;40;55;2606;240;53;4,46;65,15;47,33;0;United States;Northern America;"Maximum Academic Press";"2022-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +6899;21100403920;"Structural Dynamics";journal;"23297778";"American Crystallographic Association";Yes;No;0,801;Q1;42;53;110;2721;276;108;2,72;51,34;23,40;0;United States;Northern America;"American Crystallographic Association";"2014-2026";"Condensed Matter Physics (Q1); Instrumentation (Q1); Radiation (Q1); Spectroscopy (Q1)";"Chemistry; Physics and Astronomy" +6900;21100228093;"Depression Research and Treatment";journal;"20901321, 2090133X";"John Wiley and Sons Ltd";Yes;No;0,801;Q2;40;0;21;0;69;21;3,00;0,00;0,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2024";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +6901;28489;"Economics and Politics";journal;"09541985, 14680343";"Wiley-Blackwell Publishing Ltd";No;No;0,801;Q2;53;58;113;3536;306;113;2,78;60,97;38,30;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1989-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +6902;29550;"Journal of Biochemical and Molecular Toxicology";journal;"10956670, 10990461";"John Wiley & Sons Inc.";No;No;0,801;Q2;78;539;932;31258;3728;925;3,89;57,99;44,95;0;United States;Northern America;"John Wiley & Sons Inc.";"1998-2026";"Biochemistry (Q2); Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2); Molecular Medicine (Q2); Toxicology (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6903;19500157013;"Journal of Contemporary Accounting and Economics";journal;"18155669";"Elsevier Ltd";No;No;0,801;Q2;46;48;79;3132;343;79;4,18;65,25;35,90;0;United Kingdom;Western Europe;"Elsevier Ltd";"2009-2026";"Accounting (Q2)";"Business, Management and Accounting" +6904;30090;"Journal of Social Psychology";journal;"00224545, 19401183";"Routledge";No;No;0,801;Q2;100;84;182;4775;545;180;2,91;56,85;47,88;2;United States;Northern America;"Routledge";"1930-2026";"Social Psychology (Q2)";"Psychology" +6905;21336;"NeuroImmunoModulation";journal;"14230216, 10217401";"S. Karger AG";Yes;No;0,801;Q2;78;25;109;2384;302;105;3,36;95,36;35,20;0;Switzerland;Western Europe;"S. Karger AG";"1994-2002, 2004-2026";"Endocrinology (Q2); Neurology (Q2); Endocrine and Autonomic Systems (Q3); Immunology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Neuroscience" +6906;21100322088;"BMJ Supportive and Palliative Care";journal;"2045435X, 20454368";"BMJ Publishing Group";No;No;0,800;Q1;57;241;934;6234;2240;816;2,24;25,87;57,00;3;United Kingdom;Western Europe;"BMJ Publishing Group";"2011-2026";"Medical and Surgical Nursing (Q1); Medicine (miscellaneous) (Q2); Oncology (nursing) (Q2)";"Medicine; Nursing" +6907;21100468963;"Environmental Science: Water Research and Technology";journal;"20531400, 20531419";"Royal Society of Chemistry";No;No;0,800;Q1;84;178;749;12576;2850;742;3,81;70,65;39,79;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2015-2026";"Water Science and Technology (Q1); Environmental Engineering (Q2)";"Environmental Science" +6908;16106;"Foresight";journal;"30096294, 30626307";"National Center for Social and Criminological Research";No;No;0,800;Q1;49;57;148;4353;773;145;5,22;76,37;42,25;0;United Kingdom;Western Europe;"National Center for Social and Criminological Research";"1999-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +6909;21101180452;"Mathematical Modelling and Numerical Simulation with Applications";journal;"27918564";"";No;No;0,800;Q1;20;27;76;1103;317;75;4,45;40,85;18,97;0;Turkey;Middle East;"";"2021-2025";"Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Mathematical Physics (Q1); Modeling and Simulation (Q1)";"Computer Science; Mathematics" +6910;22285;"Seminars in Vascular Surgery";journal;"15584518, 08957967";"W.B. Saunders";No;No;0,800;Q1;61;54;170;2252;481;158;2,59;41,70;41,67;0;United States;Northern America;"W.B. Saunders";"1990-2026";"Surgery (Q1); Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +6911;21100386862;"Bone Reports";journal;"23521872";"Elsevier Inc.";Yes;No;0,800;Q2;38;71;258;3319;771;256;2,95;46,75;41,20;0;United States;Northern America;"Elsevier Inc.";"2015-2026";"Endocrinology, Diabetes and Metabolism (Q2); Orthopedics and Sports Medicine (Q2)";"Medicine" +6912;99014;"Critical Public Health";journal;"09581596, 14693682";"Routledge";Yes;No;0,800;Q2;63;190;180;9101;525;157;2,72;47,90;51,17;1;United Kingdom;Western Europe;"Routledge";"1990-1995, 1997-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6913;16722;"Journal of Integrative Neuroscience";journal;"1757448X, 02196352";"IMR Press Limited";Yes;No;0,800;Q2;45;193;572;14511;1847;541;3,21;75,19;44,29;0;Hong Kong;Asiatic Region;"IMR Press Limited";"2002-2026";"Medicine (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q2)";"Medicine; Neuroscience" +6914;19700175000;"OncoTargets and Therapy";journal;"11786930";"Dove Medical Press Ltd";Yes;No;0,800;Q2;100;97;297;4934;795;292;2,34;50,87;45,31;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Oncology (Q2); Pharmacology (medical) (Q2)";"Medicine" +6915;26393;"Organic Geochemistry";journal;"01466380";"Elsevier Ltd";No;No;0,800;Q2;170;93;241;6714;737;236;2,83;72,19;35,13;0;United Kingdom;Western Europe;"Elsevier Ltd";"1977-2026";"Geochemistry and Petrology (Q2)";"Earth and Planetary Sciences" +6916;21101298831;"Frontiers in Microbiomes";journal;"28134338";"Frontiers Media SA";Yes;No;0,799;Q1;11;64;142;4162;404;139;2,85;65,03;47,01;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Microbiology (Q2); Microbiology (medical) (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +6917;21100943277;"Fungal Biology and Biotechnology";journal;"20543085";"BioMed Central Ltd";Yes;No;0,799;Q1;33;14;61;876;241;56;3,86;62,57;43,94;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2016-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2); Cell Biology (Q3); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +6918;28419;"Intereconomics";journal;"1613964X, 00205346";"Sciendo";Yes;Yes;0,799;Q1;36;66;201;1314;464;154;1,92;19,91;30,43;13;Poland;Eastern Europe;"Sciendo";"1966-2025";"Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +6919;21100220426;"International Journal of Spine Surgery";journal;"22114599";"ISASS";No;No;0,799;Q1;46;118;407;3401;886;379;1,94;28,82;17,90;0;United States;Northern America;"ISASS";"2008, 2012-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +6920;17500155016;"Journal of Functional Foods";journal;"17564646";"Elsevier Ltd";Yes;No;0,799;Q1;158;492;1675;33916;7950;1669;4,36;68,93;48,16;1;United Kingdom;Western Europe;"Elsevier Ltd";"2009-2026";"Food Science (Q1); Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)";"Agricultural and Biological Sciences; Medicine; Nursing" +6921;12000154480;"Journal of Mathematical Logic";journal;"17936691, 02190613";"World Scientific Publishing Co. Pte Ltd";No;No;0,799;Q1;18;44;63;1255;49;63;0,77;28,52;3,61;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2007-2026";"Logic (Q1)";"Mathematics" +6922;64943;"Plant Breeding Reviews";book series;"07302207";"John Wiley and Sons Inc";No;No;0,799;Q1;25;0;18;0;83;3;0,00;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Inc";"1995, 2011-2015, 2019, 2021-2022";"Agronomy and Crop Science (Q1); Plant Science (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +6923;21101173029;"Sensors and Diagnostics";journal;"26350998";"Royal Society of Chemistry";Yes;No;0,799;Q1;29;83;391;4547;2243;385;5,69;54,78;38,22;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2022-2026";"Analytical Chemistry (Q1); Chemistry (miscellaneous) (Q2)";"Chemistry" +6924;21100873344;"Transgender Health";journal;"2380193X";"Mary Ann Liebert Inc.";Yes;No;0,799;Q1;51;90;239;3310;810;232;3,02;36,78;56,00;3;United States;Northern America;"Mary Ann Liebert Inc.";"2016-2025";"Gender Studies (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Social Sciences" +6925;26157;"Journal of Bone and Mineral Metabolism";journal;"09148779, 14355604";"Springer";No;No;0,799;Q2;91;100;272;2783;710;259;2,49;27,83;34,42;0;Japan;Asiatic Region;"Springer";"1985, 1988-2026";"Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6926;24342;"Journal of Business Economics";journal;"00442372, 18618928";"Springer Science and Business Media Deutschland GmbH";No;No;0,799;Q2;43;46;139;2626;617;126;4,26;57,09;24,35;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1973-1979, 2013-2026";"Business and International Management (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +6927;21100807851;"Journal of Global Operations and Strategic Sourcing";journal;"23985372, 23985364";"Emerald Publishing";No;No;0,799;Q2;39;34;98;2904;588;93;5,74;85,41;22,99;0;United Kingdom;Western Europe;"Emerald Publishing";"2017-2026";"Management Science and Operations Research (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +6928;144801;"Journal of Psychotherapy Integration";journal;"10530479, 15733696";"American Psychological Association";No;No;0,799;Q2;50;18;86;837;192;83;1,98;46,50;51,02;0;United States;Northern America;"American Psychological Association";"1992, 1996-2025";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +6929;26088;"Transfusion Medicine Reviews";journal;"15329496, 08877963";"W.B. Saunders";No;No;0,799;Q2;92;22;92;943;231;76;2,63;42,86;43,52;0;United States;Northern America;"W.B. Saunders";"1987-2026";"Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Hematology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6930;18798;"Higher Education Policy";journal;"09528733, 17403863";"Palgrave Macmillan Ltd.";No;No;0,798;Q1;60;83;142;5449;532;142;3,79;65,65;50,26;2;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1992, 1995-2026";"Education (Q1); Sociology and Political Science (Q1)";"Social Sciences" +6931;21101051210;"Journal of Advances in Medical Education and Professionalism";journal;"23222220, 23223561";"Shriaz University of Medical Sciences";Yes;No;0,798;Q1;19;36;105;1276;372;89;3,73;35,44;49,02;0;Iran;Middle East;"Shriaz University of Medical Sciences";"2019-2026";"Education (Q1); Health Professions (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Health Professions; Medicine; Social Sciences" +6932;25627;"Multimedia Tools and Applications";journal;"13807501, 15737721";"Springer";No;No;0,798;Q1;134;1849;7600;95558;39282;7553;5,35;51,68;30,10;3;United States;Northern America;"Springer";"1995-2026";"Media Technology (Q1); Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Software (Q2)";"Computer Science; Engineering" +6933;14606;"Ophthalmic Epidemiology";journal;"09286586, 17445086";"Taylor and Francis Ltd.";No;No;0,798;Q1;81;101;241;3885;533;237;1,88;38,47;44,25;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Ophthalmology (Q1); Epidemiology (Q2)";"Medicine" +6934;20943;"Scandinavian Political Studies";journal;"00806757, 14679477";"Wiley-Blackwell Publishing Ltd";No;No;0,798;Q1;53;24;70;1477;173;70;1,98;61,54;49,06;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1967-1973, 1975-2026";"Sociology and Political Science (Q1)";"Social Sciences" +6935;21100258404;"Applied Clinical Informatics";journal;"18690327";"Georg Thieme Verlag";No;No;0,798;Q2;53;200;342;6889;983;328;2,72;34,45;45,66;0;Germany;Western Europe;"Georg Thieme Verlag";"2009-2026";"Computer Science Applications (Q2); Health Informatics (Q2); Health Information Management (Q2)";"Computer Science; Health Professions; Medicine" +6936;12122;"Behavioral Neuroscience";journal;"19390084, 07357044";"American Psychological Association";No;No;0,798;Q2;156;21;114;892;235;114;1,85;42,48;60,33;0;United States;Northern America;"American Psychological Association";"1983-2026";"Behavioral Neuroscience (Q2)";"Neuroscience" +6937;20761;"Current Opinion in Allergy and Clinical Immunology";journal;"14736322, 15284050";"Lippincott Williams and Wilkins";No;No;0,798;Q2;104;76;225;3942;628;204;2,81;51,87;51,32;0;United States;Northern America;"Lippincott Williams and Wilkins";"2001-2026";"Immunology and Allergy (Q2); Immunology (Q3)";"Immunology and Microbiology; Medicine" +6938;21101032107;"JMIR Cancer";journal;"23691999";"JMIR Publications Inc.";Yes;No;0,798;Q2;31;144;201;6629;685;200;3,12;46,03;52,61;0;Canada;Northern America;"JMIR Publications Inc.";"2015-2026";"Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6939;20223;"Journal of Eukaryotic Microbiology";journal;"10665234, 15507408";"Wiley-Blackwell Publishing Ltd";No;No;0,798;Q2;92;66;174;3413;499;168;2,88;51,71;41,73;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1993-2026";"Microbiology (Q2)";"Immunology and Microbiology" +6940;21100215180;"Neurology Research International";journal;"20901860, 20901852";"John Wiley and Sons Ltd";Yes;No;0,798;Q2;45;9;16;415;57;16;2,86;46,11;50,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +6941;18660;"Requirements Engineering";journal;"09473602, 1432010X";"Springer London";No;No;0,798;Q2;68;19;73;1075;323;69;4,67;56,58;47,27;0;United Kingdom;Western Europe;"Springer London";"1996, 1998-2002, 2005-2026";"Information Systems (Q2); Software (Q2)";"Computer Science" +6942;18828;"Scandinavian Journal of Caring Sciences";journal;"14716712, 02839318";"Wiley-Blackwell Publishing Ltd";No;No;0,798;Q2;85;176;316;7550;926;302;2,48;42,90;75,40;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1987-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6943;98416;"Tuberculosis and Respiratory Diseases";journal;"17383536, 20056184";"Korean National Tuberculosis Association";Yes;Yes;0,798;Q2;41;77;137;3281;431;119;2,98;42,61;37,16;0;South Korea;Asiatic Region;"Korean National Tuberculosis Association";"1980-2025";"Infectious Diseases (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +6944;27430;"Chaos";journal;"10541500, 10897682";"American Institute of Physics";No;No;0,797;Q1;138;666;1742;32344;5479;1731;3,24;48,56;26,65;2;United States;Northern America;"American Institute of Physics";"1991-2026";"Applied Mathematics (Q1); Mathematical Physics (Q1); Physics and Astronomy (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Statistical and Nonlinear Physics (Q2)";"Mathematics; Medicine; Physics and Astronomy" +6945;29470;"Hydrological Sciences Journal";journal;"02626667";"Taylor and Francis Ltd.";No;No;0,797;Q1;127;191;483;14266;1668;459;3,27;74,69;27,66;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-2026";"Water Science and Technology (Q1)";"Environmental Science" +6946;21100197941;"International Journal for Parasitology: Drugs and Drug Resistance";journal;"22113207";"Elsevier Ltd";Yes;No;0,797;Q1;59;57;128;3801;541;128;3,98;66,68;47,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"2011-2026";"Parasitology (Q1); Infectious Diseases (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +6947;14896;"International Journal of Psychology";journal;"1464066X, 00207594";"Wiley-Blackwell";No;No;0,797;Q1;87;144;277;5597;736;274;2,32;38,87;52,62;0;United States;Northern America;"Wiley-Blackwell";"1966-2026";"Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Medicine; Psychology" +6948;19700186884;"Journal of Data and Information Quality";journal;"19361963, 19361955";"Association for Computing Machinery";No;No;0,797;Q1;36;30;99;1799;499;93;6,03;59,97;27,21;1;United States;Northern America;"Association for Computing Machinery";"2009-2025";"Information Systems and Management (Q1); Information Systems (Q2)";"Computer Science; Decision Sciences" +6949;23354;"Journal of Environmental Education";journal;"19401892, 00958964";"Taylor and Francis Ltd.";No;No;0,797;Q1;81;47;89;3209;356;85;3,85;68,28;62,02;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Education (Q1); Environmental Science (miscellaneous) (Q2)";"Environmental Science; Social Sciences" +6950;21101079131;"JTCVS Open";journal;"26662736";"Elsevier B.V.";Yes;No;0,797;Q1;19;294;791;6330;1214;505;1,67;21,53;29,63;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Surgery (Q1); Cardiology and Cardiovascular Medicine (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +6951;21101287870;"Online Media and Global Communication";journal;"27499049";"De Gruyter Mouton";Yes;No;0,797;Q1;10;32;89;1718;247;80;2,56;53,69;53,03;0;Germany;Western Europe;"De Gruyter Mouton";"2022-2026";"Linguistics and Language (Q1)";"Social Sciences" +6952;14415;"Rehabilitation Counseling Bulletin";journal;"00343552, 15384853";"SAGE Publications Inc.";No;No;0,797;Q1;50;36;81;2009;202;80;1,81;55,81;57,14;0;United States;Northern America;"SAGE Publications Inc.";"1994-2026";"Rehabilitation (Q1); Applied Psychology (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Psychology" +6953;25548;"Signal Processing";journal;"01651684";"Elsevier B.V.";No;No;0,797;Q1;177;353;1036;16436;4473;1036;4,38;46,56;27,87;0;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Computer Vision and Pattern Recognition (Q1); Electrical and Electronic Engineering (Q1); Signal Processing (Q1); Control and Systems Engineering (Q2); Software (Q2)";"Computer Science; Engineering" +6954;13149;"Surgical Oncology";journal;"09607404, 18793320";"Elsevier Ltd";No;No;0,797;Q1;83;99;351;3184;921;340;1,98;32,16;29,81;0;United Kingdom;Western Europe;"Elsevier Ltd";"1992-2026";"Surgery (Q1); Oncology (Q2)";"Medicine" +6955;21100198481;"AMB Express";journal;"21910855";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,797;Q2;80;178;439;9951;1907;439;3,91;55,90;43,10;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Applied Microbiology and Biotechnology (Q2); Biophysics (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +6956;14699;"Inquiry (United States)";journal;"19457243, 00469580";"SAGE Publications Inc.";Yes;No;0,797;Q2;58;263;622;10676;1896;609;3,11;40,59;57,57;2;United States;Northern America;"SAGE Publications Inc.";"1972-2026";"Health Policy (Q2)";"Medicine" +6957;21101274835;"Journal of Latinx Psychology";journal;"25788094, 25788086";"American Psychological Association";No;No;0,797;Q2;21;32;70;1917;206;68;2,08;59,91;62,60;0;United States;Northern America;"American Psychological Association";"2020-2025";"Psychology (miscellaneous) (Q2)";"Psychology" +6958;17800156777;"Research in Astronomy and Astrophysics";journal;"16744527";"IOP Publishing Ltd.";No;No;0,797;Q2;60;269;809;14198;1717;807;2,19;52,78;30,17;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2009-2025";"Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +6959;21101024218;"Applied System Innovation";journal;"25715577";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,796;Q1;44;191;370;9110;2335;365;5,30;47,70;28,19;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2018-2026";"Applied Mathematics (Q1); Industrial and Manufacturing Engineering (Q1); Artificial Intelligence (Q2); Control and Systems Engineering (Q2); Human-Computer Interaction (Q2); Information Systems (Q2)";"Computer Science; Engineering; Mathematics" +6960;21741;"Behavior Genetics";journal;"00018244, 15733297";"Springer";No;No;0,796;Q1;110;36;97;2096;242;92;2,49;58,22;50,00;1;United States;Northern America;"Springer";"1970, 1972-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q2); Genetics (clinical) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +6961;17700156412;"Caikuang yu Anquan Gongcheng Xuebao/Journal of Mining and Safety Engineering";journal;"16733363";"China University of Mining and Technology";No;No;0,796;Q1;44;128;385;3516;1134;385;2,87;27,47;25,64;0;China;Asiatic Region;"China University of Mining and Technology";"2009-2025";"Safety, Risk, Reliability and Quality (Q1)";"Engineering" +6962;24340;"Dermatologic Therapy";journal;"13960296, 15298019";"John Wiley and Sons Inc";No;No;0,796;Q1;90;118;919;4824;1924;554;1,01;40,88;51,92;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1996-2026";"Dermatology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +6963;21100901842;"Food Quality and Safety";journal;"23991402, 23991399";"Oxford University Press";Yes;No;0,796;Q1;38;61;199;3955;1026;195;4,98;64,84;40,64;0;United Kingdom;Western Europe;"Oxford University Press";"2017-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +6964;21101089555;"Journal of Pipeline Science and Engineering";journal;"26671433";"KeAi Communications Co.";Yes;No;0,796;Q1;25;49;79;2098;475;79;5,64;42,82;27,89;1;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1); Safety, Risk, Reliability and Quality (Q1); Energy (miscellaneous) (Q2)";"Chemical Engineering; Energy; Engineering" +6965;130029;"Journal of Sexual Medicine";journal;"17436095, 17436109";"Oxford University Press";No;No;0,796;Q1;154;341;552;8931;1626;459;2,85;26,19;43,89;4;United Kingdom;Western Europe;"Oxford University Press";"2004-2026";"Urology (Q1); Behavioral Neuroscience (Q2); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Obstetrics and Gynecology (Q2); Psychiatry and Mental Health (Q2); Reproductive Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +6966;15320;"Teaching of Psychology";journal;"00986283, 15328023";"SAGE Publications Inc.";No;No;0,796;Q1;62;84;152;3025;341;150;2,16;36,01;67,26;1;United States;Northern America;"SAGE Publications Inc.";"1975-2026";"Education (Q1); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +6967;22087;"Theoretical Criminology";journal;"14617439, 13624806";"SAGE Publications Ltd";No;No;0,796;Q1;98;34;101;2251;286;96;2,12;66,21;59,57;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1997-2026";"Law (Q1); Pathology and Forensic Medicine (Q1); Sociology and Political Science (Q1)";"Medicine; Social Sciences" +6968;20760;"Current Infectious Disease Reports";journal;"15343146, 15233847";"Springer";No;No;0,796;Q2;67;22;75;1309;265;75;2,68;59,50;50,00;0;United States;Northern America;"Springer";"1999-2026";"Infectious Diseases (Q2)";"Medicine" +6969;14144;"Experimental and Clinical Psychopharmacology";journal;"19362293, 10641297";"American Psychological Association";No;No;0,796;Q2;105;56;235;2059;555;232;1,76;36,77;54,90;0;United States;Northern America;"American Psychological Association";"1993-2026";"Pharmacology (Q2); Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +6970;21101144408;"International Journal of Engineering and Geosciences";journal;"25480960";"Murat Yakar";No;No;0,796;Q2;18;56;94;3185;451;94;5,53;56,88;24,11;0;Turkey;Middle East;"Murat Yakar";"2019-2025";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +6971;21100232413;"Advanced Pharmaceutical Bulletin";journal;"22517308, 22285881";"Tabriz University of Medical Sciences";Yes;Yes;0,795;Q1;70;82;259;5519;1309;241;4,65;67,30;48,52;0;Iran;Middle East;"Tabriz University of Medical Sciences";"2011-2025";"Pharmaceutical Science (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)";"Pharmacology, Toxicology and Pharmaceutics" +6972;21101059716;"Al-Ihkam: Jurnal Hukum dan Pranata Sosial";journal;"24423084, 1907591X";"Faculty of Shariah Institut Agama Islam Negeri Madura";Yes;No;0,795;Q1;15;15;74;709;304;74;3,13;47,27;47,22;0;Indonesia;Asiatic Region;"Faculty of Shariah Institut Agama Islam Negeri Madura";"2018-2026";"Arts and Humanities (miscellaneous) (Q1); Law (Q1); Philosophy (Q1); Religious Studies (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Social Psychology (Q2)";"Arts and Humanities; Psychology; Social Sciences" +6973;29166;"Cells Tissues Organs";journal;"14226421, 14226405";"S. Karger AG";No;No;0,795;Q1;94;47;133;2202;390;128;2,59;46,85;46,74;0;Switzerland;Western Europe;"S. Karger AG";"1889, 1945-1997, 1999-2026";"Anatomy (Q1); Histology (Q2)";"Medicine" +6974;21036;"Cleft Palate Craniofacial Journal";journal;"10556656, 15451569";"SAGE Publications Ltd";No;No;0,795;Q1;100;554;646;19093;1702;637;2,56;34,46;50,34;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991-2026";"Oral Surgery (Q1); Otorhinolaryngology (Q1)";"Dentistry; Medicine" +6975;21101016921;"Joint Diseases and Related Surgery";journal;"26874792";"Turkish Joint Diseases Foundation";No;No;0,795;Q1;25;91;285;2589;674;278;2,80;28,45;18,02;0;Turkey;Middle East;"Turkish Joint Diseases Foundation";"2020-2026";"Rehabilitation (Q1); Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +6976;144733;"Phenomenology and the Cognitive Sciences";journal;"15728676, 15687759";"Springer Science and Business Media B.V.";No;No;0,795;Q1;64;130;228;9365;630;217;2,75;72,04;30,99;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2002, 2004-2026";"Philosophy (Q1); Cognitive Neuroscience (Q2)";"Arts and Humanities; Neuroscience" +6977;5800207676;"Target";journal;"09241884";"John Benjamins Publishing Company";No;No;0,795;Q1;53;30;73;1905;152;70;2,20;63,50;53,19;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1989-2026";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +6978;21101392301;"Work in the Global Economy";journal;"27324176";"Policy Press";No;No;0,795;Q1;11;21;41;1488;136;38;2,50;70,86;35,00;0;United Kingdom;Western Europe;"Policy Press";"2021-2025";"Social Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2); Industrial Relations (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +6979;21786;"American Journal of Infection Control";journal;"15273296, 01966553";"Elsevier Inc.";No;No;0,795;Q2;137;307;792;6796;1934;718;2,44;22,14;57,02;2;United States;Northern America;"Elsevier Inc.";"1980-2026";"Epidemiology (Q2); Health Policy (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +6980;24145;"Automated Software Engineering";journal;"09288910, 15737535";"Springer Netherlands";No;No;0,795;Q2;56;74;162;4381;757;161;5,08;59,20;31,46;0;Netherlands;Western Europe;"Springer Netherlands";"1994-2026";"Software (Q2)";"Computer Science" +6981;21101072359;"Biomarkers in Neuropsychiatry";journal;"26661446";"Elsevier B.V.";Yes;No;0,795;Q2;17;21;61;1216;167;56;2,88;57,90;34,48;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2025";"Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +6982;21088;"Diseases of the Colon and Rectum";journal;"00123706, 15300358";"Lippincott Williams and Wilkins";No;No;0,795;Q2;192;354;1067;4477;1926;810;1,65;12,65;35,20;0;United States;Northern America;"Lippincott Williams and Wilkins";"1958-2026";"Gastroenterology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +6983;21101144620;"Therapeutic Advances in Ophthalmology";journal;"25158414";"SAGE Publications Ltd";Yes;No;0,795;Q2;26;50;100;1534;257;97;2,07;30,68;36,11;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2026";"Ophthalmology (Q2)";"Medicine" +6984;14000156254;"Archives of Civil and Mechanical Engineering";journal;"16449665, 20833318";"Springer Science and Business Media Deutschland GmbH";No;No;0,794;Q1;79;306;706;15462;3577;706;5,15;50,53;24,98;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2006-2026";"Civil and Structural Engineering (Q1); Mechanical Engineering (Q1)";"Engineering" +6985;21100825549;"Arts Education Policy Review";journal;"19404395, 10632913";"Taylor and Francis Ltd.";No;No;0,794;Q1;35;35;86;2177;246;85;2,69;62,20;51,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Education (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +6986;27214;"Journal of Applied Clinical Medical Physics";journal;"15269914";"John Wiley and Sons Ltd";Yes;No;0,794;Q1;70;489;1000;14764;3018;961;2,83;30,19;31,34;0;United States;Northern America;"John Wiley and Sons Ltd";"2000-2026";"Instrumentation (Q1); Radiation (Q1); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine; Physics and Astronomy" +6987;21100794749;"Journal of English as a Lingua Franca";journal;"21919216, 2191933X";"De Gruyter Mouton";No;No;0,794;Q1;33;1;37;53;80;35;1,57;53,00;0,00;0;Germany;Western Europe;"De Gruyter Mouton";"2012-2025";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +6988;19301;"World Journal of Surgery";journal;"03642313, 14322323";"John Wiley and Sons Inc";No;No;0,794;Q1;184;441;1222;11897;2542;935;1,99;26,98;33,13;1;United States;Northern America;"John Wiley and Sons Inc";"1977-2026";"Surgery (Q1)";"Medicine" +6989;27707;"Heart and Lung";journal;"01479563, 15273288";"Elsevier Inc.";No;No;0,794;Q2;86;177;536;6586;1290;447;2,33;37,21;47,75;0;United States;Northern America;"Elsevier Inc.";"1973-2026";"Cardiology and Cardiovascular Medicine (Q2); Critical Care and Intensive Care Medicine (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +6990;21101019771;"Journal of Organization Design";journal;"2245408X";"SpringerOpen";Yes;No;0,794;Q2;23;27;63;1616;179;54;3,50;59,85;35,85;0;United Kingdom;Western Europe;"SpringerOpen";"2013, 2016-2026";"Strategy and Management (Q2)";"Business, Management and Accounting" +6991;29083;"Nuclear Physics A";journal;"03759474";"Elsevier B.V.";No;No;0,794;Q2;180;197;323;7690;786;323;1,89;39,04;25,26;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Nuclear and High Energy Physics (Q2)";"Physics and Astronomy" +6992;700147019;"Journal of Linguistic Anthropology";journal;"15481395, 10551360";"John Wiley and Sons Inc";No;No;0,793;Q1;65;24;64;1560;141;64;2,32;65,00;68,18;0;United States;Northern America;"John Wiley and Sons Inc";"1991-2026";"Linguistics and Language (Q1)";"Social Sciences" +6993;5800207893;"Language Learning and Development";journal;"15475441, 15473341";"Taylor and Francis Ltd.";No;No;0,793;Q1;40;30;74;2115;169;65;1,88;70,50;68,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005, 2008, 2010-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +6994;24825;"Pattern Recognition Letters";journal;"01678655";"Elsevier B.V.";No;No;0,793;Q1;199;317;891;10869;3642;862;3,83;34,29;28,57;0;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Computer Vision and Pattern Recognition (Q1); Artificial Intelligence (Q2); Signal Processing (Q2); Software (Q2)";"Computer Science" +6995;12824;"Philosophical Psychology";journal;"09515089, 1465394X";"Routledge";No;No;0,793;Q1;63;280;252;17232;582;230;2,38;61,54;30,05;3;United Kingdom;Western Europe;"Routledge";"1988-2026";"Philosophy (Q1); Applied Psychology (Q2)";"Arts and Humanities; Psychology" +6996;22197;"PS - Political Science and Politics";journal;"10490965, 15375935";"Cambridge University Press";No;No;0,793;Q1;85;141;376;4236;573;282;2,03;30,04;40,96;0;United Kingdom;Western Europe;"Cambridge University Press";"1968-2026";"Sociology and Political Science (Q1)";"Social Sciences" +6997;14240;"Reactive and Functional Polymers";journal;"13815148";"Elsevier B.V.";No;No;0,793;Q1;124;318;738;18211;4015;738;5,48;57,27;41,01;0;Netherlands;Western Europe;"Elsevier B.V.";"1995-2026";"Chemical Engineering (miscellaneous) (Q1); Polymers and Plastics (Q1); Biochemistry (Q2); Chemistry (miscellaneous) (Q2); Environmental Chemistry (Q2); Materials Chemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Environmental Science; Materials Science" +6998;84944;"Reviews in Analytical Chemistry";journal;"07930135, 21910189";"";Yes;No;0,793;Q1;38;13;49;804;295;49;7,24;61,85;56,90;0;Germany;Western Europe;"";"1980-1983, 1985-1987, 1989, 1991-1992, 1994-2026";"Analytical Chemistry (Q1)";"Chemistry" +6999;21101133613;"Technologies";journal;"22277080";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,793;Q1;56;597;580;35819;3671;568;6,90;60,00;28,43;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Computer Science (miscellaneous) (Q1)";"Computer Science" +7000;18300156707;"Visitor Studies";journal;"10645578, 19347715";"Routledge";No;No;0,793;Q1;32;18;31;961;92;31;3,15;53,39;66,04;0;United Kingdom;Western Europe;"Routledge";"1988-1989, 1992-1993, 2007-2025";"Communication (Q1); Education (Q1); Museology (Q1); Tourism, Leisure and Hospitality Management (Q2)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +7001;21100213800;"Clinics and Research in Hepatology and Gastroenterology";journal;"2210741X, 22107401";"Elsevier Masson s.r.l.";No;No;0,793;Q2;72;181;581;5543;1168;461;2,04;30,62;43,25;0;France;Western Europe;"Elsevier Masson s.r.l.";"2011-2026";"Gastroenterology (Q2); Hepatology (Q2)";"Medicine" +7002;21100855984;"Advanced Modeling and Simulation in Engineering Sciences";journal;"22137467";"SpringerOpen";Yes;No;0,792;Q1;29;35;66;1719;282;66;4,36;49,11;13,04;0;United Kingdom;Western Europe;"SpringerOpen";"2014-2026";"Applied Mathematics (Q1); Engineering (miscellaneous) (Q1); Modeling and Simulation (Q1); Computer Science Applications (Q2)";"Computer Science; Engineering; Mathematics" +7003;23673;"Applied Artificial Intelligence";journal;"10876545, 08839514";"Taylor and Francis Ltd.";Yes;No;0,792;Q1;77;69;418;3522;2517;418;4,81;51,04;28,26;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Electrical and Electronic Engineering (Q1); Artificial Intelligence (Q2)";"Computer Science; Engineering" +7004;16886;"Citizenship Studies";journal;"14693593, 13621025";"Routledge";No;No;0,792;Q1;83;34;196;1837;402;186;1,50;54,03;46,81;0;United Kingdom;Western Europe;"Routledge";"1997-2026";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +7005;21100853546;"Global Qualitative Nursing Research";journal;"23333936";"SAGE Publications Inc.";Yes;No;0,792;Q1;30;51;106;2778;335;106;3,42;54,47;77,17;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2014-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +7006;145743;"Journal of Interactive Learning Research";journal;"1093023X";"Association for the Advancement of Computing in Education";No;No;0,792;Q1;36;20;56;811;221;51;5,05;40,55;54,55;0;United States;Northern America;"Association for the Advancement of Computing in Education";"2005-2026";"Education (Q1); Computer Science Applications (Q2); Human-Computer Interaction (Q2)";"Computer Science; Social Sciences" +7007;21101393568;"Modern Supply Chain Research and Applications";journal;"26313871";"Emerald Publishing";No;No;0,792;Q1;20;23;41;1742;245;41;5,10;75,74;33,77;0;United Kingdom;Western Europe;"Emerald Publishing";"2019-2025";"Safety, Risk, Reliability and Quality (Q1); Business and International Management (Q2); Management Science and Operations Research (Q2); Statistics, Probability and Uncertainty (Q2)";"Business, Management and Accounting; Decision Sciences; Engineering" +7008;5700169068;"Multinational Business Review";journal;"1525383X, 20541686";"Emerald Publishing";No;No;0,792;Q1;47;45;79;4462;329;79;3,51;99,16;34,40;0;United Kingdom;Western Europe;"Emerald Publishing";"2003-2025";"Business, Management and Accounting (miscellaneous) (Q1); Business and International Management (Q2)";"Business, Management and Accounting" +7009;14314;"Otology and Neurotology";journal;"15374505, 15317129";"Lippincott Williams and Wilkins";No;No;0,792;Q1;135;345;985;9454;1819;928;1,61;27,40;38,25;0;United States;Northern America;"Lippincott Williams and Wilkins";"1982, 1988-1989, 1992-1993, 2001-2026";"Otorhinolaryngology (Q1); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Sensory Systems (Q2)";"Medicine; Neuroscience" +7010;10900153324;"Particuology";journal;"22104291, 16742001";"Elsevier B.V.";No;No;0,792;Q1;90;264;657;14341;3507;656;4,80;54,32;29,78;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Chemical Engineering (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q2)";"Chemical Engineering; Materials Science; Physics and Astronomy" +7011;21101115406;"Journal of Prevention";journal;"27315533, 27315541";"Springer";No;No;0,792;Q2;69;69;150;2828;385;145;2,66;40,99;54,36;1;United States;Northern America;"Springer";"1980-1981, 2022-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +7012;21100821307;"Applied Computational Intelligence and Soft Computing";journal;"16879724, 16879732";"John Wiley and Sons Ltd";Yes;No;0,791;Q1;32;74;145;3924;936;145;6,16;53,03;27,67;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2016-2026";"Civil and Structural Engineering (Q1); Computational Mechanics (Q1); Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Computer Science Applications (Q2)";"Computer Science; Engineering" +7013;25406;"European Journal of Control";journal;"09473580";"Lavoisier";No;No;0,791;Q1;78;208;419;7185;1269;416;3,20;34,54;23,84;0;France;Western Europe;"Lavoisier";"1995-2026";"Electrical and Electronic Engineering (Q1); Control and Systems Engineering (Q2)";"Engineering" +7014;28902;"Family Relations";journal;"01976664, 17413729";"Wiley-Blackwell Publishing Ltd";No;No;0,791;Q1;109;166;489;10232;1287;484;2,43;61,64;69,18;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1981, 1992, 1996-2026";"Education (Q1); Social Sciences (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Social Work (Q2)";"Psychology; Social Sciences" +7015;6200162323;"Fly";journal;"19336934, 19336942";"Landes Bioscience";Yes;No;0,791;Q1;40;20;44;1477;93;40;1,17;73,85;38,46;0;United States;Northern America;"Landes Bioscience";"2007-2026";"Insect Science (Q1)";"Agricultural and Biological Sciences" +7016;21101341267;"Journal of Dermatologic Science and Cosmetic Technology";journal;"2950306X";"KeAi Publishing Communications Ltd.";Yes;No;0,791;Q1;8;29;30;1537;160;29;5,33;53,00;50,38;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2024-2025";"Chemical Engineering (miscellaneous) (Q1); Bioengineering (Q2); Computer Science Applications (Q2); Management, Monitoring, Policy and Law (Q2)";"Chemical Engineering; Computer Science; Environmental Science" +7017;15916;"Journal of Health Communication";journal;"10810730, 10870415";"Taylor and Francis Ltd.";No;No;0,791;Q1;120;75;258;3808;785;246;2,84;50,77;61,60;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Communication (Q1); Health (social science) (Q1); Library and Information Sciences (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +7018;11200153402;"Journal of Neurosurgery: Pediatrics";journal;"19330707, 19330715";"American Association of Neurological Surgeons";No;No;0,791;Q1;97;185;516;5238;1114;458;2,01;28,31;37,63;0;United States;Northern America;"American Association of Neurological Surgeons";"2008-2026";"Pediatrics, Perinatology and Child Health (Q1); Surgery (Q1); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)";"Medicine" +7019;21100199110;"Orthopaedic Surgery";journal;"17577853, 17577861";"Sociedade Brasileira de Matematica Aplicada e Computacional";Yes;No;0,791;Q1;53;320;1077;12464;3242;1074;2,94;38,95;30,46;1;Brazil;Latin America;"Sociedade Brasileira de Matematica Aplicada e Computacional";"2009-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +7020;21100446014;"Royal Society Open Science";journal;"20545703";"The Royal Society";Yes;No;0,791;Q1;103;629;1803;44107;6047;1789;3,08;70,12;38,37;5;United Kingdom;Western Europe;"The Royal Society";"2014-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +7021;30034;"Western Journal of Nursing Research";journal;"15528456, 01939459";"SAGE Publications Inc.";No;No;0,791;Q1;81;137;374;5308;1010;320;2,24;38,74;72,24;0;United States;Northern America;"SAGE Publications Inc.";"1979-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +7022;68480;"CMAJ. Canadian Medical Association Journal";journal;"08203946, 14882329";"Canadian Medical Association";Yes;No;0,791;Q2;221;404;1352;3870;2222;819;1,71;9,58;50,34;1;Canada;Northern America;"Canadian Medical Association";"1945-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +7023;21101264312;"Imaging Neuroscience";journal;"28376056";"MIT Press";Yes;No;0,791;Q2;13;389;385;29510;913;382;2,37;75,86;39,03;0;United States;Northern America;"MIT Press";"2023-2026";"Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine; Neuroscience" +7024;19700175015;"Infection and Drug Resistance";journal;"11786973";"Dove Medical Press Ltd";Yes;No;0,791;Q2;83;594;1977;23672;6581;1908;3,19;39,85;46,70;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Infectious Diseases (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +7025;5600152957;"American Journal of Criminal Justice";journal;"10662316, 19361351";"Springer New York";No;No;0,790;Q1;53;88;165;6020;465;161;2,80;68,41;50,43;1;United States;Northern America;"Springer New York";"1975-1976, 1979-1982, 1984-1991, 1993-1997, 2001-2002, 2009-2026";"Law (Q1)";"Social Sciences" +7026;110607;"Annals of Glaciology";journal;"02603055, 17275644";"Cambridge University Press";Yes;No;0,790;Q1;103;33;113;1566;240;110;2,02;47,45;24,82;0;United Kingdom;Western Europe;"Cambridge University Press";"1980-1981, 1983-1986, 1988-2026";"Earth-Surface Processes (Q1)";"Earth and Planetary Sciences" +7027;21101077305;"Asian Association of Open Universities Journal";journal;"24146994, 18583431";"Emerald Group Publishing Ltd.";Yes;Yes;0,790;Q1;25;23;61;941;263;61;4,22;40,91;39,58;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005-2006, 2008-2026";"Education (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +7028;21100827522;"Asian Journal of Urology";journal;"22143882, 22143890";"Editorial Office of Asian Journal of Urology";Yes;Yes;0,790;Q1;36;76;236;2600;566;193;2,26;34,21;21,93;0;Singapore;Asiatic Region;"Editorial Office of Asian Journal of Urology";"2014-2026";"Urology (Q1)";"Medicine" +7029;22545;"Diqiu Kexue - Zhongguo Dizhi Daxue Xuebao/Earth Science - Journal of China University of Geosciences";journal;"10002383";"China University of Geosciences";No;No;0,790;Q1;61;295;979;16945;2548;978;2,81;57,44;32,40;0;China;Asiatic Region;"China University of Geosciences";"1981, 2001-2026";"Building and Construction (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Computer Science Applications (Q2)";"Computer Science; Earth and Planetary Sciences; Engineering" +7030;10900153330;"Enterprise Information Systems";journal;"17517583, 17517575";"Taylor and Francis Ltd.";No;No;0,790;Q1;69;68;194;4166;1078;189;5,49;61,26;29,68;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Information Systems and Management (Q1); Computer Science Applications (Q2)";"Computer Science; Decision Sciences" +7031;21101188475;"Frontiers in Network Physiology";journal;"26740109";"Frontiers Media SA";Yes;No;0,790;Q1;18;46;174;2563;509;162;3,01;55,72;31,91;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Multidisciplinary (Q1); Physiology (medical) (Q2); Statistical and Nonlinear Physics (Q2)";"Medicine; Multidisciplinary; Physics and Astronomy" +7032;19900193578;"IEEE Journal of Photovoltaics";journal;"21563403, 21563381";"IEEE Electron Devices Society";No;No;0,790;Q1;105;108;433;3931;1707;427;4,26;36,40;27,29;0;United States;Northern America;"IEEE Electron Devices Society";"2011-2026";"Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +7033;25629;"International Journal of Oral and Maxillofacial Surgery";journal;"13990020, 09015027";"Churchill Livingstone";No;No;0,790;Q1;123;178;559;5460;1579;517;2,63;30,67;31,12;0;United States;Northern America;"Churchill Livingstone";"1986-2026";"Oral Surgery (Q1); Otorhinolaryngology (Q1); Surgery (Q1)";"Dentistry; Medicine" +7034;21101079129;"JAAD International";journal;"26663287";"Elsevier B.V.";Yes;No;0,790;Q1;27;159;491;1614;1070;441;2,35;10,15;52,99;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Dermatology (Q1)";"Medicine" +7035;18053;"New York University Law Review";journal;"00287881";"New York University School of Law";No;No;0,790;Q1;66;40;122;5684;134;104;1,10;142,10;48,78;1;United States;Northern America;"New York University School of Law";"1973-1976, 1979, 1985, 1987, 1991-1994, 1996-1999, 2001-2025";"Law (Q1)";"Social Sciences" +7036;21101021580;"Progress in Disaster Science";journal;"25900617";"Elsevier Ltd";Yes;No;0,790;Q1;43;100;174;6638;874;174;4,85;66,38;30,73;2;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1); Safety Research (Q1); Environmental Science (miscellaneous) (Q2)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +7037;200147101;"Studies in Conflict and Terrorism";journal;"15210731, 1057610X";"Routledge";No;No;0,790;Q1;72;145;324;10838;760;313;2,32;74,74;38,11;0;United Kingdom;Western Europe;"Routledge";"1992-2026";"Political Science and International Relations (Q1); Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1); Sociology and Political Science (Q1)";"Engineering; Social Sciences" +7038;21100780469;"World Development Perspectives";journal;"24680532, 24522929";"Elsevier Ltd";No;No;0,790;Q1;31;104;185;5947;639;176;3,25;57,18;41,56;2;United Kingdom;Western Europe;"Elsevier Ltd";"2016-2026";"Development (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +7039;21101020024;"Big Earth Data";journal;"20964471, 25745417";"Taylor and Francis Ltd.";Yes;No;0,790;Q2;34;77;105;4556;462;70;4,10;59,17;36,15;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Computer Science Applications (Q2); Computers in Earth Sciences (Q2)";"Computer Science; Earth and Planetary Sciences" +7040;4700151729;"Ciencia e Saude Coletiva";journal;"16784561, 14138123";"Associacao Brasileira de Pos - Graduacao em Saude Coletiva";Yes;No;0,790;Q2;70;472;1068;16144;1922;1002;1,56;34,20;64,93;0;Brazil;Latin America;"Associacao Brasileira de Pos - Graduacao em Saude Coletiva";"2006-2026";"Health Policy (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +7041;27195;"Experimental Astronomy";journal;"15729508, 09226435";"Springer Netherlands";No;No;0,790;Q2;56;68;206;3230;533;206;2,73;47,50;26,85;0;Netherlands;Western Europe;"Springer Netherlands";"1989-1995, 1997-2006, 2008-2026";"Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +7042;21100389521;"Eye and Brain";journal;"11792744";"Dove Medical Press Ltd";Yes;No;0,790;Q2;33;13;35;959;126;34;3,88;73,77;46,27;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2014-2026";"Ophthalmology (Q2); Sensory Systems (Q2); Cellular and Molecular Neuroscience (Q3)";"Medicine; Neuroscience" +7043;20300195073;"Journal of Applied Research in Memory and Cognition";journal;"22113681, 2211369X";"Society for Applied Research in Memory and Cognition";No;No;0,790;Q2;59;40;207;2284;473;207;1,80;57,10;56,14;0;United States;Northern America;"Society for Applied Research in Memory and Cognition";"2012-2025";"Applied Psychology (Q2); Clinical Psychology (Q2); Experimental and Cognitive Psychology (Q2)";"Psychology" +7044;800147111;"Journal of Grid Computing";journal;"15729184, 15707873";"Springer Science and Business Media B.V.";No;No;0,790;Q2;65;32;196;1744;1012;195;5,35;54,50;24,56;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2003-2026";"Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)";"Computer Science" +7045;22520;"Netherlands Heart Journal";journal;"18766250, 15685888";"Bohn Stafleu van Loghum";No;No;0,790;Q2;53;82;280;1178;402;175;1,46;14,37;36,32;1;Netherlands;Western Europe;"Bohn Stafleu van Loghum";"2005-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +7046;22904;"Oxford Review of Economic Policy";journal;"14602121, 0266903X";"Oxford University Press";No;No;0,790;Q2;110;62;158;3707;378;157;2,39;59,79;36,09;8;United Kingdom;Western Europe;"Oxford University Press";"1985-2025";"Economics and Econometrics (Q2); Management, Monitoring, Policy and Law (Q2)";"Economics, Econometrics and Finance; Environmental Science" +7047;32383;"Cultural Anthropology";journal;"08867356, 15481360";"John Wiley and Sons Inc";Yes;Yes;0,789;Q1;102;30;70;1897;123;70;1,40;63,23;59,38;0;United States;Northern America;"John Wiley and Sons Inc";"1986-2025";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +7048;16276;"Journal of Earthquake Engineering";journal;"13632469, 1559808X";"Taylor and Francis Ltd.";No;No;0,789;Q1;98;177;762;8576;2426;732;3,19;48,45;22,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Safety, Risk, Reliability and Quality (Q1); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +7049;21101290577;"Pollutants";journal;"26734672";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,789;Q1;16;49;108;3646;423;102;4,49;74,41;39,77;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2026";"Engineering (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q2)";"Engineering; Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +7050;19700175043;"Cancer Management and Research";journal;"11791322";"Dove Medical Press Ltd";Yes;No;0,789;Q2;82;264;555;12250;1601;549;2,62;46,40;45,10;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2026";"Oncology (Q2)";"Medicine" +7051;4500151409;"CNS and Neurological Disorders - Drug Targets";journal;"18715273, 19963181";"Bentham Science Publishers";No;No;0,789;Q2;105;101;331;10565;1243;319;3,67;104,60;37,11;1;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Medicine (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q2); Pharmacology (Q2)";"Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +7052;12788;"Cost Effectiveness and Resource Allocation";journal;"14787547";"BioMed Central Ltd";Yes;No;0,789;Q2;48;78;253;3129;691;244;2,97;40,12;38,96;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Health Policy (Q2)";"Medicine" +7053;21101290584;"Frontiers in Drug Delivery";journal;"26740850";"Frontiers Media SA";Yes;No;0,789;Q2;13;15;85;1300;393;77;4,48;86,67;37,25;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7054;5700167223;"Critical Discourse Studies";journal;"17405912, 17405904";"Routledge";No;No;0,788;Q1;45;56;127;3079;483;122;3,56;54,98;51,52;0;United Kingdom;Western Europe;"Routledge";"2005, 2009-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +7055;5300152611;"European Journal of Trauma and Emergency Surgery";journal;"18639933, 18639941";"Springer International Publishing AG";No;No;0,788;Q1;58;366;1147;12479;3028;1108;2,50;34,10;27,31;0;Germany;Western Europe;"Springer International Publishing AG";"2006-2026";"Emergency Medicine (Q1); Surgery (Q1); Critical Care and Intensive Care Medicine (Q2); Orthopedics and Sports Medicine (Q2)";"Medicine" +7056;4000148817;"Journal of Plastic, Reconstructive and Aesthetic Surgery";journal;"18780539, 17486815";"Churchill Livingstone";No;No;0,788;Q1;123;632;1931;14418;3732;1521;1,88;22,81;37,79;2;United Kingdom;Western Europe;"Churchill Livingstone";"2006-2026";"Surgery (Q1)";"Medicine" +7057;21100817638;"Journal of the Saudi Society of Agricultural Sciences";journal;"1658077X";"Springer International Publishing";Yes;Yes;0,788;Q1;73;82;204;4849;1129;204;5,25;59,13;36,17;0;Switzerland;Western Europe;"Springer International Publishing";"2011-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1)";"Agricultural and Biological Sciences" +7058;21100287117;"Journal of Traditional and Complementary Medicine";journal;"22254110";"National Taiwan University";Yes;Yes;0,788;Q1;74;90;190;4758;789;188;4,30;52,87;43,68;0;Taiwan;Asiatic Region;"National Taiwan University";"2011-2026";"Complementary and Alternative Medicine (Q1)";"Medicine" +7059;4700152460;"Language Acquisition";journal;"15327817, 10489223";"Psychology Press Ltd";No;No;0,788;Q1;33;35;52;2687;106;47;2,15;76,77;69,23;0;United Kingdom;Western Europe;"Psychology Press Ltd";"1990, 1992-1993, 1995, 2005-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +7060;12100156129;"Learning Disabilities Research and Practice";journal;"15405826, 09388982";"SAGE Publications Inc.";No;No;0,788;Q1;37;9;68;556;162;64;1,93;61,78;80,00;0;United States;Northern America;"SAGE Publications Inc.";"1985-1987, 1989, 1991-1992, 1994-1995, 2004, 2006, 2008, 2012-2025";"Education (Q1); Health (social science) (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +7061;27658;"Maternal and Child Health Journal";journal;"10927875, 15736628";"Springer GmbH & Co, Auslieferungs-Gesellschaf";No;No;0,788;Q1;115;172;734;6301;1693;709;2,01;36,63;73,14;2;United States;Northern America;"Springer GmbH & Co, Auslieferungs-Gesellschaf";"1997-2026";"Pediatrics, Perinatology and Child Health (Q1); Epidemiology (Q2); Obstetrics and Gynecology (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +7062;21776;"Neurosurgery Clinics of North America";journal;"15581349, 10423680";"W.B. Saunders";No;No;0,788;Q1;83;62;193;3068;466;169;2,49;49,48;28,28;0;United States;Northern America;"W.B. Saunders";"1990-2026";"Surgery (Q1); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)";"Medicine" +7063;16498;"Past and Present";journal;"00312746, 1477464X";"Oxford University Press";No;No;0,788;Q1;58;34;123;4440;214;118;1,30;130,59;31,11;0;United Kingdom;Western Europe;"Oxford University Press";"1952-2002, 2005-2026";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +7064;16732;"Journal of Molecular Neuroscience";journal;"08958696, 15591166";"Springer";No;No;0,788;Q2;108;159;398;10177;1156;391;2,36;64,01;47,85;0;United States;Northern America;"Springer";"1989-2026";"Medicine (miscellaneous) (Q2); Cellular and Molecular Neuroscience (Q3)";"Medicine; Neuroscience" +7065;16765;"Journal of Neuroscience Methods";journal;"1872678X, 01650270";"Elsevier B.V.";No;No;0,788;Q2;185;205;551;9442;1708;543;2,93;46,06;39,34;0;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Neuroscience (miscellaneous) (Q2)";"Neuroscience" +7066;3900148406;"Korean Circulation Journal";journal;"17385555, 17385520";"Korean Society of Cardiology";Yes;No;0,788;Q2;48;134;303;2729;461;192;1,54;20,37;32,16;0;South Korea;Asiatic Region;"Korean Society of Cardiology";"2006-2026";"Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2)";"Medicine" +7067;21101039622;"Engineered Science";journal;"2576988X, 25769898";"Engineered Science Publisher";No;No;0,787;Q1;58;302;402;15481;2672;402;7,09;51,26;35,02;0;United States;Northern America;"Engineered Science Publisher";"2018-2026";"Applied Mathematics (Q1); Engineering (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1); Artificial Intelligence (Q2); Chemistry (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Materials Science (miscellaneous) (Q2)";"Chemistry; Computer Science; Energy; Engineering; Materials Science; Mathematics" +7068;13682;"European Archives of Oto-Rhino-Laryngology";journal;"09374477, 14344726";"Springer Science and Business Media Deutschland GmbH";No;No;0,787;Q1;102;888;2048;25044;5079;1924;2,49;28,20;38,66;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1990-2026";"Otorhinolaryngology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +7069;14172;"Feminism and Psychology";journal;"14617161, 09593535";"SAGE Publications Ltd";No;No;0,787;Q1;73;40;91;2349;319;89;2,90;58,73;82,18;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991-2026";"Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Psychology; Social Sciences" +7070;21100812867;"Geoscience Data Journal";journal;"20496060";"John Wiley & Sons Inc.";Yes;No;0,787;Q1;28;57;144;2548;564;103;3,83;44,70;28,21;0;United States;Northern America;"John Wiley & Sons Inc.";"2015-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +7071;29651;"Granular Matter";journal;"14347636, 14345021";"Springer New York";No;No;0,787;Q1;92;112;305;5230;1051;303;3,34;46,70;21,39;0;United States;Northern America;"Springer New York";"1998-2026";"Mechanics of Materials (Q1); Physics and Astronomy (miscellaneous) (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science; Physics and Astronomy" +7072;21101205769;"Journal of Alloys and Metallurgical Systems";journal;"29499178";"Elsevier B.V.";Yes;No;0,787;Q1;18;86;134;4335;702;134;5,24;50,41;23,51;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Metals and Alloys (Q1); Surfaces, Coatings and Films (Q1); Materials Science (miscellaneous) (Q2)";"Materials Science" +7073;12100156106;"Journal of Children and Media";journal;"17482801, 17482798";"Routledge";No;No;0,787;Q1;39;80;117;3341;373;109;3,16;41,76;77,67;4;United Kingdom;Western Europe;"Routledge";"2014-2026";"Communication (Q1); Cultural Studies (Q1)";"Social Sciences" +7074;22222;"Parliamentary Affairs";journal;"14602482, 00312290";"Oxford University Press";No;No;0,787;Q1;57;54;129;2536;311;128;2,36;46,96;38,00;5;United Kingdom;Western Europe;"Oxford University Press";"1947-2026";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7075;21101077282;"Frontiers in Nanotechnology";journal;"26733013";"Frontiers Media SA";Yes;No;0,787;Q2;35;90;246;7235;1440;225;5,64;80,39;46,63;0;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Atomic and Molecular Physics, and Optics (Q2); Biomedical Engineering (Q2); Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Computer Science; Engineering; Materials Science; Physics and Astronomy" +7076;17590;"Journal of Bioenergetics and Biomembranes";journal;"15736881, 0145479X";"Springer";No;No;0,787;Q2;111;33;113;1724;419;113;3,90;52,24;42,53;0;United States;Northern America;"Springer";"1976-2026";"Physiology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +7077;17872;"Medical Principles and Practice";journal;"10117571, 14230151";"S. Karger AG";Yes;Yes;0,787;Q2;70;63;210;2136;624;194;2,57;33,90;39,14;0;Switzerland;Western Europe;"S. Karger AG";"1989-1990, 1992, 1994, 1996-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +7078;21100853506;"Ultrasonography";journal;"22885919, 22885943";"Korean Society of Ultrasound in Medicine";Yes;Yes;0,787;Q2;47;46;185;1644;529;169;2,82;35,74;43,54;0;South Korea;Asiatic Region;"Korean Society of Ultrasound in Medicine";"2014-2026";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +7079;21100329895;"Behavioral Sciences of Terrorism and Political Aggression";journal;"19434480, 19434472";"Routledge";No;No;0,786;Q1;27;45;81;3074;214;81;2,37;68,31;44,44;2;United States;Northern America;"Routledge";"2009-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +7080;29091;"Ecohydrology and Hydrobiology";journal;"16423593, 20803397";"Elsevier B.V.";No;No;0,786;Q1;49;134;195;9483;598;192;3,01;70,77;36,99;0;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Aquatic Science (Q1)";"Agricultural and Biological Sciences" +7081;17800156712;"International Journal of Computational Intelligence Systems";journal;"18756891, 18756883";"Springer International Publishing AG";Yes;No;0,786;Q1;64;319;568;14367;3097;566;5,76;45,04;28,79;0;Switzerland;Western Europe;"Springer International Publishing AG";"2008-2026";"Computational Mathematics (Q1); Computer Science (miscellaneous) (Q1)";"Computer Science; Mathematics" +7082;21101055807;"Journal of Advanced Joining Processes";journal;"26663309";"Elsevier B.V.";Yes;No;0,786;Q1;28;88;188;4471;919;185;4,87;50,81;15,56;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Chemical Engineering (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Chemical Engineering; Engineering" +7083;16726;"Journal of Intellectual Disability Research";journal;"09642633, 13652788";"Wiley-Blackwell Publishing Ltd";No;No;0,786;Q1;127;116;260;5582;739;247;2,63;48,12;65,95;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1957-1960, 1962-2026";"Arts and Humanities (miscellaneous) (Q1); Rehabilitation (Q1); Neurology (Q2); Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)";"Arts and Humanities; Medicine; Neuroscience" +7084;130056;"Journal of International Criminal Justice";journal;"14781395, 14781387";"Oxford University Press";No;No;0,786;Q1;53;42;152;4167;260;147;1,56;99,21;39,58;1;United Kingdom;Western Europe;"Oxford University Press";"2005-2025";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7085;17800156749;"Journal of Noncommutative Geometry";journal;"16616960, 16616952";"European Mathematical Society Publishing House";Yes;Yes;0,786;Q1;28;32;130;891;116;130;0,88;27,84;15,38;0;Germany;Western Europe;"European Mathematical Society Publishing House";"2007-2025";"Algebra and Number Theory (Q1); Geometry and Topology (Q1); Mathematical Physics (Q1)";"Mathematics" +7086;4700151608;"Journal of the Philosophy of Sport";journal;"00948705, 15432939";"Routledge";No;No;0,786;Q1;38;40;79;1110;151;79;1,64;27,75;22,22;0;United Kingdom;Western Europe;"Routledge";"1974-1993, 1995-2026";"Health (social science) (Q1); Philosophy (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Social Sciences (miscellaneous) (Q1); Sports Science (Q2)";"Arts and Humanities; Health Professions; Social Sciences" +7087;21096;"Mechatronics";journal;"09574158";"Elsevier Ltd";No;No;0,786;Q1;116;93;349;3322;1458;348;3,87;35,72;18,05;0;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Mechanical Engineering (Q1); Computer Science Applications (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +7088;21100978847;"SICOT-J";journal;"24268887";"EDP Sciences";Yes;No;0,786;Q1;33;63;137;1685;338;137;2,59;26,75;19,41;0;France;Western Europe;"EDP Sciences";"2015-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +7089;12661;"Current Opinion in Obstetrics and Gynecology";journal;"1040872X, 1473656X";"Lippincott Williams and Wilkins";No;No;0,786;Q2;92;73;214;3138;531;198;2,39;42,99;71,51;0;United States;Northern America;"Lippincott Williams and Wilkins";"1989-2026";"Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)";"Medicine" +7090;21101029746;"Foundations and Trends in Electric Energy Systems";journal;"23326557, 23326565";"Now Publishers Inc";No;No;0,786;Q2;8;3;10;353;26;10;2,50;117,67;25,00;0;United States;Northern America;"Now Publishers Inc";"2017-2025";"Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2)";"Energy; Engineering" +7091;19400158823;"Journal of Biomedical Research";journal;"23524685, 16748301";"Nanjing Medical University and Chungbuk National University Press";No;No;0,786;Q2;50;41;143;1613;395;135;2,78;39,34;40,00;0;China;Asiatic Region;"Nanjing Medical University and Chungbuk National University Press";"2010-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7092;17520;"Neurologia";journal;"02134853, 15781968";"Spanish Society of Neurology";Yes;Yes;0,786;Q2;56;118;339;4503;820;241;2,43;38,16;52,65;2;Spain;Western Europe;"Spanish Society of Neurology";"1973-1974, 1986-2026";"Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)";"Medicine" +7093;14180;"Neuropeptides";journal;"15322785, 01434179";"Churchill Livingstone";No;No;0,786;Q2;83;47;151;3793;454;150;3,20;80,70;48,62;0;United Kingdom;Western Europe;"Churchill Livingstone";"1980-2026";"Medicine (miscellaneous) (Q2); Neurology (Q2); Cellular and Molecular Neuroscience (Q3); Endocrine and Autonomic Systems (Q3); Endocrinology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +7094;14072;"Scandinavian Journal of Statistics";journal;"14679469, 03036898";"Wiley-Blackwell Publishing Ltd";No;No;0,786;Q2;75;75;213;3061;274;203;1,22;40,81;26,06;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +7095;19700175091;"ClinicoEconomics and Outcomes Research";journal;"11786981";"Dove Medical Press Ltd";Yes;No;0,785;Q1;45;74;186;3170;508;177;2,75;42,84;45,33;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Health Policy (Q2)";"Economics, Econometrics and Finance; Medicine" +7096;21101212719;"Discover Materials";journal;"27307727";"";Yes;No;0,785;Q1;20;279;147;18500;961;146;6,14;66,31;29,37;0;Switzerland;Western Europe;"";"2021-2026";"Metals and Alloys (Q1); Biomaterials (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Science (miscellaneous) (Q2)";"Materials Science" +7097;21100377744;"International Journal of Lean Six Sigma";journal;"20404166, 20404174";"Emerald Publishing";No;No;0,785;Q1;65;103;202;8351;1300;196;6,20;81,08;33,94;0;United Kingdom;Western Europe;"Emerald Publishing";"2010-2026";"Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences; Engineering" +7098;28866;"International Journal of Wildland Fire";journal;"14485516, 10498001";"CSIRO Publishing";No;No;0,785;Q1;121;104;298;7568;985;297;3,10;72,77;32,64;0;Australia;Pacific Region;"CSIRO Publishing";"1991-2026";"Ecology (Q1); Forestry (Q1)";"Agricultural and Biological Sciences; Environmental Science" +7099;15429;"Journal of Community and Applied Social Psychology";journal;"10529284, 10991298";"John Wiley and Sons Ltd";No;No;0,785;Q1;79;182;327;11371;905;320;2,37;62,48;62,62;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1991-2026";"Sociology and Political Science (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +7100;21100943318;"Journal of Numerical Cognition";journal;"23638761";"PsychOpen";Yes;Yes;0,785;Q1;15;18;64;1086;157;63;2,05;60,33;66,07;0;Germany;Western Europe;"PsychOpen";"2019-2025";"Applied Mathematics (Q1); Numerical Analysis (Q1); Experimental and Cognitive Psychology (Q2)";"Mathematics; Psychology" +7101;26970;"Journal of Physical Chemistry B";journal;"15205207, 15206106";"American Chemical Society";No;No;0,785;Q1;441;1162;3184;70963;9955;3154;3,10;61,07;30,95;1;United States;Northern America;"American Chemical Society";"1997-2026";"Physical and Theoretical Chemistry (Q1); Surfaces, Coatings and Films (Q1); Materials Chemistry (Q2); Medicine (miscellaneous) (Q2)";"Chemistry; Materials Science; Medicine" +7102;29047;"New Journal of Physics";journal;"13672630";"Institute of Physics";Yes;No;0,785;Q1;225;319;1653;18901;4410;1647;2,70;59,25;21,64;0;United Kingdom;Western Europe;"Institute of Physics";"1998-2025";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +7103;21100923463;"Statistical Theory and Related Fields";journal;"24754277, 24754269";"Routledge";Yes;Yes;0,785;Q1;10;25;84;672;155;84;2,49;26,88;35,00;0;United States;Northern America;"Routledge";"2017-2026";"Analysis (Q1); Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Computer Science; Decision Sciences; Mathematics" +7104;21100941610;"Journal of Global Sport Management";journal;"24704067, 24704075";"Routledge";No;No;0,785;Q2;23;53;123;4016;396;123;3,24;75,77;29,53;0;United States;Northern America;"Routledge";"2016-2026";"Strategy and Management (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting" +7105;21101333431;"Research in Autism";journal;"30506565";"Elsevier Ltd";No;No;0,785;Q2;108;167;368;10566;1187;364;2,85;63,27;64,55;3;United Kingdom;Western Europe;"Elsevier Ltd";"2025-2026";"Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +7106;20815;"Immunology and Allergy Clinics of North America";journal;"08898561, 15578607";"W.B. Saunders";No;No;0,785;Q3;83;54;186;2899;548;158;3,00;53,69;51,22;0;United States;Northern America;"W.B. Saunders";"1987-2026";"Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +7107;29689;"Emergency Medicine Journal";journal;"14720213, 14720205";"BMJ Publishing Group";No;No;0,784;Q1;105;226;590;3401;1074;411;1,49;15,05;53,87;0;United Kingdom;Western Europe;"BMJ Publishing Group";"1996-2026";"Emergency Medicine (Q1); Critical Care and Intensive Care Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +7108;35683;"Irrigation Science";journal;"03427188, 14321319";"Springer Science and Business Media Deutschland GmbH";No;No;0,784;Q1;92;101;187;5879;782;182;3,65;58,21;28,83;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1978-2026";"Agronomy and Crop Science (Q1); Water Science and Technology (Q1); Soil Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +7109;4800152301;"Journal of Patient Safety";journal;"15498425, 15498417";"Lippincott Williams and Wilkins Ltd.";No;No;0,784;Q1;60;140;499;4226;1235;462;1,74;30,19;53,13;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2006-2026";"Leadership and Management (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Nursing" +7110;12207;"Journal of Quantitative Spectroscopy and Radiative Transfer";journal;"00224073";"Elsevier Ltd";No;No;0,784;Q1;133;315;816;14744;2345;813;2,12;46,81;22,62;1;United Kingdom;Western Europe;"Elsevier Ltd";"1961-2026";"Radiation (Q1); Spectroscopy (Q1); Atomic and Molecular Physics, and Optics (Q2)";"Chemistry; Physics and Astronomy" +7111;14065;"Measurement and Evaluation in Counseling and Development";journal;"07481756, 19476302";"Taylor and Francis Ltd.";No;No;0,784;Q1;62;26;69;1702;179;55;2,67;65,46;33,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987, 1996-2026";"Education (Q1); Applied Psychology (Q2); Developmental and Educational Psychology (Q2); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +7112;21101276724;"Network";journal;"26738732";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,784;Q1;18;53;90;2762;487;90;6,09;52,11;24,03;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Computer Networks and Communications (Q2)";"Computer Science; Engineering" +7113;24236;"Prospects";journal;"15739090, 00331538";"Springer Science and Business Media B.V.";No;No;0,784;Q1;46;43;155;1666;543;146;2,98;38,74;50,62;2;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1970, 1972-2026";"Education (Q1)";"Social Sciences" +7114;25426;"Annals of Hematology";journal;"14320584, 09395555";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,784;Q2;98;620;1427;21362;2731;1071;1,97;34,45;47,89;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1991-2026";"Hematology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +7115;21101285722;"Fault-Block Oil and Gas Field";journal;"10058907";"";No;No;0,784;Q2;16;45;411;1166;824;411;2,22;25,91;37,98;0;China;Asiatic Region;"";"2021-2025";"Energy (miscellaneous) (Q2)";"Energy" +7116;5600152809;"IET Renewable Power Generation";journal;"17521416, 17521424";"John Wiley & Sons Inc.";Yes;No;0,784;Q2;109;246;797;10597;3041;785;3,87;43,08;22,88;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2007-2026";"Renewable Energy, Sustainability and the Environment (Q2)";"Energy" +7117;40970;"Magnetic Resonance Materials in Physics, Biology and Medicine";journal;"13528661, 09685243";"Springer Science and Business Media Deutschland GmbH";No;No;0,784;Q2;72;96;238;4543;705;222;2,99;47,32;29,23;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1984, 1993-2026";"Biophysics (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +7118;21100832567;"ACM Transactions on Privacy and Security";journal;"24712566, 24712574";"Association for Computing Machinery";No;No;0,783;Q1;36;43;128;2511;557;128;4,39;58,40;19,16;0;United States;Northern America;"Association for Computing Machinery";"2016-2025";"Computer Science (miscellaneous) (Q1); Safety, Risk, Reliability and Quality (Q1)";"Computer Science; Engineering" +7119;16919;"BioMetals";journal;"15728773, 09660844";"Springer Science and Business Media B.V.";No;No;0,783;Q1;127;120;278;9950;1251;275;4,63;82,92;48,19;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1992-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Inorganic Chemistry (Q1); Metals and Alloys (Q1); Biochemistry (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biomaterials (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science" +7120;4700152907;"Foreign Language Annals";journal;"19449720, 0015718X";"John Wiley and Sons Inc";No;No;0,783;Q1;76;72;168;3690;417;149;2,48;51,25;61,97;0;United States;Northern America;"John Wiley and Sons Inc";"1967-2026";"Linguistics and Language (Q1)";"Social Sciences" +7121;17316;"IEEE Signal Processing Letters";journal;"10709908, 15582361";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,783;Q1;173;926;1562;27971;6951;1562;4,11;30,21;29,19;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1994-2026";"Applied Mathematics (Q1); Electrical and Electronic Engineering (Q2); Signal Processing (Q2)";"Computer Science; Engineering; Mathematics" +7122;24378;"Journal of Economics and Business";journal;"01486195";"Elsevier Inc.";No;No;0,783;Q1;65;29;84;1606;328;82;3,20;55,38;34,92;0;United States;Northern America;"Elsevier Inc.";"1978, 1980, 1982-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +7123;21101162733;"Results in Surfaces and Interfaces";journal;"26668459";"Elsevier B.V.";Yes;No;0,783;Q1;27;320;293;19876;1895;292;6,82;62,11;32,82;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Condensed Matter Physics (Q1); Surfaces, Coatings and Films (Q1); Materials Chemistry (Q2); Surfaces and Interfaces (Q2)";"Materials Science; Physics and Astronomy" +7124;19831;"Sleep and Breathing";journal;"15221709, 15209512";"Springer Science and Business Media Deutschland GmbH";No;No;0,783;Q1;89;367;801;13462;2275;763;2,72;36,68;42,96;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-1997, 1999-2026";"Otorhinolaryngology (Q1); Neurology (clinical) (Q2)";"Medicine" +7125;19700175167;"Frontiers in Neuroinformatics";journal;"16625196";"Frontiers Media SA";Yes;No;0,783;Q2;88;49;311;2672;1045;289;2,80;54,53;38,49;0;Switzerland;Western Europe;"Frontiers Media SA";"2007-2026";"Biomedical Engineering (Q2); Computer Science Applications (Q2); Neuroscience (miscellaneous) (Q2)";"Computer Science; Engineering; Neuroscience" +7126;21101042443;"Schizophrenia Bulletin Open";journal;"26327899";"Oxford University Press";Yes;No;0,783;Q2;20;35;147;1887;309;138;2,20;53,91;51,63;0;United Kingdom;Western Europe;"Oxford University Press";"2020-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +7127;21100285035;"AoB PLANTS";journal;"20412851";"Oxford University Press";Yes;No;0,782;Q1;69;79;212;6103;670;212;3,15;77,25;43,92;0;United Kingdom;Western Europe;"Oxford University Press";"2009, 2011-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +7128;24250;"Archives of Dermatological Research";journal;"03403696, 1432069X";"";No;No;0,782;Q1;101;941;1282;24626;2555;943;1,97;26,17;51,44;0;Germany;Western Europe;"";"1971, 1973-2026";"Dermatology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +7129;25892;"Discrete Mathematics";journal;"0012365X";"Elsevier B.V.";No;No;0,782;Q1;94;361;1293;7691;1421;1291;1,11;21,30;30,71;0;Netherlands;Western Europe;"Elsevier B.V.";"1971-2026";"Discrete Mathematics and Combinatorics (Q1); Theoretical Computer Science (Q1)";"Mathematics" +7130;14677;"Infection, Genetics and Evolution";journal;"15677257, 15671348";"Elsevier B.V.";Yes;No;0,782;Q1;124;149;512;7559;1499;506;2,92;50,73;45,15;2;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q2); Infectious Diseases (Q2); Microbiology (Q2); Microbiology (medical) (Q2); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +7131;21100935006;"Journal of Combinatorial Algebra";journal;"24156310, 24156302";"European Mathematical Society Publishing House";Yes;Yes;0,782;Q1;8;8;30;278;24;30;1,00;34,75;30,77;0;Switzerland;Western Europe;"European Mathematical Society Publishing House";"2018-2025";"Algebra and Number Theory (Q1); Discrete Mathematics and Combinatorics (Q1)";"Mathematics" +7132;29275;"Journal of Geography in Higher Education";journal;"03098265, 14661845";"Routledge";No;No;0,782;Q1;65;46;138;2408;380;133;2,93;52,35;53,52;1;United Kingdom;Western Europe;"Routledge";"1977-2026";"Education (Q1); Geography, Planning and Development (Q1)";"Social Sciences" +7133;12813;"Journal of Information Science";journal;"01655515, 17416485";"SAGE Publications Ltd";No;No;0,782;Q1;86;165;342;9329;1407;342;3,97;56,54;39,87;5;United Kingdom;Western Europe;"SAGE Publications Ltd";"1979-2026";"Library and Information Sciences (Q1); Information Systems (Q2)";"Computer Science; Social Sciences" +7134;24810;"Journal of Moral Education";journal;"14653877, 03057240";"Routledge";No;No;0,782;Q1;58;96;127;5217;380;120;3,07;54,34;60,40;0;United Kingdom;Western Europe;"Routledge";"1971-2026";"Education (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +7135;28240;"Journal of Pediatric Nursing";journal;"15328449, 08825963";"W.B. Saunders";No;No;0,782;Q1;83;335;1000;14661;2685;953;2,56;43,76;74,68;0;United States;Northern America;"W.B. Saunders";"1986-2026";"Pediatrics (Q1)";"Nursing" +7136;21100369777;"Materials Today Communications";journal;"23524928";"Elsevier Ltd";No;No;0,782;Q1;87;3207;8000;176608;41073;7995;5,15;55,07;32,31;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Mechanics of Materials (Q1); Materials Chemistry (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +7137;21101048330;"Mining Science and Technology (Russian Federation)";journal;"25000632";"National University of Science and Technology MISIS";Yes;Yes;0,782;Q1;15;32;95;1003;221;95;2,64;31,34;33,64;0;Russian Federation;Eastern Europe;"National University of Science and Technology MISIS";"2016-2025";"Geology (Q1); Industrial and Manufacturing Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q2); Process Chemistry and Technology (Q2)";"Chemical Engineering; Earth and Planetary Sciences; Engineering" +7138;21101039476;"Infectious Diseases Now";journal;"26669919, 26669927";"Elsevier Masson s.r.l.";No;No;0,782;Q2;56;121;319;3749;706;258;2,56;30,98;48,15;1;France;Western Europe;"Elsevier Masson s.r.l.";"2021-2026";"Infectious Diseases (Q2)";"Medicine" +7139;21100780477;"Informatics in Medicine Unlocked";journal;"23529148";"Elsevier Ltd";Yes;No;0,782;Q2;76;111;744;5530;4180;741;5,99;49,82;36,24;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Computer Science Applications (Q2); Health Informatics (Q2); Information Systems (Q2); Software (Q2)";"Computer Science; Medicine" +7140;21100228110;"Journal of Ophthalmology";journal;"2090004X, 20900058";"John Wiley and Sons Ltd";Yes;No;0,782;Q2;70;85;346;3606;825;341;2,18;42,42;42,92;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2026";"Ophthalmology (Q2)";"Medicine" +7141;19400158707;"Journal of Saudi Chemical Society";journal;"13196103";"Springer International Publishing";Yes;No;0,782;Q2;97;47;409;3522;2487;408;5,68;74,94;38,31;0;Switzerland;Western Europe;"Springer International Publishing";"2009-2026";"Chemistry (miscellaneous) (Q2)";"Chemistry" +7142;4000149409;"Quarterly Journal of Experimental Psychology";journal;"17470218, 17470226";"SAGE Publications Inc.";No;No;0,782;Q2;137;220;543;15274;1069;534;1,95;69,43;44,65;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2006-2026";"Experimental and Cognitive Psychology (Q2); Medicine (miscellaneous) (Q2); Neuropsychology and Physiological Psychology (Q2); Physiology (Q2); Physiology (medical) (Q2); Psychology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Psychology" +7143;21101038575;"Agrarian South";journal;"23210281, 22779760";"SAGE Publications Inc.";No;No;0,781;Q1;22;19;58;795;112;53;1,93;41,84;27,27;1;United States;Northern America;"SAGE Publications Inc.";"2012-2026";"Cultural Studies (Q1); Ecology (Q1); Geography, Planning and Development (Q1); Social Sciences (miscellaneous) (Q1)";"Environmental Science; Social Sciences" +7144;17300154921;"Earthquake Science";journal;"18678777, 16744519";"KeAi Communications Co.";Yes;No;0,781;Q1;36;43;120;1969;324;116;3,72;45,79;28,79;1;China;Asiatic Region;"KeAi Communications Co.";"2009-2026";"Geology (Q1); Geophysics (Q1); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +7145;21100453520;"Investigative and Clinical Urology";journal;"2466054X, 24660493";"Korean Urological Association";Yes;Yes;0,781;Q1;33;66;230;1804;584;202;2,70;27,33;21,08;0;South Korea;Asiatic Region;"Korean Urological Association";"2016-2026";"Urology (Q1)";"Medicine" +7146;21101081664;"JCIS Open";journal;"2666934X";"Elsevier B.V.";Yes;No;0,781;Q1;19;34;81;2152;509;81;8,00;63,29;35,25;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Surfaces, Coatings and Films (Q1); Colloid and Surface Chemistry (Q2); Materials Chemistry (Q2); Physical and Theoretical Chemistry (Q2)";"Chemical Engineering; Chemistry; Materials Science" +7147;21101256264;"Neuroprotection";journal;"27707296, 2770730X";"John Wiley and Sons Inc";Yes;No;0,781;Q1;7;31;44;2849;147;38;3,34;91,90;43,14;0;China;Asiatic Region;"John Wiley and Sons Inc";"2023-2026";"Surgery (Q1); Neurology (Q2); Neuroscience (miscellaneous) (Q2)";"Medicine; Neuroscience" +7148;21100855986;"Revista de Investigacoes Constitucionais";journal;"23595639";"Universidade Federal do Parana";Yes;Yes;0,781;Q1;14;24;71;1290;67;69;0,91;53,75;38,71;0;Brazil;Latin America;"Universidade Federal do Parana";"2014-2025";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7149;21101170021;"Tetrahedron Chem";journal;"2666951X";"Elsevier Ltd";Yes;No;0,781;Q1;12;32;104;1906;323;103;3,19;59,56;35,45;0;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Organic Chemistry (Q1)";"Chemistry" +7150;5200153105;"Zoonoses and Public Health";journal;"18631959, 18632378";"Wiley-Blackwell Publishing Ltd";No;No;0,781;Q1;83;68;266;3678;731;259;2,56;54,09;53,67;1;Germany;Western Europe;"Wiley-Blackwell Publishing Ltd";"2007-2026";"Veterinary (miscellaneous) (Q1); Epidemiology (Q2); Immunology and Microbiology (miscellaneous) (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Immunology and Microbiology; Medicine; Veterinary" +7151;14500154732;"Air Quality, Atmosphere and Health";journal;"18739326, 18739318";"Springer Science and Business Media B.V.";No;No;0,781;Q2;81;254;534;16600;1898;532;3,45;65,35;36,02;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2008-2026";"Atmospheric Science (Q2); Health, Toxicology and Mutagenesis (Q2); Management, Monitoring, Policy and Law (Q2); Pollution (Q2)";"Earth and Planetary Sciences; Environmental Science" +7152;21100299401;"Brain Connectivity";journal;"21580014, 21580022";"Mary Ann Liebert Inc.";No;No;0,781;Q2;75;40;200;1872;403;167;2,01;46,80;40,83;0;United States;Northern America;"Mary Ann Liebert Inc.";"2011-2026";"Neuroscience (miscellaneous) (Q2)";"Neuroscience" +7153;21101163300;"FirePhysChem";journal;"26671344";"KeAi Communications Co.";Yes;No;0,781;Q2;15;84;82;4072;443;81;5,46;48,48;33,98;0;China;Asiatic Region;"KeAi Communications Co.";"2022-2026";"Chemical Health and Safety (Q2); Fuel Technology (Q2); Materials Science (miscellaneous) (Q2); Process Chemistry and Technology (Q2)";"Chemical Engineering; Energy; Materials Science" +7154;14856;"International Clinical Psychopharmacology";journal;"02681315, 14735857";"Lippincott Williams and Wilkins";No;No;0,781;Q2;102;56;163;2653;379;135;2,23;47,38;38,13;0;United States;Northern America;"Lippincott Williams and Wilkins";"1986-2026";"Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +7155;21100242210;"Journal of Social Marketing";journal;"20426763, 20426771";"Emerald Publishing";No;No;0,781;Q2;39;39;89;2868;374;85;3,81;73,54;59,66;0;United Kingdom;Western Europe;"Emerald Publishing";"2011-2026";"Management of Technology and Innovation (Q2); Marketing (Q2)";"Business, Management and Accounting" +7156;21101268334;"Nanoenergy Advances";journal;"2673706X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,781;Q2;16;23;58;2020;269;57;4,29;87,83;30,00;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Energy (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Energy; Materials Science" +7157;21100873055;"Cosmetics";journal;"20799284";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,780;Q1;63;284;534;18610;2682;528;4,75;65,53;57,49;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2014-2025";"Chemical Engineering (miscellaneous) (Q1); Dermatology (Q1); Surgery (Q1); Pharmaceutical Science (Q2); Aging (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7158;24437;"Data and Knowledge Engineering";journal;"0169023X";"Elsevier B.V.";No;No;0,780;Q1;99;78;230;3839;1112;218;5,08;49,22;33,88;0;Netherlands;Western Europe;"Elsevier B.V.";"1985, 1987-2026";"Information Systems and Management (Q1)";"Decision Sciences" +7159;19900192117;"Journal of Adventure Education and Outdoor Learning";journal;"17540402, 14729679";"Routledge";No;No;0,780;Q1;38;119;112;7652;426;110;4,00;64,30;53,85;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Education (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)";"Health Professions; Social Sciences" +7160;101305;"Journal of Sociology";journal;"17412978, 14407833";"SAGE Publications Ltd";No;No;0,780;Q1;71;53;141;2546;463;139;3,48;48,04;66,39;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1965-2026";"Sociology and Political Science (Q1)";"Social Sciences" +7161;18084;"Sociological Forum";journal;"15737861, 08848971";"Wiley-Blackwell";No;No;0,780;Q1;80;59;180;4512;421;177;1,84;76,47;57,47;0;United States;Northern America;"Wiley-Blackwell";"1986-2026";"Sociology and Political Science (Q1)";"Social Sciences" +7162;18903;"Theriogenology";journal;"0093691X, 18793231";"Elsevier Inc.";No;No;0,780;Q1;160;329;1147;17017;3495;1146;2,93;51,72;43,81;0;United States;Northern America;"Elsevier Inc.";"1974-2026";"Animal Science and Zoology (Q1); Equine (Q1); Food Animals (Q1); Small Animals (Q1)";"Agricultural and Biological Sciences; Veterinary" +7163;21100896357;"Contraception: X";journal;"25901516";"Elsevier Inc.";Yes;No;0,780;Q2;18;0;45;0;96;41;1,59;0,00;0,00;0;United States;Northern America;"Elsevier Inc.";"2019-2024";"Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)";"Medicine" +7164;21101065238;"Health Policy OPEN";journal;"25902296";"Elsevier B.V.";Yes;No;0,780;Q2;19;15;73;741;201;69;2,56;49,40;50,98;1;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Health Policy (Q2)";"Medicine" +7165;21101307615;"Journal of Cycling and Micromobility Research";journal;"29501059";"Elsevier B.V.";Yes;No;0,780;Q2;8;47;41;2947;150;41;3,66;62,70;37,21;3;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Transportation (Q2)";"Social Sciences" +7166;22204;"Journal of Drug Delivery Science and Technology";journal;"17732247, 25888943";"Editions de Sante";No;No;0,780;Q2;102;1061;3107;89135;18427;3068;5,96;84,01;47,68;0;France;Western Europe;"Editions de Sante";"2004-2026";"Pharmaceutical Science (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +7167;21100374356;"Aslib Journal of Information Management";journal;"20503806, 20503814";"Emerald Group Publishing Ltd.";No;No;0,779;Q1;58;140;186;11152;948;183;4,52;79,66;40,53;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2014-2026";"Library and Information Sciences (Q1); Information Systems (Q2)";"Computer Science; Social Sciences" +7168;24298;"Contact Dermatitis";journal;"01051873, 16000536";"Wiley-Blackwell Publishing Ltd";No;No;0,779;Q1;117;176;667;4329;1408;484;1,93;24,60;58,76;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1975-2026";"Dermatology (Q1); Immunology and Allergy (Q3)";"Medicine" +7169;3200147817;"Journal of Pediatric Urology";journal;"14775131, 18734898";"Elsevier Ltd";No;No;0,779;Q1;68;440;1059;6173;1521;678;1,37;14,03;40,94;3;United Kingdom;Western Europe;"Elsevier Ltd";"2005-2026";"Pediatrics, Perinatology and Child Health (Q1); Urology (Q1)";"Medicine" +7170;28564;"Journal of Physics and Chemistry of Solids";journal;"00223697, 18792553";"Elsevier Ltd";No;No;0,779;Q1;138;591;1683;34992;9204;1681;5,95;59,21;31,95;0;United Kingdom;Western Europe;"Elsevier Ltd";"1956-2026";"Condensed Matter Physics (Q1); Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +7171;29664;"Journal of Trace Elements in Medicine and Biology";journal;"0946672X, 18783252";"Elsevier GmbH";No;No;0,779;Q1;104;226;635;15758;2770;629;4,52;69,73;50,31;0;Germany;Western Europe;"Elsevier GmbH";"1995-2026";"Inorganic Chemistry (Q1); Biochemistry (Q2); Molecular Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +7172;17800;"Materials Chemistry and Physics";journal;"02540584";"Elsevier B.V.";No;No;0,779;Q1;191;1277;4501;74902;23939;4500;5,56;58,65;32,39;0;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q2)";"Materials Science; Physics and Astronomy" +7173;21101278667;"National Science Open";journal;"20971168, 20971400";"Science Press";Yes;No;0,779;Q1;15;64;135;3346;480;118;3,43;52,28;35,04;0;China;Asiatic Region;"Science Press";"2022-2025";"Multidisciplinary (Q1)";"Multidisciplinary" +7174;23421;"Political Theory";journal;"00905917, 15527476";"SAGE Publications Inc.";No;No;0,779;Q1;80;37;124;2870;219;112;1,50;77,57;24,32;0;United States;Northern America;"SAGE Publications Inc.";"1973-2026";"History (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +7175;28127;"Environmental Health and Preventive Medicine";journal;"1342078X, 13474715";"Komiyama Printing Co., Ltd.";Yes;No;0,779;Q2;68;101;201;4229;615;193;2,98;41,87;37,00;0;United Kingdom;Western Europe;"Komiyama Printing Co., Ltd.";"1996-2026";"Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +7176;20217;"Journal of Applied Microbiology";journal;"13652672, 13645072";"Oxford University Press";No;No;0,779;Q2;203;308;1343;19850;5371;1338;3,03;64,45;48,91;0;United Kingdom;Western Europe;"Oxford University Press";"1973-1975, 1997-2026";"Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +7177;21101248939;"PLOS Water";journal;"27673219";"Public Library of Science";Yes;No;0,779;Q2;17;111;230;6282;672;206;2,76;56,59;47,83;3;United States;Northern America;"Public Library of Science";"2022-2026";"Global and Planetary Change (Q2); Water Science and Technology (Q2)";"Environmental Science" +7178;21100202716;"Thoracic Cancer";journal;"17597714, 17597706";"John Wiley and Sons Inc";Yes;No;0,779;Q2;60;254;1129;8093;3088;1099;2,81;31,86;32,08;1;United States;Northern America;"John Wiley and Sons Inc";"2010-2026";"Medicine (miscellaneous) (Q2); Oncology (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +7179;11700154369;"Australian Journal of Management";journal;"13272020, 03128962";"SAGE Publications Ltd";No;No;0,778;Q1;57;84;101;6938;402;97;3,96;82,60;42,59;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1976-2026";"Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +7180;27457;"Contemporary Physics";journal;"00107514, 13665812";"Taylor and Francis Ltd.";No;No;0,778;Q1;73;5;42;738;122;41;2,70;147,60;20,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1959-1971, 1973-1978, 1980-1990, 1992-2026";"Physics and Astronomy (miscellaneous) (Q1)";"Physics and Astronomy" +7181;21101064919;"Innovation and Management Review";journal;"25158961";"Emerald Group Publishing Ltd.";Yes;Yes;0,778;Q1;25;19;70;993;324;67;4,00;52,26;40,74;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2018-2025";"Business, Management and Accounting (miscellaneous) (Q1); Business and International Management (Q2); Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +7182;3300147502;"International Journal of Mechanics and Materials in Design";journal;"15691713, 15738841";"Springer Science and Business Media B.V.";No;No;0,778;Q1;50;92;159;4878;748;156;5,09;53,02;20,71;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2005-2006, 2008-2026";"Mechanical Engineering (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +7183;19700186911;"SIAM Journal on Imaging Sciences";journal;"19364954";"Society for Industrial and Applied Mathematics Publications";No;No;0,778;Q1;92;82;214;4536;603;214;2,72;55,32;23,17;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"2008-2025";"Mathematics (miscellaneous) (Q1); Applied Mathematics (Q2)";"Mathematics" +7184;13727;"BMC Ophthalmology";journal;"14712415";"BioMed Central Ltd";Yes;No;0,778;Q2;73;702;1568;20986;3732;1558;2,24;29,89;43,96;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Medicine (miscellaneous) (Q2); Ophthalmology (Q2)";"Medicine" +7185;15988;"Journal of Palliative Care";journal;"08258597, 23695293";"SAGE Publications Inc.";No;No;0,778;Q2;59;67;169;2713;425;158;2,54;40,49;61,49;3;United Kingdom;Western Europe;"SAGE Publications Inc.";"1985-2015, 2017-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +7186;26663;"Korean Journal of Internal Medicine";journal;"12263303, 20056648";"Korean Association of Internal Medicine";Yes;No;0,778;Q2;63;111;376;4064;818;281;1,95;36,61;36,31;0;South Korea;Asiatic Region;"Korean Association of Internal Medicine";"1961-1963, 1986-2026";"Internal Medicine (Q2)";"Medicine" +7187;17997;"Neurophysiologie Clinique";journal;"09877053, 17697131";"Elsevier Masson s.r.l.";No;No;0,778;Q2;82;61;152;2103;399;134;2,64;34,48;44,84;0;France;Western Europe;"Elsevier Masson s.r.l.";"1988-2026";"Medicine (miscellaneous) (Q2); Neurology (Q2); Neurology (clinical) (Q2); Physiology (medical) (Q2)";"Medicine; Neuroscience" +7188;72917;"Proceedings of the International Symposium on Physical Design";conference and proceedings;"21641498, 26431866";"Association for Computing Machinery";No;No;0,778;-;55;32;93;909;327;85;4,14;28,41;38,38;0;United States;Northern America;"Association for Computing Machinery";"1997-2025";"Electrical and Electronic Engineering";"Engineering" +7189;5800179604;"Algorithms for Molecular Biology";journal;"17487188";"BioMed Central Ltd";Yes;No;0,777;Q1;42;21;60;721;107;60;1,75;34,33;18,75;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Computational Theory and Mathematics (Q1); Applied Mathematics (Q2); Structural Biology (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics" +7190;145649;"Communications on Pure and Applied Analysis";journal;"15340392, 15535258";"American Institute of Mathematical Sciences";No;No;0,777;Q1;54;104;417;2840;450;416;0,90;27,31;31,94;0;United States;Northern America;"American Institute of Mathematical Sciences";"2004-2026";"Analysis (Q1); Applied Mathematics (Q2)";"Mathematics" +7191;21101034519;"Global Energy Interconnection";journal;"25900358, 20965117";"KeAi Publishing Communications Ltd.";Yes;Yes;0,777;Q1;33;77;185;3296;831;185;4,91;42,81;25,93;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2018-2026";"Automotive Engineering (Q1); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Engineering" +7192;8000153139;"Journal of the Mechanical Behavior of Biomedical Materials";journal;"18780180, 17516161";"Elsevier Ltd";No;No;0,777;Q1;140;293;1559;15717;7233;1553;4,66;53,64;35,61;0;United Kingdom;Western Europe;"Elsevier Ltd";"2008-2026";"Mechanics of Materials (Q1); Biomaterials (Q2); Biomedical Engineering (Q2)";"Engineering; Materials Science" +7193;25200;"Nagoya Mathematical Journal";journal;"21526842, 00277630";"Cambridge University Press";No;No;0,777;Q1;39;46;106;1291;114;106;1,11;28,07;14,46;0;United Kingdom;Western Europe;"Cambridge University Press";"1950-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +7194;17942;"Neurological Sciences";journal;"15901874, 15903478";"Springer-Verlag Italia s.r.l.";No;No;0,777;Q1;95;828;2165;25577;4950;1748;2,16;30,89;49,26;1;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1996-2026";"Dermatology (Q1); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +7195;29259;"Nursing Research";journal;"15389847, 00296562";"Lippincott Williams and Wilkins Ltd.";No;No;0,777;Q1;110;92;219;2480;532;185;1,99;26,96;76,76;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1952-2026";"Nursing (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +7196;21100836334;"Publications";journal;"23046775";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,777;Q1;32;67;150;3191;662;142;4,64;47,63;35,63;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2025";"Communication (Q1); Library and Information Sciences (Q1); Media Technology (Q1); Business and International Management (Q2); Computer Science Applications (Q2)";"Business, Management and Accounting; Computer Science; Engineering; Social Sciences" +7197;21101298325;"RSC Pharmaceutics";journal;"29768713";"Royal Society of Chemistry";Yes;No;0,777;Q1;12;88;93;8014;495;92;5,32;91,07;42,26;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2024-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Pharmaceutical Science (Q2); Pharmacology (Q2); Toxicology (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +7198;21101390654;"Spectrum of Engineering and Management Sciences";journal;"30093309";"Scientific Oasis";No;No;0,777;Q1;10;20;28;650;141;28;5,04;32,50;26,09;0;Serbia;Eastern Europe;"Scientific Oasis";"2023-2026";"Engineering (miscellaneous) (Q1); Decision Sciences (miscellaneous) (Q2); Management Science and Operations Research (Q2)";"Decision Sciences; Engineering" +7199;25374;"Techniques in Coloproctology";journal;"1128045X, 11236337";"Springer Science and Business Media Deutschland GmbH";No;No;0,777;Q1;72;191;502;5508;1119;379;2,21;28,84;28,95;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1998-2026";"Surgery (Q1); Gastroenterology (Q2)";"Medicine" +7200;21100255440;"Frontiers in Bioscience - Elite";journal;"19450508, 19450494";"IMR Press Limited";Yes;No;0,777;Q2;64;32;99;1772;456;99;5,22;55,38;56,30;0;United States;Northern America;"IMR Press Limited";"2009-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +7201;10300153357;"Journal of Digestive Diseases";journal;"17512972, 17512980";"Wiley-Blackwell Publishing Ltd";No;No;0,777;Q2;67;53;228;2043;518;194;2,33;38,55;40,75;0;Australia;Pacific Region;"Wiley-Blackwell Publishing Ltd";"2007-2026";"Gastroenterology (Q2)";"Medicine" +7202;21101196409;"MedComm - Biomaterials and Applications";journal;"2769643X";"John Wiley and Sons Inc";Yes;No;0,777;Q2;16;35;91;4515;417;86;4,58;129,00;46,91;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Biomaterials (Q2); Medicine (miscellaneous) (Q2)";"Materials Science; Medicine" +7203;21101248691;"Next Materials";journal;"29498228";"Elsevier B.V.";Yes;No;0,776;Q1;20;1070;268;74348;1446;261;5,40;69,48;30,41;1;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +7204;21101215790;"Phycology";journal;"26739410";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,776;Q1;18;89;91;6409;467;91;4,12;72,01;44,29;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1)";"Agricultural and Biological Sciences" +7205;28551;"Physics of the Earth and Planetary Interiors";journal;"18727395, 00319201";"Elsevier B.V.";No;No;0,776;Q1;135;104;224;7624;503;224;2,15;73,31;28,53;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Geophysics (Q1); Physics and Astronomy (miscellaneous) (Q1); Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +7206;23482;"Politische Vierteljahresschrift";journal;"00323470, 18622860";"VS Verlag fur Sozialwissenschaften";No;No;0,776;Q1;31;53;101;3628;276;92;1,92;68,45;37,89;4;Germany;Western Europe;"VS Verlag fur Sozialwissenschaften";"1987, 1996-2026";"Sociology and Political Science (Q1)";"Social Sciences" +7207;23577;"Publius: The Journal of Federalism";journal;"17477107, 00485950";"Oxford University Press";No;No;0,776;Q1;55;24;92;1841;212;90;2,34;76,71;39,02;1;United Kingdom;Western Europe;"Oxford University Press";"1971-2026";"Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7208;21100398900;"Biochemistry and Biophysics Reports";journal;"24055808";"Elsevier B.V.";Yes;No;0,776;Q2;56;478;669;25500;2215;667;3,46;53,35;41,58;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Biochemistry (Q2); Biophysics (Q2); Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +7209;21101045739;"FASEB BioAdvances";journal;"25739832";"John Wiley and Sons Inc";Yes;No;0,776;Q2;26;82;145;5058;359;141;2,31;61,68;44,02;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2019-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Molecular Medicine (Q2); Physiology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology" +7210;19710;"FEMS Yeast Research";journal;"15671364, 15671356";"Oxford University Press";Yes;No;0,776;Q2;117;73;157;6583;616;153;3,57;90,18;42,32;0;United Kingdom;Western Europe;"Oxford University Press";"2001-2026";"Applied Microbiology and Biotechnology (Q2); Medicine (miscellaneous) (Q2); Microbiology (Q2)";"Immunology and Microbiology; Medicine" +7211;25019;"Human-Computer Interaction";journal;"15327051, 07370024";"Taylor and Francis Ltd.";No;No;0,776;Q2;87;26;70;1759;423;62;6,61;67,65;46,43;0;United States;Northern America;"Taylor and Francis Ltd.";"1985-1987, 1989-2026";"Applied Psychology (Q2); Human-Computer Interaction (Q2)";"Computer Science; Psychology" +7212;12300154908;"IRBM";journal;"18760988, 19590318";"Elsevier Masson s.r.l.";No;No;0,776;Q2;54;38;168;1447;830;168;2,23;38,08;41,48;0;France;Western Europe;"Elsevier Masson s.r.l.";"2008-2026";"Biomedical Engineering (Q2); Biophysics (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering" +7213;17605;"Journal of Enzyme Inhibition and Medicinal Chemistry";journal;"14756374, 14756366";"Taylor and Francis Ltd.";Yes;No;0,776;Q2;103;109;500;7586;2782;498;5,32;69,60;44,95;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-1996, 1998-1999, 2002-2026";"Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +7214;21100201082;"Trends in Psychiatry and Psychotherapy";journal;"22380019, 22376089";"Sociedade de Psiquiatria do Rio Grande do Sul";Yes;Yes;0,776;Q2;34;50;127;2019;311;107;2,26;40,38;56,49;0;Brazil;Latin America;"Sociedade de Psiquiatria do Rio Grande do Sul";"2011-2025";"Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +7215;29964;"AIAA Journal";journal;"1533385X, 00011452";"American Institute of Aeronautics and Astronautics Inc. (AIAA)";No;No;0,775;Q1;195;404;1305;18261;4112;1211;3,16;45,20;16,37;0;United States;Northern America;"American Institute of Aeronautics and Astronautics Inc. (AIAA)";"1963-2026";"Aerospace Engineering (Q1)";"Engineering" +7216;4700152624;"Cultural Studies of Science Education";journal;"18711502, 18711510";"Springer Science and Business Media B.V.";No;No;0,775;Q1;48;36;161;2150;445;159;2,59;59,72;60,61;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2006-2026";"Cultural Studies (Q1)";"Social Sciences" +7217;19500156817;"International Health";journal;"18763413, 18763405";"Oxford University Press";Yes;No;0,775;Q1;52;138;313;4381;878;305;2,75;31,75;40,64;2;United Kingdom;Western Europe;"Oxford University Press";"2009-2026";"Health (social science) (Q1); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +7218;16215;"International Journal of Numerical Methods for Heat and Fluid Flow";journal;"09615539";"Emerald Group Publishing Ltd.";No;No;0,775;Q1;82;222;529;9833;2668;517;5,97;44,29;23,36;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1991-2026";"Aerospace Engineering (Q1); Computational Mechanics (Q1); Engineering (miscellaneous) (Q1); Mechanical Engineering (Q1)";"Engineering" +7219;14849;"Journal of Development Studies";journal;"00220388, 17439140";"Routledge";No;No;0,775;Q1;118;139;318;8284;858;315;2,33;59,60;32,52;9;United Kingdom;Western Europe;"Routledge";"1964-2026";"Development (Q1)";"Social Sciences" +7220;11800154592;"Journal of Sports Economics";journal;"15270025, 15527794";"SAGE Publications Ltd";No;No;0,775;Q1;63;42;129;1664;315;128;1,94;39,62;20,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2000-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Sports Science (Q2)";"Economics, Econometrics and Finance; Health Professions" +7221;21101087777;"Journal of Work-Applied Management";journal;"22052062, 2205149X";"Emerald Group Holdings Ltd.";Yes;Yes;0,775;Q1;26;49;71;2519;388;65;5,34;51,41;48,15;0;United Kingdom;Western Europe;"Emerald Group Holdings Ltd.";"2015-2026";"Business, Management and Accounting (miscellaneous) (Q1); Education (Q1); Business and International Management (Q2); Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +7222;21100811521;"Land";journal;"2073445X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,775;Q1;85;2442;6740;164360;27027;6686;3,77;67,31;41,65;12;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Ecology (Q1); Nature and Landscape Conservation (Q1); Global and Planetary Change (Q2)";"Environmental Science" +7223;24361;"Journal of Intelligent Information Systems";journal;"15737675, 09259902";"Springer Netherlands";No;No;0,775;Q2;71;117;220;5594;1065;218;5,12;47,81;33,60;0;Netherlands;Western Europe;"Springer Netherlands";"1992-2026";"Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)";"Computer Science" +7224;21100899217;"Wireless Power Transfer";journal;"20528418";"Maximum Academic Press";Yes;No;0,775;Q2;18;34;17;946;46;17;2,47;27,82;28,89;0;United States;Northern America;"Maximum Academic Press";"2014-2026";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2)";"Computer Science; Energy; Engineering" +7225;22558;"Cardiovascular Pathology";journal;"10548807, 18791336";"Elsevier Inc.";No;No;0,774;Q1;86;46;174;1662;356;148;2,23;36,13;41,37;0;United States;Northern America;"Elsevier Inc.";"1992-2026";"Pathology and Forensic Medicine (Q1); Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +7226;21101046163;"ECNU Review of Education";journal;"20965311, 26321742";"SAGE Publications Ltd";Yes;Yes;0,774;Q1;27;90;170;4116;693;154;4,28;45,73;53,62;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2025";"Education (Q1)";"Social Sciences" +7227;29466;"Hydrogeology Journal";journal;"14312174, 14350157";"";No;No;0,774;Q1;131;128;430;7740;1259;417;2,86;60,47;30,26;1;Germany;Western Europe;"";"1992, 1994-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Water Science and Technology (Q2)";"Earth and Planetary Sciences; Environmental Science" +7228;21100901139;"Journal of Animal Science and Technology";journal;"26720191, 20550391";"Korean Society of Animal Sciences and Technology";Yes;No;0,774;Q1;36;81;286;3845;1048;286;3,37;47,47;31,45;0;South Korea;Asiatic Region;"Korean Society of Animal Sciences and Technology";"2015-2025";"Animal Science and Zoology (Q1); Ecology (Q1); Food Science (Q1); Veterinary (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Veterinary" +7229;21101126970;"Logistics";journal;"23056290";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,774;Q1;39;176;317;10063;2097;314;6,45;57,18;31,19;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2026";"Information Systems and Management (Q1); Management Information Systems (Q1); Management Science and Operations Research (Q2); Transportation (Q2)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +7230;25938;"Macromolecular Materials and Engineering";journal;"14387492, 14392054";"Wiley-VCH Verlag";Yes;No;0,774;Q1;123;226;677;16100;3375;673;5,67;71,24;37,32;0;Germany;Western Europe;"Wiley-VCH Verlag";"1989, 2000-2026";"Chemical Engineering (miscellaneous) (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1); Materials Chemistry (Q2)";"Chemical Engineering; Chemistry; Materials Science" +7231;21100236217;"Review of European, Comparative and International Environmental Law";journal;"20500386, 20500394";"John Wiley and Sons Ltd";No;No;0,774;Q1;36;55;135;1786;398;129;2,73;32,47;46,91;5;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Geography, Planning and Development (Q1); Law (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +7232;17307;"Taxon";journal;"00400262, 19968175";"International Association for Plant Taxonomy";No;No;0,774;Q1;103;169;543;6660;719;226;1,30;39,41;34,43;0;Austria;Western Europe;"International Association for Plant Taxonomy";"1970-1971, 1981-1984, 1986-1987, 1989-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +7233;24546;"Zoologica Scripta";journal;"14636409, 03003256";"Wiley-Blackwell Publishing Ltd";No;No;0,774;Q1;78;67;148;5318;351;145;2,17;79,37;36,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1971-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q2); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +7234;11000153716;"Best Practice and Research in Clinical Anaesthesiology";journal;"17533740, 18781608";"Elsevier B.V.";No;No;0,774;Q2;91;43;128;2390;488;118;3,33;55,58;34,17;0;United Kingdom;Western Europe;"Elsevier B.V.";"2000-2025";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +7235;19700175458;"Epigenomics";journal;"1750192X, 17501911";"Taylor and Francis Ltd.";No;No;0,774;Q2;85;133;329;12118;804;288;2,51;91,11;52,04;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Genetics (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology" +7236;21101134737;"NeuroImage: Reports";journal;"26669560";"Elsevier Inc.";Yes;No;0,774;Q2;16;65;142;3773;359;142;2,06;58,05;42,96;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Neurology (Q2); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience" +7237;15207;"American Journal of Emergency Medicine";journal;"15328171, 07356757";"W.B. Saunders";No;No;0,773;Q1;120;769;2043;16531;4128;1405;2,15;21,50;35,86;2;United States;Northern America;"W.B. Saunders";"1983-2026";"Emergency Medicine (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +7238;19900191349;"Critical Policy Studies";journal;"19460171, 1946018X";"Routledge";No;No;0,773;Q1;45;66;105;4142;440;95;3,47;62,76;53,40;6;United Kingdom;Western Europe;"Routledge";"2010-2026";"Public Administration (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7239;21100860118;"Hydrology";journal;"23065338";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,773;Q1;48;334;683;20922;2686;666;3,56;62,64;30,75;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2014-2026";"Earth-Surface Processes (Q1); Oceanography (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2)";"Earth and Planetary Sciences; Environmental Science" +7240;29801;"Injury";journal;"00201383, 18790267";"Elsevier Ltd";No;No;0,773;Q1;157;628;1999;19054;4821;1764;2,34;30,34;29,68;3;United Kingdom;Western Europe;"Elsevier Ltd";"1969-2026";"Emergency Medicine (Q1); Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +7241;19864;"International Journal of Sports Medicine";journal;"01724622, 14393964";"Georg Thieme Verlag";No;No;0,773;Q1;135;112;377;5864;978;371;2,29;52,36;26,83;0;Germany;Western Europe;"Georg Thieme Verlag";"1980-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)";"Health Professions; Medicine" +7242;21101381390;"Journal of Geophysical Research: Machine Learning and Computation";journal;"29935210";"John Wiley and Sons Inc";No;No;0,773;Q1;8;181;80;12156;290;79;3,63;67,16;28,40;0;United States;Northern America;"John Wiley and Sons Inc";"2024-2026";"Chemical Engineering (miscellaneous) (Q1); Civil and Structural Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Electrical and Electronic Engineering (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Chemical Engineering; Engineering" +7243;5700161675;"Journal of Language and Politics";journal;"15699862, 15692159";"John Benjamins Publishing Company";No;No;0,773;Q1;45;64;129;3290;340;129;2,51;51,41;50,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2002-2026";"History (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +7244;21101036141;"Journal of Management Science and Engineering";journal;"20962320, 25895532";"KeAi Communications Co.";Yes;Yes;0,773;Q1;29;33;99;1759;402;99;3,45;53,30;42,20;0;China;Asiatic Region;"KeAi Communications Co.";"2016-2026";"Engineering (miscellaneous) (Q1); Management Information Systems (Q1); Business and International Management (Q2); Control and Systems Engineering (Q2); Decision Sciences (miscellaneous) (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences; Engineering" +7245;144643;"Learning Organization";journal;"09696474, 17587905";"Emerald Publishing";No;No;0,773;Q1;72;78;151;5585;689;135;5,04;71,60;46,43;0;United Kingdom;Western Europe;"Emerald Publishing";"1994-2026";"Education (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +7246;12059;"Memory";journal;"14640686, 09658211";"Taylor and Francis Ltd.";No;No;0,773;Q1;114;95;324;6265;757;316;1,97;65,95;59,12;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Psychology" +7247;29803;"Research Quarterly for Exercise and Sport";journal;"02701367, 21683824";"Taylor and Francis Ltd.";No;No;0,773;Q1;111;114;325;5330;883;315;2,49;46,75;29,88;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Medicine (miscellaneous) (Q2); Nephrology (Q2); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)";"Health Professions; Medicine" +7248;21100937441;"Vestnik Archeologii, Antropologii i Etnografii";journal;"18117465, 20710437";"Tyumen Scientific Centre of Siberian Branch of the Russian Academy of Sciences";Yes;Yes;0,773;Q1;8;72;222;2541;103;222;0,53;35,29;44,29;0;Russian Federation;Eastern Europe;"Tyumen Scientific Centre of Siberian Branch of the Russian Academy of Sciences";"2019-2025";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +7249;21100469365;"Annals of Occupational and Environmental Medicine";journal;"20524374";"Korean Society of Occupational and Environmental Medicine";Yes;No;0,773;Q2;37;32;124;867;290;121;2,70;27,09;39,02;0;South Korea;Asiatic Region;"Korean Society of Occupational and Environmental Medicine";"2014-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +7250;22433;"International Journal for Vitamin and Nutrition Research";journal;"16642821, 03009831";"IMR Press Limited";Yes;No;0,773;Q2;68;43;147;2864;493;135;2,68;66,60;57,01;0;Hong Kong;Asiatic Region;"IMR Press Limited";"1971-2026";"Endocrinology, Diabetes and Metabolism (Q2); Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +7251;22983;"Journal of Clinical Pharmacology";journal;"15524604, 00912700";"Wiley-Blackwell";No;No;0,773;Q2;137;175;513;6406;1258;465;2,27;36,61;44,19;1;United States;Northern America;"Wiley-Blackwell";"1973-2026";"Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +7252;21101039273;"Journal of the Academy of Consultation-Liaison Psychiatry";journal;"26672979, 26672960";"Elsevier B.V.";No;No;0,773;Q2;119;83;257;2139;446;152;1,62;25,77;44,82;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +7253;6400153146;"Head and Face Medicine";journal;"1746160X";"BioMed Central Ltd";Yes;No;0,772;Q1;57;89;166;3656;556;166;3,30;41,08;37,42;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2005-2026";"Dentistry (miscellaneous) (Q1); Otorhinolaryngology (Q1); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)";"Dentistry; Medicine" +7254;23324;"Journal for Nature Conservation";journal;"16171381";"Elsevier GmbH";No;No;0,772;Q1;71;244;516;17398;1610;514;3,03;71,30;38,69;1;Germany;Western Europe;"Elsevier GmbH";"1991, 1994, 1996, 2002-2026";"Ecology (Q1); Nature and Landscape Conservation (Q1)";"Environmental Science" +7255;21100255399;"Journal of Advanced Prosthodontics";journal;"20057814, 20057806";"Korean Academy of Prosthodontic";Yes;No;0,772;Q1;55;34;101;1233;335;101;2,39;36,26;43,41;0;South Korea;Asiatic Region;"Korean Academy of Prosthodontic";"2009-2025";"Dentistry (miscellaneous) (Q1); Oral Surgery (Q1)";"Dentistry" +7256;21100871622;"Porcine Health Management";journal;"20555660";"BioMed Central Ltd";Yes;No;0,772;Q1;38;66;165;3570;522;163;3,17;54,09;49,46;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Animal Science and Zoology (Q1); Food Animals (Q1); Small Animals (Q1)";"Agricultural and Biological Sciences; Veterinary" +7257;18838;"Preventive Veterinary Medicine";journal;"01675877, 18731716";"Elsevier B.V.";No;No;0,772;Q1;121;221;555;11510;1661;545;2,92;52,08;47,49;10;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Animal Science and Zoology (Q1); Food Animals (Q1)";"Agricultural and Biological Sciences; Veterinary" +7258;19700186336;"Psychology of Violence";journal;"21520828, 2152081X";"American Psychological Association";No;No;0,772;Q1;69;66;172;4294;468;171;2,04;65,06;55,93;0;United States;Northern America;"American Psychological Association";"2010-2025";"Health (social science) (Q1); Applied Psychology (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +7259;12100154405;"IEEE Transactions on Haptics";journal;"23294051, 19391412";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,772;Q2;76;107;266;4889;985;262;3,25;45,69;28,83;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2008-2026";"Computer Science Applications (Q2); Human-Computer Interaction (Q2)";"Computer Science" +7260;21100937890;"Industrial Relations Journal";journal;"14682338, 00198692";"John Wiley & Sons Inc.";No;No;0,772;Q2;16;33;77;2121;217;77;2,91;64,27;28,17;1;United States;Northern America;"John Wiley & Sons Inc.";"1981, 2019-2026";"Industrial Relations (Q2)";"Business, Management and Accounting" +7261;21100268079;"Journal of Cancer Policy";journal;"22135383";"Elsevier Ltd";No;No;0,772;Q2;26;126;176;4022;380;158;2,11;31,92;52,17;1;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Health Policy (Q2); Oncology (Q2)";"Medicine" +7262;20091;"Journal of Macroeconomics";journal;"01640704";"Elsevier B.V.";No;No;0,772;Q2;68;51;156;2683;348;156;2,25;52,61;20,18;3;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +7263;21101368704;"Medicine Advances";journal;"28344391, 28344405";"John Wiley and Sons Inc";Yes;No;0,772;Q2;10;45;72;1561;306;61;4,25;34,69;32,77;0;China;Asiatic Region;"John Wiley and Sons Inc";"2023-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +7264;23948;"Microvascular Research";journal;"10959319, 00262862";"Academic Press Inc.";No;No;0,772;Q2;105;84;336;3767;987;328;3,13;44,85;39,96;0;United States;Northern America;"Academic Press Inc.";"1968-2026";"Biochemistry (Q2); Cardiology and Cardiovascular Medicine (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7265;14635;"Ophthalmologica";journal;"00303755, 14230267";"S. Karger AG";No;No;0,772;Q2;77;46;141;1691;306;134;2,31;36,76;38,27;0;Switzerland;Western Europe;"S. Karger AG";"1899-2026";"Medicine (miscellaneous) (Q2); Ophthalmology (Q2); Sensory Systems (Q2)";"Medicine; Neuroscience" +7266;21996;"Behavioral Disorders";journal;"01987429, 21635307";"SAGE Publications Ltd";No;No;0,771;Q1;53;27;64;1594;170;63;2,48;59,04;61,00;0;United States;Northern America;"SAGE Publications Ltd";"1977, 1989, 1995-2026";"Education (Q1); Clinical Psychology (Q2); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +7267;12016;"Canadian Journal of Fisheries and Aquatic Sciences";journal;"0706652X, 12057533";"National Research Council of Canada";No;No;0,771;Q1;179;203;425;15611;1128;417;2,52;76,90;33,58;3;Canada;Northern America;"National Research Council of Canada";"1980-2026";"Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +7268;21100372152;"Journal of Behavioral and Experimental Economics";journal;"22148051, 22148043";"Elsevier Inc.";No;No;0,771;Q1;86;129;373;7322;781;370;1,88;56,76;33,92;2;United States;Northern America;"Elsevier Inc.";"2014-2026";"Social Sciences (miscellaneous) (Q1); Applied Psychology (Q2); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Psychology; Social Sciences" +7269;21101392299;"Journal of Intelligent Decision Making and Information Science";journal;"30790875";"Nexora Academic Press";No;No;0,771;Q1;6;20;8;729;50;8;6,25;36,45;22,73;0;Romania;Eastern Europe;"Nexora Academic Press";"2024-2026";"Information Systems and Management (Q1); Artificial Intelligence (Q2); Information Systems (Q2); Management Science and Operations Research (Q2)";"Computer Science; Decision Sciences" +7270;21054;"Materials and Manufacturing Processes";journal;"10426914, 15322475";"Taylor and Francis Ltd.";No;No;0,771;Q1;105;173;513;7359;2616;510;5,20;42,54;20,47;0;United States;Northern America;"Taylor and Francis Ltd.";"1989-2026";"Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +7271;21101239953;"Natural Sciences";journal;"26986248";"Wiley-VCH Verlag";Yes;No;0,771;Q1;14;31;78;1407;193;73;3,39;45,39;34,52;0;Germany;Western Europe;"Wiley-VCH Verlag";"2021-2026";"Multidisciplinary (Q1); Physics and Astronomy (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Multidisciplinary; Physics and Astronomy" +7272;23100;"Proceedings of the Japan Academy Series B: Physical and Biological Sciences";journal;"13492896, 03862208";"Japan Academy";Yes;Yes;0,771;Q1;76;37;92;3137;359;92;2,48;84,78;23,53;0;Japan;Asiatic Region;"Japan Academy";"1977-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Multidisciplinary (Q1); Physics and Astronomy (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Medicine; Multidisciplinary; Physics and Astronomy" +7273;18264;"Zhongguo Kuangye Daxue Xuebao/Journal of China University of Mining and Technology";journal;"10001964";"China University of Mining and Technology";No;No;0,771;Q1;55;96;299;3904;945;299;3,43;40,67;26,26;0;China;Asiatic Region;"China University of Mining and Technology";"1998-2025";"Civil and Structural Engineering (Q1); Geology (Q1); Mechanical Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +7274;27197;"Cancer Nursing";journal;"0162220X, 15389804";"Lippincott Williams and Wilkins";No;No;0,771;Q2;93;188;371;8023;1167;347;2,97;42,68;71,89;0;United States;Northern America;"Lippincott Williams and Wilkins";"1978-2026";"Oncology (Q2); Oncology (nursing) (Q2)";"Medicine; Nursing" +7275;21101063731;"Carbon Trends";journal;"26670569";"Elsevier B.V.";Yes;No;0,771;Q2;28;151;289;9729;1522;286;5,91;64,43;31,25;0;United Kingdom;Western Europe;"Elsevier B.V.";"2020-2026";"Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Materials Science (miscellaneous) (Q2)";"Chemistry; Materials Science" +7276;5200153049;"Cognitive Neurodynamics";journal;"18714080, 18714099";"Springer Science and Business Media B.V.";No;No;0,771;Q2;60;182;465;10927;2212;464;4,84;60,04;39,06;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2007-2026";"Cognitive Neuroscience (Q2)";"Neuroscience" +7277;130051;"Expert Review of Proteomics";journal;"14789450, 17448387";"Taylor and Francis Ltd.";No;No;0,771;Q2;77;46;109;4669;321;89;2,51;101,50;42,01;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Biochemistry (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +7278;34037;"Land Economics";journal;"00237639, 15438325";"University of Wisconsin Press";No;No;0,771;Q2;106;27;110;1668;203;110;1,76;61,78;23,94;0;United States;Northern America;"University of Wisconsin Press";"1964, 1973-1974, 1976-2026";"Economics and Econometrics (Q2); Environmental Science (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Environmental Science" +7279;23728;"Telemedicine and e-Health";journal;"15563669, 15305627";"Mary Ann Liebert Inc.";No;No;0,771;Q2;106;180;767;6106;1902;729;2,28;33,92;54,58;2;United States;Northern America;"Mary Ann Liebert Inc.";"2000-2026";"Health Informatics (Q2); Health Information Management (Q2); Medicine (miscellaneous) (Q2)";"Health Professions; Medicine" +7280;21100911066;"Communication and the Public";journal;"20570481";"SAGE Publications Inc.";Yes;Yes;0,770;Q1;25;43;82;2489;211;79;2,40;57,88;36,25;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2016-2026";"Communication (Q1)";"Social Sciences" +7281;21100889860;"Design Science";journal;"20534701";"Cambridge University Press";Yes;No;0,770;Q1;37;53;111;4301;507;111;3,93;81,15;38,43;0;United Kingdom;Western Europe;"Cambridge University Press";"2015-2026";"Engineering (miscellaneous) (Q1); Modeling and Simulation (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Engineering; Mathematics" +7282;21101171868;"Frontiers in Insect Science";journal;"26738600";"Frontiers Media SA";Yes;No;0,770;Q1;17;56;191;3608;653;179;3,44;64,43;45,36;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Insect Science (Q1)";"Agricultural and Biological Sciences" +7283;26843;"International Journal for the Psychology of Religion";journal;"10508619, 15327582";"Routledge";No;No;0,770;Q1;43;30;54;1754;146;52;2,53;58,47;40,30;0;United States;Northern America;"Routledge";"1991-1995, 2007-2026";"Religious Studies (Q1); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Psychology" +7284;12676;"International Journal of Food Sciences and Nutrition";journal;"09637486, 14653478";"Informa Healthcare";No;No;0,770;Q1;102;75;250;4286;897;238;3,39;57,15;58,56;0;United Kingdom;Western Europe;"Informa Healthcare";"1947-1981, 1992-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +7285;21101023153;"Journal of Polymer Science";journal;"26424150, 26424169";"John Wiley & Sons Inc.";No;No;0,770;Q1;173;433;957;23901;3930;931;3,98;55,20;36,49;0;United States;Northern America;"John Wiley & Sons Inc.";"1948, 1962, 2020-2026";"Polymers and Plastics (Q1); Materials Chemistry (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Materials Science" +7286;5700169289;"Journal of Sexual Aggression";journal;"17426545, 13552600";"Routledge";No;No;0,770;Q1;48;64;84;4168;227;83;2,96;65,13;62,33;5;United Kingdom;Western Europe;"Routledge";"1994, 1996-1997, 1999-2026";"Law (Q1); Applied Psychology (Q2); Behavioral Neuroscience (Q2); Psychiatry and Mental Health (Q2); Psychology (miscellaneous) (Q2)";"Medicine; Neuroscience; Psychology; Social Sciences" +7287;12489;"Vacuum";journal;"0042207X, 18792715";"Elsevier Ltd";No;No;0,770;Q1;112;905;2717;40538;12028;2711;4,53;44,79;31,01;0;United Kingdom;Western Europe;"Elsevier Ltd";"1951-1956, 1959-2026";"Condensed Matter Physics (Q1); Instrumentation (Q1); Surfaces, Coatings and Films (Q2)";"Materials Science; Physics and Astronomy" +7288;21100854885;"Current Tropical Medicine Reports";journal;"21963045";"Springer Science and Business Media Deutschland GmbH";No;No;0,770;Q2;33;23;80;1680;251;80;2,69;73,04;51,02;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Infectious Diseases (Q2); Immunology and Allergy (Q3)";"Medicine" +7289;26030;"Endocrine Journal";journal;"09188959, 13484540";"Japan Endocrine Society";Yes;No;0,770;Q2;91;120;404;5436;949;373;2,01;45,30;31,13;0;Japan;Asiatic Region;"Japan Endocrine Society";"1954-1958, 1961-1962, 1993-2026";"Endocrinology, Diabetes and Metabolism (Q2); Endocrinology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7290;22736;"Journal of Asian Economics";journal;"10490078";"Elsevier B.V.";No;No;0,770;Q2;67;188;304;10491;1232;302;3,90;55,80;41,48;1;Netherlands;Western Europe;"Elsevier B.V.";"1990-2026";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +7291;21101123950;"Journal of Electrochemistry";journal;"10063471, 2993074X";"Chinese Chemical Society";No;No;0,770;Q2;22;52;188;3477;578;176;3,87;66,87;39,50;0;China;Asiatic Region;"Chinese Chemical Society";"2012-2026";"Electrochemistry (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Surfaces, Coatings and Films (Q2)";"Chemistry; Energy; Materials Science" +7292;21178;"Journal of Materials Science: Materials in Medicine";journal;"15734838, 09574530";"Springer";Yes;No;0,770;Q2;154;118;213;7134;1133;213;4,77;60,46;41,81;0;United States;Northern America;"Springer";"1990-2026";"Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2); Biophysics (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +7293;29443;"Advances in the Study of Behavior";book series;"00653454";"Academic Press Inc.";No;No;0,769;Q1;76;5;13;831;58;3;2,63;166,20;0,00;0;United States;Northern America;"Academic Press Inc.";"1965, 1969, 1971-1972, 1974, 1976, 1978-1980, 1982-1988, 1990-2025";"Animal Science and Zoology (Q1); Behavioral Neuroscience (Q2); Neuropsychology and Physiological Psychology (Q2)";"Agricultural and Biological Sciences; Neuroscience; Psychology" +7294;19200156958;"Applied and Computational Mathematics";journal;"16833511";"Institute of Applied Mathematics of Baku State University";No;No;0,769;Q1;29;32;88;1301;254;85;3,38;40,66;27,10;0;Azerbaijan;Eastern Europe;"Institute of Applied Mathematics of Baku State University";"2008-2025";"Computational Mathematics (Q1); Applied Mathematics (Q2)";"Mathematics" +7295;15600154712;"Chinese Physics C";journal;"16741137";"IOP Publishing Ltd.";No;No;0,769;Q1;61;356;795;22146;2082;795;2,45;62,21;26,98;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2008-2025";"Instrumentation (Q1); Astronomy and Astrophysics (Q2); Nuclear and High Energy Physics (Q2)";"Physics and Astronomy" +7296;14236;"Culture, Health and Sexuality";journal;"14645351, 13691058";"Routledge";No;No;0,769;Q1;83;164;335;6862;936;333;2,45;41,84;68,30;2;United Kingdom;Western Europe;"Routledge";"1999-2026";"Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +7297;21101212792;"EJC Paediatric Oncology";journal;"2772610X";"Elsevier B.V.";Yes;No;0,769;Q1;8;59;118;3234;264;116;2,24;54,81;55,15;1;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Dentistry (miscellaneous) (Q1); Pediatrics (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Hematology (Q2); Oncology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Biochemistry, Genetics and Molecular Biology; Dentistry; Medicine; Nursing" +7298;21101142419;"International Journal of Applied Positive Psychology";journal;"23645040, 23645059";"Springer Nature";No;No;0,769;Q1;20;72;140;4830;485;138;3,54;67,08;52,91;0;Netherlands;Western Europe;"Springer Nature";"2016, 2018-2026";"Social Sciences (miscellaneous) (Q1); Applied Psychology (Q2)";"Psychology; Social Sciences" +7299;16520;"Journal of Advanced Concrete Technology";journal;"13468014, 13473913";"Japan Concrete Institute";No;No;0,769;Q1;72;44;176;2407;404;175;2,25;54,70;25,15;0;Japan;Asiatic Region;"Japan Concrete Institute";"2003-2026";"Building and Construction (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +7300;27525;"International Urogynecology Journal";journal;"09373462, 14333023";"Springer Nature";No;No;0,769;Q2;114;494;1096;11859;2442;972;2,02;24,01;58,17;0;Switzerland;Western Europe;"Springer Nature";"1990-2026";"Obstetrics and Gynecology (Q2); Urology (Q2)";"Medicine" +7301;21100374809;"Journal of Science and Technology Policy Management";journal;"20534639, 20534620";"Emerald Group Publishing Ltd.";No;No;0,769;Q2;41;152;240;11735;1530;224;6,32;77,20;31,53;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2014-2026";"Industrial Relations (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +7302;17911;"Strahlentherapie und Onkologie";journal;"1439099X, 01797158";"Springer Science and Business Media Deutschland GmbH";No;No;0,769;Q2;83;172;423;5859;868;362;2,11;34,06;37,23;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1986-2026";"Oncology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +7303;13594;"Acta Otorhinolaryngologica Italica";journal;"0392100X, 1827675X";"Pacini Editore Srl";Yes;No;0,768;Q1;62;71;218;2692;519;195;2,15;37,92;43,71;0;Italy;Western Europe;"Pacini Editore Srl";"1981-2025";"Otorhinolaryngology (Q1)";"Medicine" +7304;21101162743;"Advances in Sample Preparation";journal;"27725820";"Elsevier B.V.";Yes;No;0,768;Q1;20;81;128;5824;926;123;7,12;71,90;53,03;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Analytical Chemistry (Q1); Food Science (Q1); Organic Chemistry (Q1); Chemistry (miscellaneous) (Q2); Environmental Chemistry (Q2)";"Agricultural and Biological Sciences; Chemistry; Environmental Science" +7305;14560;"Child and Adolescent Psychiatric Clinics of North America";journal;"10564993, 15580490";"W.B. Saunders";No;No;0,768;Q1;93;61;184;2535;407;158;1,75;41,56;58,57;0;United States;Northern America;"W.B. Saunders";"1993-2026";"Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q2)";"Medicine" +7306;21101347035;"Digital Transportation and Safety";journal;"28377842";"Maximum Academic Press";Yes;No;0,768;Q1;9;32;50;1367;202;49;4,12;42,72;33,87;0;United States;Northern America;"Maximum Academic Press";"2022-2025";"Automotive Engineering (Q1); Mechanical Engineering (Q1); Computer Science Applications (Q2)";"Computer Science; Engineering" +7307;21100941001;"Frontiers in Sustainable Food Systems";journal;"2571581X";"Frontiers Media SA";Yes;No;0,768;Q1;87;1056;2577;66685;11791;2427;4,33;63,15;40,59;16;Switzerland;Western Europe;"Frontiers Media SA";"2017-2026";"Agronomy and Crop Science (Q1); Ecology (Q1); Food Science (Q1); Horticulture (Q1); Global and Planetary Change (Q2); Management, Monitoring, Policy and Law (Q2)";"Agricultural and Biological Sciences; Environmental Science" +7308;21100208039;"International Journal of Urban Sustainable Development";journal;"19463138, 19463146";"Taylor and Francis Ltd.";Yes;No;0,768;Q1;33;21;77;1743;273;73;3,50;83,00;35,21;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Development (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +7309;23456;"Journal of Comparative Physiology A: Neuroethology, Sensory, Neural, and Behavioral Physiology";journal;"14321351, 03407594";"Springer Verlag";No;No;0,768;Q1;109;75;183;5970;472;167;2,57;79,60;42,81;0;Germany;Western Europe;"Springer Verlag";"1974-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Behavioral Neuroscience (Q2); Physiology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Neuroscience" +7310;21100206602;"Learning, Culture and Social Interaction";journal;"2210657X, 22106561";"Elsevier B.V.";No;No;0,768;Q1;42;45;157;3015;429;151;2,67;67,00;58,56;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Education (Q1)";"Social Sciences" +7311;22550;"Web Ecology";journal;"21933081, 13991183";"Copernicus Publications";Yes;Yes;0,768;Q1;26;17;28;1136;70;27;2,21;66,82;36,07;0;Germany;Western Europe;"Copernicus Publications";"2000-2003, 2005-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +7312;21100828138;"Advances in Respiratory Medicine";journal;"25436031, 24514934";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,768;Q2;30;57;153;2797;489;140;4,53;49,07;41,28;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +7313;11300153709;"Archives of Cardiovascular Diseases";journal;"18752136, 18752128";"Elsevier Masson s.r.l.";No;No;0,768;Q2;66;130;273;3309;593;226;2,23;25,45;29,28;0;France;Western Europe;"Elsevier Masson s.r.l.";"2008-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +7314;13927;"Journal of Housing Economics";journal;"10960791, 10511377";"Academic Press Inc.";No;No;0,768;Q2;70;44;104;2090;301;103;3,49;47,50;24,58;5;United States;Northern America;"Academic Press Inc.";"1991-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +7315;21101137847;"Journal of Market Access and Health Policy";journal;"20016689";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,768;Q2;34;61;77;2373;254;72;3,42;38,90;46,90;2;United Kingdom;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2025";"Health Informatics (Q2); Health Policy (Q2)";"Medicine" +7316;17229;"Journal of Nuclear Cardiology";journal;"15326551, 10713581";"American Society of Nuclear Cardiology";No;No;0,768;Q2;97;161;1057;3056;1375;611;1,37;18,98;34,88;0;United States;Northern America;"American Society of Nuclear Cardiology";"1994-2026";"Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +7317;29280;"Journal of Occupational Health";journal;"13489585, 13419145";"Oxford University Press Japan";Yes;No;0,768;Q2;77;69;204;2151;560;198;2,73;31,17;36,77;0;Japan;Asiatic Region;"Oxford University Press Japan";"1996-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +7318;4800152302;"LEUKOS - Journal of Illuminating Engineering Society of North America";journal;"15502724, 15502716";"Taylor and Francis Ltd.";No;No;0,768;Q2;40;47;78;2453;313;72;2,96;52,19;36,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Atomic and Molecular Physics, and Optics (Q2)";"Physics and Astronomy" +7319;14171;"Theoretical and Applied Climatology";journal;"14344483, 0177798X";"Springer-Verlag Wien";No;No;0,768;Q2;132;679;1378;42457;4809;1376;3,45;62,53;29,59;4;Austria;Western Europe;"Springer-Verlag Wien";"1986-2026";"Atmospheric Science (Q2)";"Earth and Planetary Sciences" +7320;21100781511;"Agriculture (Switzerland)";journal;"20770472";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,767;Q1;108;2607;6795;154783;35701;6720;5,09;59,37;39,52;12;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Agronomy and Crop Science (Q1); Food Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +7321;5800169155;"Ethnopolitics";journal;"17449057, 17449065";"Routledge";No;No;0,767;Q1;32;56;103;3704;226;92;2,25;66,14;34,83;2;United Kingdom;Western Europe;"Routledge";"2010-2026";"Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q1)";"Arts and Humanities; Social Sciences" +7322;4000148503;"International Journal of Environmental Science and Technology";journal;"17351472, 17352630";"";No;No;0,767;Q1;118;1071;2508;70009;11513;2505;4,91;65,37;37,51;2;Germany;Western Europe;"";"2004-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Environmental Chemistry (Q2); Environmental Engineering (Q2)";"Agricultural and Biological Sciences; Environmental Science" +7323;5800169295;"International Spectator";journal;"17519721, 03932729";"Routledge";No;No;0,767;Q1;37;38;105;2893;354;103;3,35;76,13;37,70;5;United Kingdom;Western Europe;"Routledge";"1983-2026";"Political Science and International Relations (Q1)";"Social Sciences" +7324;19700175822;"Journal of Multidisciplinary Healthcare";journal;"11782390";"Dove Medical Press Ltd";Yes;No;0,767;Q1;65;619;1169;26959;3557;1067;2,96;43,55;50,22;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2008-2026";"Nursing (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +7325;21100200421;"Journal of Soil Science and Plant Nutrition";journal;"07189508, 07189516";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,767;Q1;78;763;1447;53742;6213;1446;3,94;70,44;36,69;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2010-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1); Soil Science (Q2)";"Agricultural and Biological Sciences" +7326;21100860440;"Journal of Specialised Translation";journal;"1740357X";"University of Roehampton";Yes;Yes;0,767;Q1;44;24;86;1055;190;78;2,32;43,96;67,74;0;United Kingdom;Western Europe;"University of Roehampton";"2004-2025";"Linguistics and Language (Q1)";"Social Sciences" +7327;23804;"Journal of the American Dental Association";journal;"00028177, 19434723";"American Dental Association";No;No;0,767;Q1;149;209;539;5218;1120;312;2,12;24,97;47,36;0;United States;Northern America;"American Dental Association";"1942, 1945-2026";"Dentistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Dentistry; Medicine" +7328;26675;"Materials Science in Semiconductor Processing";journal;"13698001";"Elsevier Ltd";No;No;0,767;Q1;105;1024;2225;60220;11548;2215;5,41;58,81;30,89;0;United Kingdom;Western Europe;"Elsevier Ltd";"1998-2026";"Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science; Physics and Astronomy" +7329;4000151806;"Archives of Medical Science";journal;"17341922, 18969151";"Termedia Publishing House Ltd.";Yes;No;0,767;Q2;70;286;660;10802;1829;585;2,81;37,77;44,97;1;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2006-2025";"Medicine (miscellaneous) (Q2)";"Medicine" +7330;12975;"Economic Systems";journal;"09393625";"Elsevier B.V.";No;No;0,767;Q2;64;86;191;5364;767;189;3,66;62,37;32,98;3;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +7331;21100228016;"Ecopsychology";journal;"19429347";"Mary Ann Liebert Inc.";No;No;0,767;Q2;39;43;92;2747;292;91;2,83;63,88;64,46;0;United States;Northern America;"Mary Ann Liebert Inc.";"2009-2026";"Applied Psychology (Q2); Social Psychology (Q2)";"Psychology" +7332;11900154332;"Expert Review of Respiratory Medicine";journal;"17476356, 17476348";"Taylor and Francis Ltd.";No;No;0,767;Q2;67;140;329;10926;975;301;3,15;78,04;44,92;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Public Health, Environmental and Occupational Health (Q2); Pulmonary and Respiratory Medicine (Q2); Immunology and Allergy (Q3)";"Medicine" +7333;19200157038;"International Journal of Sports Marketing and Sponsorship";journal;"14646668";"Emerald Group Publishing Ltd.";No;No;0,767;Q2;42;97;173;6820;788;168;4,13;70,31;33,21;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001, 2007-2026";"Business and International Management (Q2); Finance (Q2); Marketing (Q2); Sports Science (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Health Professions" +7334;20307;"Engineering Analysis with Boundary Elements";journal;"09557997";"Elsevier Ltd";No;No;0,766;Q1;90;395;1298;20027;4969;1289;3,76;50,70;23,79;0;United Kingdom;Western Europe;"Elsevier Ltd";"1989-2026";"Analysis (Q1); Computational Mathematics (Q1); Engineering (miscellaneous) (Q1); Applied Mathematics (Q2)";"Engineering; Mathematics" +7335;21100788478;"Frontiers of Biogeography";journal;"19486596";"Pensoft Publishers";Yes;No;0,766;Q1;23;5;76;526;196;75;3,09;105,20;26,92;0;United States;Northern America;"Pensoft Publishers";"2016-2025";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Global and Planetary Change (Q3)";"Agricultural and Biological Sciences; Environmental Science" +7336;26476;"Geological Magazine";journal;"14695081, 00167568";"Cambridge University Press";No;No;0,766;Q1;101;54;275;4911;628;272;1,90;90,94;27,65;0;United Kingdom;Western Europe;"Cambridge University Press";"1864-2026";"Geology (Q1)";"Earth and Planetary Sciences" +7337;4400151737;"Limnology and Oceanography: Methods";journal;"15415856";"John Wiley and Sons Inc";No;No;0,766;Q1;97;67;186;3467;477;186;2,42;51,75;37,78;0;United States;Northern America;"John Wiley and Sons Inc";"2003-2026";"Ocean Engineering (Q1)";"Engineering" +7338;25308;"Reviews in Inorganic Chemistry";journal;"01934929, 21910227";"Walter de Gruyter GmbH";No;No;0,766;Q1;35;57;83;8496;447;83;4,85;149,05;30,74;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1985-1990, 1992-2026";"Inorganic Chemistry (Q1)";"Chemistry" +7339;21629;"University of Chicago Law Review";journal;"00419494";"University of Chicago Law School";No;No;0,766;Q1;71;40;68;11863;93;68;1,42;296,58;27,27;0;United States;Northern America;"University of Chicago Law School";"1977-1978, 1986, 1991-1992, 1995-2026";"Law (Q1)";"Social Sciences" +7340;21100895625;"Yearbook of European Law";journal;"20450044, 02633264";"Oxford University Press";No;No;0,766;Q1;14;0;38;0;88;38;2,15;0,00;0,00;0;United Kingdom;Western Europe;"Oxford University Press";"2018-2024";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +7341;25180;"Electrochemistry Communications";journal;"13882481";"Elsevier Inc.";Yes;No;0,766;Q2;224;157;428;7839;1829;426;4,13;49,93;33,71;0;United States;Northern America;"Elsevier Inc.";"1999-2026";"Electrochemistry (Q2)";"Chemistry" +7342;21101048366;"Energy Informatics";journal;"25208942";"SpringerOpen";Yes;No;0,766;Q2;33;144;261;5628;1398;254;5,51;39,08;25,21;1;United Kingdom;Western Europe;"SpringerOpen";"2018-2026";"Computer Networks and Communications (Q2); Energy Engineering and Power Technology (Q2); Information Systems (Q2)";"Computer Science; Energy" +7343;21100286465;"International Journal of Entrepreneurship and Innovation";journal;"20436882, 14657503";"SAGE Publications Inc.";No;No;0,766;Q2;39;67;117;4726;524;109;4,04;70,54;43,21;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2013-2026";"Business and International Management (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting" +7344;21100787793;"Orthopedic Reviews";journal;"20358164, 20358237";"Open Medical Publishing";Yes;No;0,766;Q2;34;2;177;54;545;176;2,53;27,00;5,56;0;United States;Northern America;"Open Medical Publishing";"2012-2025";"Orthopedics and Sports Medicine (Q2)";"Medicine" +7345;24002;"Physiological Research";journal;"08628408, 18029973";"Czech Academy of Sciences";Yes;No;0,766;Q2;89;114;377;4125;1026;374;2,79;36,18;44,30;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"1991-2025";"Medicine (miscellaneous) (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7346;21100905629;"Ultrasound Journal";journal;"25248987";"SpringerOpen";Yes;No;0,766;Q2;45;65;141;2347;522;136;3,59;36,11;38,20;0;United Kingdom;Western Europe;"SpringerOpen";"2019-2025";"Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Health Professions; Medicine" +7347;24482;"Children and Youth Services Review";journal;"01907409";"Elsevier Ltd";No;No;0,765;Q1;131;519;1409;33703;3886;1387;2,50;64,94;66,99;7;United Kingdom;Western Europe;"Elsevier Ltd";"1979-2026";"Education (Q1); Sociology and Political Science (Q1); Developmental and Educational Psychology (Q2); Social Work (Q2)";"Psychology; Social Sciences" +7348;12100156705;"Clinical Simulation in Nursing";journal;"18761399";"Elsevier Inc.";No;No;0,765;Q1;72;196;383;5911;1146;357;2,59;30,16;73,55;0;United States;Northern America;"Elsevier Inc.";"2006-2026";"Education (Q1); Modeling and Simulation (Q1); Nursing (miscellaneous) (Q1)";"Mathematics; Nursing; Social Sciences" +7349;23847;"Journal of Computational and Applied Mathematics";journal;"03770427";"Elsevier B.V.";No;No;0,765;Q1;155;478;1645;18016;4547;1636;2,81;37,69;30,96;0;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Computational Mathematics (Q1); Applied Mathematics (Q2)";"Mathematics" +7350;16279;"Journal of Engineering Mechanics - ASCE";journal;"07339399";"American Society of Civil Engineers (ASCE)";No;No;0,765;Q1;155;112;402;5285;1329;398;3,22;47,19;23,93;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1981-2026";"Mechanical Engineering (Q1); Mechanics of Materials (Q1)";"Engineering" +7351;29635;"Journal of Plankton Research";journal;"14643774, 01427873";"Oxford University Press";No;No;0,765;Q1;115;95;200;5822;447;187;2,04;61,28;46,45;2;United Kingdom;Western Europe;"Oxford University Press";"1979-2026";"Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences; Environmental Science" +7352;21192;"Drug Development Research";journal;"02724391, 10982299";"John Wiley & Sons Inc.";No;No;0,765;Q2;76;165;424;11397;1911;413;4,42;69,07;44,51;0;United States;Northern America;"John Wiley & Sons Inc.";"1981-2026";"Drug Discovery (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +7353;21352;"Expert Opinion on Pharmacotherapy";journal;"17447666, 14656566";"Taylor and Francis Ltd.";No;No;0,765;Q2;104;186;617;13990;1703;533;3,14;75,22;36,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1999-2026";"Medicine (miscellaneous) (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +7354;16078;"Journal of Biotechnology";journal;"01681656, 18734863";"Elsevier B.V.";No;No;0,765;Q2;188;196;492;11133;2331;490;4,58;56,80;39,78;0;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology; Medicine" +7355;21101095580;"Journal of Membrane Science Letters";journal;"27724212";"Elsevier B.V.";Yes;No;0,765;Q2;19;23;75;794;405;75;4,82;34,52;24,21;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Biochemistry (Q2); Filtration and Separation (Q2); Materials Science (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Materials Science" +7356;23102;"Journal of Pharmacy and Pharmacology";journal;"20427158, 00223573";"Oxford University Press";No;No;0,765;Q2;148;134;406;8432;1676;404;4,12;62,93;45,41;0;United Kingdom;Western Europe;"Oxford University Press";"1949-2026";"Pharmaceutical Science (Q2); Pharmacology (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +7357;19273;"Modern Rheumatology";journal;"14397595, 14397609";"Oxford University Press";No;No;0,765;Q2;74;139;475;4552;1123;465;2,41;32,75;24,55;1;United Kingdom;Western Europe;"Oxford University Press";"2000-2026";"Medicine (miscellaneous) (Q2); Rheumatology (Q2)";"Medicine" +7358;21100197945;"Biocatalysis and Agricultural Biotechnology";journal;"18788181";"Elsevier B.V.";No;No;0,764;Q1;96;418;1203;28876;6685;1201;5,52;69,08;44,20;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Agronomy and Crop Science (Q1); Food Science (Q1); Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biotechnology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +7359;24888;"Economics and Philosophy";journal;"02662671, 14740028";"Cambridge University Press";No;No;0,764;Q1;49;52;83;2198;159;80;1,87;42,27;11,48;0;United Kingdom;Western Europe;"Cambridge University Press";"1985-2026";"Philosophy (Q1); Economics and Econometrics (Q2)";"Arts and Humanities; Economics, Econometrics and Finance" +7360;21539;"Harvard Civil Rights-Civil Liberties Law Review";journal;"00178039";"Harvard University Law School";No;No;0,764;Q1;33;21;55;5845;67;55;1,42;278,33;55,00;0;United States;Northern America;"Harvard University Law School";"1973, 1975, 1981-1982, 1984, 1988, 1991-1992, 1996-2011, 2013-2025";"Law (Q1)";"Social Sciences" +7361;22379;"International Journal for Parasitology";journal;"18790135, 00207519";"Elsevier Ltd";No;No;0,764;Q1;167;96;206;6364;705;203;3,45;66,29;43,37;0;United Kingdom;Western Europe;"Elsevier Ltd";"1971-2026";"Parasitology (Q1); Infectious Diseases (Q2)";"Immunology and Microbiology; Medicine" +7362;4700152418;"Journal of Plant Interactions";journal;"17429153, 17429145";"Taylor and Francis Ltd.";Yes;No;0,764;Q1;77;42;140;3754;620;140;4,05;89,38;47,23;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005, 2007-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +7363;21100812209;"Journal of Radars";journal;"2097339X, 2095283X";"Editorial Office of Journal of Radars";Yes;No;0,764;Q1;37;90;248;4336;832;248;3,18;48,18;27,36;0;China;Asiatic Region;"Editorial Office of Journal of Radars";"2016-2026";"Instrumentation (Q1); Electrical and Electronic Engineering (Q2); Signal Processing (Q2)";"Computer Science; Engineering; Physics and Astronomy" +7364;21101172101;"SPE Polymers";journal;"26903857";"John Wiley and Sons Inc";Yes;No;0,764;Q1;19;42;80;3326;496;80;6,83;79,19;27,95;0;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Engineering (miscellaneous) (Q1); Polymers and Plastics (Q1); Biomaterials (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +7365;23333;"Archives of Physiology and Biochemistry";journal;"13813455, 17444160";"Taylor and Francis Ltd.";No;No;0,764;Q2;64;116;418;6423;1456;414;3,72;55,37;51,63;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1921-1927, 1929-1931, 1933-1943, 1946-2004, 2006-2026";"Medicine (miscellaneous) (Q2); Physiology (Q2); Physiology (medical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7366;21101210728;"China Offshore Oil and Gas";journal;"16731506";"Editorial Board of China Offshore Oil and Gas";No;No;0,764;Q2;23;137;409;4320;925;409;2,31;31,53;31,52;0;China;Asiatic Region;"Editorial Board of China Offshore Oil and Gas";"2020-2026";"Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Earth and Planetary Sciences; Energy" +7367;26411;"European Addiction Research";journal;"10226877, 14219891";"S. Karger AG";No;No;0,764;Q2;67;41;127;1802;289;117;1,67;43,95;57,08;1;Switzerland;Western Europe;"S. Karger AG";"1995-2026";"Health (social science) (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Social Sciences" +7368;29814;"International Journal of Health Planning and Management";journal;"07496753, 10991751";"John Wiley and Sons Ltd";No;No;0,764;Q2;58;118;507;4799;1281;461;2,59;40,67;54,04;6;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1985-2026";"Health Policy (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +7369;23462;"Journal of Mammary Gland Biology and Neoplasia";journal;"10833021, 15737039";"Springer";No;No;0,764;Q2;117;16;60;1129;199;58;3,18;70,56;53,70;0;United States;Northern America;"Springer";"1996-2026";"Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7370;21101046693;"Journal of Power Sources Advances";journal;"26662485";"Elsevier B.V.";Yes;No;0,764;Q2;24;30;53;1389;230;53;3,95;46,30;24,65;1;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Electrochemistry (Q2); Energy Engineering and Power Technology (Q2); Materials Chemistry (Q2)";"Chemistry; Energy; Materials Science" +7371;21100248810;"Spine Deformity";journal;"22121358, 2212134X";"Springer Science and Business Media Deutschland GmbH";No;No;0,764;Q2;45;231;534;6598;1134;512;1,83;28,56;25,02;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2012-2026";"Orthopedics and Sports Medicine (Q2)";"Medicine" +7372;20674;"Vascular Medicine";journal;"1358863X, 14770377";"SAGE Publications Ltd";No;No;0,764;Q2;89;109;309;2875;567;208;1,74;26,38;33,89;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +7373;21101257052;"Neuroscience Applied";journal;"27724085";"Elsevier B.V.";Yes;No;0,764;Q3;10;28;106;1357;253;92;2,45;48,46;48,06;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Neuroscience (miscellaneous) (Q3)";"Neuroscience" +7374;21100823384;"Annals of Agricultural Sciences";journal;"05701783, 20908377";"Faculty of Agriculture, Ain-Shams University";Yes;No;0,763;Q1;60;11;52;616;244;51;4,04;56,00;39,47;0;Egypt;Africa/Middle East;"Faculty of Agriculture, Ain-Shams University";"2011-2025";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Food Science (Q1); Horticulture (Q1); Plant Science (Q1); Soil Science (Q2)";"Agricultural and Biological Sciences" +7375;21043;"Clinics in Plastic Surgery";journal;"00941298, 15580504";"W.B. Saunders";No;No;0,763;Q1;84;71;184;2329;383;155;1,95;32,80;42,66;0;United States;Northern America;"W.B. Saunders";"1974-2026";"Surgery (Q1)";"Medicine" +7376;6300153126;"Cultural Sociology";journal;"17499763, 17499755";"SAGE Publications Ltd";No;No;0,763;Q1;51;49;84;3450;232;83;2,26;70,41;43,59;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2026";"Cultural Studies (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +7377;26830;"Deep-Sea Research Part I: Oceanographic Research Papers";journal;"09670637";"Elsevier Ltd";No;No;0,763;Q1;149;116;422;9860;1107;420;2,40;85,00;37,21;0;United Kingdom;Western Europe;"Elsevier Ltd";"1989, 1993-2026";"Aquatic Science (Q1); Oceanography (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +7378;19400156819;"Educacion XX1";journal;"1139613X, 21745374";"Universidad Nacional de Educacion a Distancia (UNED)";Yes;Yes;0,763;Q1;38;30;94;1637;383;90;4,53;54,57;56,38;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2008-2026";"Education (Q1)";"Social Sciences" +7379;21101142757;"ES Food and Agroforestry";journal;"26877309, 26877295";"Engineered Science Publisher";No;No;0,763;Q1;25;58;74;3537;583;74;8,02;60,98;51,38;0;United States;Northern America;"Engineered Science Publisher";"2020-2026";"Agronomy and Crop Science (Q1); Food Science (Q1); Forestry (Q1); Soil Science (Q2)";"Agricultural and Biological Sciences" +7380;24664;"Foreign Affairs";journal;"00157120";"Council on Foreign Relations, Inc.";No;No;0,763;Q1;117;11;269;0;728;266;2,86;0,00;31,25;0;United States;Northern America;"Council on Foreign Relations, Inc.";"1965, 1974, 1977-1981, 1984-1985, 1989, 1991-1992, 1996-2025";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7381;21100199777;"IEEE Transactions on Components, Packaging and Manufacturing Technology";journal;"21563950, 21563985";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,763;Q1;122;332;693;11016;2802;690;3,69;33,18;23,93;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2011-2026";"Industrial and Manufacturing Engineering (Q1); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science" +7382;26004;"IEEE Circuits and Systems Magazine";journal;"1531636X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,763;Q2;69;26;112;1351;350;89;2,96;51,96;23,68;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1979-1984, 2001-2025";"Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +7383;21101028582;"JMIR Formative Research";journal;"2561326X";"JMIR Publications Inc.";Yes;No;0,763;Q2;41;907;2340;40019;6868;2336;2,58;44,12;53,74;5;Canada;Northern America;"JMIR Publications Inc.";"2017-2026";"Health Informatics (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +7384;22023;"Integrative and Comparative Biology";journal;"15577023, 15407063";"Oxford University Press";No;No;0,762;Q1;152;159;419;11920;1072;413;2,14;74,97;51,97;0;United Kingdom;Western Europe;"Oxford University Press";"1961-2026";"Animal Science and Zoology (Q1); Plant Science (Q1); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Medicine" +7385;14809;"Journal of Ecotourism";journal;"14724049, 17477638";"Taylor and Francis Ltd.";No;No;0,762;Q1;56;69;91;4590;504;79;5,68;66,52;34,78;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +7386;13913;"Journal of Housing and the Built Environment";journal;"15737772, 15664910";"Springer Netherlands";No;No;0,762;Q1;63;110;290;8138;1081;289;3,87;73,98;44,12;1;Netherlands;Western Europe;"Springer Netherlands";"1997-2026";"Geography, Planning and Development (Q1); Urban Studies (Q1)";"Social Sciences" +7387;14433;"Polymer Composites";journal;"02728397, 15480569";"John Wiley & Sons Inc.";No;No;0,762;Q1;115;1576;2520;81195;14012;2517;5,53;51,52;30,74;0;United States;Northern America;"John Wiley & Sons Inc.";"1980-2026";"Ceramics and Composites (Q1); Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)";"Chemistry; Materials Science" +7388;16062;"Quantitative Finance";journal;"14697696, 14697688";"Taylor and Francis Ltd.";No;No;0,762;Q1;93;110;316;4737;668;312;2,17;43,06;23,31;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q2)";"Economics, Econometrics and Finance" +7389;19700167024;"Science China Technological Sciences";journal;"16747321, 18691900";"Science China Press";No;No;0,762;Q1;96;319;860;16135;4343;810;4,99;50,58;32,75;0;China;Asiatic Region;"Science China Press";"2010-2026";"Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +7390;100147335;"Abacus";journal;"00013072, 14676281";"Wiley-Blackwell Publishing Ltd";No;No;0,762;Q2;60;61;90;4760;294;87;3,20;78,03;38,04;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1965-2026";"Accounting (Q2)";"Business, Management and Accounting" +7391;22746;"Catalysis Communications";journal;"15667367";"Elsevier B.V.";Yes;No;0,762;Q2;146;0;535;0;2602;532;5,63;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2000-2024";"Catalysis (Q2); Chemistry (miscellaneous) (Q2); Process Chemistry and Technology (Q2)";"Chemical Engineering; Chemistry" +7392;12484;"Disease-a-Month";journal;"00115029, 15578194";"Elsevier Inc.";No;No;0,762;Q2;54;33;156;2945;432;120;4,32;89,24;34,25;1;United States;Northern America;"Elsevier Inc.";"1954-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +7393;15451;"Journal of Counseling and Development";journal;"15566676, 07489633";"Wiley-Blackwell";No;No;0,762;Q2;99;40;119;2474;372;118;2,68;61,85;59,54;0;United States;Northern America;"Wiley-Blackwell";"1984-2026";"Applied Psychology (Q2)";"Psychology" +7394;21100467354;"Pulmonary Circulation";journal;"20458932, 20458940";"John Wiley and Sons Inc";Yes;No;0,762;Q2;63;197;461;5953;1130;400;2,22;30,22;41,90;0;United States;Northern America;"John Wiley and Sons Inc";"2011-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +7395;22205;"Saudi Pharmaceutical Journal";journal;"13190164";"Springer International Publishing";Yes;No;0,762;Q2;91;53;720;3397;3419;713;4,96;64,09;42,61;0;Switzerland;Western Europe;"Springer International Publishing";"1996-2026";"Pharmaceutical Science (Q2); Pharmacology (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +7396;21101313383;"AI in Civil Engineering";journal;"20970943, 27305392";"Springer Nature";Yes;No;0,761;Q1;11;30;42;1561;235;41;5,58;52,03;12,79;0;Switzerland;Western Europe;"Springer Nature";"2022-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Artificial Intelligence (Q2)";"Computer Science; Engineering" +7397;21101075727;"Applied Computing and Geosciences";journal;"25901974";"";Yes;No;0,761;Q1;22;91;103;4789;481;103;4,54;52,63;23,97;0;United States;Northern America;"";"2019-2026";"Computer Science (miscellaneous) (Q1); Geology (Q1)";"Computer Science; Earth and Planetary Sciences" +7398;12663;"Early Human Development";journal;"18726232, 03783782";"Elsevier Ireland Ltd";No;No;0,761;Q1;119;163;365;6760;902;357;2,14;41,47;60,40;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1977-2026";"Pediatrics, Perinatology and Child Health (Q1); Obstetrics and Gynecology (Q2)";"Medicine" +7399;14500154730;"Earth Science Informatics";journal;"18650473, 18650481";"Springer Verlag";No;No;0,761;Q1;50;553;771;33065;3649;770;5,03;59,79;25,30;0;Germany;Western Europe;"Springer Verlag";"2009-2026";"Earth and Planetary Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences" +7400;18189;"Finite Elements in Analysis and Design";journal;"0168874X";"Elsevier B.V.";No;No;0,761;Q1;99;114;274;5891;934;274;3,45;51,68;15,06;0;Netherlands;Western Europe;"Elsevier B.V.";"1985-2026";"Analysis (Q1); Computer Graphics and Computer-Aided Design (Q1); Engineering (miscellaneous) (Q1); Applied Mathematics (Q2)";"Computer Science; Engineering; Mathematics" +7401;21100463889;"Geodesy and Geodynamics";journal;"16749847, 25890573";"KeAi Communications Co.";Yes;Yes;0,761;Q1;32;81;179;3799;664;178;2,98;46,90;27,33;0;China;Asiatic Region;"KeAi Communications Co.";"2015-2026";"Earth-Surface Processes (Q1); Computers in Earth Sciences (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +7402;21101241969;"Integrative Conservation";journal;"27709329";"John Wiley and Sons Inc";No;No;0,761;Q1;8;64;65;3983;206;61;3,32;62,23;38,81;1;China;Asiatic Region;"John Wiley and Sons Inc";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +7403;21100248925;"International Economics";journal;"21107017";"Elsevier B.V.";No;No;0,761;Q1;44;68;199;4030;694;194;3,28;59,26;33,33;4;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)";"Business, Management and Accounting; Economics, Econometrics and Finance" +7404;15072;"Journal of Information Technology in Construction";journal;"18744753";"International Council for Research and Innovation in Building and Construction";Yes;Yes;0,761;Q1;68;78;151;6244;841;149;4,62;80,05;28,25;0;Canada;Northern America;"International Council for Research and Innovation in Building and Construction";"1995-2025";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Computer Science Applications (Q2)";"Computer Science; Engineering" +7405;28894;"Journal of Leisure Research";journal;"00222216, 21596417";"Routledge";No;No;0,761;Q1;88;52;115;3567;402;100;3,42;68,60;47,76;0;United Kingdom;Western Europe;"Routledge";"1978-1989, 1991, 1996-2016, 2018-2026";"Sociology and Political Science (Q1); Environmental Science (miscellaneous) (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Environmental Science; Social Sciences" +7406;15900154722;"Journal of LGBT Youth";journal;"19361661, 19361653";"Routledge";No;No;0,761;Q1;52;6;136;372;463;133;3,22;62,00;43,75;0;United States;Northern America;"Routledge";"2008-2025";"Education (Q1); Gender Studies (Q1)";"Social Sciences" +7407;12000154553;"Journal of Otolaryngology - Head and Neck Surgery";journal;"19160216, 19160208";"SAGE Publications Inc.";Yes;No;0,761;Q1;64;96;191;268;456;186;2,34;2,79;41,21;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1996, 2008-2026";"Otorhinolaryngology (Q1); Surgery (Q1)";"Medicine" +7408;14654;"Optometry and Vision Science";journal;"15389235, 10405488";"Lippincott Williams and Wilkins Ltd.";No;No;0,761;Q1;123;98;364;3645;746;320;2,12;37,19;52,03;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1905, 1924-2025";"Optometry (Q1); Ophthalmology (Q2)";"Health Professions; Medicine" +7409;15381;"Public Administration and Development";journal;"02712075, 1099162X";"John Wiley and Sons Ltd";No;No;0,761;Q1;59;74;95;5245;355;86;3,70;70,88;48,21;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1981-2026";"Development (Q1); Public Administration (Q1)";"Social Sciences" +7410;100147349;"Studies in Continuing Education";journal;"0158037X, 1470126X";"Routledge";No;No;0,761;Q1;48;48;81;2328;250;79;2,64;48,50;68,33;0;United Kingdom;Western Europe;"Routledge";"1978-1982, 1988-2026";"Education (Q1)";"Social Sciences" +7411;23729;"Total Quality Management and Business Excellence";journal;"14783363, 14783371";"Routledge";No;No;0,761;Q1;105;78;254;6050;1500;254;5,83;77,56;36,00;1;United Kingdom;Western Europe;"Routledge";"2003-2026";"Business, Management and Accounting (miscellaneous) (Q1)";"Business, Management and Accounting" +7412;21101043236;"World Journal of Clinical Pediatrics";journal;"22192808";"Baishideng Publishing Group Inc";No;No;0,761;Q1;19;69;125;3489;432;125;2,85;50,57;54,92;0;United States;Northern America;"Baishideng Publishing Group Inc";"2019-2025";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +7413;13231;"World Journal of Surgical Oncology";journal;"14777819";"BioMed Central Ltd";Yes;No;0,761;Q1;87;454;1134;17366;3238;1128;2,72;38,25;35,32;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Surgery (Q1); Oncology (Q2)";"Medicine" +7414;12156;"Journal of Biomedical Optics";journal;"15602281, 10833668";"SPIE";Yes;No;0,761;Q2;170;199;552;9636;2048;543;3,69;48,42;32,16;0;United States;Northern America;"SPIE";"1996-2026";"Atomic and Molecular Physics, and Optics (Q2); Biomaterials (Q2); Biomedical Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +7415;15938;"Journal of Intensive Care Medicine";journal;"15251489, 08850666";"SAGE Publications Inc.";No;No;0,761;Q2;79;212;459;10259;1217;450;2,62;48,39;39,51;1;United States;Northern America;"SAGE Publications Inc.";"1986-2026";"Critical Care and Intensive Care Medicine (Q2)";"Medicine" +7416;26310;"Quarterly of Applied Mathematics";journal;"15524485, 0033569X";"American Mathematical Society";No;No;0,761;Q2;48;30;85;882;82;85;0,82;29,40;38,00;0;United States;Northern America;"American Mathematical Society";"1956, 1963, 1968, 1970-1971, 1973-1988, 1990-2025";"Applied Mathematics (Q2)";"Mathematics" +7417;21101242571;"Bangmod International Journal of Mathematical and Computational Science";journal;"2408154X";"Center of Excellence in Theoretical and Computational Science";No;No;0,760;Q1;7;20;20;619;55;20;2,92;30,95;18,92;0;Thailand;Asiatic Region;"Center of Excellence in Theoretical and Computational Science";"2020-2025";"Computational Mathematics (Q1); Control and Optimization (Q1); Mathematics (miscellaneous) (Q1); Applied Mathematics (Q2)";"Mathematics" +7418;21101239951;"Biomedical Materials and Devices";journal;"27314820, 27314812";"Springer Nature";No;No;0,760;Q1;20;300;157;22945;1053;156;6,71;76,48;37,40;0;United States;Northern America;"Springer Nature";"2023-2026";"Engineering (miscellaneous) (Q1); Biomaterials (Q2); Biomedical Engineering (Q2); Chemistry (miscellaneous) (Q2)";"Chemistry; Engineering; Materials Science" +7419;21101228048;"Disciplinary and Interdisciplinary Science Education Research";journal;"26622300";"Springer";Yes;Yes;0,760;Q1;20;28;69;2174;283;69;3,17;77,64;56,12;0;Singapore;Asiatic Region;"Springer";"2019-2026";"Social Sciences (miscellaneous) (Q1); Pharmacology (Q2)";"Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +7420;23638;"Gender, Place and Culture";journal;"0966369X, 13600524";"Routledge";No;No;0,760;Q1;90;112;259;6746;698;253;2,43;60,23;79,51;0;United Kingdom;Western Europe;"Routledge";"1994-2026";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Demography (Q1); Gender Studies (Q1)";"Arts and Humanities; Social Sciences" +7421;83110;"Journal of Agronomy and Crop Science";journal;"1439037X, 09312250";"Wiley-Blackwell Publishing Ltd";No;No;0,760;Q1;104;127;240;8800;982;240;3,59;69,29;35,49;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1973, 1978, 1986-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +7422;17594;"Journal of Biomolecular NMR";journal;"15735001, 09252738";"Springer Science and Business Media B.V.";No;No;0,760;Q1;115;26;63;1158;138;62;2,36;44,54;31,97;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1991-2026";"Spectroscopy (Q1); Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +7423;33928;"Journal of the Science of Food and Agriculture";journal;"10970010, 00225142";"John Wiley and Sons Ltd";No;No;0,760;Q1;199;804;2375;43152;11461;2368;4,77;53,67;45,19;3;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1950-2026";"Agronomy and Crop Science (Q1); Food Science (Q1); Biotechnology (Q2); Nutrition and Dietetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Nursing" +7424;16900154701;"Myrmecological News";journal;"19973500, 19944136";"Austrian Society of Entomofaunistics";No;No;0,760;Q1;48;16;40;1528;117;40;2,75;95,50;32,88;0;Austria;Western Europe;"Austrian Society of Entomofaunistics";"2008-2026";"Insect Science (Q1)";"Agricultural and Biological Sciences" +7425;21100900059;"Teaching and Learning Inquiry";journal;"21674787";"University of Calgary Press";Yes;Yes;0,760;Q1;27;55;89;2447;273;86;3,20;44,49;64,19;0;Canada;Northern America;"University of Calgary Press";"2013-2026";"Education (Q1)";"Social Sciences" +7426;14000156235;"Aerosol and Air Quality Research";journal;"20711409, 16808584";"Springer International Publishing";Yes;No;0,760;Q2;89;69;449;3234;1454;441;3,25;46,87;32,73;0;Switzerland;Western Europe;"Springer International Publishing";"2008-2026";"Environmental Chemistry (Q2); Pollution (Q2)";"Environmental Science" +7427;19400158593;"Journal of Ambient Intelligence and Humanized Computing";journal;"18685145, 18685137";"Springer Verlag";No;No;0,760;Q2;97;85;1736;3234;8452;1714;4,85;38,05;35,71;0;Germany;Western Europe;"Springer Verlag";"2010-2026";"Computer Science (miscellaneous) (Q2)";"Computer Science" +7428;4700152244;"Journal of Bionic Engineering";journal;"16726529, 25432141";"Springer";No;No;0,760;Q2;75;181;486;9931;2595;486;5,50;54,87;29,06;0;China;Asiatic Region;"Springer";"2004, 2006-2026";"Bioengineering (Q2); Biophysics (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +7429;20040;"Nephron";journal;"22353186, 16608151";"S. Karger AG";No;No;0,760;Q2;106;117;299;4525;754;291;2,49;38,68;40,41;0;Switzerland;Western Europe;"S. Karger AG";"1964-2003, 2015-2026";"Medicine (miscellaneous) (Q2); Nephrology (Q2); Physiology (Q2); Physiology (medical) (Q2); Urology (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7430;21168;"Pharmacogenomics Journal";journal;"1470269X, 14731150";"Springer Nature";No;No;0,760;Q2;101;34;104;1449;301;103;2,58;42,62;41,56;0;United Kingdom;Western Europe;"Springer Nature";"2001-2026";"Genetics (Q2); Molecular Medicine (Q2); Pharmacology (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +7431;145732;"Tourist Studies";journal;"17413206, 14687976";"SAGE Publications Ltd";No;No;0,760;Q2;65;25;60;1705;205;51;3,21;68,20;46,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting" +7432;13835;"Acta Mechanica Sinica/Lixue Xuebao";journal;"16143116, 05677718";"Springer Verlag";No;No;0,759;Q1;71;208;500;11096;1875;490;3,83;53,35;27,91;0;Germany;Western Europe;"Springer Verlag";"1985-2026";"Computational Mechanics (Q1); Mechanical Engineering (Q1)";"Engineering" +7433;13090;"Astrobiology";journal;"15578070, 15311074";"Mary Ann Liebert Inc.";No;No;0,759;Q1;115;66;300;5685;795;290;2,35;86,14;40,62;0;United States;Northern America;"Mary Ann Liebert Inc.";"2001-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Space and Planetary Science (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +7434;21101140350;"Health Data Science";journal;"20971095, 27658783";"American Association for the Advancement of Science";Yes;Yes;0,759;Q1;14;25;61;1277;234;61;4,62;51,08;42,68;1;United States;Northern America;"American Association for the Advancement of Science";"2021-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +7435;21100242257;"Insects";journal;"20754450";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,759;Q1;87;1278;3140;77922;11275;3126;3,19;60,97;40,89;7;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Insect Science (Q1)";"Agricultural and Biological Sciences" +7436;21101141804;"Internet of Things";journal;"2624831X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,759;Q1;29;78;94;4692;639;92;7,53;60,15;21,43;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Engineering (miscellaneous) (Q1); Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +7437;14600154701;"Journal of Anthropological Sciences";journal;"18274765, 20370644";"Istituto Italiano di Antropologia";No;No;0,759;Q1;38;17;30;1012;54;27;1,24;59,53;31,82;0;Italy;Western Europe;"Istituto Italiano di Antropologia";"2008-2025";"Anthropology (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Social Sciences" +7438;23966;"Journal of Optimization Theory and Applications";journal;"00223239, 15732878";"Springer New York";No;No;0,759;Q1;111;266;615;9665;1203;614;1,84;36,33;24,84;0;United States;Northern America;"Springer New York";"1967-2026";"Control and Optimization (Q1); Applied Mathematics (Q2); Management Science and Operations Research (Q2)";"Decision Sciences; Mathematics" +7439;21100853880;"Nursing Reports";journal;"20394403, 2039439X";"MDPI AG";Yes;No;0,759;Q1;25;450;545;21462;1795;539;3,45;47,69;65,51;0;Italy;Western Europe;"MDPI AG";"2014-2015, 2018-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +7440;33310;"Outlook on Agriculture";journal;"20436866, 00307270";"SAGE Publications Inc.";No;No;0,759;Q1;44;39;119;2157;450;117;3,71;55,31;40,31;3;United Kingdom;Western Europe;"SAGE Publications Inc.";"1973, 1976, 1979-1981, 1984-1989, 1991-2026";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Ecology (Q1)";"Agricultural and Biological Sciences; Environmental Science" +7441;21100456196;"Production and Manufacturing Research";journal;"21693277";"Taylor and Francis Ltd.";Yes;No;0,759;Q1;36;36;119;2309;623;118;5,34;64,14;26,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Industrial and Manufacturing Engineering (Q1)";"Engineering" +7442;20652;"Archivum Immunologiae et Therapiae Experimentalis";journal;"16614917, 0004069X";"Sciendo";No;No;0,759;Q2;79;24;75;1392;246;74;3,49;58,00;58,62;0;Poland;Eastern Europe;"Sciendo";"1954-1957, 1959-1977, 1979-2026";"Medicine (miscellaneous) (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +7443;21100394792;"IJC Heart and Vasculature";journal;"23529067";"Elsevier Ireland Ltd";Yes;No;0,759;Q2;42;269;611;9243;1539;534;2,76;34,36;30,95;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"2014-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +7444;17600155227;"Asian Business and Management";journal;"14724782, 14769328";"Palgrave Macmillan Ltd.";No;No;0,758;Q1;38;30;149;2471;599;139;3,57;82,37;36,00;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2008-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1); Business and International Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Social Sciences" +7445;21101138040;"Digital Chemical Engineering";journal;"27725081";"Elsevier Ltd";Yes;No;0,758;Q1;24;76;185;4310;1098;180;6,08;56,71;25,25;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Chemical Engineering (miscellaneous) (Q1); Engineering (miscellaneous) (Q1)";"Chemical Engineering; Engineering" +7446;24567;"European Foreign Affairs Review";journal;"18758223, 13846299";"Kluwer Law International";No;No;0,758;Q1;44;41;98;3118;239;92;2,43;76,05;47,27;0;Netherlands;Western Europe;"Kluwer Law International";"1996-2026";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +7447;21101022494;"Journal of Cardiovascular Development and Disease";journal;"23083425";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,758;Q1;43;499;1368;26242;3852;1342;2,73;52,59;35,93;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2014-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +7448;21101248684;"Journal of Molecular and Cellular Cardiology Plus";journal;"27729761";"Elsevier B.V.";Yes;No;0,758;Q1;8;72;86;4340;144;64;1,77;60,28;39,93;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Dentistry (miscellaneous) (Q1); Cardiology and Cardiovascular Medicine (Q2)";"Dentistry; Medicine" +7449;26987;"Langmuir";journal;"15205827, 07437463";"American Chemical Society";No;No;0,758;Q1;391;2957;5886;159217;25182;5873;4,33;53,84;34,94;0;United States;Northern America;"American Chemical Society";"1985-2026";"Condensed Matter Physics (Q1); Spectroscopy (Q1); Electrochemistry (Q2); Materials Science (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Surfaces and Interfaces (Q2)";"Chemistry; Materials Science; Medicine; Physics and Astronomy" +7450;25004;"Natural Language and Linguistic Theory";journal;"0167806X, 15730859";"Springer Netherlands";No;No;0,758;Q1;72;70;110;6743;131;110;1,11;96,33;39,45;0;Netherlands;Western Europe;"Springer Netherlands";"1983-2001, 2003-2026";"Linguistics and Language (Q1)";"Social Sciences" +7451;15800154701;"PM&R";journal;"19341482, 19341563";"John Wiley and Sons Inc";No;No;0,758;Q1;97;240;509;8259;1192;425;1,92;34,41;46,41;1;United States;Northern America;"John Wiley and Sons Inc";"2009-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Medicine (miscellaneous) (Q2); Neurology (Q2); Neurology (clinical) (Q2); Sports Science (Q2)";"Health Professions; Medicine; Neuroscience" +7452;21101045325;"Samarah";journal;"25493167, 25493132";"Universitas Islam Negeri Ar-Raniry";No;No;0,758;Q1;18;81;230;3973;736;230;3,30;49,05;28,90;0;Indonesia;Asiatic Region;"Universitas Islam Negeri Ar-Raniry";"2017-2025";"Law (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +7453;6500153248;"Victims and Offenders";journal;"15564886, 15564991";"Routledge";No;No;0,758;Q1;47;110;226;7913;660;221;2,46;71,94;64,08;2;United Kingdom;Western Europe;"Routledge";"2006-2026";"Law (Q1); Applied Psychology (Q2); Health (social science) (Q2); Pathology and Forensic Medicine (Q2)";"Medicine; Psychology; Social Sciences" +7454;21100984159;"IET Smart Grid";journal;"25152947";"John Wiley & Sons Inc.";Yes;No;0,758;Q2;34;57;151;2277;567;146;3,97;39,95;22,13;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2018-2026";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Information Systems (Q2)";"Computer Science; Engineering" +7455;53554;"Australian Journal of Agricultural and Resource Economics";journal;"1364985X, 14678489";"Wiley-Blackwell Publishing Ltd";No;No;0,757;Q1;67;71;121;4497;407;116;2,85;63,34;28,26;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +7456;5200153107;"China and World Economy";journal;"1749124X, 16712234";"John Wiley and Sons Inc";No;No;0,757;Q1;45;48;152;2857;539;149;3,01;59,52;39,69;0;United States;Northern America;"John Wiley and Sons Inc";"2006-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +7457;20873;"Environment and Development Economics";journal;"1355770X, 14694395";"Cambridge University Press";No;No;0,757;Q1;80;58;87;3084;273;87;3,19;53,17;27,63;0;United Kingdom;Western Europe;"Cambridge University Press";"1996-2026";"Development (Q1); Economics and Econometrics (Q2); Environmental Science (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +7458;21101176729;"Forum Geografi";journal;"24603945, 08520682";"Muhammadiyah University of Surakarta";Yes;No;0,757;Q1;9;27;48;1749;163;48;3,40;64,78;26,60;0;Indonesia;Asiatic Region;"Muhammadiyah University of Surakarta";"2023-2025";"Geography, Planning and Development (Q1); Environmental Science (miscellaneous) (Q2)";"Environmental Science; Social Sciences" +7459;21100863714;"International Journal of Computer-Assisted Language Learning and Teaching";journal;"21557101, 21557098";"IGI Global Publishing";No;No;0,757;Q1;17;19;60;1026;193;60;4,76;54,00;35,56;0;United States;Northern America;"IGI Global Publishing";"2013, 2016-2026";"Computer Vision and Pattern Recognition (Q1); Education (Q1); Linguistics and Language (Q1); Computer Science Applications (Q2)";"Computer Science; Social Sciences" +7460;21675;"Journal of Endovascular Therapy";journal;"15451550, 15266028";"SAGE Publications Inc.";Yes;No;0,757;Q1;113;422;442;11376;942;431;1,92;26,96;21,88;4;United States;Northern America;"SAGE Publications Inc.";"2000-2026";"Surgery (Q1); Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +7461;17812;"Materials Science and Engineering: B";journal;"09215107";"Elsevier Ltd";No;No;0,757;Q1;146;786;1927;48101;10545;1927;5,93;61,20;32,73;1;United Kingdom;Western Europe;"Elsevier Ltd";"1988-2026";"Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science; Physics and Astronomy" +7462;25107;"Mathematische Nachrichten";journal;"15222616, 0025584X";"Wiley-VCH Verlag";No;No;0,757;Q1;61;170;607;5364;637;607;1,01;31,55;19,35;0;Germany;Western Europe;"Wiley-VCH Verlag";"1948-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +7463;13790;"Precision Engineering";journal;"01416359";"Elsevier Inc.";No;No;0,757;Q1;114;234;602;10911;2867;602;4,56;46,63;24,62;0;United States;Northern America;"Elsevier Inc.";"1979-2026";"Engineering (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q2)";"Engineering; Materials Science" +7464;13163;"Epilepsy and Behavior";journal;"15255050, 15255069";"Academic Press Inc.";No;No;0,757;Q2;135;524;1332;23875;3416;1219;2,56;45,56;50,94;0;United States;Northern America;"Academic Press Inc.";"2000-2026";"Behavioral Neuroscience (Q2); Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +7465;12681;"European Journal of Obstetrics and Gynecology and Reproductive Biology";journal;"18727654, 03012115";"Elsevier Ireland Ltd";No;No;0,757;Q2;125;676;1338;18696;2968;1193;2,19;27,66;56,21;3;Ireland;Western Europe;"Elsevier Ireland Ltd";"1971-2026";"Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)";"Medicine" +7466;21101048344;"Granular Computing";journal;"23644974, 23644966";"Springer Nature";No;No;0,757;Q2;55;0;241;0;1197;241;4,83;0,00;0,00;0;Switzerland;Western Europe;"Springer Nature";"2016-2024";"Artificial Intelligence (Q2); Computer Science Applications (Q2); Information Systems (Q2)";"Computer Science" +7467;16704;"Journal of ECT";journal;"10950680, 15334112";"Lippincott Williams and Wilkins";No;No;0,757;Q2;73;133;252;3294;349;132;1,15;24,77;37,43;0;United States;Northern America;"Lippincott Williams and Wilkins";"1998-2026";"Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience" +7468;19307;"Revue Neurologique";journal;"00353787";"Elsevier Masson s.r.l.";Yes;No;0,757;Q2;65;128;450;5649;932;347;2,31;44,13;47,64;1;France;Western Europe;"Elsevier Masson s.r.l.";"1946-1947, 1950-1961, 1963-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +7469;21101174378;"Beverage Plant Research";journal;"27692108";"Maximum Academic Press";Yes;No;0,756;Q1;16;40;94;2275;391;94;3,75;56,88;44,70;0;United States;Northern America;"Maximum Academic Press";"2021-2026";"Food Science (Q1); Horticulture (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +7470;19700190346;"Consumption Markets and Culture";journal;"10253866, 1477223X";"Routledge";No;No;0,756;Q1;47;38;98;2626;278;93;2,25;69,11;43,33;0;United States;Northern America;"Routledge";"2003, 2007, 2010-2026";"Anthropology (Q1); Economics and Econometrics (Q2); Marketing (Q2); Social Psychology (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Psychology; Social Sciences" +7471;15300154825;"Hand";journal;"15589447, 15589455";"SAGE Publications Inc.";No;No;0,756;Q1;54;274;622;6598;1204;608;1,85;24,08;28,31;0;United States;Northern America;"SAGE Publications Inc.";"1981, 2007-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +7472;13057;"Industrial and Engineering Chemistry Research";journal;"15205045, 08885885";"American Chemical Society";No;No;0,756;Q1;278;1944;5216;107346;22201;5178;4,11;55,22;33,35;0;United States;Northern America;"American Chemical Society";"1987-2026";"Chemical Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Chemistry (miscellaneous) (Q2)";"Chemical Engineering; Chemistry; Engineering" +7473;29194;"Journal of Aging Studies";journal;"08904065, 1879193X";"Elsevier Ltd";No;No;0,756;Q1;92;60;214;3690;574;204;2,57;61,50;72,73;0;United Kingdom;Western Europe;"Elsevier Ltd";"1987-2026";"Issues, Ethics and Legal Aspects (Q1); Health Policy (Q2); Health (social science) (Q2); Life-span and Life-course Studies (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Nursing; Social Sciences" +7474;5700162931;"Journal of Social Work";journal;"14680173";"SAGE Publications Ltd";No;No;0,756;Q1;49;75;168;3832;478;167;2,90;51,09;67,11;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Social Sciences (miscellaneous) (Q1); Health (social science) (Q2); Social Work (Q2)";"Social Sciences" +7475;21100977423;"RSC Medicinal Chemistry";journal;"26328682";"Royal Society of Chemistry";No;No;0,756;Q1;87;323;673;21026;2997;662;4,34;65,10;39,41;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2020-2026";"Organic Chemistry (Q1); Biochemistry (Q2); Drug Discovery (Q2); Molecular Medicine (Q2); Pharmaceutical Science (Q2); Pharmacology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +7476;21100821119;"Annals of Work Exposures and Health";journal;"23987308, 23987316";"Oxford University Press";No;No;0,756;Q2;94;94;328;3355;674;308;2,06;35,69;48,22;3;United Kingdom;Western Europe;"Oxford University Press";"2017-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +7477;4700151731;"Applied Physiology, Nutrition and Metabolism";journal;"17155320, 17155312";"Canadian Science Publishing";No;No;0,756;Q2;119;159;387;7458;1057;379;2,54;46,91;44,67;2;Canada;Northern America;"Canadian Science Publishing";"2006-2026";"Endocrinology, Diabetes and Metabolism (Q2); Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2); Physiology (Q2); Physiology (medical) (Q2); Sports Science (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Nursing" +7478;4900152305;"Biotechnology Journal";journal;"18607314, 18606768";"Wiley-VCH Verlag";No;No;0,756;Q2;124;194;602;11873;2315;601;3,84;61,20;43,86;0;Germany;Western Europe;"Wiley-VCH Verlag";"2006-2026";"Applied Microbiology and Biotechnology (Q2); Medicine (miscellaneous) (Q2); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +7479;19700182338;"Current Gerontology and Geriatrics Research";journal;"16877063, 16877071";"John Wiley and Sons Ltd";Yes;No;0,756;Q2;42;0;7;0;28;7;4,00;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2010-2024";"Geriatrics and Gerontology (Q2)";"Medicine" +7480;14102;"Journal of Steroid Biochemistry and Molecular Biology";journal;"09600760, 18791220";"Elsevier Ltd";No;No;0,756;Q2;157;160;353;10472;1054;346;3,10;65,45;51,89;0;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2026";"Biochemistry (Q2); Clinical Biochemistry (Q2); Endocrinology, Diabetes and Metabolism (Q2); Molecular Medicine (Q2); Cell Biology (Q3); Endocrinology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7481;20549;"Urologic Clinics of North America";journal;"00940143, 1558318X";"W.B. Saunders";No;No;0,756;Q2;90;63;187;2988;460;152;2,15;47,43;25,97;0;United States;Northern America;"W.B. Saunders";"1974-2026";"Urology (Q2)";"Medicine" +7482;19625;"Crime and Delinquency";journal;"1552387X, 00111287";"SAGE Publications Inc.";No;No;0,755;Q1;94;253;404;16660;1016;404;2,12;65,85;48,48;11;United States;Northern America;"SAGE Publications Inc.";"1955-2026";"Law (Q1); Pathology and Forensic Medicine (Q2)";"Medicine; Social Sciences" +7483;26676;"International Journal of Energy Research";journal;"1099114X, 0363907X";"John Wiley and Sons Ltd";Yes;No;0,755;Q1;145;430;2242;24810;10780;2232;4,33;57,70;22,53;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1977-2026";"Nuclear Energy and Engineering (Q1); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy" +7484;21101059750;"Maxillofacial Plastic and Reconstructive Surgery";journal;"22888101, 22888586";"Springer";Yes;No;0,755;Q1;31;44;121;1493;443;119;3,79;33,93;29,17;0;Singapore;Asiatic Region;"Springer";"2015-2026";"Oral Surgery (Q1); Surgery (Q1)";"Dentistry; Medicine" +7485;21100914192;"Mining of Mineral Deposits";journal;"24153443, 24153435";"Dnipro University of Technology";Yes;No;0,755;Q1;27;58;180;2366;616;180;4,29;40,79;32,31;0;Ukraine;Eastern Europe;"Dnipro University of Technology";"2016-2025";"Engineering (miscellaneous) (Q1); Geochemistry and Petrology (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +7486;21101067621;"Quaternary Science Advances";journal;"26660334";"Elsevier Ltd";Yes;No;0,755;Q1;20;47;183;4235;725;182;3,97;90,11;30,40;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Earth-Surface Processes (Q1); Geology (Q1)";"Earth and Planetary Sciences" +7487;21101039272;"Anthropocene Coasts";journal;"25614150";"Springer International Publishing";No;No;0,754;Q1;17;43;58;2646;204;56;3,98;61,53;34,76;1;Canada;Northern America;"Springer International Publishing";"2018-2026";"Nature and Landscape Conservation (Q1); Ocean Engineering (Q1); Oceanography (Q2); Waste Management and Disposal (Q2)";"Earth and Planetary Sciences; Engineering; Environmental Science" +7488;16772;"Canadian Journal of Political Science";journal;"17449324, 00084239";"Cambridge University Press";No;No;0,754;Q1;52;68;149;4891;277;148;1,37;71,93;35,61;0;United Kingdom;Western Europe;"Cambridge University Press";"1968-2026";"Sociology and Political Science (Q1)";"Social Sciences" +7489;19700175286;"Evolving Systems";journal;"18686486, 18686478";"";No;No;0,754;Q1;47;129;242;6087;1284;242;5,43;47,19;34,49;0;Germany;Western Europe;"";"2010-2026";"Control and Optimization (Q1); Modeling and Simulation (Q1); Computer Science Applications (Q2); Control and Systems Engineering (Q2)";"Computer Science; Engineering; Mathematics" +7490;21107;"International Journal of Fracture";journal;"15732673, 03769429";"Springer Netherlands";No;No;0,754;Q1;122;78;231;3698;739;225;2,58;47,41;20,00;3;Netherlands;Western Europe;"Springer Netherlands";"1973-2026";"Computational Mechanics (Q1); Mechanics of Materials (Q1); Modeling and Simulation (Q1)";"Engineering; Mathematics" +7491;28500;"Journal of Complexity";journal;"0885064X, 10902708";"Academic Press Inc.";No;No;0,754;Q1;59;39;126;1335;235;125;1,84;34,23;15,00;0;United States;Northern America;"Academic Press Inc.";"1985-2026";"Algebra and Number Theory (Q1); Control and Optimization (Q1); Mathematics (miscellaneous) (Q1); Numerical Analysis (Q1); Applied Mathematics (Q2); Statistics and Probability (Q2)";"Mathematics" +7492;5600155054;"Journal of International Migration and Integration";journal;"14883473, 18746365";"Springer Science and Business Media B.V.";No;No;0,754;Q1;43;155;342;10693;919;341;2,48;68,99;59,37;3;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2004, 2007-2026";"Anthropology (Q1); Cultural Studies (Q1); Demography (Q1)";"Social Sciences" +7493;21100886348;"Asia-Pacific Journal of Oncology Nursing";journal;"23496673, 23475625";"";Yes;No;0,754;Q2;34;195;386;8984;1244;312;2,93;46,07;62,81;0;Netherlands;Western Europe;"";"2017-2026";"Oncology (Q2); Oncology (nursing) (Q2)";"Medicine; Nursing" +7494;16849;"Biochemical Engineering Journal";journal;"1873295X, 1369703X";"Elsevier B.V.";No;No;0,754;Q2;155;279;1022;15318;4709;1022;4,34;54,90;38,42;0;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Bioengineering (Q2); Biomedical Engineering (Q2); Biotechnology (Q2); Environmental Engineering (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Environmental Science" +7495;21100255498;"Frontiers in Bioscience - Scholar";journal;"19450516, 19450524";"IMR Press Limited";Yes;No;0,754;Q2;64;27;75;1008;236;74;2,82;37,33;46,77;0;Hong Kong;Asiatic Region;"IMR Press Limited";"2009-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +7496;21101152880;"Frontiers in Communications and Networks";journal;"2673530X";"Frontiers Media SA";Yes;No;0,754;Q2;21;42;66;1761;242;63;3,59;41,93;31,20;1;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Computer Networks and Communications (Q2); Signal Processing (Q2)";"Computer Science" +7497;15872;"Journal of Clinical Monitoring and Computing";journal;"15732614, 13871307";"Springer Science and Business Media B.V.";No;No;0,754;Q2;67;195;543;5777;1405;488;2,73;29,63;33,36;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1992, 1997-2000, 2002, 2004-2026";"Anesthesiology and Pain Medicine (Q2); Critical Care and Intensive Care Medicine (Q2); Health Informatics (Q2)";"Medicine" +7498;21101185307;"BioMedInformatics";journal;"26737426";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,753;Q1;22;72;247;4078;1286;240;5,30;56,64;41,20;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Health Professions (miscellaneous) (Q1); Computer Science (miscellaneous) (Q2); Health Informatics (Q2); Medicine (miscellaneous) (Q2)";"Computer Science; Health Professions; Medicine" +7499;21101017598;"Emerging Science Journal";journal;"26109182";"Ital Publication";Yes;No;0,753;Q1;43;196;497;11432;2664;497;5,98;58,33;40,36;0;Italy;Western Europe;"Ital Publication";"2017-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +7500;21101300618;"Frontiers in Bee Science";journal;"28135911";"Frontiers Media SA";Yes;No;0,753;Q1;9;16;38;1216;154;36;4,05;76,00;38,89;0;Switzerland;Western Europe;"Frontiers Media SA";"2023-2026";"Animal Science and Zoology (Q1); Ecology (Q1); Insect Science (Q1)";"Agricultural and Biological Sciences; Environmental Science" +7501;21100843693;"Frontiers in Veterinary Science";journal;"22971769";"Frontiers Media SA";Yes;No;0,753;Q1;101;1816;5555;91767;18009;5283;2,95;50,53;46,36;8;Switzerland;Western Europe;"Frontiers Media SA";"2014-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +7502;21100239402;"Journal of Central South University";journal;"22275223, 20952899";"Springer Science + Business Media";No;No;0,753;Q1;65;301;889;13724;3985;881;4,66;45,59;28,08;0;United States;Northern America;"Springer Science + Business Media";"2012-2026";"Engineering (miscellaneous) (Q1); Metals and Alloys (Q1)";"Engineering; Materials Science" +7503;100141;"Journal of Field Archaeology";journal;"00934690, 20424582";"Maney Publishing";No;No;0,753;Q1;50;52;119;4308;192;115;1,36;82,85;35,15;1;United Kingdom;Western Europe;"Maney Publishing";"1974-1999, 2003-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +7504;21100329302;"Journal of Information Literacy";journal;"17505968";"CILIP Information Literacy Group";Yes;Yes;0,753;Q1;19;20;85;566;163;71;2,00;28,30;75,00;0;United Kingdom;Western Europe;"CILIP Information Literacy Group";"2010, 2014-2025";"Education (Q1); Library and Information Sciences (Q1); E-learning (Q2)";"Social Sciences" +7505;21100818942;"Journal of Psychologists and Counsellors in Schools";journal;"20556365, 20556373";"SAGE Publications Ltd";No;No;0,753;Q1;34;11;86;569;198;74;2,31;51,73;73,08;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2015-2025";"Education (Q1); Developmental and Educational Psychology (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +7506;27989;"Optimization";journal;"10294945, 02331934";"Taylor and Francis Ltd.";No;No;0,753;Q1;69;319;499;11191;966;489;2,01;35,08;26,87;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-2026";"Control and Optimization (Q1); Applied Mathematics (Q2); Management Science and Operations Research (Q2)";"Decision Sciences; Mathematics" +7507;19900191973;"Tourism Planning and Development";journal;"21568324, 21568316";"Routledge";No;No;0,753;Q1;56;106;137;7954;717;124;5,55;75,04;45,55;0;United Kingdom;Western Europe;"Routledge";"2011-2026";"Development (Q1); Business and International Management (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +7508;22119;"Functional and Integrative Genomics";journal;"14387948, 1438793X";"";No;No;0,753;Q2;94;266;615;22546;2416;583;4,10;84,76;42,29;0;Germany;Western Europe;"";"2000-2026";"Genetics (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7509;19700188446;"International Journal of Endocrinology";journal;"16878337, 16878345";"John Wiley and Sons Ltd";Yes;No;0,753;Q2;89;97;273;4049;807;273;2,57;41,74;49,40;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Endocrinology, Diabetes and Metabolism (Q2); Endocrine and Autonomic Systems (Q3); Endocrinology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +7510;6400153116;"International Journal of Energy Sector Management";journal;"17506220";"Emerald Group Publishing Ltd.";No;No;0,753;Q2;42;95;243;7333;1137;243;5,30;77,19;30,32;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007-2026";"Energy (miscellaneous) (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Energy" +7511;25126;"Journal of Applied Toxicology";journal;"10991263, 0260437X";"John Wiley and Sons Ltd";No;No;0,753;Q2;111;262;432;16012;1641;432;4,02;61,11;48,09;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1981-2026";"Toxicology (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +7512;27584;"Journal of Human Lactation";journal;"08903344, 15525732";"SAGE Publications Inc.";No;No;0,753;Q2;76;76;282;2413;624;201;1,84;31,75;76,57;0;United States;Northern America;"SAGE Publications Inc.";"1985-2026";"Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)";"Medicine" +7513;28338;"Ocean Dynamics";journal;"16167228, 16167341";"Springer Verlag";No;No;0,753;Q2;75;107;153;5704;390;150;2,44;53,31;29,71;0;Germany;Western Europe;"Springer Verlag";"2001-2026";"Oceanography (Q2)";"Earth and Planetary Sciences" +7514;21101019267;"Pathogens and Immunity";journal;"24692964";"Case Western Reserve University";Yes;Yes;0,753;Q2;26;18;71;649;170;58;2,35;36,06;58,91;0;United States;Northern America;"Case Western Reserve University";"2016-2026";"Infectious Diseases (Q2); Microbiology (medical) (Q2); Immunology (Q3); Immunology and Allergy (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +7515;13339;"Professional Psychology: Research and Practice";journal;"19391323, 07357028";"American Psychological Association";No;No;0,753;Q2;110;54;175;2529;430;173;2,07;46,83;66,15;0;United States;Northern America;"American Psychological Association";"1969-2025";"Psychology (miscellaneous) (Q2)";"Psychology" +7516;30715;"Annals of Regional Science";journal;"05701864, 14320592";"Springer Science and Business Media Deutschland GmbH";No;No;0,752;Q1;86;97;258;5788;837;246;2,79;59,67;35,10;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1967-2026";"Social Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q2)";"Environmental Science; Social Sciences" +7517;26817;"Continental Shelf Research";journal;"02784343, 18736955";"Elsevier Ltd";No;No;0,752;Q1;141;127;362;8854;988;359;2,65;69,72;33,74;0;United Kingdom;Western Europe;"Elsevier Ltd";"1982-2026";"Aquatic Science (Q1); Geology (Q1); Oceanography (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +7518;21101039763;"EJNMMI Radiopharmacy and Chemistry";journal;"2365421X";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,752;Q1;36;82;165;3640;579;161;3,30;44,39;41,42;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2016-2026";"Analytical Chemistry (Q1); Pharmacology (Q2); Pharmacology (medical) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7519;12781;"Fisheries Research";journal;"01657836";"Elsevier B.V.";No;No;0,752;Q1;120;346;777;21705;2225;770;2,86;62,73;34,17;14;Netherlands;Western Europe;"Elsevier B.V.";"1981, 1983-2026";"Aquatic Science (Q1)";"Agricultural and Biological Sciences" +7520;21101023171;"Frontiers in Sociology";journal;"22977775";"Frontiers Media SA";Yes;No;0,752;Q1;41;340;839;20731;2594;762;2,56;60,97;52,37;2;Switzerland;Western Europe;"Frontiers Media SA";"2016-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +7521;21100920121;"IET Nanodielectrics";journal;"25143255";"John Wiley & Sons Inc.";Yes;No;0,752;Q1;26;26;65;1005;309;63;4,76;38,65;25,00;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2018-2026";"Condensed Matter Physics (Q1); Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2)";"Engineering; Materials Science; Physics and Astronomy" +7522;27749;"International Journal of Nursing Practice";journal;"13227114, 1440172X";"Wiley-Blackwell";No;No;0,752;Q1;69;98;328;4650;958;324;2,50;47,45;66,48;0;United States;Northern America;"Wiley-Blackwell";"1995-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +7523;11800154595;"International Journal of Qualitative Studies on Health and Well-being";journal;"17482631, 17482623";"Taylor and Francis Ltd.";Yes;No;0,752;Q1;54;151;374;8445;1076;373;2,69;55,93;68,60;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Fundamentals and Skills (Q1); Issues, Ethics and Legal Aspects (Q1); Gerontology (Q2); Health Policy (Q2)";"Medicine; Nursing" +7524;21100241791;"Journal of Industrial and Production Engineering";journal;"21681023, 21681015";"Taylor and Francis Ltd.";No;No;0,752;Q1;44;59;123;3469;709;123;6,17;58,80;24,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Industrial and Manufacturing Engineering (Q1); Control and Systems Engineering (Q2)";"Engineering" +7525;29587;"Journal of Propulsion and Power";journal;"15333876, 07484658";"American Institute of Aeronautics and Astronautics Inc. (AIAA)";No;No;0,752;Q1;127;68;252;2652;770;243;2,99;39,00;21,69;0;United States;Northern America;"American Institute of Aeronautics and Astronautics Inc. (AIAA)";"1985-2026";"Aerospace Engineering (Q1); Mechanical Engineering (Q1); Fuel Technology (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Energy; Engineering" +7526;21101101953;"Journal of World Languages";journal;"21698252, 21698260";"De Gruyter Mouton";Yes;Yes;0,752;Q1;14;31;71;1942;224;65;2,02;62,65;44,44;0;Germany;Western Europe;"De Gruyter Mouton";"2014-2018, 2020-2026";"Linguistics and Language (Q1)";"Social Sciences" +7527;21100218055;"BMC Pharmacology and Toxicology";journal;"20506511";"BioMed Central Ltd";Yes;No;0,752;Q2;52;212;271;9995;982;270;3,63;47,15;46,31;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2012-2026";"Medicine (miscellaneous) (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +7528;29762;"European Journal of Cancer Care";journal;"09615423, 13652354";"John Wiley and Sons Ltd";No;No;0,752;Q2;88;109;335;5027;857;319;1,20;46,12;60,44;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1992-2026";"Oncology (Q2)";"Medicine" +7529;30065;"Journal of Psychopathology and Behavioral Assessment";journal;"08822689, 15733505";"Springer";No;No;0,752;Q2;92;83;268;4990;567;268;2,12;60,12;60,92;0;United States;Northern America;"Springer";"1985-2026";"Clinical Psychology (Q2)";"Psychology" +7530;20982;"Journal of the American Ceramic Society";journal;"15512916, 00027820";"Wiley-Blackwell";No;No;0,752;Q2;241;819;2022;44447;8443;2012;4,27;54,27;31,05;0;United States;Northern America;"Wiley-Blackwell";"1918-2026";"Ceramics and Composites (Q2); Materials Chemistry (Q2)";"Materials Science" +7531;21101154803;"Conference on Machine Translation - Proceedings";conference and proceedings;"27680983";"Association for Computational Linguistics";No;No;0,752;-;23;114;363;3473;1314;357;3,83;30,46;28,54;0;United States;Northern America;"Association for Computational Linguistics";"2022-2025";"Human-Computer Interaction; Linguistics and Language; Software";"Computer Science; Social Sciences" +7532;21101112543;"Complex System Modeling and Simulation";journal;"20969929";"Tsinghua University Press";Yes;Yes;0,751;Q1;21;24;72;1068;327;72;4,13;44,50;25,53;0;China;Asiatic Region;"Tsinghua University Press";"2021-2025";"Industrial and Manufacturing Engineering (Q1); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2)";"Engineering" +7533;10900153309;"Endangered Species Research";journal;"18635407, 16134796";"Inter-Research";Yes;No;0,751;Q1;79;86;214;5943;583;214;2,54;69,10;44,70;1;Germany;Western Europe;"Inter-Research";"2008-2026";"Ecology (Q1); Nature and Landscape Conservation (Q1)";"Environmental Science" +7534;21100238638;"Global Policy";journal;"17585899, 17585880";"John Wiley and Sons Ltd";No;No;0,751;Q1;59;147;402;8059;1117;382;2,69;54,82;38,55;8;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Law (Q1); Political Science and International Relations (Q1); Economics and Econometrics (Q2); Management, Monitoring, Policy and Law (Q2); Global and Planetary Change (Q3)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +7535;13383;"Health Care Management Science";journal;"13869620, 15729389";"Kluwer Academic Publishers";No;No;0,751;Q1;72;47;116;2805;346;114;2,96;59,68;32,14;0;Netherlands;Western Europe;"Kluwer Academic Publishers";"1998-2026";"Health Professions (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Health Professions; Medicine" +7536;21101363390;"Journal of the European Second Language Association";journal;"23999101";"White Rose University Press";Yes;No;0,751;Q1;6;16;23;870;53;23;1,74;54,38;71,43;0;United Kingdom;Western Europe;"White Rose University Press";"2021-2026";"Education (Q1); Linguistics and Language (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +7537;13941;"Journal of Vertebrate Paleontology";journal;"19372809, 02724634";"Taylor and Francis Ltd.";No;No;0,751;Q1;98;54;255;4412;460;244;1,41;81,70;28,42;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2026";"Paleontology (Q1)";"Earth and Planetary Sciences" +7538;5800179626;"Reading and Writing Quarterly";journal;"15210693, 10573569";"Taylor and Francis Ltd.";No;No;0,751;Q1;47;40;98;2462;263;98;2,32;61,55;66,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +7539;21101054302;"Science of Diabetes Self-Management and Care";journal;"26350114, 26350106";"SAGE Publications Inc.";No;No;0,751;Q1;89;55;124;2054;277;111;1,51;37,35;76,83;0;United States;Northern America;"SAGE Publications Inc.";"2021-2026";"Health Professions (miscellaneous) (Q1); Endocrinology, Diabetes and Metabolism (Q2); Health (social science) (Q2)";"Health Professions; Medicine; Social Sciences" +7540;14586;"Social Service Review";journal;"15375404, 00377961";"University of Chicago Press";No;No;0,751;Q1;72;20;62;1462;168;61;3,08;73,10;67,61;3;United States;Northern America;"University of Chicago Press";"1973-1983, 1987, 1996-2026";"Sociology and Political Science (Q1); Social Work (Q2)";"Social Sciences" +7541;27417;"Transformation Groups";journal;"1531586X, 10834362";"Springer Nature";No;No;0,751;Q1;40;104;208;2762;130;208;0,60;26,56;20,32;0;United States;Northern America;"Springer Nature";"1997-2026";"Algebra and Number Theory (Q1); Geometry and Topology (Q2)";"Mathematics" +7542;21100854624;"ACS Earth and Space Chemistry";journal;"24723452";"American Chemical Society";No;No;0,751;Q2;54;250;715;17271;2160;711;2,75;69,08;34,62;0;United States;Northern America;"American Chemical Society";"2017-2026";"Atmospheric Science (Q2); Geochemistry and Petrology (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences" +7543;21101113246;"Journal of Technology in Behavioral Science";journal;"23665963";"Springer";No;No;0,751;Q2;28;161;192;9013;566;185;2,60;55,98;56,36;1;United States;Northern America;"Springer";"2016-2026";"Applied Psychology (Q2); Computer Science Applications (Q2); Health (social science) (Q2); Human-Computer Interaction (Q2)";"Computer Science; Psychology; Social Sciences" +7544;24072;"Microchimica Acta";journal;"14365073, 00263672";"Springer-Verlag Wien";No;No;0,751;Q2;121;864;1733;45710;9518;1718;5,25;52,91;44,43;0;Austria;Western Europe;"Springer-Verlag Wien";"1926-1944, 1947-2026";"Analytical Chemistry (Q2)";"Chemistry" +7545;4700152238;"Sahara J";journal;"17290376, 18134424";"Taylor and Francis Ltd.";Yes;No;0,751;Q2;37;2;8;83;17;8;0,60;41,50;72,73;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2025";"Health (social science) (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2); Immunology and Allergy (Q3)";"Medicine; Social Sciences" +7546;25096;"Food and Chemical Toxicology";journal;"18736351, 02786915";"Elsevier Ltd";No;No;0,750;Q1;223;557;2039;30833;7835;2019;3,50;55,36;50,57;2;United Kingdom;Western Europe;"Elsevier Ltd";"1982-2026";"Food Science (Q1); Medicine (miscellaneous) (Q2); Toxicology (Q2)";"Agricultural and Biological Sciences; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7547;21101063700;"International Journal of Sports Physical Therapy";journal;"21592896";"North American Sports Medicine Institute";Yes;Yes;0,750;Q1;30;144;444;5404;1117;406;2,17;37,53;30,61;0;United States;Northern America;"North American Sports Medicine Institute";"2017-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2)";"Health Professions; Medicine" +7548;21101209807;"Journal of Neurorestoratology";journal;"23242426";"Elsevier Ltd";Yes;No;0,750;Q1;12;53;94;2286;307;79;3,04;43,13;42,24;0;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Rehabilitation (Q1); Speech and Hearing (Q1); Cognitive Neuroscience (Q2); Neurology (Q2); Neuroscience (miscellaneous) (Q3)";"Health Professions; Medicine; Neuroscience" +7549;28252;"Journal of School Nursing";journal;"10598405, 15468364";"SAGE Publications Inc.";No;No;0,750;Q1;50;125;193;4296;525;170;2,79;34,37;81,96;5;United States;Northern America;"SAGE Publications Inc.";"1991-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +7550;50054;"Journal of Water Resources Planning and Management - ASCE";journal;"07339496";"American Society of Civil Engineers (ASCE)";No;No;0,750;Q1;122;110;356;5442;1106;338;2,75;49,47;33,93;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1980-2026";"Civil and Structural Engineering (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2)";"Engineering; Environmental Science; Social Sciences" +7551;25712;"Numerical Linear Algebra with Applications";journal;"10705325, 10991506";"John Wiley and Sons Ltd";No;No;0,750;Q1;64;79;162;3266;357;161;2,12;41,34;22,46;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1994-2026";"Algebra and Number Theory (Q1); Applied Mathematics (Q2)";"Mathematics" +7552;21100808642;"Resources";journal;"20799276";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,750;Q1;69;192;442;13893;2159;435;5,11;72,36;39,81;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Nature and Landscape Conservation (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science" +7553;24956;"Skin Research and Technology";journal;"16000846, 0909752X";"Wiley-Blackwell Publishing Ltd";No;No;0,750;Q1;88;48;724;1112;1849;531;2,60;23,17;45,68;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1995-2026";"Dermatology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +7554;21100240100;"Sustainability (Switzerland)";journal;"20711050";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,750;Q1;242;11339;44790;740253;240427;44471;5,28;65,28;40,94;53;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Geography, Planning and Development (Q1); Computer Networks and Communications (Q2); Energy Engineering and Power Technology (Q2); Environmental Science (miscellaneous) (Q2); Hardware and Architecture (Q2); Management, Monitoring, Policy and Law (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Computer Science; Energy; Environmental Science; Social Sciences" +7555;4400151708;"Zhongguo Shiyou Daxue Xuebao (Ziran Kexue Ban)/Journal of China University of Petroleum (Edition of Natural Science)";journal;"16735005";"University of Petroleum, China";No;No;0,750;Q1;39;151;401;4341;924;401;2,45;28,75;31,25;0;China;Asiatic Region;"University of Petroleum, China";"2006-2025";"Chemical Engineering (miscellaneous) (Q1); Mechanical Engineering (Q1); Control and Systems Engineering (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Chemical Engineering; Earth and Planetary Sciences; Energy; Engineering" +7556;21101147415;"American Heart Journal Plus: Cardiology Research and Practice";journal;"26666022";"Elsevier Inc.";Yes;No;0,750;Q2;19;177;384;6833;887;339;2,18;38,60;34,15;1;United States;Northern America;"Elsevier Inc.";"2021-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +7557;17300154707;"BMC Medical Genomics";journal;"17558794";"BioMed Central Ltd";Yes;No;0,750;Q2;102;201;883;8875;2175;879;2,56;44,15;43,10;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2008-2026";"Genetics (Q2); Genetics (clinical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7558;17309;"Neuroradiology";journal;"14321920, 00283940";"Springer Science and Business Media Deutschland GmbH";No;No;0,750;Q2;112;347;641;12048;1772;604;2,86;34,72;29,54;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1970-2026";"Cardiology and Cardiovascular Medicine (Q2); Neurology (clinical) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +7559;21197;"Pharmacology Biochemistry and Behavior";journal;"00913057, 18735177";"Elsevier Inc.";No;No;0,750;Q2;154;119;354;8750;979;348;2,54;73,53;54,18;0;United States;Northern America;"Elsevier Inc.";"1973-2026";"Biochemistry (Q2); Clinical Biochemistry (Q2); Pharmacology (Q2); Toxicology (Q2); Behavioral Neuroscience (Q3); Biological Psychiatry (Q3)";"Biochemistry, Genetics and Molecular Biology; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +7560;11700154372;"Disability and Rehabilitation: Assistive Technology";journal;"17483115, 17483107";"Taylor and Francis Ltd.";No;No;0,749;Q1;65;344;558;16139;2168;548;3,86;46,92;52,91;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Speech and Hearing (Q1); Biomedical Engineering (Q2); Orthopedics and Sports Medicine (Q2)";"Engineering; Health Professions; Medicine" +7561;21100910936;"International Journal of Oral Implantology";journal;"26316420, 26316439";"Quintessenz Verlags-GmbH";No;No;0,749;Q1;64;26;77;956;176;68;2,17;36,77;16,53;0;Germany;Western Europe;"Quintessenz Verlags-GmbH";"2019-2025";"Oral Surgery (Q1); Medicine (miscellaneous) (Q2)";"Dentistry; Medicine" +7562;17600155423;"International Journal of Transitional Justice";journal;"17527724, 17527716";"Oxford University Press";No;No;0,749;Q1;40;36;90;3297;204;84;2,10;91,58;58,70;0;United Kingdom;Western Europe;"Oxford University Press";"2011-2025";"Law (Q1)";"Social Sciences" +7563;28236;"Journal of Nursing Research";journal;"16823141, 1948965X";"Taiwan Nurses Association";Yes;Yes;0,749;Q1;51;55;185;1846;525;165;2,39;33,56;57,14;0;Taiwan;Asiatic Region;"Taiwan Nurses Association";"2001-2026";"Nursing (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +7564;20672;"Journal of Productivity Analysis";journal;"0895562X, 15730441";"Springer Netherlands";No;No;0,749;Q1;96;50;112;2378;303;110;2,68;47,56;23,76;2;Netherlands;Western Europe;"Springer Netherlands";"1989-2026";"Social Sciences (miscellaneous) (Q1); Business and International Management (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +7565;7100153133;"Spatial Economic Analysis";journal;"17421780, 17421772";"Routledge";No;No;0,749;Q1;44;82;99;4276;262;86;2,78;52,15;28,43;3;United Kingdom;Western Europe;"Routledge";"2006-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Geography, Planning and Development (Q1); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Earth and Planetary Sciences; Economics, Econometrics and Finance; Social Sciences" +7566;21397;"Acta Anaesthesiologica Scandinavica";journal;"13996576, 00015172";"Blackwell Munksgaard";No;No;0,749;Q2;129;192;516;5714;1059;463;1,85;29,76;40,98;0;Denmark;Western Europe;"Blackwell Munksgaard";"1957-2026";"Anesthesiology and Pain Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +7567;21101119538;"Clocks and Sleep";journal;"26245175";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,749;Q2;25;69;138;3968;434;137;3,56;57,51;52,93;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Neurology (Q2); Neuroscience (miscellaneous) (Q3)";"Neuroscience" +7568;21100925787;"AJIL Unbound";journal;"23987723";"Cambridge University Press";Yes;Yes;0,748;Q1;22;53;187;1651;252;177;1,33;31,15;69,44;1;United States;Northern America;"Cambridge University Press";"2013-2026";"Law (Q1)";"Social Sciences" +7569;4700151601;"Botanical Studies";journal;"1817406X, 19993110";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,748;Q1;67;39;105;2431;473;105;3,90;62,33;42,08;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2006-2026";"Plant Science (Q1)";"Agricultural and Biological Sciences" +7570;21101055706;"Children";journal;"22279067";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,748;Q1;68;1713;5481;84514;16041;5335;2,82;49,34;58,40;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2014-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +7571;62932;"Energies";journal;"19961073";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,748;Q1;201;6606;24199;347355;108343;23781;4,61;52,58;27,78;13;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2008-2026";"Control and Optimization (Q1); Engineering (miscellaneous) (Q1); Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Energy (miscellaneous) (Q2); Fuel Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Engineering; Mathematics" +7572;21100228081;"Journal of Nutrition and Metabolism";journal;"20900732, 20900724";"John Wiley and Sons Ltd";Yes;No;0,748;Q1;67;60;107;3381;404;107;3,75;56,35;46,04;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Food Science (Q1); Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)";"Agricultural and Biological Sciences; Medicine; Nursing" +7573;21100899441;"Journal of Structural Integrity and Maintenance";journal;"24705322, 24705314";"Taylor and Francis Ltd.";No;No;0,748;Q1;22;35;79;2049;336;79;4,98;58,54;21,30;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +7574;16614;"Plant Pathology";journal;"00320862, 13653059";"Wiley-Blackwell Publishing Ltd";No;No;0,748;Q1;114;209;508;13174;1607;495;2,96;63,03;43,95;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1952-2026";"Agronomy and Crop Science (Q1); Horticulture (Q1); Plant Science (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +7575;19477;"Shiyou Zuantan Jishu / Petroleum Drilling Techniques";journal;"10010890";"Science China Press";No;No;0,748;Q1;24;111;362;3062;864;362;2,80;27,59;27,20;0;China;Asiatic Region;"Science China Press";"1998, 2019-2025";"Civil and Structural Engineering (Q1)";"Engineering" +7576;6000195386;"Archives of Osteoporosis";journal;"18623522, 18623514";"Springer Science and Business Media Deutschland GmbH";No;No;0,748;Q2;54;147;402;5792;1090;388;2,43;39,40;43,96;0;United Kingdom;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2006-2026";"Orthopedics and Sports Medicine (Q2)";"Medicine" +7577;21100230018;"BioMed Research International";journal;"23146141, 23146133";"John Wiley and Sons Ltd";Yes;No;0,748;Q2;219;177;2016;8838;8149;2011;3,15;49,93;36,98;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +7578;15419;"Bioprocess and Biosystems Engineering";journal;"16157605, 16157591";"Springer Science and Business Media Deutschland GmbH";No;No;0,748;Q2;93;216;459;9546;2261;456;5,06;44,19;39,37;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-2026";"Bioengineering (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Medicine" +7579;22362;"Infezioni in Medicina";journal;"11249390";"EDIMES Edizioni Medico Scientifiche";Yes;No;0,748;Q2;39;52;207;2187;593;196;2,94;42,06;40,61;0;Italy;Western Europe;"EDIMES Edizioni Medico Scientifiche";"1997-2025";"Infectious Diseases (Q2); Microbiology (medical) (Q2)";"Medicine" +7580;144936;"Information Systems and e-Business Management";journal;"16179846, 16179854";"Springer Science and Business Media Deutschland GmbH";No;No;0,748;Q2;57;38;99;3377;588;97;5,85;88,87;28,43;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2003, 2005-2026";"Information Systems (Q2)";"Computer Science" +7581;21101132310;"Lifestyle Medicine";journal;"26883740";"John Wiley and Sons Inc";Yes;No;0,748;Q2;11;32;52;1743;116;37;2,27;54,47;58,49;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2020-2026";"Cardiology and Cardiovascular Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q2); Geriatrics and Gerontology (Q2); Health (social science) (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine; Social Sciences" +7582;17321;"Nuclear Medicine and Biology";journal;"09698051, 18729614";"Elsevier Inc.";No;No;0,748;Q2;103;71;164;3109;471;153;2,62;43,79;37,89;0;United States;Northern America;"Elsevier Inc.";"1986-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Cancer Research (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7583;25789;"Bioorganic Chemistry";journal;"00452068, 10902120";"Academic Press Inc.";No;No;0,747;Q1;106;1166;2173;72230;10923;2171;5,17;61,95;43,31;0;United States;Northern America;"Academic Press Inc.";"1971-2026";"Organic Chemistry (Q1); Biochemistry (Q2); Drug Discovery (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +7584;29301;"Clinical Anatomy";journal;"10982353, 08973806";"Wiley-Liss Inc.";No;No;0,747;Q1;99;137;384;5309;1114;359;2,63;38,75;33,56;0;United States;Northern America;"Wiley-Liss Inc.";"1988-2026";"Anatomy (Q1); Histology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +7585;27748;"Emerging Markets Finance and Trade";journal;"15580938, 1540496X";"Routledge";No;No;0,747;Q1;72;415;732;21692;2940;730;3,94;52,27;44,13;0;United States;Northern America;"Routledge";"2002-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q2)";"Economics, Econometrics and Finance" +7586;21100881655;"ICSID Review";journal;"02583690, 20491999";"Oxford University Press";No;No;0,747;Q1;29;25;111;2802;119;99;1,12;112,08;41,67;0;United Kingdom;Western Europe;"Oxford University Press";"1996-2025";"Law (Q1); Finance (Q2)";"Economics, Econometrics and Finance; Social Sciences" +7587;21100217205;"Journal of Borderlands Studies";journal;"21591229, 08865655";"Taylor and Francis Ltd.";No;No;0,747;Q1;33;110;162;6596;439;152;2,50;59,96;44,44;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2026";"Geography, Planning and Development (Q1); Law (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7588;21100210920;"Journal of Electronic Commerce Research";journal;"19389027, 15266133";"California State University, Long Beach";No;No;0,747;Q1;52;19;49;1755;237;49;4,97;92,37;40,00;0;United States;Northern America;"California State University, Long Beach";"2010-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Computer Science Applications (Q2)";"Computer Science; Economics, Econometrics and Finance" +7589;21100470126;"Journal of Marine Engineering and Technology";journal;"20464177, 20568487";"Taylor and Francis Ltd.";No;No;0,747;Q1;31;71;94;4048;424;93;4,62;57,01;23,91;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2006, 2009-2026";"Ocean Engineering (Q1)";"Engineering" +7590;12100156093;"Sport, Ethics and Philosophy";journal;"17511321, 1751133X";"Routledge";No;No;0,747;Q1;30;61;112;2623;248;103;2,41;43,00;16,88;0;United Kingdom;Western Europe;"Routledge";"2007-2026";"Philosophy (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)";"Arts and Humanities; Health Professions" +7591;21100215718;"Weather, Climate, and Society";journal;"19488335, 19488327";"American Meteorological Society";No;No;0,747;Q1;59;70;213;4440;603;210;2,57;63,43;47,26;0;United States;Northern America;"American Meteorological Society";"2009-2026";"Social Sciences (miscellaneous) (Q1); Atmospheric Science (Q2); Global and Planetary Change (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +7592;19900192585;"Air, Soil and Water Research";journal;"11786221";"SAGE Publications Inc.";Yes;No;0,747;Q2;32;36;95;2060;399;93;3,62;57,22;24,55;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2008-2026";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +7593;14258;"BMC Neurology";journal;"14712377";"BioMed Central Ltd";Yes;No;0,747;Q2;106;512;1426;19151;3849;1416;2,63;37,40;44,17;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)";"Medicine" +7594;17600155228;"International Journal of Fertility and Sterility";journal;"2008076X, 20080778";"Royan Institute (ACECR)";Yes;No;0,747;Q2;46;58;173;2027;502;172;2,46;34,95;60,00;0;Iran;Middle East;"Royan Institute (ACECR)";"2008-2026";"Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)";"Medicine" +7595;20808;"Immunologic Research";journal;"0257277X, 15590755";"Springer";No;No;0,747;Q3;109;177;299;9971;841;287;2,72;56,33;50,63;0;United States;Northern America;"Springer";"1986-2026";"Immunology (Q3)";"Immunology and Microbiology" +7596;21100396641;"Proceedings International Conference on Automated Planning and Scheduling, ICAPS";conference and proceedings;"23340835, 23340843";"Association for the Advancement of Artificial Intelligence";No;No;0,747;-;45;52;251;1377;575;246;2,45;26,48;17,73;0;United States;Northern America;"Association for the Advancement of Artificial Intelligence";"2014-2025";"Artificial Intelligence; Computer Science Applications; Information Systems and Management";"Computer Science; Decision Sciences" +7597;16304;"Adsorption Science and Technology";journal;"02636174, 20484038";"SAGE Publications Ltd";Yes;No;0,746;Q1;59;26;220;1324;1142;219;4,21;50,92;38,89;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1984-1985, 1989-2026";"Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2); Surfaces and Interfaces (Q2)";"Chemical Engineering; Chemistry; Physics and Astronomy" +7598;29450;"Applied Measurement in Education";journal;"15324818, 08957347";"Routledge";No;No;0,746;Q1;57;15;65;737;159;65;2,53;49,13;42,22;1;United States;Northern America;"Routledge";"1988-2026";"Education (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +7599;24680;"Diamond and Related Materials";journal;"09259635";"Elsevier B.V.";No;No;0,746;Q1;134;1199;2727;65424;14742;2726;5,60;54,57;31,81;0;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Mechanical Engineering (Q1); Physics and Astronomy (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +7600;5800209860;"Educational Philosophy and Theory";journal;"14695812, 00131857";"Taylor and Francis Ltd.";No;No;0,746;Q1;74;147;498;5935;1252;366;2,56;40,37;49,44;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1969-2026";"Education (Q1); History and Philosophy of Science (Q1)";"Arts and Humanities; Social Sciences" +7601;5700163951;"International Journal of Cultural Policy";journal;"14772833, 10286632";"Routledge";No;No;0,746;Q1;68;105;172;6718;528;169;2,77;63,98;57,53;5;United Kingdom;Western Europe;"Routledge";"1997-2026";"Cultural Studies (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7602;16241;"Journal of Law and Society";journal;"14676478, 0263323X";"Wiley-Blackwell Publishing Ltd";No;No;0,746;Q1;63;52;109;2002;249;107;1,59;38,50;54,29;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1983, 1985, 1988, 1991-1993, 1996-2026";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7603;17600155005;"Literacy Research and Instruction";journal;"19388071, 19388063";"Routledge";No;No;0,746;Q1;36;37;52;2474;136;52;2,21;66,86;74,42;0;United Kingdom;Western Europe;"Routledge";"2008-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +7604;21101056824;"Novaya i Novejshaya Istoriya";journal;"01303864";"Russian Academy of Sciences";No;No;0,746;Q1;6;101;292;3135;60;280;0,21;31,04;33,33;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"1972, 1986, 2000, 2002, 2019-2025";"History (Q1)";"Arts and Humanities" +7605;26439;"Social Science Quarterly";journal;"00384941, 15406237";"Wiley-Blackwell Publishing Ltd";No;No;0,746;Q1;114;138;354;7824;765;352;1,72;56,70;37,68;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1970, 1974, 1976-1984, 1987, 1989-1992, 1994, 1996-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +7606;19538;"Veterinary Pathology";journal;"15442217, 03009858";"SAGE Publications Ltd";No;No;0,746;Q1;118;134;320;4978;756;290;2,24;37,15;54,21;0;United States;Northern America;"SAGE Publications Ltd";"1964-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +7607;21100896304;"World Neurosurgery: X";journal;"25901397";"Elsevier Inc.";Yes;No;0,746;Q1;21;133;242;3774;634;235;2,65;28,38;21,67;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Surgery (Q1); Neurology (clinical) (Q2)";"Medicine" +7608;24759;"Addiction Research and Theory";journal;"16066359, 14767392";"Informa Healthcare";No;No;0,746;Q2;68;89;168;5009;510;141;2,93;56,28;52,83;1;United Kingdom;Western Europe;"Informa Healthcare";"1993-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +7609;19900192138;"Balkan Medical Journal";journal;"21463123, 21463131";"Galenos Publishing House";Yes;Yes;0,746;Q2;35;107;266;2507;567;137;2,32;23,43;42,49;0;Turkey;Middle East;"Galenos Publishing House";"2011-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +7610;25125;"Journal of Analytical Toxicology";journal;"19452403, 01464760";"Society of Forensic Toxicologists";No;No;0,746;Q2;92;93;383;2935;1038;369;2,61;31,56;55,24;0;United States;Northern America;"Society of Forensic Toxicologists";"1977-2025";"Analytical Chemistry (Q2); Chemical Health and Safety (Q2); Environmental Chemistry (Q2); Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2)";"Chemical Engineering; Chemistry; Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +7611;18922;"Journal of Gene Medicine";journal;"1099498X, 15212254";"John Wiley and Sons Ltd";No;No;0,746;Q2;104;62;323;3864;925;321;2,89;62,32;47,38;0;United States;Northern America;"John Wiley and Sons Ltd";"1998-2026";"Drug Discovery (Q2); Genetics (Q2); Genetics (clinical) (Q2); Molecular Biology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7612;21101041531;"Precision Radiation Oncology";journal;"23987324";"Wiley-Blackwell Publishing Ltd";Yes;No;0,746;Q2;14;38;92;1145;331;90;3,52;30,13;37,50;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2017-2026";"Oncology (Q2)";"Medicine" +7613;15300154803;"Anatomical Record";journal;"19328486, 19328494";"John Wiley & Sons Inc.";No;No;0,745;Q1;109;281;628;21577;1598;584;2,33;76,79;35,82;0;United States;Northern America;"John Wiley & Sons Inc.";"2007-2026";"Anatomy (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Biotechnology (Q2); Histology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +7614;21101080423;"Energetic Materials Frontiers";journal;"26666472";"KeAi Communications Co.";Yes;Yes;0,745;Q1;25;79;107;4095;526;103;4,91;51,84;31,23;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Chemical Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Materials Chemistry (Q2); Materials Science (miscellaneous) (Q2)";"Chemical Engineering; Engineering; Materials Science" +7615;21101132922;"e-Prime - Advances in Electrical Engineering, Electronics and Energy";journal;"27726711";"Elsevier Ltd";Yes;No;0,745;Q1;34;256;821;12366;4577;819;5,65;48,30;19,13;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Engineering (miscellaneous) (Q1); Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2)";"Energy; Engineering" +7616;11800154590;"IATSS Research";journal;"03861112";"Elsevier B.V.";Yes;No;0,745;Q1;47;50;168;2791;707;164;3,87;55,82;27,59;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Engineering (miscellaneous) (Q1); Safety Research (Q1); Urban Studies (Q1); Transportation (Q2)";"Engineering; Social Sciences" +7617;13738;"International Journal of Audiology";journal;"14992027, 17088186";"Taylor and Francis Ltd.";No;No;0,745;Q1;107;257;395;10303;982;375;2,38;40,09;57,31;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1962-2026";"Linguistics and Language (Q1); Speech and Hearing (Q1)";"Health Professions; Social Sciences" +7618;20614;"Journal of Food Science";journal;"00221147, 17503841";"Wiley-Blackwell";No;No;0,745;Q1;198;832;1515;47501;6819;1459;4,20;57,09;48,43;0;United States;Northern America;"Wiley-Blackwell";"1936-2026";"Food Science (Q1)";"Agricultural and Biological Sciences" +7619;12236;"Journal of Orofacial Orthopedics";journal;"16156714, 14345293";"Springer Medizin";No;No;0,745;Q1;57;106;174;3792;437;168;2,41;35,77;44,89;0;Germany;Western Europe;"Springer Medizin";"1996-2026";"Oral Surgery (Q1); Orthodontics (Q1); Medicine (miscellaneous) (Q2)";"Dentistry; Medicine" +7620;15719;"Pediatric Clinics of North America";journal;"00313955, 15578240";"W.B. Saunders";No;No;0,745;Q1;114;102;308;5292;678;242;1,94;51,88;71,56;1;United States;Northern America;"W.B. Saunders";"1953-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +7621;14617;"Yantu Lixue/Rock and Soil Mechanics";journal;"10007598";"";Yes;Yes;0,745;Q1;73;262;1245;8835;3032;1245;2,35;33,72;27,33;0;China;Asiatic Region;"";"1998-2025";"Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering" +7622;23629;"AI Magazine";journal;"07384602, 23719621";"John Wiley and Sons Inc";No;No;0,745;Q2;93;51;147;2613;723;131;3,93;51,24;25,61;0;United States;Northern America;"John Wiley and Sons Inc";"1984-1986, 1989-2026";"Artificial Intelligence (Q2)";"Computer Science" +7623;21100824046;"Computational Toxicology";journal;"24681113";"Elsevier B.V.";No;No;0,745;Q2;34;55;134;3198;523;129;3,54;58,15;39,11;1;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Computer Science Applications (Q2); Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2)";"Computer Science; Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +7624;21101017599;"Journal of Environmental Science and Health, Part C: Toxicology and Carcinogenesis";journal;"26896591, 26896583";"Taylor and Francis Ltd.";No;No;0,745;Q2;64;17;39;1639;160;39;5,13;96,41;49,18;0;United States;Northern America;"Taylor and Francis Ltd.";"2020-2026";"Health, Toxicology and Mutagenesis (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Environmental Science" +7625;13323;"Nutrition in Clinical Practice";journal;"19412452, 08845336";"John Wiley & Sons Inc.";No;No;0,745;Q2;99;178;439;7030;1285;403;2,84;39,49;62,09;0;United States;Northern America;"John Wiley & Sons Inc.";"1986-2026";"Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +7626;12400154748;"Population Health Management";journal;"19427905, 19427891";"Mary Ann Liebert Inc.";No;No;0,745;Q2;56;52;262;1533;450;223;1,37;29,48;51,00;1;United States;Northern America;"Mary Ann Liebert Inc.";"2008-2026";"Health Policy (Q2); Leadership and Management (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Nursing" +7627;5700157026;"Asia-Pacific Journal of Teacher Education";journal;"14692945, 1359866X";"Routledge";No;No;0,744;Q1;55;42;116;1652;327;91;3,03;39,33;73,24;0;United Kingdom;Western Europe;"Routledge";"2006-2026";"Education (Q1)";"Social Sciences" +7628;22730;"Canadian Journal of Philosophy";journal;"00455091, 19110820";"Cambridge University Press";No;No;0,744;Q1;44;27;136;915;248;136;0,39;33,89;28,57;0;United Kingdom;Western Europe;"Cambridge University Press";"1971-2026";"Philosophy (Q1)";"Arts and Humanities" +7629;16777;"Capitalism, Nature, Socialism";journal;"10455752, 15483290";"Taylor and Francis Ltd.";No;No;0,744;Q1;47;72;117;2632;193;77;1,57;36,56;53,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +7630;100147327;"Discourse";journal;"01596306, 14693739";"Routledge";Yes;No;0,744;Q1;75;113;174;5718;551;169;2,82;50,60;58,54;0;United Kingdom;Western Europe;"Routledge";"1980-2026";"Education (Q1); Linguistics and Language (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +7631;5700160310;"European Political Science";journal;"16820983, 16804333";"Cambridge University Press";No;No;0,744;Q1;38;60;99;2302;365;98;4,58;38,37;44,12;4;United Kingdom;Western Europe;"Cambridge University Press";"2005, 2008-2025";"Political Science and International Relations (Q1)";"Social Sciences" +7632;12100154903;"Food Science and Biotechnology";journal;"20926456, 12267708";"The Korean Society of Food Science and Technology";No;No;0,744;Q1;77;349;632;17589;2984;631;4,72;50,40;46,82;0;South Korea;Asiatic Region;"The Korean Society of Food Science and Technology";"2007-2026";"Food Science (Q1); Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +7633;21100935978;"Frontiers in Education";journal;"2504284X";"Frontiers Media SA";Yes;No;0,744;Q1;65;1537;3354;85706;11707;3175;3,33;55,76;53,15;14;Switzerland;Western Europe;"Frontiers Media SA";"2016-2026";"Education (Q1)";"Social Sciences" +7634;27784;"Journal of Marine Science and Technology";journal;"09484280, 14378213";"Springer";No;No;0,744;Q1;66;59;207;2311;652;207;2,67;39,17;17,14;0;Japan;Asiatic Region;"Springer";"1995-2026";"Mechanical Engineering (Q1); Mechanics of Materials (Q1); Ocean Engineering (Q1); Oceanography (Q2)";"Earth and Planetary Sciences; Engineering" +7635;4700152736;"Journal of School Violence";journal;"15388239, 15388220";"Routledge";No;No;0,744;Q1;56;66;118;3538;336;118;2,28;53,61;55,79;0;United States;Northern America;"Routledge";"2002-2026";"Education (Q1); Safety, Risk, Reliability and Quality (Q1)";"Engineering; Social Sciences" +7636;21100241213;"Journal of the International Association of Providers of AIDS Care";journal;"23259582, 23259574";"SAGE Publications Inc.";Yes;No;0,744;Q1;41;69;137;2531;324;135;1,95;36,68;58,26;0;United States;Northern America;"SAGE Publications Inc.";"2011, 2013-2026";"Dermatology (Q1); Infectious Diseases (Q2); Immunology (Q3)";"Immunology and Microbiology; Medicine" +7637;16531;"Physiological and Molecular Plant Pathology";journal;"10961178, 08855765";"Academic Press";No;No;0,744;Q1;96;426;555;34592;2490;553;4,26;81,20;39,51;2;United States;Northern America;"Academic Press";"1986-2026";"Plant Science (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +7638;21100344997;"Research Ethics";journal;"17470161, 20476094";"SAGE Publications Ltd";Yes;No;0,744;Q1;25;34;103;1662;364;97;3,77;48,88;60,68;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2014-2026";"Education (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +7639;18406;"Biochimica et Biophysica Acta - Biomembranes";journal;"00052736, 18792642";"Elsevier B.V.";No;No;0,744;Q2;228;68;368;4585;982;362;2,50;67,43;44,11;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Biochemistry (Q2); Biophysics (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +7640;21100854644;"Current Sleep Medicine Reports";journal;"21986401";"Springer Science and Business Media Deutschland GmbH";No;No;0,744;Q2;34;37;88;3546;254;86;3,19;95,84;57,53;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2015-2026";"Neurology (Q2); Neurology (clinical) (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine; Neuroscience" +7641;21101082052;"Global Health Journal";journal;"20963947, 24146447";"KeAi Communications Co.";Yes;No;0,744;Q2;27;40;99;1848;636;88;6,77;46,20;42,86;0;China;Asiatic Region;"KeAi Communications Co.";"2017-2025";"Medicine (miscellaneous) (Q2)";"Medicine" +7642;19700182124;"Health and Technology";journal;"21907196, 21907188";"Springer Science and Business Media Deutschland GmbH";No;No;0,744;Q2;45;115;291;4436;1375;289;3,91;38,57;36,30;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biomedical Engineering (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Immunology and Microbiology" +7643;21101278441;"Transactions on Machine Learning Research";journal;"28358856";"";Yes;Yes;0,744;Q2;41;1374;1791;91987;6324;1791;3,00;66,95;20,50;0;United States;Northern America;"";"2022-2026";"Artificial Intelligence (Q2); Computer Vision and Pattern Recognition (Q2)";"Computer Science" +7644;101474;"Canadian Journal of Mathematics";journal;"0008414X, 14964279";"Cambridge University Press";No;No;0,743;Q1;50;186;199;6363;188;199;0,79;34,21;19,76;0;Canada;Northern America;"Cambridge University Press";"1952, 1954, 1960, 1963, 1969-1971, 1973-1975, 1979, 1981, 1985, 1989, 1991-1994, 1996-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +7645;16944;"ChemBioChem";journal;"14394227, 14397633";"John Wiley and Sons Inc";No;No;0,743;Q1;152;568;1320;36311;3753;1311;2,92;63,93;38,80;0;Germany;Western Europe;"John Wiley and Sons Inc";"2000-2026";"Organic Chemistry (Q1); Biochemistry (Q2); Molecular Biology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +7646;20453;"International Journal of Pressure Vessels and Piping";journal;"03080161";"Elsevier B.V.";No;No;0,743;Q1;100;206;640;9023;2755;640;4,28;43,80;23,55;0;Netherlands;Western Europe;"Elsevier B.V.";"1973-2026";"Mechanical Engineering (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +7647;21101038577;"Journal of Mass Spectrometry and Advances in the Clinical Lab";journal;"2667145X, 26671468";"Elsevier B.V.";Yes;Yes;0,743;Q1;23;30;116;970;388;107;3,10;32,33;43,07;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2025";"Medical Laboratory Technology (Q1); Clinical Biochemistry (Q2); Microbiology (Q2); Spectroscopy (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Health Professions; Immunology and Microbiology" +7648;21911;"Journal of Neurosurgical Anesthesiology";journal;"15371921, 08984921";"Lippincott Williams and Wilkins";No;No;0,743;Q1;75;99;238;2419;479;180;2,28;24,43;36,00;0;United States;Northern America;"Lippincott Williams and Wilkins";"1989-2026";"Surgery (Q1); Anesthesiology and Pain Medicine (Q2); Neurology (clinical) (Q2)";"Medicine" +7649;56795;"Nutrient Cycling in Agroecosystems";journal;"15730867, 13851314";"Springer Nature";No;No;0,743;Q1;123;71;198;4764;637;189;3,43;67,10;25,88;3;Netherlands;Western Europe;"Springer Nature";"1996-2026";"Agronomy and Crop Science (Q1); Soil Science (Q2)";"Agricultural and Biological Sciences" +7650;12111;"Behavioral Medicine";journal;"19404026, 08964289";"Routledge";No;No;0,743;Q2;62;46;107;2411;289;106;2,36;52,41;62,37;0;United States;Northern America;"Routledge";"1988-2026";"Applied Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +7651;21101187717;"Digital";journal;"26736470";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,743;Q2;19;65;99;3589;608;98;6,32;55,22;32,80;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Computer Science (miscellaneous) (Q2)";"Computer Science" +7652;28027;"IEEE Power and Energy Magazine";journal;"15407977, 15584216";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,743;Q2;100;68;244;455;589;206;2,68;6,69;16,02;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2003-2026";"Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2)";"Energy; Engineering" +7653;21100242835;"Journal of Environmental Health Science and Engineering";journal;"2052336X";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,743;Q2;77;42;167;2570;679;167;4,13;61,19;40,45;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2012-2026";"Applied Microbiology and Biotechnology (Q2); Environmental Engineering (Q2); Health, Toxicology and Mutagenesis (Q2); Pollution (Q2); Public Health, Environmental and Occupational Health (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2)";"Environmental Science; Immunology and Microbiology; Medicine" +7654;14154;"Molecular Biology Reports";journal;"03014851, 15734978";"Springer Science and Business Media B.V.";No;No;0,743;Q2;103;1036;3157;64498;11148;3152;3,45;62,26;45,75;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1973-1988, 1990-2026";"Genetics (Q2); Medicine (miscellaneous) (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7655;21100399434;"Spanish Journal of Soil Science";journal;"22536574";"Frontiers Media SA";Yes;Yes;0,743;Q2;17;15;47;900;168;44;2,64;60,00;50,00;0;Switzerland;Western Europe;"Frontiers Media SA";"2011-2026";"Soil Science (Q2)";"Agricultural and Biological Sciences" +7656;21101226628;"Frontiers in Systems Biology";journal;"26740702";"Frontiers Media SA";Yes;No;0,742;Q1;12;24;134;1346;348;126;2,33;56,08;33,33;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Modeling and Simulation (Q1); Applied Mathematics (Q2)";"Mathematics" +7657;21101151498;"Futures and Foresight Science";journal;"25735152";"John Wiley and Sons Inc";No;No;0,742;Q1;17;41;70;2704;196;43;3,21;65,95;41,22;2;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Business, Management and Accounting (miscellaneous) (Q1); Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +7658;21100917113;"Internet Histories";journal;"24701483, 24701475";"Taylor and Francis Ltd.";No;No;0,742;Q1;17;20;64;1216;131;59;1,72;60,80;62,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2025";"History (Q1); Computer Science (miscellaneous) (Q2)";"Arts and Humanities; Computer Science" +7659;20608;"Journal of Global Information Management";journal;"10627375, 15337995";"IGI Publishing";No;No;0,742;Q1;55;84;249;6945;1237;249;5,31;82,68;33,33;0;United States;Northern America;"IGI Publishing";"2002-2026";"Information Systems and Management (Q1); Business and International Management (Q2); Computer Science Applications (Q2); E-learning (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences; Social Sciences" +7660;21698;"Journal of Knee Surgery";journal;"19382480, 15388506";"Georg Thieme Verlag";No;No;0,742;Q1;81;105;500;3354;1015;483;1,92;31,94;18,50;0;Germany;Western Europe;"Georg Thieme Verlag";"2002-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +7661;18946;"Journal of Molecular Evolution";journal;"14321432, 00222844";"Springer";No;No;0,742;Q1;142;70;174;5119;367;161;2,15;73,13;36,47;0;United States;Northern America;"Springer";"1971-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q2); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +7662;21100825823;"Pharmacology Research and Perspectives";journal;"20521707";"Wiley-Blackwell Publishing Ltd";Yes;No;0,742;Q1;53;157;370;7160;984;352;2,48;45,61;46,57;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2013-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Neurology (Q2)";"Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +7663;16018;"Quarterly Journal of Speech";journal;"00335630, 14795779";"Routledge";No;No;0,742;Q1;51;44;94;3125;165;72;1,95;71,02;48,65;0;United States;Northern America;"Routledge";"1915-2026";"Communication (Q1); Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +7664;145733;"Sexualities";journal;"14617382, 13634607";"SAGE Publications Ltd";No;No;0,742;Q1;79;152;223;8926;652;208;2,86;58,72;65,73;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1998-2026";"Anthropology (Q1); Gender Studies (Q1)";"Social Sciences" +7665;51878;"Medicina (Lithuania)";journal;"1010660X, 16489144";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,742;Q2;86;2242;6166;109544;19433;6077;3,11;48,86;43,27;2;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2002-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +7666;12646;"Pathology and Oncology Research";journal;"15322807, 12194956";"Frontiers Media SA";Yes;No;0,742;Q2;68;47;311;1952;791;305;2,53;41,53;46,52;0;Netherlands;Western Europe;"Frontiers Media SA";"1995-1996, 1998-2026";"Medicine (miscellaneous) (Q2); Oncology (Q2); Pathology and Forensic Medicine (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7667;21101278532;"RSC Applied Interfaces";journal;"27553701";"Royal Society of Chemistry";Yes;No;0,742;Q2;12;118;151;7986;664;150;4,40;67,68;32,07;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2024-2026";"Ceramics and Composites (Q2); Materials Chemistry (Q2); Materials Science (miscellaneous) (Q2); Surfaces, Coatings and Films (Q2)";"Materials Science" +7668;145295;"4OR";journal;"16142411, 16194500";"Springer";No;No;0,741;Q1;50;33;93;764;186;75;1,52;23,15;27,27;0;Germany;Western Europe;"Springer";"2003-2026";"Computational Theory and Mathematics (Q1); Management Information Systems (Q2); Management Science and Operations Research (Q2); Theoretical Computer Science (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences; Mathematics" +7669;4000148207;"Health Promotion Journal of Australia";journal;"10361073, 22011617";"John Wiley & Sons Inc.";No;No;0,741;Q1;46;199;394;8087;895;357;2,19;40,64;72,75;6;Australia;Pacific Region;"John Wiley & Sons Inc.";"2002-2026";"Community and Home Care (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Nursing" +7670;17882;"Nuclear Engineering and Design";journal;"00295493";"Elsevier B.V.";No;No;0,741;Q1;136;710;1781;27757;4399;1756;2,48;39,09;23,49;0;Netherlands;Western Europe;"Elsevier B.V.";"1965-2026";"Mechanical Engineering (Q1); Nuclear Energy and Engineering (Q1); Safety, Risk, Reliability and Quality (Q1); Materials Science (miscellaneous) (Q2); Nuclear and High Energy Physics (Q2); Waste Management and Disposal (Q2)";"Energy; Engineering; Environmental Science; Materials Science; Physics and Astronomy" +7671;12367;"Photogrammetric Record";journal;"14779730, 0031868X";"Wiley-Blackwell Publishing Ltd";No;No;0,741;Q1;61;38;150;2008;313;82;2,62;52,84;31,25;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1953-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Computer Science Applications (Q2); Computers in Earth Sciences (Q2)";"Computer Science; Earth and Planetary Sciences; Engineering" +7672;5700160451;"Politics and Religion";journal;"17550483";"Cambridge University Press";Yes;No;0,741;Q1;33;26;100;2209;224;98;2,27;84,96;40,48;0;United Kingdom;Western Europe;"Cambridge University Press";"2008-2026";"Religious Studies (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +7673;21101126971;"Sci";journal;"24134155";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,741;Q1;23;187;179;11354;1055;169;6,91;60,72;42,80;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +7674;21100217640;"ACM Transactions on Reconfigurable Technology and Systems";journal;"19367406, 19367414";"Association for Computing Machinery";No;No;0,741;Q2;39;46;178;2180;658;166;3,59;47,39;19,05;0;United States;Northern America;"Association for Computing Machinery";"2008-2025";"Computer Science (miscellaneous) (Q2)";"Computer Science" +7675;15433;"Developmental Neuroscience";journal;"03785866, 14219859";"S. Karger AG";No;No;0,741;Q2;97;65;122;4325;306;118;2,14;66,54;55,46;0;Switzerland;Western Europe;"S. Karger AG";"1978-1983, 1985-2026";"Developmental Neuroscience (Q2); Neurology (Q2)";"Neuroscience" +7676;51565;"International Dairy Journal";journal;"09586946";"Elsevier B.V.";No;No;0,741;Q2;168;238;612;13338;2587;612;3,96;56,04;49,29;1;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Applied Microbiology and Biotechnology (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology" +7677;21101060488;"International Journal of Cardiology: Cardiovascular Risk and Prevention";journal;"27724875";"Elsevier B.V.";Yes;No;0,741;Q2;18;193;213;6228;582;199;2,79;32,27;39,16;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2)";"Medicine" +7678;21101082070;"Oxford Open Materials Science";journal;"26336979";"Oxford University Press";Yes;No;0,741;Q2;16;22;55;1486;256;55;4,11;67,55;25,27;0;United States;Northern America;"Oxford University Press";"2021-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +7679;21100337102;"Sexual Medicine Reviews";journal;"20500513, 20500521";"Oxford University Press";No;No;0,741;Q2;55;62;194;5521;677;181;2,86;89,05;42,01;0;United Kingdom;Western Europe;"Oxford University Press";"2013-2026";"Dermatology (Q2); Obstetrics and Gynecology (Q2); Psychiatry and Mental Health (Q2); Reproductive Medicine (Q2); Urology (Q2); Behavioral Neuroscience (Q3); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +7680;10600153312;"Asian Nursing Research";journal;"20937482, 19761317";"Korean Society of Nursing Science";Yes;No;0,740;Q1;49;63;129;2763;404;127;3,13;43,86;64,15;0;South Korea;Asiatic Region;"Korean Society of Nursing Science";"2007-2026";"Nursing (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +7681;25889;"Discrete and Continuous Dynamical Systems - Series B";journal;"1553524X, 15313492";"American Institute of Mathematical Sciences";No;No;0,740;Q1;68;218;701;7226;1103;699;1,57;33,15;36,40;0;United States;Northern America;"American Institute of Mathematical Sciences";"2001-2026";"Discrete Mathematics and Combinatorics (Q1); Applied Mathematics (Q2)";"Mathematics" +7682;21100325142;"Journal of Pharmaceutical Policy and Practice";journal;"20523211";"Taylor and Francis Ltd.";Yes;No;0,740;Q1;40;144;408;5874;1165;388;2,56;40,79;52,62;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Pharmacy (Q1); Health Policy (Q2)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7683;11600153707;"Journal of Public Budgeting, Accounting and Financial Management";journal;"10963367, 19451814";"Emerald Group Publishing Ltd.";No;No;0,740;Q1;32;62;126;4486;502;121;3,55;72,35;48,32;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1995-1996, 2008, 2011-2026";"Business, Management and Accounting (miscellaneous) (Q1); Public Administration (Q1); Economics and Econometrics (Q2); Finance (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +7684;21100812569;"Journal of Social and Political Psychology";journal;"21953325";"PsychOpen";Yes;Yes;0,740;Q1;43;22;105;1343;233;102;2,02;61,05;48,78;0;Germany;Western Europe;"PsychOpen";"2013-2025";"Sociology and Political Science (Q1); Applied Psychology (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +7685;19900193277;"Western Journal of Emergency Medicine";journal;"1936900X, 19369018";"eScholarship";Yes;No;0,740;Q1;65;243;444;6508;1051;424;2,19;26,78;42,42;0;United States;Northern America;"eScholarship";"2011-2026";"Emergency Medicine (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +7686;4800153203;"Allergy, Asthma and Clinical Immunology";journal;"17101492, 17101484";"BioMed Central Ltd";Yes;No;0,740;Q2;61;51;292;1664;758;270;2,64;32,63;51,32;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2004-2026";"Pulmonary and Respiratory Medicine (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +7687;145178;"American Journal of Medical Genetics, Part B: Neuropsychiatric Genetics";journal;"15524841, 1552485X";"Wiley-Liss Inc.";No;No;0,740;Q2;142;55;79;3148;144;78;1,65;57,24;53,26;0;United States;Northern America;"Wiley-Liss Inc.";"1995-2026";"Psychiatry and Mental Health (Q2); Cellular and Molecular Neuroscience (Q3); Genetics (clinical) (Q3)";"Medicine; Neuroscience" +7688;13454;"Crisis";journal;"02275910, 21512396";"Hogrefe Publishing";No;No;0,740;Q2;70;51;189;1831;414;174;2,17;35,90;60,47;0;United States;Northern America;"Hogrefe Publishing";"1985-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +7689;13545;"Eating Behaviors";journal;"18737358, 14710153";"Elsevier Ltd";No;No;0,740;Q2;95;89;250;4386;750;248;2,86;49,28;70,47;0;United Kingdom;Western Europe;"Elsevier Ltd";"2000-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +7690;23375;"Journal of Environmental Quality";journal;"00472425, 15372537";"John Wiley & Sons Inc.";No;No;0,740;Q2;201;148;303;9457;816;300;2,75;63,90;37,74;3;United States;Northern America;"John Wiley & Sons Inc.";"1972-2026";"Environmental Engineering (Q2); Management, Monitoring, Policy and Law (Q2); Pollution (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2)";"Environmental Science" +7691;16086;"Journal of Microbiology and Biotechnology";journal;"17388872, 10177825";"Korean Society for Microbiolog and Biotechnology";No;No;0,740;Q2;95;338;636;13452;2422;636;3,55;39,80;45,77;0;South Korea;Asiatic Region;"Korean Society for Microbiolog and Biotechnology";"1991, 1996-2026";"Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +7692;12427;"Melanoma Research";journal;"14735636, 09608931";"Lippincott Williams and Wilkins";No;No;0,740;Q2;86;68;217;1808;371;197;1,73;26,59;52,11;0;United States;Northern America;"Lippincott Williams and Wilkins";"1991-2026";"Dermatology (Q2); Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7693;17293;"Molecular Imaging and Biology";journal;"15361632, 18602002";"Springer Science and Business Media Deutschland GmbH";No;No;0,740;Q2;83;110;309;4579;846;299;2,79;41,63;38,56;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2002-2026";"Oncology (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7694;21101277762;"Next Nanotechnology";journal;"29498295";"Elsevier B.V.";Yes;No;0,740;Q2;15;221;89;18842;498;85;5,60;85,26;35,34;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Chemistry; Materials Science" +7695;19560;"Stress";journal;"16078888, 10253890";"Taylor and Francis Ltd.";Yes;No;0,740;Q2;101;30;113;1610;337;109;3,14;53,67;54,23;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Neuropsychology and Physiological Psychology (Q2); Physiology (Q2); Psychiatry and Mental Health (Q2); Behavioral Neuroscience (Q3); Endocrine and Autonomic Systems (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience; Psychology" +7696;27256;"Molecular and Cellular Probes";journal;"10961194, 08908508";"Academic Press";Yes;No;0,740;Q3;81;53;153;3195;451;152;3,08;60,28;46,98;0;United States;Northern America;"Academic Press";"1987-2026";"Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +7697;21101078840;"Current Research in Insect Science";journal;"26665158";"Elsevier B.V.";Yes;No;0,739;Q1;13;16;72;1311;237;71;2,73;81,94;46,38;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1)";"Agricultural and Biological Sciences" +7698;28465;"Economic Development Quarterly";journal;"15523543, 08912424";"SAGE Publications Inc.";No;No;0,739;Q1;59;21;79;904;180;56;1,85;43,05;43,14;2;United States;Northern America;"SAGE Publications Inc.";"1987-2026";"Development (Q1); Urban Studies (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +7699;21100847432;"Fibers";journal;"20796439";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,739;Q1;57;166;330;10084;1673;328;4,60;60,75;32,75;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Civil and Structural Engineering (Q1); Mechanics of Materials (Q1); Biomaterials (Q2); Ceramics and Composites (Q2)";"Engineering; Materials Science" +7700;21101107986;"Frontiers in Virtual Reality";journal;"26734192";"Frontiers Media SA";Yes;No;0,739;Q1;47;171;454;9776;2383;420;4,33;57,17;35,60;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q2); Human-Computer Interaction (Q2)";"Computer Science" +7701;21100411756;"Heliyon";journal;"24058440";"Elsevier Ltd";Yes;No;0,739;Q1;145;2703;31077;130360;158320;31043;4,95;48,23;37,69;20;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +7702;19900193845;"International Journal of Microbiology";journal;"16879198, 1687918X";"John Wiley and Sons Ltd";Yes;No;0,739;Q1;69;114;188;6583;832;188;3,81;57,75;44,30;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Microbiology (Q2); Microbiology (medical) (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +7703;21101030141;"JMIR Pediatrics and Parenting";journal;"25616722";"JMIR Publications Inc.";Yes;No;0,739;Q1;28;75;248;3604;710;246;2,30;48,05;60,04;0;Canada;Northern America;"JMIR Publications Inc.";"2018-2026";"Pediatrics, Perinatology and Child Health (Q1); Biomedical Engineering (Q2); Health Informatics (Q2)";"Engineering; Medicine" +7704;21100258760;"Journal of Economic Asymmetries";journal;"17034949";"Elsevier B.V.";No;No;0,739;Q1;30;48;137;2717;601;134;4,00;56,60;26,09;2;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +7705;21100903415;"Journal of Professional Capital and Community";journal;"20569548, 20569556";"Emerald Group Publishing Ltd.";No;No;0,739;Q1;31;52;73;2857;259;71;2,68;54,94;53,08;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2016-2026";"Communication (Q1); Education (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +7706;13953;"Journal of Urban Design";journal;"14699664, 13574809";"Routledge";No;No;0,739;Q1;68;77;113;3471;324;97;2,59;45,08;45,39;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1)";"Arts and Humanities; Social Sciences" +7707;19524;"Veterinary Journal";journal;"15322971, 10900233";"Bailliere Tindall Ltd";No;No;0,739;Q1;139;170;297;8135;796;292;2,64;47,85;49,00;0;United Kingdom;Western Europe;"Bailliere Tindall Ltd";"1997-2026";"Animal Science and Zoology (Q1); Veterinary (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Veterinary" +7708;12717;"Journal of Nutrition Education and Behavior";journal;"14994046, 18782620";"Elsevier Inc.";No;No;0,739;Q2;103;144;369;5734;744;288;1,74;39,82;74,88;1;United States;Northern America;"Elsevier Inc.";"1996-2026";"Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)";"Medicine; Nursing" +7709;16134;"Process Biochemistry";journal;"18733298, 13595113";"Elsevier Ltd";No;No;0,739;Q2;195;243;1058;17308;5507;1057;5,10;71,23;43,25;0;United Kingdom;Western Europe;"Elsevier Ltd";"1950, 1953-1955, 1973-1975, 1979-2026";"Applied Microbiology and Biotechnology (Q2); Biochemistry (Q2); Bioengineering (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +7710;21100901800;"Rheumatology Advances in Practice";journal;"25141775";"Oxford University Press";Yes;No;0,739;Q2;24;141;362;4167;611;251;1,85;29,55;52,95;1;United Kingdom;Western Europe;"Oxford University Press";"2017-2026";"Rheumatology (Q2)";"Medicine" +7711;19384;"Seminars in Neurology";journal;"10989021, 02718235";"Thieme Medical Publishers, Inc.";No;No;0,739;Q2;92;72;250;5397;572;218;2,16;74,96;38,60;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1983-1984, 1986-2026";"Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +7712;5700161756;"Anthropological Theory";journal;"14634996, 17412641";"SAGE Publications Ltd";No;No;0,738;Q1;70;28;63;1780;129;63;1,60;63,57;32,26;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +7713;19900191728;"Arthropod Systematics and Phylogeny";journal;"18637221, 18648312";"Staatliche Naturhistorische Sammlungen Dresden";Yes;Yes;0,738;Q1;31;28;101;1723;225;101;2,26;61,54;29,58;0;Germany;Western Europe;"Staatliche Naturhistorische Sammlungen Dresden";"2009-2025";"Insect Science (Q1); Genetics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +7714;27169;"Biological Research for Nursing";journal;"15524175, 10998004";"SAGE Publications Inc.";No;No;0,738;Q1;64;58;160;2833;470;159;2,72;48,84;58,16;0;United States;Northern America;"SAGE Publications Inc.";"1999-2026";"Research and Theory (Q1)";"Nursing" +7715;28148;"Eurasian Geography and Economics";journal;"15387216";"Taylor and Francis Ltd.";No;No;0,738;Q1;62;68;102;4893;327;96;2,95;71,96;33,05;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Geography, Planning and Development (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +7716;12100155706;"Journal of Language, Identity and Education";journal;"15327701, 15348458";"Routledge";No;No;0,738;Q1;42;149;167;7668;523;160;3,01;51,46;66,67;1;United Kingdom;Western Europe;"Routledge";"2007, 2009-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +7717;26945;"Studia Mathematica";journal;"00393223, 17306337";"Institute of Mathematics. Polish Academy of Sciences";No;No;0,738;Q1;60;35;217;1091;189;217;0,88;31,17;17,98;0;Poland;Eastern Europe;"Institute of Mathematics. Polish Academy of Sciences";"1996-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +7718;19652;"European Journal of Mineralogy";journal;"16174011, 09351221";"Copernicus Publications";Yes;No;0,738;Q2;86;60;166;3734;312;166;1,85;62,23;34,92;0;Germany;Western Europe;"Copernicus Publications";"1989-2026";"Geochemistry and Petrology (Q2)";"Earth and Planetary Sciences" +7719;24185;"Expert Systems";journal;"14680394, 02664720";"Wiley-Blackwell Publishing Ltd";No;No;0,738;Q2;69;385;764;21073;3683;741;4,62;54,74;26,95;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1984-2026";"Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Control and Systems Engineering (Q2); Theoretical Computer Science (Q2)";"Computer Science; Engineering; Mathematics" +7720;21100794600;"Managing Sport and Leisure";journal;"23750480, 23750472";"Taylor and Francis Ltd.";No;No;0,738;Q2;50;186;189;11601;707;162;3,40;62,37;37,09;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting" +7721;24726;"Annals of Pure and Applied Logic";journal;"01680072";"Elsevier B.V.";No;No;0,737;Q1;55;79;225;2173;193;222;0,88;27,51;15,11;0;Netherlands;Western Europe;"Elsevier B.V.";"1974, 1983-2026";"Logic (Q1)";"Mathematics" +7722;18300156706;"Electronic News";journal;"1931244X, 19312431";"Routledge";No;No;0,737;Q1;22;17;40;870;83;37;1,79;51,18;46,88;0;United States;Northern America;"Routledge";"2009-2026";"Communication (Q1); Information Systems (Q2)";"Computer Science; Social Sciences" +7723;21100403126;"European Politics and Society";journal;"23745126, 23745118";"Taylor and Francis Ltd.";No;No;0,737;Q1;38;98;130;6625;375;125;3,13;67,60;37,20;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7724;20321;"International Journal of Offender Therapy and Comparative Criminology";journal;"0306624X, 15526933";"SAGE Publications Inc.";No;No;0,737;Q1;78;167;288;9577;737;283;2,26;57,35;58,57;0;United States;Northern America;"SAGE Publications Inc.";"1966-2026";"Arts and Humanities (miscellaneous) (Q1); Applied Psychology (Q2); Pathology and Forensic Medicine (Q2)";"Arts and Humanities; Medicine; Psychology" +7725;200147111;"International Journal of Qualitative Studies in Education";journal;"09518398, 13665898";"Routledge";No;No;0,737;Q1;87;197;451;11733;1105;430;2,42;59,56;69,15;0;United Kingdom;Western Europe;"Routledge";"1988-2026";"Education (Q1)";"Social Sciences" +7726;21101248689;"Journal of Abdominal Wall Surgery";journal;"28132092";"Frontiers Media SA";Yes;No;0,737;Q1;10;72;100;1992;273;82;2,72;27,67;31,99;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Surgery (Q1)";"Medicine" +7727;20637;"Journal of Management Development";journal;"02621711";"Emerald Publishing";No;No;0,737;Q1;85;73;115;4570;591;112;5,22;62,60;44,17;0;United Kingdom;Western Europe;"Emerald Publishing";"1982-2026";"Business, Management and Accounting (miscellaneous) (Q1); History (Q1); Organizational Behavior and Human Resource Management (Q2)";"Arts and Humanities; Business, Management and Accounting" +7728;145397;"Journal of Material Cycles and Waste Management";journal;"16118227, 14384957";"Springer";No;No;0,737;Q1;75;318;782;20366;3487;779;4,47;64,04;33,94;0;Japan;Asiatic Region;"Springer";"2002-2003, 2005-2026";"Mechanics of Materials (Q1); Waste Management and Disposal (Q2)";"Engineering; Environmental Science" +7729;21100981758;"Journal of Ocean Engineering and Science";journal;"24680133";"Shanghai Jiaotong University";Yes;Yes;0,737;Q1;44;120;264;6318;1279;264;5,50;52,65;26,00;0;China;Asiatic Region;"Shanghai Jiaotong University";"2016-2025";"Ocean Engineering (Q1); Environmental Engineering (Q2); Oceanography (Q2)";"Earth and Planetary Sciences; Engineering; Environmental Science" +7730;17622;"Journal of Photochemistry and Photobiology B: Biology";journal;"18732682, 10111344";"Elsevier B.V.";No;No;0,737;Q1;164;162;438;9167;1830;438;4,08;56,59;44,15;0;Netherlands;Western Europe;"Elsevier B.V.";"1987-2026";"Radiation (Q1); Biophysics (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Physics and Astronomy" +7731;15739;"Pediatric Infectious Disease Journal";journal;"08913668, 15320987";"Lippincott Williams and Wilkins";No;No;0,737;Q1;166;500;1150;11249;2021;931;1,70;22,50;58,83;0;United States;Northern America;"Lippincott Williams and Wilkins";"1982-2026";"Pediatrics, Perinatology and Child Health (Q1); Infectious Diseases (Q2); Microbiology (medical) (Q2)";"Medicine" +7732;5700168360;"Police Practice and Research";journal;"15614263, 1477271X";"Routledge";No;No;0,737;Q1;44;68;141;3724;388;139;2,82;54,76;51,11;0;United Kingdom;Western Europe;"Routledge";"2009-2026";"Law (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +7733;21101060462;"Results in Control and Optimization";journal;"26667207";"Elsevier B.V.";Yes;No;0,737;Q1;28;122;363;5316;1881;363;5,32;43,57;22,60;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Control and Optimization (Q1); Modeling and Simulation (Q1); Applied Mathematics (Q2); Artificial Intelligence (Q2); Control and Systems Engineering (Q2)";"Computer Science; Engineering; Mathematics" +7734;21100833833;"Robotics";journal;"22186581";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,737;Q1;59;190;502;9871;2281;497;4,49;51,95;21,03;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Control and Optimization (Q1); Mechanical Engineering (Q1); Artificial Intelligence (Q2)";"Computer Science; Engineering; Mathematics" +7735;12547;"Australian and New Zealand Journal of Obstetrics and Gynaecology";journal;"1479828X, 00048666";"Wiley-Blackwell";No;No;0,737;Q2;81;126;390;3102;664;326;1,60;24,62;65,38;2;United States;Northern America;"Wiley-Blackwell";"1961-2026";"Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)";"Medicine" +7736;22539;"Cretaceous Research";journal;"1095998X, 01956671";"Academic Press";No;No;0,736;Q1;88;129;666;13019;1364;660;2,00;100,92;27,00;0;United States;Northern America;"Academic Press";"1980-2026";"Paleontology (Q1)";"Earth and Planetary Sciences" +7737;14119;"Disasters";journal;"03613666, 14677717";"Wiley-Blackwell Publishing Ltd";No;No;0,736;Q1;93;58;157;3881;543;156;2,97;66,91;44,08;6;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1977-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)";"Earth and Planetary Sciences; Social Sciences" +7738;26041;"Economics and Human Biology";journal;"18736130, 1570677X";"Elsevier B.V.";No;No;0,736;Q1;73;82;274;4941;624;271;2,20;60,26;40,74;0;Netherlands;Western Europe;"Elsevier B.V.";"2003-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Health (social science) (Q2)";"Economics, Econometrics and Finance; Social Sciences" +7739;21100369721;"Journal of Archaeological Science: Reports";journal;"2352409X";"Elsevier B.V.";No;No;0,736;Q1;52;541;1404;39468;2508;1392;1,75;72,95;44,03;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +7740;5700162170;"Journal of Hispanic Higher Education";journal;"15381927, 15525716";"SAGE Publications Inc.";No;No;0,736;Q1;48;26;80;1187;192;75;1,70;45,65;58,02;0;United States;Northern America;"SAGE Publications Inc.";"2002-2026";"Education (Q1)";"Social Sciences" +7741;3900148215;"Language Variation and Change";journal;"14698021, 09543945";"Cambridge University Press";No;No;0,736;Q1;64;10;45;647;79;45;1,65;64,70;52,63;0;United Kingdom;Western Europe;"Cambridge University Press";"1989-2026";"Education (Q1); Linguistics and Language (Q1)";"Social Sciences" +7742;26522;"Mediterranean Politics";journal;"17439418, 13629395";"Routledge";No;No;0,736;Q1;45;89;107;4951;252;100;2,00;55,63;41,80;14;United Kingdom;Western Europe;"Routledge";"1996-2026";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +7743;21100204917;"Statistics Education Research Journal";journal;"15701824";"International Association for Statistical Education";Yes;No;0,736;Q1;24;12;75;559;125;66;1,06;46,58;60,00;0;Netherlands;Western Europe;"International Association for Statistical Education";"2011-2025";"Education (Q1); Statistics and Probability (Q2)";"Mathematics; Social Sciences" +7744;19700201439;"Studying Teacher Education";journal;"17425972, 17425964";"Taylor and Francis Ltd.";No;No;0,736;Q1;30;25;65;1194;135;56;1,57;47,76;78,85;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2025";"Education (Q1)";"Social Sciences" +7745;23751;"Hypertension in Pregnancy";journal;"10641955, 15256065";"Taylor and Francis Ltd.";Yes;No;0,736;Q2;57;27;62;1518;148;60;2,84;56,22;51,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-2026";"Internal Medicine (Q2); Obstetrics and Gynecology (Q2)";"Medicine" +7746;19935;"International Journal of Urology";journal;"14422042, 09198172";"Wiley-Blackwell Publishing Ltd";No;No;0,736;Q2;88;338;818;6739;1343;513;1,80;19,94;13,74;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Urology (Q2)";"Medicine" +7747;21921;"Minerva Anestesiologica";journal;"18271596, 03759393";"Edizioni Minerva Medica S.p.A.";No;No;0,736;Q2;77;216;569;4565;978;309;1,94;21,13;41,22;0;Italy;Western Europe;"Edizioni Minerva Medica S.p.A.";"1953-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +7748;19700188345;"Small GTPases";journal;"21541256, 21541248";"Taylor and Francis Ltd.";No;No;0,736;Q2;54;0;34;0;70;33;1,63;0,00;0,00;0;United States;Northern America;"Taylor and Francis Ltd.";"2010-2024";"Biochemistry (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +7749;19700166506;"Tobacco Induced Diseases";journal;"16179625, 20707266";"European Publishing";Yes;No;0,736;Q2;44;196;452;6319;1129;440;2,52;32,24;47,59;0;United Kingdom;Western Europe;"European Publishing";"2009-2026";"Health (social science) (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +7750;72911;"African Archaeological Review";journal;"15729842, 02630338";"Springer International Publishing AG";No;No;0,735;Q1;49;42;102;3778;141;78;1,20;89,95;38,17;0;Switzerland;Western Europe;"Springer International Publishing AG";"1983-1994, 1996-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +7751;23488;"Current Medicinal Chemistry";journal;"09298673, 1875533X";"Bentham Science Publishers";No;No;0,735;Q1;218;716;955;65900;3581;886;3,76;92,04;41,40;1;United Arab Emirates;Middle East;"Bentham Science Publishers";"1994-2026";"Organic Chemistry (Q1); Biochemistry (Q2); Drug Discovery (Q2); Pharmacology (Q2); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +7752;21101272909;"Discover Environment";journal;"27319431";"Springer Nature";Yes;No;0,735;Q1;14;297;161;22856;756;159;4,70;76,96;24,76;2;United Kingdom;Western Europe;"Springer Nature";"2023-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Earth-Surface Processes (Q1); Atmospheric Science (Q2); Waste Management and Disposal (Q2)";"Earth and Planetary Sciences; Environmental Science" +7753;29696;"European Journal of Orthopaedic Surgery and Traumatology";journal;"14321068, 16338065";"";No;No;0,735;Q1;56;426;1129;12183;2293;1103;2,03;28,60;18,04;0;France;Western Europe;"";"1995-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +7754;21100900055;"Fermentation";journal;"23115637";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,735;Q1;76;703;2438;44480;11835;2399;4,69;63,27;47,97;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2026";"Plant Science (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +7755;21101258752;"International Journal of Industrial Engineering and Operations Management";journal;"26906090, 26906104";"Emerald Publishing";Yes;Yes;0,735;Q1;12;31;33;2087;213;32;6,10;67,32;23,91;0;United Kingdom;Western Europe;"Emerald Publishing";"2022-2026";"Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q2); Renewable Energy, Sustainability and the Environment (Q2); Safety, Risk, Reliability and Quality (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Energy; Engineering" +7756;14500154733;"Operational Research";journal;"11092858, 18661505";"Springer Verlag";No;No;0,735;Q1;41;112;323;5918;1317;323;3,42;52,84;32,57;0;Germany;Western Europe;"Springer Verlag";"2009-2026";"Modeling and Simulation (Q1); Numerical Analysis (Q1); Computational Theory and Mathematics (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Statistics, Probability and Uncertainty (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences; Mathematics" +7757;29120;"Physica D: Nonlinear Phenomena";journal;"01672789";"Elsevier B.V.";No;No;0,735;Q1;157;483;862;23409;2479;857;2,94;48,47;23,69;0;Netherlands;Western Europe;"Elsevier B.V.";"1980-2026";"Condensed Matter Physics (Q1); Mathematical Physics (Q1); Applied Mathematics (Q2); Statistical and Nonlinear Physics (Q2)";"Mathematics; Physics and Astronomy" +7758;144604;"Proceedings of the Royal Society A: Mathematical, Physical and Engineering Sciences";journal;"13645021, 14712946";"Royal Society Publishing";Yes;No;0,735;Q1;173;369;744;19569;2329;736;2,73;53,03;18,64;0;United Kingdom;Western Europe;"Royal Society Publishing";"1976-1977, 1983, 1987-1988, 1990-2026";"Engineering (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Engineering; Mathematics; Physics and Astronomy" +7759;25793;"Quaternary Research (United States)";journal;"10960287, 00335894";"Cambridge University Press";No;No;0,735;Q1;135;63;211;5198;430;207;1,88;82,51;39,64;0;United States;Northern America;"Cambridge University Press";"1970-2026";"Arts and Humanities (miscellaneous) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Earth-Surface Processes (Q1)";"Arts and Humanities; Earth and Planetary Sciences" +7760;27938;"Review of African Political Economy";journal;"03056244, 17401720";"Routledge";No;No;0,735;Q1;65;16;136;686;257;90;1,71;42,88;28,57;0;United Kingdom;Western Europe;"Routledge";"1974-2025";"Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +7761;19600166311;"Current Fungal Infection Reports";journal;"19363761, 1936377X";"Springer";No;No;0,735;Q2;39;22;70;1675;244;70;4,08;76,14;53,42;1;United States;Northern America;"Springer";"2008-2026";"Infectious Diseases (Q2)";"Medicine" +7762;21100817528;"Energy Science and Engineering";journal;"20500505";"John Wiley and Sons Ltd";Yes;No;0,735;Q2;65;425;918;20154;4082;915;4,01;47,42;25,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Energy (miscellaneous) (Q2); Safety, Risk, Reliability and Quality (Q2)";"Energy; Engineering" +7763;28062;"International Tax and Public Finance";journal;"15736970, 09275940";"Springer New York";No;No;0,735;Q2;60;102;164;4299;283;161;1,52;42,15;29,57;20;United States;Northern America;"Springer New York";"1994-2026";"Accounting (Q2); Economics and Econometrics (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +7764;24756;"Match";journal;"03406253";"University of Kragujevac, Faculty of Science";No;No;0,735;Q2;77;77;203;2279;449;202;2,24;29,60;25,00;0;Serbia;Eastern Europe;"University of Kragujevac, Faculty of Science";"1990, 1996-2026";"Applied Mathematics (Q2); Chemistry (miscellaneous) (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2)";"Chemistry; Computer Science; Mathematics" +7765;20645;"Thrombosis Journal";journal;"14779560";"BioMed Central Ltd";Yes;No;0,735;Q2;54;123;310;5152;832;303;2,74;41,89;37,97;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Hematology (Q2)";"Medicine" +7766;21100853510;"World Journal of Oncology";journal;"19204531, 1920454X";"Elmer Press";No;No;0,735;Q2;17;63;194;2487;455;185;2,23;39,48;37,58;0;Canada;Northern America;"Elmer Press";"2014-2016, 2020-2026";"Oncology (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7767;21100935201;"ACM Transactions on Cyber-Physical Systems";journal;"23789638, 2378962X";"Association for Computing Machinery";No;No;0,734;Q1;32;44;112;2311;412;107;3,58;52,52;20,00;0;United States;Northern America;"Association for Computing Machinery";"2017-2025";"Control and Optimization (Q1); Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Human-Computer Interaction (Q2)";"Computer Science; Mathematics" +7768;19700174607;"Journal of Computational Science";journal;"18777503";"Elsevier B.V.";No;No;0,734;Q1;78;180;626;9094;2774;622;4,41;50,52;25,55;0;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Modeling and Simulation (Q1); Computer Science (miscellaneous) (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +7769;21100242617;"Journal of Information, Communication and Ethics in Society";journal;"17588871, 1477996X";"Emerald Group Publishing Ltd.";No;No;0,734;Q1;36;61;93;3713;512;91;6,25;60,87;47,01;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003-2026";"Communication (Q1); Philosophy (Q1); Sociology and Political Science (Q1); Computer Networks and Communications (Q2); E-learning (Q2)";"Arts and Humanities; Computer Science; Social Sciences" +7770;18609;"Journal of Wildlife Management";journal;"19372817, 0022541X";"Wiley-Blackwell";No;No;0,734;Q1;133;170;432;11170;930;389;1,96;65,71;35,88;5;United States;Northern America;"Wiley-Blackwell";"1973-1974, 1976-2026";"Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)";"Agricultural and Biological Sciences; Environmental Science" +7771;12169;"Marine Ecology Progress Series";journal;"01718630, 16161599";"Inter-Research";No;No;0,734;Q1;232;256;845;22167;2036;844;2,27;86,59;40,96;4;Germany;Western Europe;"Inter-Research";"1984-1988, 1990-2025";"Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Ecology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +7772;12100155921;"Social Policy and Society";journal;"14753073, 14747464";"Cambridge University Press";No;No;0,734;Q1;43;85;193;5717;613;186;2,50;67,26;63,58;0;United Kingdom;Western Europe;"Cambridge University Press";"2011, 2013-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7773;12041;"Applied Psychophysiology Biofeedback";journal;"15733270, 10900586";"Springer";No;No;0,734;Q2;81;90;117;5275;399;113;3,12;58,61;48,41;0;United States;Northern America;"Springer";"1997-2026";"Applied Psychology (Q2); Neuropsychology and Physiological Psychology (Q2)";"Psychology" +7774;12600154709;"Geriatrics and Gerontology International";journal;"14441586, 14470594";"John Wiley and Sons Inc";No;No;0,734;Q2;88;347;663;9131;1406;460;1,91;26,31;34,97;1;United States;Northern America;"John Wiley and Sons Inc";"2004, 2008-2026";"Geriatrics and Gerontology (Q2); Gerontology (Q2); Health (social science) (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Nursing; Social Sciences" +7775;21100217612;"Industrial and Organizational Psychology";journal;"17549426, 17549434";"Cambridge University Press";No;No;0,734;Q2;57;80;268;2407;427;74;1,69;30,09;50,60;0;United Kingdom;Western Europe;"Cambridge University Press";"2008-2026";"Applied Psychology (Q2); Social Psychology (Q2)";"Psychology" +7776;13533;"Journal of the Royal Statistical Society. Series C: Applied Statistics";journal;"00359254, 14679876";"Oxford University Press";No;No;0,734;Q2;85;74;237;3029;362;220;1,42;40,93;35,47;0;United Kingdom;Western Europe;"Oxford University Press";"1981, 1983-1991, 1993, 1996-2026";"Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +7777;12366;"Photogrammetric Engineering and Remote Sensing";journal;"00991112";"American Society for Photogrammetry and Remote Sensing";No;No;0,734;Q2;148;69;242;2312;466;182;2,26;33,51;35,85;0;United States;Northern America;"American Society for Photogrammetry and Remote Sensing";"1975-2026";"Computers in Earth Sciences (Q2)";"Earth and Planetary Sciences" +7778;19700180840;"Photonic Sensors";journal;"21907439, 16749251";"Tsinghua University Press";Yes;Yes;0,734;Q2;53;51;98;2681;458;98;5,48;52,57;30,98;0;Germany;Western Europe;"Tsinghua University Press";"2011-2025";"Atomic and Molecular Physics, and Optics (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Materials Science; Physics and Astronomy" +7779;27993;"Plant Foods for Human Nutrition";journal;"15739104, 09219668";"Springer";No;No;0,734;Q2;107;201;302;7553;1368;294;4,36;37,58;54,51;0;United States;Northern America;"Springer";"1987-2026";"Chemistry (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Chemistry" +7780;21100851481;"Frontiers in Pediatrics";journal;"22962360";"Frontiers Media SA";Yes;No;0,733;Q1;95;1574;5398;54306;13299;5170;2,17;34,50;51,51;1;Switzerland;Western Europe;"Frontiers Media SA";"2013-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +7781;25794;"International Interactions";journal;"03050629, 15477444";"Taylor and Francis Ltd.";No;No;0,733;Q1;59;43;131;3224;252;107;1,91;74,98;29,17;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974-2026";"Political Science and International Relations (Q1)";"Social Sciences" +7782;17800156772;"International Journal of Workplace Health Management";journal;"17538351, 1753836X";"Emerald Publishing";No;No;0,733;Q1;37;42;99;2670;332;94;3,14;63,57;63,92;0;United Kingdom;Western Europe;"Emerald Publishing";"2008-2026";"Business, Management and Accounting (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q2)";"Business, Management and Accounting; Medicine" +7783;145159;"Journal of Deaf Studies and Deaf Education";journal;"14657325, 10814159";"Oxford University Press";No;No;0,733;Q1;80;66;139;3299;345;135;2,25;49,98;66,89;1;United Kingdom;Western Europe;"Oxford University Press";"1996, 1999, 2002-2026";"Education (Q1); Speech and Hearing (Q1)";"Health Professions; Social Sciences" +7784;18011;"Neuropsychological Rehabilitation";journal;"14640694, 09602011";"Taylor and Francis Ltd.";No;No;0,733;Q1;92;127;249;8447;742;244;2,32;66,51;62,76;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-2026";"Arts and Humanities (miscellaneous) (Q1); Rehabilitation (Q1); Applied Psychology (Q2); Neuropsychology and Physiological Psychology (Q2); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Medicine; Psychology" +7785;28374;"Oceanologia";journal;"23007370, 00783234";"Institute of Oceanology, Polish Academy of Sciences";Yes;Yes;0,733;Q1;55;40;146;2220;416;145;2,69;55,50;35,71;0;Poland;Eastern Europe;"Institute of Oceanology, Polish Academy of Sciences";"1973, 1978, 1984, 1993-2025";"Aquatic Science (Q1); Ocean Engineering (Q1); Atmospheric Science (Q2); Oceanography (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering" +7786;21101073717;"Pacific Asia Journal of the Association for Information Systems";journal;"19437536, 19437544";"Association for Information Systems";No;No;0,733;Q1;19;22;67;1903;299;65;3,14;86,50;36,36;0;United States;Northern America;"Association for Information Systems";"2018-2025";"Information Systems and Management (Q1); Computer Science Applications (Q2); Human-Computer Interaction (Q2); Information Systems (Q2); Management Information Systems (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences" +7787;5600153930;"Small Wars and Insurgencies";journal;"17439558, 09592318";"Routledge";No;No;0,733;Q1;37;95;188;6082;346;183;1,69;64,02;25,86;1;United Kingdom;Western Europe;"Routledge";"1990-2005, 2007-2026";"Political Science and International Relations (Q1)";"Social Sciences" +7788;19417;"Clinical and Experimental Nephrology";journal;"14377799, 13421751";"Springer";No;No;0,733;Q2;72;200;405;6284;849;372;2,31;31,42;24,64;0;Singapore;Asiatic Region;"Springer";"1999-2026";"Nephrology (Q2); Physiology (Q2); Physiology (medical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7789;21100451659;"Infectious Diseases";journal;"23744235, 23744243";"Taylor and Francis Ltd.";No;No;0,733;Q2;87;136;344;5309;697;280;2,19;39,04;47,02;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Immunology and Microbiology (miscellaneous) (Q2); Infectious Diseases (Q2); Medicine (miscellaneous) (Q2); Microbiology (medical) (Q2)";"Immunology and Microbiology; Medicine" +7790;13506;"International Journal of Biometeorology";journal;"14321254, 00207128";"Springer Science and Business Media Deutschland GmbH";No;No;0,733;Q2;124;266;581;15433;2262;578;3,41;58,02;41,79;7;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1961-2026";"Atmospheric Science (Q2); Ecology (Q2); Health, Toxicology and Mutagenesis (Q2)";"Earth and Planetary Sciences; Environmental Science" +7791;14509;"Journal of Vision";journal;"15347362";"Association for Research in Vision and Ophthalmology Inc.";Yes;No;0,733;Q2;144;188;513;9777;1006;513;1,85;52,01;39,49;0;United States;Northern America;"Association for Research in Vision and Ophthalmology Inc.";"2001-2026";"Ophthalmology (Q2); Sensory Systems (Q2)";"Medicine; Neuroscience" +7792;5600157619;"Obesity Research and Clinical Practice";journal;"1871403X, 18780318";"Elsevier Ltd";No;No;0,733;Q2;57;80;225;2713;515;200;2,10;33,91;50,67;0;United Kingdom;Western Europe;"Elsevier Ltd";"2007-2026";"Nutrition and Dietetics (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine; Nursing" +7793;29343;"Perspectives in Psychiatric Care";journal;"17446163, 00315990";"John Wiley and Sons Inc";No;No;0,733;Q2;58;38;407;1699;1139;398;2,30;44,71;63,06;0;United States;Northern America;"John Wiley and Sons Inc";"1963-1985, 1987, 1989-2026";"Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +7794;21100899564;"Current Opinion in Endocrine and Metabolic Research";journal;"24519650";"Elsevier Ltd";No;No;0,733;Q3;28;15;128;694;298;121;1,81;46,27;55,88;0;United Kingdom;Western Europe;"Elsevier Ltd";"2018-2026";"Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +7795;14521;"BMC Pediatrics";journal;"14712431";"BioMed Central Ltd";Yes;No;0,732;Q1;112;997;2219;37256;5819;2214;2,44;37,37;51,62;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +7796;13759;"International Journal of Heat and Fluid Flow";journal;"0142727X";"Elsevier B.V.";No;No;0,732;Q1;137;291;605;13475;2606;604;4,51;46,31;23,36;0;Netherlands;Western Europe;"Elsevier B.V.";"1979-1980, 1982-2026";"Condensed Matter Physics (Q1); Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1)";"Chemical Engineering; Engineering; Physics and Astronomy" +7797;29570;"Limnologica";journal;"18735851, 00759511";"Elsevier GmbH";No;No;0,732;Q1;63;39;134;2494;331;132;2,25;63,95;38,32;0;Germany;Western Europe;"Elsevier GmbH";"1974, 1980, 1994-2026";"Aquatic Science (Q1)";"Agricultural and Biological Sciences" +7798;26471;"ASAIO Journal";journal;"10582916, 1538943X";"Lippincott Williams and Wilkins";No;No;0,732;Q2;85;507;788;6726;1745;695;1,98;13,27;36,61;0;United States;Northern America;"Lippincott Williams and Wilkins";"1978-1985, 1992-2026";"Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2); Biophysics (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science; Medicine" +7799;21101141803;"Dili Yanjiu";journal;"10000585";"Science China Press";No;No;0,731;Q1;22;188;590;10046;1878;590;2,88;53,44;40,59;0;China;Asiatic Region;"Science China Press";"2019-2025";"Geography, Planning and Development (Q1)";"Social Sciences" +7800;21101072515;"Frontiers in Sustainable Cities";journal;"26249634";"Frontiers Media SA";Yes;No;0,731;Q1;34;187;454;11233;1566;411;3,42;60,07;41,18;0;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Public Administration (Q1); Urban Studies (Q1); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Social Sciences" +7801;15688;"Journal of Information Systems";journal;"08887985, 15587959";"American Accounting Association";No;No;0,731;Q1;52;20;85;1828;275;81;2,83;91,40;29,17;0;United States;Northern America;"American Accounting Association";"2006, 2009-2025";"Information Systems and Management (Q1); Accounting (Q2); Human-Computer Interaction (Q2); Information Systems (Q2); Management Information Systems (Q2); Management of Technology and Innovation (Q2); Software (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences" +7802;22612;"Journal of Special Education";journal;"15384764, 00224669";"SAGE Publications Inc.";No;No;0,731;Q1;85;26;66;1070;177;66;2,30;41,15;63,11;0;United States;Northern America;"SAGE Publications Inc.";"1966-2026";"Education (Q1); Rehabilitation (Q1)";"Medicine; Social Sciences" +7803;19900191721;"Review of Accounting and Finance";journal;"14757702, 17587700";"Emerald Publishing";No;No;0,731;Q1;39;51;80;3467;408;80;6,00;67,98;36,84;0;United Kingdom;Western Europe;"Emerald Publishing";"2002-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Accounting (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +7804;21101068029;"RIED-Revista Iberoamericana de Educacion a Distancia";journal;"13903306, 11382783";"Ibero-American Association for Distance Higher Education (AIESAD)";Yes;Yes;0,731;Q1;27;32;97;1778;427;97;4,73;55,56;45,92;0;Spain;Western Europe;"Ibero-American Association for Distance Higher Education (AIESAD)";"2019-2026";"Education (Q1); Computer Science Applications (Q2)";"Computer Science; Social Sciences" +7805;145157;"American Journal of Medical Genetics, Part A";journal;"15524833, 15524825";"John Wiley and Sons Inc";No;No;0,731;Q2;141;405;1216;10186;2186;1097;1,74;25,15;58,38;0;United States;Northern America;"John Wiley and Sons Inc";"1996-1999, 2001-2026";"Genetics (Q2); Genetics (clinical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7806;21101038561;"Discover Oncology";journal;"27306011";"Springer Science and Business Media B.V.";Yes;No;0,731;Q2;50;2334;1211;124523;3385;1208;2,70;53,35;41,91;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2021-2026";"Oncology (Q2); Cancer Research (Q3); Endocrine and Autonomic Systems (Q3); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +7807;15609;"Enzyme and Microbial Technology";journal;"18790909, 01410229";"Elsevier Inc.";No;No;0,731;Q2;171;128;384;7013;1684;384;4,34;54,79;43,38;0;United States;Northern America;"Elsevier Inc.";"1979-2026";"Applied Microbiology and Biotechnology (Q2); Biochemistry (Q2); Bioengineering (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +7808;21101169080;"Food Bioengineering";journal;"27702081";"John Wiley and Sons Inc";Yes;No;0,731;Q2;15;42;98;3147;538;97;6,40;74,93;46,49;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biotechnology (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +7809;20237;"Journal of Microbiology";journal;"19763794, 12258873";"";No;No;0,731;Q2;88;90;299;0;915;295;3,53;0,00;43,10;0;South Korea;Asiatic Region;"";"1996-2025";"Applied Microbiology and Biotechnology (Q2); Medicine (miscellaneous) (Q2); Microbiology (Q2)";"Immunology and Microbiology; Medicine" +7810;16104;"Molecular Biotechnology";journal;"15590305, 10736085";"Springer";Yes;No;0,731;Q2;98;480;599;30830;2274;597;4,06;64,23;42,96;0;United States;Northern America;"Springer";"1994-2026";"Applied Microbiology and Biotechnology (Q2); Biochemistry (Q2); Bioengineering (Q2); Biotechnology (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +7811;20041;"Neurourology and Urodynamics";journal;"07332467, 15206777";"John Wiley and Sons Inc";No;No;0,731;Q2;116;236;691;6865;1446;591;1,97;29,09;41,88;1;United States;Northern America;"John Wiley and Sons Inc";"1982-2026";"Neurology (clinical) (Q2); Urology (Q2)";"Medicine" +7812;10100153329;"Proteomics - Clinical Applications";journal;"18628354, 18628346";"Wiley-VCH Verlag";No;No;0,731;Q2;70;38;111;2533;291;109;2,68;66,66;42,15;0;Germany;Western Europe;"Wiley-VCH Verlag";"2007-2026";"Clinical Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology" +7813;21100931312;"BMJ Paediatrics Open";journal;"23999772";"BMJ Publishing Group";Yes;No;0,730;Q1;39;302;565;9206;1343;537;2,35;30,48;54,68;3;United Kingdom;Western Europe;"BMJ Publishing Group";"2017-2026";"Pediatrics, Perinatology and Child Health (Q1)";"Medicine" +7814;13845;"Bulletin of Mathematical Biology";journal;"00928240, 15229602";"Springer";No;No;0,730;Q1;106;175;403;9241;989;400;2,47;52,81;37,70;0;United States;Northern America;"Springer";"1973-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Computational Theory and Mathematics (Q2); Environmental Science (miscellaneous) (Q2); Pharmacology (Q2); Immunology (Q3); Neuroscience (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Computer Science; Environmental Science; Immunology and Microbiology; Mathematics; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +7815;5600157640;"Communications in Mathematical Sciences";journal;"15396746, 19450796";"International Press, Inc.";No;No;0,730;Q1;68;82;260;2725;312;260;1,23;33,23;35,79;0;United States;Northern America;"International Press, Inc.";"2003-2026";"Mathematics (miscellaneous) (Q1); Applied Mathematics (Q2)";"Mathematics" +7816;29615;"Health Education Research";journal;"14653648, 02681153";"Oxford University Press";No;No;0,730;Q1;124;70;122;3271;289;121;2,24;46,73;66,36;2;United Kingdom;Western Europe;"Oxford University Press";"1986-2026";"Education (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +7817;11700154303;"International Emergency Nursing";journal;"1878013X, 1755599X";"Elsevier Ltd";No;No;0,730;Q1;59;128;284;4417;788;278;2,75;34,51;59,23;0;United Kingdom;Western Europe;"Elsevier Ltd";"2008-2026";"Emergency Nursing (Q1)";"Nursing" +7818;5700177956;"Journal of Family Communication";journal;"15327698, 15267431";"Routledge";No;No;0,730;Q1;38;24;69;1392;179;66;2,23;58,00;83,64;0;United States;Northern America;"Routledge";"2009-2026";"Communication (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +7819;21100275426;"Journal of Industrial and Business Economics";journal;"03912078, 19724977";"Springer Nature";No;No;0,730;Q1;29;62;111;4455;410;102;3,24;71,85;33,33;5;Switzerland;Western Europe;"Springer Nature";"2013-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +7820;21162;"Journal of Materials Science";journal;"15734803, 00222461";"Springer";No;No;0,730;Q1;238;1374;3816;88665;17149;3757;4,46;64,53;33,84;0;United States;Northern America;"Springer";"1966-2026";"Mechanical Engineering (Q1); Mechanics of Materials (Q1); Ceramics and Composites (Q2); Materials Science (miscellaneous) (Q2); Polymers and Plastics (Q2)";"Engineering; Materials Science" +7821;14422;"Journal of Non-Newtonian Fluid Mechanics";journal;"03770257";"Elsevier B.V.";No;No;0,730;Q1;126;78;315;4172;841;305;2,63;53,49;18,86;0;Netherlands;Western Europe;"Elsevier B.V.";"1976-2026";"Chemical Engineering (miscellaneous) (Q1); Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Applied Mathematics (Q2); Materials Science (miscellaneous) (Q2)";"Chemical Engineering; Engineering; Materials Science; Mathematics; Physics and Astronomy" +7822;4700152233;"Therapeutics and Clinical Risk Management";journal;"11766336, 1178203X";"Dove Medical Press Ltd";Yes;No;0,730;Q1;79;160;273;6021;739;269;2,63;37,63;40,29;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2006-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Safety Research (Q1); Chemical Health and Safety (Q2); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)";"Chemical Engineering; Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +7823;24879;"Journal of Tissue Viability";journal;"0965206X, 18764746";"Tissue Viability Society";No;No;0,730;Q2;50;119;340;4986;1027;331;2,65;41,90;62,38;0;United Kingdom;Western Europe;"Tissue Viability Society";"1998-2006, 2008-2026";"Dermatology (Q2); Pathology and Forensic Medicine (Q2)";"Medicine" +7824;19700175029;"Pharmacogenomics and Personalized Medicine";journal;"11787066";"Dove Medical Press Ltd";Yes;No;0,730;Q2;44;23;220;1087;570;216;2,60;47,26;39,10;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Pharmacology (Q2); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +7825;26709;"Seminars in Reproductive Medicine";journal;"15268004, 15264564";"Thieme Medical Publishers, Inc.";No;No;0,730;Q2;103;35;102;2246;245;86;2,04;64,17;71,25;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1999-2025";"Obstetrics and Gynecology (Q2); Physiology (medical) (Q2); Reproductive Medicine (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7826;23763;"Advances in Dental Research";journal;"08959374, 15440737";"SAGE Publications Inc.";No;No;0,729;Q1;77;0;2;0;12;2;6,00;0,00;0,00;0;United States;Northern America;"SAGE Publications Inc.";"1987-2003, 2005-2006, 2008-2016, 2018-2019, 2023-2024, 2026";"Dental Hygiene (Q1); Dentistry (miscellaneous) (Q1)";"Dentistry" +7827;18156;"Computer Applications in Engineering Education";journal;"10990542, 10613773";"John Wiley & Sons Inc.";No;No;0,729;Q1;55;124;348;6127;1521;348;4,25;49,41;32,25;0;United States;Northern America;"John Wiley & Sons Inc.";"1992-2026";"Education (Q1); Engineering (miscellaneous) (Q1); Computer Science (miscellaneous) (Q2)";"Computer Science; Engineering; Social Sciences" +7828;21100776051;"Conservation Physiology";journal;"20511434";"Oxford University Press";Yes;No;0,729;Q1;64;91;281;6736;715;277;2,42;74,02;48,00;0;United States;Northern America;"Oxford University Press";"2013-2026";"Nature and Landscape Conservation (Q1); Ecological Modeling (Q2); Management, Monitoring, Policy and Law (Q2); Physiology (Q2)";"Biochemistry, Genetics and Molecular Biology; Environmental Science" +7829;100147319;"International Journal of Mathematical Education in Science and Technology";journal;"14645211, 0020739X";"Taylor and Francis Ltd.";No;No;0,729;Q1;48;213;477;8359;818;320;1,43;39,24;48,77;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1970-2026";"Education (Q1); Mathematics (miscellaneous) (Q1); Applied Mathematics (Q2)";"Mathematics; Social Sciences" +7830;19713;"Journal of High Technology Management Research";journal;"10478310";"Elsevier Ltd";No;No;0,729;Q1;59;0;57;0;370;55;6,57;0,00;0,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2024";"Information Systems and Management (Q1); Computer Science Applications (Q2); Management of Technology and Innovation (Q2); Marketing (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences" +7831;25169;"Journal of the Electrochemical Society";journal;"00134651, 19457111";"Institute of Physics";No;No;0,729;Q1;336;935;3831;47344;12085;3829;2,97;50,64;30,75;2;United States;Northern America;"Institute of Physics";"1948-1960, 1963-2025";"Condensed Matter Physics (Q1); Electrochemistry (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Renewable Energy, Sustainability and the Environment (Q2); Surfaces, Coatings and Films (Q2)";"Chemistry; Energy; Materials Science; Physics and Astronomy" +7832;22889;"Political Science Quarterly";journal;"00323195, 1538165X";"Oxford University Press";No;No;0,729;Q1;61;30;96;1893;180;95;1,77;63,10;30,23;0;United States;Northern America;"Oxford University Press";"1935, 1955, 1964-1965, 1968, 1972-1974, 1976, 1978, 1980-1994, 1996-2025";"Sociology and Political Science (Q1)";"Social Sciences" +7833;4700152858;"ACM Transactions on Storage";journal;"15533093, 15533077";"Association for Computing Machinery";No;No;0,729;Q2;56;40;102;3890;387;94;3,58;97,25;22,43;0;United States;Northern America;"Association for Computing Machinery";"2005-2026";"Hardware and Architecture (Q2)";"Computer Science" +7834;144962;"Corporate Communications";journal;"13563289";"Emerald Group Publishing Ltd.";No;No;0,729;Q2;76;113;184;7696;816;168;3,84;68,11;52,21;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1996-2026";"Industrial Relations (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +7835;21100931380;"Environmental Health Insights";journal;"11786302";"SAGE Publications Inc.";Yes;No;0,729;Q2;38;56;313;3226;1236;290;3,77;57,61;37,30;0;United States;Northern America;"SAGE Publications Inc.";"2008-2026";"Health, Toxicology and Mutagenesis (Q2); Management, Monitoring, Policy and Law (Q2); Pollution (Q2); Public Health, Environmental and Occupational Health (Q2)";"Environmental Science; Medicine" +7836;21101251283;"Frontiers in Nephrology";journal;"28130626";"Frontiers Media SA";Yes;No;0,729;Q2;12;71;183;2298;413;165;2,40;32,37;42,97;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Nephrology (Q2)";"Medicine" +7837;27466;"Gynecologic and Obstetric Investigation";journal;"1423002X, 03787346";"S. Karger AG";No;No;0,729;Q2;76;107;158;4225;374;152;2,55;39,49;49,27;0;Switzerland;Western Europe;"S. Karger AG";"1895-2026";"Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)";"Medicine" +7838;21100980647;"Health Services Insights";journal;"11786329";"SAGE Publications Ltd";Yes;No;0,729;Q2;29;88;226;4024;544;198;1,75;45,73;50,36;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +7839;14000155911;"International Gambling Studies";journal;"14794276, 14459795";"Routledge";No;No;0,729;Q2;47;37;89;1819;237;85;2,81;49,16;35,24;1;United Kingdom;Western Europe;"Routledge";"2010-2026";"Applied Psychology (Q2)";"Psychology" +7840;20617;"Journal of Food Science and Technology";journal;"00221155, 09758402";"Springer";No;No;0,729;Q2;135;441;981;15804;4774;981;5,37;35,84;48,05;0;India;Asiatic Region;"Springer";"1974-1975, 1977-1978, 1980, 1982-1988, 1994-2026";"Food Science (Q2)";"Agricultural and Biological Sciences" +7841;21100812570;"Journal of Ocean Engineering and Marine Energy";journal;"21986452, 21986444";"Springer International Publishing AG";No;No;0,729;Q2;38;78;138;4053;460;137;2,88;51,96;21,17;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Energy Engineering and Power Technology (Q2); Ocean Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q2); Water Science and Technology (Q2)";"Energy; Engineering; Environmental Science" +7842;25623;"Journal of Supercomputing";journal;"15730484, 09208542";"Springer Netherlands";No;No;0,729;Q2;99;1621;2475;76422;11690;2472;4,98;47,14;31,35;0;Netherlands;Western Europe;"Springer Netherlands";"1987-2026";"Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +7843;21100831009;"Molecular Catalysis";journal;"24688231";"Elsevier B.V.";No;No;0,729;Q2;186;687;2143;42183;9456;2133;4,59;61,40;39,23;0;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Catalysis (Q2); Physical and Theoretical Chemistry (Q2); Process Chemistry and Technology (Q2)";"Chemical Engineering; Chemistry" +7844;9700153237;"Mutation Research Letters";journal;"1873135X";"Elsevier B.V.";No;No;0,729;Q2;1;0;1;0;3;1;3,00;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1973-1995";"Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine" +7845;19900193855;"Revista de Psicologia del Trabajo y de las Organizaciones";journal;"15765962, 21740534";"Colegio Oficial de Psicologos de Madrid";Yes;Yes;0,729;Q2;36;10;50;490;188;50;3,21;49,00;57,14;1;Spain;Western Europe;"Colegio Oficial de Psicologos de Madrid";"2011-2025";"Organizational Behavior and Human Resource Management (Q2); Social Psychology (Q2)";"Business, Management and Accounting; Psychology" +7846;40554;"American Antiquity";journal;"00027316, 23255064";"Cambridge University Press";No;No;0,728;Q1;97;42;116;3540;177;108;1,39;84,29;47,69;0;United States;Northern America;"Cambridge University Press";"1935-2026";"Archeology (Q1); Arts and Humanities (miscellaneous) (Q1); History (Q1); Museology (Q1)";"Arts and Humanities; Social Sciences" +7847;12055;"Asian Journal of Social Psychology";journal;"1467839X, 13672223";"Wiley-Blackwell Publishing Ltd";No;No;0,728;Q1;66;86;168;5982;376;166;1,86;69,56;48,55;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1998-2026";"Social Sciences (miscellaneous) (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +7848;144960;"Education and Training";journal;"00400912";"Emerald Publishing";No;No;0,728;Q1;95;96;202;6327;993;199;4,27;65,91;50,18;0;United Kingdom;Western Europe;"Emerald Publishing";"1959-2026";"Education (Q1); Business, Management and Accounting (miscellaneous) (Q2); Life-span and Life-course Studies (Q2)";"Business, Management and Accounting; Social Sciences" +7849;21100427853;"Politics and Governance";journal;"21832463";"Cogitatio Press";Yes;No;0,728;Q1;45;140;370;9577;1081;332;2,79;68,41;41,60;6;Portugal;Western Europe;"Cogitatio Press";"2013-2026";"Sociology and Political Science (Q1); Public Administration (Q2)";"Social Sciences" +7850;27474;"Annals of Biomedical Engineering";journal;"00906964, 15739686";"Springer";No;No;0,728;Q2;170;272;690;14938;3546;583;5,48;54,92;32,26;0;United States;Northern America;"Springer";"1972-2026";"Biomedical Engineering (Q2)";"Engineering" +7851;21101132912;"Artificial Intelligence in the Life Sciences";journal;"26673185";"Elsevier B.V.";Yes;No;0,728;Q2;18;25;66;1323;336;60;5,51;52,92;28,57;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Artificial Intelligence (Q2)";"Computer Science" +7852;10900153302;"Biomarker Insights";journal;"11772719";"SAGE Publications Ltd";Yes;No;0,728;Q2;45;25;65;1240;192;63;1,88;49,60;46,34;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2006-2026";"Biochemistry (medical) (Q2); Pharmacology (Q2); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7853;13242;"Evaluation and the Health Professions";journal;"15523918, 01632787";"SAGE Publications Inc.";No;No;0,728;Q2;66;58;122;2806;281;118;2,26;48,38;59,39;0;United States;Northern America;"SAGE Publications Inc.";"1978-2026";"Health Policy (Q2)";"Medicine" +7854;21101240289;"Food Safety and Health";journal;"28351096";"John Wiley and Sons Inc";No;No;0,728;Q2;12;69;51;4681;248;42;4,86;67,84;40,39;0;China;Asiatic Region;"John Wiley and Sons Inc";"2023-2026";"Food Science (Q2)";"Agricultural and Biological Sciences" +7855;4700152855;"Journal of Inorganic and Organometallic Polymers and Materials";journal;"15741443, 15741451";"Springer New York";No;No;0,728;Q2;77;828;1103;56650;6453;1099;6,35;68,42;35,53;0;United States;Northern America;"Springer New York";"1996, 2000-2001, 2003-2026";"Materials Chemistry (Q2); Polymers and Plastics (Q2)";"Materials Science" +7856;30070;"Journal of Rational - Emotive and Cognitive - Behavior Therapy";journal;"08949085, 15736563";"Springer";No;No;0,728;Q2;50;68;162;4146;429;162;2,77;60,97;57,29;1;United States;Northern America;"Springer";"1983-2026";"Clinical Psychology (Q2); Experimental and Cognitive Psychology (Q2)";"Psychology" +7857;29925;"Seminars in Oncology Nursing";journal;"18783449, 07492081";"Elsevier Inc.";No;No;0,728;Q2;66;153;306;8159;985;278;3,40;53,33;75,04;0;United States;Northern America;"Elsevier Inc.";"1985-2026";"Oncology (nursing) (Q2)";"Nursing" +7858;12708;"Fetal Diagnosis and Therapy";journal;"14219964, 10153837";"S. Karger AG";No;No;0,727;Q1;77;99;192;2653;381;187;1,96;26,80;57,47;0;Switzerland;Western Europe;"S. Karger AG";"1986-2026";"Pediatrics, Perinatology and Child Health (Q1); Embryology (Q2); Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +7859;21100832225;"Geo: Geography and Environment";journal;"20544049";"Wiley-Blackwell Publishing Ltd";Yes;No;0,727;Q1;25;50;52;4485;189;42;3,60;89,70;32,33;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2014-2026";"Geography, Planning and Development (Q1); Atmospheric Science (Q2); Management, Monitoring, Policy and Law (Q2); Global and Planetary Change (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +7860;29872;"Integrative Cancer Therapies";journal;"1552695X, 15347354";"SAGE Publications Inc.";Yes;No;0,727;Q1;79;122;298;3963;956;287;3,04;32,48;50,92;0;United States;Northern America;"SAGE Publications Inc.";"2002-2026";"Complementary and Alternative Medicine (Q1); Oncology (Q3)";"Medicine" +7861;21100915697;"Journal of Special Education Technology";journal;"23813121, 01626434";"SAGE Publications Inc.";No;No;0,727;Q1;47;64;139;3095;499;137;3,59;48,36;65,70;0;United States;Northern America;"SAGE Publications Inc.";"1996-2026";"Education (Q1); Computer Science Applications (Q2)";"Computer Science; Social Sciences" +7862;130184;"Systematics and Biodiversity";journal;"14772000, 14780933";"Taylor and Francis Ltd.";No;No;0,727;Q1;54;47;107;3553;257;106;2,10;75,60;30,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +7863;26199;"ACM Transactions on Computer-Human Interaction";journal;"10730516, 15577325";"Association for Computing Machinery";No;No;0,727;Q2;118;69;234;8992;2465;233;10,74;130,32;42,43;1;United States;Northern America;"Association for Computing Machinery";"1994-1995, 1997-2025";"Human-Computer Interaction (Q2)";"Computer Science" +7864;21100337505;"Advances in Neurobiology";book series;"21905223, 21905215";"Springer";No;No;0,727;Q2;40;52;302;6314;446;35;1,47;121,42;0,00;0;United States;Northern America;"Springer";"2014-2026";"Biochemistry (Q2); Neurology (Q2); Cellular and Molecular Neuroscience (Q3); Developmental Neuroscience (Q3)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +7865;14539;"Developmental Psychobiology";journal;"00121630, 10982302";"John Wiley & Sons Inc.";No;No;0,727;Q2;112;90;313;6879;673;303;2,06;76,43;70,11;0;United States;Northern America;"John Wiley & Sons Inc.";"1968-2026";"Developmental and Educational Psychology (Q2); Behavioral Neuroscience (Q3); Developmental Biology (Q3); Developmental Neuroscience (Q3)";"Biochemistry, Genetics and Molecular Biology; Neuroscience; Psychology" +7866;21101301182;"Discover Neuroscience";journal;"30051827";"BioMed Central Ltd";No;No;0,727;Q2;65;28;35;2203;55;35;1,12;78,68;28,68;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2025-2026";"Developmental Neuroscience (Q2)";"Neuroscience" +7867;21101034112;"Emergent Materials";journal;"2522574X, 25225731";"Springer Nature";No;No;0,727;Q2;47;491;504;32758;2822;496;4,63;66,72;35,74;0;Switzerland;Western Europe;"Springer Nature";"2018-2025";"Biomaterials (Q2); Ceramics and Composites (Q2); Renewable Energy, Sustainability and the Environment (Q2); Waste Management and Disposal (Q2)";"Energy; Environmental Science; Materials Science" +7868;21101300540;"Mitochondrial Communications";journal;"25902792";"KeAi Communications Co.";Yes;No;0,727;Q2;6;15;25;840;62;22;2,48;56,00;39,62;0;China;Asiatic Region;"KeAi Communications Co.";"2023-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Aging (Q3); Cell Biology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology" +7869;130163;"Physical Biology";journal;"14783967, 14783975";"IOP Publishing Ltd.";No;No;0,727;Q2;81;37;122;1739;224;122;1,44;47,00;17,86;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2004-2026";"Biophysics (Q2); Structural Biology (Q2); Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +7870;24554;"Water, Air, and Soil Pollution";journal;"00496979, 15732932";"Springer Nature";No;No;0,727;Q2;146;1014;2137;71979;8327;2135;3,99;70,99;38,69;2;Switzerland;Western Europe;"Springer Nature";"1971-2026";"Ecological Modeling (Q2); Environmental Chemistry (Q2); Environmental Engineering (Q2); Pollution (Q2); Water Science and Technology (Q2)";"Environmental Science" +7871;21100895641;"Advances in Archaeological Practice";journal;"23263768";"Cambridge University Press";Yes;No;0,726;Q1;23;47;121;2448;219;119;2,05;52,09;54,81;0;United Kingdom;Western Europe;"Cambridge University Press";"2014-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +7872;21101260508;"Applied Biosciences";journal;"28130464";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,726;Q1;13;58;97;4252;488;96;5,12;73,31;45,35;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +7873;21100896140;"Global Constitutionalism";journal;"20453825, 20453817";"Cambridge University Press";Yes;No;0,726;Q1;20;39;92;4501;252;92;2,34;115,41;56,25;0;United Kingdom;Western Europe;"Cambridge University Press";"2018-2026";"History (Q1); Philosophy (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +7874;19774;"International Journal of Public Opinion Research";journal;"14716909, 09542892";"Oxford University Press";No;No;0,726;Q1;73;73;140;4290;324;140;2,24;58,77;35,16;1;United Kingdom;Western Europe;"Oxford University Press";"1989-2026";"Sociology and Political Science (Q1)";"Social Sciences" +7875;21101229993;"Journal of Conservative Dentistry and Endodontics";journal;"29504708, 29504716";"Wolters Kluwer Medknow Publications";No;No;0,726;Q1;53;219;417;5428;1114;395;2,63;24,79;53,10;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2023-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +7876;19700186816;"Journal of Mechanisms and Robotics";journal;"19424302, 19424310";"The American Society of Mechanical Engineers(ASME)";No;No;0,726;Q1;68;172;409;6408;1415;404;3,41;37,26;19,35;0;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"2009-2026";"Mechanical Engineering (Q1)";"Engineering" +7877;30072;"Journal of Reproductive and Infant Psychology";journal;"1469672X, 02646838";"Routledge";No;No;0,726;Q1;64;147;190;7369;491;174;2,40;50,13;76,14;2;United Kingdom;Western Europe;"Routledge";"1983-2026";"Pediatrics, Perinatology and Child Health (Q1); Obstetrics and Gynecology (Q2); Psychology (miscellaneous) (Q2); Reproductive Medicine (Q2)";"Medicine; Psychology" +7878;36093;"Pedobiologia";journal;"00314056, 18731511";"Elsevier GmbH";No;No;0,726;Q1;85;43;113;2728;322;113;2,97;63,44;42,71;0;Germany;Western Europe;"Elsevier GmbH";"1977, 1979-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Soil Science (Q2)";"Agricultural and Biological Sciences" +7879;10600153309;"PLOS ONE";journal;"19326203";"Public Library of Science";Yes;No;0,726;Q1;500;18949;46931;919111;150616;46915;2,95;48,50;44,18;127;United States;Northern America;"Public Library of Science";"2006-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +7880;19700182678;"Polymer Chemistry";journal;"17599954, 17599962";"Royal Society of Chemistry";No;No;0,726;Q1;161;376;1575;21556;6030;1562;3,72;57,33;35,24;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2010-2026";"Organic Chemistry (Q1); Biochemistry (Q2); Bioengineering (Q2); Biomedical Engineering (Q2); Polymers and Plastics (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Engineering; Materials Science" +7881;85636;"World's Poultry Science Journal";journal;"17434777, 00439339";"Taylor and Francis Ltd.";No;No;0,726;Q1;98;63;151;6659;668;148;4,23;105,70;27,17;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1945-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +7882;4700152798;"ACM Journal on Emerging Technologies in Computing Systems";journal;"15504832, 15504840";"Association for Computing Machinery";No;No;0,726;Q2;53;23;130;1086;350;120;2,65;47,22;24,74;0;United States;Northern America;"Association for Computing Machinery";"2005-2025";"Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Nanoscience and Nanotechnology (Q2); Software (Q2)";"Computer Science; Engineering; Materials Science" +7883;12400;"APMIS";journal;"09034641, 16000463";"Blackwell Munksgaard";No;No;0,726;Q2;107;163;248;8113;661;233;2,32;49,77;44,93;1;Denmark;Western Europe;"Blackwell Munksgaard";"1988-2026";"Medicine (miscellaneous) (Q2); Microbiology (medical) (Q2); Pathology and Forensic Medicine (Q2); Immunology and Allergy (Q3)";"Medicine" +7884;29311;"Current Cancer Drug Targets";journal;"15680096, 18735576";"Bentham Science Publishers";No;No;0,726;Q2;109;204;243;17206;734;238;2,95;84,34;44,28;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2001-2026";"Drug Discovery (Q2); Pharmacology (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7885;20664;"Current Drug Targets";journal;"18735592, 13894501";"Bentham Science Publishers";No;No;0,726;Q2;129;84;276;9913;973;253;3,49;118,01;40,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2000-2026";"Clinical Biochemistry (Q2); Drug Discovery (Q2); Pharmacology (Q2); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +7886;21101059781;"Digital Biomarkers";journal;"2504110X";"S. Karger AG";Yes;No;0,726;Q2;32;18;53;664;189;52;2,80;36,89;45,10;0;Switzerland;Western Europe;"S. Karger AG";"2017-2026";"Computer Science Applications (Q2); Health Informatics (Q2); Medicine (miscellaneous) (Q2)";"Computer Science; Medicine" +7887;14897;"Journal of Electromyography and Kinesiology";journal;"18735711, 10506411";"Elsevier Ltd";No;No;0,726;Q2;123;88;211;3946;649;208;3,09;44,84;35,48;0;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Biophysics (Q2); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q3); Sports Science (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Neuroscience" +7888;21100900151;"Journal of Imaging";journal;"2313433X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,726;Q2;65;451;943;21539;4513;931;5,01;47,76;31,27;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2026";"Computer Graphics and Computer-Aided Design (Q2); Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Computer Science; Engineering; Medicine" +7889;19700169837;"America Latina Hoy";journal;"23404396, 11302887";"Ediciones Universidad de Salamanca";Yes;Yes;0,725;Q1;14;11;49;710;29;48;0,69;64,55;30,00;0;Spain;Western Europe;"Ediciones Universidad de Salamanca";"2011-2025";"History (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +7890;21100203316;"Annals of Rehabilitation Medicine";journal;"22340653, 22340645";"Korean Academy of Rehabilitation Medicine";Yes;No;0,725;Q1;52;39;135;1457;416;130;2,76;37,36;29,67;0;South Korea;Asiatic Region;"Korean Academy of Rehabilitation Medicine";"2012-2025";"Rehabilitation (Q1)";"Medicine" +7891;12024;"Applied Cognitive Psychology";journal;"10990720, 08884080";"John Wiley and Sons Ltd";No;No;0,725;Q1;130;138;353;8347;806;345;2,05;60,49;55,65;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1987-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)";"Arts and Humanities; Psychology" +7892;29574;"Burns";journal;"03054179, 18791409";"Elsevier Ltd";No;No;0,725;Q1;129;353;853;11313;2047;659;2,32;32,05;41,29;1;United Kingdom;Western Europe;"Elsevier Ltd";"1974-2026";"Emergency Medicine (Q1); Surgery (Q1); Critical Care and Intensive Care Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +7893;21100901463;"European Endodontic Journal";journal;"25480839";"Kare Publishing";Yes;No;0,725;Q1;20;62;118;2311;354;114;2,86;37,27;43,40;0;Turkey;Middle East;"Kare Publishing";"2016-2026";"Dental Assisting (Q1); Dental Hygiene (Q1); Dentistry (miscellaneous) (Q1); Oral Surgery (Q1); Orthodontics (Q1); Periodontics (Q1); Medicine (miscellaneous) (Q2)";"Dentistry; Medicine" +7894;21100285725;"European Journal of Risk Regulation";journal;"21908249, 1867299X";"Cambridge University Press";Yes;No;0,725;Q1;38;130;167;12996;587;161;3,07;99,97;51,06;18;Germany;Western Europe;"Cambridge University Press";"2010-2026";"Law (Q1); Safety Research (Q1)";"Social Sciences" +7895;26448;"Experimental Mathematics";journal;"10586458, 1944950X";"Taylor and Francis Ltd.";No;No;0,725;Q1;41;96;192;2455;178;191;0,73;25,57;17,17;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +7896;21116;"International Journal of Non-Linear Mechanics";journal;"00207462";"Elsevier Ltd";No;No;0,725;Q1;109;247;691;11314;2556;683;3,61;45,81;23,75;0;United Kingdom;Western Europe;"Elsevier Ltd";"1966-2026";"Mechanical Engineering (Q1); Mechanics of Materials (Q1); Applied Mathematics (Q2)";"Engineering; Mathematics" +7897;17700156742;"Journal of Media Psychology";journal;"18641105, 21512388";"Hogrefe Publishing";No;No;0,725;Q1;47;58;116;2858;276;110;2,46;49,28;48,30;1;Germany;Western Europe;"Hogrefe Publishing";"2008-2026";"Communication (Q1); Applied Psychology (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +7898;28663;"Letters in Mathematical Physics";journal;"03779017, 15730530";"Springer Netherlands";No;No;0,725;Q1;67;139;387;5343;638;386;1,62;38,44;10,70;0;Netherlands;Western Europe;"Springer Netherlands";"1975-2026";"Mathematical Physics (Q1); Statistical and Nonlinear Physics (Q2)";"Mathematics; Physics and Astronomy" +7899;21100285034;"Lithic Technology";journal;"01977261, 20516185";"Maney Publishing";No;No;0,725;Q1;21;48;82;3440;119;81;1,37;71,67;37,20;0;United Kingdom;Western Europe;"Maney Publishing";"1977-1979, 1981-1982, 1984-1987, 1993-1994, 2013-2026";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +7900;25761;"Pacific Journal of Mathematics";journal;"00308730, 19455844";"Mathematical Sciences Publishers";No;No;0,725;Q1;58;84;283;2251;221;283;0,59;26,80;20,61;0;United States;Northern America;"Mathematical Sciences Publishers";"1951-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +7901;21101287869;"Studies in Engineering Education";journal;"26905450";"Virginia Tech Publishing";Yes;No;0,725;Q1;12;14;38;1147;83;38;1,74;81,93;62,50;0;United States;Northern America;"Virginia Tech Publishing";"2021-2025";"Education (Q1)";"Social Sciences" +7902;21101271807;"Technology in Language Teaching and Learning";journal;"26521687";"Castledown Publishers";Yes;Yes;0,725;Q1;8;30;41;1745;166;41;4,37;58,17;44,23;0;Australia;Pacific Region;"Castledown Publishers";"2021-2026";"Education (Q1); Linguistics and Language (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +7903;18697;"Theory and Society";journal;"15737853, 03042421";"Springer Netherlands";No;No;0,725;Q1;100;65;128;3432;293;127;2,09;52,80;25,00;1;Netherlands;Western Europe;"Springer Netherlands";"1974-2026";"History (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +7904;18386;"Acta Histochemica et Cytochemica";journal;"13475800, 00445991";"Japan Society of Histochemistry and Cytochemistry";Yes;No;0,725;Q2;33;20;60;696;130;60;1,95;34,80;17,50;0;Japan;Asiatic Region;"Japan Society of Histochemistry and Cytochemistry";"1968-2025";"Biochemistry (Q2); Histology (Q2); Pathology and Forensic Medicine (Q2); Physiology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +7905;21100228096;"International Journal of Polymer Science";journal;"16879430, 16879422";"John Wiley and Sons Ltd";Yes;No;0,725;Q2;71;39;149;2389;858;149;4,82;61,26;37,42;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Polymers and Plastics (Q2)";"Materials Science" +7906;20610;"Journal of Food Protection";journal;"19449097, 0362028X";"Elsevier B.V.";Yes;No;0,725;Q2;162;262;578;14402;2325;577;4,27;54,97;50,57;5;Netherlands;Western Europe;"Elsevier B.V.";"1977-1980, 1982-2026";"Food Science (Q2); Microbiology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology" +7907;21101221556;"Kidney and Dialysis";journal;"26738236";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,725;Q2;10;59;104;2644;256;98;1,50;44,81;48,21;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2026";"Hematology (Q2); Medicine (miscellaneous) (Q2); Nephrology (Q2)";"Medicine" +7908;21101044876;"Animal Bioscience";journal;"27650235, 27650189";"Asian-Australasian Association of Animal Production Societies";Yes;No;0,724;Q1;96;226;578;9439;2098;576;3,49;41,77;38,19;1;South Korea;Asiatic Region;"Asian-Australasian Association of Animal Production Societies";"2021-2025";"Animal Science and Zoology (Q1); Veterinary (miscellaneous) (Q1); Food Science (Q2); Genetics (Q2); Physiology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +7909;20327;"Experiments in Fluids";journal;"14321114, 07234864";"Springer Verlag";No;No;0,724;Q1;155;219;571;9856;1642;561;2,89;45,00;16,27;0;Germany;Western Europe;"Springer Verlag";"1983-2026";"Computational Mechanics (Q1); Fluid Flow and Transfer Processes (Q1); Mechanics of Materials (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Chemical Engineering; Engineering; Physics and Astronomy" +7910;21101140509;"Frontiers in Conservation Science";journal;"2673611X";"Frontiers Media SA";Yes;No;0,724;Q1;23;115;368;7155;954;345;2,42;62,22;41,20;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Nature and Landscape Conservation (Q1)";"Environmental Science" +7911;21101248687;"Frontiers in Drug Safety and Regulation";journal;"26740869";"Frontiers Media SA";Yes;No;0,724;Q1;9;23;70;911;216;58;3,28;39,61;62,93;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Epidemiology (Q2); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +7912;17276;"Journal of Microelectromechanical Systems";journal;"10577157, 19410158";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,724;Q1;164;95;272;3172;1035;272;3,85;33,39;21,72;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992-2026";"Mechanical Engineering (Q1); Electrical and Electronic Engineering (Q2)";"Engineering" +7913;28910;"Leisure Sciences";journal;"15210588, 01490400";"Taylor and Francis Ltd.";No;No;0,724;Q1;89;194;232;12439;823;221;3,22;64,12;47,81;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-2026";"Sociology and Political Science (Q1); Environmental Science (miscellaneous) (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Environmental Science; Social Sciences" +7914;19700174902;"Clinical, Cosmetic and Investigational Dermatology";journal;"11787015";"Dove Medical Press Ltd";Yes;No;0,724;Q2;68;362;1021;13250;2810;989;2,55;36,60;49,01;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Dermatology (Q2)";"Medicine" +7915;21871;"Current Opinion in Anaesthesiology";journal;"14736500, 09527907";"Lippincott Williams and Wilkins";No;No;0,724;Q2;92;141;339;5882;995;308;3,00;41,72;35,84;0;United States;Northern America;"Lippincott Williams and Wilkins";"1989-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +7916;14579;"Ocular Immunology and Inflammation";journal;"17445078, 09273948";"Taylor and Francis Ltd.";No;No;0,724;Q2;75;392;1095;11261;1918;745;1,71;28,73;47,34;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Ophthalmology (Q2); Immunology and Allergy (Q3)";"Medicine" +7917;25240;"Toxicology Letters";journal;"03784274, 18793169";"Elsevier Ireland Ltd";No;No;0,724;Q2;175;191;449;10086;1370;443;3,04;52,81;49,15;4;Ireland;Western Europe;"Elsevier Ireland Ltd";"1977-2026";"Medicine (miscellaneous) (Q2); Toxicology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +7918;21101041706;"Adult Learning";journal;"21624070, 10451595";"SAGE Publications Inc.";No;No;0,723;Q1;29;40;74;1264;220;69;3,53;31,60;60,00;0;United States;Northern America;"SAGE Publications Inc.";"1989-2026";"Education (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +7919;23925;"Commonwealth and Comparative Politics";journal;"17439094, 14662043";"Routledge";No;No;0,723;Q1;38;14;55;844;74;54;1,30;60,29;15,38;0;United Kingdom;Western Europe;"Routledge";"2002-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7920;21101100208;"ES Materials and Manufacturing";journal;"25780611, 2578062X";"Engineered Science Publisher";No;No;0,723;Q1;39;90;129;4248;895;129;8,15;47,20;36,92;0;United States;Northern America;"Engineered Science Publisher";"2018-2025";"Building and Construction (Q1); Metals and Alloys (Q1); Modeling and Simulation (Q1); Applied Mathematics (Q2); Ceramics and Composites (Q2); Numerical Analysis (Q2); Polymers and Plastics (Q2)";"Engineering; Materials Science; Mathematics" +7921;15373;"Journal of Aggression, Maltreatment and Trauma";journal;"10926771, 1545083X";"Routledge";No;No;0,723;Q1;67;106;268;5723;670;264;2,05;53,99;65,91;1;United States;Northern America;"Routledge";"1997-1998, 2000-2026";"Health Professions (miscellaneous) (Q1); Law (Q1); Applied Psychology (Q2); Clinical Psychology (Q2); Psychiatry and Mental Health (Q2); Social Psychology (Q2)";"Health Professions; Medicine; Psychology; Social Sciences" +7922;21100792090;"Journal of Artificial Intelligence and Soft Computing Research";journal;"24496499, 20832567";"";Yes;No;0,723;Q1;31;15;65;719;281;65;4,98;47,93;34,33;0;Poland;Eastern Europe;"";"2013-2026";"Modeling and Simulation (Q1); Artificial Intelligence (Q2); Computer Vision and Pattern Recognition (Q2); Hardware and Architecture (Q2); Information Systems (Q2)";"Computer Science; Mathematics" +7923;21100385808;"Journal of Asia Business Studies";journal;"15592243, 15587894";"Emerald Group Publishing Ltd.";No;No;0,723;Q1;43;88;200;7506;1039;197;4,90;85,30;35,84;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2006-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +7924;26152;"Journal of Oral and Maxillofacial Surgery";journal;"15315053, 02782391";"W.B. Saunders";No;No;0,723;Q1;153;217;732;4600;1475;592;1,55;21,20;28,75;0;United States;Northern America;"W.B. Saunders";"1982-2026";"Oral Surgery (Q1); Otorhinolaryngology (Q1); Surgery (Q1)";"Dentistry; Medicine" +7925;12693;"Military Psychology";journal;"15327876, 08995605";"Taylor and Francis Ltd.";No;No;0,723;Q1;56;102;187;4955;451;179;1,90;48,58;52,05;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990, 1996-2026";"Social Sciences (miscellaneous) (Q1); Experimental and Cognitive Psychology (Q2); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +7926;15747;"Pediatric Pulmonology";journal;"87556863, 10990496";"John Wiley and Sons Inc";No;No;0,723;Q1;127;666;1503;15939;3118;1091;2,06;23,93;55,76;3;United States;Northern America;"John Wiley and Sons Inc";"1985-2026";"Pediatrics, Perinatology and Child Health (Q1); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +7927;11200153502;"Asia-Pacific Journal of Atmospheric Sciences";journal;"19767951, 19767633";"Korean Meteorological Society";No;No;0,723;Q2;42;34;144;1878;323;139;2,51;55,24;35,82;1;South Korea;Asiatic Region;"Korean Meteorological Society";"2008-2026";"Atmospheric Science (Q2)";"Earth and Planetary Sciences" +7928;21101051834;"Atherosclerosis Plus";journal;"26670895, 26670909";"Elsevier Ireland Ltd";Yes;No;0,723;Q2;57;34;76;1520;200;76;3,22;44,71;32,33;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"2021-2026";"Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2)";"Medicine" +7929;145172;"Behavioral Sleep Medicine";journal;"15402010, 15402002";"Routledge";No;No;0,723;Q2;74;66;181;3411;485;180;2,34;51,68;57,37;0;United States;Northern America;"Routledge";"2003-2026";"Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Psychology (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience; Psychology" +7930;19600161812;"Clinical Medicine Insights: Endocrinology and Diabetes";journal;"11795514";"SAGE Publications Ltd";Yes;No;0,723;Q2;29;35;81;1215;240;76;2,46;34,71;49,43;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Internal Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +7931;21101307616;"Comparative Immunology Reports";journal;"29503116";"Elsevier Ltd";Yes;No;0,723;Q2;17;70;126;4451;500;126;4,13;63,59;44,31;0;United Kingdom;Western Europe;"Elsevier Ltd";"2024-2026";"Environmental Science (miscellaneous) (Q2); Immunology (Q3)";"Environmental Science; Immunology and Microbiology" +7932;17513;"Glycoconjugate Journal";journal;"02820080, 15734986";"Springer";No;No;0,723;Q2;102;25;141;1514;465;139;3,08;60,56;46,97;0;United States;Northern America;"Springer";"1984-2026";"Biochemistry (Q2); Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +7933;21100197936;"Greenhouse Gases: Science and Technology";journal;"21523878";"John Wiley and Sons Inc";No;No;0,723;Q2;52;73;171;4437;636;166;3,13;60,78;24,56;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2011-2026";"Environmental Chemistry (Q2); Environmental Engineering (Q2)";"Environmental Science" +7934;22372;"Immunopharmacology and Immunotoxicology";journal;"15322513, 08923973";"Taylor and Francis Ltd.";No;No;0,723;Q2;67;85;277;4628;846;275;2,85;54,45;46,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-2026";"Medicine (miscellaneous) (Q2); Pharmacology (Q2); Toxicology (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7935;20233;"Journal of Medical Microbiology";journal;"14735644, 00222615";"Microbiology Society";Yes;No;0,723;Q2;140;159;468;7150;1132;443;2,39;44,97;51,39;3;United Kingdom;Western Europe;"Microbiology Society";"1968-2026";"Medicine (miscellaneous) (Q2); Microbiology (Q2); Microbiology (medical) (Q2)";"Immunology and Microbiology; Medicine" +7936;24797;"Mini-Reviews in Medicinal Chemistry";journal;"18755607, 13895575";"Bentham Science Publishers";No;No;0,723;Q2;119;132;406;14986;1880;401;4,75;113,53;39,61;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2001-2026";"Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q2); Cancer Research (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7937;21100244850;"Animals";journal;"20762615";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,722;Q1;114;3637;11138;215003;39725;10974;3,38;59,12;45,16;8;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Animal Science and Zoology (Q1); Veterinary (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Veterinary" +7938;144983;"Archival Science";journal;"13890166, 15737500";"Springer Science and Business Media B.V.";No;No;0,722;Q1;48;53;99;3262;272;94;1,64;61,55;57,32;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2001-2026";"History (Q1); Library and Information Sciences (Q1)";"Arts and Humanities; Social Sciences" +7939;21100843893;"Cogent Education";journal;"2331186X";"Taylor and Francis Ltd.";Yes;No;0,722;Q1;53;824;1308;48411;5525;1299;4,34;58,75;45,84;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Education (Q1)";"Social Sciences" +7940;15846;"Journal of Biomechanics";journal;"18732380, 00219290";"Elsevier Ltd";No;No;0,722;Q1;240;452;1145;17963;3406;1134;2,90;39,74;29,06;0;United Kingdom;Western Europe;"Elsevier Ltd";"1968-2026";"Rehabilitation (Q1); Biomedical Engineering (Q2); Biophysics (Q2); Orthopedics and Sports Medicine (Q2); Sports Science (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Health Professions; Medicine" +7941;144785;"Rangeland Ecology and Management";journal;"15507424";"Elsevier Inc.";No;No;0,722;Q1;88;179;276;11292;881;275;3,38;63,08;36,75;2;United States;Northern America;"Elsevier Inc.";"2004-2026";"Animal Science and Zoology (Q1); Nature and Landscape Conservation (Q1); Ecology (Q2); Management, Monitoring, Policy and Law (Q2)";"Agricultural and Biological Sciences; Environmental Science" +7942;85920;"Reviews on Advanced Materials Science";journal;"16058127, 16065131";"Walter de Gruyter GmbH";Yes;No;0,722;Q1;74;103;296;8751;1529;296;5,44;84,96;25,42;0;Russian Federation;Eastern Europe;"Walter de Gruyter GmbH";"2003-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q2)";"Materials Science; Physics and Astronomy" +7943;5600152880;"Social Semiotics";journal;"10350330, 14701219";"Routledge";No;No;0,722;Q1;50;81;145;4550;439;142;3,06;56,17;40,87;0;United Kingdom;Western Europe;"Routledge";"1991-2026";"Communication (Q1); Cultural Studies (Q1); Linguistics and Language (Q1)";"Social Sciences" +7944;28507;"Survival";journal;"00396338, 14682699";"Routledge";No;No;0,722;Q1;60;81;201;2623;386;194;1,44;32,38;17,58;11;United Kingdom;Western Europe;"Routledge";"1959-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7945;21100865207;"Advances in Rheumatology";journal;"25233106";"BioMed Central Ltd";Yes;No;0,722;Q2;45;66;194;2235;505;188;2,62;33,86;56,90;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2018-2026";"Rheumatology (Q2)";"Medicine" +7946;9500153922;"American Journal of Reproductive Immunology";journal;"16000897, 10467408";"Wiley-Blackwell Publishing Ltd";No;No;0,722;Q2;123;157;402;7691;1122;387;2,76;48,99;53,22;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1980-1984, 1989-2026";"Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +7947;21100332402;"Catalysts";journal;"20734344";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,722;Q2;122;1175;4123;78671;19099;4007;4,64;66,95;37,95;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Catalysis (Q2); Physical and Theoretical Chemistry (Q2)";"Chemical Engineering; Chemistry" +7948;21101150734;"Journal of Artificial Intelligence and Technology";journal;"27668649";"Intelligence Science and Technology Press Inc.";No;No;0,722;Q2;22;57;92;2098;500;90;5,53;36,81;42,64;0;United States;Northern America;"Intelligence Science and Technology Press Inc.";"2021-2026";"Artificial Intelligence (Q2)";"Computer Science" +7949;19700177307;"Parkinson's Disease";journal;"20420080, 20908083";"John Wiley and Sons Ltd";Yes;No;0,722;Q2;67;31;102;1466;306;102;2,22;47,29;51,67;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008, 2010-2026";"Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience" +7950;21100932751;"SAGE Open Medicine";journal;"20503121";"SAGE Publications Ltd";Yes;No;0,722;Q2;49;157;855;6090;2309;855;2,41;38,79;40,39;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2014-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +7951;21357;"Scandinavian Journal of Immunology";journal;"03009475, 13653083";"Wiley-Blackwell Publishing Ltd";No;No;0,722;Q2;104;90;269;5056;619;228;2,11;56,18;52,53;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1972-2026";"Medicine (miscellaneous) (Q2); Immunology (Q3)";"Immunology and Microbiology; Medicine" +7952;19374;"AAPS PharmSciTech";journal;"15309932";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,721;Q1;130;235;792;20367;4165;790;5,41;86,67;38,37;1;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2000-2026";"Agronomy and Crop Science (Q1); Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Drug Discovery (Q2); Ecology (Q2); Medicine (miscellaneous) (Q2); Pharmaceutical Science (Q2)";"Agricultural and Biological Sciences; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7953;145349;"Business and Politics";journal;"13695258, 14693569";"Cambridge University Press";Yes;No;0,721;Q1;42;40;86;3211;244;86;2,87;80,28;26,58;2;United Kingdom;Western Europe;"Cambridge University Press";"1999-2000, 2004-2026";"Political Science and International Relations (Q1); Industrial Relations (Q2)";"Business, Management and Accounting; Social Sciences" +7954;19700200840;"Childhood Obesity";journal;"21532176, 21532168";"Mary Ann Liebert Inc.";No;No;0,721;Q1;59;81;197;3624;372;192;1,77;44,74;69,74;1;United States;Northern America;"Mary Ann Liebert Inc.";"2010-2026";"Pediatrics, Perinatology and Child Health (Q1); Nutrition and Dietetics (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine; Nursing" +7955;21100228568;"Maritime Studies";journal;"22129790, 18727859";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,721;Q1;36;65;133;4720;393;133;2,51;72,62;42,24;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2012-2026";"Aquatic Science (Q1); Development (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +7956;22916;"Medical Mycology";journal;"13693786, 14602709";"Oxford University Press";No;No;0,721;Q1;115;124;370;4978;1116;366;3,16;40,15;51,52;0;United Kingdom;Western Europe;"Oxford University Press";"1962-2026";"Veterinary (miscellaneous) (Q1); Infectious Diseases (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Veterinary" +7957;16411;"Chemical Engineering Research and Design";journal;"17443563, 02638762";"Institution of Chemical Engineers";No;No;0,721;Q2;143;565;1931;29896;8894;1911;4,56;52,91;29,80;0;United Kingdom;Western Europe;"Institution of Chemical Engineers";"1983-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)";"Chemical Engineering; Chemistry" +7958;19900192153;"Environmental Engineering Research";journal;"2005968X, 12261025";"Korean Society of Environmental Engineers";Yes;No;0,721;Q2;52;90;330;5756;1359;330;4,30;63,96;32,34;0;South Korea;Asiatic Region;"Korean Society of Environmental Engineers";"2011-2026";"Environmental Engineering (Q2)";"Environmental Science" +7959;4700153514;"Journal of Geriatric Cardiology";journal;"16715411";"Tsinghua University Press";No;No;0,721;Q2;54;100;320;3664;668;242;2,57;36,64;41,97;0;China;Asiatic Region;"Tsinghua University Press";"2006-2025";"Cardiology and Cardiovascular Medicine (Q2); Geriatrics and Gerontology (Q2)";"Medicine" +7960;19429;"Wetlands";journal;"19436246, 02775212";"Springer Science and Business Media B.V.";No;No;0,721;Q2;108;124;353;8378;891;353;2,42;67,56;35,67;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1981-2026";"Ecology (Q2); Environmental Chemistry (Q2); Environmental Science (miscellaneous) (Q2)";"Environmental Science" +7961;25562;"Proceedings - Symposium on Logic in Computer Science";conference and proceedings;"10436871";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,721;-;75;68;209;2800;324;203;1,50;41,18;13,02;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1986-1987, 1990-2011, 2013, 2015-2019, 2021-2025";"Mathematics (miscellaneous); Software";"Computer Science; Mathematics" +7962;21101080190;"Chemical Physics Impact";journal;"26670224";"Elsevier B.V.";Yes;No;0,720;Q1;32;193;695;11708;4017;691;5,86;60,66;33,67;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Condensed Matter Physics (Q1); Physics and Astronomy (miscellaneous) (Q1); Atomic and Molecular Physics, and Optics (Q2); Biochemistry (Q2); Biophysics (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Science (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Physics and Astronomy" +7963;20541;"Computational Materials Science";journal;"09270256";"Elsevier B.V.";No;No;0,720;Q1;164;796;1905;44093;7549;1902;3,93;55,39;27,98;1;Netherlands;Western Europe;"Elsevier B.V.";"1970, 1992-2026";"Mechanics of Materials (Q1); Physics and Astronomy (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2); Computational Mathematics (Q2); Computer Science (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Chemistry; Computer Science; Engineering; Materials Science; Mathematics; Physics and Astronomy" +7964;16700154710;"Ecohydrology";journal;"19360584, 19360592";"John Wiley and Sons Ltd";No;No;0,720;Q1;79;201;346;14282;928;338;2,44;71,05;35,94;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Aquatic Science (Q1); Earth-Surface Processes (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Ecology (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +7965;85667;"EuroChoices";journal;"14780917, 1746692X";"John Wiley and Sons Inc";No;No;0,720;Q1;28;34;104;408;281;81;2,32;12,00;44,05;1;United States;Northern America;"John Wiley and Sons Inc";"2002-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Geography, Planning and Development (Q1)";"Economics, Econometrics and Finance; Social Sciences" +7966;26529;"Fuzzy Sets and Systems";journal;"01650114";"Elsevier B.V.";No;No;0,720;Q1;197;299;815;11668;2615;812;3,48;39,02;30,01;0;Netherlands;Western Europe;"Elsevier B.V.";"1978-2026";"Logic (Q1); Artificial Intelligence (Q2)";"Computer Science; Mathematics" +7967;21101291057;"IEEE Open Journal of Ultrasonics, Ferroelectrics, and Frequency Control";journal;"26940884";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,720;Q1;10;22;64;411;168;64;1,73;18,68;29,03;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2021-2025";"Acoustics and Ultrasonics (Q1); Instrumentation (Q1); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +7968;21100805777;"Information and Learning Science";journal;"23985356, 23985348";"Emerald Publishing";No;No;0,720;Q1;43;30;110;1870;406;105;3,65;62,33;53,95;0;United Kingdom;Western Europe;"Emerald Publishing";"2017-2026";"Education (Q1); Library and Information Sciences (Q1); Computer Science Applications (Q2)";"Computer Science; Social Sciences" +7969;21100845200;"International Journal of Community Based Nursing and Midwifery";journal;"23224835, 23222476";"Shriaz University of Medical Sciences";Yes;No;0,720;Q1;31;32;94;983;222;73;1,95;30,72;63,22;0;Iran;Middle East;"Shriaz University of Medical Sciences";"2015-2026";"Community and Home Care (Q1); Family Practice (Q1); Maternity and Midwifery (Q1); Health (social science) (Q2)";"Medicine; Nursing; Social Sciences" +7970;24360;"Journal of Intelligent and Robotic Systems: Theory and Applications";journal;"15730409, 09210296";"Springer Nature";No;No;0,720;Q1;111;129;658;6536;2581;632;3,55;50,67;20,26;0;Netherlands;Western Europe;"Springer Nature";"1988-2026";"Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Artificial Intelligence (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Software (Q2)";"Computer Science; Engineering" +7971;13316;"Journal of Librarianship and Information Science";journal;"09610006, 17416477";"SAGE Publications Ltd";No;No;0,720;Q1;45;152;218;10199;810;218;3,84;67,10;45,83;4;United Kingdom;Western Europe;"SAGE Publications Ltd";"1969-2026";"Library and Information Sciences (Q1)";"Social Sciences" +7972;20966;"Journal of Manufacturing Science and Engineering";journal;"10871357, 15288935";"American Society of Mechanical Engineers (ASME)";No;No;0,720;Q1;125;104;470;4337;1675;458;3,64;41,70;20,43;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1960-2026";"Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Computer Science Applications (Q2); Control and Systems Engineering (Q2)";"Computer Science; Engineering" +7973;21100900141;"Pixel-Bit, Revista de Medios y Educacion";journal;"11338482, 21717966";"Universidad de Sevilla";Yes;Yes;0,720;Q1;22;21;90;942;290;90;3,60;44,86;50,94;0;Spain;Western Europe;"Universidad de Sevilla";"2018-2025";"Education (Q1); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Information Systems (Q2)";"Computer Science; Social Sciences" +7974;21101107951;"Comprehensive Psychoneuroendocrinology";journal;"26664976";"Elsevier Ltd";Yes;No;0,720;Q2;19;46;150;2377;387;140;2,48;51,67;54,51;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2); Psychology (miscellaneous) (Q2); Biological Psychiatry (Q3); Endocrine and Autonomic Systems (Q3); Endocrinology, Diabetes and Metabolism (Q3); Immunology (Q3)";"Immunology and Microbiology; Medicine; Neuroscience; Psychology" +7975;12042;"Legal and Criminological Psychology";journal;"13553259, 20448333";"Wiley-Blackwell";No;No;0,720;Q2;70;62;55;2681;158;43;1,71;43,24;63,08;0;United States;Northern America;"Wiley-Blackwell";"1996-2026";"Applied Psychology (Q2); Pathology and Forensic Medicine (Q2)";"Medicine; Psychology" +7976;56494;"OR Spectrum";journal;"01716468, 14366304";"Springer Verlag";No;No;0,720;Q2;85;63;126;2934;340;123;2,66;46,57;23,35;0;Germany;Western Europe;"Springer Verlag";"1979-2026";"Business, Management and Accounting (miscellaneous) (Q2); Management Science and Operations Research (Q2)";"Business, Management and Accounting; Decision Sciences" +7977;21101182141;"SLEEP Advances";journal;"26325012";"Oxford University Press";Yes;No;0,720;Q2;16;91;189;5106;475;183;1,88;56,11;54,99;0;United Kingdom;Western Europe;"Oxford University Press";"2020-2026";"Clinical Psychology (Q2); Neurology (clinical) (Q2); Neuropsychology and Physiological Psychology (Q2); Physiology (medical) (Q2); Behavioral Neuroscience (Q3)";"Medicine; Neuroscience; Psychology" +7978;59863;"Nongye Jixie Xuebao/Transactions of the Chinese Society for Agricultural Machinery";journal;"10001298";"Chinese Society of Agricultural Machinery";No;No;0,719;Q1;71;757;1899;25989;6724;1899;3,77;34,33;33,28;0;China;Asiatic Region;"Chinese Society of Agricultural Machinery";"2001-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Mechanical Engineering (Q1)";"Agricultural and Biological Sciences; Engineering" +7979;22791;"Odontology / the Society of the Nippon Dental University";journal;"16181247, 16181255";"Springer Japan";No;No;0,719;Q1;54;297;302;13581;989;302;3,42;45,73;46,18;0;Japan;Asiatic Region;"Springer Japan";"2003-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +7980;20500195402;"Psychology Learning and Teaching";journal;"14757257";"SAGE Publications Inc.";No;No;0,719;Q1;26;19;73;693;177;64;1,57;36,47;61,82;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2011-2026";"Education (Q1); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +7981;18400156705;"Set-Valued and Variational Analysis";journal;"18770541, 18770533";"Springer Verlag";No;No;0,719;Q1;50;49;139;1692;177;137;1,03;34,53;20,45;0;Germany;Western Europe;"Springer Verlag";"2009-2026";"Analysis (Q1); Applied Mathematics (Q2); Geometry and Topology (Q2); Numerical Analysis (Q2); Statistics and Probability (Q2)";"Mathematics" +7982;19884;"Spinal Cord";journal;"14765624, 13624393";"Springer Nature";No;No;0,719;Q1;135;96;351;3218;871;341;1,90;33,52;44,51;0;United Kingdom;Western Europe;"Springer Nature";"1972, 1996-2026";"Rehabilitation (Q1); Medicine (miscellaneous) (Q2); Neurology (Q2); Neurology (clinical) (Q2)";"Medicine; Neuroscience" +7983;4800153205;"ACM Transactions on Autonomous and Adaptive Systems";journal;"15564665, 15564703";"Association for Computing Machinery";No;No;0,719;Q2;48;35;49;1782;242;45;5,43;50,91;27,33;0;United States;Northern America;"Association for Computing Machinery";"2006-2025";"Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q2); Software (Q2)";"Computer Science; Engineering" +7984;13044;"ACM Transactions on Database Systems";journal;"15574644, 03625915";"Association for Computing Machinery";No;No;0,719;Q2;94;18;43;1084;115;43;2,14;60,22;26,09;0;United States;Northern America;"Association for Computing Machinery";"1976-2026";"Information Systems (Q2)";"Computer Science" +7985;15462;"Biotechnology and Applied Biochemistry";journal;"14708744, 08854513";"Wiley-Blackwell";No;No;0,719;Q2;89;238;523;13510;2293;522;3,15;56,76;45,79;0;United States;Northern America;"Wiley-Blackwell";"1986-2026";"Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biomedical Engineering (Q2); Biotechnology (Q2); Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Process Chemistry and Technology (Q2); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +7986;12886;"Cognitive Systems Research";journal;"13890417, 22144366";"Elsevier B.V.";No;No;0,719;Q2;76;68;197;3902;779;194;3,99;57,38;34,36;0;Netherlands;Western Europe;"Elsevier B.V.";"1999-2026";"Artificial Intelligence (Q2); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2); Software (Q2)";"Computer Science; Neuroscience; Psychology" +7987;21100204106;"Infection and Chemotherapy";journal;"20932340, 20926448";"Korean Society of Infectious Diseases, Korean Society for Antimicrobial Therapy, Korean Society for AIDS, Korean Society of Pediatric Infectious Diseases";Yes;Yes;0,719;Q2;44;85;224;2152;448;168;1,87;25,32;55,20;0;South Korea;Asiatic Region;"Korean Society of Infectious Diseases, Korean Society for Antimicrobial Therapy, Korean Society for AIDS, Korean Society of Pediatric Infectious Diseases";"2011-2025";"Infectious Diseases (Q2); Pharmacology (medical) (Q2)";"Medicine" +7988;21101150081;"Journal of Central Nervous System Disease";journal;"11795735";"SAGE Publications Inc.";Yes;No;0,719;Q2;18;29;99;1543;255;92;2,33;53,21;45,56;0;United States;Northern America;"SAGE Publications Inc.";"2012, 2017, 2019-2026";"Neurology (Q2); Neurology (clinical) (Q2); Cellular and Molecular Neuroscience (Q3)";"Medicine; Neuroscience" +7989;21101277816;"Solar";journal;"26739941";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,719;Q2;18;58;97;3026;543;97;6,63;52,17;21,12;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Energy (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Energy; Environmental Science; Materials Science" +7990;21101055130;"Water Reuse";journal;"27096092, 27096106";"IWA Publishing";Yes;No;0,719;Q2;39;48;115;2695;406;111;3,53;56,15;34,96;0;United Kingdom;Western Europe;"IWA Publishing";"2021-2025";"Filtration and Separation (Q2); Water Science and Technology (Q2)";"Chemical Engineering; Environmental Science" +7991;21392;"Yonsei Medical Journal";journal;"19762437, 05135796";"Yonsei University College of Medicine";Yes;No;0,719;Q2;83;103;341;3453;1098;336;3,32;33,52;36,84;0;South Korea;Asiatic Region;"Yonsei University College of Medicine";"1963-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +7992;4700152406;"Ethnicities";journal;"14687968, 17412706";"SAGE Publications Ltd";No;No;0,718;Q1;67;80;143;3909;403;143;2,73;48,86;47,93;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1)";"Arts and Humanities; Social Sciences" +7993;20500195207;"European Journal of Tourism Research";journal;"13140817, 19947658";"International University College";Yes;Yes;0,718;Q1;37;53;148;4154;652;137;4,43;78,38;50,33;0;Bulgaria;Eastern Europe;"International University College";"2008-2026";"Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +7994;5700161890;"International Feminist Journal of Politics";journal;"14684470, 14616742";"Routledge";No;No;0,718;Q1;66;58;148;3230;359;108;2,23;55,69;85,29;5;United Kingdom;Western Europe;"Routledge";"1999-2026";"Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +7995;20324;"Journal of Educational Administration and History";journal;"14787431, 00220620";"Routledge";No;No;0,718;Q1;34;51;99;2483;303;88;2,57;48,69;56,63;1;United Kingdom;Western Europe;"Routledge";"1968-2000, 2003, 2010-2026";"Education (Q1); Sociology and Political Science (Q1)";"Social Sciences" +7996;5200152837;"Journal of Surgical Education";journal;"19317204, 18787452";"Elsevier Inc.";No;No;0,718;Q1;84;301;715;8342;1673;706;2,22;27,71;48,65;0;United States;Northern America;"Elsevier Inc.";"2007-2026";"Education (Q1); Surgery (Q1)";"Medicine; Social Sciences" +7997;20337;"Parasite";journal;"1252607X, 17761042";"EDP Sciences";Yes;No;0,718;Q1;62;77;205;4543;624;202;2,90;59,00;40,93;1;France;Western Europe;"EDP Sciences";"1994-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Animal Science and Zoology (Q1); Insect Science (Q1); Parasitology (Q1); Veterinary (miscellaneous) (Q1); Infectious Diseases (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine; Veterinary" +7998;28490;"Economics Letters";journal;"01651765";"Elsevier B.V.";No;No;0,718;Q2;142;554;1306;10268;3177;1306;2,20;18,53;26,01;23;Netherlands;Western Europe;"Elsevier B.V.";"1978-2026";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +7999;21246;"International Journal of Immunopathology and Pharmacology";journal;"03946320, 20587384";"SAGE Publications Inc.";Yes;No;0,718;Q2;72;55;244;2714;710;238;2,86;49,35;50,42;0;Italy;Western Europe;"SAGE Publications Inc.";"1989-2026";"Pharmacology (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +8000;21100247045;"Journal of Co-operative Organization and Management";journal;"2213297X";"Elsevier B.V.";No;No;0,718;Q2;27;7;55;516;200;54;2,48;73,71;23,53;0;Netherlands;Western Europe;"Elsevier B.V.";"2013-2025";"Business and International Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +8001;21101253969;"Microbe (Netherlands)";journal;"29501946";"Elsevier B.V.";Yes;No;0,718;Q2;16;410;211;30311;929;209;4,40;73,93;41,33;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Applied Microbiology and Biotechnology (Q2); Microbiology (Q2); Microbiology (medical) (Q2)";"Immunology and Microbiology; Medicine" +8002;21100243806;"World Journal of Hepatology";journal;"19485182";"Baishideng Publishing Group Inc";Yes;No;0,718;Q2;90;262;444;14510;1267;412;2,94;55,38;38,05;1;China;Asiatic Region;"Baishideng Publishing Group Inc";"2009-2025";"Hepatology (Q2)";"Medicine" +8003;27522;"International Geology Review";journal;"00206814, 19382839";"Taylor and Francis Ltd.";No;No;0,717;Q1;113;122;490;14742;1073;489;2,15;120,84;25,00;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1959-2026";"Geology (Q1)";"Earth and Planetary Sciences" +8004;14423;"Journal of Rheology";journal;"01486055, 15208516";"Society of Rheology";No;No;0,717;Q1;128;68;245;4074;784;228;3,75;59,91;22,79;0;United States;Northern America;"Society of Rheology";"1957-1970, 1978-2026";"Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science; Physics and Astronomy" +8005;21100205990;"Opuscula Mathematica";journal;"23006919, 12329274";"Akademia Gorniczo-Hutnicza im. S. Staszica w Krakowie.";Yes;Yes;0,717;Q1;24;39;124;1014;236;124;2,23;26,00;25,00;0;Poland;Eastern Europe;"Akademia Gorniczo-Hutnicza im. S. Staszica w Krakowie.";"2012-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +8006;5600152801;"Primary Care Diabetes";journal;"18780210, 17519918";"Elsevier Ltd";No;No;0,717;Q1;55;98;336;3363;838;321;2,23;34,32;48,40;1;United Kingdom;Western Europe;"Elsevier Ltd";"2007-2026";"Family Practice (Q1); Internal Medicine (Q2); Nutrition and Dietetics (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine; Nursing" +8007;23913;"Analytical and Bioanalytical Chemistry";journal;"16182642, 16182650";"Springer Science and Business Media Deutschland GmbH";No;No;0,717;Q2;214;576;1902;24796;8078;1835;4,14;43,05;44,76;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1987, 1996, 2001-2026";"Analytical Chemistry (Q2); Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +8008;24841;"JDDG - Journal of the German Society of Dermatology";journal;"16100387, 16100379";"Wiley-Blackwell Publishing Ltd";No;No;0,717;Q2;81;307;1109;6570;1574;569;1,46;21,40;48,13;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2003-2026";"Dermatology (Q2)";"Medicine" +8009;19700188331;"Journal of Change Management";journal;"14791811, 14697017";"Routledge";No;No;0,717;Q2;62;19;58;1273;217;56;3,76;67,00;56,86;1;United Kingdom;Western Europe;"Routledge";"2000-2002, 2004-2026";"Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +8010;15411;"Journal of Clinical Psychology in Medical Settings";journal;"10689583, 15733572";"Springer";No;No;0,717;Q2;63;91;240;3933;621;238;2,32;43,22;71,43;0;United States;Northern America;"Springer";"1994-2026";"Clinical Psychology (Q2)";"Psychology" +8011;12001;"Journal of the Experimental Analysis of Behavior";journal;"00225002, 19383711";"Wiley-Blackwell";No;No;0,717;Q2;76;81;198;4313;394;193;2,05;53,25;39,52;0;United States;Northern America;"Wiley-Blackwell";"1958-2026";"Experimental and Cognitive Psychology (Q2); Behavioral Neuroscience (Q3)";"Neuroscience; Psychology" +8012;21101023181;"Multifunctional Materials";journal;"23997532";"IOP Publishing Ltd.";No;No;0,717;Q2;25;0;9;0;48;9;0,00;0,00;0,00;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2018-2022";"Biomaterials (Q2); Materials Science (miscellaneous) (Q2); Surfaces, Coatings and Films (Q2)";"Materials Science" +8013;17600155039;"Perspectives in Public Health";journal;"17579139, 17579147";"SAGE Publications Ltd";No;No;0,717;Q2;65;89;206;1928;382;152;1,87;21,66;61,57;4;United Kingdom;Western Europe;"SAGE Publications Ltd";"1951, 2009-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8014;20886;"Virology";journal;"00426822, 10960341";"Academic Press Inc.";No;No;0,717;Q2;206;316;622;23448;1674;618;2,68;74,20;43,85;5;United States;Northern America;"Academic Press Inc.";"1955-2026";"Virology (Q2)";"Immunology and Microbiology" +8015;27172;"Growth and Change";journal;"14682257, 00174815";"Wiley-Blackwell Publishing Ltd";No;No;0,717;Q3;72;77;176;5640;550;176;2,75;73,25;36,23;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1970-2026";"Global and Planetary Change (Q3)";"Environmental Science" +8016;21100400176;"Analysis and Mathematical Physics";journal;"1664235X, 16642368";"Springer International Publishing";No;No;0,716;Q1;32;143;375;4438;542;375;1,30;31,03;24,15;0;Switzerland;Western Europe;"Springer International Publishing";"2011-2026";"Algebra and Number Theory (Q1); Analysis (Q1); Mathematical Physics (Q2)";"Mathematics" +8017;18950;"Journal of College Student Development";journal;"08975264, 15433382";"Johns Hopkins University Press";No;No;0,716;Q1;107;51;163;2136;318;142;1,59;41,88;58,49;0;United States;Northern America;"Johns Hopkins University Press";"1990, 1996-2025";"Education (Q1)";"Social Sciences" +8018;28256;"Nationalities Papers";journal;"14653923, 00905992";"Cambridge University Press";No;No;0,716;Q1;42;108;255;8864;545;252;1,73;82,07;43,62;1;United Kingdom;Western Europe;"Cambridge University Press";"1972-1985, 1987-2026";"Geography, Planning and Development (Q1); History (Q1); Political Science and International Relations (Q1)";"Arts and Humanities; Social Sciences" +8019;19700174990;"Public Health Ethics";journal;"17549973, 17549981";"Oxford University Press";No;No;0,716;Q1;36;22;71;867;200;66;4,03;39,41;33,33;0;United Kingdom;Western Europe;"Oxford University Press";"2009-2026";"Issues, Ethics and Legal Aspects (Q1); Philosophy (Q1); Health Policy (Q2)";"Arts and Humanities; Medicine; Nursing" +8020;28363;"Science and Technology of Welding and Joining";journal;"13621718, 17432936";"SAGE Publications Ltd";No;No;0,716;Q1;100;51;229;1825;817;229;3,20;35,78;23,61;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2026";"Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q2)";"Materials Science; Physics and Astronomy" +8021;24157;"Autonomous Agents and Multi-Agent Systems";journal;"15737454, 13872532";"Springer Netherlands";No;No;0,716;Q2;83;43;149;2556;545;148;2,23;59,44;25,00;0;Netherlands;Western Europe;"Springer Netherlands";"1998-2026";"Artificial Intelligence (Q2)";"Computer Science" +8022;16845;"Biochemical and Biophysical Research Communications";journal;"0006291X, 10902104";"Elsevier B.V.";No;No;0,716;Q2;305;1512;3917;73243;10175;3912;2,54;48,44;41,31;0;United States;Northern America;"Elsevier B.V.";"1959-2026";"Biochemistry (Q2); Biophysics (Q2); Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +8023;21101178542;"Ibrain";journal;"27692795, 23131934";"Wiley-VCH Verlag";Yes;No;0,716;Q2;13;41;133;3513;376;128;3,03;85,68;40,22;0;Germany;Western Europe;"Wiley-VCH Verlag";"2015-2026";"Cognitive Neuroscience (Q2); Neurology (Q2); Behavioral Neuroscience (Q3); Cellular and Molecular Neuroscience (Q3)";"Neuroscience" +8024;19900193631;"Iranian Journal of Psychiatry";journal;"17354587, 20082215";"Tehran University of Medical Sciences";Yes;No;0,716;Q2;37;51;153;2460;437;147;3,05;48,24;49,67;0;Iran;Middle East;"Tehran University of Medical Sciences";"2011-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +8025;19400158573;"Journal of Pension Economics and Finance";journal;"14747472, 14753022";"Cambridge University Press";No;No;0,716;Q2;40;37;85;1528;177;84;2,14;41,30;34,08;0;United Kingdom;Western Europe;"Cambridge University Press";"2002-2025";"Economics and Econometrics (Q2); Finance (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +8026;21342;"Pathobiology";journal;"14230291, 10152008";"S. Karger AG";No;No;0,716;Q2;67;41;123;1552;263;121;1,76;37,85;40,40;0;Switzerland;Western Europe;"S. Karger AG";"1938-2026";"Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8027;21100976735;"Neuroscience Insights";journal;"26331055";"SAGE Publications Ltd";Yes;No;0,716;Q3;34;15;82;1033;217;54;2,95;68,87;51,85;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2019-2025";"Neuroscience (miscellaneous) (Q3)";"Neuroscience" +8028;21101181900;"Fruit Research";journal;"27694615";"Maximum Academic Press";Yes;No;0,715;Q1;13;47;97;2871;292;96;2,80;61,09;39,87;0;United States;Northern America;"Maximum Academic Press";"2021-2026";"Horticulture (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +8029;18652;"IAWA Journal";journal;"22941932, 09281541";"Brill Academic Publishers";No;No;0,715;Q1;65;43;78;2528;196;78;2,27;58,79;39,88;0;Netherlands;Western Europe;"Brill Academic Publishers";"1980-1989, 1993-2026";"Forestry (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +8030;15685;"Iowa Law Review";journal;"00210552";"University of Iowa";No;No;0,715;Q1;47;51;153;13759;161;153;0,92;269,78;42,42;0;United States;Northern America;"University of Iowa";"1976, 1979-1980, 1982, 1985, 1987, 1989-1992, 1995-2026";"Law (Q1)";"Social Sciences" +8031;145544;"Journal of Semantics";journal;"01675133, 14774593";"Oxford University Press";No;No;0,715;Q1;56;6;52;258;68;52;0,94;43,00;41,67;0;United Kingdom;Western Europe;"Oxford University Press";"1982-1986, 1990-2025";"Arts and Humanities (miscellaneous) (Q1); Linguistics and Language (Q1); Artificial Intelligence (Q2)";"Arts and Humanities; Computer Science; Social Sciences" +8032;13787;"Journal of Thermal Spray Technology";journal;"15441016, 10599630";"Springer New York";No;No;0,715;Q1;111;230;564;10205;2450;554;3,54;44,37;26,26;0;United States;Northern America;"Springer New York";"1992-2026";"Condensed Matter Physics (Q1); Materials Chemistry (Q2); Surfaces, Coatings and Films (Q2)";"Materials Science; Physics and Astronomy" +8033;5600153926;"Multilingua";journal;"01678507, 16133684";"De Gruyter Mouton";No;No;0,715;Q1;46;32;99;1714;265;97;1,95;53,56;76,00;0;Germany;Western Europe;"De Gruyter Mouton";"1982-2026";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +8034;21101043277;"Administrative Sciences";journal;"20763387";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,715;Q2;56;499;794;38464;4740;789;6,14;77,08;45,64;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting" +8035;22441;"Angiology";journal;"00033197, 19401574";"SAGE Publications Inc.";No;No;0,715;Q2;82;268;417;7876;921;300;2,24;29,39;28,57;1;United States;Northern America;"SAGE Publications Inc.";"1950-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +8036;19850;"Current Opinion in Urology";journal;"09630643, 14736586";"Lippincott Williams and Wilkins";No;No;0,715;Q2;70;93;279;3593;597;253;2,07;38,63;24,09;0;United States;Northern America;"Lippincott Williams and Wilkins";"1992-2026";"Urology (Q2)";"Medicine" +8037;21100853551;"Diagnosis";journal;"21948011, 2194802X";"Walter de Gruyter GmbH";No;No;0,715;Q2;38;103;212;3620;408;175;2,10;35,15;45,23;2;Germany;Western Europe;"Walter de Gruyter GmbH";"2014-2026";"Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Health Policy (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8038;21101179126;"Environmental Analysis Health and Toxicology";journal;"26719525";"Korean Society of Environmental Health and Toxicology";No;No;0,715;Q2;20;39;96;2071;338;94;3,44;53,10;42,54;0;South Korea;Asiatic Region;"Korean Society of Environmental Health and Toxicology";"2020-2026";"Health, Toxicology and Mutagenesis (Q2); Public Health, Environmental and Occupational Health (Q2); Toxicology (Q2)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +8039;19900195053;"Frontiers of Chemical Science and Engineering";journal;"20950179, 20950187";"Higher Education Press Limited Company";No;No;0,715;Q2;59;118;449;8601;1828;441;4,38;72,89;38,25;0;China;Asiatic Region;"Higher Education Press Limited Company";"2011-2025";"Chemical Engineering (miscellaneous) (Q2)";"Chemical Engineering" +8040;4000152132;"International Journal of Biostatistics";journal;"15574679";"Walter de Gruyter GmbH";No;No;0,715;Q2;49;28;104;937;177;102;1,50;33,46;36,59;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2005-2026";"Medicine (miscellaneous) (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics; Medicine" +8041;4700152827;"International Journal of Hospitality and Tourism Administration";journal;"15256480, 15256499";"Routledge";No;No;0,715;Q2;47;77;132;6677;650;130;4,86;86,71;40,65;0;United States;Northern America;"Routledge";"2000-2026";"Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting" +8042;23821;"Journal of Applied Mathematics and Computing";journal;"15985865, 18652085";"";No;No;0,715;Q2;53;423;699;16350;2046;699;3,11;38,65;30,90;0;Germany;Western Europe;"";"1997-2026";"Applied Mathematics (Q2); Computational Mathematics (Q2)";"Mathematics" +8043;70792;"Tellus, Series A: Dynamic Meteorology and Oceanography";journal;"16000870, 02806495";"Stockholm University Press";Yes;No;0,715;Q2;95;14;65;667;114;63;1,36;47,64;18,60;0;United Kingdom;Western Europe;"Stockholm University Press";"1960, 1977-1978, 1983-2025";"Atmospheric Science (Q2); Oceanography (Q2)";"Earth and Planetary Sciences" +8044;15367;"Journal for the Theory of Social Behaviour";journal;"14685914, 00218308";"Wiley-Blackwell Publishing Ltd";No;No;0,714;Q1;70;29;109;1910;314;105;2,55;65,86;11,76;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1971-2026";"Philosophy (Q1); Psychology (miscellaneous) (Q2); Social Psychology (Q2)";"Arts and Humanities; Psychology" +8045;5800224699;"Modern Law Review";journal;"14682230, 00267961";"Wiley-Blackwell";No;No;0,714;Q1;41;48;181;3100;326;171;1,97;64,58;36,36;1;United States;Northern America;"Wiley-Blackwell";"1937-1995, 1997-1999, 2001-2002, 2004, 2010-2026";"Law (Q1)";"Social Sciences" +8046;29210;"Physics of Fluids";journal;"10706631, 10897666";"American Institute of Physics";No;No;0,714;Q1;220;6152;10181;295721;37563;10150;3,68;48,07;26,67;0;United States;Northern America;"American Institute of Physics";"1958-1988, 1994-2026";"Computational Mechanics (Q1); Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1); Condensed Matter Physics (Q2); Mechanics of Materials (Q2)";"Chemical Engineering; Engineering; Physics and Astronomy" +8047;24296;"Clinics in Dermatology";journal;"18791131, 0738081X";"Elsevier Inc.";No;No;0,714;Q2;120;161;359;4876;930;292;2,74;30,29;48,51;0;United States;Northern America;"Elsevier Inc.";"1983-2026";"Dermatology (Q2)";"Medicine" +8048;21101020132;"Fractal and Fractional";journal;"25043110";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,714;Q2;55;826;2386;35142;8495;2364;3,83;42,54;28,92;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2026";"Analysis (Q2); Statistical and Nonlinear Physics (Q2); Statistics and Probability (Q2)";"Mathematics; Physics and Astronomy" +8049;25163;"Geochemistry";journal;"00092819";"Elsevier GmbH";No;No;0,714;Q2;22;103;232;10098;729;231;3,11;98,04;25,00;1;Germany;Western Europe;"Elsevier GmbH";"1978-1990, 1993-1995, 2007, 2021-2026";"Geochemistry and Petrology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +8050;21244;"International Archives of Allergy and Immunology";journal;"14230097, 10182438";"S. Karger AG";No;No;0,714;Q2;118;175;384;6617;958;377;2,57;37,81;47,37;0;Switzerland;Western Europe;"S. Karger AG";"1950-2026";"Medicine (miscellaneous) (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +8051;4500151503;"Jornal Brasileiro de Pneumologia";journal;"18063713, 18063756";"Sociedade Brasileira de Pneumologia e Tisiologia";Yes;Yes;0,714;Q2;55;119;366;2063;576;164;1,47;17,34;50,00;0;Brazil;Latin America;"Sociedade Brasileira de Pneumologia e Tisiologia";"2004-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +8052;130073;"Journal of Consumer Policy";journal;"01687034, 15730700";"Springer New York";No;No;0,714;Q2;66;25;72;1693;250;70;2,56;67,72;39,22;1;United States;Northern America;"Springer New York";"1977-1981, 1983-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +8053;19700175020;"Journal of Tropical Medicine";journal;"16879686, 16879694";"John Wiley and Sons Ltd";Yes;No;0,714;Q2;45;70;191;3491;708;191;3,01;49,87;40,05;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Medicine (miscellaneous) (Q2); Microbiology (Q2); Parasitology (Q2)";"Immunology and Microbiology; Medicine" +8054;5200152801;"Nanoscale Research Letters";journal;"1556276X, 19317573";"Springer New York";Yes;No;0,714;Q2;167;0;118;0;535;118;0,00;0,00;0,00;0;United States;Northern America;"Springer New York";"2006-2022";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q2)";"Materials Science; Physics and Astronomy" +8055;21100780550;"Neurobiology of Sleep and Circadian Rhythms";journal;"24519944";"Elsevier Inc.";Yes;No;0,714;Q2;24;28;31;2552;90;30;2,95;91,14;45,71;0;United States;Northern America;"Elsevier Inc.";"2016-2026";"Neurology (Q2); Neurology (clinical) (Q2); Pulmonary and Respiratory Medicine (Q2); Behavioral Neuroscience (Q3)";"Medicine; Neuroscience" +8056;58705;"Psychology, Health and Medicine";journal;"13548506, 14653966";"Routledge";No;No;0,714;Q2;88;319;637;17000;1703;635;2,43;53,29;57,42;1;United Kingdom;Western Europe;"Routledge";"1996-2026";"Applied Psychology (Q2); Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +8057;24388;"Caries Research";journal;"00086568, 1421976X";"S. Karger AG";No;No;0,713;Q1;119;79;141;3167;461;137;3,26;40,09;55,70;0;Switzerland;Western Europe;"S. Karger AG";"1967-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +8058;144639;"Information Technology and Management";journal;"1385951X, 15737667";"Kluwer Academic Publishers";No;No;0,713;Q1;49;65;63;4244;285;63;4,63;65,29;41,45;1;Netherlands;Western Europe;"Kluwer Academic Publishers";"2004-2026";"Communication (Q1); Business, Management and Accounting (miscellaneous) (Q2); Information Systems (Q2)";"Business, Management and Accounting; Computer Science; Social Sciences" +8059;21100427639;"ISPRS International Journal of Geo-Information";journal;"22209964";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,713;Q1;97;499;1593;27141;6395;1576;3,81;54,39;34,93;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1); Computers in Earth Sciences (Q2)";"Earth and Planetary Sciences; Social Sciences" +8060;16996;"Modern China";journal;"15526836, 00977004";"SAGE Publications Inc.";No;No;0,713;Q1;53;25;92;1682;140;91;1,57;67,28;20,83;0;United States;Northern America;"SAGE Publications Inc.";"1975-2026";"Geography, Planning and Development (Q1); History (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +8061;19800188078;"Review of Symbolic Logic";journal;"17550211, 17550203";"Cambridge University Press";No;No;0,713;Q1;36;46;129;1693;124;129;0,75;36,80;9,86;0;United Kingdom;Western Europe;"Cambridge University Press";"2008-2026";"Logic (Q1); Mathematics (miscellaneous) (Q1); Philosophy (Q1)";"Arts and Humanities; Mathematics" +8062;21100469659;"Swiss Journal of Palaeontology";journal;"16642376, 16642384";"Springer International Publishing AG";Yes;No;0,713;Q1;21;79;93;7321;206;91;2,15;92,67;30,66;0;Switzerland;Western Europe;"Springer International Publishing AG";"2011-2025";"Paleontology (Q1)";"Earth and Planetary Sciences" +8063;6300153123;"Advances in Medical Sciences";journal;"18961126, 18984002";"Medical University of Bialystok";Yes;No;0,713;Q2;56;55;160;2479;457;159;2,69;45,07;52,02;0;Poland;Eastern Europe;"Medical University of Bialystok";"2006-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8064;19616;"Australian Journal of Rural Health";journal;"14401584, 10385282";"Wiley-Blackwell Publishing Ltd";No;No;0,713;Q2;63;146;366;4637;742;282;1,95;31,76;62,50;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2026";"Family Practice (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8065;24407;"Computing";journal;"14365057, 0010485X";"Springer";No;No;0,713;Q2;78;232;384;11794;1768;372;4,32;50,84;28,18;0;Austria;Western Europe;"Springer";"1966-2026";"Computational Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Numerical Analysis (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +8066;24306;"Digital Signal Processing: A Review Journal";journal;"10954333, 10512004";"Elsevier Inc.";No;No;0,713;Q2;100;588;1246;28219;5216;1242;3,93;47,99;30,01;0;United States;Northern America;"Elsevier Inc.";"1991-2026";"Applied Mathematics (Q2); Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q2); Statistics, Probability and Uncertainty (Q2)";"Computer Science; Decision Sciences; Engineering; Mathematics" +8067;14167;"Journal of Healthcare Management";journal;"19447396, 10969012";"Lippincott Williams and Wilkins";No;No;0,713;Q2;57;43;134;988;210;101;1,75;22,98;64,55;0;United States;Northern America;"Lippincott Williams and Wilkins";"1998-2026";"Health Policy (Q2); Leadership and Management (Q2); Medicine (miscellaneous) (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Medicine; Nursing" +8068;21100945704;"Vision (Switzerland)";journal;"24115150";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,713;Q2;24;100;206;5752;546;204;2,77;57,52;39,09;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2025";"Cognitive Neuroscience (Q2); Ophthalmology (Q2); Optometry (Q2); Sensory Systems (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Neuroscience" +8069;18046;"Neuroscience Letters";journal;"18727972, 03043940";"Elsevier Ireland Ltd";No;No;0,713;Q3;200;236;1118;9067;2810;1114;2,34;38,42;41,86;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1975-2026";"Neuroscience (miscellaneous) (Q3)";"Neuroscience" +8070;29034;"Aquatic Sciences";journal;"14209055, 10151621";"Springer Science and Business Media Deutschland GmbH";No;No;0,712;Q1;94;101;284;8311;729;284;2,59;82,29;37,61;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1982, 1989-2026";"Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Ecology (Q2); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +8071;25862;"Designs, Codes, and Cryptography";journal;"09251022, 15737586";"Springer Netherlands";No;No;0,712;Q1;75;246;532;6740;834;528;1,50;27,40;24,66;0;Netherlands;Western Europe;"Springer Netherlands";"1991-2026";"Discrete Mathematics and Combinatorics (Q1); Applied Mathematics (Q2); Computer Science Applications (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +8072;23346;"Journal of Environment and Development";journal;"15525465, 10704965";"SAGE Publications Inc.";No;No;0,712;Q1;56;48;70;3506;259;70;3,41;73,04;30,99;0;United States;Northern America;"SAGE Publications Inc.";"1992-2026";"Development (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +8073;100147029;"Journal of Geriatric Physical Therapy";journal;"15398412, 21520895";"Lippincott Williams and Wilkins Ltd.";No;No;0,712;Q1;56;52;104;1717;239;93;2,27;33,02;57,69;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2005-2026";"Rehabilitation (Q1); Geriatrics and Gerontology (Q2)";"Medicine" +8074;5200152634;"Journal of Women and Minorities in Science and Engineering";journal;"10728325";"Begell House Inc.";No;No;0,712;Q1;35;24;87;1588;206;84;1,67;66,17;80,88;0;United States;Northern America;"Begell House Inc.";"1999, 2001, 2006-2026";"Engineering (miscellaneous) (Q1); Gender Studies (Q1)";"Engineering; Social Sciences" +8075;9500154018;"Journal of Zhejiang University: Science A";journal;"1673565X, 18621775";"Zhejiang University";No;No;0,712;Q1;60;81;230;4098;1029;212;4,93;50,59;26,09;0;China;Asiatic Region;"Zhejiang University";"2000, 2002-2004, 2007-2026";"Engineering (miscellaneous) (Q1)";"Engineering" +8076;21751;"Langenbeck's Archives of Surgery";journal;"14352451, 14352443";"Springer Science and Business Media Deutschland GmbH";No;No;0,712;Q1;97;318;1233;9857;2727;1209;2,19;31,00;26,90;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-2026";"Surgery (Q1)";"Medicine" +8077;21101058963;"Methodological Innovations";journal;"20597991";"SAGE Publications Inc.";Yes;No;0,712;Q1;31;20;81;1072;250;81;3,22;53,60;71,43;0;United States;Northern America;"SAGE Publications Inc.";"2016-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8078;18000156703;"Counselling and Psychotherapy Research";journal;"14733145, 17461405";"Wiley-Blackwell";No;No;0,712;Q2;47;186;348;9655;774;347;2,04;51,91;63,20;0;United States;Northern America;"Wiley-Blackwell";"2001-2026";"Applied Psychology (Q2); Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +8079;19700174958;"Drug Testing and Analysis";journal;"19427611, 19427603";"John Wiley and Sons Ltd";No;No;0,712;Q2;74;242;485;7704;1447;461;2,98;31,83;43,29;6;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Analytical Chemistry (Q2); Environmental Chemistry (Q2); Pharmaceutical Science (Q2); Spectroscopy (Q2)";"Chemistry; Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +8080;21101129622;"JMIR Infodemiology";journal;"25641891";"JMIR Publications Inc.";Yes;No;0,712;Q2;19;57;124;3209;421;123;3,79;56,30;49,82;1;Canada;Northern America;"JMIR Publications Inc.";"2021-2025";"Computer Science Applications (Q2); Health Informatics (Q2); Health Information Management (Q2); Health Policy (Q2)";"Computer Science; Health Professions; Medicine" +8081;27124;"Journal of the American Psychiatric Nurses Association";journal;"15325725, 10783903";"SAGE Publications Inc.";No;No;0,712;Q2;45;83;211;3239;456;179;2,31;39,02;69,52;1;United States;Northern America;"SAGE Publications Inc.";"1995-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +8082;25122;"Progress in Crystal Growth and Characterization of Materials";journal;"09608974";"Elsevier Ltd";No;No;0,712;Q2;61;10;23;1320;108;22;5,53;132,00;22,50;0;United Kingdom;Western Europe;"Elsevier Ltd";"1990-2026";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)";"Materials Science; Physics and Astronomy" +8083;21101319256;"Environmental Research: Ecology";journal;"2752664X";"Institute of Physics";Yes;No;0,711;Q1;9;33;52;2722;150;52;2,78;82,48;37,21;0;United Kingdom;Western Europe;"Institute of Physics";"2022-2026";"Nature and Landscape Conservation (Q1); Ecological Modeling (Q2); Ecology (Q2); Global and Planetary Change (Q3)";"Environmental Science" +8084;38284;"Grass and Forage Science";journal;"13652494, 01425242";"Wiley-Blackwell Publishing Ltd";No;No;0,711;Q1;71;58;135;4154;467;129;2,57;71,62;37,84;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1946-2026";"Agronomy and Crop Science (Q1); Management, Monitoring, Policy and Law (Q2)";"Agricultural and Biological Sciences; Environmental Science" +8085;12400154722;"Informatics for Health and Social Care";journal;"17538157, 17538165";"Taylor and Francis Ltd.";No;No;0,711;Q1;42;10;76;463;278;73;3,05;46,30;47,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976-1999, 2002, 2005-2026";"Nursing (miscellaneous) (Q1); Health Informatics (Q2); Health Information Management (Q2)";"Health Professions; Medicine; Nursing" +8086;144907;"Peabody Journal of Education";journal;"0161956X, 15327930";"Routledge";No;No;0,711;Q1;59;38;126;1827;255;105;1,83;48,08;61,54;0;United Kingdom;Western Europe;"Routledge";"1923-1991, 1993-2026";"Education (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +8087;21100932737;"BMJ Open Quality";journal;"23996641";"BMJ Publishing Group";Yes;No;0,711;Q2;31;351;764;9661;1744;758;2,17;27,52;55,95;1;United Kingdom;Western Europe;"BMJ Publishing Group";"2017-2026";"Health Policy (Q2); Leadership and Management (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Nursing" +8088;4700152439;"Current Pediatric Reviews";journal;"15733963, 18756336";"Bentham Science Publishers";No;No;0,711;Q2;40;64;144;3574;372;127;2,94;55,84;60,71;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +8089;15029;"Dementia and Geriatric Cognitive Disorders";journal;"14219824, 14208008";"S. Karger AG";No;No;0,711;Q2;130;54;143;2629;367;140;2,41;48,69;44,32;0;Switzerland;Western Europe;"S. Karger AG";"1990-1992, 1994-2026";"Cognitive Neuroscience (Q2); Geriatrics and Gerontology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Neuroscience" +8090;21100332455;"Journal of Huntington's Disease";journal;"18796400, 18796397";"SAGE Publications Ltd";No;No;0,711;Q2;43;30;119;0;251;113;2,18;0,00;60,90;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2012-2026";"Neurology (clinical) (Q2); Cellular and Molecular Neuroscience (Q3)";"Medicine; Neuroscience" +8091;28525;"Journal of Magnetic Resonance";journal;"10960856, 10907807";"Academic Press Inc.";No;No;0,711;Q2;151;90;410;3825;935;404;2,42;42,50;25,45;0;United States;Northern America;"Academic Press Inc.";"1997-2026";"Biochemistry (Q2); Biophysics (Q2); Condensed Matter Physics (Q2); Nuclear and High Energy Physics (Q2)";"Biochemistry, Genetics and Molecular Biology; Physics and Astronomy" +8092;23079;"Journal of Pharmaceutical Sciences";journal;"15206017, 00223549";"Elsevier B.V.";No;No;0,711;Q2;224;423;1027;20933;4194;958;3,97;49,49;38,45;1;United States;Northern America;"Elsevier B.V.";"1961-2026";"Pharmaceutical Science (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +8093;21101024415;"Results in Chemistry";journal;"22117156";"Elsevier B.V.";Yes;No;0,711;Q2;50;967;1622;60100;9929;1619;6,70;62,15;35,96;1;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Chemistry (miscellaneous) (Q2)";"Chemistry" +8094;21101046767;"Environmental Research Communications";journal;"25157620";"IOP Publishing Ltd.";Yes;No;0,710;Q1;37;440;821;27663;2624;821;3,02;62,87;37,58;3;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Earth-Surface Processes (Q1); Geology (Q1); Atmospheric Science (Q2); Environmental Science (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +8095;21100835738;"Industry and Higher Education";journal;"20436858, 09504222";"SAGE Publications Inc.";No;No;0,710;Q1;41;90;183;5122;810;177;4,05;56,91;42,06;1;United States;Northern America;"SAGE Publications Inc.";"1996-2026";"Education (Q1); Business and International Management (Q2)";"Business, Management and Accounting; Social Sciences" +8096;21519;"Police Journal";journal;"17405599, 0032258X";"SAGE Publications Ltd";No;No;0,710;Q1;26;73;122;4045;316;121;2,44;55,41;51,58;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1974-1986, 2002-2026";"Law (Q1)";"Social Sciences" +8097;14366;"Seminars in Hearing";journal;"07340451, 10988955";"Thieme Medical Publishers, Inc.";No;No;0,710;Q1;42;44;87;1367;183;77;1,91;31,07;54,95;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1986-2026";"Speech and Hearing (Q1)";"Health Professions" +8098;100147346;"Syntax";journal;"13680005, 14679612";"Wiley-Blackwell Publishing Ltd";No;No;0,710;Q1;37;0;55;0;53;54;0,80;0,00;0,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2000, 2002, 2005-2024";"Linguistics and Language (Q1)";"Social Sciences" +8099;21101044541;"BioTech";journal;"26736284";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,710;Q2;30;99;178;7712;768;175;4,15;77,90;41,23;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Applied Microbiology and Biotechnology (Q2); Biochemistry (Q2); Bioengineering (Q2); Biomedical Engineering (Q2); Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Immunology and Microbiology" +8100;21100242254;"Clinical Endoscopy";journal;"22342400, 22342443";"Korean Society of Gastrointestinal Endoscopy";Yes;No;0,710;Q2;48;141;354;3303;688;282;2,09;23,43;25,04;0;South Korea;Asiatic Region;"Korean Society of Gastrointestinal Endoscopy";"2011-2026";"Gastroenterology (Q2); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +8101;21101133556;"Clinics and Practice";journal;"20397283";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,710;Q2;25;236;466;10750;1363;459;3,06;45,55;42,76;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2012, 2015, 2019-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8102;13639;"International Journal of Adhesion and Adhesives";journal;"01437496";"Elsevier Ltd";No;No;0,710;Q2;122;256;651;12668;2951;649;4,57;49,48;32,37;0;United Kingdom;Western Europe;"Elsevier Ltd";"1980-2026";"Biomaterials (Q2); Chemical Engineering (miscellaneous) (Q2); Polymers and Plastics (Q2)";"Chemical Engineering; Materials Science" +8103;9500154039;"Journal of Electroanalytical Chemistry";journal;"15726657";"Elsevier B.V.";No;No;0,710;Q2;182;617;2362;34965;10665;2354;4,79;56,67;37,50;0;Netherlands;Western Europe;"Elsevier B.V.";"1959-2026";"Analytical Chemistry (Q2); Chemical Engineering (miscellaneous) (Q2); Electrochemistry (Q2)";"Chemical Engineering; Chemistry" +8104;4700152756;"Journal of Relationship Marketing";journal;"15332675, 15332667";"Routledge";No;No;0,710;Q2;39;26;41;2729;214;41;3,86;104,96;50,75;0;United States;Northern America;"Routledge";"2002-2026";"Marketing (Q2)";"Business, Management and Accounting" +8105;21100897127;"Materialia";journal;"25891529";"Elsevier B.V.";No;No;0,710;Q2;61;290;945;14966;3358;945;3,23;51,61;26,80;0;Netherlands;Western Europe;"Elsevier B.V.";"2018-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +8106;20186;"Transfusion";journal;"00411132, 15372995";"John Wiley and Sons Inc";No;No;0,710;Q2;158;402;1280;9975;2098;1050;1,45;24,81;48,45;1;United States;Northern America;"John Wiley and Sons Inc";"1958-2026";"Hematology (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +8107;19811;"Annals of the Entomological Society of America";journal;"00138746";"Entomological Society of America";Yes;No;0,709;Q1;89;303;188;12619;603;176;3,51;41,65;38,34;0;United States;Northern America;"Entomological Society of America";"1932, 1935-1936, 1938, 1954-1956, 1960-1962, 1965-1980, 1983, 1985-1986, 1988, 1990, 1993-2026";"Insect Science (Q1)";"Agricultural and Biological Sciences" +8108;5200152206;"Annual Review of Law and Social Science";book series;"15503585";"Annual Reviews Inc.";No;No;0,709;Q1;69;0;58;0;232;58;3,78;0,00;0,00;0;United States;Northern America;"Annual Reviews Inc.";"2006-2024";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8109;21100850750;"European Journal of Futures Research";journal;"21952248, 21954194";"Springer Verlag";Yes;No;0,709;Q1;32;15;56;1029;229;56;2,19;68,60;41,94;0;Germany;Western Europe;"Springer Verlag";"2013-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Management of Technology and Innovation (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +8110;5800224528;"Journal of Aesthetics and Art Criticism";journal;"15406245, 00218529";"Oxford University Press";No;No;0,709;Q1;49;30;143;1111;161;130;0,90;37,03;27,59;0;United Kingdom;Western Europe;"Oxford University Press";"1974, 1980, 1982, 1987, 1992, 1996-2025";"Music (Q1); Philosophy (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +8111;21101321975;"Journal of Economic Criminology";journal;"29497914";"Elsevier B.V.";Yes;No;0,709;Q1;15;77;98;5206;523;95;5,34;67,61;33,33;1;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Law (Q1)";"Economics, Econometrics and Finance; Social Sciences" +8112;12833;"Journal of Psychoeducational Assessment";journal;"15575144, 07342829";"SAGE Publications Inc.";No;No;0,709;Q1;67;68;193;3368;520;193;1,92;49,53;43,51;0;United States;Northern America;"SAGE Publications Inc.";"1983-2026";"Education (Q1); Clinical Psychology (Q2); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +8113;21100212800;"Analytical Cellular Pathology";journal;"22107185, 22107177";"John Wiley and Sons Inc";Yes;No;0,709;Q2;41;29;146;1294;422;146;2,46;44,62;44,03;0;United States;Northern America;"John Wiley and Sons Inc";"2010-2026";"Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Cancer Research (Q3); Cell Biology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8114;21101182758;"CPSS Transactions on Power Electronics and Applications";journal;"2475742X";"China Power Supply Society";No;No;0,709;Q2;33;40;121;1086;422;121;2,76;27,15;40,91;0;China;Asiatic Region;"China Power Supply Society";"2019-2025";"Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Engineering" +8115;15627;"Food and Bioproducts Processing";journal;"09603085, 17443571";"Institution of Chemical Engineers";No;No;0,709;Q2;115;249;402;13993;1944;401;4,84;56,20;40,55;0;United Kingdom;Western Europe;"Institution of Chemical Engineers";"1991-2026";"Biochemistry (Q2); Biotechnology (Q2); Chemical Engineering (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +8116;26119;"Hormone and Metabolic Research";journal;"14394286, 00185043";"Georg Thieme Verlag";No;No;0,709;Q2;106;60;312;2756;714;306;2,28;45,93;47,35;0;Germany;Western Europe;"Georg Thieme Verlag";"1969-2026";"Biochemistry (Q2); Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8117;21101089400;"Journal of Peridynamics and Nonlocal Modeling";journal;"2522896X, 25228978";"Springer International Publishing AG";No;No;0,709;Q2;17;13;69;873;190;68;2,55;67,15;8,82;0;Switzerland;Western Europe;"Springer International Publishing AG";"2019-2026";"Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +8118;21101199204;"MedComm - Future Medicine";journal;"27696456";"John Wiley and Sons Inc";Yes;No;0,709;Q2;9;36;92;2847;243;82;2,92;79,08;41,58;0;China;Asiatic Region;"John Wiley and Sons Inc";"2022-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8119;12469;"Orthopedic Clinics of North America";journal;"00305898, 15581373";"W.B. Saunders";No;No;0,709;Q2;107;49;171;1968;367;145;1,85;40,16;17,69;0;United States;Northern America;"W.B. Saunders";"1970-2026";"Orthopedics and Sports Medicine (Q2)";"Medicine" +8120;21101140105;"Brain and Spine";journal;"27725294";"Elsevier B.V.";Yes;No;0,709;Q3;17;289;455;10110;989;376;2,02;34,98;26,65;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Biological Psychiatry (Q3); Neurology (Q3); Neuroscience (miscellaneous) (Q3)";"Neuroscience" +8121;21101347156;"Global Environmental Change Advances";journal;"29501385";"Elsevier B.V.";Yes;No;0,709;Q3;4;15;9;1183;27;9;3,00;78,87;31,51;1;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Global and Planetary Change (Q3)";"Environmental Science" +8122;21100886530;"Area Development and Policy";journal;"23792957";"Routledge";No;No;0,708;Q1;28;41;80;2378;237;72;2,73;58,00;36,96;2;United Kingdom;Western Europe;"Routledge";"2016-2026";"Geography, Planning and Development (Q1); Nature and Landscape Conservation (Q1); Sociology and Political Science (Q1); Urban Studies (Q1); Public Administration (Q2)";"Environmental Science; Social Sciences" +8123;25213;"Arkiv for Matematik";journal;"18712487, 00042080";"International Press, Inc.";No;No;0,708;Q1;33;15;54;328;45;54;0,66;21,87;7,41;0;Netherlands;Western Europe;"International Press, Inc.";"1949-1958, 1960-1985, 1987-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +8124;21100443918;"Distinktion";journal;"21599149, 1600910X";"Routledge";No;No;0,708;Q1;28;47;75;3421;186;69;2,14;72,79;24,29;0;United Kingdom;Western Europe;"Routledge";"2009-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8125;17900156720;"European Early Childhood Education Research Journal";journal;"1350293X, 17521807";"Taylor and Francis Ltd.";No;No;0,708;Q1;54;121;202;6253;564;184;2,25;51,68;78,20;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-1995, 1999, 2002-2003, 2007-2026";"Education (Q1); Developmental and Educational Psychology (Q2)";"Psychology; Social Sciences" +8126;20900195110;"Geotechnique Letters";journal;"20452543";"ICE Publishing";No;No;0,708;Q1;51;30;104;784;219;104;2,03;26,13;30,23;0;United Kingdom;Western Europe;"ICE Publishing";"2011-2025";"Earth and Planetary Sciences (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +8127;11700154358;"Journal of Research in Nursing";journal;"1744988X, 17449871";"SAGE Publications Ltd";No;No;0,708;Q1;46;107;292;2789;417;151;1,20;26,07;70,27;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-1999, 2002, 2005-2026";"Research and Theory (Q1)";"Nursing" +8128;22283;"Seminars in Pediatric Surgery";journal;"10558586, 15329453";"W.B. Saunders";No;No;0,708;Q1;93;52;199;1762;585;182;2,68;33,88;58,04;0;United States;Northern America;"W.B. Saunders";"1992-2026";"Surgery (Q1); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +8129;18447;"Cell Biochemistry and Biophysics";journal;"15590283, 10859195";"Springer";No;No;0,708;Q2;97;485;402;31166;1319;400;3,41;64,26;42,42;0;United States;Northern America;"Springer";"1979, 1990, 1995, 1997-2026";"Biochemistry (Q2); Biophysics (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8130;15518;"Epileptic Disorders";journal;"19506945, 12949361";"John Wiley & Sons Inc.";No;No;0,708;Q2;70;168;380;4616;752;258;1,88;27,48;45,44;0;United States;Northern America;"John Wiley & Sons Inc.";"1999-2026";"Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Neurology (Q3)";"Medicine; Neuroscience" +8131;21101196049;"Immuno";journal;"26735601";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,708;Q2;15;62;103;5063;310;101;3,03;81,66;47,40;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Immunology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +8132;20221;"Journal of Basic Microbiology";journal;"0233111X, 15214028";"Wiley-VCH Verlag";No;No;0,708;Q2;86;145;353;9448;1510;336;3,74;65,16;45,27;0;Germany;Western Europe;"Wiley-VCH Verlag";"1985-2026";"Applied Microbiology and Biotechnology (Q2); Medicine (miscellaneous) (Q2)";"Immunology and Microbiology; Medicine" +8133;130067;"Journal of Molecular Histology";journal;"15672379, 15672387";"Springer Science and Business Media B.V.";No;No;0,708;Q2;69;367;233;18591;655;232;2,90;50,66;48,46;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2004-2026";"Histology (Q2); Medicine (miscellaneous) (Q2); Physiology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8134;20634;"Journal of Texture Studies";journal;"00224901, 17454603";"Wiley-Blackwell";No;No;0,708;Q2;75;53;230;2774;948;224;3,87;52,34;45,23;0;United States;Northern America;"Wiley-Blackwell";"1969-2026";"Food Science (Q2); Pharmaceutical Science (Q2)";"Agricultural and Biological Sciences; Pharmacology, Toxicology and Pharmaceutics" +8135;21100201774;"Performance Enhancement and Health";journal;"22112669";"Elsevier B.V.";No;No;0,708;Q2;30;72;87;3920;267;74;2,93;54,44;36,07;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2014, 2016-2026";"Health (social science) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Public Health, Environmental and Occupational Health (Q2)";"Health Professions; Medicine; Social Sciences" +8136;21100810702;"Animal Biotelemetry";journal;"20503385";"BioMed Central Ltd";Yes;No;0,707;Q1;40;42;118;2572;327;117;2,72;61,24;28,22;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2013-2026";"Animal Science and Zoology (Q1); Instrumentation (Q1); Computer Networks and Communications (Q2); Signal Processing (Q2)";"Agricultural and Biological Sciences; Computer Science; Physics and Astronomy" +8137;14402;"Archives Europeennes de Sociologie";journal;"14740583, 00039756";"Cambridge University Press";No;No;0,707;Q1;52;10;39;753;109;39;1,93;75,30;23,08;0;United Kingdom;Western Europe;"Cambridge University Press";"1960-2026";"Sociology and Political Science (Q1)";"Social Sciences" +8138;38758;"Canadian Journal of Occupational Therapy";journal;"00084174, 19119828";"SAGE Publications Inc.";No;No;0,707;Q1;69;50;99;2506;259;94;2,59;50,12;84,93;0;United States;Northern America;"SAGE Publications Inc.";"1933-2026";"Occupational Therapy (Q1)";"Health Professions" +8139;13922;"HIP International";journal;"17246067, 11207000";"Wichtig Publishing Srl";No;No;0,707;Q1;54;95;344;2766;675;342;1,92;29,12;19,51;1;Italy;Western Europe;"Wichtig Publishing Srl";"1997-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +8140;144741;"International Journal of Educational Management";journal;"0951354X";"Emerald Group Publishing Ltd.";No;No;0,707;Q1;74;134;284;9094;1236;281;4,24;67,87;41,52;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1987-2026";"Education (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +8141;21100836842;"Rossijskaja Arheologija";journal;"08696063";"Izdatel'stvo Nauka";No;No;0,707;Q1;9;68;168;1865;61;167;0,38;27,43;52,30;0;Russian Federation;Eastern Europe;"Izdatel'stvo Nauka";"2017-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +8142;21101283226;"CHEST Critical Care";journal;"29497884";"Elsevier B.V.";Yes;No;0,707;Q2;8;105;98;3288;170;69;1,73;31,31;45,51;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Critical Care and Intensive Care Medicine (Q2)";"Medicine" +8143;14409;"Chronobiology International";journal;"15256073, 07420528";"Taylor and Francis Ltd.";No;No;0,707;Q2;127;146;427;8390;1080;418;2,42;57,47;50,00;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2026";"Physiology (Q2); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8144;21101068038;"IEEE Open Journal of Engineering in Medicine and Biology";journal;"26441276";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,707;Q2;25;76;168;3203;624;162;3,60;42,14;26,70;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Biomedical Engineering (Q2)";"Engineering" +8145;21101304709;"Intelligent Marine Technology and Systems";journal;"29481953";"Springer";No;No;0,707;Q2;8;39;48;1747;228;47;4,75;44,79;35,53;1;Singapore;Asiatic Region;"Springer";"2023-2026";"Computer Science (miscellaneous) (Q2); Ocean Engineering (Q2); Oceanography (Q2)";"Computer Science; Earth and Planetary Sciences; Engineering" +8146;21100454943;"Physiological Reports";journal;"2051817X";"John Wiley & Sons Inc.";Yes;No;0,707;Q2;72;540;1094;26316;2446;1073;2,06;48,73;37,83;1;United States;Northern America;"John Wiley & Sons Inc.";"2013-2026";"Physiology (Q2); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8147;5000155903;"Psicologia: Reflexao e Critica";journal;"01027972, 16787153";"Springer International Publishing AG";Yes;Yes;0,707;Q2;35;37;120;2068;349;119;2,52;55,89;44,52;0;Switzerland;Western Europe;"Springer International Publishing AG";"2006-2026";"Psychology (miscellaneous) (Q2)";"Psychology" +8148;25224;"Toxicology in Vitro";journal;"18793177, 08872333";"Elsevier Ltd";No;No;0,707;Q2;138;119;513;5931;1627;511;3,11;49,84;45,51;0;United Kingdom;Western Europe;"Elsevier Ltd";"1987-2026";"Medicine (miscellaneous) (Q2); Toxicology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +8149;21100983151;"Cancer Reports";journal;"25738348";"Wiley-Blackwell Publishing Ltd";Yes;No;0,707;Q3;30;317;764;13844;1835;757;2,50;43,67;40,99;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2018-2026";"Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8150;22103;"Analysis";journal;"14678284, 00032638";"Oxford University Press";No;No;0,706;Q1;58;60;192;1494;165;185;0,93;24,90;27,14;0;United Kingdom;Western Europe;"Oxford University Press";"1933-1940, 1947-1994, 1996-2025";"Philosophy (Q1)";"Arts and Humanities" +8151;14183;"Aphasiology";journal;"14645041, 02687038";"Routledge";No;No;0,706;Q1;88;172;247;11318;716;244;2,87;65,80;70,46;0;United Kingdom;Western Europe;"Routledge";"1987-2026";"Linguistics and Language (Q1); LPN and LVN (Q1); Otorhinolaryngology (Q1); Developmental and Educational Psychology (Q2); Neurology (clinical) (Q2); Neurology (Q3)";"Medicine; Neuroscience; Nursing; Psychology; Social Sciences" +8152;5600154403;"Australian Social Work";journal;"0312407X, 14470748";"Taylor and Francis Ltd.";No;No;0,706;Q1;47;79;140;2887;356;120;2,57;36,54;76,39;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2004, 2006-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Health (social science) (Q2); Social Work (Q2)";"Social Sciences" +8153;21100835739;"Contemporary Italian Politics";journal;"23248823, 23248831";"Routledge";No;No;0,706;Q1;25;47;98;2150;237;87;2,23;45,74;41,33;4;United States;Northern America;"Routledge";"2013-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8154;29220;"Experimental Thermal and Fluid Science";journal;"08941777";"Elsevier Inc.";No;No;0,706;Q1;153;194;569;9007;2176;567;3,97;46,43;24,42;0;United States;Northern America;"Elsevier Inc.";"1988-2026";"Aerospace Engineering (Q1); Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1); Chemical Engineering (miscellaneous) (Q2); Nuclear Energy and Engineering (Q2)";"Chemical Engineering; Energy; Engineering" +8155;25514;"Gerodontology";journal;"07340664, 17412358";"Blackwell Munksgaard";No;No;0,706;Q1;72;78;182;3068;473;168;2,16;39,33;50,13;0;Denmark;Western Europe;"Blackwell Munksgaard";"1982-1990, 1993-2026";"Dentistry (miscellaneous) (Q1); Geriatrics and Gerontology (Q2)";"Dentistry; Medicine" +8156;21101065048;"Global Transitions";journal;"25897918";"KeAi Communications Co.";Yes;No;0,706;Q1;29;40;60;2818;267;55;4,92;70,45;43,06;1;China;Asiatic Region;"KeAi Communications Co.";"2019-2026";"Development (Q1); Health (social science) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Social Sciences" +8157;4100151705;"Informatics in Education";journal;"16485831";"Vilnius University Institute of Data Science and Digital Technologies";Yes;Yes;0,706;Q1;38;23;93;1204;384;92;3,45;52,35;44,58;0;Lithuania;Eastern Europe;"Vilnius University Institute of Data Science and Digital Technologies";"2006-2025";"Communication (Q1); Education (Q1); Computer Science Applications (Q2)";"Computer Science; Social Sciences" +8158;20428;"International Journal of Advanced Manufacturing Technology";journal;"02683768, 14333015";"Springer London";No;No;0,706;Q1;188;2187;6754;106040;29051;6748;4,15;48,49;22,62;0;United Kingdom;Western Europe;"Springer London";"1985-2026";"Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Computer Science Applications (Q2); Control and Systems Engineering (Q2); Software (Q2)";"Computer Science; Engineering" +8159;15428;"Journal of Communication Disorders";journal;"00219924, 18737994";"Elsevier Inc.";No;No;0,706;Q1;84;76;166;5018;449;163;2,21;66,03;71,16;0;United States;Northern America;"Elsevier Inc.";"1967-2026";"Linguistics and Language (Q1); LPN and LVN (Q1); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2); Speech and Hearing (Q2)";"Health Professions; Neuroscience; Nursing; Psychology; Social Sciences" +8160;21101043565;"Journal of Global Security Studies";journal;"20573189, 20573170";"Oxford University Press";No;No;0,706;Q1;31;43;125;3293;268;125;1,76;76,58;36,07;1;United States;Northern America;"Oxford University Press";"2016-2026";"Political Science and International Relations (Q1); Safety Research (Q1)";"Social Sciences" +8161;19700170190;"Journal of Men's Studies";journal;"10608265, 19330251";"SAGE Publications Inc.";No;No;0,706;Q1;27;39;75;2550;227;73;2,37;65,38;49,44;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2008, 2012-2026";"Cultural Studies (Q1); Gender Studies (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +8162;21101013588;"Journal of Spine Surgery";journal;"2414469X, 24144630";"AME Publishing Company";Yes;No;0,706;Q1;35;116;202;3676;491;172;2,14;31,69;18,52;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2016-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +8163;21100416147;"Reproductive Biomedicine and Society Online";journal;"24056618";"Elsevier Ltd";Yes;No;0,706;Q1;29;0;27;0;108;23;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2022";"Cultural Studies (Q1); Health (social science) (Q2); Reproductive Medicine (Q2); Developmental Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Social Sciences" +8164;17700156755;"Tourism and Hospitality Research";journal;"14673584, 17429692";"SAGE Publications Inc.";No;No;0,706;Q1;64;181;153;14258;792;152;4,99;78,77;38,63;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2004-2026";"Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +8165;16325;"Advanced Powder Technology";journal;"15685527, 09218831";"Elsevier B.V.";No;No;0,706;Q2;117;281;988;13937;4606;987;4,45;49,60;29,78;0;Netherlands;Western Europe;"Elsevier B.V.";"1990-2026";"Chemical Engineering (miscellaneous) (Q2); Mechanics of Materials (Q2)";"Chemical Engineering; Engineering" +8166;14836;"Canadian Journal of Neurological Sciences";journal;"03171671, 20570155";"Cambridge University Press";No;No;0,706;Q2;85;298;559;7059;867;356;1,34;23,69;41,76;3;United Kingdom;Western Europe;"Cambridge University Press";"1974-2026";"Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Neurology (Q3)";"Medicine; Neuroscience" +8167;22072;"Current Gene Therapy";journal;"18755631, 15665232";"Bentham Science Publishers";No;No;0,706;Q2;85;96;112;9746;371;105;3,03;101,52;40,50;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2001-2025";"Drug Discovery (Q2); Genetics (Q2); Genetics (clinical) (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +8168;21100199837;"Frontiers in Neurorobotics";journal;"16625218";"Frontiers Media SA";Yes;No;0,706;Q2;63;62;681;2441;2534;616;3,56;39,37;35,65;0;Switzerland;Western Europe;"Frontiers Media SA";"2007-2026";"Artificial Intelligence (Q2); Biomedical Engineering (Q2)";"Computer Science; Engineering" +8169;12385;"International Journal of Industrial Ergonomics";journal;"01698141, 18728219";"Elsevier B.V.";No;No;0,706;Q2;104;130;303;7943;1280;302;4,17;61,10;34,87;0;Netherlands;Western Europe;"Elsevier B.V.";"1986-2026";"Human Factors and Ergonomics (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +8170;21100397702;"Journal of Blood Medicine";journal;"11792736";"Dove Medical Press Ltd";Yes;No;0,706;Q2;38;53;193;1953;507;192;2,21;36,85;44,89;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010, 2014-2026";"Hematology (Q2)";"Medicine" +8171;18923;"Journal of Genetic Psychology";journal;"19400896, 00221325";"Routledge";No;No;0,706;Q2;68;73;112;4860;268;106;2,07;66,58;58,11;0;United States;Northern America;"Routledge";"1946-1949, 1951, 1954-2026";"Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Life-span and Life-course Studies (Q2)";"Psychology; Social Sciences" +8172;21100801200;"Musculoskeletal Science and Practice";journal;"24687812, 24688630";"Elsevier Ltd";No;No;0,706;Q2;118;177;458;9116;1094;408;2,15;51,50;45,65;0;United Kingdom;Western Europe;"Elsevier Ltd";"2017-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions" +8173;13308;"Nutrition and Cancer";journal;"01635581, 15327914";"Taylor and Francis Ltd.";No;No;0,706;Q2;137;109;615;5334;1793;609;3,11;48,94;44,31;0;United States;Northern America;"Taylor and Francis Ltd.";"1978-1983, 1985-2026";"Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +8174;13476;"African Development Review";journal;"14678268, 10176772";"Wiley-Blackwell Publishing Ltd";No;No;0,705;Q1;56;33;136;1783;447;134;2,47;54,03;23,08;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1989-2026";"Development (Q1)";"Social Sciences" +8175;20000195048;"Aquatic Invasions";journal;"17986540, 18185487";"Regional Euro-Asian Biological Invasions Centre";Yes;No;0,705;Q1;64;29;88;1891;244;87;2,23;65,21;42,45;0;Finland;Western Europe;"Regional Euro-Asian Biological Invasions Centre";"2006-2025";"Aquatic Science (Q1); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +8176;21100821602;"Business and Professional Communication Quarterly";journal;"23294922, 23294906";"SAGE Publications Inc.";No;No;0,705;Q1;47;95;116;5001;414;112;3,49;52,64;55,77;0;United States;Northern America;"SAGE Publications Inc.";"2015-2026";"Arts and Humanities (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance" +8177;29267;"Journal of Arid Environments";journal;"1095922X, 01401963";"Academic Press";No;No;0,705;Q1;151;147;417;8394;1301;415;2,75;57,10;35,09;0;United States;Northern America;"Academic Press";"1978-2026";"Earth-Surface Processes (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Ecology (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +8178;21101059761;"Medical Cannabis and Cannabinoids";journal;"25043889";"S. Karger AG";Yes;No;0,705;Q1;19;17;61;694;176;57;2,64;40,82;37,50;0;Switzerland;Western Europe;"S. Karger AG";"2018-2026";"Complementary and Alternative Medicine (Q1); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +8179;19833;"Mycopathologia";journal;"15730832, 0301486X";"Springer Science and Business Media B.V.";No;No;0,705;Q1;93;109;300;3714;864;294;2,87;34,07;47,64;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1938-1941, 1943, 1949-1950, 1959-1962, 1974-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1); Veterinary (miscellaneous) (Q1); Applied Microbiology and Biotechnology (Q2); Microbiology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology; Veterinary" +8180;17500155129;"PET Clinics";journal;"15568598, 18799809";"W.B. Saunders";No;No;0,705;Q1;40;56;179;3538;424;142;2,47;63,18;25,81;0;United States;Northern America;"W.B. Saunders";"2006-2026";"Radiation (Q1); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine; Physics and Astronomy" +8181;27045;"American Journal of Clinical Pathology";journal;"19437722, 00029173";"Oxford University Press";No;No;0,705;Q2;149;213;559;5807;1084;482;2,04;27,26;48,58;0;United States;Northern America;"Oxford University Press";"1931-1932, 1934, 1936, 1940, 1944-2026";"Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2)";"Medicine" +8182;130118;"Canadian Journal of Infectious Diseases and Medical Microbiology";journal;"17129532, 19181493";"John Wiley and Sons Ltd";Yes;No;0,705;Q2;55;87;244;4172;772;244;2,66;47,95;42,13;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2005-2026";"Infectious Diseases (Q2); Microbiology (medical) (Q2)";"Medicine" +8183;24173;"Connection Science";journal;"13600494, 09540091";"Taylor and Francis A.S.";Yes;No;0,705;Q2;55;39;275;2209;1177;269;4,03;56,64;31,82;0;United Kingdom;Western Europe;"Taylor and Francis A.S.";"1989-2026";"Artificial Intelligence (Q2); Human-Computer Interaction (Q2); Software (Q2)";"Computer Science" +8184;21101243354;"Intelligent Pharmacy";journal;"2949866X";"KeAi Publishing Communications Ltd.";Yes;No;0,705;Q2;18;40;127;3039;862;119;6,79;75,98;37,32;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2023-2026";"Artificial Intelligence (Q2); Computer Science Applications (Q2); Pharmaceutical Science (Q2); Pharmacology (Q2)";"Computer Science; Pharmacology, Toxicology and Pharmaceutics" +8185;23633;"Quarterly Review of Economics and Finance";journal;"10629769";"Elsevier B.V.";No;No;0,705;Q2;77;92;396;5123;1589;396;4,21;55,68;26,91;2;Netherlands;Western Europe;"Elsevier B.V.";"1992-2026";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +8186;21101060163;"Virtual Reality and Intelligent Hardware";journal;"20965796, 26661209";"KeAi Communications Co.";Yes;No;0,705;Q2;30;34;108;1497;713;102;6,42;44,03;24,44;0;China;Asiatic Region;"KeAi Communications Co.";"2019-2025";"Computer Graphics and Computer-Aided Design (Q2); Computer Science Applications (Q2); Human-Computer Interaction (Q2)";"Computer Science" +8187;22669;"Advanced Synthesis and Catalysis";journal;"16154169, 16154150";"Wiley-VCH Verlag";No;No;0,704;Q1;183;537;1603;34015;5935;1591;3,75;63,34;35,49;0;Germany;Western Europe;"Wiley-VCH Verlag";"1996-2026";"Organic Chemistry (Q1); Catalysis (Q2)";"Chemical Engineering; Chemistry" +8188;21100466764;"Applied Biological Chemistry";journal;"24680842, 24680834";"Springer Nature";Yes;No;0,704;Q1;47;93;284;4749;1153;280;4,15;51,06;38,64;0;Netherlands;Western Europe;"Springer Nature";"2016-2026";"Organic Chemistry (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +8189;17182;"Aquatic Conservation: Marine and Freshwater Ecosystems";journal;"10990755, 10527613";"John Wiley and Sons Ltd";No;No;0,704;Q1;100;241;498;16046;1278;478;2,48;66,58;39,97;4;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1991-2026";"Aquatic Science (Q1); Nature and Landscape Conservation (Q1); Ecology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +8190;22634;"Holocene";journal;"14770911, 09596836";"SAGE Publications Ltd";No;No;0,704;Q1;140;108;368;9317;700;366;1,85;86,27;38,58;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991-2026";"Archeology (arts and humanities) (Q1); Paleontology (Q1); Earth-Surface Processes (Q2); Ecology (Q2); Global and Planetary Change (Q3)";"Arts and Humanities; Earth and Planetary Sciences; Environmental Science" +8191;21101019709;"Journal of the American Academy of Orthopaedic Surgeons Global Research and Reviews";journal;"24747661";"Wolters Kluwer Health";Yes;No;0,704;Q1;32;216;492;4677;1079;487;1,66;21,65;23,44;0;United States;Northern America;"Wolters Kluwer Health";"2017-2026";"Surgery (Q1); Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2)";"Medicine" +8192;21101089489;"Oil Crop Science";journal;"20962428, 2666626X";"KeAi Communications Co.";Yes;No;0,704;Q1;17;36;91;2246;424;91;5,00;62,39;43,28;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +8193;21101079115;"Revista Eurolatinoamericana de Derecho Administrativo";journal;"2362583X";"Universidad Nacional del Litoral";Yes;Yes;0,704;Q1;6;17;58;712;30;58;0,38;41,88;17,65;0;Argentina;Latin America;"Universidad Nacional del Litoral";"2019-2025";"Law (Q1)";"Social Sciences" +8194;21100897791;"Vaccine: X";journal;"25901362";"Elsevier Ltd";Yes;No;0,704;Q1;27;146;423;5724;1101;419;2,50;39,21;52,02;4;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Veterinary (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Veterinary" +8195;21101130817;"Wearable Technologies";journal;"26317176";"Cambridge University Press";Yes;No;0,704;Q1;21;54;79;2859;311;79;3,73;52,94;26,19;0;United Kingdom;Western Europe;"Cambridge University Press";"2020-2026";"Rehabilitation (Q1); Biomedical Engineering (Q2); Human-Computer Interaction (Q2)";"Computer Science; Engineering; Medicine" +8196;15500154705;"Cellular and Molecular Bioengineering";journal;"18655025, 18655033";"Springer";No;No;0,704;Q2;51;46;130;2690;467;114;3,51;58,48;44,36;0;United States;Northern America;"Springer";"2009-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Modeling and Simulation (Q2)";"Biochemistry, Genetics and Molecular Biology; Mathematics" +8197;5300152209;"Psychological Services";journal;"15411559, 1939148X";"American Psychological Association";No;No;0,704;Q2;66;72;374;3401;773;373;1,72;47,24;66,97;0;United States;Northern America;"American Psychological Association";"2004-2026";"Applied Psychology (Q2); Clinical Psychology (Q2)";"Psychology" +8198;11400153316;"Tissue Engineering - Part A";journal;"1937335X, 19373341";"Mary Ann Liebert Inc.";No;No;0,704;Q2;142;110;213;6124;705;207;3,30;55,67;36,07;0;United States;Northern America;"Mary Ann Liebert Inc.";"2008-2026";"Biochemistry (Q2); Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +8199;7000153254;"Dao";journal;"15697274, 15403009";"Springer Netherlands";No;No;0,703;Q1;25;31;89;1144;81;87;0,83;36,90;16,13;0;Netherlands;Western Europe;"Springer Netherlands";"2003-2004, 2007-2026";"Philosophy (Q1)";"Arts and Humanities" +8200;31074;"Geoarchaeology - An International Journal";journal;"08836353, 15206548";"John Wiley & Sons Inc.";No;No;0,703;Q1;60;53;123;3851;206;120;1,78;72,66;30,89;0;United States;Northern America;"John Wiley & Sons Inc.";"1986-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1)";"Arts and Humanities; Earth and Planetary Sciences; Social Sciences" +8201;21317;"Health Promotion Practice";journal;"15526372, 15248399";"SAGE Publications Inc.";No;No;0,703;Q1;68;240;503;5827;1002;454;1,70;24,28;76,68;3;United States;Northern America;"SAGE Publications Inc.";"2000-2026";"Nursing (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Nursing" +8202;21100465064;"International Journal of Health Economics and Management";journal;"21999023, 21999031";"Springer Science + Business Media";No;No;0,703;Q1;22;22;75;963;182;75;2,49;43,77;43,48;3;United States;Northern America;"Springer Science + Business Media";"2015-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Health Policy (Q2)";"Economics, Econometrics and Finance; Medicine" +8203;98456;"International Journal of Structural Stability and Dynamics";journal;"02194554, 17936764";"World Scientific";No;No;0,703;Q1;61;788;819;35925;3943;817;4,99;45,59;25,75;0;Singapore;Asiatic Region;"World Scientific";"2004-2026";"Aerospace Engineering (Q1); Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Applied Mathematics (Q2); Ocean Engineering (Q2)";"Engineering; Mathematics" +8204;19700188160;"Journal of Comparative Policy Analysis: Research and Practice";journal;"13876988, 15725448";"Routledge";No;No;0,703;Q1;44;44;99;2987;331;96;3,69;67,89;51,22;0;United States;Northern America;"Routledge";"1998-2026";"Sociology and Political Science (Q1); Public Administration (Q2)";"Social Sciences" +8205;19400157014;"Journal on Computing and Cultural Heritage";journal;"15564711, 15564673";"Association for Computing Machinery";No;No;0,703;Q1;46;77;237;4575;1064;233;3,79;59,42;40,51;0;United States;Northern America;"Association for Computing Machinery";"2008-2026";"Conservation (Q1); Computer Graphics and Computer-Aided Design (Q2); Computer Science Applications (Q2); Information Systems (Q2)";"Arts and Humanities; Computer Science" +8206;24562;"Mathematical Biosciences";journal;"00255564, 18793134";"Elsevier Inc.";No;No;0,703;Q1;118;130;277;6680;665;275;2,41;51,38;34,96;0;United States;Northern America;"Elsevier Inc.";"1967-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Modeling and Simulation (Q2); Statistics and Probability (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Mathematics; Medicine" +8207;25160;"New Zealand Journal of Geology and Geophysics";journal;"00288306, 11758791";"Taylor and Francis Asia Pacific";Yes;No;0,703;Q1;64;71;102;4896;199;98;2,10;68,96;34,36;6;Singapore;Asiatic Region;"Taylor and Francis Asia Pacific";"1958-2025";"Earth and Planetary Sciences (miscellaneous) (Q1); Geology (Q1); Geophysics (Q2)";"Earth and Planetary Sciences" +8208;29784;"Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences";journal;"14712962, 1364503X";"Royal Society Publishing";No;No;0,703;Q1;215;302;969;18027;3597;935;3,72;59,69;25,03;0;United Kingdom;Western Europe;"Royal Society Publishing";"1901, 1947, 1969-1972, 1974-1975, 1977-1988, 1990-2026";"Engineering (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)";"Engineering; Mathematics; Physics and Astronomy" +8209;21101018868;"BMC Nutrition";journal;"20550928";"BioMed Central Ltd";Yes;No;0,703;Q2;40;231;474;11703;1424;474;2,94;50,66;56,42;4;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2); Public Health, Environmental and Occupational Health (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine; Nursing" +8210;12738;"Child Neuropsychology";journal;"17444136, 09297049";"Routledge";No;No;0,703;Q2;91;75;184;5093;465;183;2,37;67,91;69,92;0;United Kingdom;Western Europe;"Routledge";"1986, 1995-2026";"Developmental and Educational Psychology (Q2); Neuropsychology and Physiological Psychology (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine; Psychology" +8211;15636;"Gene";journal;"18790038, 03781119";"Elsevier B.V.";No;No;0,703;Q2;204;668;2132;40119;6296;2124;2,87;60,06;45,07;1;Netherlands;Western Europe;"Elsevier B.V.";"1976-2026";"Medicine (miscellaneous) (Q2); Genetics (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8212;15372;"Journal of Adult Development";journal;"10680667, 15733440";"Springer New York";No;No;0,703;Q2;59;59;90;3612;236;89;2,70;61,22;63,37;1;United States;Northern America;"Springer New York";"1994-2026";"Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2); Life-span and Life-course Studies (Q2)";"Psychology; Social Sciences" +8213;19600157009;"North American Actuarial Journal";journal;"10920277";"Taylor and Francis Ltd.";No;No;0,703;Q2;55;55;110;2575;188;106;1,80;46,82;28,47;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Economics and Econometrics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +8214;17009;"Peritoneal Dialysis International";journal;"17184304, 08968608";"Multimed Inc.";No;No;0,703;Q2;97;105;222;2678;418;172;1,52;25,50;47,49;0;Canada;Northern America;"Multimed Inc.";"1986, 1988-2026";"Medicine (miscellaneous) (Q2); Nephrology (Q2)";"Medicine" +8215;18992;"Neurogenetics";journal;"13646753, 13646745";"Springer Science and Business Media Deutschland GmbH";No;No;0,703;Q3;72;87;105;3979;196;100;1,89;45,74;54,60;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1997-2026";"Cellular and Molecular Neuroscience (Q3); Genetics (Q3); Genetics (clinical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +8216;21101042012;"Citizen Science: Theory and Practice";journal;"20574991";"Ubiquity Press";Yes;No;0,702;Q1;22;34;155;1568;402;153;2,63;46,12;61,86;0;United Kingdom;Western Europe;"Ubiquity Press";"2016, 2020-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +8217;21101052714;"Equilibrium. Quarterly Journal of Economics and Economic Policy";journal;"1689765X, 23533293";"Instytut Badan Gospodarczych/Institute of Economic Research (Poland)";Yes;No;0,702;Q1;33;42;113;3394;707;107;7,92;80,81;45,54;0;Poland;Eastern Europe;"Instytut Badan Gospodarczych/Institute of Economic Research (Poland)";"2016-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +8218;5700162683;"Globalizations";journal;"1474774X, 14747731";"Taylor and Francis Ltd.";No;No;0,702;Q1;66;160;308;11603;923;291;3,19;72,52;42,17;5;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1); Management, Monitoring, Policy and Law (Q2); Public Administration (Q2)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +8219;19900191551;"International Review of the Red Cross";journal;"16075889, 18163831";"Cambridge University Press";Yes;No;0,702;Q1;54;60;184;8605;297;171;1,37;143,42;53,75;0;United Kingdom;Western Europe;"Cambridge University Press";"2005-2026";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8220;21100854808;"Journal of the Society for Social Work and Research";journal;"1948822X, 23342315";"University of Chicago Press";Yes;No;0,702;Q1;35;37;116;2087;306;113;2,69;56,41;61,70;0;United States;Northern America;"University of Chicago Press";"2014-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8221;24476;"Linear and Multilinear Algebra";journal;"03081087, 15635139";"Taylor and Francis Ltd.";No;No;0,702;Q1;55;222;818;5255;952;817;1,15;23,67;30,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1973-2026";"Algebra and Number Theory (Q1)";"Mathematics" +8222;18086;"Sociological Inquiry";journal;"1475682X, 00380245";"Wiley-Blackwell Publishing Ltd";No;No;0,702;Q1;72;62;131;4177;344;126;2,36;67,37;53,45;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1961-2026";"Sociology and Political Science (Q1)";"Social Sciences" +8223;18700156708;"Australian Accounting Review";journal;"10356908, 18352561";"Wiley-Blackwell Publishing Ltd";No;No;0,702;Q2;54;21;80;1627;300;68;3,10;77,48;50,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1991-2026";"Accounting (Q2)";"Business, Management and Accounting" +8224;27869;"Computer Speech and Language";journal;"08852308, 10958363";"Academic Press";No;No;0,702;Q2;94;104;236;5731;1190;236;4,03;55,11;31,65;1;United States;Northern America;"Academic Press";"1986-1987, 1989-2026";"Human-Computer Interaction (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +8225;19700174994;"Expert Review of Hematology";journal;"17474086, 17474094";"Taylor and Francis Ltd.";No;No;0,702;Q2;61;113;318;6128;781;286;2,54;54,23;42,27;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Hematology (Q2)";"Medicine" +8226;28520;"Journal of High Energy Physics";journal;"10298479";"Springer Verlag";Yes;Yes;0,702;Q2;279;2647;7572;197409;25429;7571;3,38;74,58;20,09;0;Germany;Western Europe;"Springer Verlag";"1997-2026";"Nuclear and High Energy Physics (Q2)";"Physics and Astronomy" +8227;23039;"Journal of Liposome Research";journal;"08982104, 15322394";"Taylor and Francis Ltd.";No;No;0,702;Q2;72;51;112;2655;633;112;5,81;52,06;51,30;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-1990, 1992-2026";"Pharmaceutical Science (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +8228;21101268977;"Journal of Trace Elements and Minerals";journal;"27730506";"Elsevier B.V.";Yes;No;0,702;Q2;10;63;72;4598;293;70;4,10;72,98;30,51;1;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Analytical Chemistry (Q2); Toxicology (Q2)";"Chemistry; Pharmacology, Toxicology and Pharmaceutics" +8229;25776;"Quaternary International";journal;"10406182";"Elsevier Ltd";No;No;0,702;Q2;136;175;779;15022;1509;728;2,13;85,84;38,33;0;United Kingdom;Western Europe;"Elsevier Ltd";"1989-2026";"Earth-Surface Processes (Q2)";"Earth and Planetary Sciences" +8230;21100872189;"Applied Earth Science: Transactions of the Institute of Mining and Metallurgy";journal;"25726846, 25726838";"SAGE Publications Ltd";No;No;0,701;Q1;13;22;55;998;135;48;2,03;45,36;18,06;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2026";"Earth and Planetary Sciences (miscellaneous) (Q1); Geochemistry and Petrology (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +8231;21100782390;"Clinical Spine Surgery";journal;"23800194, 23800186";"Lippincott Williams and Wilkins";No;No;0,701;Q1;116;271;480;7998;940;477;2,03;29,51;19,09;0;United States;Northern America;"Lippincott Williams and Wilkins";"2016-2026";"Surgery (Q1); Neurology (clinical) (Q2); Orthopedics and Sports Medicine (Q2)";"Medicine" +8232;21101157925;"Communications in Analysis and Mechanics";journal;"28363310";"American Institute of Mathematical Sciences";Yes;Yes;0,701;Q1;9;40;81;1295;135;81;1,67;32,38;25,00;0;United States;Northern America;"American Institute of Mathematical Sciences";"2023-2026";"Control and Optimization (Q1); Applied Mathematics (Q2); Computer Networks and Communications (Q2); Geometry and Topology (Q2); Mechanics of Materials (Q2)";"Computer Science; Engineering; Mathematics" +8233;29694;"European Journal of Emergency Medicine";journal;"14735695, 09699546";"Lippincott Williams and Wilkins";No;No;0,701;Q1;61;105;309;2174;624;194;2,30;20,70;40,19;0;United States;Northern America;"Lippincott Williams and Wilkins";"1994-2026";"Emergency Medicine (Q1)";"Medicine" +8234;21101304708;"Holistic Integrative Oncology";journal;"27314529";"Springer";Yes;No;0,701;Q1;10;77;132;3924;274;109;1,82;50,96;40,56;0;Singapore;Asiatic Region;"Springer";"2022-2026";"Surgery (Q1); Genetics (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8235;145249;"Mediterranean Journal of Mathematics";journal;"16605454, 16605446";"Springer International Publishing";No;No;0,701;Q1;45;224;836;6047;1125;836;1,28;27,00;28,97;0;Switzerland;Western Europe;"Springer International Publishing";"2004-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +8236;7100153125;"Simulation in Healthcare";journal;"15592332, 1559713X";"Lippincott Williams and Wilkins Ltd.";No;No;0,701;Q1;72;80;235;2702;573;221;2,87;33,78;47,05;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2006-2026";"Education (Q1); Epidemiology (Q2); Medicine (miscellaneous) (Q2); Modeling and Simulation (Q2)";"Mathematics; Medicine; Social Sciences" +8237;21100403251;"International Journal of Women's Dermatology";journal;"23526475";"Wolters Kluwer Health Inc";Yes;No;0,701;Q2;45;30;158;456;278;114;1,72;15,20;72,17;0;United States;Northern America;"Wolters Kluwer Health Inc";"2015-2025";"Dermatology (Q2)";"Medicine" +8238;17859;"Radiologic Clinics of North America";journal;"00338389, 15578275";"W.B. Saunders";No;No;0,701;Q2;95;88;277;3845;552;223;1,83;43,69;38,42;0;United States;Northern America;"W.B. Saunders";"1963-2026";"Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +8239;29447;"Review of Industrial Organization";journal;"0889938X, 15737160";"Springer Netherlands";No;No;0,701;Q2;69;52;145;1589;184;142;1,27;30,56;17,76;1;Netherlands;Western Europe;"Springer Netherlands";"1984-1986, 1988-2026";"Economics and Econometrics (Q2); Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +8240;21100269620;"Semantic Web";journal;"15700844, 22104968";"SAGE Publications Ltd";No;No;0,701;Q2;63;15;121;914;417;112;3,76;60,93;29,17;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2010-2025";"Computer Networks and Communications (Q2); Computer Science Applications (Q2); Information Systems (Q2)";"Computer Science" +8241;19057;"Tissue and Cell";journal;"00408166, 15323072";"Elsevier Ltd";No;No;0,701;Q2;64;416;793;24206;2653;792;3,37;58,19;47,27;0;United Kingdom;Western Europe;"Elsevier Ltd";"1969-2026";"Medicine (miscellaneous) (Q2); Cell Biology (Q3); Developmental Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8242;21100422060;"Archives of Endocrinology and Metabolism";journal;"23593997, 23594292";"Sociedade Brasileira de Endocrinologia e Metabologia";Yes;Yes;0,701;Q3;66;107;373;3014;808;339;1,72;28,17;52,83;0;Brazil;Latin America;"Sociedade Brasileira de Endocrinologia e Metabologia";"2015-2026";"Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +8243;16295;"Australian Occupational Therapy Journal";journal;"00450766, 14401630";"Wiley-Blackwell Publishing Ltd";No;No;0,700;Q1;60;75;199;3436;507;180;2,27;45,81;81,34;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1952-1953, 1956-2026";"Occupational Therapy (Q1)";"Health Professions" +8244;17670;"Comparative Studies in Society and History";journal;"00104175, 14752999";"Cambridge University Press";No;No;0,700;Q1;71;44;121;4019;156;109;1,19;91,34;31,82;0;United Kingdom;Western Europe;"Cambridge University Press";"1958-2026";"History (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +8245;14500154734;"Evolutionary Intelligence";journal;"18645917, 18645909";"Springer Verlag";No;No;0,700;Q1;48;126;523;7533;2494;515;4,64;59,79;21,10;0;Germany;Western Europe;"Springer Verlag";"2008-2026";"Mathematics (miscellaneous) (Q1); Artificial Intelligence (Q2); Cognitive Neuroscience (Q2); Computer Vision and Pattern Recognition (Q2)";"Computer Science; Mathematics; Neuroscience" +8246;21100865909;"Intertax";journal;"18758347, 01652826";"Kluwer Law International";No;No;0,700;Q1;13;55;203;3341;164;168;0,78;60,75;47,83;1;Netherlands;Western Europe;"Kluwer Law International";"2018-2026";"Law (Q1); Accounting (Q2)";"Business, Management and Accounting; Social Sciences" +8247;21101041997;"Journal of Composites Science";journal;"2504477X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,700;Q1;66;705;1459;38990;7489;1448;5,38;55,30;31,38;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2026";"Engineering (miscellaneous) (Q1); Ceramics and Composites (Q2)";"Engineering; Materials Science" +8248;11500153406;"Journal of Hymenoptera Research";journal;"13142607, 10709428";"Pensoft Publishers";Yes;No;0,700;Q1;33;56;196;2762;424;196;1,79;49,32;34,72;0;United States;Northern America;"Pensoft Publishers";"2007-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1)";"Agricultural and Biological Sciences" +8249;25319;"Journal of Psychoactive Drugs";journal;"02791072, 21599777";"Taylor and Francis Ltd.";No;No;0,700;Q2;80;139;201;6920;624;201;3,10;49,78;45,75;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1967-1972, 1974-2026";"Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)";"Medicine; Psychology" +8250;4500151527;"Psychology of Learning and Motivation - Advances in Research and Theory";book series;"00797421";"Academic Press Inc.";Yes;No;0,700;Q2;71;17;42;2081;84;6;1,54;122,41;100,00;0;United States;Northern America;"Academic Press Inc.";"1967-1968, 1970, 1972-1986, 1988-1998, 2000, 2002-2004, 2006-2025";"Developmental and Educational Psychology (Q2); Social Psychology (Q2)";"Psychology" +8251;12964;"Review of Quantitative Finance and Accounting";journal;"0924865X, 15737179";"Springer New York";No;No;0,700;Q2;63;164;296;11182;1056;296;3,24;68,18;27,33;3;United States;Northern America;"Springer New York";"1991-2026";"Accounting (Q2); Business, Management and Accounting (miscellaneous) (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +8252;11700154736;"Systems Biology in Reproductive Medicine";journal;"19396368, 19396376";"Taylor and Francis Ltd.";No;No;0,700;Q2;64;39;105;4041;327;102;2,49;103,62;48,66;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-1981, 1984-1995, 1997-2000, 2002-2003, 2005, 2007-2026";"Reproductive Medicine (Q2); Urology (Q2)";"Medicine" +8253;5800207601;"Australian Journal of Language and Literacy";journal;"10381562, 18394728";"Springer";No;No;0,699;Q1;33;18;68;951;171;66;2,13;52,83;78,05;0;Singapore;Asiatic Region;"Springer";"1997-2026";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +8254;19600161833;"Journal fur Mathematik-Didaktik";journal;"01735322, 18692699";"Springer Verlag";No;No;0,699;Q1;21;12;62;682;89;61;1,43;56,83;65,22;0;Germany;Western Europe;"Springer Verlag";"1980-1995, 1997-2002, 2004-2005, 2007-2025";"Mathematics (miscellaneous) (Q1); Education (Q2)";"Mathematics; Social Sciences" +8255;21101075277;"Nordic Social Work Research";journal;"2156857X, 21568588";"UBM Exhibition Singapore PTE LTD";Yes;No;0,699;Q1;22;91;186;4273;430;175;1,66;46,96;75,00;0;United Kingdom;Western Europe;"UBM Exhibition Singapore PTE LTD";"2011-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +8256;15400;"Review of Development Economics";journal;"14679361, 13636669";"Wiley-Blackwell Publishing Ltd";No;No;0,699;Q1;69;220;286;13062;939;286;3,42;59,37;27,20;6;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1997-2026";"Development (Q1); Geography, Planning and Development (Q1)";"Social Sciences" +8257;5200152822;"Advances in Data Analysis and Classification";journal;"18625347, 18625355";"Springer Science and Business Media Deutschland GmbH";No;No;0,699;Q2;45;65;137;2732;282;125;2,11;42,03;34,83;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2007-2026";"Applied Mathematics (Q2); Computer Science Applications (Q2); Statistics and Probability (Q2)";"Computer Science; Mathematics" +8258;4700152504;"Food Biophysics";journal;"15571858, 15571866";"Springer";No;No;0,699;Q2;71;195;196;11223;841;196;4,13;57,55;45,36;0;United States;Northern America;"Springer";"2006-2026";"Analytical Chemistry (Q2); Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biophysics (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Immunology and Microbiology" +8259;26117;"Gynecological Endocrinology";journal;"09513590, 14730766";"Taylor and Francis Ltd.";Yes;No;0,699;Q2;83;95;415;3532;1079;398;3,00;37,18;51,94;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Obstetrics and Gynecology (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8260;19700177336;"International Journal of Machine Learning and Cybernetics";journal;"1868808X, 18688071";"Springer Science + Business Media";No;No;0,699;Q2;79;559;863;29281;3552;858;4,48;52,38;29,88;2;United States;Northern America;"Springer Science + Business Media";"2010-2026";"Artificial Intelligence (Q2); Computer Vision and Pattern Recognition (Q2); Software (Q2)";"Computer Science" +8261;110174;"Prostaglandins and Other Lipid Mediators";journal;"10988823";"Elsevier Inc.";No;No;0,699;Q2;92;52;185;2888;522;184;2,76;55,54;43,60;0;United States;Northern America;"Elsevier Inc.";"1996, 1998-2026";"Biochemistry (Q2); Pharmacology (Q2); Cell Biology (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +8262;18831;"Scandinavian Journal of Primary Health Care";journal;"02813432, 15027724";"Informa Healthcare";Yes;No;0,699;Q2;66;94;190;3487;396;177;1,90;37,10;62,93;1;United Kingdom;Western Europe;"Informa Healthcare";"1983-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8263;16263;"American Journal of Physical Medicine and Rehabilitation";journal;"15377385, 08949115";"Lippincott Williams and Wilkins Ltd.";No;No;0,698;Q1;126;300;754;6388;1566;679;2,06;21,29;44,03;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1987-2026";"Rehabilitation (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)";"Health Professions; Medicine" +8264;4700153005;"Annals of Thoracic Medicine";journal;"18171737, 19983557";"Wolters Kluwer Medknow Publications";Yes;No;0,698;Q1;50;34;98;1256;251;93;2,38;36,94;36,57;1;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2006-2026";"Surgery (Q1); Cardiology and Cardiovascular Medicine (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +8265;19900191744;"Equality, Diversity and Inclusion";journal;"17587093, 20407149";"Emerald Publishing";No;No;0,698;Q1;50;160;255;10350;897;245;2,90;64,69;64,43;0;United Kingdom;Western Europe;"Emerald Publishing";"1989-1994, 1996-2003, 2010-2026";"Cultural Studies (Q1); Gender Studies (Q1); Sociology and Political Science (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +8266;25846;"GSA Today";journal;"10525173";"Geological Society of America";Yes;No;0,698;Q1;91;25;62;486;118;60;2,05;19,44;31,03;0;United States;Northern America;"Geological Society of America";"1991-2026";"Geology (Q1)";"Earth and Planetary Sciences" +8267;21725;"Journal of Surgical Oncology";journal;"10969098, 00224790";"Wiley-Liss Inc.";No;No;0,698;Q1;142;392;1081;11360;2092;945;1,89;28,98;36,36;2;United States;Northern America;"Wiley-Liss Inc.";"1969-2026";"Surgery (Q1); Medicine (miscellaneous) (Q2); Oncology (Q3)";"Medicine" +8268;21101266482;"MILRev: Metro Islamic Law Review";journal;"2986528X";"Faculty of Sharia, IAIN Metro";Yes;No;0,698;Q1;9;55;51;2467;177;51;4,71;44,85;22,76;0;Indonesia;Asiatic Region;"Faculty of Sharia, IAIN Metro";"2022-2026";"Law (Q1); Religious Studies (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +8269;19900193221;"Primary Health Care Research and Development";journal;"14634236, 14771128";"Cambridge University Press";Yes;No;0,698;Q1;43;104;219;4414;486;215;1,97;42,44;61,58;0;United Kingdom;Western Europe;"Cambridge University Press";"2000-2026";"Care Planning (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Nursing" +8270;21101043278;"Quaternary";journal;"2571550X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,698;Q1;23;74;171;5726;418;165;2,10;77,38;37,89;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2018-2025";"Earth and Planetary Sciences (miscellaneous) (Q1); Earth-Surface Processes (Q2)";"Earth and Planetary Sciences" +8271;19700175236;"Updates in Surgery";journal;"2038131X, 20383312";"Springer Science and Business Media Deutschland GmbH";No;No;0,698;Q1;49;428;831;12007;1916;762;2,25;28,05;34,58;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2010-2026";"Surgery (Q1)";"Medicine" +8272;19709;"Education Economics";journal;"09645292, 14695782";"Routledge";No;No;0,698;Q2;50;82;120;3794;230;117;1,85;46,27;37,57;10;United Kingdom;Western Europe;"Routledge";"1993-2026";"Economics and Econometrics (Q2); Education (Q2)";"Economics, Econometrics and Finance; Social Sciences" +8273;21101100209;"Social Psychological Bulletin";journal;"2569653X, 18961800";"PsychOpen";Yes;Yes;0,698;Q2;18;17;47;1092;99;44;2,15;64,24;64,58;0;Germany;Western Europe;"PsychOpen";"2018-2026";"Applied Psychology (Q2); Social Psychology (Q2)";"Psychology" +8274;19700177127;"ACS Medicinal Chemistry Letters";journal;"19485875";"American Chemical Society";No;No;0,697;Q1;101;369;860;9125;2468;740;2,68;24,73;37,61;0;United States;Northern America;"American Chemical Society";"2010-2026";"Organic Chemistry (Q1); Biochemistry (Q2); Drug Discovery (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +8275;19444;"American Journal of Pharmaceutical Education";journal;"15536467, 00029459";"Elsevier B.V.";Yes;No;0,697;Q1;87;193;661;5749;1584;513;2,35;29,79;67,24;0;United States;Northern America;"Elsevier B.V.";"1945-1948, 1973-1989, 1991, 1996-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Pharmacy (Q1); Education (Q2); Medicine (miscellaneous) (Q2)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +8276;36360;"Animal Reproduction Science";journal;"03784320, 18732232";"Elsevier B.V.";No;No;0,697;Q1;129;168;420;10089;1393;414;2,82;60,05;39,47;0;Netherlands;Western Europe;"Elsevier B.V.";"1936, 1978-2026";"Animal Science and Zoology (Q1); Food Animals (Q1); Medicine (miscellaneous) (Q2); Endocrinology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine; Veterinary" +8277;4300151401;"BMC Veterinary Research";journal;"17466148";"BioMed Central Ltd";Yes;No;0,697;Q1;92;697;1300;35783;4246;1299;3,15;51,34;45,81;6;United Kingdom;Western Europe;"BioMed Central Ltd";"2005-2026";"Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Veterinary" +8278;21101393713;"Green and Low-Carbon Economy";journal;"29723787";"Bon View Publishing Pte Ltd";No;No;0,697;Q1;14;40;48;2042;325;46;6,77;51,05;34,69;0;Singapore;Asiatic Region;"Bon View Publishing Pte Ltd";"2023-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Environmental Chemistry (Q2); Environmental Engineering (Q2); Environmental Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Economics, Econometrics and Finance; Energy; Environmental Science" +8279;25847;"International Studies Perspectives";journal;"15283577, 15283585";"Oxford University Press";No;No;0,697;Q1;61;22;66;1704;173;66;2,62;77,45;61,11;3;United Kingdom;Western Europe;"Oxford University Press";"2000-2026";"Geography, Planning and Development (Q1); Political Science and International Relations (Q1)";"Social Sciences" +8280;21100206006;"Marine and Coastal Fisheries";journal;"19425120";"Oxford University Press";Yes;No;0,697;Q1;44;45;115;3203;261;111;2,59;71,18;31,50;0;United States;Northern America;"Oxford University Press";"2009-2026";"Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +8281;19700166805;"Sexual and Reproductive Healthcare";journal;"18775764, 18775756";"Elsevier B.V.";Yes;No;0,697;Q1;47;116;266;3905;614;245;2,09;33,66;85,43;0;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Maternity and Midwifery (Q1); Obstetrics and Gynecology (Q2)";"Medicine; Nursing" +8282;21100326094;"Studies in Chinese Linguistics";journal;"10171274";"T.T. Ng Chinese Language Research Centre";Yes;Yes;0,697;Q1;8;0;9;0;11;9;2,00;0,00;0,00;0;China;Asiatic Region;"T.T. Ng Chinese Language Research Centre";"2014-2023";"Linguistics and Language (Q1)";"Social Sciences" +8283;19700201157;"Urban Research and Practice";journal;"17535069, 17535077";"Taylor and Francis Ltd.";No;No;0,697;Q1;39;47;118;2816;369;116;2,91;59,91;48,04;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Geography, Planning and Development (Q1); Urban Studies (Q1)";"Social Sciences" +8284;24785;"Alcohol";journal;"18736823, 07418329";"Elsevier Inc.";No;No;0,697;Q2;93;79;213;5386;535;208;2,51;68,18;51,78;2;United States;Northern America;"Elsevier Inc.";"1984-2026";"Biochemistry (Q2); Health (social science) (Q2); Medicine (miscellaneous) (Q2); Toxicology (Q2); Behavioral Neuroscience (Q3); Neurology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +8285;21100940514;"BMC Chemistry";journal;"2661801X";"BioMed Central Ltd";Yes;No;0,697;Q2;46;319;545;17063;3076;543;5,31;53,49;45,37;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2019-2026";"Chemistry (miscellaneous) (Q2)";"Chemistry" +8286;19818;"Clinical Journal of Sport Medicine";journal;"15363724, 1050642X";"Lippincott Williams and Wilkins";No;No;0,697;Q2;125;134;371;4484;758;353;1,93;33,46;34,15;0;United States;Northern America;"Lippincott Williams and Wilkins";"1993-2026";"Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)";"Health Professions; Medicine" +8287;21100868821;"Frontiers in Robotics and AI";journal;"22969144";"Frontiers Media SA";Yes;No;0,697;Q2;81;261;906;12968;3587;816;3,70;49,69;33,23;0;Switzerland;Western Europe;"Frontiers Media SA";"2014-2026";"Artificial Intelligence (Q2); Computer Science Applications (Q2)";"Computer Science" +8288;19700166502;"Journal of Pseudo-Differential Operators and Applications";journal;"1662999X, 16629981";"Springer International Publishing";No;No;0,697;Q2;22;94;225;2923;379;225;1,70;31,10;23,03;0;Switzerland;Western Europe;"Springer International Publishing";"2010-2026";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +8289;21100828134;"Obstetrics and Gynecology Science";journal;"22878580, 22878572";"Korean Society of Obstetrics and Gynecology";Yes;Yes;0,697;Q2;30;57;182;2025;428;178;2,39;35,53;52,46;0;South Korea;Asiatic Region;"Korean Society of Obstetrics and Gynecology";"2017-2026";"Obstetrics and Gynecology (Q2)";"Medicine" +8290;66854;"IEEE International Conference on Intelligent Robots and Systems";conference and proceedings;"21530858, 21530866";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,697;-;172;1586;3997;50172;10417;3991;2,20;31,63;23,41;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1988-1990, 1992-2003, 2006-2007, 2011-2025";"Computer Science Applications; Computer Vision and Pattern Recognition; Control and Systems Engineering; Software";"Computer Science; Engineering" +8291;14238;"College and Research Libraries";journal;"00100870, 21506701";"Association of College and Research Libraries";Yes;Yes;0,696;Q1;63;53;166;1915;340;147;2,02;36,13;71,77;0;United States;Northern America;"Association of College and Research Libraries";"1942, 1946-1947, 1954, 1964, 1987-2026";"Library and Information Sciences (Q1)";"Social Sciences" +8292;21100469450;"Communication, Culture and Critique";journal;"17539129, 17539137";"John Wiley & Sons Inc.";No;No;0,696;Q1;29;54;134;1963;310;134;1,82;36,35;67,12;0;United States;Northern America;"John Wiley & Sons Inc.";"2015-2025";"Communication (Q1); Cultural Studies (Q1); Computer Science Applications (Q2)";"Computer Science; Social Sciences" +8293;19400158519;"Environmental Earth Sciences";journal;"18666299, 18666280";"Springer Science and Business Media Deutschland GmbH";No;No;0,696;Q1;173;690;1829;44905;6549;1819;3,56;65,08;30,01;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2009-2026";"Geology (Q1); Earth-Surface Processes (Q2); Environmental Chemistry (Q2); Pollution (Q2); Soil Science (Q2); Water Science and Technology (Q2); Global and Planetary Change (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +8294;26155;"Journal of Oral Pathology and Medicine";journal;"16000714, 09042512";"Wiley-Blackwell Publishing Ltd";No;No;0,696;Q1;103;131;309;4313;855;293;2,51;32,92;47,98;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1972-2026";"Oral Surgery (Q1); Otorhinolaryngology (Q1); Periodontics (Q1); Pathology and Forensic Medicine (Q2); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Dentistry; Medicine" +8295;21100197952;"Journal of Rail Transport Planning and Management";journal;"22109706";"Elsevier B.V.";No;No;0,696;Q1;39;43;109;1839;383;108;2,73;42,77;26,81;0;Netherlands;Western Europe;"Elsevier B.V.";"2011-2026";"Civil and Structural Engineering (Q1); Computer Science Applications (Q2); Management Science and Operations Research (Q2); Modeling and Simulation (Q2); Transportation (Q2)";"Computer Science; Decision Sciences; Engineering; Mathematics; Social Sciences" +8296;20135;"Cadernos de Saude Publica";journal;"0102311X, 16784464";"Fundacao Oswaldo Cruz";Yes;Yes;0,696;Q2;94;235;727;8766;1235;655;1,65;37,30;68,67;0;Brazil;Latin America;"Fundacao Oswaldo Cruz";"1994, 1998-2026";"Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8297;12856;"Comparative Education Review";journal;"00104086, 1545701X";"University of Chicago Press";No;No;0,696;Q2;75;38;116;2018;319;107;2,94;53,11;56,34;0;United States;Northern America;"University of Chicago Press";"1976, 1980-1982, 1990, 1994, 1996-2026";"Education (Q2)";"Social Sciences" +8298;13672;"Diseases of the Esophagus";journal;"11208694, 14422050";"Oxford University Press";No;No;0,696;Q2;83;151;330;4057;776;314;2,22;26,87;31,24;0;United Kingdom;Western Europe;"Oxford University Press";"1988-2026";"Gastroenterology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +8299;17900156741;"European Journal of Developmental Psychology";journal;"17405610, 17405629";"Taylor and Francis Ltd.";No;No;0,696;Q2;55;62;161;3174;373;154;2,45;51,19;70,21;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2007, 2009-2026";"Developmental and Educational Psychology (Q2); Social Psychology (Q2)";"Psychology" +8300;21101087875;"Free Neuropathology";journal;"26994445";"University of Muenster";Yes;Yes;0,696;Q2;12;14;59;939;112;46;2,07;67,07;45,61;0;Germany;Western Europe;"University of Muenster";"2020-2025";"Neurology (clinical) (Q2); Pathology and Forensic Medicine (Q2); Cellular and Molecular Neuroscience (Q3)";"Medicine; Neuroscience" +8301;5400152713;"IET Generation, Transmission and Distribution";journal;"17518687, 17518695";"John Wiley & Sons Inc.";Yes;No;0,696;Q2;138;227;1046;8575;3628;1033;3,63;37,78;24,37;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2007-2026";"Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2)";"Energy; Engineering" +8302;21100923302;"Infectious Disease Modelling";journal;"24682152, 24680427";"KeAi Communications Co.";Yes;No;0,696;Q2;43;102;241;4591;777;241;3,20;45,01;36,73;1;China;Asiatic Region;"KeAi Communications Co.";"2016-2026";"Applied Mathematics (Q2); Health Policy (Q2); Infectious Diseases (Q2)";"Mathematics; Medicine" +8303;19300157109;"Irish Educational Studies";journal;"17474965, 03323315";"Taylor and Francis Ltd.";No;No;0,696;Q2;36;87;196;6271;535;189;2,39;72,08;67,58;6;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-1986, 1988-1996, 1998-2026";"Education (Q2)";"Social Sciences" +8304;21100256976;"Journal of Orthopaedics";journal;"0972978X";"Reed Elsevier India Pvt. Ltd.";Yes;No;0,696;Q2;46;473;694;15233;1643;677;2,39;32,21;19,95;0;India;Asiatic Region;"Reed Elsevier India Pvt. Ltd.";"2013-2026";"Orthopedics and Sports Medicine (Q2)";"Medicine" +8305;50122;"European Annals of Allergy and Clinical Immunology";journal;"17641489";"EDRA SpA";No;No;0,696;Q3;40;39;122;1419;255;94;1,87;36,38;55,38;0;Italy;Western Europe;"EDRA SpA";"2003-2026";"Immunology and Allergy (Q3)";"Medicine" +8306;25161;"ACI Structural Journal";journal;"08893241";"American Concrete Institute";No;No;0,695;Q1;150;91;357;3441;625;356;1,57;37,81;14,73;0;United States;Northern America;"American Concrete Institute";"1987-2026";"Civil and Structural Engineering (Q1); Building and Construction (Q2)";"Engineering" +8307;5800207808;"Across Languages and Cultures";journal;"15882519, 15851923";"Akademiai Kiado";No;No;0,695;Q1;28;26;35;1120;84;34;1,36;43,08;71,43;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2026";"Linguistics and Language (Q1)";"Social Sciences" +8308;29193;"Journal of Aging and Social Policy";journal;"15450821, 08959420";"Routledge";No;No;0,695;Q1;51;109;193;4857;518;179;2,49;44,56;60,06;6;United States;Northern America;"Routledge";"1989-2026";"Demography (Q1); Gerontology (Q2); Life-span and Life-course Studies (Q2)";"Nursing; Social Sciences" +8309;4700152759;"Journal of Bisexuality";journal;"15299716, 15299724";"Routledge";No;No;0,695;Q1;49;41;75;2694;160;73;2,05;65,71;64,95;0;United Kingdom;Western Europe;"Routledge";"2000-2026";"Cultural Studies (Q1); Gender Studies (Q1)";"Social Sciences" +8310;29585;"Journal of the Astronautical Sciences";journal;"00219142, 21950571";"Springer US";No;No;0,695;Q1;55;65;181;2254;348;181;1,94;34,68;16,58;0;United States;Northern America;"Springer US";"1968-2001, 2003-2009, 2011-2026";"Aerospace Engineering (Q1); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Engineering" +8311;19700173303;"Metallomics";journal;"1756591X, 17565901";"Oxford University Press";No;No;0,695;Q1;107;42;238;3496;728;238;3,01;83,24;43,44;0;United Kingdom;Western Europe;"Oxford University Press";"2009-2026";"Metals and Alloys (Q1); Biochemistry (Q2); Biomaterials (Q2); Biophysics (Q2); Chemistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Medicine" +8312;19036;"Protoplasma";journal;"16156102, 0033183X";"Springer";No;No;0,695;Q1;99;120;311;8013;948;293;3,11;66,78;47,40;0;Austria;Western Europe;"Springer";"1926-1943, 1949-2026";"Plant Science (Q1); Medicine (miscellaneous) (Q2); Cell Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +8313;21101271744;"Sedimentary Geology and Tethyan Geology";journal;"10093850";"";No;No;0,695;Q1;17;48;180;2953;397;180;1,91;61,52;32,66;0;China;Asiatic Region;"";"2020-2025";"Geology (Q1)";"Earth and Planetary Sciences" +8314;5700166357;"Social Work Education";journal;"14701227, 02615479";"Taylor and Francis Ltd.";No;No;0,695;Q1;57;212;415;10663;1045;408;2,19;50,30;66,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2026";"Social Sciences (miscellaneous) (Q1); Education (Q2); Social Work (Q2)";"Social Sciences" +8315;21100204919;"Biomedical Engineering Letters";journal;"2093985X, 20939868";"Springer Verlag";No;No;0,695;Q2;52;96;208;5310;876;206;4,00;55,31;25,89;0;Germany;Western Europe;"Springer Verlag";"2011-2026";"Biomedical Engineering (Q2)";"Engineering" +8316;12000154402;"Blood Transfusion";journal;"17232007, 23852070";"Edizioni SIMTI";Yes;No;0,695;Q2;69;83;209;2014;448;173;2,11;24,27;56,06;0;Italy;Western Europe;"Edizioni SIMTI";"2003-2026";"Hematology (Q2); Medicine (miscellaneous) (Q2); Immunology and Allergy (Q3)";"Medicine" +8317;145294;"Critical Perspectives on International Business";journal;"17422043";"Emerald Group Publishing Ltd.";No;No;0,695;Q2;41;46;98;4186;364;97;3,24;91,00;46,09;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005-2026";"Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting" +8318;17489;"Free Radical Research";journal;"10715762, 10292470";"Taylor and Francis Ltd.";No;No;0,695;Q2;147;60;164;3524;530;163;3,16;58,73;41,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-2026";"Biochemistry (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8319;19700188332;"International Journal for Academic Development";journal;"1360144X, 14701324";"Routledge";No;No;0,695;Q2;44;68;146;2234;325;118;2,18;32,85;69,19;0;United States;Northern America;"Routledge";"2010-2026";"Education (Q2)";"Social Sciences" +8320;27952;"Journal of the Formosan Medical Association";journal;"09296646, 18760821";"Elsevier B.V.";Yes;No;0,695;Q2;80;511;825;13049;1750;671;1,91;25,54;37,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1961-1962, 1972-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8321;21100406328;"Review of Keynesian Economics";journal;"20495331, 20495323";"Edward Elgar Publishing Ltd.";No;No;0,695;Q2;29;28;82;1324;240;79;2,65;47,29;25,53;3;United Kingdom;Western Europe;"Edward Elgar Publishing Ltd.";"2012-2025";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +8322;16392;"Chemical Engineering and Processing - Process Intensification";journal;"02552701";"Elsevier B.V.";No;No;0,694;Q1;139;396;1094;22691;5088;1088;4,56;57,30;32,15;0;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Industrial and Manufacturing Engineering (Q1); Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Process Chemistry and Technology (Q2)";"Chemical Engineering; Chemistry; Energy; Engineering" +8323;21100788921;"Development Studies Research";journal;"21665095";"Taylor and Francis Ltd.";Yes;No;0,694;Q1;27;29;70;1550;286;70;3,90;53,45;45,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Development (Q1)";"Social Sciences" +8324;21100219934;"Forests";journal;"19994907";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,694;Q1;100;1875;6875;118607;22795;6802;3,27;63,26;38,10;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Forestry (Q1)";"Agricultural and Biological Sciences" +8325;29542;"Journal of Anatomy";journal;"14697580, 00218782";"John Wiley and Sons Inc";No;No;0,694;Q1;145;207;511;13483;1222;487;2,31;65,14;39,65;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1945-2026";"Anatomy (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Histology (Q2); Cell Biology (Q3); Developmental Biology (Q3); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +8326;21100977478;"Journal of Manufacturing and Materials Processing";journal;"25044494";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,694;Q1;50;415;684;20859;3297;683;4,48;50,26;18,71;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2026";"Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q2)";"Engineering" +8327;21763;"Microsurgery";journal;"10982752, 07381085";"Wiley-Liss Inc.";No;No;0,694;Q1;82;160;418;4012;678;352;1,49;25,08;30,89;0;United States;Northern America;"Wiley-Liss Inc.";"1979-1996, 1998-2026";"Surgery (Q1)";"Medicine" +8328;19700188256;"Middle East Critique";journal;"19436149, 19436157";"Routledge";No;No;0,694;Q1;26;107;105;6640;278;96;2,98;62,06;41,18;2;United States;Northern America;"Routledge";"2010-2026";"Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q1)";"Arts and Humanities; Social Sciences" +8329;21101089141;"Petroleum Science Bulletin";journal;"20961693";"Tsinghua University Press";No;No;0,694;Q1;23;96;203;4051;552;202;2,73;42,20;32,16;0;China;Asiatic Region;"Tsinghua University Press";"2019-2026";"Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q2); Energy (miscellaneous) (Q2); Fuel Technology (Q2)";"Energy; Engineering" +8330;21100301601;"ACM Transactions on Interactive Intelligent Systems";journal;"21606463, 21606455";"Association for Computing Machinery";No;No;0,694;Q2;55;26;95;2059;664;92;7,43;79,19;33,02;1;United States;Northern America;"Association for Computing Machinery";"2011-2026";"Artificial Intelligence (Q2); Human-Computer Interaction (Q2)";"Computer Science" +8331;22490;"Blood Pressure";journal;"16511999, 08037051";"Taylor and Francis Ltd.";Yes;No;0,694;Q2;59;59;140;1881;332;110;2,44;31,88;44,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +8332;21101180703;"Gastro Hep Advances";journal;"27725723";"American Gastroenterological Association";Yes;No;0,694;Q2;16;229;522;5818;954;491;1,84;25,41;39,06;0;United States;Northern America;"American Gastroenterological Association";"2022-2026";"Gastroenterology (Q2); Hepatology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +8333;21100374317;"IEEE Electrification Magazine";trade journal;"23255889, 23255897";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,694;Q2;52;46;131;251;390;125;2,57;5,46;14,38;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2025";"Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2)";"Energy; Engineering" +8334;19700187615;"Leadership and Policy in Schools";journal;"15700763, 17445043";"Taylor and Francis Ltd.";No;No;0,694;Q2;34;137;199;10120;550;195;2,64;73,87;48,05;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Education (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Social Sciences" +8335;94216;"Membranes";journal;"20770375";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,694;Q2;93;387;2469;24604;11557;2417;4,64;63,58;41,35;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Chemical Engineering (miscellaneous) (Q2); Process Chemistry and Technology (Q2); Filtration and Separation (Q3)";"Chemical Engineering" +8336;14200154737;"Biosemiotics";journal;"18751342, 18751350";"Springer Science and Business Media B.V.";No;No;0,693;Q1;30;43;111;2318;161;86;1,43;53,91;41,30;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2008-2026";"Communication (Q1); Linguistics and Language (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +8337;21101122877;"Forecasting";journal;"25719394";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,693;Q1;29;80;149;3847;778;146;5,96;48,09;23,79;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Decision Sciences (miscellaneous) (Q2)";"Computer Science; Decision Sciences; Economics, Econometrics and Finance" +8338;21100784443;"International Journal of Sustainable Energy Planning and Management";journal;"22462929";"Aalborg University press";Yes;Yes;0,693;Q1;32;38;73;1929;255;71;3,72;50,76;22,64;1;Denmark;Western Europe;"Aalborg University press";"2014-2025";"Geography, Planning and Development (Q1); Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Social Sciences" +8339;21101089576;"Journal of Asian Business and Economic Studies";journal;"2515964X";"Emerald Group Publishing Ltd.";Yes;Yes;0,693;Q1;27;17;65;800;292;65;3,92;47,06;36,73;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2018-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +8340;21100454975;"Journal of Current Chinese Affairs";journal;"18684874, 18681026";"SAGE Publications Inc.";Yes;Yes;0,693;Q1;24;25;69;1799;233;68;3,13;71,96;54,17;2;United Kingdom;Western Europe;"SAGE Publications Inc.";"2015-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Economics, Econometrics and Finance; Social Sciences" +8341;5000155401;"Journal of Disability Policy Studies";journal;"10442073, 15384802";"SAGE Publications Inc.";No;No;0,693;Q1;47;29;81;1330;199;78;2,13;45,86;62,37;0;United States;Northern America;"SAGE Publications Inc.";"1990-2026";"Law (Q1); Health (social science) (Q2)";"Social Sciences" +8342;12329;"Journal of Iron and Steel Research International";journal;"22103988, 1006706X";"Springer International Publishing";No;No;0,693;Q1;61;332;649;14932;2826;639;4,40;44,98;28,29;1;Singapore;Asiatic Region;"Springer International Publishing";"1996-2026";"Metals and Alloys (Q1); Materials Chemistry (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +8343;21101308702;"Journal of Participatory Research Methods";journal;"26880261";"Specialty Publications";Yes;No;0,693;Q1;11;61;89;2669;256;88;2,12;43,75;70,57;0;United States;Northern America;"Specialty Publications";"2020-2025";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +8344;82226;"Latin American Antiquity";journal;"10456635, 23255080";"Cambridge University Press";No;No;0,693;Q1;49;74;164;4191;192;163;1,29;56,64;45,93;0;United States;Northern America;"Cambridge University Press";"1990-1992, 1994-1995, 2001-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +8345;12165;"Marine Biology";journal;"00253162, 14321793";"Springer Science and Business Media Deutschland GmbH";No;No;0,693;Q1;142;188;553;14223;1308;541;2,33;75,65;45,05;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1967-2026";"Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Ecology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +8346;22993;"Parasitology";journal;"14698161, 00311820";"Cambridge University Press";Yes;No;0,693;Q1;137;178;476;11096;1377;473;2,48;62,34;47,33;0;United Kingdom;Western Europe;"Cambridge University Press";"1908-2026";"Animal Science and Zoology (Q1); Infectious Diseases (Q2); Parasitology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +8347;6300153130;"Education, Citizenship and Social Justice";journal;"17461987, 17461979";"SAGE Publications Ltd";No;No;0,693;Q2;36;52;80;3217;240;79;3,23;61,87;60,82;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2006-2025";"Education (Q2)";"Social Sciences" +8348;4400151729;"Eurasia Journal of Mathematics, Science and Technology Education";journal;"13058223, 13058215";"Modestum LTD";Yes;No;0,693;Q2;69;197;488;10576;1831;488;3,96;53,69;50,61;0;Turkey;Middle East;"Modestum LTD";"2006-2026";"Applied Mathematics (Q2); Education (Q2)";"Mathematics; Social Sciences" +8349;21101041510;"Journal of Behavioral and Cognitive Therapy";journal;"25899791, 26663473";"Elsevier Masson s.r.l.";No;No;0,693;Q2;17;26;75;1126;161;73;2,35;43,31;53,60;0;France;Western Europe;"Elsevier Masson s.r.l.";"2020-2026";"Clinical Psychology (Q2); Neuropsychology and Physiological Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +8350;21100223527;"Journal of Clinical Sport Psychology";journal;"19329261, 1932927X";"Human Kinetics Publishers Inc.";No;No;0,693;Q2;45;26;84;1434;188;79;1,77;55,15;45,83;0;United States;Northern America;"Human Kinetics Publishers Inc.";"2007-2025";"Applied Psychology (Q2)";"Psychology" +8351;17512;"Journal of Water and Health";journal;"19967829, 14778920";"IWA Publishing";Yes;No;0,693;Q2;75;103;469;4903;1295;467;2,64;47,60;48,07;0;United Kingdom;Western Europe;"IWA Publishing";"2003-2026";"Infectious Diseases (Q2); Microbiology (medical) (Q2); Public Health, Environmental and Occupational Health (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2)";"Environmental Science; Medicine" +8352;5400152706;"Nanotoxicology";journal;"17435390, 17435404";"Taylor and Francis Ltd.";No;No;0,693;Q2;116;35;127;2887;475;126;3,99;82,49;52,02;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Biomedical Engineering (Q2); Nanoscience and Nanotechnology (Q2); Toxicology (Q2)";"Engineering; Materials Science; Pharmacology, Toxicology and Pharmaceutics" +8353;21100378341;"Psicologia Educativa";journal;"1135755X, 21740526";"Colegio Oficial de Psicologos de Madrid";Yes;Yes;0,693;Q2;26;18;56;1084;138;56;2,42;60,22;59,72;0;Spain;Western Europe;"Colegio Oficial de Psicologos de Madrid";"2013-2026";"Developmental and Educational Psychology (Q2); Social Psychology (Q2)";"Psychology" +8354;21101277853;"Strategic Management Review";journal;"26882612, 26882639";"Now Publishers Inc";No;No;0,693;Q2;8;12;37;1370;35;36;0,86;114,17;30,00;0;United States;Northern America;"Now Publishers Inc";"2021-2025";"Strategy and Management (Q2)";"Business, Management and Accounting" +8355;21100851285;"World Journal of Gastrointestinal Oncology";journal;"19485204";"Baishideng Publishing Group Inc";Yes;No;0,693;Q2;50;455;741;18064;1947;712;2,45;39,70;37,39;0;United States;Northern America;"Baishideng Publishing Group Inc";"2010, 2013-2025";"Gastroenterology (Q2); Oncology (Q3)";"Medicine" +8356;19700174889;"Drug Target Insights";journal;"11773928";"AboutScience Srl";Yes;No;0,692;Q1;20;9;42;345;136;39;3,52;38,33;50,00;0;Italy;Western Europe;"AboutScience Srl";"2008-2009, 2011-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +8357;21100228129;"Economics of Transportation";journal;"22120122";"Elsevier Ltd";No;No;0,692;Q1;33;27;48;1307;143;48;3,23;48,41;26,15;1;United Kingdom;Western Europe;"Elsevier Ltd";"2012-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Transportation (Q2)";"Economics, Econometrics and Finance; Social Sciences" +8358;23068;"European Food Research and Technology";journal;"14382385, 14382377";"Springer Science and Business Media Deutschland GmbH";No;No;0,692;Q1;136;314;725;19529;3364;724;4,85;62,19;49,68;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-2026";"Industrial and Manufacturing Engineering (Q1); Biochemistry (Q2); Biotechnology (Q2); Chemistry (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Engineering" +8359;21100215113;"International Journal of Nursing Knowledge";journal;"20473087, 20473095";"John Wiley and Sons Inc";No;No;0,692;Q1;34;74;117;3155;289;108;1,98;42,64;79,02;0;United States;Northern America;"John Wiley and Sons Inc";"2012-2025";"Fundamentals and Skills (Q1); Research and Theory (Q1)";"Nursing" +8360;12794;"Journal of Documentation";journal;"00220418";"Emerald Group Publishing Ltd.";No;No;0,692;Q1;80;132;307;8351;1024;304;2,54;63,27;49,64;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1945-2026";"Library and Information Sciences (Q1); Information Systems (Q2)";"Computer Science; Social Sciences" +8361;20218;"Journal of Egyptian Public Health Association";journal;"2090262X, 00132446";"Springer International Publishing AG";Yes;Yes;0,692;Q1;29;21;82;803;236;80;2,52;38,24;65,12;0;Switzerland;Western Europe;"Springer International Publishing AG";"1965-1974, 1976-1980, 1985, 1988-2005, 2007, 2010-2017, 2019-2026";"Community and Home Care (Q1); Health Informatics (Q2); Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Nursing; Social Sciences" +8362;5700163963;"Politics, Philosophy and Economics";journal;"1470594X, 17413060";"SAGE Publications Inc.";No;No;0,692;Q1;43;31;60;1598;156;57;2,57;51,55;15,79;0;United States;Northern America;"SAGE Publications Inc.";"2002-2026";"Philosophy (Q1); Sociology and Political Science (Q1); Economics and Econometrics (Q2)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +8363;20518;"Seminars in Thoracic and Cardiovascular Surgery: Pediatric Cardiac Surgery Annual";journal;"10929126, 18764665";"W.B. Saunders";No;No;0,692;Q1;50;20;35;674;75;32;2,36;33,70;28,57;0;United States;Northern America;"W.B. Saunders";"2001-2025";"Surgery (Q1); Cardiology and Cardiovascular Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +8364;21100792103;"Applied Biosafety";journal;"15356760, 24701246";"Mary Ann Liebert Inc.";No;No;0,692;Q2;16;50;80;1553;142;73;2,02;31,06;41,40;2;United States;Northern America;"Mary Ann Liebert Inc.";"2001-2002, 2005, 2007-2009, 2011-2012, 2014-2026";"Biotechnology (Q2); Health, Toxicology and Mutagenesis (Q2); Management, Monitoring, Policy and Law (Q2); Public Health, Environmental and Occupational Health (Q2)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine" +8365;18800156726;"Deutsches Arzteblatt International";journal;"18660452";"Deutscher Arzte-Verlag GmbH";Yes;No;0,692;Q2;109;245;1717;2960;2437;851;2,96;12,08;33,25;3;Germany;Western Europe;"Deutscher Arzte-Verlag GmbH";"2009-2025";"Medicine (miscellaneous) (Q2)";"Medicine" +8366;21101063739;"Journal of Medical Artificial Intelligence";journal;"26172496";"AME Publishing Company";Yes;No;0,692;Q2;16;64;83;2308;309;76;3,63;36,06;32,92;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2018-2026";"Artificial Intelligence (Q2); Medicine (miscellaneous) (Q2)";"Computer Science; Medicine" +8367;18968;"Mutation Research - Genetic Toxicology and Environmental Mutagenesis";journal;"18793592, 13835718";"Elsevier B.V.";No;No;0,692;Q2;132;45;220;2456;675;208;2,77;54,58;56,56;0;Netherlands;Western Europe;"Elsevier B.V.";"1997-2026";"Health, Toxicology and Mutagenesis (Q2); Genetics (Q3)";"Biochemistry, Genetics and Molecular Biology; Environmental Science" +8368;15741;"Pediatric Neurology";journal;"18735150, 08878994";"Elsevier Inc.";No;No;0,692;Q2;116;235;707;7623;1577;663;2,13;32,44;57,46;0;United States;Northern America;"Elsevier Inc.";"1985-2026";"Neurology (clinical) (Q2); Pediatrics, Perinatology and Child Health (Q2); Developmental Neuroscience (Q3); Neurology (Q3)";"Medicine; Neuroscience" +8369;25286;"Bulletin des Sciences Mathematiques";journal;"00074497";"Elsevier Masson s.r.l.";Yes;No;0,691;Q1;42;123;281;3804;390;281;1,48;30,93;28,30;0;France;Western Europe;"Elsevier Masson s.r.l.";"1998-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +8370;6500153241;"City";journal;"13604813, 14703629";"Taylor and Francis Ltd.";No;No;0,691;Q1;73;71;175;4034;456;152;2,12;56,82;52,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Geography, Planning and Development (Q1); Urban Studies (Q1)";"Social Sciences" +8371;21100336501;"Eurasian Mathematical Journal";journal;"20779879";"L.N. Gumilyov Eurasian National University";Yes;No;0,691;Q1;12;26;82;539;94;81;1,12;20,73;23,08;0;Kazakhstan;Asiatic Region;"L.N. Gumilyov Eurasian National University";"2014-2025";"Mathematics (miscellaneous) (Q1)";"Mathematics" +8372;21101196046;"Hydrogen (Switzerland)";journal;"26734141";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,691;Q1;23;123;149;7924;815;147;5,92;64,42;24,49;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Engineering (miscellaneous) (Q1); Energy (miscellaneous) (Q2)";"Energy; Engineering" +8373;21101274733;"Journal of Shoulder and Elbow Arthroplasty";journal;"24715492";"SAGE Publications Ltd";Yes;No;0,691;Q1;11;6;67;222;128;67;1,50;37,00;12,50;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2021-2025";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +8374;21100881469;"Laryngoscope Investigative Otolaryngology";journal;"23788038";"John Wiley and Sons Inc";Yes;No;0,691;Q1;45;272;650;8632;1382;643;1,94;31,74;37,23;0;United States;Northern America;"John Wiley and Sons Inc";"2016-2026";"Otorhinolaryngology (Q1); Surgery (Q1)";"Medicine" +8375;60195;"Plant Disease";journal;"01912917, 19437692";"American Phytopathological Society";No;No;0,691;Q1;141;544;3209;11918;5382;1143;1,53;21,91;42,63;0;United States;Northern America;"American Phytopathological Society";"1981, 1993-2026";"Agronomy and Crop Science (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +8376;22894;"Research Evaluation";journal;"09582029, 14715449";"Oxford University Press";No;No;0,691;Q1;70;61;136;3621;376;133;2,62;59,36;45,51;4;United Kingdom;Western Europe;"Oxford University Press";"1991-1996, 1998-2026";"Library and Information Sciences (Q1); Education (Q2)";"Social Sciences" +8377;35716;"Ultrasound in Medicine and Biology";journal;"1879291X, 03015629";"Elsevier Inc.";No;No;0,691;Q1;160;262;723;11042;2123;710;2,99;42,15;42,77;0;United States;Northern America;"Elsevier Inc.";"1973-2026";"Acoustics and Ultrasonics (Q1); Biophysics (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Physics and Astronomy" +8378;21101040638;"World Journal of Otorhinolaryngology - Head and Neck Surgery";journal;"25891081, 20958811";"John Wiley and Sons Inc";Yes;No;0,691;Q1;33;110;140;4547;331;137;2,15;41,34;36,48;0;United States;Northern America;"John Wiley and Sons Inc";"2015-2026";"Otorhinolaryngology (Q1); Surgery (Q1)";"Medicine" +8379;21100817620;"Career Development and Transition for Exceptional Individuals";journal;"21651442, 21651434";"SAGE Publications Inc.";No;No;0,691;Q2;29;36;71;1570;145;59;1,90;43,61;62,59;0;United States;Northern America;"SAGE Publications Inc.";"2015-2026";"Education (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +8380;19700167301;"Environmental Economics and Policy Studies";journal;"1867383X, 1432847X";"Springer Japan";No;No;0,691;Q2;40;48;91;2529;307;89;3,87;52,69;26,88;1;Japan;Asiatic Region;"Springer Japan";"1998-2002, 2004-2026";"Economics and Econometrics (Q2); Management, Monitoring, Policy and Law (Q2)";"Economics, Econometrics and Finance; Environmental Science" +8381;21101164973;"Epidemiologia";journal;"26733986";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,691;Q2;17;93;139;4512;431;135;3,29;48,52;51,09;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Epidemiology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +8382;29763;"European Journal of Cancer Prevention";journal;"14735709, 09598278";"Lippincott Williams and Wilkins";No;No;0,691;Q2;93;93;226;3927;529;209;2,56;42,23;45,56;0;United States;Northern America;"Lippincott Williams and Wilkins";"1991-2026";"Epidemiology (Q2); Public Health, Environmental and Occupational Health (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8383;21101052354;"Frontiers in Big Data";journal;"2624909X";"Frontiers Media SA";Yes;No;0,691;Q2;41;87;365;3509;1627;336;4,87;40,33;37,54;0;Switzerland;Western Europe;"Frontiers Media SA";"2018-2026";"Artificial Intelligence (Q2); Computer Science (miscellaneous) (Q2); Information Systems (Q2)";"Computer Science" +8384;21101022446;"Global Epidemiology";journal;"25901133";"Elsevier Inc.";Yes;No;0,691;Q2;18;55;103;2325;273;66;2,55;42,27;35,07;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Epidemiology (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8385;21100204927;"Journal of Ophthalmic Inflammation and Infection";journal;"18695760";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,691;Q2;43;96;165;2680;377;151;2,11;27,92;45,08;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Infectious Diseases (Q2); Ophthalmology (Q2)";"Medicine" +8386;21100199536;"Journal of Petroleum Exploration and Production Technology";journal;"21900558, 21900566";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,691;Q2;60;191;578;11090;2356;577;3,91;58,06;23,83;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Energy (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Energy" +8387;12759;"Omega: Journal of Death and Dying";journal;"15413764, 00302228";"SAGE Publications Inc.";No;No;0,691;Q2;61;387;626;18639;1710;626;2,61;48,16;60,65;5;United Kingdom;Western Europe;"SAGE Publications Inc.";"1970, 1973-2026";"Critical Care and Intensive Care Medicine (Q2); Health (social science) (Q2); Life-span and Life-course Studies (Q2)";"Medicine; Social Sciences" +8388;21945;"Substance Use and Misuse";journal;"10826084, 15322491";"Informa Healthcare";No;No;0,691;Q2;96;337;700;16501;1413;635;1,83;48,96;60,66;4;United Kingdom;Western Europe;"Informa Healthcare";"1966-2026";"Health (social science) (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +8389;21101017909;"Archives of Academic Emergency Medicine";journal;"26454904";"Shaheed Beheshti University of Medical Sciences and Health Services";Yes;No;0,690;Q1;29;82;231;2738;646;216;2,86;33,39;37,47;0;Iran;Middle East;"Shaheed Beheshti University of Medical Sciences and Health Services";"2019-2026";"Emergency Medical Services (Q1); Emergency Medicine (Q1); Emergency Nursing (Q1)";"Health Professions; Medicine; Nursing" +8390;33918;"Current Anthropology";journal;"00113204, 15375382";"University of Chicago Press";No;No;0,690;Q1;145;66;153;5244;293;134;1,77;79,45;46,39;0;United States;Northern America;"University of Chicago Press";"1962-1963, 1965-1968, 1970-1971, 1974, 1978-1988, 1992-2026";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +8391;21100887620;"European Journal for Sport and Society";journal;"23805919, 16138171";"Taylor and Francis Ltd.";No;No;0,690;Q1;33;30;61;1785;202;60;2,56;59,50;41,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Sociology and Political Science (Q1); Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Medicine; Social Sciences" +8392;20952;"Journal of Computing and Information Science in Engineering";journal;"15309827";"The American Society of Mechanical Engineers(ASME)";No;No;0,690;Q1;66;82;322;5664;1275;312;4,31;69,07;26,32;0;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"2001-2026";"Industrial and Manufacturing Engineering (Q1); Computer Graphics and Computer-Aided Design (Q2); Computer Science Applications (Q2); Software (Q2)";"Computer Science; Engineering" +8393;5700167221;"Journal of Contemporary European Studies";journal;"14782790, 14782804";"Routledge";No;No;0,690;Q1;33;114;246;8150;656;238;2,62;71,49;44,92;5;United Kingdom;Western Europe;"Routledge";"2007-2026";"Cultural Studies (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8394;23884;"Journal of Stroke and Cerebrovascular Diseases";journal;"10523057, 15328511";"W.B. Saunders";Yes;No;0,690;Q1;89;394;1440;13388;3166;1382;2,14;33,98;38,66;0;United States;Northern America;"W.B. Saunders";"1991-2026";"Rehabilitation (Q1); Surgery (Q1); Cardiology and Cardiovascular Medicine (Q2); Neurology (clinical) (Q2)";"Medicine" +8395;19700200834;"Journal of Transportation Safety and Security";journal;"19439970, 19439962";"Taylor and Francis Ltd.";No;No;0,690;Q1;35;72;208;3719;704;207;3,20;51,65;24,70;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Safety Research (Q1); Transportation (Q2)";"Social Sciences" +8396;19700175819;"Patient Preference and Adherence";journal;"1177889X";"Dove Medical Press Ltd";Yes;No;0,690;Q1;80;328;810;13990;2289;781;2,63;42,65;58,53;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2007-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Health Policy (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +8397;13886;"Advanced Engineering Materials";journal;"14381656, 15272648";"Wiley-VCH Verlag";No;No;0,690;Q2;155;1071;2359;64417;8996;2342;3,80;60,15;27,34;0;Germany;Western Europe;"Wiley-VCH Verlag";"1999-2026";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)";"Materials Science; Physics and Astronomy" +8398;7700153115;"Annual Reports in Computational Chemistry";book series;"18755232, 15741400";"Elsevier B.V.";No;No;0,690;Q2;33;3;19;272;53;8;2,71;90,67;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2005-2025";"Chemistry (miscellaneous) (Q2); Computational Mathematics (Q2)";"Chemistry; Mathematics" +8399;16954;"Clinical Biochemistry";journal;"00099120, 18732933";"Elsevier Inc.";No;No;0,690;Q2;134;155;388;4789;924;360;2,27;30,90;47,21;1;United States;Northern America;"Elsevier Inc.";"1967-1968, 1970-2026";"Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8400;21101062120;"Foot and Ankle Orthopaedics";journal;"24730114";"SAGE Publications Inc.";Yes;No;0,690;Q2;18;147;338;3854;604;318;1,59;26,22;25,73;0;United States;Northern America;"SAGE Publications Inc.";"2016-2026";"Orthopedics and Sports Medicine (Q2)";"Medicine" +8401;4700152903;"Forensic Toxicology";journal;"18608965, 18608973";"Springer";No;No;0,690;Q2;48;39;102;1457;320;88;2,77;37,36;37,06;0;Japan;Asiatic Region;"Springer";"2006-2026";"Biochemistry (medical) (Q2); Pathology and Forensic Medicine (Q2); Toxicology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +8402;17112;"Postgraduate Medical Journal";journal;"14690756, 00325473";"Oxford University Press";No;No;0,690;Q2;130;178;679;5515;1594;489;3,03;30,98;42,63;0;United Kingdom;Western Europe;"Oxford University Press";"1927, 1929-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8403;16670;"Journal of Chemical Neuroanatomy";journal;"18736300, 08910618";"Elsevier B.V.";No;No;0,690;Q3;93;0;229;0;666;226;2,99;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1988-2024";"Cellular and Molecular Neuroscience (Q3)";"Neuroscience" +8404;21100943978;"Australian Journalism Review";journal;"2517620X, 08102686";"Intellect Ltd.";No;No;0,689;Q1;18;15;46;636;60;37;1,39;42,40;52,63;0;United Kingdom;Western Europe;"Intellect Ltd.";"2003-2025";"Communication (Q1)";"Social Sciences" +8405;21101213850;"Green Finance";journal;"26431092";"American Institute of Mathematical Sciences";Yes;Yes;0,689;Q1;25;28;76;2137;380;75;4,10;76,32;41,25;0;United States;Northern America;"American Institute of Mathematical Sciences";"2020-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +8406;21101048252;"Integrative Organismal Biology";journal;"25174843";"Oxford University Press";Yes;No;0,689;Q1;21;47;133;3584;307;133;2,14;76,26;40,53;0;United States;Northern America;"Oxford University Press";"2019-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)";"Agricultural and Biological Sciences" +8407;21101163250;"Ufa Archaeological Herald";journal;"27822842, 18141692";"Ufa Federal Research Center of the Russian Academy of Sciences";Yes;Yes;0,689;Q1;4;53;82;2016;39;82;0,48;38,04;36,67;0;Russian Federation;Eastern Europe;"Ufa Federal Research Center of the Russian Academy of Sciences";"2023-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1); History and Philosophy of Science (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +8408;15575;"European Neurology";journal;"14219913, 00143022";"S. Karger AG";No;No;0,689;Q2;96;30;155;864;345;137;2,03;28,80;46,90;0;Switzerland;Western Europe;"S. Karger AG";"1897-2026";"Neurology (clinical) (Q2); Neurology (Q3)";"Medicine; Neuroscience" +8409;21100898619;"International Journal for Research in Vocational Education and Training";journal;"21978646, 21978638";"European Research Network Vocational Education and Training";Yes;Yes;0,689;Q2;21;17;50;874;141;50;2,91;51,41;50,00;0;Germany;Western Europe;"European Research Network Vocational Education and Training";"2014-2025";"Education (Q2)";"Social Sciences" +8410;11700154304;"Journal of Proteomics";journal;"18743919, 18767737";"Elsevier B.V.";No;No;0,689;Q2;136;115;486;6910;1498;479;3,28;60,09;43,76;1;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Biochemistry (Q2); Biophysics (Q2)";"Biochemistry, Genetics and Molecular Biology" +8411;4000151902;"Journal of the Canadian Academy of Child and Adolescent Psychiatry";journal;"17198429";"Canadian Academy of Child and Adolescent Psychiatry";Yes;No;0,689;Q2;49;25;97;932;129;47;1,15;37,28;62,75;0;Canada;Northern America;"Canadian Academy of Child and Adolescent Psychiatry";"2006-2025";"Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +8412;21100244807;"Algae";journal;"20930860, 12262617";"Korean Society of Phycology";Yes;No;0,688;Q1;36;20;70;1123;214;66;3,02;56,15;53,41;0;South Korea;Asiatic Region;"Korean Society of Phycology";"2013-2025";"Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q2)";"Agricultural and Biological Sciences" +8413;21100454972;"Archives of Bone and Joint Surgery";journal;"23454644, 2345461X";"Mashhad University of Medical Sciences";Yes;No;0,688;Q1;37;116;370;3397;727;346;1,62;29,28;23,69;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2013-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +8414;9500153947;"Coastal Engineering Journal";journal;"21664250, 17936292";"Taylor and Francis Ltd.";No;No;0,688;Q1;52;52;109;2273;299;106;3,33;43,71;11,83;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1975-1977, 1984-1986, 1988, 1991, 1995-1996, 1998-2026";"Civil and Structural Engineering (Q1); Modeling and Simulation (Q2); Ocean Engineering (Q2)";"Engineering; Mathematics" +8415;25493;"Cross-Cultural Research";journal;"15523578, 10693971";"SAGE Publications Inc.";No;No;0,688;Q1;56;22;57;1629;154;57;1,98;74,05;34,29;0;United States;Northern America;"SAGE Publications Inc.";"1966-1984, 1986-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Psychology; Social Sciences" +8416;17600155124;"Current Zoology";journal;"16745507";"Oxford University Press";Yes;Yes;0,688;Q1;58;84;239;5893;537;223;2,26;70,15;40,50;0;United Kingdom;Western Europe;"Oxford University Press";"2009-2025";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +8417;19951;"International Journal of Conflict Management";journal;"10444068";"Emerald Group Publishing Ltd.";No;No;0,688;Q1;72;77;136;6690;584;136;4,57;86,88;50,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1990-2026";"Communication (Q1); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Social Sciences" +8418;21100886529;"International Journal of Systems Science: Operations and Logistics";journal;"23302674, 23302682";"Taylor and Francis Ltd.";No;No;0,688;Q1;36;107;222;6205;885;222;3,93;57,99;32,28;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Information Systems and Management (Q1); Information Systems (Q2); Management Information Systems (Q2); Management Science and Operations Research (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences" +8419;19700200915;"Laboratory Phonology";journal;"18686354, 18686346";"Open Library of Humanities";Yes;Yes;0,688;Q1;20;17;74;1210;106;74;1,46;71,18;53,85;0;Germany;Western Europe;"Open Library of Humanities";"2011, 2015-2026";"Linguistics and Language (Q1); Podiatry (Q1); Computer Science Applications (Q2)";"Computer Science; Health Professions; Social Sciences" +8420;21101199449;"Resources Science";journal;"10077588";"";Yes;No;0,688;Q1;34;192;538;8996;1830;538;3,52;46,85;42,64;0;China;Asiatic Region;"";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +8421;20595;"Economic Research-Ekonomska Istrazivanja";journal;"1331677X, 18489664";"Juraj Dobrila University of Pula";Yes;No;0,688;Q2;74;0;910;0;4297;910;4,15;0,00;0,00;0;Croatia;Eastern Europe;"Juraj Dobrila University of Pula";"2000-2024";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +8422;19700188148;"Footwear Science";journal;"19424280, 19424299";"Taylor and Francis Ltd.";No;No;0,688;Q2;35;22;72;898;202;64;2,38;40,82;27,52;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Biomedical Engineering (Q2); Biophysics (Q2); Human Factors and Ergonomics (Q2); Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering; Health Professions; Medicine; Social Sciences" +8423;21101082412;"JMIR Dermatology";journal;"25620959";"JMIR Publications Inc.";Yes;No;0,688;Q2;15;51;230;860;524;211;2,45;16,86;55,23;0;Canada;Northern America;"JMIR Publications Inc.";"2018-2026";"Dermatology (Q2); Health Informatics (Q2); Health Information Management (Q2)";"Health Professions; Medicine" +8424;20007;"Software - Practice and Experience";journal;"1097024X, 00380644";"John Wiley and Sons Ltd";No;No;0,688;Q2;84;100;333;5639;1420;325;4,13;56,39;23,16;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1971-2026";"Software (Q2)";"Computer Science" +8425;34776;"Wiener Klinische Wochenschrift";journal;"00435325, 16137671";"Springer";No;No;0,688;Q2;69;199;442;4239;858;328;2,06;21,30;39,87;1;Austria;Western Europe;"Springer";"1946-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8426;19700175168;"Frontiers in Computational Neuroscience";journal;"16625188";"Frontiers Media SA";Yes;No;0,688;Q3;86;95;455;5072;1476;415;3,33;53,39;30,38;0;Switzerland;Western Europe;"Frontiers Media SA";"2007-2026";"Cellular and Molecular Neuroscience (Q3); Neuroscience (miscellaneous) (Q3)";"Neuroscience" +8427;21101334581;"Sage Open Aging";journal;"30495334";"SAGE Publications Ltd";No;No;0,688;Q3;24;24;330;981;771;325;2,05;40,88;54,24;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2025-2026";"Geriatrics and Gerontology (Q3)";"Medicine" +8428;62303;"Animal Feed Science and Technology";journal;"03778401";"Elsevier B.V.";No;No;0,687;Q1;156;313;703;19678;2537;700;3,61;62,87;39,80;0;Netherlands;Western Europe;"Elsevier B.V.";"1976-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +8429;13040;"Antarctic Science";journal;"09541020, 13652079";"Cambridge University Press";No;No;0,687;Q1;82;67;120;3998;244;110;2,08;59,67;37,94;0;United Kingdom;Western Europe;"Cambridge University Press";"1986-1987, 1989-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Geology (Q1); Oceanography (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +8430;21100901581;"BDJ Open";journal;"2056807X";"Springer International Publishing";Yes;No;0,687;Q1;21;97;182;3932;554;180;3,11;40,54;41,19;0;Switzerland;Western Europe;"Springer International Publishing";"2018-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +8431;22803;"Behavioral Ecology and Sociobiology";journal;"03405443, 14320762";"Springer Science and Business Media Deutschland GmbH";No;No;0,687;Q1;144;129;427;9755;923;422;2,02;75,62;42,86;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1976-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)";"Agricultural and Biological Sciences" +8432;26299;"Harvard International Law Journal";journal;"00178063";"Harvard University";No;No;0,687;Q1;56;20;28;4755;101;27;2,64;237,75;33,33;0;United States;Northern America;"Harvard University";"1979, 1992, 1996-2019, 2022-2025";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +8433;16100154793;"International Journal of Music Education";journal;"1744795X, 02557614";"SAGE Publications Ltd";No;No;0,687;Q1;42;95;177;4294;375;177;2,14;45,20;58,43;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1987, 1996-2026";"Music (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +8434;25634;"International Journal of Paediatric Dentistry";journal;"1365263X, 09607439";"Wiley-Blackwell Publishing Ltd";No;No;0,687;Q1;85;142;274;3959;757;263;2,31;27,88;62,00;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1991-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +8435;21678;"Journal of Foot and Ankle Surgery";journal;"15422224, 10672516";"Academic Press Inc.";No;No;0,687;Q1;84;202;595;5573;1031;551;1,63;27,59;21,53;0;United States;Northern America;"Academic Press Inc.";"1993-2026";"Surgery (Q1); Orthopedics and Sports Medicine (Q2)";"Medicine" +8436;21101091647;"LGBTQ+ Family: An Interdisciplinary Journal";journal;"27703371, 2770338X";"Routledge";No;No;0,687;Q1;50;56;81;3194;264;81;2,68;57,04;61,21;0;United Kingdom;Western Europe;"Routledge";"2022-2026";"Gender Studies (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +8437;20024;"Australian Prescriber";journal;"03128008, 18393942";"Therapeutic Guidelines Ltd";Yes;Yes;0,687;Q2;50;53;158;996;235;74;1,49;18,79;62,71;0;Australia;Pacific Region;"Therapeutic Guidelines Ltd";"1995-2026";"Pharmacology (medical) (Q2)";"Medicine" +8438;19700188272;"International Journal of Older People Nursing";journal;"17483735, 17483743";"John Wiley and Sons Inc";No;No;0,687;Q2;47;53;233;2459;568;206;2,60;46,40;76,88;0;United States;Northern America;"John Wiley and Sons Inc";"2010-2026";"Gerontology (Q2)";"Nursing" +8439;21101266518;"Tropical Plants";journal;"28339851";"Maximum Academic Press";No;No;0,687;Q2;9;40;66;2759;208;64;3,15;68,98;41,73;0;United States;Northern America;"Maximum Academic Press";"2023-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +8440;7600153113;"Breastfeeding Medicine";journal;"15568253, 15568342";"Mary Ann Liebert Inc.";No;No;0,686;Q1;67;154;448;4156;836;364;1,82;26,99;79,32;0;United States;Northern America;"Mary Ann Liebert Inc.";"2006-2026";"Maternity and Midwifery (Q1); Health Policy (Q2); Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2); Pediatrics (Q2)";"Medicine; Nursing" +8441;26980;"Buildings";journal;"20755309";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,686;Q1;85;4569;9466;248178;39996;9413;3,97;54,32;32,34;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Architecture (Q1); Civil and Structural Engineering (Q1); Building and Construction (Q2)";"Engineering" +8442;17610;"Child and Adolescent Social Work Journal";journal;"07380151, 15732797";"Springer New York";No;No;0,686;Q1;57;126;203;8383;606;195;2,87;66,53;66,67;3;United States;Northern America;"Springer New York";"1984-2026";"Social Sciences (miscellaneous) (Q1); Social Work (Q2)";"Social Sciences" +8443;21101038513;"Dizhi Xuebao/Acta Geologica Sinica";journal;"00015717";"Geological Society of China";No;No;0,686;Q1;38;261;764;17705;1833;764;2,25;67,84;31,52;0;China;Asiatic Region;"Geological Society of China";"1979-1988, 1992-1998, 2016, 2019-2026";"Geology (Q1)";"Earth and Planetary Sciences" +8444;19700175224;"Fossil Record";journal;"21930066, 21930074";"Pensoft Publishers";Yes;No;0,686;Q1;27;27;61;2581;117;57;1,69;95,59;25,22;0;Germany;Western Europe;"Pensoft Publishers";"1998, 2007-2026";"Paleontology (Q1)";"Earth and Planetary Sciences" +8445;21100201094;"Frontiers of Structural and Civil Engineering";journal;"20952430, 20952449";"Springer Science + Business Media";No;No;0,686;Q1;53;120;347;6745;1341;347;3,50;56,21;20,00;0;United States;Northern America;"Springer Science + Business Media";"2012-2025";"Architecture (Q1); Civil and Structural Engineering (Q1)";"Engineering" +8446;25164;"Newsletters on Stratigraphy";journal;"00780421, 23636122";"Schweizerbart Science Publishers";No;No;0,686;Q1;46;20;59;2015;132;58;2,21;100,75;29,17;0;Germany;Western Europe;"Schweizerbart Science Publishers";"1990, 1996-2001, 2004-2006, 2008-2025";"Geology (Q1); Stratigraphy (Q1)";"Earth and Planetary Sciences" +8447;19400157207;"Canadian Urological Association Journal";journal;"19116470, 19201214";"Canadian Urological Association";Yes;No;0,686;Q2;52;191;419;3906;614;342;1,40;20,45;29,75;1;Canada;Northern America;"Canadian Urological Association";"2007-2026";"Urology (Q2); Oncology (Q3)";"Medicine" +8448;144938;"Diagnostic and Interventional Radiology";journal;"13053825, 13053612";"Galenos Publishing House";Yes;No;0,686;Q2;61;81;266;2365;651;252;2,55;29,20;34,68;0;Turkey;Middle East;"Galenos Publishing House";"2005-2026";"Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +8449;22099;"Environmental and Molecular Mutagenesis";journal;"10982280, 08936692";"Wiley-Liss Inc.";No;No;0,686;Q2;104;52;121;3565;336;115;2,60;68,56;45,39;3;United States;Northern America;"Wiley-Liss Inc.";"1987-2025";"Epidemiology (Q2); Health, Toxicology and Mutagenesis (Q2); Genetics (clinical) (Q3)";"Environmental Science; Medicine" +8450;20922;"Microchemical Journal";journal;"0026265X";"Elsevier Inc.";No;No;0,686;Q2;126;3898;5052;209706;27496;5044;5,50;53,80;43,76;1;United States;Northern America;"Elsevier Inc.";"1957-2026";"Analytical Chemistry (Q2); Spectroscopy (Q2)";"Chemistry" +8451;25494;"Southern Economic Journal";journal;"00384038";"Wiley-Blackwell";No;No;0,686;Q2;74;84;143;4429;245;140;1,44;52,73;20,78;10;United States;Northern America;"Wiley-Blackwell";"1975-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +8452;21101257076;"CHEST Pulmonary";journal;"29497892";"Elsevier B.V.";Yes;No;0,685;Q1;8;107;94;3036;151;77;1,61;28,37;39,05;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Otorhinolaryngology (Q1); Ophthalmology (Q2)";"Medicine" +8453;21100867476;"Discrete Analysis";journal;"23973129";"Alliance of Diamond OA Journals";Yes;Yes;0,685;Q1;16;23;63;587;56;63;0,74;25,52;5,77;0;United Kingdom;Western Europe;"Alliance of Diamond OA Journals";"2016-2025";"Algebra and Number Theory (Q1); Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q2)";"Mathematics" +8454;21101243610;"Intelligent Transportation Infrastructure";journal;"27529991";"Oxford University Press";Yes;No;0,685;Q1;12;28;70;1664;308;69;4,06;59,43;31,58;0;United Kingdom;Western Europe;"Oxford University Press";"2022-2026";"Civil and Structural Engineering (Q1); Mathematics (miscellaneous) (Q1); Artificial Intelligence (Q2); Building and Construction (Q2); Computer Science Applications (Q2); Transportation (Q2)";"Computer Science; Engineering; Mathematics; Social Sciences" +8455;21100239256;"PeerJ";journal;"21678359";"PeerJ Inc.";Yes;No;0,685;Q1;136;1571;5956;92511;19082;5956;3,03;58,89;43,86;2;United States;Northern America;"PeerJ Inc.";"2013-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +8456;21100835710;"Plastic and Reconstructive Surgery - Global Open";journal;"21697574";"Lippincott Williams and Wilkins Ltd.";Yes;No;0,685;Q1;64;855;2324;19054;4399;2197;1,78;22,29;36,79;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2013-2026";"Surgery (Q1)";"Medicine" +8457;144951;"Studia Logica";journal;"15728730, 00393215";"Springer Netherlands";No;No;0,685;Q1;48;106;136;3444;158;136;1,23;32,49;18,79;0;Netherlands;Western Europe;"Springer Netherlands";"1953, 1955-1958, 1960-2002, 2004-2026";"History and Philosophy of Science (Q1); Logic (Q1)";"Arts and Humanities; Mathematics" +8458;13820;"Current Eye Research";journal;"14602202, 02713683";"Taylor and Francis Ltd.";No;No;0,685;Q2;98;165;495;7140;1189;488;2,26;43,27;43,80;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-1982, 1984-2026";"Ophthalmology (Q2); Sensory Systems (Q2); Cellular and Molecular Neuroscience (Q3)";"Medicine; Neuroscience" +8459;21100837463;"Dianli Jianshe/Electric Power Construction";journal;"10007229";"State Power Economic Research Institute";Yes;Yes;0,685;Q2;28;135;490;5621;1609;490;3,98;41,64;30,25;0;China;Asiatic Region;"State Power Economic Research Institute";"2017-2026";"Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Engineering" +8460;19700174628;"Iranian Journal of Basic Medical Sciences";journal;"20083874, 20083866";"Mashhad University of Medical Sciences";Yes;No;0,685;Q2;67;153;548;8302;1879;543;3,41;54,26;41,37;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2007-2025";"Biochemistry (Q2); Biophysics (Q2); Clinical Biochemistry (Q2); Drug Discovery (Q2); Immunology and Microbiology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +8461;21100892687;"Journal of Advances in Management Research";journal;"09727981, 20493207";"Emerald Group Publishing Ltd.";No;No;0,685;Q2;42;58;105;4817;485;105;4,61;83,05;29,80;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003-2026";"Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting" +8462;21100223310;"Urolithiasis";journal;"21947236, 21947228";"Springer Science and Business Media Deutschland GmbH";No;No;0,685;Q2;78;221;370;5526;980;347;2,40;25,00;25,20;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1981, 1989, 2013-2026";"Urology (Q2)";"Medicine" +8463;20737;"Clinical and Molecular Allergy";journal;"14767961";"BioMed Central Ltd";Yes;No;0,685;Q3;46;0;24;0;71;21;2,00;0,00;0,00;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2013, 2015-2024";"Immunology (Q3); Immunology and Allergy (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +8464;12084;"Australian Psychologist";journal;"00050067, 17429544";"Routledge";No;No;0,684;Q1;65;58;126;3073;300;118;2,18;52,98;60,44;1;United States;Northern America;"Routledge";"1966-2026";"Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Psychology" +8465;14293;"Deviant Behavior";journal;"15210456, 01639625";"Taylor and Francis Ltd.";No;No;0,684;Q1;74;288;298;20213;833;298;2,64;70,18;46,46;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2026";"Law (Q1); Sociology and Political Science (Q1); Clinical Psychology (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +8466;21101109594;"Particles";journal;"2571712X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,684;Q1;19;104;171;3405;355;171;2,20;32,74;22,22;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Physics and Astronomy (miscellaneous) (Q1); Astronomy and Astrophysics (Q2); Nuclear and High Energy Physics (Q2)";"Physics and Astronomy" +8467;21101092812;"Proceedings of the American Mathematical Society, Series B";journal;"23301511";"American Mathematical Society";Yes;No;0,684;Q1;12;21;137;467;113;137;0,87;22,24;24,49;0;United States;Northern America;"American Mathematical Society";"2019-2026";"Algebra and Number Theory (Q1); Analysis (Q2); Discrete Mathematics and Combinatorics (Q2); Geometry and Topology (Q2)";"Mathematics" +8468;69085;"Reproductive Biology";journal;"1642431X";"Elsevier B.V.";No;No;0,684;Q1;52;82;254;5221;689;254;2,46;63,67;53,97;0;Netherlands;Western Europe;"Elsevier B.V.";"2001, 2003-2026";"Animal Science and Zoology (Q1); Developmental Biology (Q3); Endocrinology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +8469;25364;"Scandinavian Journal of Gastroenterology";journal;"00365521, 15027708";"Taylor and Francis Ltd.";No;No;0,684;Q2;135;145;599;4976;1175;576;1,79;34,32;35,54;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1966-2026";"Gastroenterology (Q2)";"Medicine" +8470;21100907392;"Visual Informatics";journal;"25432656, 2468502X";"Elsevier B.V.";Yes;Yes;0,684;Q2;31;39;96;1906;572;96;4,91;48,87;33,95;1;Netherlands;Western Europe;"Elsevier B.V.";"2017-2025";"Computer Graphics and Computer-Aided Design (Q2); Human-Computer Interaction (Q2); Software (Q2)";"Computer Science" +8471;19900192595;"Zdravstveno Varstvo";journal;"18542476, 03510026";"De Gruyter Open Ltd.";Yes;Yes;0,684;Q2;21;29;75;936;178;75;1,92;32,28;67,57;0;Germany;Western Europe;"De Gruyter Open Ltd.";"2010-2025";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8472;21101060204;"Advances in Aerodynamics";journal;"20973462, 25246992";"Springer Nature";Yes;Yes;0,683;Q1;25;23;98;989;338;97;3,02;43,00;27,78;0;Netherlands;Western Europe;"Springer Nature";"2019-2026";"Aerospace Engineering (Q1); Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Modeling and Simulation (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Engineering; Mathematics" +8473;21101206093;"Al-Risalah: Forum Kajian Hukum dan Sosial Kemasyarakatan";journal;"1412436X, 25409522";"State Islamic University of Sulthan Thaha Saifuddin Jambi";No;No;0,683;Q1;11;24;61;1107;177;61;3,51;46,13;35,29;0;Indonesia;Asiatic Region;"State Islamic University of Sulthan Thaha Saifuddin Jambi";"2020-2025";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +8474;27605;"Collegian";journal;"13227696";"Elsevier B.V.";No;No;0,683;Q1;50;51;279;2168;698;264;2,47;42,51;73,87;0;Netherlands;Western Europe;"Elsevier B.V.";"1994-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +8475;4400151505;"Critical Review";journal;"08913811";"Taylor and Francis Ltd.";No;No;0,683;Q1;36;18;61;1119;117;57;2,00;62,17;17,39;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2000, 2003, 2005-2026";"Literature and Literary Theory (Q1); Political Science and International Relations (Q1)";"Arts and Humanities; Social Sciences" +8476;21101201510;"Digital Transformation and Society";journal;"27550761, 2755077X";"Emerald Publishing";Yes;Yes;0,683;Q1;14;49;65;2519;364;52;6,33;51,41;39,66;0;United Kingdom;Western Europe;"Emerald Publishing";"2022-2026";"Library and Information Sciences (Q1); Computer Science Applications (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Computer Science; Social Sciences" +8477;21101390060;"Environmental Sustainability";journal;"25238922";"Springer";No;No;0,683;Q1;10;59;38;4666;191;30;5,03;79,08;43,57;0;Singapore;Asiatic Region;"Springer";"2023-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Microbiology and Biotechnology (Q2); Environmental Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Agricultural and Biological Sciences; Energy; Environmental Science; Immunology and Microbiology" +8478;21100913778;"Horticulturae";journal;"23117524";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,683;Q1;63;1519;3940;92421;15850;3876;3,76;60,84;43,82;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2026";"Horticulture (Q1); Plant Science (Q2)";"Agricultural and Biological Sciences" +8479;4700152306;"International Journal of Mining, Reclamation and Environment";journal;"17480949, 17480930";"Taylor and Francis Ltd.";No;No;0,683;Q1;43;61;131;3381;462;129;3,49;55,43;20,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Geology (Q1); Earth-Surface Processes (Q2); Geotechnical Engineering and Engineering Geology (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Earth and Planetary Sciences" +8480;4700152802;"Journal of Business and Finance Librarianship";journal;"15470644, 08963568";"Routledge";No;No;0,683;Q1;23;23;53;835;118;53;2,52;36,30;54,55;1;United States;Northern America;"Routledge";"1990-1992, 1994, 1996-2026";"Library and Information Sciences (Q1); E-learning (Q2); Management Information Systems (Q2); Marketing (Q2)";"Business, Management and Accounting; Social Sciences" +8481;21100873341;"Journal of Chinese Sociology";journal;"21982635";"SpringerOpen";Yes;Yes;0,683;Q1;22;24;67;1407;220;66;3,32;58,63;58,14;0;United Kingdom;Western Europe;"SpringerOpen";"2014-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +8482;23961;"Journal of Number Theory";journal;"10961658, 0022314X";"Academic Press Inc.";No;No;0,683;Q1;55;135;609;3343;381;605;0,58;24,76;20,98;0;United States;Northern America;"Academic Press Inc.";"1969-2026";"Algebra and Number Theory (Q1)";"Mathematics" +8483;13956;"Lethaia";journal;"00241164, 15023931";"Scandinavian University Press";Yes;Yes;0,683;Q1;71;41;97;3509;215;95;1,73;85,59;26,19;0;Norway;Western Europe;"Scandinavian University Press";"1968-2025";"Ecology, Evolution, Behavior and Systematics (Q1); Paleontology (Q1)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +8484;21101046164;"Materialy po Arkheologii i Istorii Antichnogo i Srednevekovogo Prichernomor'ya";journal;"27132021";"Cimmeria Publishing";Yes;Yes;0,683;Q1;8;50;132;1975;68;132;0,58;39,50;31,09;0;Russian Federation;Eastern Europe;"Cimmeria Publishing";"2019-2025";"Archeology (arts and humanities) (Q1); History (Q1); Linguistics and Language (Q1)";"Arts and Humanities; Social Sciences" +8485;29254;"Nursing Philosophy";journal;"14667681, 1466769X";"Wiley-Blackwell Publishing Ltd";No;No;0,683;Q1;47;46;130;2205;355;113;2,32;47,93;72,60;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2003-2026";"Issues, Ethics and Legal Aspects (Q1); Research and Theory (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +8486;24530;"Spectrochimica Acta - Part A: Molecular and Biomolecular Spectroscopy";journal;"13861425";"Elsevier B.V.";No;No;0,683;Q1;179;1480;4110;72087;21213;4108;5,37;48,71;42,70;0;Netherlands;Western Europe;"Elsevier B.V.";"1995-2026";"Instrumentation (Q1); Analytical Chemistry (Q2); Atomic and Molecular Physics, and Optics (Q2); Spectroscopy (Q2)";"Chemistry; Physics and Astronomy" +8487;20412;"Acta Neurochirurgica";journal;"00016268, 09420940";"Springer";Yes;No;0,683;Q2;117;325;1382;9878;2755;1282;1,86;30,39;25,92;0;Austria;Western Europe;"Springer";"1950-2026";"Neurology (clinical) (Q2); Surgery (Q2)";"Medicine" +8488;21100898536;"European Journal of Obstetrics and Gynecology and Reproductive Biology: X";journal;"25901613";"Elsevier Ireland Ltd";Yes;No;0,683;Q2;22;71;197;3028;435;183;2,17;42,65;55,84;1;Ireland;Western Europe;"Elsevier Ireland Ltd";"2019-2026";"Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)";"Medicine" +8489;5700153985;"Exceptionality";journal;"09362835, 15327035";"Routledge";No;No;0,683;Q2;31;28;72;1770;186;71;2,51;63,21;64,21;0;United States;Northern America;"Routledge";"1990-1994, 2010-2026";"Developmental and Educational Psychology (Q2); Education (Q2)";"Psychology; Social Sciences" +8490;21101165608;"Food Safety and Risk";journal;"27319245";"BioMed Central Ltd";Yes;No;0,683;Q2;4;13;7;815;37;7;5,29;62,69;33,33;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2023-2026";"Food Science (Q2); Health, Toxicology and Mutagenesis (Q2); Public Health, Environmental and Occupational Health (Q2)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +8491;4800152310;"HSS Journal";journal;"15563324, 15563316";"SAGE Publications Ltd";No;No;0,683;Q2;53;73;225;2486;418;188;1,54;34,05;22,95;0;United States;Northern America;"SAGE Publications Ltd";"2006-2026";"Orthopedics and Sports Medicine (Q2); Surgery (Q2)";"Medicine" +8492;14734;"International Journal for Quality in Health Care";journal;"13534505, 14643677";"Oxford University Press";No;No;0,683;Q2;116;121;292;2953;641;242;2,08;24,40;52,04;3;United Kingdom;Western Europe;"Oxford University Press";"1989-2026";"Health Policy (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8493;27585;"Journal of Lower Genital Tract Disease";journal;"15260976, 10892591";"Lippincott Williams and Wilkins";No;No;0,683;Q2;59;66;203;1697;442;197;2,04;25,71;67,97;0;United States;Northern America;"Lippincott Williams and Wilkins";"1997-2026";"Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)";"Medicine" +8494;145328;"Team Performance Management";journal;"13527592";"Emerald Publishing";No;No;0,683;Q2;48;41;55;3233;175;54;3,19;78,85;46,67;0;United Kingdom;Western Europe;"Emerald Publishing";"1995-2025";"Management Information Systems (Q2); Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +8495;19328;"Botanical Journal of the Linnean Society";journal;"10958339, 00244074";"Oxford University Press";No;No;0,682;Q1;88;84;251;6466;575;250;2,03;76,98;47,43;0;United Kingdom;Western Europe;"Oxford University Press";"1969-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q2)";"Agricultural and Biological Sciences" +8496;24644;"Journal of Physical and Chemical Reference Data";journal;"15297845, 00472689";"American Institute of Physics";No;No;0,682;Q1;109;16;47;1110;146;45;2,63;69,38;21,95;0;United States;Northern America;"American Institute of Physics";"1972-2026";"Physics and Astronomy (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Physics and Astronomy" +8497;78582;"Journal of the Royal Anthropological Institute";journal;"14679655, 13590987";"John Wiley and Sons Inc";No;No;0,682;Q1;87;91;198;5995;352;193;1,87;65,88;50,44;1;United States;Northern America;"John Wiley and Sons Inc";"1995-2001, 2004-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +8498;24490;"Manuscripta Mathematica";journal;"14321785, 00252611";"Springer New York";No;No;0,682;Q1;50;82;330;2187;202;330;0,63;26,67;20,98;0;United States;Northern America;"Springer New York";"1969-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +8499;19700201446;"New Review of Academic Librarianship";journal;"13614533, 17407834";"Taylor and Francis Ltd.";No;No;0,682;Q1;30;25;67;951;193;59;2,02;38,04;39,68;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Library and Information Sciences (Q1); E-learning (Q2)";"Social Sciences" +8500;5000158124;"Results in Mathematics";journal;"14209012, 14226383";"Springer International Publishing";No;No;0,682;Q1;48;241;770;6228;896;770;1,19;25,84;26,33;0;Switzerland;Western Europe;"Springer International Publishing";"1978-2026";"Mathematics (miscellaneous) (Q1); Applied Mathematics (Q2)";"Mathematics" +8501;24227;"Review of International Economics";journal;"09657576, 14679396";"Wiley-Blackwell Publishing Ltd";No;No;0,682;Q1;75;74;193;3632;375;192;2,11;49,08;23,08;11;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2026";"Development (Q1); Geography, Planning and Development (Q1)";"Social Sciences" +8502;21100894506;"Veterinary and Animal Science";journal;"2451943X";"Elsevier B.V.";Yes;No;0,682;Q1;29;125;182;6252;639;181;3,65;50,02;35,97;1;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Animal Science and Zoology (Q1); Veterinary (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Veterinary" +8503;21100943507;"Acta Psychologica Sinica";journal;"0439755X";"Science Press";No;No;0,682;Q2;22;140;380;9931;813;377;2,13;70,94;47,18;0;China;Asiatic Region;"Science Press";"2001-2003, 2009, 2013, 2019-2025";"Psychology (miscellaneous) (Q2)";"Psychology" +8504;28967;"Discrete Event Dynamic Systems: Theory and Applications";journal;"15737594, 09246703";"Springer Netherlands";No;No;0,682;Q2;54;14;60;524;91;60;1,15;37,43;20,51;0;Netherlands;Western Europe;"Springer Netherlands";"1991-2026";"Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Modeling and Simulation (Q2)";"Engineering; Mathematics" +8505;17458;"European Cells and Materials";journal;"14732262";"Forum Multimedia Publishing LLC";Yes;No;0,682;Q2;101;48;76;3402;252;75;3,27;70,88;34,62;0;United States;Northern America;"Forum Multimedia Publishing LLC";"2001-2026";"Biochemistry (Q2); Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science; Medicine" +8506;21101074928;"MRS Energy and Sustainability - A Review Journal";journal;"23292237, 23292229";"Springer Nature";No;No;0,682;Q2;33;31;97;2089;403;92;3,92;67,39;41,96;0;Switzerland;Western Europe;"Springer Nature";"2014-2026";"Electronic, Optical and Magnetic Materials (Q2); Energy Engineering and Power Technology (Q2); Mechanics of Materials (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Engineering; Materials Science" +8507;29614;"Plasma Sources Science and Technology";journal;"13616595, 09630252";"IOP Publishing Ltd.";No;No;0,682;Q2;132;191;752;10534;2728;752;3,39;55,15;23,20;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1992-2025";"Condensed Matter Physics (Q2)";"Physics and Astronomy" +8508;19700171401;"World Neurosurgery";journal;"18788769, 18788750";"Elsevier Inc.";No;No;0,682;Q2;131;1250;5331;36197;10167;4636;1,76;28,96;26,87;1;United States;Northern America;"Elsevier Inc.";"1994, 2010-2026";"Neurology (clinical) (Q2); Surgery (Q2)";"Medicine" +8509;19900191620;"Engineering Studies";journal;"19378629, 19408374";"Taylor and Francis Ltd.";No;No;0,681;Q1;31;19;40;951;96;31;2,77;50,05;43,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Engineering (miscellaneous) (Q1); History and Philosophy of Science (Q1); Education (Q2)";"Arts and Humanities; Engineering; Social Sciences" +8510;19900192136;"International Journal of Auditing";journal;"10991123, 10906738";"John Wiley and Sons Ltd";No;No;0,681;Q1;42;41;92;3074;294;90;3,19;74,98;33,72;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Accounting (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +8511;18298;"Journal of Reproduction and Development";journal;"09168818, 13484400";"The Japanese Society of Animal Reproduction (JSAR)";Yes;No;0,681;Q1;66;40;155;1834;359;155;2,16;45,85;35,75;0;Japan;Asiatic Region;"The Japanese Society of Animal Reproduction (JSAR)";"1992-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +8512;6100152802;"Nanomedicine";journal;"17486963, 17435889";"Taylor and Francis Ltd.";No;No;0,681;Q1;148;238;468;18991;1884;403;3,96;79,79;43,83;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Development (Q1); Bioengineering (Q2); Biomedical Engineering (Q2); Materials Science (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q2)";"Chemical Engineering; Engineering; Materials Science; Medicine; Social Sciences" +8513;21100235632;"Asian Journal of Shipping and Logistics";journal;"20925212";"Korean Association of Shipping and Logistics, Inc.";Yes;No;0,681;Q2;45;23;68;907;299;68;4,32;39,43;20,97;0;Netherlands;Western Europe;"Korean Association of Shipping and Logistics, Inc.";"2009-2026";"Business and International Management (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Transportation (Q2)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +8514;18421;"Canadian Respiratory Journal";journal;"11982241, 19167245";"John Wiley and Sons Ltd";Yes;No;0,681;Q2;68;40;121;1825;345;120;2,20;45,63;49,17;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1996-2026";"Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +8515;9500154000;"Current Cardiology Reviews";journal;"1573403X, 18756557";"Bentham Science Publishers";No;No;0,681;Q2;68;65;177;5559;488;165;2,69;85,52;29,47;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +8516;29178;"Ergonomics";journal;"00140139, 13665847";"Taylor and Francis Ltd.";No;No;0,681;Q2;144;268;411;16919;1523;406;3,71;63,13;42,37;6;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1957-2026";"Human Factors and Ergonomics (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Social Sciences" +8517;20213;"International Labour Review";journal;"00207780, 1564913X";"Open Library of Humanities";Yes;No;0,681;Q2;59;29;93;1742;243;90;1,57;60,07;35,29;0;United Kingdom;Western Europe;"Open Library of Humanities";"1945-1948, 1973-2026";"Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +8518;21100399753;"Journal of Electrochemical Science and Technology";journal;"22889221, 20938551";"The Korean Electrochemical Society";Yes;No;0,681;Q2;27;42;132;1955;422;131;2,45;46,55;31,33;0;South Korea;Asiatic Region;"The Korean Electrochemical Society";"2014-2025";"Electrochemistry (Q2)";"Chemistry" +8519;21100463067;"Journal of Genetic Engineering and Biotechnology";journal;"20905920, 1687157X";"Elsevier B.V.";Yes;No;0,681;Q2;62;178;422;10941;1794;422;3,96;61,47;41,04;0;Netherlands;Western Europe;"Elsevier B.V.";"2011-2026";"Biotechnology (Q2); Genetics (Q3)";"Biochemistry, Genetics and Molecular Biology" +8520;21100258753;"Journal of the American Society of Cytopathology";journal;"22132945";"Elsevier Inc.";No;No;0,681;Q2;28;61;163;2003;367;147;2,56;32,84;54,09;0;United States;Northern America;"Elsevier Inc.";"2012-2026";"Pathology and Forensic Medicine (Q2)";"Medicine" +8521;18100;"Nordic Journal of Psychiatry";journal;"08039488, 15024725";"Taylor and Francis Ltd.";No;No;0,681;Q2;72;78;265;3559;518;257;1,68;45,63;59,10;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1947-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +8522;21100859994;"Pilot and Feasibility Studies";journal;"20555784";"BioMed Central Ltd";Yes;No;0,681;Q2;38;154;600;7798;1335;596;2,21;50,64;60,71;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8523;21100218036;"Radiation Oncology Journal";journal;"22341900, 22343156";"Department of Radiation Oncology";Yes;No;0,681;Q2;34;32;107;694;236;96;2,08;21,69;35,22;0;South Korea;Asiatic Region;"Department of Radiation Oncology";"2012-2025";"Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)";"Medicine" +8524;22304;"Surgeon";journal;"1479666X";"Elsevier Ltd";No;No;0,681;Q2;71;115;328;2971;828;301;2,42;25,83;34,38;0;United Kingdom;Western Europe;"Elsevier Ltd";"2003-2026";"Surgery (Q2)";"Medicine" +8525;21100894514;"Chaos, Solitons and Fractals: X";journal;"25900544";"Elsevier Ltd";Yes;No;0,680;Q1;17;4;42;202;187;42;5,00;50,50;18,18;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2025";"Physics and Astronomy (miscellaneous) (Q1); Applied Mathematics (Q2); Mathematical Physics (Q2); Statistical and Nonlinear Physics (Q2)";"Mathematics; Physics and Astronomy" +8526;21101185959;"JMIR Perioperative Medicine";journal;"25619128";"JMIR Publications Inc.";Yes;No;0,680;Q1;8;17;37;603;107;36;2,89;35,47;44,55;0;Canada;Northern America;"JMIR Publications Inc.";"2023-2026";"Health Professions (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Health Professions; Medicine" +8527;21100238622;"Biomolecular Concepts";journal;"1868503X, 18685021";"Walter de Gruyter GmbH";Yes;No;0,680;Q2;51;6;52;423;162;52;3,50;70,50;38,89;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2010-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Cellular and Molecular Neuroscience (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +8528;18473;"Cell Structure and Function";journal;"13473700, 03867196";"Japan Society for Cell Biology";Yes;No;0,680;Q2;68;19;39;1051;72;39;1,78;55,32;31,03;0;Japan;Asiatic Region;"Japan Society for Cell Biology";"1975-2026";"Medicine (miscellaneous) (Q2); Cell Biology (Q3); Molecular Biology (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8529;23035;"Journal of Biopharmaceutical Statistics";journal;"10543406, 15205711";"Taylor and Francis Ltd.";No;No;0,680;Q2;60;144;216;4335;313;200;1,26;30,10;41,95;0;United States;Northern America;"Taylor and Francis Ltd.";"1991-2026";"Pharmacology (Q2); Pharmacology (medical) (Q2); Statistics and Probability (Q2)";"Mathematics; Medicine; Pharmacology, Toxicology and Pharmaceutics" +8530;24064;"Journal of Supercritical Fluids";journal;"08968446";"Elsevier B.V.";No;No;0,680;Q2;146;206;580;10989;2578;577;4,43;53,34;35,07;0;Netherlands;Western Europe;"Elsevier B.V.";"1988-2026";"Chemical Engineering (miscellaneous) (Q2); Condensed Matter Physics (Q2); Physical and Theoretical Chemistry (Q2)";"Chemical Engineering; Chemistry; Physics and Astronomy" +8531;21101089656;"Translational Issues in Psychological Science";journal;"23322136, 23322179";"American Psychological Association";No;No;0,680;Q2;21;34;133;1495;305;128;1,78;43,97;71,55;0;United States;Northern America;"American Psychological Association";"2015, 2019-2025";"Applied Psychology (Q2); Psychology (miscellaneous) (Q2)";"Psychology" +8532;21101107570;"Applied Mathematics in Science and Engineering";journal;"27690911";"Routledge";Yes;No;0,679;Q1;16;45;164;1484;544;164;3,62;32,98;27,50;0;United Kingdom;Western Europe;"Routledge";"2022-2026";"Engineering (miscellaneous) (Q1); Applied Mathematics (Q2); Computer Science Applications (Q2)";"Computer Science; Engineering; Mathematics" +8533;13699;"Biology and Philosophy";journal;"15728404, 01693867";"Springer Science and Business Media B.V.";No;No;0,679;Q1;67;30;139;1950;283;139;1,52;65,00;35,56;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1986-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); History and Philosophy of Science (Q1); Philosophy (Q1)";"Agricultural and Biological Sciences; Arts and Humanities" +8534;20953;"Environmental Conservation";journal;"03768929, 14694387";"Cambridge University Press";No;No;0,679;Q1;108;40;107;2111;285;99;2,63;52,78;37,67;0;United Kingdom;Western Europe;"Cambridge University Press";"1974-2026";"Nature and Landscape Conservation (Q1); Health, Toxicology and Mutagenesis (Q2); Management, Monitoring, Policy and Law (Q2); Pollution (Q2); Water Science and Technology (Q2)";"Environmental Science" +8535;21101132465;"Grassland Research";journal;"27701743, 2097051X";"John Wiley and Sons Inc";Yes;No;0,679;Q1;9;36;89;2030;251;84;2,60;56,39;40,43;0;Australia;Pacific Region;"John Wiley and Sons Inc";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q2)";"Agricultural and Biological Sciences" +8536;21100788306;"Physical Review Accelerators and Beams";journal;"24699888";"American Physical Society";Yes;Yes;0,679;Q1;44;208;516;8341;967;513;1,96;40,10;18,18;0;United States;Northern America;"American Physical Society";"2016-2026";"Physics and Astronomy (miscellaneous) (Q1); Nuclear and High Energy Physics (Q2); Surfaces and Interfaces (Q2)";"Physics and Astronomy" +8537;16619;"Plant Production Science";journal;"13491008, 1343943X";"Taylor and Francis Ltd.";Yes;No;0,679;Q1;66;26;110;1192;312;110;2,60;45,85;32,12;0;Japan;Asiatic Region;"Taylor and Francis Ltd.";"1998-2026";"Agronomy and Crop Science (Q1)";"Agricultural and Biological Sciences" +8538;16907;"Research on Social Work Practice";journal;"10497315, 15527581";"SAGE Publications Inc.";No;No;0,679;Q1;82;166;225;8585;623;206;2,44;51,72;56,63;2;United States;Northern America;"SAGE Publications Inc.";"1991-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Psychology (miscellaneous) (Q2); Social Work (Q2)";"Psychology; Social Sciences" +8539;21101073600;"Transportation Safety and Environment";journal;"26316765, 26314428";"Oxford University Press";Yes;No;0,679;Q1;25;70;147;2832;641;145;3,61;40,46;28,19;0;United Kingdom;Western Europe;"Oxford University Press";"2019-2025";"Engineering (miscellaneous) (Q1); Control and Systems Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering" +8540;19900193253;"Behavioral Research in Accounting";journal;"15588009, 10504753";"American Accounting Association";No;No;0,679;Q2;36;12;34;893;63;34;1,83;74,42;51,52;0;United States;Northern America;"American Accounting Association";"2007-2025";"Accounting (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +8541;145617;"Cardiovascular Revascularization Medicine";journal;"18780938, 15538389";"Elsevier Inc.";No;No;0,679;Q2;50;338;996;8062;1263;648;1,24;23,85;18,82;2;United States;Northern America;"Elsevier Inc.";"2005-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +8542;21101146449;"PEC Innovation";journal;"27726282";"Elsevier B.V.";Yes;No;0,679;Q2;14;78;355;3100;832;352;2,31;39,74;65,63;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8543;21100855841;"Physical Review E";journal;"24700045, 24700053";"American Physical Society";No;No;0,679;Q2;277;1956;5130;106720;12464;5112;2,40;54,56;19,42;0;United States;Northern America;"American Physical Society";"1993-2004, 2009, 2012, 2016-2026";"Condensed Matter Physics (Q2); Statistical and Nonlinear Physics (Q2); Statistics and Probability (Q2)";"Mathematics; Physics and Astronomy" +8544;19781;"Scandinavian Journal of Rheumatology";journal;"15027732, 03009742";"Taylor and Francis Ltd.";No;No;0,679;Q2;90;86;273;1910;376;199;1,40;22,21;48,32;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1959-1962, 1964, 1972-2026";"Medicine (miscellaneous) (Q2); Rheumatology (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +8545;21100229246;"Agroecology and Sustainable Food Systems";journal;"21683565, 21683573";"Taylor and Francis Ltd.";No;No;0,678;Q1;67;106;216;6577;645;182;2,64;62,05;45,80;5;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Agronomy and Crop Science (Q1); Development (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Agricultural and Biological Sciences; Energy; Social Sciences" +8546;21100324710;"Egyptian Journal of Aquatic Research";journal;"16874285, 20903278";"National Institute of Oceanography and Fisheries";Yes;No;0,678;Q1;59;66;192;3395;741;192;3,95;51,44;35,96;0;Egypt;Africa/Middle East;"National Institute of Oceanography and Fisheries";"2012-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Aquatic Science (Q2); Oceanography (Q2); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +8547;19700166901;"Fungal Biology";journal;"18786146";"Elsevier B.V.";No;No;0,678;Q1;129;120;245;7652;849;244;3,12;63,77;45,06;0;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Ecology, Evolution, Behavior and Systematics (Q1); Infectious Diseases (Q2); Plant Science (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +8548;19600166403;"Journal of Balkan and Near Eastern Studies";journal;"19448953, 19448961";"Routledge";No;No;0,678;Q1;32;58;157;2454;241;156;1,36;42,31;37,80;2;United Kingdom;Western Europe;"Routledge";"2008-2026";"History (Q1); Political Science and International Relations (Q1)";"Arts and Humanities; Social Sciences" +8549;19900188114;"Journal of Human Development and Capabilities";journal;"19452837, 19452829";"Routledge";No;No;0,678;Q1;67;46;90;1678;239;81;1,81;36,48;55,56;2;United States;Northern America;"Routledge";"2009-2026";"Anthropology (Q1); Development (Q1)";"Social Sciences" +8550;20486;"Journal of Insect Conservation";journal;"15729753, 1366638X";"Springer Nature";No;No;0,678;Q1;80;93;269;5793;627;265;2,04;62,29;35,28;0;Switzerland;Western Europe;"Springer Nature";"1997-2026";"Animal Science and Zoology (Q1); Insect Science (Q1); Nature and Landscape Conservation (Q1); Ecology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +8551;19900189737;"Revista Latina de Comunicacion Social";journal;"11385820";"HISIN (History of Information Systems)";Yes;No;0,678;Q1;37;44;122;2395;404;121;3,17;54,43;43,80;0;Spain;Western Europe;"HISIN (History of Information Systems)";"2011-2027";"Communication (Q1)";"Social Sciences" +8552;21101071252;"Advances in Motivation Science";book series;"22150927, 22150919";"Elsevier Ltd";No;No;0,678;Q2;29;6;18;832;111;5;3,83;138,67;31,58;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2025";"Psychology (miscellaneous) (Q2)";"Psychology" +8553;15838;"Atmosphere";journal;"15983560, 20734433";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,678;Q2;88;1410;5491;77469;16831;5432;2,91;54,94;36,49;4;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Atmospheric Science (Q2); Environmental Science (miscellaneous) (Q2)";"Earth and Planetary Sciences; Environmental Science" +8554;21101049065;"International Journal of Interactive Multimedia and Artificial Intelligence";journal;"19891660";"Universidad Internacional de la Rioja";Yes;Yes;0,678;Q2;31;59;185;2648;717;173;5,12;44,88;35,86;0;Spain;Western Europe;"Universidad Internacional de la Rioja";"2019-2025";"Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Computer Vision and Pattern Recognition (Q2); Signal Processing (Q2); Statistics and Probability (Q2)";"Computer Science; Mathematics" +8555;15856;"Journal of Clinical Densitometry";journal;"10946950, 15590747";"Elsevier Inc.";No;No;0,678;Q2;88;65;183;2108;370;172;2,18;32,43;44,78;1;United States;Northern America;"Elsevier Inc.";"1998-2026";"Orthopedics and Sports Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +8556;21101241173;"NIHR Open Research";journal;"26334402";"F1000 Research Ltd";Yes;No;0,678;Q2;9;60;94;2667;201;94;1,83;44,45;60,18;0;United Kingdom;Western Europe;"F1000 Research Ltd";"2021-2026";"Epidemiology (Q2); Health Policy (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8557;21101039903;"Public Health in Practice";journal;"26665352";"Elsevier B.V.";Yes;No;0,678;Q2;23;118;334;4244;700;297;2,09;35,97;55,66;3;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8558;24848;"Critical Sociology";journal;"08969205, 15691632";"SAGE Publications Ltd";No;No;0,677;Q1;64;162;238;11415;700;205;2,59;70,46;36,36;5;United Kingdom;Western Europe;"SAGE Publications Ltd";"1971-1992, 1994-2026";"Sociology and Political Science (Q1)";"Social Sciences" +8559;3900148210;"Evidence and Policy";journal;"17442648, 17442656";"Policy Press";No;No;0,677;Q1;51;29;113;1489;347;109;2,94;51,34;54,78;0;United Kingdom;Western Europe;"Policy Press";"2006-2025";"Social Sciences (miscellaneous) (Q1); Cardiology and Cardiovascular Medicine (Q2); Orthopedics and Sports Medicine (Q2); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Social Sciences" +8560;5400152639;"IET Intelligent Transport Systems";journal;"17519578, 1751956X";"John Wiley & Sons Inc.";Yes;No;0,677;Q1;74;148;472;7352;1844;469;3,72;49,68;28,41;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2007-2026";"Law (Q1); Mechanical Engineering (Q1); Environmental Science (miscellaneous) (Q2); Transportation (Q2)";"Engineering; Environmental Science; Social Sciences" +8561;21100863819;"Journal of Integrated Pest Management";journal;"21557470";"Oxford University Press";Yes;No;0,677;Q1;47;45;92;2837;281;92;2,83;63,04;38,82;0;United Kingdom;Western Europe;"Oxford University Press";"2010-2026";"Agronomy and Crop Science (Q1); Insect Science (Q1); Management, Monitoring, Policy and Law (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +8562;17554;"Acta Neuropsychiatrica";journal;"16015215, 09242708";"Cambridge University Press";No;No;0,677;Q2;49;62;173;4333;371;157;2,16;69,89;40,53;0;United Kingdom;Western Europe;"Cambridge University Press";"1989-2004, 2006-2026";"Psychiatry and Mental Health (Q2); Biological Psychiatry (Q3)";"Medicine; Neuroscience" +8563;21101043806;"Chronic Diseases and Translational Medicine";journal;"2095882X";"John Wiley and Sons Inc";Yes;No;0,677;Q2;26;36;101;1704;244;85;2,38;47,33;47,41;0;United States;Northern America;"John Wiley and Sons Inc";"2018-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8564;15514;"Epilepsy Research";journal;"09201211, 18726844";"Elsevier B.V.";No;No;0,677;Q2;133;131;413;5326;1029;405;2,39;40,66;46,92;0;Netherlands;Western Europe;"Elsevier B.V.";"1987-2026";"Neurology (clinical) (Q2); Neurology (Q3)";"Medicine; Neuroscience" +8565;17487;"Folia Microbiologica";journal;"18749356, 00155632";"Springer Science and Business Media B.V.";No;No;0,677;Q2;69;220;261;14675;1011;261;3,67;66,70;42,73;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1957, 1959-2026";"Medicine (miscellaneous) (Q2); Microbiology (Q3)";"Immunology and Microbiology; Medicine" +8566;21100979302;"Health Science Reports";journal;"23988835";"John Wiley & Sons Inc.";Yes;No;0,677;Q2;32;1296;1998;55251;5520;1833;2,90;42,63;42,50;3;United States;Northern America;"John Wiley & Sons Inc.";"2018-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8567;19600166416;"Cytoskeleton";journal;"19493592, 19493584";"Wiley-Liss Inc.";No;No;0,677;Q3;99;150;153;7639;228;125;1,46;50,93;45,56;0;United States;Northern America;"Wiley-Liss Inc.";"2010-2026";"Cell Biology (Q3); Structural Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +8568;21288;"Acta Tropica";journal;"18736254, 0001706X";"Elsevier B.V.";No;No;0,676;Q1;126;417;1117;22671;3069;1104;2,63;54,37;44,25;3;Netherlands;Western Europe;"Elsevier B.V.";"1945-2026";"Insect Science (Q1); Veterinary (miscellaneous) (Q1); Infectious Diseases (Q2); Parasitology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine; Veterinary" +8569;21101183486;"Archives of Rehabilitation Research and Clinical Translation";journal;"25901095";"Elsevier Inc.";Yes;No;0,676;Q1;21;106;201;4300;488;201;2,10;40,57;52,33;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Rehabilitation (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Medicine" +8570;21101093327;"Asian Journal of Sport and Exercise Psychology";journal;"26672391";"KeAi Communications Co.";Yes;Yes;0,676;Q1;13;14;77;646;216;69;2,53;46,14;16,67;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2025";"Social Sciences (miscellaneous) (Q1); Applied Psychology (Q2); Cognitive Neuroscience (Q2)";"Neuroscience; Psychology; Social Sciences" +8571;21100803392;"Cross Cultural and Strategic Management";journal;"20595794";"Emerald Group Publishing Ltd.";No;No;0,676;Q1;58;44;100;4403;385;99;3,56;100,07;42,75;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2016-2026";"Cultural Studies (Q1); Sociology and Political Science (Q1); Business and International Management (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Social Sciences" +8572;5700168403;"Global Crime";journal;"17440572, 17440580";"Routledge";No;No;0,676;Q1;40;23;47;1432;122;46;2,92;62,26;31,58;0;United Kingdom;Western Europe;"Routledge";"2007-2026";"Law (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8573;21101181905;"Grass Research";journal;"27691675";"Maximum Academic Press";Yes;No;0,676;Q1;11;26;64;1530;193;64;3,13;58,85;43,54;0;United States;Northern America;"Maximum Academic Press";"2021-2025";"Horticulture (Q1); Plant Science (Q2)";"Agricultural and Biological Sciences" +8574;5800207918;"International Journal of Listening";journal;"10904018, 1932586X";"Taylor and Francis Ltd.";No;No;0,676;Q1;36;19;53;1004;137;51;2,29;52,84;58,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Communication (Q1); Linguistics and Language (Q1); Applied Psychology (Q2)";"Psychology; Social Sciences" +8575;5800170969;"Journal of Corporate Law Studies";journal;"17578426, 14735970";"Taylor and Francis Ltd.";No;No;0,676;Q1;16;20;68;871;129;66;1,97;43,55;48,28;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Law (Q1)";"Social Sciences" +8576;21100897951;"Journal of Interactive Media in Education";journal;"1365893X";"Ubiquity Press";Yes;Yes;0,676;Q1;23;18;40;883;139;35;3,23;49,06;47,17;0;United Kingdom;Western Europe;"Ubiquity Press";"2018-2025";"Communication (Q1); Computer Networks and Communications (Q2); Education (Q2)";"Computer Science; Social Sciences" +8577;26966;"Journal of Photochemistry and Photobiology A: Chemistry";journal;"18732666, 10106030";"Elsevier B.V.";No;No;0,676;Q1;184;575;2035;30960;9924;2031;5,16;53,84;38,24;0;Netherlands;Western Europe;"Elsevier B.V.";"1987-2026";"Physics and Astronomy (miscellaneous) (Q1); Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)";"Chemical Engineering; Chemistry; Physics and Astronomy" +8578;144642;"Managerial Auditing Journal";journal;"02686902";"Emerald Publishing";No;No;0,676;Q1;83;51;123;3790;551;122;3,39;74,31;40,00;0;United Kingdom;Western Europe;"Emerald Publishing";"1986-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Accounting (Q2); Business, Management and Accounting (miscellaneous) (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +8579;145138;"Sexuality and Culture";journal;"10955143";"Springer New York";No;No;0,676;Q1;48;210;364;13246;945;356;2,35;63,08;62,13;2;United States;Northern America;"Springer New York";"2003, 2005-2026";"Cultural Studies (Q1); Gender Studies (Q1)";"Social Sciences" +8580;24720;"Annals of Global Analysis and Geometry";journal;"15729060, 0232704X";"Springer Netherlands";No;No;0,676;Q2;41;43;173;1036;131;173;0,72;24,09;14,71;0;Netherlands;Western Europe;"Springer Netherlands";"1983-2026";"Analysis (Q2); Geometry and Topology (Q2)";"Mathematics" +8581;16870;"Biochemistry and Cell Biology";journal;"08298211, 12086002";"National Research Council of Canada";No;No;0,676;Q2;107;81;152;3798;360;145;2,20;46,89;48,56;0;Canada;Northern America;"National Research Council of Canada";"1986-2026";"Biochemistry (Q2); Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +8582;16829;"Biochimica et Biophysica Acta - General Subjects";journal;"18728006, 03044165";"Elsevier B.V.";No;No;0,676;Q2;194;132;434;9225;1306;431;2,99;69,89;42,43;0;Netherlands;Western Europe;"Elsevier B.V.";"1956-1957, 1959, 1961, 1964-2026";"Biochemistry (Q2); Biophysics (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +8583;7200153154;"Cardiology Journal";journal;"1898018X, 18975593";"Via Medica";Yes;No;0,676;Q2;50;99;418;2529;715;284;1,67;25,55;31,15;0;Poland;Eastern Europe;"Via Medica";"2006-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +8584;21038;"Clinical Transplantation";journal;"13990012, 09020063";"Wiley-Blackwell Publishing Ltd";No;No;0,676;Q2;95;344;986;10370;1939;903;1,81;30,15;42,21;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1989-2026";"Transplantation (Q2)";"Medicine" +8585;21100423919;"Energy Technology";journal;"21944296, 21944288";"Wiley - VCH Verlag GmbH & CO. KGaA";No;No;0,676;Q2;87;466;1312;29673;5059;1306;3,72;63,68;28,77;2;Germany;Western Europe;"Wiley - VCH Verlag GmbH & CO. KGaA";"2013-2026";"Energy (miscellaneous) (Q2)";"Energy" +8586;21100976153;"IEEE Transactions on Molecular, Biological, and Multi-Scale Communications";journal;"23327804";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,676;Q2;29;57;139;2383;349;130;2,64;41,81;25,27;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015-2026";"Bioengineering (Q2); Biotechnology (Q2); Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Modeling and Simulation (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Computer Science; Engineering; Mathematics" +8587;22981;"Journal of Cardiovascular Pharmacology";journal;"15334023, 01602446";"Lippincott Williams and Wilkins";No;No;0,676;Q2;113;140;471;5102;977;412;2,09;36,44;41,96;0;United States;Northern America;"Lippincott Williams and Wilkins";"1979-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +8588;21472;"Journal of Teaching in Physical Education";journal;"02735024, 15432769";"Human Kinetics Publishers Inc.";No;No;0,676;Q2;76;75;230;3803;516;227;2,05;50,71;43,12;1;United States;Northern America;"Human Kinetics Publishers Inc.";"1986, 1992-1993, 1996-2026";"Education (Q2); Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)";"Health Professions; Medicine; Social Sciences" +8589;21934;"Paediatric Anaesthesia";journal;"11555645, 14609592";"John Wiley and Sons Inc";No;No;0,676;Q2;106;168;583;3371;1044;448;1,32;20,07;49,85;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1991-2026";"Anesthesiology and Pain Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +8590;12375;"Advances in Space Research";journal;"02731177, 18791948";"Elsevier Ltd";No;No;0,675;Q1;131;1178;2236;59512;7741;2212;3,51;50,52;26,97;1;United Kingdom;Western Europe;"Elsevier Ltd";"1981-2026";"Aerospace Engineering (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Astronomy and Astrophysics (Q2); Atmospheric Science (Q2); Geophysics (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Engineering; Physics and Astronomy" +8591;27743;"Forensic Science International";journal;"03790738, 18726283";"Elsevier Ireland Ltd";Yes;No;0,675;Q1;152;250;826;12126;2235;810;2,65;48,50;47,16;4;Ireland;Western Europe;"Elsevier Ireland Ltd";"1978-2026";"Law (Q1); Pathology and Forensic Medicine (Q2)";"Medicine; Social Sciences" +8592;4700152207;"International Communication Gazette";journal;"17480485, 17480493";"SAGE Publications Ltd";No;No;0,675;Q1;56;54;111;3026;270;109;2,42;56,04;34,82;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1961, 1966, 1996-1997, 2003-2004, 2006-2026";"Communication (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8593;4700152804;"Internet Reference Services Quarterly";journal;"15404749, 10875301";"Routledge";No;No;0,675;Q1;24;25;57;821;276;41;4,79;32,84;45,16;0;United States;Northern America;"Routledge";"1996-2002, 2004-2018, 2020-2026";"Library and Information Sciences (Q1); E-learning (Q2)";"Social Sciences" +8594;4700152786;"Journal of Political Marketing";journal;"15377857, 15377865";"Routledge";No;No;0,675;Q1;37;37;57;2793;179;54;2,88;75,49;33,72;1;United States;Northern America;"Routledge";"2002-2026";"Sociology and Political Science (Q1); Marketing (Q2)";"Business, Management and Accounting; Social Sciences" +8595;12272;"Journal of Rehabilitation Medicine";journal;"16512081, 16501977";"Medical Journals Sweden AB";Yes;No;0,675;Q1;121;94;315;3552;727;298;2,12;37,79;49,45;0;Sweden;Western Europe;"Medical Journals Sweden AB";"2001-2026";"Rehabilitation (Q1); Medicine (miscellaneous) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)";"Health Professions; Medicine" +8596;22340;"Research on Language and Social Interaction";journal;"08351813, 15327973";"Routledge";No;No;0,675;Q1;82;22;55;1180;134;54;2,84;53,64;59,26;0;United States;Northern America;"Routledge";"1987-1991, 1993-2025";"Communication (Q1); Linguistics and Language (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +8597;19700177337;"Social Network Analysis and Mining";journal;"18695450, 18695469";"Springer-Verlag Wien";No;No;0,675;Q1;61;112;560;6328;2558;560;4,84;56,50;29,94;1;Austria;Western Europe;"Springer-Verlag Wien";"2011-2026";"Communication (Q1); Media Technology (Q1); Computer Science Applications (Q2); Human-Computer Interaction (Q2); Information Systems (Q2)";"Computer Science; Engineering; Social Sciences" +8598;14410;"Acta Paediatrica, International Journal of Paediatrics";journal;"08035253, 16512227";"Wiley-Blackwell";No;No;0,675;Q2;144;498;1248;12247;2182;968;1,73;24,59;58,85;3;United States;Northern America;"Wiley-Blackwell";"1921-1985, 1990, 1992-2026";"Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +8599;110291;"Applied Biochemistry and Biotechnology";journal;"02732289, 15590291";"Springer";No;No;0,675;Q2;147;408;1290;22660;5668;1288;4,30;55,54;41,05;1;United States;Northern America;"Springer";"1981-2026";"Applied Microbiology and Biotechnology (Q2); Biochemistry (Q2); Biotechnology (Q2); Environmental Engineering (Q2); Medicine (miscellaneous) (Q2); Bioengineering (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Environmental Science; Immunology and Microbiology; Medicine" +8600;4000148109;"Breast Care";journal;"16613791, 16613805";"S. Karger AG";Yes;No;0,675;Q2;52;67;170;1937;352;154;2,14;28,91;49,53;0;Switzerland;Western Europe;"S. Karger AG";"2006-2026";"Surgery (Q2); Oncology (Q3)";"Medicine" +8601;14745;"International Journal of Clinical Practice";journal;"17421241, 13685031";"John Wiley and Sons Ltd";Yes;No;0,675;Q2;124;202;511;7822;1440;511;2,17;38,72;42,73;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1997-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8602;21101024236;"Journal of Theoretical Social Psychology";journal;"24750387";"John Wiley and Sons Inc";No;No;0,675;Q2;20;10;12;665;27;12;1,11;66,50;41,18;0;United States;Northern America;"John Wiley and Sons Inc";"2017-2025";"Social Psychology (Q2)";"Psychology" +8603;21100200809;"Middle East Current Psychiatry";journal;"20905408, 20905416";"Lippincott Williams and Wilkins Ltd.";Yes;Yes;0,675;Q2;24;111;320;4652;829;312;2,81;41,91;54,40;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2011-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +8604;21100889437;"Molecular Omics";journal;"25154184";"Royal Society of Chemistry";No;No;0,675;Q2;31;43;197;2902;540;191;2,41;67,49;42,58;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2018-2026";"Biochemistry (Q2); Genetics (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +8605;21100463862;"Parasite Epidemiology and Control";journal;"24056731";"Elsevier Ltd";Yes;No;0,675;Q2;31;56;140;2719;417;139;2,68;48,55;40,84;1;United Kingdom;Western Europe;"Elsevier Ltd";"2016-2026";"Epidemiology (Q2); Infectious Diseases (Q2); Parasitology (Q2)";"Immunology and Microbiology; Medicine" +8606;21101390796;"Petroleum Reservoir Evaluation and Development";trade journal;"20951426";"Editorial Board of Petroleum Reservoir Evaluation and Development";No;No;0,675;Q2;13;122;308;3673;688;308;2,65;30,11;30,06;0;China;Asiatic Region;"Editorial Board of Petroleum Reservoir Evaluation and Development";"2022-2026";"Economic Geology (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2)";"Earth and Planetary Sciences; Energy" +8607;19700182697;"Risk Management and Healthcare Policy";journal;"11791594";"Dove Medical Press Ltd";Yes;No;0,675;Q2;58;310;719;12459;1916;687;2,65;40,19;49,46;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8608;21100894550;"Rural Special Education Quarterly";journal;"21688605, 87568705";"SAGE Publications Ltd";No;No;0,675;Q2;23;24;64;928;132;54;1,74;38,67;83,58;0;United States;Northern America;"SAGE Publications Ltd";"1987, 2003, 2011, 2015-2026";"Development (Q2); Education (Q2)";"Social Sciences" +8609;21100239652;"International Conference for High Performance Computing, Networking, Storage and Analysis, SC";conference and proceedings;"21674337, 21674329";"IEEE Computer Society";No;No;0,675;-;82;0;298;0;1364;288;3,88;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012-2017, 2019-2024";"Computer Networks and Communications; Computer Science Applications; Hardware and Architecture; Software";"Computer Science" +8610;19900193674;"Applied Ontology";journal;"18758533, 15705838";"SAGE Publications Ltd";No;No;0,674;Q1;37;1;45;39;221;43;1,85;39,00;100,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2025";"Linguistics and Language (Q1); Computer Science (miscellaneous) (Q2)";"Computer Science; Social Sciences" +8611;16511;"Australian Journal of Public Administration";journal;"14678500, 03136647";"Wiley-Blackwell Publishing Ltd";No;No;0,674;Q1;60;61;115;3686;384;113;3,01;60,43;47,45;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1937-2026";"Sociology and Political Science (Q1); Public Administration (Q2)";"Social Sciences" +8612;17300154737;"Banach Journal of Mathematical Analysis";journal;"26622033, 17358787";"Springer International Publishing";Yes;No;0,674;Q1;30;71;229;2070;266;229;1,21;29,15;29,11;0;Switzerland;Western Europe;"Springer International Publishing";"2007-2026";"Algebra and Number Theory (Q1); Analysis (Q2)";"Mathematics" +8613;21100828958;"Capital Markets Law Journal";journal;"17507227, 17507219";"Oxford University Press";No;No;0,674;Q1;14;28;78;3071;114;72;1,65;109,68;36,36;1;United Kingdom;Western Europe;"Oxford University Press";"2006, 2014-2026";"Law (Q1); Finance (Q2)";"Economics, Econometrics and Finance; Social Sciences" +8614;22608;"Journal of Zoology";journal;"09528369, 14697998";"Wiley-Blackwell";No;No;0,674;Q1;119;117;261;8356;560;258;2,04;71,42;32,90;1;United States;Northern America;"Wiley-Blackwell";"1830, 1833-1835, 1837-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +8615;12441;"Open Systems and Information Dynamics";journal;"17937191, 12301612";"World Scientific";No;No;0,674;Q1;37;17;66;571;105;61;1,30;33,59;15,38;0;Singapore;Asiatic Region;"World Scientific";"1992-1995, 1997-2025";"Computational Mechanics (Q1); Fluid Flow and Transfer Processes (Q1); Information Systems (Q2); Mathematical Physics (Q2); Mechanics of Materials (Q2); Physical and Theoretical Chemistry (Q2); Statistical and Nonlinear Physics (Q2); Statistics and Probability (Q2)";"Chemical Engineering; Chemistry; Computer Science; Engineering; Mathematics; Physics and Astronomy" +8616;21787;"American Journal of Tropical Medicine and Hygiene";journal;"14761645, 00029637";"American Society of Tropical Medicine and Hygiene";No;No;0,674;Q2;178;514;1460;14928;2582;1361;1,74;29,04;42,26;6;United States;Northern America;"American Society of Tropical Medicine and Hygiene";"1945-2026";"Infectious Diseases (Q2); Medicine (miscellaneous) (Q2); Parasitology (Q2); Virology (Q2)";"Immunology and Microbiology; Medicine" +8617;19600161815;"Australian Journal of Environmental Education";journal;"2049775X, 08140626";"Cambridge University Press";Yes;No;0,674;Q2;33;88;136;4509;395;129;2,16;51,24;56,07;0;United Kingdom;Western Europe;"Cambridge University Press";"1984-1999, 2001-2026";"Education (Q2); Environmental Science (miscellaneous) (Q2)";"Environmental Science; Social Sciences" +8618;21100803571;"Digital Policy, Regulation and Governance";journal;"23985038, 23985046";"Emerald Publishing";No;No;0,674;Q2;48;61;108;4163;638;105;6,56;68,25;31,39;0;United Kingdom;Western Europe;"Emerald Publishing";"2017-2026";"Computer Networks and Communications (Q2); Information Systems (Q2); Information Systems and Management (Q2); Management Information Systems (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences" +8619;21101024227;"European Journal of Trauma and Dissociation";journal;"24687499";"Elsevier Masson s.r.l.";No;No;0,674;Q2;15;118;205;6728;483;189;2,10;57,02;53,83;1;France;Western Europe;"Elsevier Masson s.r.l.";"2017-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +8620;27975;"General Relativity and Gravitation";journal;"00017701, 15729532";"Springer New York";No;No;0,674;Q2;109;166;437;10055;1195;427;2,77;60,57;22,79;0;United States;Northern America;"Springer New York";"1970-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +8621;14315;"Journal of Developmental and Physical Disabilities";journal;"1056263X, 15733580";"Springer New York";No;No;0,674;Q2;58;82;159;4098;470;159;2,64;49,98;68,29;1;United States;Northern America;"Springer New York";"1991-2026";"Developmental and Educational Psychology (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Psychology" +8622;21101039771;"Journal of Patient Experience";journal;"23743743, 23743735";"SAGE Publications Inc.";Yes;No;0,674;Q2;29;162;425;4139;1033;417;2,16;25,55;61,69;0;United States;Northern America;"SAGE Publications Inc.";"2014-2026";"Health Policy (Q2); Health (social science) (Q2); Leadership and Management (Q2)";"Medicine; Nursing; Social Sciences" +8623;21100784717;"Quantitative Imaging in Medicine and Surgery";journal;"22234292, 22234306";"AME Publishing Company";Yes;No;0,674;Q2;57;1032;2041;35517;5306;1712;2,48;34,42;42,95;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2016-2026";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +8624;28245;"Solar Physics";journal;"00380938, 1573093X";"Springer Netherlands";No;No;0,674;Q2;136;178;458;10059;960;452;2,14;56,51;24,61;0;Netherlands;Western Europe;"Springer Netherlands";"1967-2026";"Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +8625;19194;"Surgery Today";journal;"14362813, 09411291";"Springer";No;No;0,674;Q2;81;280;555;7884;1227;535;2,29;28,16;14,76;0;Singapore;Asiatic Region;"Springer";"1992-2026";"Medicine (miscellaneous) (Q2); Surgery (Q2)";"Medicine" +8626;21101107569;"Sustainable Environment";journal;"27658511";"Taylor and Francis Ltd.";Yes;No;0,674;Q2;33;91;157;7276;692;157;4,22;79,96;34,32;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2021-2026";"Environmental Science (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Environmental Science; Medicine" +8627;13158;"Technology in Cancer Research and Treatment";journal;"15330338, 15330346";"SAGE Publications Inc.";Yes;No;0,674;Q2;78;154;666;6828;1943;651;2,86;44,34;40,62;0;United States;Northern America;"SAGE Publications Inc.";"2002-2026";"Medicine (miscellaneous) (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8628;11300153728;"Zeitschrift fur Evidenz, Fortbildung und Qualitat im Gesundheitswesen";journal;"22120289, 18659217";"Elsevier GmbH";No;No;0,674;Q2;39;89;304;2469;646;291;1,57;27,74;60,89;0;Germany;Western Europe;"Elsevier GmbH";"2008-2026";"Education (Q2); Health Policy (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Social Sciences" +8629;17500155125;"Emotion, Space and Society";journal;"17554586, 18780040";"Elsevier B.V.";No;No;0,673;Q1;58;46;97;2561;292;92;2,73;55,67;63,20;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Geography, Planning and Development (Q1); Experimental and Cognitive Psychology (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +8630;21101100111;"European Journal of STEM Education";journal;"24684368";"Lectito";Yes;No;0,673;Q1;13;38;43;2363;168;43;3,63;62,18;47,24;0;Netherlands;Western Europe;"Lectito";"2019-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +8631;21100789945;"International Journal of Gastronomy and Food Science";journal;"18784518, 1878450X";"Elsevier B.V.";No;No;0,673;Q1;50;293;609;16004;2917;603;4,40;54,62;49,11;0;Netherlands;Western Europe;"Elsevier B.V.";"2012, 2014-2026";"Cultural Studies (Q1); Food Science (Q2)";"Agricultural and Biological Sciences; Social Sciences" +8632;57810;"Journal of Cultural Heritage";journal;"12962074";"Elsevier Masson s.r.l.";No;No;0,673;Q1;98;232;563;11376;2408;558;4,27;49,03;51,34;2;France;Western Europe;"Elsevier Masson s.r.l.";"2000-2026";"Anthropology (Q1); Archeology (arts and humanities) (Q1); Conservation (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); History (Q1); Chemistry (miscellaneous) (Q2); Computer Science Applications (Q2); Materials Science (miscellaneous) (Q2); Spectroscopy (Q2)";"Arts and Humanities; Chemistry; Computer Science; Economics, Econometrics and Finance; Materials Science; Social Sciences" +8633;21100902910;"Journal of Functional Morphology and Kinesiology";journal;"24115142";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,673;Q1;38;482;564;23944;1709;552;2,80;49,68;32,12;2;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2026";"Anatomy (Q1); Histology (Q2); Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rheumatology (Q2)";"Health Professions; Medicine" +8634;21101141748;"Urban Science";journal;"24138851";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,673;Q1;36;544;480;36795;1976;478;4,02;67,64;38,82;4;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017, 2019-2026";"Geography, Planning and Development (Q1); Urban Studies (Q1); Environmental Science (miscellaneous) (Q2); Pollution (Q2); Waste Management and Disposal (Q2)";"Environmental Science; Social Sciences" +8635;24318;"Dermatitis";journal;"17103568, 21625220";"Mary Ann Liebert Inc.";No;No;0,673;Q2;73;294;456;6559;732;262;1,45;22,31;54,29;1;United States;Northern America;"Mary Ann Liebert Inc.";"2001, 2004-2026";"Dermatology (Q2); Immunology and Allergy (Q3)";"Medicine" +8636;28310;"European Journal of Gastroenterology and Hepatology";journal;"0954691X, 14735687";"Lippincott Williams and Wilkins";No;No;0,673;Q2;121;209;573;6924;1155;528;1,98;33,13;42,15;0;United States;Northern America;"Lippincott Williams and Wilkins";"1989-2026";"Gastroenterology (Q2); Hepatology (Q2)";"Medicine" +8637;28351;"Gastrointestinal Endoscopy Clinics of North America";journal;"10525157, 15581950";"W.B. Saunders";No;No;0,673;Q2;69;70;193;3782;434;157;1,74;54,03;31,21;0;United States;Northern America;"W.B. Saunders";"1991-2026";"Gastroenterology (Q2)";"Medicine" +8638;19200156950;"Journal of Enterprising Communities";journal;"17506204";"Emerald Group Publishing Ltd.";No;No;0,673;Q2;50;121;184;11184;984;178;5,60;92,43;40,63;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007-2026";"Business and International Management (Q2); Economics and Econometrics (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +8639;28994;"Journal of Evolutionary Economics";journal;"09369937, 14321386";"Springer New York";No;No;0,673;Q2;89;32;126;2068;344;124;2,92;64,63;16,67;1;Germany;Western Europe;"Springer New York";"1991-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +8640;21101039848;"Mathematics in Engineering";journal;"26403501";"American Institute of Mathematical Sciences";Yes;Yes;0,673;Q2;17;29;160;1002;216;159;1,14;34,55;29,69;0;United States;Northern America;"American Institute of Mathematical Sciences";"2019-2026";"Analysis (Q2); Applied Mathematics (Q2); Mathematical Physics (Q2)";"Mathematics" +8641;29859;"Smart Materials and Structures";journal;"09641726, 1361665X";"IOP Publishing Ltd.";No;No;0,673;Q2;192;469;1360;25291;5342;1352;3,78;53,93;27,13;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1992-2025";"Atomic and Molecular Physics, and Optics (Q2); Civil and Structural Engineering (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2); Signal Processing (Q2)";"Computer Science; Engineering; Materials Science; Physics and Astronomy" +8642;18571;"Fungal Genetics and Biology";journal;"10960937, 10871845";"Academic Press Inc.";No;No;0,673;Q3;135;59;158;4107;428;158;2,91;69,61;42,43;1;United States;Northern America;"Academic Press Inc.";"1996-2026";"Genetics (Q3); Microbiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +8643;21100444312;"Biology Open";journal;"20466390";"Company of Biologists Ltd";Yes;No;0,672;Q1;64;169;463;9411;728;410;1,41;55,69;48,18;0;United Kingdom;Western Europe;"Company of Biologists Ltd";"2012-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +8644;21101147579;"Feminist Anthropology";journal;"26437961";"John Wiley and Sons Inc";No;No;0,672;Q1;16;33;83;1544;186;74;1,96;46,79;90,63;0;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Anthropology (Q1); Gender Studies (Q1)";"Social Sciences" +8645;18565;"Functional Plant Biology";journal;"14454408, 14454416";"CSIRO Publishing";No;No;0,672;Q1;148;94;296;5357;889;294;3,07;56,99;42,86;0;Australia;Pacific Region;"CSIRO Publishing";"2002-2026";"Agronomy and Crop Science (Q1); Plant Science (Q2)";"Agricultural and Biological Sciences" +8646;21100202907;"International Journal of Communication";journal;"19328036";"University of Southern California";Yes;Yes;0,672;Q1;76;150;854;8368;1764;854;1,84;55,79;55,56;0;United States;Northern America;"University of Southern California";"2011-2026";"Communication (Q1)";"Social Sciences" +8647;21100867943;"International Journal of Ethics and Systems";journal;"25149369";"Emerald Group Publishing Ltd.";No;No;0,672;Q1;43;186;154;17022;937;147;5,43;91,52;39,83;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2018-2026";"Philosophy (Q1); Economics and Econometrics (Q2)";"Arts and Humanities; Economics, Econometrics and Finance" +8648;18282;"Irish Veterinary Journal";journal;"03680762, 20460481";"BioMed Central Ltd";Yes;No;0,672;Q1;44;32;76;1872;226;70;2,31;58,50;44,79;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1973-1979, 1996-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +8649;18300156719;"Journal of Building Performance Simulation";journal;"19401507, 19401493";"Taylor and Francis Ltd.";No;No;0,672;Q1;58;69;138;3456;453;135;3,11;50,09;28,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Architecture (Q1); Building and Construction (Q2); Computer Science Applications (Q2); Modeling and Simulation (Q2)";"Computer Science; Engineering; Mathematics" +8650;21100824895;"Journal of Energy and Natural Resources Law";journal;"23764538, 02646811";"Taylor and Francis Ltd.";No;No;0,672;Q1;23;38;89;1959;218;65;2,73;51,55;46,27;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Law (Q1); Energy (miscellaneous) (Q2)";"Energy; Social Sciences" +8651;21100939605;"Journal of Language and Sexuality";journal;"22113770, 22113789";"John Benjamins Publishing Company";No;No;0,672;Q1;11;10;33;457;83;33;0,85;45,70;58,33;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2014, 2019-2026";"Anthropology (Q1); Gender Studies (Q1); Linguistics and Language (Q1)";"Social Sciences" +8652;21101172261;"Journalism and Media";journal;"26735172";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,672;Q1;23;205;242;11620;850;239;3,27;56,68;48,47;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Arts and Humanities (miscellaneous) (Q1); Linguistics and Language (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +8653;18103;"Sociological Quarterly";journal;"00380253, 15338525";"Taylor and Francis Ltd.";No;No;0,672;Q1;80;44;94;3441;192;93;2,08;78,20;45,98;1;United States;Northern America;"Taylor and Francis Ltd.";"1960-2026";"Sociology and Political Science (Q1)";"Social Sciences" +8654;19676;"Southern California Law Review";journal;"00383910";"University of Southern California";No;No;0,672;Q1;45;35;86;8823;72;85;0,77;252,09;43,90;0;United States;Northern America;"University of Southern California";"1973-1979, 1981-1982, 1985-1988, 1991-1992, 1996-2025";"Law (Q1)";"Social Sciences" +8655;18375;"Synthetic Metals";journal;"03796779";"Elsevier B.V.";No;No;0,672;Q1;161;143;603;8998;2749;600;4,76;62,92;31,92;0;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Mechanical Engineering (Q1); Metals and Alloys (Q1); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +8656;16756;"Acta Histochemica";journal;"00651281, 16180372";"Elsevier GmbH";No;No;0,672;Q2;65;48;225;2439;663;223;3,07;50,81;51,17;0;Germany;Western Europe;"Elsevier GmbH";"1954-2026";"Histology (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8657;21100900376;"Energy, Ecology and Environment";journal;"23637692, 23638338";"Joint Center on Global Change and Earth System Science of the University of Maryland and Beijing Normal University";No;No;0,672;Q2;41;60;119;5292;518;117;4,59;88,20;32,35;1;United States;Northern America;"Joint Center on Global Change and Earth System Science of the University of Maryland and Beijing Normal University";"2016-2026";"Ecology (Q2); Energy (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)";"Energy; Environmental Science" +8658;21101248937;"Frontiers in Transplantation";journal;"28132440";"Frontiers Media SA";Yes;No;0,672;Q2;12;65;205;3029;427;190;2,15;46,60;37,99;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Surgery (Q2); Immunology (Q3)";"Immunology and Microbiology; Medicine" +8659;17600154910;"Global Business Review";journal;"09730664, 09721509";"Sage Publications India Pvt. Ltd";No;No;0,672;Q2;58;167;576;11485;2330;574;3,84;68,77;38,87;3;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2000-2026";"Business and International Management (Q2)";"Business, Management and Accounting" +8660;4200151515;"Hormones";journal;"11093099, 25208721";"Springer Science and Business Media Deutschland GmbH";No;No;0,672;Q2;64;151;260;6457;572;231;2,22;42,76;51,33;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2026";"Medicine (miscellaneous) (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +8661;26568;"International Journal of Cosmetic Science";journal;"01425463, 14682494";"Wiley-Blackwell Publishing Ltd";No;No;0,672;Q2;88;129;231;5439;768;223;2,83;42,16;51,06;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1979-2026";"Chemistry (miscellaneous) (Q2); Colloid and Surface Chemistry (Q2); Dermatology (Q2); Drug Discovery (Q2); Pharmaceutical Science (Q2); Aging (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +8662;22844;"International Review of Retail, Distribution and Consumer Research";journal;"09593969, 14664402";"Routledge";No;No;0,672;Q2;58;53;91;4580;418;86;4,70;86,42;46,10;0;United Kingdom;Western Europe;"Routledge";"1990-2026";"Business and International Management (Q2); Economics and Econometrics (Q2); Marketing (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +8663;22733;"Journal of African Economies";journal;"09638024, 14643723";"Oxford University Press";No;No;0,672;Q2;64;27;106;1230;182;101;1,61;45,56;20,34;8;United Kingdom;Western Europe;"Oxford University Press";"1992-2026";"Development (Q2); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +8664;21100446510;"Journal of Humanitarian Logistics and Supply Chain Management";journal;"20426747, 20426755";"Emerald Publishing";Yes;Yes;0,672;Q2;42;47;79;3312;379;75;5,04;70,47;47,79;0;United Kingdom;Western Europe;"Emerald Publishing";"2011-2026";"Management Information Systems (Q2); Management Science and Operations Research (Q2)";"Business, Management and Accounting; Decision Sciences" +8665;17979;"Medical and Biological Engineering and Computing";journal;"17410444, 01400118";"Springer Science and Business Media Deutschland GmbH";No;No;0,672;Q2;120;269;706;12763;2841;703;4,14;47,45;32,93;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1977-2026";"Biomedical Engineering (Q2); Computer Science Applications (Q2)";"Computer Science; Engineering" +8666;21100202955;"Documenta Praehistorica";journal;"18542492, 1408967X";"University of Ljubljana Press";Yes;Yes;0,671;Q1;27;9;73;812;79;72;1,00;90,22;50,00;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2009-2026";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +8667;64975;"Environmental Archaeology";journal;"14614103, 17496314";"Taylor and Francis Ltd.";No;No;0,671;Q1;39;85;144;7014;242;140;1,59;82,52;47,88;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981, 2002-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Environmental Science (miscellaneous) (Q2)";"Arts and Humanities; Environmental Science; Social Sciences" +8668;145568;"European Journal on Criminal Policy and Research";journal;"09281371, 15729869";"Springer Science and Business Media B.V.";No;No;0,671;Q1;48;74;106;5316;348;103;3,54;71,84;53,24;6;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1993-2001, 2004-2026";"Law (Q1)";"Social Sciences" +8669;21100443321;"Evolution Equations and Control Theory";journal;"21632480, 21632472";"American Institute of Mathematical Sciences";No;No;0,671;Q1;28;74;237;2464;359;237;1,34;33,30;22,15;0;United States;Northern America;"American Institute of Mathematical Sciences";"2012-2026";"Control and Optimization (Q1); Applied Mathematics (Q2); Modeling and Simulation (Q2)";"Mathematics" +8670;21101152851;"Frontiers in Animal Science";journal;"26736225";"Frontiers Media SA";Yes;No;0,671;Q1;25;207;416;13262;1302;394;2,77;64,07;40,81;3;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +8671;21100890584;"Glass Structures and Engineering";journal;"23635150, 23635142";"Springer International Publishing AG";No;No;0,671;Q1;23;27;112;876;210;103;1,67;32,44;29,11;0;Switzerland;Western Europe;"Springer International Publishing AG";"2016-2026";"Architecture (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Engineering" +8672;13318;"Hastings Center Report";journal;"1552146X, 00930334";"Wiley-Blackwell";No;No;0,671;Q1;80;64;243;1897;455;162;1,95;29,64;49,32;1;United States;Northern America;"Wiley-Blackwell";"1971-2026";"Issues, Ethics and Legal Aspects (Q1); Philosophy (Q1); Health Policy (Q2); Health (social science) (Q2)";"Arts and Humanities; Medicine; Nursing; Social Sciences" +8673;20115;"International Journal of Food Science and Technology";journal;"09505423, 13652621";"Oxford University Press";Yes;No;0,671;Q1;134;340;2252;18387;8668;2215;3,64;54,08;46,45;0;United Kingdom;Western Europe;"Oxford University Press";"1966-2026";"Industrial and Manufacturing Engineering (Q1); Food Science (Q2)";"Agricultural and Biological Sciences; Engineering" +8674;19294;"Journal of Scheduling";journal;"10946136, 10991425";"Springer";No;No;0,671;Q1;72;48;115;2037;250;110;1,76;42,44;24,11;0;United States;Northern America;"Springer";"1998-2026";"Engineering (miscellaneous) (Q1); Artificial Intelligence (Q2); Management Science and Operations Research (Q2); Software (Q2)";"Computer Science; Decision Sciences; Engineering" +8675;24129;"Natural Hazards Review";journal;"15276988, 15276996";"American Society of Civil Engineers (ASCE)";No;No;0,671;Q1;78;91;246;5354;851;243;3,58;58,84;33,03;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"2000-2026";"Social Sciences (miscellaneous) (Q1); Civil and Structural Engineering (Q2); Environmental Science (miscellaneous) (Q2)";"Engineering; Environmental Science; Social Sciences" +8676;24782;"Neural Computation";journal;"08997667, 1530888X";"MIT Press";No;No;0,671;Q1;187;63;231;1675;548;149;2,27;26,59;18,56;0;United States;Northern America;"MIT Press";"1993, 1995-2026";"Arts and Humanities (miscellaneous) (Q1); Cognitive Neuroscience (Q2)";"Arts and Humanities; Neuroscience" +8677;24556;"Advances in Applied Mathematics";journal;"01968858, 10902074";"Academic Press Inc.";No;No;0,671;Q2;60;97;278;2541;311;278;1,02;26,20;25,85;0;United States;Northern America;"Academic Press Inc.";"1980-2026";"Applied Mathematics (Q2)";"Mathematics" +8678;25908;"Clinical and Applied Thrombosis/Hemostasis";journal;"10760296, 19382723";"SAGE Publications Inc.";Yes;No;0,671;Q2;66;153;482;5507;1109;463;2,12;35,99;43,60;0;United States;Northern America;"SAGE Publications Inc.";"1995-2026";"Hematology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +8679;21100446929;"European Actuarial Journal";journal;"21909741, 21909733";"Springer International Publishing AG";No;No;0,671;Q2;24;43;104;1356;171;84;1,51;31,53;22,89;1;Switzerland;Western Europe;"Springer International Publishing AG";"2011-2026";"Economics and Econometrics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +8680;21101226629;"Frontiers in Neuroergonomics";journal;"26736195";"Frontiers Media SA";Yes;No;0,671;Q2;18;25;110;1808;363;98;2,90;72,32;33,66;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Human Factors and Ergonomics (Q2); Human-Computer Interaction (Q2); Neuroscience (miscellaneous) (Q3); Sensory Systems (Q3)";"Computer Science; Neuroscience; Social Sciences" +8681;21865;"Fundamental and Clinical Pharmacology";journal;"07673981, 14728206";"Wiley-Blackwell Publishing Ltd";No;No;0,671;Q2;92;65;293;2641;856;293;2,84;40,63;54,26;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1987-2026";"Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +8682;22651;"Human and Ecological Risk Assessment";journal;"10807039, 15497860";"Taylor and Francis Ltd.";No;No;0,671;Q2;97;73;173;4643;601;168;3,81;63,60;41,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Ecological Modeling (Q2); Health, Toxicology and Mutagenesis (Q2); Pollution (Q2)";"Environmental Science" +8683;21100942171;"Infrastructures";journal;"24123811";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,671;Q2;45;351;591;18886;2582;587;4,38;53,81;25,75;2;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Computer Science Applications (Q2); Geotechnical Engineering and Engineering Geology (Q2); Materials Science (miscellaneous) (Q2)";"Computer Science; Earth and Planetary Sciences; Engineering; Materials Science" +8684;22603;"Journal of Early Intervention";journal;"21543992, 10538151";"SAGE Publications Inc.";No;No;0,671;Q2;56;25;78;1189;208;76;2,53;47,56;73,74;1;United States;Northern America;"SAGE Publications Inc.";"1981-2026";"Developmental and Educational Psychology (Q2); Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +8685;27768;"Journal of Forensic Odonto-Stomatology";journal;"22196749, 0258414X";"International Organisation for Forensic Odonto-Stomatology";No;No;0,671;Q2;36;9;55;123;113;54;2,31;13,67;60,53;0;Belgium;Western Europe;"International Organisation for Forensic Odonto-Stomatology";"1983-2026";"Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2)";"Medicine" +8686;21774;"Managerial and Decision Economics";journal;"10991468, 01436570";"John Wiley and Sons Ltd";No;No;0,671;Q2;71;253;939;14279;3344;938;3,28;56,44;38,76;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1980-2026";"Business and International Management (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +8687;21101022197;"Nordic Journal of Studies in Educational Policy";journal;"20020317";"Taylor and Francis Ltd.";Yes;Yes;0,671;Q2;24;31;62;1761;180;57;2,33;56,81;72,86;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2025";"Education (Q2)";"Social Sciences" +8688;21101081677;"Results in Materials";journal;"2590048X";"Elsevier B.V.";Yes;No;0,671;Q2;37;179;370;10229;1809;370;5,22;57,15;24,39;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +8689;20187;"Transfusion Medicine and Hemotherapy";journal;"16603818, 16603796";"S. Karger AG";Yes;No;0,671;Q2;63;41;179;1651;367;157;1,92;40,27;46,70;1;Switzerland;Western Europe;"S. Karger AG";"1973, 1975-1997, 2003-2026";"Hematology (Q2); Immunology and Allergy (Q3)";"Medicine" +8690;19108;"Tuberculosis";journal;"1873281X, 14729792";"Churchill Livingstone";No;No;0,671;Q2;105;83;277;3602;713;254;2,45;43,40;46,41;0;United Kingdom;Western Europe;"Churchill Livingstone";"1974, 2001-2026";"Infectious Diseases (Q2); Microbiology (medical) (Q2); Immunology (Q3); Microbiology (Q3)";"Immunology and Microbiology; Medicine" +8691;4400151608;"ChemMedChem";journal;"18607187, 18607179";"John Wiley and Sons Ltd";No;No;0,670;Q1;130;351;747;20549;2669;736;3,47;58,54;42,61;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2006-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Biochemistry (Q2); Drug Discovery (Q2); Organic Chemistry (Q2); Pharmacology (Q2); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +8692;130130;"Clinical Otolaryngology";journal;"17494478, 17494486";"Wiley-Blackwell Publishing Ltd";No;No;0,670;Q1;87;150;340;3596;653;287;2,13;23,97;36,67;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2005-2026";"Otorhinolaryngology (Q1); Medicine (miscellaneous) (Q2)";"Medicine" +8693;21101019704;"Evolutionary Human Sciences";journal;"2513843X";"Cambridge University Press";Yes;No;0,670;Q1;23;44;137;3168;296;133;2,06;72,00;41,71;0;United States;Northern America;"Cambridge University Press";"2019-2026";"Anthropology (Q1); Cultural Studies (Q1); Applied Psychology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Psychology; Social Sciences" +8694;12936;"Journal of the Acoustical Society of America";journal;"15208524, 00014966";"Acoustical Society of America";No;No;0,670;Q1;229;762;1964;35298;5036;1956;2,47;46,32;29,81;1;United States;Northern America;"Acoustical Society of America";"1929-2026";"Acoustics and Ultrasonics (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Physics and Astronomy" +8695;24200;"Review of Black Political Economy";journal;"00346446, 19364814";"Springer New York";No;No;0,670;Q1;28;34;67;1963;110;63;1,00;57,74;40,35;1;United States;Northern America;"Springer New York";"1970-2026";"Cultural Studies (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +8696;21101199351;"Intelligence and Robotics";journal;"27703541";"OAE Publishing Inc.";No;No;0,670;Q2;14;44;88;2473;368;86;4,13;56,20;32,79;0;United States;Northern America;"OAE Publishing Inc.";"2021-2025";"Artificial Intelligence (Q2)";"Computer Science" +8697;18400156720;"Policy Futures in Education";journal;"14782103";"SAGE Publications Inc.";No;No;0,670;Q2;41;129;243;6973;733;239;2,58;54,05;50,40;4;United Kingdom;Western Europe;"SAGE Publications Inc.";"2004, 2009-2026";"Education (Q2)";"Social Sciences" +8698;14233;"Statistical Papers";journal;"09325026, 16139798";"Springer New York";Yes;No;0,670;Q2;54;157;380;5534;611;379;1,53;35,25;30,05;0;United States;Northern America;"Springer New York";"1983, 1988-2026";"Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +8699;15585;"Experimental Brain Research";journal;"14321106, 00144819";"Springer Science and Business Media Deutschland GmbH";No;No;0,670;Q3;198;247;696;14359;1557;685;2,21;58,13;38,17;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1966-2026";"Neuroscience (miscellaneous) (Q3)";"Neuroscience" +8700;21101272204;"Hydrobiology";journal;"26739917";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,669;Q1;12;34;92;2092;308;89;3,72;61,53;38,35;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +8701;12709;"Information Technology and Libraries";journal;"07309295, 21635226";"American Library Association";Yes;Yes;0,669;Q1;42;34;93;778;219;75;2,45;22,88;58,90;0;United States;Northern America;"American Library Association";"1968, 1971-1974, 1981, 1988-2025";"Library and Information Sciences (Q1); Information Systems (Q2)";"Computer Science; Social Sciences" +8702;19900192164;"Journal of Political Power";journal;"21583803, 2158379X";"Routledge";No;No;0,669;Q1;35;30;61;1874;142;54;1,84;62,47;46,34;0;United Kingdom;Western Europe;"Routledge";"2008, 2010-2026";"Sociology and Political Science (Q1)";"Social Sciences" +8703;33476;"Medical Anthropology Quarterly";journal;"15481387, 07455194";"John Wiley and Sons Inc";No;No;0,669;Q1;72;45;87;2244;192;81;1,75;49,87;64,06;0;United States;Northern America;"John Wiley and Sons Inc";"1983-2026";"Anthropology (Q1); Visual Arts and Performing Arts (Q1); Medicine (miscellaneous) (Q2)";"Arts and Humanities; Medicine; Social Sciences" +8704;25626;"Multimedia Systems";journal;"14321882, 09424962";"Springer Verlag";No;No;0,669;Q1;75;469;810;23666;3575;800;3,84;50,46;32,45;0;Germany;Western Europe;"Springer Verlag";"1993-2000, 2002-2026";"Media Technology (Q1); Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)";"Computer Science; Engineering" +8705;21100805791;"Transnational Legal Theory";journal;"20414013, 20414005";"Taylor and Francis Ltd.";No;No;0,669;Q1;18;32;66;794;93;61;1,40;24,81;37,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010, 2015-2025";"Law (Q1)";"Social Sciences" +8706;4700151710;"International Journal of Public Administration";journal;"15324265, 01900692";"Taylor and Francis Ltd.";No;No;0,669;Q2;67;129;265;9536;859;255;3,28;73,92;43,40;7;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2026";"Business and International Management (Q2); Public Administration (Q2)";"Business, Management and Accounting; Social Sciences" +8707;21100870833;"Journal of Cardiovascular Imaging";journal;"25867210, 25867296";"BioMed Central Ltd";Yes;No;0,669;Q2;29;16;133;768;137;64;1,04;48,00;30,85;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2018-2026";"Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +8708;16683;"Journal of Clinical Neuroscience";journal;"09675868, 15322653";"Churchill Livingstone";No;No;0,669;Q2;110;700;1065;20404;2245;959;1,86;29,15;30,29;0;United Kingdom;Western Europe;"Churchill Livingstone";"1994-2026";"Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Surgery (Q2); Neurology (Q3); Physiology (medical) (Q3)";"Medicine; Neuroscience" +8709;21100945720;"Journal of Nonlinear and Variational Analysis";journal;"25606778, 25606921";"Biemdas Academic Publishers";No;No;0,669;Q2;20;57;165;1858;260;157;1,44;32,60;26,62;0;Canada;Northern America;"Biemdas Academic Publishers";"2017-2026";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +8710;21100395908;"Qualitative Research in Organizations and Management";journal;"17465648, 17465656";"Emerald Publishing";No;No;0,669;Q2;40;37;69;2467;207;65;2,26;66,68;64,00;0;United Kingdom;Western Europe;"Emerald Publishing";"2001, 2006-2026";"Business, Management and Accounting (miscellaneous) (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +8711;25239;"Asymptotic Analysis";journal;"18758576, 09217134";"SAGE Publications Ltd";No;No;0,668;Q1;50;95;247;3263;229;247;0,84;34,35;24,62;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1988-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +8712;5700167676;"Cultural Trends";journal;"14693690, 09548963";"Routledge";No;No;0,668;Q1;42;82;117;4328;329;102;2,32;52,78;48,11;3;United Kingdom;Western Europe;"Routledge";"1989-1995, 1998, 2004-2008, 2010-2026";"Communication (Q1); Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +8713;21101144505;"Data and Policy";journal;"26323249";"Cambridge University Press";Yes;No;0,668;Q1;21;81;164;4956;572;162;3,23;61,19;44,40;6;United Kingdom;Western Europe;"Cambridge University Press";"2020-2026";"Social Sciences (miscellaneous) (Q1); Artificial Intelligence (Q2); Computer Science (miscellaneous) (Q2); Public Administration (Q2)";"Computer Science; Social Sciences" +8714;29721;"Journal of Hydrology and Hydromechanics";journal;"13384333, 0042790X";"De Gruyter Open Ltd.";Yes;Yes;0,668;Q1;41;35;123;1727;360;121;2,58;49,34;24,59;0;Germany;Western Europe;"De Gruyter Open Ltd.";"1973-1992, 1994-1996, 2007-2025";"Mechanical Engineering (Q1); Fluid Flow and Transfer Processes (Q2); Water Science and Technology (Q2)";"Chemical Engineering; Engineering; Environmental Science" +8715;21100981415;"Modeling Earth Systems and Environment";journal;"23636203, 23636211";"Springer International Publishing AG";No;No;0,668;Q1;75;451;1087;25866;4352;1084;4,19;57,35;22,49;2;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Computers in Earth Sciences (Q2); Environmental Science (miscellaneous) (Q2); Statistics, Probability and Uncertainty (Q2)";"Agricultural and Biological Sciences; Decision Sciences; Earth and Planetary Sciences; Environmental Science" +8716;14027;"Psychology, Crime and Law";journal;"14772744, 1068316X";"Routledge";No;No;0,668;Q1;75;162;194;11866;471;193;2,24;73,25;57,74;0;United Kingdom;Western Europe;"Routledge";"1994-2026";"Law (Q1); Pathology and Forensic Medicine (Q2); Psychology (miscellaneous) (Q2)";"Medicine; Psychology; Social Sciences" +8717;21100390177;"Regional Studies in Marine Science";journal;"23524855";"Elsevier B.V.";No;No;0,668;Q1;52;697;1511;49192;4661;1506;3,12;70,58;36,03;2;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Animal Science and Zoology (Q1); Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +8718;25822;"Society and Natural Resources";journal;"08941920, 15210723";"Taylor and Francis Ltd.";No;No;0,668;Q1;110;107;256;6983;670;237;2,32;65,26;52,51;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Sociology and Political Science (Q1); Development (Q2); Environmental Science (miscellaneous) (Q2)";"Environmental Science; Social Sciences" +8719;21599;"Studies in American Political Development";journal;"14698692, 0898588X";"Cambridge University Press";No;No;0,668;Q1;31;15;42;2387;46;41;1,00;159,13;57,89;0;United Kingdom;Western Europe;"Cambridge University Press";"1986-1987, 1989-2026";"History (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +8720;18718;"Time and Society";journal;"0961463X, 14617463";"SAGE Publications Ltd";No;No;0,668;Q1;61;46;88;3204;217;75;2,31;69,65;50,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2026";"Sociology and Political Science (Q1)";"Social Sciences" +8721;20492;"Annals of Vascular Surgery";journal;"16155947, 08905096";"Elsevier Inc.";No;No;0,668;Q2;90;519;1422;14221;2572;1370;1,82;27,40;29,61;0;United States;Northern America;"Elsevier Inc.";"1986-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Surgery (Q2)";"Medicine" +8722;19700175086;"Drug, Healthcare and Patient Safety";journal;"11791365";"Dove Medical Press Ltd";Yes;No;0,668;Q2;34;21;50;962;168;48;4,03;45,81;47,57;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Health Policy (Q2); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +8723;28772;"GeoJournal";journal;"15729893, 03432521";"Springer Science and Business Media Deutschland GmbH";No;No;0,668;Q2;92;302;996;17695;3413;994;3,04;58,59;34,77;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1977-2002, 2004-2026";"Geography, Planning and Development (Q2)";"Social Sciences" +8724;12358;"International Journal of Fuzzy Systems";journal;"15622479, 21993211";"Springer International Publishing AG";No;No;0,668;Q2;72;345;595;15147;2516;590;4,60;43,90;33,91;0;Switzerland;Western Europe;"Springer International Publishing AG";"2004-2026";"Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Control and Systems Engineering (Q2); Information Systems (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Engineering; Mathematics" +8725;130000;"Journal of Chromatography A";journal;"00219673, 18733778";"Elsevier B.V.";No;No;0,668;Q2;265;780;2178;37072;9051;2170;4,26;47,53;43,33;1;Netherlands;Western Europe;"Elsevier B.V.";"1958-2026";"Analytical Chemistry (Q2); Biochemistry (Q2); Medicine (miscellaneous) (Q2); Organic Chemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine" +8726;19261;"Journal of Plant Research";journal;"09189440, 16180860";"Springer";No;No;0,668;Q2;89;79;216;4166;540;206;2,12;52,73;42,51;0;Japan;Asiatic Region;"Springer";"1993-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +8727;34957;"Anthropology Today";journal;"14678322, 0268540X";"John Wiley and Sons Inc";No;No;0,667;Q1;38;45;150;823;279;102;2,10;18,29;59,46;0;United States;Northern America;"John Wiley and Sons Inc";"1988, 1999, 2002, 2008-2026";"Anthropology (Q1)";"Social Sciences" +8728;21100830164;"Business and Human Rights Journal";journal;"20570198, 20570201";"Cambridge University Press";No;No;0,667;Q1;30;36;102;3232;223;101;2,27;89,78;63,64;1;United Kingdom;Western Europe;"Cambridge University Press";"2016-2026";"Law (Q1); Sociology and Political Science (Q1); Business and International Management (Q2); Industrial Relations (Q2)";"Business, Management and Accounting; Social Sciences" +8729;21100455650;"Development Engineering";journal;"23527285";"Elsevier Ltd";Yes;No;0,667;Q1;21;0;23;0;108;23;5,44;0,00;0,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2023";"Economics, Econometrics and Finance (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Computer Science Applications (Q2); Development (Q2)";"Computer Science; Economics, Econometrics and Finance; Engineering; Social Sciences" +8730;28970;"Journal of Cultural Economics";journal;"08852545, 15736997";"Springer";No;No;0,667;Q1;59;42;71;2358;213;67;2,72;56,14;36,46;2;United States;Northern America;"Springer";"1977-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +8731;21100853806;"Molecular Systems Design and Engineering";journal;"20589689";"Royal Society of Chemistry";No;No;0,667;Q1;51;71;363;5017;1164;358;3,05;70,66;30,93;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2016-2026";"Industrial and Manufacturing Engineering (Q1); Biomedical Engineering (Q2); Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Materials Chemistry (Q2); Process Chemistry and Technology (Q2)";"Chemical Engineering; Chemistry; Energy; Engineering; Materials Science" +8732;21101360393;"ACS Sustainable Resource Management";journal;"28371445";"American Chemical Society";No;No;0,667;Q2;12;240;240;12769;879;212;3,66;53,20;32,36;0;United States;Northern America;"American Chemical Society";"2024-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Waste Management and Disposal (Q2)";"Chemical Engineering; Chemistry; Environmental Science" +8733;21101143781;"Aging and Health Research";journal;"26670321";"Elsevier B.V.";Yes;No;0,667;Q2;12;51;94;1896;270;89;3,04;37,18;51,01;1;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Health Policy (Q2); Medicine (miscellaneous) (Q2); Geriatrics and Gerontology (Q3)";"Medicine" +8734;29915;"Critical Care Clinics";journal;"07490704, 15578232";"W.B. Saunders";No;No;0,667;Q2;94;59;175;3919;435;150;2,45;66,42;52,10;0;United States;Northern America;"W.B. Saunders";"1985-2026";"Critical Care and Intensive Care Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +8735;144745;"Educational Research and Evaluation";journal;"17444187, 13803611";"Taylor and Francis Ltd.";No;No;0,667;Q2;51;36;61;2211;185;53;1,59;61,42;48,35;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995, 1997, 2004-2020, 2022-2026";"Education (Q2)";"Social Sciences" +8736;21100854242;"International Nano Letters";journal;"22285326, 20089295";"";Yes;No;0,667;Q2;34;0;51;0;282;51;4,40;0,00;0,00;0;Germany;Western Europe;"";"2012, 2014, 2016, 2019-2023";"Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2); Pharmaceutical Science (Q2); Bioengineering (Q3)";"Chemical Engineering; Engineering; Medicine; Pharmacology, Toxicology and Pharmaceutics" +8737;27770;"Journal of Investigative Medicine";journal;"17088267, 10815589";"SAGE Publications Inc.";No;No;0,667;Q2;81;68;347;2053;769;316;1,89;30,19;44,44;0;United States;Northern America;"SAGE Publications Inc.";"1994-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8738;144915;"Journal of Minimally Invasive Gynecology";journal;"15534669, 15534650";"Elsevier B.V.";No;No;0,667;Q2;102;257;690;3555;1193;572;1,60;13,83;55,26;0;Netherlands;Western Europe;"Elsevier B.V.";"2005-2026";"Obstetrics and Gynecology (Q2)";"Medicine" +8739;21101206082;"Organic Materials";journal;"26251825";"Georg Thieme Verlag";Yes;No;0,667;Q2;16;2;61;201;134;60;2,17;100,50;50,00;0;Germany;Western Europe;"Georg Thieme Verlag";"2020-2025";"Organic Chemistry (Q2)";"Chemistry" +8740;145691;"Soft Matter";journal;"17446848, 1744683X";"Royal Society of Chemistry";No;No;0,667;Q2;217;700;2557;41787;7258;2549;2,77;59,70;30,40;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2005-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2)";"Chemistry; Physics and Astronomy" +8741;20790;"Upsala Journal of Medical Sciences";journal;"20001967, 03009734";"Upsala Medical Society";Yes;No;0,667;Q2;59;20;104;569;200;101;2,34;28,45;33,33;0;Sweden;Western Europe;"Upsala Medical Society";"1972-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8742;21101270125;"Auk";journal;"00048038";"Oxford University Press";No;No;0,666;Q1;109;52;109;4099;218;109;1,62;78,83;40,08;0;United Kingdom;Western Europe;"Oxford University Press";"1935, 1938, 1940, 1945, 1947-1948, 1950-1952, 1954, 1965, 1968, 1970, 1973-1975, 1979-1980, 1982-1988, 1990-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +8743;21101280880;"Frontiers in Environmental Archaeology";journal;"2813432X";"Frontiers Media SA";Yes;No;0,666;Q1;7;47;59;4923;121;57;1,96;104,74;49,02;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +8744;19700188305;"Journal of Agricultural Education and Extension";journal;"1389224X, 17508622";"Taylor and Francis Ltd.";No;No;0,666;Q1;44;72;102;4214;372;95;3,39;58,53;42,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Education (Q2); Geography, Planning and Development (Q2)";"Agricultural and Biological Sciences; Social Sciences" +8745;19700186898;"Journal of Engineering, Design and Technology";journal;"17260531";"Emerald Group Publishing Ltd.";No;No;0,666;Q1;47;115;271;7401;1402;267;5,30;64,36;25,86;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005-2026";"Engineering (miscellaneous) (Q1)";"Engineering" +8746;15565;"Journal of Loss and Trauma";journal;"15325024, 15325032";"Routledge";No;No;0,666;Q1;63;98;212;5936;475;157;2,71;60,57;61,75;1;United States;Northern America;"Routledge";"1996-2026";"Social Sciences (miscellaneous) (Q1); Psychiatry and Mental Health (Q2); Social Psychology (Q2)";"Medicine; Psychology; Social Sciences" +8747;21101133326;"Kazakhstan Archeology";journal;"26636794, 27894525";"Margulan Institute of Archaeology";No;No;0,666;Q1;6;65;154;2224;112;154;0,78;34,22;32,12;0;Kazakhstan;Asiatic Region;"Margulan Institute of Archaeology";"2019-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +8748;21100316609;"Life Sciences in Space Research";journal;"22145532, 22145524";"Elsevier Ltd";No;No;0,666;Q1;39;87;178;5509;670;173;4,09;63,32;37,95;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Radiation (Q1); Astronomy and Astrophysics (Q2); Ecology (Q2); Health, Toxicology and Mutagenesis (Q2)";"Agricultural and Biological Sciences; Environmental Science; Physics and Astronomy" +8749;16656;"Advances in Botanical Research";book series;"00652296";"Academic Press Inc.";No;No;0,666;Q2;85;58;121;6123;378;44;3,43;105,57;37,10;1;United States;Northern America;"Academic Press Inc.";"1963, 1966, 1970, 1977-1981, 1983, 1985-1991, 1993-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +8750;4000150314;"Chemical Biology and Drug Design";journal;"17470285, 17470277";"John Wiley and Sons Inc";No;No;0,666;Q2;102;189;669;9875;2576;659;3,48;52,25;42,88;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2006-2026";"Biochemistry (Q2); Drug Discovery (Q2); Organic Chemistry (Q2); Pharmacology (Q2); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +8751;21100943567;"ChemPhotoChem";journal;"23670932";"Wiley-VCH Verlag";No;No;0,666;Q2;47;164;452;10119;1299;446;2,83;61,70;31,44;0;Germany;Western Europe;"Wiley-VCH Verlag";"2017-2026";"Analytical Chemistry (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry" +8752;26386;"Electronic Communications in Probability";journal;"1083589X";"Institute of Mathematical Statistics";Yes;No;0,666;Q2;41;90;204;1787;158;204;0,74;19,86;15,29;0;United States;Northern America;"Institute of Mathematical Statistics";"1996-2026";"Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +8753;21101298343;"Frontiers in Cognition";journal;"28134532";"Frontiers Media SA";Yes;No;0,666;Q2;7;41;102;2865;289;93;2,93;69,88;54,96;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Psychology (miscellaneous) (Q2); Cognitive Neuroscience (Q3); Neuroscience (miscellaneous) (Q3)";"Neuroscience; Psychology" +8754;21100943373;"Geriatrics (Switzerland)";journal;"23083417";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,666;Q2;36;170;434;8054;1090;423;2,56;47,38;50,55;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2025";"Gerontology (Q2); Health (social science) (Q2); Aging (Q3); Geriatrics and Gerontology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing; Social Sciences" +8755;145250;"Industrial and Commercial Training";journal;"00197858";"Emerald Group Publishing Ltd.";No;No;0,666;Q2;48;39;90;2877;417;90;4,52;73,77;52,44;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1969-2026";"Business, Management and Accounting (miscellaneous) (Q2); Education (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +8756;144740;"International Journal of Quality and Reliability Management";journal;"0265671X";"Emerald Group Publishing Ltd.";No;No;0,666;Q2;108;146;346;12710;1842;340;5,82;87,05;27,36;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1970, 1984-2026";"Business, Management and Accounting (miscellaneous) (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +8757;20611;"Journal of Food Quality";journal;"17454557, 01469428";"John Wiley and Sons Inc";Yes;No;0,666;Q2;75;126;464;7349;2335;462;4,37;58,33;34,91;0;United States;Northern America;"John Wiley and Sons Inc";"1977, 1979-2026";"Food Science (Q2); Safety, Risk, Reliability and Quality (Q2)";"Agricultural and Biological Sciences; Engineering" +8758;24806;"Neural Processing Letters";journal;"13704621, 1573773X";"Springer Netherlands";No;No;0,666;Q2;77;93;1097;4366;4205;1091;3,85;46,95;26,99;0;Netherlands;Western Europe;"Springer Netherlands";"1994-2026";"Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Software (Q2); Neuroscience (miscellaneous) (Q3)";"Computer Science; Neuroscience" +8759;19700175057;"Immunotherapy";journal;"1750743X, 17507448";"Taylor and Francis Ltd.";No;No;0,666;Q3;75;137;397;6290;852;367;2,06;45,91;43,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Immunology (Q3); Immunology and Allergy (Q3); Oncology (Q3)";"Immunology and Microbiology; Medicine" +8760;4700151704;"Asian Population Studies";journal;"17441730, 17441749";"Routledge";No;No;0,665;Q1;32;29;60;1565;125;52;1,79;53,97;35,29;1;United Kingdom;Western Europe;"Routledge";"2006-2026";"Demography (Q1)";"Social Sciences" +8761;27159;"Innovation: The European Journal of Social Science Research";journal;"13511610, 14698412";"Routledge";No;No;0,665;Q1;50;138;183;9818;549;160;2,06;71,14;44,19;8;United Kingdom;Western Europe;"Routledge";"1988-2026";"Cultural Studies (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Geography, Planning and Development (Q2); Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Social Sciences" +8762;5800170566;"Journal of Moral Philosophy";journal;"17404681, 17455243";"Brill Academic Publishers";No;No;0,665;Q1;32;34;62;1536;85;61;1,44;45,18;22,50;0;Netherlands;Western Europe;"Brill Academic Publishers";"2004-2026";"Philosophy (Q1)";"Arts and Humanities" +8763;21908;"Journal of School Health";journal;"00224391, 17461561";"Wiley-Blackwell";No;No;0,665;Q1;104;109;369;4639;810;344;2,08;42,56;70,39;2;United States;Northern America;"Wiley-Blackwell";"1930-2026";"Philosophy (Q1); Education (Q2); Public Health, Environmental and Occupational Health (Q2)";"Arts and Humanities; Medicine; Social Sciences" +8764;24453;"Kyoto Journal of Mathematics";journal;"21543321, 21562261";"Duke University Press";No;No;0,665;Q1;35;25;84;670;61;84;0,91;26,80;11,90;0;Japan;Asiatic Region;"Duke University Press";"1996-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +8765;11700154712;"Traumatology";journal;"15347656, 10859373";"SAGE Publications Ltd";No;No;0,665;Q1;61;98;192;5588;477;192;1,94;57,02;66,85;0;United States;Northern America;"SAGE Publications Ltd";"1996-1999, 2002-2006, 2008-2025";"Emergency Medicine (Q1); Nursing (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Nursing" +8766;12821;"Canadian Journal of Experimental Psychology";journal;"18787290, 11961961";"American Psychological Association";No;No;0,665;Q2;72;31;89;1515;126;87;1,28;48,87;47,87;0;United States;Northern America;"American Psychological Association";"1993-2026";"Experimental and Cognitive Psychology (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Psychology" +8767;23339;"Chemical Research in Chinese Universities";journal;"22103171, 10059040";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,665;Q2;40;162;488;11245;1575;465;3,51;69,41;38,61;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1999, 2001-2026";"Chemistry (miscellaneous) (Q2); Education (Q2)";"Chemistry; Social Sciences" +8768;21101092701;"Communications on Applied Mathematics and Computation";journal;"20966385, 26618893";"Springer";No;No;0,665;Q2;16;186;221;6776;387;213;1,57;36,43;32,65;0;Germany;Western Europe;"Springer";"2019-2026";"Applied Mathematics (Q2); Computational Mathematics (Q2)";"Mathematics" +8769;26409;"Drugs: Education, Prevention and Policy";journal;"14653370, 09687637";"Informa Healthcare";No;No;0,665;Q2;56;115;198;6977;511;190;2,34;60,67;62,38;2;United Kingdom;Western Europe;"Informa Healthcare";"1994-2026";"Health (social science) (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Social Sciences" +8770;21101142658;"IJID Regions";journal;"27727076";"Elsevier Ltd";Yes;No;0,665;Q2;17;254;450;6383;962;442;2,24;25,13;41,90;1;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Epidemiology (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8771;21100211751;"International Journal of Industrial Engineering and Management";journal;"22172661, 2683345X";"University of Novi Sad";Yes;Yes;0,665;Q2;27;33;75;1393;330;72;5,00;42,21;35,35;0;Serbia;Eastern Europe;"University of Novi Sad";"2010-2025";"Business, Management and Accounting (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Management Science and Operations Research (Q2)";"Business, Management and Accounting; Decision Sciences; Engineering" +8772;19700186886;"International Journal of Pavement Research and Technology";journal;"19971400, 19966814";"Chinese Society of Pavement Engineering";Yes;No;0,665;Q2;53;300;339;15775;1411;339;4,31;52,58;24,45;0;Taiwan;Asiatic Region;"Chinese Society of Pavement Engineering";"2009-2026";"Civil and Structural Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +8773;20606;"Journal of Forecasting";journal;"02776693, 1099131X";"John Wiley and Sons Ltd";No;No;0,665;Q2;74;128;360;6487;1221;360;3,43;50,68;28,96;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1982-2026";"Computer Science Applications (Q2); Economics and Econometrics (Q2); Management Science and Operations Research (Q2); Modeling and Simulation (Q2); Statistics, Probability and Uncertainty (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences; Economics, Econometrics and Finance; Mathematics" +8774;21101033123;"Journal of Health Economics and Outcomes Research";journal;"23272236";"Columbia Data Analytics";Yes;No;0,665;Q2;16;57;109;2081;258;107;2,36;36,51;40,06;1;United States;Northern America;"Columbia Data Analytics";"2013, 2017-2025";"Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8775;21101023214;"Multiple Sclerosis Journal - Experimental, Translational and Clinical";journal;"20552173";"SAGE Publications Inc.";Yes;No;0,665;Q2;37;48;147;1594;321;143;1,96;33,21;50,33;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2015-2026";"Neurology (clinical) (Q2); Cellular and Molecular Neuroscience (Q3)";"Medicine; Neuroscience" +8776;21101151829;"CABI Agriculture and Bioscience";journal;"26624044";"CABI International";Yes;No;0,664;Q1;25;99;240;6086;898;234;3,67;61,47;31,79;4;United Kingdom;Western Europe;"CABI International";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Animal Science and Zoology (Q1); Horticulture (Q1); Food Science (Q2)";"Agricultural and Biological Sciences" +8777;26451;"Expositiones Mathematicae";journal;"07230869";"Elsevier GmbH";No;No;0,664;Q1;31;54;130;2719;126;129;0,89;50,35;20,69;0;Germany;Western Europe;"Elsevier GmbH";"2004-2026";"Mathematics (miscellaneous) (Q1)";"Mathematics" +8778;15759;"Journal of Aerosol Science";journal;"18791964, 00218502";"Elsevier Ltd";No;No;0,664;Q1;134;141;361;8442;1254;359;3,27;59,87;28,84;2;United Kingdom;Western Europe;"Elsevier Ltd";"1970-2026";"Mechanical Engineering (Q1); Atmospheric Science (Q2); Environmental Chemistry (Q2); Environmental Engineering (Q2); Fluid Flow and Transfer Processes (Q2); Materials Science (miscellaneous) (Q2); Pollution (Q2)";"Chemical Engineering; Earth and Planetary Sciences; Engineering; Environmental Science; Materials Science" +8779;21101220787;"Review of Evolutionary Political Economy";journal;"26626144, 26626136";"Springer Nature";No;No;0,664;Q1;13;30;71;2050;176;67;2,74;68,33;31,25;3;Switzerland;Western Europe;"Springer Nature";"2020-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +8780;12100155627;"Trends in Organized Crime";journal;"10844791, 19364830";"Springer US";No;No;0,664;Q1;40;43;113;2639;341;111;3,21;61,37;37,00;5;United States;Northern America;"Springer US";"1995-2002, 2004-2026";"Law (Q1)";"Social Sciences" +8781;21100944489;"Biomimetics";journal;"23137673";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,664;Q2;52;849;1651;49142;8078;1636;4,79;57,88;34,07;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2026";"Biochemistry (Q2); Biomedical Engineering (Q2); Biotechnology (Q2); Bioengineering (Q3); Biomaterials (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +8782;19397;"BMC Urology";journal;"14712490";"BioMed Central Ltd";Yes;No;0,664;Q2;61;309;702;8886;1685;696;2,35;28,76;27,23;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Medicine (miscellaneous) (Q2); Reproductive Medicine (Q2); Urology (Q2)";"Medicine" +8783;17424;"DNA and Cell Biology";journal;"10445498, 15577430";"Mary Ann Liebert Inc.";No;No;0,664;Q2;94;69;239;4149;628;235;2,69;60,13;48,90;0;United States;Northern America;"Mary Ann Liebert Inc.";"1990-2026";"Medicine (miscellaneous) (Q2); Cell Biology (Q3); Genetics (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8784;21101132466;"Frontiers in Chemical Engineering";journal;"26732718";"Frontiers Media SA";Yes;No;0,664;Q2;29;37;243;2051;959;215;3,35;55,43;31,91;0;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Catalysis (Q2); Chemical Engineering (miscellaneous) (Q2); Bioengineering (Q3)";"Chemical Engineering" +8785;20020;"Nephrology";journal;"14401797, 13205358";"Wiley-Blackwell Publishing Ltd";No;No;0,664;Q2;83;162;370;4251;684;307;1,94;26,24;41,65;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1991, 1995-1998, 2000-2026";"Medicine (miscellaneous) (Q2); Nephrology (Q2)";"Medicine" +8786;4000151608;"Psychiatry Investigation";journal;"19763026, 17383684";"Korean Neuropsychiatric Association";Yes;No;0,664;Q2;64;159;410;6921;909;405;2,01;43,53;47,80;1;South Korea;Asiatic Region;"Korean Neuropsychiatric Association";"2006-2026";"Psychiatry and Mental Health (Q2); Biological Psychiatry (Q3)";"Medicine; Neuroscience" +8787;12000154316;"Swiss Journal of Geosciences";journal;"16618734, 16618726";"Birkhauser";Yes;No;0,664;Q2;71;22;69;1858;156;66;2,19;84,45;23,89;0;Switzerland;Western Europe;"Birkhauser";"2007-2025";"Geology (Q2)";"Earth and Planetary Sciences" +8788;19376;"Water Science and Technology";journal;"02731223, 19969732";"IWA Publishing";Yes;No;0,664;Q2;168;193;1286;9268;4445;1274;3,15;48,02;34,09;0;United Kingdom;Western Europe;"IWA Publishing";"1970, 1980-2026";"Environmental Engineering (Q2); Water Science and Technology (Q2)";"Environmental Science" +8789;19747;"Acta Mechanica";journal;"16196937, 00015970";"Springer-Verlag Wien";No;No;0,663;Q1;98;412;992;20419;3790;982;4,18;49,56;22,92;0;Austria;Western Europe;"Springer-Verlag Wien";"1965-2026";"Computational Mechanics (Q1); Mechanical Engineering (Q1)";"Engineering" +8790;19600156901;"Architectural Engineering and Design Management";journal;"17527589, 17452007";"Taylor and Francis Ltd.";No;No;0,663;Q1;44;128;194;7031;856;194;3,84;54,93;44,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Architecture (Q1); Building and Construction (Q2); Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting; Engineering" +8791;28208;"Journal of Holistic Nursing";journal;"15525724, 08980101";"SAGE Publications Inc.";No;No;0,663;Q1;54;82;131;3112;315;116;2,34;37,95;74,77;0;United States;Northern America;"SAGE Publications Inc.";"1983-2026";"Nursing (miscellaneous) (Q1)";"Nursing" +8792;21101041553;"Tourism and Management Studies";journal;"21828466, 21828458";"University of Algarve";Yes;Yes;0,663;Q1;17;22;64;1960;337;64;5,98;89,09;42,42;0;Portugal;Western Europe;"University of Algarve";"2019-2025";"Cultural Studies (Q1); Business, Management and Accounting (miscellaneous) (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +8793;16787;"Australian Systematic Botany";journal;"14465701, 10301887";"CSIRO Publishing";No;No;0,663;Q2;47;17;42;1906;97;42;1,91;112,12;33,33;0;Australia;Pacific Region;"CSIRO Publishing";"1988-2025";"Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +8794;23407;"Chemistry and Ecology";journal;"02757540, 10290370";"Taylor and Francis Ltd.";No;No;0,663;Q2;51;68;174;5158;558;170;3,79;75,85;37,96;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-1984, 1986-2001, 2003-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Environmental Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +8795;21100426212;"Clinical Optometry";journal;"11792752";"Dove Medical Press Ltd";Yes;No;0,663;Q2;26;41;91;1377;211;80;2,36;33,59;47,01;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2014-2026";"Ophthalmology (Q2); Sensory Systems (Q3)";"Medicine; Neuroscience" +8796;21101175797;"Ecologies";journal;"26734133";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,663;Q2;13;85;132;5908;422;129;3,48;69,51;36,73;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +8797;21100242232;"Healthcare Informatics Research";journal;"2093369X, 20933681";"Korean Society of Medical Informatics";Yes;No;0,663;Q2;51;44;132;1140;435;119;3,42;25,91;39,13;0;South Korea;Asiatic Region;"Korean Society of Medical Informatics";"2010-2026";"Biomedical Engineering (Q2); Health Informatics (Q2); Health Information Management (Q2)";"Engineering; Health Professions; Medicine" +8798;130154;"Journal of Natural Fibers";journal;"1544046X, 15440478";"Taylor and Francis Ltd.";Yes;No;0,663;Q2;75;210;1741;12818;7743;1741;5,14;61,04;36,46;0;United States;Northern America;"Taylor and Francis Ltd.";"2004-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +8799;13937;"Journal of Paleolimnology";journal;"09212728, 15730417";"Springer Science and Business Media B.V.";No;No;0,663;Q2;96;36;129;2399;236;126;1,55;66,64;47,27;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1988-2026";"Aquatic Science (Q2); Earth-Surface Processes (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +8800;25713;"Numerical Methods for Partial Differential Equations";journal;"10982426, 0749159X";"John Wiley & Sons Inc.";No;No;0,663;Q2;79;80;425;3202;1100;424;2,53;40,03;33,83;0;United States;Northern America;"John Wiley & Sons Inc.";"1985-2026";"Analysis (Q2); Applied Mathematics (Q2); Computational Mathematics (Q2); Numerical Analysis (Q2)";"Mathematics" +8801;21101079404;"Partial Differential Equations in Applied Mathematics";journal;"26668181";"Elsevier B.V.";Yes;No;0,663;Q2;40;308;678;12820;3083;677;4,77;41,62;22,70;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +8802;20491;"Journal of Medical Entomology";journal;"00222585, 19382928";"Oxford University Press";No;No;0,662;Q1;124;170;558;9065;1244;555;2,10;53,32;45,21;1;United States;Northern America;"Oxford University Press";"1964-2026";"Insect Science (Q1); Veterinary (miscellaneous) (Q1); Infectious Diseases (Q2); Parasitology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine; Veterinary" +8803;5700184957;"Methodology";journal;"16142241, 16141881";"PsychOpen";Yes;Yes;0,662;Q1;43;15;50;723;155;49;3,09;48,20;27,27;0;Germany;Western Europe;"PsychOpen";"2005-2025";"Social Sciences (miscellaneous) (Q1); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +8804;21101022435;"Nanomanufacturing and Metrology";journal;"25208128, 2520811X";"Springer Nature";No;No;0,662;Q1;27;34;115;1107;564;110;6,54;32,56;27,97;0;Netherlands;Western Europe;"Springer Nature";"2018-2026";"Mechanical Engineering (Q1); Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +8805;18701;"Psychiatric Rehabilitation Journal";journal;"1095158X, 15593126";"American Psychological Association";No;No;0,662;Q1;81;28;122;1082;245;122;1,84;38,64;68,75;0;United States;Northern America;"American Psychological Association";"1996-2025";"Health Professions (miscellaneous) (Q1); Psychiatry and Mental Health (Q2); Rehabilitation (Q2)";"Health Professions; Medicine" +8806;18449;"Current Opinion in Pulmonary Medicine";journal;"15316971, 10705287";"Lippincott Williams and Wilkins";No;No;0,662;Q2;92;97;269;5424;706;242;2,64;55,92;35,92;0;United States;Northern America;"Lippincott Williams and Wilkins";"1995-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +8807;21100854843;"Drugs - Real World Outcomes";journal;"21991154, 21989788";"";Yes;No;0,662;Q2;27;66;186;2304;429;186;2,07;34,91;42,56;0;Switzerland;Western Europe;"";"2014-2026";"Pharmacology (medical) (Q2)";"Medicine" +8808;14175;"European Journal of Development Research";journal;"17439728, 09578811";"Palgrave Macmillan Ltd.";No;No;0,662;Q2;70;58;253;3101;719;244;3,07;53,47;43,31;5;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1989-2026";"Development (Q2); Geography, Planning and Development (Q2)";"Social Sciences" +8809;16102;"Human Psychopharmacology";journal;"10991077, 08856222";"John Wiley and Sons Ltd";No;No;0,662;Q2;89;27;89;1268;208;88;1,89;46,96;52,25;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1986-2026";"Neurology (clinical) (Q2); Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2); Neurology (Q3)";"Medicine; Neuroscience" +8810;24822;"Pattern Analysis and Applications";journal;"1433755X, 14337541";"Springer London";No;No;0,662;Q2;69;205;335;9913;994;333;3,06;48,36;26,35;0;United Kingdom;Western Europe;"Springer London";"1998-2026";"Artificial Intelligence (Q2); Computer Vision and Pattern Recognition (Q2)";"Computer Science" +8811;21101077288;"Scholarship of Teaching and Learning in Psychology";journal;"23322101, 2332211X";"American Psychological Association";No;No;0,662;Q2;16;31;182;1100;349;182;1,51;35,48;62,64;0;United States;Northern America;"American Psychological Association";"2015, 2019-2025";"Education (Q2); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +8812;11400153315;"Ukrainian Journal of Physical Optics";journal;"16091833, 18162002";"Institute of Physical Optics";No;No;0,662;Q2;24;28;103;849;397;103;4,22;30,32;32,98;0;Ukraine;Eastern Europe;"Institute of Physical Optics";"2000-2025";"Atomic and Molecular Physics, and Optics (Q2)";"Physics and Astronomy" +8813;100147328;"Child and Family Social Work";journal;"13652206, 13567500";"Wiley-Blackwell Publishing Ltd";No;No;0,661;Q1;81;225;285;13180;719;285;2,26;58,58;72,45;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Sociology and Political Science (Q1); Health (social science) (Q2); Social Work (Q2)";"Social Sciences" +8814;21101269348;"Ecological and Evolutionary Physiology";journal;"29937965, 29937973";"University of Chicago Press";No;No;0,661;Q1;105;31;111;2611;251;110;1,57;84,23;49,64;0;United States;Northern America;"University of Chicago Press";"2024-2026";"Animal Science and Zoology (Q1); Biochemistry (Q2); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +8815;29502;"Race and Class";journal;"03063968, 17413125";"SAGE Publications Ltd";No;No;0,661;Q1;58;23;70;1487;216;57;3,16;64,65;50,00;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1959, 1962-2026";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +8816;5700164302;"Rivista Italiana di Scienza Politica";journal;"20574908, 00488402";"Cambridge University Press";No;No;0,661;Q1;20;34;63;1564;180;62;2,36;46,00;31,75;0;Italy;Western Europe;"Cambridge University Press";"2003, 2010-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8817;145676;"Thunderbird International Business Review";journal;"10964762, 15206874";"John Wiley and Sons Inc";No;No;0,661;Q1;59;89;142;7166;543;115;4,20;80,52;32,69;0;United States;Northern America;"John Wiley and Sons Inc";"1998-1999, 2005-2026";"Political Science and International Relations (Q1); Business and International Management (Q2); Geography, Planning and Development (Q2)";"Business, Management and Accounting; Social Sciences" +8818;27059;"American Journal of Hospice and Palliative Medicine";journal;"10499091";"SAGE Publications Inc.";No;No;0,661;Q2;69;286;533;9058;1142;527;1,96;31,67;60,17;3;United States;Northern America;"SAGE Publications Inc.";"1984-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8819;28201;"Biomedical and Environmental Sciences";journal;"08953988";"Elsevier Ltd";No;No;0,661;Q2;70;169;463;5592;1057;357;2,17;33,09;47,79;0;United Kingdom;Western Europe;"Elsevier Ltd";"1988-2026";"Health, Toxicology and Mutagenesis (Q2); Public Health, Environmental and Occupational Health (Q2)";"Environmental Science; Medicine" +8820;145757;"Chemistry Education Research and Practice";journal;"17561108";"Royal Society of Chemistry";Yes;No;0,661;Q2;65;35;241;2724;511;236;1,76;77,83;60,82;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2005-2026";"Chemistry (miscellaneous) (Q2); Education (Q2)";"Chemistry; Social Sciences" +8821;23138;"Current Opinion in Cardiology";journal;"02684705, 15317080";"Lippincott Williams and Wilkins";No;No;0,661;Q2;90;76;236;3292;455;221;2,01;43,32;31,67;0;United States;Northern America;"Lippincott Williams and Wilkins";"1987-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +8822;12100155640;"Current Opinion in Supportive and Palliative Care";journal;"17514258, 17514266";"Lippincott Williams and Wilkins";No;No;0,661;Q2;59;45;136;1880;279;119;2,09;41,78;47,06;0;United States;Northern America;"Lippincott Williams and Wilkins";"2007-2026";"Critical Care and Intensive Care Medicine (Q2); Medicine (miscellaneous) (Q2); Oncology (nursing) (Q2); Oncology (Q3)";"Medicine; Nursing" +8823;21100237613;"International Journal of Performance Analysis in Sport";journal;"14748185";"Taylor and Francis Ltd.";No;No;0,661;Q2;58;134;137;5321;387;137;2,96;39,71;17,10;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)";"Health Professions; Medicine" +8824;17193;"Interventional Neuroradiology";journal;"15910199, 23852011";"SAGE Publications Inc.";No;No;0,661;Q2;48;402;681;9740;1358;650;1,96;24,23;21,40;4;Italy;Western Europe;"SAGE Publications Inc.";"1996-2026";"Cardiology and Cardiovascular Medicine (Q2); Neurology (clinical) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +8825;21100457432;"Journal of Advanced Dielectrics";journal;"2010135X, 20101368";"World Scientific";Yes;Yes;0,661;Q2;32;75;153;2728;479;151;3,68;36,37;32,00;0;Singapore;Asiatic Region;"World Scientific";"2015-2026";"Ceramics and Composites (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +8826;24219;"Scientific World Journal";journal;"23566140, 1537744X";"John Wiley and Sons Ltd";Yes;No;0,661;Q2;146;140;413;7459;1917;413;4,00;53,28;39,53;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2000-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine" +8827;21101162689;"Transactions of Atmospheric Sciences";journal;"16747097";"";No;No;0,661;Q2;24;78;232;3343;516;232;2,21;42,86;45,51;0;China;Asiatic Region;"";"2019-2025";"Atmospheric Science (Q2)";"Earth and Planetary Sciences" +8828;85329;"Proceedings - Real-Time Systems Symposium";conference and proceedings;"10528725";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,661;-;88;60;146;2142;355;140;2,01;35,70;26,03;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1983-2013, 2015-2024";"Computer Networks and Communications; Hardware and Architecture; Software";"Computer Science" +8829;147232;"International Journal of Cultural Studies";journal;"13678779, 1460356X";"SAGE Publications Ltd";No;No;0,660;Q1;60;77;139;4149;353;139;2,55;53,88;49,30;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1998-2026";"Cultural Studies (Q1)";"Social Sciences" +8830;16156;"Marriage and Family Review";journal;"15409635, 01494929";"Routledge";No;No;0,660;Q1;57;52;86;3400;165;75;1,48;65,38;54,39;0;United States;Northern America;"Routledge";"1978-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +8831;19700181401;"Music Education Research";journal;"14699893, 14613808";"Routledge";No;No;0,660;Q1;38;51;143;2544;252;137;1,60;49,88;51,19;0;United Kingdom;Western Europe;"Routledge";"2009-2026";"Music (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +8832;28812;"Nurse Educator";journal;"15389855, 03633624";"Lippincott Williams and Wilkins Ltd.";No;No;0,660;Q1;53;290;635;3852;1330;574;2,13;13,28;83,90;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1976-2026";"Fundamentals and Skills (Q1); LPN and LVN (Q1); Nursing (miscellaneous) (Q1); Review and Exam Preparation (Q1); Education (Q2)";"Nursing; Social Sciences" +8833;16832;"Biochimica et Biophysica Acta - Proteins and Proteomics";journal;"15709639, 18781454";"Elsevier B.V.";No;No;0,660;Q2;172;48;141;2746;327;140;2,28;57,21;43,58;0;Netherlands;Western Europe;"Elsevier B.V.";"2002-2026";"Analytical Chemistry (Q2); Biochemistry (Q2); Biophysics (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +8834;28590;"Biomedical Microdevices";journal;"15728781, 13872176";"Springer";No;No;0,660;Q2;110;53;126;2948;572;125;4,73;55,62;34,22;0;United States;Northern America;"Springer";"1998-2026";"Biomedical Engineering (Q2); Nanoscience and Nanotechnology (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +8835;21100201310;"ChemPlusChem";journal;"21926506";"John Wiley and Sons Inc";No;No;0,660;Q2;82;345;800;22284;2541;792;3,11;64,59;35,47;0;Germany;Western Europe;"John Wiley and Sons Inc";"2012-2026";"Chemistry (miscellaneous) (Q2)";"Chemistry" +8836;25913;"Clinical Hemorheology and Microcirculation";journal;"18758622, 13860291";"SAGE Publications Ltd";No;No;0,660;Q2;65;55;362;175;596;357;1,60;3,18;43,54;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991-2025";"Cardiology and Cardiovascular Medicine (Q2); Hematology (Q2); Physiology (Q3); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8837;21100942123;"HLRP: Health Literacy Research and Practice";journal;"24756024, 24748307";"Slack Incorporated";Yes;No;0,660;Q2;23;16;98;0;204;92;1,21;0,00;73,68;0;United States;Northern America;"Slack Incorporated";"2017-2026";"Epidemiology (Q2); Health Information Management (Q2); Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)";"Health Professions; Medicine" +8838;21101038538;"Human Nutrition and Metabolism";journal;"26661497";"Elsevier B.V.";Yes;No;0,660;Q2;26;54;146;2919;464;145;3,15;54,06;52,10;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Food Science (Q2); Nutrition and Dietetics (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Agricultural and Biological Sciences; Medicine; Nursing" +8839;21892;"Journal of Behavioral Health Services and Research";journal;"10943412, 15563308";"Springer";No;No;0,660;Q2;65;72;123;2953;220;111;1,36;41,01;70,03;0;United States;Northern America;"Springer";"1996-2026";"Health Policy (Q2); Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +8840;19700188237;"Journal of Biological Dynamics";journal;"17513766, 17513758";"Taylor and Francis Ltd.";Yes;No;0,660;Q2;50;19;104;976;285;102;2,85;51,37;39,13;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +8841;15349;"Oxford Development Studies";journal;"14699966, 13600818";"Routledge";No;No;0,660;Q2;63;28;80;1444;199;74;1,85;51,57;32,20;2;United Kingdom;Western Europe;"Routledge";"1996-2026";"Development (Q2); Geography, Planning and Development (Q2)";"Social Sciences" +8842;20579;"Revista Espanola de Cardiologia";journal;"15792242, 03008932";"Ediciones Doyma, S.L.";No;Yes;0,660;Q2;85;221;667;3737;1036;617;1,58;16,91;38,13;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"1961-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +8843;22270;"Scandinavian Journal of Surgery";journal;"17997267, 14574969";"SAGE Publications Inc.";No;No;0,660;Q2;63;68;119;2075;248;111;1,92;30,51;40,96;1;Finland;Western Europe;"SAGE Publications Inc.";"1998-2026";"Surgery (Q2)";"Medicine" +8844;144641;"Software and Systems Modeling";journal;"16191374, 16191366";"Springer Verlag";No;No;0,660;Q2;64;130;276;6974;956;234;3,48;53,65;22,75;0;Germany;Western Europe;"Springer Verlag";"2005-2026";"Modeling and Simulation (Q2); Software (Q2)";"Computer Science; Mathematics" +8845;21100197929;"Toxicological Research";journal;"19768257, 22342753";"Springer";No;No;0,660;Q2;51;53;165;3213;485;165;3,39;60,62;39,92;0;Singapore;Asiatic Region;"Springer";"2008-2026";"Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +8846;20558;"Urology";journal;"15279995, 00904295";"Elsevier Inc.";No;No;0,660;Q2;203;764;2087;9756;2892;1420;1,39;12,77;28,88;3;United States;Northern America;"Elsevier Inc.";"1973-2026";"Urology (Q2)";"Medicine" +8847;15700154701;"Vocations and Learning";journal;"1874785X, 18747868";"Springer Netherlands";Yes;No;0,660;Q2;39;24;74;1745;232;74;2,94;72,71;62,12;1;Netherlands;Western Europe;"Springer Netherlands";"2009-2026";"Education (Q2)";"Social Sciences" +8848;4700152610;"Current Diabetes Reviews";journal;"15733998, 18756417";"Bentham Science Publishers";No;No;0,660;Q3;77;70;336;5398;1016;331;3,13;77,11;43,47;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"1996, 2005-2026";"Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8849;23749;"Ancient Mesoamerica";journal;"14691787, 09565361";"Cambridge University Press";No;No;0,659;Q1;47;31;134;2477;140;133;1,10;79,90;46,58;0;United Kingdom;Western Europe;"Cambridge University Press";"1989-2026";"Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q2)";"Arts and Humanities; Social Sciences" +8850;21101118115;"Flow";journal;"26334259";"Cambridge University Press";Yes;No;0,659;Q1;14;43;109;2001;286;109;2,11;46,53;18,44;0;United Kingdom;Western Europe;"Cambridge University Press";"2021-2026";"Aerospace Engineering (Q1); Engineering (miscellaneous) (Q1); Biomedical Engineering (Q2); Fluid Flow and Transfer Processes (Q2)";"Chemical Engineering; Engineering" +8851;21100204502;"Focaal";journal;"09201297, 15585263";"Berghahn Journals";Yes;Yes;0,659;Q1;29;28;79;1320;163;73;1,98;47,14;38,24;0;United Kingdom;Western Europe;"Berghahn Journals";"2004, 2008, 2011-2025";"Anthropology (Q1)";"Social Sciences" +8852;20053;"International Journal of Public Sector Management";journal;"09513558";"Emerald Group Publishing Ltd.";No;No;0,659;Q1;74;85;128;5637;499;125;3,60;66,32;47,90;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1970, 1988-2026";"Political Science and International Relations (Q1); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Public Administration (Q2)";"Environmental Science; Social Sciences" +8853;5600152871;"International Studies in Sociology of Education";journal;"09620214, 17475066";"Routledge";No;No;0,659;Q1;44;38;104;2158;254;99;2,64;56,79;48,72;0;United Kingdom;Western Europe;"Routledge";"1991-2026";"Social Sciences (miscellaneous) (Q1); Education (Q2)";"Social Sciences" +8854;25710;"Numerical Functional Analysis and Optimization";journal;"15322467, 01630563";"Taylor and Francis Ltd.";No;No;0,659;Q1;57;34;197;1111;328;197;1,67;32,68;30,56;0;United States;Northern America;"Taylor and Francis Ltd.";"1979-1983, 1985-2026";"Control and Optimization (Q1); Analysis (Q2); Computer Science Applications (Q2); Signal Processing (Q2)";"Computer Science; Mathematics" +8855;21100200604;"Workplace Health and Safety";journal;"21650969, 21650799";"SAGE Publications Inc.";No;No;0,659;Q1;55;70;243;2306;488;192;2,00;32,94;63,89;9;United States;Northern America;"SAGE Publications Inc.";"2003-2005, 2008, 2012-2026";"Nursing (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Nursing" +8856;21101162549;"Diabetology";journal;"26734540";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,659;Q2;15;160;152;8652;477;141;2,83;54,08;52,66;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2026";"Internal Medicine (Q2); Medicine (miscellaneous) (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +8857;4700152278;"Drugs in Context";journal;"17404398, 17451981";"Bioexcel Publishing LTD";Yes;No;0,659;Q2;44;33;173;1849;475;172;2,32;56,03;40,11;0;United Kingdom;Western Europe;"Bioexcel Publishing LTD";"2006-2008, 2012-2026";"Medicine (miscellaneous) (Q2); Pharmacology (Q2); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +8858;21100239604;"Earth Science Frontiers";journal;"10052321";"Science Frontiers editorial department";No;No;0,659;Q2;62;194;603;11950;1488;602;2,50;61,60;34,74;0;China;Asiatic Region;"Science Frontiers editorial department";"2010, 2013-2026";"Geology (Q2)";"Earth and Planetary Sciences" +8859;21930;"Fish Physiology and Biochemistry";journal;"09201742, 15735168";"Springer Science and Business Media B.V.";No;No;0,659;Q2;104;201;373;14684;1286;372;3,33;73,05;45,17;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1986-2026";"Aquatic Science (Q2); Biochemistry (Q2); Medicine (miscellaneous) (Q2); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +8860;24062;"Geochemical Transactions";journal;"14674866";"BioMed Central Ltd";Yes;No;0,659;Q2;54;10;18;589;76;18;4,33;58,90;26,47;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2000-2025";"Geochemistry and Petrology (Q2)";"Earth and Planetary Sciences" +8861;27487;"Human Fertility";journal;"14647273, 17428149";"Taylor and Francis Ltd.";Yes;No;0,659;Q2;50;44;307;1832;669;280;2,07;41,64;66,31;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)";"Medicine" +8862;24286;"International Journal of Approximate Reasoning";journal;"0888613X, 18734731";"Elsevier Inc.";No;No;0,659;Q2;119;178;489;7655;1607;475;3,13;43,01;26,56;0;United States;Northern America;"Elsevier Inc.";"1987-2026";"Applied Mathematics (Q2); Artificial Intelligence (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +8863;24155;"Journal of Atmospheric Chemistry";journal;"15730662, 01677764";"Springer";No;No;0,659;Q2;80;20;37;1321;90;37;2,52;66,05;30,08;0;Netherlands;Western Europe;"Springer";"1983-2026";"Atmospheric Science (Q2); Environmental Chemistry (Q2)";"Earth and Planetary Sciences; Environmental Science" +8864;21101047090;"Journal of Bone and Joint Infection";journal;"22063552";"Copernicus Publications";Yes;No;0,659;Q2;35;59;94;2037;274;92;2,91;34,53;35,13;0;Germany;Western Europe;"Copernicus Publications";"2016-2026";"Infectious Diseases (Q2); Orthopedics and Sports Medicine (Q2); Surgery (Q2)";"Medicine" +8865;21100773851;"Journal of Gastrointestinal Oncology";journal;"20786891, 2219679X";"AME Publishing Company";Yes;No;0,659;Q2;65;238;781;7936;1600;712;1,89;33,34;36,94;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2012-2026";"Gastroenterology (Q2); Oncology (Q3)";"Medicine" +8866;29673;"Medicina del Lavoro";journal;"00257818, 25321080";"Mattioli 1885";No;No;0,659;Q2;33;46;151;1456;374;134;2,42;31,65;54,26;0;Italy;Western Europe;"Mattioli 1885";"1947-1963, 1965-2025";"Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8867;21100447128;"3 Biotech";journal;"2190572X, 21905738";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,658;Q1;102;441;1081;34322;4325;1081;3,67;77,83;40,71;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Biotechnology (Q2); Environmental Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +8868;21101028570;"Advances in Pharmacological and Pharmaceutical Sciences";journal;"26334682, 26334690";"John Wiley and Sons Ltd";Yes;No;0,658;Q1;55;48;171;3065;683;171;3,43;63,85;40,61;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2020-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Organic Chemistry (Q2); Pharmacology (medical) (Q2); Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +8869;21101049622;"Biological Theory";journal;"15555550, 15555542";"Springer Science and Business Media B.V.";No;No;0,658;Q1;42;44;82;3818;171;71;2,35;86,77;23,94;0;Germany;Western Europe;"Springer Science and Business Media B.V.";"2006-2011, 2013-2026";"History and Philosophy of Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Arts and Humanities" +8870;11600153461;"Journal of Island and Coastal Archaeology";journal;"15561828, 15564894";"Routledge";No;No;0,658;Q1;40;48;100;3797;159;97;1,67;79,10;39,41;0;United Kingdom;Western Europe;"Routledge";"2006-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1); Ecology (Q2); Oceanography (Q2)";"Arts and Humanities; Earth and Planetary Sciences; Environmental Science; Social Sciences" +8871;5700164337;"Journal of Tourism and Cultural Change";journal;"14766825, 17477654";"Routledge";No;No;0,658;Q1;46;44;112;2771;468;111;3,18;62,98;45,28;0;United Kingdom;Western Europe;"Routledge";"2003-2026";"Cultural Studies (Q1); Geography, Planning and Development (Q2); Nature and Landscape Conservation (Q2); Tourism, Leisure and Hospitality Management (Q2); Transportation (Q2)";"Business, Management and Accounting; Environmental Science; Social Sciences" +8872;27010;"Photochemistry and Photobiology";journal;"17511097, 00318655";"John Wiley and Sons Inc";No;No;0,658;Q1;153;192;466;9719;1432;432;2,98;50,62;42,05;2;United States;Northern America;"John Wiley and Sons Inc";"1962-2026";"Radiation (Q1); Medicine (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2); Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Physics and Astronomy" +8873;21101051829;"Psychology of Popular Media";journal;"26896575, 26896567";"American Psychological Association";No;No;0,658;Q1;37;42;212;2448;546;211;1,96;58,29;59,12;1;United States;Northern America;"American Psychological Association";"2020-2025";"Communication (Q1); Cultural Studies (Q1); Applied Psychology (Q2); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +8874;21100904728;"TESL-EJ";journal;"10724303";"Editorial Board TESL - EJ";Yes;Yes;0,658;Q1;18;36;164;1872;457;155;3,18;52,00;51,43;0;United States;Northern America;"Editorial Board TESL - EJ";"2018-2025";"Communication (Q1); Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +8875;5700164300;"Youth Violence and Juvenile Justice";journal;"15569330, 15412040";"SAGE Publications Inc.";No;No;0,658;Q1;63;10;47;571;89;47;1,68;57,10;39,39;0;United States;Northern America;"SAGE Publications Inc.";"2003-2026";"Law (Q1); Developmental and Educational Psychology (Q2); Health (social science) (Q2)";"Psychology; Social Sciences" +8876;21101168862;"Analysis and Sensing";journal;"26292742";"Wiley-VCH Verlag";No;No;0,658;Q2;15;70;143;5176;475;133;3,17;73,94;38,71;0;United States;Northern America;"Wiley-VCH Verlag";"2021-2026";"Analytical Chemistry (Q2); Biochemistry (Q2); Electrochemistry (Q2); Spectroscopy (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +8877;21101065167;"F and S Science";journal;"2666335X";"Elsevier Inc.";No;No;0,658;Q2;12;51;137;2080;250;120;1,79;40,78;53,25;0;United States;Northern America;"Elsevier Inc.";"2020-2026";"Embryology (Q2); Medicine (miscellaneous) (Q2); Reproductive Medicine (Q2)";"Medicine" +8878;21101183720;"Frontiers in Rehabilitation Sciences";journal;"26736861";"Frontiers Media SA";Yes;No;0,658;Q2;23;160;642;6705;1566;575;2,29;41,91;51,08;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)";"Health Professions; Medicine" +8879;21101163299;"Global Advances in Integrative Medicine and Health";journal;"27536130";"SAGE Publications Inc.";No;No;0,658;Q2;37;86;147;3668;379;140;2,18;42,65;63,72;0;United States;Northern America;"SAGE Publications Inc.";"2023-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8880;21688;"Journal of Investigative Surgery";journal;"15210553, 08941939";"Taylor and Francis Ltd.";Yes;No;0,658;Q2;52;63;360;2133;910;331;4,14;33,86;32,01;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Surgery (Q2)";"Medicine" +8881;21184;"Journal of Quality Technology";journal;"00224065";"Taylor and Francis Ltd.";No;No;0,658;Q2;102;33;95;1167;261;92;2,28;35,36;32,22;0;United States;Northern America;"Taylor and Francis Ltd.";"1969-1980, 1982-1985, 1987-1988, 1990, 1992-2026";"Industrial and Manufacturing Engineering (Q2); Management Science and Operations Research (Q2); Safety, Risk, Reliability and Quality (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences; Engineering" +8882;29221;"Physics of Plasmas";journal;"1070664X, 10897674";"American Institute of Physics";No;No;0,658;Q2;187;933;2406;44561;5400;2383;2,31;47,76;20,56;0;United States;Northern America;"American Institute of Physics";"1994-2026";"Condensed Matter Physics (Q2)";"Physics and Astronomy" +8883;200147105;"Psychogeriatrics";journal;"14798301, 13463500";"Wiley-Blackwell Publishing Ltd";No;No;0,658;Q2;51;158;407;5905;805;336;2,02;37,37;47,12;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2005-2026";"Gerontology (Q2); Psychiatry and Mental Health (Q2); Geriatrics and Gerontology (Q3)";"Medicine; Nursing" +8884;21100229165;"Research in Learning Technology";journal;"21567077, 21567069";"Association for Learning Technology";Yes;Yes;0,658;Q2;45;16;57;593;184;57;3,21;37,06;36,17;0;United Kingdom;Western Europe;"Association for Learning Technology";"2012-2025";"Computer Science Applications (Q2); Education (Q2)";"Computer Science; Social Sciences" +8885;9500154114;"Advances in Theoretical and Mathematical Physics";journal;"10950753, 10950761";"International Press, Inc.";No;No;0,657;Q1;87;29;158;1733;250;158;2,11;59,76;9,52;0;United States;Northern America;"International Press, Inc.";"1997-2025";"Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q2)";"Mathematics; Physics and Astronomy" +8886;18100156704;"International Review of Law, Computers and Technology";journal;"13600869, 13646885";"Routledge";No;No;0,657;Q1;24;48;67;3107;200;61;2,83;64,73;56,76;3;United Kingdom;Western Europe;"Routledge";"1984, 1986-1987, 1989, 1991-1995, 2009-2026";"Law (Q1); Computer Science Applications (Q2)";"Computer Science; Social Sciences" +8887;144833;"Qualitative Inquiry";journal;"15527565, 10778004";"SAGE Publications Inc.";No;No;0,657;Q1;118;133;367;6190;811;341;2,03;46,54;70,63;0;United States;Northern America;"SAGE Publications Inc.";"1995-2026";"Anthropology (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +8888;21101369103;"Quaternary Environments and Humans";journal;"29502365";"Elsevier B.V.";Yes;No;0,657;Q1;4;46;36;5119;72;35;2,00;111,28;33,18;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1)";"Arts and Humanities; Social Sciences" +8889;21691;"Rapid Prototyping Journal";journal;"13552546";"Emerald Group Publishing Ltd.";No;No;0,657;Q1;134;262;499;13075;2220;499;4,19;49,90;20,76;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1995-2026";"Mechanical Engineering (Q1); Industrial and Manufacturing Engineering (Q2)";"Engineering" +8890;15016;"Social Work Research";journal;"15456838, 10705309";"Oxford University Press";No;No;0,657;Q1;64;24;78;1037;199;67;1,49;43,21;61,19;0;United Kingdom;Western Europe;"Oxford University Press";"1994-2025";"Sociology and Political Science (Q1); Social Work (Q2)";"Social Sciences" +8891;24294;"Clinical and Experimental Dermatology";journal;"03076938, 13652230";"Oxford University Press";No;No;0,657;Q2;97;614;1441;9010;2042;743;1,30;14,67;55,68;1;United Kingdom;Western Europe;"Oxford University Press";"1976-2026";"Dermatology (Q2)";"Medicine" +8892;19700175225;"Clinical Respiratory Journal";journal;"17526981, 1752699X";"Wiley-Blackwell Publishing Ltd";Yes;No;0,657;Q2;53;107;377;3755;934;357;2,07;35,09;42,58;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2007-2026";"Pulmonary and Respiratory Medicine (Q2); Genetics (clinical) (Q3); Immunology and Allergy (Q3)";"Medicine" +8893;22029;"Dyslexia";journal;"10769242, 10990909";"John Wiley and Sons Ltd";No;No;0,657;Q2;68;31;82;2151;225;82;2,43;69,39;67,42;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1996-2026";"Developmental and Educational Psychology (Q2); Education (Q2); Experimental and Cognitive Psychology (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Psychology; Social Sciences" +8894;21101042154;"European Journal of Microbiology and Immunology";journal;"20628633";"Akademiai Kiado";No;No;0,657;Q2;22;26;69;1350;207;69;2,30;51,92;39,39;0;Hungary;Eastern Europe;"Akademiai Kiado";"2018-2025";"Microbiology (medical) (Q2); Immunology (Q3); Immunology and Allergy (Q3); Microbiology (Q3)";"Immunology and Microbiology; Medicine" +8895;17600155054;"International Journal of Chemical Engineering";journal;"16878078, 1687806X";"John Wiley and Sons Ltd";Yes;No;0,657;Q2;47;45;184;2585;820;184;3,71;57,44;36,78;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Chemical Engineering (miscellaneous) (Q2)";"Chemical Engineering" +8896;4700152490;"International Journal of Computer Assisted Radiology and Surgery";journal;"18616410, 18616429";"Springer Science and Business Media Deutschland GmbH";No;No;0,657;Q2;78;294;722;7756;2279;710;3,05;26,38;25,18;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2006-2026";"Biomedical Engineering (Q2); Computer Graphics and Computer-Aided Design (Q2); Computer Science Applications (Q2); Computer Vision and Pattern Recognition (Q2); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Surgery (Q2); Health Informatics (Q3)";"Computer Science; Engineering; Medicine" +8897;15104;"Journal of Developmental and Behavioral Pediatrics";journal;"0196206X, 15367312";"Lippincott Williams and Wilkins Ltd.";No;No;0,657;Q2;129;100;319;2846;656;301;1,49;28,46;76,25;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1980-2026";"Developmental and Educational Psychology (Q2); Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +8898;19900191609;"Journal of Operational Oceanography";journal;"17558778, 1755876X";"Taylor and Francis Ltd.";No;No;0,657;Q2;41;15;43;1068;125;43;3,13;71,20;35,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2025";"Oceanography (Q2)";"Earth and Planetary Sciences" +8899;12136;"Journal of Statistical Planning and Inference";journal;"03783758";"Elsevier B.V.";No;No;0,657;Q2;93;61;231;2060;262;230;1,14;33,77;30,99;0;Netherlands;Western Europe;"Elsevier B.V.";"1977-2026";"Applied Mathematics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +8900;19243;"Lupus";journal;"09612033, 14770962";"SAGE Publications Ltd";No;No;0,657;Q2;126;176;587;5536;1172;556;1,93;31,45;53,24;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991-2026";"Rheumatology (Q2)";"Medicine" +8901;20270;"Microbiology and Immunology";journal;"03855600, 13480421";"Wiley-Blackwell";No;No;0,657;Q2;89;61;160;2750;356;157;1,65;45,08;34,71;0;United States;Northern America;"Wiley-Blackwell";"1977-2026";"Virology (Q2); Immunology (Q3); Microbiology (Q3)";"Immunology and Microbiology" +8902;22604;"Revista Panamericana de Salud Publica/Pan American Journal of Public Health";journal;"16805348, 10204989";"Pan American Health Organization";Yes;Yes;0,657;Q2;72;117;490;3393;969;439;1,71;29,00;58,20;0;United States;Northern America;"Pan American Health Organization";"1997-2025";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8903;21100284963;"World Journal of Orthopedics";journal;"22185836";"Baishideng Publishing Group Inc";Yes;No;0,657;Q2;69;144;330;5817;820;319;2,14;40,40;25,81;1;China;Asiatic Region;"Baishideng Publishing Group Inc";"2010-2025";"Orthopedics and Sports Medicine (Q2)";"Medicine" +8904;110544;"Proceedings - ICASSP, IEEE International Conference on Acoustics, Speech and Signal Processing";conference and proceedings;"07367791";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,657;-;213;3307;7256;97008;25931;7249;3,38;29,33;28,46;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1976-1977, 1981-2025";"Electrical and Electronic Engineering; Signal Processing; Software";"Computer Science; Engineering" +8905;5700155425;"Communication Research Reports";journal;"08824096, 17464099";"Routledge";No;No;0,656;Q1;53;27;81;800;189;81;1,96;29,63;55,22;0;United Kingdom;Western Europe;"Routledge";"1988-1996, 2000-2026";"Communication (Q1)";"Social Sciences" +8906;5000158703;"Croatian Journal of Forest Engineering";journal;"18455719";"University of Zagreb Faculty of Forestry and Wood Technology";Yes;Yes;0,656;Q1;39;31;97;1524;246;97;2,42;49,16;24,17;1;Croatia;Eastern Europe;"University of Zagreb Faculty of Forestry and Wood Technology";"2005-2026";"Forestry (Q1)";"Agricultural and Biological Sciences" +8907;21100924769;"European Journal of Social Security";journal;"23992948, 13882627";"SAGE Publications Ltd";No;No;0,656;Q1;25;23;76;1026;234;76;2,96;44,61;51,52;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Sociology and Political Science (Q1); Public Administration (Q2)";"Economics, Econometrics and Finance; Social Sciences" +8908;5600153350;"International Review of Victimology";journal;"20479433, 02697580";"SAGE Publications Ltd";No;No;0,656;Q1;39;44;70;3070;186;70;2,89;69,77;68,13;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1990-2010, 2012-2026";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8909;21100807103;"Journal of Stomatology, Oral and Maxillofacial Surgery";journal;"24688509, 24687855";"Elsevier Masson s.r.l.";No;No;0,656;Q1;37;354;871;10591;2115;800;2,40;29,92;41,71;1;France;Western Europe;"Elsevier Masson s.r.l.";"2017-2026";"Oral Surgery (Q1); Otorhinolaryngology (Q2); Surgery (Q2)";"Dentistry; Medicine" +8910;4700151709;"Journal of Veterinary Cardiology";journal;"17602734, 18750834";"Elsevier B.V.";No;No;0,656;Q1;53;76;201;1843;325;196;1,49;24,25;55,10;0;Netherlands;Western Europe;"Elsevier B.V.";"1999-2026";"Veterinary (miscellaneous) (Q1); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Veterinary" +8911;18078;"Robotica";journal;"02635747, 14698668";"Cambridge University Press";No;No;0,656;Q1;82;212;636;9104;2167;629;3,63;42,94;22,69;0;United Kingdom;Western Europe;"Cambridge University Press";"1983-2026";"Computational Mechanics (Q1); Mathematics (miscellaneous) (Q1); Artificial Intelligence (Q2); Computer Science Applications (Q2); Computer Vision and Pattern Recognition (Q2); Control and Optimization (Q2); Control and Systems Engineering (Q2); Mechanical Engineering (Q2); Modeling and Simulation (Q2); Rehabilitation (Q2); Software (Q2)";"Computer Science; Engineering; Mathematics; Medicine" +8912;18829;"Scandinavian Journal of Occupational Therapy";journal;"16512014, 11038128";"Springer International Publishing";Yes;No;0,656;Q1;56;57;242;2770;620;241;2,25;48,60;79,89;1;United Kingdom;Western Europe;"Springer International Publishing";"1994-2025";"Occupational Therapy (Q1); Public Health, Environmental and Occupational Health (Q2)";"Health Professions; Medicine" +8913;19623;"Archives of Microbiology";journal;"1432072X, 03028933";"Springer Science and Business Media Deutschland GmbH";No;No;0,656;Q2;129;343;1562;29208;5555;1556;3,75;85,15;43,26;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1974-2026";"Medicine (miscellaneous) (Q2); Biochemistry (Q3); Genetics (Q3); Microbiology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +8914;4000148703;"British Journal of Learning Disabilities";journal;"14683156, 13544187";"Wiley-Blackwell Publishing Ltd";No;No;0,656;Q2;50;60;172;2760;423;157;2,44;46,00;72,20;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Pediatrics (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Nursing" +8915;25890;"Discrete Applied Mathematics";journal;"0166218X";"Elsevier B.V.";No;No;0,656;Q2;99;463;1163;11436;1600;1155;1,34;24,70;32,75;0;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Applied Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +8916;145556;"International Journal of Sustainable Energy";journal;"1478646X, 14786451";"Taylor and Francis Ltd.";Yes;No;0,656;Q2;48;59;241;3635;919;240;4,90;61,61;31,31;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003, 2005-2026";"Energy (miscellaneous) (Q2); Fluid Flow and Transfer Processes (Q2); Fuel Technology (Q2); Process Chemistry and Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Chemical Engineering; Energy" +8917;21100840144;"Journal of Circulating Biomarkers";journal;"18494544";"AboutScience Srl";Yes;No;0,656;Q2;22;8;20;283;67;18;2,58;35,38;49,15;0;Italy;Western Europe;"AboutScience Srl";"2014-2025";"Biochemistry (medical) (Q2); Clinical Biochemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8918;27622;"Journal of Perinatal Medicine";journal;"03005577, 16193997";"Walter de Gruyter GmbH";Yes;No;0,656;Q2;85;198;489;6850;866;442;1,64;34,60;56,62;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1973-2026";"Obstetrics and Gynecology (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +8919;19700175023;"Journal of Toxicology";journal;"16878205, 16878191";"John Wiley and Sons Ltd";Yes;No;0,656;Q2;53;43;90;2067;317;90;2,92;48,07;37,85;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Pharmacology (Q2); Toxicology (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +8920;28554;"Soft Computing";journal;"14327643, 14337479";"Springer Science and Business Media Deutschland GmbH";No;No;0,656;Q2;130;349;2931;16570;11964;2923;4,07;47,48;28,40;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2000, 2003-2026";"Geometry and Topology (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +8921;21100970323;"Sustainable and Resilient Infrastructure";journal;"23789689, 23789697";"Taylor and Francis Ltd.";No;No;0,656;Q2;34;63;154;4172;585;148;3,91;66,22;26,19;1;United States;Northern America;"Taylor and Francis Ltd.";"2016-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Geography, Planning and Development (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering; Social Sciences" +8922;12220;"Journal of Muscle Research and Cell Motility";journal;"15732657, 01424319";"Springer Science and Business Media Deutschland GmbH";No;No;0,656;Q3;73;36;65;2431;153;63;2,47;67,53;44,17;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1963-1964, 1980-2026";"Biochemistry (Q3); Cell Biology (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology" +8923;24734;"American Journal of Evaluation";journal;"10982140, 15570878";"SAGE Publications Inc.";No;No;0,655;Q1;74;39;120;1752;178;102;1,47;44,92;66,29;0;United States;Northern America;"SAGE Publications Inc.";"1981-2026";"Sociology and Political Science (Q1); Business and International Management (Q2); Education (Q2); Health (social science) (Q2); Social Psychology (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Psychology; Social Sciences" +8924;100147035;"Criminal Justice Review";journal;"15563839, 07340168";"SAGE Publications Inc.";No;No;0,655;Q1;49;38;79;2654;194;78;2,72;69,84;52,27;1;United States;Northern America;"SAGE Publications Inc.";"1976-2026";"Law (Q1)";"Social Sciences" +8925;13603;"American Journal of Otolaryngology - Head and Neck Medicine and Surgery";journal;"1532818X, 01960709";"W.B. Saunders";Yes;No;0,655;Q2;77;225;1106;6126;2044;1012;1,76;27,23;37,95;0;United States;Northern America;"W.B. Saunders";"1979-2026";"Otorhinolaryngology (Q2)";"Medicine" +8926;21100228104;"Applied and Environmental Soil Science";journal;"16877667, 16877675";"John Wiley and Sons Ltd";Yes;No;0,655;Q2;41;55;155;3718;592;155;3,21;67,60;28,91;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2026";"Earth-Surface Processes (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +8927;4000148010;"Clinics";journal;"19805322, 18075932";"Universidade de Sao Paulo. Museu de Zoologia";Yes;No;0,655;Q2;87;300;526;9827;1196;444;2,14;32,76;45,13;2;Brazil;Latin America;"Universidade de Sao Paulo. Museu de Zoologia";"1945-1946, 2005-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8928;21100887623;"Comprehensive Results in Social Psychology";journal;"23743611";"Taylor and Francis Ltd.";No;No;0,655;Q2;16;3;10;149;21;10;1,60;49,67;67,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2018, 2020-2023, 2025-2026";"Social Psychology (Q2)";"Psychology" +8929;5000153703;"Computational and Applied Mathematics";journal;"18070302, 22383603";"Springer Nature";Yes;Yes;0,655;Q2;58;434;1236;16567;3166;1236;2,45;38,17;30,19;0;Switzerland;Western Europe;"Springer Nature";"2003-2026";"Applied Mathematics (Q2); Computational Mathematics (Q2); Modeling and Simulation (Q2)";"Mathematics" +8930;21101021074;"Current Transplantation Reports";journal;"21963029";"Springer International Publishing AG";No;No;0,655;Q2;33;40;103;2116;193;103;1,46;52,90;38,25;0;United States;Northern America;"Springer International Publishing AG";"2014-2026";"Hepatology (Q2); Nephrology (Q2); Surgery (Q2); Transplantation (Q2); Immunology (Q3)";"Immunology and Microbiology; Medicine" +8931;23205;"Expert Review of Cardiovascular Therapy";journal;"17448344, 14779072";"Taylor and Francis Ltd.";No;No;0,655;Q2;68;90;245;5273;547;210;2,36;58,59;23,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +8932;12100157214;"Geologica Belgica";journal;"13748505, 20341954";"Geologica Belgica";Yes;Yes;0,655;Q2;29;10;27;732;42;26;1,60;73,20;13,51;0;Belgium;Western Europe;"Geologica Belgica";"2007-2025";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +8933;25997;"International Journal of Hematology";journal;"09255710, 18653774";"Springer";No;No;0,655;Q2;92;246;622;6503;1053;574;1,71;26,43;26,24;1;Japan;Asiatic Region;"Springer";"1991-2026";"Hematology (Q2)";"Medicine" +8934;20949;"Journal of Applied Mechanics";journal;"00218936, 15289036";"American Society of Mechanical Engineers (ASME)";No;No;0,655;Q2;119;90;377;3786;982;373;2,59;42,07;22,63;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1933, 1935-2026";"Condensed Matter Physics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Physics and Astronomy" +8935;21101196402;"River";journal;"27504867";"Wiley-VCH Verlag";Yes;No;0,655;Q2;10;40;102;1932;301;96;2,21;48,30;38,30;0;United States;Northern America;"Wiley-VCH Verlag";"2022-2026";"Water Science and Technology (Q2)";"Environmental Science" +8936;15611;"Agroforestry Systems";journal;"15729680, 01674366";"Springer Science and Business Media B.V.";No;No;0,654;Q1;104;272;413;18120;1441;410;3,51;66,62;33,05;4;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1982-2026";"Agronomy and Crop Science (Q1); Forestry (Q1)";"Agricultural and Biological Sciences" +8937;12163;"Brain and Cognition";journal;"10902147, 02782626";"Academic Press Inc.";No;No;0,654;Q1;147;64;169;5225;394;164;2,02;81,64;47,12;1;United States;Northern America;"Academic Press Inc.";"1982-2026";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2); Neuropsychology and Physiological Psychology (Q2); Cognitive Neuroscience (Q3)";"Arts and Humanities; Neuroscience; Psychology" +8938;147225;"Computers in the Schools";journal;"07380569, 15287033";"Routledge";No;No;0,654;Q1;41;36;81;1674;319;77;4,82;46,50;42,39;0;United States;Northern America;"Routledge";"1984-1997, 1999, 2001-2026";"Library and Information Sciences (Q1); Computer Science (miscellaneous) (Q2); Education (Q2)";"Computer Science; Social Sciences" +8939;19600163000;"Inquiry (United Kingdom)";journal;"15023923, 0020174X";"Routledge";No;No;0,654;Q1;47;316;514;12842;629;510;1,22;40,64;22,25;0;United Kingdom;Western Europe;"Routledge";"1958-2026";"Philosophy (Q1); Health Policy (Q2)";"Arts and Humanities; Medicine" +8940;21100873594;"International Journal of Sport Communication";journal;"19363907, 19363915";"Human Kinetics Publishers Inc.";No;No;0,654;Q1;22;45;127;3062;405;122;2,91;68,04;31,43;0;United Kingdom;Western Europe;"Human Kinetics Publishers Inc.";"2008, 2018-2026";"Communication (Q1); Business and International Management (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +8941;21101052765;"Journal of Criminology";journal;"26338076, 26338084";"SAGE Publications Ltd";No;No;0,654;Q1;52;47;87;2821;263;84;3,07;60,02;55,81;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2021-2026";"Law (Q1)";"Social Sciences" +8942;12981;"Kybernetes";journal;"0368492X";"Emerald Publishing";No;No;0,654;Q1;65;444;751;31971;3554;746;4,87;72,01;37,78;0;United Kingdom;Western Europe;"Emerald Publishing";"1972-2026";"Engineering (miscellaneous) (Q1); Library and Information Sciences (Q1); Social Sciences (miscellaneous) (Q1); Artificial Intelligence (Q2); Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Human-Computer Interaction (Q2); Information Systems (Q2); Information Systems and Management (Q2); Management Information Systems (Q2); Management Science and Operations Research (Q2); Software (Q2); Strategy and Management (Q2); Theoretical Computer Science (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering; Mathematics; Social Sciences" +8943;12318;"Optical Materials";journal;"09253467";"Elsevier B.V.";No;No;0,654;Q1;136;968;4212;47452;18347;4208;4,37;49,02;32,76;0;Netherlands;Western Europe;"Elsevier B.V.";"1992-2026";"Inorganic Chemistry (Q1); Atomic and Molecular Physics, and Optics (Q2); Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2); Spectroscopy (Q2)";"Chemistry; Computer Science; Engineering; Materials Science; Physics and Astronomy" +8944;21100199539;"Politica Criminal";journal;"07183399";"Centro Estudios Derecho Penal";Yes;Yes;0,654;Q1;13;43;103;2617;58;103;0,55;60,86;39,13;0;Chile;Latin America;"Centro Estudios Derecho Penal";"2009-2025";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8945;21101284705;"Applied Nano";journal;"26733501";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,654;Q2;14;30;51;1590;248;49;3,92;53,00;28,37;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Chemical Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Chemical Engineering; Materials Science" +8946;12700154702;"Biofuels, Bioproducts and Biorefining";journal;"1932104X, 19321031";"John Wiley and Sons Ltd";No;No;0,654;Q2;114;171;386;12245;1690;376;4,19;71,61;37,87;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2007-2026";"Renewable Energy, Sustainability and the Environment (Q2); Bioengineering (Q3)";"Chemical Engineering; Energy" +8947;19400158822;"Cardiovascular Intervention and Therapeutics";journal;"18684297, 18684300";"Springer";Yes;No;0,654;Q2;33;167;277;2945;530;206;2,33;17,63;11,80;0;Japan;Asiatic Region;"Springer";"2010-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +8948;21101047058;"Electronic Structure";journal;"25161075";"IOP Publishing Ltd.";No;No;0,654;Q2;21;30;163;1984;444;157;2,29;66,13;22,03;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2019-2026";"Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Electrochemistry (Q3)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +8949;26578;"Geometriae Dedicata";journal;"15729168, 00465755";"Springer Netherlands";No;No;0,654;Q2;49;94;290;2126;160;290;0,53;22,62;27,63;0;Netherlands;Western Europe;"Springer Netherlands";"1972-2026";"Geometry and Topology (Q2)";"Mathematics" +8950;21100925825;"Investigations in Mathematics Learning";journal;"19477503, 24727466";"Routledge";No;No;0,654;Q2;17;32;61;1928;112;59;1,68;60,25;62,67;0;United States;Northern America;"Routledge";"2008-2026";"Education (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics; Social Sciences" +8951;5800207405;"Journal of Early Childhood Research";journal;"1476718X, 17412927";"SAGE Publications Ltd";No;No;0,654;Q2;42;47;119;2287;340;119;2,64;48,66;76,19;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2003-2026";"Developmental and Educational Psychology (Q2); Education (Q2); Health (social science) (Q2)";"Psychology; Social Sciences" +8952;14850;"Journal of International Development";journal;"10991328, 09541748";"John Wiley and Sons Ltd";No;No;0,654;Q2;86;95;342;6938;888;336;2,46;73,03;36,41;5;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1989-2026";"Development (Q2); Geography, Planning and Development (Q2)";"Social Sciences" +8953;21100899013;"Sleep Medicine: X";journal;"25901427";"Elsevier B.V.";Yes;No;0,654;Q2;15;28;85;996;219;75;2,32;35,57;57,24;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +8954;24495;"Wildlife Biology";journal;"1903220X, 09096396";"Nordic Council for Wildlife Research";Yes;No;0,654;Q2;69;152;127;10277;291;126;2,34;67,61;34,03;6;Denmark;Western Europe;"Nordic Council for Wildlife Research";"1995-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +8955;21101109683;"Neurotrauma Reports";journal;"2689288X";"Mary Ann Liebert Inc.";Yes;No;0,654;Q3;18;80;236;4207;490;235;1,86;52,59;41,87;0;United States;Northern America;"Mary Ann Liebert Inc.";"2020-2025";"Cellular and Molecular Neuroscience (Q3); Developmental Neuroscience (Q3)";"Neuroscience" +8956;16562;"Armed Forces and Society";journal;"15560848, 0095327X";"SAGE Publications Inc.";No;No;0,653;Q1;54;114;162;7049;366;145;2,37;61,83;41,03;0;United States;Northern America;"SAGE Publications Inc.";"1974-2026";"Safety Research (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8957;21100843003;"Clinical and Experimental Dental Research";journal;"20574347";"John Wiley & Sons Inc.";Yes;No;0,653;Q1;33;194;494;8126;1437;494;2,68;41,89;43,21;0;United States;Northern America;"John Wiley & Sons Inc.";"2015-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +8958;12898;"Crop Protection";journal;"02612194";"Elsevier B.V.";No;No;0,653;Q1;134;368;782;19724;2828;779;3,58;53,60;36,39;4;United Kingdom;Western Europe;"Elsevier B.V.";"1982-2026";"Agronomy and Crop Science (Q1)";"Agricultural and Biological Sciences" +8959;19700188322;"Journal of Human Rights";journal;"14754843, 14754835";"Carfax Publishers";No;No;0,653;Q1;32;38;117;2706;248;116;1,96;71,21;64,62;2;United Kingdom;Western Europe;"Carfax Publishers";"2010-2026";"Law (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +8960;21100856030;"Veterinary Sciences";journal;"23067381";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,653;Q1;47;1213;2086;68132;6052;2075;2,81;56,17;46,70;5;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2014-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +8961;18662;"ACM Transactions on Design Automation of Electronic Systems";journal;"10844309, 15577309";"Association for Computing Machinery";No;No;0,653;Q2;61;110;279;5593;946;272;3,36;50,85;23,45;0;United States;Northern America;"Association for Computing Machinery";"1996-2026";"Computer Graphics and Computer-Aided Design (Q2); Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +8962;16890;"Bioelectrochemistry";journal;"15675394, 1878562X";"Elsevier B.V.";No;No;0,653;Q2;118;207;612;11009;2970;607;4,95;53,18;44,66;0;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Biophysics (Q2); Medicine (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2); Electrochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine" +8963;14858;"Biophysical Chemistry";journal;"03014622, 18734200";"Elsevier B.V.";No;No;0,653;Q2;112;100;351;6288;912;345;2,26;62,88;40,29;0;Netherlands;Western Europe;"Elsevier B.V.";"1973-2026";"Biophysics (Q2); Organic Chemistry (Q2); Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +8964;14857;"Cerebrovascular Diseases";journal;"14219786, 10159770";"S. Karger AG";No;No;0,653;Q2;126;194;264;5785;596;255;2,28;29,82;37,60;1;Switzerland;Western Europe;"S. Karger AG";"1987-1988, 1991-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Neurology (Q3)";"Medicine; Neuroscience" +8965;21100856757;"Chemical Biology Letters";journal;"23479825";"ScienceIn Publishing";Yes;No;0,653;Q2;18;23;75;1873;373;72;7,12;81,43;38,96;0;India;Asiatic Region;"ScienceIn Publishing";"2014-2025";"Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Biochemistry (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8966;21101065235;"Clinical Parkinsonism and Related Disorders";journal;"25901125";"Elsevier Ltd";Yes;No;0,653;Q2;20;117;164;3245;376;143;2,34;27,74;38,82;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Neurology (clinical) (Q2); Cellular and Molecular Neuroscience (Q4)";"Medicine; Neuroscience" +8967;22041;"Emotional and Behavioural Difficulties";journal;"17412692, 13632752";"Routledge";No;No;0,653;Q2;39;35;65;1772;161;56;2,00;50,63;72,16;1;United Kingdom;Western Europe;"Routledge";"1996-2026";"Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +8968;5700155920;"Focus on Autism and Other Developmental Disabilities";journal;"10883576, 15384829";"SAGE Publications Inc.";No;No;0,653;Q2;86;28;70;1168;170;70;2,43;41,71;67,94;0;United States;Northern America;"SAGE Publications Inc.";"1986-2026";"Neurology (clinical) (Q2); Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2); Cognitive Neuroscience (Q3); Neurology (Q3)";"Medicine; Neuroscience" +8969;6000161177;"HERD";journal;"21675112, 19375867";"SAGE Publications Inc.";No;No;0,653;Q2;46;64;275;2615;668;245;2,43;40,86;65,00;0;United States;Northern America;"SAGE Publications Inc.";"2007-2026";"Critical Care and Intensive Care Medicine (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +8970;21100905985;"IEEE Journal on Exploratory Solid-State Computational Devices and Circuits";journal;"23299231";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,653;Q2;30;27;75;780;238;68;3,00;28,89;20,65;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015-2026";"Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Hardware and Architecture (Q2)";"Computer Science; Engineering; Materials Science" +8971;20809;"Immunological Investigations";journal;"15324311, 08820139";"Taylor & Francis Group LLC Philadelphia";No;No;0,653;Q2;60;79;289;4868;762;286;2,41;61,62;48,50;0;United States;Northern America;"Taylor & Francis Group LLC Philadelphia";"1972-2026";"Medicine (miscellaneous) (Q2); Immunology (Q3)";"Immunology and Microbiology; Medicine" +8972;29238;"International Research in Geographical and Environmental Education";journal;"17477611, 10382046";"Taylor and Francis Ltd.";No;No;0,653;Q2;42;57;83;2964;295;71;3,67;52,00;51,20;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2025";"Education (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +8973;19700182738;"Journal of Foot and Ankle Research";journal;"17571146";"John Wiley and Sons Inc";Yes;No;0,653;Q2;63;84;244;3310;668;235;2,50;39,40;43,59;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2008-2026";"Orthopedics and Sports Medicine (Q2)";"Medicine" +8974;17870;"Nondestructive Testing and Evaluation";journal;"14772671, 10589759";"Taylor and Francis Ltd.";No;No;0,653;Q2;43;604;261;25960;1414;259;5,74;42,98;27,03;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-1998, 2000-2003, 2005-2026";"Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Engineering; Materials Science; Physics and Astronomy" +8975;14300154706;"Peer-to-Peer Networking and Applications";journal;"19366450, 19366442";"Springer New York";No;No;0,653;Q2;60;328;567;15093;2321;567;4,28;46,02;32,42;0;United States;Northern America;"Springer New York";"2009-2026";"Computer Networks and Communications (Q2); Software (Q2)";"Computer Science" +8976;92266;"Scientific Drilling";journal;"18163459, 18168957";"Copernicus Publications";Yes;Yes;0,653;Q2;32;3;36;137;78;36;1,83;45,67;32,26;0;Germany;Western Europe;"Copernicus Publications";"2005-2026";"Energy Engineering and Power Technology (Q2); Mechanical Engineering (Q2)";"Energy; Engineering" +8977;13176;"Tijdschrift Voor Economische en Sociale Geografie";journal;"0040747X, 14679663";"Wiley-Blackwell Publishing Ltd";No;No;0,653;Q2;77;64;129;3793;317;110;2,41;59,27;35,42;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1967-2026";"Economics and Econometrics (Q2); Geography, Planning and Development (Q2)";"Economics, Econometrics and Finance; Social Sciences" +8978;27050;"Australian Journal of Grape and Wine Research";journal;"13227130, 17550238";"John Wiley and Sons Inc";Yes;No;0,652;Q1;100;28;113;1789;383;112;3,69;63,89;36,43;0;Australia;Pacific Region;"John Wiley and Sons Inc";"1995-2026";"Horticulture (Q1)";"Agricultural and Biological Sciences" +8979;14700154701;"Bioenergy Research";journal;"19391242, 19391234";"Springer";No;No;0,652;Q1;82;128;538;8478;2490;533;4,33;66,23;32,69;0;United States;Northern America;"Springer";"2008-2026";"Agronomy and Crop Science (Q1); Energy (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Agricultural and Biological Sciences; Energy" +8980;21100228106;"AIDS Research and Treatment";journal;"20901240, 20901259";"John Wiley and Sons Ltd";Yes;No;0,652;Q2;37;33;29;1641;60;29;2,06;49,73;33,15;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Dermatology (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2); Immunology and Allergy (Q3)";"Medicine" +8981;26779;"Artificial Organs";journal;"15251594, 0160564X";"John Wiley and Sons Inc";No;No;0,652;Q2;92;241;642;6772;1519;559;2,36;28,10;30,47;0;United States;Northern America;"John Wiley and Sons Inc";"1977-2026";"Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2); Bioengineering (Q3); Biomaterials (Q3)";"Chemical Engineering; Engineering; Materials Science; Medicine" +8982;21101150412;"Computational Journal of Mathematical and Statistical Sciences";journal;"29743435, 29743443";"";Yes;No;0,652;Q2;14;29;41;1137;179;41;4,43;39,21;27,03;0;Egypt;Africa/Middle East;"";"2022-2025";"Computational Mathematics (Q2); Modeling and Simulation (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +8983;21101280286;"Environmental Data Science";journal;"26344602";"Cambridge University Press";Yes;No;0,652;Q2;11;67;99;3873;298;95;2,65;57,81;26,95;3;United Kingdom;Western Europe;"Cambridge University Press";"2022-2026";"Artificial Intelligence (Q2); Environmental Science (miscellaneous) (Q2); Statistics and Probability (Q2); Global and Planetary Change (Q3)";"Computer Science; Environmental Science; Mathematics" +8984;21100361200;"Healthcare";journal;"22130772, 22130764";"Elsevier B.V.";Yes;No;0,652;Q2;35;15;79;442;117;77;1,21;29,47;50,52;0;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Health Policy (Q2)";"Medicine" +8985;4700151730;"International Journal of Green Energy";journal;"15435075, 15435083";"Taylor and Francis Ltd.";No;No;0,652;Q2;64;269;498;15077;1955;497;4,17;56,05;28,46;1;United States;Northern America;"Taylor and Francis Ltd.";"2005-2026";"Renewable Energy, Sustainability and the Environment (Q2)";"Energy" +8986;29927;"Japanese Journal of Clinical Oncology";journal;"03682811, 14653621";"Oxford University Press";No;No;0,652;Q2;102;203;555;5897;1188;531;2,20;29,05;16,59;0;United Kingdom;Western Europe;"Oxford University Press";"1971-2026";"Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8987;18566;"Journal of Histochemistry and Cytochemistry";journal;"00221554, 15515044";"Histochemical Society Inc.";No;No;0,652;Q2;146;29;133;1262;207;123;1,30;43,52;39,19;0;United States;Northern America;"Histochemical Society Inc.";"1953-2026";"Anatomy (Q2); Histology (Q2)";"Medicine" +8988;12260;"Journal of Pediatric Orthopaedics";journal;"15392570, 02716798";"Lippincott Williams and Wilkins";No;No;0,652;Q2;120;310;850;7330;1504;793;1,79;23,65;30,08;0;United States;Northern America;"Lippincott Williams and Wilkins";"1981-2026";"Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +8989;19386;"Seminars in Pediatric Neurology";journal;"10719091, 15580776";"W.B. Saunders";No;No;0,652;Q2;75;40;120;2311;303;98;2,08;57,78;50,00;0;United States;Northern America;"W.B. Saunders";"1994-2026";"Neurology (clinical) (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +8990;19700176021;"Oncology Letters";journal;"17921082, 17921074";"Spandidos Publications";No;No;0,652;Q3;97;566;1535;30001;3569;1528;2,12;53,01;40,38;0;Greece;Western Europe;"Spandidos Publications";"2010-2026";"Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +8991;21100886395;"Journal of International Dispute Settlement";journal;"20403585, 20403593";"Oxford University Press";No;No;0,651;Q1;30;62;88;8534;105;81;1,31;137,65;40,54;2;United Kingdom;Western Europe;"Oxford University Press";"2010-2026";"Law (Q1); Political Science and International Relations (Q1)";"Social Sciences" +8992;11200153561;"Journal of Oral Biosciences";journal;"13490079, 18803865";"Japanese Association for Oral Biology";No;No;0,651;Q1;34;111;201;4262;574;198;2,24;38,40;36,24;0;Japan;Asiatic Region;"Japanese Association for Oral Biology";"2004-2026";"Dentistry (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Dentistry; Medicine" +8993;21100278308;"Microscopy (Oxford, England)";journal;"20505701, 20505698";"Oxford University Press";No;No;0,651;Q1;63;51;175;1905;328;168;1,77;37,35;12,24;0;United Kingdom;Western Europe;"Oxford University Press";"1953-1958, 1960-1999, 2005, 2013-2026";"Instrumentation (Q1); Radiology, Nuclear Medicine and Imaging (Q2); Structural Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Physics and Astronomy" +8994;13858;"Research in Engineering Design - Theory, Applications, and Concurrent Engineering";journal;"14356066, 09349839";"Springer London";No;No;0,651;Q1;81;20;66;1181;255;63;4,49;59,05;25,40;0;United Kingdom;Western Europe;"Springer London";"1989-2026";"Architecture (Q1); Civil and Structural Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +8995;21100932762;"Advanced Therapeutics";journal;"23663987";"Wiley-Blackwell Publishing Ltd";No;No;0,651;Q2;54;145;426;15936;1353;422;3,10;109,90;43,22;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2018-2026";"Biochemistry (medical) (Q2); Medicine (miscellaneous) (Q2); Pharmaceutical Science (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2); Genetics (clinical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +8996;6400153136;"BioPsychoSocial Medicine";journal;"17510759";"BioMed Central Ltd";Yes;No;0,651;Q2;48;26;89;1057;220;85;2,23;40,65;41,09;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2007-2026";"Psychiatry and Mental Health (Q2); Psychology (miscellaneous) (Q2); Social Psychology (Q2); Biological Psychiatry (Q3)";"Medicine; Neuroscience; Psychology" +8997;14103;"Development Policy Review";journal;"09506764, 14677679";"Wiley-Blackwell Publishing Ltd";No;No;0,651;Q2;80;63;229;3741;638;226;2,39;59,38;42,34;6;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1966, 1968-1970, 1972-2026";"Development (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +8998;21101047722;"Earth and Planetary Physics";journal;"20976860, 20963955";"";Yes;No;0,651;Q2;32;107;191;5219;450;175;2,68;48,78;33,53;0;China;Asiatic Region;"";"2017-2026";"Astronomy and Astrophysics (Q2); Atmospheric Science (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +8999;5000154607;"Hellenic Journal of Cardiology";journal;"22415955, 11099666";"Hellenic Cardiological Society";Yes;Yes;0,651;Q2;40;145;283;4410;535;203;1,91;30,41;30,94;0;Greece;Western Europe;"Hellenic Cardiological Society";"1993, 2005-2006, 2008, 2012-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +9000;13917;"Indian Journal of Ophthalmology";journal;"19983689, 03014738";"Wolters Kluwer Medknow Publications";Yes;Yes;0,651;Q2;85;495;2667;10662;3836;1838;1,57;21,54;48,16;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1946-1947, 1971-2026";"Ophthalmology (Q2)";"Medicine" +9001;21101258011;"Journal of epidemiology and population health";journal;"29504333";"Elsevier Masson s.r.l.";No;No;0,651;Q2;42;42;134;942;205;104;1,72;22,43;44,87;0;France;Western Europe;"Elsevier Masson s.r.l.";"2024-2026";"Epidemiology (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9002;17500155120;"Journal of Neuropsychology";journal;"17486653, 17486645";"Wiley-Blackwell";No;No;0,651;Q2;47;60;110;3432;253;108;2,09;57,20;52,79;0;United States;Northern America;"Wiley-Blackwell";"2007-2026";"Neuropsychology and Physiological Psychology (Q2); Behavioral Neuroscience (Q3); Cognitive Neuroscience (Q3)";"Neuroscience; Psychology" +9003;21100897164;"Micro and Nano Engineering";journal;"25900072";"Elsevier B.V.";Yes;No;0,651;Q2;22;46;187;1455;766;186;4,71;31,63;27,80;0;Netherlands;Western Europe;"Elsevier B.V.";"2018-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Surfaces, Coatings and Films (Q2)";"Engineering; Materials Science; Physics and Astronomy" +9004;17524;"Neurologia i Neurochirurgia Polska";journal;"00283843, 18974260";"Via Medica";No;No;0,651;Q2;38;78;244;3065;510;172;2,25;39,29;58,21;0;Poland;Eastern Europe;"Via Medica";"1967-2025";"Surgery (Q2); Neurology (clinical) (Q3)";"Medicine" +9005;21100203705;"Optical Materials Express";journal;"21593930";"Optica Publishing Group (formerly OSA)";Yes;No;0,651;Q2;94;235;910;12397;2583;908;2,62;52,75;23,68;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"2011-2026";"Electronic, Optical and Magnetic Materials (Q2)";"Materials Science" +9006;21101246777;"Precision Nutrition";journal;"29938139, 25639021";"Lippincott Williams and Wilkins";Yes;Yes;0,651;Q2;8;46;72;2154;150;71;1,60;46,83;48,15;0;United States;Northern America;"Lippincott Williams and Wilkins";"2022-2026";"Nutrition and Dietetics (Q2)";"Nursing" +9007;18132;"River Research and Applications";journal;"15351459, 15351467";"John Wiley and Sons Ltd";No;No;0,651;Q2;120;159;459;11554;1112;452;2,57;72,67;29,85;3;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1996, 1998-2026";"Environmental Chemistry (Q2); Environmental Science (miscellaneous) (Q2); Water Science and Technology (Q2)";"Environmental Science" +9008;21100235631;"Scandinavian Journal of Urology";journal;"21681813, 21681805";"Medical Journals Sweden AB";Yes;No;0,651;Q2;65;41;164;862;274;127;1,91;21,02;41,05;0;Sweden;Western Europe;"Medical Journals Sweden AB";"2013-2026";"Nephrology (Q2); Urology (Q2)";"Medicine" +9009;24563;"Water Environment Research";journal;"10614303, 15547531";"";No;No;0,651;Q2;94;240;443;14785;1263;442;2,97;61,60;35,74;1;United States;Northern America;"";"1992-2026";"Ecological Modeling (Q2); Environmental Chemistry (Q2); Pollution (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2)";"Environmental Science" +9010;21100927219;"Acute and Critical Care";journal;"25866060, 25866052";"Korean Society of Critical Care Medicine";Yes;Yes;0,650;Q1;23;58;226;1667;508;194;2,13;28,74;39,10;0;South Korea;Asiatic Region;"Korean Society of Critical Care Medicine";"2018-2025";"Critical Care Nursing (Q1); Critical Care and Intensive Care Medicine (Q2)";"Medicine; Nursing" +9011;29422;"Aquaculture International";journal;"1573143X, 09676120";"Springer Science and Business Media Deutschland GmbH";No;No;0,650;Q1;82;685;884;46895;3402;884;3,95;68,46;37,69;4;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1993-2026";"Agronomy and Crop Science (Q1); Aquatic Science (Q2)";"Agricultural and Biological Sciences" +9012;29156;"Boston University Law Review";journal;"00068047";"Boston University Law Review";No;No;0,650;Q1;44;44;162;7138;257;151;1,10;162,23;67,74;0;United States;Northern America;"Boston University Law Review";"1973-1977, 1987, 1989-1990, 1992, 1994, 1996-2025";"Law (Q1)";"Social Sciences" +9013;21100869492;"Chinese Journal of Sociology";journal;"2057150X, 20571518";"SAGE Publications Ltd";No;No;0,650;Q1;19;25;69;1664;160;68;2,07;66,56;32,43;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2015-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +9014;23444;"Journal of Animal Physiology and Animal Nutrition";journal;"14390396, 09312439";"Wiley-Blackwell Publishing Ltd";No;No;0,650;Q1;83;132;431;8310;1466;431;3,26;62,95;39,97;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1983, 1986-2026";"Animal Science and Zoology (Q1); Food Animals (Q1)";"Agricultural and Biological Sciences; Veterinary" +9015;23723;"Journal of Women and Aging";journal;"15407322, 08952841";"Routledge";No;No;0,650;Q1;45;30;138;1619;302;133;2,24;53,97;75,61;0;United States;Northern America;"Routledge";"1989-2026";"Gender Studies (Q1); Geriatrics and Gerontology (Q3)";"Medicine; Social Sciences" +9016;20000195092;"Tel Aviv";journal;"03344355, 20404786";"Maney Publishing";No;No;0,650;Q1;39;10;39;714;49;38;1,31;71,40;46,15;0;United Kingdom;Western Europe;"Maney Publishing";"1974-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +9017;23213;"Annals of the Institute of Statistical Mathematics";journal;"00203157, 15729052";"Springer Netherlands";No;No;0,650;Q2;54;53;118;1899;149;115;1,31;35,83;29,17;0;Netherlands;Western Europe;"Springer Netherlands";"1949-1957, 1959-2026";"Statistics and Probability (Q2)";"Mathematics" +9018;12888;"Chinese Journal of Chemical Engineering";journal;"10049541";"Materials China";No;No;0,650;Q2;90;339;1106;16833;4389;1103;3,78;49,65;34,18;0;China;Asiatic Region;"Materials China";"1993-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Environmental Engineering (Q2); Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Environmental Science" +9019;29173;"Journal of the Physical Society of Japan";journal;"13474073, 00319015";"The Physical Society of Japan";No;No;0,650;Q2;151;288;906;12900;1834;887;2,47;44,79;13,20;0;Japan;Asiatic Region;"The Physical Society of Japan";"1946-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +9020;13786;"Journal of Thermal Science";journal;"1993033X, 10032169";"Science Press";No;No;0,650;Q2;45;143;529;6397;1638;522;3,25;44,73;33,18;0;China;Asiatic Region;"Science Press";"1992-2026";"Condensed Matter Physics (Q2)";"Physics and Astronomy" +9021;23899;"Journal of Thrombosis and Thrombolysis";journal;"1573742X, 09295305";"Springer";No;No;0,650;Q2;86;168;513;6958;1062;476;2,09;41,42;38,61;0;United States;Northern America;"Springer";"1994-2026";"Cardiology and Cardiovascular Medicine (Q2); Hematology (Q2)";"Medicine" +9022;19700187624;"Open Learning";journal;"02680513, 14699958";"Routledge";No;No;0,650;Q2;48;39;96;1708;266;81;2,55;43,79;58,70;1;United Kingdom;Western Europe;"Routledge";"1970, 1986-2026";"Education (Q2); E-learning (Q2)";"Social Sciences" +9023;21101323086;"Oxford Open Economics";journal;"27525074";"Oxford University Press";No;No;0,650;Q2;11;34;120;2114;253;118;2,15;62,18;34,12;20;United Kingdom;Western Europe;"Oxford University Press";"2022-2025";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +9024;18619;"Practical Neurology";journal;"14747758, 14747766";"BMJ Publishing Group";No;No;0,650;Q2;68;207;394;3373;677;314;1,33;16,29;42,42;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2001-2026";"Medicine (miscellaneous) (Q2); Neurology (clinical) (Q3)";"Medicine" +9025;23377;"Chemical Senses";journal;"0379864X, 14643553";"Oxford University Press";No;No;0,650;Q3;121;65;123;5412;294;119;2,37;83,26;43,34;0;United Kingdom;Western Europe;"Oxford University Press";"1974-2025";"Behavioral Neuroscience (Q3); Physiology (Q3); Physiology (medical) (Q3); Sensory Systems (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +9026;1100147103;"Analyses of Social Issues and Public Policy";journal;"15297489, 15302415";"John Wiley and Sons Inc";No;No;0,649;Q1;43;68;136;5020;321;135;1,57;73,82;59,74;1;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2005-2026";"Social Sciences (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +9027;21101132921;"Exploratory Research in Clinical and Social Pharmacy";journal;"26672766";"Elsevier Inc.";Yes;No;0,649;Q1;18;140;421;6289;1086;382;2,69;44,92;56,27;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Pharmacy (Q1); Health, Toxicology and Mutagenesis (Q2); Pharmacology (medical) (Q2)";"Environmental Science; Health Professions; Medicine" +9028;21101041840;"Glossa";journal;"23971835";"Open Library of Humanities";Yes;Yes;0,649;Q1;32;90;299;6379;313;299;0,92;70,88;50,83;0;United Kingdom;Western Europe;"Open Library of Humanities";"2016-2025";"Linguistics and Language (Q1)";"Social Sciences" +9029;21100901582;"Online Social Networks and Media";journal;"24686964";"Elsevier B.V.";No;No;0,649;Q1;35;36;71;2300;333;70;4,58;63,89;24,41;0;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Communication (Q1); Computer Networks and Communications (Q2); Information Systems (Q2)";"Computer Science; Social Sciences" +9030;19700170477;"ZooKeys";journal;"13132970, 13132989";"Pensoft Publishers";Yes;No;0,649;Q1;73;550;1362;24790;2138;1347;1,59;45,07;32,52;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2009-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Animal Science and Zoology (Q1); Insect Science (Q1); Paleontology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +9031;24261;"Australasian Journal of Dermatology";journal;"14400960, 00048380";"John Wiley and Sons Inc";No;No;0,649;Q2;68;196;588;3554;819;316;1,40;18,13;50,90;0;United States;Northern America;"John Wiley and Sons Inc";"1951-2026";"Dermatology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +9032;12599;"Breast Journal";journal;"1075122X, 15244741";"John Wiley and Sons Inc";Yes;No;0,649;Q2;88;50;103;1754;265;103;2,29;35,08;60,62;0;United States;Northern America;"John Wiley and Sons Inc";"1995-2026";"Internal Medicine (Q2); Surgery (Q2); Oncology (Q3)";"Medicine" +9033;145007;"Clinical EEG and Neuroscience";journal;"15500594, 21695202";"SAGE Publications Inc.";No;No;0,649;Q2;69;83;202;4536;520;195;2,57;54,65;42,86;0;United States;Northern America;"SAGE Publications Inc.";"1970-1985, 1988-2026";"Medicine (miscellaneous) (Q2); Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +9034;19667;"Current Molecular Medicine";journal;"15665240, 18755666";"Bentham Science Publishers";No;No;0,649;Q2;124;196;319;14980;948;307;3,30;76,43;45,14;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2001-2026";"Medicine (miscellaneous) (Q2); Biochemistry (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9035;23235;"Heart Lung and Circulation";journal;"14442892, 14439506";"Elsevier Ltd";No;No;0,649;Q2;67;208;681;5752;1185;545;1,79;27,65;32,71;3;United Kingdom;Western Europe;"Elsevier Ltd";"2000-2026";"Cardiology and Cardiovascular Medicine (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +9036;21100898676;"IACR Transactions on Symmetric Cryptology";journal;"2519173X";"Ruhr-University of Bochum";Yes;Yes;0,649;Q2;32;58;135;2594;406;132;2,86;44,72;22,36;0;Germany;Western Europe;"Ruhr-University of Bochum";"2018-2025";"Applied Mathematics (Q2); Computational Mathematics (Q2); Computer Science Applications (Q2); Software (Q2)";"Computer Science; Mathematics" +9037;16116;"Indian Journal of Psychiatry";journal;"00195545, 19983794";"Wolters Kluwer Medknow Publications";Yes;Yes;0,649;Q2;65;209;578;5590;1110;433;2,00;26,75;40,43;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1970, 1973-1984, 2009-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +9038;21100466403;"International Journal of Food Science";journal;"23567015, 23145765";"John Wiley and Sons Ltd";Yes;No;0,649;Q2;51;126;262;8560;1224;262;3,71;67,94;49,34;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Food Science (Q2)";"Agricultural and Biological Sciences" +9039;21100886542;"Journal of Management Analytics";journal;"23270039, 23270012";"Taylor and Francis Ltd.";No;No;0,649;Q2;41;37;80;2559;410;80;5,65;69,16;30,85;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Business, Management and Accounting (miscellaneous) (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Business, Management and Accounting; Decision Sciences; Mathematics" +9040;21101162510;"Portal Hypertension and Cirrhosis";journal;"27705838, 27705846";"John Wiley and Sons Inc";Yes;No;0,649;Q2;8;30;80;1322;90;60;0,85;44,07;41,51;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Gastroenterology (Q2); Hepatology (Q2)";"Medicine" +9041;21100894507;"Smart Health";journal;"23526483";"Elsevier B.V.";Yes;No;0,649;Q2;29;64;175;2543;724;175;4,13;39,73;31,30;0;Netherlands;Western Europe;"Elsevier B.V.";"2017-2025";"Computer Science Applications (Q2); Information Systems (Q2); Medicine (miscellaneous) (Q2); Health Informatics (Q3); Health Information Management (Q3)";"Computer Science; Health Professions; Medicine" +9042;25013;"European Journal of Dental Education";journal;"16000579, 13965883";"Wiley-Blackwell Publishing Ltd";No;No;0,648;Q1;61;178;341;6538;1001;327;2,90;36,73;53,96;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1997-2026";"Dentistry (miscellaneous) (Q1); Education (Q2)";"Dentistry; Social Sciences" +9043;19400158525;"Foot and Ankle Specialist";journal;"19387636, 19386400";"SAGE Publications Ltd";No;No;0,648;Q1;42;149;230;4442;378;229;1,70;29,81;23,63;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Podiatry (Q1); Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2); Surgery (Q2)";"Health Professions; Medicine" +9044;21100228130;"International Journal for Parasitology: Parasites and Wildlife";journal;"22132244";"Australian Society for Parasitology";Yes;No;0,648;Q1;49;146;349;8586;918;348;2,47;58,81;47,08;0;Australia;Pacific Region;"Australian Society for Parasitology";"2012-2026";"Animal Science and Zoology (Q1); Infectious Diseases (Q2); Parasitology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +9045;24352;"Journal of Economic Studies";journal;"01443585";"Emerald Group Publishing Ltd.";No;No;0,648;Q1;63;195;297;9858;1083;296;3,61;50,55;29,01;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1974-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +9046;24830;"Journal of Social Philosophy";journal;"00472786, 14679833";"Wiley-Blackwell Publishing Ltd";No;No;0,648;Q1;49;69;124;3622;289;111;1,29;52,49;43,06;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1970-2026";"Philosophy (Q1)";"Arts and Humanities" +9047;26863;"Middle East Policy";journal;"14754967, 10611924";"Wiley-Blackwell Publishing Ltd";No;No;0,648;Q1;38;47;119;2788;196;116;1,97;59,32;17,39;7;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +9048;14206;"Archives of Clinical Neuropsychology";journal;"08876177, 18735843";"Elsevier B.V.";No;No;0,648;Q2;126;149;322;8640;797;318;2,38;57,99;58,39;3;United Kingdom;Western Europe;"Elsevier B.V.";"1986-2026";"Clinical Psychology (Q2); Medicine (miscellaneous) (Q2); Neuropsychology and Physiological Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +9049;25471;"Blood Purification";journal;"02535068, 14219735";"S. Karger AG";No;No;0,648;Q2;76;120;354;3736;837;333;2,28;31,13;42,80;0;Switzerland;Western Europe;"S. Karger AG";"1983-2026";"Hematology (Q2); Medicine (miscellaneous) (Q2); Nephrology (Q2)";"Medicine" +9050;21100925710;"Carpathian Mathematical Publications";journal;"20759827, 23130210";"Precarpathian National University";Yes;Yes;0,648;Q2;17;55;153;1346;249;153;1,67;24,47;30,70;0;Ukraine;Eastern Europe;"Precarpathian National University";"2019-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +9051;29222;"Fatigue and Fracture of Engineering Materials and Structures";journal;"8756758X, 14602695";"Wiley-Blackwell Publishing Ltd";No;No;0,648;Q2;108;344;836;16905;2917;808;3,54;49,14;23,90;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1979-2026";"Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +9052;5700161731;"Journal of Education for Students Placed at Risk";journal;"10824669, 15327671";"Routledge";No;No;0,648;Q2;29;31;53;2181;109;52;1,58;70,35;61,73;0;United Kingdom;Western Europe;"Routledge";"2001, 2010-2026";"Education (Q2)";"Social Sciences" +9053;15898;"Journal of Evaluation in Clinical Practice";journal;"13652753, 13561294";"Wiley-Blackwell Publishing Ltd";No;No;0,648;Q2;98;551;493;21102;1020;424;1,67;38,30;60,79;3;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1995-2026";"Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9054;24642;"Journal of Molecular Structure";journal;"00222860";"Elsevier B.V.";No;No;0,648;Q2;144;3791;7197;221955;36559;7192;5,51;58,55;38,39;1;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Analytical Chemistry (Q2); Inorganic Chemistry (Q2); Organic Chemistry (Q2); Spectroscopy (Q2)";"Chemistry" +9055;21101080469;"Partial Differential Equations and Applications";journal;"26622963, 26622971";"Springer International Publishing AG";No;No;0,648;Q2;12;55;167;1792;193;163;1,11;32,58;20,00;0;Switzerland;Western Europe;"Springer International Publishing AG";"2020-2026";"Analysis (Q2); Applied Mathematics (Q2); Computational Mathematics (Q2); Numerical Analysis (Q2)";"Mathematics" +9056;21445;"Polymer Bulletin";journal;"14362449, 01700839";"Springer Verlag";No;No;0,648;Q2;89;510;1999;34307;9527;1998;4,83;67,27;39,54;0;Germany;Western Europe;"Springer Verlag";"1978-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +9057;11700154734;"Swarm Intelligence";journal;"19353820, 19353812";"Springer New York";No;No;0,648;Q2;50;13;37;624;145;35;2,76;48,00;22,86;0;United States;Northern America;"Springer New York";"2008-2026";"Artificial Intelligence (Q2)";"Computer Science" +9058;19700171807;"Clinical Medicine Insights: Oncology";journal;"11795549";"SAGE Publications Ltd";Yes;No;0,648;Q3;39;64;208;2679;520;206;2,64;41,86;41,40;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2026";"Oncology (Q3)";"Medicine" +9059;21101023020;"German Law Journal";journal;"20718322, 25118048";"Cambridge University Press";Yes;No;0,647;Q1;46;59;241;9235;485;235;1,97;156,53;36,36;1;United Kingdom;Western Europe;"Cambridge University Press";"2000-2026";"Law (Q1)";"Social Sciences" +9060;27635;"Javnost";journal;"18548377, 13183222";"Taylor and Francis Ltd.";No;No;0,647;Q1;44;41;87;2067;205;87;2,28;50,41;51,92;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2025";"Communication (Q1)";"Social Sciences" +9061;23836;"Linguistics";journal;"00243949, 1613396X";"De Gruyter Mouton";Yes;Yes;0,647;Q1;63;50;141;3188;198;141;1,44;63,76;56,31;0;Germany;Western Europe;"De Gruyter Mouton";"1963-2026";"Linguistics and Language (Q1)";"Social Sciences" +9062;21101270277;"Philosophy and the Mind Sciences";journal;"26990369";"Ruhr-University of Bochum";Yes;Yes;0,647;Q1;18;33;79;2139;134;77;1,27;64,82;24,49;0;Germany;Western Europe;"Ruhr-University of Bochum";"2020-2025";"Philosophy (Q1); Psychology (miscellaneous) (Q2); Cognitive Neuroscience (Q3)";"Arts and Humanities; Neuroscience; Psychology" +9063;17845;"Radiography";journal;"15322831, 10788174";"W.B. Saunders Ltd";No;No;0,647;Q1;48;312;666;11254;1780;589;2,58;36,07;43,32;4;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1995-2026";"Research and Theory (Q1); Assessment and Diagnosis (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Health Professions; Medicine; Nursing" +9064;19400158302;"Advances in Building Energy Research";journal;"17512549, 17562201";"Taylor and Francis Ltd.";No;No;0,647;Q2;40;35;86;2115;333;86;4,25;60,43;28,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Building and Construction (Q2)";"Engineering" +9065;21100198493;"Aquaculture Environment Interactions";journal;"1869215X, 18697534";"Inter-Research";Yes;No;0,647;Q2;52;17;64;946;167;64;2,41;55,65;37,04;1;Germany;Western Europe;"Inter-Research";"2010-2025";"Aquatic Science (Q2); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9066;21100855822;"Cogent Business and Management";journal;"23311975";"Cogent OA";Yes;No;0,647;Q2;68;604;1854;52261;9851;1844;5,27;86,52;37,78;0;United Kingdom;Western Europe;"Cogent OA";"2014-2026";"Accounting (Q2); Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Management Science and Operations Research (Q2); Marketing (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +9067;21101076317;"Intelligence-Based Medicine";journal;"26665212";"Elsevier B.V.";Yes;No;0,647;Q2;21;131;122;5986;485;116;3,84;45,69;34,19;0;Netherlands;Western Europe;"Elsevier B.V.";"2020, 2022-2026";"Artificial Intelligence (Q2); Computer Science Applications (Q2); Medicine (miscellaneous) (Q2); Health Informatics (Q3)";"Computer Science; Medicine" +9068;14742;"International Journal of Circumpolar Health";journal;"12399736, 22423982";"Taylor and Francis Ltd.";Yes;No;0,647;Q2;57;74;242;3448;478;235;1,86;46,59;68,21;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Epidemiology (Q2); Health (social science) (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +9069;4700152801;"Journal of International Consumer Marketing";journal;"08961530, 15287068";"Routledge";No;No;0,647;Q2;63;43;96;3638;397;96;4,38;84,60;37,84;0;United States;Northern America;"Routledge";"1988-1993, 1995-2026";"Management Information Systems (Q2); Marketing (Q2)";"Business, Management and Accounting" +9070;29115;"Physica A: Statistical Mechanics and its Applications";journal;"03784371";"Elsevier B.V.";No;No;0,647;Q2;202;697;2466;34045;8811;2434;3,59;48,85;30,68;0;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Condensed Matter Physics (Q2); Statistical and Nonlinear Physics (Q2); Statistics and Probability (Q2)";"Mathematics; Physics and Astronomy" +9071;28705;"American Journal of Clinical Oncology: Cancer Clinical Trials";journal;"1537453X, 02773732";"Lippincott Williams and Wilkins";No;No;0,647;Q3;95;129;257;4296;452;242;1,73;33,30;43,06;0;United States;Northern America;"Lippincott Williams and Wilkins";"1982-2026";"Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9072;17500155152;"American Journal on Intellectual and Developmental Disabilities";journal;"19447515, 19447558";"American Association on Mental Retardation";No;No;0,646;Q1;101;40;112;1695;256;108;2,17;42,38;76,11;0;United States;Northern America;"American Association on Mental Retardation";"2009-2025";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Medicine (miscellaneous) (Q2); Neuropsychology and Physiological Psychology (Q2); Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2); Neurology (clinical) (Q3)";"Arts and Humanities; Medicine; Psychology" +9073;21101043232;"Journal of Psychedelic Studies";journal;"25599283";"Akademiai Kiado";Yes;Yes;0,646;Q1;19;41;80;2452;267;79;3,26;59,80;35,86;0;Hungary;Eastern Europe;"Akademiai Kiado";"2019-2026";"Anthropology (Q1); Clinical Psychology (Q2); Health (social science) (Q2); Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2); Social Psychology (Q2); Biological Psychiatry (Q3)";"Medicine; Neuroscience; Psychology; Social Sciences" +9074;14002;"Palaeontologia Electronica";journal;"10948074, 19353952";"";Yes;Yes;0,646;Q1;51;54;146;5925;258;145;1,78;109,72;22,57;0;United States;Northern America;"";"1998-2026";"Paleontology (Q1); Oceanography (Q2)";"Earth and Planetary Sciences" +9075;21100855405;"Povolzhskaya Arkheologiya";journal;"25002856, 23064099";"Academy of Sciences of Tatarstan, A.Kh. Khalikov Archaeology Institute";Yes;Yes;0,646;Q1;9;63;207;1718;69;207;0,31;27,27;22,45;0;Russian Federation;Eastern Europe;"Academy of Sciences of Tatarstan, A.Kh. Khalikov Archaeology Institute";"2017-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +9076;18102;"Sociological Perspectives";journal;"07311214, 15338673";"SAGE Publications Inc.";No;No;0,646;Q1;79;23;126;1691;255;124;1,57;73,52;50,00;0;United States;Northern America;"SAGE Publications Inc.";"1958-2026";"Sociology and Political Science (Q1)";"Social Sciences" +9077;28033;"AAC: Augmentative and Alternative Communication";journal;"14773848, 07434618";"Taylor and Francis Ltd.";No;No;0,646;Q2;74;81;78;3901;255;65;3,14;48,16;78,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-2026";"Medicine (miscellaneous) (Q2); Rehabilitation (Q2); Speech and Hearing (Q2)";"Health Professions; Medicine" +9078;21100397403;"EPJ Data Science";journal;"21931127";"Springer Science + Business Media";Yes;No;0,646;Q2;54;86;194;4827;686;188;3,29;56,13;28,57;1;United States;Northern America;"Springer Science + Business Media";"2012-2026";"Computational Mathematics (Q2); Computer Science Applications (Q2); Modeling and Simulation (Q2)";"Computer Science; Mathematics" +9079;25957;"ESAIM - Probability and Statistics";journal;"12928100, 12623318";"EDP Sciences";No;No;0,646;Q2;33;15;60;437;64;60;0,95;29,13;36,36;0;France;Western Europe;"EDP Sciences";"1997-2026";"Statistics and Probability (Q2)";"Mathematics" +9080;21101062832;"Frontiers in Computer Science";journal;"26249898";"Frontiers Media SA";Yes;No;0,646;Q2;37;212;518;11008;2147;467;4,12;51,92;32,75;2;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Computer Science Applications (Q2); Computer Science (miscellaneous) (Q2); Computer Vision and Pattern Recognition (Q2); Human-Computer Interaction (Q2)";"Computer Science" +9081;28386;"Indian Journal of Gastroenterology";journal;"02548860, 09750711";"Springer";No;No;0,646;Q2;51;283;416;6408;729;298;1,73;22,64;32,84;0;India;Asiatic Region;"Springer";"1982-2026";"Gastroenterology (Q2)";"Medicine" +9082;17700156758;"International Journal of Disclosure and Governance";journal;"17413591, 17466539";"Palgrave Macmillan Ltd.";No;No;0,646;Q2;31;99;98;8614;482;98;4,81;87,01;32,11;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2009-2026";"Accounting (Q2); Business and International Management (Q2); Economics and Econometrics (Q2); Finance (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +9083;21100448939;"Journal of Applied Research in Higher Education";journal;"17581184, 20507003";"Emerald Group Publishing Ltd.";No;No;0,646;Q2;38;270;364;14133;1366;364;3,57;52,34;48,19;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2026";"Education (Q2)";"Social Sciences" +9084;21100944460;"Journal of Breast Imaging";journal;"26316110, 26316129";"Oxford University Press";No;No;0,646;Q2;20;86;279;2812;402;242;1,48;32,70;64,44;0;United Kingdom;Western Europe;"Oxford University Press";"2019-2025";"Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Health Professions; Medicine" +9085;29581;"Journal of Computational Biology";journal;"15578666, 10665277";"Mary Ann Liebert Inc.";No;No;0,646;Q2;108;87;280;928;464;275;1,30;10,67;30,00;0;United States;Northern America;"Mary Ann Liebert Inc.";"1994-2026";"Computational Mathematics (Q2); Computational Theory and Mathematics (Q2); Modeling and Simulation (Q2); Genetics (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics" +9086;23388;"Journal of Environmental Radioactivity";journal;"18791700, 0265931X";"Elsevier Ltd";No;No;0,646;Q2;118;167;550;7929;1342;543;2,31;47,48;33,24;0;United Kingdom;Western Europe;"Elsevier Ltd";"1984-2026";"Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2); Pollution (Q2); Waste Management and Disposal (Q2); Environmental Chemistry (Q3)";"Environmental Science; Medicine" +9087;27601;"Journal of Maternal-Fetal and Neonatal Medicine";journal;"14767058, 14764954";"Taylor and Francis Ltd.";Yes;No;0,646;Q2;106;220;2024;7405;4002;1943;2,27;33,66;56,71;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Obstetrics and Gynecology (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +9088;19991;"Kidney and Blood Pressure Research";journal;"14230143, 14204096";"S. Karger AG";Yes;No;0,646;Q2;67;64;254;3252;592;253;2,03;50,81;48,76;0;Switzerland;Western Europe;"S. Karger AG";"1978-2026";"Cardiology and Cardiovascular Medicine (Q2); Nephrology (Q2)";"Medicine" +9089;19038;"Microcirculation";journal;"10739688, 15498719";"Wiley-Blackwell";No;No;0,646;Q2;99;39;119;2099;267;117;2,44;53,82;39,00;0;United States;Northern America;"Wiley-Blackwell";"1981-1982, 1994-2026";"Cardiology and Cardiovascular Medicine (Q2); Molecular Biology (Q3); Physiology (Q3); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9090;5700155526;"Research in Education";journal;"20504608, 00345237";"SAGE Publications Inc.";No;No;0,646;Q2;25;40;60;2006;190;57;3,44;50,15;55,13;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2007-2026";"Education (Q2)";"Social Sciences" +9091;19600161811;"Research in Gerontological Nursing";journal;"19382464, 19404921";"Slack Incorporated";No;No;0,646;Q2;35;35;109;1222;194;87;1,77;34,91;67,53;0;United States;Northern America;"Slack Incorporated";"2008-2026";"Gerontology (Q2); Health Policy (Q2); Nursing (miscellaneous) (Q2); Geriatrics and Gerontology (Q3)";"Medicine; Nursing" +9092;29716;"Reviews in Mathematical Physics";journal;"17936659, 0129055X";"World Scientific";No;No;0,646;Q2;60;71;149;3217;210;148;1,49;45,31;12,86;0;Singapore;Asiatic Region;"World Scientific";"1994, 1996-2026";"Mathematical Physics (Q2); Statistical and Nonlinear Physics (Q2)";"Mathematics; Physics and Astronomy" +9093;21100936480;"Shoulder and Elbow";journal;"17585740, 17585732";"SAGE Publications Inc.";No;No;0,646;Q2;37;170;317;5818;533;287;1,59;34,22;22,69;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2009-2026";"Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Surgery (Q2)";"Health Professions; Medicine" +9094;145123;"Proceedings - International Symposium on Software Reliability Engineering, ISSRE";conference and proceedings;"10719458";"IEEE Computer Society";No;No;0,646;-;69;50;179;2142;558;170;3,32;42,84;29,67;0;United States;Northern America;"IEEE Computer Society";"1991-2012, 2014, 2016-2025";"Engineering (miscellaneous); Safety, Risk, Reliability and Quality; Software";"Computer Science; Engineering" +9095;26766;"Alternatives to Laboratory Animals";journal;"26323559, 02611929";"SAGE Publications Inc.";No;No;0,645;Q1;69;48;112;1277;262;83;2,24;26,60;53,08;2;United Kingdom;Western Europe;"SAGE Publications Inc.";"1982, 1985-1986, 1988-1990, 1994-2026";"Medical Laboratory Technology (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Toxicology (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +9096;21100331602;"Annals of Leisure Research";journal;"11745398, 21596816";"Routledge";No;No;0,645;Q1;41;55;120;3713;376;105;3,13;67,51;54,55;2;United States;Northern America;"Routledge";"2008-2026";"Cultural Studies (Q1); Geography, Planning and Development (Q2); Social Psychology (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Psychology; Social Sciences" +9097;21101020111;"ChemEngineering";journal;"23057084";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,645;Q1;41;146;345;8099;1484;343;3,99;55,47;32,28;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2026";"Engineering (miscellaneous) (Q1); Chemical Engineering (miscellaneous) (Q2); Energy (miscellaneous) (Q2)";"Chemical Engineering; Energy; Engineering" +9098;7100153131;"International Journal of Sexual Health";journal;"1931762X, 19317611";"Routledge";No;No;0,645;Q1;54;91;143;5538;376;143;2,64;60,86;58,61;0;United States;Northern America;"Routledge";"2007-2026";"Gender Studies (Q1); Dermatology (Q2); Public Health, Environmental and Occupational Health (Q2); Reproductive Medicine (Q2); Social Psychology (Q2)";"Medicine; Psychology; Social Sciences" +9099;34002;"International Regional Science Review";journal;"01600176, 15526925";"SAGE Publications Inc.";No;No;0,645;Q1;67;26;71;1868;212;70;3,15;71,85;41,46;0;United States;Northern America;"SAGE Publications Inc.";"1975-1984, 1986-2026";"Social Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q2)";"Environmental Science; Social Sciences" +9100;17233;"Journal of Radiation Research";journal;"13499157, 04493060";"Oxford University Press";Yes;No;0,645;Q1;76;79;323;2929;718;315;2,18;37,08;19,69;0;United Kingdom;Western Europe;"Oxford University Press";"1960-2026";"Radiation (Q1); Health, Toxicology and Mutagenesis (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Environmental Science; Medicine; Physics and Astronomy" +9101;16534;"Phytochemistry";journal;"00319422, 18733700";"Elsevier Ltd";No;No;0,645;Q1;224;270;962;11246;3858;959;3,90;41,65;43,99;0;United Kingdom;Western Europe;"Elsevier Ltd";"1961-2026";"Horticulture (Q1); Medicine (miscellaneous) (Q2); Plant Science (Q2); Biochemistry (Q3); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +9102;21101339543;"Progress in Economic Geography";journal;"29496942";"Elsevier B.V.";No;No;0,645;Q1;6;26;26;2257;121;17;4,65;86,81;18,75;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +9103;21100220432;"Asian Journal of Atmospheric Environment";journal;"19766912, 22871160";"Springer International Publishing";Yes;No;0,645;Q2;26;27;79;1232;224;79;3,13;45,63;31,62;0;Switzerland;Western Europe;"Springer International Publishing";"2007-2026";"Atmospheric Science (Q2); Environmental Science (miscellaneous) (Q2)";"Earth and Planetary Sciences; Environmental Science" +9104;21101034440;"Biosafety and Health";journal;"25900536";"Elsevier B.V.";Yes;No;0,645;Q2;25;46;156;2171;462;147;2,88;47,20;44,95;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Biotechnology (Q2); Infectious Diseases (Q2); Microbiology (medical) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9105;13817;"Biotropica";journal;"17447429, 00063606";"Wiley-Blackwell";Yes;No;0,645;Q2;116;158;355;11751;748;343;1,88;74,37;39,49;0;United States;Northern America;"Wiley-Blackwell";"1979-1986, 1988-2026";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +9106;12100;"British Journal of Educational Studies";journal;"00071005, 14678527";"Taylor and Francis Ltd.";No;No;0,645;Q2;68;43;110;2240;323;104;3,11;52,09;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1952-2026";"Education (Q2)";"Social Sciences" +9107;28893;"Canadian Journal of Statistics";journal;"03195724, 1708945X";"Wiley-Blackwell";No;No;0,645;Q2;60;53;176;2111;224;171;1,28;39,83;30,43;1;United States;Northern America;"Wiley-Blackwell";"1973-2026";"Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +9108;21101319257;"Discover Chemical Engineering";journal;"27307700";"";Yes;No;0,645;Q2;12;28;62;1895;256;61;4,09;67,68;32,46;0;Switzerland;Western Europe;"";"2021-2026";"Chemical Engineering (miscellaneous) (Q2); Environmental Engineering (Q2); Process Chemistry and Technology (Q2); Filtration and Separation (Q3)";"Chemical Engineering; Environmental Science" +9109;21100207001;"Discrete and Continuous Dynamical Systems - Series S";journal;"19371632, 19371179";"American Institute of Mathematical Sciences";Yes;No;0,645;Q2;45;226;570;7137;774;536;1,34;31,58;34,57;0;United States;Northern America;"American Institute of Mathematical Sciences";"2008-2026";"Analysis (Q2); Applied Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +9110;21101041933;"IET Collaborative Intelligent Manufacturing";journal;"25168398";"John Wiley & Sons Inc.";Yes;No;0,645;Q2;21;34;89;1594;336;87;4,03;46,88;23,08;0;United States;Northern America;"John Wiley & Sons Inc.";"2019-2026";"Artificial Intelligence (Q2); Computer Science Applications (Q2); Hardware and Architecture (Q2); Industrial and Manufacturing Engineering (Q2)";"Computer Science; Engineering" +9111;29028;"Journal of Nuclear Science and Technology";journal;"18811248, 00223131";"Taylor and Francis Ltd.";No;No;0,645;Q2;78;139;394;4396;793;393;2,31;31,63;18,23;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1964-2026";"Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2)";"Energy; Physics and Astronomy" +9112;93433;"Southern African Journal of HIV Medicine";journal;"16089693, 20786751";"AOSIS (Pty) Ltd";Yes;No;0,645;Q2;28;29;92;933;154;87;1,60;32,17;59,85;1;South Africa;Africa;"AOSIS (Pty) Ltd";"2001-2025";"Infectious Diseases (Q2)";"Medicine" +9113;21101064701;"Avicenna Journal of Phytomedicine";journal;"22287949, 22287930";"Mashhad University of Medical Sciences";Yes;No;0,644;Q1;20;69;168;3383;577;166;3,28;49,03;44,97;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2019-2025";"Complementary and Alternative Medicine (Q1); Drug Discovery (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +9114;16824;"Central Asian Survey";journal;"02634937, 14653354";"Routledge";No;No;0,644;Q1;45;70;113;3996;294;100;2,75;57,09;41,05;0;United Kingdom;Western Europe;"Routledge";"1982-2026";"History (Q1); Sociology and Political Science (Q1); Development (Q2); Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Arts and Humanities; Earth and Planetary Sciences; Social Sciences" +9115;21100829207;"European Company and Financial Law Review";journal;"16132556, 16132548";"Walter de Gruyter GmbH";No;No;0,644;Q1;13;30;97;3111;179;95;1,08;103,70;26,92;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2016-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Law (Q1)";"Economics, Econometrics and Finance; Social Sciences" +9116;21101108743;"Global Public Policy and Governance";journal;"27306305, 27306291";"";No;No;0,644;Q1;14;30;72;1526;228;62;1,98;50,87;27,45;0;China;Asiatic Region;"";"2021-2026";"Political Science and International Relations (Q1); Development (Q2); Management, Monitoring, Policy and Law (Q2); Public Administration (Q2)";"Environmental Science; Social Sciences" +9117;21101075725;"Linguistic Landscape";journal;"22149961, 22149953";"John Benjamins Publishing Company";No;No;0,644;Q1;14;21;50;1133;115;48;2,34;53,95;60,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2026";"Linguistics and Language (Q1)";"Social Sciences" +9118;1200147101;"Sport in Society";journal;"17430445, 17430437";"Routledge";No;No;0,644;Q1;60;172;365;10688;1019;351;2,61;62,14;40,45;0;United Kingdom;Western Europe;"Routledge";"2005-2026";"Cultural Studies (Q1); Sports Science (Q3)";"Health Professions; Social Sciences" +9119;21101239841;"Advanced Sensor and Energy Materials";journal;"2773045X";"Elsevier B.V.";Yes;No;0,644;Q2;7;28;24;2199;114;22;4,75;78,54;38,85;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Analytical Chemistry (Q2)";"Chemistry" +9120;19900192734;"Advances and Applications in Bioinformatics and Chemistry";journal;"11786949";"Dove Medical Press Ltd";Yes;No;0,644;Q2;21;2;23;108;102;23;4,50;54,00;35,29;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2008-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Computer Science Applications (Q2); Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Computer Science" +9121;21101042442;"Aqua Water Infrastructure, Ecosystems and Society";journal;"27098028, 27098036";"IWA Publishing";Yes;No;0,644;Q2;64;52;401;2552;1253;395;3,08;49,08;26,09;2;United Kingdom;Western Europe;"IWA Publishing";"2021-2026";"Civil and Structural Engineering (Q2); Ecology (Q2); Environmental Engineering (Q2); Management, Monitoring, Policy and Law (Q2); Pollution (Q2); Water Science and Technology (Q2)";"Engineering; Environmental Science" +9122;21100319398;"Canadian Journal of Gastroenterology and Hepatology";journal;"22912797, 22912789";"John Wiley and Sons Ltd";Yes;No;0,644;Q2;82;31;145;1290;369;145;2,50;41,61;45,40;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2014-2026";"Gastroenterology (Q2); Medicine (miscellaneous) (Q2); Hepatology (Q3)";"Medicine" +9123;12575;"Food and Nutrition Bulletin";journal;"03795721, 15648265";"SAGE Publications Inc.";No;No;0,644;Q2;94;24;117;1003;281;107;2,11;41,79;58,43;2;United States;Northern America;"SAGE Publications Inc.";"1982-2026";"Food Science (Q2); Geography, Planning and Development (Q2); Nutrition and Dietetics (Q2)";"Agricultural and Biological Sciences; Nursing; Social Sciences" +9124;21100394091;"Medical Gas Research";journal;"20459912";"Wolters Kluwer Medknow Publications";Yes;No;0,644;Q2;38;90;121;4423;383;108;3,48;49,14;33,92;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2011-2026";"Anesthesiology and Pain Medicine (Q2); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience" +9125;18635;"Respiratory Care";journal;"19433654, 00201324";"Mary Ann Liebert Inc.";No;No;0,644;Q2;116;222;710;1009;1028;527;1,42;4,55;42,53;0;United States;Northern America;"Mary Ann Liebert Inc.";"1973-2026";"Critical Care and Intensive Care Medicine (Q2); Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +9126;21101047132;"Talanta Open";journal;"26668319";"Elsevier B.V.";Yes;No;0,644;Q2;29;204;303;13816;1601;298;5,44;67,73;44,72;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Analytical Chemistry (Q2)";"Chemistry" +9127;21101062813;"Waste Disposal and Sustainable Energy";journal;"25247891, 25247980";"Springer International Publishing";No;No;0,644;Q2;22;50;115;3318;508;115;4,47;66,36;34,50;0;China;Asiatic Region;"Springer International Publishing";"2019-2026";"Pollution (Q2); Renewable Energy, Sustainability and the Environment (Q2); Waste Management and Disposal (Q2)";"Energy; Environmental Science" +9128;5700158829;"Empirical Studies of the Arts";journal;"15414493, 02762374";"SAGE Publications Inc.";No;No;0,643;Q1;25;66;67;4238;233;66;2,88;64,21;52,28;1;United States;Northern America;"SAGE Publications Inc.";"1995, 2010-2026";"Literature and Literary Theory (Q1); Music (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +9129;28916;"IEEE Security and Privacy";journal;"15584046, 15407993";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,643;Q1;95;81;230;1018;574;201;2,41;12,57;30,20;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2003-2026";"Law (Q1); Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering; Social Sciences" +9130;19900193970;"International Journal of Paleopathology";journal;"18799817, 18799825";"Elsevier Inc.";No;No;0,643;Q1;42;42;126;3360;218;124;1,85;80,00;53,13;0;United States;Northern America;"Elsevier Inc.";"2011-2026";"Archeology (arts and humanities) (Q1); Pathology and Forensic Medicine (Q2)";"Arts and Humanities; Medicine" +9131;28503;"Journal of Symbolic Computation";journal;"07477171, 1095855X";"Academic Press";No;No;0,643;Q1;68;82;210;2505;196;205;0,97;30,55;22,41;0;United States;Northern America;"Academic Press";"1985-2026";"Algebra and Number Theory (Q1); Computational Mathematics (Q2)";"Mathematics" +9132;14469;"Advances in Structural Engineering";journal;"20484011, 13694332";"SAGE Publications Inc.";No;No;0,643;Q2;69;245;567;11424;1737;562;3,14;46,63;26,55;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"1999-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Engineering" +9133;27599;"Clinical Nursing Research";journal;"10547738, 15523799";"SAGE Publications Inc.";No;No;0,643;Q2;55;44;343;1700;763;327;1,76;38,64;73,39;0;United States;Northern America;"SAGE Publications Inc.";"1992-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +9134;21101199913;"IET Blockchain";journal;"26341573";"John Wiley and Sons Inc";Yes;No;0,643;Q2;15;32;78;1532;344;76;4,55;47,88;36,56;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2021-2026";"Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Information Systems (Q2)";"Computer Science" +9135;27543;"International Journal of Earth Sciences";journal;"14373254, 14373262";"Springer Verlag";No;No;0,643;Q2;117;78;366;6060;673;353;1,85;77,69;30,75;0;Germany;Western Europe;"Springer Verlag";"1996-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +9136;13942;"International Ophthalmology";journal;"15732630, 01655701";"Springer Science and Business Media B.V.";No;No;0,643;Q2;61;493;1350;16445;2586;1332;1,84;33,36;43,43;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1978-1999, 2001, 2004-2005, 2007-2026";"Ophthalmology (Q2)";"Medicine" +9137;29887;"Solid State Ionics";journal;"01672738";"Elsevier B.V.";No;No;0,643;Q2;227;220;583;12065;2015;580;3,73;54,84;32,82;0;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +9138;21101020135;"Systems";journal;"20798954";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,643;Q2;52;1127;1425;72561;6806;1417;5,03;64,38;38,43;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Computer Networks and Communications (Q2); Control and Systems Engineering (Q2); Information Systems and Management (Q2); Modeling and Simulation (Q2); Software (Q2)";"Computer Science; Decision Sciences; Engineering; Mathematics" +9139;19700175857;"Emergencias";journal;"23865857, 11376821";"Saned";No;No;0,642;Q1;32;122;340;1947;557;154;1,88;15,96;46,56;0;Spain;Western Europe;"Saned";"2010-2026";"Emergency Medicine (Q1)";"Medicine" +9140;24902;"Horticultural Reviews";book series;"01637851";"John Wiley and Sons Inc";No;No;0,642;Q1;39;0;5;0;29;3;0,00;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Inc";"1985, 1995, 2007-2018, 2021-2022";"Agronomy and Crop Science (Q1); Horticulture (Q1); Plant Science (Q2)";"Agricultural and Biological Sciences" +9141;21101107172;"International Journal of Forest Engineering";journal;"14942119, 19132220";"Informa UK Limited";No;No;0,642;Q1;17;39;113;1916;258;109;2,38;49,13;22,22;0;United Kingdom;Western Europe;"Informa UK Limited";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q1); Engineering (miscellaneous) (Q1); Forestry (Q1); Industrial and Manufacturing Engineering (Q2)";"Agricultural and Biological Sciences; Engineering" +9142;14901;"Journal of Thermal Biology";journal;"18790992, 03064565";"Elsevier Ltd";No;No;0,642;Q1;94;309;696;19302;2557;695;3,49;62,47;37,81;0;United Kingdom;Western Europe;"Elsevier Ltd";"1975-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q2); Biochemistry (Q3); Developmental Biology (Q3); Physiology (Q3); Physiology (medical) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +9143;16110;"Kyklos";journal;"14676435, 00235962";"Wiley-Blackwell Publishing Ltd";No;No;0,642;Q1;72;88;113;5974;258;113;2,24;67,89;23,66;8;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1947-1951, 1953-2026";"Arts and Humanities (miscellaneous) (Q1); Economics and Econometrics (Q2)";"Arts and Humanities; Economics, Econometrics and Finance" +9144;17181;"Public Money and Management";journal;"14679302, 09540962";"Routledge";No;No;0,642;Q1;65;205;367;6494;978;302;2,47;31,68;43,00;7;United Kingdom;Western Europe;"Routledge";"1988-2026";"Sociology and Political Science (Q1); Accounting (Q2); Business, Management and Accounting (miscellaneous) (Q2); Finance (Q2); Public Administration (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +9145;4000148108;"ACS Chemical Health and Safety";journal;"18715532, 18780504";"American Chemical Society";No;No;0,642;Q2;35;82;176;3299;539;149;3,17;40,23;38,56;0;United States;Northern America;"American Chemical Society";"2006-2026";"Chemical Health and Safety (Q2); Chemistry (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Chemical Engineering; Chemistry; Medicine" +9146;29654;"Advances in Water Science";journal;"10016791";"Science Press";No;No;0,642;Q2;47;72;261;2222;751;261;3,08;30,86;39,66;0;China;Asiatic Region;"Science Press";"1998-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +9147;19624;"Archives of Virology";journal;"03048608, 14328798";"Springer";No;No;0,642;Q2;141;250;874;9528;2078;869;2,47;38,11;43,73;2;Austria;Western Europe;"Springer";"1975-2026";"Medicine (miscellaneous) (Q2); Virology (Q2)";"Immunology and Microbiology; Medicine" +9148;21100207640;"Clinical and Experimental Reproductive Medicine";journal;"22338241, 22338233";"Korean Society for Reproductive Medicine";Yes;No;0,642;Q2;38;43;113;1634;254;113;1,86;38,00;48,69;0;South Korea;Asiatic Region;"Korean Society for Reproductive Medicine";"2011-2025";"Reproductive Medicine (Q2)";"Medicine" +9149;21101268328;"Geomatics";journal;"26737418";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,642;Q2;16;81;82;4731;305;78;4,28;58,41;23,43;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)";"Earth and Planetary Sciences; Engineering; Environmental Science" +9150;17364;"IEEE Transactions on Magnetics";journal;"00189464, 19410069";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,642;Q2;168;506;1499;11331;3613;1499;2,10;22,39;24,08;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1965-2026";"Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science" +9151;21101202000;"Mesopotamian Journal of CyberSecurity";journal;"29586542";"Mesopotamian Academic Press";No;No;0,642;Q2;18;68;57;3326;413;55;7,61;48,91;29,90;0;Iraq;Middle East;"Mesopotamian Academic Press";"2021-2025";"Computer Networks and Communications (Q2); Computer Science Applications (Q2); Information Systems (Q2); Statistics and Probability (Q2)";"Computer Science; Mathematics" +9152;17800156738;"Organization Management Journal";journal;"15416518, 27538567";"Emerald Publishing";Yes;Yes;0,642;Q2;28;29;50;1524;175;42;2,55;52,55;41,67;0;United Kingdom;Western Europe;"Emerald Publishing";"2005, 2009-2026";"Business and International Management (Q2); Education (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Social Sciences" +9153;19200156938;"Transforming Government: People, Process and Policy";journal;"17506166";"Emerald Group Publishing Ltd.";No;No;0,642;Q2;54;74;142;4696;592;138;4,05;63,46;41,14;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007-2026";"Computer Science Applications (Q2); E-learning (Q2); Information Systems and Management (Q2); Public Administration (Q2)";"Computer Science; Decision Sciences; Social Sciences" +9154;21100903488;"Universe";journal;"22181997";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,642;Q2;57;418;1645;27873;3846;1608;2,38;66,68;24,67;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +9155;19700180557;"Biochemistry Research International";journal;"20902255, 20902247";"John Wiley and Sons Ltd";Yes;No;0,642;Q3;55;39;65;2399;280;65;3,56;61,51;43,56;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology" +9156;21100253295;"Proceedings of the Workshop on Algorithm Engineering and Experiments";conference and proceedings;"21640300";"Society for Industrial and Applied Mathematics Publications";No;No;0,642;-;26;19;56;674;69;51;1,08;35,47;16,92;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"2012-2025";"Applied Mathematics; Engineering (miscellaneous)";"Engineering; Mathematics" +9157;28557;"Australasian Journal on Ageing";journal;"14406381, 17416612";"Wiley-Blackwell";No;No;0,641;Q1;53;146;326;4661;612;282;1,74;31,92;66,77;0;United States;Northern America;"Wiley-Blackwell";"1998-2026";"Community and Home Care (Q1); Medicine (miscellaneous) (Q2); Geriatrics and Gerontology (Q3)";"Medicine; Nursing" +9158;11600153582;"Community Development";journal;"15575330, 19447485";"Routledge";No;No;0,641;Q1;34;71;159;4502;464;139;2,83;63,41;49,06;0;United Kingdom;Western Europe;"Routledge";"2009-2026";"Sociology and Political Science (Q1); Geography, Planning and Development (Q2)";"Social Sciences" +9159;19700170250;"Constructions and Frames";journal;"18761933, 18761941";"John Benjamins Publishing Company";No;No;0,641;Q1;18;12;31;762;43;30;1,67;63,50;42,86;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2009-2026";"Linguistics and Language (Q1)";"Social Sciences" +9160;21101020133;"Fire";journal;"25716255";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,641;Q1;43;481;1174;24921;4129;1150;3,54;51,81;34,33;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2018-2026";"Forestry (Q1); Safety Research (Q1); Building and Construction (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Safety, Risk, Reliability and Quality (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering; Environmental Science; Social Sciences" +9161;18300;"Journal of Small Animal Practice";journal;"00224510, 17485827";"Wiley-Blackwell";No;No;0,641;Q1;90;151;334;3918;606;294;1,79;25,95;54,51;0;United States;Northern America;"Wiley-Blackwell";"1960-2026";"Small Animals (Q1)";"Veterinary" +9162;27390;"Pacific Affairs";journal;"0030851X, 17153379";"University of British Columbia";No;No;0,641;Q1;49;26;66;1523;129;62;1,93;58,58;33,33;0;Canada;Northern America;"University of British Columbia";"1979, 1981-1982, 1984, 1991-2025";"Sociology and Political Science (Q1); Geography, Planning and Development (Q2)";"Social Sciences" +9163;21100388413;"Policing (Oxford)";journal;"17524512, 17524520";"Oxford University Press";No;No;0,641;Q1;38;54;324;2847;667;310;1,95;52,72;40,15;0;United Kingdom;Western Europe;"Oxford University Press";"2014-2026";"Law (Q1)";"Social Sciences" +9164;21100904987;"Scientific African";journal;"24682276";"Elsevier B.V.";Yes;No;0,641;Q1;64;596;1345;32047;6255;1341;4,63;53,77;26,15;1;Netherlands;Western Europe;"Elsevier B.V.";"2018-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +9165;21595;"Adapted Physical Activity Quarterly";journal;"15432777, 07365829";"Human Kinetics Publishers Inc.";No;No;0,641;Q2;70;37;109;1795;267;105;2,22;48,51;50,00;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1988-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)";"Health Professions" +9166;21100255120;"Anaesthesiology Intensive Therapy";journal;"16425758, 17312531";"Termedia Publishing House Ltd.";Yes;Yes;0,641;Q2;41;50;183;1532;346;126;1,45;30,64;38,35;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2012-2026";"Anesthesiology and Pain Medicine (Q2); Critical Care and Intensive Care Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +9167;4700152290;"Bioinspiration and Biomimetics";journal;"17483190, 17483182";"IOP Publishing Ltd.";No;No;0,641;Q2;101;148;379;6380;1352;373;3,51;43,11;29,66;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2006-2026";"Biophysics (Q2); Biotechnology (Q2); Engineering (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +9168;25061;"Displays";journal;"01419382";"Elsevier B.V.";No;No;0,641;Q2;76;251;598;14514;2692;597;4,46;57,82;36,29;0;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Human-Computer Interaction (Q3)";"Computer Science; Engineering" +9169;17479;"International Journal of Water Resources Development";journal;"13600648, 07900627";"Routledge";No;No;0,641;Q2;74;56;162;3778;436;147;2,61;67,46;34,21;3;United Kingdom;Western Europe;"Routledge";"1983-1984, 1987-2026";"Development (Q2); Water Science and Technology (Q2)";"Environmental Science; Social Sciences" +9170;19184;"Journal of Applied Phycology";journal;"15735176, 09218971";"Springer Science and Business Media B.V.";No;No;0,641;Q2;151;375;750;23496;3075;749;3,88;62,66;49,07;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1989-2026";"Aquatic Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +9171;12769;"Journal of Behavioral Education";journal;"10530819, 15733513";"Springer New York";No;No;0,641;Q2;48;77;136;4037;283;136;2,15;52,43;59,68;1;United States;Northern America;"Springer New York";"1991-2000, 2002, 2005-2026";"Developmental and Educational Psychology (Q2); Education (Q2)";"Psychology; Social Sciences" +9172;16283;"Journal of Hydraulic Engineering";journal;"07339429, 19437900";"American Society of Civil Engineers (ASCE)";No;No;0,641;Q2;154;98;245;3934;623;230;2,61;40,14;18,63;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1980, 1982-2026";"Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Water Science and Technology (Q2)";"Engineering; Environmental Science" +9173;21100455461;"Journal of International Students";journal;"21623104, 21663750";"School of Education, University of Louisiana at Monroe";Yes;No;0,641;Q2;43;125;258;6207;678;247;2,41;49,66;46,89;0;United States;Northern America;"School of Education, University of Louisiana at Monroe";"2013-2026";"Education (Q2)";"Social Sciences" +9174;30075;"Journal of Sex and Marital Therapy";journal;"0092623X, 15210715";"Routledge";No;No;0,641;Q2;98;68;198;3718;548;187;2,59;54,68;60,55;0;United States;Northern America;"Routledge";"1974-2026";"Clinical Psychology (Q2)";"Psychology" +9175;29591;"Journal of the American Society for Mass Spectrometry";journal;"10440305, 18791123";"Elsevier Inc.";No;No;0,641;Q2;146;298;951;12434;2574;897;2,66;41,72;34,30;1;United States;Northern America;"Elsevier Inc.";"1990-2026";"Spectroscopy (Q2); Structural Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +9176;27011;"Physical Chemistry Chemical Physics";journal;"14639084, 14639076";"Royal Society of Chemistry";No;No;0,641;Q2;314;2085;8696;124578;24927;8671;2,85;59,75;31,45;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"1999-2026";"Physical and Theoretical Chemistry (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Chemistry; Physics and Astronomy" +9177;17866;"Radiology and Oncology";journal;"13182099, 15813207";"";Yes;No;0,641;Q2;49;63;176;2634;426;175;2,27;41,81;48,96;0;Germany;Western Europe;"";"1992-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)";"Medicine" +9178;19700201206;"African Security";journal;"19392214, 19392206";"Taylor and Francis Ltd.";No;No;0,640;Q1;27;25;44;1309;81;36;1,72;52,36;22,58;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Political Science and International Relations (Q1); Safety Research (Q1)";"Social Sciences" +9179;21101339541;"Environmental Research: Food Systems";journal;"2976601X";"Institute of Physics";Yes;No;0,640;Q1;6;59;26;4285;59;26;2,27;72,63;44,99;0;United Kingdom;Western Europe;"Institute of Physics";"2024-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q1); Environmental Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9180;4000148702;"International Orthodontics";journal;"17617227";"Elsevier Masson s.r.l.";No;No;0,640;Q1;27;78;197;2955;468;196;2,28;37,88;45,02;0;France;Western Europe;"Elsevier Masson s.r.l.";"2004-2026";"Orthodontics (Q1)";"Dentistry" +9181;20465;"Journal of Economic Entomology";journal;"00220493, 1938291X";"Oxford University Press";No;No;0,640;Q1;128;319;745;16503;2078;742;2,45;51,73;39,64;0;United Kingdom;Western Europe;"Oxford University Press";"1924, 1929, 1932, 1934, 1936-1937, 1940-1941, 1945-1947, 1949, 1954-1955, 1958-1962, 1964-2026";"Insect Science (Q1); Ecology (Q2); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +9182;19400158571;"Race and Social Problems";journal;"18671748, 18671756";"Springer Verlag";No;No;0,640;Q1;46;44;87;2880;222;86;2,08;65,45;65,04;0;Germany;Western Europe;"Springer Verlag";"2009-2026";"Anthropology (Q1); Sociology and Political Science (Q1)";"Social Sciences" +9183;17504;"Social and Legal Studies";journal;"09646639, 14617390";"SAGE Publications Ltd";No;No;0,640;Q1;57;61;134;4323;312;133;1,89;70,87;74,71;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2026";"Law (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +9184;21101072371;"Via Inveniendi et Iudicandi";journal;"19090528";"Universidad de Santo Tomas";Yes;Yes;0,640;Q1;7;12;71;525;57;69;0,75;43,75;20,00;0;Colombia;Latin America;"Universidad de Santo Tomas";"2019-2025";"Law (Q1)";"Social Sciences" +9185;21101058817;"Asian Journal of Accounting Research";journal;"24599700, 24434175";"Airlangga University";Yes;Yes;0,640;Q2;26;40;83;2405;539;83;4,88;60,13;40,74;0;United Kingdom;Western Europe;"Airlangga University";"2016-2026";"Accounting (Q2)";"Business, Management and Accounting" +9186;21100252806;"Bioactive Carbohydrates and Dietary Fibre";journal;"22126198";"Elsevier Ltd";No;No;0,640;Q2;48;48;154;2830;647;153;3,97;58,96;48,08;0;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Food Science (Q2); Organic Chemistry (Q2); Biochemistry (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry" +9187;21101040622;"Health Services Research and Managerial Epidemiology";journal;"23333928";"SAGE Publications Inc.";Yes;No;0,640;Q2;17;0;97;0;287;91;3,58;0,00;0,00;0;United States;Northern America;"SAGE Publications Inc.";"2014-2024";"Epidemiology (Q2); Health Policy (Q2)";"Medicine" +9188;18197;"Integrated Computer-Aided Engineering";journal;"10692509, 18758835";"SAGE Publications Ltd";No;No;0,640;Q2;51;1;80;51;335;77;4,65;51,00;0,00;0;Netherlands;Western Europe;"SAGE Publications Ltd";"1993-2025";"Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +9189;21101021026;"Journal of Applied Laboratory Medicine";journal;"24757241, 25769456";"Oxford University Press";No;No;0,640;Q2;36;212;445;4396;747;341;1,72;20,74;44,58;0;United Kingdom;Western Europe;"Oxford University Press";"2016-2026";"Analytical Chemistry (Q2); Biochemistry (medical) (Q2); Chemical Engineering (miscellaneous) (Q2); Clinical Biochemistry (Q2); Pathology and Forensic Medicine (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Medicine" +9190;28535;"Networks";journal;"10970037, 00283045";"Wiley-Liss Inc.";No;No;0,640;Q2;80;49;173;1791;368;170;2,08;36,55;27,39;0;United States;Northern America;"Wiley-Liss Inc.";"1971-2026";"Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)";"Computer Science" +9191;4700152486;"Plasmonics";journal;"15571963, 15571955";"Springer";No;No;0,640;Q2;80;966;750;48367;4265;749;6,59;50,07;32,20;0;United States;Northern America;"Springer";"2006-2026";"Biophysics (Q2); Biotechnology (Q2); Nanoscience and Nanotechnology (Q2); Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Materials Science" +9192;21100897707;"Trauma Surgery and Acute Care Open";journal;"23975776";"BMJ Publishing Group";Yes;No;0,640;Q2;37;227;421;5027;757;343;1,68;22,15;40,62;2;United Kingdom;Western Europe;"BMJ Publishing Group";"2016-2026";"Critical Care and Intensive Care Medicine (Q2); Surgery (Q2)";"Medicine" +9193;11600154613;"Environmental Hazards";journal;"17477891, 18780059";"Taylor and Francis Ltd.";No;No;0,639;Q1;67;60;75;4116;258;75;3,42;68,60;37,84;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983, 1999-2003, 2005, 2007, 2009-2026";"Sociology and Political Science (Q1); Development (Q2); Environmental Science (miscellaneous) (Q2); Geography, Planning and Development (Q2); Global and Planetary Change (Q3)";"Environmental Science; Social Sciences" +9194;23849;"Journal of Cardiovascular Nursing";journal;"08894655, 15505049";"Lippincott Williams and Wilkins Ltd.";No;No;0,639;Q1;76;170;274;7128;622;250;2,05;41,93;66,28;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1986-2026";"Advanced and Specialized Nursing (Q1); Cardiology and Cardiovascular Medicine (Q2)";"Medicine; Nursing" +9195;145253;"Journal of Linguistics";journal;"14697742, 00222267";"Cambridge University Press";No;No;0,639;Q1;51;44;83;3010;98;82;0,98;68,41;45,71;0;United Kingdom;Western Europe;"Cambridge University Press";"1965-2026";"Linguistics and Language (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +9196;15567;"Journal of Marital and Family Therapy";journal;"17520606, 0194472X";"Wiley-Blackwell";No;No;0,639;Q1;84;111;163;6550;406;162;1,55;59,01;63,71;0;United States;Northern America;"Wiley-Blackwell";"1975-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Clinical Psychology (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +9197;21100890157;"Journal of Wine Economics";journal;"1931437X, 19314361";"Cambridge University Press";No;No;0,639;Q1;17;20;58;901;122;57;2,03;45,05;33,33;0;United Kingdom;Western Europe;"Cambridge University Press";"2007, 2018-2026";"Horticulture (Q1); Business, Management and Accounting (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Business, Management and Accounting" +9198;23166;"Language Sciences";journal;"03880001";"Elsevier Ltd";No;No;0,639;Q1;56;36;110;2241;248;106;2,51;62,25;43,06;0;United Kingdom;Western Europe;"Elsevier Ltd";"1979-2026";"Linguistics and Language (Q1)";"Social Sciences" +9199;21100431830;"Russian Entomological Journal";journal;"01328069";"KMK Scientific Press Ltd.";No;No;0,639;Q1;16;59;173;1585;148;172;0,94;26,86;34,57;0;Russian Federation;Eastern Europe;"KMK Scientific Press Ltd.";"2015-2025";"Insect Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +9200;21564;"Environmetrics";journal;"1099095X, 11804009";"John Wiley and Sons Ltd";No;No;0,639;Q2;73;77;148;3525;300;140;1,61;45,78;36,12;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1990-2026";"Ecological Modeling (Q2); Statistics and Probability (Q2)";"Environmental Science; Mathematics" +9201;17573;"Jornal Brasileiro de Reproducao Assistida";journal;"15175693, 15180557";"SBRA - Associação Brasileira de Reprodução Assistida (Brazilian Society of Assisted Reproduction)";No;No;0,639;Q2;36;107;300;3601;696;278;1,80;33,65;61,00;0;Brazil;Latin America;"SBRA - Associação Brasileira de Reprodução Assistida (Brazilian Society of Assisted Reproduction)";"2000-2026";"Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)";"Medicine" +9202;29191;"Journal of Aging and Physical Activity";journal;"10638652, 1543267X";"Human Kinetics Publishers Inc.";No;No;0,639;Q2;76;58;293;2953;592;284;1,86;50,91;43,71;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1994, 1996-2026";"Gerontology (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Geriatrics and Gerontology (Q3); Sports Science (Q3)";"Health Professions; Medicine; Nursing" +9203;28547;"Journal of Non-Crystalline Solids";journal;"00223093, 18734812";"Elsevier B.V.";No;No;0,639;Q2;179;374;1619;19168;6063;1611;3,67;51,25;31,21;0;Netherlands;Western Europe;"Elsevier B.V.";"1968-2026";"Ceramics and Composites (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2)";"Materials Science; Physics and Astronomy" +9204;17462;"Neuropsychoanalysis";journal;"15294145, 20443978";"Taylor and Francis Ltd.";No;No;0,639;Q2;32;27;58;693;55;32;1,03;25,67;36,36;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1999-2025";"Neuropsychology and Physiological Psychology (Q2); Neuroscience (miscellaneous) (Q3)";"Neuroscience; Psychology" +9205;29086;"Nuclear Physics B";journal;"05503213";"Elsevier B.V.";Yes;Yes;0,639;Q2;278;454;931;31112;2257;926;2,65;68,53;22,50;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Nuclear and High Energy Physics (Q2)";"Physics and Astronomy" +9206;17689;"Avian Pathology";journal;"03079457, 14653338";"Taylor and Francis Ltd.";No;No;0,638;Q1;104;79;150;4101;463;146;2,66;51,91;40,25;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972-2026";"Animal Science and Zoology (Q1); Food Animals (Q1); Immunology and Microbiology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Veterinary" +9207;37903;"Ethos";journal;"00912131, 15481352";"Wiley-Blackwell";No;No;0,638;Q1;60;31;81;1796;153;77;2,11;57,94;67,27;0;United States;Northern America;"Wiley-Blackwell";"1973-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Arts and Humanities; Social Sciences" +9208;19900192030;"International Journal of Dentistry";journal;"16878736, 16878728";"John Wiley and Sons Ltd";Yes;No;0,638;Q1;62;199;488;8170;1416;488;2,53;41,06;46,22;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2026";"Dentistry (miscellaneous) (Q1)";"Dentistry" +9209;21101108654;"JACEP Open";journal;"26881152";"Elsevier Inc.";Yes;No;0,638;Q1;31;227;664;3814;974;536;1,32;16,80;41,55;0;United States;Northern America;"Elsevier Inc.";"2020-2026";"Emergency Medicine (Q1)";"Medicine" +9210;20487;"Journal of Insect Physiology";journal;"00221910, 18791611";"Elsevier Ltd";No;No;0,638;Q1;123;106;221;6584;625;219;2,81;62,11;43,51;0;United Kingdom;Western Europe;"Elsevier Ltd";"1957-2026";"Insect Science (Q1); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +9211;21100819062;"Social Currents";journal;"23294973, 23294965";"SAGE Publications Inc.";No;No;0,638;Q1;34;30;86;1751;190;85;2,11;58,37;54,10;0;United States;Northern America;"SAGE Publications Inc.";"2014-2026";"Social Sciences (miscellaneous) (Q1)";"Social Sciences" +9212;26941;"Theory and Decision";journal;"15737187, 00405833";"Springer Netherlands";No;No;0,638;Q1;51;102;176;4187;214;174;0,68;41,05;21,43;1;Netherlands;Western Europe;"Springer Netherlands";"1970-2026";"Arts and Humanities (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Computer Science Applications (Q2); Decision Sciences (miscellaneous) (Q2); Developmental and Educational Psychology (Q2); Applied Psychology (Q3)";"Arts and Humanities; Computer Science; Decision Sciences; Economics, Econometrics and Finance; Psychology; Social Sciences" +9213;20882;"Veterinary Microbiology";journal;"03781135, 18732542";"Elsevier B.V.";No;No;0,638;Q1;162;369;731;15105;2065;729;2,75;40,93;46,99;2;Netherlands;Western Europe;"Elsevier B.V.";"1976-2026";"Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Microbiology (Q3)";"Immunology and Microbiology; Medicine; Veterinary" +9214;21101065510;"Data-Centric Engineering";journal;"26326736";"Cambridge University Press";Yes;No;0,638;Q2;19;54;106;3303;401;106;3,47;61,17;18,52;0;United Kingdom;Western Europe;"Cambridge University Press";"2020-2026";"Applied Mathematics (Q2); Computer Science Applications (Q2); Engineering (miscellaneous) (Q2); Statistics and Probability (Q2)";"Computer Science; Engineering; Mathematics" +9215;21101295907;"Frontiers in Neuroimaging";journal;"28131193";"Frontiers Media SA";Yes;No;0,638;Q2;11;35;135;1554;332;130;2,05;44,40;37,79;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience" +9216;29780;"IEEE Engineering Management Review";journal;"03608581, 19374178";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,638;Q2;49;135;219;7298;972;209;5,27;54,06;33,44;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1973-1987, 1991, 1993-2026";"Electrical and Electronic Engineering (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Engineering" +9217;19268;"International Journal of High Performance Computing Applications";journal;"10943420, 17412846";"SAGE Publications Inc.";No;No;0,638;Q2;71;62;115;3039;329;108;3,24;49,02;19,03;0;United States;Northern America;"SAGE Publications Inc.";"1987-2026";"Hardware and Architecture (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +9218;11700154337;"Nuclear Engineering and Technology";journal;"2234358X, 17385733";"Korean Nuclear Society";Yes;Yes;0,638;Q2;75;691;1505;23892;4434;1503;2,94;34,58;24,05;2;South Korea;Asiatic Region;"Korean Nuclear Society";"2008-2026";"Nuclear Energy and Engineering (Q2)";"Energy" +9219;17037;"Physica Medica";journal;"11201797, 1724191X";"Associazione Italiana di Fisica Medica";No;No;0,638;Q2;80;274;617;10841;1617;606;2,64;39,57;40,23;0;Italy;Western Europe;"Associazione Italiana di Fisica Medica";"1989-2026";"Biophysics (Q2); Medicine (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Physics and Astronomy" +9220;29258;"Public Finance Review";journal;"15527530, 10911421";"SAGE Publications Inc.";No;No;0,638;Q2;43;33;75;1607;107;73;1,31;48,70;22,22;0;United States;Northern America;"SAGE Publications Inc.";"1973-1987, 1989-2026";"Economics and Econometrics (Q2); Finance (Q2); Public Administration (Q2)";"Economics, Econometrics and Finance; Social Sciences" +9221;11400153302;"Yearbook of Medical Informatics";journal;"23640502, 09434747";"Thieme Medical Publishers, Inc.";No;No;0,638;Q3;56;37;95;1834;267;85;2,29;49,57;52,90;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"2006-2023, 2025";"Health Informatics (Q3); Health Information Management (Q3)";"Health Professions; Medicine" +9222;24634;"Archives of Oral Biology";journal;"18791506, 00039969";"Elsevier Ltd";No;No;0,637;Q1;114;245;488;12716;1367;488;2,72;51,90;51,40;0;United Kingdom;Western Europe;"Elsevier Ltd";"1959-2026";"Dentistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Dentistry; Medicine" +9223;28957;"Japan and the World Economy";journal;"09221425";"Elsevier B.V.";No;No;0,637;Q1;45;23;77;893;144;77;1,85;38,83;13,04;1;Netherlands;Western Europe;"Elsevier B.V.";"1988-2026";"Political Science and International Relations (Q1); Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance; Social Sciences" +9224;13464;"Psychological Record";journal;"00332933, 21633452";"Springer Nature";No;No;0,637;Q1;62;48;152;2127;196;150;1,06;44,31;31,75;0;Switzerland;Western Europe;"Springer Nature";"1961-1964, 1969, 1973-1975, 1979-1981, 1984, 1986-1990, 1992, 1996-2026";"Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Psychology" +9225;19516;"Veterinary Clinics of North America - Small Animal Practice";journal;"01955616, 18781306";"W.B. Saunders";No;No;0,637;Q1;96;91;261;4914;579;223;1,89;54,00;67,31;0;United States;Northern America;"W.B. Saunders";"1978-2026";"Small Animals (Q1)";"Veterinary" +9226;21100224426;"Environment Systems and Decisions";journal;"21945411, 21945403";"Springer";No;No;0,637;Q2;65;66;160;4269;689;153;4,05;64,68;31,96;1;United States;Northern America;"Springer";"2013-2026";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +9227;21100366771;"Journal of Applied Research on Medicinal and Aromatic Plants";journal;"22147861";"Elsevier GmbH";No;No;0,637;Q2;47;78;247;4989;1092;247;4,31;63,96;44,36;0;Germany;Western Europe;"Elsevier GmbH";"2014-2026";"Drug Discovery (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Pharmacology, Toxicology and Pharmaceutics" +9228;144696;"Journal of Plant Biology";journal;"18670725, 12269239";"Springer Science and Business Media Deutschland GmbH";No;No;0,637;Q2;56;44;128;2710;352;128;3,00;61,59;46,80;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1998-1999, 2002-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +9229;21100825344;"Computational Particle Mechanics";journal;"21964386, 21964378";"Elsevier Ltd";No;No;0,636;Q1;46;319;381;14675;1453;379;3,68;46,00;25,14;0;Switzerland;Western Europe;"Elsevier Ltd";"2014-2025";"Computational Mechanics (Q1); Civil and Structural Engineering (Q2); Computational Mathematics (Q2); Fluid Flow and Transfer Processes (Q2); Modeling and Simulation (Q2); Numerical Analysis (Q2)";"Chemical Engineering; Engineering; Mathematics" +9230;21100298645;"Journal of Crime and Justice";journal;"21589119, 0735648X";"Taylor and Francis Ltd.";No;No;0,636;Q1;44;86;120;5739;266;117;1,98;66,73;55,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2026";"Law (Q1)";"Social Sciences" +9231;21100900323;"Journal of Sustainable Metallurgy";journal;"21993823, 21993831";"Springer International Publishing AG";No;No;0,636;Q1;53;325;484;14602;1955;483;3,95;44,93;27,35;1;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Metals and Alloys (Q1); Environmental Science (miscellaneous) (Q2); Mechanics of Materials (Q2)";"Engineering; Environmental Science; Materials Science" +9232;21429;"Photochemical and Photobiological Sciences";journal;"1474905X, 14749092";"Springer Nature";No;No;0,636;Q1;127;151;528;8366;1879;521;3,60;55,40;43,99;0;Switzerland;Western Europe;"Springer Nature";"2002-2026";"Radiation (Q1); Biophysics (Q2); Physical and Theoretical Chemistry (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Physics and Astronomy" +9233;21101085525;"Rivista di Storia Economica";journal;"03933415, 26121026";"Societa Editrice Il Mulino";No;No;0,636;Q1;7;12;49;761;42;40;1,11;63,42;35,71;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); History (Q1)";"Arts and Humanities; Economics, Econometrics and Finance" +9234;23655;"Silva Fennica";journal;"22424075, 00375330";"Finnish Society of Forest Science";Yes;No;0,636;Q1;75;29;113;1408;232;98;1,75;48,55;32,71;0;Finland;Western Europe;"Finnish Society of Forest Science";"1976, 1978, 1981-2026";"Forestry (Q1); Ecological Modeling (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9235;19537;"Veterinary Parasitology";journal;"03044017, 18732550";"Elsevier B.V.";No;No;0,636;Q1;156;236;441;11944;1276;437;2,97;50,61;47,17;1;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Parasitology (Q2)";"Immunology and Microbiology; Medicine; Veterinary" +9236;17539;"Academic Psychiatry";journal;"15457230, 10429670";"Springer International Publishing AG";Yes;No;0,636;Q2;63;223;510;2544;450;187;0,84;11,41;60,50;0;Switzerland;Western Europe;"Springer International Publishing AG";"1977, 1981-1985, 1989-2026";"Education (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Social Sciences" +9237;21100448930;"Chinese Clinical Oncology";journal;"23043873, 23043865";"AME Publishing Company";Yes;No;0,636;Q2;44;81;212;3537;416;153;1,94;43,67;33,82;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2012-2026";"Medicine (miscellaneous) (Q2); Oncology (Q3)";"Medicine" +9238;11400153314;"Contemporary Issues in Early Childhood";journal;"14639491";"SAGE Publications Inc.";No;No;0,636;Q2;39;80;126;3557;336;114;2,48;44,46;80,63;4;United Kingdom;Western Europe;"SAGE Publications Inc.";"2008-2026";"Developmental and Educational Psychology (Q2); Education (Q2)";"Psychology; Social Sciences" +9239;14095;"Ethics and Behavior";journal;"15327019, 10508422";"Routledge";No;No;0,636;Q2;59;62;126;3580;393;123;2,98;57,74;52,26;1;United States;Northern America;"Routledge";"1991-2026";"Psychology (miscellaneous) (Q2); Social Psychology (Q2)";"Psychology" +9240;19900192135;"International Review of Finance";journal;"14682443, 1369412X";"John Wiley and Sons Ltd";No;No;0,636;Q2;35;73;109;4217;332;108;2,96;57,77;33,15;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2002, 2011-2026";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +9241;17500155141;"International Review on Public and Nonprofit Marketing";journal;"18651992, 18651984";"";No;No;0,636;Q2;32;48;119;4065;448;118;3,88;84,69;45,45;0;Germany;Western Europe;"";"2001, 2009-2025";"Economics and Econometrics (Q2); Marketing (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +9242;21100405702;"Journal of Computer Virology and Hacking Techniques";journal;"22638733";"Springer Science + Business Media";Yes;No;0,636;Q2;51;35;137;1070;518;133;4,27;30,57;26,51;0;United States;Northern America;"Springer Science + Business Media";"2014-2026";"Computational Theory and Mathematics (Q2); Computer Science (miscellaneous) (Q2); Hardware and Architecture (Q2); Software (Q2)";"Computer Science" +9243;21100812244;"Journal of Gynecology Obstetrics and Human Reproduction";journal;"24687847";"Elsevier Masson s.r.l.";No;No;0,636;Q2;50;135;455;3994;819;429;1,56;29,59;59,19;0;France;Western Europe;"Elsevier Masson s.r.l.";"2016-2026";"Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)";"Medicine" +9244;21225;"Materialpruefung/Materials Testing";journal;"21958572, 00255300";"Walter de Gruyter GmbH";No;No;0,636;Q2;49;171;519;6737;1775;518;3,53;39,40;20,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1968-1989, 1994-2026";"Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +9245;27800;"Science and Justice";journal;"18764452, 13550306";"Forensic Science Society";No;No;0,636;Q2;59;84;237;4014;689;223;2,12;47,79;49,30;0;United Kingdom;Western Europe;"Forensic Science Society";"1995-2026";"Pathology and Forensic Medicine (Q2)";"Medicine" +9246;5800179612;"Social Neuroscience";journal;"17470919, 17470927";"Taylor and Francis Ltd.";No;No;0,636;Q2;90;28;103;1841;197;100;1,55;65,75;54,65;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Development (Q2); Social Psychology (Q2); Behavioral Neuroscience (Q3)";"Neuroscience; Psychology; Social Sciences" +9247;19700167025;"Spatial and Spatio-temporal Epidemiology";journal;"18775845, 18775853";"Elsevier Ltd";No;No;0,636;Q2;38;40;157;1892;348;157;1,70;47,30;33,16;0;United Kingdom;Western Europe;"Elsevier Ltd";"2009-2026";"Epidemiology (Q2); Geography, Planning and Development (Q2); Health, Toxicology and Mutagenesis (Q2); Infectious Diseases (Q2)";"Environmental Science; Medicine; Social Sciences" +9248;145707;"Technological and Economic Development of Economy";journal;"20294921, 20294913";"Vilnius Gediminas Technical University";Yes;No;0,636;Q2;73;64;233;4079;915;233;3,73;63,73;40,50;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2005-2026";"Finance (Q2)";"Economics, Econometrics and Finance" +9249;25241;"Toxicology Mechanisms and Methods";journal;"15376524, 15376516";"Taylor and Francis Ltd.";No;No;0,636;Q3;62;117;225;7917;776;225;2,97;67,67;48,05;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-1997, 2001-2026";"Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +9250;24733;"American Behavioral Scientist";journal;"15523381, 00027642";"SAGE Publications Inc.";No;No;0,635;Q1;149;171;426;8225;971;412;1,98;48,10;48,48;7;United States;Northern America;"SAGE Publications Inc.";"1957-2026";"Cultural Studies (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Education (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +9251;145017;"Chinese Journal of Integrative Medicine";journal;"19930402, 16720415";"Springer Science and Business Media Deutschland GmbH";No;No;0,635;Q1;52;150;389;6914;1339;383;3,51;46,09;46,56;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1997-2001, 2003-2026";"Complementary and Alternative Medicine (Q1); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)";"Medicine" +9252;21100201769;"Journal of Communication Management";journal;"1363254X";"Emerald Group Publishing Ltd.";No;No;0,635;Q1;56;70;96;4422;376;94;3,46;63,17;57,14;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1995-2026";"Communication (Q1); Strategy and Management (Q2)";"Business, Management and Accounting; Social Sciences" +9253;21101337219;"Journal of Pacifism and Nonviolence";journal;"27727882, 27727874";"Brill Academic Publishers";No;No;0,635;Q1;6;18;27;1159;53;27;1,96;64,39;40,91;0;Netherlands;Western Europe;"Brill Academic Publishers";"2023-2026";"Political Science and International Relations (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)";"Social Sciences" +9254;5400152649;"Mycological Progress";journal;"18618952, 1617416X";"Springer Science and Business Media Deutschland GmbH";No;No;0,635;Q1;58;95;265;6333;720;264;2,72;66,66;42,67;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2006-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +9255;21101181906;"Ornamental Plant Research";journal;"27692094";"Maximum Academic Press";Yes;No;0,635;Q1;11;44;76;2605;220;74;2,92;59,20;50,55;0;United States;Northern America;"Maximum Academic Press";"2021-2026";"Horticulture (Q1); Plant Science (Q2)";"Agricultural and Biological Sciences" +9256;27574;"Regional and Federal Studies";journal;"13597566, 17439434";"Routledge";No;No;0,635;Q1;48;69;99;4521;195;99;1,70;65,52;35,65;2;United Kingdom;Western Europe;"Routledge";"1995-2026";"Political Science and International Relations (Q1); Geography, Planning and Development (Q2)";"Social Sciences" +9257;14623;"Rivista Italiana di Paleontologia e Stratigrafia";journal;"20394942, 00356883";"Universita degli Studi di Milano";Yes;Yes;0,635;Q1;46;28;86;2717;168;86;1,95;97,04;26,55;0;Italy;Western Europe;"Universita degli Studi di Milano";"1979-2025";"Paleontology (Q1); Stratigraphy (Q1); Geology (Q2)";"Earth and Planetary Sciences" +9258;24359;"Women's Studies International Forum";journal;"02775395";"Elsevier Ltd";No;No;0,635;Q1;81;138;330;9113;992;322;2,80;66,04;67,97;0;United Kingdom;Western Europe;"Elsevier Ltd";"1982-2026";"Gender Studies (Q1); Law (Q1); Sociology and Political Science (Q1); Development (Q2); Education (Q2)";"Social Sciences" +9259;28588;"China Ocean Engineering";journal;"08905487, 21918945";"Springer Verlag";No;No;0,635;Q2;38;93;258;3424;654;257;2,42;36,82;24,94;0;Germany;Western Europe;"Springer Verlag";"1987-1993, 1996-2026";"Mechanical Engineering (Q2); Ocean Engineering (Q2); Oceanography (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Earth and Planetary Sciences; Energy; Engineering" +9260;21101198453;"Frontiers in Tropical Diseases";journal;"26737515";"Frontiers Media SA";Yes;No;0,635;Q2;17;78;321;3152;775;297;2,16;40,41;42,99;1;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Infectious Diseases (Q2); Microbiology (medical) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9261;145230;"International Journal of Managerial Finance";journal;"17439132";"Emerald Group Publishing Ltd.";No;No;0,635;Q2;47;58;146;3681;559;145;3,19;63,47;31,58;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005-2026";"Business, Management and Accounting (miscellaneous) (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +9262;19946;"International Urology and Nephrology";journal;"03011623, 15732584";"Springer Science and Business Media B.V.";No;No;0,635;Q2;73;656;1217;20995;2691;1078;2,23;32,00;33,84;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1970-2026";"Nephrology (Q2); Urology (Q2)";"Medicine" +9263;21100887421;"Journal of Counselor Leadership and Advocacy";journal;"23267178";"Taylor and Francis Ltd.";No;No;0,635;Q2;16;21;40;1170;87;38;1,85;55,71;69,23;0;United States;Northern America;"Taylor and Francis Ltd.";"2014-2026";"Clinical Psychology (Q2); Education (Q2); Psychiatry and Mental Health (Q2); Applied Psychology (Q3)";"Medicine; Psychology; Social Sciences" +9264;19400158512;"Musculoskeletal Surgery";journal;"20355114, 20355106";"Springer Verlag";No;No;0,635;Q2;49;75;159;2447;322;155;2,20;32,63;25,16;0;Germany;Western Europe;"Springer Verlag";"2010-2026";"Orthopedics and Sports Medicine (Q2); Surgery (Q2)";"Medicine" +9265;5800173385;"Recent Patents on Anti-Cancer Drug Discovery";journal;"15748928, 22123970";"Bentham Science Publishers";No;No;0,635;Q2;55;84;126;6103;442;121;3,08;72,65;41,53;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +9266;20560;"Reviews in Cardiovascular Medicine";journal;"15306550, 21538174";"IMR Press Limited";Yes;No;0,635;Q2;51;478;1252;30375;3000;1233;2,30;63,55;37,75;0;United States;Northern America;"IMR Press Limited";"2000-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +9267;700147308;"Feminist Theory";journal;"17412773, 14647001";"SAGE Publications Ltd";No;No;0,634;Q1;57;81;112;3796;298;110;2,31;46,86;86,79;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2000-2026";"Gender Studies (Q1)";"Social Sciences" +9268;29515;"Radiation Research";journal;"00337587, 19385404";"Radiation Research Society";No;No;0,634;Q1;145;102;362;4703;897;351;2,31;46,11;41,28;0;United States;Northern America;"Radiation Research Society";"1954-2026";"Radiation (Q1); Biophysics (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Physics and Astronomy" +9269;21101142603;"Social Sciences and Humanities Open";journal;"25902911";"Elsevier Ltd";Yes;No;0,634;Q1;45;1087;953;66247;4140;948;4,34;60,94;44,68;4;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Social Sciences (miscellaneous) (Q1); Decision Sciences (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)";"Decision Sciences; Psychology; Social Sciences" +9270;26587;"Studies in Comparative International Development";journal;"00393606, 19366167";"Springer New York";No;No;0,634;Q1;68;55;81;4519;172;79;2,12;82,16;48,54;6;United States;Northern America;"Springer New York";"1965-1970, 1972-2026";"Political Science and International Relations (Q1); Sociology and Political Science (Q1); Development (Q2)";"Social Sciences" +9271;21101196160;"Syariah: Jurnal Hukum dan Pemikiran";journal;"14126303, 2549001X";"State Islamic University Antasari";Yes;Yes;0,634;Q1;10;17;61;1000;164;61;2,89;58,82;32,56;0;Indonesia;Asiatic Region;"State Islamic University Antasari";"2019-2025";"Arts and Humanities (miscellaneous) (Q1); Religious Studies (Q1)";"Arts and Humanities" +9272;29520;"Animal Cognition";journal;"14359448, 14359456";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,634;Q2;100;89;369;5286;828;359;2,32;59,39;55,66;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1998-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Experimental and Cognitive Psychology (Q2)";"Agricultural and Biological Sciences; Psychology" +9273;19666;"Current Microbiology";journal;"03438651, 14320991";"Springer";No;No;0,634;Q2;120;597;1254;33124;4063;1248;3,14;55,48;45,10;1;United States;Northern America;"Springer";"1978-2026";"Applied Microbiology and Biotechnology (Q2); Medicine (miscellaneous) (Q2); Microbiology (Q3)";"Immunology and Microbiology; Medicine" +9274;21101081624;"Forces in Mechanics";journal;"26663597";"Elsevier B.V.";Yes;No;0,634;Q2;26;34;207;1695;935;207;4,72;49,85;19,82;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +9275;4700152735;"Journal of Quality Assurance in Hospitality and Tourism";journal;"1528008X, 15280098";"Routledge";No;No;0,634;Q2;54;182;248;14416;1197;237;4,41;79,21;35,38;0;United States;Northern America;"Routledge";"2000-2026";"Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting" +9276;144672;"Measuring Business Excellence";journal;"13683047";"Emerald Group Publishing Ltd.";No;No;0,634;Q2;58;51;105;3654;522;103;4,68;71,65;50,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1997-2026";"Business, Management and Accounting (miscellaneous) (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +9277;18710;"Psychiatry (New York)";journal;"00332747, 1943281X";"Routledge";No;No;0,634;Q2;75;47;112;2032;153;70;1,07;43,23;58,96;0;United Kingdom;Western Europe;"Routledge";"1938-2026";"Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +9278;5300152206;"Saudi Journal of Gastroenterology";journal;"19984049, 13193767";"Wolters Kluwer Medknow Publications";Yes;No;0,634;Q2;48;50;178;1941;361;151;2,05;38,82;25,98;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2006-2026";"Gastroenterology (Q2)";"Medicine" +9279;27083;"Thermochimica Acta";journal;"00406031, 1872762X";"Elsevier B.V.";No;No;0,634;Q2;171;190;533;9249;2096;532;3,87;48,68;32,56;0;Netherlands;Western Europe;"Elsevier B.V.";"1970-2026";"Condensed Matter Physics (Q2); Instrumentation (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Physics and Astronomy" +9280;20668;"Vasa - European Journal of Vascular Medicine";journal;"16642872, 03011526";"Hogrefe Publishing";Yes;No;0,634;Q2;49;76;177;3100;438;137;2,97;40,79;31,13;0;Switzerland;Western Europe;"Hogrefe Publishing";"1972-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +9281;21100236214;"ACM/IEEE International Conference on Human-Robot Interaction";conference and proceedings;"21672148";"IEEE Computer Society";No;No;0,634;-;92;328;923;11229;2691;913;2,92;34,23;40,33;0;United States;Northern America;"IEEE Computer Society";"2013-2025";"Artificial Intelligence; Electrical and Electronic Engineering; Human-Computer Interaction";"Computer Science; Engineering" +9282;28049;"Applied Categorical Structures";journal;"09272852, 15729095";"Springer Netherlands";No;No;0,633;Q1;34;41;130;1098;78;129;0,63;26,78;17,14;0;Netherlands;Western Europe;"Springer Netherlands";"1993-2026";"Algebra and Number Theory (Q1); Computer Science (miscellaneous) (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +9283;65131;"Canadian Journal of Agricultural Economics";journal;"00083976, 17447976";"Wiley-Blackwell";No;No;0,633;Q1;53;23;60;1225;158;60;2,53;53,26;17,54;0;United States;Northern America;"Wiley-Blackwell";"1952-2026";"Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Ecology (Q2); Economics and Econometrics (Q2); Global and Planetary Change (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Environmental Science" +9284;70397;"Evaluation";journal;"13563890, 14617153";"SAGE Publications Ltd";No;No;0,633;Q1;64;35;95;2038;193;80;1,26;58,23;52,53;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Sociology and Political Science (Q1); Development (Q2)";"Social Sciences" +9285;19700188149;"Journal of Chinese Economic and Business Studies";journal;"14765284, 14765292";"Routledge";No;No;0,633;Q1;30;51;78;4001;366;76;5,32;78,45;40,44;0;United States;Northern America;"Routledge";"2010-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +9286;21100371203;"Revista de Derecho Politico";journal;"21745625, 0211979X";"Universidad Nacional de Educacion a Distancia (UNED)";Yes;Yes;0,633;Q1;10;37;119;1550;64;118;0,64;41,89;40,63;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2014-2025";"Law (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)";"Social Sciences" +9287;5800207581;"Translator";journal;"17570409, 13556509";"Taylor and Francis Ltd.";No;No;0,633;Q1;56;31;98;1278;176;89;1,52;41,23;67,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +9288;21100218529;"Value in Health Regional Issues";journal;"22121099, 22121102";"Elsevier Inc.";No;No;0,633;Q1;34;92;290;3530;585;277;1,95;38,37;43,72;2;United States;Northern America;"Elsevier Inc.";"2012-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Health Policy (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Medicine; Pharmacology, Toxicology and Pharmaceutics" +9289;12737;"Aging, Neuropsychology, and Cognition";journal;"17444128, 13825585";"Taylor and Francis Ltd.";No;No;0,633;Q2;73;52;161;3637;355;159;2,16;69,94;56,87;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Experimental and Cognitive Psychology (Q2); Neuropsychology and Physiological Psychology (Q2); Psychiatry and Mental Health (Q2); Geriatrics and Gerontology (Q3)";"Medicine; Psychology" +9290;14565;"American Journal of Audiology";journal;"10590889, 15589137";"American Speech-Language-Hearing Association (ASHA)";No;No;0,633;Q2;59;92;301;3756;587;291;1,69;40,83;60,97;0;United States;Northern America;"American Speech-Language-Hearing Association (ASHA)";"1991, 1995-2026";"Speech and Hearing (Q2)";"Health Professions" +9291;20851;"Environment";journal;"19399154, 00139157";"Taylor and Francis Ltd.";No;No;0,633;Q2;64;45;94;1016;136;38;1,28;22,58;57,14;1;United States;Northern America;"Taylor and Francis Ltd.";"1969-2026";"Environmental Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q2); Water Science and Technology (Q2); Global and Planetary Change (Q3)";"Energy; Environmental Science" +9292;4400151750;"Foundations and Trends in Theoretical Computer Science";journal;"15513068, 1551305X";"Now Publishers Inc";No;No;0,633;Q2;31;1;5;154;12;5;4,00;154,00;33,33;0;United States;Northern America;"Now Publishers Inc";"2005-2007, 2009-2017, 2019-2020, 2022, 2024-2025";"Theoretical Computer Science (Q2)";"Mathematics" +9293;21100944560;"Frontiers in Astronomy and Space Sciences";journal;"2296987X";"Frontiers Media SA";Yes;No;0,633;Q2;44;176;1024;8944;2285;940;2,04;50,82;33,33;0;Switzerland;Western Europe;"Frontiers Media SA";"2014-2026";"Astronomy and Astrophysics (Q2)";"Physics and Astronomy" +9294;130140;"Geographical Research";journal;"17455863, 17455871";"Wiley-Blackwell Publishing Ltd";No;No;0,633;Q2;61;51;139;3482;334;106;2,29;68,27;62,41;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2005-2026";"Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +9295;6000195391;"International Journal of Laboratory Hematology";journal;"1751553X, 17515521";"John Wiley and Sons Inc";No;No;0,633;Q2;75;192;657;4120;1004;415;1,64;21,46;49,39;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2007-2026";"Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Hematology (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9296;15571;"Journal of Mental Health Policy and Economics";journal;"10914358, 1099176X";"ICMPE";No;No;0,633;Q2;37;14;50;258;51;38;1,00;18,43;36,36;0;Italy;Western Europe;"ICMPE";"1998, 2002-2025";"Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9297;21100777276;"Obstetrics and Gynecology International";journal;"16879597, 16879589";"John Wiley and Sons Ltd";Yes;No;0,633;Q2;30;31;58;859;129;58;2,28;27,71;45,14;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2016-2026";"Obstetrics and Gynecology (Q2)";"Medicine" +9298;21100356802;"Sensing and Bio-Sensing Research";journal;"22141804";"Elsevier B.V.";Yes;No;0,633;Q2;61;198;242;10963;1420;242;5,67;55,37;37,44;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Analytical Chemistry (Q2); Biotechnology (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Signal Processing (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Computer Science; Engineering; Materials Science" +9299;26116;"Growth Hormone and IGF Research";journal;"10966374, 15322238";"Churchill Livingstone";No;No;0,633;Q3;72;15;72;616;159;72;2,36;41,07;47,37;0;United Kingdom;Western Europe;"Churchill Livingstone";"1998-2026";"Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9300;21101298336;"Consumption and Society";journal;"27528499";"Bristol University Press";No;No;0,632;Q1;12;26;70;1460;194;53;2,28;56,15;71,43;0;United Kingdom;Western Europe;"Bristol University Press";"2022-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Global and Planetary Change (Q3)";"Environmental Science; Social Sciences" +9301;21100840031;"Critical Military Studies";journal;"23337486, 23337494";"Taylor and Francis Ltd.";No;No;0,632;Q1;27;52;98;3030;177;96;1,70;58,27;60,32;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"History (Q1); Law (Q1); Political Science and International Relations (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Management Science and Operations Research (Q2)";"Arts and Humanities; Decision Sciences; Social Sciences" +9302;4000152106;"Journal of Applied Oral Science";journal;"16787757, 16787765";"Faculdade de Odontologia de Bauru da Universidade de Sao Paulo";Yes;Yes;0,632;Q1;71;72;206;2761;606;203;2,82;38,35;56,23;0;Brazil;Latin America;"Faculdade de Odontologia de Bauru da Universidade de Sao Paulo";"2006-2026";"Dentistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Dentistry; Medicine" +9303;4700152403;"Journal of Gay and Lesbian Social Services";journal;"15404056, 10538720";"Routledge";No;No;0,632;Q1;51;0;75;0;202;75;2,32;0,00;0,00;0;United States;Northern America;"Routledge";"1994-2023";"Gender Studies (Q1); Sociology and Political Science (Q1)";"Social Sciences" +9304;4300151409;"Plant Pathology Journal";journal;"15982254, 20939280";"Korean Society of Plant Pathology";Yes;No;0,632;Q1;53;70;182;3722;536;173;2,94;53,17;45,27;0;South Korea;Asiatic Region;"Korean Society of Plant Pathology";"2002-2026";"Agronomy and Crop Science (Q1)";"Agricultural and Biological Sciences" +9305;21101328478;"Sports Economics Review";journal;"27731618";"Elsevier B.V.";No;No;0,632;Q1;7;13;36;525;69;34;1,92;40,38;13,04;1;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +9306;21101041948;"BMJ Surgery, Interventions, and Health Technologies";journal;"26314940";"BMJ Publishing Group";Yes;No;0,632;Q2;14;30;58;1091;131;51;2,45;36,37;30,56;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2019-2025";"Biomedical Engineering (Q2); Surgery (Q2)";"Engineering; Medicine" +9307;20682;"Current Pharmaceutical Design";journal;"13816128, 18734286";"Bentham Science Publishers";Yes;No;0,632;Q2;197;325;899;33476;3057;827;3,35;103,00;40,61;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"1995-2026";"Drug Discovery (Q2); Pharmacology (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +9308;21256;"Drugs of Today";journal;"16993993, 16994019";"Clarivate";No;No;0,632;Q2;61;0;65;0;172;65;4,31;0,00;0,00;0;Spain;Western Europe;"Clarivate";"1968, 1978-2023";"Medicine (miscellaneous) (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +9309;21328;"European Journal of Drug Metabolism and Pharmacokinetics";journal;"21070180, 03787966";"";No;No;0,632;Q2;52;44;191;1536;504;186;2,39;34,91;44,83;0;Switzerland;Western Europe;"";"1976-2026";"Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +9310;21101268333;"Gases";journal;"26735628";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,632;Q2;11;29;46;1536;256;45;6,16;52,97;26,17;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Chemical Engineering (miscellaneous) (Q2); Energy (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)";"Chemical Engineering; Energy; Environmental Science" +9311;21100814509;"Journal of Facilities Management";journal;"17410983, 14725967";"Emerald Group Publishing Ltd.";No;No;0,632;Q2;49;62;128;4619;646;127;4,89;74,50;28,57;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2002-2003, 2005-2026";"Business and International Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +9312;5300152529;"Journal of the Korean Ceramic Society";journal;"12297801";"Korean Ceramic Society";No;No;0,632;Q2;41;118;284;6641;1125;284;4,36;56,28;28,52;0;South Korea;Asiatic Region;"Korean Ceramic Society";"2007-2026";"Ceramics and Composites (Q2)";"Materials Science" +9313;19800188031;"Mediterranean Marine Science";journal;"17916763, 1108393X";"Hellenic Centre for Marine Research";Yes;No;0,632;Q2;56;70;177;5497;453;174;2,36;78,53;47,19;1;Greece;Western Europe;"Hellenic Centre for Marine Research";"2000-2026";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Environmental Engineering (Q2); Oceanography (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +9314;25809;"Positivity";journal;"13851292, 15729281";"Springer International Publishing";No;No;0,632;Q2;37;61;225;1419;228;225;1,09;23,26;25,42;0;Switzerland;Western Europe;"Springer International Publishing";"1997-2026";"Analysis (Q2); Mathematics (miscellaneous) (Q2); Theoretical Computer Science (Q2)";"Mathematics" +9315;21100390416;"Post Reproductive Health";journal;"20533691, 20533705";"Sage Publications";No;No;0,632;Q2;44;43;103;990;219;75;2,25;23,02;71,07;0;United States;Northern America;"Sage Publications";"1995, 2014-2025";"Obstetrics and Gynecology (Q2)";"Medicine" +9316;4700152205;"Criminology and Criminal Justice";journal;"17488966, 17488958";"SAGE Publications Ltd";No;No;0,631;Q1;67;109;177;6611;463;176;2,54;60,65;48,37;14;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2003, 2006-2026";"Law (Q1)";"Social Sciences" +9317;19779;"Ecological Entomology";journal;"13652311, 03076946";"Wiley-Blackwell Publishing Ltd";No;No;0,631;Q1;103;110;267;7535;573;266;1,96;68,50;39,23;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1976-2026";"Insect Science (Q1); Ecology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9318;25027;"European Journal of Paediatric Dentistry";journal;"1591996X, 2035648X";"Ariesdue Srl";No;No;0,631;Q1;49;60;168;1226;434;159;2,51;20,43;61,69;0;Italy;Western Europe;"Ariesdue Srl";"2001-2025";"Dentistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Dentistry; Medicine" +9319;144966;"Feminist Legal Studies";journal;"15728455, 09663622";"Springer Science and Business Media B.V.";No;No;0,631;Q1;42;30;53;1625;106;39;1,87;54,17;62,96;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1993-2002, 2005-2025";"Gender Studies (Q1)";"Social Sciences" +9320;25072;"Geodiversitas";journal;"12809659, 16389395";"Museum National d'Histoire Naturelle";Yes;No;0,631;Q1;48;16;78;3103;126;78;1,67;193,94;23,38;0;France;Western Europe;"Museum National d'Histoire Naturelle";"2002-2026";"Paleontology (Q1); Geology (Q2)";"Earth and Planetary Sciences" +9321;23699;"Hypatia";journal;"08875367, 15272001";"Cambridge University Press";No;No;0,631;Q1;55;84;150;5141;332;145;2,02;61,20;75,00;0;United States;Northern America;"Cambridge University Press";"1986-1999, 2001-2002, 2004, 2006-2007, 2011-2026";"Gender Studies (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +9322;22028;"International Journal of Primatology";journal;"15738604, 01640291";"Springer";No;No;0,631;Q1;96;71;194;5767;397;183;1,60;81,23;46,02;0;United States;Northern America;"Springer";"1980-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +9323;21100803393;"Journal of Palaeogeography";journal;"20953836, 25244507";"Elsevier B.V.";Yes;No;0,631;Q1;36;70;115;5773;282;114;2,43;82,47;26,87;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Paleontology (Q1); Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +9324;18315;"Journal of Veterinary Emergency and Critical Care";journal;"14793261, 14764431";"Wiley-Blackwell Publishing Ltd";No;No;0,631;Q1;67;104;276;3544;461;266;1,51;34,08;64,74;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1991-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +9325;20500195101;"European Journal of Environmental and Civil Engineering";journal;"21167214, 19648189";"Taylor and Francis Ltd.";No;No;0,631;Q2;55;172;849;9895;2593;828;2,96;57,53;22,81;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Civil and Structural Engineering (Q2); Environmental Engineering (Q2)";"Engineering; Environmental Science" +9326;21101331686;"Frontiers in Natural Products";journal;"28132602";"Frontiers Media SA";Yes;No;0,631;Q2;10;16;50;1315;187;45;3,27;82,19;43,66;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Chemistry (miscellaneous) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +9327;19761;"International Journal of Systematic and Evolutionary Microbiology";journal;"14665026, 14665034";"Microbiology Society";No;No;0,631;Q2;213;374;1369;16058;2780;1331;2,12;42,94;45,11;0;United Kingdom;Western Europe;"Microbiology Society";"2000-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Medicine (miscellaneous) (Q2); Microbiology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +9328;21101195680;"Journal of Infrastructure Preservation and Resilience";journal;"26622521";"Springer Nature";Yes;No;0,631;Q2;20;45;62;2823;239;62;3,37;62,73;24,83;0;Switzerland;Western Europe;"Springer Nature";"2020-2026";"Civil and Structural Engineering (Q2); Engineering (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +9329;21100884577;"Journal of Scleroderma and Related Disorders";journal;"23971991, 23971983";"SAGE Publications Ltd";No;No;0,631;Q2;30;76;101;2517;186;96;1,38;33,12;60,52;1;Italy;Western Europe;"SAGE Publications Ltd";"2016-2025";"Rheumatology (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +9330;17241;"Journal of Ultrasound in Medicine";journal;"02784297, 15509613";"John Wiley and Sons Ltd";No;No;0,631;Q2;113;300;850;7432;2038;751;2,46;24,77;47,26;0;United States;Northern America;"John Wiley and Sons Ltd";"1982-2026";"Medicine (miscellaneous) (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Health Professions; Medicine" +9331;23481;"Journal of Vestibular Research: Equilibrium and Orientation";journal;"09574271, 18786464";"SAGE Publications Ltd";No;No;0,631;Q2;71;32;113;0;345;104;1,15;0,00;34,83;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1990, 1992-2026";"Otorhinolaryngology (Q2); Neurology (clinical) (Q3); Neuroscience (miscellaneous) (Q3); Sensory Systems (Q3)";"Medicine; Neuroscience" +9332;14805;"Steroids";journal;"0039128X, 18785867";"Elsevier Inc.";No;No;0,631;Q2;121;87;314;4298;860;305;2,90;49,40;49,36;0;United States;Northern America;"Elsevier Inc.";"1963-2026";"Clinical Biochemistry (Q2); Organic Chemistry (Q2); Pharmacology (Q2); Biochemistry (Q3); Endocrinology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +9333;23974;"Journal of Symbolic Logic";journal;"19435886, 00224812";"Cambridge University Press";No;No;0,630;Q1;51;161;244;3967;172;243;0,70;24,64;15,79;0;United Kingdom;Western Europe;"Cambridge University Press";"1938, 1958, 1987, 1996-2026";"Logic (Q1); Philosophy (Q1)";"Arts and Humanities; Mathematics" +9334;21101172000;"Meat and Muscle Biology";journal;"2575985X";"Iowa State University Digital Press";Yes;No;0,630;Q1;21;57;129;3193;373;129;1,79;56,02;40,00;0;United States;Northern America;"Iowa State University Digital Press";"2017, 2019-2026";"Animal Science and Zoology (Q1); Food Science (Q2)";"Agricultural and Biological Sciences" +9335;4700152866;"Topoi";journal;"01677411, 15728749";"Springer Netherlands";Yes;No;0,630;Q1;41;220;333;12313;771;308;2,36;55,97;34,44;0;Netherlands;Western Europe;"Springer Netherlands";"1982-1996, 2003-2004, 2006-2026";"Philosophy (Q1)";"Arts and Humanities" +9336;17683;"AEU-Archiv fur Elektronik und Ubertragungstechnik";journal;"00011096, 16180399";"";No;No;0,630;Q2;88;368;1170;13104;4453;1169;3,85;35,61;24,60;0;Germany;Western Europe;"";"2001-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +9337;23382;"Clinical and Experimental Pharmacology and Physiology";journal;"14401681, 03051870";"Wiley-Blackwell Publishing Ltd";No;No;0,630;Q2;121;77;295;3073;825;290;2,72;39,91;48,34;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1974-2026";"Pharmacology (Q2); Physiology (Q3); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +9338;144815;"Computational Management Science";journal;"1619697X, 16196988";"Springer";No;No;0,630;Q2;44;18;119;809;273;118;1,96;44,94;23,08;0;Germany;Western Europe;"Springer";"2005-2026";"Business, Management and Accounting (miscellaneous) (Q2); Information Systems (Q2); Management Information Systems (Q2); Management Science and Operations Research (Q2); Statistics, Probability and Uncertainty (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences" +9339;21101131421;"Consumer Behavior in Tourism and Hospitality";journal;"27526674, 27526666";"Emerald Publishing";No;No;0,630;Q2;56;69;142;4127;636;141;4,26;59,81;54,77;0;United Kingdom;Western Europe;"Emerald Publishing";"2022-2026";"Geography, Planning and Development (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +9340;145362;"Dermatologica Sinica";journal;"10278117, 2223330X";"Wolters Kluwer Medknow Publications";Yes;No;0,630;Q2;25;72;172;1843;170;74;1,19;25,60;40,97;0;United Kingdom;Western Europe;"Wolters Kluwer Medknow Publications";"2005-2025";"Dermatology (Q2)";"Medicine" +9341;23244;"International Journal of Mathematics";journal;"17936519, 0129167X";"World Scientific Publishing Co. Pte Ltd";No;No;0,630;Q2;49;97;294;2532;193;293;0,55;26,10;27,17;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1996-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +9342;5700165174;"Journal of Fixed Point Theory and Applications";journal;"16617738, 16617746";"Springer International Publishing";No;No;0,630;Q2;46;104;224;3204;242;223;1,03;30,81;27,42;0;Switzerland;Western Europe;"Springer International Publishing";"2007-2026";"Applied Mathematics (Q2); Geometry and Topology (Q2); Modeling and Simulation (Q2)";"Mathematics" +9343;20578;"Journal of Food and Drug Analysis";journal;"10219498, 22246614";"National Laboratories of Foods and Drugs";Yes;No;0,630;Q2;95;38;136;2097;506;134;3,65;55,18;46,71;0;Taiwan;Asiatic Region;"National Laboratories of Foods and Drugs";"1994-2025";"Food Science (Q2); Pharmacology (Q2)";"Agricultural and Biological Sciences; Pharmacology, Toxicology and Pharmaceutics" +9344;21101101858;"Systems Microbiology and Biomanufacturing";journal;"26627663, 26627655";"Springer Nature";No;No;0,630;Q2;26;114;223;7353;972;221;4,23;64,50;43,14;0;China;Asiatic Region;"Springer Nature";"2021-2026";"Applied Microbiology and Biotechnology (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Food Science (Q2); Microbiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +9345;21101215011;"International Conference on Information and Knowledge Management, Proceedings";conference and proceedings;"21550751";"Association for Computing Machinery";No;No;0,630;-;166;0;1355;0;5106;1349;2,66;0,00;0,00;0;United States;Northern America;"Association for Computing Machinery";"1995-2024";"Business, Management and Accounting (miscellaneous); Decision Sciences (miscellaneous)";"Business, Management and Accounting; Decision Sciences" +9346;19277;"Proceedings of the IEEE International Conference on Requirements Engineering";conference and proceedings;"23326441, 1090705X";"IEEE Computer Society";No;No;0,630;-;66;72;207;2568;585;196;3,52;35,67;37,07;0;United States;Northern America;"IEEE Computer Society";"1993, 1995-2006, 2009, 2019-2025";"Computer Science (miscellaneous); Engineering (miscellaneous); Hardware and Architecture; Industrial and Manufacturing Engineering; Software; Strategy and Management";"Business, Management and Accounting; Computer Science; Engineering" +9347;21100812850;"European Journal of Taxonomy";journal;"21189773";"Museum National d'Histoire Naturelle";Yes;Yes;0,629;Q1;29;164;518;9201;789;517;1,55;56,10;29,97;0;France;Western Europe;"Museum National d'Histoire Naturelle";"2015-2026";"Animal Science and Zoology (Q1); Insect Science (Q1); Paleontology (Q1); Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +9348;145213;"Extremes";journal;"13861999, 1572915X";"Springer";No;No;0,629;Q1;40;28;69;1129;143;67;2,54;40,32;25,35;0;United States;Northern America;"Springer";"2001, 2004-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Engineering (miscellaneous) (Q2); Statistics and Probability (Q2)";"Economics, Econometrics and Finance; Engineering; Mathematics" +9349;20386;"Insect Molecular Biology";journal;"13652583, 09621075";"Wiley-Blackwell Publishing Ltd";No;No;0,629;Q1;109;78;191;4997;570;186;3,27;64,06;45,10;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2026";"Insect Science (Q1); Genetics (Q3); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +9350;12100155619;"Journal of Police and Criminal Psychology";journal;"19366469, 08820783";"Springer Verlag";No;No;0,629;Q1;41;103;244;6056;562;244;1,99;58,80;57,62;4;Germany;Western Europe;"Springer Verlag";"1985-2026";"Law (Q1); Applied Psychology (Q3)";"Psychology; Social Sciences" +9351;21100898050;"Social Enterprise Journal";journal;"17508533, 17508614";"Emerald Group Publishing Ltd.";No;No;0,629;Q1;29;88;107;6591;506;104;4,45;74,90;49,54;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2012, 2016, 2018-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Sociology and Political Science (Q1); Business, Management and Accounting (miscellaneous) (Q2); Development (Q2); Management, Monitoring, Policy and Law (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +9352;94353;"Weed Research";journal;"00431737, 13653180";"Wiley-Blackwell Publishing Ltd";No;No;0,629;Q1;92;63;121;3246;367;121;2,30;51,52;36,64;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1961-2026";"Agronomy and Crop Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +9353;24966;"Evolutionary Computation";journal;"15309304, 10636560";"MIT Press";No;No;0,629;Q2;96;19;55;439;203;54;3,77;23,11;20,00;0;United States;Northern America;"MIT Press";"1996-2025";"Computational Mathematics (Q2)";"Mathematics" +9354;19700181207;"International Journal of Sustainable Engineering";journal;"19397038, 19397046";"Taylor and Francis Ltd.";Yes;No;0,629;Q2;51;65;133;4372;596;132;4,46;67,26;30,14;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +9355;21100459267;"Journal of Adolescent and Young Adult Oncology";journal;"21565333, 2156535X";"Mary Ann Liebert Inc.";No;No;0,629;Q2;39;106;302;3707;540;296;1,81;34,97;68,65;0;United States;Northern America;"Mary Ann Liebert Inc.";"2011, 2014-2025";"Pediatrics, Perinatology and Child Health (Q2); Oncology (Q3)";"Medicine" +9356;29928;"Journal of Cancer Education";journal;"15430154, 08858195";"Springer Publishing Company";No;No;0,629;Q2;58;324;594;7353;1198;574;1,81;22,69;59,92;1;United States;Northern America;"Springer Publishing Company";"1986-2026";"Public Health, Environmental and Occupational Health (Q2); Oncology (Q3)";"Medicine" +9357;15552;"Microprocessors and Microsystems";journal;"01419331";"Elsevier B.V.";No;No;0,629;Q2;62;41;423;1794;1631;422;3,58;43,76;22,22;0;Netherlands;Western Europe;"Elsevier B.V.";"1978-2026";"Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Software (Q2)";"Computer Science" +9358;21100416086;"NFS Journal";journal;"23523646";"Elsevier GmbH";Yes;No;0,629;Q2;36;40;77;2413;326;75;4,08;60,33;49,40;0;Germany;Western Europe;"Elsevier GmbH";"2015-2026";"Food Science (Q2); Nutrition and Dietetics (Q2)";"Agricultural and Biological Sciences; Nursing" +9359;22397;"Vitamins and Hormones";book series;"00836729";"Academic Press Inc.";No;No;0,629;Q3;87;37;145;4030;698;6;5,43;108,92;54,72;0;United States;Northern America;"Academic Press Inc.";"1943-1962, 1964-1972, 1974-1976, 1978-1986, 1988-1989, 1991, 1993-2026";"Endocrinology (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology" +9360;31458;"Acupuncture in Medicine";journal;"09645284, 17599873";"BMJ Publishing Group";No;No;0,628;Q1;59;40;176;1266;355;113;1,91;31,65;45,00;0;United Kingdom;Western Europe;"BMJ Publishing Group";"1992, 1996-2026";"Complementary and Alternative Medicine (Q1); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q3)";"Medicine" +9361;21100897005;"Frontiers in Built Environment";journal;"22973362";"Frontiers Media SA";Yes;No;0,628;Q1;52;314;794;17162;2900;741;3,18;54,66;28,91;1;Switzerland;Western Europe;"Frontiers Media SA";"2015-2026";"Urban Studies (Q1); Building and Construction (Q2); Geography, Planning and Development (Q2)";"Engineering; Social Sciences" +9362;29854;"Occupational Therapy International";journal;"15570703, 09667903";"John Wiley and Sons Ltd";Yes;No;0,628;Q1;49;41;107;1765;279;107;2,38;43,05;61,18;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1994-2026";"Occupational Therapy (Q1); Medicine (miscellaneous) (Q2)";"Health Professions; Medicine" +9363;17400154814;"Applied Spatial Analysis and Policy";journal;"18744621, 1874463X";"Springer Netherlands";No;No;0,628;Q2;36;162;206;10556;706;204;3,64;65,16;35,57;0;Netherlands;Western Europe;"Springer Netherlands";"2009-2026";"Geography, Planning and Development (Q2)";"Social Sciences" +9364;4700152300;"Brazilian Journal of Otorhinolaryngology";journal;"18088694, 18088686";"Elsevier Editora Ltda";Yes;No;0,628;Q2;52;159;498;6133;1047;474;1,74;38,57;39,94;0;Brazil;Latin America;"Elsevier Editora Ltda";"2005-2026";"Otorhinolaryngology (Q2)";"Medicine" +9365;21880;"Cereal Chemistry";journal;"19433638, 00090352";"John Wiley & Sons Inc.";No;No;0,628;Q2;124;91;337;3776;1215;329;3,32;41,49;42,98;0;United States;Northern America;"John Wiley & Sons Inc.";"1974, 1978-1979, 1981, 1983-1984, 1986, 1989, 1993-2026";"Food Science (Q2); Organic Chemistry (Q2)";"Agricultural and Biological Sciences; Chemistry" +9366;66344;"Chinese Optics Letters";journal;"16717694";"Optica Publishing Group (formerly OSA)";No;No;0,628;Q2;53;324;705;10521;1787;700;2,53;32,47;32,97;0;China;Asiatic Region;"Optica Publishing Group (formerly OSA)";"2003-2026";"Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +9367;21047;"Gongcheng Lixue/Engineering Mechanics";journal;"10004750";"Tsinghua University";No;No;0,628;Q2;49;327;951;10136;1882;951;1,79;31,00;28,70;0;China;Asiatic Region;"Tsinghua University";"1997-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +9368;17012;"Journal of Petroleum Geology";journal;"17475457, 01416421";"John Wiley and Sons Inc";No;No;0,628;Q2;60;13;53;1291;138;53;2,50;99,31;25,40;0;United States;Northern America;"John Wiley and Sons Inc";"1978-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Geology (Q2)";"Earth and Planetary Sciences; Energy" +9369;21101196444;"Restorative Dentistry and Endodontics";journal;"22347658, 22347666";"Korean Academy of Conservative Dentistry";Yes;Yes;0,628;Q2;8;41;83;1429;278;80;3,35;34,85;46,04;0;South Korea;Asiatic Region;"Korean Academy of Conservative Dentistry";"2023-2025";"Dentistry (miscellaneous) (Q2)";"Dentistry" +9370;21101053588;"SMAI Journal of Computational Mathematics";journal;"24268399";"SMAI French Society for Applied and Industrial Mathematics";Yes;Yes;0,628;Q2;17;20;38;842;46;38;0,96;42,10;15,79;0;France;Western Europe;"SMAI French Society for Applied and Industrial Mathematics";"2015-2025";"Computational Mathematics (Q2); Modeling and Simulation (Q2); Numerical Analysis (Q2); Statistics and Probability (Q2)";"Mathematics" +9371;21100984844;"World Journal of Cardiology";journal;"19498462";"Baishideng Publishing Group Inc";Yes;No;0,628;Q2;23;146;217;8098;561;211;2,25;55,47;33,56;0;United States;Northern America;"Baishideng Publishing Group Inc";"2010, 2015-2018, 2020-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +9372;14116;"Education and Urban Society";journal;"00131245, 15523535";"SAGE Publications Inc.";No;No;0,627;Q1;57;42;141;2065;328;140;2,37;49,17;47,31;0;United States;Northern America;"SAGE Publications Inc.";"1968-2026";"Urban Studies (Q1); Education (Q2)";"Social Sciences" +9373;21101194301;"JDS Communications";journal;"26669102";"Elsevier B.V.";Yes;No;0,627;Q1;18;170;347;4334;878;338;2,37;25,49;45,52;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +9374;23434;"Journal of Risk Research";journal;"14664461, 13669877";"Routledge";No;No;0,627;Q1;87;101;267;6398;767;249;2,45;63,35;51,37;0;United Kingdom;Western Europe;"Routledge";"1998-2026";"Social Sciences (miscellaneous) (Q1); Engineering (miscellaneous) (Q2); Safety, Risk, Reliability and Quality (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Engineering; Social Sciences" +9375;5000153704;"Morphology";journal;"18715656, 18715621";"Springer Netherlands";No;No;0,627;Q1;30;18;45;1129;71;45;1,88;62,72;40,00;0;Netherlands;Western Europe;"Springer Netherlands";"2006-2026";"Linguistics and Language (Q1)";"Social Sciences" +9376;16067;"Reading Teacher";journal;"00340561";"Wiley-Blackwell";No;No;0,627;Q1;66;51;264;1737;521;231;1,81;34,06;82,61;0;United States;Northern America;"Wiley-Blackwell";"1995-2026";"Linguistics and Language (Q1); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +9377;16700154702;"Veterinary and Comparative Oncology";journal;"14765829, 14765810";"Wiley-Blackwell Publishing Ltd";No;No;0,627;Q1;56;65;238;2516;483;236;1,92;38,71;53,83;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2007-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +9378;21100773822;"British Journal of Pain";journal;"20494645, 20494637";"SAGE Publications Ltd";No;No;0,627;Q2;32;47;166;1933;380;150;2,49;41,13;53,99;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2013-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +9379;21101029476;"Communications in Combinatorics and Optimization";journal;"25382128, 25382136";"Azarbaijan Shahid Madani University";Yes;Yes;0,627;Q2;15;61;140;1284;192;136;1,40;21,05;26,89;0;Iran;Middle East;"Azarbaijan Shahid Madani University";"2016-2026";"Control and Optimization (Q2); Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +9380;17700156775;"Corporate Reputation Review";journal;"13633589, 14791889";"Palgrave Macmillan Ltd.";No;No;0,627;Q2;79;51;76;4573;312;75;4,21;89,67;46,15;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1997-2026";"Business and International Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +9381;29462;"GroundWater Monitoring and Remediation";journal;"10693629, 17456592";"John Wiley and Sons Inc";No;No;0,627;Q2;56;44;129;1148;160;91;1,29;26,09;35,16;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1981-2026";"Civil and Structural Engineering (Q2); Water Science and Technology (Q2)";"Engineering; Environmental Science" +9382;18709;"IEEE Software";journal;"19374194, 07407459";"IEEE Computer Society";No;No;0,627;Q2;134;114;330;1158;997;284;3,27;10,16;24,84;0;United States;Northern America;"IEEE Computer Society";"1984-2026";"Software (Q2)";"Computer Science" +9383;21100904904;"International Journal of Particle Therapy";journal;"23315180";"Elsevier B.V.";Yes;No;0,627;Q2;19;41;101;1387;224;99;1,73;33,83;29,60;0;United States;Northern America;"Elsevier B.V.";"2018-2026";"Atomic and Molecular Physics, and Optics (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine; Physics and Astronomy" +9384;23273;"International Journal of Phytoremediation";journal;"15497879, 15226514";"Taylor and Francis Ltd.";No;No;0,627;Q2;116;214;508;14569;1888;503;3,73;68,08;42,43;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994, 1996-2026";"Plant Science (Q2); Pollution (Q2); Environmental Chemistry (Q3)";"Agricultural and Biological Sciences; Environmental Science" +9385;21100933316;"Journal for Person-Oriented Research";journal;"20030177, 20020244";"Lundh Research Foundation";Yes;Yes;0,627;Q2;10;15;25;530;47;23;1,89;35,33;48,57;0;Sweden;Western Europe;"Lundh Research Foundation";"2019-2025";"Psychology (miscellaneous) (Q2); Applied Psychology (Q3)";"Psychology" +9386;145670;"Journal of International Entrepreneurship";journal;"15737349, 15707385";"Springer";No;No;0,627;Q2;62;44;61;4995;247;56;2,95;113,52;35,51;0;Netherlands;Western Europe;"Springer";"2005-2025";"Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting" +9387;12100156320;"Mind, Brain, and Education";journal;"17512271, 1751228X";"Wiley-Blackwell Publishing Ltd";No;No;0,627;Q2;53;33;114;1744;255;102;2,06;52,85;71,21;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2008-2026";"Developmental and Educational Psychology (Q2); Education (Q2); Experimental and Cognitive Psychology (Q2); Cognitive Neuroscience (Q3)";"Neuroscience; Psychology; Social Sciences" +9388;29825;"Rejuvenation Research";journal;"15578577, 15491684";"Mary Ann Liebert Inc.";No;No;0,627;Q3;76;42;91;2121;188;78;1,70;50,50;41,45;0;United States;Northern America;"Mary Ann Liebert Inc.";"2000-2001, 2004-2026";"Geriatrics and Gerontology (Q3); Aging (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9389;86164;"Archaeometry";journal;"0003813X, 14754754";"Wiley-Blackwell Publishing Ltd";No;No;0,626;Q1;86;181;272;10924;484;271;1,68;60,35;45,84;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1958-1967, 1969-2026";"Archeology (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +9390;5600155017;"International Journal of Human Rights";journal;"1744053X, 13642987";"Routledge";No;No;0,626;Q1;46;128;233;10871;591;226;2,36;84,93;55,49;4;United Kingdom;Western Europe;"Routledge";"2009-2026";"Law (Q1); Sociology and Political Science (Q1)";"Social Sciences" +9391;21101196407;"Journal of Umm Al-Qura University for Applied Sciences";journal;"16588185";"Springer Nature";Yes;Yes;0,626;Q1;21;144;143;9736;718;142;5,16;67,61;33,33;2;United Arab Emirates;Middle East;"Springer Nature";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2); Geology (Q2); Mathematics (miscellaneous) (Q2); Microbiology (Q3)";"Agricultural and Biological Sciences; Chemistry; Earth and Planetary Sciences; Immunology and Microbiology; Mathematics" +9392;23083;"Language and Communication";journal;"02715309";"Elsevier Ltd";No;No;0,626;Q1;59;76;158;4652;333;155;2,14;61,21;53,10;0;United Kingdom;Western Europe;"Elsevier Ltd";"1981-2026";"Communication (Q1); Linguistics and Language (Q1); Social Psychology (Q2); Experimental and Cognitive Psychology (Q3)";"Psychology; Social Sciences" +9393;21100827839;"Unmanned Systems";journal;"23013850, 23013869";"World Scientific";No;No;0,626;Q1;35;211;131;8493;488;126;3,60;40,25;23,65;0;Singapore;Asiatic Region;"World Scientific";"2013-2026";"Aerospace Engineering (Q1); Automotive Engineering (Q1); Control and Optimization (Q2); Control and Systems Engineering (Q2)";"Engineering; Mathematics" +9394;55870;"Bollettino della Societa Paleontologica Italiana";journal;"03757633";"Societa Paleontologica Italiana";No;No;0,626;Q2;36;35;50;3759;94;48;2,00;107,40;35,63;0;Italy;Western Europe;"Societa Paleontologica Italiana";"1979, 1983, 1992-2025";"Paleontology (Q2)";"Earth and Planetary Sciences" +9395;21101209915;"Chemical Methodologies";journal;"26457776, 25884344";"Sami Publishing Company";No;No;0,626;Q2;28;73;222;3429;1342;222;7,82;46,97;38,46;0;France;Western Europe;"Sami Publishing Company";"2022-2025";"Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry" +9396;144956;"Drug Metabolism and Pharmacokinetics";journal;"13474367, 18800920";"Japanese Society for the Study of Xenobiotics";Yes;No;0,626;Q2;81;41;130;2124;335;127;2,10;51,80;31,46;0;Japan;Asiatic Region;"Japanese Society for the Study of Xenobiotics";"2002-2026";"Pharmaceutical Science (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +9397;20344;"Fusion Engineering and Design";journal;"09203796";"Elsevier B.V.";No;No;0,626;Q2;101;566;1423;14509;2691;1414;1,74;25,63;19,55;0;Netherlands;Western Europe;"Elsevier B.V.";"1985, 1987-2026";"Civil and Structural Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Nuclear Energy and Engineering (Q2)";"Energy; Engineering; Materials Science" +9398;24169;"Journal of Chemical Education";journal;"19381328, 00219584";"American Chemical Society";No;No;0,626;Q2;114;482;1811;19298;4945;1793;2,79;40,04;45,26;1;United States;Northern America;"American Chemical Society";"1924-2026";"Chemistry (miscellaneous) (Q2); Education (Q2)";"Chemistry; Social Sciences" +9399;12370;"Journal of Computer and System Sciences";journal;"10902724, 00220000";"Academic Press Inc.";No;No;0,626;Q2;110;44;154;1658;218;152;1,48;37,68;18,44;0;United States;Northern America;"Academic Press Inc.";"1967-2026";"Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Networks and Communications (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +9400;29204;"Measurement in Physical Education and Exercise Science";journal;"15327841, 1091367X";"Routledge";No;No;0,626;Q2;51;57;95;2605;234;95;2,10;45,70;33,33;0;United States;Northern America;"Routledge";"1999-2026";"Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)";"Health Professions; Medicine" +9401;17049;"Physiological Measurement";journal;"09673334, 13616579";"IOP Publishing Ltd.";No;No;0,626;Q2;127;102;406;4275;1221;397;2,80;41,91;35,38;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1993-2026";"Biomedical Engineering (Q2); Biophysics (Q2); Physiology (Q3); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +9402;13622;"SIGMOD Record";journal;"01635808";"Association for Computing Machinery";No;No;0,626;Q2;151;37;119;1054;192;103;1,40;28,49;27,17;0;United States;Northern America;"Association for Computing Machinery";"1969, 1973-1978, 1981-2026";"Information Systems (Q2); Software (Q2)";"Computer Science" +9403;20802;"Vector-Borne and Zoonotic Diseases";journal;"15303667, 15577759";"Mary Ann Liebert Inc.";No;No;0,626;Q2;94;111;268;4637;559;262;1,99;41,77;46,39;0;United States;Northern America;"Mary Ann Liebert Inc.";"2001-2026";"Infectious Diseases (Q2); Virology (Q2); Microbiology (Q3)";"Immunology and Microbiology; Medicine" +9404;17905;"Yeast";journal;"10970061, 0749503X";"John Wiley and Sons Ltd";Yes;No;0,626;Q2;116;25;140;1303;346;134;2,33;52,12;40,74;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1985-2026";"Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3); Bioengineering (Q3); Genetics (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology; Medicine" +9405;21100208033;"Arts and Health";journal;"17533023, 17533015";"Taylor and Francis Ltd.";No;No;0,625;Q1;30;65;78;2356;217;78;2,30;36,25;75,65;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Arts and Humanities; Medicine" +9406;5600153503;"Critical Review of International Social and Political Philosophy";journal;"13698230, 17438772";"Routledge";No;No;0,625;Q1;37;181;244;7282;404;236;1,79;40,23;37,78;1;United Kingdom;Western Europe;"Routledge";"2001, 2008, 2010-2026";"Philosophy (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +9407;20393;"Insect Systematics and Evolution";journal;"1876312X, 1399560X";"Brill Academic Publishers";No;No;0,625;Q1;37;20;35;924;62;35;1,47;46,20;22,39;0;Netherlands;Western Europe;"Brill Academic Publishers";"1970-1974, 1976-2025";"Insect Science (Q1); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9408;21100888812;"Journal of Data and Information Science";journal;"2096157X, 2543683X";"";Yes;Yes;0,625;Q1;23;47;80;2112;208;75;2,93;44,94;34,43;0;Poland;Eastern Europe;"";"2016-2026";"Library and Information Sciences (Q1); Information Systems and Management (Q2); Public Administration (Q2)";"Decision Sciences; Social Sciences" +9409;27356;"Metallurgical and Materials Transactions A: Physical Metallurgy and Materials Science";journal;"10735623, 15431940";"Springer";No;No;0,625;Q1;203;399;1098;20511;3107;1096;2,83;51,41;24,97;0;United States;Northern America;"Springer";"1975-1981, 1983-1987, 1989-2026";"Metals and Alloys (Q1); Condensed Matter Physics (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +9410;62499;"Nongye Gongcheng Xuebao/Transactions of the Chinese Society of Agricultural Engineering";journal;"10026819";"Chinese Society of Agricultural Engineering";No;No;0,625;Q1;77;729;2376;29672;7496;2376;3,40;40,70;36,16;0;China;Asiatic Region;"Chinese Society of Agricultural Engineering";"1998-1999, 2001-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Mechanical Engineering (Q2)";"Agricultural and Biological Sciences; Engineering" +9411;18675;"Teaching Sociology";journal;"0092055X, 1939862X";"SAGE Publications Inc.";No;No;0,625;Q1;48;36;102;1407;161;88;1,65;39,08;50,00;0;United States;Northern America;"SAGE Publications Inc.";"1986, 1990, 1996-2026";"Sociology and Political Science (Q1); Education (Q2)";"Social Sciences" +9412;18768;"Applied Economics";journal;"00036846, 14664283";"Taylor and Francis Ltd.";No;No;0,625;Q2;126;1425;1400;69975;4592;1400;3,31;49,11;36,72;33;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1969-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +9413;16945;"Chemistry and Physics of Lipids";journal;"18732941, 00093084";"Elsevier Ireland Ltd";No;No;0,625;Q2;117;47;110;3089;387;109;3,81;65,72;40,59;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1966-2026";"Organic Chemistry (Q2); Biochemistry (Q3); Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +9414;12075;"Clothing and Textiles Research Journal";journal;"19402473, 0887302X";"SAGE Publications Inc.";No;No;0,625;Q2;52;34;64;1529;196;63;2,73;44,97;67,95;0;United States;Northern America;"SAGE Publications Inc.";"1982-2026";"Business, Management and Accounting (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Polymers and Plastics (Q2)";"Business, Management and Accounting; Materials Science" +9415;21100446418;"Contemporary Clinical Trials Communications";journal;"24518654";"Elsevier Inc.";Yes;No;0,625;Q2;34;161;478;6518;823;476;1,62;40,48;58,59;1;United States;Northern America;"Elsevier Inc.";"2015-2026";"Medicine (miscellaneous) (Q2); Pharmacology (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +9416;20739;"Family and Community Health";journal;"01606379, 15505057";"Lippincott Williams and Wilkins Ltd.";No;No;0,625;Q2;54;28;103;1304;166;99;1,48;46,57;75,36;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1978-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9417;26547;"Geological Society Special Publication";book series;"03058719";"Geological Society of London";No;No;0,625;Q2;171;152;696;19937;1547;516;2,28;131,16;22,41;0;United Kingdom;Western Europe;"Geological Society of London";"1964, 1967, 1969, 1971, 1974, 1977-1978, 1981-1984, 1986-2026";"Geology (Q2); Ocean Engineering (Q2); Water Science and Technology (Q2)";"Earth and Planetary Sciences; Engineering; Environmental Science" +9418;28538;"Optimization Methods and Software";journal;"10294937, 10556788";"Taylor and Francis Ltd.";No;No;0,625;Q2;74;74;209;2848;368;206;1,59;38,49;21,30;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Applied Mathematics (Q2); Control and Optimization (Q2); Software (Q2)";"Computer Science; Mathematics" +9419;21100463803;"Regional Studies, Regional Science";journal;"21681376";"Taylor and Francis Ltd.";Yes;No;0,625;Q2;36;56;161;3211;426;160;2,16;57,34;38,97;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Economics and Econometrics (Q2); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Economics, Econometrics and Finance; Social Sciences" +9420;145268;"Theory and Applications of Categories";journal;"1201561X";"Mount Allison University";Yes;No;0,625;Q2;41;53;163;1428;89;162;0,52;26,94;16,67;0;Canada;Northern America;"Mount Allison University";"1996-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +9421;5800207869;"Intercultural Pragmatics";journal;"1613365X, 1612295X";"De Gruyter Mouton";No;No;0,624;Q1;53;41;65;1708;109;65;1,42;41,66;46,00;0;Germany;Western Europe;"De Gruyter Mouton";"2004-2025";"Communication (Q1); Linguistics and Language (Q1)";"Social Sciences" +9422;6600153102;"Journal of Applied Economics";journal;"16676726, 15140326";"Taylor and Francis Ltd.";Yes;No;0,624;Q1;35;72;149;4833;476;149;3,28;67,13;40,85;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +9423;21101045763;"Journal of Media Literacy Education";journal;"21678715";"National Association for Media Literacy Education";Yes;Yes;0,624;Q1;19;21;83;1249;259;83;2,15;59,48;70,97;0;United States;Northern America;"National Association for Media Literacy Education";"2018-2025";"Communication (Q1); Education (Q2)";"Social Sciences" +9424;21101259366;"Journal of Political Institutions and Political Economy";journal;"26894815, 26894823";"Now Publishers Inc";No;No;0,624;Q1;9;18;70;810;57;70;0,51;45,00;8,57;0;United States;Northern America;"Now Publishers Inc";"2020-2025";"Political Science and International Relations (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +9425;21101138385;"Community Health Equity Research and Policy";journal;"27525368, 2752535X";"SAGE Publications Inc.";No;No;0,624;Q2;29;65;118;3560;290;114;2,97;54,77;70,82;0;United States;Northern America;"SAGE Publications Inc.";"2022-2026";"Education (Q2); Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +9426;5000156911;"Current Sexual Health Reports";journal;"15483592, 15483584";"Springer";No;No;0,624;Q2;32;17;71;1422;209;71;3,43;83,65;62,71;0;United States;Northern America;"Springer";"2004, 2006-2008, 2014-2026";"Obstetrics and Gynecology (Q2); Urology (Q2)";"Medicine" +9427;20795;"Human Immunology";journal;"01988859, 18791166";"Elsevier Inc.";No;No;0,624;Q2;107;145;307;7720;682;299;2,10;53,24;47,91;0;United States;Northern America;"Elsevier Inc.";"1980-2026";"Medicine (miscellaneous) (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +9428;21728;"Journal of Surgical Research";journal;"10958673, 00224804";"Academic Press Inc.";No;No;0,624;Q2;136;689;2047;19967;3687;1982;1,65;28,98;41,68;1;United States;Northern America;"Academic Press Inc.";"1961-2026";"Surgery (Q2)";"Medicine" +9429;26446;"Polymer Journal";journal;"00323896, 13490540";"Nature Publishing Group";No;No;0,624;Q2;92;145;407;7295;1259;381;3,10;50,31;20,16;0;United Kingdom;Western Europe;"Nature Publishing Group";"1971, 1973-2026";"Materials Chemistry (Q2); Polymers and Plastics (Q2)";"Materials Science" +9430;21100914242;"Respiratory Medicine and Research";journal;"25900412";"Elsevier Masson s.r.l.";Yes;No;0,624;Q2;22;68;240;2160;397;187;1,66;31,76;42,63;0;France;Western Europe;"Elsevier Masson s.r.l.";"2019-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +9431;3600148103;"Sexual Health";journal;"14498987, 14485028";"CSIRO Publishing";No;No;0,624;Q2;58;105;269;3588;499;265;1,67;34,17;56,66;0;Australia;Pacific Region;"CSIRO Publishing";"2004-2026";"Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9432;21101192308;"De Gruyter Studies in Mathematics";book series;"01790986";"Walter de Gruyter GmbH";No;No;0,623;Q1;7;16;17;120;27;17;1,80;7,50;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2019-2025";"Algebra and Number Theory (Q1); Analysis (Q2); Applied Mathematics (Q2); Mathematical Physics (Q2)";"Mathematics" +9433;20898;"Environment and Urbanization";journal;"09562478, 17460301";"SAGE Publications Ltd";No;No;0,623;Q1;100;30;87;1758;210;78;2,14;58,60;51,61;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1989-2025";"Urban Studies (Q1); Environmental Science (miscellaneous) (Q2)";"Environmental Science; Social Sciences" +9434;15508;"Journal of General Psychology";journal;"00221309, 19400888";"Taylor and Francis Ltd.";No;No;0,623;Q1;58;40;77;2676;187;77;1,84;66,90;50,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1928-1954, 1956-2026";"Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1); Experimental and Cognitive Psychology (Q3)";"Arts and Humanities; Psychology; Social Sciences" +9435;28755;"Brain Tumor Pathology";journal;"14337398, 1861387X";"Springer";No;No;0,623;Q2;49;26;74;812;161;63;1,98;31,23;23,11;0;Singapore;Asiatic Region;"Springer";"1997-2026";"Medicine (miscellaneous) (Q2); Cancer Research (Q3); Neurology (clinical) (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9436;21100829272;"Electronics (Switzerland)";journal;"20799292";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,623;Q2;137;4963;14267;206330;58005;14162;3,99;41,57;28,98;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Computer Networks and Communications (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Signal Processing (Q2)";"Computer Science; Engineering" +9437;19700175786;"HIV/AIDS - Research and Palliative Care";journal;"11791373";"Dove Medical Press Ltd";Yes;No;0,623;Q2;37;37;151;1442;350;147;2,32;38,97;44,19;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2026";"Dermatology (Q2); Epidemiology (Q2); Health Policy (Q2); Infectious Diseases (Q2); Virology (Q2)";"Immunology and Microbiology; Medicine" +9438;24866;"Journal of Drugs in Dermatology";journal;"15459616";"Journal of Drugs in Dermatology";No;No;0,623;Q2;79;257;773;4912;1296;704;1,72;19,11;55,21;0;United States;Northern America;"Journal of Drugs in Dermatology";"2002-2026";"Dermatology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +9439;21100415502;"Journal of Nutritional Science";journal;"20486790";"Cambridge University Press";Yes;No;0,623;Q2;48;98;311;4838;767;296;2,06;49,37;60,24;2;United Kingdom;Western Europe;"Cambridge University Press";"2012-2026";"Food Science (Q2); Nutrition and Dietetics (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Agricultural and Biological Sciences; Medicine; Nursing" +9440;145246;"Journal of Workplace Learning";journal;"13665626";"Emerald Group Publishing Ltd.";No;No;0,623;Q2;65;57;162;3484;520;157;2,60;61,12;54,42;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1997-2026";"Development (Q2); Organizational Behavior and Human Resource Management (Q2); Social Psychology (Q2)";"Business, Management and Accounting; Psychology; Social Sciences" +9441;6000152912;"British Journal of Aesthetics";journal;"00070904, 14682842";"Oxford University Press";No;No;0,622;Q1;39;36;117;1402;121;106;0,96;38,94;30,77;0;United Kingdom;Western Europe;"Oxford University Press";"1960-2026";"Philosophy (Q1)";"Arts and Humanities" +9442;21101181971;"Czech Journal of International Relations";journal;"27882985, 27882993";"Institute of International Relations Prague";Yes;No;0,622;Q1;8;18;65;1192;62;59;1,22;66,22;63,33;0;Czech Republic;Eastern Europe;"Institute of International Relations Prague";"2000, 2020, 2023-2025";"Political Science and International Relations (Q1)";"Social Sciences" +9443;20727;"Europe-Asia Studies";journal;"09668136, 14653427";"Routledge";No;No;0,622;Q1;73;69;220;4716;398;210;1,42;68,35;36,46;2;United Kingdom;Western Europe;"Routledge";"1993-2026";"History (Q1); Economics and Econometrics (Q2); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +9444;13971;"Library and Information Science Research";journal;"07408188";"Elsevier B.V.";Yes;No;0,622;Q1;74;23;112;1413;378;109;3,06;61,43;64,52;0;United Kingdom;Western Europe;"Elsevier B.V.";"1987-2026";"Library and Information Sciences (Q1); Information Systems (Q2)";"Computer Science; Social Sciences" +9445;27760;"New Left Review";journal;"00286060";"New Left Review Subscriptions";No;No;0,622;Q1;86;0;45;0;126;41;1,93;0,00;0,00;0;United Kingdom;Western Europe;"New Left Review Subscriptions";"1984, 1987, 1996-2024";"Political Science and International Relations (Q1); Sociology and Political Science (Q2)";"Social Sciences" +9446;15600154703;"Asian Journal of Civil Engineering";journal;"15630854, 2522011X";"Springer Nature";No;No;0,622;Q2;41;331;752;15018;3268;752;4,57;45,37;26,72;0;Switzerland;Western Europe;"Springer Nature";"2008-2026";"Civil and Structural Engineering (Q2)";"Engineering" +9447;24095;"Comptes Rendus Mathematique";journal;"17783569, 1631073X";"Academie des sciences";Yes;Yes;0,622;Q2;77;117;416;2408;314;414;0,71;20,58;16,59;0;France;Western Europe;"Academie des sciences";"2002-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +9448;22069;"Conservation Genetics";journal;"15729737, 15660621";"Springer Science and Business Media B.V.";No;No;0,622;Q2;87;78;238;6049;515;237;2,21;77,55;39,67;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1994, 2000-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +9449;130077;"COPD: Journal of Chronic Obstructive Pulmonary Disease";journal;"15412555, 15412563";"Taylor and Francis Ltd.";Yes;No;0,622;Q2;79;43;112;1992;273;107;2,58;46,33;49,11;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2)";"Medicine" +9450;21101200959;"Critical Care Science";journal;"29652774";"Associacao de Medicina Intensiva Brasileira - AMIB";No;No;0,622;Q2;39;116;244;2647;378;158;1,66;22,82;38,89;0;Brazil;Latin America;"Associacao de Medicina Intensiva Brasileira - AMIB";"2022-2026";"Critical Care and Intensive Care Medicine (Q2)";"Medicine" +9451;21101056114;"Evidence-Based Practice in Child and Adolescent Mental Health";journal;"23794925, 23794933";"Routledge";No;No;0,622;Q2;19;99;118;5099;251;112;1,85;51,51;68,96;2;United Kingdom;Western Europe;"Routledge";"2016-2026";"Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +9452;16074;"Journal of Biomedical Materials Research - Part B Applied Biomaterials";journal;"15524973, 15524981";"John Wiley & Sons Inc.";No;No;0,622;Q2;141;183;578;11169;2212;578;3,40;61,03;41,13;0;United States;Northern America;"John Wiley & Sons Inc.";"2003-2026";"Biomedical Engineering (Q2); Biomaterials (Q3)";"Engineering; Materials Science" +9453;21101251297;"Journal of Electric Propulsion";journal;"27314596";"Springer Nature";No;No;0,622;Q2;12;76;89;2620;254;88;2,52;34,47;17,07;0;Switzerland;Western Europe;"Springer Nature";"2022-2026";"Aerospace Engineering (Q2); Mechanical Engineering (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Engineering; Physics and Astronomy" +9454;145621;"Teaching Mathematics and its Applications";journal;"14716976, 02683679";"Oxford University Press";No;No;0,622;Q2;27;21;69;753;105;67;1,32;35,86;40,00;0;United Kingdom;Western Europe;"Oxford University Press";"1982-2025";"Education (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics; Social Sciences" +9455;14882;"Test";journal;"11330686, 18638260";"Springer New York";No;No;0,622;Q2;54;51;172;1902;222;151;1,24;37,29;22,88;0;United States;Northern America;"Springer New York";"1988, 1992-2026";"Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +9456;130089;"Toxin Reviews";journal;"15569543, 15569551";"Taylor and Francis Ltd.";No;No;0,622;Q3;62;39;217;3073;818;215;3,16;78,79;45,14;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-1996, 1998-1999, 2002-2003, 2005-2026";"Toxicology (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +9457;21101057642;"ACS Agricultural Science and Technology";journal;"26921952";"American Chemical Society";No;No;0,621;Q1;25;225;371;14212;1398;356;3,59;63,16;40,52;0;United States;Northern America;"American Chemical Society";"2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q2); Food Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +9458;12602;"American Journal of Human Biology";journal;"10420533, 15206300";"Wiley-Liss Inc.";No;No;0,621;Q1;103;221;490;14138;1005;470;1,94;63,97;52,88;0;United States;Northern America;"Wiley-Liss Inc.";"1989-2026";"Anthropology (Q1); Anatomy (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine; Social Sciences" +9459;21100466213;"Pastoralism";journal;"20417136";"Frontiers Media SA";Yes;No;0,621;Q1;40;39;88;2581;330;84;3,58;66,18;26,92;2;Germany;Western Europe;"Frontiers Media SA";"2011-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +9460;23098;"Review of Regional Research";journal;"01737600, 16139836";"Springer Verlag";No;No;0,621;Q1;27;46;53;3711;148;48;3,13;80,67;42,86;0;Germany;Western Europe;"Springer Verlag";"1998-2026";"Social Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2); Geography, Planning and Development (Q2)";"Economics, Econometrics and Finance; Social Sciences" +9461;23971;"Critical Asian Studies";journal;"14672715, 14726033";"Routledge";No;No;0,621;Q2;51;36;90;2161;218;90;2,82;60,03;39,47;0;United Kingdom;Western Europe;"Routledge";"1968-1993, 1995-2026";"Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Social Sciences" +9462;21101188706;"Frontiers in Human Dynamics";journal;"26732726";"Frontiers Media SA";Yes;No;0,621;Q2;18;102;189;6211;575;168;3,36;60,89;45,05;1;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Demography (Q2); Management, Monitoring, Policy and Law (Q2); Sociology and Political Science (Q2); Human-Computer Interaction (Q3)";"Computer Science; Environmental Science; Social Sciences" +9463;21101197410;"Frontiers in Nuclear Medicine";journal;"26738880";"Frontiers Media SA";Yes;No;0,621;Q2;11;31;134;1219;283;123;2,15;39,32;32,10;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +9464;21101198447;"Frontiers in Ophthalmology";journal;"26740826";"Frontiers Media SA";Yes;No;0,621;Q2;11;109;278;4329;585;259;2,09;39,72;47,74;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Ophthalmology (Q2)";"Medicine" +9465;29249;"Journal of Agromedicine";journal;"1059924X, 15450813";"Taylor and Francis Ltd.";No;No;0,621;Q2;46;81;209;2919;467;186;1,89;36,04;65,75;0;United States;Northern America;"Taylor and Francis Ltd.";"1994-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9466;15879;"Journal of Continuing Education in the Health Professions";journal;"08941912, 1554558X";"Lippincott Williams and Wilkins";No;No;0,621;Q2;69;66;182;2319;353;168;1,86;35,14;63,70;0;United States;Northern America;"Lippincott Williams and Wilkins";"1988-2026";"Education (Q2); E-learning (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Social Sciences" +9467;14487;"Journal of Ocular Pharmacology and Therapeutics";journal;"15577732, 10807683";"Mary Ann Liebert Inc.";No;No;0,621;Q2;81;93;252;3740;616;226;2,13;40,22;41,09;0;United States;Northern America;"Mary Ann Liebert Inc.";"1985-2026";"Ophthalmology (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +9468;21100932469;"Journal of Virus Eradication";journal;"20556659, 20556640";"Elsevier Ltd";Yes;No;0,621;Q2;22;31;109;1411;233;94;2,29;45,52;46,03;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Epidemiology (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2); Virology (Q2); Immunology (Q3)";"Immunology and Microbiology; Medicine" +9469;21101054454;"Medicine in Novel Technology and Devices";journal;"25900935";"Elsevier B.V.";Yes;No;0,621;Q2;23;65;207;4868;927;207;5,17;74,89;32,84;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Biomedical Engineering (Q2); Computer Science Applications (Q2); Medicine (miscellaneous) (Q2)";"Computer Science; Engineering; Medicine" +9470;19500157041;"Scandinavian Journal of Pain";journal;"18778879, 18778860";"Walter de Gruyter GmbH";Yes;No;0,621;Q2;44;46;253;1803;497;244;1,80;39,20;47,59;1;Germany;Western Europe;"Walter de Gruyter GmbH";"2010-2025";"Anesthesiology and Pain Medicine (Q2); Neurology (clinical) (Q3)";"Medicine" +9471;200147113;"Teaching Education";journal;"14701286, 10476210";"Routledge";No;No;0,621;Q2;47;34;79;2059;192;79;1,94;60,56;58,82;0;United Kingdom;Western Europe;"Routledge";"1987-1988, 1990-1995, 1998, 2000-2001, 2003-2026";"Education (Q2)";"Social Sciences" +9472;24499;"Wildlife Research";journal;"14485494, 10353712";"CSIRO Publishing";No;No;0,621;Q2;86;91;295;5880;572;293;1,83;64,62;33,55;0;Australia;Pacific Region;"CSIRO Publishing";"1974-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Management, Monitoring, Policy and Law (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9473;21100198009;"US Endocrinology";journal;"17583918, 17583926";"Touch Briefings";No;No;0,621;Q3;11;12;19;521;54;19;0,44;43,42;35,42;0;United Kingdom;Western Europe;"Touch Briefings";"2007-2025";"Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +9474;5700177090;"Australian Review of Applied Linguistics";journal;"18337139, 01550640";"John Benjamins Publishing Company";No;No;0,620;Q1;27;50;59;2562;116;49;1,78;51,24;56,79;0;Australia;Pacific Region;"John Benjamins Publishing Company";"2006, 2008-2026";"Linguistics and Language (Q1)";"Social Sciences" +9475;200147107;"Communication Reports";journal;"17451043, 08934215";"Routledge";No;No;0,620;Q1;32;27;43;1131;97;43;1,76;41,89;51,47;0;United Kingdom;Western Europe;"Routledge";"1988-1995, 2005-2026";"Communication (Q1); Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +9476;19700187614;"Journal of Latinos and Education";journal;"1532771X, 15348431";"Routledge";No;No;0,620;Q1;32;158;320;7846;613;305;1,84;49,66;62,98;1;United States;Northern America;"Routledge";"2007-2026";"Cultural Studies (Q1); Education (Q2)";"Social Sciences" +9477;21101068030;"Journal of Second Language Studies";journal;"25423835, 25423843";"John Benjamins Publishing Company";No;No;0,620;Q1;12;22;40;1234;77;38;1,44;56,09;41,07;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2018-2026";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +9478;17808;"Trees - Structure and Function";journal;"09311890, 14322285";"Springer Science and Business Media Deutschland GmbH";No;No;0,620;Q1;108;120;387;7634;997;381;2,62;63,62;41,44;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1986-2026";"Forestry (Q1); Ecology (Q2); Plant Science (Q2); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +9479;19600162139;"Accounting Research Journal";journal;"10309616";"Emerald Group Publishing Ltd.";No;No;0,620;Q2;37;52;109;3220;580;108;5,11;61,92;27,56;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005-2026";"Accounting (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +9480;27836;"ACM Transactions on Programming Languages and Systems";journal;"01640925, 15584593";"Association for Computing Machinery";No;No;0,620;Q2;77;22;61;1172;150;60;2,94;53,27;27,42;0;United States;Northern America;"Association for Computing Machinery";"1979-2025";"Software (Q2)";"Computer Science" +9481;11700154380;"Biomedical Materials (Bristol)";journal;"17486041, 1748605X";"IOP Publishing Ltd.";No;No;0,620;Q2;99;252;649;15996;2545;648;3,71;63,48;42,43;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2006-2026";"Biomedical Engineering (Q2); Business and International Management (Q2); Chemistry (miscellaneous) (Q2); Mechanics of Materials (Q2); Bioengineering (Q3); Biomaterials (Q3)";"Business, Management and Accounting; Chemical Engineering; Chemistry; Engineering; Materials Science" +9482;16948;"Chirality";journal;"1520636X, 08990042";"Wiley-Liss Inc.";No;No;0,620;Q2;87;59;309;2506;808;301;2,35;42,47;42,68;0;United States;Northern America;"Wiley-Liss Inc.";"1989-2026";"Analytical Chemistry (Q2); Catalysis (Q2); Drug Discovery (Q2); Organic Chemistry (Q2); Spectroscopy (Q2); Pharmacology (Q3)";"Chemical Engineering; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +9483;24672;"Crystal Growth and Design";journal;"15287505, 15287483";"American Chemical Society";No;No;0,620;Q2;186;996;2671;54353;9199;2656;3,47;54,57;33,32;0;United States;Northern America;"American Chemical Society";"2001-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +9484;28840;"Elementary School Journal";journal;"15548279, 00135984";"University of Chicago Press";No;No;0,620;Q2;99;27;84;1809;143;84;1,38;67,00;66,27;0;United States;Northern America;"University of Chicago Press";"1996-2026";"Education (Q2)";"Social Sciences" +9485;21100211109;"Imaging Science in Dentistry";journal;"22337830, 22337822";"Korean Academy of Oral and Maxillofacial Radiology";Yes;No;0,620;Q2;40;45;147;1429;401;146;2,24;31,76;42,11;0;South Korea;Asiatic Region;"Korean Academy of Oral and Maxillofacial Radiology";"2011-2025";"Dentistry (miscellaneous) (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Dentistry; Health Professions; Medicine" +9486;21101045750;"Journal of Environmental Economics and Policy";journal;"21606544, 21606552";"Taylor and Francis Ltd.";No;No;0,620;Q2;27;22;86;1279;221;85;2,05;58,14;38,78;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Economics and Econometrics (Q2); Environmental Science (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2)";"Economics, Econometrics and Finance; Environmental Science" +9487;21100224010;"Journal of Food Measurement and Characterization";journal;"21934134, 21934126";"Springer Science + Business Media";No;No;0,620;Q2;66;852;1741;49077;7232;1741;3,99;57,60;44,79;1;United States;Northern America;"Springer Science + Business Media";"2012-2026";"Chemical Engineering (miscellaneous) (Q2); Food Science (Q2); Industrial and Manufacturing Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)";"Agricultural and Biological Sciences; Chemical Engineering; Engineering" +9488;21101021536;"Journal of Industrial Integration and Management";journal;"24248630, 24248622";"World Scientific";No;No;0,620;Q2;32;31;80;2058;448;80;2,87;66,39;23,91;0;Singapore;Asiatic Region;"World Scientific";"2016-2026";"Business and International Management (Q2); Engineering (miscellaneous) (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Engineering" +9489;26969;"Journal of Physical Chemistry A";journal;"15205215, 10895639";"American Chemical Society";No;No;0,620;Q2;274;1075;2958;65824;8123;2919;2,80;61,23;29,38;1;United States;Northern America;"American Chemical Society";"1994, 1997-2026";"Medicine (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Medicine" +9490;10700153301;"Journal of Tissue Engineering and Regenerative Medicine";journal;"19327005, 19326254";"John Wiley and Sons Inc";No;No;0,620;Q2;101;17;147;1399;449;147;1,76;82,29;52,25;0;United States;Northern America;"John Wiley and Sons Inc";"2006-2026";"Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2); Biomaterials (Q3)";"Engineering; Materials Science; Medicine" +9491;21101221630;"Petroleum Geology and Oilfield Development in Daqing";journal;"10003754";"";No;No;0,620;Q2;23;125;354;3102;630;354;1,82;24,82;30,83;0;China;Asiatic Region;"";"2019-2025";"Geochemistry and Petrology (Q2); Geology (Q2); Geophysics (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +9492;21100981752;"Solid Earth Sciences";journal;"2451912X";"";Yes;Yes;0,620;Q2;19;37;81;2740;197;70;2,50;74,05;28,30;0;Netherlands;Western Europe;"";"2016-2026";"Earth-Surface Processes (Q2); Geochemistry and Petrology (Q2); Geology (Q2); Geophysics (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +9493;21101091183;"Systems and Soft Computing";journal;"27729419";"Academic Press";Yes;No;0,620;Q2;21;245;140;8150;747;140;5,49;33,27;35,09;0;United States;Northern America;"Academic Press";"2022-2026";"Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +9494;21101133553;"Translational Sports Medicine";journal;"25738488";"John Wiley and Sons Ltd";Yes;No;0,620;Q2;18;34;46;1499;98;46;1,58;44,09;29,33;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2018-2026";"Orthopedics and Sports Medicine (Q2)";"Medicine" +9495;21100870569;"Molecular and Cellular Oncology";journal;"23723556";"Taylor and Francis Ltd.";Yes;No;0,620;Q3;39;10;32;736;69;24;2,00;73,60;48,68;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Cancer Research (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology" +9496;19752;"Reumatologia";journal;"00346233, 20849834";"Termedia Publishing House Ltd.";Yes;Yes;0,620;Q3;33;62;215;2012;419;170;1,95;32,45;53,02;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"1960-1961, 1963-2025";"Immunology (Q3); Immunology and Allergy (Q3); Rheumatology (Q3)";"Immunology and Microbiology; Medicine" +9497;19900191701;"Azania";journal;"0067270X, 19455534";"Routledge";No;No;0,619;Q1;29;28;66;2032;86;60;1,57;72,57;41,27;0;United Kingdom;Western Europe;"Routledge";"1966-1994, 2010-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +9498;21101272201;"FinTech";journal;"26741032";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,619;Q1;17;77;90;4361;533;87;5,31;56,64;36,31;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Computer Science (miscellaneous) (Q2)";"Computer Science; Economics, Econometrics and Finance" +9499;4700152795;"Journal of Library Administration";journal;"01930826, 15403564";"Routledge";No;No;0,619;Q1;36;58;195;1881;292;195;1,47;32,43;62,24;0;United States;Northern America;"Routledge";"1980-2026";"Library and Information Sciences (Q1); Public Administration (Q2)";"Social Sciences" +9500;21101203217;"ACS Applied Optical Materials";journal;"27719855";"American Chemical Society";No;No;0,619;Q2;19;277;479;14837;1590;472;3,32;53,56;30,81;0;United States;Northern America;"American Chemical Society";"2023-2026";"Atomic and Molecular Physics, and Optics (Q2); Electronic, Optical and Magnetic Materials (Q2); Spectroscopy (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +9501;21100231200;"Alea";journal;"19800436";"Instituto Nacional de Matematica Pura e Aplicada";Yes;No;0,619;Q2;21;53;205;1387;144;205;0,60;26,17;19,78;0;Brazil;Latin America;"Instituto Nacional de Matematica Pura e Aplicada";"2011-2026";"Statistics and Probability (Q2)";"Mathematics" +9502;21100780830;"Canadian Journal of Kidney Health and Disease";journal;"20543581";"SAGE Publications Ltd";Yes;No;0,619;Q2;39;90;265;2879;485;255;1,62;31,99;52,40;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2014-2026";"Nephrology (Q2)";"Medicine" +9503;18497;"Connective Tissue Research";journal;"03008207, 16078438";"Taylor and Francis Ltd.";No;No;0,619;Q2;84;59;142;2214;358;139;2,08;37,53;38,61;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972-2026";"Orthopedics and Sports Medicine (Q2); Biochemistry (Q3); Cell Biology (Q3); Molecular Biology (Q3); Rheumatology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9504;5700168957;"Educational Action Research";journal;"17475074, 09650792";"Routledge";No;No;0,619;Q2;53;79;171;3186;358;156;2,03;40,33;70,81;3;United Kingdom;Western Europe;"Routledge";"1993-2026";"Education (Q2)";"Social Sciences" +9505;22663;"Marine Mammal Science";journal;"17487692, 08240469";"Wiley-Blackwell";No;No;0,619;Q2;100;123;282;7393;664;231;2,25;60,11;49,53;4;United States;Northern America;"Wiley-Blackwell";"1985-2026";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +9506;21100843805;"Mediterranean Journal of Clinical Psychology";journal;"22821619";"University of Messina";Yes;Yes;0,619;Q2;26;29;160;1974;286;152;1,81;68,07;67,46;0;Italy;Western Europe;"University of Messina";"2017-2025";"Clinical Psychology (Q2)";"Psychology" +9507;21216;"MIT Sloan Management Review";journal;"15329194";"Massachusetts Institute of Technology";No;No;0,619;Q2;129;45;202;248;269;188;1,02;5,51;33,66;0;United States;Northern America;"Massachusetts Institute of Technology";"2001-2025";"Business and International Management (Q2); Decision Sciences (miscellaneous) (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +9508;16953;"Physiotherapy Theory and Practice";journal;"15325040, 09593985";"Informa Healthcare";No;No;0,619;Q2;65;275;808;12665;1716;797;2,00;46,05;54,83;0;United Kingdom;Western Europe;"Informa Healthcare";"1985-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions" +9509;17918;"Science and Technology of Advanced Materials";journal;"18785514, 14686996";"Taylor and Francis Ltd.";Yes;No;0,619;Q2;130;108;205;7499;1352;199;6,05;69,44;21,69;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +9510;19700177309;"International Journal of Cell Biology";journal;"16878876, 16878884";"John Wiley and Sons Ltd";Yes;No;0,619;Q3;68;3;17;240;60;17;3,83;80,00;36,36;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Cell Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +9511;145538;"Argumentation";journal;"15728374, 0920427X";"Springer Netherlands";No;No;0,618;Q1;42;40;77;2048;181;77;2,47;51,20;28,30;0;Netherlands;Western Europe;"Springer Netherlands";"1987-2026";"Linguistics and Language (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +9512;24333;"Atlas of the Oral and Maxillofacial Surgery Clinics of North America";journal;"15584275, 10613315";"W.B. Saunders";No;No;0,618;Q1;30;26;78;530;108;66;1,34;20,38;14,71;0;United States;Northern America;"W.B. Saunders";"1993-2026";"Oral Surgery (Q1); Surgery (Q2)";"Dentistry; Medicine" +9513;27182;"Experimental Animals";journal;"13411357";"";Yes;No;0,618;Q1;57;47;177;1901;411;173;2,02;40,45;37,59;0;Japan;Asiatic Region;"";"1974-1980, 1995-2026";"Animal Science and Zoology (Q1); Veterinary (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine; Veterinary" +9514;21100814051;"Information Discovery and Delivery";journal;"23986247";"Emerald Group Publishing Ltd.";No;No;0,618;Q1;30;89;101;6517;445;101;4,68;73,22;32,38;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2017-2026";"Library and Information Sciences (Q1); Computer Science (miscellaneous) (Q2)";"Computer Science; Social Sciences" +9515;86891;"Journal of King Saud University - Science";journal;"10183647";"Scientific Scholar LLC";Yes;No;0,618;Q1;85;122;1627;5628;7299;1624;4,15;46,13;36,59;0;Netherlands;Western Europe;"Scientific Scholar LLC";"1994, 2009-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +9516;16673;"Minnesota Law Review";journal;"00265535";"University of Minnesota";No;No;0,618;Q1;51;25;131;6760;102;124;0,79;270,40;45,83;0;United States;Northern America;"University of Minnesota";"1976-1977, 1979, 1991, 1994, 1996-2025";"Law (Q1)";"Social Sciences" +9517;21100395705;"Quaderni Costituzionali";journal;"03926664, 19738188";"Societa Editrice Il Mulino";No;No;0,618;Q1;8;72;271;1442;63;110;0,25;20,03;56,67;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2015-2025";"Law (Q1)";"Social Sciences" +9518;13337;"Acta Palaeontologica Polonica";journal;"17322421, 05677920";"Instytut Paleobiologii PAN";Yes;No;0,618;Q2;67;51;152;3846;245;147;1,43;75,41;22,99;0;Poland;Eastern Europe;"Instytut Paleobiologii PAN";"1993-2025";"Paleontology (Q2)";"Earth and Planetary Sciences" +9519;25204;"Advances in Cement Research";journal;"09517197, 17517605";"ICE Publishing";No;No;0,618;Q2;61;44;164;1960;341;164;2,25;44,55;33,15;0;United Kingdom;Western Europe;"ICE Publishing";"1987-1990, 1993-2025";"Building and Construction (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +9520;39736;"Asian Journal of Surgery";journal;"02193108, 10159584";"Elsevier (Singapore) Pte Ltd";Yes;No;0,618;Q2;48;3443;5335;20573;3211;639;0,58;5,98;31,24;0;Singapore;Asiatic Region;"Elsevier (Singapore) Pte Ltd";"1988-2026";"Surgery (Q2)";"Medicine" +9521;21101257053;"Aspects of Molecular Medicine";journal;"29496888";"Elsevier B.V.";Yes;No;0,618;Q2;9;38;44;3000;154;44;3,50;78,95;38,31;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Molecular Biology (Q3); Molecular Medicine (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology" +9522;16672;"Journal of Child and Adolescent Psychopharmacology";journal;"10445463, 15578992";"Mary Ann Liebert Inc.";No;No;0,618;Q2;100;102;207;3095;335;160;1,41;30,34;58,51;0;United States;Northern America;"Mary Ann Liebert Inc.";"1990-2026";"Pediatrics, Perinatology and Child Health (Q2); Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2)";"Medicine" +9523;16734;"Journal of Nervous and Mental Disease";journal;"00223018, 1539736X";"Wolters Kluwer Health";No;No;0,618;Q2;146;48;378;2248;699;365;1,81;46,83;56,56;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1874-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +9524;15492;"Journal of Organizational and End User Computing";journal;"15465012, 15462234";"IGI Publishing";No;No;0,618;Q2;52;74;208;4114;1008;208;5,24;55,59;37,34;0;United States;Northern America;"IGI Publishing";"1993, 1995, 2004-2026";"Computer Science Applications (Q2); Strategy and Management (Q2); Human-Computer Interaction (Q3)";"Business, Management and Accounting; Computer Science" +9525;21101256293;"Materials Science in Additive Manufacturing";journal;"28109635";"AccScience Publishing";No;No;0,618;Q2;14;37;75;2040;290;74;3,63;55,14;23,49;0;Singapore;Asiatic Region;"AccScience Publishing";"2022-2026";"Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +9526;21100830173;"PeerJ Computer Science";journal;"23765992";"PeerJ Inc.";Yes;No;0,618;Q2;72;717;1729;35647;7360;1729;4,01;49,72;31,53;0;United States;Northern America;"PeerJ Inc.";"2015-2025";"Computer Science (miscellaneous) (Q2)";"Computer Science" +9527;23092;"Revista da Sociedade Brasileira de Medicina Tropical";journal;"00378682, 16789849";"Sociedade Brasileira de Medicina Tropical";Yes;Yes;0,618;Q2;67;102;455;2353;660;277;1,30;23,07;48,07;0;Brazil;Latin America;"Sociedade Brasileira de Medicina Tropical";"1972-1976, 1986-2026";"Infectious Diseases (Q2); Microbiology (medical) (Q2); Parasitology (Q2)";"Immunology and Microbiology; Medicine" +9528;22302;"Stereotactic and Functional Neurosurgery";journal;"14230372, 10116125";"S. Karger AG";No;No;0,618;Q2;76;73;128;3372;288;121;2,18;46,19;24,57;0;Switzerland;Western Europe;"S. Karger AG";"1938-1942, 1944, 1946-1949, 1951-2026";"Surgery (Q2); Neurology (clinical) (Q3)";"Medicine" +9529;5000157102;"Teaching and Learning in Nursing";journal;"15573087";"Elsevier Inc.";No;No;0,618;Q2;34;366;489;10680;1162;459;2,44;29,18;72,04;0;United States;Northern America;"Elsevier Inc.";"2006-2026";"Fundamentals and Skills (Q2); Leadership and Management (Q2); Research and Theory (Q2)";"Nursing" +9530;21101021774;"Technical Innovations and Patient Support in Radiation Oncology";journal;"24056324";"Elsevier Ireland Ltd";Yes;No;0,618;Q2;24;66;145;1835;337;143;1,67;27,80;49,45;0;United Kingdom;Western Europe;"Elsevier Ireland Ltd";"2017-2026";"Care Planning (Q2); Health Policy (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Oncology (nursing) (Q3)";"Medicine; Nursing" +9531;21101038704;"BMC Genomic Data";journal;"27306844";"BioMed Central Ltd";Yes;No;0,618;Q3;100;92;269;3267;764;251;2,68;35,51;40,44;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2021-2026";"Genetics (Q3); Health Informatics (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9532;20530;"British Journal of Oral and Maxillofacial Surgery";journal;"15321940, 02664356";"Churchill Livingstone";No;No;0,617;Q1;95;156;600;2796;1010;475;1,40;17,92;35,10;0;United Kingdom;Western Europe;"Churchill Livingstone";"1984-2026";"Oral Surgery (Q1); Otorhinolaryngology (Q2); Surgery (Q2)";"Dentistry; Medicine" +9533;20642;"Empirical Economics";journal;"14358921, 03777332";"Physica-Verlag";No;No;0,617;Q1;78;208;590;11517;1577;587;2,28;55,37;27,86;17;Germany;Western Europe;"Physica-Verlag";"1976-2026";"Social Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2); Mathematics (miscellaneous) (Q2); Statistics and Probability (Q2)";"Economics, Econometrics and Finance; Mathematics; Social Sciences" +9534;21101069428;"Journal of Biosafety and Biosecurity";journal;"25889338";"KeAi Communications Co.";Yes;No;0,617;Q1;20;17;73;992;285;68;4,22;58,35;36,84;1;China;Asiatic Region;"KeAi Communications Co.";"2019-2026";"Linguistics and Language (Q1); Safety Research (Q1); Immunology and Microbiology (miscellaneous) (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering; Immunology and Microbiology; Medicine; Social Sciences" +9535;21101081515;"Researches in Mathematics";journal;"26645009, 26644991";"Oles Honchar Dnipro National University";Yes;No;0,617;Q1;6;28;57;624;61;57;1,20;22,29;29,55;0;Ukraine;Eastern Europe;"Oles Honchar Dnipro National University";"2019-2025";"Algebra and Number Theory (Q1); Analysis (Q2); Mathematical Physics (Q2); Statistics and Probability (Q2)";"Mathematics" +9536;21100223556;"Advances in Meteorology";journal;"16879317, 16879309";"John Wiley and Sons Ltd";Yes;No;0,617;Q2;61;48;138;2313;398;138;2,72;48,19;33,80;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010, 2012-2026";"Geophysics (Q2); Pollution (Q2); Atmospheric Science (Q3)";"Earth and Planetary Sciences; Environmental Science" +9537;28625;"Australian Journal of Social Issues";journal;"18394655, 01576321";"Wiley-Blackwell";No;No;0,617;Q2;45;138;163;7300;465;156;2,49;52,90;67,86;4;Australia;Pacific Region;"Wiley-Blackwell";"1975-1976, 1980-1982, 1984, 1986, 1989-1993, 1996-2026";"Sociology and Political Science (Q2)";"Social Sciences" +9538;19700166512;"Clinical Psychologist";journal;"13284207, 17429552";"Routledge";No;No;0,617;Q2;33;34;97;1973;181;91;2,02;58,03;66,67;0;United States;Northern America;"Routledge";"1996-2026";"Clinical Psychology (Q2)";"Psychology" +9539;16616;"Clinical Radiology";journal;"1365229X, 00099260";"W.B. Saunders Ltd";No;No;0,617;Q2;114;314;839;9057;1720;740;2,15;28,84;36,75;0;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1960-2026";"Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +9540;50171;"International Development Planning Review";journal;"14783401, 14746743";"Liverpool University Press";No;No;0,617;Q2;45;22;64;1183;134;62;2,26;53,77;51,06;0;United Kingdom;Western Europe;"Liverpool University Press";"2002-2025";"Development (Q2); Geography, Planning and Development (Q2)";"Social Sciences" +9541;27787;"Journal of Oceanography";journal;"09168370, 1573868X";"Springer";No;No;0,617;Q2;88;34;108;1721;205;104;1,64;50,62;18,69;0;Japan;Asiatic Region;"Springer";"1992-2026";"Oceanography (Q2)";"Earth and Planetary Sciences" +9542;76627;"Materials";journal;"19961944";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,617;Q2;216;5681;23014;291649;92474;22748;3,85;51,34;33,44;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2008-2026";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)";"Materials Science; Physics and Astronomy" +9543;18344;"Medical Science Monitor";journal;"16433750, 12341010";"International Scientific Information, Inc.";Yes;No;0,617;Q2;112;405;1152;16608;2835;1146;2,40;41,01;41,92;0;United States;Northern America;"International Scientific Information, Inc.";"1997-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +9544;28828;"Nursing Clinics of North America";journal;"00296465, 15581357";"W.B. Saunders";No;No;0,617;Q2;45;70;184;2387;377;148;1,17;34,10;70,30;0;United States;Northern America;"W.B. Saunders";"1966-2026";"Medicine (miscellaneous) (Q2); Nursing (miscellaneous) (Q2)";"Medicine; Nursing" +9545;21101017383;"Sustainable Water Resources Management";journal;"23635045, 23635037";"Springer International Publishing";No;No;0,617;Q2;48;130;579;7793;1837;578;3,18;59,95;30,24;1;Switzerland;Western Europe;"Springer International Publishing";"2015-2026";"Renewable Energy, Sustainability and the Environment (Q2); Water Science and Technology (Q2)";"Energy; Environmental Science" +9546;23424;"Growth Factors";journal;"10292292, 08977194";"Taylor and Francis Ltd.";No;No;0,617;Q3;68;17;63;1032;161;63;1,64;60,71;44,12;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2020, 2022-2026";"Cell Biology (Q3); Clinical Biochemistry (Q3); Endocrinology (Q3)";"Biochemistry, Genetics and Molecular Biology" +9547;21100241601;"Toxicology Research";journal;"2045452X, 20454538";"Oxford University Press";No;No;0,617;Q3;59;196;442;10050;1336;440;2,95;51,28;48,67;0;United Kingdom;Western Europe;"Oxford University Press";"2012-2026";"Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +9548;21101175795;"Advances in Bamboo Science";journal;"27731391";"Elsevier B.V.";Yes;No;0,616;Q1;14;89;115;4925;542;113;4,79;55,34;35,43;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2025";"Forestry (Q1); Environmental Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9549;22086;"American Philosophical Quarterly";journal;"00030481, 21521123";"University of Illinois Press";No;No;0,616;Q1;41;26;88;1352;119;87;1,41;52,00;18,92;0;United States;Northern America;"University of Illinois Press";"1973, 1977, 1979-1980, 1988, 2001-2026";"Philosophy (Q1)";"Arts and Humanities" +9550;23148;"IMA Journal of Management Mathematics";journal;"1471678X, 14716798";"Oxford University Press";No;No;0,616;Q1;43;45;89;2014;337;87;3,92;44,76;31,19;0;United Kingdom;Western Europe;"Oxford University Press";"1986, 1988-1989, 1991-1993, 1995-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Applied Mathematics (Q2); Management Information Systems (Q2); Management Science and Operations Research (Q2); Modeling and Simulation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Mathematics" +9551;145258;"Informing Science";journal;"15214672, 15479684";"Informing Science Institute";Yes;No;0,616;Q1;30;33;37;1457;213;37;7,21;44,15;39,34;0;United States;Northern America;"Informing Science Institute";"1997-2026";"Library and Information Sciences (Q1)";"Social Sciences" +9552;21100890644;"Journal of Money Laundering Control";journal;"17587808, 13685201";"Emerald Group Publishing Ltd.";No;No;0,616;Q1;36;57;255;2975;839;239;3,15;52,19;39,42;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1997-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Law (Q1); Public Administration (Q2)";"Economics, Econometrics and Finance; Social Sciences" +9553;21101180556;"Journal of Natural Pesticide Research";journal;"27730786";"Elsevier B.V.";Yes;No;0,616;Q1;14;69;93;4147;382;92;4,01;60,10;36,27;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +9554;5700165306;"Qualitative Report";journal;"10520147";"Nova Southeastern University";Yes;No;0,616;Q1;68;98;531;4867;1481;530;1,86;49,66;59,19;0;United States;Northern America;"Nova Southeastern University";"2009-2026";"Cultural Studies (Q1); Education (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +9555;21100316007;"Russian Journal of Herpetology";journal;"10262296";"Folium Ltd";No;No;0,616;Q1;17;29;113;1072;126;113;1,28;36,97;25,77;0;Russian Federation;Eastern Europe;"Folium Ltd";"2014-2025";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +9556;13836;"Acta Mechanica Solida Sinica";journal;"08949166, 18602134";"Huazhong University of Science and Technology";No;No;0,616;Q2;49;140;256;5924;750;254;3,01;42,31;27,93;0;China;Asiatic Region;"Huazhong University of Science and Technology";"1981-2026";"Computational Mechanics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +9557;19604;"Advances in Virus Research";book series;"15578399, 00653527";"Academic Press Inc.";No;No;0,616;Q2;112;12;32;1382;117;3;3,14;115,17;29,41;0;United States;Northern America;"Academic Press Inc.";"1953-1955, 1957-1965, 1967-1970, 1972-1974, 1976-1979, 1981-2025";"Infectious Diseases (Q2); Medicine (miscellaneous) (Q2); Virology (Q2)";"Immunology and Microbiology; Medicine" +9558;21101342306;"Cogent Mental Health";journal;"28324765";"Taylor and Francis Ltd.";Yes;No;0,616;Q2;5;28;26;1788;67;25;2,58;63,86;67,03;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2023-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2); Psychology (miscellaneous) (Q2)";"Medicine; Psychology" +9559;21101183408;"Dialogues in Health";journal;"27726533";"Elsevier B.V.";Yes;No;0,616;Q2;11;57;188;2470;435;187;2,72;43,33;46,09;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +9560;21100827466;"EURO Journal on Computational Optimization";journal;"21924406, 21924414";"Elsevier B.V.";Yes;No;0,616;Q2;25;19;72;914;148;64;1,32;48,11;21,43;0;Germany;Western Europe;"Elsevier B.V.";"2013-2026";"Computational Mathematics (Q2); Control and Optimization (Q2); Management Science and Operations Research (Q2); Modeling and Simulation (Q2)";"Decision Sciences; Mathematics" +9561;21101080424;"Digital Threats: Research and Practice";journal;"25765337";"Association for Computing Machinery";No;No;0,615;Q1;20;34;143;1569;477;128;3,57;46,15;14,02;0;United States;Northern America;"Association for Computing Machinery";"2020-2025";"Safety Research (Q1); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)";"Computer Science; Social Sciences" +9562;21100386860;"Ethnoarchaeology";journal;"19442890, 19442904";"Maney Publishing";No;No;0,615;Q1;13;12;34;859;48;31;1,46;71,58;46,15;0;United Kingdom;Western Europe;"Maney Publishing";"2014-2026";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +9563;21101041838;"Studies in Fungi";journal;"24654973";"Maximum Academic Press";Yes;Yes;0,615;Q1;11;33;60;2429;185;59;3,41;73,61;51,96;0;United States;Northern America;"Maximum Academic Press";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Environmental Science (miscellaneous) (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9564;30079;"American Journal of Perinatology";journal;"10988785, 07351631";"Thieme Medical Publishers, Inc.";Yes;No;0,615;Q2;89;262;1206;8123;2008;1196;1,55;31,00;64,98;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1983-2026";"Obstetrics and Gynecology (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +9565;21101048534;"Apunts Sports Medicine";journal;"26665069";"Generalitat de Catalunya, Department de la Presidencia, Secretaria General de l Esport";Yes;No;0,615;Q2;20;30;64;1027;134;58;2,23;34,23;35,24;0;Spain;Western Europe;"Generalitat de Catalunya, Department de la Presidencia, Secretaria General de l Esport";"2020-2026";"Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Medicine" +9566;21100455212;"Biomedical Reports";journal;"20499434, 20499442";"Spandidos Publications";No;No;0,615;Q2;46;194;401;10260;1084;400;2,74;52,89;42,46;0;Greece;Western Europe;"Spandidos Publications";"2014-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +9567;21101300358;"Brain Tumor Research and Treatment";journal;"22882405, 22882413";"The Korean Brain Tumor Society; The Korean Society for Neuro-Oncology; The Korean Society for Pediatric Neuro-Oncology";No;No;0,615;Q2;12;25;113;724;256;112;2,12;28,96;35,14;0;South Korea;Asiatic Region;"The Korean Brain Tumor Society; The Korean Society for Neuro-Oncology; The Korean Society for Pediatric Neuro-Oncology";"2021-2026";"Surgery (Q2); Neurology (clinical) (Q3); Oncology (Q3); Cellular and Molecular Neuroscience (Q4)";"Medicine; Neuroscience" +9568;19700175456;"Clinical Lymphoma, Myeloma and Leukemia";journal;"21522650, 21522669";"Elsevier Inc.";No;No;0,615;Q2;71;246;1077;10183;1413;1052;2,70;41,39;41,34;2;United States;Northern America;"Elsevier Inc.";"2010-2026";"Hematology (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9569;21101244650;"Contraception and Reproductive Medicine";journal;"20557426";"BioMed Central Ltd";Yes;No;0,615;Q2;20;79;149;3223;379;145;2,41;40,80;45,12;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2018-2026";"Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)";"Medicine" +9570;5800207890;"Educational Psychology in Practice";journal;"14695839, 02667363";"Routledge";No;No;0,615;Q2;40;31;75;1736;207;75;2,17;56,00;81,94;0;United Kingdom;Western Europe;"Routledge";"1985-2026";"Developmental and Educational Psychology (Q2)";"Psychology" +9571;4400151503;"Federal Reserve Bank of St. Louis Review";journal;"00149187";"Federal Reserve Bank of St.Louis";No;No;0,615;Q2;43;13;47;375;81;47;1,28;28,85;17,86;1;United States;Northern America;"Federal Reserve Bank of St.Louis";"2001-2002, 2005-2025";"Business and International Management (Q2)";"Business, Management and Accounting" +9572;21100235822;"International Journal of Developmental Disabilities";journal;"20473877, 20473869";"Taylor and Francis Ltd.";No;No;0,615;Q2;33;294;459;15151;1213;444;2,16;51,53;62,04;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +9573;8000153105;"International Journal of Environment and Health";journal;"17434963, 17434955";"Inderscience Enterprises Ltd";No;No;0,615;Q2;19;0;9;0;37;9;4,11;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2021, 2023-2024";"Business, Management and Accounting (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Business, Management and Accounting; Environmental Science; Medicine" +9574;30016;"Journal of Nonverbal Behavior";journal;"01915886, 15733653";"Kluwer Academic/Human Sciences Press Inc.";No;No;0,615;Q2;83;26;81;1727;180;78;2,14;66,42;49,04;0;United States;Northern America;"Kluwer Academic/Human Sciences Press Inc.";"1979-2026";"Social Psychology (Q2)";"Psychology" +9575;21101072349;"Journal of Tourism and Services";journal;"18045650";"Center for International Scientific Research of VSO and VSPP";No;No;0,615;Q2;23;28;86;2485;459;86;6,52;88,75;44,44;0;Czech Republic;Eastern Europe;"Center for International Scientific Research of VSO and VSPP";"2019-2025";"Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting" +9576;2900147403;"Optical Switching and Networking";journal;"15734277";"Elsevier B.V.";No;No;0,615;Q2;35;21;65;1299;224;63;4,51;61,86;29,49;0;Netherlands;Western Europe;"Elsevier B.V.";"1970, 2005-2026";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +9577;21100863052;"Journal of Evidence-Based Integrative Medicine";journal;"2515690X";"SAGE Publications Ltd";Yes;No;0,614;Q1;63;21;53;893;212;53;3,71;42,52;47,32;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2026";"Complementary and Alternative Medicine (Q1)";"Medicine" +9578;21101343411;"Aerosol Research";journal;"29403391";"Copernicus Publications";Yes;No;0,614;Q2;6;37;33;2779;88;32;2,67;75,11;29,54;1;Germany;Western Europe;"Copernicus Publications";"2023-2026";"Atomic and Molecular Physics, and Optics (Q2); Chemistry (miscellaneous) (Q2); Instrumentation (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Physics and Astronomy" +9579;20498;"Applied Composite Materials";journal;"0929189X, 15734897";"Springer International Publishing";No;No;0,614;Q2;67;123;299;5769;1192;296;4,12;46,90;21,74;0;Netherlands;Western Europe;"Springer International Publishing";"1994-2026";"Ceramics and Composites (Q2)";"Materials Science" +9580;21100907391;"Australian Journal of Career Development";journal;"22006974, 10384162";"SAGE Publications Ltd";No;No;0,614;Q2;24;28;81;1823;233;68;3,09;65,11;54,32;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2012-2025";"Education (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +9581;24624;"Bulletin of Environmental Contamination and Toxicology";journal;"00074861, 14320800";"Springer";No;No;0,614;Q2;97;172;642;6352;1690;635;2,03;36,93;40,82;0;United States;Northern America;"Springer";"1966-2026";"Medicine (miscellaneous) (Q2); Pollution (Q2); Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +9582;20832;"Indoor and Built Environment";journal;"1420326X, 14230070";"SAGE Publications Ltd";No;No;0,614;Q2;66;128;416;6926;1391;384;3,29;54,11;40,43;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9583;21100201037;"Journal of Astronomy and Space Sciences";journal;"20935587, 20931409";"Korean Space Science Society";Yes;No;0,614;Q2;18;10;63;388;113;61;2,27;38,80;21,43;0;South Korea;Asiatic Region;"Korean Space Science Society";"2010-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +9584;24619;"Journal of Computer-Aided Molecular Design";journal;"15734951, 0920654X";"Springer Science and Business Media Deutschland GmbH";No;No;0,614;Q2;126;124;148;6599;522;143;3,11;53,22;36,67;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1987-2026";"Computer Science Applications (Q2); Drug Discovery (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Computer Science; Pharmacology, Toxicology and Pharmaceutics" +9585;15989;"Journal of Palliative Medicine";journal;"10966218, 15577740";"Mary Ann Liebert Inc.";No;No;0,614;Q2;116;411;936;10040;1493;768;1,37;24,43;59,44;1;United States;Northern America;"Mary Ann Liebert Inc.";"1998-2026";"Anesthesiology and Pain Medicine (Q2); Medicine (miscellaneous) (Q2); Nursing (miscellaneous) (Q2)";"Medicine; Nursing" +9586;21101090593;"JVS-Vascular Science";journal;"26663503";"Elsevier Inc.";Yes;No;0,614;Q2;16;25;105;1087;195;86;1,82;43,48;32,96;0;United States;Northern America;"Elsevier Inc.";"2020-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +9587;17300154961;"MEDICC Review";journal;"15273172, 15557960";"MEDICC Medical Education Cooperation with Cuba";Yes;No;0,614;Q2;28;0;35;0;84;25;0,00;0,00;0,00;0;United States;Northern America;"MEDICC Medical Education Cooperation with Cuba";"2008-2022";"Medicine (miscellaneous) (Q2)";"Medicine" +9588;21100208077;"Preventive Nutrition and Food Science";journal;"22871098, 22878602";"Korean Society of Food Science and Nutrition";No;No;0,614;Q2;48;63;163;2962;574;163;3,36;47,02;47,16;0;South Korea;Asiatic Region;"Korean Society of Food Science and Nutrition";"2012-2026";"Food Science (Q2); Nutrition and Dietetics (Q2)";"Agricultural and Biological Sciences; Nursing" +9589;21100781972;"Progress in Artificial Intelligence";journal;"21926360, 21926352";"Springer Nature";No;No;0,614;Q2;35;64;87;3581;416;87;5,91;55,95;33,51;0;Germany;Western Europe;"Springer Nature";"2012-2026";"Artificial Intelligence (Q2)";"Computer Science" +9590;21101042147;"Progress in Geography";journal;"10076301";"";No;No;0,614;Q2;32;180;544;9496;1471;544;2,73;52,76;40,38;0;China;Asiatic Region;"";"2019-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Ecology (Q2); Geography, Planning and Development (Q2); Nature and Landscape Conservation (Q2)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +9591;21100784713;"Translational Pediatrics";journal;"22244344, 22244336";"AME Publishing Company";No;No;0,614;Q2;42;305;642;10014;1307;566;1,86;32,83;48,83;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2015-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +9592;21101131816;"European Convention on Human Rights Law Review";journal;"26663236, 26663228";"Brill Academic Publishers";No;No;0,613;Q1;8;26;64;3327;91;37;1,40;127,96;30,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2026";"Law (Q1)";"Social Sciences" +9593;145468;"International Journal for Educational and Vocational Guidance";journal;"15731782, 18730388";"Springer Netherlands";No;No;0,613;Q1;37;135;135;8930;384;132;2,82;66,15;56,35;3;Netherlands;Western Europe;"Springer Netherlands";"2001, 2005-2026";"Visual Arts and Performing Arts (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +9594;19600156844;"Journalism and Communication Monographs";journal;"21614342, 15226379";"SAGE Publications Ltd";No;No;0,613;Q1;26;47;48;2207;81;18;2,03;46,96;41,89;0;United States;Northern America;"SAGE Publications Ltd";"1999-2026";"Communication (Q1)";"Social Sciences" +9595;19700170244;"Language and Cognition";journal;"18669808, 18669859";"Cambridge University Press";Yes;No;0,613;Q1;23;89;158;5685;301;158;1,94;63,88;53,14;0;United Kingdom;Western Europe;"Cambridge University Press";"2009, 2011-2012, 2017-2026";"Linguistics and Language (Q1); Experimental and Cognitive Psychology (Q3)";"Psychology; Social Sciences" +9596;100906;"Museum Management and Curatorship";journal;"18729185, 09647775";"Routledge";No;No;0,613;Q1;47;73;153;3922;365;130;2,48;53,73;58,90;0;United Kingdom;Western Europe;"Routledge";"1990-2001, 2005-2026";"Museology (Q1); Visual Arts and Performing Arts (Q1); Business and International Management (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Arts and Humanities; Business, Management and Accounting" +9597;21100929579;"Secularism and Nonreligion";journal;"20536712";"Ubiquity Press";Yes;No;0,613;Q1;9;6;13;366;22;13;2,00;61,00;33,33;0;United Kingdom;Western Europe;"Ubiquity Press";"2019-2025";"Anthropology (Q1); Gender Studies (Q1); History (Q1); Philosophy (Q1); Religious Studies (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +9598;20000195069;"Trends and Issues in Crime and Criminal Justice";journal;"18362206, 08178542";"Australian Institute of Criminology";No;No;0,613;Q1;25;10;62;339;93;62;1,09;33,90;48,28;0;Australia;Pacific Region;"Australian Institute of Criminology";"2011-2025";"Law (Q1)";"Social Sciences" +9599;21101059713;"Annals of Hepato-Biliary-Pancreatic Surgery";journal;"25085859, 25085778";"Korean Association of Hepato-Biliary-Pancreatic Surgery";No;No;0,613;Q2;14;63;210;1636;304;175;1,78;25,97;21,81;0;South Korea;Asiatic Region;"Korean Association of Hepato-Biliary-Pancreatic Surgery";"2019, 2021-2025";"Gastroenterology (Q2); Surgery (Q2); Transplantation (Q2); Hepatology (Q3)";"Medicine" +9600;13164;"British Journal of Guidance and Counselling";journal;"03069885, 14693534";"Routledge";No;No;0,613;Q2;59;85;227;4796;532;216;2,13;56,42;58,37;0;United States;Northern America;"Routledge";"1973-2026";"Education (Q2); Applied Psychology (Q3)";"Psychology; Social Sciences" +9601;21101194103;"Computational and Systems Oncology";journal;"26899655";"John Wiley and Sons Inc";Yes;No;0,613;Q2;10;4;14;173;52;11;7,00;43,25;50,00;0;United States;Northern America;"John Wiley and Sons Inc";"2021-2026";"Computational Mathematics (Q2); Computational Theory and Mathematics (Q2); Oncology (Q3)";"Computer Science; Mathematics; Medicine" +9602;19500157062;"Current Cardiovascular Risk Reports";journal;"19329563, 19329520";"Springer";No;No;0,613;Q2;38;28;66;1785;171;66;3,00;63,75;40,34;0;United States;Northern America;"Springer";"2007-2025";"Pharmacology (medical) (Q2); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +9603;23276;"Environmental Modeling and Assessment";journal;"14202026, 15732967";"Springer Science and Business Media Deutschland GmbH";No;No;0,613;Q2;62;103;197;6163;662;195;3,50;59,83;30,72;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1997-2026";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +9604;21101045042;"FIIB Business Review";journal;"24552658, 23197145";"Sage Publications India Pvt. Ltd";No;No;0,613;Q2;28;80;220;6425;1043;211;4,41;80,31;37,50;1;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2011-2026";"Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +9605;14751;"International Journal of Experimental Pathology";journal;"09599673, 13652613";"Wiley-Blackwell Publishing Ltd";No;No;0,613;Q2;89;15;76;925;171;76;1,98;61,67;38,27;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1990-2025";"Pathology and Forensic Medicine (Q2); Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9606;21100935977;"International Journal of Intelligent Robotics and Applications";journal;"23665971, 2366598X";"Springer Singapore";No;No;0,613;Q2;30;141;167;6250;655;163;3,94;44,33;22,44;0;Singapore;Asiatic Region;"Springer Singapore";"2017-2026";"Artificial Intelligence (Q2); Computer Science Applications (Q2)";"Computer Science" +9607;21100338761;"Israel Journal of Health Policy Research";journal;"20454015";"BioMed Central Ltd";Yes;No;0,613;Q2;34;80;149;3488;321;136;2,17;43,60;50,95;4;United Kingdom;Western Europe;"BioMed Central Ltd";"2012-2026";"Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9608;21282;"Journal of Interferon and Cytokine Research";journal;"15577465, 10799907";"Mary Ann Liebert Inc.";No;No;0,613;Q2;111;46;194;1852;322;171;1,65;40,26;48,08;0;United States;Northern America;"Mary Ann Liebert Inc.";"1995-2026";"Medicine (miscellaneous) (Q2); Cell Biology (Q3); Immunology (Q3); Virology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +9609;21187;"Journal of Sandwich Structures and Materials";journal;"15307972, 10996362";"SAGE Publications Ltd";No;No;0,613;Q2;62;78;224;3558;760;222;2,40;45,62;20,34;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1999-2026";"Ceramics and Composites (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +9610;28254;"Journal of Transcultural Nursing";journal;"10436596, 15527832";"SAGE Publications Inc.";No;No;0,613;Q2;64;99;230;3493;412;170;1,79;35,28;72,73;0;United States;Northern America;"SAGE Publications Inc.";"1989-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +9611;82406;"Korean Journal of Ophthalmology";journal;"20929382, 10118942";"Korean Ophthalmological Society (KOS)";Yes;No;0,613;Q2;44;67;238;1449;302;163;1,27;21,63;35,12;0;South Korea;Asiatic Region;"Korean Ophthalmological Society (KOS)";"1987-2017, 2020-2025";"Ophthalmology (Q2)";"Medicine" +9612;23287;"Oryx";journal;"00306053, 13653008";"Cambridge University Press";Yes;No;0,613;Q2;93;76;335;3476;658;284;1,84;45,74;35,88;0;United Kingdom;Western Europe;"Cambridge University Press";"1950-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9613;19249;"Thoracic Surgery Clinics";journal;"15474127, 15585069";"W.B. Saunders";No;No;0,613;Q2;62;60;170;2299;319;144;1,63;38,32;42,75;0;United States;Northern America;"W.B. Saunders";"2004-2026";"Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2); Surgery (Q2)";"Medicine" +9614;21100904813;"Tomography";journal;"2379139X, 23791381";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,613;Q2;30;143;569;6028;1541;554;2,65;42,15;33,78;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2026";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +9615;21100326555;"Molecular Genetics and Metabolism Reports";journal;"22144269";"Elsevier Inc.";Yes;No;0,613;Q3;36;111;325;3359;631;306;1,87;30,26;52,72;0;United States;Northern America;"Elsevier Inc.";"2014-2026";"Endocrinology (Q3); Genetics (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +9616;21101263014;"Advances in Biology and Earth Sciences";journal;"25202847, 25198033";"Jomard Publishing";No;No;0,612;Q1;17;47;84;2099;399;84;4,75;44,66;59,79;0;Azerbaijan;Eastern Europe;"Jomard Publishing";"2023-2025";"Agricultural and Biological Sciences (miscellaneous) (Q1); Earth and Planetary Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +9617;21100900597;"Journal of Urban Ecology";journal;"20585543";"Oxford University Press";Yes;No;0,612;Q1;26;19;72;1467;208;70;2,07;77,21;45,95;1;United States;Northern America;"Oxford University Press";"2015-2026";"Urban Studies (Q1); Ecology (Q2)";"Environmental Science; Social Sciences" +9618;15581;"Current Pharmaceutical Biotechnology";journal;"13892010, 18734316";"Bentham Science Publishers";No;No;0,612;Q2;106;277;448;26231;1670;434;3,83;94,70;44,10;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2000-2026";"Biotechnology (Q2); Pharmaceutical Science (Q2)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +9619;21100903062;"Evolution: Education and Outreach";journal;"19366426, 19366434";"BioMed Central Ltd";Yes;No;0,612;Q2;42;11;56;813;108;54;1,53;73,91;48,94;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2008-2025";"Ecology, Evolution, Behavior and Systematics (Q2); Education (Q2)";"Agricultural and Biological Sciences; Social Sciences" +9620;20621;"Experimental Mechanics";journal;"00144851, 17412765";"Springer New York";No;No;0,612;Q2;111;106;326;4160;954;323;3,00;39,25;20,50;0;United States;Northern America;"Springer New York";"1961-2026";"Aerospace Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +9621;22681;"Impact Assessment and Project Appraisal";journal;"14615517, 14715465";"Taylor and Francis Ltd.";No;No;0,612;Q2;66;52;151;2199;307;117;1,88;42,29;55,24;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +9622;19236;"Journal of Clinical Rheumatology";journal;"10761608, 15367355";"Lippincott Williams and Wilkins";No;No;0,612;Q2;66;120;470;2451;694;412;1,39;20,43;55,31;0;United States;Northern America;"Lippincott Williams and Wilkins";"1995-2026";"Medicine (miscellaneous) (Q2); Rheumatology (Q3)";"Medicine" +9623;23225;"Journal of Sedimentary Research";journal;"19383681, 15271404";"SEPM Society for Sedimentary Geology";No;No;0,612;Q2;130;63;159;5766;313;155;1,53;91,52;25,35;0;United States;Northern America;"SEPM Society for Sedimentary Geology";"1931-1971, 1974-1975, 1980-1983, 1985-1993, 1996-2026";"Geology (Q2)";"Earth and Planetary Sciences" +9624;24594;"Mathematical Methods in the Applied Sciences";journal;"10991476, 01704214";"John Wiley and Sons Ltd";No;No;0,612;Q2;93;1204;2551;43238;5558;2524;2,27;35,91;30,14;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1979-2026";"Engineering (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2)";"Engineering; Mathematics" +9625;4000151904;"Palliative and Supportive Care";journal;"14789523, 14789515";"Cambridge University Press";No;No;0,612;Q2;70;206;639;6705;1319;558;1,87;32,55;65,09;0;United Kingdom;Western Europe;"Cambridge University Press";"2003-2026";"Clinical Psychology (Q2); Medicine (miscellaneous) (Q2); Nursing (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Nursing; Psychology" +9626;21101174245;"Metabolism and Target Organ Damage";journal;"27696375";"OAE Publishing Inc.";No;No;0,612;Q3;11;65;93;4557;228;75;2,74;70,11;47,08;0;United States;Northern America;"OAE Publishing Inc.";"2021-2026";"Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +9627;21101302940;"Yingyong Qixiang Xuebao";journal;"10017313";"Editorial Office of Journal of Applied Meteorological Science";No;No;0,612;Q3;22;62;180;2433;604;180;3,66;39,24;44,30;0;China;Asiatic Region;"Editorial Office of Journal of Applied Meteorological Science";"2019-2026";"Atmospheric Science (Q3)";"Earth and Planetary Sciences" +9628;21100265609;"Digital Applications in Archaeology and Cultural Heritage";journal;"22120548";"Elsevier B.V.";No;No;0,611;Q1;34;79;146;3592;550;144;3,78;45,47;40,61;0;United Kingdom;Western Europe;"Elsevier B.V.";"2014-2026";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); Computer Science Applications (Q2)";"Arts and Humanities; Computer Science; Social Sciences" +9629;21100976837;"International Journal of Veterinary Science and Medicine";journal;"23144599, 23144580";"Taylor and Francis Ltd.";Yes;No;0,611;Q1;34;10;35;544;119;35;2,61;54,40;44,26;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2025";"Veterinary (miscellaneous) (Q1)";"Veterinary" +9630;25834;"International Politics";journal;"17403898, 13845748";"Palgrave Macmillan Ltd.";No;No;0,611;Q1;47;129;288;8248;545;287;1,60;63,94;36,20;6;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1996-2026";"Political Science and International Relations (Q1); Geography, Planning and Development (Q2)";"Social Sciences" +9631;21100203308;"ITL - International Journal of Applied Linguistics (Belgium)";journal;"17831490, 00190829";"Peeters Publishers";No;No;0,611;Q1;18;8;35;575;71;32;1,65;71,88;60,00;0;Belgium;Western Europe;"Peeters Publishers";"2011-2012, 2014-2026";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +9632;24248;"Annales de Dermatologie et de Venereologie";journal;"01519638";"Elsevier Masson s.r.l.";Yes;No;0,611;Q2;42;92;232;1322;243;103;0,92;14,37;51,94;0;France;Western Europe;"Elsevier Masson s.r.l.";"1977-2026";"Dermatology (Q2)";"Medicine" +9633;24712;"Annals of Combinatorics";journal;"02180006, 02193094";"Springer International Publishing";No;No;0,611;Q2;31;96;141;2093;142;141;0,92;21,80;27,60;0;Switzerland;Western Europe;"Springer International Publishing";"2002, 2005-2026";"Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +9634;16558;"Annals of Nuclear Medicine";journal;"18646433, 09147187";"Springer";No;No;0,611;Q2;70;124;293;4125;688;285;2,30;33,27;29,69;0;Japan;Asiatic Region;"Springer";"1987-2026";"Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +9635;21100223559;"Autoimmune Diseases";journal;"20900430, 20900422";"John Wiley and Sons Ltd";Yes;No;0,611;Q2;47;0;14;0;38;14;3,50;0,00;0,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2024";"Immunology and Microbiology (miscellaneous) (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +9636;21100784723;"Cardiovascular Diagnosis and Therapy";journal;"22233660, 22233652";"AME Publishing Company";No;No;0,611;Q2;54;104;290;4172;643;267;2,02;40,12;37,96;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2016-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +9637;21100904986;"CJC Open";journal;"2589790X";"Elsevier Inc.";Yes;No;0,611;Q2;27;226;486;5979;850;471;1,63;26,46;33,47;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +9638;23502;"Dyes and Pigments";journal;"01437208, 18733743";"Elsevier B.V.";No;No;0,611;Q2;152;560;2288;29883;9168;2286;4,13;53,36;38,94;0;Netherlands;Western Europe;"Elsevier B.V.";"1980-2026";"Chemical Engineering (miscellaneous) (Q2); Process Chemistry and Technology (Q2)";"Chemical Engineering" +9639;19900191833;"European Journal of Dentistry";journal;"13057464, 13057456";"Georg Thieme Verlag";No;No;0,611;Q2;57;128;516;4980;1387;510;2,46;38,91;50,31;0;Turkey;Middle East;"Georg Thieme Verlag";"2009, 2011-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +9640;13864;"European Journal of Ophthalmology";journal;"17246016, 11206721";"Wichtig Publishing Srl";No;No;0,611;Q2;74;404;1578;10938;2427;1477;1,51;27,07;41,92;0;Italy;Western Europe;"Wichtig Publishing Srl";"1991-2026";"Medicine (miscellaneous) (Q2); Ophthalmology (Q2)";"Medicine" +9641;21100297824;"Freshwater Science";journal;"21619549, 21619565";"University of Chicago Press";No;No;0,611;Q2;135;46;110;3495;217;110;1,56;75,98;47,98;0;United States;Northern America;"University of Chicago Press";"2012-2026";"Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9642;19700175129;"Journal of Clinical and Aesthetic Dermatology";journal;"19412789";"Matrix Medical Communications";Yes;No;0,611;Q2;66;122;349;3512;641;271;1,47;28,79;55,17;0;United States;Northern America;"Matrix Medical Communications";"2009-2026";"Dermatology (Q2)";"Medicine" +9643;11700154393;"Journal of Fixed Income";journal;"10598596";"Portfolio Management Research";No;No;0,611;Q2;18;28;84;564;32;72;0,23;20,14;14,29;0;United States;Northern America;"Portfolio Management Research";"2001-2002, 2008-2026";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +9644;21100904983;"Journal of Hand Surgery Global Online";journal;"25895141";"Elsevier Inc.";Yes;No;0,611;Q2;15;210;429;5084;711;417;1,66;24,21;28,14;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Orthopedics and Sports Medicine (Q2); Rehabilitation (Q2); Surgery (Q2)";"Medicine" +9645;21100875680;"Lifestyle Genomics";journal;"25043188, 25043161";"S. Karger AG";Yes;No;0,611;Q2;38;20;48;649;124;48;2,40;32,45;48,04;0;Switzerland;Western Europe;"S. Karger AG";"2017-2026";"Food Science (Q2); Medicine (miscellaneous) (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +9646;21100256977;"Mathematical Control and Related Fields";journal;"21568499, 21568472";"American Institute of Mathematical Sciences";No;No;0,611;Q2;27;65;172;2082;233;170;1,32;32,03;25,49;0;United States;Northern America;"American Institute of Mathematical Sciences";"2011-2026";"Applied Mathematics (Q2); Control and Optimization (Q2)";"Mathematics" +9647;18019;"NeuroRehabilitation";journal;"10538135, 18786448";"SAGE Publications Ltd";No;No;0,611;Q2;87;108;325;700;704;315;1,95;6,48;51,65;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Neurology (clinical) (Q3)";"Health Professions; Medicine" +9648;21100921312;"Radiation Detection Technology and Methods";journal;"25099949, 25099930";"Springer Singapore";No;No;0,611;Q2;18;119;193;2501;281;191;1,34;21,02;30,28;0;Singapore;Asiatic Region;"Springer Singapore";"2017-2026";"Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2)";"Energy; Physics and Astronomy" +9649;35190;"Revista Espanola de Quimioterapia";journal;"19889518, 02143429";"Sociedad Espanola de Quiminoterapia";Yes;Yes;0,611;Q2;37;90;350;2064;622;225;1,76;22,93;52,02;1;Spain;Western Europe;"Sociedad Espanola de Quiminoterapia";"1989-2025";"Medicine (miscellaneous) (Q2); Microbiology (medical) (Q2); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +9650;5700168304;"Fashion Theory - Journal of Dress Body and Culture";journal;"1362704X";"Taylor and Francis Ltd.";No;No;0,610;Q1;43;73;162;2717;207;129;1,33;37,22;72,84;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +9651;4000148017;"Journal of Bioethical Inquiry";journal;"18724353, 11767529";"Springer";No;No;0,610;Q1;45;137;211;5570;452;183;2,04;40,66;47,98;0;Singapore;Asiatic Region;"Springer";"2004-2026";"Philosophy (Q1); Health Policy (Q2); Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2)";"Arts and Humanities; Medicine; Nursing; Social Sciences" +9652;5800179600;"Philosophy, Ethics, and Humanities in Medicine";journal;"17475341";"BioMed Central Ltd";Yes;No;0,610;Q1;40;43;49;2033;172;42;2,85;47,28;56,04;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"History and Philosophy of Science (Q1); Health Policy (Q2); Issues, Ethics and Legal Aspects (Q2); Medicine (miscellaneous) (Q2)";"Arts and Humanities; Medicine; Nursing" +9653;29645;"Urban Design International";journal;"13575317, 14684519";"Palgrave Macmillan Ltd.";No;No;0,610;Q1;47;43;81;2792;204;69;2,30;64,93;58,93;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1996-2026";"Urban Studies (Q1); Geography, Planning and Development (Q2)";"Social Sciences" +9654;4700152853;"Asterisque";book series;"24925926, 03031179";"Societe Mathematique de France";No;No;0,610;Q2;55;5;30;283;13;27;0,37;56,60;0,00;0;France;Western Europe;"Societe Mathematique de France";"1996-2010, 2013-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +9655;13235;"Chinese Journal of Oncology";journal;"02533766";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,610;Q2;36;130;399;4209;1212;398;4,07;32,38;45,27;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1979-2026";"Medicine (miscellaneous) (Q2); Oncology (Q3)";"Medicine" +9656;21100201020;"Communications in Number Theory and Physics";journal;"19314523, 19314531";"International Press, Inc.";No;No;0,610;Q2;38;17;53;870;73;53;1,29;51,18;18,18;0;United States;Northern America;"International Press, Inc.";"2007-2025";"Algebra and Number Theory (Q2); Mathematical Physics (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Mathematics; Physics and Astronomy" +9657;15553;"European Journal of Psychiatry";journal;"02136163, 23404469";"Elsevier Espana S.L.U";Yes;No;0,610;Q2;33;59;110;2830;203;100;1,58;47,97;51,63;1;Spain;Western Europe;"Elsevier Espana S.L.U";"1987-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +9658;12760;"Fisheries";journal;"03632415, 15488446";"Oxford University Press";Yes;No;0,610;Q2;95;62;240;2199;254;108;1,07;35,47;28,16;1;United States;Northern America;"Oxford University Press";"1976-2026";"Aquatic Science (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9659;29736;"Foot and Ankle Clinics";journal;"15581934, 10837515";"W.B. Saunders";No;No;0,610;Q2;72;71;196;3148;328;169;1,56;44,34;23,19;0;United States;Northern America;"W.B. Saunders";"1997, 2000-2026";"Orthopedics and Sports Medicine (Q2); Surgery (Q2)";"Medicine" +9660;21101264321;"Frontiers in Signal Processing";journal;"26738198";"Frontiers Media SA";Yes;No;0,610;Q2;16;24;131;1109;465;122;2,87;46,21;27,42;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Signal Processing (Q2)";"Computer Science" +9661;4000148504;"International Journal of Dental Hygiene";journal;"16015029, 16015037";"Wiley-Blackwell Publishing Ltd";No;No;0,610;Q2;54;94;288;4024;627;280;1,69;42,81;60,44;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2003-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +9662;21100450117;"International Journal of Information Systems and Project Management";journal;"21827788, 21827796";"Universidade do Minho";Yes;Yes;0,610;Q2;30;20;54;1148;229;48;2,86;57,40;15,38;0;Portugal;Western Europe;"Universidade do Minho";"2013-2026";"Information Systems and Management (Q2); Management Information Systems (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +9663;21101089398;"Journal of Ecohydraulics";journal;"24705357, 24705365";"Taylor and Francis Ltd.";No;No;0,610;Q2;21;49;51;3435;134;49;2,47;70,10;28,05;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Civil and Structural Engineering (Q2); Water Science and Technology (Q2)";"Engineering; Environmental Science" +9664;13690;"Journal of Thermoplastic Composite Materials";journal;"15307980, 08927057";"SAGE Publications Ltd";No;No;0,610;Q2;68;293;539;16564;2667;538;5,01;56,53;25,26;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1988-2026";"Ceramics and Composites (Q2); Condensed Matter Physics (Q2)";"Materials Science; Physics and Astronomy" +9665;21101034469;"Nursing Praxis in Aotearoa New Zealand";journal;"27034542";"";Yes;No;0,610;Q2;11;0;17;0;40;14;0,00;0,00;0,00;0;New Zealand;Pacific Region;"";"2014-2023";"Nursing (miscellaneous) (Q2)";"Nursing" +9666;14456;"Polymer International";journal;"10970126, 09598103";"John Wiley and Sons Ltd";No;No;0,610;Q2;131;145;372;9216;1408;362;3,38;63,56;38,49;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1991-2026";"Materials Chemistry (Q2); Organic Chemistry (Q2); Polymers and Plastics (Q2)";"Chemistry; Materials Science" +9667;13832;"Quality Engineering";journal;"15324222, 08982112";"Taylor and Francis Ltd.";No;No;0,610;Q2;53;70;152;2329;431;147;3,05;33,27;27,92;0;United States;Northern America;"Taylor and Francis Ltd.";"1970-1972, 1974, 1988-2026";"Industrial and Manufacturing Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering" +9668;18380;"Tribology Letters";journal;"15732711, 10238883";"Springer Science and Business Media, LLC";No;No;0,610;Q2;116;157;388;7110;1323;385;3,42;45,29;26,87;0;United States;Northern America;"Springer Science and Business Media, LLC";"1995-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)";"Engineering; Materials Science; Physics and Astronomy" +9669;21101289901;"Frontiers in Parasitology";journal;"28132424";"Frontiers Media SA";Yes;No;0,609;Q1;8;26;84;1124;178;76;2,15;43,23;42,58;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Veterinary (miscellaneous) (Q1); Infectious Diseases (Q2); Parasitology (Q2)";"Immunology and Microbiology; Medicine; Veterinary" +9670;14000155897;"International Journal of Speech-Language Pathology";journal;"17549507, 17549515";"Informa Healthcare";No;No;0,609;Q1;62;138;233;7218;586;200;2,41;52,30;82,11;1;United Kingdom;Western Europe;"Informa Healthcare";"1999-2006, 2008-2026";"Linguistics and Language (Q1); LPN and LVN (Q2); Otorhinolaryngology (Q2); Research and Theory (Q2); Speech and Hearing (Q2)";"Health Professions; Medicine; Nursing; Social Sciences" +9671;24832;"Journal of the History of Philosophy";journal;"00225053, 15384586";"Johns Hopkins University Press";No;No;0,609;Q1;35;25;76;1412;73;76;0,65;56,48;16,00;0;United States;Northern America;"Johns Hopkins University Press";"1967, 1975-1977, 1980-1983, 1995, 1999-2025";"Philosophy (Q1)";"Arts and Humanities" +9672;14301;"Symbiosis";journal;"03345114, 18787665";"Springer Science and Business Media B.V.";No;No;0,609;Q1;68;72;199;6071;577;196;3,27;84,32;41,50;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1973, 1985, 1987, 1990-1991, 1993-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1)";"Agricultural and Biological Sciences" +9673;27043;"American Family Physician";journal;"0002838X, 15320650";"American Academy of Family Physicians";No;No;0,609;Q2;172;320;1187;4470;1641;679;1,17;13,97;46,00;0;United States;Northern America;"American Academy of Family Physicians";"1970-2026";"Family Practice (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +9674;27111;"Andrologia";journal;"03034569, 14390272";"Wiley-VCH Verlag";No;No;0,609;Q2;84;48;486;2222;1199;475;1,36;46,29;34,46;0;Germany;Western Europe;"Wiley-VCH Verlag";"1969-2026";"Medicine (miscellaneous) (Q2); Urology (Q2); Endocrinology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9675;21100284241;"Basic and Clinical Andrology";journal;"20514190";"BioMed Central Ltd";Yes;No;0,609;Q2;31;49;88;1899;211;87;2,37;38,76;35,37;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2009, 2013-2026";"Reproductive Medicine (Q2); Urology (Q2)";"Medicine" +9676;16869;"Biochemistry (Moscow)";journal;"00062979, 16083040";"";No;No;0,609;Q2;102;169;522;13488;1268;515;2,11;79,81;55,71;0;Russian Federation;Eastern Europe;"";"1972-1980, 1996-2026";"Biophysics (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3); Geriatrics and Gerontology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9677;5600152813;"Business and Society Review";journal;"00453609, 14678594";"Wiley-Blackwell Publishing Ltd";No;No;0,609;Q2;36;34;102;2652;320;102;2,61;78,00;28,57;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2007-2026";"Business and International Management (Q2); Industrial Relations (Q2); Sociology and Political Science (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Social Sciences" +9678;12328;"Current Therapeutic Research - Clinical and Experimental";journal;"0011393X, 18790313";"Elsevier Inc.";Yes;No;0,609;Q2;50;49;104;2040;315;102;3,26;41,63;41,84;0;United States;Northern America;"Elsevier Inc.";"1959-2026";"Pharmacology (medical) (Q2); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +9679;21101133342;"Diabetes Epidemiology and Management";journal;"26669706";"Elsevier Masson s.r.l.";Yes;No;0,609;Q2;12;37;127;1169;232;123;2,28;31,59;44,83;0;France;Western Europe;"Elsevier Masson s.r.l.";"2021-2026";"Internal Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +9680;21101172262;"Electrochem";journal;"26733293";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,609;Q2;27;45;127;2772;485;124;3,18;61,60;34,39;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Chemical Engineering (miscellaneous) (Q2); Materials Chemistry (Q2); Electrochemistry (Q3)";"Chemical Engineering; Chemistry; Materials Science" +9681;21101081712;"IEEE Open Journal of Signal Processing";journal;"26441322";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,609;Q2;22;99;170;4808;573;169;3,27;48,57;17,49;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Signal Processing (Q2)";"Computer Science" +9682;16497;"Jianzhu Cailiao Xuebao/Journal of Building Materials";journal;"10079629";"Tongji University";No;No;0,609;Q2;38;131;491;3082;1021;491;2,23;23,53;34,52;0;China;Asiatic Region;"Tongji University";"2001-2025";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +9683;21100262312;"Journal of Corporate Real Estate";journal;"1463001X, 14791048";"Emerald Group Publishing Ltd.";No;No;0,609;Q2;40;25;55;1455;191;48;4,06;58,20;45,21;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1998-2026";"Business, Management and Accounting (miscellaneous) (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +9684;19876;"Journal of Sport Rehabilitation";journal;"15433072, 10566716";"Human Kinetics Publishers Inc.";No;No;0,609;Q2;70;116;361;4187;722;357;1,81;36,09;41,48;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1992-2026";"Biophysics (Q2); Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Sports Science (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +9685;21101200282;"Mining";journal;"26736489";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,609;Q2;18;86;146;4577;467;145;3,19;53,22;28,18;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Geology (Q2)";"Earth and Planetary Sciences; Engineering; Environmental Science" +9686;29053;"Molecular Diversity";journal;"1573501X, 13811991";"Springer Nature";No;No;0,609;Q2;71;497;640;32026;2943;637;4,62;64,44;39,91;1;Switzerland;Western Europe;"Springer Nature";"1995-1998, 2000, 2003-2026";"Catalysis (Q2); Drug Discovery (Q2); Information Systems (Q2); Inorganic Chemistry (Q2); Medicine (miscellaneous) (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Computer Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +9687;130008;"Photodiagnosis and Photodynamic Therapy";journal;"18731597, 15721000";"Elsevier B.V.";Yes;No;0,609;Q2;82;433;1477;15446;4303;1398;2,73;35,67;47,93;0;Netherlands;Western Europe;"Elsevier B.V.";"2004-2026";"Biophysics (Q2); Dermatology (Q2); Pharmacology (medical) (Q2); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9688;16599;"Plant Ecology";journal;"13850237, 15735052";"Springer Science and Business Media B.V.";No;No;0,609;Q2;123;101;274;6968;573;271;1,77;68,99;39,60;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1986, 1997-2026";"Ecology (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9689;21973;"Transport in Porous Media";journal;"15731634, 01693913";"Springer Netherlands";No;No;0,609;Q2;118;115;442;6078;1344;434;2,92;52,85;24,37;0;Netherlands;Western Europe;"Springer Netherlands";"1986-2026";"Chemical Engineering (miscellaneous) (Q2); Catalysis (Q3)";"Chemical Engineering" +9690;21101272728;"World Journal of Environmental Biosciences";journal;"22778047";"Deniz Publication";No;No;0,609;Q2;14;42;93;1972;313;93;3,57;46,95;45,53;0;Turkey;Middle East;"Deniz Publication";"2020-2025";"Environmental Science (miscellaneous) (Q2); Pollution (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2)";"Environmental Science" +9691;24609;"Applied Animal Behaviour Science";journal;"01681591";"Elsevier B.V.";Yes;No;0,608;Q1;145;299;647;16614;1710;608;2,60;55,57;56,50;2;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Animal Science and Zoology (Q1); Food Animals (Q1)";"Agricultural and Biological Sciences; Veterinary" +9692;21100782393;"Innovation and Development";journal;"2157930X, 21579318";"Taylor and Francis Ltd.";No;No;0,608;Q1;23;61;94;4183;269;86;2,83;68,57;31,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Cultural Studies (Q1); Political Science and International Relations (Q1); Development (Q2); Education (Q2); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Social Sciences" +9693;17778;"Medical and Veterinary Entomology";journal;"0269283X, 13652915";"Wiley-Blackwell Publishing Ltd";No;No;0,608;Q1;98;99;193;5948;449;188;2,22;60,08;47,81;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1987-2026";"Insect Science (Q1); Veterinary (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Parasitology (Q2)";"Agricultural and Biological Sciences; Immunology and Microbiology; Veterinary" +9694;21937;"Pain Management Nursing";journal;"15249042, 15328635";"W.B. Saunders";No;No;0,608;Q1;66;224;390;8738;953;356;2,35;39,01;65,82;1;United States;Northern America;"W.B. Saunders";"2000-2026";"Advanced and Specialized Nursing (Q1)";"Nursing" +9695;18006;"Archivos de Bronconeumologia";journal;"15792129, 03002896";"Sociedad Espanola de Neumologia y Cirugia Toracica (SEPAR)";Yes;No;0,608;Q2;64;232;761;4420;1424;551;1,99;19,05;48,53;0;Spain;Western Europe;"Sociedad Espanola de Neumologia y Cirugia Toracica (SEPAR)";"1970, 1981, 1983-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +9696;76879;"Breeding Science";journal;"13447610, 13473735";"Japanese Society of Breeding";Yes;No;0,608;Q2;73;47;131;2129;315;114;1,85;45,30;24,73;0;Japan;Asiatic Region;"Japanese Society of Breeding";"1993-2025";"Agronomy and Crop Science (Q2); Plant Science (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +9697;24595;"Chemometrics and Intelligent Laboratory Systems";journal;"01697439, 18733239";"Elsevier B.V.";No;No;0,608;Q2;157;196;515;9064;2315;515;4,14;46,24;32,12;0;Netherlands;Western Europe;"Elsevier B.V.";"1986-2026";"Analytical Chemistry (Q2); Computer Science Applications (Q2); Process Chemistry and Technology (Q2); Software (Q2); Spectroscopy (Q2)";"Chemical Engineering; Chemistry; Computer Science" +9698;21100814032;"Cogent Economics and Finance";journal;"23322039";"Taylor and Francis Ltd.";Yes;No;0,608;Q2;53;282;1058;19222;4313;1043;3,76;68,16;28,08;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +9699;19600157344;"Geoheritage";journal;"18672477, 18672485";"Springer";No;No;0,608;Q2;52;177;402;12184;1101;401;2,77;68,84;31,56;0;United States;Northern America;"Springer";"2009-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2); Nature and Landscape Conservation (Q2)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +9700;4000148704;"Heart Failure Clinics";journal;"15517136";"Elsevier Inc.";No;No;0,608;Q2;57;59;173;3332;329;148;1,35;56,47;34,38;0;United States;Northern America;"Elsevier Inc.";"2005-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +9701;24074;"Helvetica Chimica Acta";journal;"0018019X, 15222675";"Wiley-Blackwell";No;No;0,608;Q2;91;70;241;3649;410;231;1,73;52,13;26,90;0;United States;Northern America;"Wiley-Blackwell";"1918-2026";"Drug Discovery (Q2); Inorganic Chemistry (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2); Biochemistry (Q3); Catalysis (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +9702;22650;"Huanjing Kexue/Environmental Science";journal;"02503301";"Science Press";No;No;0,608;Q2;53;714;2021;27318;6451;2021;3,54;38,26;39,80;0;China;Asiatic Region;"Science Press";"1986, 1988-1989, 1998-2026";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +9703;24139;"Israel Journal of Chemistry";journal;"18695868, 00212148";"Wiley-Blackwell";No;No;0,608;Q2;70;15;300;1210;558;274;1,73;80,67;31,11;0;United States;Northern America;"Wiley-Blackwell";"1963-2026";"Chemistry (miscellaneous) (Q2)";"Chemistry" +9704;17601;"Journal of Clinical Biochemistry and Nutrition";journal;"09120009";"The Society for Free Radical Research Japan";No;No;0,608;Q2;80;74;204;2809;459;202;2,39;37,96;31,81;0;Japan;Asiatic Region;"The Society for Free Radical Research Japan";"1986-2026";"Medicine (miscellaneous) (Q2); Clinical Biochemistry (Q3); Nutrition and Dietetics (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +9705;25269;"Journal of the Air and Waste Management Association";journal;"10962247, 21622906";"Taylor and Francis Ltd.";No;No;0,608;Q2;111;63;240;3853;692;228;2,47;61,16;38,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-1991, 1993, 1995-2026";"Management, Monitoring, Policy and Law (Q2); Pollution (Q2); Waste Management and Disposal (Q2); Atmospheric Science (Q3)";"Earth and Planetary Sciences; Environmental Science" +9706;21100203304;"Journal of Thoracic Disease";journal;"20721439, 20776624";"AME Publishing Company";Yes;No;0,608;Q2;105;978;2025;33423;4325;1792;2,11;34,17;37,25;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2009-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +9707;17096;"Magazine of Concrete Research";journal;"1751763X, 00249831";"ICE Publishing";No;No;0,608;Q2;85;47;309;2157;708;306;2,32;45,89;21,05;0;United Kingdom;Western Europe;"ICE Publishing";"1949-1989, 1991-2025";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +9708;21100925697;"Spine Surgery and Related Research";journal;"2432261X";"Japanese Society for Spine Surgery and Related Research";Yes;Yes;0,608;Q2;25;91;290;2368;467;268;1,26;26,02;7,60;0;Japan;Asiatic Region;"Japanese Society for Spine Surgery and Related Research";"2017-2026";"Orthopedics and Sports Medicine (Q2); Surgery (Q2); Neurology (clinical) (Q3)";"Medicine" +9709;21100208022;"Ethics, Policy and Environment";journal;"21550093, 21550085";"Taylor and Francis Ltd.";No;No;0,607;Q1;29;55;96;2630;182;86;2,25;47,82;29,82;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Philosophy (Q1); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2)";"Arts and Humanities; Environmental Science; Social Sciences" +9710;29840;"International Social Work";journal;"00208728, 14617234";"SAGE Publications Ltd";No;No;0,607;Q1;60;95;336;3686;666;307;1,90;38,80;66,00;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1959-2026";"Social Sciences (miscellaneous) (Q1); Social Work (Q2); Sociology and Political Science (Q2)";"Social Sciences" +9711;19800188055;"Journal of Financial Crime";journal;"17587239, 13590790";"Emerald Group Publishing Ltd.";No;No;0,607;Q1;44;92;328;4685;1174;313;3,37;50,92;38,07;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1993-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Law (Q1)";"Economics, Econometrics and Finance; Social Sciences" +9712;22578;"Journal of Mammalogy";journal;"00222372, 15451542";"Oxford University Press";No;No;0,607;Q1;120;117;351;8558;617;346;1,75;73,15;39,75;0;United States;Northern America;"Oxford University Press";"1921, 1932, 1934-1935, 1941-1942, 1945-1950, 1952-2026";"Animal Science and Zoology (Q1); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +9713;21100812104;"Scientifica";journal;"2090908X";"John Wiley and Sons Ltd";Yes;No;0,607;Q1;45;157;167;10095;703;167;4,11;64,30;42,25;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012, 2014, 2016-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9714;21100904410;"South Asian Journal of Business Studies";journal;"2398628X, 23986298";"Emerald Group Publishing Ltd.";No;No;0,607;Q1;33;42;84;3269;379;82;4,08;77,83;50,51;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2017-2026";"Cultural Studies (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2); Geography, Planning and Development (Q2); Marketing (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +9715;21100976164;"Agricultural and Environmental Letters";journal;"24719625";"John Wiley & Sons Inc.";Yes;No;0,607;Q2;29;42;85;1201;232;65;2,65;28,60;34,01;1;United States;Northern America;"John Wiley & Sons Inc.";"2016-2026";"Agronomy and Crop Science (Q2); Management, Monitoring, Policy and Law (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9716;21100198496;"American Journal of Lifestyle Medicine";journal;"15598276, 15598284";"SAGE Publications Inc.";No;No;0,607;Q2;69;273;395;13633;975;351;2,23;49,94;63,23;4;United States;Northern America;"SAGE Publications Inc.";"2007-2026";"Health Policy (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9717;21100903773;"Archives of Craniofacial Surgery";journal;"22871152, 22875603";"The Korean Cleft Palate-Craniofacial Association";No;No;0,607;Q2;18;43;148;706;231;135;1,42;16,42;35,57;0;South Korea;Asiatic Region;"The Korean Cleft Palate-Craniofacial Association";"2019-2025";"Otorhinolaryngology (Q2); Surgery (Q2)";"Medicine" +9718;18691;"Comptes Rendus - Geoscience";journal;"16310713, 17787025";"Academie des sciences";Yes;Yes;0,607;Q2;102;34;183;2435;357;179;1,70;71,62;28,06;1;France;Western Europe;"Academie des sciences";"2002-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Global and Planetary Change (Q3)";"Earth and Planetary Sciences; Environmental Science" +9719;21101383172;"Digital Experiences in Mathematics Education";journal;"21993246, 21993254";"Springer International Publishing";No;No;0,607;Q2;6;24;23;957;45;23;1,96;39,88;47,17;0;Switzerland;Western Europe;"Springer International Publishing";"2024-2026";"Applied Mathematics (Q2); Computational Mathematics (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics" +9720;70505;"Journal of Nursing Education";journal;"01484834";"Slack Incorporated";No;No;0,607;Q2;83;192;504;4186;865;380;1,60;21,80;87,44;1;United States;Northern America;"Slack Incorporated";"1965-2026";"Education (Q2); Nursing (miscellaneous) (Q2)";"Nursing; Social Sciences" +9721;21101081510;"Journal of Palaeogeography (Chinese Edition)";journal;"16711505";"Science Press";No;No;0,607;Q2;24;100;259;5647;555;259;2,20;56,47;31,65;0;China;Asiatic Region;"Science Press";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Earth-Surface Processes (Q2); Geography, Planning and Development (Q2); Paleontology (Q2)";"Earth and Planetary Sciences; Social Sciences" +9722;17065;"Lasers in Medical Science";journal;"1435604X, 02688921";"Springer Science and Business Media Deutschland GmbH";No;No;0,607;Q2;92;530;956;20162;2807;931;2,75;38,04;45,87;1;United Kingdom;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1986-2026";"Dermatology (Q2); Surgery (Q2)";"Medicine" +9723;12392;"Lymphatic Research and Biology";journal;"15578585, 15396851";"Mary Ann Liebert Inc.";No;No;0,607;Q2;60;66;204;1718;382;179;1,78;26,03;57,55;0;United States;Northern America;"Mary Ann Liebert Inc.";"2003-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +9724;14683;"Planning Practice and Research";journal;"13600583, 02697459";"Routledge";No;No;0,607;Q2;58;104;167;6505;418;150;2,05;62,55;48,46;2;United Kingdom;Western Europe;"Routledge";"1986-2026";"Geography, Planning and Development (Q2)";"Social Sciences" +9725;13803;"Signal Processing: Image Communication";journal;"09235965";"Elsevier B.V.";No;No;0,607;Q2;109;128;324;6894;1213;323;3,41;53,86;30,60;0;Netherlands;Western Europe;"Elsevier B.V.";"1989-2026";"Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q2); Software (Q2)";"Computer Science; Engineering" +9726;15913;"Zeitschrift fur Entwicklungspsychologie und Padagogische Psychologie";journal;"00498637, 21906262";"Hogrefe Publishing";No;No;0,607;Q2;30;9;50;382;88;44;1,06;42,44;63,64;0;Germany;Western Europe;"Hogrefe Publishing";"1982, 1996-2025";"Developmental and Educational Psychology (Q2); Education (Q2)";"Psychology; Social Sciences" +9727;21100896682;"Toxicon: X";journal;"25901710";"Elsevier Ltd";Yes;No;0,607;Q3;25;17;81;1304;263;79;3,29;76,71;41,58;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Toxicology (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +9728;21101052931;"Acta Sedimentologica Sinica";journal;"10000550";"Science China Press";Yes;No;0,606;Q1;28;145;411;8898;831;410;1,94;61,37;33,33;0;China;Asiatic Region;"Science China Press";"2019-2025";"Stratigraphy (Q1); Geochemistry and Petrology (Q2); Geology (Q2)";"Earth and Planetary Sciences" +9729;21101209992;"Al-'Adalah";journal;"08541272, 2614171X";"Universitas Islam Negeri Raden Intan Lampung";Yes;Yes;0,606;Q1;7;18;60;998;158;60;3,35;55,44;40,00;0;Indonesia;Asiatic Region;"Universitas Islam Negeri Raden Intan Lampung";"2020-2025";"Law (Q1); Religious Studies (Q1); Gender Studies (Q2)";"Arts and Humanities; Social Sciences" +9730;17730;"Asian Journal of Communication";journal;"01292986, 17420911";"Routledge";No;No;0,606;Q1;47;32;96;2254;250;90;2,41;70,44;41,33;0;United States;Northern America;"Routledge";"1990-2026";"Communication (Q1); Education (Q2)";"Social Sciences" +9731;21100372856;"Data in Brief";journal;"23523409";"Elsevier Inc.";Yes;No;0,606;Q1;69;1096;3336;15463;7136;5;2,36;14,11;32,41;4;United States;Northern America;"Elsevier Inc.";"2014-2026";"Multidisciplinary (Q1); Education (Q2)";"Multidisciplinary; Social Sciences" +9732;72639;"International Journal of Comparative Sociology";journal;"00207152";"SAGE Publications Ltd";No;No;0,606;Q1;60;62;83;5041;190;83;2,14;81,31;44,34;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1960-2026";"Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q2)";"Social Sciences" +9733;5700163255;"International Peacekeeping";journal;"13533312, 1743906X";"Taylor and Francis Ltd.";No;No;0,606;Q1;50;39;70;2962;151;67;2,07;75,95;53,85;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-1999, 2001-2026";"Political Science and International Relations (Q1)";"Social Sciences" +9734;27132;"Jahrbucher fur Nationalokonomie und Statistik";journal;"2366049X, 00214027";"Walter de Gruyter GmbH";No;No;0,606;Q1;29;42;92;1535;142;82;1,14;36,55;25,58;9;Germany;Western Europe;"Walter de Gruyter GmbH";"1863, 1896, 1898-1903, 1905-1908, 1910, 1914, 1916, 1918, 1920, 1923, 1927-1928, 1944, 1949, 1959, 1978, 1980, 1982, 1985, 1987-1990, 1992-2026";"Social Sciences (miscellaneous) (Q1); Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +9735;21101192304;"Journal of Shipping and Trade";journal;"23644575";"Springer";Yes;No;0,606;Q1;10;31;58;2202;248;57;4,28;71,03;26,67;0;Singapore;Asiatic Region;"Springer";"2023-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Business, Management and Accounting (miscellaneous) (Q2); Transportation (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +9736;21100891177;"Reviews in Agricultural Science";journal;"2187090X";"Gifu University - United Graduate School of Agricultural Science";Yes;No;0,606;Q1;19;19;67;1901;283;67;3,81;100,05;40,00;0;Japan;Asiatic Region;"Gifu University - United Graduate School of Agricultural Science";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1)";"Agricultural and Biological Sciences" +9737;24620;"Algebras and Representation Theory";journal;"15729079, 1386923X";"Springer Netherlands";No;No;0,606;Q2;36;63;277;1507;154;277;0,52;23,92;24,27;0;Netherlands;Western Europe;"Springer Netherlands";"1998-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +9738;21101194104;"Automation";journal;"26734052";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,606;Q2;17;93;89;4819;381;89;4,14;51,82;18,08;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q2); Engineering (miscellaneous) (Q2)";"Computer Science; Engineering" +9739;20997;"Canadian Journal of Surgery";journal;"0008428X, 14882310";"Canadian Medical Association";Yes;No;0,606;Q2;83;72;288;2260;521;248;1,66;31,39;37,19;0;Canada;Northern America;"Canadian Medical Association";"1957-2026";"Medicine (miscellaneous) (Q2); Surgery (Q2)";"Medicine" +9740;4800156201;"Chemistry - An Asian Journal";journal;"18614728, 1861471X";"John Wiley and Sons Ltd";No;No;0,606;Q2;139;1059;1550;76356;5038;1539;3,15;72,10;34,61;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2006-2026";"Chemistry (miscellaneous) (Q2); Organic Chemistry (Q2); Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +9741;21100782253;"Frontiers in Earth Science";journal;"22966463";"Frontiers Media SA";Yes;No;0,606;Q2;79;795;5081;41870;12109;4795;2,21;52,67;31,15;1;Switzerland;Western Europe;"Frontiers Media SA";"2013-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +9742;14851;"Journal of International Trade and Economic Development";journal;"09638199, 14699559";"Routledge";No;No;0,606;Q2;50;96;186;5163;580;184;2,83;53,78;25,23;5;United Kingdom;Western Europe;"Routledge";"1992-2026";"Aerospace Engineering (Q2); Development (Q2); Geography, Planning and Development (Q2)";"Engineering; Social Sciences" +9743;19900193635;"Journal of Maps";journal;"17445647";"Taylor and Francis Ltd.";Yes;No;0,606;Q2;55;86;297;4296;674;292;2,28;49,95;34,73;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +9744;5400152709;"Journal of Mountain Science";journal;"19930321, 16726316";"Science Press";No;No;0,606;Q2;64;283;751;16943;2231;750;2,92;59,87;30,00;1;China;Asiatic Region;"Science Press";"2007-2026";"Earth-Surface Processes (Q2); Geography, Planning and Development (Q2); Geology (Q2); Nature and Landscape Conservation (Q2); Global and Planetary Change (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +9745;26079;"Journal of Palestine Studies";journal;"0377919X, 15338614";"Routledge";No;No;0,606;Q2;41;29;102;1187;151;81;1,67;40,93;60,00;0;United States;Northern America;"Routledge";"1971-2025";"Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Social Sciences" +9746;11300153733;"Management in Education";journal;"17419883, 08920206";"SAGE Publications Ltd";No;No;0,606;Q2;35;61;126;2574;317;98;2,56;42,20;41,05;4;United Kingdom;Western Europe;"SAGE Publications Ltd";"1987-2026";"Education (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Social Sciences" +9747;10600153339;"Perspectives in Health Information Management";journal;"15594122";"American Health Information Management Association";Yes;No;0,606;Q2;35;0;50;0;150;50;1,77;0,00;0,00;0;United States;Northern America;"American Health Information Management Association";"2007-2019, 2021-2022, 2024";"Medicine (miscellaneous) (Q2)";"Medicine" +9748;21101108179;"Physical Activity and Nutrition";journal;"27337545";"Korean Society for Exercise Nutrition";No;No;0,606;Q2;12;39;99;1484;218;98;2,48;38,05;44,17;0;South Korea;Asiatic Region;"Korean Society for Exercise Nutrition";"2020-2025";"Health (social science) (Q2); Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Nutrition and Dietetics (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Nursing; Social Sciences" +9749;21101163446;"Psychiatric Research and Clinical Practice";journal;"25755609";"John Wiley and Sons Inc";Yes;No;0,606;Q2;16;32;44;1207;94;39;1,82;37,72;52,85;0;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +9750;15300154827;"SPE Journal";journal;"1086055X";"Society of Petroleum Engineers (SPE)";No;No;0,606;Q2;171;457;1254;21591;3912;1254;3,18;47,25;23,46;0;United States;Northern America;"Society of Petroleum Engineers (SPE)";"1969-1973, 1996-2026";"Energy Engineering and Power Technology (Q2); Energy (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Energy" +9751;21100854817;"Current Stem Cell Reports";journal;"21987866";"Springer Science and Business Media Deutschland GmbH";No;No;0,606;Q3;29;11;38;577;97;38;1,83;52,45;39,22;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2015-2026";"Cell Biology (Q3); Developmental Biology (Q3); Genetics (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +9752;23173;"Korean Journal of Physiology and Pharmacology";journal;"20933827, 12264512";"Korean Physiological Soc. and Korean Soc. of Pharmacology";Yes;No;0,606;Q3;46;64;153;3353;358;153;2,38;52,39;43,05;0;South Korea;Asiatic Region;"Korean Physiological Soc. and Korean Soc. of Pharmacology";"1997-2026";"Pharmacology (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +9753;21100468931;"Avian Research";journal;"20537166";"KeAi Communications Co.";Yes;No;0,605;Q1;28;89;206;6616;454;205;2,08;74,34;36,25;0;China;Asiatic Region;"KeAi Communications Co.";"2014-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +9754;21100208046;"Politics, Religion and Ideology";journal;"21567697, 21567689";"Taylor and Francis Ltd.";No;No;0,605;Q1;21;23;72;717;96;72;1,14;31,17;23,53;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011, 2013-2026";"Philosophy (Q1); Religious Studies (Q1); Molecular Biology (Q3)";"Arts and Humanities; Biochemistry, Genetics and Molecular Biology" +9755;21101088431;"Antimicrobial Stewardship and Healthcare Epidemiology";journal;"2732494X";"Cambridge University Press";Yes;No;0,605;Q2;19;344;658;7194;1067;613;1,58;20,91;54,57;1;United Kingdom;Western Europe;"Cambridge University Press";"2021-2026";"Epidemiology (Q2); Infectious Diseases (Q2); Microbiology (medical) (Q3)";"Medicine" +9756;21101185548;"BJUI Compass";journal;"26884526";"John Wiley and Sons Inc";Yes;No;0,605;Q2;19;166;301;4405;492;273;1,43;26,54;27,53;0;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Nephrology (Q2); Surgery (Q2); Urology (Q2); Oncology (Q3)";"Medicine" +9757;20524;"BMC Surgery";journal;"14712482";"BioMed Central Ltd";Yes;No;0,605;Q2;68;614;1237;20642;2871;1234;2,32;33,62;29,58;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2001-2026";"Medicine (miscellaneous) (Q2); Surgery (Q2)";"Medicine" +9758;21100857392;"Chemosensors";journal;"22279040";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,605;Q2;59;434;1393;31058;6567;1387;4,57;71,56;40,58;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Analytical Chemistry (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry" +9759;14659;"Indian Journal of Medical Research";journal;"09715916";"Scientific Scholar LLC";Yes;No;0,605;Q2;116;224;546;5422;1183;405;1,60;24,21;46,60;0;United States;Northern America;"Scientific Scholar LLC";"1945-1947, 1950-1975, 1978-1989, 1991-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9760;21101059623;"Infection Prevention in Practice";journal;"25900889";"Elsevier Ltd";Yes;No;0,605;Q2;21;63;198;1678;446;176;2,45;26,63;44,84;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9761;5100155056;"Journal of Hydroinformatics";journal;"14647141, 14651734";"IWA Publishing";Yes;No;0,605;Q2;69;102;395;4699;1339;393;3,45;46,07;25,70;0;United Kingdom;Western Europe;"IWA Publishing";"1999-2026";"Civil and Structural Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2); Water Science and Technology (Q2); Atmospheric Science (Q3)";"Earth and Planetary Sciences; Engineering; Environmental Science" +9762;21100830140;"Journal of Marine Science and Engineering";journal;"20771312";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,605;Q2;77;2402;6773;113286;23908;6645;3,42;47,16;30,92;6;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Civil and Structural Engineering (Q2); Ocean Engineering (Q2); Water Science and Technology (Q2)";"Engineering; Environmental Science" +9763;19034;"Microbial Drug Resistance";journal;"10766294, 19318448";"Mary Ann Liebert Inc.";No;No;0,605;Q2;80;54;267;2237;544;249;1,81;41,43;46,53;0;United States;Northern America;"Mary Ann Liebert Inc.";"1995-2026";"Medicine (miscellaneous) (Q2); Immunology (Q3); Microbiology (Q3); Microbiology (medical) (Q3); Pharmacology (Q3)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +9764;21100945706;"Multimodal Technologies and Interaction";journal;"24144088";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,605;Q2;46;118;342;7142;1480;340;4,48;60,53;35,16;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2026";"Computer Networks and Communications (Q2); Computer Science Applications (Q2); Human-Computer Interaction (Q3); Neuroscience (miscellaneous) (Q3)";"Computer Science; Neuroscience" +9765;28826;"Nursing and Health Sciences";journal;"14422018, 14410745";"Wiley-Blackwell Publishing Ltd";No;No;0,605;Q2;65;247;317;10603;689;301;2,01;42,93;67,72;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1999-2026";"Medicine (miscellaneous) (Q2); Nursing (miscellaneous) (Q2)";"Medicine; Nursing" +9766;21703;"Annals of Human Genetics";journal;"00034800, 14691809";"Wiley-Blackwell Publishing Ltd";No;No;0,605;Q3;81;52;99;2670;158;97;1,75;51,35;51,55;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1954-2026";"Genetics (Q3); Genetics (clinical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9767;21101162682;"Al-Istinbath: Jurnal Hukum Islam";journal;"25483374, 25483382";"State Institute for Islamic Studies Curup";Yes;Yes;0,604;Q1;12;39;102;1742;261;102;2,69;44,67;41,49;0;Indonesia;Asiatic Region;"State Institute for Islamic Studies Curup";"2019-2025";"Law (Q1); Religious Studies (Q1); Social Sciences (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +9768;36291;"Arabian Archaeology and Epigraphy";journal;"16000471, 09057196";"Blackwell Munksgaard";No;No;0,604;Q1;27;26;51;1765;74;50;1,31;67,88;26,47;0;Denmark;Western Europe;"Blackwell Munksgaard";"1990-2026";"Archeology (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +9769;21100197910;"Dental Press Journal of Orthodontics";journal;"21776709, 21769451";"Dental Press International";Yes;Yes;0,604;Q1;42;34;153;1075;335;153;2,02;31,62;46,31;0;Brazil;Latin America;"Dental Press International";"2010-2026";"Oral Surgery (Q1); Orthodontics (Q1)";"Dentistry" +9770;14145;"Experimental Psychology";journal;"21905142, 16183169";"Hogrefe Publishing";No;No;0,604;Q1;69;18;92;931;124;91;1,05;51,72;37,04;0;United States;Northern America;"Hogrefe Publishing";"1998-2026";"Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2); Experimental and Cognitive Psychology (Q3)";"Arts and Humanities; Medicine; Psychology" +9771;22035;"Journal of Avian Biology";journal;"1600048X, 09088857";"Wiley-Blackwell Publishing Ltd";Yes;No;0,604;Q1;93;121;146;9149;284;145;1,84;75,61;38,89;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +9772;19700167906;"Economia Politica";journal;"1973820X, 11202890";"Springer International Publishing AG";No;No;0,604;Q2;27;42;115;2595;304;110;2,04;61,79;28,16;0;Switzerland;Western Europe;"Springer International Publishing AG";"2008-2026";"Economics and Econometrics (Q2); Finance (Q2); Sociology and Political Science (Q2)";"Economics, Econometrics and Finance; Social Sciences" +9773;28427;"Fire Technology";journal;"15728099, 00152684";"Springer Netherlands";No;No;0,604;Q2;70;227;443;9645;1464;431;3,43;42,49;27,28;2;Netherlands;Western Europe;"Springer Netherlands";"1965-2026";"Materials Science (miscellaneous) (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering; Materials Science" +9774;5200152840;"Intellectual and Developmental Disabilities";journal;"19349491, 19349556";"American Association on Intellectual and Developmental Disabilities";No;No;0,604;Q2;80;41;112;1751;237;109;1,75;42,71;74,24;0;United States;Northern America;"American Association on Intellectual and Developmental Disabilities";"2007-2025";"Community and Home Care (Q2); Developmental and Educational Psychology (Q2); Education (Q2); Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Nursing; Psychology; Social Sciences" +9775;22674;"International Journal of Remote Sensing";journal;"13665901, 01431161";"Taylor and Francis Ltd.";No;No;0,604;Q2;219;409;1030;23460;3014;1028;2,76;57,36;33,92;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +9776;25896;"Journal of Organic Chemistry";journal;"15206904, 00223263";"American Chemical Society";No;No;0,604;Q2;256;1709;5169;88087;16713;5151;3,33;51,54;34,07;0;United States;Northern America;"American Chemical Society";"1936-2026";"Organic Chemistry (Q2)";"Chemistry" +9777;23061;"Journal of Pharmaceutical and Biomedical Analysis";journal;"07317085, 1873264X";"Elsevier B.V.";No;No;0,604;Q2;160;532;1706;18758;6442;1697;3,66;35,26;46,87;1;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Analytical Chemistry (Q2); Drug Discovery (Q2); Pharmaceutical Science (Q2); Spectroscopy (Q2); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +9778;21100790524;"Journal of Public Health Research";journal;"22799036, 22799028";"Sage Publications";Yes;No;0,604;Q2;33;134;341;5300;823;333;2,19;39,55;48,12;0;Italy;Western Europe;"Sage Publications";"2012, 2014-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9779;28701;"Mathematical Physics Analysis and Geometry";journal;"13850172, 15729656";"Springer Netherlands";No;No;0,604;Q2;30;43;83;1726;106;83;1,25;40,14;23,86;0;Netherlands;Western Europe;"Springer Netherlands";"1998-2026";"Geometry and Topology (Q2); Mathematical Physics (Q2)";"Mathematics" +9780;19700166405;"Methodist DeBakey Cardiovascular Journal";journal;"19476108, 19476094";"Houston Methodist Debakey Heart and Vascular Center";Yes;Yes;0,604;Q2;43;87;236;2504;439;219;1,52;28,78;31,40;0;United States;Northern America;"Houston Methodist Debakey Heart and Vascular Center";"2009-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Surgery (Q2)";"Medicine" +9781;14112;"Rehabilitation Psychology";journal;"00905550, 19391544";"American Psychological Association";No;No;0,604;Q2;86;61;166;2669;370;165;1,97;43,75;64,00;1;United States;Northern America;"American Psychological Association";"1982-2025";"Clinical Psychology (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Psychiatry and Mental Health (Q2); Rehabilitation (Q2)";"Health Professions; Medicine; Psychology" +9782;33461;"Soil Science and Plant Nutrition";journal;"00380768, 17470765";"Taylor and Francis Ltd.";No;No;0,604;Q2;88;79;143;4235;327;140;2,04;53,61;27,07;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1955-2026";"Plant Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences" +9783;21100832705;"Cold Spring Harbor Molecular Case Studies";journal;"23732873";"Cold Spring Harbor Laboratory Press";No;No;0,604;Q3;31;0;109;0;189;109;1,18;0,00;0,00;0;United States;Northern America;"Cold Spring Harbor Laboratory Press";"2016-2023";"Biochemistry (Q3); Genetics (Q3); Genetics (clinical) (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9784;13471;"Meteorology and Atmospheric Physics";journal;"01777971, 14365065";"Springer-Verlag Wien";No;No;0,604;Q3;79;52;208;3021;492;208;2,19;58,10;25,63;0;Austria;Western Europe;"Springer-Verlag Wien";"1986-2026";"Atmospheric Science (Q3)";"Earth and Planetary Sciences" +9785;21101037131;"Advances in Neurodevelopmental Disorders";journal;"23667532, 23667540";"Springer Science and Business Media Deutschland GmbH";No;No;0,603;Q1;22;73;158;4107;386;150;2,60;56,26;69,44;0;Netherlands;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2017-2026";"Social Sciences (miscellaneous) (Q1); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +9786;19900192720;"China Economic Journal";journal;"17538963, 17538971";"Routledge";No;No;0,603;Q1;32;33;66;1741;186;61;2,20;52,76;40,00;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Cultural Studies (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Sociology and Political Science (Q2)";"Economics, Econometrics and Finance; Social Sciences" +9787;6000187990;"Diversity";journal;"14242818";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,603;Q1;70;869;3128;60073;8253;3073;2,48;69,13;39,68;2;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Ecological Modeling (Q2); Ecology (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9788;21101094860;"Journal of Caring Sciences";journal;"22519920";"Tabriz University of Medical Sciences";Yes;Yes;0,603;Q1;21;27;101;1033;271;95;2,04;38,26;55,95;0;Iran;Middle East;"Tabriz University of Medical Sciences";"2019-2025";"Health Professions (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Nursing (miscellaneous) (Q2)";"Health Professions; Medicine; Nursing" +9789;21101236744;"Journal of Wound Management";journal;"27885771";"European Wound Management Association (EWMA)";No;No;0,603;Q1;3;22;20;770;41;11;2,05;35,00;73,13;0;Denmark;Western Europe;"European Wound Management Association (EWMA)";"2023-2025";"Advanced and Specialized Nursing (Q1); Medical and Surgical Nursing (Q1); Dermatology (Q2); Surgery (Q2)";"Medicine; Nursing" +9790;21101082069;"Brain Multiphysics";journal;"26665220";"Elsevier B.V.";Yes;No;0,603;Q2;16;0;58;0;171;48;2,86;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2024";"Biomedical Engineering (Q2); Neuroscience (miscellaneous) (Q3)";"Engineering; Neuroscience" +9791;21101017384;"Current Developmental Disorders Reports";journal;"21962987";"Springer International Publishing";No;No;0,603;Q2;42;12;89;744;245;89;2,58;62,00;74,07;0;Switzerland;Western Europe;"Springer International Publishing";"2014-2026";"Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2); Developmental Neuroscience (Q3)";"Medicine; Neuroscience; Psychology" +9792;19718;"Geomicrobiology Journal";journal;"01490451, 15210529";"Taylor and Francis Ltd.";No;No;0,603;Q2;98;100;235;6342;939;234;3,74;63,42;42,13;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-1981, 1983-1995, 1997-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3); Microbiology (Q3)";"Earth and Planetary Sciences; Environmental Science; Immunology and Microbiology" +9793;12116;"IEEE Photonics Technology Letters";journal;"10411135, 19410174";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,603;Q2;178;412;1070;7121;2879;1066;2,64;17,28;29,78;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1989-2026";"Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +9794;21100935975;"Integrating Materials and Manufacturing Innovation";journal;"21939764, 21939772";"Springer International Publishing AG";No;No;0,603;Q2;40;48;140;2367;438;140;3,03;49,31;18,36;0;Switzerland;Western Europe;"Springer International Publishing AG";"2012-2026";"Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +9795;21100913564;"International Journal of Geosynthetics and Ground Engineering";journal;"21999260, 21999279";"Springer Nature";No;No;0,603;Q2;41;70;258;3533;738;248;2,86;50,47;18,97;0;United States;Northern America;"Springer Nature";"2015-2026";"Civil and Structural Engineering (Q2); Polymers and Plastics (Q2)";"Engineering; Materials Science" +9796;5300152725;"Journal of Children's Orthopaedics";journal;"18632548, 18632521";"SAGE Publications Inc.";Yes;No;0,603;Q2;59;0;205;0;396;186;1,96;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2007-2024";"Orthopedics and Sports Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +9797;16244;"Journal of Law, Medicine and Ethics";journal;"1748720X, 10731105";"SAGE Publications Inc.";No;No;0,603;Q2;73;133;401;5932;584;365;1,01;44,60;48,26;2;United Kingdom;Western Europe;"SAGE Publications Inc.";"1973-2026";"Health Policy (Q2); Issues, Ethics and Legal Aspects (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +9798;22576;"Journal of Mammalian Evolution";journal;"10647554, 15737055";"Springer";No;No;0,603;Q2;58;51;157;5057;303;157;2,02;99,16;35,83;0;United States;Northern America;"Springer";"1993-1994, 1996-2025";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +9799;21100461912;"Journal of Oral Biology and Craniofacial Research";journal;"22124276, 22124268";"Elsevier B.V.";Yes;No;0,603;Q2;45;259;400;7937;1205;390;2,77;30,64;54,14;2;Netherlands;Western Europe;"Elsevier B.V.";"2011-2026";"Dentistry (miscellaneous) (Q2); Otorhinolaryngology (Q2)";"Dentistry; Medicine" +9800;15113;"Journal of Pediatric and Adolescent Gynecology";journal;"10833188, 18734332";"Elsevier Inc.";No;No;0,603;Q2;79;177;342;3924;606;281;1,63;22,17;78,92;0;United States;Northern America;"Elsevier Inc.";"1996-2026";"Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +9801;21100941748;"Journal of Psoriasis and Psoriatic Arthritis";journal;"24755311, 24755303";"SAGE Publications Ltd";No;No;0,603;Q2;12;24;72;674;114;67;1,48;28,08;52,97;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2017-2026";"Dermatology (Q2); Rheumatology (Q3)";"Medicine" +9802;29909;"Nordia Geographical Publications";book series;"12382086";"University of Oulu";Yes;Yes;0,603;Q2;14;14;25;1669;73;23;2,07;119,21;61,90;0;Finland;Western Europe;"University of Oulu";"1995-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +9803;18663;"Organic Electronics";journal;"15661199";"Elsevier B.V.";No;No;0,603;Q2;123;126;591;5892;1646;590;2,93;46,76;30,54;0;Netherlands;Western Europe;"Elsevier B.V.";"2000-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Biomaterials (Q3)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +9804;13418;"Psychoanalytic Dialogues";journal;"19409222, 10481885";"Taylor and Francis Ltd.";No;No;0,603;Q2;62;119;287;1823;183;108;0,54;15,32;69,44;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-2025";"Clinical Psychology (Q2)";"Psychology" +9805;19123;"Quality and Reliability Engineering International";journal;"07488017, 10991638";"John Wiley and Sons Ltd";No;No;0,603;Q2;81;231;674;9239;2103;659;3,16;40,00;31,24;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1985-2026";"Management Science and Operations Research (Q2); Safety, Risk, Reliability and Quality (Q2)";"Decision Sciences; Engineering" +9806;24228;"Review of Social Economy";journal;"14701162, 00346764";"Routledge";No;No;0,603;Q2;47;24;77;1503;188;75;1,91;62,63;20,00;1;United Kingdom;Western Europe;"Routledge";"1942, 1944, 1946-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +9807;19700201037;"CoDesign";journal;"15710882, 17453755";"Taylor and Francis Ltd.";No;No;0,602;Q1;44;103;92;5371;371;90;3,59;52,15;63,88;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Architecture (Q1); Visual Arts and Performing Arts (Q1); Computer Graphics and Computer-Aided Design (Q2)";"Arts and Humanities; Computer Science; Engineering" +9808;21541;"Policing";journal;"1363951X";"Emerald Publishing";No;No;0,602;Q1;65;105;207;6535;449;201;1,90;62,24;51,43;0;United Kingdom;Western Europe;"Emerald Publishing";"1997-2026";"Law (Q1); Pathology and Forensic Medicine (Q2); Public Administration (Q2)";"Medicine; Social Sciences" +9809;21100853663;"Urban Rail Transit";journal;"21996679, 21996687";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,602;Q1;29;30;67;1127;246;67;3,77;37,57;33,33;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2015-2026";"Automotive Engineering (Q1); Urban Studies (Q1); Civil and Structural Engineering (Q2); Electrical and Electronic Engineering (Q2); Geography, Planning and Development (Q2); Transportation (Q2)";"Engineering; Social Sciences" +9810;200147102;"Archives of Agronomy and Soil Science";journal;"03650340, 14763567";"Taylor and Francis Ltd.";Yes;No;0,602;Q2;68;53;419;3295;1251;419;2,68;62,17;30,80;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1962-1970, 1994-2026";"Agronomy and Crop Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences" +9811;5000159300;"Austral Ecology";journal;"14429985, 14429993";"John Wiley and Sons Inc";No;No;0,602;Q2;104;138;483;8878;870;467;1,58;64,33;33,80;2;United States;Northern America;"John Wiley and Sons Inc";"1981, 1996-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9812;16294;"Biomechanics and Modeling in Mechanobiology";journal;"16177959, 16177940";"Springer Science and Business Media Deutschland GmbH";No;No;0,602;Q2;94;128;364;8141;1196;362;3,12;63,60;30,11;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2002-2026";"Biomedical Engineering (Q2); Biotechnology (Q2); Mechanical Engineering (Q2); Modeling and Simulation (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering; Mathematics" +9813;16286;"Canadian Water Resources Journal";journal;"07011784";"Taylor and Francis Ltd.";No;No;0,602;Q2;47;20;71;1143;157;64;2,31;57,15;33,90;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976-2026";"Water Science and Technology (Q2)";"Environmental Science" +9814;4000148802;"Computers and Concrete";journal;"1598818X, 15988198";"Techno-Press";No;No;0,602;Q2;54;95;262;5188;1063;259;4,68;54,61;22,53;0;South Korea;Asiatic Region;"Techno-Press";"2006-2026";"Computational Mechanics (Q2)";"Engineering" +9815;21100887617;"Education Inquiry";journal;"20004508";"Taylor and Francis Ltd.";Yes;Yes;0,602;Q2;33;83;107;4982;300;105;2,31;60,02;63,19;7;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Education (Q2); Public Administration (Q2); Sociology and Political Science (Q2)";"Social Sciences" +9816;23636;"Gender Issues";journal;"19364717, 1098092X";"Springer New York";No;No;0,602;Q2;40;40;64;2942;207;64;2,59;73,55;60,19;2;United States;Northern America;"Springer New York";"1997-2003, 2005-2026";"Gender Studies (Q2)";"Social Sciences" +9817;21101114177;"International Sport Coaching Journal";journal;"2328918X, 23289198";"Human Kinetics Publishers Inc.";No;No;0,602;Q2;23;45;118;2753;300;115;2,51;61,18;38,36;0;United States;Northern America;"Human Kinetics Publishers Inc.";"2019-2026";"Health (social science) (Q2)";"Social Sciences" +9818;21100922667;"Nanocomposites";journal;"20550332, 20550324";"Taylor and Francis Ltd.";Yes;No;0,602;Q2;32;18;63;1471;253;63;3,62;81,72;42,22;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2025";"Ceramics and Composites (Q2); Materials Chemistry (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +9819;21100470767;"Prostate Cancer";journal;"20903111, 2090312X";"John Wiley and Sons Ltd";Yes;No;0,602;Q2;17;12;17;463;30;17;1,25;38,58;29,79;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Urology (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9820;19400158380;"Saudi Dental Journal";journal;"10139052";"Springer International Publishing";Yes;No;0,602;Q2;48;92;483;4009;1383;482;2,82;43,58;49,85;0;Switzerland;Western Europe;"Springer International Publishing";"2009-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +9821;21101142560;"Translational Journal of the American College of Sports Medicine";journal;"23792868";"Lippincott Williams and Wilkins";No;No;0,602;Q2;11;47;100;1921;176;91;1,52;40,87;50,57;0;United States;Northern America;"Lippincott Williams and Wilkins";"2020-2026";"Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Medicine" +9822;21101185493;"Livers";journal;"26734389";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,602;Q3;14;68;125;6613;379;118;2,67;97,25;40,56;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Hepatology (Q3)";"Medicine" +9823;17272;"Defence and Peace Economics";journal;"14768267, 10242694";"Routledge";No;No;0,601;Q1;53;89;173;5759;480;173;2,52;64,71;18,39;9;United Kingdom;Western Europe;"Routledge";"1994-2026";"Social Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +9824;21100827931;"Eurasian Economic Review";journal;"1309422X, 2147429X";"Springer International Publishing AG";Yes;No;0,601;Q1;30;60;95;4488;409;94;4,34;74,80;24,80;0;Switzerland;Western Europe;"Springer International Publishing AG";"2011-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1)";"Economics, Econometrics and Finance" +9825;21100895684;"Global Knowledge, Memory and Communication";journal;"25149350, 25149342";"Emerald Group Publishing Ltd.";No;No;0,601;Q1;46;326;324;21788;1407;324;4,36;66,83;33,47;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2018-2026";"Library and Information Sciences (Q1)";"Social Sciences" +9826;22496;"Journal of Psycholinguistic Research";journal;"15736555, 00906905";"Springer New York";No;No;0,601;Q1;74;46;269;2264;655;269;2,66;49,22;53,06;0;United States;Northern America;"Springer New York";"1971-2026";"Linguistics and Language (Q1); Psychology (miscellaneous) (Q2); Experimental and Cognitive Psychology (Q3)";"Psychology; Social Sciences" +9827;15407;"Visual Cognition";journal;"13506285, 14640716";"Routledge";No;No;0,601;Q1;99;28;172;1358;192;169;0,86;48,50;44,87;0;United Kingdom;Western Europe;"Routledge";"1994-2026";"Arts and Humanities (miscellaneous) (Q1); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3)";"Arts and Humanities; Neuroscience; Psychology" +9828;17546;"Acta Neurologica Belgica";journal;"03009009, 22402993";"Springer Science and Business Media Deutschland GmbH";No;No;0,601;Q2;47;342;971;9169;1295;539;1,27;26,81;42,42;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1959-1965, 1970-2026";"Medicine (miscellaneous) (Q2); Neurology (clinical) (Q3)";"Medicine" +9829;21101142745;"Advances in Bridge Engineering";journal;"26625407";"Springer";Yes;Yes;0,601;Q2;20;41;97;1871;327;97;2,59;45,63;24,36;0;Singapore;Asiatic Region;"Springer";"2020-2026";"Civil and Structural Engineering (Q2)";"Engineering" +9830;29913;"Cranio - Journal of Craniomandibular Practice";journal;"08869634, 21510903";"Taylor and Francis Ltd.";No;No;0,601;Q2;57;151;257;6489;665;235;2,96;42,97;49,10;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2026";"Dentistry (miscellaneous) (Q2); Otorhinolaryngology (Q2)";"Dentistry; Medicine" +9831;23155;"Current Vascular Pharmacology";journal;"15701611, 18756212";"Bentham Science Publishers";No;No;0,601;Q2;76;66;154;4720;273;120;2,06;71,52;27,18;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2003-2025";"Cardiology and Cardiovascular Medicine (Q2); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +9832;19213;"Gems and Gemology";journal;"0016626X";"Gemological Institute of America (GIA)";No;No;0,601;Q2;38;25;91;833;64;54;0,61;33,32;38,24;0;United States;Northern America;"Gemological Institute of America (GIA)";"1979, 1981-1987, 1997-2001, 2004-2025";"Geochemistry and Petrology (Q2)";"Earth and Planetary Sciences" +9833;21101140108;"Health Sciences Review";journal;"27726320";"Elsevier Ltd";Yes;No;0,601;Q2;10;40;62;3127;183;51;2,95;78,18;36,17;0;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +9834;35932;"International Journal of Imaging Systems and Technology";journal;"10981098, 08999457";"John Wiley and Sons Inc";No;No;0,601;Q2;67;260;573;11235;2142;566;3,86;43,21;34,00;0;United States;Northern America;"John Wiley and Sons Inc";"1989-1992, 1994-2000, 2002-2026";"Biomedical Engineering (Q2); Computer Science Applications (Q2); Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Software (Q2); Health Informatics (Q3)";"Computer Science; Engineering; Materials Science; Medicine" +9835;23347;"Journal of Environmental Assessment Policy and Management";journal;"17575605, 14643332";"World Scientific Publishing Co. Pte Ltd";No;No;0,601;Q2;39;21;61;1342;175;61;2,90;63,90;33,90;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2003-2026";"Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +9836;30286;"Journal of King Saud University - Engineering Sciences";journal;"10183639";"Springer International Publishing";Yes;Yes;0,601;Q2;65;73;221;3350;998;215;4,51;45,89;23,91;0;Switzerland;Western Europe;"Springer International Publishing";"1989-2026";"Civil and Structural Engineering (Q2); Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Environmental Engineering (Q2); Fluid Flow and Transfer Processes (Q2); Fuel Technology (Q2); Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q2); Catalysis (Q3)";"Chemical Engineering; Computer Science; Energy; Engineering; Environmental Science; Materials Science" +9837;19814;"Mycologia";journal;"00275514, 15572536";"Taylor and Francis Ltd.";No;No;0,601;Q2;135;69;180;4457;467;178;2,29;64,59;41,52;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1945-1949, 1953, 1960-1961, 1965-1982, 1984-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Medicine (miscellaneous) (Q2); Plant Science (Q2); Cell Biology (Q3); Genetics (Q3); Molecular Biology (Q3); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +9838;21100239265;"PharmaNutrition";journal;"2542520X, 22134344";"Elsevier B.V.";No;No;0,601;Q2;37;27;110;2611;342;102;3,04;96,70;44,67;0;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Food Science (Q2); Pharmacology (medical) (Q2); Pharmacology (Q3)";"Agricultural and Biological Sciences; Medicine; Pharmacology, Toxicology and Pharmaceutics" +9839;16300154766;"Crime, Media, Culture";journal;"17416590, 17416604";"SAGE Publications Ltd";No;No;0,600;Q1;52;72;90;4915;241;84;2,50;68,26;50,39;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2026";"Arts and Humanities (miscellaneous) (Q1); Communication (Q1); Cultural Studies (Q1); Law (Q1)";"Arts and Humanities; Social Sciences" +9840;19700168908;"Egyptian Journal of Biological Pest Control";journal;"11101768, 25369342";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,600;Q1;42;41;325;1826;1032;324;2,96;44,54;38,82;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2008-2026";"Insect Science (Q1); Agronomy and Crop Science (Q2); Ecology (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9841;28472;"Fractals";journal;"17936543, 0218348X";"World Scientific";No;No;0,600;Q1;78;346;1026;14071;3036;1014;3,22;40,67;30,14;0;Singapore;Asiatic Region;"World Scientific";"1993-2026";"Multidisciplinary (Q1); Applied Mathematics (Q2); Geometry and Topology (Q2); Modeling and Simulation (Q2)";"Mathematics; Multidisciplinary" +9842;22108;"International Journal of Disability, Development and Education";journal;"1465346X, 1034912X";"Routledge";No;No;0,600;Q1;55;132;293;6641;775;293;2,61;50,31;59,65;0;United Kingdom;Western Europe;"Routledge";"1989-2026";"Health Professions (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Education (Q2); Health (social science) (Q2)";"Health Professions; Psychology; Social Sciences" +9843;21100784274;"Journal of Agribusiness in Developing and Emerging Economies";journal;"20440847, 20440839";"Emerald Group Publishing Ltd.";No;No;0,600;Q1;32;156;163;9668;723;162;4,28;61,97;29,18;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2013, 2016-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Development (Q2); Economics and Econometrics (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Social Sciences" +9844;6500153218;"Latin American and Caribbean Ethnic Studies";journal;"17442222, 17442230";"Routledge";No;No;0,600;Q1;25;27;84;1935;117;76;1,40;71,67;72,09;0;United Kingdom;Western Europe;"Routledge";"2006-2026";"Anthropology (Q1); Cultural Studies (Q1); Sociology and Political Science (Q2)";"Social Sciences" +9845;23671;"Speech Communication";journal;"01676393";"Elsevier B.V.";No;No;0,600;Q1;123;108;241;7341;1048;239;3,90;67,97;40,21;0;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Communication (Q1); Linguistics and Language (Q1); Computer Science Applications (Q2); Computer Vision and Pattern Recognition (Q2); Modeling and Simulation (Q2); Software (Q2)";"Computer Science; Mathematics; Social Sciences" +9846;21321;"AIDS Care - Psychological and Socio-Medical Aspects of AIDS/HIV";journal;"13600451, 09540121";"Routledge";No;No;0,600;Q2;115;266;684;11767;1157;681;1,57;44,24;59,48;0;United Kingdom;Western Europe;"Routledge";"1989-2026";"Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2); Social Psychology (Q2)";"Medicine; Psychology; Social Sciences" +9847;21101277700;"Data Science for Transportation";journal;"29481368, 2948135X";"Springer";No;No;0,600;Q2;8;27;52;1734;163;52;3,13;64,22;29,41;1;Singapore;Asiatic Region;"Springer";"2023-2026";"Automotive Engineering (Q2); Civil and Structural Engineering (Q2)";"Engineering" +9848;144965;"Employee Responsibilities and Rights Journal";journal;"08927545, 15733378";"Springer";No;No;0,600;Q2;42;63;119;3950;416;107;3,09;62,70;43,28;3;United States;Northern America;"Springer";"1988-1998, 2000-2026";"Human Factors and Ergonomics (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +9849;21100446931;"European Journal of Mathematics";journal;"2199675X, 21996768";"Springer International Publishing AG";No;No;0,600;Q2;16;85;301;2237;197;299;0,68;26,32;13,99;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +9850;145166;"Evidence-Based Dentistry";journal;"14620049, 14765446";"Nature Publishing Group";No;No;0,600;Q2;31;122;319;3293;608;144;1,94;26,99;49,12;1;United Kingdom;Western Europe;"Nature Publishing Group";"2004-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +9851;19700175092;"International Journal of Nephrology and Renovascular Disease";journal;"11787058";"Dove Medical Press Ltd";Yes;No;0,600;Q2;47;32;90;1474;232;86;2,28;46,06;45,59;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Nephrology (Q2)";"Medicine" +9852;23910;"Journal of Group Theory";journal;"14354446, 14335883";"Walter de Gruyter GmbH";No;No;0,600;Q2;33;66;157;1385;109;157;0,61;20,98;24,39;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1998-2026";"Algebra and Number Theory (Q2)";"Mathematics" +9853;21101070303;"Journal of Mining and Strata Control Engineering";journal;"20967187";"China Coal Society";No;No;0,600;Q2;29;77;182;2870;477;182;2,74;37,27;23,33;0;China;Asiatic Region;"China Coal Society";"2019-2025";"Civil and Structural Engineering (Q2); Engineering (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +9854;21188;"Journal of Sol-Gel Science and Technology";journal;"15734846, 09280707";"Springer Netherlands";No;No;0,600;Q2;108;491;855;30246;3491;842;4,52;61,60;33,76;0;Netherlands;Western Europe;"Springer Netherlands";"1993-2026";"Ceramics and Composites (Q2); Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Biomaterials (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +9855;17264;"Magnetic Resonance Imaging";journal;"18735894, 0730725X";"Elsevier Inc.";No;No;0,600;Q2;130;210;563;7828;1277;554;2,19;37,28;34,79;0;United States;Northern America;"Elsevier Inc.";"1982, 1984-2026";"Biomedical Engineering (Q2); Biophysics (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +9856;15583;"New Generation Computing";journal;"02883635, 18827055";"Springer Japan";No;No;0,600;Q2;38;19;138;860;439;128;2,95;45,26;31,71;0;Japan;Asiatic Region;"Springer Japan";"1983-2026";"Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +9857;21100981739;"Petroleum Research";journal;"20962495, 25241729";"KeAi Publishing Communications Ltd.";Yes;No;0,600;Q2;33;113;170;7765;758;170;3,88;68,72;24,51;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2016-2026";"Energy Engineering and Power Technology (Q2); Geochemistry and Petrology (Q2); Geology (Q2)";"Earth and Planetary Sciences; Energy" +9858;62653;"Seed Science Research";journal;"14752735, 09602585";"Cambridge University Press";No;No;0,600;Q2;81;17;72;1417;175;70;1,84;83,35;45,16;0;United Kingdom;Western Europe;"Cambridge University Press";"1991-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +9859;19700201173;"World Electric Vehicle Journal";journal;"20326653";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,600;Q2;51;675;1180;30912;4732;1173;4,08;45,80;26,31;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2007-2013, 2015-2016, 2018-2026";"Automotive Engineering (Q2)";"Engineering" +9860;12108;"Behavioral and Brain Sciences";journal;"14691825, 0140525X";"Cambridge University Press";No;No;0,600;Q3;189;222;893;6713;1308;885;1,57;30,24;30,91;0;United Kingdom;Western Europe;"Cambridge University Press";"1978-2025";"Behavioral Neuroscience (Q3); Neuropsychology and Physiological Psychology (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Neuroscience; Psychology" +9861;16785;"Journal of NeuroVirology";journal;"15382443, 13550284";"Springer Science and Business Media Deutschland GmbH";No;No;0,600;Q3;101;49;204;2815;380;199;1,97;57,45;45,40;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1995-2026";"Neurology (Q3); Neurology (clinical) (Q3); Virology (Q3); Cellular and Molecular Neuroscience (Q4)";"Immunology and Microbiology; Medicine; Neuroscience" +9862;14936;"Advances in Clinical and Experimental Medicine";journal;"18995276, 24512680";"Wroclaw Medical University";Yes;No;0,599;Q1;54;197;427;7880;1067;426;2,58;40,00;48,71;0;Poland;Eastern Europe;"Wroclaw Medical University";"2001-2026";"Reviews and References (medical) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Internal Medicine (Q2); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2); Genetics (clinical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9863;147229;"Discourse Studies";journal;"14614456, 14617080";"SAGE Publications Ltd";No;No;0,599;Q1;79;73;115;3816;270;114;2,80;52,27;65,45;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1999-2026";"Anthropology (Q1); Communication (Q1); Linguistics and Language (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +9864;15435;"Journal of Consciousness Studies";journal;"20512201, 13558250";"Imprint Academic";No;No;0,599;Q1;81;64;206;2524;311;183;1,08;39,44;24,62;0;United Kingdom;Western Europe;"Imprint Academic";"1996-2026";"Philosophy (Q1); Artificial Intelligence (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Psychology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Arts and Humanities; Computer Science; Psychology" +9865;12308;"Journal of Social Work Education";journal;"10437797, 21635811";"Taylor and Francis Ltd.";No;No;0,599;Q1;69;73;237;3267;491;202;1,96;44,75;69,81;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-2026";"Social Sciences (miscellaneous) (Q1); Education (Q2); Social Work (Q2)";"Social Sciences" +9866;22605;"Journal of Zoological Systematics and Evolutionary Research";journal;"09475745, 14390469";"Wiley-VCH Verlag";Yes;No;0,599;Q1;62;24;33;1630;72;33;2,43;67,92;28,47;0;Germany;Western Europe;"Wiley-VCH Verlag";"1963-1981, 1983-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +9867;21100824034;"Virtual Archaeology Review";journal;"19899947";"Universidad Politecnica de Valencia";Yes;No;0,599;Q1;22;23;56;1051;153;56;2,19;45,70;29,23;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2017-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Conservation (Q1); Computer Science Applications (Q2)";"Arts and Humanities; Computer Science; Social Sciences" +9868;21101289587;"Engineering Perspective";journal;"27579077";"";Yes;No;0,599;Q2;13;26;37;1008;118;37;3,34;38,77;16,98;0;Turkey;Middle East;"";"2021-2025";"Energy Engineering and Power Technology (Q2); Energy (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Mechanical Engineering (Q2)";"Energy; Engineering" +9869;21100847942;"Flexible and Printed Electronics";journal;"20588585";"Institute of Physics Publishing";Yes;No;0,599;Q2;41;59;260;2931;867;259;3,06;49,68;27,51;0;United States;Northern America;"Institute of Physics Publishing";"2016-2025";"Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science" +9870;21100365104;"Food Webs";journal;"23522496";"Elsevier Inc.";No;No;0,599;Q2;32;36;160;1842;315;160;1,91;51,17;32,12;0;United States;Northern America;"Elsevier Inc.";"2014-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9871;24995;"Hematology (United Kingdom)";journal;"10245332, 16078454";"Taylor and Francis Ltd.";Yes;No;0,599;Q2;55;147;510;5446;1057;503;2,06;37,05;47,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Hematology (Q2)";"Medicine" +9872;23176;"Indagationes Mathematicae";journal;"00193577";"Elsevier B.V.";No;No;0,599;Q2;38;124;205;3622;169;201;0,80;29,21;18,18;0;Netherlands;Western Europe;"Elsevier B.V.";"1969, 1972-2009, 2011-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +9873;5000159705;"Japan Journal of Nursing Science";journal;"17427924, 17427932";"Blackwell Publishing Asia";No;No;0,599;Q2;35;58;169;2318;401;167;2,26;39,97;68,92;0;Australia;Pacific Region;"Blackwell Publishing Asia";"2006-2026";"Medicine (miscellaneous) (Q2); Research and Theory (Q2)";"Medicine; Nursing" +9874;19700174938;"JCRPE Journal of Clinical Research in Pediatric Endocrinology";journal;"13085727, 13085735";"Galenos Publishing House";Yes;No;0,599;Q2;54;77;200;2430;364;188;1,82;31,56;62,00;0;Turkey;Middle East;"Galenos Publishing House";"2008-2025";"Pediatrics, Perinatology and Child Health (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9875;31815;"Journal of African Earth Sciences";journal;"1464343X, 18791956";"Elsevier Ltd";No;No;0,599;Q2;107;263;750;22217;2025;744;2,75;84,48;20,82;0;United Kingdom;Western Europe;"Elsevier Ltd";"1983-2026";"Earth-Surface Processes (Q2); Geology (Q2)";"Earth and Planetary Sciences" +9876;21101078232;"Journal of Computational Social Science";journal;"24322717, 24322725";"Springer Nature";No;No;0,599;Q2;28;103;209;6529;761;209;3,32;63,39;33,66;4;Singapore;Asiatic Region;"Springer Nature";"2018-2026";"Artificial Intelligence (Q2); Transportation (Q2)";"Computer Science; Social Sciences" +9877;16509;"Journal of Futures Markets";journal;"10969934, 02707314";"Wiley-Liss Inc.";No;No;0,599;Q2;69;109;249;5897;663;242;2,93;54,10;28,36;1;United States;Northern America;"Wiley-Liss Inc.";"1981-2026";"Accounting (Q2); Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +9878;21101024237;"Journal of Operational Meteorology";journal;"23256184";"National Weather Association";No;No;0,599;Q2;10;8;23;250;37;23;1,79;31,25;13,64;0;United States;Northern America;"National Weather Association";"2019-2025";"Computers in Earth Sciences (Q2); Management Science and Operations Research (Q2); Atmospheric Science (Q3)";"Decision Sciences; Earth and Planetary Sciences" +9879;21100403244;"JPRAS Open";journal;"23525878";"Elsevier Ltd";Yes;No;0,599;Q2;22;268;371;6020;761;363;1,98;22,46;30,95;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Surgery (Q2)";"Medicine" +9880;21101109770;"Prosthesis";journal;"26731592";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,599;Q2;25;168;264;8084;919;249;3,55;48,12;36,60;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2026";"Biomedical Engineering (Q2); Materials Science (miscellaneous) (Q2); Oral Surgery (Q2); Rehabilitation (Q2)";"Dentistry; Engineering; Materials Science; Medicine" +9881;26395;"Russian Mathematical Surveys";journal;"00360279, 14684829";"Steklov Mathematical Institute of Russian Academy of Sciences";No;No;0,599;Q2;49;56;136;1374;122;98;0,90;24,54;11,86;0;Russian Federation;Eastern Europe;"Steklov Mathematical Institute of Russian Academy of Sciences";"1970-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +9882;21101193872;"Signals";journal;"26246120";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,599;Q2;21;74;146;3174;570;145;3,70;42,89;21,34;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Engineering (miscellaneous) (Q2)";"Engineering" +9883;26146;"Visual Computer";journal;"14322315, 01782789";"Springer Science and Business Media Deutschland GmbH";No;No;0,599;Q2;85;790;1294;42563;5329;1282;4,12;53,88;32,72;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1985-2026";"Computer Graphics and Computer-Aided Design (Q2); Computer Vision and Pattern Recognition (Q2); Software (Q2)";"Computer Science" +9884;19514;"Veterinary Clinics of North America - Food Animal Practice";journal;"07490720, 15584240";"W.B. Saunders";No;No;0,598;Q1;96;41;122;1933;273;104;2,08;47,15;50,68;0;United States;Northern America;"W.B. Saunders";"1971-1978, 1985-2026";"Food Animals (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Veterinary" +9885;21101055964;"Asian Journal of Social Health and Behavior";journal;"27724204";"Wolters Kluwer Medknow Publications";Yes;No;0,598;Q2;22;27;81;903;189;76;2,17;33,44;47,20;1;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2021-2026";"Health (social science) (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2); Social Psychology (Q2)";"Medicine; Psychology; Social Sciences" +9886;21100241218;"Astronomy and Computing";journal;"22131337";"Elsevier B.V.";No;No;0,598;Q2;41;73;238;4386;626;237;2,88;60,08;25,45;0;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Astronomy and Astrophysics (Q2); Computer Science Applications (Q2); Space and Planetary Science (Q2)";"Computer Science; Earth and Planetary Sciences; Physics and Astronomy" +9887;4700152728;"Bulletin of the Atomic Scientists";journal;"19383282, 00963402";"Taylor and Francis Ltd.";No;No;0,598;Q2;36;54;163;1641;225;110;1,42;30,39;34,72;11;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1946-1996, 1998-2026";"Political Science and International Relations (Q2)";"Social Sciences" +9888;24472;"Children and Society";journal;"09510605, 10990860";"Wiley-Blackwell Publishing Ltd";No;No;0,598;Q2;76;116;331;6130;804;325;2,31;52,84;70,52;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1987-2026";"Education (Q2); Health (social science) (Q2); Social Work (Q2); Life-span and Life-course Studies (Q3)";"Social Sciences" +9889;29277;"Cleveland Clinic Journal of Medicine";journal;"08911150";"Cleveland Clinic Educational Foundation";Yes;No;0,598;Q2;78;122;343;2143;646;273;1,96;17,57;42,79;1;United States;Northern America;"Cleveland Clinic Educational Foundation";"1987-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +9890;21100218520;"International Journal of Hypertension";journal;"20900384, 20900392";"John Wiley and Sons Ltd";Yes;No;0,598;Q2;54;30;77;1522;190;77;3,71;50,73;50,63;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Internal Medicine (Q2)";"Medicine" +9891;27372;"Journal of Coastal Conservation";journal;"18747841, 14000350";"Springer Science and Business Media B.V.";No;No;0,598;Q2;59;90;224;6093;624;224;2,57;67,70;36,11;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1995-2004, 2007-2026";"Ecology (Q2); Nature and Landscape Conservation (Q2); Oceanography (Q2)";"Earth and Planetary Sciences; Environmental Science" +9892;21658;"Journal of Cranio-Maxillofacial Surgery";journal;"18784119, 10105182";"Churchill Livingstone";No;No;0,598;Q2;100;295;416;9920;972;416;2,17;33,63;32,86;0;United Kingdom;Western Europe;"Churchill Livingstone";"1987-2026";"Oral Surgery (Q2); Otorhinolaryngology (Q2); Surgery (Q2)";"Dentistry; Medicine" +9893;12571;"Journal of Fusion Energy";journal;"15729591, 01640313";"Springer New York";No;No;0,598;Q2;38;63;108;2655;206;92;1,86;42,14;23,03;0;United States;Northern America;"Springer New York";"1981-1983, 1985-2026";"Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2)";"Energy; Physics and Astronomy" +9894;21101272843;"Journal Of Organizational Behavior Research";journal;"25289705";"Deniz Publication";No;No;0,598;Q2;11;53;111;2762;339;111;2,87;52,11;36,97;0;Turkey;Middle East;"Deniz Publication";"2021-2025";"Business, Management and Accounting (miscellaneous) (Q2); Decision Sciences (miscellaneous) (Q2); Information Systems and Management (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Decision Sciences" +9895;21100898991;"Modern Stochastics: Theory and Applications";journal;"23516046, 23516054";"VTeX";Yes;Yes;0,598;Q2;9;25;66;634;66;66;1,02;25,36;20,83;0;Lithuania;Eastern Europe;"VTeX";"2018-2025";"Modeling and Simulation (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +9896;50020;"Occupational Medicine";journal;"09627480, 14718405";"Oxford University Press";No;No;0,598;Q2;110;114;359;2259;578;265;1,89;19,82;51,17;0;United Kingdom;Western Europe;"Oxford University Press";"1948-1949, 1951-2026";"Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9897;26468;"Semigroup Forum";journal;"00371912, 14322137";"Springer New York";No;No;0,598;Q2;42;85;245;1745;172;242;0,64;20,53;22,07;0;United States;Northern America;"Springer New York";"1970-2026";"Algebra and Number Theory (Q2)";"Mathematics" +9898;12652;"Singapore Journal of Tropical Geography";journal;"14679493, 01297619";"Wiley-Blackwell Publishing Ltd";No;No;0,598;Q2;56;40;82;1630;205;67;2,55;40,75;35,71;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1980-1986, 1988-2026";"Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +9899;17500155018;"Surgical Pathology Clinics";journal;"18759157, 18759181";"W.B. Saunders";No;No;0,598;Q2;40;75;177;4850;297;152;1,61;64,67;48,15;0;United States;Northern America;"W.B. Saunders";"2008-2025";"Pathology and Forensic Medicine (Q2); Surgery (Q2)";"Medicine" +9900;21100390176;"Theoretical and Applied Mechanics Letters";journal;"25890336, 20950349";"Elsevier B.V.";Yes;No;0,598;Q2;42;64;186;2394;663;182;3,11;37,41;30,80;0;Netherlands;Western Europe;"Elsevier B.V.";"2011-2026";"Aerospace Engineering (Q2); Biomedical Engineering (Q2); Civil and Structural Engineering (Q2); Computational Mechanics (Q2); Environmental Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Ocean Engineering (Q2)";"Engineering; Environmental Science" +9901;27496;"Zhongguo Gonglu Xuebao/China Journal of Highway and Transport";journal;"10017372";"Chang'an University";No;No;0,598;Q2;56;173;896;7698;2419;891;2,65;44,50;27,05;0;China;Asiatic Region;"Chang'an University";"1994, 1998, 2001-2026";"Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Transportation (Q2)";"Engineering; Social Sciences" +9902;58724;"Archaeological Dialogues";journal;"13802038, 14782294";"Cambridge University Press";No;No;0,597;Q1;43;4;49;434;71;37;0,96;108,50;45,45;0;United Kingdom;Western Europe;"Cambridge University Press";"1994-2026";"Archeology (Q1); Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q2)";"Arts and Humanities; Social Sciences" +9903;21101082056;"China Economic Quarterly International";journal;"26669331";"KeAi Communications Co.";Yes;No;0,597;Q1;13;18;67;911;220;67;3,48;50,61;43,18;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2025";"Economics, Econometrics and Finance (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Economics, Econometrics and Finance; Social Sciences" +9904;19700187613;"Diaspora, Indigenous, and Minority Education";journal;"15595706, 15595692";"Taylor and Francis Ltd.";No;No;0,597;Q1;22;55;81;2871;198;69;2,50;52,20;66,00;0;United States;Northern America;"Taylor and Francis Ltd.";"2009-2026";"Cultural Studies (Q1); Education (Q2)";"Social Sciences" +9905;13048;"Polar Biology";journal;"07224060, 14322056";"Springer Science and Business Media Deutschland GmbH";No;No;0,597;Q1;95;118;345;7995;609;342;1,53;67,75;43,01;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1982-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1)";"Agricultural and Biological Sciences" +9906;21100203104;"African Journal of Primary Health Care and Family Medicine";journal;"20712936, 20712928";"AOSIS (Pty) Ltd";Yes;No;0,597;Q2;39;131;301;4120;551;296;1,58;31,45;55,12;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2009-2026";"Family Practice (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9907;19700175588;"Carpathian Journal of Mathematics";journal;"15842851, 18434401";"North University of Baia Mare";No;No;0,597;Q2;34;66;156;2056;212;156;1,38;31,15;26,00;0;Romania;Eastern Europe;"North University of Baia Mare";"2003-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +9908;21100897002;"Education Research International";journal;"20904010, 20904002";"John Wiley and Sons Ltd";Yes;No;0,597;Q2;31;0;304;0;972;304;3,94;0,00;0,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012, 2018-2024";"Education (Q2)";"Social Sciences" +9909;21100934236;"Fishes";journal;"24103888";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,597;Q2;37;655;1523;39938;4961;1498;3,18;60,97;38,28;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2026";"Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9910;21101092530;"IET Quantum Communication";journal;"26328925";"John Wiley and Sons Inc";Yes;No;0,597;Q2;18;30;90;1469;360;86;4,49;48,97;29,11;0;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Computational Theory and Mathematics (Q2); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Theoretical Computer Science (Q2)";"Computer Science; Engineering; Mathematics" +9911;21100237612;"International Journal of Protective Structures";journal;"2041420X, 20414196";"SAGE Publications Inc.";No;No;0,597;Q2;42;78;96;3081;314;95;3,06;39,50;17,37;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2010-2026";"Building and Construction (Q2); Mechanics of Materials (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering" +9912;19900188083;"Island Studies Journal";journal;"17152593";"";Yes;Yes;0,597;Q2;35;24;83;1400;177;82;1,72;58,33;54,72;2;Hong Kong;Asiatic Region;"";"2010-2025";"Geography, Planning and Development (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +9913;21101235913;"OTA International";journal;"25742167";"Wolters Kluwer Health";Yes;No;0,597;Q2;16;90;192;2488;332;182;1,62;27,64;27,84;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2020-2026";"Orthopedics and Sports Medicine (Q2); Surgery (Q2)";"Medicine" +9914;21101105296;"Vehicles";journal;"26248921";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,597;Q2;28;165;284;8099;1170;281;4,15;49,08;21,86;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2026";"Automotive Engineering (Q2); Electrical and Electronic Engineering (Q2)";"Engineering" +9915;21100238601;"International Journal of Inflammation";journal;"20420099, 20908040";"John Wiley and Sons Ltd";Yes;No;0,597;Q3;47;13;31;953;76;31;2,07;73,31;51,28;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2025";"Immunology and Allergy (Q3)";"Medicine" +9916;19660;"Comparative Immunology, Microbiology and Infectious Diseases";journal;"18781667, 01479571";"Elsevier Ltd";No;No;0,596;Q1;72;75;292;3743;760;287;2,73;49,91;41,65;0;United Kingdom;Western Europe;"Elsevier Ltd";"1978-2026";"Veterinary (miscellaneous) (Q1); Infectious Diseases (Q2); Medicine (miscellaneous) (Q2); Immunology (Q3); Immunology and Allergy (Q3); Microbiology (Q3)";"Immunology and Microbiology; Medicine; Veterinary" +9917;36956;"Culture, Medicine and Psychiatry";journal;"1573076X, 0165005X";"Springer New York";No;No;0,596;Q1;68;79;148;4221;339;139;2,23;53,43;57,05;0;United States;Northern America;"Springer New York";"1977-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Health (social science) (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)";"Arts and Humanities; Medicine; Social Sciences" +9918;14143;"Experimental Aging Research";journal;"10964657, 0361073X";"Taylor and Francis Ltd.";No;No;0,596;Q1;62;55;113;2836;225;113;1,84;51,56;58,69;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1975-2026";"Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q2); Geriatrics and Gerontology (Q3); Aging (Q4)";"Arts and Humanities; Biochemistry, Genetics and Molecular Biology; Medicine; Psychology" +9919;145332;"Identity";journal;"15283488, 1532706X";"Routledge";No;No;0,596;Q1;46;51;72;3315;197;70;2,88;65,00;63,24;1;United Kingdom;Western Europe;"Routledge";"2005-2026";"Anthropology (Q1); Psychology (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Psychology; Social Sciences" +9920;200147103;"Literacy";journal;"17414369, 17414350";"John Wiley and Sons Inc";No;No;0,596;Q1;37;32;99;1684;240;89;2,56;52,63;78,79;2;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2005-2026";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +9921;20483;"Annals of Plastic Surgery";journal;"01487043, 15363708";"Lippincott Williams and Wilkins";No;No;0,596;Q2;115;430;1189;11758;1940;1056;1,54;27,34;40,00;0;United States;Northern America;"Lippincott Williams and Wilkins";"1978-2026";"Surgery (Q2)";"Medicine" +9922;145404;"EcoHealth";journal;"16129210, 16129202";"Springer";No;No;0,596;Q2;80;61;104;3443;233;98;2,07;56,44;45,17;0;United States;Northern America;"Springer";"2004-2026";"Ecology (Q2); Health, Toxicology and Mutagenesis (Q3)";"Environmental Science" +9923;21101228881;"Ecological Frontiers";journal;"29505097";"Ecological Society of China";No;No;0,596;Q2;46;207;386;13990;1360;385;3,67;67,58;38,40;0;China;Asiatic Region;"Ecological Society of China";"2024-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9924;18550;"Histology and Histopathology";journal;"16995848, 02133911";"Histology and Histopathology";No;No;0,596;Q2;108;173;373;9342;864;373;2,13;54,00;46,22;0;Spain;Western Europe;"Histology and Histopathology";"1986-2026";"Histology (Q2); Pathology and Forensic Medicine (Q2)";"Medicine" +9925;19933;"International Journal of Impotence Research";journal;"14765489, 09559930";"Springer Nature";No;No;0,596;Q2;95;310;468;9344;1057;352;2,08;30,14;28,76;1;United Kingdom;Western Europe;"Springer Nature";"1993-2026";"Urology (Q2)";"Medicine" +9926;20000195019;"International Journal of the Commons";journal;"18750281";"Ubiquity Press";Yes;No;0,596;Q2;45;30;97;2032;263;93;2,59;67,73;43,82;0;United Kingdom;Western Europe;"Ubiquity Press";"2011-2026";"Sociology and Political Science (Q2)";"Social Sciences" +9927;28206;"Journal of Emergency Nursing";journal;"15272966, 00991767";"Elsevier Inc.";No;No;0,596;Q2;60;171;332;4620;690;275;2,28;27,02;61,18;0;United States;Northern America;"Elsevier Inc.";"1975-2026";"Emergency Nursing (Q2)";"Nursing" +9928;13935;"Journal of Micropalaeontology";journal;"0262821X, 20414978";"Copernicus Publications";Yes;No;0,596;Q2;36;30;47;2833;90;45;1,48;94,43;49,52;0;Germany;Western Europe;"Copernicus Publications";"1982-2026";"Paleontology (Q2)";"Earth and Planetary Sciences" +9929;21568;"Monthly Review";journal;"00270520";"Monthly Review Press";No;No;0,596;Q2;46;54;154;1550;166;120;1,12;28,70;26,67;0;United States;Northern America;"Monthly Review Press";"1977, 1980-1982, 1984, 1987, 1996-2020, 2022-2026";"Gender Studies (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Sociology and Political Science (Q2)";"Environmental Science; Social Sciences" +9930;12554;"Oncology (Switzerland)";journal;"00302414, 14230232";"S. Karger AG";No;No;0,596;Q2;112;157;262;5413;532;255;1,99;34,48;32,61;0;Switzerland;Western Europe;"S. Karger AG";"1948-2026";"Medicine (miscellaneous) (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9931;17257;"South African Journal of Botany";journal;"02546299";"Elsevier B.V.";No;No;0,596;Q2;98;615;2096;46182;8181;2087;3,73;75,09;40,76;0;Netherlands;Western Europe;"Elsevier B.V.";"1982-1986, 1988-1990, 1993-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +9932;19706;"FEMS Microbiology Letters";journal;"15746968, 03781097";"Oxford University Press";No;No;0,596;Q3;189;151;351;6748;895;350;2,02;44,69;44,07;0;United Kingdom;Western Europe;"Oxford University Press";"1977-2026";"Genetics (Q3); Microbiology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +9933;23643;"Health Informatics Journal";journal;"14604582, 17412811";"SAGE Publications Ltd";Yes;No;0,596;Q3;64;91;270;4289;721;270;2,42;47,13;45,62;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Health Informatics (Q3)";"Medicine" +9934;21100847273;"Molecular Genetics and Genomic Medicine";journal;"23249269";"John Wiley and Sons Inc";Yes;No;0,596;Q3;50;119;627;3422;1120;621;1,77;28,76;50,76;0;United States;Northern America;"John Wiley and Sons Inc";"2013-2026";"Genetics (Q3); Genetics (clinical) (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9935;79405;"African Journal of Range and Forage Science";journal;"10220119, 17279380";"Taylor and Francis Ltd.";No;No;0,595;Q1;40;36;96;2756;223;93;2,14;76,56;31,58;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2025";"Animal Science and Zoology (Q1); Ecology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +9936;21100375851;"Anuario de Psicologia Juridica";journal;"11330740, 21740542";"Colegio Oficial de Psicologos de Madrid";Yes;Yes;0,595;Q1;18;12;42;656;94;42;1,97;54,67;60,42;1;Spain;Western Europe;"Colegio Oficial de Psicologos de Madrid";"2013-2025";"Law (Q1); Pathology and Forensic Medicine (Q2); Applied Psychology (Q3)";"Medicine; Psychology; Social Sciences" +9937;21101298217;"Frontiers in Social Psychology";journal;"28137876";"Frontiers Media SA";Yes;No;0,595;Q1;6;27;66;1861;118;66;1,79;68,93;53,26;0;Switzerland;Western Europe;"Frontiers Media SA";"2023-2026";"Social Sciences (miscellaneous) (Q1); Social Psychology (Q2)";"Psychology; Social Sciences" +9938;29571;"Journal of Biological Education";journal;"00219266, 21576009";"Taylor and Francis Ltd.";No;No;0,595;Q1;50;98;223;5685;517;208;2,42;58,01;53,08;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1967-2026";"Agricultural and Biological Sciences (miscellaneous) (Q1); Education (Q2)";"Agricultural and Biological Sciences; Social Sciences" +9939;144939;"Journal of Intellectual Disabilities";journal;"17446295, 17446309";"SAGE Publications Ltd";No;No;0,595;Q1;58;89;248;4670;569;243;2,13;52,47;69,05;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2026";"Health Professions (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)";"Health Professions; Medicine" +9940;22655;"Mammalian Biology";journal;"16165047, 16181476";"Springer Science and Business Media Deutschland GmbH";No;No;0,595;Q1;59;88;262;6082;542;257;1,42;69,11;39,72;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2001-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +9941;21101121584;"Review of Economics and Political Science";journal;"26313561, 23569980";"Emerald Publishing";Yes;No;0,595;Q1;19;40;80;2221;324;80;3,61;55,53;54,55;0;United Kingdom;Western Europe;"Emerald Publishing";"2018-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Applied Mathematics (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2); Statistics and Probability (Q2)";"Economics, Econometrics and Finance; Mathematics; Social Sciences" +9942;24191;"Review of Political Economy";journal;"14653982, 09538259";"Taylor and Francis Ltd.";No;No;0,595;Q1;41;161;237;10849;553;216;2,12;67,39;27,31;11;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-1996, 2002-2026";"Economics, Econometrics and Finance (miscellaneous) (Q1); Political Science and International Relations (Q2)";"Economics, Econometrics and Finance; Social Sciences" +9943;12037;"Welding in the World";journal;"00432288, 18786669";"Springer Science and Business Media Deutschland GmbH";No;No;0,595;Q1;61;400;623;15586;2200;617;3,38;38,97;20,01;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1969-1971, 1973-2026";"Metals and Alloys (Q1); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +9944;12100154406;"ACM Transactions on Architecture and Code Optimization";journal;"15443973, 15443566";"Association for Computing Machinery";No;No;0,595;Q2;50;168;214;9274;660;214;3,36;55,20;25,60;0;United States;Northern America;"Association for Computing Machinery";"2004-2025";"Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)";"Computer Science" +9945;24247;"Anais Brasileiros de Dermatologia";journal;"03650596, 18064841";"Elsevier Espana S.L.U";Yes;Yes;0,595;Q2;73;213;557;4501;1030;538;1,66;21,13;57,65;0;Spain;Western Europe;"Elsevier Espana S.L.U";"1963-1977, 1979-1980, 1990-2026";"Dermatology (Q2)";"Medicine" +9946;21100853006;"Asia Pacific Allergy";journal;"22338268, 22338276";"Wolters Kluwer Health Inc";Yes;No;0,595;Q2;17;22;115;666;231;99;2,59;30,27;45,91;0;United States;Northern America;"Wolters Kluwer Health Inc";"2015-2017, 2019-2025";"Dermatology (Q2); Immunology and Allergy (Q3)";"Medicine" +9947;21100869982;"Bladder Cancer";journal;"23523735, 23523727";"SAGE Publications Ltd";Yes;No;0,595;Q2;33;0;108;0;133;102;1,14;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2015-2024";"Urology (Q2); Oncology (Q3)";"Medicine" +9948;21101039441;"Cryptography";journal;"2410387X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,595;Q2;29;80;183;3576;717;182;4,03;44,70;27,34;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2025";"Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Software (Q2)";"Computer Science; Mathematics" +9949;21101090590;"Energy Storage";journal;"25784862";"John Wiley and Sons Inc";No;No;0,595;Q2;28;208;452;10631;2053;451;4,59;51,11;23,99;1;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy" +9950;21100932464;"Gates Open Research";journal;"25724754";"F1000 Research Ltd";Yes;No;0,595;Q2;27;34;122;1488;234;116;1,44;43,76;48,40;0;United States;Northern America;"F1000 Research Ltd";"2017-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Health Policy (Q2); Immunology and Microbiology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +9951;145701;"Indian Journal of Palliative Care";journal;"19983735, 09731075";"Scientific Scholar";Yes;No;0,595;Q2;46;52;159;1247;307;148;1,85;23,98;56,63;0;India;Asiatic Region;"Scientific Scholar";"2005-2026";"Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +9952;12121;"Infrared Physics and Technology";journal;"13504495";"Elsevier B.V.";No;No;0,595;Q2;97;467;1440;19188;5786;1438;4,03;41,09;34,42;0;Netherlands;Western Europe;"Elsevier B.V.";"1994-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Materials Science; Physics and Astronomy" +9953;130135;"International Journal of Ophthalmology";journal;"22274898, 22223959";"International Journal of Ophthalmology (c/o Editorial Office)";Yes;No;0,595;Q2;53;205;938;7635;1736;810;1,81;37,24;41,01;2;China;Asiatic Region;"International Journal of Ophthalmology (c/o Editorial Office)";"2005-2025";"Ophthalmology (Q2)";"Medicine" +9954;28435;"Journal of Applied Geophysics";journal;"09269851";"Elsevier B.V.";No;No;0,595;Q2;108;329;797;15385;2327;795;2,74;46,76;24,13;0;Netherlands;Western Europe;"Elsevier B.V.";"1992-2026";"Geophysics (Q2)";"Earth and Planetary Sciences" +9955;5700165208;"Journal of Physics A: Mathematical and Theoretical";journal;"17518113, 17518121";"IOP Publishing Ltd.";No;No;0,595;Q2;178;460;1732;23345;3484;1721;1,88;50,75;15,79;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2007-2025";"Mathematical Physics (Q2); Modeling and Simulation (Q2); Physics and Astronomy (miscellaneous) (Q2); Statistical and Nonlinear Physics (Q2); Statistics and Probability (Q2)";"Mathematics; Physics and Astronomy" +9956;13106;"Journal of the American Helicopter Society";journal;"00028711";"American Helicopter Society";No;No;0,595;Q2;65;31;135;1286;333;135;2,08;41,48;12,50;0;United States;Northern America;"American Helicopter Society";"1969-2026";"Aerospace Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +9957;26696;"Microelectronic Engineering";journal;"01679317";"Elsevier B.V.";No;No;0,595;Q2;119;68;319;3522;1198;317;3,87;51,79;24,38;0;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Nanoscience and Nanotechnology (Q2); Surfaces, Coatings and Films (Q2)";"Engineering; Materials Science; Physics and Astronomy" +9958;145237;"Przeglad Menopauzalny";journal;"16438876, 22990038";"Termedia Publishing House Ltd.";Yes;No;0,595;Q2;36;37;117;1208;271;114;2,19;32,65;54,55;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2005-2025";"Obstetrics and Gynecology (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +9959;26323;"Ramanujan Journal";journal;"15729303, 13824090";"Springer Netherlands";Yes;No;0,595;Q2;45;304;575;6448;493;574;0,86;21,21;22,25;0;Netherlands;Western Europe;"Springer Netherlands";"1997-2026";"Algebra and Number Theory (Q2)";"Mathematics" +9960;28423;"Steel and Composite Structures";journal;"15986233, 12299367";"Techno-Press";Yes;No;0,595;Q2;86;150;639;7037;2029;636;3,36;46,91;22,12;0;South Korea;Asiatic Region;"Techno-Press";"2004-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Metals and Alloys (Q2)";"Engineering; Materials Science" +9961;33849;"Journal of Receptors and Signal Transduction";journal;"10799893, 15324281";"Taylor and Francis Ltd.";No;No;0,595;Q3;57;30;109;1527;289;109;2,18;50,90;41,54;0;United States;Northern America;"Taylor and Francis Ltd.";"1980-1981, 1983-2026";"Biochemistry (Q3); Cell Biology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +9962;87424;"Proceedings of the IEEE Conference on Decision and Control";conference and proceedings;"25762370, 07431546";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,595;-;148;1015;3210;24552;3686;3201;1,01;24,19;19,70;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1971-1972, 1975-2004, 2006-2016, 2018-2024";"Control and Optimization; Control and Systems Engineering; Modeling and Simulation";"Engineering; Mathematics" +9963;5800213394;"Information and Communications Technology Law";journal;"13600834, 14698404";"Routledge";No;No;0,594;Q1;28;30;55;1554;209;53;3,59;51,80;40,91;2;United Kingdom;Western Europe;"Routledge";"1992-2001, 2003-2026";"Law (Q1); Communication (Q2); Computer Science Applications (Q2)";"Computer Science; Social Sciences" +9964;36564;"Proceedings of the Prehistoric Society";journal;"20502729, 0079497X";"Cambridge University Press";No;No;0,594;Q1;31;15;35;1477;40;35;0,96;98,47;29,31;0;United Kingdom;Western Europe;"Cambridge University Press";"1935-1951, 1953-1966, 1968-1995, 2000, 2002-2009, 2011, 2013-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +9965;20190;"Allergy and Asthma Proceedings";journal;"15396304, 10885412";"OceanSide Publications Inc.";No;No;0,594;Q2;76;93;259;2361;508;227;2,02;25,39;51,97;0;United States;Northern America;"OceanSide Publications Inc.";"1983-1984, 1996-2026";"Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2); Immunology and Allergy (Q3)";"Medicine" +9966;13641;"Auris Nasus Larynx";journal;"18791476, 03858146";"Elsevier Ireland Ltd";No;No;0,594;Q2;66;123;459;3411;818;447;1,83;27,73;20,53;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1974-2026";"Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Surgery (Q2)";"Medicine" +9967;15516;"Biotechnology Letters";journal;"15736776, 01415492";"Springer Science and Business Media B.V.";No;No;0,594;Q2;138;127;325;5751;1001;325;2,74;45,28;42,64;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1979-2026";"Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2); Bioengineering (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology; Medicine" +9968;14895;"Clinical Neurology and Neurosurgery";journal;"18726968, 03038467";"Elsevier B.V.";No;No;0,594;Q2;93;468;1281;13844;2523;1206;1,83;29,58;31,66;0;Netherlands;Western Europe;"Elsevier B.V.";"1974-1976, 1978-2026";"Medicine (miscellaneous) (Q2); Surgery (Q2); Neurology (clinical) (Q3)";"Medicine" +9969;14580;"Ecological Research";journal;"14401703, 09123814";"Springer Nature";No;No;0,594;Q2;92;74;214;4558;465;202;1,93;61,59;33,56;0;United States;Northern America;"Springer Nature";"1986-2026";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +9970;21100975686;"IISE Transactions on Occupational Ergonomics and Human Factors";journal;"24725838, 24725846";"Taylor and Francis Ltd.";Yes;No;0,594;Q2;18;35;51;1731;149;48;2,19;49,46;35,90;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Human Factors and Ergonomics (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Public Health, Environmental and Occupational Health (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering; Health Professions; Medicine; Social Sciences" +9971;4900153220;"International Journal on Semantic Web and Information Systems";journal;"15526283, 15526291";"IGI Global";No;No;0,594;Q2;44;49;173;1894;665;173;3,47;38,65;33,11;0;United States;Northern America;"IGI Global";"2005-2026";"Computer Networks and Communications (Q2); Information Systems (Q2)";"Computer Science" +9972;21100205972;"Journal of Healthcare Engineering";journal;"20402295, 20402309";"John Wiley and Sons Ltd";Yes;No;0,594;Q2;77;0;647;0;2625;647;2,47;0,00;0,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2024";"Biomedical Engineering (Q2); Biotechnology (Q2); Surgery (Q2); Health Informatics (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +9973;4000151616;"Journal of Nanomaterials";journal;"16874129, 16874110";"John Wiley and Sons Ltd";Yes;No;0,594;Q2;119;0;683;0;3489;681;6,13;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2006-2024";"Materials Science (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q2)";"Materials Science" +9974;4900152803;"Journal of Systems Science and Complexity";journal;"10096124, 15597067";"Springer Science and Business Media, LLC";No;No;0,594;Q2;46;160;398;5774;1093;395;2,47;36,09;32,05;0;United States;Northern America;"Springer Science and Business Media, LLC";"2006-2026";"Computer Science (miscellaneous) (Q2); Information Systems (Q2)";"Computer Science" +9975;13691;"Journal of Vinyl and Additive Technology";journal;"15480585, 10835601";"John Wiley and Sons Ltd";No;No;0,594;Q2;50;112;271;6367;1150;267;4,63;56,85;36,95;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1989, 1995-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Marketing (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)";"Business, Management and Accounting; Chemical Engineering; Chemistry; Materials Science" +9976;25941;"Macromolecular Research";journal;"20927673, 15985032";"Polymer Society of Korea";Yes;No;0,594;Q2;65;145;300;6962;1141;299;4,28;48,01;36,07;0;South Korea;Asiatic Region;"Polymer Society of Korea";"2002-2026";"Chemical Engineering (miscellaneous) (Q2); Materials Chemistry (Q2); Organic Chemistry (Q2); Polymers and Plastics (Q2)";"Chemical Engineering; Chemistry; Materials Science" +9977;21101200967;"Maritime Technology and Research";journal;"2651205X";"Kasetsart University Faculty of International Maritime Studies";No;No;0,594;Q2;13;30;74;1589;222;74;3,10;52,97;45,31;0;Thailand;Asiatic Region;"Kasetsart University Faculty of International Maritime Studies";"2020-2026";"Ocean Engineering (Q2); Oceanography (Q2); Transportation (Q2)";"Earth and Planetary Sciences; Engineering; Social Sciences" +9978;21101052761;"Mediastinum";journal;"25226711";"AME Publishing Company";No;No;0,594;Q2;15;44;100;1384;227;83;2,61;31,45;30,39;0;China;Asiatic Region;"AME Publishing Company";"2019-2025";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Endocrinology, Diabetes and Metabolism (Q3); Oncology (Q3)";"Medicine" +9979;19900192900;"Molecular Informatics";journal;"18681751, 18681743";"John Wiley and Sons Inc";No;No;0,594;Q2;81;47;162;2214;583;161;3,22;47,11;27,17;0;Germany;Western Europe;"John Wiley and Sons Inc";"2010-2026";"Computer Science Applications (Q2); Drug Discovery (Q2); Organic Chemistry (Q2); Molecular Medicine (Q3); Structural Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Computer Science; Pharmacology, Toxicology and Pharmaceutics" +9980;21100204102;"Oral Surgery, Oral Medicine, Oral Pathology and Oral Radiology";journal;"22124403, 22124411";"Elsevier Inc.";No;No;0,594;Q2;150;211;636;7415;1401;588;2,30;35,14;43,19;0;United States;Northern America;"Elsevier Inc.";"2012-2026";"Dentistry (miscellaneous) (Q2); Oral Surgery (Q2); Pathology and Forensic Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Surgery (Q2)";"Dentistry; Medicine" +9981;19762;"International Microbiology";journal;"16181905, 11396709";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,594;Q3;79;242;305;13790;978;302;3,18;56,98;43,36;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1998-2026";"Microbiology (Q3); Microbiology (medical) (Q3)";"Immunology and Microbiology; Medicine" +9982;19700174944;"Islets";journal;"19382022, 19382014";"Taylor and Francis Ltd.";Yes;No;0,594;Q3;47;6;41;356;72;40;1,52;59,33;53,33;0;United States;Northern America;"Taylor and Francis Ltd.";"2009-2026";"Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +9983;10600153338;"Integrative Psychological and Behavioral Science";journal;"19324502, 19363567";"Springer New York";No;No;0,593;Q1;48;91;248;5250;504;248;1,81;57,69;34,09;1;United States;Northern America;"Springer New York";"1969, 1976, 2007-2026";"Anthropology (Q1); Cultural Studies (Q1); Philosophy (Q1); Social Psychology (Q2); Applied Psychology (Q3); Behavioral Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)";"Arts and Humanities; Neuroscience; Psychology; Social Sciences" +9984;5800207543;"Journal of Quantitative Linguistics";journal;"09296174, 17445035";"Routledge";No;No;0,593;Q1;34;27;54;1243;101;54;1,31;46,04;30,61;0;United Kingdom;Western Europe;"Routledge";"1994-2026";"Linguistics and Language (Q1)";"Social Sciences" +9985;19016;"Methods of Information in Medicine";journal;"00261270, 2511705X";"Georg Thieme Verlag";No;No;0,593;Q1;77;17;70;471;189;66;3,04;27,71;38,05;1;Germany;Western Europe;"Georg Thieme Verlag";"1962-2026";"Advanced and Specialized Nursing (Q1); Health Informatics (Q3); Health Information Management (Q3)";"Health Professions; Medicine; Nursing" +9986;19574;"Veterinary Surgery";journal;"1532950X, 01613499";"Wiley-Blackwell";No;No;0,593;Q1;98;184;420;5589;636;405;1,33;30,38;44,17;0;United States;Northern America;"Wiley-Blackwell";"1972-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +9987;25750;"Acta Geologica Sinica (English Edition)";journal;"17556724, 10009515";"John Wiley and Sons Inc";No;No;0,593;Q2;81;116;386;9406;752;381;1,99;81,09;27,19;0;United States;Northern America;"John Wiley and Sons Inc";"1988-2026";"Geology (Q2)";"Earth and Planetary Sciences" +9988;19363;"Arctic, Antarctic, and Alpine Research";journal;"15230430, 19384246";"Taylor and Francis Ltd.";Yes;No;0,593;Q2;92;51;119;4000;254;116;2,04;78,43;44,80;0;United States;Northern America;"Taylor and Francis Ltd.";"1996, 1998-2026";"Earth-Surface Processes (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Global and Planetary Change (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +9989;13255;"Biological Bulletin";journal;"19398697, 00063185";"University of Chicago Press";No;No;0,593;Q2;89;0;102;0;189;97;0,95;0,00;0,00;0;United States;Northern America;"University of Chicago Press";"1945-1951, 1959-1962, 1964-1979, 1981-1987, 1989-2024, 2026";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +9990;21131;"European Surgical Research";journal;"14219921, 0014312X";"S. Karger AG";Yes;No;0,593;Q2;54;22;92;751;281;90;4,11;34,14;31,51;0;Switzerland;Western Europe;"S. Karger AG";"1969-2026";"Medicine (miscellaneous) (Q2); Surgery (Q2)";"Medicine" +9991;21101255658;"Food and Humanity";journal;"29498244";"Elsevier B.V.";No;No;0,593;Q2;19;485;456;33953;1931;456;4,23;70,01;42,97;3;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Food Science (Q2)";"Agricultural and Biological Sciences" +9992;28225;"Journal of Nursing Care Quality";journal;"10573631, 15505065";"Lippincott Williams and Wilkins Ltd.";No;No;0,593;Q2;58;97;226;1843;400;215;1,67;19,00;74,80;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1986-1987, 1989-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +9993;19900192162;"Results in Physics";journal;"22113797";"Elsevier B.V.";Yes;No;0,593;Q2;121;426;2613;21289;10890;2569;4,32;49,97;27,47;0;Netherlands;Western Europe;"Elsevier B.V.";"2011-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +9994;21380;"Vox Sanguinis";journal;"14230410, 00429007";"Wiley-Blackwell Publishing Ltd";No;No;0,593;Q2;97;172;502;4274;810;439;1,49;24,85;51,12;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1952, 1954, 1956-2026";"Hematology (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +9995;21101064915;"Water Resources Protection";journal;"10046933";"";No;No;0,593;Q2;23;172;442;6113;1246;442;3,21;35,54;37,22;0;China;Asiatic Region;"";"2019-2026";"Environmental Engineering (Q2); Pollution (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2); Environmental Chemistry (Q3)";"Environmental Science" +9996;21100212125;"Nucleus (India)";journal;"09767975, 0029568X";"Springer";No;No;0,593;Q3;22;129;131;10318;517;125;2,07;79,98;39,43;0;India;Asiatic Region;"Springer";"2011-2026";"Cell Biology (Q3); Genetics (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology" +9997;6500153189;"British Journal for the History of Philosophy";journal;"09608788, 14693526";"Routledge";No;No;0,592;Q1;30;92;198;3135;195;168;0,71;34,08;34,94;0;United Kingdom;Western Europe;"Routledge";"1993-2026";"Philosophy (Q1)";"Arts and Humanities" +9998;145560;"Diachronica";journal;"01764225, 15699714";"John Benjamins Publishing Company";No;No;0,592;Q1;34;23;63;1410;90;54;1,14;61,30;37,04;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1984-2026";"Linguistics and Language (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +9999;26624;"Acta Astronomica";journal;"00015237";"Copernicus Foundation for Polish Astronomy";No;No;0,592;Q2;70;3;48;139;58;48;1,26;46,33;19,05;0;Poland;Eastern Europe;"Copernicus Foundation for Polish Astronomy";"1996-2025";"Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +10000;16800154722;"Advances in Developing Human Resources";journal;"15523055, 15234223";"SAGE Publications Inc.";No;No;0,592;Q2;67;10;54;415;169;42;2,39;41,50;61,54;0;United States;Northern America;"SAGE Publications Inc.";"1999-2026";"Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +10001;19200156918;"Anales de Psicologia";journal;"16952294, 02129728";"Universidad de Murcia Servicio de Publicaciones";Yes;No;0,592;Q2;50;34;156;2109;359;156;2,03;62,03;58,82;0;Spain;Western Europe;"Universidad de Murcia Servicio de Publicaciones";"2008-2026";"Psychology (miscellaneous) (Q2)";"Psychology" +10002;13648;"Current Opinion in Otolaryngology and Head and Neck Surgery";journal;"15316998, 10689508";"Lippincott Williams and Wilkins";No;No;0,592;Q2;85;67;217;2636;405;201;1,60;39,34;39,86;0;United States;Northern America;"Lippincott Williams and Wilkins";"1995-2026";"Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Surgery (Q2)";"Medicine" +10003;21100886221;"Evaluation Journal of Australasia";journal;"1035719X, 25159372";"SAGE Publications Ltd";No;No;0,592;Q2;16;23;62;631;54;41;0,73;27,43;76,19;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2003, 2005-2026";"Development (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10004;13719;"Experimental Heat Transfer";journal;"15210480, 08916152";"Taylor and Francis Ltd.";No;No;0,592;Q2;46;58;168;2455;526;168;3,37;42,33;18,99;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987, 1989-2026";"Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Instrumentation (Q2)";"Engineering; Physics and Astronomy" +10005;19129;"International Journal of Plant Sciences";journal;"15375315, 10585893";"University of Chicago Press";No;No;0,592;Q2;103;45;150;3001;256;149;1,55;66,69;45,11;0;United States;Northern America;"University of Chicago Press";"1983-1984, 1992-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +10006;16099;"Marine Biotechnology";journal;"14362236, 14362228";"Springer";No;No;0,592;Q2;101;164;293;9898;898;287;2,79;60,35;37,25;0;United States;Northern America;"Springer";"1999-2026";"Aquatic Science (Q2); Biotechnology (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +10007;71741;"Renewable Agriculture and Food Systems";journal;"17421713, 17421705";"Cambridge University Press";Yes;No;0,592;Q2;76;32;164;2325;504;162;2,78;72,66;48,61;0;United Kingdom;Western Europe;"Cambridge University Press";"2004-2026";"Agronomy and Crop Science (Q2); Food Science (Q2)";"Agricultural and Biological Sciences" +10008;24470;"Childhood";journal;"09075682, 14617013";"SAGE Publications Ltd";No;No;0,591;Q1;81;50;105;2505;317;94;2,42;50,10;72,73;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1993-1994, 1996-2026";"Anthropology (Q1); Cultural Studies (Q1); Developmental and Educational Psychology (Q2); Sociology and Political Science (Q2); Life-span and Life-course Studies (Q3)";"Psychology; Social Sciences" +10009;69955;"Contributions to Zoology";journal;"13834517, 18759866";"Brill Academic Publishers";Yes;No;0,591;Q1;42;18;44;1239;82;44;1,90;68,83;47,25;0;Netherlands;Western Europe;"Brill Academic Publishers";"1994, 1996-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10010;28570;"Journal of Physics D: Applied Physics";journal;"00223727, 13616463";"Institute of Physics";No;No;0,591;Q1;250;1082;2810;58838;9401;2803;3,25;54,38;27,87;0;United Kingdom;Western Europe;"Institute of Physics";"1967-2025";"Acoustics and Ultrasonics (Q1); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Surfaces, Coatings and Films (Q2)";"Materials Science; Physics and Astronomy" +10011;21101109914;"Virtual Economics";journal;"26574047";"";Yes;Yes;0,591;Q1;30;10;60;633;299;60;4,70;63,30;21,74;0;United Kingdom;Western Europe;"";"2019-2025";"Cultural Studies (Q1); Business and International Management (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Health (social science) (Q2); Management Information Systems (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +10012;21101044229;"Annals of Joint";journal;"24156809";"AME Publishing Company";No;No;0,591;Q2;13;42;145;2511;294;130;1,82;59,79;26,47;0;China;Asiatic Region;"AME Publishing Company";"2017-2026";"Orthopedics and Sports Medicine (Q2)";"Medicine" +10013;22006;"Aquatic Geochemistry";journal;"13806165, 15731421";"Springer Netherlands";No;No;0,591;Q2;67;6;34;400;71;33;1,67;66,67;44,44;0;Netherlands;Western Europe;"Springer Netherlands";"1995-2026";"Geochemistry and Petrology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +10014;24714;"Bioacoustics";journal;"09524622, 21650586";"Taylor and Francis Ltd.";No;No;0,591;Q2;43;36;110;2655;254;110;2,31;73,75;32,06;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10015;28199;"Biomarkers";journal;"13665804, 1354750X";"Taylor and Francis Ltd.";No;No;0,591;Q2;78;54;210;2824;512;206;2,18;52,30;50,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Medicine (miscellaneous) (Q2); Biochemistry (Q3); Clinical Biochemistry (Q3); Health, Toxicology and Mutagenesis (Q3)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine" +10016;21101255657;"Biomaterial Investigations in Dentistry";journal;"26415275";"Medical Journals Sweden AB";Yes;Yes;0,591;Q2;19;40;52;1551;147;52;2,66;38,78;49,65;0;Sweden;Western Europe;"Medical Journals Sweden AB";"2019-2026";"Dentistry (miscellaneous) (Q2); Biomaterials (Q3)";"Dentistry; Materials Science" +10017;27639;"Cartography and Geographic Information Science";journal;"15230406";"Taylor and Francis Ltd.";No;No;0,591;Q2;73;75;118;4590;427;114;3,71;61,20;36,70;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Civil and Structural Engineering (Q2); Geography, Planning and Development (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Engineering; Social Sciences" +10018;21101059924;"IET Energy Systems Integration";journal;"25168401";"John Wiley and Sons Ltd";Yes;No;0,591;Q2;24;27;137;988;376;132;2,72;36,59;28,57;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2019-2026";"Energy Engineering and Power Technology (Q2); Engineering (miscellaneous) (Q2); Environmental Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q2)";"Energy; Engineering; Environmental Science" +10019;21100844181;"International Journal of Tourism Cities";journal;"20565615, 20565607";"Emerald Group Publishing Ltd.";No;No;0,591;Q2;41;0;225;0;1071;218;4,59;0,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2015-2024";"Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Environmental Science; Social Sciences" +10020;16297;"Journal of Infrastructure Systems";journal;"10760342, 1943555X";"American Society of Civil Engineers (ASCE)";No;No;0,591;Q2;85;56;169;2964;579;164;3,76;52,93;24,86;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1995-2026";"Civil and Structural Engineering (Q2)";"Engineering" +10021;4700152821;"Journal of Research in Childhood Education";journal;"02568543, 21502641";"Routledge";No;No;0,591;Q2;44;113;134;7123;320;131;2,09;63,04;78,41;1;United Kingdom;Western Europe;"Routledge";"1986-2026";"Developmental and Educational Psychology (Q2); Education (Q2)";"Psychology; Social Sciences" +10022;21100855510;"Journal of Transportation Engineering Part B: Pavements";journal;"25735438";"American Society of Civil Engineers (ASCE)";No;No;0,591;Q2;29;70;199;3089;611;197;3,26;44,13;30,29;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"2017-2026";"Civil and Structural Engineering (Q2); Transportation (Q2)";"Engineering; Social Sciences" +10023;19700175077;"Local and Regional Anesthesia";journal;"11787112";"Dove Medical Press Ltd";Yes;No;0,591;Q2;33;16;45;431;96;45;1,91;26,94;36,59;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +10024;21100838145;"Machines";journal;"20751702";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,591;Q2;55;1152;3271;50534;11889;3241;3,74;43,87;24,50;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Computer Science (miscellaneous) (Q2); Control and Optimization (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)";"Computer Science; Engineering; Mathematics" +10025;18964;"Molecular Genetics and Genomics";journal;"16174615, 16174623";"Springer Science and Business Media Deutschland GmbH";No;No;0,591;Q2;141;110;357;6815;859;357;2,32;61,95;46,81;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1994, 1996-1997, 2000-2026";"Medicine (miscellaneous) (Q2); Genetics (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10026;18039;"Yantu Gongcheng Xuebao/Chinese Journal of Geotechnical Engineering";journal;"10004548";"Chinese Society of Civil Engineering";No;No;0,591;Q2;70;343;1076;7750;2088;1074;1,86;22,59;27,07;0;China;Asiatic Region;"Chinese Society of Civil Engineering";"1998, 2001-2025";"Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +10027;19217;"BioControl";journal;"13866141, 15738248";"Springer Nature";No;No;0,590;Q1;89;80;165;3871;459;162;2,64;48,39;38,62;0;Netherlands;Western Europe;"Springer Nature";"1998-2026";"Insect Science (Q1); Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +10028;21101133616;"Dairy";journal;"2624862X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,590;Q1;22;72;169;4395;617;167;3,28;61,04;43,80;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Veterinary (miscellaneous) (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Veterinary" +10029;21101173090;"International Journal of Community Well-Being";journal;"25245309, 25245295";"Springer Nature";No;No;0,590;Q1;20;48;93;2624;241;86;3,35;54,67;39,55;0;Switzerland;Western Europe;"Springer Nature";"2018-2026";"Social Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q2); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +10030;21101041869;"BMJ Open Science";journal;"23988703";"BMJ Publishing Group";Yes;No;0,590;Q2;16;0;9;0;23;9;0,00;0,00;0,00;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2017-2022";"Medicine (miscellaneous) (Q2)";"Medicine" +10031;12891;"Color Research and Application";journal;"15206378, 03612317";"John Wiley & Sons Inc.";No;No;0,590;Q2;77;50;216;1989;527;208;2,50;39,78;41,04;0;United States;Northern America;"John Wiley & Sons Inc.";"1976-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Human Factors and Ergonomics (Q2)";"Chemical Engineering; Chemistry; Social Sciences" +10032;12818;"Dynamics of Atmospheres and Oceans";journal;"03770265";"Elsevier B.V.";No;No;0,590;Q2;59;76;144;4412;311;144;2,11;58,05;28,81;0;Netherlands;Western Europe;"Elsevier B.V.";"1976-2026";"Computers in Earth Sciences (Q2); Geology (Q2); Oceanography (Q2); Atmospheric Science (Q3)";"Earth and Planetary Sciences" +10033;21101169079;"Eng";journal;"26734117";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,590;Q2;25;373;402;19705;1639;395;4,22;52,83;24,21;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2026";"Chemical Engineering (miscellaneous) (Q2); Engineering (miscellaneous) (Q2)";"Chemical Engineering; Engineering" +10034;18094;"Flora: Morphology, Distribution, Functional Ecology of Plants";journal;"03672530";"Elsevier GmbH";No;No;0,590;Q2;74;139;408;9439;948;406;2,33;67,91;45,99;0;Germany;Western Europe;"Elsevier GmbH";"1975-1976, 1978, 1980-1988, 1990-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10035;22234;"Hereditas";journal;"16015223, 00180661";"BioMed Central Ltd";Yes;No;0,590;Q2;58;236;140;10891;332;136;2,24;46,15;44,36;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1920-2026";"Medicine (miscellaneous) (Q2); Genetics (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10036;25615;"International Journal of Oral and Maxillofacial Implants";journal;"08822786, 19424434";"Quintessence Publishing Co. Inc.";No;No;0,590;Q2;164;89;384;2255;779;372;1,94;25,34;31,18;0;United States;Northern America;"Quintessence Publishing Co. Inc.";"1986-2026";"Medicine (miscellaneous) (Q2); Oral Surgery (Q2)";"Dentistry; Medicine" +10037;29831;"International Journal of Social Welfare";journal;"14682397, 13696866";"Wiley-Blackwell Publishing Ltd";No;No;0,590;Q2;66;99;163;6420;388;153;2,26;64,85;51,63;8;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Social Work (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10038;21101178759;"Journal of Participation and Employee Ownership";journal;"2514765X, 25147641";"Emerald Publishing";No;No;0,590;Q2;10;13;35;537;113;31;3,46;41,31;25,00;0;United Kingdom;Western Europe;"Emerald Publishing";"2018-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +10039;21100904921;"Limnological Review";journal;"23007575, 16425952";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,590;Q2;10;54;53;3323;181;51;3,67;61,54;47,17;0;Poland;Eastern Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2018-2025";"Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10040;21101178250;"Marine Origin Petroleum Geology";journal;"16729854";"";No;No;0,590;Q2;17;25;125;766;203;125;1,63;30,64;31,17;0;China;Asiatic Region;"";"2019-2025";"Geochemistry and Petrology (Q2); Geology (Q2); Geophysics (Q2); Stratigraphy (Q2)";"Earth and Planetary Sciences" +10041;21101152520;"Robotic Intelligence and Automation";journal;"27546977, 27546969";"Emerald Publishing";No;No;0,590;Q2;56;65;189;2498;588;188;3,76;38,43;27,84;0;United Kingdom;Western Europe;"Emerald Publishing";"2023-2026";"Artificial Intelligence (Q2); Computer Science Applications (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Human-Computer Interaction (Q3)";"Computer Science; Engineering" +10042;29075;"Cambridge Quarterly of Healthcare Ethics";journal;"09631801, 14692147";"Cambridge University Press";No;No;0,589;Q1;47;66;205;2591;445;180;2,26;39,26;51,89;0;United States;Northern America;"Cambridge University Press";"1992-2025";"Philosophy (Q1); Health Policy (Q2); Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2)";"Arts and Humanities; Medicine; Nursing; Social Sciences" +10043;27067;"Human Nature";journal;"19364776, 10456767";"Springer New York";No;No;0,589;Q1;88;25;66;2375;142;66;1,91;95,00;39,33;0;United States;Northern America;"Springer New York";"1990-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Sociology and Political Science (Q2)";"Agricultural and Biological Sciences; Arts and Humanities; Social Sciences" +10044;14045;"Psychology, Public Policy, and Law";journal;"10768971, 19391528";"American Psychological Association";No;No;0,589;Q1;84;29;110;2102;272;109;1,84;72,48;73,12;0;United States;Northern America;"American Psychological Association";"1995-2025";"Law (Q1); Social Psychology (Q2); Sociology and Political Science (Q2)";"Psychology; Social Sciences" +10045;21100908534;"Tapuya: Latin American Science, Technology and Society";journal;"25729861";"Routledge";Yes;Yes;0,589;Q1;18;25;116;1039;172;92;0,89;41,56;44,83;0;United States;Northern America;"Routledge";"2018-2025";"Multidisciplinary (Q1); Social Sciences (miscellaneous) (Q1)";"Multidisciplinary; Social Sciences" +10046;18400156719;"Chinese Management Studies";journal;"1750614X";"Emerald Group Publishing Ltd.";No;No;0,589;Q2;43;153;212;12226;740;210;3,36;79,91;47,91;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007-2026";"Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting" +10047;25800;"Communications in Algebra";journal;"00927872, 15324125";"Taylor and Francis Ltd.";No;No;0,589;Q2;75;431;1155;8582;927;1154;0,76;19,91;27,41;0;United States;Northern America;"Taylor and Francis Ltd.";"1974-2026";"Algebra and Number Theory (Q2)";"Mathematics" +10048;32631;"Corrosion Reviews";journal;"03346005, 21910316";"Walter de Gruyter GmbH";No;No;0,589;Q2;55;35;135;3260;558;130;4,52;93,14;23,72;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1979, 1981-1982, 1984, 1987-1990, 1992-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Chemical Engineering; Chemistry; Materials Science" +10049;13844;"Documenta Ophthalmologica";journal;"15732622, 00124486";"Springer Science and Business Media Deutschland GmbH";No;No;0,589;Q2;67;63;141;1635;366;124;1,76;25,95;48,55;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1938, 1948-1951, 1954-2026";"Ophthalmology (Q2); Physiology (medical) (Q3); Sensory Systems (Q3)";"Medicine; Neuroscience" +10050;13878;"European Journal of Mechanics, B/Fluids";journal;"09977546";"Elsevier B.V.";No;No;0,589;Q2;88;153;359;6858;1033;355;2,63;44,82;21,14;0;Netherlands;Western Europe;"Elsevier B.V.";"1990-1992, 1995-2026";"Mathematical Physics (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Mathematics; Physics and Astronomy" +10051;28476;"Graphs and Combinatorics";journal;"14355914, 09110119";"Springer Japan";No;No;0,589;Q2;47;131;450;2341;339;450;0,72;17,87;33,23;0;Japan;Asiatic Region;"Springer Japan";"1985-2026";"Discrete Mathematics and Combinatorics (Q2); Theoretical Computer Science (Q2)";"Mathematics" +10052;17368;"IEEE Transactions on Nuclear Science";journal;"15581578, 00189499";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,589;Q2;144;483;919;15853;2327;902;2,51;32,82;22,82;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-2026";"Electrical and Electronic Engineering (Q2); Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2)";"Energy; Engineering; Physics and Astronomy" +10053;19600166304;"Journal of Community Genetics";journal;"1868310X, 18686001";"Springer Science and Business Media Deutschland GmbH";No;No;0,589;Q2;43;86;192;3214;421;186;2,12;37,37;64,75;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2010-2026";"Public Health, Environmental and Occupational Health (Q2); Epidemiology (Q3); Genetics (clinical) (Q3)";"Medicine" +10054;21100829270;"Journal of Medical Imaging";journal;"23294310, 23294302";"SPIE";No;No;0,589;Q2;59;139;398;5598;890;382;2,32;40,27;32,91;0;United States;Northern America;"SPIE";"2014-2025";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +10055;25058;"Journal of the Mathematical Society of Japan";journal;"18811167, 00255645";"Mathematical Society of Japan";No;No;0,589;Q2;42;43;130;1081;96;130;0,64;25,14;16,88;0;Japan;Asiatic Region;"Mathematical Society of Japan";"1948-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +10056;21092;"Mechanics Based Design of Structures and Machines";journal;"15397742, 15397734";"Taylor and Francis Ltd.";No;No;0,589;Q2;59;590;995;29690;4070;995;4,02;50,32;20,05;0;United States;Northern America;"Taylor and Francis Ltd.";"2003-2026";"Aerospace Engineering (Q2); Automotive Engineering (Q2); Civil and Structural Engineering (Q2); Condensed Matter Physics (Q2); Mathematics (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Ocean Engineering (Q2)";"Engineering; Mathematics; Physics and Astronomy" +10057;5800228220;"Optimization Letters";journal;"18624472, 18624480";"Springer Verlag";No;No;0,589;Q2;60;128;390;3510;649;387;1,58;27,42;24,07;0;Germany;Western Europe;"Springer Verlag";"2007-2026";"Business, Management and Accounting (miscellaneous) (Q2); Control and Optimization (Q2)";"Business, Management and Accounting; Mathematics" +10058;21101140115;"Sleep Epidemiology";journal;"26673436";"Elsevier B.V.";Yes;No;0,589;Q2;11;22;78;1014;172;77;1,43;46,09;45,10;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Epidemiology (Q2); Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2); Biological Psychiatry (Q3); Neurology (Q3)";"Medicine; Neuroscience" +10059;5700164234;"Theory and Research in Education";journal;"17413192, 14778785";"SAGE Publications Ltd";No;No;0,589;Q2;44;23;67;979;141;64;1,88;42,57;46,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2003-2025";"Education (Q2)";"Social Sciences" +10060;5800169269;"Chinese Journal of International Law";journal;"15401650, 17469937";"Oxford University Press";No;No;0,588;Q1;29;27;85;3171;85;60;1,07;117,44;41,94;0;United Kingdom;Western Europe;"Oxford University Press";"2008-2025";"Law (Q1); Political Science and International Relations (Q2)";"Social Sciences" +10061;21100773804;"Ecologica Montenegrina";journal;"23370173, 23369744";"Institute for Biodiversity and Ecology";Yes;No;0,588;Q1;22;183;456;7251;661;446;1,62;39,62;32,19;0;Montenegro;Eastern Europe;"Institute for Biodiversity and Ecology";"2014-2026";"Animal Science and Zoology (Q1); Insect Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +10062;21100899440;"Forensic Sciences Research";journal;"24711411, 20961790";"Chinese Laser Press";Yes;Yes;0,588;Q1;38;50;191;2547;410;182;2,03;50,94;36,64;1;United Kingdom;Western Europe;"Chinese Laser Press";"2016-2025";"Anthropology (Q1); Analytical Chemistry (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Physical and Theoretical Chemistry (Q2); Psychiatry and Mental Health (Q2)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Social Sciences" +10063;4000151701;"Italian Journal of Animal Science";journal;"1828051X, 15944077";"Taylor and Francis Ltd.";Yes;No;0,588;Q1;62;212;430;12078;1317;428;2,77;56,97;44,69;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +10064;21101066154;"Nawpa Pacha";journal;"00776297, 20516207";"Taylor and Francis Ltd.";No;No;0,588;Q1;7;16;29;1229;31;29;1,11;76,81;37,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +10065;15324;"Theory and Psychology";journal;"14617447, 09593543";"SAGE Publications Ltd";No;No;0,588;Q1;73;45;154;3151;310;147;1,97;70,02;32,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991-2026";"History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Psychology" +10066;22670;"Aerosol Science and Technology";journal;"15217388, 02786826";"Elsevier Inc.";No;No;0,588;Q2;133;118;268;6324;633;249;2,42;53,59;31,07;3;United States;Northern America;"Elsevier Inc.";"1981-2026";"Materials Science (miscellaneous) (Q2); Pollution (Q2); Environmental Chemistry (Q3)";"Environmental Science; Materials Science" +10067;21100829708;"Annales de l'Institut Henri Poincare (D) Combinatorics, Physics and their Interactions";journal;"23085835, 23085827";"European Mathematical Society Publishing House";Yes;Yes;0,588;Q2;17;20;50;667;75;50;1,70;33,35;15,00;0;Germany;Western Europe;"European Mathematical Society Publishing House";"2014-2025";"Algebra and Number Theory (Q2); Discrete Mathematics and Combinatorics (Q2); Geometry and Topology (Q2); Statistical and Nonlinear Physics (Q2); Statistics and Probability (Q2)";"Mathematics; Physics and Astronomy" +10068;21100238613;"Digital Education Review";journal;"20139144";"Universitat de Barcelona";Yes;Yes;0,588;Q2;29;30;78;1364;247;76;3,61;45,47;45,07;0;Spain;Western Europe;"Universitat de Barcelona";"2010-2025";"Computer Science Applications (Q2); Education (Q2)";"Computer Science; Social Sciences" +10069;26887;"Drying Technology";journal;"15322300, 07373937";"Taylor and Francis Ltd.";No;No;0,588;Q2;123;184;631;7557;2246;602;3,32;41,07;33,06;0;United States;Northern America;"Taylor and Francis Ltd.";"1983, 1985-2026";"Chemical Engineering (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2)";"Chemical Engineering; Chemistry" +10070;12762;"Fisheries Management and Ecology";journal;"0969997X, 13652400";"Wiley-Blackwell Publishing Ltd";No;No;0,588;Q2;72;111;197;8297;496;193;2,33;74,75;26,42;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-2026";"Aquatic Science (Q2); Ecology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10071;144616;"Journal of Health Organization and Management";journal;"14777266";"Emerald Publishing";No;No;0,588;Q2;57;194;199;13316;640;198;3,28;68,64;48,62;0;United Kingdom;Western Europe;"Emerald Publishing";"2003-2026";"Business, Management and Accounting (miscellaneous) (Q2); Health Policy (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Medicine" +10072;5400152711;"Journal of Marine Science and Application";journal;"19935048, 16719433";"Harbin Engineering University";No;No;0,588;Q2;35;164;202;8511;644;199;3,18;51,90;25,82;0;China;Asiatic Region;"Harbin Engineering University";"2007-2026";"Mechanical Engineering (Q2); Ocean Engineering (Q2)";"Engineering" +10073;13034;"JVC/Journal of Vibration and Control";journal;"10775463, 17412986";"SAGE Publications Inc.";No;No;0,588;Q2;94;787;1096;27938;3876;1093;3,43;35,50;24,12;0;United States;Northern America;"SAGE Publications Inc.";"1995-2026";"Aerospace Engineering (Q2); Automotive Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +10074;144934;"Portuguese Economic Journal";journal;"16179838, 1617982X";"";No;No;0,588;Q2;23;22;59;953;156;55;2,59;43,32;27,66;2;Germany;Western Europe;"";"2005-2026";"Economics and Econometrics (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +10075;21100466462;"Revista Iberoamericana de Psicologia y Salud";journal;"21712069, 19899246";"Consejo General de la Psicologia de Espana";Yes;No;0,588;Q2;20;10;30;641;102;30;3,95;64,10;55,88;0;Spain;Western Europe;"Consejo General de la Psicologia de Espana";"2015-2026";"Psychology (miscellaneous) (Q2)";"Psychology" +10076;26104;"Proceedings - International Conference on Distributed Computing Systems";conference and proceedings;"25758411, 10636927";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,588;-;109;106;437;4044;927;429;1,73;38,15;27,13;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1982, 1984, 1986-2025";"Computer Networks and Communications; Hardware and Architecture; Software";"Computer Science" +10077;5600153515;"Asian Studies Review";journal;"10357823, 14678403";"Taylor and Francis Ltd.";No;No;0,587;Q1;43;55;125;3326;261;122;2,14;60,47;45,12;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1970, 1990-2026";"Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +10078;19700182329;"City, Culture and Society";journal;"18779174, 18779166";"Elsevier Ltd";No;No;0,587;Q1;50;37;86;2182;244;82;2,93;58,97;60,26;0;United Kingdom;Western Europe;"Elsevier Ltd";"2010-2026";"Social Sciences (miscellaneous) (Q1); Urban Studies (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Social Sciences" +10079;19700170839;"Journal of Human Rights Practice";journal;"17579619, 17579627";"Oxford University Press";No;No;0,587;Q1;30;52;173;3057;385;171;2,32;58,79;62,50;7;United Kingdom;Western Europe;"Oxford University Press";"2009-2026";"History (Q1); Law (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +10080;21100332423;"APSIPA Transactions on Signal and Information Processing";journal;"20487703";"Now Publishers Inc";Yes;No;0,587;Q2;32;54;149;2749;510;138;2,27;50,91;22,67;0;United States;Northern America;"Now Publishers Inc";"2012-2025";"Information Systems (Q2); Signal Processing (Q2)";"Computer Science" +10081;21100456160;"Clinical Epidemiology and Global Health";journal;"22133984";"Elsevier B.V.";Yes;No;0,587;Q2;43;307;796;9321;1780;750;2,17;30,36;46,28;1;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2); Epidemiology (Q3); Microbiology (medical) (Q3)";"Medicine" +10082;18202;"Eurasip Journal on Wireless Communications and Networking";journal;"16871499, 16871472";"SpringerOpen";Yes;No;0,587;Q2;82;103;284;3723;973;280;3,65;36,15;29,52;0;United Kingdom;Western Europe;"SpringerOpen";"2004-2026";"Computer Networks and Communications (Q2); Computer Science Applications (Q2); Signal Processing (Q2)";"Computer Science" +10083;4000148806;"GAIA - Ecological Perspectives for Science and Society";journal;"26255413, 09405550";"Oekom - Gesellschaft fuer Oekologische Kommunikation mbH";No;No;0,587;Q2;45;62;207;989;292;177;1,46;15,95;50,81;0;Germany;Western Europe;"Oekom - Gesellschaft fuer Oekologische Kommunikation mbH";"2005-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Environmental Science" +10084;23831;"Journal of Cardiothoracic and Vascular Anesthesia";journal;"10530770, 15328422";"W.B. Saunders";No;No;0,587;Q2;103;552;1698;17141;2851;1138;1,60;31,05;34,25;1;United States;Northern America;"W.B. Saunders";"1991-2026";"Anesthesiology and Pain Medicine (Q2); Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +10085;16255;"Journal of Civil Engineering and Management";journal;"18223605, 13923730";"Vilnius Gediminas Technical University";Yes;No;0,587;Q2;70;51;145;3566;564;144;3,68;69,92;30,17;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2002-2026";"Civil and Structural Engineering (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Engineering" +10086;21100390411;"Journal of Hospitality and Tourism Education";journal;"23256540, 10963758";"Taylor and Francis Ltd.";No;No;0,587;Q2;38;87;89;5031;323;76;3,88;57,83;47,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2013, 2015-2026";"Education (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +10087;17700155806;"Nonlinear Analysis: Modelling and Control";journal;"23358963, 13925113";"Vilnius University Press";Yes;Yes;0,587;Q2;48;63;184;1867;453;184;2,32;29,63;31,29;0;Lithuania;Eastern Europe;"Vilnius University Press";"2005, 2009-2026";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +10088;5700164350;"Social Theory and Health";journal;"14778211, 1477822X";"Palgrave Macmillan Ltd.";No;No;0,587;Q2;45;30;65;1876;160;65;2,60;62,53;46,55;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2003-2026";"Health (social science) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10089;22299;"Therapeutic Drug Monitoring";journal;"15363694, 01634356";"Lippincott Williams and Wilkins";No;No;0,587;Q2;108;149;325;5765;825;296;2,33;38,69;45,98;0;United States;Northern America;"Lippincott Williams and Wilkins";"1979-2026";"Pharmacology (medical) (Q2); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +10090;12798;"Perceptual and Motor Skills";journal;"1558688X, 00315125";"SAGE Publications Inc.";No;No;0,587;Q3;86;140;356;7208;941;355;2,55;51,49;34,83;0;United States;Northern America;"SAGE Publications Inc.";"1960-2026";"Experimental and Cognitive Psychology (Q3); Sensory Systems (Q3)";"Neuroscience; Psychology" +10091;130153;"Sleep and Biological Rhythms";journal;"14469235, 14798425";"Springer";No;No;0,587;Q3;44;59;195;1810;364;163;1,68;30,68;41,22;1;Japan;Asiatic Region;"Springer";"2003-2026";"Neurology (Q3); Neuropsychology and Physiological Psychology (Q3); Physiology (Q3); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience; Psychology" +10092;21101339712;"Architecture, Structures and Construction";journal;"27309894, 27309886";"Springer Nature";No;No;0,586;Q1;11;64;94;3066;335;90;5,80;47,91;38,55;0;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Architecture (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +10093;20600195631;"Asian Herpetological Research";journal;"20950357";"Science Press";No;No;0,586;Q1;24;32;80;1997;158;76;2,07;62,41;35,33;0;China;Asiatic Region;"Science Press";"2011-2025";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +10094;21101077280;"Frontiers in Political Science";journal;"26733145";"Frontiers Media SA";Yes;No;0,586;Q1;28;329;497;21345;1092;450;1,85;64,88;37,15;7;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Safety Research (Q1); Political Science and International Relations (Q2); Public Administration (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10095;21101063730;"IET Smart Cities";journal;"26317680";"John Wiley and Sons Inc";Yes;No;0,586;Q1;24;21;73;1163;320;68;4,40;55,38;27,78;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2019-2026";"Urban Studies (Q1); Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Software (Q2)";"Computer Science; Engineering; Social Sciences" +10096;25818;"International Journal of Refugee Law";journal;"14643715, 09538186";"Oxford University Press";No;No;0,586;Q1;47;20;73;2332;142;68;1,42;116,60;44,44;3;United Kingdom;Western Europe;"Oxford University Press";"1989-2025";"Law (Q1); Demography (Q2); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +10097;24660;"Bulletin of the American Mathematical Society";journal;"02730979, 10889485";"American Mathematical Society";Yes;No;0,586;Q2;71;21;75;1338;111;74;1,38;63,71;11,76;0;United States;Northern America;"American Mathematical Society";"1891-2026";"Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics" +10098;29666;"EMA - Emergency Medicine Australasia";journal;"17426731, 17426723";"John Wiley and Sons Inc";No;No;0,586;Q2;69;247;563;4751;811;437;1,37;19,23;50,06;1;United States;Northern America;"John Wiley and Sons Inc";"2004-2026";"Emergency Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +10099;25869;"Geochemistry: Exploration, Environment, Analysis";journal;"14677873";"Geological Society of London";No;No;0,586;Q2;54;26;92;1895;160;89;2,02;72,88;28,40;0;United Kingdom;Western Europe;"Geological Society of London";"2001-2026";"Chemistry (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Geochemistry and Petrology (Q2)";"Chemistry; Earth and Planetary Sciences; Environmental Science" +10100;19700170065;"Journal of Asian Public Policy";journal;"17516242, 17516234";"Routledge";No;No;0,586;Q2;26;89;115;5371;363;113;2,36;60,35;42,06;2;United Kingdom;Western Europe;"Routledge";"2010-2026";"Public Administration (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10101;22560;"Journal of Fish Biology";journal;"00221112, 10958649";"Wiley-Blackwell Publishing Ltd";No;No;0,586;Q2;138;487;948;29677;2147;921;2,09;60,94;36,18;8;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1969-2026";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10102;21100228034;"Journal of Student Affairs Research and Practice";journal;"19496591, 19496605";"Taylor and Francis Ltd.";No;No;0,586;Q2;32;43;137;2071;220;136;1,56;48,16;61,17;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Education (Q2)";"Social Sciences" +10103;21100830703;"Lubricants";journal;"20754442";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,586;Q2;54;554;1363;24789;5317;1345;3,89;44,75;28,24;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Mechanical Engineering (Q2); Surfaces, Coatings and Films (Q2)";"Engineering; Materials Science" +10104;12498;"Neoplasma";journal;"13384317, 00282685";"AEPress, s.r.o.";No;No;0,586;Q2;62;28;266;0;583;265;2,28;0,00;50,29;0;Slovakia;Eastern Europe;"AEPress, s.r.o.";"1957-2025";"Medicine (miscellaneous) (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10105;20526;"Pediatric Cardiology";journal;"01720643, 14321971";"Springer";No;No;0,586;Q2;90;521;706;12817;1268;668;1,80;24,60;45,31;0;United States;Northern America;"Springer";"1979-1980, 1982-2026";"Cardiology and Cardiovascular Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +10106;21100799933;"SLAS Technology";journal;"24726311, 24726303";"Elsevier B.V.";Yes;No;0,586;Q2;41;128;217;4258;807;197;3,93;33,27;39,55;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Computer Science Applications (Q2); Medical Laboratory Technology (Q2)";"Computer Science; Health Professions" +10107;21100389313;"Transactions on Emerging Telecommunications Technologies";journal;"21613915, 21615748";"John Wiley and Sons Ltd";No;No;0,586;Q2;74;266;820;11133;3073;804;3,89;41,85;30,39;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +10108;14762;"Weather";trade journal;"14778696, 00431656";"Wiley-Blackwell";No;No;0,586;Q3;52;99;236;1592;275;160;1,18;16,08;34,83;2;United States;Northern America;"Wiley-Blackwell";"1946-2026";"Atmospheric Science (Q3)";"Earth and Planetary Sciences" +10109;28566;"American Journal of Occupational Therapy";journal;"19437676, 02729490";"American Occupational Therapy Association, Inc";No;No;0,585;Q1;106;152;511;5674;1017;495;1,97;37,33;72,59;1;United States;Northern America;"American Occupational Therapy Association, Inc";"1947-2026";"Occupational Therapy (Q1); Medicine (miscellaneous) (Q2)";"Health Professions; Medicine" +10110;21101150780;"Frontiers in Dental Medicine";journal;"26734915";"Frontiers Media SA";Yes;No;0,585;Q1;18;153;219;6591;534;192;2,51;43,08;47,18;1;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Dental Hygiene (Q1); Dental Assisting (Q2); Dentistry (miscellaneous) (Q2); Periodontics (Q2)";"Dentistry" +10111;21101140113;"Human Factors in Healthcare";journal;"27725014";"Elsevier Inc.";Yes;No;0,585;Q1;9;27;66;1257;221;66;1,89;46,56;58,70;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Health Professions (miscellaneous) (Q1); Human Factors and Ergonomics (Q2)";"Health Professions; Social Sciences" +10112;23053;"Journal of Natural Products";journal;"01633864, 15206025";"American Chemical Society";No;No;0,585;Q1;173;305;879;7037;3102;869;3,54;23,07;37,83;0;United States;Northern America;"American Chemical Society";"1949, 1971, 1973, 1978-2026";"Complementary and Alternative Medicine (Q1); Analytical Chemistry (Q2); Drug Discovery (Q2); Organic Chemistry (Q2); Pharmaceutical Science (Q2); Molecular Medicine (Q3); Pharmacology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +10113;21100876927;"Oeno One";journal;"24941271";"International Viticulture and Enology Society";Yes;Yes;0,585;Q1;51;94;283;4930;848;283;3,08;52,45;44,99;0;France;Western Europe;"International Viticulture and Enology Society";"2016-2026";"Horticulture (Q1); Food Science (Q2)";"Agricultural and Biological Sciences" +10114;23716;"Science, Technology and Society";journal;"09730796, 09717218";"Sage Publications India Pvt. Ltd";No;No;0,585;Q1;33;38;102;2005;304;97;2,47;52,76;32,86;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1996-2004, 2006-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +10115;21100202159;"BioMedicine (Taiwan)";journal;"22118020, 22118039";"China Medical University";Yes;Yes;0,585;Q2;38;27;81;1242;228;80;3,00;46,00;42,57;0;Taiwan;Asiatic Region;"China Medical University";"2011-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10116;79372;"Bulletin of the Brazilian Mathematical Society";journal;"16787714, 16787544";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,585;Q2;32;63;178;1627;152;178;0,89;25,83;16,26;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996, 1998, 2000, 2002-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +10117;20293;"Ecological Management and Restoration";journal;"14427001, 14428903";"Wiley-Blackwell Publishing Ltd";No;No;0,585;Q2;55;27;86;1572;177;78;1,72;58,22;44,96;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2000-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10118;21101242421;"Emergency Management Science and Technology";journal;"2832448X";"Maximum Academic Press";Yes;No;0,585;Q2;12;26;70;1065;285;70;4,76;40,96;47,15;0;United States;Northern America;"Maximum Academic Press";"2021-2025";"Safety, Risk, Reliability and Quality (Q2)";"Engineering" +10119;21100239241;"Geophysical Prospecting for Petroleum";journal;"10001441";"Science Press";No;No;0,585;Q2;20;102;307;2788;477;307;1,38;27,33;29,34;0;China;Asiatic Region;"Science Press";"2013-2015, 2019-2026";"Computers in Earth Sciences (Q2); Geochemistry and Petrology (Q2); Geology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +10120;18958;"IETE Technical Review (Institution of Electronics and Telecommunication Engineers, India)";journal;"02564602, 09745971";"Taylor and Francis Ltd.";Yes;No;0,585;Q2;52;54;236;2725;895;218;2,87;50,46;26,23;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-1989, 1993-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +10121;29583;"Journal of Aircraft";journal;"00218669, 15333868";"American Institute of Aeronautics and Astronautics Inc. (AIAA)";No;No;0,585;Q2;119;145;373;5538;1023;347;2,77;38,19;16,24;0;United States;Northern America;"American Institute of Aeronautics and Astronautics Inc. (AIAA)";"1964-2025";"Aerospace Engineering (Q2)";"Engineering" +10122;21101045272;"Journal of Applied and Numerical Optimization";journal;"25625535, 25625527";"Biemdas Academic Publishers";No;No;0,585;Q2;13;16;77;400;94;72;1,27;25,00;20,00;0;Canada;Northern America;"Biemdas Academic Publishers";"2019-2025";"Computational Mathematics (Q2); Control and Optimization (Q2); Modeling and Simulation (Q2); Numerical Analysis (Q2)";"Mathematics" +10123;23880;"Journal of Interventional Cardiology";journal;"08964327, 15408183";"John Wiley and Sons Inc";Yes;No;0,585;Q2;62;39;143;1098;291;143;1,43;28,15;26,91;0;China;Asiatic Region;"John Wiley and Sons Inc";"1988-2026";"Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +10124;19700183009;"Journal of Ophthalmic and Vision Research";journal;"2008322X, 20082010";"Knowledge E";Yes;No;0,585;Q2;48;54;206;1868;319;184;1,39;34,59;38,24;0;Iran;Middle East;"Knowledge E";"2006-2026";"Ophthalmology (Q2)";"Medicine" +10125;22300;"Journal of the Society of Laparoscopic and Robotic Surgeons";journal;"19383797, 10868089";"Society of Laparoscopic and Robotic Surgeons";Yes;No;0,585;Q2;68;86;115;2156;250;111;2,07;25,07;35,45;0;United States;Northern America;"Society of Laparoscopic and Robotic Surgeons";"1997-2026";"Surgery (Q2)";"Medicine" +10126;144622;"Medicina Oral Patologia Oral y Cirugia Bucal";journal;"16986946, 16984447";"Medicina Oral S.L.";Yes;No;0,585;Q2;81;109;262;3130;662;261;2,44;28,72;44,20;1;Spain;Western Europe;"Medicina Oral S.L.";"2004-2026";"Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Surgery (Q2)";"Dentistry; Medicine" +10127;21100905834;"One Ecosystem";journal;"23678194";"Pensoft Publishers";Yes;No;0,585;Q2;26;26;75;1714;167;74;2,00;65,92;49,26;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2016-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +10128;14004;"Palaios";journal;"08831351, 19385323";"SEPM Society for Sedimentary Geology";No;No;0,585;Q2;94;27;112;2222;217;112;1,81;82,30;30,28;0;United States;Northern America;"SEPM Society for Sedimentary Geology";"1986-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Paleontology (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +10129;13689;"Plasma Chemistry and Plasma Processing";journal;"02724324, 15728986";"Springer New York";No;No;0,585;Q2;89;94;299;5086;1100;296;3,68;54,11;25,19;0;United States;Northern America;"Springer New York";"1981-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Surfaces, Coatings and Films (Q2)";"Chemical Engineering; Chemistry; Materials Science; Physics and Astronomy" +10130;21100453533;"International Journal of Breast Cancer";journal;"20903170, 20903189";"John Wiley and Sons Ltd";Yes;No;0,585;Q3;27;24;53;849;154;53;1,97;35,38;50,77;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Cancer Research (Q3); Oncology (Q3); Pharmacology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10131;21101140412;"Plateau Meteorology";journal;"10000534";"Science China Press";Yes;No;0,585;Q3;19;123;401;5077;834;401;2,06;41,28;47,27;0;China;Asiatic Region;"Science China Press";"2019-2026";"Atmospheric Science (Q3)";"Earth and Planetary Sciences" +10132;17127;"Adult Education Quarterly";journal;"07417136, 15523047";"SAGE Publications Ltd";No;No;0,584;Q2;63;21;62;1075;174;58;2,54;51,19;57,14;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1950-2026";"Education (Q2); E-learning (Q2)";"Social Sciences" +10133;21100853739;"Aerospace";journal;"22264310";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,584;Q2;61;1115;2936;46481;8775;2925;2,83;41,69;25,99;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2014-2026";"Aerospace Engineering (Q2)";"Engineering" +10134;5300152719;"Biotechnologia";journal;"08607796, 23539461";"Termedia Publishing House Ltd.";Yes;Yes;0,584;Q2;24;30;91;2090;367;89;3,39;69,67;55,06;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2007-2025";"Biotechnology (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +10135;13777;"Clinical and Experimental Optometry";journal;"14440938, 08164622";"Taylor and Francis Ltd.";No;No;0,584;Q2;79;249;429;8205;745;383;1,66;32,95;47,84;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2026";"Ophthalmology (Q2); Optometry (Q2)";"Health Professions; Medicine" +10136;21100873619;"European Journal of Translational Myology";journal;"20377460, 20377452";"Page Press Publications";Yes;No;0,584;Q2;22;57;221;2108;502;219;2,01;36,98;45,35;0;Italy;Western Europe;"Page Press Publications";"2018-2025";"Orthopedics and Sports Medicine (Q2); Cell Biology (Q3); Molecular Biology (Q3); Neurology (clinical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10137;21101262337;"Frontiers in Food Science and Technology";journal;"26741121";"Frontiers Media SA";Yes;No;0,584;Q2;14;51;141;3188;508;132;3,67;62,51;47,14;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biotechnology (Q2); Engineering (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Engineering" +10138;29770;"Hand Clinics";journal;"15581969, 07490712";"W.B. Saunders";No;No;0,584;Q2;73;59;190;2426;267;163;1,33;41,12;23,00;0;United States;Northern America;"W.B. Saunders";"1985-2026";"Orthopedics and Sports Medicine (Q2); Surgery (Q2)";"Medicine" +10139;20574;"Journal of Contingencies and Crisis Management";journal;"14685973, 09660879";"Wiley-Blackwell Publishing Ltd";No;No;0,584;Q2;76;92;265;5777;911;264;3,38;62,79;48,48;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1993-2026";"Management Information Systems (Q2); Management, Monitoring, Policy and Law (Q2)";"Business, Management and Accounting; Environmental Science" +10140;14200154729;"Journal of Dietary Supplements";journal;"19390211, 1939022X";"Informa Healthcare";No;No;0,584;Q2;47;49;152;3152;425;148;2,87;64,33;44,20;1;United States;Northern America;"Informa Healthcare";"2008-2026";"Food Science (Q2); Nutrition and Dietetics (Q3); Pharmacology (medical) (Q3)";"Agricultural and Biological Sciences; Medicine; Nursing" +10141;15400154800;"Journal of Gastrointestinal Cancer";journal;"19416636, 19416628";"Springer";No;No;0,584;Q2;56;241;481;9594;971;470;2,05;39,81;36,38;1;United States;Northern America;"Springer";"2007-2026";"Gastroenterology (Q2); Oncology (Q3)";"Medicine" +10142;19700189500;"Journal of Optics (United Kingdom)";journal;"20408986, 20408978";"Institute of Physics Publishing";No;No;0,584;Q2;119;241;658;11601;1652;658;2,34;48,14;32,04;0;United Kingdom;Western Europe;"Institute of Physics Publishing";"2010-2025";"Atomic and Molecular Physics, and Optics (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Materials Science; Physics and Astronomy" +10143;29079;"Particle and Particle Systems Characterization";journal;"15214117, 09340866";"Wiley-VCH Verlag";No;No;0,584;Q2;75;85;242;5658;851;242;3,15;66,56;36,77;0;Germany;Western Europe;"Wiley-VCH Verlag";"1984-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +10144;19600163400;"Social Work";journal;"15456846, 00378046";"Oxford University Press";No;No;0,584;Q2;88;42;138;1297;354;101;2,65;30,88;69,70;0;United States;Northern America;"Oxford University Press";"1956-2026";"Medicine (miscellaneous) (Q2); Sociology and Political Science (Q2); Social Work (Q3)";"Medicine; Social Sciences" +10145;5800170461;"South African Journal of International Affairs";journal;"10220461, 19380275";"Routledge";No;No;0,584;Q2;28;27;83;710;234;80;2,82;26,30;38,89;0;United Kingdom;Western Europe;"Routledge";"1993-2025";"Political Science and International Relations (Q2)";"Social Sciences" +10146;29318;"Anti-Cancer Agents in Medicinal Chemistry";journal;"18715206, 18755992";"Bentham Science Publishers";No;No;0,584;Q3;117;189;612;14135;2011;588;2,76;74,79;45,17;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Cancer Research (Q3); Molecular Medicine (Q3); Pharmacology (Q3)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +10147;19700181322;"International Journal of Architectural Heritage";journal;"15583066, 15583058";"Routledge";No;No;0,583;Q1;58;272;313;12911;985;311;3,24;47,47;35,42;2;United States;Northern America;"Routledge";"2007-2026";"Architecture (Q1); Conservation (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Engineering" +10148;21101081523;"Journal of Library Science in China";journal;"10018867";"Editorial Office of Journal of Library Science in China";No;No;0,583;Q1;13;41;161;1449;238;161;1,52;35,34;43,62;0;China;Asiatic Region;"Editorial Office of Journal of Library Science in China";"2019-2025";"Library and Information Sciences (Q1)";"Social Sciences" +10149;17123;"Journal of the American Veterinary Medical Association";journal;"00031488, 1943569X";"American Veterinary Medical Association";No;No;0,583;Q1;144;407;1280;5325;1724;1047;1,42;13,08;61,11;1;United States;Northern America;"American Veterinary Medical Association";"1945-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +10150;26623;"Alternatives";journal;"21633150, 03043754";"SAGE Publications Inc.";No;No;0,583;Q2;53;68;64;4879;160;59;2,29;71,75;35,29;3;United States;Northern America;"SAGE Publications Inc.";"1975-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10151;145428;"Canadian Journal of Emergency Medicine";journal;"14818035, 14818043";"Springer Nature";No;No;0,583;Q2;60;229;544;2845;553;282;0,91;12,42;47,42;2;Switzerland;Western Europe;"Springer Nature";"1999-2026";"Emergency Medicine (Q2)";"Medicine" +10152;40750;"Clinical Nuclear Medicine";journal;"03639762, 15360229";"Lippincott Williams and Wilkins";No;No;0,583;Q2;76;625;1698;9537;2641;1589;1,66;15,26;39,55;0;United States;Northern America;"Lippincott Williams and Wilkins";"1978-2026";"Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +10153;21100358106;"IEEE Power Electronics Magazine";trade journal;"23299215, 23299207";"IEEE Power Electronics Society";No;No;0,583;Q2;38;80;186;629;319;166;1,66;7,86;28,57;0;United States;Northern America;"IEEE Power Electronics Society";"2014-2025";"Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2)";"Energy; Engineering" +10154;21100217226;"Journal of Diabetes and Metabolic Disorders";journal;"22516581";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,583;Q2;53;291;586;14718;1394;572;2,15;50,58;47,63;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2012-2026";"Internal Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +10155;21100385811;"Journal of Indian Business Research";journal;"17554195, 17554209";"Emerald Group Publishing Ltd.";No;No;0,583;Q2;35;15;78;998;320;73;4,18;66,53;29,17;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2025";"Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting" +10156;28501;"Journal of Mathematical Imaging and Vision";journal;"09249907, 15737683";"Springer Netherlands";No;No;0,583;Q2;86;62;159;2864;373;155;2,32;46,19;22,16;0;Netherlands;Western Europe;"Springer Netherlands";"1992-2026";"Applied Mathematics (Q2); Computer Vision and Pattern Recognition (Q2); Condensed Matter Physics (Q2); Geometry and Topology (Q2); Modeling and Simulation (Q2); Statistics and Probability (Q2)";"Computer Science; Mathematics; Physics and Astronomy" +10157;13958;"Marine Micropaleontology";journal;"03778398";"Elsevier B.V.";No;No;0,583;Q2;109;56;174;5389;335;172;1,83;96,23;47,84;0;Netherlands;Western Europe;"Elsevier B.V.";"1976-2026";"Oceanography (Q2); Paleontology (Q2)";"Earth and Planetary Sciences" +10158;21100229176;"Micromachines";journal;"2072666X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,583;Q2;109;1413;6017;66329;22986;5895;3,72;46,94;30,51;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +10159;12956;"Organisms Diversity and Evolution";journal;"14396092, 16181077";"Springer Science and Business Media Deutschland GmbH";No;No;0,583;Q2;58;31;137;2092;237;137;1,70;67,48;30,61;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2001-2026";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10160;21100824459;"Perspectives in Clinical Research";journal;"22293485, 22295488";"Wolters Kluwer Medknow Publications";Yes;Yes;0,583;Q2;28;33;128;623;353;116;3,31;18,88;49,35;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2017-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +10161;19318;"Group Decision and Negotiation";journal;"09262644, 15729907";"Springer Netherlands";No;No;0,582;Q1;75;49;147;2721;507;142;2,92;55,53;35,71;0;Netherlands;Western Europe;"Springer Netherlands";"1992-2026";"Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Decision Sciences (miscellaneous) (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Arts and Humanities; Business, Management and Accounting; Decision Sciences; Social Sciences" +10162;21100242603;"Journal of Place Management and Development";journal;"17538343, 17538335";"Emerald Group Publishing Ltd.";No;No;0,582;Q1;46;31;86;2138;317;85;3,75;68,97;64,20;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2026";"Urban Studies (Q1); Business and International Management (Q2); Geography, Planning and Development (Q2); Marketing (Q2); Strategy and Management (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +10163;15713;"Asian Survey";journal;"00044687, 1533838X";"University of California Press";No;No;0,582;Q2;59;34;143;1407;260;140;1,97;41,38;32,00;0;United States;Northern America;"University of California Press";"1970-2026";"Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10164;11300153402;"Biomarkers in Medicine";journal;"17520363, 17520371";"Taylor and Francis Ltd.";No;No;0,582;Q2;62;143;315;5797;677;307;1,99;40,54;40,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Biochemistry (medical) (Q2); Drug Discovery (Q2); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +10165;25786;"Bioorganic and Medicinal Chemistry";journal;"14643391, 09680896";"Elsevier Ltd";No;No;0,582;Q2;198;294;870;16543;2905;865;3,52;56,27;40,34;0;United Kingdom;Western Europe;"Elsevier Ltd";"1993-2026";"Drug Discovery (Q2); Organic Chemistry (Q2); Pharmaceutical Science (Q2); Biochemistry (Q3); Clinical Biochemistry (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +10166;21101170302;"C-Journal of Carbon Research";journal;"23115629";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,582;Q2;23;93;307;5404;1275;303;4,63;58,11;36,34;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2019, 2022-2025";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +10167;25242;"Comments on Inorganic Chemistry";journal;"02603594, 15489574";"Taylor and Francis Ltd.";No;No;0,582;Q2;50;27;41;3831;158;23;3,62;141,89;27,37;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2012, 2014-2026";"Inorganic Chemistry (Q2)";"Chemistry" +10168;10700153303;"Dynamics of Partial Differential Equations";journal;"1548159X, 21637873";"International Press, Inc.";Yes;No;0,582;Q2;25;12;51;313;51;51;1,18;26,08;41,67;0;United States;Northern America;"International Press, Inc.";"2007-2026";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +10169;19400158708;"Entertainment Computing";journal;"18759521";"Elsevier B.V.";No;No;0,582;Q2;47;304;276;14218;1150;273;3,74;46,77;35,84;1;Netherlands;Western Europe;"Elsevier B.V.";"2009-2026";"Computer Science Applications (Q2); Software (Q2); Human-Computer Interaction (Q3)";"Computer Science" +10170;12916;"E-Polymers";journal;"16187229";"Walter de Gruyter GmbH";Yes;No;0,582;Q2;46;35;244;1273;896;244;3,01;36,37;38,30;0;France;Western Europe;"Walter de Gruyter GmbH";"2001-2026";"Chemical Engineering (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2); Polymers and Plastics (Q2)";"Chemical Engineering; Chemistry; Materials Science" +10171;21100409130;"Frontiers of Information Technology and Electronic Engineering";journal;"20959230, 20959184";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,582;Q2;58;171;389;7887;1298;352;3,81;46,12;34,17;0;China;Asiatic Region;"Institute of Electrical and Electronics Engineers Inc.";"2015-2025";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Signal Processing (Q2)";"Computer Science; Engineering" +10172;14246;"Group Dynamics";journal;"10892699, 19307802";"American Psychological Association";No;No;0,582;Q2;83;14;52;683;113;52;1,31;48,79;47,46;1;United States;Northern America;"American Psychological Association";"1997-2025";"Social Psychology (Q2); Applied Psychology (Q3)";"Psychology" +10173;12307;"Jinshu Xuebao/Acta Metallurgica Sinica";journal;"04121961";"Chinese Academy of Sciences";No;No;0,582;Q2;54;155;431;6797;1229;429;2,65;43,85;29,94;0;China;Asiatic Region;"Chinese Academy of Sciences";"1978-1991, 1996-2026";"Geotechnical Engineering and Engineering Geology (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)";"Earth and Planetary Sciences; Engineering; Materials Science" +10174;15450;"Journal of Contemporary Psychotherapy";journal;"15733564, 00220116";"Springer";No;No;0,582;Q2;48;55;115;2147;237;110;1,87;39,04;55,49;1;United States;Northern America;"Springer";"1968-1982, 1984-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +10175;15900154757;"Journal of Earthquake and Tsunami";journal;"17937116, 17934311";"World Scientific";No;No;0,582;Q2;29;40;106;2004;320;104;3,36;50,10;24,63;0;Singapore;Asiatic Region;"World Scientific";"2008-2026";"Geophysics (Q2); Geotechnical Engineering and Engineering Geology (Q2); Oceanography (Q2)";"Earth and Planetary Sciences" +10176;12255;"Journal of Orthopaedic Surgery";journal;"10225536, 23094990";"SAGE Publications Inc.";Yes;No;0,582;Q2;55;97;296;2743;616;277;1,76;28,28;27,04;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1993-2026";"Surgery (Q2)";"Medicine" +10177;15526;"Measurement Science and Technology";journal;"09570233, 13616501";"IOP Publishing Ltd.";No;No;0,582;Q2;165;1903;3231;76408;12181;3206;3,86;40,15;29,51;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1990-2025";"Applied Mathematics (Q2); Engineering (miscellaneous) (Q2); Instrumentation (Q2)";"Engineering; Mathematics; Physics and Astronomy" +10178;15834;"Packaging Technology and Science";journal;"08943214, 10991522";"John Wiley and Sons Ltd";No;No;0,582;Q2;73;71;221;5074;1021;220;5,14;71,46;44,86;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1988-2026";"Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)";"Chemistry; Engineering; Materials Science" +10179;21100829991;"Psychology of Consciousness: Theory Research, and Practice";journal;"23265531, 23265523";"American Psychological Association";No;No;0,582;Q2;29;31;116;2430;225;115;1,68;78,39;43,40;0;United States;Northern America;"American Psychological Association";"2016-2025";"Clinical Psychology (Q2); Social Psychology (Q2); Experimental and Cognitive Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)";"Psychology" +10180;130096;"Taiwanese Journal of Obstetrics and Gynecology";journal;"10284559, 18756263";"Elsevier Ltd";Yes;Yes;0,582;Q2;54;260;664;4724;1187;523;1,81;18,17;45,16;0;United Kingdom;Western Europe;"Elsevier Ltd";"2004-2026";"Obstetrics and Gynecology (Q2)";"Medicine" +10181;21100911935;"Applied Animal Science";journal;"25902873, 25902865";"Elsevier Inc.";No;No;0,581;Q1;47;61;200;2077;362;198;1,86;34,05;39,27;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Animal Science and Zoology (Q1); Food Science (Q2)";"Agricultural and Biological Sciences" +10182;5600155020;"Communication Review";journal;"10714421, 15477487";"Routledge";No;No;0,581;Q2;39;20;56;1510;105;49;1,89;75,50;53,85;0;United Kingdom;Western Europe;"Routledge";"1995-2001, 2003-2026";"Communication (Q2)";"Social Sciences" +10183;19700200808;"Curriculum Journal";journal;"09585176, 14693704";"John Wiley and Sons Inc";No;No;0,581;Q2;53;84;136;3861;365;119;2,49;45,96;63,37;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1990-2026";"Education (Q2)";"Social Sciences" +10184;9500153949;"Dalton Transactions";journal;"14779226, 14779234";"Royal Society of Chemistry";Yes;No;0,581;Q2;226;1404;5688;84478;17573;5673;3,12;60,17;35,90;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2002-2026";"Inorganic Chemistry (Q2)";"Chemistry" +10185;21101249159;"Endocrines";journal;"2673396X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,581;Q2;13;55;165;3767;349;162;2,45;68,49;50,00;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10186;22105;"Evolutionary Biology";journal;"19342845, 00713260";"Springer";No;No;0,581;Q2;56;21;86;1632;157;85;1,88;77,71;38,27;0;United States;Northern America;"Springer";"1993, 1995, 2007-2026";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10187;20000195020;"Indian Journal of Psychological Medicine";journal;"02537176, 09751564";"SAGE Publications Ltd";Yes;Yes;0,581;Q2;50;245;461;7113;809;291;1,70;29,03;42,75;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)";"Medicine; Psychology" +10188;25194;"Journal of Applied Electrochemistry";journal;"15728838, 0021891X";"Springer Netherlands";No;No;0,581;Q2;135;223;520;11363;1906;520;3,86;50,96;34,85;0;Netherlands;Western Europe;"Springer Netherlands";"1971-2026";"Chemical Engineering (miscellaneous) (Q2); Materials Chemistry (Q2); Electrochemistry (Q3)";"Chemical Engineering; Chemistry; Materials Science" +10189;23839;"Journal of Business and Technical Communication";journal;"15524574, 10506519";"SAGE Publications Inc.";No;No;0,581;Q2;50;19;48;999;189;44;3,47;52,58;54,55;0;United States;Northern America;"SAGE Publications Inc.";"1987-2026";"Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Communication (Q2)";"Business, Management and Accounting; Social Sciences" +10190;20589;"Journal of Food Process Engineering";journal;"01458876, 17454530";"Wiley-Blackwell";No;No;0,581;Q2;73;276;876;16014;3615;870;3,84;58,02;35,08;1;United States;Northern America;"Wiley-Blackwell";"1977-2026";"Chemical Engineering (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Chemical Engineering" +10191;24417;"Journal of Geology";journal;"00221376, 15375269";"University of Chicago Press";No;No;0,581;Q2;122;0;48;0;80;48;1,09;0,00;0,00;0;United States;Northern America;"University of Chicago Press";"1973, 1976-1977, 1979-2023, 2026";"Geology (Q2)";"Earth and Planetary Sciences" +10192;21100399705;"Minerals";journal;"2075163X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,581;Q2;81;1322;4471;83417;13060;4401;2,80;63,10;32,96;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +10193;19124;"Queueing Systems";journal;"15729443, 02570130";"Springer Netherlands";No;No;0,581;Q2;61;30;208;830;160;97;1,05;27,67;33,33;0;Netherlands;Western Europe;"Springer Netherlands";"1986-2026";"Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Management Science and Operations Research (Q2); Statistics and Probability (Q2)";"Computer Science; Decision Sciences; Mathematics" +10194;21100239854;"San Francisco Estuary and Watershed Science";journal;"15462366";"eScholarship";Yes;Yes;0,581;Q2;28;22;58;2267;110;58;1,93;103,05;51,82;0;United States;Northern America;"eScholarship";"2011, 2013-2025";"Aquatic Science (Q2); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10195;5800179597;"Training and Education in Professional Psychology";journal;"19313918, 19313926";"American Psychological Association";No;No;0,581;Q2;46;22;134;813;236;133;1,43;36,95;59,56;0;United States;Northern America;"American Psychological Association";"2007-2025";"Education (Q2); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +10196;25390;"Turkish Journal of Gastroenterology";journal;"13004948, 21485607";"AVES";Yes;Yes;0,581;Q3;43;107;425;2827;763;381;1,95;26,42;30,82;0;Turkey;Middle East;"AVES";"1996-2026";"Gastroenterology (Q3)";"Medicine" +10197;21101018633;"Alpine Entomology";journal;"25350889";"Pensoft Publishers";Yes;No;0,580;Q1;9;13;49;584;52;49;1,33;44,92;40,82;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2017-2026";"Animal Science and Zoology (Q1); Insect Science (Q1); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10198;5700161189;"Culture and Organization";journal;"14772760, 14759551";"Routledge";No;No;0,580;Q1;29;49;107;3437;217;103;1,89;70,14;62,61;2;United Kingdom;Western Europe;"Routledge";"2009-2026";"Cultural Studies (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +10199;28524;"European Review of Economic History";journal;"13614916, 14740044";"Oxford University Press";No;No;0,580;Q1;47;21;81;1880;122;81;1,16;89,52;16,28;0;United Kingdom;Western Europe;"Oxford University Press";"1999, 2001-2026";"History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Arts and Humanities; Economics, Econometrics and Finance" +10200;21101136810;"Journal of Global Scholars of Marketing Science: Bridging Asia and the World";journal;"21639159, 21639167";"Taylor and Francis Ltd.";No;No;0,580;Q1;30;32;94;2297;360;93;3,90;71,78;30,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Marketing (Q2)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +10201;21101210874;"Journal of Ornithology";journal;"21937206, 21937192";"Springer Science and Business Media Deutschland GmbH";No;No;0,580;Q1;74;130;277;7266;496;275;1,76;55,89;33,63;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2003-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +10202;19700174630;"Journal of the Intensive Care Society";journal;"17511437";"SAGE Publications Inc.";No;No;0,580;Q1;32;73;227;1941;363;179;1,47;26,59;43,97;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2004, 2010-2026";"Critical Care Nursing (Q1); Critical Care and Intensive Care Medicine (Q2)";"Medicine; Nursing" +10203;17585;"Law and Social Inquiry";journal;"08976546, 17474469";"Cambridge University Press";No;No;0,580;Q1;68;59;223;5028;363;223;1,57;85,22;62,35;0;United States;Northern America;"Cambridge University Press";"1976-2026";"Law (Q1); Social Sciences (miscellaneous) (Q1)";"Social Sciences" +10204;19700187608;"Reflective Practice";journal;"14623943, 14701103";"Taylor and Francis Ltd.";No;No;0,580;Q1;42;89;156;4131;395;148;1,87;46,42;59,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003, 2009-2026";"Philosophy (Q1)";"Arts and Humanities" +10205;28728;"Anticancer Research";journal;"17917530, 02507005";"International Institute of Anticancer Research";No;No;0,580;Q2;145;530;1905;17283;3596;1900;1,87;32,61;25,97;0;Greece;Western Europe;"International Institute of Anticancer Research";"1981-2026";"Medicine (miscellaneous) (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10206;21100857207;"ASCE-ASME Journal of Risk and Uncertainty in Engineering Systems, Part A: Civil Engineering";journal;"23767642";"American Society of Civil Engineers (ASCE)";No;No;0,580;Q2;37;112;255;5688;777;250;3,02;50,79;27,18;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"2015-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering" +10207;21100378339;"Clinica y Salud";journal;"21740550, 11305274";"Colegio Oficial de la Psicologia de Madrid";Yes;Yes;0,580;Q2;21;16;53;756;106;53;1,83;47,25;59,72;0;Spain;Western Europe;"Colegio Oficial de la Psicologia de Madrid";"2013-2025";"Clinical Psychology (Q2)";"Psychology" +10208;38753;"Crop Science";journal;"14350653, 0011183X";"John Wiley & Sons Inc.";No;No;0,580;Q2;187;296;671;18068;1739;664;2,63;61,04;31,79;0;United States;Northern America;"John Wiley & Sons Inc.";"1961, 1963-1981, 1983-2026";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +10209;21100262587;"Differential and Integral Equations";journal;"08934983";"Khayyam Publishing";No;No;0,580;Q2;36;0;97;0;99;97;1,06;0,00;0,00;0;United States;Northern America;"Khayyam Publishing";"1988-1995, 2009-2014, 2016-2024";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +10210;21101256230;"Digital Finance";journal;"25246984, 25246186";"Springer International Publishing";No;No;0,580;Q2;15;41;69;2179;194;66;2,61;53,15;32,32;0;Switzerland;Western Europe;"Springer International Publishing";"2019-2026";"Computer Science Applications (Q2); Finance (Q2)";"Computer Science; Economics, Econometrics and Finance" +10211;14193;"Education Policy Analysis Archives";journal;"10682341";"Arizona State University";Yes;Yes;0,580;Q2;64;82;383;4728;679;382;1,59;57,66;60,41;1;United States;Northern America;"Arizona State University";"1996-2026";"Education (Q2)";"Social Sciences" +10212;21100899439;"European Journal of Behavior Analysis";journal;"2377729X";"Taylor and Francis Ltd.";No;No;0,580;Q2;23;8;35;408;40;34;0,83;51,00;57,14;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2025";"Education (Q2); Psychology (miscellaneous) (Q2)";"Psychology; Social Sciences" +10213;21100463109;"Geriatric Orthopaedic Surgery and Rehabilitation";journal;"21514593, 21514585";"SAGE Publications Inc.";Yes;No;0,580;Q2;42;60;187;2043;386;181;1,94;34,05;26,33;0;United States;Northern America;"SAGE Publications Inc.";"2010-2026";"Orthopedics and Sports Medicine (Q2); Rehabilitation (Q2); Surgery (Q2); Geriatrics and Gerontology (Q3)";"Medicine" +10214;21100938255;"HIV Research and Clinical Practice";journal;"25787470, 25787489";"Taylor and Francis Ltd.";Yes;No;0,580;Q2;57;29;65;1045;135;60;2,13;36,03;57,73;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2026";"Infectious Diseases (Q2); Pharmacology (medical) (Q3)";"Medicine" +10215;19900192607;"International Journal of Medical Education";journal;"20426372";"";Yes;No;0,580;Q2;47;28;93;0;222;79;1,71;0,00;50,85;0;United Kingdom;Western Europe;"";"2011-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +10216;25637;"International Journal of Prosthodontics";journal;"19424426, 08932174";"Quintessence Publishing Co. Inc.";No;No;0,580;Q2;113;88;347;3164;708;329;2,02;35,95;40,37;0;United States;Northern America;"Quintessence Publishing Co. Inc.";"1988-2026";"Medicine (miscellaneous) (Q2); Oral Surgery (Q2)";"Dentistry; Medicine" +10217;23965;"Journal of Operator Theory";journal;"18417744, 03794024";"Theta Foundation";No;No;0,580;Q2;44;44;126;1319;89;126;0,61;29,98;23,38;0;Romania;Eastern Europe;"Theta Foundation";"1996-1998, 2000-2025";"Algebra and Number Theory (Q2)";"Mathematics" +10218;26178;"Journal of Public Health Dentistry";journal;"00224006, 17527325";"John Wiley and Sons Inc";No;No;0,580;Q2;78;55;176;1783;359;173;1,81;32,42;54,59;0;United States;Northern America;"John Wiley and Sons Inc";"1941-2026";"Dentistry (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Dentistry; Medicine" +10219;21756;"Lasers in Surgery and Medicine";journal;"01968092, 10969101";"Wiley-Liss Inc.";Yes;No;0,580;Q2;135;97;329;2707;744;310;2,06;27,91;46,06;0;United States;Northern America;"Wiley-Liss Inc.";"1980-2026";"Dermatology (Q2); Surgery (Q2)";"Medicine" +10220;21101057933;"Personalized Medicine in Psychiatry";journal;"24681725, 24681717";"Elsevier Inc.";No;No;0,580;Q2;13;26;52;1469;97;50;1,89;56,50;49,21;0;United States;Northern America;"Elsevier Inc.";"2017-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q2); Neurology (clinical) (Q3)";"Medicine; Psychology" +10221;14600;"Review of Palaeobotany and Palynology";journal;"00346667";"Elsevier B.V.";No;No;0,580;Q2;97;119;395;10671;715;387;1,84;89,67;35,92;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Paleontology (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +10222;19600157918;"Waste and Biomass Valorization";journal;"1877265X, 18772641";"Springer Science and Business Media B.V.";No;No;0,580;Q2;86;680;1117;42000;4346;1116;3,84;61,76;38,85;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2010-2026";"Environmental Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q2); Waste Management and Disposal (Q2)";"Energy; Environmental Science" +10223;22075;"Current Genomics";journal;"13892029, 18755488";"Bentham Science Publishers";No;No;0,580;Q3;86;39;97;2698;265;89;3,21;69,18;51,35;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2000-2026";"Genetics (Q3); Genetics (clinical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10224;18022;"NeuroReport";journal;"09594965, 1473558X";"Lippincott Williams and Wilkins";No;No;0,580;Q3;210;119;364;4312;784;363;2,14;36,24;39,14;0;United States;Northern America;"Lippincott Williams and Wilkins";"1990-2026";"Neuroscience (miscellaneous) (Q3)";"Neuroscience" +10225;25589;"IEEE International Test Conference (TC)";conference and proceedings;"10893539";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,580;-;84;93;201;1587;294;196;1,29;17,06;19,45;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1989, 1992, 1995-2013, 2015-2025";"Applied Mathematics; Electrical and Electronic Engineering";"Engineering; Mathematics" +10226;19700177038;"Acta Entomologica Musei Nationalis Pragae";journal;"18046487, 03741036";"National Museum/Narodni muzeum";Yes;No;0,579;Q1;27;34;84;1142;81;81;0,83;33,59;20,99;0;Czech Republic;Eastern Europe;"National Museum/Narodni muzeum";"2005-2025";"Insect Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10227;20750;"European Journal of Law and Economics";journal;"09291261, 15729990";"Springer Netherlands";No;No;0,579;Q1;42;44;110;2391;213;106;1,93;54,34;20,51;3;Netherlands;Western Europe;"Springer Netherlands";"1994-2026";"Law (Q1); Business and International Management (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +10228;19690;"Geotechnical and Geological Engineering";journal;"09603182, 15731529";"Springer Netherlands";No;No;0,579;Q1;90;539;1065;26320;3160;1053;3,17;48,83;24,48;0;Netherlands;Western Europe;"Springer Netherlands";"1991-2026";"Architecture (Q1); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering" +10229;26809;"Identities";journal;"15473384, 1070289X";"Routledge";No;No;0,579;Q1;54;79;146;4162;382;138;2,07;52,68;66,67;0;United Kingdom;Western Europe;"Routledge";"1994-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1)";"Arts and Humanities; Social Sciences" +10230;21100871108;"Translational Animal Science";journal;"25732102";"Oxford University Press";Yes;No;0,579;Q1;37;163;490;6715;1049;490;2,03;41,20;41,28;1;India;Asiatic Region;"Oxford University Press";"2017-2026";"Animal Science and Zoology (Q1); Veterinary (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Veterinary" +10231;19900191624;"Utilitas";journal;"17416183, 09538208";"Cambridge University Press";No;No;0,579;Q1;34;26;79;1043;82;76;0,81;40,12;14,29;0;United Kingdom;Western Europe;"Cambridge University Press";"1989-2008, 2010-2026";"Philosophy (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +10232;16181;"International Journal of Psychiatry in Medicine";journal;"15413527, 00912174";"SAGE Publications Inc.";No;No;0,579;Q2;67;87;162;3087;293;141;2,04;35,48;49,55;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1973-1975, 1977-1978, 1980-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +10233;21100464902;"Journal of Environmental Studies and Sciences";journal;"21906491, 21906483";"Springer";No;No;0,579;Q2;45;117;177;7893;552;175;3,36;67,46;51,06;5;United States;Northern America;"Springer";"2011-2026";"Environmental Science (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Environmental Science; Social Sciences" +10234;21100854952;"Journal of Exercise Rehabilitation";journal;"2288176X, 22881778";"Korean Society of Exercise Rehabilitation";Yes;Yes;0,579;Q2;35;43;142;1081;290;126;1,86;25,14;33,65;0;South Korea;Asiatic Region;"Korean Society of Exercise Rehabilitation";"2016-2025";"Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Medicine" +10235;28441;"Journal of Geodynamics";journal;"02643707";"Elsevier Ltd";No;No;0,579;Q2;94;16;86;1554;159;83;1,86;97,13;23,08;0;United Kingdom;Western Europe;"Elsevier Ltd";"1984-1993, 1995-2026";"Earth-Surface Processes (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +10236;22812;"Operative Dentistry";journal;"03617734, 15592863";"Indiana University School of Dentistry";Yes;No;0,579;Q2;100;48;257;0;563;248;2,35;0,00;44,08;0;United States;Northern America;"Indiana University School of Dentistry";"1976-2026";"Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Dentistry; Medicine" +10237;21100921044;"Separations";journal;"22978739";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,579;Q2;47;340;1410;17898;5459;1374;3,84;52,64;45,59;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2026";"Analytical Chemistry (Q2); Filtration and Separation (Q3)";"Chemical Engineering; Chemistry" +10238;24532;"Spectrochimica Acta - Part B Atomic Spectroscopy";journal;"05848547";"Elsevier B.V.";No;No;0,579;Q2;139;163;483;6406;1715;478;3,48;39,30;33,82;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Analytical Chemistry (Q2); Atomic and Molecular Physics, and Optics (Q2); Instrumentation (Q2); Spectroscopy (Q2)";"Chemistry; Physics and Astronomy" +10239;21100447114;"Iranian Journal of Language Teaching Research";journal;"23221291";"Urmia University";Yes;Yes;0,578;Q1;24;18;79;976;206;71;3,06;54,22;34,15;0;Iran;Middle East;"Urmia University";"2013-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +10240;21100830759;"Journal of Insects as Food and Feed";journal;"23524588";"Brill Wageningen Academic";No;No;0,578;Q1;59;287;396;18662;1632;386;3,55;65,02;44,90;4;Netherlands;Western Europe;"Brill Wageningen Academic";"2015-2026";"Insect Science (Q1); Food Science (Q2)";"Agricultural and Biological Sciences" +10241;21101227950;"Journal of Molecular Pathology";journal;"26735261";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,578;Q1;11;33;92;2003;193;88;2,67;60,70;43,35;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Health Professions (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +10242;13000154735;"Language and Linguistics Compass";journal;"1749818X";"John Wiley and Sons Inc";No;No;0,578;Q1;70;21;59;1650;123;58;1,76;78,57;24,14;0;United States;Northern America;"John Wiley and Sons Inc";"2008-2026";"Linguistics and Language (Q1)";"Social Sciences" +10243;21101085533;"Socio-Ecological Practice Research";journal;"25245279, 25245287";"Springer";No;No;0,578;Q1;23;32;97;2165;267;85;2,57;67,66;52,50;0;Germany;Western Europe;"Springer";"2019-2026";"Urban Studies (Q1); Geography, Planning and Development (Q2); Nature and Landscape Conservation (Q2)";"Environmental Science; Social Sciences" +10244;21100204503;"Advances in Mental Health";journal;"18387357, 18374905";"Taylor and Francis Ltd.";No;No;0,578;Q2;29;72;95;3815;183;85;1,83;52,99;69,96;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Psychiatry and Mental Health (Q2)";"Medicine" +10245;15490;"Biotechnology and Genetic Engineering Reviews";journal;"02648725, 20465556";"Taylor and Francis Ltd.";No;No;0,578;Q2;54;0;334;0;1058;333;3,04;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-1994, 1996-2004, 2006-2010, 2012-2015, 2017-2024";"Biotechnology (Q2); Bioengineering (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +10246;21100901158;"EURO Journal on Decision Processes";journal;"21939446, 21939438";"Elsevier B.V.";Yes;No;0,578;Q2;23;5;39;239;115;36;3,17;47,80;27,27;0;Germany;Western Europe;"Elsevier B.V.";"2013-2026";"Applied Mathematics (Q2); Business, Management and Accounting (miscellaneous) (Q2); Computational Mathematics (Q2); Decision Sciences (miscellaneous) (Q2); Statistics and Probability (Q2)";"Business, Management and Accounting; Decision Sciences; Mathematics" +10247;15610;"Extremophiles";journal;"14310651, 14334909";"Springer";No;No;0,578;Q2;105;44;113;2851;300;112;2,34;64,80;41,87;0;Japan;Asiatic Region;"Springer";"1997-2026";"Medicine (miscellaneous) (Q2); Microbiology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +10248;23228;"Integral Equations and Operator Theory";journal;"14208989, 0378620X";"Springer International Publishing";No;No;0,578;Q2;55;31;105;812;95;105;0,89;26,19;11,86;0;Switzerland;Western Europe;"Springer International Publishing";"1978-2026";"Algebra and Number Theory (Q2); Analysis (Q2)";"Mathematics" +10249;19400157217;"International Journal of Plant Production";journal;"17358043, 17356814";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,578;Q2;43;63;145;3540;457;145;2,84;56,19;21,26;1;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2008-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +10250;21100466865;"JBJS Essential Surgical Techniques";journal;"21602204";"Lippincott Williams and Wilkins";No;No;0,578;Q2;24;14;81;137;154;79;1,91;9,79;10,61;0;United States;Northern America;"Lippincott Williams and Wilkins";"2013-2025";"Orthopedics and Sports Medicine (Q2); Surgery (Q2)";"Medicine" +10251;21101146379;"Journal of Geomechanics";journal;"10066616";"Chinese Academy of Geological Sciences Institute of Geomechanics";Yes;No;0,578;Q2;25;63;206;4614;435;202;2,04;73,24;34,09;0;China;Asiatic Region;"Chinese Academy of Geological Sciences Institute of Geomechanics";"2019-2025";"Geochemistry and Petrology (Q2); Geology (Q2); Geophysics (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +10252;4700152421;"Journal of Lesbian Studies";journal;"15403548, 10894160";"Routledge";No;No;0,578;Q2;44;54;109;1616;159;93;1,44;29,93;81,48;0;United States;Northern America;"Routledge";"1996-2026";"Gender Studies (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Social Sciences" +10253;21101162720;"Journal of Magnetic Resonance Open";journal;"26664410";"Elsevier Inc.";Yes;No;0,578;Q2;13;29;151;1187;303;147;2,21;40,93;32,54;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Analytical Chemistry (Q2); Electronic, Optical and Magnetic Materials (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Spectroscopy (Q2)";"Chemistry; Materials Science; Medicine" +10254;21100869482;"Research in Mathematical Sciences";journal;"21979847, 25220144";"SpringerOpen";Yes;No;0,578;Q2;25;96;185;2888;230;184;1,03;30,08;26,14;0;Switzerland;Western Europe;"SpringerOpen";"2014-2026";"Applied Mathematics (Q2); Computational Mathematics (Q2); Mathematics (miscellaneous) (Q2); Theoretical Computer Science (Q2)";"Mathematics" +10255;21100827834;"Sport Marketing Quarterly";journal;"15572528, 10616934";"Fitness Information Technology";No;No;0,578;Q2;18;12;71;909;153;71;1,85;75,75;22,58;0;United States;Northern America;"Fitness Information Technology";"2002, 2004, 2017-2018, 2020-2025";"Marketing (Q2); Strategy and Management (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting" +10256;28424;"Theory and Practice of Logic Programming";journal;"14753081, 14710684";"Cambridge University Press";No;No;0,578;Q2;54;42;130;1437;262;122;1,91;34,21;20,63;0;United Kingdom;Western Europe;"Cambridge University Press";"2001-2026";"Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Hardware and Architecture (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +10257;14224;"Arquivos de Neuro-Psiquiatria";journal;"16784227, 0004282X";"Associacao Arquivos de Neuro-Psiquiatria";Yes;Yes;0,578;Q3;63;192;540;5435;1023;471;1,67;28,31;46,42;0;Brazil;Latin America;"Associacao Arquivos de Neuro-Psiquiatria";"1945-1965, 1971-2026";"Biological Psychiatry (Q3); Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +10258;21101094481;"Journal of Photochemistry and Photobiology";journal;"26664690";"Elsevier B.V.";Yes;No;0,578;Q3;24;14;149;854;442;141;3,10;61,00;45,88;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Electrochemistry (Q3)";"Chemistry" +10259;21100840020;"Perspectives on Terrorism";journal;"23343745";"International Centre for Counter-Terrorism (ICCT)";Yes;Yes;0,577;Q1;27;21;111;3298;170;109;1,48;157,05;50,00;0;United States;Northern America;"International Centre for Counter-Terrorism (ICCT)";"2017-2025";"Law (Q1); Political Science and International Relations (Q2); Safety Research (Q2)";"Social Sciences" +10260;25728;"Aging Male";journal;"13685538, 14730790";"Taylor and Francis Ltd.";Yes;No;0,577;Q2;57;60;112;2323;277;100;2,65;38,72;37,97;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Medicine (miscellaneous) (Q2); Geriatrics and Gerontology (Q3)";"Medicine" +10261;28821;"Educational Theory";journal;"17415446, 00132004";"John Wiley and Sons Inc";No;No;0,577;Q2;56;52;144;577;229;118;1,58;11,10;37,10;0;United States;Northern America;"John Wiley and Sons Inc";"1951-2026";"Education (Q2)";"Social Sciences" +10262;21100826927;"Human Technology";journal;"17956889";"Centre of Sociological Research";Yes;Yes;0,577;Q2;23;31;77;1941;349;73;4,78;62,61;46,53;0;Finland;Western Europe;"Centre of Sociological Research";"2016-2025";"Communication (Q2); Social Psychology (Q2); Human-Computer Interaction (Q3)";"Computer Science; Psychology; Social Sciences" +10263;98012;"International Journal of Dairy Technology";journal;"14710307, 1364727X";"Wiley-Blackwell";No;No;0,577;Q2;74;115;290;5676;894;270;3,11;49,36;44,64;0;United States;Northern America;"Wiley-Blackwell";"1947-1995, 1997-1998, 2000-2026";"Food Science (Q2); Process Chemistry and Technology (Q2); Bioengineering (Q3)";"Agricultural and Biological Sciences; Chemical Engineering" +10264;21100385809;"International Journal of Quality and Service Sciences";journal;"1756669X, 17566703";"Emerald Group Publishing Ltd.";No;No;0,577;Q2;47;34;84;2560;425;82;3,87;75,29;29,11;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2026";"Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting" +10265;21101271431;"International Journal of Smart Grid";journal;"2602439X";"";No;No;0,577;Q2;16;14;67;589;194;67;2,74;42,07;11,90;0;Turkey;Middle East;"";"2021-2025";"Artificial Intelligence (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Energy (miscellaneous) (Q2); Information Systems and Management (Q2)";"Computer Science; Decision Sciences; Energy; Engineering" +10266;29852;"Journal of Accounting Education";journal;"07485751";"Elsevier B.V.";No;No;0,577;Q2;51;26;71;1075;228;70;3,40;41,35;50,00;0;United Kingdom;Western Europe;"Elsevier B.V.";"1983-2026";"Accounting (Q2); Education (Q2)";"Business, Management and Accounting; Social Sciences" +10267;21100834382;"Journal of Economic Structures";journal;"21932409";"SpringerOpen";Yes;No;0,577;Q2;36;22;82;1202;312;82;3,94;54,64;30,00;0;United Kingdom;Western Europe;"SpringerOpen";"2012-2026";"Economics and Econometrics (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +10268;12100154808;"Journal of Korean Neurosurgical Society";journal;"15987876, 20053711";"Korean Neurosurgical Society";Yes;No;0,577;Q2;55;79;278;2385;485;247;1,75;30,19;25,99;0;South Korea;Asiatic Region;"Korean Neurosurgical Society";"2008-2026";"Surgery (Q2); Neurology (clinical) (Q3); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience" +10269;27301;"Materials Technology";journal;"17535557, 10667857";"Maney Publishing";No;No;0,577;Q2;54;71;418;4086;1613;416;5,66;57,55;33,12;0;United Kingdom;Western Europe;"Maney Publishing";"1970-1971, 1973-1980, 1986, 1994-2026";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +10270;22863;"Political Quarterly";journal;"1467923X, 00323179";"Wiley-Blackwell Publishing Ltd";No;No;0,577;Q2;57;113;237;2077;443;196;1,46;18,38;25,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1930-2026";"Sociology and Political Science (Q2)";"Social Sciences" +10271;21100775078;"Qualitative Research in Financial Markets";journal;"17554187, 17554179";"Emerald Publishing";No;No;0,577;Q2;40;102;114;7641;666;113;6,45;74,91;37,21;0;United Kingdom;Western Europe;"Emerald Publishing";"2009-2026";"Economics and Econometrics (Q2); Finance (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +10272;21101052807;"Quaternary Sciences";journal;"10017410";"Science China Press";No;No;0,577;Q2;22;124;400;8269;720;399;1,78;66,69;38,58;0;China;Asiatic Region;"Science China Press";"2019-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Earth-Surface Processes (Q2)";"Earth and Planetary Sciences" +10273;21100817119;"Research in Number Theory";journal;"23639555";"SpringerOpen";Yes;No;0,577;Q2;13;103;273;2296;195;273;0,73;22,29;17,22;0;United Kingdom;Western Europe;"SpringerOpen";"2015-2026";"Algebra and Number Theory (Q2)";"Mathematics" +10274;21101043575;"Tec Empresarial";journal;"16592395, 16593359";"Business School, Instituto Tecnologico de Costa Rica";Yes;Yes;0,577;Q2;12;22;48;1514;162;48;2,67;68,82;57,58;0;Costa Rica;Latin America;"Business School, Instituto Tecnologico de Costa Rica";"2019-2026";"Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +10275;19900192026;"Journal of Cognitive Psychology";journal;"20445911, 2044592X";"";No;No;0,577;Q3;78;65;195;4196;327;193;1,66;64,55;55,12;0;United Kingdom;Western Europe;"";"2011-2026";"Experimental and Cognitive Psychology (Q3)";"Psychology" +10276;11800154594;"AStA Advances in Statistical Analysis";journal;"1863818X, 18638171";"Springer Verlag";No;No;0,576;Q1;36;40;100;1538;190;97;1,99;38,45;42,72;1;Germany;Western Europe;"Springer Verlag";"2008-2026";"Social Sciences (miscellaneous) (Q1); Analysis (Q2); Applied Mathematics (Q2); Economics and Econometrics (Q2); Modeling and Simulation (Q2); Statistics and Probability (Q2)";"Economics, Econometrics and Finance; Mathematics; Social Sciences" +10277;21101262340;"Frontiers in Horticulture";journal;"28133595";"Frontiers Media SA";Yes;No;0,576;Q1;10;37;83;2427;249;78;2,99;65,59;34,17;1;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Horticulture (Q1); Plant Science (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +10278;21101152733;"Legality: Jurnal Ilmiah Hukum";journal;"08546509, 25494600";"University of Muhammadiyah Malang";No;No;0,576;Q1;13;30;65;1707;206;65;3,64;56,90;29,23;0;Indonesia;Asiatic Region;"University of Muhammadiyah Malang";"2019-2025";"Law (Q1); Religious Studies (Q1); Social Sciences (miscellaneous) (Q1); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +10279;21101369927;"Narra X";journal;"29882990";"";No;No;0,576;Q1;7;22;33;974;105;33;3,18;44,27;34,29;0;Indonesia;Asiatic Region;"";"2023-2025";"Multidisciplinary (Q1)";"Multidisciplinary" +10280;5700172674;"Ratio";journal;"14679329, 00340006";"Wiley-Blackwell Publishing Ltd";No;No;0,576;Q1;42;32;91;1132;98;89;0,90;35,38;27,27;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1988-2026";"Philosophy (Q1)";"Arts and Humanities" +10281;21100201717;"Veterinary World";journal;"22310916, 09728988";"Veterinary World";Yes;No;0,576;Q1;63;366;1004;18187;3155;1004;2,82;49,69;43,96;3;India;Asiatic Region;"Veterinary World";"2008-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +10282;23760;"Acta Stomatologica Croatica";journal;"18460410, 00017019";"University of Zagreb";Yes;Yes;0,576;Q2;26;31;99;1154;233;99;2,06;37,23;59,18;0;Croatia;Eastern Europe;"University of Zagreb";"1966-1972, 1974-1975, 1980-1991, 2009-2025";"Dentistry (miscellaneous) (Q2)";"Dentistry" +10283;21100901154;"Advanced Manufacturing: Polymer and Composites Science";journal;"20550359";"Taylor and Francis Ltd.";Yes;No;0,576;Q2;29;16;33;790;140;33;4,00;49,38;25,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Electrical and Electronic Engineering (Q2); Management of Technology and Innovation (Q2); Polymers and Plastics (Q2)";"Business, Management and Accounting; Engineering; Materials Science" +10284;18800156711;"Advances in Mathematics of Communications";journal;"19305346, 19305338";"American Institute of Mathematical Sciences";No;No;0,576;Q2;31;97;254;2675;275;252;1,08;27,58;31,70;0;United States;Northern America;"American Institute of Mathematical Sciences";"2007-2026";"Algebra and Number Theory (Q2); Applied Mathematics (Q2); Computer Networks and Communications (Q2); Discrete Mathematics and Combinatorics (Q2)";"Computer Science; Mathematics" +10285;24122;"Alytes";journal;"07534973";"ISSCA";No;No;0,576;Q2;18;0;11;0;18;11;1,64;0,00;0,00;0;France;Western Europe;"ISSCA";"1993-1996, 2003-2009, 2011-2012, 2014-2016, 2020-2021, 2023-2024";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10286;21101041424;"Belitung Nursing Journal";journal;"24774073";"Belitung Raya Publisher - Belitung Raya Foundation";Yes;No;0,576;Q2;16;84;231;3620;548;230;2,49;43,10;67,32;0;Indonesia;Asiatic Region;"Belitung Raya Publisher - Belitung Raya Foundation";"2018-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +10287;22522;"Cardiology (Switzerland)";journal;"00086312, 14219751";"S. Karger AG";No;No;0,576;Q2;78;150;235;4930;376;186;1,55;32,87;37,29;0;Switzerland;Western Europe;"S. Karger AG";"1937-2026";"Cardiology and Cardiovascular Medicine (Q2); Pharmacology (medical) (Q3)";"Medicine" +10288;12966;"Chinese Journal of Physics";journal;"05779073";"Elsevier B.V.";Yes;No;0,576;Q2;74;478;1184;25667;5909;1183;5,49;53,70;30,39;0;Taiwan;Asiatic Region;"Elsevier B.V.";"1996-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +10289;4000148501;"Curriculum Inquiry";journal;"1467873X, 03626784";"Taylor and Francis Ltd.";No;No;0,576;Q2;57;14;86;870;190;64;0,94;62,14;62,96;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976-2026";"Education (Q2)";"Social Sciences" +10290;21322;"Flow, Turbulence and Combustion";journal;"13866184, 15731987";"";No;No;0,576;Q2;81;124;300;6385;686;293;2,35;51,49;13,38;0;Netherlands;Western Europe;"";"1996-2026";"Chemical Engineering (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Chemical Engineering; Chemistry; Physics and Astronomy" +10291;26961;"Geology Today";trade journal;"02666979, 13652451";"Wiley-Blackwell";No;No;0,576;Q2;23;30;77;290;94;64;0,65;9,67;6,06;0;United States;Northern America;"Wiley-Blackwell";"1985-2004, 2011-2026";"Earth-Surface Processes (Q2); Geology (Q2); Paleontology (Q2); Stratigraphy (Q2)";"Earth and Planetary Sciences" +10292;33835;"Ichnos";journal;"10420940, 15635236";"Taylor and Francis Ltd.";No;No;0,576;Q2;48;24;60;1553;135;57;2,46;64,71;19,70;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2026";"Paleontology (Q2)";"Earth and Planetary Sciences" +10293;17960;"International Journal of Adaptive Control and Signal Processing";journal;"08906327, 10991115";"John Wiley and Sons Ltd";No;No;0,576;Q2;87;190;531;8287;1976;529;4,32;43,62;29,93;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1987-2026";"Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q2)";"Computer Science; Engineering" +10294;16337;"Journal of Bioscience and Bioengineering";journal;"13474421, 13891723";"Elsevier B.V.";No;No;0,576;Q2;136;117;408;4450;1251;408;2,77;38,03;26,88;1;Netherlands;Western Europe;"Elsevier B.V.";"1991, 1993-1994, 1999-2026";"Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2); Bioengineering (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +10295;21100208308;"Journal of Chemistry";journal;"20909071, 20909063";"John Wiley and Sons Ltd";Yes;No;0,576;Q2;97;86;533;5011;2076;531;3,88;58,27;34,25;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Chemistry (miscellaneous) (Q2)";"Chemistry" +10296;21101133554;"JSES Reviews, Reports, and Techniques";journal;"26666391";"Elsevier Inc.";Yes;No;0,576;Q2;13;172;319;5512;569;319;1,68;32,05;16,88;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Orthopedics and Sports Medicine (Q2); Rehabilitation (Q2); Reviews and References (medical) (Q2); Surgery (Q2)";"Medicine" +10297;21100838131;"Processes";journal;"22279717";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,576;Q2;117;4078;9110;199373;35533;8944;3,85;48,89;34,20;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Chemical Engineering (miscellaneous) (Q2); Process Chemistry and Technology (Q2); Bioengineering (Q3)";"Chemical Engineering" +10298;24517;"Solid State Nuclear Magnetic Resonance";journal;"09262040, 15273326";"Elsevier B.V.";No;No;0,576;Q2;72;28;75;1890;158;73;1,64;67,50;26,06;0;Netherlands;Western Europe;"Elsevier B.V.";"1992-2026";"Chemistry (miscellaneous) (Q2); Instrumentation (Q2); Nuclear and High Energy Physics (Q2); Radiation (Q2)";"Chemistry; Physics and Astronomy" +10299;21100818511;"International Journal for Court Administration";journal;"21567964";"International Association for Court Administration";Yes;Yes;0,575;Q1;11;8;55;298;66;52;1,18;37,25;16,67;0;United States;Northern America;"International Association for Court Administration";"2016-2025";"Law (Q1)";"Social Sciences" +10300;4700151738;"Journal of Literacy Research";journal;"1086296X, 15548430";"SAGE Publications Inc.";No;No;0,575;Q1;62;25;76;1332;154;64;1,48;53,28;78,26;0;United States;Northern America;"SAGE Publications Inc.";"1969-1972, 1974-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +10301;13005;"Journal of Low Frequency Noise Vibration and Active Control";journal;"20484046, 14613484";"SAGE Publications Inc.";Yes;No;0,575;Q1;42;146;336;6171;1228;336;3,43;42,27;26,90;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1996-2026";"Acoustics and Ultrasonics (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2); Geophysics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Earth and Planetary Sciences; Engineering; Physics and Astronomy" +10302;23909;"Analyst";journal;"00032654, 13645528";"Royal Society of Chemistry";No;No;0,575;Q2;195;477;1839;25182;6537;1831;3,60;52,79;42,46;2;United Kingdom;Western Europe;"Royal Society of Chemistry";"1876-2026";"Analytical Chemistry (Q2); Spectroscopy (Q2); Biochemistry (Q3); Electrochemistry (Q3); Environmental Chemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Environmental Science" +10303;13300154705;"Electronic Materials Letters";journal;"17388090, 20936788";"Springer Netherlands";No;No;0,575;Q2;48;83;199;3526;571;199;3,14;42,48;34,19;0;South Korea;Asiatic Region;"Springer Netherlands";"2008-2026";"Electronic, Optical and Magnetic Materials (Q2)";"Materials Science" +10304;17388;"IEEE Transactions on Semiconductor Manufacturing";journal;"08946507, 15582345";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,575;Q2;87;105;236;2859;690;224;2,75;27,23;21,86;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1988-2026";"Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Industrial and Manufacturing Engineering (Q2)";"Engineering; Materials Science; Physics and Astronomy" +10305;19700175065;"Integrated Blood Pressure Control";journal;"11787104";"Dove Medical Press Ltd";Yes;No;0,575;Q2;32;0;30;0;64;25;1,80;0,00;0,00;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2024";"Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2)";"Medicine" +10306;18534;"International Journal for Numerical Methods in Fluids";journal;"10970363, 02712091";"John Wiley and Sons Ltd";No;No;0,575;Q2;135;89;247;3750;552;246;2,43;42,13;16,79;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1981-2026";"Applied Mathematics (Q2); Computational Mechanics (Q2); Computer Science Applications (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Computer Science; Engineering; Mathematics" +10307;19900191967;"Italian Journal of Agronomy";journal;"20396805, 11254718";"Elsevier B.V.";Yes;No;0,575;Q2;41;33;93;2289;273;88;3,25;69,36;39,09;1;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +10308;21100857954;"Journal of Daylighting";journal;"23838701";"Solarlits";Yes;Yes;0,575;Q2;21;29;54;1929;203;54;3,78;66,52;47,22;0;Pakistan;Asiatic Region;"Solarlits";"2014-2026";"Energy (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +10309;25315;"Journal of Drug Issues";journal;"00220426, 19451369";"SAGE Publications Inc.";No;No;0,575;Q2;64;93;113;5172;220;113;1,95;55,61;60,06;2;United States;Northern America;"SAGE Publications Inc.";"1971-2026";"Health (social science) (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +10310;21100200822;"Pakistan Journal of Statistics and Operation Research";journal;"22205810, 18162711";"University of Punjab (new Campus)";Yes;No;0,575;Q2;32;29;154;1192;414;154;2,84;41,10;30,67;0;Pakistan;Asiatic Region;"University of Punjab (new Campus)";"2011-2025";"Management Science and Operations Research (Q2); Modeling and Simulation (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +10311;19700188155;"Tropical Conservation Science";journal;"19400829";"SAGE Publications Inc.";Yes;No;0,575;Q2;48;30;69;1919;172;68;1,98;63,97;32,06;0;United States;Northern America;"SAGE Publications Inc.";"2010-2026";"Ecology (Q2); Nature and Landscape Conservation (Q2)";"Environmental Science" +10312;21101105293;"Journal of Translational Genetics and Genomics";journal;"25785281";"OAE Publishing Inc.";No;No;0,575;Q3;14;18;75;948;110;70;1,51;52,67;48,81;0;United States;Northern America;"OAE Publishing Inc.";"2019-2026";"Genetics (Q3); Genetics (clinical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10313;20957;"Acta Ornithologica";journal;"00016454";"Polish Academy of Sciences";No;No;0,574;Q1;39;15;32;933;64;31;1,92;62,20;22,92;0;Poland;Eastern Europe;"Polish Academy of Sciences";"1981, 1983-1989, 1991-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +10314;25639;"Canadian Journal of Forest Research";journal;"00455067, 12086037";"National Research Council of Canada";No;No;0,574;Q1;144;151;331;9259;686;316;2,18;61,32;34,89;2;Canada;Northern America;"National Research Council of Canada";"1974, 1976-2026";"Forestry (Q1); Ecology (Q2); Global and Planetary Change (Q3)";"Agricultural and Biological Sciences; Environmental Science" +10315;4700152463;"International Journal of Constitutional Law";journal;"14742659, 14742640";"Oxford University Press";No;No;0,574;Q1;59;36;235;4776;340;209;1,41;132,67;60,00;0;United Kingdom;Western Europe;"Oxford University Press";"2003, 2005-2025";"Law (Q1)";"Social Sciences" +10316;21101028596;"Internet Pragmatics";journal;"25423851, 2542386X";"John Benjamins Publishing Company";No;No;0,574;Q1;14;17;35;840;70;33;1,87;49,41;86,36;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2025";"Linguistics and Language (Q1); Computer Networks and Communications (Q2)";"Computer Science; Social Sciences" +10317;145663;"Language Resources and Evaluation";journal;"1574020X, 15740218";"Springer Science and Business Media B.V.";No;No;0,574;Q1;70;159;157;8466;596;154;3,31;53,25;37,89;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1996-2002, 2005-2026";"Library and Information Sciences (Q1); Linguistics and Language (Q1); Computer Science Applications (Q2); Education (Q2)";"Computer Science; Social Sciences" +10318;5700155017;"Nordicom Review";journal;"14031108, 20015119";"Sciendo";Yes;Yes;0,574;Q1;29;20;50;1926;144;50;2,57;96,30;50,00;0;Sweden;Western Europe;"Sciendo";"2000-2026";"Cultural Studies (Q1); Communication (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10319;21100784666;"ACM Transactions on Asian and Low-Resource Language Information Processing";journal;"23754699, 23754702";"Association for Computing Machinery";No;No;0,574;Q2;38;143;539;7211;1879;535;3,62;50,43;33,81;1;United States;Northern America;"Association for Computing Machinery";"2015-2026";"Computer Science (miscellaneous) (Q2)";"Computer Science" +10320;21101267696;"Action, Criticism, and Theory for Music Education";journal;"15454517";"The Mayday Group";Yes;Yes;0,574;Q2;10;44;51;2307;81;45;1,19;52,43;48,15;0;United States;Northern America;"The Mayday Group";"2020-2026";"Education (Q2)";"Social Sciences" +10321;21101301358;"Biomedical Analysis";journal;"2950435X";"KeAi Communications Co.";Yes;No;0,574;Q2;7;22;23;1520;108;22;4,70;69,09;36,59;0;China;Asiatic Region;"KeAi Communications Co.";"2024-2025";"Analytical Chemistry (Q2); Biomedical Engineering (Q2); Biochemistry (Q3); Cancer Research (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Engineering" +10322;21100836176;"Demonstratio Mathematica";journal;"04201213, 23914661";"Walter de Gruyter GmbH";Yes;No;0,574;Q2;38;112;274;3529;531;274;1,73;31,51;35,36;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"1996-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +10323;15028;"Indian Journal of Pediatrics";journal;"09737693, 00195456";"Springer";No;No;0,574;Q2;72;617;1299;5249;1252;480;0,98;8,51;43,04;1;India;Asiatic Region;"Springer";"1936-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +10324;21100805800;"International Journal of Building Pathology and Adaptation";journal;"23984708, 23984716";"Emerald Publishing";No;No;0,574;Q2;47;150;208;9213;808;204;3,41;61,42;26,52;0;United Kingdom;Western Europe;"Emerald Publishing";"2017-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Engineering" +10325;5800173381;"International Journal of Distributed Sensor Networks";journal;"15501329, 15501477";"John Wiley and Sons Ltd";Yes;No;0,574;Q2;77;33;149;1323;640;149;3,12;40,09;32,35;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2005-2026";"Computer Networks and Communications (Q2); Engineering (miscellaneous) (Q2)";"Computer Science; Engineering" +10326;10600153345;"International Journal of Precision Engineering and Manufacturing";journal;"22347593, 20054602";"Korean Society of Precision Engineering";No;No;0,574;Q2;78;242;479;11015;1777;477;3,92;45,52;22,21;0;South Korea;Asiatic Region;"Korean Society of Precision Engineering";"2008-2026";"Electrical and Electronic Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +10327;21100854632;"Journal of Transportation Engineering Part A: Systems";journal;"24732893, 24732907";"American Society of Civil Engineers (ASCE)";No;No;0,574;Q2;37;171;452;7597;1252;448;2,77;44,43;32,78;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"2017-2026";"Civil and Structural Engineering (Q2); Transportation (Q2)";"Engineering; Social Sciences" +10328;13609;"Korean Journal of Chemical Engineering";journal;"19757220, 02561115";"Springer";No;No;0,574;Q2;86;263;915;15918;2985;914;3,64;60,52;29,58;0;United States;Northern America;"Springer";"1984-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)";"Chemical Engineering; Chemistry" +10329;19700201345;"Nutrition Research and Practice";journal;"19761457, 20056168";"The Korean Society of Community Nutrition";Yes;No;0,574;Q2;54;68;229;2824;542;229;2,31;41,53;54,58;0;South Korea;Asiatic Region;"The Korean Society of Community Nutrition";"2010-2025";"Food Science (Q2); Nutrition and Dietetics (Q3)";"Agricultural and Biological Sciences; Nursing" +10330;13175;"Tumori";journal;"03008916, 20382529";"Wichtig Publishing Srl";No;No;0,574;Q2;60;65;227;2286;401;206;1,69;35,17;58,25;0;Italy;Western Europe;"Wichtig Publishing Srl";"1946-2026";"Medicine (miscellaneous) (Q2); Cancer Research (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10331;94447;"Journal of Animal Breeding and Genetics";journal;"09312668, 14390388";"Wiley-Blackwell Publishing Ltd";No;No;0,573;Q1;65;75;166;3718;388;164;2,27;49,57;35,23;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1985-2026";"Animal Science and Zoology (Q1); Food Animals (Q1); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Medicine; Veterinary" +10332;25592;"Journal of Visual Communication and Image Representation";journal;"10473203, 10959076";"Academic Press Inc.";No;No;0,573;Q1;107;227;721;12076;2646;721;3,77;53,20;32,15;0;United States;Northern America;"Academic Press Inc.";"1990-2026";"Media Technology (Q1); Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q2)";"Computer Science; Engineering" +10333;25432;"Monash Bioethics Review";journal;"18366716, 13212753";"Springer Publishing Company";No;No;0,573;Q1;21;59;61;2586;122;58;1,71;43,83;50,93;1;United States;Northern America;"Springer Publishing Company";"1994-2026";"Philosophy (Q1); Social Sciences (miscellaneous) (Q1); Health Policy (Q2); Medicine (miscellaneous) (Q2)";"Arts and Humanities; Medicine; Social Sciences" +10334;19137;"Apidologie";journal;"12979678, 00448435";"Springer-Verlag Italia s.r.l.";Yes;No;0,573;Q2;110;108;209;6767;467;205;1,73;62,66;44,09;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1977, 1980, 1985, 1989-2026";"Insect Science (Q2)";"Agricultural and Biological Sciences" +10335;21101207446;"Discover Applied Sciences";journal;"30049261";"Springer Nature";Yes;No;0,573;Q2;90;1428;1328;91550;5767;1322;4,50;64,11;30,83;5;Switzerland;Western Europe;"Springer Nature";"2024-2026";"Chemical Engineering (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Chemical Engineering; Earth and Planetary Sciences; Engineering; Environmental Science; Materials Science; Physics and Astronomy" +10336;21606;"Evolutionary Ecology";journal;"02697653, 15738477";"Springer Science and Business Media Deutschland GmbH";No;No;0,573;Q2;98;47;173;3222;311;166;1,61;68,55;40,12;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1987-2026";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10337;19700183006;"International Journal of Agricultural and Biological Engineering";journal;"19346352, 19346344";"Chinese Society of Agricultural Engineering";Yes;No;0,573;Q2;66;187;553;7226;1955;551;3,28;38,64;31,27;0;China;Asiatic Region;"Chinese Society of Agricultural Engineering";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Engineering" +10338;16070;"Journal of Biomaterials Science, Polymer Edition";journal;"15685624, 09205063";"Taylor and Francis Ltd.";No;No;0,573;Q2;115;209;371;16067;1544;371;4,21;76,88;43,46;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989, 1991-2026";"Biomedical Engineering (Q2); Biophysics (Q2); Bioengineering (Q3); Biomaterials (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +10339;20962;"Journal of Engineering for Gas Turbines and Power";journal;"15288919, 07424795";"American Society of Mechanical Engineers (ASME)";No;No;0,573;Q2;111;297;779;9791;1861;779;2,34;32,97;15,10;3;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1960-2026";"Aerospace Engineering (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Mechanical Engineering (Q2); Nuclear Energy and Engineering (Q2)";"Energy; Engineering" +10340;27608;"Journal of Obstetrics and Gynaecology Research";journal;"14470756, 13418076";"John Wiley and Sons Inc";No;No;0,573;Q2;72;390;1030;11103;1841;982;1,74;28,47;47,48;1;Australia;Pacific Region;"John Wiley and Sons Inc";"1976-1977, 1996-2026";"Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)";"Medicine" +10341;28567;"Journal of Physics Condensed Matter";journal;"09538984, 1361648X";"IOP Publishing Ltd.";No;No;0,573;Q2;272;714;2111;43614;5339;2105;2,66;61,08;25,20;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1989-2026";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)";"Materials Science; Physics and Astronomy" +10342;21101066153;"Journal of Science in Sport and Exercise";journal;"20966709, 26621371";"Springer Nature";No;No;0,573;Q2;16;66;149;2945;285;144;1,89;44,62;25,91;0;United States;Northern America;"Springer Nature";"2019-2026";"Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Nutrition and Dietetics (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Nursing" +10343;27850;"Marine Georesources and Geotechnology";journal;"1064119X, 15210618";"Taylor and Francis Ltd.";No;No;0,573;Q2;51;234;379;10997;1055;347;2,71;47,00;26,60;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Geotechnical Engineering and Engineering Geology (Q2); Ocean Engineering (Q2); Oceanography (Q2)";"Earth and Planetary Sciences; Engineering" +10344;130117;"Optimization and Engineering";journal;"13894420, 15732924";"Springer";No;No;0,573;Q2;52;148;262;6265;726;255;2,57;42,33;24,89;0;Netherlands;Western Europe;"Springer";"2000-2001, 2004-2026";"Aerospace Engineering (Q2); Civil and Structural Engineering (Q2); Control and Optimization (Q2); Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Software (Q2)";"Computer Science; Engineering; Mathematics" +10345;21100218534;"Respiratory Investigation";journal;"22125345, 22125353";"Elsevier B.V.";No;No;0,573;Q2;48;208;413;6742;852;381;1,95;32,41;20,58;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Pulmonary and Respiratory Medicine (Q2)";"Medicine" +10346;21100794599;"Special Matrices";journal;"23007451";"Walter de Gruyter GmbH";Yes;No;0,573;Q2;14;18;85;438;70;83;0,77;24,33;21,05;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2013-2025";"Algebra and Number Theory (Q2); Geometry and Topology (Q2)";"Mathematics" +10347;21971;"Topics in Catalysis";journal;"15729028, 10225528";"Springer";No;No;0,573;Q2;131;247;441;16300;1466;421;3,68;65,99;34,55;1;United States;Northern America;"Springer";"1994-2026";"Chemistry (miscellaneous) (Q2); Catalysis (Q3)";"Chemical Engineering; Chemistry" +10348;27098;"American Journal of Critical Care";journal;"1937710X, 10623264";"American Association of Critical-Care Nurses";No;No;0,572;Q1;99;94;235;1779;393;151;1,63;18,93;56,94;0;United States;Northern America;"American Association of Critical-Care Nurses";"1992-2026";"Critical Care Nursing (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +10349;21100407145;"Investigacion y Educacion en Enfermeria";journal;"22160280, 01205307";"Facultad de Enfermeria de la Universidad de Antioquia";Yes;Yes;0,572;Q1;26;51;143;1554;309;131;1,67;30,47;63,22;0;Colombia;Latin America;"Facultad de Enfermeria de la Universidad de Antioquia";"2012-2025";"Maternity and Midwifery (Q1); Community and Home Care (Q2); Family Practice (Q2); Health (social science) (Q2); Nursing (miscellaneous) (Q2); Geriatrics and Gerontology (Q3)";"Medicine; Nursing; Social Sciences" +10350;21100867269;"PaleoAmerica";journal;"20555563, 20555571";"Taylor and Francis Ltd.";No;No;0,572;Q1;25;27;68;1256;88;66;1,20;46,52;24,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Archeology (arts and humanities) (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Paleontology (Q2)";"Agricultural and Biological Sciences; Arts and Humanities; Earth and Planetary Sciences" +10351;21100802746;"Physiology International";journal;"2498602X";"Akademiai Kiado";No;No;0,572;Q1;40;35;84;1345;224;84;2,39;38,43;44,38;0;Hungary;Eastern Europe;"Akademiai Kiado";"2016-2026";"Complementary and Alternative Medicine (Q1); Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Physiology (medical) (Q3)";"Health Professions; Medicine" +10352;19700200987;"Translation and Interpreting Studies";journal;"19322798, 18762700";"John Benjamins Publishing Company";No;No;0,572;Q1;24;22;70;1046;99;69;1,57;47,55;65,22;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2011-2026";"Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +10353;28752;"Brachytherapy";journal;"18731449, 15384721";"Elsevier Inc.";No;No;0,572;Q2;62;110;304;3578;517;291;1,62;32,53;40,89;0;United States;Northern America;"Elsevier Inc.";"2002-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)";"Medicine" +10354;5200153018;"Cancer Biomarkers";journal;"15740153, 18758592";"SAGE Publications Ltd";No;No;0,572;Q2;60;70;302;0;713;299;1,81;0,00;43,46;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2025";"Medicine (miscellaneous) (Q2); Cancer Research (Q3); Genetics (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10355;19700190348;"Coaching";journal;"17521890, 17521882";"Routledge";No;No;0,572;Q2;27;11;51;643;156;48;3,31;58,45;71,05;0;United States;Northern America;"Routledge";"2010-2026";"Developmental and Educational Psychology (Q2); Organizational Behavior and Human Resource Management (Q2); Social Psychology (Q2)";"Business, Management and Accounting; Psychology" +10356;21101075509;"Current Pediatrics Reports";journal;"21674841";"Springer Nature";No;No;0,572;Q2;24;15;98;725;228;96;1,52;48,33;71,43;0;United States;Northern America;"Springer Nature";"2013-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +10357;130172;"CytoJournal";journal;"09745963, 17426413";"Scientific Scholar";Yes;No;0,572;Q2;35;102;184;3131;428;175;1,69;30,70;43,25;0;India;Asiatic Region;"Scientific Scholar";"2004-2026";"Pathology and Forensic Medicine (Q2)";"Medicine" +10358;26036;"Endocrine Research";journal;"15324206, 07435800";"Taylor & Francis Group LLC Philadelphia";No;No;0,572;Q2;49;29;55;1332;117;54;1,92;45,93;48,44;0;United States;Northern America;"Taylor & Francis Group LLC Philadelphia";"1974-1982, 1984-2026";"Medicine (miscellaneous) (Q2); Endocrinology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10359;13298;"Family Medicine";journal;"07423225, 19383800";"Society of Teachers of Family Medicine";Yes;No;0,572;Q2;79;166;487;2259;465;319;0,95;13,61;59,38;0;United States;Northern America;"Society of Teachers of Family Medicine";"1985-2026";"Family Practice (Q2)";"Medicine" +10360;15026;"Flow Measurement and Instrumentation";journal;"09555986";"Elsevier B.V.";No;No;0,572;Q2;77;251;505;8696;1742;503;3,56;34,65;26,08;0;United Kingdom;Western Europe;"Elsevier B.V.";"1989-2026";"Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Instrumentation (Q2); Modeling and Simulation (Q2)";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +10361;145581;"International Journal of Photoenergy";journal;"1110662X, 1687529X";"John Wiley and Sons Ltd";Yes;No;0,572;Q2;78;20;193;861;811;193;5,73;43,05;16,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1999-2026";"Atomic and Molecular Physics, and Optics (Q2); Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Chemistry; Energy; Materials Science; Physics and Astronomy" +10362;52949;"Lighting Research and Technology";journal;"14770938, 14771535";"SAGE Publications Ltd";No;No;0,572;Q2;73;87;181;3356;422;142;2,04;38,57;35,64;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1969-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +10363;22202;"Operations Research Letters";journal;"01676377";"Elsevier B.V.";No;No;0,572;Q2;89;101;346;2130;412;343;1,23;21,09;22,07;0;Netherlands;Western Europe;"Elsevier B.V.";"1981-2026";"Applied Mathematics (Q2); Industrial and Manufacturing Engineering (Q2); Management Science and Operations Research (Q2); Software (Q2)";"Computer Science; Decision Sciences; Engineering; Mathematics" +10364;21101245201;"Seeds";journal;"26741024";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,572;Q2;13;69;108;4512;376;104;3,38;65,39;48,35;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +10365;25214;"Toxicologic Pathology";journal;"15331601, 01926233";"SAGE Publications Inc.";No;No;0,572;Q2;134;74;150;2754;381;144;2,55;37,22;50,13;0;United States;Northern America;"SAGE Publications Inc.";"1972-2026";"Pathology and Forensic Medicine (Q2); Cell Biology (Q3); Molecular Biology (Q3); Toxicology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +10366;93144;"Tzu Chi Medical Journal";journal;"10163190";"Wolters Kluwer Medknow Publications";Yes;Yes;0,572;Q2;33;59;176;2814;428;173;2,41;47,69;37,24;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1997-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +10367;21100781436;"Journal of Experimental Pharmacology";journal;"11791454";"Dove Medical Press Ltd";Yes;No;0,572;Q3;31;51;108;3092;399;104;4,12;60,63;47,22;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010, 2012-2026";"Molecular Medicine (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +10368;19700188483;"Translational Neuroscience";journal;"20816936, 20813856";"Walter de Gruyter GmbH";Yes;No;0,572;Q3;35;25;143;1903;352;143;2,13;76,12;38,41;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2010-2026";"Neuroscience (miscellaneous) (Q3)";"Neuroscience" +10369;21100940340;"Forest and Society";journal;"25494333, 25494724";"Hasanuddin University";Yes;No;0,571;Q1;25;33;87;2291;266;87;3,10;69,42;36,45;1;Indonesia;Asiatic Region;"Hasanuddin University";"2017-2025";"Cultural Studies (Q1); Forestry (Q1); Geography, Planning and Development (Q2); Nature and Landscape Conservation (Q2); Plant Science (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +10370;21100207006;"Horticulture Environment and Biotechnology";journal;"22113460, 22113452";"Springer";No;No;0,571;Q1;51;124;236;6744;763;236;3,31;54,39;43,75;0;South Korea;Asiatic Region;"Springer";"2011-2026";"Horticulture (Q1); Biotechnology (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +10371;24784;"Journal of Ethics";journal;"13824554, 15728609";"Springer Science and Business Media B.V.";No;No;0,571;Q1;48;58;101;3117;169;97;1,79;53,74;22,97;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1997-2026";"Philosophy (Q1)";"Arts and Humanities" +10372;29553;"Journal of Gerontological Social Work";journal;"15404048, 01634372";"Routledge";No;No;0,571;Q1;57;109;206;5520;410;184;2,01;50,64;67,58;1;United States;Northern America;"Routledge";"1979-2026";"Social Sciences (miscellaneous) (Q1); Nursing (miscellaneous) (Q2); Social Work (Q3)";"Nursing; Social Sciences" +10373;19400156804;"Qualitative Research Journal";journal;"14480980, 14439883";"Emerald Group Publishing Ltd.";No;No;0,571;Q1;32;146;152;7023;430;148;3,04;48,10;59,86;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2006-2026";"Social Sciences (miscellaneous) (Q1); Education (Q2)";"Social Sciences" +10374;21101044928;"Beni-Suef University Journal of Basic and Applied Sciences";journal;"23148543, 23148535";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,571;Q2;36;128;395;9756;1642;392;3,73;76,22;41,86;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Pharmaceutical Science (Q2)";"Agricultural and Biological Sciences; Medicine; Pharmacology, Toxicology and Pharmaceutics" +10375;19400157311;"Fixed Point Theory";journal;"15835022, 20669208";"House of the Book of Science";No;No;0,571;Q2;34;25;136;617;162;136;1,21;24,68;28,30;0;Romania;Eastern Europe;"House of the Book of Science";"2008-2025";"Analysis (Q2); Applied Mathematics (Q2); Computational Mathematics (Q2)";"Mathematics" +10376;19700169951;"International Journal of Testing";journal;"15305058, 15327574";"Routledge";No;No;0,571;Q2;31;13;46;666;88;45;1,97;51,23;57,50;1;United Kingdom;Western Europe;"Routledge";"2010-2026";"Education (Q2); Modeling and Simulation (Q2); Social Psychology (Q2)";"Mathematics; Psychology; Social Sciences" +10377;4400151609;"Journal of Cardiovascular Medicine";journal;"15582027, 15582035";"Lippincott Williams and Wilkins";No;No;0,571;Q2;62;123;447;3181;785;367;2,17;25,86;37,82;0;United States;Northern America;"Lippincott Williams and Wilkins";"2006-2026";"Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)";"Medicine" +10378;17700156732;"Journal of Teacher Education for Sustainability";journal;"16914147, 16915534";"De Gruyter Open Ltd";Yes;No;0,571;Q2;29;30;71;1493;189;65;2,28;49,77;72,41;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2007-2025";"Education (Q2)";"Social Sciences" +10379;36739;"Magnetic Resonance Imaging Clinics of North America";journal;"10649689, 15579786";"W.B. Saunders";No;No;0,571;Q2;60;65;186;2758;317;137;1,84;42,43;39,16;0;United States;Northern America;"W.B. Saunders";"1993-2026";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +10380;21101087141;"Plant-Environment Interactions";journal;"25756265";"John Wiley and Sons Inc";Yes;No;0,571;Q2;14;80;95;5273;207;93;2,13;65,91;36,76;0;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +10381;21100842871;"Reaction Chemistry and Engineering";journal;"20589883";"Royal Society of Chemistry";No;No;0,571;Q2;65;187;827;9905;2399;821;2,74;52,97;32,29;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2016-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Fluid Flow and Transfer Processes (Q2); Process Chemistry and Technology (Q2); Catalysis (Q3)";"Chemical Engineering; Chemistry" +10382;90041;"Weed Science";journal;"00431745, 15502759";"Cambridge University Press";No;No;0,571;Q2;113;82;248;4325;663;241;2,44;52,74;26,88;0;United States;Northern America;"Cambridge University Press";"1968, 1971, 1973-1981, 1983, 1989, 1993-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +10383;5000153503;"Music Perception";journal;"15338312, 07307829";"University of California Press";No;No;0,570;Q1;76;25;73;2033;150;69;1,86;81,32;35,14;0;United States;Northern America;"University of California Press";"1983-2001, 2005-2026";"Music (Q1)";"Arts and Humanities" +10384;21101049621;"Open Information Science";journal;"24511781";"Walter de Gruyter GmbH";Yes;Yes;0,570;Q1;16;18;51;951;177;51;3,90;52,83;42,42;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2017-2026";"Library and Information Sciences (Q1)";"Social Sciences" +10385;4000148502;"Rural and Remote Health";journal;"14456354";"James Cook University";Yes;Yes;0,570;Q1;57;84;370;3104;645;361;1,66;36,95;57,18;0;Australia;Pacific Region;"James Cook University";"2005-2026";"Emergency Medical Services (Q1); Health (social science) (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Health Professions; Medicine; Social Sciences" +10386;14979;"ACME";journal;"14929732";"Okanagan University College";Yes;Yes;0,570;Q2;51;26;122;1419;233;121;1,43;54,58;72,50;0;Canada;Northern America;"Okanagan University College";"2002-2004, 2006-2025";"Geography, Planning and Development (Q2)";"Social Sciences" +10387;21100199795;"Algorithms";journal;"19994893";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,570;Q2;67;803;1649;36730;5920;1614;3,70;45,74;27,61;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2008-2026";"Computational Mathematics (Q2); Computational Theory and Mathematics (Q2); Numerical Analysis (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +10388;27086;"American Journal of the Medical Sciences";journal;"00029629, 15382990";"Elsevier B.V.";No;No;0,570;Q2;109;207;757;6959;939;403;1,20;33,62;41,80;0;United States;Northern America;"Elsevier B.V.";"1945-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +10389;13619;"Annals of Otology, Rhinology and Laryngology";journal;"00034894, 1943572X";"SAGE Publications Inc.";No;No;0,570;Q2;110;167;559;3919;885;544;1,52;23,47;36,75;0;United States;Northern America;"SAGE Publications Inc.";"1897-1942, 1944-2026";"Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2)";"Medicine" +10390;12819;"Canadian Journal of Behavioural Science";journal;"0008400X, 18792669";"Canadian Psychological Association";No;No;0,570;Q2;68;34;148;1925;271;148;0,96;56,62;63,20;0;United States;Northern America;"Canadian Psychological Association";"1973-1978, 1981, 1990, 1992-1993, 1996-2025";"Psychology (miscellaneous) (Q2)";"Psychology" +10391;21101165603;"Discover Food";journal;"27314286";"Springer Nature";Yes;No;0,570;Q2;19;436;253;32320;1172;253;4,11;74,13;40,55;6;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Agronomy and Crop Science (Q2); Aquatic Science (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +10392;24965;"Empirica";journal;"15736911, 03408744";"Springer Netherlands";No;No;0,570;Q2;38;32;115;1649;312;112;2,05;51,53;25,97;1;Netherlands;Western Europe;"Springer Netherlands";"1974-2026";"Development (Q2); Economics and Econometrics (Q2); Geography, Planning and Development (Q2)";"Economics, Econometrics and Finance; Social Sciences" +10393;19400158516;"Food and Environmental Virology";journal;"18670334, 18670342";"Springer";No;No;0,570;Q2;52;58;114;3060;328;114;2,73;52,76;60,58;2;United States;Northern America;"Springer";"2009-2026";"Food Science (Q2); Epidemiology (Q3); Health, Toxicology and Mutagenesis (Q3); Virology (Q3)";"Agricultural and Biological Sciences; Environmental Science; Immunology and Microbiology; Medicine" +10394;21100913558;"Frontiers in Surgery";journal;"2296875X";"Frontiers Media SA";Yes;No;0,570;Q2;55;919;3787;28570;8184;3631;1,84;31,09;32,46;0;Switzerland;Western Europe;"Frontiers Media SA";"2014-2026";"Surgery (Q2)";"Medicine" +10395;21100319031;"Green Processing and Synthesis";journal;"21919550, 21919542";"Walter de Gruyter GmbH";Yes;No;0,570;Q2;54;71;335;4173;1463;334;4,24;58,77;35,79;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2012-2026";"Chemical Engineering (miscellaneous) (Q2); Fuel Technology (Q2); Industrial and Manufacturing Engineering (Q2); Environmental Chemistry (Q3); Health, Toxicology and Mutagenesis (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Chemical Engineering; Energy; Engineering; Environmental Science" +10396;21100358314;"Human-centric Computing and Information Sciences";journal;"21921962";"Korea Information Processing Society";Yes;No;0,570;Q2;62;66;163;3221;534;163;2,68;48,80;29,80;0;South Korea;Asiatic Region;"Korea Information Processing Society";"2011-2025";"Computer Science (miscellaneous) (Q2)";"Computer Science" +10397;21100198509;"International Journal of Metalcasting";journal;"21633193, 19395981";"Springer Science and Business Media Deutschland GmbH";No;No;0,570;Q2;41;469;673;16226;2396;659;3,62;34,60;22,14;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2007-2026";"Industrial and Manufacturing Engineering (Q2); Materials Chemistry (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)";"Engineering; Materials Science" +10398;18539;"Journal of Hydraulic Research/De Recherches Hydrauliques";journal;"18142079, 00221686";"Taylor and Francis Ltd.";No;No;0,570;Q2;107;54;186;2139;470;145;1,86;39,61;24,49;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1963-2026";"Civil and Structural Engineering (Q2); Water Science and Technology (Q2)";"Engineering; Environmental Science" +10399;21100901844;"Journal of Outdoor and Environmental Education";journal;"22063110, 2522879X";"Springer International Publishing";No;No;0,570;Q2;22;61;71;3657;219;67;3,06;59,95;61,21;0;Switzerland;Western Europe;"Springer International Publishing";"2016-2026";"Education (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Social Sciences" +10400;21101039693;"Journal of Population Ageing";journal;"18747876, 18747884";"Springer Science and Business Media B.V.";No;No;0,570;Q2;22;65;145;3782;322;136;1,93;58,18;55,49;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2013-2016, 2018-2026";"Demography (Q2); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10401;23226;"Journal of South American Earth Sciences";journal;"08959811";"Elsevier B.V.";No;No;0,570;Q2;96;443;1271;33254;2279;1254;1,77;75,07;30,36;1;United Kingdom;Western Europe;"Elsevier B.V.";"1988-1992, 1994-2026";"Earth-Surface Processes (Q2); Geology (Q2); Paleontology (Q2); Stratigraphy (Q2)";"Earth and Planetary Sciences" +10402;12299;"Journal of Wound Care";journal;"20522916, 09690700";"MA Healthcare Ltd";No;No;0,570;Q2;87;225;686;6754;1196;577;1,59;30,02;49,77;1;United Kingdom;Western Europe;"MA Healthcare Ltd";"1995-2026";"Fundamentals and Skills (Q2); Nursing (miscellaneous) (Q2)";"Nursing" +10403;100968;"Oral Radiology";journal;"16139674, 09116028";"Springer Japan";No;No;0,570;Q2;32;90;226;2919;565;222;2,54;32,43;40,56;0;Japan;Asiatic Region;"Springer Japan";"1985-2026";"Dentistry (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Dentistry; Medicine" +10404;26456;"Sbornik Mathematics";journal;"14684802, 10645616";"Steklov Mathematical Institute of Russian Academy of Sciences";No;No;0,570;Q2;32;84;219;1890;152;219;0,70;22,50;20,69;0;Russian Federation;Eastern Europe;"Steklov Mathematical Institute of Russian Academy of Sciences";"1977, 1993-2025";"Algebra and Number Theory (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics" +10405;23885;"Terrestrial, Atmospheric and Oceanic Sciences";journal;"10170839, 23117680";"Springer International Publishing";Yes;No;0,570;Q2;56;32;80;1446;166;80;1,91;45,19;37,75;0;Switzerland;Western Europe;"Springer International Publishing";"1996-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Oceanography (Q2); Atmospheric Science (Q3)";"Earth and Planetary Sciences" +10406;19700175011;"Application of Clinical Genetics";journal;"1178704X";"Dove Medical Press Ltd";Yes;No;0,570;Q3;48;26;57;946;125;57;2,36;36,38;55,75;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2008-2026";"Genetics (Q3); Genetics (clinical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10407;19200156951;"English Teaching";journal;"11758708";"Emerald Group Publishing Ltd.";No;No;0,569;Q1;32;38;104;1886;216;97;1,93;49,63;73,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +10408;17700156015;"Journal of Dance Medicine and Science";journal;"1089313X, 23748060";"Sage Publications";No;No;0,569;Q1;47;26;85;937;139;82;1,40;36,04;64,55;0;United States;Northern America;"Sage Publications";"1997-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +10409;23030;"Journal of the Royal Society of New Zealand";journal;"03036758";"Taylor and Francis Ltd.";No;No;0,569;Q1;51;148;134;8899;409;119;3,08;60,13;48,67;13;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2025";"Multidisciplinary (Q1)";"Multidisciplinary" +10410;21101226575;"Public Health Challenges";journal;"27692450";"John Wiley and Sons Ltd";Yes;No;0,569;Q1;11;147;222;6147;436;153;1,79;41,82;45,18;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2022-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +10411;12188;"Simulation and Gaming";journal;"1552826X, 10468781";"SAGE Publications Inc.";No;No;0,569;Q1;78;37;132;1553;375;114;2,56;41,97;53,10;0;United States;Northern America;"SAGE Publications Inc.";"1970-1976, 1978-1983, 1985, 1987-2026";"Social Sciences (miscellaneous) (Q1); Business, Management and Accounting (miscellaneous) (Q2); Computer Science Applications (Q2)";"Business, Management and Accounting; Computer Science; Social Sciences" +10412;20600195509;"Surveillance and Society";journal;"14777487";"Surveillance Studies Network";Yes;Yes;0,569;Q1;61;27;118;1599;218;104;1,63;59,22;40,63;0;United Kingdom;Western Europe;"Surveillance Studies Network";"2002-2025";"Urban Studies (Q1); Safety Research (Q2)";"Social Sciences" +10413;23211;"Zoosystema";journal;"16389387, 12809551";"Museum National d'Histoire Naturelle";Yes;No;0,569;Q1;33;30;78;1571;99;78;1,25;52,37;31,82;0;France;Western Europe;"Museum National d'Histoire Naturelle";"1998-1999, 2002, 2004-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10414;16302;"Adsorption";journal;"15728757, 09295607";"Springer Netherlands";No;No;0,569;Q2;93;109;205;6318;729;203;3,74;57,96;31,70;0;Netherlands;Western Europe;"Springer Netherlands";"1995-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Surfaces and Interfaces (Q2)";"Chemical Engineering; Chemistry; Physics and Astronomy" +10415;19300156901;"Dose-Response";journal;"15593258";"SAGE Publications Inc.";Yes;No;0,569;Q2;56;66;248;3174;789;230;2,90;48,09;49,03;0;United States;Northern America;"SAGE Publications Inc.";"2007-2026";"Chemical Health and Safety (Q2); Public Health, Environmental and Occupational Health (Q2); Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)";"Chemical Engineering; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +10416;21100287116;"East Asian Journal on Applied Mathematics";journal;"20797362, 20797370";"Global Science Press";No;No;0,569;Q2;26;34;114;1251;142;112;1,29;36,79;38,54;0;Hong Kong;Asiatic Region;"Global Science Press";"2011-2025";"Applied Mathematics (Q2)";"Mathematics" +10417;21100886532;"Economic and Political Studies";journal;"24704024, 20954816";"Routledge";No;No;0,569;Q2;22;23;81;1091;240;75;2,88;47,43;40,74;1;United Kingdom;Western Europe;"Routledge";"2013-2026";"Economics and Econometrics (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Economics, Econometrics and Finance; Social Sciences" +10418;11600153918;"Environmental Justice";journal;"19394071, 19375174";"Mary Ann Liebert Inc.";No;No;0,569;Q2;39;96;167;3929;328;163;1,43;40,93;64,25;4;United States;Northern America;"Mary Ann Liebert Inc.";"2008-2026";"Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Health, Toxicology and Mutagenesis (Q3)";"Environmental Science; Social Sciences" +10419;21132;"Facial Plastic Surgery";journal;"10988793, 07366825";"Thieme Medical Publishers, Inc.";No;No;0,569;Q2;58;95;357;2588;563;334;1,41;27,24;31,39;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1983-1990, 1992-2026";"Surgery (Q2)";"Medicine" +10420;21101188705;"Frontiers in Blockchain";journal;"26247852";"Frontiers Media SA";Yes;No;0,569;Q2;34;69;95;4062;444;90;4,86;58,87;41,56;0;Switzerland;Western Europe;"Frontiers Media SA";"2019-2026";"Computer Networks and Communications (Q2); Computer Science Applications (Q2); Computer Science (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Computer Science; Economics, Econometrics and Finance" +10421;5400152646;"IET Image Processing";journal;"17519667, 17519659";"John Wiley & Sons Inc.";Yes;No;0,569;Q2;74;297;959;14571;3281;959;3,21;49,06;33,16;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2007-2026";"Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q2); Software (Q2)";"Computer Science; Engineering" +10422;21100898957;"International Journal of Engineering Pedagogy";journal;"21924880";"";Yes;No;0,569;Q2;26;65;196;2537;574;196;3,30;39,03;47,13;0;Germany;Western Europe;"";"2018-2025";"Education (Q2); Engineering (miscellaneous) (Q2)";"Engineering; Social Sciences" +10423;23717;"International Journal of Social Economics";journal;"03068293";"Emerald Group Publishing Ltd.";Yes;No;0,569;Q2;60;140;326;7322;1215;323;3,56;52,30;34,70;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1974-2026";"Economics and Econometrics (Q2); Social Sciences (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Social Sciences" +10424;21100943564;"International Journal of Turbomachinery, Propulsion and Power";journal;"2504186X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,569;Q2;21;52;126;1766;329;124;2,33;33,96;18,28;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2025";"Aerospace Engineering (Q2); Energy Engineering and Power Technology (Q2); Mechanical Engineering (Q2)";"Energy; Engineering" +10425;19700188233;"Journal of Plastic Surgery and Hand Surgery";journal;"20006764, 2000656X";"Medical Journals Sweden AB";Yes;No;0,569;Q2;58;36;183;932;281;182;1,54;25,89;38,67;0;Sweden;Western Europe;"Medical Journals Sweden AB";"2010-2026";"Surgery (Q2)";"Medicine" +10426;19700175007;"Journal of Research in Health Sciences";journal;"22287809, 22287795";"Hamadan University of Medical Sciences";No;No;0,569;Q2;35;32;99;1148;225;96;2,03;35,88;40,31;0;Iran;Middle East;"Hamadan University of Medical Sciences";"2009-2026";"Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2); Epidemiology (Q3)";"Medicine" +10427;33015;"Journal of the Society for Information Display";journal;"19383657, 10710922";"John Wiley and Sons Inc";No;No;0,569;Q2;66;99;204;2702;523;200;2,53;27,29;21,54;0;United States;Northern America;"John Wiley and Sons Inc";"1993-2026";"Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +10428;18300156716;"Marine Biodiversity";journal;"18671616, 18671624";"Springer Science and Business Media Deutschland GmbH";No;No;0,569;Q2;47;119;237;6494;457;223;1,98;54,57;35,31;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2009-2026";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Oceanography (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +10429;21100829282;"Medical Mycology Journal";journal;"21856486, 2186165X";"Japanese Society for Medical Mycology";No;No;0,569;Q2;33;32;55;743;128;55;1,82;23,22;29,37;0;Japan;Asiatic Region;"Japanese Society for Medical Mycology";"2011-2025";"Infectious Diseases (Q2); Microbiology (Q3)";"Immunology and Microbiology; Medicine" +10430;21100399731;"Metals";journal;"20754701";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,569;Q2;100;1387;5633;64120;18508;5527;3,30;46,23;29,26;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Materials Science (miscellaneous) (Q2); Metals and Alloys (Q2)";"Materials Science" +10431;25326;"Solid State Sciences";journal;"12932558";"Elsevier Masson s.r.l.";Yes;No;0,569;Q2;116;254;668;13562;2369;665;3,57;53,39;32,77;0;France;Western Europe;"Elsevier Masson s.r.l.";"1999-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +10432;19700172802;"Dementia e Neuropsychologia";journal;"19805764";"Academia Brasileira de Neurologia";Yes;Yes;0,569;Q3;44;68;189;2580;388;179;1,66;37,94;59,01;0;Brazil;Latin America;"Academia Brasileira de Neurologia";"2009-2026";"Cognitive Neuroscience (Q3); Geriatrics and Gerontology (Q3); Neurology (Q3); Neurology (clinical) (Q3); Sensory Systems (Q3)";"Medicine; Neuroscience" +10433;25109;"Inhalation Toxicology";journal;"08958378, 10917691";"Taylor and Francis Ltd.";No;No;0,569;Q3;102;37;103;2469;261;101;2,26;66,73;47,47;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +10434;17102;"Journal of the American Animal Hospital Association";journal;"15473317, 05872871";"American Animal Hospital Association";No;No;0,568;Q1;86;27;127;388;199;127;1,38;14,37;52,21;0;United States;Northern America;"American Animal Hospital Association";"1973-2026";"Small Animals (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Veterinary" +10435;21100854757;"Open Archaeology";journal;"23006560";"Walter de Gruyter GmbH";Yes;No;0,568;Q1;20;45;167;3464;205;165;1,48;76,98;43,32;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2015-2026";"Archeology (arts and humanities) (Q1); Conservation (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +10436;27424;"Annales Geophysicae";journal;"14320576, 09927689";"Copernicus Publications";Yes;No;0,568;Q2;112;52;114;2909;228;114;1,93;55,94;22,83;0;Germany;Western Europe;"Copernicus Publications";"1983-1985, 1988-1990, 1994-2026";"Astronomy and Astrophysics (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q2); Atmospheric Science (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Physics and Astronomy" +10437;21100238633;"BioImpacts";journal;"22285652, 22285660";"Tabriz University of Medical Sciences";Yes;Yes;0,568;Q2;50;127;152;10269;483;149;3,04;80,86;42,83;0;Iran;Middle East;"Tabriz University of Medical Sciences";"2011-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Pharmaceutical Science (Q2)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +10438;29237;"Clinical Social Work Journal";journal;"15733343, 00911674";"Kluwer Academic/Human Sciences Press Inc.";No;No;0,568;Q2;54;80;129;4400;318;121;1,69;55,00;63,84;1;United States;Northern America;"Kluwer Academic/Human Sciences Press Inc.";"1973-2026";"Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2); Social Work (Q3)";"Medicine; Social Sciences" +10439;19400158701;"Energy Systems";journal;"18683967, 18683975";"Springer Verlag";No;No;0,568;Q2;44;112;229;5437;746;226;2,72;48,54;19,45;0;Germany;Western Europe;"Springer Verlag";"2010-2026";"Economics and Econometrics (Q2); Energy (miscellaneous) (Q2); Modeling and Simulation (Q2)";"Economics, Econometrics and Finance; Energy; Mathematics" +10440;20488;"Journal of Insect Science";journal;"15362442";"Oxford University Press";Yes;No;0,568;Q2;68;112;323;5966;772;323;2,39;53,27;43,38;1;United States;Northern America;"Oxford University Press";"2001-2026";"Insect Science (Q2); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Medicine" +10441;23419;"Journal of Marine Environmental Engineering";journal;"1061026X, 10290427";"Old City Publishing";No;No;0,568;Q2;16;13;20;769;49;17;2,45;59,15;36,00;0;United States;Northern America;"Old City Publishing";"1996-2001, 2003-2006, 2008, 2010, 2012-2013, 2015, 2017-2019, 2021, 2023-2025";"Environmental Engineering (Q2); Ocean Engineering (Q2); Pollution (Q2); Waste Management and Disposal (Q2)";"Engineering; Environmental Science" +10442;27773;"Planetary and Space Science";journal;"00320633";"Elsevier Ltd";No;No;0,568;Q2;118;101;298;5775;648;296;2,04;57,18;29,79;0;United Kingdom;Western Europe;"Elsevier Ltd";"1959-2026";"Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)";"Earth and Planetary Sciences; Physics and Astronomy" +10443;18700156722;"Agribusiness";journal;"07424477, 15206297";"Wiley-VCH Verlag";No;No;0,567;Q1;60;169;218;10441;679;208;2,93;61,78;35,45;0;United States;Northern America;"Wiley-VCH Verlag";"1985-2026";"Animal Science and Zoology (Q1); Agronomy and Crop Science (Q2); Economics and Econometrics (Q2); Food Science (Q2); Geography, Planning and Development (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Social Sciences" +10444;21101133221;"Applied Pragmatics";journal;"2589109X, 25891103";"John Benjamins Publishing Company";No;No;0,567;Q1;8;8;35;443;60;27;1,50;55,38;38,46;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2025";"Linguistics and Language (Q1)";"Social Sciences" +10445;23134;"European Journal of Women's Studies";journal;"13505068, 14617420";"SAGE Publications Ltd";No;No;0,567;Q1;62;36;137;1238;261;102;1,76;34,39;87,18;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994-2026";"Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q2)";"Arts and Humanities; Social Sciences" +10446;21100869514;"Veterinary Medicine and Science";journal;"20531095";"Wiley-Blackwell Publishing Ltd";Yes;No;0,567;Q1;38;551;1003;25672;2615;993;2,36;46,59;35,08;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2015-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +10447;91941;"World Archaeology";journal;"14701375, 00438243";"Routledge";No;No;0,567;Q1;88;10;112;877;132;97;0,64;87,70;59,46;0;United Kingdom;Western Europe;"Routledge";"1969-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Earth and Planetary Sciences (miscellaneous) (Q2)";"Arts and Humanities; Earth and Planetary Sciences; Social Sciences" +10448;21100779062;"3D Printing and Additive Manufacturing";journal;"23297662, 23297670";"Mary Ann Liebert Inc.";No;No;0,567;Q2;54;98;344;4569;1210;341;3,22;46,62;27,23;0;United States;Northern America;"Mary Ann Liebert Inc.";"2014-2026";"Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +10449;19700172216;"Anesthesiology Research and Practice";journal;"16876962, 16876970";"John Wiley and Sons Ltd";Yes;No;0,567;Q2;34;42;66;1227;142;66;1,61;29,21;43,06;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Anesthesiology and Pain Medicine (Q2); Critical Care and Intensive Care Medicine (Q2)";"Medicine" +10450;24593;"Calphad: Computer Coupling of Phase Diagrams and Thermochemistry";journal;"03645916";"Elsevier Ltd";No;No;0,567;Q2;82;93;300;6834;621;298;2,00;73,48;30,42;0;United Kingdom;Western Europe;"Elsevier Ltd";"1977-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Computer Science Applications (Q2)";"Chemical Engineering; Chemistry; Computer Science" +10451;21101042312;"Colloids and Interfaces";journal;"25045377";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,567;Q2;36;88;218;5124;860;218;4,05;58,23;37,22;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2025";"Chemistry (miscellaneous) (Q2); Colloid and Surface Chemistry (Q2)";"Chemical Engineering; Chemistry" +10452;145582;"Educational Research for Policy and Practice";journal;"15731723, 15702081";"Springer";No;No;0,567;Q2;32;34;78;1842;201;74;2,65;54,18;44,44;0;Singapore;Asiatic Region;"Springer";"2004-2026";"Education (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10453;21100823451;"German Journal of Exercise and Sport Research";journal;"25093150, 25093142";"Springer Berlin";No;No;0,567;Q2;24;101;183;4661;425;161;2,01;46,15;37,22;0;Germany;Western Europe;"Springer Berlin";"2017-2026";"Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Medicine" +10454;25461;"Informatica (Netherlands)";journal;"08684952";"SAGE Publications Ltd";Yes;No;0,567;Q2;52;0;108;0;479;108;4,68;0,00;0,00;0;Netherlands;Western Europe;"SAGE Publications Ltd";"1990-2024";"Applied Mathematics (Q2); Information Systems (Q2)";"Computer Science; Mathematics" +10455;21101054412;"Journal of Entrepreneurship, Management and Innovation";journal;"22997075, 22997326";"Cognitione Foundation for the Dissemination of Knowledge and Science";Yes;Yes;0,567;Q2;19;27;75;2690;332;74;4,33;99,63;56,41;0;Poland;Eastern Europe;"Cognitione Foundation for the Dissemination of Knowledge and Science";"2019-2025";"Business and International Management (Q2); Management of Technology and Innovation (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting" +10456;17615;"Journal of Inorganic Biochemistry";journal;"01620134, 18733344";"Elsevier Inc.";No;No;0,567;Q2;154;216;747;14151;2565;729;3,35;65,51;45,40;0;United States;Northern America;"Elsevier Inc.";"1979-2026";"Inorganic Chemistry (Q2); Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +10457;21210;"Local Economy";journal;"14709325, 02690942";"SAGE Publications Ltd";No;No;0,567;Q2;52;3;111;165;215;109;1,46;55,00;42,86;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +10458;26334;"Publications of the Research Institute for Mathematical Sciences";journal;"16634926, 00345318";"European Mathematical Society Publishing House";No;No;0,567;Q2;41;15;72;460;50;72;0,51;30,67;16,00;0;Germany;Western Europe;"European Mathematical Society Publishing House";"1969-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +10459;19900193670;"Hematology Reports";journal;"20388322, 20388330";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,567;Q3;22;71;199;2785;348;198;2,02;39,23;46,47;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2025";"Hematology (Q3)";"Medicine" +10460;6000152860;"Studies in Art Education";journal;"23258039, 00393541";"Taylor and Francis Ltd.";No;No;0,566;Q1;20;40;94;1396;140;68;1,43;34,90;65,91;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984, 1987, 2003-2004, 2010-2011, 2014-2025";"Visual Arts and Performing Arts (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +10461;16865;"Acta Sociologica";journal;"00016993, 15023869";"SAGE Publications Ltd";Yes;No;0,566;Q2;69;61;84;3447;215;80;2,39;56,51;39,09;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1956-1959, 1962, 1964-2026";"Sociology and Political Science (Q2)";"Social Sciences" +10462;23087;"Algorithmica";journal;"14320541, 01784617";"Springer New York";No;No;0,566;Q2;87;62;398;2090;519;387;1,33;33,71;19,79;0;United States;Northern America;"Springer New York";"1986-2026";"Applied Mathematics (Q2); Computer Science Applications (Q2); Computer Science (miscellaneous) (Q2)";"Computer Science; Mathematics" +10463;21100842566;"European Journal of Economics and Economic Policies: Intervention";journal;"20527764, 20527772";"Edward Elgar Publishing Ltd.";No;No;0,566;Q2;24;28;80;911;164;66;2,04;32,54;26,32;3;United Kingdom;Western Europe;"Edward Elgar Publishing Ltd.";"2004-2025";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +10464;5800170866;"Irish Political Studies";journal;"07907184, 17439078";"Routledge";No;No;0,566;Q2;31;30;67;1537;101;61;0,72;51,23;50,00;1;United Kingdom;Western Europe;"Routledge";"1986-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10465;21100316001;"Journal of Biomedical Semantics";journal;"20411480";"BioMed Central Ltd";Yes;No;0,566;Q2;51;20;65;960;220;65;3,38;48,00;28,13;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Computer Networks and Communications (Q2); Computer Science Applications (Q2); Information Systems (Q2); Health Informatics (Q3)";"Computer Science; Medicine" +10466;4700152803;"Journal of Business-to-Business Marketing";journal;"15470628, 1051712X";"Routledge";No;No;0,566;Q2;40;38;69;3358;220;69;2,87;88,37;35,04;0;United States;Northern America;"Routledge";"1992-2026";"Management Information Systems (Q2); Marketing (Q2)";"Business, Management and Accounting" +10467;29606;"Journal of Experimental Marine Biology and Ecology";journal;"00220981";"Elsevier B.V.";No;No;0,566;Q2;153;73;265;5552;561;264;2,17;76,05;39,38;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10468;21179;"Journal of Nondestructive Evaluation";journal;"15734862, 01959298";"Springer New York";No;No;0,566;Q2;63;153;301;6565;1006;301;3,08;42,91;22,82;0;United States;Northern America;"Springer New York";"1980-1982, 1984-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +10469;28511;"Mathematical and Computer Modelling of Dynamical Systems";journal;"17445051, 13873954";"Taylor and Francis Ltd.";Yes;No;0,566;Q2;42;30;65;1113;226;65;3,72;37,10;22,77;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Applied Mathematics (Q2); Computer Science Applications (Q2); Control and Systems Engineering (Q2); Modeling and Simulation (Q2); Software (Q2)";"Computer Science; Engineering; Mathematics" +10470;28819;"Nursing Administration Quarterly";journal;"03639568, 15505103";"Lippincott Williams and Wilkins Ltd.";No;No;0,566;Q2;49;84;152;1453;266;135;1,71;17,30;76,06;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1976-2026";"Leadership and Management (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +10471;21100801726;"Review of International Business and Strategy";journal;"20596014";"Emerald Group Publishing Ltd.";No;No;0,566;Q2;48;43;106;3823;418;104;4,09;88,91;41,18;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2016-2026";"Business and International Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +10472;21101304987;"Security and Safety";journal;"28261275, 20972121";"EDP Sciences";Yes;No;0,566;Q2;10;24;59;1263;193;52;3,16;52,63;29,07;0;France;Western Europe;"EDP Sciences";"2022-2026";"Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Control and Systems Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)";"Computer Science; Engineering" +10473;130114;"Journal of Dual Diagnosis";journal;"15504271, 15504263";"Routledge";No;No;0,566;Q3;39;33;80;1790;131;72;1,53;54,24;52,91;0;United States;Northern America;"Routledge";"2004-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +10474;110567;"IEEE International Symposium on Information Theory - Proceedings";conference and proceedings;"21578095";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,566;-;109;500;1660;12516;1826;1657;1,11;25,03;22,31;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1972, 1991, 1994-1995, 1997-2025";"Applied Mathematics; Information Systems; Modeling and Simulation; Theoretical Computer Science";"Computer Science; Mathematics" +10475;21100199538;"International Symposium on Empirical Software Engineering and Measurement";conference and proceedings;"19493770, 19493789";"IEEE Computer Society";No;No;0,566;-;51;60;140;2392;384;134;2,64;39,87;31,46;0;United States;Northern America;"IEEE Computer Society";"2011-2024";"Computer Science Applications; Software";"Computer Science" +10476;21017;"Bird Conservation International";journal;"09592709, 14740001";"Cambridge University Press";No;No;0,565;Q1;55;36;167;2200;301;167;1,68;61,11;27,41;0;United Kingdom;Western Europe;"Cambridge University Press";"1991-2026";"Animal Science and Zoology (Q1); Ecology (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10477;21100375835;"Historic Environment: Policy and Practice";journal;"17567505, 17567513";"Taylor and Francis Ltd.";No;No;0,565;Q1;22;37;85;1523;213;73;1,72;41,16;48,53;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010, 2014-2026";"Archeology (arts and humanities) (Q1); Conservation (Q1); History (Q1)";"Arts and Humanities" +10478;21101048850;"International Journal of Learner Corpus Research";journal;"22151486, 22151478";"John Benjamins Publishing Company";No;No;0,565;Q1;18;14;32;748;61;30;1,57;53,43;52,54;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2015-2026";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +10479;20977;"Ornithology";journal;"27324613";"Oxford University Press";No;No;0,565;Q1;4;0;14;0;24;14;1,71;0,00;0,00;0;United Kingdom;Western Europe;"Oxford University Press";"2024";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10480;19400157145;"Porta Linguarum";journal;"16977467";"Universidad de Granada";Yes;No;0,565;Q1;27;83;218;3767;528;196;2,71;45,39;55,64;0;Spain;Western Europe;"Universidad de Granada";"2008-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +10481;17700155437;"Sign Systems Studies";journal;"14064243, 17367409";"University of Tartu Press";Yes;Yes;0,565;Q1;15;25;84;1262;85;82;1,25;50,48;21,74;0;Estonia;Eastern Europe;"University of Tartu Press";"2012-2025";"Linguistics and Language (Q1)";"Social Sciences" +10482;25142;"Applicable Analysis";journal;"00036811, 1563504X";"Taylor and Francis Ltd.";No;No;0,565;Q2;52;237;814;7472;949;810;1,18;31,53;34,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +10483;4000148021;"Asia-Pacific Journal of Clinical Oncology";journal;"17437555, 17437563";"Wiley-Blackwell Publishing Ltd";No;No;0,565;Q2;49;136;374;5028;676;355;1,91;36,97;41,14;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2006-2026";"Medicine (miscellaneous) (Q2); Oncology (Q3)";"Medicine" +10484;21101019776;"Beverages";journal;"23065710";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,565;Q2;50;175;309;11329;1088;302;3,13;64,74;52,04;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2026";"Food Science (Q2)";"Agricultural and Biological Sciences" +10485;29771;"Biological Journal of the Linnean Society";journal;"00244066, 10958312";"Oxford University Press";Yes;No;0,565;Q2;133;189;426;14344;783;424;1,80;75,89;38,86;0;United Kingdom;Western Europe;"Oxford University Press";"1969-2026";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10486;21101100717;"Biophysics and Physicobiology";journal;"21894779";"Biophysical Society of Japan";Yes;No;0,565;Q2;26;38;177;1475;184;117;0,91;38,82;17,80;0;Japan;Asiatic Region;"Biophysical Society of Japan";"2015-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biophysics (Q2); Biochemistry (Q3); Molecular Biology (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology" +10487;16604;"Clinical Imaging";journal;"18734499, 08997071";"Elsevier Inc.";No;No;0,565;Q2;63;210;670;5580;1291;606;2,08;26,57;39,64;0;United States;Northern America;"Elsevier Inc.";"1989-2026";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +10488;26792;"Clinics in Laboratory Medicine";journal;"15579832, 02722712";"W.B. Saunders";No;No;0,565;Q2;73;71;162;3054;254;138;1,77;43,01;54,69;0;United States;Northern America;"W.B. Saunders";"1981-2025";"Biochemistry (medical) (Q2); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10489;29308;"Critical Reviews in Oncogenesis";journal;"21626448, 08939675";"Begell House Inc.";No;No;0,565;Q2;60;37;88;2324;151;70;1,82;62,81;53,62;0;United States;Northern America;"Begell House Inc.";"1989-2000, 2006-2009, 2011-2025";"Medicine (miscellaneous) (Q2); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10490;21100432435;"Fatigue: Biomedicine, Health and Behavior";journal;"21641846, 21641862";"Taylor and Francis Ltd.";No;No;0,565;Q2;26;27;51;1154;106;49;1,89;42,74;58,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2); Behavioral Neuroscience (Q3)";"Medicine; Neuroscience" +10491;14500154757;"International Journal of Emergency Medicine";journal;"18651372, 18651380";"Springer London";Yes;No;0,565;Q2;45;272;362;7736;794;359;1,97;28,44;36,68;1;United Kingdom;Western Europe;"Springer London";"2009-2026";"Emergency Medicine (Q2)";"Medicine" +10492;21100834320;"Italian Economic Journal";journal;"2199322X, 21993238";"Springer International Publishing AG";No;No;0,565;Q2;17;87;116;5381;235;115;1,96;61,85;40,65;6;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +10493;21101141431;"Journal for the Measurement of Physical Behaviour";journal;"25756605, 25756613";"Human Kinetics Publishers Inc.";No;No;0,565;Q2;19;25;103;974;176;97;1,21;38,96;37,82;0;United States;Northern America;"Human Kinetics Publishers Inc.";"2019-2026";"Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Psychology (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2); Statistics, Probability and Uncertainty (Q2)";"Computer Science; Decision Sciences; Engineering; Medicine; Psychology" +10494;94148;"Journal of Combinatorial Designs";journal;"15206610, 10638539";"John Wiley and Sons Inc";No;No;0,565;Q2;37;37;107;836;92;107;0,99;22,59;27,71;0;United States;Northern America;"John Wiley and Sons Inc";"1993-2026";"Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +10495;21101045747;"Journal of Innovation Economics and Management";journal;"20325355";"De Boeck Supérieur";No;No;0,565;Q2;19;2;80;186;192;66;1,96;93,00;25,00;0;Belgium;Western Europe;"De Boeck Supérieur";"2019-2025";"Business and International Management (Q2); Economics and Econometrics (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +10496;17829;"Mechanics Research Communications";journal;"00936413";"Elsevier Ltd";No;No;0,565;Q2;86;162;312;6763;860;306;2,74;41,75;20,05;0;United Kingdom;Western Europe;"Elsevier Ltd";"1974-2026";"Civil and Structural Engineering (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +10497;74271;"Operative Orthopadie und Traumatologie";journal;"09346694, 14390981";"Springer Medizin";No;No;0,565;Q2;35;51;124;918;175;106;1,13;18,00;17,50;0;Germany;Western Europe;"Springer Medizin";"1989-2026";"Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2); Surgery (Q2)";"Medicine" +10498;14470;"Polymers for Advanced Technologies";journal;"10427147, 10991581";"John Wiley and Sons Ltd";No;No;0,565;Q2;117;434;1153;27630;4396;1151;4,15;63,66;36,12;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1990-2026";"Polymers and Plastics (Q2)";"Materials Science" +10499;21101184420;"Reactions";journal;"2624781X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,565;Q2;17;73;147;3907;583;144;4,59;53,52;41,37;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)";"Chemical Engineering; Chemistry" +10500;21100801727;"Digital Library Perspectives";journal;"20595816, 20595824";"Emerald Publishing";No;No;0,564;Q1;30;50;122;2460;322;104;2,69;49,20;37,21;0;United Kingdom;Western Europe;"Emerald Publishing";"2016-2026";"Library and Information Sciences (Q1); Education (Q2); Information Systems (Q2)";"Computer Science; Social Sciences" +10501;21100442189;"JALT CALL Journal";journal;"18324215";"Castledown Publishers";No;No;0,564;Q1;20;23;53;1295;140;53;2,58;56,30;38,46;0;Australia;Pacific Region;"Castledown Publishers";"2010, 2015-2025";"Linguistics and Language (Q1); Computer Science Applications (Q2); Education (Q2)";"Computer Science; Social Sciences" +10502;21101062034;"Music and Science";journal;"20592043";"SAGE Publications Ltd";Yes;No;0,564;Q1;21;49;142;2625;271;140;1,58;53,57;51,26;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2026";"History and Philosophy of Science (Q1); Music (Q1); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Psychology" +10503;73721;"South African Journal of Communication Disorders";journal;"03798046, 22254765";"AOSIS (Pty) Ltd";Yes;No;0,564;Q1;24;29;93;1160;209;93;1,46;40,00;76,79;0;South Africa;Africa;"AOSIS (Pty) Ltd";"1977-2025";"Linguistics and Language (Q1); Communication (Q2); Speech and Hearing (Q2); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3)";"Health Professions; Neuroscience; Psychology; Social Sciences" +10504;15639;"Agronomy Journal";journal;"00021962, 14350645";"John Wiley & Sons Inc.";No;No;0,564;Q2;165;275;748;17103;2048;744;2,79;62,19;30,11;1;United States;Northern America;"John Wiley & Sons Inc.";"1925, 1929, 1945, 1955-1960, 1962-1965, 1967-2026";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +10505;21100817424;"Annales Mathematiques du Quebec";journal;"21954763, 21954755";"Springer International Publishing AG";No;No;0,564;Q2;13;38;64;973;51;62;0,95;25,61;20,00;0;Switzerland;Western Europe;"Springer International Publishing AG";"2013-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +10506;27002;"Annals of Physics";journal;"00034916, 1096035X";"Academic Press Inc.";No;No;0,564;Q2;121;310;688;19168;1799;681;2,50;61,83;20,45;0;United States;Northern America;"Academic Press Inc.";"1957-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +10507;21101249031;"Biologics";journal;"26738449";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,564;Q2;17;38;66;3003;173;63;2,65;79,03;47,37;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +10508;21100864540;"Bioscience of Microbiota, Food and Health";journal;"21866953, 21863342";"BMFH Press";No;No;0,564;Q2;34;33;101;1660;244;99;2,25;50,30;37,17;0;Japan;Asiatic Region;"BMFH Press";"2014-2026";"Food Science (Q2); Applied Microbiology and Biotechnology (Q3); Gastroenterology (Q3); Immunology (Q3); Microbiology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +10509;15541;"Biotechnology Progress";journal;"87567938, 15206033";"Wiley-Blackwell";No;No;0,564;Q2;152;106;277;5223;897;272;2,95;49,27;40,52;0;United States;Northern America;"Wiley-Blackwell";"1985-2026";"Biotechnology (Q2)";"Biochemistry, Genetics and Molecular Biology" +10510;21101340511;"Communications on Analysis and Computation";journal;"28370562";"American Institute of Mathematical Sciences";No;No;0,564;Q2;5;24;41;667;60;41;1,46;27,79;16,67;0;United States;Northern America;"American Institute of Mathematical Sciences";"2023-2025";"Analysis (Q2); Computational Mathematics (Q2)";"Mathematics" +10511;19700190344;"Early Years";journal;"14724421, 09575146";"Routledge";No;No;0,564;Q2;43;123;188;5669;380;185;2,03;46,09;72,56;5;United States;Northern America;"Routledge";"1980-2026";"Developmental and Educational Psychology (Q2); Education (Q2)";"Psychology; Social Sciences" +10512;21114;"European Journal of Pediatric Surgery";journal;"09397248, 1439359X";"Georg Thieme Verlag";No;No;0,564;Q2;60;58;234;1705;448;217;1,74;29,40;43,99;1;Germany;Western Europe;"Georg Thieme Verlag";"1980-2026";"Pediatrics, Perinatology and Child Health (Q2); Surgery (Q2)";"Medicine" +10513;146160;"International Journal of Injury Control and Safety Promotion";journal;"17457319, 17457300";"Taylor and Francis Ltd.";No;No;0,564;Q2;51;58;174;3106;484;159;2,93;53,55;32,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Public Health, Environmental and Occupational Health (Q2); Safety Research (Q2)";"Medicine; Social Sciences" +10514;20607;"Journal of Food Products Marketing";journal;"15404102, 10454446";"Routledge";No;No;0,564;Q2;48;9;52;480;185;52;3,00;53,33;50,00;0;United States;Northern America;"Routledge";"1992-2025";"Business and International Management (Q2); Food Science (Q2); Marketing (Q2)";"Agricultural and Biological Sciences; Business, Management and Accounting" +10515;21100446217;"Journal of International Education in Business";journal;"2046469X, 18363261";"Emerald Group Publishing Ltd.";No;No;0,564;Q2;25;33;78;2198;299;77;3,73;66,61;27,91;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2026";"Business, Management and Accounting (miscellaneous) (Q2); Education (Q2)";"Business, Management and Accounting; Social Sciences" +10516;144657;"Journal of Property Investment and Finance";journal;"1463578X";"Emerald Group Publishing Ltd.";No;No;0,564;Q2;47;49;134;2020;346;115;2,29;41,22;24,24;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1999-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +10517;13695;"Polymer Engineering and Science";journal;"15482634, 00323888";"John Wiley and Sons Inc";No;No;0,564;Q2;135;504;1122;26086;4249;1121;3,91;51,76;35,29;0;United States;Northern America;"John Wiley and Sons Inc";"1961-2026";"Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)";"Chemistry; Materials Science" +10518;21100242616;"Sleep Science";journal;"19840659, 19840063";"Thieme Medical Publishers, Inc.";Yes;Yes;0,564;Q2;38;37;243;1246;591;241;1,61;33,68;44,81;0;Brazil;Latin America;"Thieme Medical Publishers, Inc.";"2008-2025";"Medicine (miscellaneous) (Q2); Behavioral Neuroscience (Q3); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience" +10519;18783;"Water Policy";journal;"19969759, 13667017";"IWA Publishing";Yes;No;0,564;Q2;73;69;241;3731;590;241;2,40;54,07;43,13;1;United Kingdom;Western Europe;"IWA Publishing";"1998, 2000-2026";"Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2)";"Environmental Science; Social Sciences" +10520;21100841760;"Howard Journal of Crime and Justice";journal;"20591101, 20591098";"John Wiley and Sons Inc";No;No;0,563;Q1;22;50;86;3486;190;83;1,93;69,72;64,29;1;United States;Northern America;"John Wiley and Sons Inc";"2016-2026";"Law (Q1)";"Social Sciences" +10521;12337;"International Journal of Bifurcation and Chaos";journal;"17936551, 02181274";"World Scientific";No;No;0,563;Q1;124;236;765;9666;1788;765;2,56;40,96;33,12;0;Singapore;Asiatic Region;"World Scientific";"1991, 1994, 1996-2026";"Multidisciplinary (Q1); Applied Mathematics (Q2); Engineering (miscellaneous) (Q2); Modeling and Simulation (Q2)";"Engineering; Mathematics; Multidisciplinary" +10522;13527;"Journal of Fish Diseases";journal;"13652761, 01407775";"Wiley-Blackwell Publishing Ltd";No;No;0,563;Q1;104;200;432;9746;1092;431;2,36;48,73;41,00;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1978-2026";"Veterinary (miscellaneous) (Q1); Aquatic Science (Q2)";"Agricultural and Biological Sciences; Veterinary" +10523;16723;"Journal of Intellectual and Developmental Disability";journal;"13668250, 14699532";"Informa Healthcare";No;No;0,563;Q1;72;65;127;2906;278;124;2,08;44,71;60,76;0;United Kingdom;Western Europe;"Informa Healthcare";"1970-1991, 1993-1994, 1996-2026";"Arts and Humanities (miscellaneous) (Q1); Education (Q2); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Medicine; Psychology; Social Sciences" +10524;23735;"Lingua";journal;"00243841";"Elsevier B.V.";No;No;0,563;Q1;79;89;251;6381;445;248;1,76;71,70;55,62;0;Netherlands;Western Europe;"Elsevier B.V.";"1949, 1952, 1954-1957, 1959, 1961-2026";"Linguistics and Language (Q1)";"Social Sciences" +10525;21101098297;"Pharmacological Research - Modern Chinese Medicine";journal;"26671425";"Elsevier B.V.";Yes;No;0,563;Q1;26;148;474;11581;1822;471;4,38;78,25;45,71;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Complementary and Alternative Medicine (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +10526;16533;"Phytochemical Analysis";journal;"09580344, 10991565";"John Wiley and Sons Ltd";No;No;0,563;Q1;91;169;310;8742;1121;310;3,58;51,73;46,10;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1990-2026";"Complementary and Alternative Medicine (Q1); Analytical Chemistry (Q2); Drug Discovery (Q2); Food Science (Q2); Medicine (miscellaneous) (Q2); Plant Science (Q2); Biochemistry (Q3); Molecular Medicine (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +10527;19700175231;"China Foundry";journal;"16726421, 23659459";"Springer Nature";Yes;No;0,563;Q2;30;81;195;3274;641;195;3,39;40,42;30,10;0;China;Asiatic Region;"Springer Nature";"2008-2026";"Materials Chemistry (Q2); Metals and Alloys (Q2)";"Materials Science" +10528;19700177406;"Dynamic Games and Applications";journal;"21530785, 21530793";"Springer Nature";No;No;0,563;Q2;33;124;166;5111;328;159;1,56;41,22;20,15;0;United States;Northern America;"Springer Nature";"2011-2026";"Applied Mathematics (Q2); Computational Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Graphics and Computer-Aided Design (Q2); Computer Science Applications (Q2); Economics and Econometrics (Q2); Statistics and Probability (Q2)";"Computer Science; Economics, Econometrics and Finance; Mathematics" +10529;21101041509;"Hip and Pelvis";journal;"22873260, 22873279";"Korean Hip Society";No;No;0,563;Q2;16;39;99;1077;197;98;1,90;27,62;13,67;1;South Korea;Asiatic Region;"Korean Hip Society";"2019-2025";"Orthopedics and Sports Medicine (Q2); Surgery (Q2)";"Medicine" +10530;12342;"International Journal of Control";journal;"00207179, 13665820";"Taylor and Francis Ltd.";No;No;0,563;Q2;135;298;736;10934;1595;732;2,20;36,69;28,07;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1965-2026";"Computer Science Applications (Q2); Control and Systems Engineering (Q2)";"Computer Science; Engineering" +10531;19700174917;"International Journal of Telemedicine and Applications";journal;"16876415, 16876423";"John Wiley and Sons Ltd";Yes;No;0,563;Q2;39;19;50;821;143;50;2,55;43,21;51,06;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Computer Networks and Communications (Q2); Medicine (miscellaneous) (Q2); Health Informatics (Q3); Health Information Management (Q3)";"Computer Science; Health Professions; Medicine" +10532;5800169167;"Journal of East Asian Studies";journal;"22346643, 15982408";"Cambridge University Press";Yes;No;0,563;Q2;34;17;63;1236;140;63;2,18;72,71;32,26;0;United Kingdom;Western Europe;"Cambridge University Press";"2002, 2008-2026";"Development (Q2); Economics and Econometrics (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Economics, Econometrics and Finance; Social Sciences" +10533;65096;"Journal of Musculoskeletal Neuronal Interactions";journal;"11087161";"International Society of Musculoskeletal and Neuronal Interactions";No;No;0,563;Q2;77;53;166;1761;366;157;1,84;33,23;32,89;0;Greece;Western Europe;"International Society of Musculoskeletal and Neuronal Interactions";"2002-2025";"Orthopedics and Sports Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10534;66325;"Maritime Engineering";journal;"17417597, 17517737";"Emerald Publishing";No;No;0,563;Q2;31;17;45;570;142;34;4,50;33,53;14,06;0;United Kingdom;Western Europe;"Emerald Publishing";"2001-2002, 2004-2025";"Ocean Engineering (Q2)";"Engineering" +10535;110086;"Micron";journal;"18784291, 09684328";"Elsevier Ltd";No;No;0,563;Q2;105;111;274;5224;828;272;3,08;47,06;38,43;0;United Kingdom;Western Europe;"Elsevier Ltd";"1978, 1980-1981, 1993-2026";"Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2); Structural Biology (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Materials Science; Physics and Astronomy" +10536;13788;"Powder Diffraction";journal;"08857156, 19457413";"Cambridge University Press";No;No;0,563;Q2;56;57;111;1535;196;106;2,42;26,93;26,09;0;United States;Northern America;"Cambridge University Press";"1986-2025";"Condensed Matter Physics (Q2); Instrumentation (Q2); Materials Science (miscellaneous) (Q2); Radiation (Q2)";"Materials Science; Physics and Astronomy" +10537;4700152731;"Public Library Quarterly";journal;"01616846, 15411540";"Routledge";No;No;0,563;Q2;26;112;99;4773;230;97;2,29;42,62;55,91;1;United States;Northern America;"Routledge";"1979-1986, 1988-2026";"Library and Information Sciences (Q2)";"Social Sciences" +10538;68956;"Rangelands";trade journal;"01900528, 1551501X";"Society for Range Management";No;No;0,563;Q2;40;37;73;1337;226;72;2,07;36,14;35,57;2;United States;Northern America;"Society for Range Management";"1985, 1989, 1992, 1994-2026";"Ecology (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2)";"Environmental Science; Social Sciences" +10539;20000195075;"Water Practice and Technology";journal;"1751231X";"IWA Publishing";Yes;Yes;0,563;Q2;35;176;720;8188;2126;719;2,89;46,52;30,02;0;United Kingdom;Western Europe;"IWA Publishing";"2011-2026";"Water Science and Technology (Q2)";"Environmental Science" +10540;21100407281;"Zeitschrift fur Kristallographie - Crystalline Materials";journal;"21944946, 21967105";"Walter de Gruyter GmbH";No;No;0,563;Q2;25;35;121;1962;289;121;3,39;56,06;38,32;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1930-1931, 2012-2026";"Condensed Matter Physics (Q2); Inorganic Chemistry (Q2); Materials Science (miscellaneous) (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +10541;21100780471;"Asian Studies";journal;"22325131, 23504226";"University of Ljubljana Press";Yes;Yes;0,562;Q1;12;53;126;1761;96;116;0,79;33,23;51,28;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2013-2026";"Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Philosophy (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +10542;19700188330;"Communication and Critical/ Cultural Studies";journal;"14791420, 14794233";"Routledge";No;No;0,562;Q1;35;34;95;1651;135;79;1,45;48,56;42,86;0;United States;Northern America;"Routledge";"2010-2026";"Cultural Studies (Q1); Communication (Q2)";"Social Sciences" +10543;21101042195;"International Journal of Police Science and Management";journal;"14781603, 14613557";"SAGE Publications Ltd";No;No;0,562;Q1;38;35;118;2033;266;118;1,86;58,09;51,85;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1998-2026";"Law (Q1)";"Social Sciences" +10544;17722;"Annales des Telecommunications/Annals of Telecommunications";journal;"00034347, 19589395";"Springer Paris";No;No;0,562;Q2;51;106;173;4303;578;161;3,14;40,59;24,27;0;France;Western Europe;"Springer Paris";"1946-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +10545;13766;"Canadian Journal of Ophthalmology";journal;"00084182, 17153360";"Elsevier B.V.";No;No;0,562;Q2;66;284;618;6598;722;380;1,26;23,23;41,19;0;Netherlands;Western Europe;"Elsevier B.V.";"1966-2026";"Medicine (miscellaneous) (Q2); Ophthalmology (Q2)";"Medicine" +10546;14533;"Development Growth and Differentiation";journal;"1440169X, 00121592";"Wiley-Blackwell Publishing Ltd";No;No;0,562;Q2;78;47;154;2041;216;142;1,42;43,43;30,24;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1969-2026";"Medicine (miscellaneous) (Q2); Developmental Biology (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10547;21100854823;"Infection Ecology and Epidemiology";journal;"20008686";"Taylor and Francis Ltd.";Yes;No;0,562;Q2;34;7;25;274;68;24;2,90;39,14;28,21;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012, 2014-2025";"Environmental Science (miscellaneous) (Q2); Epidemiology (Q3)";"Environmental Science; Medicine" +10548;24012;"International Journal of Environmental Analytical Chemistry";journal;"10290397, 03067319";"Taylor and Francis Ltd.";No;No;0,562;Q2;61;588;1629;35835;5836;1628;3,41;60,94;38,19;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Analytical Chemistry (Q2); Pollution (Q2); Public Health, Environmental and Occupational Health (Q2); Soil Science (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2); Environmental Chemistry (Q3); Health, Toxicology and Mutagenesis (Q3)";"Agricultural and Biological Sciences; Chemistry; Environmental Science; Medicine" +10549;19700187619;"International Journal of Strategic Communication";journal;"1553118X, 15531198";"Routledge";No;No;0,562;Q2;44;59;95;4662;301;94;3,09;79,02;58,14;0;United States;Northern America;"Routledge";"2009-2026";"Communication (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10550;12474;"Journal of Engineering and Applied Science";journal;"11101903, 25369512";"";Yes;Yes;0,562;Q2;31;273;502;11618;2135;502;4,24;42,56;25,93;0;Germany;Western Europe;"";"1996-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +10551;19096;"Journal of North African Studies";journal;"17439345, 13629387";"Routledge";No;No;0,562;Q2;35;64;157;3867;194;136;1,10;60,42;49,32;3;United Kingdom;Western Europe;"Routledge";"1996-2026";"Development (Q2); Geography, Planning and Development (Q2); Political Science and International Relations (Q2)";"Social Sciences" +10552;21101087907;"PSU Research Review";journal;"23984007, 23991747";"Emerald Group Holdings Ltd.";Yes;Yes;0,562;Q2;25;0;80;0;369;80;4,40;0,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Holdings Ltd.";"2017-2024";"Business, Management and Accounting (miscellaneous) (Q2); Computer Science Applications (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Education (Q2); Social Sciences (miscellaneous) (Q2)";"Business, Management and Accounting; Computer Science; Economics, Econometrics and Finance; Social Sciences" +10553;19940;"Turk Psikiyatri Dergisi";journal;"13002163, 26513463";"Turkish Association of Nervous and Mental Health";No;No;0,562;Q2;41;71;123;3239;238;109;1,92;45,62;56,28;0;Turkey;Middle East;"Turkish Association of Nervous and Mental Health";"2003-2025";"Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q3)";"Medicine" +10554;25965;"Hamostaseologie";journal;"25675761, 07209355";"Georg Thieme Verlag";No;No;0,562;Q3;43;73;200;2784;313;159;1,51;38,14;52,58;0;Germany;Western Europe;"Georg Thieme Verlag";"1981-2026";"Hematology (Q3)";"Medicine" +10555;19906;"Synapse";journal;"08874476, 10982396";"Wiley-Liss Inc.";No;No;0,562;Q4;119;27;63;1438;131;63;2,04;53,26;48,94;0;United States;Northern America;"Wiley-Liss Inc.";"1987-2026";"Cellular and Molecular Neuroscience (Q4)";"Neuroscience" +10556;33201;"Conference Record - International Conference on Communications";conference and proceedings;"05361486";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,562;-;137;1124;2995;19899;5592;2984;1,79;17,70;26,63;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1969, 1979-1987, 1989-2025";"Computer Networks and Communications; Electrical and Electronic Engineering; Media Technology";"Computer Science; Engineering" +10557;21100322122;"Al-Jami'ah";journal;"2338557X, 0126012X";"UIN Sunan Kalijaga";Yes;Yes;0,561;Q1;19;7;54;376;104;54;1,79;53,71;12,50;0;Indonesia;Asiatic Region;"UIN Sunan Kalijaga";"2003, 2010, 2012, 2014-2025";"Arts and Humanities (miscellaneous) (Q1); Religious Studies (Q1)";"Arts and Humanities" +10558;19700201301;"Chiropractic and Manual Therapies";journal;"2045709X";"BioMed Central Ltd";Yes;No;0,561;Q1;45;56;149;2779;362;135;2,03;49,63;39,22;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2011-2026";"Chiropractics (Q1); Complementary and Alternative Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Medicine" +10559;23457;"Journal of Comparative Physiology B: Biochemical, Systemic, and Environmental Physiology";journal;"1432136X, 01741578";"Springer Science and Business Media Deutschland GmbH";No;No;0,561;Q1;98;51;178;3394;405;176;2,43;66,55;48,56;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1974-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Biochemistry (Q3); Endocrinology (Q3); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +10560;19700170462;"Urban Policy and Research";journal;"14767244, 08111146";"Routledge";No;No;0,561;Q1;54;23;94;1590;176;84;1,58;69,13;59,21;1;United Kingdom;Western Europe;"Routledge";"1982-2026";"Urban Studies (Q1); Geography, Planning and Development (Q2)";"Social Sciences" +10561;24374;"British Dental Journal";journal;"00070610, 14765373";"Nature Publishing Group";No;No;0,561;Q2;107;1050;1961;8028;2032;813;0,92;7,65;50,85;0;United Kingdom;Western Europe;"Nature Publishing Group";"1945-1951, 1960-1961, 1965-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +10562;24599;"Computational Biology and Chemistry";journal;"14769271";"Elsevier Ltd";No;No;0,561;Q2;76;272;535;15502;2025;532;3,77;56,99;35,11;0;United Kingdom;Western Europe;"Elsevier Ltd";"2003-2026";"Computational Mathematics (Q2); Organic Chemistry (Q2); Biochemistry (Q3); Structural Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Mathematics" +10563;21100900363;"Frontiers in Materials";journal;"22968016";"Frontiers Media SA";Yes;No;0,561;Q2;77;292;1805;14395;6347;1683;3,45;49,30;27,35;0;Switzerland;Western Europe;"Frontiers Media SA";"2014-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +10564;21101211360;"Functional Food Science";journal;"27673146";"Functional Food Institute";No;No;0,561;Q2;14;57;78;2701;460;78;5,47;47,39;61,81;0;United States;Northern America;"Functional Food Institute";"2021-2026";"Food Science (Q2)";"Agricultural and Biological Sciences" +10565;22753;"International Journal of Environmental Health Research";journal;"09603123, 13691619";"Taylor and Francis Ltd.";No;No;0,561;Q2;68;402;647;20083;1840;645;2,56;49,96;46,17;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-2026";"Medicine (miscellaneous) (Q2); Pollution (Q2); Public Health, Environmental and Occupational Health (Q2); Health, Toxicology and Mutagenesis (Q3)";"Environmental Science; Medicine" +10566;26972;"Journal of Solid State Chemistry";journal;"1095726X, 00224596";"Academic Press Inc.";No;No;0,561;Q2;172;447;2002;22895;6839;2001;3,42;51,22;35,75;0;United States;Northern America;"Academic Press Inc.";"1969-2026";"Ceramics and Composites (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Inorganic Chemistry (Q2); Materials Chemistry (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +10567;21101048847;"Mental Health Clinician";journal;"21689709";"Allen Press Inc.";Yes;No;0,561;Q2;29;25;115;529;160;106;1,12;21,16;66,22;0;United States;Northern America;"Allen Press Inc.";"2011-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Neurology (clinical) (Q3); Neuropsychology and Physiological Psychology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Psychology" +10568;21100862294;"Neuropsychopharmacology Reports";journal;"2574173X";"John Wiley & Sons Inc.";Yes;No;0,561;Q2;27;110;260;4365;507;260;2,05;39,68;30,63;1;United States;Northern America;"John Wiley & Sons Inc.";"2018-2026";"Clinical Psychology (Q2); Pharmacology (Q3); Pharmacology (medical) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Psychology" +10569;21101044945;"Open Ceramics";journal;"26665395";"Elsevier B.V.";Yes;No;0,561;Q2;30;156;476;8564;1651;460;3,53;54,90;34,89;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Ceramics and Composites (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Biomaterials (Q3)";"Materials Science" +10570;26703;"Polish Archives of Internal Medicine";journal;"00323772, 18979483";"Medycyna Praktyczna Cholerzyn";Yes;No;0,561;Q2;51;276;702;5480;1145;558;1,54;19,86;45,40;0;Poland;Eastern Europe;"Medycyna Praktyczna Cholerzyn";"1953-2026";"Internal Medicine (Q2)";"Medicine" +10571;10800153309;"Romanian Reports in Physics";journal;"12211451, 18418759";"Publishing House of the Romanian Academy";No;No;0,561;Q2;45;67;203;2433;480;201;2,68;36,31;40,56;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2007-2025";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +10572;21101303341;"RSC Mechanochemistry";journal;"29768683";"Royal Society of Chemistry";Yes;No;0,561;Q2;9;95;59;5495;219;59;3,71;57,84;30,27;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2024-2026";"Chemistry (miscellaneous) (Q2); Inorganic Chemistry (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry" +10573;29785;"Russian Journal of Mathematical Physics";journal;"15556638, 10619208";"Pleiades Publishing";No;No;0,561;Q2;45;68;166;1430;312;166;2,07;21,03;31,65;0;United States;Northern America;"Pleiades Publishing";"1996-1997, 1999-2025";"Mathematical Physics (Q2); Statistical and Nonlinear Physics (Q2)";"Mathematics; Physics and Astronomy" +10574;6200180165;"Signal, Image and Video Processing";journal;"18631711, 18631703";"Springer London";No;No;0,561;Q2;66;1456;1599;51301;5667;1599;3,56;35,23;32,04;0;United Kingdom;Western Europe;"Springer London";"2007-2026";"Electrical and Electronic Engineering (Q2); Signal Processing (Q2)";"Computer Science; Engineering" +10575;21100243805;"Taiwan Journal of Ophthalmology";journal;"22115056, 22115072";"Wolters Kluwer Medknow Publications";Yes;Yes;0,561;Q2;27;93;246;3558;413;217;1,70;38,26;42,35;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2011, 2013-2025";"Ophthalmology (Q2)";"Medicine" +10576;130143;"Brazilian Journal of Microbiology";journal;"15178382, 16784405";"Springer Nature";Yes;No;0,561;Q3;100;253;877;12934;2424;867;2,53;51,12;50,98;0;Switzerland;Western Europe;"Springer Nature";"1992, 1994, 2000-2026";"Microbiology (Q3)";"Immunology and Microbiology" +10577;21100201015;"Archnet-IJAR: International Journal of Architectural Research";journal;"26316862, 19387806";"Emerald Publishing";Yes;No;0,560;Q1;31;100;139;5858;417;137;2,80;58,58;53,19;0;United Kingdom;Western Europe;"Emerald Publishing";"2011-2026";"Architecture (Q1); Cultural Studies (Q1); Urban Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Engineering; Social Sciences" +10578;21100384282;"Journal for Multicultural Education";journal;"20535368, 2053535X";"Emerald Group Publishing Ltd.";No;No;0,560;Q1;23;68;122;2792;296;117;2,64;41,06;65,63;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2014-2026";"Cultural Studies (Q1); Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +10579;2000147401;"Journal of the International Phonetic Association";journal;"14753502, 00251003";"Cambridge University Press";No;No;0,560;Q1;48;18;113;1075;105;111;0,89;59,72;45,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1971-1985, 1987-2026";"Anthropology (Q1); Linguistics and Language (Q1); Speech and Hearing (Q2)";"Health Professions; Social Sciences" +10580;21100364384;"Journal of Vibration Engineering and Technologies";journal;"25233920, 25233939";"Springer International Publishing";No;No;0,560;Q1;36;636;1168;29341;4261;1164;3,70;46,13;24,46;0;Switzerland;Western Europe;"Springer International Publishing";"2014-2026";"Acoustics and Ultrasonics (Q1); Mechanical Engineering (Q2)";"Engineering; Physics and Astronomy" +10581;6500153140;"Popular Music and Society";journal;"03007766, 17401712";"Routledge";No;No;0,560;Q1;39;32;102;1936;141;100;1,00;60,50;33,33;0;United Kingdom;Western Europe;"Routledge";"1971-1975, 1977-2001, 2003-2026";"Cultural Studies (Q1); Music (Q1)";"Arts and Humanities; Social Sciences" +10582;19700188900;"Social Psychology";journal;"18649335, 21512590";"Hogrefe Publishing GmbH";No;No;0,560;Q1;56;17;94;934;144;92;1,22;54,94;55,36;1;Germany;Western Europe;"Hogrefe Publishing GmbH";"2006, 2008-2026";"Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q2); Social Psychology (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Psychology; Social Sciences" +10583;23755;"Acta Odontologica Scandinavica";journal;"00016357, 15023850";"Medical Journals Sweden AB";Yes;No;0,560;Q2;85;86;263;3303;560;258;2,03;38,41;58,95;0;Sweden;Western Europe;"Medical Journals Sweden AB";"1939-2026";"Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Dentistry; Medicine" +10584;21100811517;"Birth Defects Research";journal;"24721727";"John Wiley and Sons Ltd";No;No;0,560;Q2;48;123;405;5495;781;383;1,91;44,67;54,28;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2000, 2017-2026";"Embryology (Q2); Pediatrics, Perinatology and Child Health (Q2); Developmental Biology (Q3); Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +10585;13809;"Canadian Journal of Remote Sensing";journal;"17127971, 07038992";"Taylor and Francis Ltd.";Yes;No;0,560;Q2;90;25;124;1524;274;107;2,49;60,96;31,03;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1975-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +10586;19900192165;"Financial Review";journal;"15406288, 07328516";"Wiley-Blackwell";No;No;0,560;Q2;57;79;111;4774;235;111;2,20;60,43;28,02;1;United States;Northern America;"Wiley-Blackwell";"1969-2026";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +10587;21101039874;"Functional Composites and Structures";journal;"26316331";"IOP Publishing Ltd.";No;No;0,560;Q2;26;44;123;2878;485;123;3,71;65,41;26,86;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2019-2026";"Ceramics and Composites (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +10588;17423;"Geneva Papers on Risk and Insurance: Issues and Practice";journal;"10185895, 14680440";"Springer Nature";No;No;0,560;Q2;46;36;105;1928;418;98;1,84;53,56;40,00;0;United States;Northern America;"Springer Nature";"1994, 1999-2026";"Accounting (Q2); Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +10589;25612;"International Journal of Computerized Dentistry";journal;"14634201";"Quintessenz Verlags-GmbH";No;No;0,560;Q2;43;32;105;205;206;95;1,69;6,41;32,76;0;Germany;Western Europe;"Quintessenz Verlags-GmbH";"1998-2025";"Computer Science Applications (Q2); Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)";"Computer Science; Dentistry; Medicine" +10590;29904;"International Journal of Radiation Biology";journal;"13623095, 09553002";"Taylor and Francis Ltd.";No;No;0,560;Q2;107;142;502;7025;1164;482;2,19;49,47;46,63;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1959-2026";"Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Health Professions; Medicine" +10591;21100239834;"Journal of Aerospace Information Systems";journal;"23273097";"American Institute of Aeronautics and Astronautics Inc. (AIAA)";No;No;0,560;Q2;50;79;214;3352;508;203;2,12;42,43;21,74;0;United States;Northern America;"American Institute of Aeronautics and Astronautics Inc. (AIAA)";"2013-2026";"Aerospace Engineering (Q2); Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +10592;16083;"Journal of Chemical Technology and Biotechnology";journal;"02682575, 10974660";"John Wiley and Sons Ltd";No;No;0,560;Q2;147;241;836;13040;2756;823;3,09;54,11;39,12;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1979-1981, 1983-2026";"Biotechnology (Q2); Chemical Engineering (miscellaneous) (Q2); Fuel Technology (Q2); Inorganic Chemistry (Q2); Organic Chemistry (Q2); Pollution (Q2); Waste Management and Disposal (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Energy; Environmental Science" +10593;25199;"Journal of Solid State Electrochemistry";journal;"14328488, 14330768";"Springer Verlag";No;No;0,560;Q2;105;437;888;24001;2899;876;3,32;54,92;34,97;0;Germany;Western Europe;"Springer Verlag";"1997-2026";"Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Materials Chemistry (Q2); Materials Science (miscellaneous) (Q2); Electrochemistry (Q3)";"Chemistry; Energy; Engineering; Materials Science; Physics and Astronomy" +10594;13783;"Journal of Voice";journal;"08921997, 18734588";"Elsevier Inc.";No;No;0,560;Q2;119;910;1254;36622;2887;1229;2,11;40,24;50,18;3;United States;Northern America;"Elsevier Inc.";"1987-2026";"LPN and LVN (Q2); Otorhinolaryngology (Q2); Speech and Hearing (Q2)";"Health Professions; Medicine; Nursing" +10595;21101020131;"Methods and Protocols";journal;"24099279";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,560;Q2;30;153;322;6742;831;319;2,54;44,07;47,85;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2018-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biotechnology (Q2); Structural Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +10596;21101308466;"PLOS Mental Health";journal;"28378156";"Public Library of Science";Yes;No;0,560;Q2;7;286;120;15758;219;107;1,83;55,10;55,61;2;United States;Northern America;"Public Library of Science";"2024-2026";"Health (social science) (Q2); Psychology (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2); Cognitive Neuroscience (Q3); Epidemiology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Neuroscience; Psychology; Social Sciences" +10597;13118;"Sarcoma";journal;"1357714X, 13691643";"John Wiley and Sons Ltd";Yes;No;0,560;Q2;57;0;26;0;53;26;2,90;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"1997-2024";"Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)";"Medicine" +10598;17077;"Acta Veterinaria Scandinavica";journal;"17510147, 0044605X";"BioMed Central Ltd";Yes;No;0,559;Q1;71;55;157;2095;320;157;2,03;38,09;57,91;0;United Kingdom;Western Europe;"BioMed Central Ltd";"1960-2026";"Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Veterinary" +10599;22875;"Journal of Forestry";journal;"00221201, 19383746";"Springer International Publishing";No;No;0,559;Q1;91;54;143;3232;309;139;2,03;59,85;30,86;0;Switzerland;Western Europe;"Springer International Publishing";"1919, 1930, 1941, 1963, 1969-1990, 1992-2026";"Forestry (Q1); Plant Science (Q2)";"Agricultural and Biological Sciences" +10600;4700151610;"Journal of Plant Diseases and Protection";journal;"18613829, 18613837";"Springer Science and Business Media Deutschland GmbH";No;No;0,559;Q1;47;192;467;12351;1522;464;3,07;64,33;41,43;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2006-2026";"Horticulture (Q1); Agronomy and Crop Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +10601;13800154701;"Open House International";journal;"26339838, 01682601";"Emerald Group Publishing Ltd.";No;No;0,559;Q1;21;55;133;3711;415;132;3,36;67,47;48,74;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005-2026";"Architecture (Q1); Urban Studies (Q1); Geography, Planning and Development (Q2)";"Engineering; Social Sciences" +10602;21100936546;"Chinese Neurosurgical Journal";journal;"20574967";"BioMed Central Ltd";Yes;Yes;0,559;Q2;19;32;114;1181;199;106;1,74;36,91;27,10;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Surgery (Q2); Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +10603;21101262279;"Discover Education";journal;"27315525";"";Yes;No;0,559;Q2;19;581;356;32413;1223;353;3,47;55,79;44,90;1;Switzerland;Western Europe;"";"2022-2026";"Education (Q2)";"Social Sciences" +10604;13198;"Ethnicity and Disease";journal;"19450826, 1049510X";"Ethnicity and Disease, Inc.";No;No;0,559;Q2;84;18;115;179;143;109;1,04;9,94;60,50;0;United States;Northern America;"Ethnicity and Disease, Inc.";"1991-1994, 1996-2025";"Medicine (miscellaneous) (Q2); Epidemiology (Q3)";"Medicine" +10605;21101226627;"Frontiers in Virology";journal;"2673818X";"Frontiers Media SA";Yes;No;0,559;Q2;15;31;205;2079;343;190;1,78;67,06;43,69;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Infectious Diseases (Q2); Applied Microbiology and Biotechnology (Q3); Microbiology (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine" +10606;19900192316;"International Journal of Architectural Computing";journal;"20483988, 14780771";"SAGE Publications Inc.";No;No;0,559;Q2;29;78;126;3324;379;114;3,58;42,62;37,84;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2006, 2011-2026";"Building and Construction (Q2); Computer Graphics and Computer-Aided Design (Q2); Computer Science Applications (Q2)";"Computer Science; Engineering" +10607;29495;"International Journal of Biological Markers";journal;"17246008, 03936155";"Wichtig Publishing Srl";Yes;No;0,559;Q2;50;27;109;920;222;107;2,03;34,07;51,45;0;Italy;Western Europe;"Wichtig Publishing Srl";"1986-2026";"Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Clinical Biochemistry (Q3); Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10608;21100241220;"International Transactions on Electrical Energy Systems";journal;"20507038";"John Wiley and Sons Inc";Yes;No;0,559;Q2;68;114;471;5063;1600;471;3,52;44,41;23,19;0;China;Asiatic Region;"John Wiley and Sons Inc";"2012-2026";"Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Modeling and Simulation (Q2)";"Energy; Engineering; Mathematics" +10609;18610;"Molecular Imaging";journal;"15353508, 15360121";"SAGE Publications Inc.";Yes;No;0,559;Q2;69;4;41;264;79;41;2,25;66,00;34,78;0;United States;Northern America;"SAGE Publications Inc.";"2002-2025";"Biotechnology (Q2); Condensed Matter Physics (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Biomedical Engineering (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine; Physics and Astronomy" +10610;20600195620;"Polymers from Renewable Resources";journal;"20412479, 20451377";"RAPRA Technology Ltd.";No;No;0,559;Q2;21;12;60;770;219;52;3,87;64,17;42,86;0;United Kingdom;Western Europe;"RAPRA Technology Ltd.";"2010-2026";"Polymers and Plastics (Q2)";"Materials Science" +10611;24230;"Review of World Economics";journal;"16102886, 16102878";"Springer Science and Business Media Deutschland GmbH";No;No;0,559;Q2;71;70;113;3996;271;113;2,18;57,09;33,33;10;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2003-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +10612;26489;"Starch/Staerke";journal;"00389056, 1521379X";"Wiley-VCH Verlag";No;No;0,559;Q2;112;224;490;11199;1869;484;3,57;50,00;45,92;0;Germany;Western Europe;"Wiley-VCH Verlag";"1949-1959, 1961-2026";"Food Science (Q2); Organic Chemistry (Q2)";"Agricultural and Biological Sciences; Chemistry" +10613;18483;"Cellular Microbiology";journal;"14625814, 14625822";"John Wiley and Sons Ltd";Yes;No;0,559;Q3;168;17;45;1033;97;45;2,43;60,76;61,63;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1999-2025";"Immunology (Q3); Microbiology (Q3); Virology (Q3)";"Immunology and Microbiology" +10614;21101320633;"EngMedicine";journal;"29504899";"Elsevier B.V.";Yes;No;0,559;Q3;5;36;27;2292;75;24;2,78;63,67;37,45;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Biomedical Engineering (Q3)";"Engineering" +10615;21101076713;"A e C - Revista de Direito Administrativo e Constitucional";journal;"15163210, 19844182";"Instituto de Direito Romeu Felipe Bacellar";No;No;0,558;Q1;9;36;109;1692;59;109;0,52;47,00;32,56;0;Brazil;Latin America;"Instituto de Direito Romeu Felipe Bacellar";"2019-2025";"Law (Q1)";"Social Sciences" +10616;21101066325;"Advances in Agriculture";journal;"23147539, 2356654X";"John Wiley and Sons Ltd";Yes;No;0,558;Q1;28;78;175;5020;639;175;4,53;64,36;16,37;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2014-2026";"Animal Science and Zoology (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2); Agronomy and Crop Science (Q2); Food Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences" +10617;5600156543;"Netherlands Quarterly of Human Rights";journal;"01693441";"Stichting Studie- en Informatiecentrum Mensenrechten";Yes;No;0,558;Q1;29;14;57;1186;92;48;1,38;84,71;71,43;0;Netherlands;Western Europe;"Stichting Studie- en Informatiecentrum Mensenrechten";"1999, 2006-2025";"Law (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10618;21101077298;"ACS Food Science and Technology";journal;"26921944";"American Chemical Society";No;No;0,558;Q2;32;410;708;24973;2404;699;3,13;60,91;46,72;2;United States;Northern America;"American Chemical Society";"2021-2026";"Analytical Chemistry (Q2); Chemistry (miscellaneous) (Q2); Food Science (Q2); Organic Chemistry (Q2)";"Agricultural and Biological Sciences; Chemistry" +10619;21101045274;"Applied Set-Valued Analysis and Optimization";journal;"25627783, 25627775";"Biemdas Academic Publishers";No;No;0,558;Q2;13;23;80;636;104;77;1,57;27,65;24,07;0;Canada;Northern America;"Biemdas Academic Publishers";"2019-2026";"Analysis (Q2); Applied Mathematics (Q2); Control and Optimization (Q2); Mathematics (miscellaneous) (Q2); Modeling and Simulation (Q2); Numerical Analysis (Q2)";"Mathematics" +10620;18803;"Asia Pacific Business Review";journal;"1743792X, 13602381";"Routledge";No;No;0,558;Q2;49;145;166;11209;541;163;3,17;77,30;42,33;0;United Kingdom;Western Europe;"Routledge";"1994-2026";"Business and International Management (Q2)";"Business, Management and Accounting" +10621;24937;"Dental Materials Journal";journal;"18811361, 02874547";"Japanese Society for Dental Materials and Devices";No;No;0,558;Q2;80;75;324;3134;734;324;1,98;41,79;30,79;0;Japan;Asiatic Region;"Japanese Society for Dental Materials and Devices";"1982-2026";"Ceramics and Composites (Q2); Dentistry (miscellaneous) (Q2)";"Dentistry; Materials Science" +10622;24575;"Early Child Development and Care";journal;"14768275, 03004430";"Taylor and Francis Ltd.";No;No;0,558;Q2;65;103;411;6438;803;408;1,69;62,50;74,13;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-1974, 1976, 1978-2026";"Developmental and Educational Psychology (Q2); Pediatrics (Q2); Social Psychology (Q2)";"Nursing; Psychology" +10623;29735;"Foot";journal;"09582592, 15322963";"Churchill Livingstone";No;No;0,558;Q2;48;38;193;1175;400;191;1,56;30,92;33,94;0;United Kingdom;Western Europe;"Churchill Livingstone";"1991-2026";"Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2); Podiatry (Q2)";"Health Professions; Medicine" +10624;5700164101;"French Politics";journal;"14763427, 14763419";"Palgrave Macmillan Ltd.";No;No;0,558;Q2;20;32;92;1954;110;65;1,02;61,06;38,64;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2005, 2009-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10625;144693;"Geology in China";journal;"10003657";"Science Press";No;No;0,558;Q2;61;26;467;1199;809;456;1,76;46,12;25,41;0;China;Asiatic Region;"Science Press";"2005-2025";"Geology (Q2)";"Earth and Planetary Sciences" +10626;21100215177;"International Journal of Surgical Oncology";journal;"20901410, 20901402";"John Wiley and Sons Ltd";Yes;No;0,558;Q2;32;0;19;0;48;19;1,57;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2011-2024";"Surgery (Q2); Oncology (Q3)";"Medicine" +10627;21101174385;"JMIR Bioinformatics and Biotechnology";journal;"25633570";"JMIR Publications Inc.";Yes;No;0,558;Q2;9;20;46;920;139;44;4,36;46,00;37,04;0;Canada;Northern America;"JMIR Publications Inc.";"2020-2026";"Biotechnology (Q2); Applied Microbiology and Biotechnology (Q3); Bioengineering (Q3); Genetics (Q3); Health Informatics (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology; Medicine" +10628;28224;"Journal of Nursing Administration";journal;"00020443, 15390721";"Lippincott Williams and Wilkins Ltd.";No;No;0,558;Q2;96;146;411;1975;665;399;1,41;13,53;81,97;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1971-2026";"Leadership and Management (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +10629;144644;"Library Management";journal;"01435124";"Emerald Group Publishing Ltd.";No;No;0,558;Q2;43;34;119;1470;274;117;2,04;43,24;39,06;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1979-2025";"Library and Information Sciences (Q2)";"Social Sciences" +10630;25937;"Macromolecular Chemistry and Physics";journal;"10221352, 15213935";"Wiley-VCH Verlag";No;No;0,558;Q2;137;307;659;18210;1943;652;3,08;59,32;34,42;0;Germany;Western Europe;"Wiley-VCH Verlag";"1994-2026";"Condensed Matter Physics (Q2); Materials Chemistry (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2); Polymers and Plastics (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +10631;12655;"Nuclear Data Sheets";journal;"00903752, 10959904";"Academic Press Inc.";No;No;0,558;Q2;74;16;45;5613;124;45;2,52;350,81;19,05;0;United States;Northern America;"Academic Press Inc.";"1971-2026";"Nuclear and High Energy Physics (Q2)";"Physics and Astronomy" +10632;14622;"Social Work in Health Care";journal;"00981389, 1541034X";"Routledge";No;No;0,558;Q2;55;17;92;852;182;88;1,63;50,12;60,32;0;United Kingdom;Western Europe;"Routledge";"1975-2026";"Community and Home Care (Q2); Psychiatry and Mental Health (Q3); Social Work (Q3)";"Medicine; Nursing; Social Sciences" +10633;21100446515;"Sport, Business and Management: An International Journal";journal;"20426798, 2042678X";"Emerald Publishing";No;No;0,558;Q2;33;50;112;3708;302;109;2,33;74,16;25,36;0;United Kingdom;Western Europe;"Emerald Publishing";"2011-2026";"Business and International Management (Q2); Marketing (Q2); Strategy and Management (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting" +10634;21101307581;"Trends in Higher Education";journal;"28134346";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,558;Q2;12;77;116;4771;377;114;3,17;61,96;62,50;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2026";"Education (Q2); Psychology (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Psychology; Social Sciences" +10635;21101140109;"Annals of 3D Printed Medicine";journal;"26669641";"Elsevier Masson s.r.l.";Yes;No;0,558;Q3;21;28;100;1711;445;99;3,65;61,11;32,00;0;France;Western Europe;"Elsevier Masson s.r.l.";"2021-2026";"Biomedical Engineering (Q3); Health Informatics (Q3)";"Engineering; Medicine" +10636;20752;"Critical Reviews in Immunology";journal;"10408401";"Begell House Inc.";No;No;0,558;Q3;91;39;97;2172;180;90;1,91;55,69;46,46;0;United States;Northern America;"Begell House Inc.";"1980-2026";"Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +10637;21100396512;"International Sports Law Journal";journal;"22135154, 15677559";"Springer Science + Business Media";No;No;0,557;Q1;16;42;87;2291;180;77;2,07;54,55;26,79;0;United States;Northern America;"Springer Science + Business Media";"2013-2026";"Law (Q1)";"Social Sciences" +10638;24099;"Acta Applicandae Mathematicae";journal;"15729036, 01678019";"Springer Netherlands";No;No;0,557;Q2;56;56;236;2078;285;236;1,24;37,11;26,89;0;Netherlands;Western Europe;"Springer Netherlands";"1983-2026";"Applied Mathematics (Q2)";"Mathematics" +10639;19700170911;"CEAS Space Journal";journal;"18682502, 18682510";"Springer-Verlag Wien";No;No;0,557;Q2;30;129;170;4498;435;164;2,23;34,87;17,77;0;Austria;Western Europe;"Springer-Verlag Wien";"2011-2026";"Aerospace Engineering (Q2); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Engineering" +10640;29582;"Chinese Journal of Traumatology - English Edition";journal;"10081275";"Elsevier B.V.";Yes;Yes;0,557;Q2;42;102;189;3143;471;185;2,45;30,81;30,73;0;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Emergency Medicine (Q2); Public Health, Environmental and Occupational Health (Q2); Surgery (Q2); Orthopedics and Sports Medicine (Q3)";"Medicine" +10641;21100872725;"Coatings";journal;"20796412";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,557;Q2;100;1488;5655;70518;20580;5507;3,61;47,39;35,90;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Materials Chemistry (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)";"Materials Science; Physics and Astronomy" +10642;21101320622;"Decoding Infection and Transmission";journal;"29499240";"KeAi Publishing Communications Ltd.";Yes;No;0,557;Q2;7;25;23;1650;71;20;3,09;66,00;36,27;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2023-2026";"Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +10643;16405;"East Asia";journal;"18746284, 10966838";"Springer Netherlands";No;No;0,557;Q2;27;37;63;2612;149;63;2,15;70,59;17,31;1;Netherlands;Western Europe;"Springer Netherlands";"1996-2026";"Development (Q2); Geography, Planning and Development (Q2); Political Science and International Relations (Q2)";"Social Sciences" +10644;16674;"Journal of Child Neurology";journal;"17088283, 08830738";"SAGE Publications Inc.";No;No;0,557;Q2;128;190;249;5339;517;235;1,79;28,10;60,82;0;United States;Northern America;"SAGE Publications Inc.";"1986-2026";"Pediatrics, Perinatology and Child Health (Q2); Neurology (clinical) (Q3)";"Medicine" +10645;19700201603;"Journal of Nanotechnology";journal;"16879503, 16879511";"John Wiley and Sons Ltd";Yes;No;0,557;Q2;51;60;75;4249;329;75;3,24;70,82;36,47;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +10646;21182;"Journal of Porous Materials";journal;"15734854, 13802224";"Springer Netherlands";No;No;0,557;Q2;73;194;524;10211;1818;524;3,51;52,63;41,72;0;Netherlands;Western Europe;"Springer Netherlands";"1995-2026";"Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +10647;21100836333;"Matematychni Studii";journal;"10274634, 24110620";"VNTL Publishers";Yes;Yes;0,557;Q2;16;40;126;779;147;126;1,29;19,48;42,31;0;Ukraine;Eastern Europe;"VNTL Publishers";"2017-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +10648;21100810500;"Social Sciences";journal;"20760760";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,557;Q2;59;723;1971;44884;5147;1928;2,54;62,08;62,05;7;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +10649;27418;"Transportation Research Record";journal;"03611981, 21694052";"SAGE Publications Ltd";No;No;0,557;Q2;166;1110;2605;46446;6942;2602;2,65;41,84;28,32;10;United States;Northern America;"SAGE Publications Ltd";"1974-1990, 1993-2026";"Civil and Structural Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +10650;21101021863;"Water Conservation and Management";journal;"25235664, 25235672";"Zibeline International Publishing Sdn. Bhd.";Yes;No;0,557;Q2;18;98;100;4131;387;99;4,48;42,15;40,79;0;Malaysia;Asiatic Region;"Zibeline International Publishing Sdn. Bhd.";"2017-2026";"Industrial and Manufacturing Engineering (Q2); Ocean Engineering (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2)";"Engineering; Environmental Science" +10651;21101256426;"Wind";journal;"2674032X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,557;Q2;12;35;92;1734;270;91;2,80;49,54;23,81;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Energy (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering; Environmental Science" +10652;18486;"Cellular Physiology and Biochemistry";journal;"14219778, 10158987";"Cell Physiol Biochem Press GmbH & Co KG";Yes;No;0,557;Q3;123;65;143;5833;315;141;2,18;89,74;48,22;0;Germany;Western Europe;"Cell Physiol Biochem Press GmbH & Co KG";"1987, 1991-2026";"Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology" +10653;29979;"Journal of Psychosocial Oncology";journal;"07347332, 15407586";"Routledge";No;No;0,557;Q3;56;71;164;3156;358;160;2,04;44,45;68,25;0;United States;Northern America;"Routledge";"1983-2026";"Applied Psychology (Q3); Oncology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +10654;25151;"Journal of Toxicology and Environmental Health - Part A: Current Issues";journal;"10872620, 15287394";"Taylor and Francis Ltd.";No;No;0,557;Q3;105;80;206;5175;540;206;2,78;64,69;45,68;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996, 1998-2026";"Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +10655;21101290571;"Neuroglia";journal;"25716980";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,557;Q3;14;46;63;5454;136;61;2,28;118,57;39,20;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2018, 2021-2025";"Neuroscience (miscellaneous) (Q3)";"Neuroscience" +10656;20132;"Therapies";journal;"00405957, 19585578";"Elsevier Masson s.r.l.";No;No;0,557;Q3;46;109;320;3179;443;203;1,42;29,17;57,88;0;France;Western Europe;"Elsevier Masson s.r.l.";"1947-1948, 1950-2026";"Pharmacology (medical) (Q3)";"Medicine" +10657;21100941752;"Advanced Theory and Simulations";journal;"25130390";"Wiley-VCH Verlag";No;No;0,556;Q1;53;346;653;19009;2097;650;3,25;54,94;26,13;0;Germany;Western Europe;"Wiley-VCH Verlag";"2018-2026";"Multidisciplinary (Q1); Modeling and Simulation (Q2); Numerical Analysis (Q2); Statistics and Probability (Q2)";"Mathematics; Multidisciplinary" +10658;21100872043;"Epidemiologia e Servicos de Saude";journal;"22379622, 16794974";"Ministry of Health";Yes;Yes;0,556;Q1;34;225;246;4406;396;217;1,21;19,58;63,47;0;Brazil;Latin America;"Ministry of Health";"2016-2026";"Multidisciplinary (Q1); Medicine (miscellaneous) (Q2); Epidemiology (Q3)";"Medicine; Multidisciplinary" +10659;21100978582;"Herpetozoa";journal;"10134425, 2682955X";"Pensoft Publishers";Yes;No;0,556;Q1;14;35;109;1715;150;109;1,28;49,00;27,13;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2011, 2019-2026";"Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10660;30063;"Journal of Psychology and Theology";journal;"23281162, 00916471";"Rosemead School of Psychology";No;No;0,556;Q1;44;29;101;1529;148;100;1,76;52,72;51,61;0;United States;Northern America;"Rosemead School of Psychology";"1990, 1992, 1996-2026";"Religious Studies (Q1); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Psychology" +10661;21101146512;"Open Access Journal of Sports Medicine";journal;"11791543";"Dove Medical Press Ltd";Yes;No;0,556;Q1;15;23;40;1482;101;40;2,23;64,43;35,29;0;United Kingdom;Western Europe;"Dove Medical Press Ltd";"2013-2015, 2019-2026";"Complementary and Manual Therapy (Q1); Occupational Therapy (Q1); Optometry (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Podiatry (Q2); Orthopedics and Sports Medicine (Q3)";"Health Professions; Medicine" +10662;26516;"Annals of the Academy of Medicine Singapore";journal;"29724066, 03044602";"Academy of Medicine Singapore";Yes;No;0,556;Q2;72;109;397;2776;465;183;1,11;25,47;39,69;0;Singapore;Asiatic Region;"Academy of Medicine Singapore";"1973-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +10663;19600162140;"Asian Review of Accounting";journal;"17588863, 13217348";"Emerald Group Publishing Ltd.";No;No;0,556;Q2;38;70;103;5191;429;103;4,60;74,16;39,08;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1992, 1994-2026";"Accounting (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +10664;13334;"Comptes Rendus - Palevol";journal;"16310683, 1777571X";"Academie des sciences";No;No;0,556;Q2;60;24;103;2336;159;103;1,32;97,33;23,33;0;France;Western Europe;"Academie des sciences";"2002-2025";"Paleontology (Q2)";"Earth and Planetary Sciences" +10665;19700174915;"Current Urology";journal;"16617649, 16617657";"Lippincott Williams and Wilkins";Yes;Yes;0,556;Q2;26;69;169;2292;292;159;1,79;33,22;27,75;0;United States;Northern America;"Lippincott Williams and Wilkins";"2008-2026";"Reproductive Medicine (Q2); Urology (Q2); Oncology (Q3)";"Medicine" +10666;21101061831;"Grey Systems";journal;"20439385, 20439377";"Emerald Group Publishing Ltd.";No;No;0,556;Q2;35;51;124;2105;444;121;3,57;41,27;39,86;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2026";"Applied Mathematics (Q2); Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q2)";"Computer Science; Engineering; Mathematics" +10667;26026;"IEEE Transactions on Applied Superconductivity";journal;"15582515, 10518223";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,556;Q2;104;672;2415;15539;4236;2406;1,82;23,12;20,74;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1991-2026";"Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +10668;15071;"International Journal of Adolescent Medicine and Health";journal;"03340139, 21910278";"Walter de Gruyter GmbH";No;No;0,556;Q2;49;53;227;2026;464;224;1,66;38,23;57,85;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1985-1989, 1991-1995, 1997-2026";"Pediatrics, Perinatology and Child Health (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +10669;21100856029;"International Journal of Science Education, Part B: Communication and Public Engagement";journal;"21548455, 21548463";"Taylor and Francis Ltd.";No;No;0,556;Q2;35;54;81;2799;222;78;2,54;51,83;63,41;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Communication (Q2); Education (Q2)";"Social Sciences" +10670;12179;"Journal of Luminescence";journal;"00222313";"Elsevier B.V.";No;No;0,556;Q2;143;622;2071;31508;7743;2066;3,95;50,66;34,31;0;Netherlands;Western Europe;"Elsevier B.V.";"1970-2026";"Atomic and Molecular Physics, and Optics (Q2); Biophysics (Q2); Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Physics and Astronomy" +10671;21101263089;"Journal of Public Health (Germany)";journal;"21981833, 16132238";"";No;No;0,556;Q2;49;500;761;21927;1559;751;2,25;43,85;55,55;13;Germany;Western Europe;"";"1980-1983, 1993-1996, 2004-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +10672;17800156702;"Mineralogia";journal;"18998526, 18998291";"De Gruyter Open Ltd";Yes;Yes;0,556;Q2;14;12;25;471;47;25;1,25;39,25;34,38;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2006, 2008-2012, 2014-2026";"Geochemistry and Petrology (Q2); Geology (Q2)";"Earth and Planetary Sciences" +10673;29442;"Quest";journal;"15432750, 00336297";"Taylor and Francis Ltd.";No;No;0,556;Q2;72;58;85;3295;172;85;1,85;56,81;48,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1963-2026";"Education (Q2); Sports Science (Q3)";"Health Professions; Social Sciences" +10674;24030;"Respiratory Physiology and Neurobiology";journal;"18781519, 15699048";"Elsevier B.V.";No;No;0,556;Q2;119;92;294;4293;555;286;2,03;46,66;40,33;0;Netherlands;Western Europe;"Elsevier B.V.";"2002-2026";"Pulmonary and Respiratory Medicine (Q2); Neuroscience (miscellaneous) (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +10675;21100324362;"Urology Practice";journal;"23520787, 23520779";"Lippincott Williams and Wilkins";No;No;0,556;Q2;20;164;662;1859;432;269;0,67;11,34;33,79;0;United States;Northern America;"Lippincott Williams and Wilkins";"2014-2025";"Urology (Q2)";"Medicine" +10676;10300153342;"Journal of Medical Toxicology";journal;"15569039, 19376995";"Springer";Yes;No;0,556;Q3;67;59;164;1013;205;105;1,18;17,17;38,74;0;United States;Northern America;"Springer";"2005-2026";"Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +10677;24754;"Anuario de Estudios Americanos";journal;"19884273, 02105810";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,555;Q1;11;19;71;1095;42;67;0,43;57,63;42,86;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1986, 1999, 2001, 2010-2025";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +10678;21101055039;"Cities and Health";journal;"23748834";"Taylor and Francis Ltd.";No;No;0,555;Q1;30;182;313;10436;728;274;2,05;57,34;56,77;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Urban Studies (Q1); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Social Sciences" +10679;19700169948;"Fashion Practice";journal;"17569370, 17569389";"Routledge";No;No;0,555;Q1;22;33;72;1465;191;59;2,04;44,39;68,12;0;United Kingdom;Western Europe;"Routledge";"2015-2026";"Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +10680;21100788802;"Forensic Chemistry";journal;"24681709";"Elsevier B.V.";No;No;0,555;Q1;34;74;205;3049;582;202;3,06;41,20;44,64;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Law (Q1); Analytical Chemistry (Q2); Materials Chemistry (Q2); Pathology and Forensic Medicine (Q2); Physical and Theoretical Chemistry (Q2); Spectroscopy (Q2)";"Chemistry; Materials Science; Medicine; Social Sciences" +10681;21100218047;"Journal of the North Atlantic";journal;"19351933, 19351984";"Eagle Hill Foundation";No;No;0,555;Q1;11;0;3;0;6;3;2,00;0,00;0,00;0;United States;Northern America;"Eagle Hill Foundation";"2012, 2014-2020, 2022, 2024";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +10682;17575;"Law and Policy";journal;"02658240, 14679930";"Wiley-Blackwell Publishing Ltd";No;No;0,555;Q1;58;17;58;1613;138;58;2,08;94,88;51,52;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1979-2026";"Law (Q1); Sociology and Political Science (Q2)";"Social Sciences" +10683;21100900274;"AEM Education and Training";journal;"24725390";"John Wiley & Sons Inc.";No;No;0,555;Q2;30;125;312;3349;511;268;1,45;26,79;51,66;0;United States;Northern America;"John Wiley & Sons Inc.";"2017-2026";"Education (Q2); Emergency Medicine (Q2); Emergency Nursing (Q2)";"Medicine; Nursing; Social Sciences" +10684;21100829268;"Applied Sciences (Switzerland)";journal;"20763417";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,555;Q2;197;13264;38386;655788;142518;37639;3,62;49,44;33,41;9;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Computer Science Applications (Q2); Engineering (miscellaneous) (Q2); Fluid Flow and Transfer Processes (Q2); Instrumentation (Q2); Materials Science (miscellaneous) (Q2); Process Chemistry and Technology (Q3)";"Chemical Engineering; Computer Science; Engineering; Materials Science; Physics and Astronomy" +10685;21101046172;"Cogent Food and Agriculture";journal;"23311932";"Informa Healthcare";Yes;No;0,555;Q2;61;367;759;23985;2761;759;3,67;65,35;35,38;3;United Kingdom;Western Europe;"Informa Healthcare";"2015-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences" +10686;21101251280;"Frontiers in Sleep";journal;"28132890";"Frontiers Media SA";Yes;No;0,555;Q2;9;54;151;2452;269;144;1,76;45,41;52,68;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2); Neuroscience (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Neuroscience" +10687;21100228077;"Higher Education, Skills and Work-based Learning";journal;"2042390X, 20423896";"Emerald Publishing";No;No;0,555;Q2;34;114;246;6510;837;242;3,30;57,11;45,83;0;United Kingdom;Western Europe;"Emerald Publishing";"2010-2026";"Education (Q2); Life-span and Life-course Studies (Q3)";"Social Sciences" +10688;21100860443;"International Journal of Optimization and Control: Theories and Applications";journal;"21460957";"AccScience Publishing";Yes;No;0,555;Q2;17;38;78;1607;229;78;3,16;42,29;32,26;0;Turkey;Middle East;"AccScience Publishing";"2018-2025";"Applied Mathematics (Q2); Control and Optimization (Q2)";"Mathematics" +10689;21100438074;"Journal of Modelling in Management";journal;"17465672, 17465664";"Emerald Publishing";No;No;0,555;Q2;49;111;233;8395;1082;230;4,79;75,63;28,52;0;United Kingdom;Western Europe;"Emerald Publishing";"2006-2026";"Decision Sciences (miscellaneous) (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +10690;21100790347;"Journal of Small Business Strategy";journal;"10818510, 23801751";"Small Business Institute";Yes;Yes;0,555;Q2;27;24;70;2105;254;70;3,32;87,71;33,82;0;United States;Northern America;"Small Business Institute";"1994, 2013-2026";"Strategy and Management (Q2)";"Business, Management and Accounting" +10691;21100330714;"Journal of Sport Psychology in Action";journal;"21520712, 21520704";"Routledge";No;No;0,555;Q2;32;48;75;1093;154;70;1,71;22,77;46,72;0;United States;Northern America;"Routledge";"2010-2026";"Human Factors and Ergonomics (Q2); Social Psychology (Q2); Applied Psychology (Q3)";"Psychology; Social Sciences" +10692;21100777369;"Managerial Finance";journal;"03074358, 17587743";"Emerald Publishing";No;No;0,555;Q2;56;147;296;7746;1079;295;3,42;52,69;32,11;0;United Kingdom;Western Europe;"Emerald Publishing";"1996-2026";"Business, Management and Accounting (miscellaneous) (Q2); Finance (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +10693;21100860011;"Physical Activity Review";journal;"23005076";"PPHU Projack";Yes;No;0,555;Q2;16;26;80;990;175;79;2,73;38,08;34,48;0;Poland;Eastern Europe;"PPHU Projack";"2017-2026";"Education (Q2); Health (social science) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3)";"Health Professions; Medicine; Social Sciences" +10694;16949;"Physiotherapy Research International";journal;"14712865, 13582267";"Wiley-Blackwell";No;No;0,555;Q2;62;113;203;4501;418;201;1,88;39,83;48,55;0;United States;Northern America;"Wiley-Blackwell";"1996-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions" +10695;28160;"Issues in Mental Health Nursing";journal;"10964673, 01612840";"Informa Healthcare";No;No;0,555;Q3;78;148;455;6487;897;370;1,72;43,83;68,68;1;United Kingdom;Western Europe;"Informa Healthcare";"1978-1986, 1988-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +10696;21101019390;"Personality Neuroscience";journal;"25139886";"Cambridge University Press";Yes;No;0,555;Q3;11;6;25;638;55;24;1,86;106,33;70,59;0;United States;Northern America;"Cambridge University Press";"2018-2026";"Behavioral Neuroscience (Q3); Cognitive Neuroscience (Q3); Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Neuroscience" +10697;31003;"Conference Proceedings - IEEE Applied Power Electronics Conference and Exposition - APEC";conference and proceedings;"10482334, 24706647";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,555;-;104;513;1349;8960;2058;1343;1,58;17,47;16,96;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992-2025";"Electrical and Electronic Engineering";"Engineering" +10698;145653;"IEEE Wireless Communications and Networking Conference, WCNC";conference and proceedings;"15253511";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,555;-;98;724;1742;12328;3371;1733;1,82;17,03;26,36;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1999, 2002-2003, 2005-2010, 2012-2014, 2016-2025";"Engineering (miscellaneous)";"Engineering" +10699;5800207863;"Eesti Rakenduslingvistika Uhingu Aastaraamat";journal;"22280677, 17362563";"Estonian Association Applied Linguists";Yes;Yes;0,554;Q1;10;18;45;674;37;45;0,89;37,44;84,78;0;Estonia;Eastern Europe;"Estonian Association Applied Linguists";"2005-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +10700;19700201170;"Journal of China Tourism Research";journal;"19388160, 19388179";"Taylor and Francis Ltd.";No;No;0,554;Q1;35;73;146;6012;512;145;3,27;82,36;50,47;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Cultural Studies (Q1); Linguistics and Language (Q1); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +10701;21100317906;"MethodsX";journal;"22150161";"Elsevier B.V.";Yes;No;0,554;Q1;64;649;1376;18674;4581;1369;3,54;28,77;41,92;3;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +10702;25005;"Natural Language Semantics";journal;"0925854X, 1572865X";"Springer Science and Business Media B.V.";No;No;0,554;Q1;58;19;39;1220;29;39;0,44;64,21;48,65;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1992-1993, 1995-2002, 2004-2025";"Linguistics and Language (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +10703;13540;"Advances in Polymer Technology";journal;"07306679, 10982329";"John Wiley and Sons Inc";Yes;No;0,554;Q2;63;56;166;3509;709;166;4,81;62,66;29,10;0;China;Asiatic Region;"John Wiley and Sons Inc";"1981-2026";"Chemical Engineering (miscellaneous) (Q2); Organic Chemistry (Q2); Polymers and Plastics (Q2)";"Chemical Engineering; Chemistry; Materials Science" +10704;19568;"Annali di Igiene Medicina Preventiva e di Comunita";journal;"11209135";"Societa Editrice Universo";No;No;0,554;Q2;34;72;190;1740;411;178;2,59;24,17;57,40;1;Italy;Western Europe;"Societa Editrice Universo";"1989-2025";"Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine" +10705;18439;"Cell and Tissue Banking";journal;"15736814, 13899333";"Springer Netherlands";No;No;0,554;Q2;58;51;211;1873;511;211;2,64;36,73;43,68;0;Netherlands;Western Europe;"Springer Netherlands";"2000-2026";"Transplantation (Q2); Biomaterials (Q3); Biomedical Engineering (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science; Medicine" +10706;21100812152;"International Journal of Networked and Distributed Computing";journal;"22117938, 22117946";"Springer Science and Business Media B.V.";Yes;No;0,554;Q2;18;33;36;1721;170;35;4,97;52,15;30,19;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2013-2026";"Computer Networks and Communications (Q2); Computer Science Applications (Q2)";"Computer Science" +10707;21484;"Iranian Journal of Public Health";journal;"22516085, 22516093";"Tehran University of Medical Sciences";Yes;No;0,554;Q2;65;302;957;9859;1835;786;1,86;32,65;50,93;0;Iran;Middle East;"Tehran University of Medical Sciences";"1973-1980, 1987, 2004-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +10708;26983;"Journal of Thermal Analysis and Calorimetry";journal;"15882926, 13886150";"Springer Science and Business Media B.V.";No;No;0,554;Q2;136;1423;3037;72360;11759;3030;4,17;50,85;29,34;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1995, 1997-2026";"Condensed Matter Physics (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Physics and Astronomy" +10709;17700156707;"Landscape Journal";journal;"02772426, 15532704";"University of Wisconsin Press";No;No;0,554;Q2;21;16;49;749;80;40;1,50;46,81;25,00;0;United States;Northern America;"University of Wisconsin Press";"2009-2019, 2021-2025";"Nature and Landscape Conservation (Q2)";"Environmental Science" +10710;100147303;"Milan Journal of Mathematics";journal;"14249294, 14249286";"Springer International Publishing";No;No;0,554;Q2;32;17;62;584;56;60;0,61;34,35;22,86;0;Switzerland;Western Europe;"Springer International Publishing";"2002, 2005-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +10711;68435;"Plant, Soil and Environment";journal;"12141178, 18059368";"Czech Academy of Agricultural Sciences";Yes;No;0,554;Q2;79;69;200;3509;580;200;2,70;50,86;43,58;0;Czech Republic;Eastern Europe;"Czech Academy of Agricultural Sciences";"2003-2026";"Soil Science (Q2)";"Agricultural and Biological Sciences" +10712;21100827893;"Sustainable Development of Mountain Territories";journal;"19984502, 2499975X";"North Caucasian Institute of Mining and Metallurgy, State Technological University";Yes;No;0,554;Q2;22;144;320;4037;647;319;2,28;28,03;43,89;0;Russian Federation;Eastern Europe;"North Caucasian Institute of Mining and Metallurgy, State Technological University";"2011-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Mechanical Engineering (Q2); Sociology and Political Science (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Earth and Planetary Sciences; Energy; Engineering; Environmental Science; Social Sciences" +10713;13178;"Transactions in GIS";journal;"13611682, 14679671";"Wiley-Blackwell Publishing Ltd";No;No;0,554;Q2;84;209;396;11860;1118;389;2,86;56,75;35,86;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-1997, 1999-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +10714;21101155861;"Water Conservation Science and Engineering";journal;"23645687, 23663340";"Springer Nature";No;No;0,554;Q2;26;138;198;9977;643;198;3,72;72,30;25,69;0;Singapore;Asiatic Region;"Springer Nature";"2016-2026";"Environmental Engineering (Q2); Ocean Engineering (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2)";"Engineering; Environmental Science" +10715;74910;"Proceedings - Symposium on Computer Arithmetic";conference and proceedings;"25762265, 10636889";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,554;-;38;24;68;469;89;62;0,92;19,54;19,70;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1972, 1975, 1983, 1985, 1987, 1989, 1991, 1993, 1995, 1997, 1999, 2001, 2003, 2005, 2007, 2009, 2011, 2013, 2015-2016, 2018-2025";"Hardware and Architecture; Software; Theoretical Computer Science";"Computer Science; Mathematics" +10716;5800207550;"English Today";journal;"02660784, 14740567";"Cambridge University Press";No;No;0,553;Q1;44;40;110;1364;188;97;1,21;34,10;46,81;0;United Kingdom;Western Europe;"Cambridge University Press";"1985-2026";"Linguistics and Language (Q1)";"Social Sciences" +10717;17405;"Canadian Journal of Plant Pathology";journal;"17152992, 07060661";"Taylor and Francis Ltd.";No;No;0,553;Q2;73;51;159;2798;337;134;1,81;54,86;44,35;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +10718;19700173161;"Cellular Reprogramming";journal;"21524998, 21524971";"Mary Ann Liebert Inc.";No;No;0,553;Q2;67;29;101;1059;163;87;1,76;36,52;48,31;0;United States;Northern America;"Mary Ann Liebert Inc.";"2010-2026";"Biotechnology (Q2); Developmental Biology (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +10719;21100262305;"Clinical Pharmacology in Drug Development";journal;"21607648, 2160763X";"Wiley-Blackwell";No;No;0,553;Q2;42;111;422;2501;724;410;1,71;22,53;45,36;0;United States;Northern America;"Wiley-Blackwell";"2012-2026";"Pharmaceutical Science (Q2); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +10720;19678;"Diagnostic Microbiology and Infectious Disease";journal;"18790070, 07328893";"Elsevier Inc.";No;No;0,553;Q2;111;402;684;12081;1320;671;1,99;30,05;48,06;1;United States;Northern America;"Elsevier Inc.";"1983-2026";"Medicine (miscellaneous) (Q2); Infectious Diseases (Q3); Microbiology (medical) (Q3)";"Medicine" +10721;17600155133;"E-Learning and Digital Media";journal;"20427530, 17418887";"SAGE Publications Inc.";No;No;0,553;Q2;39;75;165;2773;496;165;2,29;36,97;50,29;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2009-2026";"Computer Science Applications (Q2); Education (Q2)";"Computer Science; Social Sciences" +10722;18480;"Experimental Lung Research";journal;"15210499, 01902148";"Taylor and Francis Ltd.";Yes;No;0,553;Q2;60;16;65;703;133;65;2,28;43,94;56,99;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2026";"Pulmonary and Respiratory Medicine (Q2); Clinical Biochemistry (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10723;22128;"Genes and Genetic Systems";journal;"13417568, 18805779";"Genetics Society of Japan";Yes;No;0,553;Q2;58;25;78;1166;99;75;1,17;46,64;34,78;0;Japan;Asiatic Region;"Genetics Society of Japan";"1996-2026";"Medicine (miscellaneous) (Q2); Genetics (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10724;21100284944;"Geosciences (Switzerland)";journal;"20763263";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,553;Q2;67;475;1199;32951;3078;1174;2,47;69,37;28,97;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +10725;13380;"Health Services Management Research";journal;"17581044, 09514848";"SAGE Publications Ltd";No;No;0,553;Q2;43;51;91;1925;176;82;1,42;37,75;53,98;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1988-2026";"Health Policy (Q2)";"Medicine" +10726;19700176215;"IEEE Photonics Journal";journal;"19430655";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,553;Q2;105;272;1339;9501;3749;1337;2,84;34,93;30,28;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2009-2026";"Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2)";"Engineering; Physics and Astronomy" +10727;24063;"Journal of Separation Science";journal;"16159314, 16159306";"John Wiley and Sons Inc";No;No;0,553;Q2;124;269;954;13258;3439;949;3,66;49,29;45,30;0;Germany;Western Europe;"John Wiley and Sons Inc";"2000-2026";"Analytical Chemistry (Q2); Filtration and Separation (Q3)";"Chemical Engineering; Chemistry" +10728;21101067616;"Kitaibelia";journal;"20644507, 12199672";"Faculty of Science and Technology, University of Debrecen";Yes;Yes;0,553;Q2;8;13;45;574;41;45;1,22;44,15;15,00;0;Hungary;Eastern Europe;"Faculty of Science and Technology, University of Debrecen";"2019-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +10729;11700154718;"Marine Genomics";journal;"18747787, 18767478";"Elsevier B.V.";No;No;0,553;Q2;48;33;111;922;177;33;1,59;27,94;54,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Aquatic Science (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +10730;15658;"Paediatrics and Child Health (Canada)";journal;"12057088, 19181485";"Oxford University Press";No;No;0,553;Q2;68;137;312;3628;525;299;1,65;26,48;65,67;1;Canada;Northern America;"Oxford University Press";"2000-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +10731;15724;"Pediatric Exercise Science";journal;"15432920, 08998493";"Human Kinetics Publishers Inc.";No;No;0,553;Q2;78;52;97;2110;166;91;1,49;40,58;42,47;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1989-1990, 1992, 1996-2026";"Pediatrics, Perinatology and Child Health (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3); Sports Science (Q3)";"Health Professions; Medicine" +10732;16915;"Physical Medicine and Rehabilitation Clinics of North America";journal;"15581381, 10479651";"W.B. Saunders";No;No;0,553;Q2;86;66;204;3514;447;168;2,35;53,24;63,23;0;United States;Northern America;"W.B. Saunders";"1993-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)";"Health Professions; Medicine" +10733;21100332243;"PhytoKeys";journal;"13142003, 13142011";"Pensoft Publishers";Yes;No;0,553;Q2;34;269;586;10008;1031;585;1,73;37,20;33,08;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2014-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +10734;12400154749;"International Journal of Rheumatic Diseases";journal;"17561841, 1756185X";"John Wiley and Sons Inc";No;No;0,553;Q3;67;473;1170;10653;1661;716;1,29;22,52;40,72;0;United States;Northern America;"John Wiley and Sons Inc";"2008-2026";"Rheumatology (Q3)";"Medicine" +10735;19551;"Veterinary Radiology and Ultrasound";journal;"17408261, 10588183";"Wiley-Blackwell Publishing Ltd";No;No;0,552;Q1;79;139;367;3876;558;354;1,26;27,88;54,53;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +10736;26091;"Wood Science and Technology";journal;"00437719, 14325225";"Springer Science and Business Media Deutschland GmbH";No;No;0,552;Q1;97;112;261;5511;930;259;3,42;49,21;37,73;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1967-2026";"Forestry (Q1); Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Engineering; Materials Science" +10737;21101049546;"Climate Change Research";journal;"16731719";"National Climate Center";No;No;0,552;Q2;23;59;222;2741;538;217;2,04;46,46;33,88;1;China;Asiatic Region;"National Climate Center";"2021-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Geophysics (Q2); Oceanography (Q2); Atmospheric Science (Q3); Global and Planetary Change (Q3)";"Earth and Planetary Sciences; Environmental Science" +10738;13916;"Historical Biology";journal;"08912963, 10292381";"Taylor and Francis Ltd.";No;No;0,552;Q2;47;343;619;24894;1032;619;1,62;72,58;32,28;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2002, 2004-2026";"Paleontology (Q2)";"Earth and Planetary Sciences" +10739;21101152747;"Journal of Advanced Manufacturing Science and Technology";journal;"27092135";"Huatuo Culture Media Co. Limited";No;No;0,552;Q2;16;21;68;1127;218;68;3,27;53,67;26,44;0;Hong Kong;Asiatic Region;"Huatuo Culture Media Co. Limited";"2021-2026";"Mechanical Engineering (Q2)";"Engineering" +10740;24016;"Journal of Analytical Atomic Spectrometry";journal;"13645544, 02679477";"Royal Society of Chemistry";No;No;0,552;Q2;139;256;802;12515;2450;800;3,09;48,89;33,95;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"1971, 1977-1978, 1983-1984, 1986-2026";"Analytical Chemistry (Q2); Spectroscopy (Q2)";"Chemistry" +10741;24174;"Journal of Cluster Science";journal;"15728862, 10407278";"Springer New York";No;No;0,552;Q2;74;233;704;16863;2894;703;4,47;72,37;37,12;0;United States;Northern America;"Springer New York";"1990-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Physics and Astronomy" +10742;21101041534;"Journal of Cotton Research";journal;"20965044, 25233254";"BioMed Central Ltd";Yes;Yes;0,552;Q2;24;41;87;2486;281;80;3,20;60,63;31,15;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +10743;23978;"Journal of Theoretical Probability";journal;"15729230, 08949840";"Springer New York";No;No;0,552;Q2;46;86;312;2340;331;312;0,88;27,21;24,71;0;United States;Northern America;"Springer New York";"1988-2026";"Mathematics (miscellaneous) (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +10744;21223;"Machining Science and Technology";journal;"10910344, 15322483";"Taylor and Francis Ltd.";No;No;0,552;Q2;68;37;90;1895;322;90;3,45;51,22;24,65;0;United States;Northern America;"Taylor and Francis Ltd.";"1997-2026";"Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)";"Engineering; Materials Science" +10745;24042;"Mine Water and the Environment";journal;"16161068, 10259112";"Springer Science and Business Media Deutschland GmbH";No;No;0,552;Q2;52;62;191;2786;429;179;2,14;44,94;29,17;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1991-1995, 2001-2002, 2004-2026";"Geotechnical Engineering and Engineering Geology (Q2); Water Science and Technology (Q2)";"Earth and Planetary Sciences; Environmental Science" +10746;21101046403;"OTO Open";journal;"2473974X";"John Wiley and Sons Inc";Yes;No;0,552;Q2;23;131;285;3334;479;274;1,69;25,45;37,59;0;United States;Northern America;"John Wiley and Sons Inc";"2017-2026";"Otorhinolaryngology (Q2); Surgery (Q2)";"Medicine" +10747;12793;"Peace and Conflict";journal;"10781919, 15327949";"American Psychological Association";No;No;0,552;Q2;48;36;161;2031;269;161;1,47;56,42;61,32;0;United States;Northern America;"American Psychological Association";"2002-2025";"Political Science and International Relations (Q2)";"Social Sciences" +10748;5700164354;"Popular Communication";journal;"15405702, 15405710";"Routledge";No;No;0,552;Q2;35;40;57;2065;121;57;1,26;51,63;56,45;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Communication (Q2)";"Social Sciences" +10749;145505;"Revista Brasileira de Ciencia do Solo";journal;"01000683, 18069657";"Revista Brasileira de Ciencia do Solo";Yes;No;0,552;Q2;65;61;151;3685;369;149;2,05;60,41;33,33;0;Brazil;Latin America;"Revista Brasileira de Ciencia do Solo";"1999, 2004-2025";"Agronomy and Crop Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences" +10750;4100151707;"Endocrine, Metabolic and Immune Disorders - Drug Targets";journal;"22123873, 18715303";"Bentham Science Publishers";No;No;0,552;Q3;69;147;483;9264;1112;457;2,28;63,02;47,46;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Endocrinology, Diabetes and Metabolism (Q3); Immunology and Allergy (Q3)";"Medicine" +10751;21100218126;"Journal of Aging Research";journal;"20902212, 20902204";"John Wiley and Sons Ltd";Yes;No;0,552;Q3;65;39;32;2404;76;32;1,95;61,64;52,43;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Geriatrics and Gerontology (Q3)";"Medicine" +10752;16221;"Irish Journal of Psychological Medicine";journal;"07909667, 20516967";"Cambridge University Press";No;No;0,551;Q1;39;111;233;3519;441;190;1,98;31,70;53,94;1;United Kingdom;Western Europe;"Cambridge University Press";"1968, 1989-2026";"History and Philosophy of Science (Q1); Applied Psychology (Q3); Psychiatry and Mental Health (Q3)";"Arts and Humanities; Medicine; Psychology" +10753;21100241773;"Annals of Coloproctology";journal;"22879722, 22879714";"Korean Society of Coloproctology";Yes;No;0,551;Q2;37;75;243;2103;448;217;1,86;28,04;23,65;0;South Korea;Asiatic Region;"Korean Society of Coloproctology";"2013-2025";"Surgery (Q2); Gastroenterology (Q3)";"Medicine" +10754;21100899438;"Communication Research and Practice";journal;"22063374";"Taylor and Francis Ltd.";No;No;0,551;Q2;23;45;94;2156;182;77;2,27;47,91;69,70;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016, 2018-2025";"Communication (Q2); Computer Networks and Communications (Q2); Marketing (Q2); Political Science and International Relations (Q2); Human-Computer Interaction (Q3)";"Business, Management and Accounting; Computer Science; Social Sciences" +10755;15632;"Food Technology and Biotechnology";journal;"13342606, 13309862";"University of Zagreb";Yes;Yes;0,551;Q2;88;47;145;2599;502;140;3,29;55,30;51,72;0;Croatia;Eastern Europe;"University of Zagreb";"1996-2026";"Biotechnology (Q2); Chemical Engineering (miscellaneous) (Q2); Food Science (Q2); Industrial and Manufacturing Engineering (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering" +10756;21100405022;"Geoscientific Instrumentation, Methods and Data Systems";journal;"21930864, 21930856";"Copernicus Publications";Yes;No;0,551;Q2;32;34;75;1114;191;75;2,26;32,76;18,95;0;Germany;Western Europe;"Copernicus Publications";"2012-2026";"Geology (Q2); Oceanography (Q2); Atmospheric Science (Q3)";"Earth and Planetary Sciences" +10757;20830;"Health (United Kingdom)";journal;"13634593, 14617196";"SAGE Publications Ltd";No;No;0,551;Q2;68;65;162;3588;378;162;2,32;55,20;70,85;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1946-1948, 1973-1976, 1997-2026";"Health (social science) (Q2)";"Social Sciences" +10758;21101013582;"IEEE Transactions on Games";journal;"24751510, 24751502";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,551;Q2;60;124;220;6390;803;216;3,31;51,53;23,33;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2018-2026";"Artificial Intelligence (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Software (Q2)";"Computer Science; Engineering" +10759;21100241624;"International Journal of Genomics";journal;"2314436X, 23144378";"John Wiley and Sons Ltd";Yes;No;0,551;Q2;43;87;97;4605;235;97;1,80;52,93;43,76;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Pharmaceutical Science (Q2); Biochemistry (Q3); Genetics (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +10760;23718;"International Journal of the Economics of Business";journal;"14661829, 13571516";"Routledge";No;No;0,551;Q2;42;27;37;1774;66;37;1,04;65,70;15,79;1;United Kingdom;Western Europe;"Routledge";"1994-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +10761;17600155015;"Journal of Entrepreneurship";journal;"09730745, 09713557";"Sage Publications India Pvt. Ltd";No;No;0,551;Q2;37;31;88;2347;280;83;2,69;75,71;34,85;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1996-1999, 2009-2026";"Business and International Management (Q2); Economics and Econometrics (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +10762;61774;"Journal of Inequalities and Applications";journal;"1029242X, 10255834";"Springer Nature";Yes;No;0,551;Q2;72;159;483;4811;781;483;1,63;30,26;28,89;0;Switzerland;Western Europe;"Springer Nature";"2000-2002, 2005-2026";"Analysis (Q2); Applied Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +10763;21101124158;"Journal of Medicine Access";journal;"27550834";"SAGE Publications Ltd";No;No;0,551;Q2;8;13;51;460;126;47;2,38;35,38;31,71;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2022-2026";"Health Policy (Q2); Medicine (miscellaneous) (Q2); Health Informatics (Q3); Health Information Management (Q3)";"Health Professions; Medicine" +10764;21100871641;"Journal of Space Safety Engineering";journal;"24688975, 24688967";"Elsevier Ltd";No;No;0,551;Q2;23;90;230;3766;451;215;1,99;41,84;22,65;1;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Aerospace Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering" +10765;21101145471;"Magnetic Resonance Letters";journal;"20970048, 27725162";"KeAi Communications Co.";Yes;No;0,551;Q2;10;43;86;2304;179;83;2,41;53,58;34,81;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +10766;5600155030;"New Directions for Evaluation";journal;"1534875X, 10976736";"John Wiley and Sons Inc";No;No;0,551;Q2;53;26;127;1047;175;115;1,72;40,27;79,69;0;United States;Northern America;"John Wiley and Sons Inc";"1995-2025";"Education (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +10767;21101185614;"Thermo";journal;"26737264";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,551;Q2;15;59;94;2477;329;91;4,17;41,98;27,36;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Chemical Engineering (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Energy (miscellaneous) (Q3)";"Chemical Engineering; Energy; Engineering" +10768;6100153013;"Journal of the Egyptian National Cancer Institute";journal;"11100362, 25890409";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,551;Q3;33;81;145;4692;370;145;2,45;57,93;44,97;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2009, 2011-2026";"Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10769;21101092735;"AgriEngineering";journal;"26247402";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,550;Q1;34;436;505;22159;2115;504;3,89;50,82;27,84;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2026";"Horticulture (Q1); Agronomy and Crop Science (Q2); Engineering (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Engineering" +10770;19545;"AIDS Education and Prevention";journal;"19432755, 08999546";"Guilford Publications";No;No;0,550;Q2;83;30;111;1347;170;110;1,35;44,90;44,44;0;United States;Northern America;"Guilford Publications";"1989-2025";"Health (social science) (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2); Infectious Diseases (Q3)";"Medicine; Social Sciences" +10771;21100326082;"Annals of Surgical Treatment and Research";journal;"22886575, 22886796";"Korean Surgical Society";Yes;No;0,550;Q2;39;83;265;2288;481;262;1,98;27,57;36,91;0;South Korea;Asiatic Region;"Korean Surgical Society";"2014-2026";"Surgery (Q2)";"Medicine" +10772;4700152452;"Biochemia Medica";journal;"13300962";"Biochemia Medica, Editorial Office";Yes;Yes;0,550;Q2;60;41;137;1363;276;133;2,09;33,24;68,75;0;Croatia;Eastern Europe;"Biochemia Medica, Editorial Office";"2006-2026";"Biochemistry (medical) (Q2); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10773;21101060220;"Bio-protocol";journal;"23318325";"Bio-protocol LLC";Yes;No;0,550;Q2;27;386;810;7483;1007;809;1,24;19,39;45,52;0;United States;Northern America;"Bio-protocol LLC";"2012, 2016-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2); Plant Science (Q2); Neuroscience (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Neuroscience" +10774;21101055116;"Current Reviews in Clinical and Experimental Pharmacology";journal;"27724328, 27724336";"Bentham Science Publishers";No;No;0,550;Q2;52;42;77;3670;171;72;2,59;87,38;44,30;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2021-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +10775;22141;"Genes to Cells";journal;"13652443, 13569597";"Wiley-Blackwell Publishing Ltd";No;No;0,550;Q2;129;83;233;2931;325;232;1,30;35,31;31,29;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Medicine (miscellaneous) (Q2); Genetics (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10776;37958;"Geographical Review";journal;"00167428, 19310846";"Taylor and Francis Inc.";Yes;No;0,550;Q2;60;42;96;2267;206;95;1,60;53,98;58,06;1;United States;Northern America;"Taylor and Francis Inc.";"1969, 1973, 1976, 1979-2026";"Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +10777;17700156759;"Journal of Banking Regulation";journal;"17502071, 17456452";"Palgrave Macmillan Ltd.";No;No;0,550;Q2;25;57;86;3529;254;86;3,32;61,91;32,48;5;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2008-2026";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +10778;21100211745;"Journal of Information Systems Education";journal;"25743872, 10553096";"ISCAP- Information Systems and Computing Academic Professionals";No;No;0,550;Q2;31;30;111;1390;296;110;2,61;46,33;40,82;0;United States;Northern America;"ISCAP- Information Systems and Computing Academic Professionals";"2012-2026";"Education (Q2); E-learning (Q2); Engineering (miscellaneous) (Q2)";"Engineering; Social Sciences" +10779;21100264009;"Journal of Multi-Criteria Decision Analysis";journal;"10579214, 10991360";"John Wiley and Sons Ltd";No;No;0,550;Q2;57;22;65;961;164;64;2,60;43,68;39,62;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1992-2003, 2005-2006, 2008-2026";"Decision Sciences (miscellaneous) (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences" +10780;29663;"Journal of Theoretical Biology";journal;"10958541, 00225193";"Academic Press";No;No;0,550;Q2;184;150;572;8168;1094;568;1,83;54,45;31,60;0;United States;Northern America;"Academic Press";"1961-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Applied Mathematics (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Modeling and Simulation (Q2); Statistics and Probability (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Mathematics; Medicine" +10781;12677;"Nuclear Science and Engineering";journal;"00295639, 1943748X";"Taylor and Francis Ltd.";No;No;0,550;Q2;69;302;470;9418;750;455;1,58;31,19;19,27;0;United States;Northern America;"Taylor and Francis Ltd.";"1961-1962, 1964-2026";"Nuclear Energy and Engineering (Q2)";"Energy" +10782;21101164812;"Oceans";journal;"26731924";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,550;Q2;16;85;119;4858;285;113;2,30;57,15;37,21;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Environmental Science (miscellaneous) (Q2); Oceanography (Q2)";"Earth and Planetary Sciences; Environmental Science" +10783;26423;"Organometallics";journal;"15206041, 02767333";"American Chemical Society";No;No;0,550;Q2;192;336;1085;18078;2546;1063;2,34;53,80;30,15;0;United States;Northern America;"American Chemical Society";"1982-2026";"Inorganic Chemistry (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry" +10784;21101089395;"Policy Reviews in Higher Education";journal;"23322950, 23322969";"UBM Exhibition Singapore PTE LTD";No;No;0,550;Q2;20;25;37;1778;102;31;2,36;71,12;34,88;2;Singapore;Asiatic Region;"UBM Exhibition Singapore PTE LTD";"2017-2026";"Education (Q2)";"Social Sciences" +10785;12443;"Real-Time Systems";journal;"09226443, 15731383";"Springer Netherlands";Yes;No;0,550;Q2;62;22;62;605;136;52;2,28;27,50;16,95;0;Netherlands;Western Europe;"Springer Netherlands";"1989-2025";"Computer Networks and Communications (Q2); Computer Science Applications (Q2); Control and Optimization (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Modeling and Simulation (Q2)";"Computer Science; Engineering; Mathematics" +10786;19700201636;"Soil Research";journal;"18386768, 1838675X";"CSIRO Publishing";No;No;0,550;Q2;100;34;186;2079;380;185;1,75;61,15;34,97;0;Australia;Pacific Region;"CSIRO Publishing";"2011-2026";"Earth-Surface Processes (Q2); Environmental Science (miscellaneous) (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +10787;21100448239;"Advances in Orthopedics";journal;"20903472, 20903464";"John Wiley and Sons Ltd";Yes;No;0,550;Q3;29;33;83;1027;177;83;1,83;31,12;23,08;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2014-2026";"Orthopedics and Sports Medicine (Q3)";"Medicine" +10788;38539;"Animal Welfare";journal;"09627286";"Cambridge University Press";Yes;No;0,549;Q1;85;54;166;3358;419;161;2,53;62,19;65,12;2;United Kingdom;Western Europe;"Cambridge University Press";"1994, 1996-2025";"Animal Science and Zoology (Q1); Veterinary (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +10789;5600152890;"Body and Society";journal;"1357034X, 14603632";"SAGE Publications Ltd";No;No;0,549;Q1;82;16;50;884;94;50;1,86;55,25;78,26;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Cultural Studies (Q1); Health (social science) (Q2); Social Psychology (Q2)";"Psychology; Social Sciences" +10790;26170;"Journal of Orthodontics";journal;"14653133, 14653125";"SAGE Publications Inc.";No;No;0,549;Q1;62;53;171;0;356;146;1,61;0,00;51,16;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2000-2025";"Orthodontics (Q1); Medicine (miscellaneous) (Q2)";"Dentistry; Medicine" +10791;21100897232;"REICE. Revista Iberoamericana Sobre Calidad, Eficacia y Cambio en Educacion";journal;"16964713";"Universidad Autonoma de Madrid";Yes;Yes;0,549;Q1;31;15;92;698;195;89;2,25;46,53;43,59;0;Spain;Western Europe;"Universidad Autonoma de Madrid";"2003-2026";"Cultural Studies (Q1); Education (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10792;19518;"Veterinary Dermatology";journal;"09594493, 13653164";"Wiley-Blackwell Publishing Ltd";No;No;0,549;Q1;78;95;246;3003;463;233;1,93;31,61;56,81;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1990-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +10793;29427;"Aquaculture Research";journal;"13652109, 1355557X";"John Wiley and Sons Ltd";Yes;No;0,549;Q2;116;176;863;12026;2459;862;2,59;68,33;36,59;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1970, 1972-2026";"Aquatic Science (Q2)";"Agricultural and Biological Sciences" +10794;21100904317;"Avances de Investigacion en Educacion Matematica";journal;"22544313";"Spanish Society of Research in Mathematics Education";Yes;Yes;0,549;Q2;10;20;46;663;93;46;2,44;33,15;47,27;0;Spain;Western Europe;"Spanish Society of Research in Mathematics Education";"2018-2025";"Education (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics; Social Sciences" +10795;22031;"Canadian Journal of Earth Sciences";journal;"14803313, 00084077";"National Research Council of Canada";No;No;0,549;Q2;92;74;215;6315;344;208;1,61;85,34;24,02;0;Canada;Northern America;"National Research Council of Canada";"1968-1969, 1976-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +10796;21101196045;"Corrosion and Materials Degradation";journal;"26245558";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,549;Q2;19;67;105;3597;348;103;3,14;53,69;31,23;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Materials Science (miscellaneous) (Q2)";"Materials Science" +10797;29114;"Engineering Optimization";journal;"0305215X, 10290273";"Taylor and Francis Ltd.";No;No;0,549;Q2;82;229;350;10868;1169;350;3,19;47,46;24,40;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974-2026";"Applied Mathematics (Q2); Computer Science Applications (Q2); Control and Optimization (Q2); Industrial and Manufacturing Engineering (Q2); Management Science and Operations Research (Q2)";"Computer Science; Decision Sciences; Engineering; Mathematics" +10798;26602;"Evaluation and Program Planning";journal;"01497189, 18737870";"Elsevier Ltd";No;No;0,549;Q2;77;148;346;7893;939;345;2,68;53,33;63,92;0;United Kingdom;Western Europe;"Elsevier Ltd";"1978-2026";"Business and International Management (Q2); Geography, Planning and Development (Q2); Public Health, Environmental and Occupational Health (Q2); Social Psychology (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Medicine; Psychology; Social Sciences" +10799;21101044936;"Italian Journal of Dermatology and Venereology";journal;"27848450, 27848671";"Edizioni Minerva Medica S.p.A.";No;No;0,549;Q2;38;128;402;3084;375;178;0,98;24,09;54,42;0;Italy;Western Europe;"Edizioni Minerva Medica S.p.A.";"2021-2025";"Dermatology (Q2); Infectious Diseases (Q3)";"Medicine" +10800;21101041809;"Journal of Clinical Medicine Research";journal;"19183011, 19183003";"Elmer Press";No;No;0,549;Q2;29;66;195;2513;399;184;2,18;38,08;36,41;0;Canada;Northern America;"Elmer Press";"2015, 2019-2025";"Medicine (miscellaneous) (Q2)";"Medicine" +10801;20590;"Journal of Food Processing and Preservation";journal;"01458892, 17454549";"John Wiley and Sons Inc";No;No;0,549;Q2;79;195;1490;11731;5031;1488;3,36;60,16;42,77;1;United States;Northern America;"John Wiley and Sons Inc";"1977-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Chemical Engineering; Chemistry" +10802;15114;"Journal of Pediatric Health Care";journal;"08915245, 1532656X";"Elsevier Inc.";No;No;0,549;Q2;62;176;293;4539;547;264;1,68;25,79;76,62;0;United States;Northern America;"Elsevier Inc.";"1987-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +10803;5600152817;"Journal of Research in Special Educational Needs";journal;"14713802";"John Wiley and Sons Inc";No;No;0,549;Q2;44;86;152;5413;387;151;2,55;62,94;70,93;2;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2007-2026";"Education (Q2)";"Social Sciences" +10804;23901;"Journal of Vascular Research";journal;"10181172, 14230135";"S. Karger AG";No;No;0,549;Q2;85;38;87;1800;167;86;1,27;47,37;41,54;0;Switzerland;Western Europe;"S. Karger AG";"1964-2026";"Cardiology and Cardiovascular Medicine (Q2); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10805;19600162142;"Leadership in Health Services";journal;"17511879, 17511887";"Emerald Publishing";No;No;0,549;Q2;39;60;121;3407;374;121;2,78;56,78;50,63;0;United Kingdom;Western Europe;"Emerald Publishing";"2007-2026";"Business, Management and Accounting (miscellaneous) (Q2); Health Policy (Q2)";"Business, Management and Accounting; Medicine" +10806;23259;"Mountain Research and Development";journal;"02764741";"International Mountain Society";Yes;No;0,549;Q2;76;21;69;957;160;62;1,89;45,57;41,77;0;Switzerland;Western Europe;"International Mountain Society";"1981-2025";"Development (Q2); Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3)";"Environmental Science; Social Sciences" +10807;17940;"Neurological Research";journal;"17431328, 01616412";"Taylor and Francis Ltd.";No;No;0,549;Q2;92;262;391;10206;767;390;2,00;38,95;40,06;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2026";"Medicine (miscellaneous) (Q2); Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +10808;19700182448;"Open Access Emergency Medicine";journal;"11791500";"Dove Medical Press Ltd";Yes;No;0,549;Q2;31;37;151;1093;299;148;1,74;29,54;34,00;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2026";"Emergency Medicine (Q2); Emergency Nursing (Q2)";"Medicine; Nursing" +10809;17700156764;"Polish Maritime Research";journal;"12332585, 20837429";"De Gruyter Open Ltd";Yes;No;0,549;Q2;33;61;181;2056;542;181;2,81;33,70;19,92;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2007-2025";"Mechanical Engineering (Q2); Ocean Engineering (Q2)";"Engineering" +10810;29368;"Public Health Nursing";journal;"07371209, 15251446";"Wiley-Blackwell Publishing Ltd";No;No;0,549;Q2;67;179;446;7776;781;432;1,86;43,44;69,12;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1945-1952, 1984-2026";"Nursing (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)";"Medicine; Nursing" +10811;19900191825;"Theoretical Issues in Ergonomics Science";journal;"1464536X, 1463922X";"Taylor and Francis Ltd.";No;No;0,549;Q2;66;38;111;2764;376;111;3,43;72,74;32,09;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Human Factors and Ergonomics (Q2)";"Social Sciences" +10812;21807;"Brazilian Journal of Infectious Diseases";journal;"14138670, 16784391";"Elsevier Editora Ltda";Yes;No;0,549;Q3;62;60;172;2022;325;168;1,80;33,70;55,37;0;Brazil;Latin America;"Elsevier Editora Ltda";"2000-2026";"Infectious Diseases (Q3); Microbiology (medical) (Q3)";"Medicine" +10813;130034;"Current Alzheimer Research";journal;"18755828, 15672050";"Bentham Science Publishers";No;No;0,549;Q3;112;90;220;7721;488;210;2,21;85,79;44,14;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2004-2026";"Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +10814;21100924424;"JGH Open";journal;"23979070";"John Wiley & Sons Inc.";Yes;No;0,549;Q3;31;238;462;6998;780;439;1,65;29,40;28,69;0;United States;Northern America;"John Wiley & Sons Inc.";"2017-2026";"Gastroenterology (Q3); Hepatology (Q3)";"Medicine" +10815;12700154705;"Annals of Animal Science";journal;"23008733, 16423402";"";Yes;No;0,548;Q1;45;171;311;18907;1057;311;3,80;110,57;38,26;0;Germany;Western Europe;"";"2008-2025";"Animal Science and Zoology (Q1); Small Animals (Q1); Food Animals (Q2)";"Agricultural and Biological Sciences; Veterinary" +10816;21101075553;"Bulletin of ASOR";journal;"27693600, 27693589";"University of Chicago Press";No;No;0,548;Q1;27;17;56;1401;57;56;0,95;82,41;30,23;0;United States;Northern America;"University of Chicago Press";"2022-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +10817;21100774809;"Crime Science";journal;"21937680";"BioMed Central Ltd";Yes;No;0,548;Q1;40;20;78;1567;254;77;2,52;78,35;40,85;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2013-2026";"Cultural Studies (Q1); Law (Q1); Urban Studies (Q1); Safety Research (Q2)";"Social Sciences" +10818;19900191979;"Journal of Music Teacher Education";journal;"19450079, 10570837";"SAGE Publications Inc.";No;No;0,548;Q1;29;34;68;1424;84;51;1,00;41,88;50,00;0;United States;Northern America;"SAGE Publications Inc.";"1991-2026";"Music (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +10819;28241;"Journal of Perianesthesia Nursing";journal;"15328473, 10899472";"W.B. Saunders";No;No;0,548;Q1;44;313;547;9482;1065;471;1,95;30,29;64,57;0;United States;Northern America;"W.B. Saunders";"1996-2026";"Medical and Surgical Nursing (Q1)";"Nursing" +10820;16100154726;"Kantian Review";journal;"20442394, 13694154";"Cambridge University Press";No;No;0,548;Q1;24;31;113;1494;107;112;0,82;48,19;18,52;0;United Kingdom;Western Europe;"Cambridge University Press";"1997-2026";"Philosophy (Q1)";"Arts and Humanities" +10821;28336;"Ocean Development and International Law";journal;"00908320, 15210642";"Taylor and Francis Ltd.";No;No;0,548;Q1;41;30;78;1040;144;78;1,56;34,67;40,00;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1973-2026";"Law (Q1); Development (Q2); Management, Monitoring, Policy and Law (Q2); Political Science and International Relations (Q2)";"Environmental Science; Social Sciences" +10822;29632;"Review of Religious Research";journal;"22114866, 0034673X";"SAGE Publications Ltd";No;No;0,548;Q1;52;46;94;2470;161;91;1,13;53,70;45,56;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1977, 1979, 1985, 1989-1990, 1992, 1996-2026";"Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities" +10823;5800169383;"Asian Security";journal;"15552764, 14799855";"Routledge";No;No;0,548;Q2;27;16;43;931;64;42;1,35;58,19;38,10;3;United Kingdom;Western Europe;"Routledge";"2010-2026";"Political Science and International Relations (Q2); Safety Research (Q2)";"Social Sciences" +10824;24725;"Bulletin of the Korean Chemical Society";journal;"02532964, 12295949";"Wiley-Blackwell";Yes;No;0,548;Q2;70;113;409;6368;969;409;3,11;56,35;36,83;0;United States;Northern America;"Wiley-Blackwell";"1996-2026";"Chemistry (miscellaneous) (Q2)";"Chemistry" +10825;21100774706;"Cogent Psychology";journal;"23311908";"Cogent OA";Yes;No;0,548;Q2;36;131;221;7692;538;220;1,77;58,72;49,06;1;United Kingdom;Western Europe;"Cogent OA";"2014-2026";"Psychology (miscellaneous) (Q2)";"Psychology" +10826;79319;"Expert Review of Medical Devices";journal;"17434440, 17452422";"Taylor and Francis Ltd.";No;No;0,548;Q2;88;151;332;7589;878;299;2,57;50,26;32,59;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Medicine (miscellaneous) (Q2); Surgery (Q2); Biomedical Engineering (Q3)";"Engineering; Medicine" +10827;13664;"Journal of Adhesion Science and Technology";journal;"15685616, 01694243";"Taylor and Francis Ltd.";No;No;0,548;Q2;92;207;548;11644;2125;542;4,08;56,25;26,20;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Mechanics of Materials (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +10828;21101244197;"Journal of Crop Health";journal;"2948264X, 29482658";"Springer Science and Business Media Deutschland GmbH";No;No;0,548;Q2;40;198;456;15242;1625;455;3,42;76,98;31,44;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2024-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +10829;21161;"Journal of Materials Research";journal;"08842914, 20445326";"Springer International Publishing AG";No;No;0,548;Q2;178;252;1028;13468;3187;1024;3,00;53,44;31,35;0;Switzerland;Western Europe;"Springer International Publishing AG";"1986-2026";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +10830;4700152754;"Journal of Nonprofit and Public Sector Marketing";journal;"15406997, 10495142";"Routledge";No;No;0,548;Q2;44;41;75;3569;238;75;3,62;87,05;46,94;0;United States;Northern America;"Routledge";"1993-2026";"Marketing (Q2)";"Business, Management and Accounting" +10831;23479;"Journal of Physiology and Pharmacology";journal;"08675910, 18991505";"Polish Physiological Society";Yes;No;0,548;Q2;97;61;196;3457;442;196;2,35;56,67;51,84;0;Poland;Eastern Europe;"Polish Physiological Society";"1991-2025";"Medicine (miscellaneous) (Q2); Pharmacology (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +10832;26202;"Metabolic Syndrome and Related Disorders";journal;"15404196, 15578518";"Mary Ann Liebert Inc.";No;No;0,548;Q2;65;59;235;2724;469;234;1,76;46,17;46,10;0;United States;Northern America;"Mary Ann Liebert Inc.";"2003-2026";"Internal Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +10833;34774;"Metallurgical and Materials Transactions B: Process Metallurgy and Materials Processing Science";journal;"10735615, 15431916";"Springer";No;No;0,548;Q2;118;499;963;20624;3266;961;3,35;41,33;26,42;0;United States;Northern America;"Springer";"1973-1979, 1995-2026";"Condensed Matter Physics (Q2); Materials Chemistry (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)";"Engineering; Materials Science; Physics and Astronomy" +10834;21100248922;"Organic Agriculture";journal;"18794238, 18794246";"Springer Science and Business Media B.V.";No;No;0,548;Q2;35;49;110;3057;414;110;3,96;62,39;41,28;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2011-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +10835;21101077111;"Phytomedicine Plus";journal;"26670313";"Elsevier B.V.";Yes;No;0,548;Q2;33;245;503;19269;1943;502;3,71;78,65;38,35;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Complementary and Alternative Medicine (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +10836;54509;"Reports of Practical Oncology and Radiotherapy";journal;"15071367";"Via Medica";Yes;Yes;0,548;Q2;42;90;314;3018;557;303;1,60;33,53;44,79;0;Poland;Eastern Europe;"Via Medica";"1998-2025";"Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10837;23046;"Transactions of the Royal Society of Tropical Medicine and Hygiene";journal;"18783503, 00359203";"Oxford University Press";No;No;0,548;Q2;124;177;381;5384;686;375;1,77;30,42;37,70;0;United Kingdom;Western Europe;"Oxford University Press";"1907-2026";"Medicine (miscellaneous) (Q2); Parasitology (Q2); Public Health, Environmental and Occupational Health (Q2); Infectious Diseases (Q3)";"Immunology and Microbiology; Medicine" +10838;14284;"Proteome Science";journal;"14775956";"BioMed Central Ltd";Yes;No;0,548;Q3;58;6;55;360;102;55;2,14;60,00;36,36;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2025";"Biochemistry (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +10839;21100324708;"AJOB Empirical Bioethics";journal;"23294523, 23294515";"Taylor and Francis Ltd.";No;No;0,547;Q1;30;29;77;1084;152;75;1,70;37,38;62,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Philosophy (Q1); Health Policy (Q2); Health (social science) (Q2)";"Arts and Humanities; Medicine; Social Sciences" +10840;3500148021;"Comparative Biochemistry and Physiology -Part A : Molecular and Integrative Physiology";journal;"15314332, 10956433";"Elsevier Inc.";No;No;0,547;Q1;138;145;399;9342;989;391;2,49;64,43;45,02;0;United States;Northern America;"Elsevier Inc.";"1960-1964, 1966, 1968-1969, 1971-1979, 1981, 1985, 1989, 1992, 1994, 1998-2026";"Animal Science and Zoology (Q1); Aquatic Science (Q2); Biochemistry (Q3); Molecular Biology (Q3); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +10841;17600155309;"International Journal of Fashion Design, Technology and Education";journal;"17543266, 17543274";"Taylor and Francis Ltd.";No;No;0,547;Q1;39;61;121;2760;468;120;3,29;45,25;61,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Visual Arts and Performing Arts (Q1); Education (Q2); Industrial and Manufacturing Engineering (Q2)";"Arts and Humanities; Engineering; Social Sciences" +10842;15718;"Israel Law Review";journal;"20479336, 00212237";"Cambridge University Press";No;No;0,547;Q1;26;15;66;2191;137;57;2,37;146,07;20,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1974-1975, 1977-1981, 1983, 1992-2002, 2004-2025";"Law (Q1)";"Social Sciences" +10843;21100287113;"ChemistryOpen";journal;"21911363";"John Wiley & Sons Inc.";Yes;No;0,547;Q2;55;282;336;17460;1027;334;3,04;61,91;34,79;0;United States;Northern America;"John Wiley & Sons Inc.";"2012-2026";"Chemistry (miscellaneous) (Q2)";"Chemistry" +10844;24501;"Computational Geosciences";journal;"15731499, 14200597";"Springer Science and Business Media Deutschland GmbH";No;No;0,547;Q2;86;56;229;2867;634;225;2,38;51,20;16,58;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1997-2026";"Computational Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Computers in Earth Sciences (Q2)";"Computer Science; Earth and Planetary Sciences; Mathematics" +10845;25875;"Differential Equations";journal;"00122661, 16083083";"Pleiades Publishing";No;No;0,547;Q2;37;113;436;2288;371;436;0,91;20,25;30,20;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Analysis (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics" +10846;19700182638;"Eksploatacja i Niezawodnosc";journal;"15072711";"Polish Maintanace Society";Yes;No;0,547;Q2;37;100;240;3777;793;240;3,79;37,77;29,00;0;Poland;Eastern Europe;"Polish Maintanace Society";"2008-2026";"Industrial and Manufacturing Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering" +10847;21100792547;"Intractable and Rare Diseases Research";journal;"2186361X, 21863644";"International Advancement Center for Medicine and Health Research Co., Ltd.";No;No;0,547;Q2;38;41;115;1308;257;110;2,35;31,90;41,72;1;Japan;Asiatic Region;"International Advancement Center for Medicine and Health Research Co., Ltd.";"2012-2025";"Medicine (miscellaneous) (Q2)";"Medicine" +10848;21100454936;"Journal of Applied Volcanology";journal;"21915040";"Springer International Publishing AG";Yes;No;0,547;Q2;37;8;37;529;85;36;2,55;66,13;59,09;1;Switzerland;Western Europe;"Springer International Publishing AG";"2012-2026";"Geochemistry and Petrology (Q2); Geophysics (Q2); Safety Research (Q2)";"Earth and Planetary Sciences; Social Sciences" +10849;11200153573;"London Review of Education";journal;"14748460, 14748479";"UCL Press";Yes;Yes;0,547;Q2;38;20;125;1033;279;117;2,05;51,65;59,26;0;United Kingdom;Western Europe;"UCL Press";"2008-2025";"Education (Q2)";"Social Sciences" +10850;21101290576;"Nutraceuticals";journal;"16613821";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,547;Q2;13;40;114;3257;362;112;3,30;81,43;55,19;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Food Science (Q2); Nutrition and Dietetics (Q3)";"Agricultural and Biological Sciences; Nursing" +10851;15770;"Physical and Occupational Therapy in Pediatrics";journal;"01942638, 15413144";"Taylor & Francis Group LLC Philadelphia";No;No;0,547;Q2;61;72;136;2938;275;131;1,97;40,81;72,73;0;United States;Northern America;"Taylor & Francis Group LLC Philadelphia";"1981-2026";"Medicine (miscellaneous) (Q2); Occupational Therapy (Q2); Pediatrics, Perinatology and Child Health (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)";"Health Professions; Medicine" +10852;14900154701;"Public Health Genomics";journal;"16628063, 16624246";"S. Karger AG";Yes;No;0,547;Q2;62;22;75;868;142;73;1,84;39,45;76,32;0;Switzerland;Western Europe;"S. Karger AG";"1998, 2008-2026";"Public Health, Environmental and Occupational Health (Q2); Genetics (clinical) (Q3)";"Medicine" +10853;21101132412;"Reports in Mechanical Engineering";journal;"26835894";"Reports in Mechanical Engineering";No;No;0,547;Q2;25;25;48;951;185;48;4,25;38,04;9,09;0;Serbia;Eastern Europe;"Reports in Mechanical Engineering";"2020-2025";"Mechanical Engineering (Q2)";"Engineering" +10854;21101108655;"Skin Health and Disease";journal;"2690442X";"Oxford University Press";Yes;No;0,547;Q2;16;95;380;1982;658;313;1,54;20,86;53,67;0;United Kingdom;Western Europe;"Oxford University Press";"2021-2026";"Dermatology (Q2)";"Medicine" +10855;21101247456;"Clinical and Translational Metabolism";journal;"29482445, 29482437";"Springer";No;No;0,547;Q3;35;14;19;609;47;16;2,69;43,50;40,00;0;United States;Northern America;"Springer";"2024-2026";"Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3); Orthopedics and Sports Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10856;25146;"Journal of Pharmacological and Toxicological Methods";journal;"1873488X, 10568719";"Elsevier Inc.";No;No;0,547;Q3;89;47;153;2055;358;151;2,31;43,72;41,25;0;United States;Northern America;"Elsevier Inc.";"1992-2002, 2004-2026";"Pharmacology (Q3); Toxicology (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +10857;7600153125;"Proceedings - IEEE International Conference on Data Mining, ICDM";conference and proceedings;"15504786";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,547;-;158;0;499;0;1210;490;1,88;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2001-2003, 2005-2014, 2016-2024";"Engineering (miscellaneous)";"Engineering" +10858;5600155308;"Canadian Slavonic Papers";journal;"23752475, 00085006";"Taylor and Francis Ltd.";No;No;0,546;Q1;19;22;81;1151;127;69;1,39;52,32;57,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974, 1977-1979, 1985, 1988, 1991, 1996-2025";"Cultural Studies (Q1); History (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1); Philosophy (Q1); Visual Arts and Performing Arts (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +10859;3900148224;"Comparative Biochemistry and Physiology - Part D: Genomics and Proteomics";journal;"1744117X, 18780407";"Elsevier Inc.";No;No;0,546;Q1;55;256;340;17126;979;338;2,96;66,90;38,66;0;United States;Northern America;"Elsevier Inc.";"2006-2026";"Animal Science and Zoology (Q1); Aquatic Science (Q2); Biochemistry (Q3); Genetics (Q3); Molecular Biology (Q3); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +10860;15288;"History and Theory";journal;"14682303, 00182656";"Wiley-Blackwell";No;No;0,546;Q1;60;41;99;1200;134;93;1,02;29,27;43,18;0;United States;Northern America;"Wiley-Blackwell";"1968-1969, 1977, 1996-2026";"History (Q1); Philosophy (Q1)";"Arts and Humanities" +10861;16054;"Reading Psychology";journal;"02702711, 15210685";"Taylor and Francis Ltd.";No;No;0,546;Q1;50;42;103;2801;195;103;1,87;66,69;69,03;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2026";"Linguistics and Language (Q1); Developmental and Educational Psychology (Q2); Education (Q2)";"Psychology; Social Sciences" +10862;144984;"Res Publica";journal;"13564765, 15728692";"Springer Netherlands";Yes;No;0,546;Q1;28;72;134;3109;202;118;1,36;43,18;32,47;2;Netherlands;Western Europe;"Springer Netherlands";"1994-2026";"Law (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +10863;21100779057;"World Leisure Journal";journal;"23334509, 16078055";"Taylor and Francis Ltd.";No;No;0,546;Q1;35;87;112;5681;357;96;4,04;65,30;49,55;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Cultural Studies (Q1); Social Psychology (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Psychology; Social Sciences" +10864;20414;"Advances in Surgery";book series;"00653411";"Academic Press Inc.";No;No;0,546;Q2;43;20;58;1156;112;58;2,08;57,80;45,83;0;United States;Northern America;"Academic Press Inc.";"1949, 1965-1966, 1968, 1970-1981, 1983-1984, 1986-1997, 1999-2025";"Surgery (Q2)";"Medicine" +10865;25028;"Computers and Graphics";journal;"00978493";"Elsevier Ltd";No;No;0,546;Q2;92;297;652;14994;1996;581;3,00;50,48;29,61;0;United Kingdom;Western Europe;"Elsevier Ltd";"1975-1980, 1982-2026";"Computer Graphics and Computer-Aided Design (Q2); Computer Vision and Pattern Recognition (Q2); Engineering (miscellaneous) (Q2); Signal Processing (Q2); Software (Q2); Human-Computer Interaction (Q3)";"Computer Science; Engineering" +10866;23221;"Heart and Vessels";journal;"16152573, 09108327";"Springer";No;No;0,546;Q2;57;173;527;3941;808;499;1,57;22,78;17,45;1;Japan;Asiatic Region;"Springer";"1985-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +10867;21101096684;"HighTech and Innovation Journal";journal;"27239535";"Ital Publication";Yes;No;0,546;Q2;24;84;177;3602;792;177;5,29;42,88;37,61;0;Italy;Western Europe;"Ital Publication";"2020-2025";"Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2)";"Computer Science; Engineering" +10868;6400153173;"Improving Schools";journal;"13654802, 14757583";"SAGE Publications Ltd";No;No;0,546;Q2;35;12;30;778;71;26;1,88;64,83;50,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1998-2023, 2025-2026";"Education (Q2)";"Social Sciences" +10869;21101021571;"Intervention";journal;"15718883, 18721001";"Wolters Kluwer Medknow Publications";Yes;No;0,546;Q2;15;9;63;319;72;57;0,82;35,44;57,50;0;United States;Northern America;"Wolters Kluwer Medknow Publications";"2015, 2018-2025";"Clinical Psychology (Q2); Social Psychology (Q2); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +10870;23107;"Journal of Pharmacy Technology";journal;"15494810, 87551225";"SAGE Publications Inc.";No;No;0,546;Q2;22;41;138;805;253;125;1,52;19,63;51,06;0;United States;Northern America;"SAGE Publications Inc.";"1989-2026";"Pharmaceutical Science (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +10871;12352;"Optics Communications";journal;"00304018";"Elsevier B.V.";No;No;0,546;Q2;162;1363;2466;51606;7229;2465;3,13;37,86;31,75;0;Netherlands;Western Europe;"Elsevier B.V.";"1969-2026";"Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +10872;14785;"Statistics";journal;"02331888, 10294910";"Taylor and Francis Ltd.";No;No;0,546;Q2;44;94;199;3144;279;198;1,48;33,45;34,21;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-2026";"Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +10873;17450;"Structural Engineering International";journal;"16830350, 10168664";"Taylor and Francis Ltd.";No;No;0,546;Q2;48;98;198;2919;399;178;1,89;29,79;22,01;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Engineering" +10874;21100911067;"Studies in Graduate and Postdoctoral Education";journal;"23984694, 23984686";"Emerald Group Publishing Ltd.";No;No;0,546;Q2;21;47;70;2515;162;68;2,17;53,51;73,17;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2017-2026";"Education (Q2)";"Social Sciences" +10875;19600157794;"Electrocatalysis";journal;"18682529, 18685994";"Springer Publishing Company";No;No;0,546;Q3;52;90;201;4926;649;201;3,26;54,73;35,25;0;United States;Northern America;"Springer Publishing Company";"2010-2026";"Electrochemistry (Q3)";"Chemistry" +10876;21100853989;"Microbiology Research";journal;"20367481, 20367473";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,546;Q3;24;263;397;17431;1195;395;2,90;66,28;49,20;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2016, 2019-2026";"Microbiology (Q3); Microbiology (medical) (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +10877;13951;"Arabian Journal for Science and Engineering";journal;"21914281, 2193567X";"";No;No;0,545;Q1;89;1901;3121;103141;12578;3120;4,10;54,26;24,40;1;Germany;Western Europe;"";"1984, 1986, 1996-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +10878;21009;"Deutsche Entomologische Zeitschrift";journal;"14351951, 18601324";"Pensoft Publishers";Yes;No;0,545;Q1;23;31;48;1089;58;48;1,41;35,13;26,14;0;Germany;Western Europe;"Pensoft Publishers";"1954-1955, 1957, 1959-1963, 1965-1974, 1976-1995, 1998-2025";"Animal Science and Zoology (Q1); Insect Science (Q2)";"Agricultural and Biological Sciences" +10879;19700167702;"Notre Dame Journal of Formal Logic";journal;"00294527, 19390726";"Duke University Press";No;No;0,545;Q1;36;26;76;680;48;76;0,57;26,15;25,71;0;United States;Northern America;"Duke University Press";"1960-2025";"Logic (Q1)";"Mathematics" +10880;5700162125;"Action Research";journal;"17412617, 14767503";"SAGE Publications Ltd";No;No;0,545;Q2;55;39;75;1612;180;64;2,18;41,33;75,47;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2003-2026";"Organizational Behavior and Human Resource Management (Q2); Sociology and Political Science (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Social Sciences" +10881;21100429293;"Advances in Civil Engineering Materials";journal;"23791357, 21653984";"ASTM International";No;No;0,545;Q2;30;9;73;491;114;72;1,48;54,56;31,25;0;United States;Northern America;"ASTM International";"2012-2025";"Ceramics and Composites (Q2); Civil and Structural Engineering (Q2); Materials Chemistry (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2); Polymers and Plastics (Q2)";"Engineering; Materials Science" +10882;27072;"Advances in Nursing Science";journal;"01619268, 15505014";"Lippincott Williams and Wilkins Ltd.";No;No;0,545;Q2;74;58;135;2048;262;123;1,77;35,31;75,43;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1978-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +10883;21100787536;"Asia-Pacific Journal of Sports Medicine, Arthroscopy, Rehabilitation and Technology";journal;"22146873";"Elsevier (Singapore) Pte Ltd";Yes;No;0,545;Q2;21;31;78;917;157;78;1,98;29,58;21,59;0;Singapore;Asiatic Region;"Elsevier (Singapore) Pte Ltd";"2014-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3)";"Health Professions; Medicine" +10884;14500154738;"Australian Journal of Water Resources";journal;"13241583";"Taylor and Francis Ltd.";No;No;0,545;Q2;25;18;61;801;128;55;2,16;44,50;37,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Water Science and Technology (Q2)";"Environmental Science" +10885;17600155053;"Bulletin of the Malaysian Mathematical Sciences Society";journal;"01266705, 21804206";"Springer Singapore";No;No;0,545;Q2;42;211;596;6142;725;595;1,26;29,11;35,55;0;Singapore;Asiatic Region;"Springer Singapore";"2008-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +10886;27875;"Chinese Journal of Geophysics";journal;"00015733";"Science Press";No;No;0,545;Q2;80;339;1062;17690;2129;1062;1,94;52,18;31,18;0;China;Asiatic Region;"Science Press";"1979-2026";"Geochemistry and Petrology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +10887;20775;"Developmental and Comparative Immunology";journal;"18790089, 0145305X";"Elsevier Ltd";No;No;0,545;Q2;141;229;562;13130;1458;553;2,58;57,34;43,54;0;United Kingdom;Western Europe;"Elsevier Ltd";"1977-2026";"Aquatic Science (Q2); Developmental Biology (Q3); Immunology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +10888;21487;"Environmental Biology of Fishes";journal;"03781909, 15735133";"Springer Science and Business Media B.V.";No;No;0,545;Q2;104;138;405;8898;724;397;1,69;64,48;38,69;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1976-2026";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +10889;4700153507;"European Science Editing";journal;"25183354, 02583127";"European Association of Science Editors";Yes;Yes;0,545;Q2;16;23;67;434;117;43;1,07;18,87;44,12;0;United Kingdom;Western Europe;"European Association of Science Editors";"2006-2026";"Communication (Q2); Health Informatics (Q3)";"Medicine; Social Sciences" +10890;72827;"Forum Qualitative Sozialforschung";journal;"14385627";"Institut fur Klinische Sychologie and Gemeindesychologie";Yes;Yes;0,545;Q2;65;59;150;4076;295;150;1,76;69,08;74,55;0;Germany;Western Europe;"Institut fur Klinische Sychologie and Gemeindesychologie";"2002-2026";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +10891;7500153132;"International Journal of River Basin Management";journal;"15715124, 18142060";"Taylor and Francis Ltd.";No;No;0,545;Q2;49;134;165;9462;451;162;2,74;70,61;22,92;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Water Science and Technology (Q2)";"Environmental Science" +10892;12695;"International Review of Education";journal;"15730638, 00208566";"Springer Netherlands";No;No;0,545;Q2;56;47;123;2704;303;106;2,21;57,53;58,97;0;Netherlands;Western Europe;"Springer Netherlands";"1955-2026";"Education (Q2); E-learning (Q2)";"Social Sciences" +10893;20985;"Journal of Offshore Mechanics and Arctic Engineering";journal;"1528896X, 08927219";"The American Society of Mechanical Engineers(ASME)";No;No;0,545;Q2;61;75;216;2636;445;210;2,01;35,15;20,08;1;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"1987-2026";"Mechanical Engineering (Q2); Ocean Engineering (Q2); Energy (miscellaneous) (Q3)";"Energy; Engineering" +10894;19700188255;"Journal of Policy Research in Tourism, Leisure and Events";journal;"19407963, 19407971";"Routledge";No;No;0,545;Q2;41;94;112;6352;417;102;3,43;67,57;37,30;3;United States;Northern America;"Routledge";"2009-2026";"Geography, Planning and Development (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +10895;21100790931;"Management of Biological Invasions";journal;"19898649";"Regional Euro-Asian Biological Invasions Centre";Yes;Yes;0,545;Q2;37;51;137;3479;283;133;2,13;68,22;40,40;0;Finland;Western Europe;"Regional Euro-Asian Biological Invasions Centre";"2010-2025";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Management, Monitoring, Policy and Law (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10896;21100906909;"Student Success";journal;"22050795";"UniSQ Library";Yes;Yes;0,545;Q2;20;33;82;1094;158;72;1,79;33,15;67,96;0;Australia;Pacific Region;"UniSQ Library";"2019-2025";"Education (Q2)";"Social Sciences" +10897;21101376051;"Transcranial Magnetic Stimulation";journal;"30505291";"Elsevier B.V.";No;No;0,545;Q2;2;47;7;1883;9;4;1,29;40,06;39,11;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Computational Mechanics (Q2); Safety, Risk, Reliability and Quality (Q2); Biomedical Engineering (Q3)";"Engineering" +10898;21100856191;"Urban Planning";journal;"21837635";"Cogitatio Press";Yes;No;0,545;Q2;39;127;391;8092;890;355;1,87;63,72;59,67;1;Portugal;Western Europe;"Cogitatio Press";"2016-2026";"Urban Studies (Q2)";"Social Sciences" +10899;21100201775;"Arthroscopy Techniques";journal;"22126287";"Elsevier B.V.";Yes;No;0,545;Q3;50;735;1007;11818;1722;1006;1,64;16,08;18,37;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2025";"Orthopedics and Sports Medicine (Q3)";"Medicine" +10900;21251;"Journal of Medical Mycology";journal;"11565233, 17730449";"Elsevier Masson s.r.l.";No;No;0,545;Q3;50;48;204;1591;477;187;2,50;33,15;46,20;0;France;Western Europe;"Elsevier Masson s.r.l.";"1994-2026";"Infectious Diseases (Q3)";"Medicine" +10901;21101297191;"Redox Experimental Medicine";journal;"2755158X";"BioScientifica Ltd.";Yes;No;0,545;Q3;8;12;48;1103;105;46;2,16;91,92;69,81;0;United Kingdom;Western Europe;"BioScientifica Ltd.";"2022-2026";"Biochemistry (Q3); Clinical Biochemistry (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +10902;71092;"Architectural Science Review";journal;"00038628, 17589622";"Taylor and Francis Ltd.";No;No;0,544;Q1;52;87;110;5626;346;106;2,96;64,67;39,34;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1958-2026";"Architecture (Q1)";"Engineering" +10903;21100922747;"Journal of Developmental and Life-Course Criminology";journal;"21994641, 2199465X";"Springer International Publishing AG";No;No;0,544;Q1;26;19;82;1336;131;81;1,54;70,32;57,45;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Law (Q1); Applied Psychology (Q3); Life-span and Life-course Studies (Q3)";"Psychology; Social Sciences" +10904;11000153718;"Journal of Renal Care";journal;"17556678, 17556686";"Wiley-Blackwell";No;No;0,544;Q1;37;41;109;1797;217;97;1,92;43,83;68,90;0;United States;Northern America;"Wiley-Blackwell";"2006-2026";"Advanced and Specialized Nursing (Q1); Nephrology (Q2)";"Medicine; Nursing" +10905;147221;"Journal of Social Archaeology";journal;"17412951, 14696053";"SAGE Publications Ltd";No;No;0,544;Q1;48;15;45;1088;116;45;2,57;72,53;51,61;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Archeology (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +10906;21101044442;"Online Journal of Communication and Media Technologies";journal;"19863497";"Bastas";No;No;0,544;Q1;17;42;166;2288;551;166;3,93;54,48;54,55;2;Cyprus;Western Europe;"Bastas";"2015, 2019-2025";"Media Technology (Q1); Communication (Q2); Computer Science Applications (Q2); Education (Q2)";"Computer Science; Engineering; Social Sciences" +10907;21100850519;"Zoological Letters";journal;"2056306X";"BioMed Central Ltd";Yes;No;0,544;Q1;25;9;57;480;147;57;2,70;53,33;42,55;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2016-2026";"Animal Science and Zoology (Q1)";"Agricultural and Biological Sciences" +10908;21100386518;"Advances in Production Engineering and Management";journal;"18556531, 18546250";"Production Engineering Institute";No;No;0,544;Q2;35;11;106;404;313;106;2,91;36,73;35,00;0;Slovenia;Eastern Europe;"Production Engineering Institute";"2014-2025";"Industrial and Manufacturing Engineering (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Mechanical Engineering (Q2); Nuclear and High Energy Physics (Q2)";"Business, Management and Accounting; Decision Sciences; Engineering; Physics and Astronomy" +10909;29436;"Aquatic Living Resources";journal;"09907440, 17652952";"EDP Sciences";Yes;Yes;0,544;Q2;76;20;67;1560;199;67;2,24;78,00;29,91;0;France;Western Europe;"EDP Sciences";"1988-2026";"Aquatic Science (Q2)";"Agricultural and Biological Sciences" +10910;21745;"Biochemical Genetics";journal;"00062928, 15734927";"Springer";No;No;0,544;Q2;50;503;574;24378;1276;574;2,27;48,47;45,25;0;United States;Northern America;"Springer";"1967-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3); Genetics (Q3); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +10911;5000158106;"Central European Journal of Operations Research";journal;"16139178, 1435246X";"Springer";No;No;0,544;Q2;48;91;168;3576;453;167;2,89;39,30;28,23;0;Germany;Western Europe;"Springer";"2006-2026";"Management Science and Operations Research (Q2)";"Decision Sciences" +10912;21504;"Experimental and Applied Acarology";journal;"01688162, 15729702";"Springer Science and Business Media Deutschland GmbH";No;No;0,544;Q2;88;121;287;6055;680;286;2,34;50,04;39,05;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1985-2026";"Ecology (Q2); Insect Science (Q2); Medicine (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +10913;30004;"Health Information and Libraries Journal";journal;"14711842, 14711834";"Wiley-Blackwell Publishing Ltd";No;No;0,544;Q2;57;52;125;1856;239;111;2,21;35,69;63,31;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2001-2025";"Library and Information Sciences (Q2); Health Informatics (Q3); Health Information Management (Q3)";"Health Professions; Medicine; Social Sciences" +10914;14018;"Human Movement Science";journal;"01679457, 18727646";"Elsevier B.V.";No;No;0,544;Q2;114;70;277;3535;607;273;2,11;50,50;34,46;0;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Medicine (miscellaneous) (Q2); Biophysics (Q3); Experimental and Cognitive Psychology (Q3); Orthopedics and Sports Medicine (Q3); Sports Science (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Psychology" +10915;5200152635;"IEEE Computer Architecture Letters";journal;"15566064, 15566056";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,544;Q2;46;102;149;1321;309;149;2,11;12,95;22,45;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1994, 2002-2026";"Hardware and Architecture (Q2)";"Computer Science" +10916;19600157008;"Inverse Problems and Imaging";journal;"19308345, 19308337";"American Institute of Mathematical Sciences";No;No;0,544;Q2;50;49;181;1986;273;179;1,56;40,53;29,03;0;United States;Northern America;"American Institute of Mathematical Sciences";"2007-2026";"Analysis (Q2); Control and Optimization (Q2); Discrete Mathematics and Combinatorics (Q2); Modeling and Simulation (Q2)";"Mathematics" +10917;28185;"Journal for Specialists in Pediatric Nursing";journal;"15390136, 17446155";"John Wiley and Sons Inc";No;No;0,544;Q2;51;9;65;385;170;65;1,66;42,78;70,27;0;United States;Northern America;"John Wiley and Sons Inc";"2002-2026";"Pediatrics (Q2)";"Nursing" +10918;28574;"Journal of Statistical Physics";journal;"00224715, 15729613";"Springer";No;No;0,544;Q2;128;172;524;6522;614;524;1,02;37,92;17,89;0;United States;Northern America;"Springer";"1969-2026";"Applied Mathematics (Q2); Condensed Matter Physics (Q2); Mathematical Physics (Q2); Statistical and Nonlinear Physics (Q2)";"Mathematics; Physics and Astronomy" +10919;19600157712;"Libyan Journal of Medicine";journal;"19932820, 18196357";"Taylor and Francis Ltd.";Yes;No;0,544;Q2;32;24;87;1023;218;79;2,62;42,63;51,85;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2007, 2009-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +10920;21100894511;"Optical Materials: X";journal;"25901478";"Elsevier B.V.";Yes;No;0,544;Q2;24;32;228;1212;675;222;2,69;37,88;31,21;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Inorganic Chemistry (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2); Spectroscopy (Q2)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +10921;16518;"Planning Perspectives";journal;"02665433, 14664518";"Routledge";No;No;0,544;Q2;39;115;186;6502;284;179;1,66;56,54;45,51;0;United Kingdom;Western Europe;"Routledge";"1986-2026";"Geography, Planning and Development (Q2)";"Social Sciences" +10922;21100897170;"Power and Education";journal;"17577438";"SAGE Publications Ltd";Yes;No;0,544;Q2;26;49;71;2769;196;70;2,84;56,51;55,70;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2009-2026";"Education (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10923;21101171781;"Surfaces";journal;"25719637";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,544;Q2;25;88;142;4980;478;140;3,06;56,59;33,25;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2026";"Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +10924;21101056826;"Inflammatory Intestinal Diseases";journal;"22969365, 22969403";"S. Karger AG";Yes;No;0,544;Q3;26;40;74;1397;148;72;1,75;34,93;25,74;0;Switzerland;Western Europe;"S. Karger AG";"2016-2026";"Gastroenterology (Q3)";"Medicine" +10925;19700183044;"Thyroid Research";journal;"17566614";"BioMed Central Ltd";Yes;No;0,544;Q3;32;60;89;2719;204;86;2,45;45,32;47,83;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2010-2026";"Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3); Endocrine and Autonomic Systems (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +10926;5000158710;"Proceedings - Symposium on the High Performance Interconnects, Hot Interconnects";conference and proceedings;"15504794";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,544;-;26;0;22;0;47;16;2,14;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1994, 2001-2002, 2005-2006, 2008-2009, 2011, 2020-2021, 2023-2024";"Engineering (miscellaneous)";"Engineering" +10927;130127;"Human Rights Law Review";journal;"14617781, 17441021";"Oxford University Press";No;No;0,543;Q1;50;16;110;2824;237;110;1,52;176,50;52,63;1;United Kingdom;Western Europe;"Oxford University Press";"2004-2026";"Law (Q1); Sociology and Political Science (Q2)";"Social Sciences" +10928;24781;"Journal of Applied Philosophy";journal;"14685930, 02643758";"John Wiley and Sons Inc";No;No;0,543;Q1;46;94;168;4507;337;167;1,89;47,95;30,77;0;United States;Northern America;"John Wiley and Sons Inc";"1984-2026";"Philosophy (Q1)";"Arts and Humanities" +10929;21100205737;"Veterinary Medicine International";journal;"20908113, 20420048";"John Wiley and Sons Ltd";Yes;No;0,543;Q1;50;122;199;6122;531;199;2,50;50,18;34,38;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +10930;19427;"Advances in Pharmacology";book series;"15578925, 10543589";"Academic Press Inc.";No;No;0,543;Q2;91;49;102;4095;326;17;3,38;83,57;46,73;0;United States;Northern America;"Academic Press Inc.";"1962-1964, 1966-1973, 1975, 1977-1982, 1984, 1990-2000, 2004-2026";"Medicine (miscellaneous) (Q2); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +10931;25165;"Applied Mathematical Finance";journal;"1350486X, 14664313";"Routledge";No;No;0,543;Q2;40;6;41;246;75;41;1,58;41,00;20,00;0;United Kingdom;Western Europe;"Routledge";"1994-1997, 1999-2026";"Applied Mathematics (Q2); Finance (Q2)";"Economics, Econometrics and Finance; Mathematics" +10932;21100827441;"Current Research in Environmental and Applied Mycology";journal;"22292225";"Beijing Academy of Agriculture and Forestry Sciences, Institute of Plant and Environment Protection";No;No;0,543;Q2;16;20;60;1231;161;60;3,00;61,55;38,96;0;China;Asiatic Region;"Beijing Academy of Agriculture and Forestry Sciences, Institute of Plant and Environment Protection";"2017-2025";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2); Infectious Diseases (Q3); Microbiology (Q3)";"Agricultural and Biological Sciences; Environmental Science; Immunology and Microbiology; Medicine" +10933;20289;"Ecological Complexity";journal;"1476945X";"Elsevier B.V.";No;No;0,543;Q2;74;13;56;727;176;54;1,97;55,92;31,48;0;Netherlands;Western Europe;"Elsevier B.V.";"2004-2026";"Ecological Modeling (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10934;22632;"Geomatica";journal;"19254296, 11951036";"Elsevier B.V.";Yes;No;0,543;Q2;27;48;47;2327;154;47;3,44;48,48;25,00;1;Netherlands;Western Europe;"Elsevier B.V.";"1993-2022, 2024-2026";"Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +10935;21100886154;"IEEE Journal on Multiscale and Multiphysics Computational Techniques";journal;"23798793";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,543;Q2;24;48;120;1546;252;117;2,33;32,21;15,72;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2016-2026";"Computational Mathematics (Q2); Mathematical Physics (Q2); Modeling and Simulation (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Mathematics; Physics and Astronomy" +10936;21100421900;"Information and Computer Security";journal;"2056497X, 20564961";"Emerald Publishing";No;No;0,543;Q2;63;77;110;4356;496;108;4,85;56,57;34,17;0;United Kingdom;Western Europe;"Emerald Publishing";"2015-2026";"Computer Networks and Communications (Q2); Information Systems (Q2); Information Systems and Management (Q2); Management Information Systems (Q2); Management of Technology and Innovation (Q2); Software (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences" +10937;200147133;"International Journal of Lifelong Education";journal;"1464519X, 02601370";"Routledge";No;No;0,543;Q2;61;80;125;4534;369;110;2,73;56,68;63,80;1;United Kingdom;Western Europe;"Routledge";"1982-2026";"Education (Q2); E-learning (Q3); Life-span and Life-course Studies (Q3)";"Social Sciences" +10938;21101286898;"Journal of First-generation Student Success";journal;"26906015, 26906023";"Taylor & Francis Group LLC";No;No;0,543;Q2;10;41;45;1880;105;38;1,78;45,85;67,12;0;United States;Northern America;"Taylor & Francis Group LLC";"2021-2026";"Education (Q2)";"Social Sciences" +10939;21101043321;"Recreational Sports Journal";journal;"15588661, 1558867X";"SAGE Publications Ltd";No;No;0,543;Q2;24;20;51;896;97;50;1,63;44,80;60,94;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-1993, 1995-1996, 2002-2026";"Education (Q2); Health (social science) (Q2); Social Sciences (miscellaneous) (Q2); Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting; Social Sciences" +10940;18400156722;"Research in Comparative and International Education";journal;"17454999";"SAGE Publications Inc.";No;No;0,543;Q2;31;34;87;2104;223;84;2,43;61,88;57,50;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2009-2026";"Education (Q2)";"Social Sciences" +10941;15602;"Electronic Journal of Biotechnology";journal;"07173458";"Pontificia Universidad Catolica de Valparaiso";Yes;Yes;0,543;Q3;81;41;127;2255;461;127;3,76;55,00;37,39;0;Chile;Latin America;"Pontificia Universidad Catolica de Valparaiso";"1998-2026";"Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +10942;13076;"Protist";journal;"16180941, 14344610";"Elsevier GmbH";No;No;0,543;Q3;88;35;87;1864;189;83;2,12;53,26;44,07;1;Germany;Western Europe;"Elsevier GmbH";"1998-2026";"Microbiology (Q3)";"Immunology and Microbiology" +10943;21100349558;"Animal Reproduction";journal;"19843143, 18069614";"Colegio Brasileiro de Reproducao Animal";Yes;No;0,542;Q1;32;63;194;3912;462;194;2,28;62,10;50,15;0;Brazil;Latin America;"Colegio Brasileiro de Reproducao Animal";"2014-2026";"Animal Science and Zoology (Q1); Veterinary (miscellaneous) (Q1)";"Agricultural and Biological Sciences; Veterinary" +10944;130015;"Foodborne Pathogens and Disease";journal;"15567125, 15353141";"Mary Ann Liebert Inc.";No;No;0,542;Q1;95;183;253;7603;649;251;2,49;41,55;50,53;5;United States;Northern America;"Mary Ann Liebert Inc.";"2004-2026";"Animal Science and Zoology (Q1); Food Science (Q2); Applied Microbiology and Biotechnology (Q3); Microbiology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology" +10945;19020;"Plant Cell, Tissue and Organ Culture";journal;"15735044, 01676857";"Springer Science and Business Media B.V.";No;No;0,542;Q1;109;364;763;22234;2299;758;2,91;61,08;48,67;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1981-2026";"Horticulture (Q1)";"Agricultural and Biological Sciences" +10946;19700177345;"Asia-Pacific Journal of Financial Studies";journal;"20419945, 20416156";"John Wiley and Sons Ltd";No;No;0,542;Q2;29;28;91;1488;220;88;1,54;53,14;41,67;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2006-2026";"Finance (Q2)";"Economics, Econometrics and Finance" +10947;19600166216;"Earth Interactions";journal;"10873562";"American Meteorological Society";No;No;0,542;Q2;50;6;39;359;56;35;1,52;59,83;37,93;0;United States;Northern America;"American Meteorological Society";"2000, 2004-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +10948;18021;"European Journal of Phycology";journal;"14694433, 09670262";"Taylor and Francis Ltd.";No;No;0,542;Q2;84;35;103;2653;231;103;2,12;75,80;47,24;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Aquatic Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +10949;27094;"Fiscal Studies";journal;"01435671, 14755890";"Wiley-Blackwell";No;No;0,542;Q2;54;26;85;1111;135;81;1,30;42,73;38,60;3;United States;Northern America;"Wiley-Blackwell";"1979-2026";"Accounting (Q2); Economics and Econometrics (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +10950;21101222651;"IEEE Open Journal of Circuits and Systems";journal;"26441225";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,542;Q2;20;49;95;1826;227;89;2,26;37,27;17,26;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Signal Processing (Q2)";"Computer Science; Engineering; Materials Science" +10951;21100970247;"International Journal of Data and Network Science";journal;"25618148, 25618156";"Growing Science";Yes;Yes;0,542;Q2;49;95;598;4730;3458;598;5,43;49,79;33,58;0;Canada;Northern America;"Growing Science";"2018-2026";"Artificial Intelligence (Q2); Communication (Q2); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Information Systems (Q2); Software (Q2)";"Computer Science; Social Sciences" +10952;21100200660;"International Journal of Web Information Systems";journal;"17440084, 17440092";"Emerald Group Publishing Ltd.";No;No;0,542;Q2;27;40;72;1799;233;70;3,45;44,98;29,77;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005-2026";"Computer Networks and Communications (Q2); Information Systems (Q2)";"Computer Science" +10953;23864;"Journal of Computational Mathematics";journal;"02549409";"Global Science Press";No;No;0,542;Q2;47;62;170;2359;201;170;1,33;38,05;38,82;0;China;Asiatic Region;"Global Science Press";"1996-2017, 2019-2026";"Computational Mathematics (Q2)";"Mathematics" +10954;21100283796;"Manufacturing Letters";journal;"22138463";"Society of Manufacturing Engineers";No;No;0,542;Q2;52;276;687;7661;2054;682;3,06;27,76;20,10;0;United States;Northern America;"Society of Manufacturing Engineers";"2013-2026";"Industrial and Manufacturing Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +10955;21100924768;"Nanotechnology for Environmental Engineering";journal;"23656387, 23656379";"Springer International Publishing AG";No;No;0,542;Q2;43;84;211;7026;892;211;5,14;83,64;43,06;0;Switzerland;Western Europe;"Springer International Publishing AG";"2016-2026";"Environmental Engineering (Q2); Bioengineering (Q3); Environmental Chemistry (Q3)";"Chemical Engineering; Environmental Science" +10956;21100409888;"PsyCh Journal";journal;"20460260, 20460252";"John Wiley and Sons Inc";No;No;0,542;Q2;32;92;286;5097;520;281;1,64;55,40;49,08;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2012-2026";"Psychology (miscellaneous) (Q2)";"Psychology" +10957;21101120350;"Q Open";journal;"26339048";"Oxford University Press";Yes;No;0,542;Q2;13;36;91;2236;220;90;2,33;62,11;41,59;4;United Kingdom;Western Europe;"Oxford University Press";"2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Development (Q2); Economics and Econometrics (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Social Sciences" +10958;11400153317;"Tissue Engineering - Part C: Methods";journal;"19373392, 19373384";"Mary Ann Liebert Inc.";No;No;0,542;Q2;94;41;164;1770;433;158;1,97;43,17;45,50;0;United States;Northern America;"Mary Ann Liebert Inc.";"2008-2026";"Medicine (miscellaneous) (Q2); Bioengineering (Q3); Biomedical Engineering (Q3)";"Chemical Engineering; Engineering; Medicine" +10959;17700154924;"Przeglad Gastroenterologiczny";journal;"18974317, 18955770";"Termedia Publishing House Ltd.";Yes;No;0,542;Q3;31;66;179;2009;326;148;1,66;30,44;41,89;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2008-2025";"Gastroenterology (Q3)";"Medicine" +10960;27629;"Critical Care Nurse";journal;"02795442, 19408250";"American Association of Critical-Care Nurses";No;No;0,541;Q1;55;83;211;1452;317;139;1,17;17,49;81,29;0;United States;Northern America;"American Association of Critical-Care Nurses";"1980-2026";"Critical Care Nursing (Q1); Medicine (miscellaneous) (Q2)";"Medicine; Nursing" +10961;25531;"IEEE Multimedia";journal;"1070986X, 19410166";"IEEE Computer Society";No;No;0,541;Q1;78;53;128;1008;416;122;3,37;19,02;37,82;0;United States;Northern America;"IEEE Computer Society";"1994-2026";"Media Technology (Q1); Computer Science Applications (Q2); Hardware and Architecture (Q2); Signal Processing (Q2); Software (Q2)";"Computer Science; Engineering" +10962;21100255401;"SAGE Open";journal;"21582440";"SAGE Publications Inc.";Yes;No;0,541;Q1;90;1995;3334;143094;11526;3331;3,12;71,73;43,53;2;United States;Northern America;"SAGE Publications Inc.";"2011-2026";"Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +10963;21100207201;"Archives of Plastic Surgery";journal;"22346163, 22346171";"Georg Thieme Verlag";Yes;No;0,541;Q2;51;55;327;1164;521;299;1,46;21,16;32,31;0;South Korea;Asiatic Region;"Georg Thieme Verlag";"2012-2026";"Surgery (Q2)";"Medicine" +10964;21100466404;"Cogent Engineering";journal;"23311916";"Cogent OA";Yes;No;0,541;Q2;58;105;874;5211;3345;874;3,78;49,63;22,15;0;United Kingdom;Western Europe;"Cogent OA";"2014-2026";"Chemical Engineering (miscellaneous) (Q2); Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2)";"Chemical Engineering; Computer Science; Engineering" +10965;23746;"Computer";trade journal;"15580814, 00189162";"IEEE Computer Society";No;No;0,541;Q2;192;235;600;3823;1449;546;2,29;16,27;25,23;0;United States;Northern America;"IEEE Computer Society";"1970-2026";"Computer Science (miscellaneous) (Q2)";"Computer Science" +10966;23172;"Illinois Journal of Mathematics";journal;"00192082";"Duke University Press";Yes;No;0,541;Q2;44;27;88;542;49;88;0,60;20,07;19,30;0;United States;Northern America;"Duke University Press";"1957-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +10967;15525;"International Review of Sociology";journal;"03906701, 14699273";"Routledge";No;No;0,541;Q2;39;44;86;3457;187;83;2,25;78,57;49,23;0;United Kingdom;Western Europe;"Routledge";"1987-1994, 2003-2026";"Sociology and Political Science (Q2)";"Social Sciences" +10968;21100217628;"Journal of Developmental Origins of Health and Disease";journal;"20401752, 20401744";"Cambridge University Press";No;No;0,541;Q2;52;52;209;3332;364;205;1,70;64,08;58,42;0;United Kingdom;Western Europe;"Cambridge University Press";"2010-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +10969;27769;"Journal of Forensic Sciences";journal;"00221198, 15564029";"John Wiley and Sons Inc";No;No;0,541;Q2;123;237;724;8371;1463;631;1,95;35,32;45,74;0;United States;Northern America;"John Wiley and Sons Inc";"1961, 1963-2026";"Pathology and Forensic Medicine (Q2); Genetics (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10970;21100828148;"Manufacturing Review";journal;"22654224";"EDP Sciences";Yes;No;0,541;Q2;31;30;75;1216;332;75;3,98;40,53;22,47;0;France;Western Europe;"EDP Sciences";"2014-2026";"Industrial and Manufacturing Engineering (Q2)";"Engineering" +10971;21101112212;"Pediatric Quality and Safety";journal;"24720054";"Wolters Kluwer Health";Yes;Yes;0,541;Q2;18;57;226;1299;294;220;1,11;22,79;66,24;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2017-2025";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +10972;130075;"Plasma Processes and Polymers";journal;"16128869, 16128850";"Wiley-VCH Verlag";No;No;0,541;Q2;98;145;366;8409;1263;360;3,38;57,99;34,19;0;Germany;Western Europe;"Wiley-VCH Verlag";"2004-2026";"Condensed Matter Physics (Q2); Polymers and Plastics (Q2)";"Materials Science; Physics and Astronomy" +10973;26332;"Shiyou Diqiu Wuli Kantan/Oil Geophysical Prospecting";journal;"10007210";"";No;No;0,541;Q2;33;96;441;2646;646;440;1,49;27,56;26,25;0;China;Asiatic Region;"";"1998, 2001-2025";"Energy Engineering and Power Technology (Q2); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Energy" +10974;20887;"Virus Genes";journal;"1572994X, 09208569";"Springer";No;No;0,541;Q2;70;80;234;3083;497;232;2,06;38,54;44,44;1;United States;Northern America;"Springer";"1987-2026";"Medicine (miscellaneous) (Q2); Genetics (Q3); Molecular Biology (Q3); Virology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +10975;19431;"Wetlands Ecology and Management";journal;"15729834, 09234861";"Springer Science and Business Media B.V.";No;No;0,541;Q2;85;87;193;5748;416;186;2,07;66,07;37,50;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1982, 1989-2026";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Management, Monitoring, Policy and Law (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10976;21100829244;"Applied Neuropsychology: Adult";journal;"23279095, 23279109";"Routledge";No;No;0,541;Q3;61;336;461;18633;1068;457;2,01;55,46;56,42;10;United States;Northern America;"Routledge";"2012-2026";"Developmental and Educational Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)";"Psychology" +10977;14340;"Brain Injury";journal;"1362301X, 02699052";"Taylor and Francis Ltd.";No;No;0,541;Q3;127;137;408;6833;833;400;1,94;49,88;54,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Developmental and Educational Psychology (Q3); Neurology (clinical) (Q3); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience; Psychology" +10978;21100870576;"Current Medical Science";journal;"2523899X, 20965230";"Huazhong University of Science and Technology";No;No;0,541;Q3;45;130;416;6593;848;407;1,95;50,72;39,81;0;China;Asiatic Region;"Huazhong University of Science and Technology";"2018-2026";"Biochemistry (Q3); Genetics (Q3)";"Biochemistry, Genetics and Molecular Biology" +10979;21101245400;"Journal of Physiological Investigation";journal;"29506344, 29506352";"Wolters Kluwer Medknow Publications";Yes;No;0,541;Q3;37;37;133;1728;293;132;2,34;46,70;41,57;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2024-2026";"Physiology (Q3); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +10980;26603;"Evaluation Review";journal;"15523926, 0193841X";"SAGE Publications Inc.";No;No;0,540;Q1;64;50;115;2745;388;109;3,86;54,90;46,62;0;United States;Northern America;"SAGE Publications Inc.";"1977-2026";"Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +10981;5700165569;"Food, Culture and Society";journal;"17517443, 15528014";"Taylor and Francis Ltd.";No;No;0,540;Q1;39;119;232;6334;463;209;1,86;53,23;64,85;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005, 2008-2026";"Cultural Studies (Q1); Food Science (Q2); Social Psychology (Q2)";"Agricultural and Biological Sciences; Psychology; Social Sciences" +10982;25452;"Journal of Wood Science";journal;"14350211, 16114663";"Springer";Yes;No;0,540;Q1;82;66;162;2219;484;156;2,67;33,62;25,49;0;Japan;Asiatic Region;"Springer";"1998-2026";"Forestry (Q1); Biomaterials (Q3)";"Agricultural and Biological Sciences; Materials Science" +10983;21101179113;"Jurnal Media Hukum";journal;"25031023, 08548919";"Faculty of Law, Universitas Muhammadiyah Yogyakarta";Yes;No;0,540;Q1;9;20;40;882;123;40;3,30;44,10;37,29;0;Indonesia;Asiatic Region;"Faculty of Law, Universitas Muhammadiyah Yogyakarta";"2019-2025";"Law (Q1); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +10984;21101341417;"TASK";journal;"26661756, 26661748";"John Benjamins Publishing Company";No;No;0,540;Q1;6;5;34;202;35;28;0,57;40,40;90,91;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2021-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +10985;21101215063;"Asia and the Global Economy";journal;"26671115";"Elsevier B.V.";Yes;No;0,540;Q2;11;22;64;1043;193;62;2,88;47,41;36,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Political Science and International Relations (Q2)";"Economics, Econometrics and Finance; Social Sciences" +10986;20066;"Biopharmaceutics and Drug Disposition";journal;"1099081X, 01422782";"John Wiley and Sons Ltd";No;No;0,540;Q2;72;21;79;883;197;77;2,66;42,05;36,27;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1979-2026";"Medicine (miscellaneous) (Q2); Pharmaceutical Science (Q2); Pharmacology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +10987;21101097035;"Bulletin of Chinese Academy of Sciences";journal;"10003045";"Science Press";No;No;0,540;Q2;39;212;574;3855;1318;559;2,34;18,18;36,97;0;China;Asiatic Region;"Science Press";"2019-2026";"Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Public Administration (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering; Social Sciences" +10988;26588;"ChemPhysChem";journal;"14394235, 14397641";"Wiley-VCH Verlag";No;No;0,540;Q2;173;487;1299;30353;2983;1290;2,37;62,33;32,82;0;Germany;Western Europe;"Wiley-VCH Verlag";"2000-2026";"Atomic and Molecular Physics, and Optics (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Physics and Astronomy" +10989;21100821159;"Climate Change Economics";journal;"20100086, 20100078";"World Scientific";No;No;0,540;Q2;37;24;83;1200;196;80;1,93;50,00;37,18;0;Singapore;Asiatic Region;"World Scientific";"2010-2026";"Economics and Econometrics (Q2); Management, Monitoring, Policy and Law (Q2); Global and Planetary Change (Q3)";"Economics, Econometrics and Finance; Environmental Science" +10990;17465;"Community Ecology";journal;"15858553, 15882756";"Springer Nature";No;No;0,540;Q2;41;55;90;3835;167;88;1,78;69,73;32,19;0;Switzerland;Western Europe;"Springer Nature";"2000-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10991;21085;"Dermatologic Surgery";journal;"10760512, 15244725";"Lippincott Williams and Wilkins";No;No;0,540;Q2;151;539;1104;7115;1386;813;1,20;13,20;46,35;0;United States;Northern America;"Lippincott Williams and Wilkins";"1995-2026";"Dermatology (Q2); Medicine (miscellaneous) (Q2); Surgery (Q2)";"Medicine" +10992;21100887440;"Educational Studies - AESA";journal;"00131946, 15326993";"Taylor and Francis Ltd.";No;No;0,540;Q2;20;37;106;2143;199;103;1,54;57,92;55,17;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008, 2010, 2018-2026";"Education (Q2); Sociology and Political Science (Q2)";"Social Sciences" +10993;21101171604;"Electricity";journal;"26734826";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,540;Q2;17;75;101;3040;353;100;3,71;40,53;17,00;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Electrical and Electronic Engineering (Q2); Energy (miscellaneous) (Q3)";"Energy; Engineering" +10994;4700152713;"Energy Sources, Part B: Economics, Planning and Policy";journal;"15567249, 15567257";"Taylor and Francis Ltd.";No;No;0,540;Q2;60;79;151;4651;427;150;2,92;58,87;30,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Chemical Engineering (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Environmental Science (miscellaneous) (Q2); Fuel Technology (Q2); Nuclear Energy and Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Chemical Engineering; Energy; Environmental Science" +10995;23754;"Indian Heart Journal";journal;"22133763, 00194832";"Elsevier B.V.";Yes;Yes;0,540;Q2;56;94;283;2833;570;267;2,08;30,14;23,34;0;Netherlands;Western Europe;"Elsevier B.V.";"1961, 1964-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +10996;145496;"Indian Journal of Critical Care Medicine";journal;"1998359X, 09725229";"Jaypee Brothers Medical Publishers (P) Ltd";Yes;No;0,540;Q2;49;247;792;4073;942;455;1,16;16,49;34,20;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2004-2025";"Critical Care and Intensive Care Medicine (Q2)";"Medicine" +10997;12167;"Marine Ecology";journal;"01739565, 14390485";"Wiley-Blackwell Publishing Ltd";No;No;0,540;Q2;71;78;143;5936;290;141;1,98;76,10;34,96;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1980-2026";"Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10998;21100414365;"Nature Conservation";journal;"13143301, 13146947";"Pensoft Publishers";Yes;No;0,540;Q2;38;43;125;2675;298;117;1,74;62,21;30,95;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2012-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +10999;145562;"Northwestern Geology";journal;"10096248";"Xi'an Center of China Geological Survey";No;No;0,540;Q2;28;136;398;8679;703;398;1,73;63,82;28,93;0;China;Asiatic Region;"Xi'an Center of China Geological Survey";"2005-2026";"Geology (Q2)";"Earth and Planetary Sciences" +11000;21101271742;"Online Journal of Public Health Informatics";journal;"19472579";"JMIR Publications Inc.";Yes;No;0,540;Q2;6;0;34;0;74;34;2,18;0,00;0,00;0;Canada;Northern America;"JMIR Publications Inc.";"2013-2019, 2023-2024";"Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2); Health Informatics (Q3)";"Medicine" +11001;21101033881;"Pediatric Investigation";journal;"20963726, 25742272";"John Wiley and Sons Inc";Yes;No;0,540;Q2;19;47;132;2068;242;92;1,44;44,00;51,89;1;United States;Northern America;"John Wiley and Sons Inc";"2017-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +11002;21100853805;"Quantitative Biology";journal;"20954697, 20954689";"John Wiley and Sons Inc";No;No;0,540;Q2;25;41;109;2901;223;98;2,46;70,76;38,52;0;China;Asiatic Region;"John Wiley and Sons Inc";"2013-2026";"Applied Mathematics (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Computer Science Applications (Q2); Modeling and Simulation (Q2)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics" +11003;19600157763;"Research in Pharmaceutical Sciences";journal;"17355362, 17359414";"Wolters Kluwer Medknow Publications";Yes;No;0,540;Q2;50;60;181;3306;495;181;2,59;55,10;47,54;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2009-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +11004;21100334898;"Theoretical and Experimental Plant Physiology";journal;"21970025";"Springer Science and Business Media Deutschland GmbH";No;No;0,540;Q2;69;47;117;3287;283;117;2,23;69,94;40,85;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +11005;5800207503;"Future Microbiology";journal;"17460921, 17460913";"Taylor and Francis Ltd.";No;No;0,540;Q3;111;122;400;7662;882;360;2,35;62,80;53,53;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Microbiology (Q3); Microbiology (medical) (Q3)";"Immunology and Microbiology; Medicine" +11006;12000154520;"Genes and Genomics";journal;"19769571, 20929293";"Genetics Society of Korea";No;No;0,540;Q3;37;114;389;5292;793;387;1,98;46,42;40,53;0;South Korea;Asiatic Region;"Genetics Society of Korea";"2008-2026";"Biochemistry (Q3); Genetics (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +11007;5700166187;"Du Bois Review";journal;"1742058X, 17420598";"Cambridge University Press";No;No;0,539;Q1;51;20;54;1825;106;54;2,03;91,25;42,86;0;United Kingdom;Western Europe;"Cambridge University Press";"2004-2025";"Anthropology (Q1); Cultural Studies (Q1); Sociology and Political Science (Q2)";"Social Sciences" +11008;21100805796;"Insight on Africa";journal;"09763465, 09750878";"SAGE Publications Inc.";No;No;0,539;Q1;16;18;34;972;99;34;2,91;54,00;29,17;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2009-2010, 2012, 2014-2026";"History (Q1); Development (Q2); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +11009;15619;"Journal of Contemporary Ethnography";journal;"08912416, 15525414";"SAGE Publications Inc.";No;No;0,539;Q1;72;35;97;2205;200;96;1,52;63,00;57,89;0;United States;Northern America;"SAGE Publications Inc.";"1972-1982, 1984-2026";"Anthropology (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q2); Urban Studies (Q2)";"Social Sciences" +11010;5200152623;"Journal of Education";journal;"00220574, 25155741";"SAGE Publications Ltd";No;No;0,539;Q1;21;42;205;2664;470;204;2,49;63,43;62,50;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1922, 1928, 1974, 2005, 2015-2026";"Arts and Humanities (miscellaneous) (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +11011;3300147807;"Livestock Science";journal;"18711413";"Elsevier B.V.";No;No;0,539;Q1;139;141;543;7235;1285;543;2,42;51,31;40,26;2;Netherlands;Western Europe;"Elsevier B.V.";"2006-2026";"Veterinary (miscellaneous) (Q1); Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences; Veterinary" +11012;17666;"American Journal of Psychotherapy";journal;"25756559, 00029564";"American Psychiatric Association";No;No;0,539;Q2;61;0;99;0;162;84;1,50;0,00;0,00;0;United States;Northern America;"American Psychiatric Association";"1947-2016, 2018-2025";"Clinical Psychology (Q2); Medicine (miscellaneous) (Q2)";"Medicine; Psychology" +11013;21101018950;"Biologia Futura";journal;"26768607, 26768615";"Springer Nature";Yes;No;0,539;Q2;40;47;139;3621;312;133;2,11;77,04;43,06;0;Switzerland;Western Europe;"Springer Nature";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +11014;21100208067;"Empirical Research in Vocational Education and Training";journal;"18776337, 18776345";"Springer Science + Business Media";Yes;Yes;0,539;Q2;26;25;47;1995;165;47;3,19;79,80;55,22;0;United States;Northern America;"Springer Science + Business Media";"2009-2026";"Education (Q2)";"Social Sciences" +11015;25025;"European Journal of Oral Sciences";journal;"09098836, 16000722";"Blackwell Munksgaard";No;No;0,539;Q2;110;53;175;2413;393;172;2,16;45,53;51,95;0;Denmark;Western Europe;"Blackwell Munksgaard";"1970-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +11016;21101022220;"Evolutionary Systematics";journal;"25350730";"Pensoft Publishers";Yes;No;0,539;Q2;11;22;53;1018;80;53;1,72;46,27;27,40;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2017-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +11017;21101339713;"Frontiers in Environmental Economics";journal;"28132823";"Frontiers Media SA";Yes;No;0,539;Q2;7;33;56;2024;157;51;2,88;61,33;33,33;1;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Economics and Econometrics (Q2); Environmental Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Economics, Econometrics and Finance; Energy; Environmental Science" +11018;19900193647;"Genes and Environment";journal;"18807046, 18807062";"BioMed Central Ltd";Yes;No;0,539;Q2;29;26;89;1367;200;85;2,00;52,58;33,59;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2007, 2009-2026";"Environmental Science (miscellaneous) (Q2); Genetics (Q3); Social Psychology (Q3)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Psychology" +11019;19900192310;"International Journal of Applied Mechanics";journal;"17588251, 1758826X";"World Scientific";No;No;0,539;Q2;57;129;336;5945;873;335;2,49;46,09;25,85;0;Singapore;Asiatic Region;"World Scientific";"2009-2026";"Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +11020;18519;"Journal of Asthma";journal;"15324303, 02770903";"Taylor & Francis Group LLC Philadelphia";No;No;0,539;Q2;83;231;715;8602;1394;700;1,78;37,24;51,81;1;United States;Northern America;"Taylor & Francis Group LLC Philadelphia";"1963-1976, 1978-2026";"Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2); Immunology and Allergy (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +11021;15427;"Journal of Cognitive Psychotherapy";journal;"08898391, 1938887X";"Springer Publishing Company";No;No;0,539;Q2;60;26;61;1225;78;57;0,83;47,12;60,55;0;United States;Northern America;"Springer Publishing Company";"1987-2025";"Clinical Psychology (Q2); Experimental and Cognitive Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +11022;4700151706;"Journal of Gastrointestinal and Liver Diseases";journal;"18418724";"Romanian Society of Gastroenterology";Yes;No;0,539;Q2;64;109;298;2626;417;169;1,34;24,09;46,12;0;Romania;Eastern Europe;"Romanian Society of Gastroenterology";"2006-2025";"Medicine (miscellaneous) (Q2); Gastroenterology (Q3)";"Medicine" +11023;28544;"Journal of Mathematical Physics";journal;"10897658, 00222488";"American Institute of Physics";No;No;0,539;Q2;131;486;1259;17484;1586;1252;1,21;35,98;28,17;0;United States;Northern America;"American Institute of Physics";"1960-2026";"Mathematical Physics (Q2); Statistical and Nonlinear Physics (Q3)";"Mathematics; Physics and Astronomy" +11024;11300153316;"Journal of Medical Imaging and Radiation Oncology";journal;"17549485, 17549477";"Wiley-Blackwell Publishing Ltd";No;No;0,539;Q2;57;116;397;2809;566;355;1,29;24,22;37,52;3;Australia;Pacific Region;"Wiley-Blackwell Publishing Ltd";"2008-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)";"Medicine" +11025;16358;"Journal of Nippon Medical School";journal;"13454676, 13473409";"Medical Association of Nippon Medical School";Yes;No;0,539;Q2;44;74;243;1720;466;241;1,88;23,24;24,78;0;Japan;Asiatic Region;"Medical Association of Nippon Medical School";"2000-2025";"Medicine (miscellaneous) (Q2)";"Medicine" +11026;21100852965;"Kinesiology Review";journal;"21616035, 21630453";"Human Kinetics Publishers Inc.";No;No;0,539;Q2;22;59;130;2965;237;122;1,99;50,25;55,77;0;United States;Northern America;"Human Kinetics Publishers Inc.";"2017-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Public Health, Environmental and Occupational Health (Q2)";"Health Professions; Medicine" +11027;25167;"Monatshefte fur Mathematik";journal;"14365081, 00269255";"Springer";No;No;0,539;Q2;43;120;383;3142;297;383;0,70;26,18;24,54;0;Austria;Western Europe;"Springer";"1890-1918, 1920-1923, 1926, 1928-1937, 1939, 1941, 1948-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11028;26660;"Pancreas";journal;"15364828, 08853177";"Lippincott Williams and Wilkins";No;No;0,539;Q2;127;157;453;4250;647;352;1,52;27,07;31,86;0;United States;Northern America;"Lippincott Williams and Wilkins";"1986-2026";"Internal Medicine (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3); Hepatology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11029;22994;"Parasitology International";journal;"13835769, 18730329";"Elsevier Ireland Ltd";No;No;0,539;Q2;73;115;363;5580;795;359;2,29;48,52;40,66;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1997-2026";"Parasitology (Q2); Infectious Diseases (Q3)";"Immunology and Microbiology; Medicine" +11030;22315;"Personal and Ubiquitous Computing";journal;"16174909, 16174917";"Springer London";No;No;0,539;Q2;106;11;328;690;1121;306;3,70;62,73;32,35;0;United Kingdom;Western Europe;"Springer London";"1997-2026";"Computer Science Applications (Q2); Hardware and Architecture (Q2); Library and Information Sciences (Q2); Management Science and Operations Research (Q2)";"Computer Science; Decision Sciences; Social Sciences" +11031;21101278531;"Progress in Engineering Science";journal;"29504252";"Elsevier B.V.";No;No;0,539;Q2;8;147;31;8578;155;31;5,00;58,35;17,38;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Engineering (miscellaneous) (Q2); Mechanical Engineering (Q2)";"Engineering" +11032;21363;"Transplant Immunology";journal;"09663274, 18785492";"Elsevier B.V.";No;No;0,539;Q2;70;130;508;5256;940;504;1,68;40,43;41,26;0;Netherlands;Western Europe;"Elsevier B.V.";"1993-2026";"Transplantation (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +11033;4700151712;"Cancer Informatics";journal;"11769351";"Libertas Academica Ltd.";Yes;No;0,539;Q3;42;25;97;1688;254;96;2,42;67,52;50,91;0;New Zealand;Pacific Region;"Libertas Academica Ltd.";"2005-2026";"Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11034;16815;"Journal of Spinal Cord Medicine";journal;"20457723, 10790268";"Taylor and Francis Ltd.";No;No;0,539;Q3;84;193;335;7199;655;314;1,92;37,30;47,25;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Neurology (clinical) (Q3)";"Medicine" +11035;19700190302;"Mediterranean Journal of Hematology and Infectious Diseases";journal;"20353006";"Universita Cattolica del Sacro Cuore";Yes;No;0,539;Q3;47;79;222;2548;330;148;1,55;32,25;52,71;0;Italy;Western Europe;"Universita Cattolica del Sacro Cuore";"2010-2026";"Hematology (Q3); Infectious Diseases (Q3)";"Medicine" +11036;21100334957;"Archaeologia Baltica";book series;"13925520, 23516534";"Institute of Baltic Region History and Archaeology of Klaipeda University";No;No;0,538;Q1;10;6;23;266;23;12;1,31;44,33;62,50;0;Lithuania;Eastern Europe;"Institute of Baltic Region History and Archaeology of Klaipeda University";"2010, 2014-2018, 2020-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +11037;5800208165;"Probus";journal;"16134079, 09214771";"De Gruyter Mouton";No;No;0,538;Q1;40;15;39;1175;25;36;0,62;78,33;59,26;0;Germany;Western Europe;"De Gruyter Mouton";"1989-2026";"Linguistics and Language (Q1)";"Social Sciences" +11038;5800173384;"Current Stem Cell Research and Therapy";journal;"1574888X, 22123946";"Bentham Science Publishers";No;No;0,538;Q2;67;123;284;8752;680;280;2,39;71,15;44,69;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +11039;21100924372;"Data";journal;"23065729";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,538;Q2;49;211;519;8330;1653;415;2,96;39,48;33,88;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2026";"Computer Science Applications (Q2); Information Systems (Q2); Information Systems and Management (Q2)";"Computer Science; Decision Sciences" +11040;21100416483;"Families, Relationships and Societies";journal;"20467435, 20467443";"The Policy Press";No;No;0,538;Q2;28;37;115;1633;197;112;1,74;44,14;78,13;0;United Kingdom;Western Europe;"The Policy Press";"2012-2025";"Sociology and Political Science (Q2)";"Social Sciences" +11041;21101039662;"H2Open Journal";journal;"26166518";"IWA Publishing";Yes;No;0,538;Q2;18;29;107;1722;284;105;3,00;59,38;22,73;0;United Kingdom;Western Europe;"IWA Publishing";"2018-2025";"Environmental Science (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2)";"Environmental Science" +11042;22110;"Journal for the Education of the Gifted";journal;"21629501, 01623532";"SAGE Publications Inc.";No;No;0,538;Q2;48;18;47;1039;95;46;1,83;57,72;58,97;0;United States;Northern America;"SAGE Publications Inc.";"1983, 1987-2026";"Education (Q2)";"Social Sciences" +11043;22564;"Journal of Invertebrate Pathology";journal;"00222011, 10960805";"Academic Press Inc.";No;No;0,538;Q2;119;145;373;9322;1001;372;2,57;64,29;42,74;0;United States;Northern America;"Academic Press Inc.";"1965-2026";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +11044;17980;"Neuropathology";journal;"09196544, 14401789";"Wiley-Blackwell Publishing Ltd";No;No;0,538;Q2;74;74;178;2297;272;167;1,38;31,04;36,20;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1993-2026";"Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Neurology (clinical) (Q3)";"Medicine" +11045;12317;"Optical Fiber Technology";journal;"10959912, 10685200";"Academic Press Inc.";No;No;0,538;Q2;82;370;1114;12743;3457;1111;3,06;34,44;32,49;0;United States;Northern America;"Academic Press Inc.";"1970, 1994-2026";"Atomic and Molecular Physics, and Optics (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Instrumentation (Q2)";"Engineering; Materials Science; Physics and Astronomy" +11046;21101047130;"Sampling Theory, Signal Processing, and Data Analysis";journal;"27305724, 27305716";"Springer International Publishing";No;No;0,538;Q2;22;24;74;1164;96;74;1,28;48,50;23,73;0;Switzerland;Western Europe;"Springer International Publishing";"2018, 2021-2026";"Algebra and Number Theory (Q2); Analysis (Q2); Computational Mathematics (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Signal Processing (Q2)";"Computer Science; Mathematics; Medicine" +11047;12909;"Systems Research and Behavioral Science";journal;"10991743, 10927026";"John Wiley and Sons Ltd";No;No;0,538;Q2;64;161;214;11009;681;195;2,60;68,38;32,73;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1969, 1973, 1996-2026";"Information Systems and Management (Q2); Social Sciences (miscellaneous) (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +11048;19700174665;"Turk Patoloji Dergisi";journal;"10185615, 13095730";"Federation of Turkish Pathology Societies";Yes;Yes;0,538;Q2;20;23;96;490;202;89;1,34;21,30;60,18;0;Turkey;Middle East;"Federation of Turkish Pathology Societies";"2010-2026";"Pathology and Forensic Medicine (Q2)";"Medicine" +11049;19764;"Intervirology";journal;"03005526, 14230100";"S. Karger AG";Yes;No;0,538;Q3;70;6;52;210;104;52;1,89;35,00;41,03;0;Switzerland;Western Europe;"S. Karger AG";"1973-2026";"Infectious Diseases (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine" +11050;19800188016;"Journal of Clinical Orthopaedics and Trauma";journal;"09765662, 22133445";"Delhi Orthopedic Association";No;No;0,538;Q3;51;310;488;8985;915;472;1,61;28,98;18,25;0;Netherlands;Western Europe;"Delhi Orthopedic Association";"2010-2026";"Orthopedics and Sports Medicine (Q3)";"Medicine" +11051;21101111778;"Animal Diseases";journal;"27310442";"BioMed Central Ltd";Yes;Yes;0,537;Q1;15;49;113;3093;286;110;2,74;63,12;42,60;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2021-2026";"Veterinary (miscellaneous) (Q1); Animal Science and Zoology (Q2); Immunology and Microbiology (miscellaneous) (Q2); Virology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology; Veterinary" +11052;16300154741;"Global Media and Communication";journal;"17427665, 17427673";"SAGE Publications Ltd";No;No;0,537;Q1;35;19;55;1087;126;55;1,41;57,21;32,26;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2026";"Arts and Humanities (miscellaneous) (Q1); Communication (Q2)";"Arts and Humanities; Social Sciences" +11053;16446;"Indonesia and the Malay World";journal;"13639811, 14698382";"Routledge";No;No;0,537;Q1;25;15;53;857;76;50;0,91;57,13;42,11;0;United Kingdom;Western Europe;"Routledge";"2000-2025";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q2)";"Arts and Humanities; Social Sciences" +11054;23023;"New Forests";journal;"01694286, 15735095";"Springer Science and Business Media B.V.";No;No;0,537;Q1;69;75;223;4951;481;222;1,98;66,01;34,16;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1986-2026";"Forestry (Q1)";"Agricultural and Biological Sciences" +11055;18851;"Research in Veterinary Science";journal;"15322661, 00345288";"Elsevier B.V.";No;No;0,537;Q1;100;376;817;18410;1922;814;2,24;48,96;48,66;2;Netherlands;Western Europe;"Elsevier B.V.";"1965-2026";"Veterinary (miscellaneous) (Q1)";"Veterinary" +11056;33067;"Arquivos Brasileiros de Cardiologia";journal;"0066782X, 16784170";"Sociedade Brasileira de Cardiologia";Yes;Yes;0,537;Q2;69;277;908;5516;964;469;1,01;19,91;35,67;0;Brazil;Latin America;"Sociedade Brasileira de Cardiologia";"1950-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +11057;26771;"Astrophysics and Space Science";journal;"0004640X, 1572946X";"Springer Netherlands";No;No;0,537;Q2;88;139;351;8244;710;347;2,05;59,31;28,48;0;Netherlands;Western Europe;"Springer Netherlands";"1968-2026";"Astronomy and Astrophysics (Q2); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Physics and Astronomy" +11058;13625;"Audiology and Neurotology";journal;"14203030, 14219700";"S. Karger AG";No;No;0,537;Q2;96;68;152;2427;273;151;1,47;35,69;44,26;0;Switzerland;Western Europe;"S. Karger AG";"1996-2026";"Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Speech and Hearing (Q2); Physiology (Q3); Sensory Systems (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Neuroscience" +11059;21949;"Brazilian Journal of Anesthesiology (English Edition)";journal;"23522291, 01040014";"Elsevier Editora Ltda";Yes;Yes;0,537;Q2;19;84;382;2333;699;303;1,87;27,77;38,30;0;Brazil;Latin America;"Elsevier Editora Ltda";"2013-2016, 2021-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +11060;28455;"Computational Complexity";journal;"14208954, 10163328";"Springer International Publishing";No;No;0,537;Q2;45;19;43;616;46;43;0,77;32,42;10,81;0;Switzerland;Western Europe;"Springer International Publishing";"1991-1996, 1998-2026";"Computational Mathematics (Q2); Computational Theory and Mathematics (Q2); Mathematics (miscellaneous) (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +11061;17100154740;"Counselor Education and Supervision";journal;"00110035, 15566978";"Wiley-Blackwell";No;No;0,537;Q2;52;37;88;1759;191;84;2,03;47,54;68,42;0;United States;Northern America;"Wiley-Blackwell";"1961-2026";"Clinical Psychology (Q2); Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +11062;130025;"Current Drug Delivery";journal;"15672018, 18755704";"Bentham Science Publishers";No;No;0,537;Q2;82;130;306;11930;1101;300;3,88;91,77;42,50;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2004-2026";"Pharmaceutical Science (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +11063;21100902009;"Economies";journal;"22277099";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,537;Q2;52;370;980;23356;3467;978;3,33;63,12;35,36;2;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Social Sciences" +11064;19700201637;"Foundations and Trends in Econometrics";journal;"15513076, 15513084";"Now Publishers Inc";No;No;0,537;Q2;15;0;8;0;20;8;2,60;0,00;0,00;0;United States;Northern America;"Now Publishers Inc";"2005-2006, 2009-2024";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +11065;21101184501;"Global Journal on Quality and Safety in Healthcare";journal;"25899449, 26662353";"Innovative Healthcare Institute";Yes;No;0,537;Q2;8;29;58;681;152;50;2,62;23,48;35,04;0;United States;Northern America;"Innovative Healthcare Institute";"2023-2025";"Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2); Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2); Chemical Health and Safety (Q3)";"Chemical Engineering; Engineering; Medicine; Social Sciences" +11066;21101240975;"High-speed Railway";journal;"20973446, 29498678";"KeAi Communications Co.";Yes;No;0,537;Q2;11;39;66;1472;230;66;3,48;37,74;26,57;0;China;Asiatic Region;"KeAi Communications Co.";"2023-2026";"Civil and Structural Engineering (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +11067;26631;"Internal Medicine Journal";journal;"14440903, 14455994";"John Wiley and Sons Inc";No;No;0,537;Q2;88;339;1046;8987;1519;811;1,42;26,51;44,92;1;United States;Northern America;"John Wiley and Sons Inc";"2001-2026";"Internal Medicine (Q2)";"Medicine" +11068;19700182406;"International Journal of Intelligent Computing and Cybernetics";journal;"1756378X, 17563798";"Emerald Group Publishing Ltd.";No;No;0,537;Q2;29;50;108;2495;384;108;4,08;49,90;31,08;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2026";"Computer Science (miscellaneous) (Q2)";"Computer Science" +11069;21101027488;"International Journal of Pediatrics (United Kingdom)";journal;"16879740, 16879759";"John Wiley and Sons Ltd";Yes;No;0,537;Q2;21;42;62;1509;127;62;1,91;35,93;53,30;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010, 2016, 2019-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +11070;13665;"Journal of Cellular Plastics";journal;"15307999, 0021955X";"SAGE Publications Ltd";No;No;0,537;Q2;52;23;76;1019;240;76;3,38;44,30;34,12;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1965-2026";"Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)";"Chemistry; Materials Science" +11071;93879;"Journal of Child and Adolescent Psychiatric Nursing";journal;"10736077, 17446171";"Wiley-Blackwell";No;No;0,537;Q2;47;39;130;1635;217;109;1,44;41,92;68,85;0;United States;Northern America;"Wiley-Blackwell";"1988-2026";"Medicine (miscellaneous) (Q2); Pediatrics (Q2); Psychiatry and Mental Health (Q3)";"Medicine; Nursing" +11072;31350;"Mineral Deposits";journal;"02587106";"Editorial Department of Mineral Deposits";No;No;0,537;Q2;26;38;226;2273;344;226;1,49;59,82;28,22;0;China;Asiatic Region;"Editorial Department of Mineral Deposits";"1982-1985, 2018-2025";"Geochemistry and Petrology (Q2); Geology (Q2); Materials Chemistry (Q2)";"Earth and Planetary Sciences; Materials Science" +11073;21240;"Newspaper Research Journal";journal;"23764791, 07395329";"SAGE Publications Ltd";No;No;0,537;Q2;36;22;86;1377;122;74;1,45;62,59;38,46;1;United States;Northern America;"SAGE Publications Ltd";"1987, 1996-2025";"Communication (Q2)";"Social Sciences" +11074;21578;"Numerical Heat Transfer; Part A: Applications";journal;"15210634, 10407782";"Taylor and Francis Ltd.";No;No;0,537;Q2;86;426;426;18864;1805;426;4,50;44,28;24,80;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Condensed Matter Physics (Q2); Numerical Analysis (Q2)";"Mathematics; Physics and Astronomy" +11075;21101092814;"Power Generation Technology";journal;"20964528";"";Yes;Yes;0,537;Q2;23;116;315;4181;922;315;3,29;36,04;30,83;0;China;Asiatic Region;"";"2019-2026";"Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Nuclear Energy and Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +11076;21101042998;"World Journal of Experimental Medicine";journal;"2220315X";"Baishideng Publishing Group Inc";No;No;0,537;Q2;12;180;81;8028;216;80;2,69;44,60;38,59;0;United States;Northern America;"Baishideng Publishing Group Inc";"2019-2025";"Internal Medicine (Q2)";"Medicine" +11077;21100783336;"Chinese Journal of Atmospheric Sciences";journal;"10069895";"Science Press";No;No;0,537;Q3;28;118;394;5506;628;394;1,50;46,66;42,80;0;China;Asiatic Region;"Science Press";"2016-2025";"Atmospheric Science (Q3)";"Earth and Planetary Sciences" +11078;23007;"Journal of Clinical Pharmacy and Therapeutics";journal;"13652710, 02694727";"John Wiley and Sons Inc";No;No;0,537;Q3;90;49;411;1903;915;378;1,10;38,84;50,36;0;China;Asiatic Region;"John Wiley and Sons Inc";"1976-2026";"Pharmacology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +11079;14282;"Behavioral Interventions";journal;"10720847, 1099078X";"John Wiley and Sons Ltd";No;No;0,536;Q1;44;72;228;2818;312;225;1,04;39,14;66,39;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1986-2026";"Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q2); Developmental and Educational Psychology (Q3); Psychiatry and Mental Health (Q3)";"Arts and Humanities; Medicine; Psychology" +11080;21101077304;"Contrastive Pragmatics";journal;"26660385, 26660393";"Brill Academic Publishers";Yes;Yes;0,536;Q1;8;14;48;754;71;48;1,49;53,86;48,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2026";"Linguistics and Language (Q1)";"Social Sciences" +11081;21100388307;"Journal of Ethnic Foods";journal;"2352619X";"BioMed Central Ltd";Yes;Yes;0,536;Q1;44;36;137;2232;550;137;3,58;62,00;47,27;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Anthropology (Q1); Food Science (Q2)";"Agricultural and Biological Sciences; Social Sciences" +11082;16200154753;"Praehistorische Zeitschrift";journal;"00794848, 16130804";"Walter de Gruyter GmbH";No;No;0,536;Q1;19;65;111;5964;98;111;0,85;91,75;42,31;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1909-1918, 1920, 1922, 1924-1936, 1938, 1940, 1942, 1950, 1958-1962, 1964, 1966, 1970-1972, 1974-1989, 1993-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +11083;14441;"Advances in Neonatal Care";journal;"15360911, 15360903";"Lippincott Williams and Wilkins Ltd.";No;No;0,536;Q2;59;91;281;2058;515;256;1,62;22,62;79,29;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2002-2026";"Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +11084;21101045045;"Advances in Science and Research";journal;"19920636, 19920628";"Copernicus Publications";Yes;No;0,536;Q2;14;11;34;406;63;34;2,10;36,91;17,50;0;Germany;Western Europe;"Copernicus Publications";"2019-2026";"Ecological Modeling (Q2); Geophysics (Q2); Pollution (Q2); Atmospheric Science (Q3)";"Earth and Planetary Sciences; Environmental Science" +11085;52691;"Aerobiologia";journal;"03935965, 15733025";"Springer Science and Business Media B.V.";No;No;0,536;Q2;62;55;102;2972;255;101;2,69;54,04;43,65;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1985-2026";"Plant Science (Q2); Immunology (Q3); Immunology and Allergy (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +11086;13352;"Ameghiniana";journal;"18518044, 00027014";"Asociacion Paleontologica Argentina";No;No;0,536;Q2;48;14;68;1140;102;66;1,24;81,43;34,43;0;Argentina;Latin America;"Asociacion Paleontologica Argentina";"1985, 1992-2025";"Ecology, Evolution, Behavior and Systematics (Q2); Paleontology (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +11087;27137;"Celestial Mechanics and Dynamical Astronomy";journal;"15729478, 09232958";"Springer Netherlands";No;No;0,536;Q2;70;41;171;1397;283;171;1,45;34,07;20,73;0;Netherlands;Western Europe;"Springer Netherlands";"1989-2026";"Applied Mathematics (Q2); Astronomy and Astrophysics (Q2); Computational Mathematics (Q2); Mathematical Physics (Q2); Modeling and Simulation (Q2); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Mathematics; Physics and Astronomy" +11088;21101039079;"Central European Management Journal";journal;"26580845, 26582430";"Emerald Publishing";Yes;Yes;0,536;Q2;18;66;90;4783;345;90;4,69;72,47;52,74;0;Poland;Eastern Europe;"Emerald Publishing";"2020-2026";"Business, Management and Accounting (miscellaneous) (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2); Social Psychology (Q3)";"Business, Management and Accounting; Psychology; Social Sciences" +11089;25887;"Discrete and Computational Geometry";journal;"14320444, 01795376";"Springer New York";No;No;0,536;Q2;78;143;337;3599;311;332;0,85;25,17;16,36;0;United States;Northern America;"Springer New York";"1986-2026";"Computational Theory and Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2); Geometry and Topology (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +11090;21101096642;"Entrepreneurship Education and Pedagogy";journal;"25151274";"SAGE Publications Inc.";No;No;0,536;Q2;25;35;97;2145;321;91;3,38;61,29;40,00;2;United States;Northern America;"SAGE Publications Inc.";"2018-2026";"Business and International Management (Q2); Education (Q2)";"Business, Management and Accounting; Social Sciences" +11091;17461;"European Journal of Histochemistry";journal;"1121760X, 20388306";"Page Press Publications";Yes;No;0,536;Q2;54;38;135;1566;289;134;1,89;41,21;38,10;0;Italy;Western Europe;"Page Press Publications";"1992-2026";"Histology (Q2); Medicine (miscellaneous) (Q2); Biophysics (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11092;21100407142;"Far Eastern Entomologist";journal;"1026051X";"Institute of Biology and Soil Science, Far East Branch of Russian Academy of Sciences";No;No;0,536;Q2;15;62;194;1135;151;194;0,82;18,31;30,21;0;Russian Federation;Eastern Europe;"Institute of Biology and Soil Science, Far East Branch of Russian Academy of Sciences";"2015-2026";"Insect Science (Q2)";"Agricultural and Biological Sciences" +11093;15712;"Geotechnical Testing Journal";journal;"01496115";"ASTM International";No;No;0,536;Q2;81;54;199;2007;368;192;1,97;37,17;22,40;0;United States;Northern America;"ASTM International";"1978-1982, 1985-2026";"Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +11094;23146;"IMA Journal of Applied Mathematics";journal;"14643634, 02724960";"Oxford University Press";No;No;0,536;Q2;53;21;107;742;194;106;2,00;35,33;24,07;0;United Kingdom;Western Europe;"Oxford University Press";"1965-2025";"Applied Mathematics (Q2)";"Mathematics" +11095;27210;"In Vivo";journal;"17917549, 0258851X";"International Institute of Anticancer Research";No;No;0,536;Q2;77;367;1124;12747;2228;1122;1,94;34,73;30,60;0;Greece;Western Europe;"International Institute of Anticancer Research";"1987-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11096;27523;"International Journal of Obstetric Anesthesia";journal;"0959289X, 15323374";"Churchill Livingstone";No;No;0,536;Q2;67;165;241;3795;385;148;1,74;23,00;50,85;0;United Kingdom;Western Europe;"Churchill Livingstone";"1991-2026";"Anesthesiology and Pain Medicine (Q2); Obstetrics and Gynecology (Q2)";"Medicine" +11097;13954;"Journal of the Urban Planning and Development Division, ASCE";journal;"07339488";"American Society of Civil Engineers (ASCE)";No;No;0,536;Q2;63;152;355;8834;994;355;2,92;58,12;38,86;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1979-2026";"Civil and Structural Engineering (Q2); Development (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2)";"Engineering; Social Sciences" +11098;21100916457;"Medicine and Pharmacy Reports";journal;"26020807, 26680572";"Universitatea de Medicina si Farmacie Iuliu Hatieganu";Yes;No;0,536;Q2;38;63;187;2259;423;186;2,22;35,86;57,59;1;Romania;Eastern Europe;"Universitatea de Medicina si Farmacie Iuliu Hatieganu";"2019-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +11099;5200153106;"Neotropical Ichthyology";journal;"16796225, 19820224";"Sociedade Brasileira de Ictiologia";Yes;No;0,536;Q2;55;84;173;5622;368;173;2,21;66,93;34,98;1;Brazil;Latin America;"Sociedade Brasileira de Ictiologia";"2006-2025";"Animal Science and Zoology (Q2); Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +11100;73666;"Potato Research";journal;"18714528, 00143065";"Springer Science and Business Media B.V.";No;No;0,536;Q2;59;221;212;11228;700;212;3,41;50,81;40,84;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1970-2026";"Agronomy and Crop Science (Q2); Food Science (Q2)";"Agricultural and Biological Sciences" +11101;23336;"Primates";journal;"00328332, 16107365";"Springer";No;No;0,536;Q2;65;55;186;2735;264;155;1,51;49,73;36,59;0;Japan;Asiatic Region;"Springer";"1957-1961, 1963-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +11102;14847;"Quality Management in Health Care";journal;"15505154, 10638628";"Lippincott Williams and Wilkins Ltd.";No;No;0,536;Q2;41;68;147;1775;204;137;1,19;26,10;52,51;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1992-2026";"Care Planning (Q2); Health Policy (Q2); Health (social science) (Q2); Leadership and Management (Q2)";"Medicine; Nursing; Social Sciences" +11103;29513;"Radiation Physics and Chemistry";journal;"18790895, 0969806X";"Elsevier Ltd";No;No;0,536;Q2;111;794;1968;32462;6597;1958;3,45;40,88;30,68;0;United Kingdom;Western Europe;"Elsevier Ltd";"1983, 1985-2026";"Radiation (Q2)";"Physics and Astronomy" +11104;26437;"Social Science Journal";journal;"03623319";"Taylor and Francis Ltd.";No;No;0,536;Q2;55;96;180;5548;443;178;2,48;57,79;52,19;4;United States;Northern America;"Taylor and Francis Ltd.";"1978, 1980, 1982-2026";"Sociology and Political Science (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +11105;13073;"Sports Medicine and Arthroscopy Review";journal;"10628592, 15381951";"Lippincott Williams and Wilkins Ltd.";No;No;0,536;Q2;67;30;80;1168;155;69;1,15;38,93;24,81;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1993-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3); Sports Science (Q3)";"Health Professions; Medicine" +11106;21101042490;"World Journal of Transplantation";journal;"22203230";"Baishideng Publishing Group Inc";No;No;0,536;Q2;21;123;144;5935;318;144;2,43;48,25;33,87;0;United States;Northern America;"Baishideng Publishing Group Inc";"2019-2025";"Transplantation (Q2)";"Medicine" +11107;11000153762;"Journal of Immunotoxicology";journal;"1547691X, 15476901";"Taylor and Francis Ltd.";Yes;No;0,536;Q3;53;14;47;552;116;45;2,16;39,43;44,30;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Immunology (Q3); Toxicology (Q3)";"Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +11108;21100238603;"Journal of Osteoporosis";journal;"20908059, 20420064";"John Wiley and Sons Ltd";Yes;No;0,536;Q3;28;2;15;41;41;15;2,50;20,50;50,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2010, 2012-2026";"Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11109;27004;"American Journal of Enology and Viticulture";journal;"00029254";"American Society for Enology and Viticulture";No;No;0,535;Q1;108;28;92;1357;210;92;2,11;48,46;41,18;0;United States;Northern America;"American Society for Enology and Viticulture";"1973, 1976, 1981, 1984, 1987-1988, 1992-2026";"Horticulture (Q1); Food Science (Q2)";"Agricultural and Biological Sciences" +11110;5800222015;"Bilingual Research Journal";journal;"15235882, 15235890";"Routledge";No;No;0,535;Q1;54;41;76;2061;118;67;1,51;50,27;69,88;0;United States;Northern America;"Routledge";"1992-2006, 2009-2026";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +11111;21100242231;"Built Environment Project and Asset Management";journal;"2044124X, 20441258";"Emerald Group Publishing Ltd.";No;No;0,535;Q1;43;94;166;4890;622;158;3,99;52,02;24,59;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2026";"Architecture (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2); Engineering (miscellaneous) (Q2); Urban Studies (Q2); Management Science and Operations Research (Q3)";"Decision Sciences; Engineering; Social Sciences" +11112;5600155103;"European Journal of Philosophy";journal;"14680378, 09668373";"John Wiley and Sons Inc";No;No;0,535;Q1;51;131;247;5245;283;238;1,14;40,04;18,70;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1993-2026";"Philosophy (Q1)";"Arts and Humanities" +11113;21101185683;"Journal of Race Ethnicity and the City";journal;"26884674, 26884682";"Routledge";No;No;0,535;Q1;10;15;29;1154;52;25;1,56;76,93;59,09;0;United States;Northern America;"Routledge";"2020-2026";"Anthropology (Q1); Geography, Planning and Development (Q2); Political Science and International Relations (Q2); Public Administration (Q2); Sociology and Political Science (Q2); Urban Studies (Q2)";"Social Sciences" +11114;21100203112;"Philosophy, Psychiatry and Psychology";journal;"10863303, 10716076";"Johns Hopkins University Press";No;No;0,535;Q1;26;53;166;1480;124;53;0,56;27,92;27,27;0;United States;Northern America;"Johns Hopkins University Press";"2011-2025";"Philosophy (Q1); Ecology (Q2); Psychiatry and Mental Health (Q3)";"Arts and Humanities; Environmental Science; Medicine" +11115;5700169553;"Residential Treatment for Children and Youth";journal;"15410358, 0886571X";"Routledge";No;No;0,535;Q1;32;58;81;3068;169;72;2,25;52,90;66,31;0;United States;Northern America;"Routledge";"1986-2005, 2007-2026";"Law (Q1); Pediatrics, Perinatology and Child Health (Q2)";"Medicine; Social Sciences" +11116;12175;"Climate Research";journal;"16161572, 0936577X";"Inter-Research";No;No;0,535;Q2;127;12;58;658;104;58;2,03;54,83;37,74;0;Germany;Western Europe;"Inter-Research";"1990-2025";"Environmental Science (miscellaneous) (Q2); Atmospheric Science (Q3); Environmental Chemistry (Q3)";"Earth and Planetary Sciences; Environmental Science" +11117;21101061989;"Data Intelligence";journal;"2641435X, 20967004";"Science Press";Yes;Yes;0,535;Q2;31;38;157;1575;582;141;4,50;41,45;36,25;0;China;Asiatic Region;"Science Press";"2019-2025";"Artificial Intelligence (Q2); Computer Science Applications (Q2); Information Systems (Q2); Library and Information Sciences (Q2)";"Computer Science; Social Sciences" +11118;20766;"Drug and Chemical Toxicology";journal;"01480545, 15256014";"Taylor and Francis Ltd.";No;No;0,535;Q2;60;162;549;9543;1575;548;2,62;58,91;47,84;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-2026";"Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2); Chemical Health and Safety (Q3); Health, Toxicology and Mutagenesis (Q3); Pharmacology (Q3); Toxicology (Q3)";"Chemical Engineering; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11119;21101188202;"Forensic Science International: Animals and Environments";journal;"26669374";"Elsevier B.V.";Yes;No;0,535;Q2;13;0;52;0;138;51;3,12;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2024";"Animal Science and Zoology (Q2); Ecology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11120;23229;"Integral Transforms and Special Functions";journal;"14768291, 10652469";"Taylor and Francis Ltd.";No;No;0,535;Q2;51;138;179;3490;232;178;1,35;25,29;22,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +11121;13741;"International Journal of Pediatric Otorhinolaryngology";journal;"01655876, 18728464";"Elsevier Ireland Ltd";No;No;0,535;Q2;100;362;858;10444;1459;853;1,65;28,85;48,68;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1979-2026";"Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +11122;12000154536;"International Journal on Interactive Design and Manufacturing";journal;"19552513, 19552505";"Springer Paris";No;No;0,535;Q2;52;587;974;26370;4321;973;4,69;44,92;19,05;0;France;Western Europe;"Springer Paris";"2007-2026";"Industrial and Manufacturing Engineering (Q2); Modeling and Simulation (Q2)";"Engineering; Mathematics" +11123;15241;"Irish Journal of Medical Science";journal;"18634362, 00211265";"Springer Science and Business Media Deutschland GmbH";No;No;0,535;Q2;50;401;1232;11924;2403;1127;1,89;29,74;46,82;1;United Kingdom;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1922-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +11124;21101041404;"Journal of Analysis";journal;"09713611, 23672501";"Springer Science and Business Media B.V.";No;No;0,535;Q2;17;185;426;5183;645;424;1,92;28,02;24,37;0;Germany;Western Europe;"Springer Science and Business Media B.V.";"2016-2026";"Algebra and Number Theory (Q2); Analysis (Q2); Applied Mathematics (Q2); Geometry and Topology (Q2); Numerical Analysis (Q2)";"Mathematics" +11125;21101292884;"Journal of Biochemical Technology";journal;"09742328";"Deniz Publication";No;No;0,535;Q2;13;53;131;3044;358;130;2,91;57,43;66,06;0;Turkey;Middle East;"Deniz Publication";"2021-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biochemistry (Q3); Biochemistry (medical) (Q3); Biotechnology (Q3); Structural Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11126;25668;"Journal of Clinical Pediatric Dentistry";journal;"10534628";"MRE Press";No;No;0,535;Q2;56;145;319;5580;803;315;2,51;38,48;54,51;0;Singapore;Asiatic Region;"MRE Press";"1990-2026";"Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Dentistry; Medicine" +11127;24351;"Journal of Economic Methodology";journal;"14699427, 1350178X";"Routledge";No;No;0,535;Q2;46;35;63;2214;106;55;1,18;63,26;31,37;0;United Kingdom;Western Europe;"Routledge";"1994-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +11128;4700152404;"Journal of Ethnic and Cultural Diversity in Social Work";journal;"15313204, 15313212";"Routledge";No;No;0,535;Q2;44;60;97;2851;215;95;2,18;47,52;66,19;0;United States;Northern America;"Routledge";"2000-2026";"Education (Q2); Health (social science) (Q2); Social Work (Q3)";"Social Sciences" +11129;21100854982;"Journal of Experiential Education";journal;"10538259, 2169009X";"SAGE Publications Ltd";No;No;0,535;Q2;50;47;106;2324;210;94;1,88;49,45;60,71;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994, 1996-2026";"Education (Q2)";"Social Sciences" +11130;21100448516;"Journal of Information Technology Education: Innovations in Practice";journal;"2165316X, 21653151";"Informing Science Institute";Yes;No;0,535;Q2;18;29;36;1367;136;36;3,72;47,14;57,50;0;United States;Northern America;"Informing Science Institute";"2015-2025";"Computer Science (miscellaneous) (Q2); Education (Q2)";"Computer Science; Social Sciences" +11131;21100307455;"Journal of Oral and Facial Pain and Headache";journal;"23330384, 23330376";"MRE Press";No;No;0,535;Q2;57;79;86;4006;242;81;2,52;50,71;49,30;0;Singapore;Asiatic Region;"MRE Press";"1993-2002, 2004-2026";"Anesthesiology and Pain Medicine (Q2); Dentistry (miscellaneous) (Q2); Neurology (clinical) (Q3)";"Dentistry; Medicine" +11132;19900191762;"Journal of Sport and Tourism";journal;"14775085, 10295399";"Routledge";No;No;0,535;Q2;59;24;51;1658;205;51;3,29;69,08;30,51;0;United Kingdom;Western Europe;"Routledge";"1993-2014, 2016-2026";"Tourism, Leisure and Hospitality Management (Q2)";"Business, Management and Accounting" +11133;15205;"Memorias do Instituto Oswaldo Cruz";journal;"16788060, 00740276";"Fundacao Oswaldo Cruz";Yes;Yes;0,535;Q2;112;112;208;4806;372;182;1,79;42,91;52,98;0;Brazil;Latin America;"Fundacao Oswaldo Cruz";"1945, 1948, 1950-1971, 1974-1976, 1980-2026";"Medicine (miscellaneous) (Q2); Microbiology (medical) (Q3)";"Medicine" +11134;21101197374;"Open Environmental Research Journal";journal;"25902776";"Bentham Science Publishers";No;No;0,535;Q2;20;14;4;607;7;4;2,33;43,36;31,71;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2019, 2022-2023, 2025-2026";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +11135;22163;"Pediatric Surgery International";journal;"14379813, 01790358";"Springer Science and Business Media Deutschland GmbH";No;No;0,535;Q2;81;322;860;8681;1521;820;1,78;26,96;40,95;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1986-2026";"Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2); Surgery (Q2)";"Medicine" +11136;17700156768;"Place Branding and Public Diplomacy";journal;"17518040, 17518059";"Palgrave Macmillan Ltd.";No;No;0,535;Q2;44;58;145;3334;455;141;3,29;57,48;49,53;1;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2007-2026";"Marketing (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +11137;21100836847;"Preventing School Failure";journal;"1045988X, 19404387";"Taylor and Francis Ltd.";No;No;0,535;Q2;25;43;106;2187;191;105;1,77;50,86;75,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996, 2014-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +11138;14730;"Revista Latinoamericana de Psicologia";journal;"01200534";"Konrad Lorenz Editores";Yes;Yes;0,535;Q2;38;7;82;358;123;82;1,38;51,14;39,39;0;Colombia;Latin America;"Konrad Lorenz Editores";"1980, 1984, 1992, 1996-2025";"Psychology (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Psychology; Social Sciences" +11139;21101080188;"Science and Technology for Energy Transition (STET)";journal;"28047699";"Editions Technip";Yes;Yes;0,535;Q2;81;50;155;1960;510;154;3,42;39,20;35,75;0;France;Western Europe;"Editions Technip";"2022-2026";"Chemical Engineering (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2)";"Chemical Engineering; Energy" +11140;21101042148;"Societies";journal;"20754698";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,535;Q2;46;357;723;22465;2113;709;2,88;62,93;52,77;4;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2026";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +11141;21101082425;"Surgery Open Science";journal;"25898450";"Elsevier B.V.";Yes;No;0,535;Q2;14;97;338;2589;522;321;1,50;26,69;33,77;1;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Surgery (Q2)";"Medicine" +11142;20245;"Ultraschall in der Medizin";journal;"01724614, 14388782";"Georg Thieme Verlag";No;No;0,535;Q2;74;73;283;1726;499;224;1,38;23,64;42,89;0;Germany;Western Europe;"Georg Thieme Verlag";"1980-2026";"Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +11143;21100916535;"Human Genome Variation";journal;"2054345X";"Springer Nature";Yes;No;0,535;Q3;28;29;124;526;180;117;1,37;18,14;28,95;0;United Kingdom;Western Europe;"Springer Nature";"2014-2026";"Biochemistry (Q3); Genetics (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +11144;145223;"Proceedings - International Conference on Network Protocols, ICNP";conference and proceedings;"10921648";"IEEE Computer Society";No;No;0,535;-;74;104;214;3164;375;206;1,60;30,42;31,03;0;United States;Northern America;"IEEE Computer Society";"1999-2000, 2002-2014, 2016-2025";"Computer Networks and Communications; Engineering (miscellaneous); Software";"Computer Science; Engineering" +11145;18463;"Africa";journal;"00019720, 17500184";"Cambridge University Press";No;No;0,534;Q1;57;21;112;1182;118;108;1,04;56,29;42,86;0;United Kingdom;Western Europe;"Cambridge University Press";"1928-1940, 1943-2025";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q2)";"Arts and Humanities; Social Sciences" +11146;5700160617;"Criminal Justice Policy Review";journal;"08874034, 15523586";"SAGE Publications Inc.";No;No;0,534;Q1;47;16;78;1017;155;77;1,95;63,56;63,27;0;United States;Northern America;"SAGE Publications Inc.";"1986-1987, 1989-1992, 1995, 1997-1999, 2004-2026";"Law (Q1)";"Social Sciences" +11147;21100853560;"African Journal of Disability";journal;"22267220, 22239170";"AOSIS (Pty) Ltd";Yes;No;0,534;Q2;26;96;157;3962;381;155;2,03;41,27;68,91;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2015, 2018-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)";"Health Professions; Medicine" +11148;21101390133;"Asian Review of Political Economy";journal;"27315835";"Springer Nature";No;No;0,534;Q2;5;24;22;1605;68;21;3,09;66,88;31,58;0;China;Asiatic Region;"Springer Nature";"2024-2026";"Business and International Management (Q2); Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Geography, Planning and Development (Q2); Political Science and International Relations (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +11149;16065;"Electrical Engineering";journal;"14320487, 09487921";"Springer Verlag";No;No;0,534;Q2;52;879;1126;34084;3982;1123;3,82;38,78;24,94;0;Germany;Western Europe;"Springer Verlag";"1994-2026";"Applied Mathematics (Q2); Electrical and Electronic Engineering (Q2)";"Engineering; Mathematics" +11150;14500154701;"Food Analytical Methods";journal;"1936976X, 19369751";"Springer";No;No;0,534;Q2;79;202;609;9702;2395;608;3,49;48,03;43,91;0;United States;Northern America;"Springer";"2008-2026";"Analytical Chemistry (Q2); Food Science (Q2); Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2); Applied Microbiology and Biotechnology (Q3)";"Agricultural and Biological Sciences; Chemistry; Engineering; Immunology and Microbiology; Social Sciences" +11151;11300153741;"Journal of Hydro-Environment Research";journal;"15706443";"Elsevier B.V.";No;No;0,534;Q2;58;16;80;774;242;79;2,56;48,38;21,57;0;Netherlands;Western Europe;"Elsevier B.V.";"2007-2026";"Civil and Structural Engineering (Q2); Environmental Engineering (Q2); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2); Environmental Chemistry (Q3)";"Engineering; Environmental Science" +11152;21100940459;"Learning and Teaching in Higher Education: Gulf Perspectives";journal;"20775504";"Emerald Group Publishing Ltd.";Yes;Yes;0,534;Q2;15;9;12;375;27;10;0,00;41,67;28,57;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2004-2019, 2021-2022, 2025";"Education (Q2)";"Social Sciences" +11153;21100978621;"Physical and Engineering Sciences in Medicine";journal;"26624729, 26624737";"Springer Science and Business Media Deutschland GmbH";No;No;0,534;Q2;53;195;397;7460;1119;383;2,75;38,26;31,30;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2020-2026";"Instrumentation (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Biomedical Engineering (Q3); Biophysics (Q3); Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Health Professions; Medicine; Physics and Astronomy" +11154;5300152718;"Soil and Water Research";journal;"18059384, 18015395";"Czech Academy of Agricultural Sciences";Yes;No;0,534;Q2;37;24;68;1017;150;68;2,43;42,38;25,44;0;Czech Republic;Eastern Europe;"Czech Academy of Agricultural Sciences";"2006-2025";"Aquatic Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences" +11155;21100805792;"Studies in Indian Politics";journal;"23210230, 23217472";"SAGE Publications Inc.";No;No;0,534;Q2;15;22;76;1028;94;59;0,71;46,73;39,13;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2014-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +11156;21101220772;"Tetrahedron Green Chem";journal;"27732231";"Elsevier Ltd";Yes;No;0,534;Q2;10;30;54;1931;186;53;3,44;64,37;39,47;0;United Kingdom;Western Europe;"Elsevier Ltd";"2023-2026";"Organic Chemistry (Q2)";"Chemistry" +11157;21100837353;"Turkish Journal of Ophthalmology";journal;"21498709";"Turkish Ophthalmology Society";Yes;No;0,534;Q2;21;66;215;1598;327;189;1,46;24,21;52,73;0;Turkey;Middle East;"Turkish Ophthalmology Society";"2015-2026";"Ophthalmology (Q2)";"Medicine" +11158;21101162631;"World Journal of Nephrology";journal;"22206124";"Baishideng Publishing Group Inc";No;No;0,534;Q2;14;83;60;3969;246;57;4,64;47,82;34,33;0;United States;Northern America;"Baishideng Publishing Group Inc";"2014, 2019-2025";"Nephrology (Q2)";"Medicine" +11159;18523;"Cytotechnology";journal;"09209069, 15730778";"Springer";No;No;0,534;Q3;83;192;146;8471;344;146;2,43;44,12;45,01;0;Netherlands;Western Europe;"Springer";"1987-2026";"Bioengineering (Q3); Biomedical Engineering (Q3); Biotechnology (Q3); Clinical Biochemistry (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering" +11160;12552;"Oncology (United States)";journal;"08909091";"UBM Medica Healthcare Publications";No;No;0,534;Q3;87;59;140;76;218;124;1,13;1,29;48,91;0;United States;Northern America;"UBM Medica Healthcare Publications";"1987-2026";"Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11161;22319;"Toxicon";journal;"18793150, 00410101";"Elsevier Ltd";No;No;0,534;Q3;154;314;836;17437;2393;820;2,80;55,53;44,71;0;United Kingdom;Western Europe;"Elsevier Ltd";"1962-2026";"Toxicology (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +11162;23289;"Topics in Language Disorders";journal;"15503259, 02718294";"Lippincott Williams and Wilkins";No;No;0,533;Q1;56;21;76;1086;105;57;0,92;51,71;77,78;0;United States;Northern America;"Lippincott Williams and Wilkins";"1980-2025";"Linguistics and Language (Q1); Speech and Hearing (Q2)";"Health Professions; Social Sciences" +11163;28612;"Canadian Journal on Aging";journal;"07149808, 17101107";"Cambridge University Press";No;No;0,533;Q2;57;70;184;2971;359;183;1,59;42,44;79,40;0;Canada;Northern America;"Cambridge University Press";"1982-2026";"Community and Home Care (Q2); Gerontology (Q2); Health (social science) (Q2); Geriatrics and Gerontology (Q3)";"Medicine; Nursing; Social Sciences" +11164;19700188157;"Education 3-13";journal;"14757575, 03004279";"Routledge";No;No;0,533;Q2;36;159;343;8289;738;338;1,90;52,13;56,84;1;United States;Northern America;"Routledge";"1973-2026";"Education (Q2); Life-span and Life-course Studies (Q3)";"Social Sciences" +11165;17800156747;"Healthcare Policy";journal;"17156580, 17156572";"Longwoods Publishing Corp.";No;No;0,533;Q2;36;31;124;286;154;111;0,90;9,23;46,07;0;Canada;Northern America;"Longwoods Publishing Corp.";"2009-2025";"Public Health, Environmental and Occupational Health (Q2); Health Policy (Q3)";"Medicine" +11166;21100409533;"International Journal of Mental Health Promotion";journal;"14623730, 20498543";"Tech Science Press";No;No;0,533;Q2;20;120;261;7155;540;261;2,16;59,63;44,84;0;United Kingdom;Western Europe;"Tech Science Press";"2015-2026";"Public Health, Environmental and Occupational Health (Q2); Health Policy (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +11167;17600155213;"Jilin Daxue Xuebao (Diqiu Kexue Ban)/Journal of Jilin University (Earth Science Edition)";journal;"16715888";"Editorial Board of Jilin University";No;No;0,533;Q2;39;140;449;6854;729;449;1,73;48,96;31,20;0;China;Asiatic Region;"Editorial Board of Jilin University";"2009-2025";"Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +11168;21100967335;"JMIR Research Protocols";journal;"19290748";"JMIR Publications Inc.";Yes;No;0,533;Q2;50;410;1842;19784;3286;1842;1,74;48,25;54,40;4;Canada;Northern America;"JMIR Publications Inc.";"2012-2025";"Medicine (miscellaneous) (Q2)";"Medicine" +11169;17596;"Journal of Biomolecular Structure and Dynamics";journal;"07391102, 15380254";"Taylor and Francis Ltd.";No;No;0,533;Q2;98;892;3140;52116;9823;3132;3,01;58,43;36,13;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981, 1983-2026";"Medicine (miscellaneous) (Q2); Molecular Biology (Q3); Structural Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11170;21100873335;"Journal of Control and Decision";journal;"23307714, 23307706";"Taylor and Francis Ltd.";No;No;0,533;Q2;26;233;217;8753;632;214;2,86;37,57;31,61;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Control and Optimization (Q2); Control and Systems Engineering (Q2); Information Systems (Q2); Signal Processing (Q2); Human-Computer Interaction (Q3)";"Computer Science; Engineering; Mathematics" +11171;120005;"Journal of Vibration and Acoustics";journal;"15288927, 10489002";"The American Society of Mechanical Engineers(ASME)";No;No;0,533;Q2;104;36;174;1309;391;172;1,95;36,36;19,66;0;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"1983-2026";"Acoustics and Ultrasonics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Physics and Astronomy" +11172;21100438188;"Progress in Physics of Metals";journal;"16081021, 26170795";"G.V. Kurdyumov Institute for Metal Physics of N.A.S. of Ukraine";Yes;Yes;0,533;Q2;18;28;79;2671;232;79;3,17;95,39;35,62;0;Ukraine;Eastern Europe;"G.V. Kurdyumov Institute for Metal Physics of N.A.S. of Ukraine";"2000-2025";"Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Fluid Flow and Transfer Processes (Q2); Materials Science (miscellaneous) (Q2); Metals and Alloys (Q2); Surfaces, Coatings and Films (Q2)";"Chemical Engineering; Materials Science; Physics and Astronomy" +11173;21100823137;"Regenerative Engineering and Translational Medicine";journal;"23644133, 23644141";"Springer Science and Business Media Deutschland GmbH";No;No;0,533;Q2;31;178;136;18820;418;134;3,35;105,73;42,88;1;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2015-2026";"Medicine (miscellaneous) (Q2); Biomaterials (Q3); Biomedical Engineering (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science; Medicine" +11174;21100823603;"Reports of Biochemistry and Molecular Biology";journal;"23223480";"Varastegan Institute for Medical Sciences";Yes;No;0,533;Q2;24;40;202;1348;390;202;1,90;33,70;51,37;0;Iran;Middle East;"Varastegan Institute for Medical Sciences";"2017-2025";"Medicine (miscellaneous) (Q2); Biochemistry (Q3); Biochemistry (medical) (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11175;19400158382;"Saudi Journal of Ophthalmology";journal;"13194534, 25426680";"Wolters Kluwer Medknow Publications";Yes;No;0,533;Q2;40;80;199;2280;315;180;1,11;28,50;36,36;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2009-2025";"Ophthalmology (Q2)";"Medicine" +11176;19197;"Surgical Infections";journal;"10962964, 15578674";"Mary Ann Liebert Inc.";No;No;0,533;Q2;76;163;440;3726;617;336;1,35;22,86;37,92;0;United States;Northern America;"Mary Ann Liebert Inc.";"2000-2026";"Surgery (Q2); Infectious Diseases (Q3); Microbiology (medical) (Q3)";"Medicine" +11177;21101256286;"Exploration of Neuroprotective Therapy";journal;"27696510";"Open Exploration Publishing Inc";Yes;Yes;0,533;Q3;11;40;80;3146;205;78;2,72;78,65;46,30;0;China;Asiatic Region;"Open Exploration Publishing Inc";"2021-2026";"Cognitive Neuroscience (Q3); Neurology (Q3); Neuroscience (miscellaneous) (Q3)";"Neuroscience" +11178;18963;"Medizinische Genetik";journal;"09365931, 18635490";"Walter de Gruyter GmbH";No;No;0,533;Q3;14;24;97;977;110;77;1,24;40,71;55,56;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1994-2026";"Genetics (Q3); Genetics (clinical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11179;39140;"Proceedings - Electronic Components and Technology Conference";conference and proceedings;"05695503";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,533;-;83;383;1117;5218;2562;1110;2,44;13,62;20,16;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1975-2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Engineering; Materials Science" +11180;21101038705;"Built Heritage";journal;"20963041, 26626802";"Springer";Yes;Yes;0,532;Q1;17;68;99;3822;289;94;2,72;56,21;45,57;1;Netherlands;Western Europe;"Springer";"2017-2026";"Conservation (Q1); History (Q1)";"Arts and Humanities" +11181;5800207502;"Cliometrica";journal;"18632513, 18632505";"Springer Verlag";No;No;0,532;Q1;27;35;55;2769;86;54;1,18;79,11;18,97;1;Germany;Western Europe;"Springer Verlag";"2007-2026";"History (Q1); Economics and Econometrics (Q2)";"Arts and Humanities; Economics, Econometrics and Finance" +11182;21101043569;"Heritage";journal;"25719408";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,532;Q1;37;542;961;33609;3189;952;3,27;62,01;48,78;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2018-2026";"Archeology (arts and humanities) (Q1); Conservation (Q1); Materials Science (miscellaneous) (Q2)";"Arts and Humanities; Materials Science" +11183;20954;"Journal of Stored Products Research";journal;"0022474X";"Elsevier Ltd";No;No;0,532;Q1;100;278;459;16266;1678;459;3,60;58,51;40,05;3;United Kingdom;Western Europe;"Elsevier Ltd";"1965-2026";"Horticulture (Q1); Agronomy and Crop Science (Q2); Food Science (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +11184;21101166816;"Anesthesia and Pain Medicine";journal;"23837977, 19755171";"Korean Society of Anesthesiologists";Yes;No;0,532;Q2;18;49;180;1439;442;161;2,23;29,37;40,00;0;South Korea;Asiatic Region;"Korean Society of Anesthesiologists";"2019-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +11185;29997;"Asia Pacific Journal of Clinical Nutrition";journal;"14406047, 09647058";"HEC Press";No;No;0,532;Q2;96;92;185;2217;404;185;1,84;24,10;54,88;0;Australia;Pacific Region;"HEC Press";"1996-2026";"Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +11186;4500151407;"Hispanic Health Care International";journal;"15404153, 19388993";"SAGE Publications Inc.";No;No;0,532;Q2;20;47;96;1603;111;80;1,22;34,11;76,44;1;United States;Northern America;"SAGE Publications Inc.";"2005-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +11187;145580;"International Journal of Peptide Research and Therapeutics";journal;"15733149, 15733904";"Springer Science and Business Media B.V.";No;No;0,532;Q2;53;112;337;8851;982;335;2,96;79,03;39,30;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1996-2002, 2005-2026";"Analytical Chemistry (Q2); Biochemistry (Q3); Bioengineering (Q3); Drug Discovery (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +11188;18895;"Journal of Advanced Transportation";journal;"01976729, 20423195";"John Wiley and Sons Ltd";Yes;No;0,532;Q2;77;155;833;7314;2386;832;2,66;47,19;34,40;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1979-2026";"Automotive Engineering (Q2); Computer Science Applications (Q2); Economics and Econometrics (Q2); Mechanical Engineering (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Computer Science; Economics, Econometrics and Finance; Engineering" +11189;21100894510;"Journal of Asian Earth Sciences: X";journal;"25900560";"Elsevier Ltd";Yes;No;0,532;Q2;16;26;101;1909;252;101;1,72;73,42;28,06;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Earth-Surface Processes (Q2); Geology (Q2)";"Earth and Planetary Sciences" +11190;21101186897;"Journal of Economic and Administrative Sciences";journal;"20546238, 20546246";"Emerald Publishing";No;No;0,532;Q2;29;218;214;14854;825;212;3,67;68,14;30,83;0;United Kingdom;Western Europe;"Emerald Publishing";"2003-2010, 2012-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +11191;21101125547;"Journal of Inter-Organizational Relationships";journal;"26943999, 26943980";"Routledge";No;No;0,532;Q2;3;0;8;0;17;8;0,00;0,00;0,00;0;United States;Northern America;"Routledge";"2021-2022";"Business, Management and Accounting (miscellaneous) (Q2); Marketing (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +11192;21101093006;"Journal of Mining Science and Technology";journal;"20962193";"";Yes;No;0,532;Q2;17;74;258;2317;538;258;2,06;31,31;28,31;0;China;Asiatic Region;"";"2019-2025";"Civil and Structural Engineering (Q2); Engineering (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2); Mechanical Engineering (Q2); Safety, Risk, Reliability and Quality (Q2); Energy (miscellaneous) (Q3)";"Earth and Planetary Sciences; Energy; Engineering" +11193;23900;"Journal of Vascular Access";journal;"11297298, 17246032";"Wichtig Publishing Srl";No;No;0,532;Q2;54;357;672;9358;1425;610;2,05;26,21;37,78;2;Italy;Western Europe;"Wichtig Publishing Srl";"2001-2026";"Nephrology (Q2); Surgery (Q2)";"Medicine" +11194;21100905428;"MedEdPORTAL : the journal of teaching and learning resources";journal;"23748265";"Association of American Medical Colleges";Yes;Yes;0,532;Q2;29;84;276;0;466;276;1,28;0,00;66,59;2;United States;Northern America;"Association of American Medical Colleges";"2007-2010, 2012-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +11195;21101038500;"Nefrologia";journal;"20132514";"Elsevier Espana S.L.U";Yes;Yes;0,532;Q2;49;101;558;3376;608;266;0,89;33,43;55,01;0;Spain;Western Europe;"Elsevier Espana S.L.U";"1981-2026";"Nephrology (Q2)";"Medicine" +11196;21100434606;"Sexual Medicine";journal;"20501161";"Oxford University Press";Yes;No;0,532;Q2;40;102;272;3957;666;262;2,18;38,79;36,51;0;United Kingdom;Western Europe;"Oxford University Press";"2013-2026";"Dermatology (Q2); Reproductive Medicine (Q2); Urology (Q2); Behavioral Neuroscience (Q3); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3); Psychiatry and Mental Health (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +11197;21100872332;"Skin Appendage Disorders";journal;"22969160, 22969195";"S. Karger AG";No;No;0,532;Q2;32;127;267;2709;391;252;1,49;21,33;59,77;0;Switzerland;Western Europe;"S. Karger AG";"2016-2026";"Dermatology (Q2)";"Medicine" +11198;19900192410;"Annals of Neurosciences";journal;"09763260, 09727531";"Indian Academy of Neurosciences";Yes;No;0,532;Q3;35;151;121;5571;283;94;2,16;36,89;50,00;0;India;Asiatic Region;"Indian Academy of Neurosciences";"2011-2026";"Neuroscience (miscellaneous) (Q3)";"Neuroscience" +11199;21100204924;"BioNanoScience";journal;"21911630, 21911649";"Springer";No;No;0,532;Q3;57;605;678;44039;3019;678;4,58;72,79;39,34;0;United States;Northern America;"Springer";"2011-2026";"Bioengineering (Q3); Biomedical Engineering (Q3)";"Chemical Engineering; Engineering" +11200;130021;"Biotechnology and Bioprocess Engineering";journal;"12268372, 19763816";"Korean Society for Biotechnology and Bioengineering";No;No;0,532;Q3;74;90;285;3864;788;284;2,80;42,93;42,62;0;South Korea;Asiatic Region;"Korean Society for Biotechnology and Bioengineering";"1996-2026";"Applied Microbiology and Biotechnology (Q3); Bioengineering (Q3); Biomedical Engineering (Q3); Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Immunology and Microbiology" +11201;19600166318;"Current Aging Science";journal;"18746128, 18746098";"Bentham Science Publishers";No;No;0,532;Q3;46;53;85;4396;165;78;1,30;82,94;42,22;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2008-2025";"Geriatrics and Gerontology (Q3); Aging (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11202;26073;"Stem Cells and Development";journal;"15473287, 15578534";"Mary Ann Liebert Inc.";No;No;0,532;Q3;142;51;192;2828;385;187;2,00;55,45;46,37;0;United States;Northern America;"Mary Ann Liebert Inc.";"2004-2026";"Developmental Biology (Q3); Hematology (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11203;21101254860;"IEEE Workshop on Signal Processing Advances in Wireless Communications, SPAWC";conference and proceedings;"23253789";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,532;-;8;137;193;2361;323;191;1,67;17,23;22,20;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2004, 2024-2025";"Computer Science Applications; Electrical and Electronic Engineering; Information Systems";"Computer Science; Engineering" +11204;21792;"Journal of the Association of Nurses in AIDS Care";journal;"15526917, 10553290";"Lippincott Williams and Wilkins";No;No;0,531;Q1;60;93;204;2942;293;170;1,13;31,63;60,59;0;United States;Northern America;"Lippincott Williams and Wilkins";"1991-2026";"Advanced and Specialized Nursing (Q1)";"Nursing" +11205;21100398825;"Metaphor and the Social World";journal;"22104097, 22104070";"John Benjamins Publishing Company";No;No;0,531;Q1;21;21;42;878;79;42;1,71;41,81;50,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2011-2026";"Linguistics and Language (Q1)";"Social Sciences" +11206;21100854445;"Open Theology";journal;"23006579";"Walter de Gruyter GmbH";Yes;No;0,531;Q1;14;24;89;1360;73;84;0,67;56,67;35,48;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2015-2025";"Religious Studies (Q1)";"Arts and Humanities" +11207;12100155656;"ACM Journal of Experimental Algorithmics";journal;"10846654";"Association for Computing Machinery";No;No;0,531;Q2;44;0;47;0;110;47;2,83;0,00;0,00;0;United States;Northern America;"Association for Computing Machinery";"1996-2023";"Theoretical Computer Science (Q2)";"Mathematics" +11208;19700166602;"ACM Transactions on Computation Theory";journal;"19423454, 19423462";"Association for Computing Machinery";No;No;0,531;Q2;25;25;43;934;46;43;0,97;37,36;14,06;0;United States;Northern America;"Association for Computing Machinery";"2009-2025";"Computational Theory and Mathematics (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +11209;24533;"Acta Mathematica Sinica, English Series";journal;"14397617, 14398516";"Springer Verlag";No;No;0,531;Q2;48;157;419;4573;372;417;0,83;29,13;33,73;0;Germany;Western Europe;"Springer Verlag";"1991-1992, 1996, 1998-2026";"Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics" +11210;19700180503;"Discussiones Mathematicae - Graph Theory";journal;"20835892, 12343099";"University of Zielona Gora";Yes;Yes;0,531;Q2;26;54;226;990;195;226;0,97;18,33;29,75;0;Poland;Eastern Europe;"University of Zielona Gora";"1995, 2000, 2004-2005, 2007, 2009-2025";"Applied Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +11211;21101246304;"Earthquake Engineering and Resilience";journal;"27705706";"John Wiley and Sons Inc";No;No;0,531;Q2;10;36;89;1710;207;87;2,16;47,50;27,73;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2025";"Civil and Structural Engineering (Q2); Geophysics (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +11212;130168;"Environmental Chemistry";journal;"14482517, 14498979";"CSIRO Publishing";No;No;0,531;Q2;81;19;83;1468;153;83;1,59;77,26;44,57;0;Australia;Pacific Region;"CSIRO Publishing";"2004-2026";"Chemistry (miscellaneous) (Q2); Geochemistry and Petrology (Q2); Environmental Chemistry (Q3)";"Chemistry; Earth and Planetary Sciences; Environmental Science" +11213;21100812851;"Eurasip Journal on Information Security";journal;"2510523X, 16874161";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,531;Q2;40;36;38;1690;138;38;3,79;46,94;29,03;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2007-2026";"Computer Science Applications (Q2); Signal Processing (Q2)";"Computer Science" +11214;26899;"Fluid Phase Equilibria";journal;"03783812";"Elsevier B.V.";No;No;0,531;Q2;148;211;623;12293;1846;615;2,96;58,26;26,87;0;Netherlands;Western Europe;"Elsevier B.V.";"1977-2026";"Chemical Engineering (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Chemical Engineering; Chemistry; Physics and Astronomy" +11215;5700154766;"International Journal of Early Years Education";journal;"14698463, 09669760";"Routledge";No;No;0,531;Q2;45;63;192;3237;429;179;2,17;51,38;78,62;5;United Kingdom;Western Europe;"Routledge";"1993-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +11216;21100855905;"Journal of Applied and Computational Mechanics";journal;"23834536";"Shahid Chamran University of Ahvaz";Yes;Yes;0,531;Q2;46;85;259;3860;984;259;4,01;45,41;18,52;0;Iran;Middle East;"Shahid Chamran University of Ahvaz";"2015-2026";"Computational Mechanics (Q2); Mechanical Engineering (Q2)";"Engineering" +11217;21100828025;"Journal of Logic and Analysis";journal;"17599008";"Journal of Logic and Analysis";Yes;Yes;0,531;Q2;6;15;17;283;11;17;0,50;18,87;14,29;0;United States;Northern America;"Journal of Logic and Analysis";"2017-2025";"Analysis (Q2); Logic (Q2); Modeling and Simulation (Q2)";"Mathematics" +11218;21100853496;"Saudi Journal of Medicine and Medical Sciences";journal;"23214856, 1658631X";"Wolters Kluwer Medknow Publications";Yes;Yes;0,531;Q2;15;38;134;1362;272;125;2,33;35,84;40,38;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2013-2014, 2017-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +11219;25171;"Mycotoxin Research";journal;"18671632, 01787888";"Springer Science and Business Media Deutschland GmbH";No;No;0,531;Q3;53;47;110;3104;400;107;3,83;66,04;48,31;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1985-2026";"Biotechnology (Q3); Microbiology (Q3); Toxicology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +11220;5700164098;"Communication and Society";journal;"23867876, 02140039";"Universidad de Navarra";Yes;No;0,530;Q1;31;61;181;3581;463;181;2,21;58,70;55,04;0;Spain;Western Europe;"Universidad de Navarra";"1999, 2001, 2010-2025";"Cultural Studies (Q1); Communication (Q2)";"Social Sciences" +11221;20657;"Enterprise and Society";journal;"14672227, 14672235";"Cambridge University Press";No;No;0,530;Q1;35;60;138;4994;170;131;1,21;83,23;29,76;2;United Kingdom;Western Europe;"Cambridge University Press";"2000-2026";"History (Q1); Business, Management and Accounting (miscellaneous) (Q2)";"Arts and Humanities; Business, Management and Accounting" +11222;29882;"Journal of Child Sexual Abuse: Research, Treatment, and Program Innovations for Victims, Suvivors, and Offenders";journal;"10538712, 15470679";"Routledge";No;No;0,530;Q1;61;57;167;2703;305;157;1,36;47,42;73,47;0;United States;Northern America;"Routledge";"1992-2026";"Law (Q1); Clinical Psychology (Q2); Pathology and Forensic Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2); Applied Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology; Social Sciences" +11223;23536;"Seminars in Orthodontics";journal;"10738746";"W.B. Saunders";No;No;0,530;Q1;57;142;175;6164;322;164;2,05;43,41;43,05;0;United States;Northern America;"W.B. Saunders";"1995-2026";"Orthodontics (Q1)";"Dentistry" +11224;5600157616;"Text and Talk";journal;"18607330, 18607349";"De Gruyter Mouton";No;No;0,530;Q1;57;45;118;2005;174;112;1,18;44,56;60,00;0;Germany;Western Europe;"De Gruyter Mouton";"2005-2026";"Linguistics and Language (Q1); Philosophy (Q1); Communication (Q2)";"Arts and Humanities; Social Sciences" +11225;19700200913;"Translation and Interpreting";journal;"18369324";"University of Western Sydneys";Yes;Yes;0,530;Q1;28;18;60;958;112;59;1,37;53,22;48,48;0;Australia;Pacific Region;"University of Western Sydneys";"2011-2025";"Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +11226;88000;"Acta Orthopaedica et Traumatologica Turcica";journal;"25891294, 1017995X";"AVES";Yes;No;0,530;Q2;44;82;206;1933;335;194;1,71;23,57;17,41;0;Turkey;Middle East;"AVES";"2002-2025";"Medicine (miscellaneous) (Q2); Surgery (Q2); Orthopedics and Sports Medicine (Q3)";"Medicine" +11227;16792;"Annals of Clinical Biochemistry";journal;"17581001, 00045632";"SAGE Publications Ltd";No;No;0,530;Q2;97;81;193;2540;344;156;1,11;31,36;45,43;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1961-1970, 1973-2026";"Medicine (miscellaneous) (Q2); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11228;21993;"Assistive Technology";journal;"19493614, 10400435";"Taylor and Francis Ltd.";No;No;0,530;Q2;55;100;202;3836;651;184;2,55;38,36;59,48;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)";"Health Professions; Medicine" +11229;4500151514;"Energy Sources, Part A: Recovery, Utilization and Environmental Effects";journal;"15567230, 15567036";"Taylor & Francis Group LLC";No;No;0,530;Q2;75;1038;2440;39892;6982;2436;2,80;38,43;24,77;10;United States;Northern America;"Taylor & Francis Group LLC";"2006-2026";"Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Nuclear Energy and Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +11230;21100976671;"IEEE Sensors Letters";journal;"24751472";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,530;Q2;48;474;1103;8447;3196;1101;2,85;17,82;23,06;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017-2026";"Electrical and Electronic Engineering (Q2); Instrumentation (Q2)";"Engineering; Physics and Astronomy" +11231;21100857210;"Inorganics";journal;"23046740";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,530;Q2;46;412;1083;27799;3665;1062;3,41;67,47;38,25;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Inorganic Chemistry (Q2)";"Chemistry" +11232;12360;"International Journal of General Systems";journal;"03081079, 15635104";"Taylor and Francis Ltd.";No;No;0,530;Q2;59;118;125;5447;421;123;3,74;46,16;37,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974-2026";"Computer Science Applications (Q2); Control and Systems Engineering (Q2); Information Systems (Q2); Modeling and Simulation (Q2); Theoretical Computer Science (Q2)";"Computer Science; Engineering; Mathematics" +11233;21100895624;"JIMD Reports";book series;"21928304, 21928312";"Springer Berlin";Yes;No;0,530;Q2;40;62;180;1571;311;179;1,58;25,34;60,27;1;Germany;Western Europe;"Springer Berlin";"2012-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Internal Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11234;76747;"Journal of Apicultural Research";journal;"00218839, 20786913";"Taylor and Francis Ltd.";No;No;0,530;Q2;86;173;355;9773;845;339;2,41;56,49;44,93;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1962-2026";"Insect Science (Q2)";"Agricultural and Biological Sciences" +11235;19466;"Journal of Dental Education";journal;"00220337, 19307837";"John Wiley & Sons Inc.";No;No;0,530;Q2;86;405;776;8608;1399;654;1,63;21,25;58,14;0;United States;Northern America;"John Wiley & Sons Inc.";"1946-1947, 1949-1951, 1965-2026";"Dentistry (miscellaneous) (Q2); Education (Q2); Medicine (miscellaneous) (Q2)";"Dentistry; Medicine; Social Sciences" +11236;21101121923;"Journal of Integrative and Complementary Medicine";journal;"27683613, 27683605";"Mary Ann Liebert Inc.";No;No;0,530;Q2;116;149;356;6708;683;309;1,86;45,02;57,45;1;United States;Northern America;"Mary Ann Liebert Inc.";"2022-2026";"Complementary and Alternative Medicine (Q2)";"Medicine" +11237;12240;"Journal of Orthopaedic Science";journal;"14362023, 09492658";"Elsevier B.V.";No;No;0,530;Q2;90;203;739;5349;1174;701;1,50;26,35;11,83;0;Netherlands;Western Europe;"Elsevier B.V.";"1961-1963, 1996-2026";"Surgery (Q2); Orthopedics and Sports Medicine (Q3)";"Medicine" +11238;21101171595;"Journal of Sustainable Construction Materials and Technologies";journal;"2458973X";"Yildiz Technical University";Yes;Yes;0,530;Q2;11;36;100;2003;268;100;2,07;55,64;20,99;0;Turkey;Middle East;"Yildiz Technical University";"2019-2025";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Materials Chemistry (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2); Biomaterials (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering; Materials Science" +11239;19795;"Pacific Conservation Biology";journal;"22044604, 10382097";"CSIRO Publishing";No;No;0,530;Q2;47;65;152;4218;267;144;1,85;64,89;36,27;0;Australia;Pacific Region;"CSIRO Publishing";"1993, 1995-2026";"Ecology (Q2); Nature and Landscape Conservation (Q2)";"Environmental Science" +11240;15755;"Pediatric Transplantation";journal;"13973142, 13993046";"John Wiley and Sons Inc";No;No;0,530;Q2;82;252;725;6963;1121;646;1,51;27,63;50,18;0;United States;Northern America;"John Wiley and Sons Inc";"1997-2026";"Pediatrics, Perinatology and Child Health (Q2); Transplantation (Q2)";"Medicine" +11241;21101080185;"Thrombosis Update";journal;"26665727";"Elsevier B.V.";Yes;No;0,530;Q2;11;31;93;1071;123;81;1,29;34,55;43,90;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Cardiology and Cardiovascular Medicine (Q2); Hematology (Q3)";"Medicine" +11242;5800224056;"Unterrichtswissenschaft";journal;"03404099, 2520873X";"Springer VS";No;No;0,530;Q2;15;27;82;1965;149;80;2,02;72,78;58,89;0;Germany;Western Europe;"Springer VS";"1986, 2012-2014, 2017-2026";"Education (Q2)";"Social Sciences" +11243;14245;"Australasian Psychiatry";journal;"10398562, 14401665";"SAGE Publications Ltd";No;No;0,530;Q3;52;225;559;4037;676;389;1,24;17,94;46,75;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1967-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +11244;21101205867;"Meteorological Monthly";journal;"10000526";"China Meteorological Press";No;No;0,530;Q3;33;132;388;5885;721;388;1,84;44,58;41,91;0;China;Asiatic Region;"China Meteorological Press";"1996-2017, 2020-2026";"Atmospheric Science (Q3)";"Earth and Planetary Sciences" +11245;19866;"South African Journal of Psychiatry";journal;"16089685, 20786786";"AOSIS (Pty) Ltd";Yes;No;0,530;Q3;25;60;175;2431;278;164;1,34;40,52;61,04;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2001-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +11246;5600152909;"Capital and Class";journal;"03098168, 20410980";"SAGE Publications Ltd";No;No;0,529;Q1;47;54;88;3186;170;85;1,95;59,00;34,83;4;United Kingdom;Western Europe;"SAGE Publications Ltd";"1977-2026";"History (Q1); Economics and Econometrics (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +11247;27472;"Annals of Anatomy";journal;"16180402, 09409602";"Elsevier GmbH";No;No;0,529;Q2;71;94;376;5033;850;371;2,24;53,54;38,80;0;Germany;Western Europe;"Elsevier GmbH";"1992-2026";"Anatomy (Q2); Medicine (miscellaneous) (Q2); Developmental Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11248;21100853884;"Audiology Research";journal;"20394349, 20394330";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,529;Q2;17;174;241;7872;477;228;1,80;45,24;46,66;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011, 2014-2018, 2020-2025";"Otorhinolaryngology (Q2); Podiatry (Q2)";"Health Professions; Medicine" +11249;24338;"Australian Endodontic Journal";journal;"13291947, 17474477";"Wiley-Blackwell";No;No;0,529;Q2;47;129;312;3964;605;282;1,82;30,73;47,77;0;United States;Northern America;"Wiley-Blackwell";"1998-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +11250;17401;"Current Protein and Peptide Science";journal;"13892037, 18755550";"Bentham Science Publishers";No;No;0,529;Q2;104;104;208;9623;501;198;2,44;92,53;44,80;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2000-2026";"Medicine (miscellaneous) (Q2); Biochemistry (Q3); Molecular Biology (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11251;5200152620;"Event Management";journal;"15259951";"Cognizant Communication Corporation";No;No;0,529;Q2;48;69;271;4705;670;271;2,37;68,19;52,51;0;United States;Northern America;"Cognizant Communication Corporation";"2006-2025";"Business and International Management (Q2); Marketing (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting" +11252;26086;"Experimental and Clinical Endocrinology and Diabetes";journal;"09477349, 14393646";"Georg Thieme Verlag";No;No;0,529;Q2;92;52;269;2289;481;257;1,61;44,02;40,78;0;Germany;Western Europe;"Georg Thieme Verlag";"1983-2026";"Internal Medicine (Q2); Medicine (miscellaneous) (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11253;21339;"Health, Risk and Society";journal;"13698575, 14698331";"Taylor and Francis Ltd.";No;No;0,529;Q2;63;22;62;1533;121;61;1,86;69,68;72,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1999-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +11254;37971;"International Journal of Cardiovascular Imaging";journal;"18758312, 15695794";"Springer Science and Business Media B.V.";No;No;0,529;Q2;73;296;871;7819;1406;768;1,70;26,42;31,00;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1988, 1994, 1996, 1998, 2000-2026";"Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +11255;145666;"International Journal of Lower Extremity Wounds";journal;"15526941, 15347346";"SAGE Publications Inc.";No;No;0,529;Q2;56;236;349;7595;826;325;2,03;32,18;40,59;4;United States;Northern America;"SAGE Publications Inc.";"2002-2026";"Medicine (miscellaneous) (Q2); Surgery (Q2)";"Medicine" +11256;13000154734;"International Journal of Training and Development";journal;"14682419, 13603736";"Wiley-Blackwell Publishing Ltd";No;No;0,529;Q2;59;46;81;2935;214;79;2,39;63,80;53,85;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1997-2026";"Education (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +11257;21100834321;"Journal of Dynamic Behavior of Materials";journal;"21997446, 21997454";"Springer Nature";Yes;No;0,529;Q2;30;60;101;2494;220;95;2,08;41,57;14,57;1;Switzerland;Western Europe;"Springer Nature";"2015-2026";"Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +11258;21906;"Journal of Public Health Policy";journal;"01975897, 1745655X";"Palgrave Macmillan Ltd.";No;No;0,529;Q2;63;86;191;2865;318;149;1,65;33,31;51,64;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1980-2026";"Public Health, Environmental and Occupational Health (Q2); Health Policy (Q3)";"Medicine" +11259;21100913309;"Maritime Business Review";journal;"23973757, 23973765";"Emerald Group Publishing Ltd.";No;No;0,529;Q2;26;29;69;1621;220;62;3,52;55,90;30,99;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2016-2026";"Business and International Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2); Transportation (Q2)";"Business, Management and Accounting; Social Sciences" +11260;21100371966;"Open Life Sciences";journal;"23915412";"Walter de Gruyter GmbH";Yes;No;0,529;Q2;53;222;617;11409;1526;615;2,47;51,39;43,33;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2014-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Neuroscience" +11261;26290;"Tiedao Xuebao/Journal of the China Railway Society";journal;"10018360";"Science Press";No;No;0,529;Q2;42;223;706;5871;1258;706;1,66;26,33;31,06;0;China;Asiatic Region;"Science Press";"1998, 2001-2025";"Mechanical Engineering (Q2)";"Engineering" +11262;17569;"Wireless Networks";journal;"10220038, 15728196";"Springer Netherlands";No;No;0,529;Q2;110;286;1003;11398;3383;994;3,46;39,85;29,43;0;Netherlands;Western Europe;"Springer Netherlands";"1995-2026";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Information Systems (Q2)";"Computer Science; Engineering" +11263;15069;"World Patent Information";journal;"01722190";"Elsevier Ltd";No;No;0,529;Q2;42;50;126;2868;374;121;3,03;57,36;30,15;0;United Kingdom;Western Europe;"Elsevier Ltd";"1979-2026";"Computer Science Applications (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Library and Information Sciences (Q2); Bioengineering (Q3); Process Chemistry and Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Chemical Engineering; Computer Science; Energy; Social Sciences" +11264;21101140106;"Psychiatry Research Communications";journal;"27725987";"Elsevier B.V.";Yes;No;0,529;Q3;12;39;182;2031;312;176;1,58;52,08;58,80;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Biological Psychiatry (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Neuroscience" +11265;21101048280;"European Journal of Midwifery";journal;"25852906";"European Publishing";Yes;No;0,528;Q1;17;46;183;1344;311;166;1,34;29,22;84,97;0;Greece;Western Europe;"European Publishing";"2019-2025";"Maternity and Midwifery (Q1); Obstetrics and Gynecology (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine; Nursing" +11266;28222;"Journal of Neuroscience Nursing";journal;"08880395";"Lippincott Williams and Wilkins Ltd.";No;No;0,528;Q1;54;55;168;755;247;136;1,50;13,73;67,02;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1986-2026";"Medical and Surgical Nursing (Q1); Surgery (Q2); Neurology (clinical) (Q3); Endocrine and Autonomic Systems (Q4)";"Medicine; Neuroscience; Nursing" +11267;26847;"Women and Criminal Justice";journal;"08974454, 15410323";"Routledge";No;No;0,528;Q1;39;56;96;3923;201;95;1,90;70,05;76,39;0;United States;Northern America;"Routledge";"1989-2026";"Law (Q1); Gender Studies (Q2)";"Social Sciences" +11268;21101229244;"Human Factors and Ergonomics in Manufacturing and Service Industries";journal;"15206564, 10908471";"John Wiley and Sons Inc";No;No;0,528;Q2;56;35;118;2337;348;117;2,78;66,77;40,71;0;United States;Northern America;"John Wiley and Sons Inc";"1996-2026";"Industrial and Manufacturing Engineering (Q2); Human Factors and Ergonomics (Q3)";"Engineering; Social Sciences" +11269;25479;"International Journal of Control, Automation and Systems";journal;"20054092, 15986446";"Institute of Control, Robotics and Systems";No;No;0,528;Q2;79;312;1026;11164;3202;1022;3,22;35,78;26,31;0;South Korea;Asiatic Region;"Institute of Control, Robotics and Systems";"2003-2026";"Computer Science Applications (Q2); Control and Systems Engineering (Q2)";"Computer Science; Engineering" +11270;21101196500;"Journal of Advanced Manufacturing and Processing";journal;"2637403X";"John Wiley and Sons Inc";No;No;0,528;Q2;19;49;70;1919;227;59;3,86;39,16;28,57;0;United States;Northern America;"John Wiley and Sons Inc";"2019-2025";"Chemical Engineering (miscellaneous) (Q2)";"Chemical Engineering" +11271;28132;"Journal of Applied Physics";journal;"10897550, 00218979";"American Institute of Physics";No;No;0,528;Q2;368;1934;5111;95248;13044;5085;2,50;49,25;25,05;1;United States;Northern America;"American Institute of Physics";"1931-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +11272;19900191893;"Journal of Mathematical Inequalities";journal;"1846579X";"Element D.O.O.";No;No;0,528;Q2;38;70;303;1771;287;303;0,87;25,30;24,31;0;Croatia;Eastern Europe;"Element D.O.O.";"2011-2025";"Analysis (Q2)";"Mathematics" +11273;21101284805;"Mesopotamian Journal of Big Data";journal;"29586453";"Mesopotamian Academic Press";No;No;0,528;Q2;14;27;44;1251;185;43;4,38;46,33;21,79;0;Iraq;Middle East;"Mesopotamian Academic Press";"2021-2025";"Artificial Intelligence (Q2); Computer Science Applications (Q2); Computer Vision and Pattern Recognition (Q2); Information Systems (Q2)";"Computer Science" +11274;21579;"Numerical Heat Transfer, Part B: Fundamentals";journal;"15210626, 10407790";"Taylor and Francis Ltd.";No;No;0,528;Q2;66;212;168;9765;751;168;4,79;46,06;22,47;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Computer Science Applications (Q2); Condensed Matter Physics (Q2); Mechanics of Materials (Q2); Modeling and Simulation (Q2); Numerical Analysis (Q2)";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +11275;21100403900;"Open Medicine (Poland)";journal;"23915463";"Walter de Gruyter GmbH";Yes;No;0,528;Q2;36;242;651;10151;1359;649;1,86;41,95;43,08;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2013-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +11276;21100256106;"Survey Research Methods";journal;"18643361";"European Survey Research Association";Yes;Yes;0,528;Q2;45;22;67;1296;102;67;1,15;58,91;50,75;1;United Kingdom;Western Europe;"European Survey Research Association";"2007-2026";"Education (Q2)";"Social Sciences" +11277;24505;"Wildlife Society Bulletin";journal;"00917648, 23285540";"John Wiley and Sons Inc";Yes;No;0,528;Q2;95;95;270;5163;439;262;1,59;54,35;33,09;0;United States;Northern America;"John Wiley and Sons Inc";"1979-1980, 1983-2006, 2011-2026";"Nature and Landscape Conservation (Q2)";"Environmental Science" +11278;21101208919;"Spanish Journal of Psychiatry and Mental Health";journal;"29502853";"Elsevier B.V.";No;No;0,528;Q3;37;53;176;1664;276;157;1,61;31,40;51,16;2;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +11279;21100927252;"Diritto Pubblico";journal;"17218985, 26122464";"Societa Editrice Il Mulino";No;No;0,527;Q1;6;20;70;1759;21;67;0,33;87,95;28,57;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2019-2025";"Law (Q1)";"Social Sciences" +11280;12309;"Journal of Social Work Practice";journal;"14653885, 02650533";"Routledge";No;No;0,527;Q1;42;45;105;1543;185;93;1,65;34,29;65,91;1;United Kingdom;Western Europe;"Routledge";"1983-2026";"Drug Guides (Q1); Health (social science) (Q2); Social Sciences (miscellaneous) (Q2); Social Work (Q3)";"Medicine; Social Sciences" +11281;21100455449;"Porn Studies";journal;"23268743, 23268751";"Taylor and Francis Ltd.";No;No;0,527;Q1;28;81;115;3576;169;94;1,50;44,15;53,06;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Cultural Studies (Q1); Gender Studies (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +11282;19700173205;"Acarina";journal;"22215115, 01328077";"University of Tyumen";No;No;0,527;Q2;18;7;59;210;45;59;0,72;30,00;0,00;0;Russian Federation;Eastern Europe;"University of Tyumen";"2009-2026";"Insect Science (Q2)";"Agricultural and Biological Sciences" +11283;29992;"Annals of Nutrition and Metabolism";journal;"14219697, 02506807";"S. Karger AG";No;No;0,527;Q2;111;66;140;2928;272;120;1,46;44,36;40,07;0;Switzerland;Western Europe;"S. Karger AG";"1959-2026";"Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +11284;19956;"Archiv der Pharmazie";journal;"15214184, 03656233";"Wiley-VCH Verlag";No;No;0,527;Q2;80;266;557;20066;2227;551;3,77;75,44;46,11;0;Germany;Western Europe;"Wiley-VCH Verlag";"1822-1831, 1835-1933, 1937-1938, 1940, 1943-1944, 1950-2026";"Pharmaceutical Science (Q2); Drug Discovery (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +11285;14288;"Behavioural Processes";journal;"18728308, 03766357";"Elsevier B.V.";No;No;0,527;Q2;102;98;356;5536;650;354;1,51;56,49;43,41;0;Netherlands;Western Europe;"Elsevier B.V.";"1976-2026";"Animal Science and Zoology (Q2); Medicine (miscellaneous) (Q2); Behavioral Neuroscience (Q3)";"Agricultural and Biological Sciences; Medicine; Neuroscience" +11286;23603;"CIN - Computers Informatics Nursing";journal;"15382931, 15389774";"Lippincott Williams and Wilkins Ltd.";No;No;0,527;Q2;57;162;420;5050;892;402;2,07;31,17;74,50;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2002-2026";"Medicine (miscellaneous) (Q2); Nursing (miscellaneous) (Q2); Health Informatics (Q3)";"Medicine; Nursing" +11287;28642;"CMES - Computer Modeling in Engineering and Sciences";journal;"15261492, 15261506";"Tech Science Press";No;No;0,527;Q2;73;516;1238;31260;4218;1223;3,68;60,58;25,59;0;United States;Northern America;"Tech Science Press";"2000-2026";"Computer Science Applications (Q2); Modeling and Simulation (Q2); Software (Q2)";"Computer Science; Mathematics" +11288;12062;"International Journal for the Advancement of Counselling";journal;"01650653, 15733246";"Springer New York";No;No;0,527;Q2;40;42;126;2395;227;126;1,39;57,02;62,99;0;United States;Northern America;"Springer New York";"1978-1996, 1998-2026";"Education (Q2); Psychology (miscellaneous) (Q2); Applied Psychology (Q3)";"Psychology; Social Sciences" +11289;21112;"International Journal of Modelling and Simulation";journal;"02286203, 19257082";"Taylor and Francis Ltd.";No;No;0,527;Q2;33;201;255;9594;1016;255;4,11;47,73;19,46;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-1987, 1990-1991, 1993, 1996-2026";"Electrical and Electronic Engineering (Q2); Engineering (miscellaneous) (Q2); Hardware and Architecture (Q2); Industrial and Manufacturing Engineering (Q2); Mathematics (miscellaneous) (Q2); Mechanics of Materials (Q2); Modeling and Simulation (Q2); Software (Q2)";"Computer Science; Engineering; Mathematics" +11290;15498;"International Journal of Sociology and Social Policy";journal;"0144333X, 17586720";"Emerald Group Publishing Ltd.";No;No;0,527;Q2;59;150;248;9416;698;245;2,54;62,77;42,57;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1981-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Economics, Econometrics and Finance; Social Sciences" +11291;21100299414;"International Journal of Wine Business Research";journal;"17511070, 17511062";"Emerald Group Publishing Ltd.";No;No;0,527;Q2;50;39;95;2948;341;94;3,22;75,59;43,14;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007-2026";"Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting" +11292;12119;"Journal of Applied Statistics";journal;"02664763, 13600532";"Routledge";No;No;0,527;Q2;75;221;545;8306;989;523;1,60;37,58;34,56;1;United Kingdom;Western Europe;"Routledge";"1970-1971, 1973-2026";"Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +11293;26949;"Journal of Chemical Thermodynamics";journal;"10963626, 00219614";"Academic Press";No;No;0,527;Q2;115;108;476;5722;1224;475;2,74;52,98;37,35;0;United States;Northern America;"Academic Press";"1969-2026";"Atomic and Molecular Physics, and Optics (Q2); Materials Science (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +11294;12809;"Journal of Educational Research";journal;"19400675, 00220671";"Routledge";Yes;No;0,527;Q2;103;99;92;6298;203;92;1,75;63,62;55,94;0;United States;Northern America;"Routledge";"1920-2026";"Education (Q2)";"Social Sciences" +11295;5800207372;"Journal of Experimental Nanoscience";journal;"17458080, 17458099";"Taylor and Francis Ltd.";Yes;No;0,527;Q2;60;6;77;253;315;77;4,14;42,17;42,86;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Materials Science (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q2); Bioengineering (Q3); Biomedical Engineering (Q3)";"Chemical Engineering; Engineering; Materials Science" +11296;21100403171;"Journal of Interprofessional Education and Practice";journal;"24054526";"Elsevier Inc.";No;No;0,527;Q2;22;47;228;1247;361;223;1,38;26,53;76,70;0;United States;Northern America;"Elsevier Inc.";"2015-2026";"Education (Q2)";"Social Sciences" +11297;21100897051;"Journal of Public Affairs Education";journal;"23289643, 15236803";"SAGE Publications Ltd";No;No;0,527;Q2;37;36;93;1585;169;74;1,63;44,03;53,03;1;United States;Northern America;"SAGE Publications Ltd";"1998-2025";"Education (Q2); Public Administration (Q2)";"Social Sciences" +11298;17700156421;"Journal of Science Communication";journal;"18242049";"International School for Advance Studies";Yes;Yes;0,527;Q2;41;77;252;3464;537;246;2,24;44,99;67,29;3;Italy;Western Europe;"International School for Advance Studies";"2009-2025";"Communication (Q2)";"Social Sciences" +11299;21100827945;"Lasers in Manufacturing and Materials Processing";journal;"21967237, 21967229";"Springer US";No;No;0,527;Q2;27;53;111;2418;362;110;3,27;45,62;19,78;0;United States;Northern America;"Springer US";"2014-2026";"Industrial and Manufacturing Engineering (Q2); Instrumentation (Q2); Modeling and Simulation (Q2); Nuclear and High Energy Physics (Q2)";"Engineering; Mathematics; Physics and Astronomy" +11300;18387;"Medicine (United States)";journal;"00257974, 15365964";"Lippincott Williams and Wilkins";Yes;No;0,527;Q2;193;5399;12170;177815;24524;12169;2,04;32,93;43,02;0;United States;Northern America;"Lippincott Williams and Wilkins";"1922-2026";"Medicine (miscellaneous) (Q2)";"Medicine" +11301;12837;"Metrika";journal;"1435926X, 00261335";"Springer Verlag";No;No;0,527;Q2;50;70;124;2019;164;124;1,37;28,84;28,95;0;Germany;Western Europe;"Springer Verlag";"1958-2026";"Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +11302;29791;"Moravian Geographical Reports";journal;"12108812";"Academy of Sciences of the Czech Republic";Yes;Yes;0,527;Q2;31;6;62;400;141;62;1,93;66,67;42,11;0;Czech Republic;Eastern Europe;"Academy of Sciences of the Czech Republic";"1993-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +11303;21101176037;"Nitrogen (Switzerland)";journal;"25043129";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,527;Q2;16;118;146;8429;442;144;3,03;71,43;34,09;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +11304;21100853532;"Nutrition and Metabolic Insights";journal;"11786388";"Libertas Academica Ltd.";Yes;No;0,527;Q2;26;11;65;440;150;65;2,50;40,00;60,00;0;New Zealand;Pacific Region;"Libertas Academica Ltd.";"2008-2026";"Food Science (Q2); Endocrinology, Diabetes and Metabolism (Q3); Nutrition and Dietetics (Q3)";"Agricultural and Biological Sciences; Medicine; Nursing" +11305;24898;"Pediatric Dermatology";journal;"15251470, 07368046";"John Wiley and Sons Inc";No;No;0,527;Q2;91;378;825;5487;980;661;1,10;14,52;64,31;0;United States;Northern America;"John Wiley and Sons Inc";"1983-2026";"Dermatology (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +11306;7700153225;"Vienna Yearbook of Population Research";journal;"17285305, 17284414";"Verlag der Oesterreichischen Akademie der Wissenschaften";Yes;Yes;0,527;Q2;34;23;57;1398;113;57;1,78;60,78;34,85;1;Austria;Western Europe;"Verlag der Oesterreichischen Akademie der Wissenschaften";"2005-2025";"Demography (Q2)";"Social Sciences" +11307;5600155212;"Analyse und Kritik";journal;"01715860, 23659858";"De Gruyter Oldenbourg";Yes;No;0,526;Q1;19;21;60;895;69;57;0,67;42,62;19,05;0;Germany;Western Europe;"De Gruyter Oldenbourg";"2004-2005, 2007, 2011-2025";"Philosophy (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +11308;4000148707;"Explore";journal;"18787541, 15508307";"Elsevier Inc.";No;No;0,526;Q1;55;144;452;4568;1032;437;2,30;31,72;54,22;0;United States;Northern America;"Elsevier Inc.";"2005-2026";"Chiropractics (Q1); Analysis (Q2); Complementary and Alternative Medicine (Q2); Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Health Professions; Mathematics; Medicine; Nursing" +11309;21100232428;"International Journal of Law and Management";journal;"1754243X, 17542448";"Emerald Group Publishing Ltd.";No;No;0,526;Q1;39;85;106;5391;418;105;4,08;63,42;40,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1996-1997, 2008-2026";"Law (Q1); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +11310;97337;"International Journal of Osteoarchaeology";journal;"10991212, 1047482X";"John Wiley and Sons Ltd";No;No;0,526;Q1;77;109;305;5893;346;288;0,97;54,06;52,22;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1991-2026";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +11311;82305;"School Science and Mathematics";journal;"00366803, 19498594";"John Wiley & Sons Inc.";No;No;0,526;Q1;63;123;147;5795;198;107;1,24;47,11;63,40;2;United States;Northern America;"John Wiley & Sons Inc.";"1908, 1926, 1931, 1946-1947, 1951-1953, 1955-1967, 1970, 1972-1980, 1982, 1984-1985, 1987-1988, 1990, 1992, 1994-2026";"History and Philosophy of Science (Q1); Education (Q2); Engineering (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Arts and Humanities; Engineering; Mathematics; Physics and Astronomy; Social Sciences" +11312;5600153131;"Social Analysis";journal;"15585727, 0155977X";"Berghahn Journals";Yes;Yes;0,526;Q1;39;12;76;544;51;75;0,58;45,33;45,45;0;United Kingdom;Western Europe;"Berghahn Journals";"2002-2025";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +11313;21697;"Animal Genetics";journal;"02689146, 13652052";"Wiley-Blackwell Publishing Ltd";No;No;0,526;Q2;99;84;315;3876;721;314;2,35;46,14;47,41;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1986-2026";"Animal Science and Zoology (Q2); Genetics (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +11314;27475;"Annals of Diagnostic Pathology";journal;"15328198, 10929134";"W.B. Saunders";No;No;0,526;Q2;71;86;380;2498;559;353;1,46;29,05;48,48;0;United States;Northern America;"W.B. Saunders";"1997-2026";"Pathology and Forensic Medicine (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +11315;21101209858;"Cardiovascular Innovations and Applications";journal;"20098782, 20098618";"Compuscript Ltd";Yes;Yes;0,526;Q2;10;46;178;2017;336;167;1,95;43,85;45,74;0;Ireland;Western Europe;"Compuscript Ltd";"2016-2017, 2020-2025";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +11316;17373;"Comparative Biochemistry and Physiology Part - B: Biochemistry and Molecular Biology";journal;"18791107, 10964959";"Elsevier Inc.";No;No;0,526;Q2;120;98;211;6634;586;211;2,73;67,69;44,16;0;United States;Northern America;"Elsevier Inc.";"1971-2026";"Animal Science and Zoology (Q2); Aquatic Science (Q2); Biochemistry (Q3); Molecular Biology (Q3); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +11317;21101290583;"Frontiers in Dementia";journal;"28133919";"Frontiers Media SA";Yes;No;0,526;Q2;5;31;53;1679;120;46;2,26;54,16;56,00;0;Switzerland;Western Europe;"Frontiers Media SA";"2023-2026";"Care Planning (Q2); Cognitive Neuroscience (Q3); Neurology (Q3); Neuroscience (miscellaneous) (Q3)";"Neuroscience; Nursing" +11318;21101080473;"Information Geometry";journal;"2511249X, 25112481";"Springer Nature";No;No;0,526;Q2;12;32;93;985;93;90;0,79;30,78;10,87;0;Singapore;Asiatic Region;"Springer Nature";"2018-2026";"Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Geometry and Topology (Q2); Statistics and Probability (Q2)";"Computer Science; Mathematics" +11319;14500154716;"International Journal of Material Forming";journal;"19606206, 19606214";"Springer Paris";No;No;0,526;Q2;56;99;203;4473;583;203;2,81;45,18;23,98;0;France;Western Europe;"Springer Paris";"2008-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +11320;21100199786;"International Neurourology Journal";journal;"20934777, 20936931";"Korean Continence Society";Yes;Yes;0,526;Q2;41;52;172;1320;309;148;1,77;25,38;30,29;0;South Korea;Asiatic Region;"Korean Continence Society";"2010-2025";"Urology (Q2); Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +11321;21100222301;"Journal of Arrhythmia";journal;"18832148, 18804276";"John Wiley & Sons Inc.";Yes;No;0,526;Q2;40;291;494;5371;690;362;1,35;18,46;17,80;0;Netherlands;Western Europe;"John Wiley & Sons Inc.";"2005-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +11322;19900193251;"Journal of International Accounting Research";journal;"15588025, 15426297";"American Accounting Association";No;No;0,526;Q2;34;22;64;1556;128;64;1,98;70,73;31,15;0;United States;Northern America;"American Accounting Association";"2007, 2009-2025";"Accounting (Q2); Business and International Management (Q2)";"Business, Management and Accounting" +11323;110040;"Nanotechnology";journal;"09574484, 13616528";"IOP Publishing Ltd.";No;No;0,526;Q2;241;513;2632;26190;7198;2625;2,82;51,05;31,84;2;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1990-2026";"Chemistry (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Bioengineering (Q3); Nanoscience and Nanotechnology (Q3)";"Chemical Engineering; Chemistry; Engineering; Materials Science" +11324;21101186201;"Quaderni dell'Osservatorio Elettorale";journal;"27244679, 03926753";"Firenze University Press";Yes;Yes;0,526;Q2;7;15;24;694;42;22;1,80;46,27;32,35;0;Italy;Western Europe;"Firenze University Press";"2019-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +11325;21101071063;"Revista de Gestao";journal;"18092276, 21778736";"Emerald Group Publishing Ltd.";Yes;Yes;0,526;Q2;24;29;82;1198;305;76;2,55;41,31;38,89;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2018-2025";"Business and International Management (Q2); Management Information Systems (Q2); Management of Technology and Innovation (Q2); Marketing (Q3)";"Business, Management and Accounting" +11326;19700200912;"CALICO Journal";journal;"20569017";"University of Toronto Press";No;No;0,525;Q1;51;28;60;1085;126;48;1,90;38,75;58,97;0;United States;Northern America;"University of Toronto Press";"1983-1996, 1998-2025";"Linguistics and Language (Q1); Computer Science Applications (Q2); Education (Q2)";"Computer Science; Social Sciences" +11327;21100220394;"Climate Law";journal;"18786553, 18786561";"Brill Academic Publishers";No;No;0,525;Q1;27;9;29;1021;57;28;1,67;113,44;53,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2012, 2014-2026";"Law (Q1); Environmental Science (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science; Social Sciences" +11328;6200158425;"Corpora";journal;"17551676, 17495032";"Edinburgh University Press";No;No;0,525;Q1;37;16;62;652;105;62;1,47;40,75;45,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"2006-2025";"Linguistics and Language (Q1)";"Social Sciences" +11329;5600155075;"Field Methods";journal;"1525822X, 15523969";"SAGE Publications Inc.";No;No;0,525;Q1;65;33;77;951;157;76;1,75;28,82;55,91;0;United States;Northern America;"SAGE Publications Inc.";"1989-2026";"Anthropology (Q1)";"Social Sciences" +11330;21100894523;"She Ji";journal;"24058718, 24058726";"KeAi Communications Co.";Yes;No;0,525;Q1;31;27;78;1335;212;62;2,87;49,44;48,15;0;Netherlands;Western Europe;"KeAi Communications Co.";"2015-2025";"Visual Arts and Performing Arts (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2); Education (Q2); Management of Technology and Innovation (Q2)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +11331;21100199534;"Teoria de la Educacion";journal;"11303743, 23865660";"Universidad de Salamanca, Facultad de EducaciOn";Yes;Yes;0,525;Q1;19;19;67;881;172;67;2,61;46,37;40,00;0;Spain;Western Europe;"Universidad de Salamanca, Facultad de EducaciOn";"2008-2026";"Philosophy (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +11332;145207;"Asia Europe Journal";journal;"16102932, 16121031";"Springer Science and Business Media Deutschland GmbH";No;No;0,525;Q2;32;57;88;2981;168;85;1,60;52,30;43,27;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2003-2026";"Business, Management and Accounting (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Business, Management and Accounting; Social Sciences" +11333;27511;"Australian Geographer";journal;"14653311, 00049182";"Routledge";No;No;0,525;Q2;58;28;88;1742;207;86;2,22;62,21;55,22;0;United Kingdom;Western Europe;"Routledge";"1928-1929, 1931-1943, 1945-1948, 1950-2026";"Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +11334;14958;"Criminal Behaviour and Mental Health";journal;"09579664, 14712857";"Wiley-Blackwell";No;No;0,525;Q2;67;44;115;1765;191;93;1,60;40,11;50,79;1;United States;Northern America;"Wiley-Blackwell";"1992-2026";"Pathology and Forensic Medicine (Q2); Psychology (miscellaneous) (Q2); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +11335;21100215163;"Critical Care Research and Practice";journal;"20901305, 20901313";"John Wiley and Sons Ltd";Yes;No;0,525;Q2;43;19;91;704;202;91;1,62;37,05;44,64;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010, 2012-2026";"Critical Care and Intensive Care Medicine (Q2)";"Medicine" +11336;28673;"Educational Gerontology";journal;"03601277, 15210472";"Routledge";No;No;0,525;Q2;67;203;210;11105;525;209;2,47;54,70;63,24;3;United Kingdom;Western Europe;"Routledge";"1976-2026";"Education (Q2); Geriatrics and Gerontology (Q3)";"Medicine; Social Sciences" +11337;19600166324;"International Journal of Early Childhood";journal;"18784658, 00207187";"Springer Netherlands";No;No;0,525;Q2;38;83;81;4543;198;80;1,88;54,73;73,58;1;Netherlands;Western Europe;"Springer Netherlands";"1969-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +11338;21100299412;"International Journal of Event and Festival Management";journal;"17582954, 17582962";"Emerald Publishing";No;No;0,525;Q2;41;50;90;3611;283;88;2,85;72,22;50,00;0;United Kingdom;Western Europe;"Emerald Publishing";"2010-2026";"Business, Management and Accounting (miscellaneous) (Q2); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting" +11339;20100195028;"International Journal of Plant Biology";journal;"20370164, 20370156";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,525;Q2;22;142;230;8943;740;223;2,65;62,98;38,00;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +11340;25280;"Journal of Biological Inorganic Chemistry";journal;"09498257, 14321327";"Springer Science and Business Media Deutschland GmbH";No;No;0,525;Q2;118;46;175;2569;519;167;3,01;55,85;47,26;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-2026";"Inorganic Chemistry (Q2); Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +11341;21100197355;"Mycobiology";journal;"12298093, 20929323";"Taylor and Francis Ltd.";Yes;No;0,525;Q2;50;76;143;3580;404;136;2,76;47,11;40,39;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009, 2011-2026";"Plant Science (Q2); Infectious Diseases (Q3); Microbiology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +11342;21101092891;"Nordic Journal of Nursing Research";journal;"20571593, 20571585";"SAGE Publications Ltd";Yes;No;0,525;Q2;17;26;114;1002;200;113;1,27;38,54;83,93;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2025";"Nursing (miscellaneous) (Q2)";"Nursing" +11343;14600154704;"Pacific Focus";journal;"12254657, 19765118";"Wiley-Blackwell";No;No;0,525;Q2;18;22;60;1365;68;59;1,25;62,05;34,62;0;United States;Northern America;"Wiley-Blackwell";"1986-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +11344;25070;"Proceedings of the Institution of Mechanical Engineers, Part F: Journal of Rail and Rapid Transit";journal;"09544097, 20413017";"SAGE Publications Ltd";No;No;0,525;Q2;76;100;338;3718;974;336;2,61;37,18;22,43;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1989-2026";"Mechanical Engineering (Q2)";"Engineering" +11345;21101128318;"Telecom";journal;"26734001";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,525;Q2;23;100;137;4858;537;137;4,14;48,58;29,07;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +11346;21101123943;"Urogynecology";journal;"27711897";"Wolters Kluwer Health Inc";No;No;0,525;Q2;43;185;443;4059;611;408;1,26;21,94;68,01;0;United States;Northern America;"Wolters Kluwer Health Inc";"2022-2026";"Obstetrics and Gynecology (Q2); Surgery (Q2); Urology (Q2)";"Medicine" +11347;21170;"Clinical Biomechanics";journal;"18791271, 02680033";"Elsevier Ltd";No;No;0,525;Q3;157;233;573;9523;1152;565;1,85;40,87;31,87;0;United Kingdom;Western Europe;"Elsevier Ltd";"1986-2026";"Biophysics (Q3); Orthopedics and Sports Medicine (Q3); Sports Science (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +11348;21101140107;"Clinical eHealth";journal;"25889141";"KeAi Communications Co.";Yes;No;0,525;Q3;13;25;62;1686;267;58;4,32;67,44;41,82;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2025";"Health Informatics (Q3); Health Information Management (Q3); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine" +11349;29947;"Journal of Chemotherapy";journal;"1120009X, 19739478";"Taylor and Francis Ltd.";No;No;0,525;Q3;60;137;221;5336;438;210;2,07;38,95;42,27;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Oncology (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +11350;5700166959;"Human Rights Review";journal;"15248879, 18746306";"Springer Science and Business Media B.V.";No;No;0,524;Q1;32;11;69;822;142;68;1,81;74,73;42,11;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2000-2026";"Law (Q1); Sociology and Political Science (Q2)";"Social Sciences" +11351;22456;"International Journal of Pharmacy Practice";journal;"09617671, 20427174";"Oxford University Press";No;No;0,524;Q1;47;82;255;2655;432;224;1,87;32,38;60,47;0;United Kingdom;Western Europe;"Oxford University Press";"1991-2026";"Pharmacy (Q1); Pharmaceutical Science (Q2); Public Health, Environmental and Occupational Health (Q2); Health Policy (Q3); Medicine (miscellaneous) (Q3); Pharmacology (medical) (Q3)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11352;16805;"Journal of Music Therapy";journal;"20537395, 00222917";"American Music Therapy Association";No;No;0,524;Q1;64;21;60;955;109;51;2,00;45,48;76,47;0;United States;Northern America;"American Music Therapy Association";"1964-2026";"Complementary and Manual Therapy (Q1); Music (Q1); Medicine (miscellaneous) (Q3)";"Arts and Humanities; Health Professions; Medicine" +11353;26842;"Journal of World Trade";journal;"22102795, 10116702";"Kluwer Law International";No;No;0,524;Q1;40;43;125;2397;189;124;1,34;55,74;34,62;3;Netherlands;Western Europe;"Kluwer Law International";"1989, 1996-2026";"Law (Q1); Economics and Econometrics (Q2); Political Science and International Relations (Q2)";"Economics, Econometrics and Finance; Social Sciences" +11354;21101385360;"Mesopotamian Journal of Civil Engineering";journal;"30061148";"Mesopotamian Academic Press";No;No;0,524;Q1;8;8;24;242;89;24;3,71;30,25;12,50;0;Iraq;Middle East;"Mesopotamian Academic Press";"2023-2025";"Architecture (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Engineering" +11355;21101248945;"Poultry";journal;"26741164";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,524;Q1;12;61;92;3129;278;91;3,00;51,30;41,33;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Veterinary (miscellaneous) (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Food Animals (Q2)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +11356;19557;"Veterinary Research Communications";journal;"15737446, 01657380";"Springer Science and Business Media B.V.";No;No;0,524;Q1;69;359;726;16881;1722;720;2,34;47,02;44,74;2;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1977-2026";"Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +11357;4700152838;"Acta Geophysica";journal;"18957455, 18956572";"Springer International Publishing AG";Yes;No;0,524;Q2;53;350;654;19560;1862;649;2,91;55,89;25,90;2;Switzerland;Western Europe;"Springer International Publishing AG";"2006-2026";"Geophysics (Q2)";"Earth and Planetary Sciences" +11358;21100932526;"Challenges in Sustainability";journal;"22976477";"Acadlore Publishing Services Limited";Yes;No;0,524;Q2;11;40;31;2359;133;30;5,13;58,98;43,08;0;Hong Kong;Asiatic Region;"Acadlore Publishing Services Limited";"2019-2025";"Ecology (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2); Global and Planetary Change (Q3)";"Environmental Science; Social Sciences" +11359;28930;"Computational Statistics";journal;"16139658, 09434062";"Springer Science and Business Media Deutschland GmbH";No;No;0,524;Q2;58;210;340;7852;626;335;1,77;37,39;30,19;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-2026";"Computational Mathematics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +11360;18500157900;"Food Additives and Contaminants - Part A";journal;"19440057, 19440049";"Taylor and Francis Ltd.";No;No;0,524;Q2;75;0;69;0;182;69;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2012, 2014-2024";"Chemistry (miscellaneous) (Q2); Food Science (Q2); Public Health, Environmental and Occupational Health (Q2); Health, Toxicology and Mutagenesis (Q3); Medicine (miscellaneous) (Q3); Toxicology (Q3)";"Agricultural and Biological Sciences; Chemistry; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11361;19400157146;"Food Additives and Contaminants: Part B Surveillance";journal;"19393210, 19393229";"Taylor and Francis Ltd.";No;No;0,524;Q2;49;39;111;1765;299;111;2,96;45,26;51,46;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Food Science (Q2); Public Health, Environmental and Occupational Health (Q2); Toxicology (Q3)";"Agricultural and Biological Sciences; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11362;21101268321;"Geotechnics";journal;"26737094";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,524;Q2;17;87;188;4387;530;187;2,65;50,43;22,01;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Engineering (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering; Environmental Science" +11363;21100413740;"International Journal of Care Coordination";journal;"20534353, 20534345";"SAGE Publications Ltd";No;No;0,524;Q2;16;0;33;0;51;27;2,35;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2006-2008, 2011, 2014-2023";"Leadership and Management (Q2); Health Policy (Q3)";"Medicine; Nursing" +11364;13554;"Journal of Applied Polymer Science";journal;"00218995, 10974628";"John Wiley & Sons Inc.";No;No;0,524;Q2;206;1598;4571;77725;14723;4570;3,23;48,64;37,01;0;United States;Northern America;"John Wiley & Sons Inc.";"1959-2026";"Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2); Surfaces, Coatings and Films (Q2)";"Chemistry; Materials Science" +11365;28545;"Journal of Nanoparticle Research";journal;"13880764, 1572896X";"Springer Science and Business Media B.V.";No;No;0,524;Q2;156;323;757;21111;2757;757;3,90;65,36;39,81;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1999-2026";"Atomic and Molecular Physics, and Optics (Q2); Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Modeling and Simulation (Q2); Bioengineering (Q3); Nanoscience and Nanotechnology (Q3)";"Chemical Engineering; Chemistry; Materials Science; Mathematics; Physics and Astronomy" +11366;29573;"Limnology";journal;"1439863X, 14398621";"Springer";No;No;0,524;Q2;48;50;87;2816;181;87;1,80;56,32;32,34;0;Japan;Asiatic Region;"Springer";"2000-2026";"Aquatic Science (Q2); Ecology (Q2); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11367;19700188159;"Mentoring and Tutoring: Partnership in Learning";journal;"14699745, 13611267";"Taylor and Francis Ltd.";No;No;0,524;Q2;52;35;104;1819;196;91;1,82;51,97;67,96;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Education (Q2)";"Social Sciences" +11368;16930;"Mineralogical Magazine";journal;"0026461X, 14718022";"Mineralogical Society";No;No;0,524;Q2;87;123;245;6003;353;239;1,51;48,80;29,53;0;United Kingdom;Western Europe;"Mineralogical Society";"1969-1970, 1978-1989, 1993-2026";"Geochemistry and Petrology (Q2)";"Earth and Planetary Sciences" +11369;21101147340;"Plasma";journal;"25716182";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,524;Q2;18;50;141;2494;403;141;3,09;49,88;17,97;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Engineering; Materials Science; Physics and Astronomy" +11370;16158;"Proceedings of the Institution of Civil Engineers: Geotechnical Engineering";journal;"13532618, 17518563";"ICE Publishing";No;No;0,524;Q2;57;43;158;1523;289;145;1,56;35,42;23,23;0;United Kingdom;Western Europe;"ICE Publishing";"1994-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +11371;12440;"Professional Geographer";journal;"14679272, 00330124";"Taylor and Francis Ltd.";No;No;0,524;Q2;97;70;234;3826;463;221;2,13;54,66;44,08;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1949-2026";"Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +11372;22078;"Systems Engineering";journal;"15206858, 10981241";"John Wiley & Sons Inc.";No;No;0,524;Q2;64;57;159;3507;451;158;3,05;61,53;23,76;0;United States;Northern America;"John Wiley & Sons Inc.";"1998-2026";"Computer Networks and Communications (Q2); Hardware and Architecture (Q2)";"Computer Science" +11373;21101393106;"TheoretiCS";journal;"27514838";"TheoretiCS Foundation";No;No;0,524;Q2;5;25;40;1333;45;40;1,03;53,32;24,39;0;Germany;Western Europe;"TheoretiCS Foundation";"2023-2026";"Computational Theory and Mathematics (Q2)";"Computer Science" +11374;21100455430;"Translational Cancer Research";journal;"22196803, 2218676X";"AME Publishing Company";No;No;0,524;Q2;47;651;1273;25661;2478;1168;1,93;39,42;42,58;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2012-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11375;20235;"Journal of Microbiological Methods";journal;"18728359, 01677012";"Elsevier B.V.";No;No;0,524;Q3;159;188;438;8243;1121;437;2,62;43,85;48,77;0;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Microbiology (Q3); Microbiology (medical) (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +11376;21100788834;"Tremor and Other Hyperkinetic Movements";journal;"21608288";"Center for Digital Research and Scholarship";Yes;No;0,524;Q3;37;66;150;2001;316;145;1,91;30,32;40,75;0;United States;Northern America;"Center for Digital Research and Scholarship";"2012-2026";"Neurology (clinical) (Q3)";"Medicine" +11377;16400154714;"British Journal of Religious Education";journal;"17407931, 01416200";"Routledge";No;No;0,523;Q1;35;93;127;4756;217;115;1,52;51,14;43,60;0;United Kingdom;Western Europe;"Routledge";"1978-2026";"Religious Studies (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +11378;14234;"Cultural Studies";journal;"14664348, 09502386";"Taylor and Francis Ltd.";No;No;0,523;Q1;70;54;138;2866;233;130;1,67;53,07;53,23;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-1996, 1998-2001, 2003-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +11379;24371;"Brazilian Dental Journal";journal;"01036440, 18064760";"Associacao Brasileira de Divulgacao Cientifica";Yes;No;0,523;Q2;68;93;273;2648;532;273;1,86;28,47;51,28;0;Brazil;Latin America;"Associacao Brasileira de Divulgacao Cientifica";"1990-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +11380;21100905055;"Clinical and Experimental Emergency Medicine";journal;"23834625";"Korean Society of Emergency Medicine";Yes;Yes;0,523;Q2;23;60;191;1340;381;135;2,27;22,33;30,67;0;South Korea;Asiatic Region;"Korean Society of Emergency Medicine";"2014, 2018-2025";"Emergency Medicine (Q2); Emergency Nursing (Q2)";"Medicine; Nursing" +11381;21101371116;"Communications in Mathematical Analysis and Applications";journal;"27901920, 27901939";"Global Science Press";No;No;0,523;Q2;4;27;54;745;31;52;0,36;27,59;28,57;0;Hong Kong;Asiatic Region;"Global Science Press";"2022-2025";"Analysis (Q2); Numerical Analysis (Q2)";"Mathematics" +11382;17600155211;"Curriculum Perspectives";journal;"01597868, 23671793";"Springer";No;No;0,523;Q2;23;30;122;1586;304;107;2,44;52,87;62,50;0;Singapore;Asiatic Region;"Springer";"1980-1994, 1996-2003, 2006-2026";"Education (Q2)";"Social Sciences" +11383;18047;"Industrial Robot";journal;"17585791, 0143991X";"Emerald Publishing";No;No;0,523;Q2;69;145;285;4179;993;283;3,30;28,82;27,91;0;United Kingdom;Western Europe;"Emerald Publishing";"1973-1989, 1991, 1993, 1995-2026";"Computer Science Applications (Q2); Control and Systems Engineering (Q2); Industrial and Manufacturing Engineering (Q2)";"Computer Science; Engineering" +11384;20446;"International Journal of Engine Research";journal;"14680874, 20413149";"SAGE Publications Ltd";No;No;0,523;Q2;72;173;568;7702;1619;561;2,44;44,52;13,99;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2000-2026";"Aerospace Engineering (Q2); Automotive Engineering (Q2); Mechanical Engineering (Q2); Ocean Engineering (Q2)";"Engineering" +11385;21100913135;"International Journal of Financial Studies";journal;"22277072";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,523;Q2;43;244;393;14921;1652;393;4,24;61,15;31,61;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Finance (Q2)";"Economics, Econometrics and Finance" +11386;25881;"JAOCS, Journal of the American Oil Chemists' Society";journal;"15589331, 0003021X";"John Wiley and Sons Inc";No;No;0,523;Q2;145;135;278;6591;911;271;2,98;48,82;42,88;0;Germany;Western Europe;"John Wiley and Sons Inc";"1947-2026";"Chemical Engineering (miscellaneous) (Q2); Food Science (Q2); Organic Chemistry (Q2); Process Chemistry and Technology (Q3)";"Agricultural and Biological Sciences; Chemical Engineering; Chemistry" +11387;21100778091;"Journal of Adult and Continuing Education";journal;"14779714, 14797194";"SAGE Publications Inc.";No;No;0,523;Q2;18;58;107;2713;244;101;2,32;46,78;50,39;2;United Kingdom;Western Europe;"SAGE Publications Inc.";"2014, 2016-2026";"Education (Q2)";"Social Sciences" +11388;23897;"Journal of Geometry and Physics";journal;"03930440";"Elsevier B.V.";No;No;0,523;Q2;67;266;613;8223;736;611;0,99;30,91;24,31;0;Netherlands;Western Europe;"Elsevier B.V.";"1984-1990, 1992-2026";"Geometry and Topology (Q2); Mathematical Physics (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Mathematics; Physics and Astronomy" +11389;31617;"Journal of Soil and Water Conservation";journal;"19413300, 00224561";"Taylor and Francis Ltd.";No;No;0,523;Q2;100;31;164;1667;360;161;2,31;53,77;47,33;1;United States;Northern America;"Taylor and Francis Ltd.";"1973-2025";"Agronomy and Crop Science (Q2); Nature and Landscape Conservation (Q2); Soil Science (Q2); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11390;27306;"Mobile Networks and Applications";journal;"1383469X, 15728153";"Springer Netherlands";No;No;0,523;Q2;107;66;617;2105;1895;572;2,97;31,89;29,22;0;Netherlands;Western Europe;"Springer Netherlands";"1996-2026";"Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)";"Computer Science" +11391;12331;"Current Topics in Medicinal Chemistry";journal;"15680266, 18734294";"Bentham Science Publishers";No;No;0,523;Q3;143;288;497;31805;1930;430;3,82;110,43;40,96;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2001-2026";"Drug Discovery (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +11392;17100154714;"Journal of Breath Research";journal;"17527155, 17527163";"IOP Publishing Ltd.";No;No;0,523;Q3;76;58;160;2199;523;149;3,07;37,91;37,67;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2007-2026";"Pulmonary and Respiratory Medicine (Q3)";"Medicine" +11393;23008;"Journal of Clinical Psychopharmacology";journal;"1533712X, 02710749";"Lippincott Williams and Wilkins";No;No;0,523;Q3;137;161;427;4642;603;203;1,40;28,83;43,23;0;United States;Northern America;"Lippincott Williams and Wilkins";"1981-2026";"Pharmacology (medical) (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +11394;6000159317;"Ampersand";journal;"22150390";"Elsevier Ltd";Yes;No;0,522;Q1;19;40;116;2090;234;114;1,99;52,25;40,63;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Linguistics and Language (Q1)";"Social Sciences" +11395;21100286342;"Philosophical Topics";journal;"02762080, 2154154X";"University of Arkansas Press";No;No;0,522;Q1;25;0;57;0;95;53;1,58;0,00;0,00;0;United States;Northern America;"University of Arkansas Press";"2011-2024";"Philosophy (Q1)";"Arts and Humanities" +11396;18728;"Psychiatry, Psychology and Law";journal;"19341687, 13218719";"Routledge";No;No;0,522;Q1;45;129;170;8107;357;167;1,81;62,84;58,80;2;United Kingdom;Western Europe;"Routledge";"1994-2026";"Law (Q1); Pathology and Forensic Medicine (Q2); Psychology (miscellaneous) (Q2); Psychiatry and Mental Health (Q3)";"Medicine; Psychology; Social Sciences" +11397;21100967252;"Current Ophthalmology Reports";journal;"21674868";"Springer";No;No;0,522;Q2;23;16;46;1375;74;46;1,45;85,94;50,00;0;United States;Northern America;"Springer";"2013-2026";"Ophthalmology (Q2)";"Medicine" +11398;17755;"Domestic Animal Endocrinology";journal;"18790054, 07397240";"Elsevier Inc.";No;No;0,522;Q2;88;48;119;3280;246;118;1,91;68,33;44,59;0;United States;Northern America;"Elsevier Inc.";"1984-2026";"Animal Science and Zoology (Q2); Food Animals (Q2); Endocrinology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +11399;21101266872;"IEEE Journal on Flexible Electronics";journal;"2768167X";"Institute of Electrical and Electronics Engineers";No;No;0,522;Q2;13;53;154;2286;451;143;2,68;43,13;29,46;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2022-2026";"Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science" +11400;21101374261;"IEEE Journal on Indoor and Seamless Positioning and Navigation";journal;"28327322";"Institute of Electrical and Electronics Engineers";Yes;No;0,522;Q2;8;22;47;1013;150;46;3,19;46,05;18,18;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2023-2026";"Aerospace Engineering (Q2); Communication (Q2); Computer Science Applications (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2); Ocean Engineering (Q2); Transportation (Q2)";"Computer Science; Earth and Planetary Sciences; Engineering; Social Sciences" +11401;27688;"Journal of Astrophysics and Astronomy";journal;"09737758, 02506335";"Springer";Yes;No;0,522;Q2;40;92;235;6543;336;231;1,31;71,12;25,73;0;India;Asiatic Region;"Springer";"1980-2026";"Astronomy and Astrophysics (Q2); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Physics and Astronomy" +11402;16284;"Journal of Hydrologic Engineering - ASCE";journal;"19435584, 10840699";"American Society of Civil Engineers (ASCE)";No;No;0,522;Q2;112;89;255;4102;592;233;2,12;46,09;24,81;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1996-2026";"Civil and Structural Engineering (Q2); Environmental Science (miscellaneous) (Q2); Water Science and Technology (Q2); Environmental Chemistry (Q3)";"Engineering; Environmental Science" +11403;16015;"Journal of Industrial Textiles";journal;"15308057, 15280837";"SAGE Publications Ltd";Yes;No;0,522;Q2;66;108;815;6230;2780;815;2,40;57,69;33,33;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1971-1998, 2000-2026";"Chemical Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2); Polymers and Plastics (Q2)";"Chemical Engineering; Engineering; Materials Science" +11404;13687;"Journal of Polymer Research";journal;"15728935, 10229760";"Springer Netherlands";No;No;0,522;Q2;81;477;1355;24207;4715;1354;3,68;50,75;35,79;0;Netherlands;Western Europe;"Springer Netherlands";"1994-2026";"Materials Chemistry (Q2); Organic Chemistry (Q2); Polymers and Plastics (Q2)";"Chemistry; Materials Science" +11405;19400158637;"Silicon";journal;"18769918, 1876990X";"Springer Netherlands";No;No;0,522;Q2;74;348;2294;18076;9493;2294;4,52;51,94;31,86;0;Netherlands;Western Europe;"Springer Netherlands";"2009-2026";"Electronic, Optical and Magnetic Materials (Q2)";"Materials Science" +11406;21101098755;"Telemedicine Reports";journal;"26924366";"Mary Ann Liebert Inc.";Yes;No;0,522;Q2;12;43;115;1354;222;114;1,99;31,49;49,78;0;United States;Northern America;"Mary Ann Liebert Inc.";"2020-2025";"Computer Science Applications (Q2); Health Informatics (Q3); Medicine (miscellaneous) (Q3)";"Computer Science; Medicine" +11407;22112;"Traffic Injury Prevention";journal;"15389588, 1538957X";"Taylor and Francis Ltd.";No;No;0,522;Q2;73;248;416;9363;1098;410;2,68;37,75;38,15;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Public Health, Environmental and Occupational Health (Q2); Safety Research (Q2)";"Medicine; Social Sciences" +11408;21100807769;"BJPsych Bulletin";journal;"20564708, 20564694";"Cambridge University Press";Yes;Yes;0,522;Q3;37;114;224;2813;379;176;1,64;24,68;52,30;1;United Kingdom;Western Europe;"Cambridge University Press";"2014-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +11409;21100851335;"Healthcare Technology Letters";journal;"20533713";"John Wiley & Sons Inc.";Yes;No;0,522;Q3;40;58;82;2668;330;80;4,30;46,00;30,12;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2014-2026";"Health Informatics (Q3); Health Information Management (Q3)";"Health Professions; Medicine" +11410;14656;"In Vitro Cellular and Developmental Biology - Animal";journal;"10712690, 1543706X";"Springer";No;No;0,522;Q3;74;157;301;6274;567;275;1,99;39,96;44,86;0;United States;Northern America;"Springer";"1986-1987, 1992-2026";"Developmental Biology (Q3); Medicine (miscellaneous) (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11411;16264;"Journal of Legal Education";journal;"00222208";"Association of American Law Schools";No;No;0,521;Q1;24;36;31;2952;94;27;0,00;82,00;56,86;0;United States;Northern America;"Association of American Law Schools";"1988, 1996-2022, 2025";"Law (Q1); Education (Q2)";"Social Sciences" +11412;23108;"Language and Speech";journal;"00238309, 17566053";"SAGE Publications Inc.";No;No;0,521;Q1;67;74;132;5119;200;132;1,34;69,18;55,05;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1958-2026";"Linguistics and Language (Q1); Sociology and Political Science (Q2); Speech and Hearing (Q2); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine; Social Sciences" +11413;20340;"Parasitology Research";journal;"14321955, 09320113";"Springer Science and Business Media Deutschland GmbH";No;No;0,521;Q1;118;165;1064;8323;2213;1058;1,97;50,44;43,36;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1987-2026";"Veterinary (miscellaneous) (Q1); Insect Science (Q2); Parasitology (Q2); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine; Veterinary" +11414;5700183859;"Studies in Language";journal;"15699978, 03784177";"John Benjamins Publishing Company";No;No;0,521;Q1;44;30;74;2405;79;74;0,88;80,17;32,76;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1977-2000, 2002-2026";"Linguistics and Language (Q1); Communication (Q2)";"Social Sciences" +11415;21100857591;"ACM Transactions on Spatial Algorithms and Systems";journal;"23740361, 23740353";"Association for Computing Machinery";No;No;0,521;Q2;24;18;100;953;289;94;3,36;52,94;15,94;0;United States;Northern America;"Association for Computing Machinery";"2015-2025";"Computer Science Applications (Q2); Discrete Mathematics and Combinatorics (Q2); Geometry and Topology (Q2); Information Systems (Q2); Modeling and Simulation (Q2); Signal Processing (Q2)";"Computer Science; Mathematics" +11416;13043;"Aquatic Ecology";journal;"13862588, 15735125";"Springer Science and Business Media B.V.";No;No;0,521;Q2;74;99;239;6645;553;238;2,61;67,12;41,48;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1996-2026";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +11417;23043;"Asian Journal of Women's Studies";journal;"12259276";"Taylor and Francis Ltd.";No;No;0,521;Q2;22;22;68;965;111;64;1,73;43,86;72,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Gender Studies (Q2)";"Social Sciences" +11418;144968;"Asia-Pacific Financial Markets";journal;"13872834, 15736946";"Springer New York";No;No;0,521;Q2;29;120;104;7213;444;102;4,25;60,11;30,57;0;United States;Northern America;"Springer New York";"1996-2026";"Finance (Q2)";"Economics, Econometrics and Finance" +11419;14320;"Brain and Development";journal;"18727131, 03877604";"Elsevier B.V.";No;No;0,521;Q2;102;172;266;5511;424;247;1,68;32,04;44,14;0;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Pediatrics, Perinatology and Child Health (Q2); Developmental Neuroscience (Q3); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +11420;21100438196;"CIS Iron and Steel Review";journal;"24141089, 20720815";"Ore and Metals Publishing house";No;No;0,521;Q2;20;37;113;902;211;113;2,33;24,38;40,57;0;Russian Federation;Eastern Europe;"Ore and Metals Publishing house";"2014-2025";"Industrial and Manufacturing Engineering (Q2); Metals and Alloys (Q2)";"Engineering; Materials Science" +11421;19400158815;"Communications in Information Literacy";journal;"19335954";"Communications in Information Literacy";Yes;Yes;0,521;Q2;26;8;43;278;55;39;1,03;34,75;83,33;0;United States;Northern America;"Communications in Information Literacy";"2009-2025";"Education (Q2); Library and Information Sciences (Q2); E-learning (Q3)";"Social Sciences" +11422;20623;"Fire and Materials";journal;"03080501, 10991018";"John Wiley and Sons Ltd";No;No;0,521;Q2;76;92;244;3907;672;239;3,01;42,47;31,88;3;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1976, 1978-1989, 1991-2026";"Ceramics and Composites (Q2); Chemistry (miscellaneous) (Q2); Electronic, Optical and Magnetic Materials (Q2); Metals and Alloys (Q2); Polymers and Plastics (Q2)";"Chemistry; Materials Science" +11423;19700175021;"Interdisciplinary Perspectives on Infectious Diseases";journal;"16877098, 1687708X";"John Wiley and Sons Ltd";Yes;No;0,521;Q2;40;27;76;1669;179;76;2,60;61,81;40,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Parasitology (Q2); Infectious Diseases (Q3); Microbiology (Q3); Microbiology (medical) (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine" +11424;15593;"Journal of Asian and African Studies";journal;"00219096, 17452538";"SAGE Publications Ltd";No;No;0,521;Q2;39;438;336;24518;743;333;2,26;55,98;33,10;12;United Kingdom;Western Europe;"SAGE Publications Ltd";"1966-2026";"Development (Q2); Geography, Planning and Development (Q2)";"Social Sciences" +11425;12725;"Journal of Coatings Technology and Research";journal;"19459645, 19353804";"Springer";No;No;0,521;Q2;63;165;447;8170;1650;445;3,46;49,52;38,70;1;United States;Northern America;"Springer";"2004-2026";"Chemistry (miscellaneous) (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2); Colloid and Surface Chemistry (Q3)";"Chemical Engineering; Chemistry; Materials Science; Physics and Astronomy" +11426;19054;"Military Medicine";journal;"1930613X, 00264075";"Oxford University Press";No;No;0,521;Q2;88;579;1682;13919;2377;1622;1,29;24,04;43,85;6;United States;Northern America;"Oxford University Press";"1954-2026";"Public Health, Environmental and Occupational Health (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +11427;21100463845;"Obesity Medicine";journal;"24518476";"Elsevier Ltd";No;No;0,521;Q2;33;90;162;5853;326;153;2,36;65,03;49,04;1;United Kingdom;Western Europe;"Elsevier Ltd";"2016-2026";"Public Health, Environmental and Occupational Health (Q2); Surgery (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3); Internal Medicine (Q3); Nutrition and Dietetics (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +11428;21100851416;"Pacific Accounting Review";journal;"20415494, 01140582";"Emerald Group Publishing Ltd.";No;No;0,521;Q2;40;59;96;3951;345;94;2,84;66,97;45,32;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1997, 1999-2026";"Accounting (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +11429;17967;"Strain";journal;"14751305, 00392103";"Wiley-Blackwell Publishing Ltd";No;No;0,521;Q2;61;34;65;1647;166;65;2,34;48,44;20,29;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1965-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +11430;21101090592;"Current Research in Physiology";journal;"26659441";"Elsevier B.V.";Yes;No;0,521;Q3;15;38;84;2610;169;83;2,53;68,68;46,55;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Physiology (Q3); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11431;21100434603;"International Journal of Hepatology";journal;"20903448, 20903456";"John Wiley and Sons Ltd";Yes;No;0,521;Q3;24;27;31;1137;47;31;1,40;42,11;42,48;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2026";"Hepatology (Q3)";"Medicine" +11432;21101302943;"Journal of Mood and Anxiety Disorders";journal;"29500044";"Elsevier B.V.";Yes;No;0,521;Q3;5;50;39;2945;69;39;1,77;58,90;54,10;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +11433;21101021485;"Therapeutic Advances in Gastrointestinal Endoscopy";journal;"26317745";"SAGE Publications Ltd";Yes;No;0,521;Q3;22;13;39;497;76;39;1,19;38,23;38,54;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2019-2026";"Gastroenterology (Q3)";"Medicine" +11434;21100400853;"Translational and Clinical Pharmacology";journal;"22890882, 23835427";"Korean Society Clinical Pharmacology and Therapeutics";Yes;No;0,521;Q3;18;21;64;458;150;61;2,63;21,81;43,59;1;South Korea;Asiatic Region;"Korean Society Clinical Pharmacology and Therapeutics";"2014-2025";"Pharmacology (medical) (Q3)";"Medicine" +11435;21100840730;"Critical Philosophy of Race";journal;"21658692, 21658684";"Penn State University Press";No;No;0,520;Q1;15;13;48;862;75;44;1,12;66,31;27,27;0;United States;Northern America;"Penn State University Press";"2013-2025";"Anthropology (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +11436;28238;"JOGNN - Journal of Obstetric, Gynecologic, and Neonatal Nursing";journal;"08842175, 15526909";"Elsevier B.V.";No;No;0,520;Q1;91;77;221;2897;371;194;1,53;37,62;82,11;1;United Kingdom;Western Europe;"Elsevier B.V.";"1972-2026";"Maternity and Midwifery (Q1); Critical Care Nursing (Q2); Pediatrics (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +11437;15982;"Journal of Medicine and Philosophy (United Kingdom)";journal;"03605310, 17445019";"Oxford University Press";No;No;0,520;Q1;65;36;143;2093;265;142;2,14;58,14;38,60;0;United Kingdom;Western Europe;"Oxford University Press";"1976-2025";"Philosophy (Q1); Issues, Ethics and Legal Aspects (Q2); Medicine (miscellaneous) (Q3)";"Arts and Humanities; Medicine; Nursing" +11438;21100456197;"Multicultural Education Review";journal;"23770031, 2005615X";"Taylor and Francis Ltd.";No;No;0,520;Q1;21;25;48;1403;85;47;1,25;56,12;51,92;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2013, 2015-2026";"Anthropology (Q1); Education (Q2)";"Social Sciences" +11439;16753;"Acta Biochimica Polonica";journal;"1734154X, 0001527X";"Frontiers Media SA";Yes;No;0,520;Q2;95;23;273;1604;609;273;2,40;69,74;62,86;0;Poland;Eastern Europe;"Frontiers Media SA";"1955-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology" +11440;21100407950;"Advanced Optical Technologies";journal;"21928584, 21928576";"Frontiers Media SA";Yes;No;0,520;Q2;34;11;37;813;96;34;2,95;73,91;21,43;0;Switzerland;Western Europe;"Frontiers Media SA";"2012-2026";"Atomic and Molecular Physics, and Optics (Q2); Electronic, Optical and Magnetic Materials (Q2); Instrumentation (Q2)";"Materials Science; Physics and Astronomy" +11441;21101311319;"Advances in Computational Science and Engineering";journal;"28371739";"American Institute of Mathematical Sciences";No;No;0,520;Q2;6;23;39;1146;100;36;2,56;49,83;13,43;0;United States;Northern America;"American Institute of Mathematical Sciences";"2023-2025";"Computational Mathematics (Q2); Modeling and Simulation (Q2)";"Mathematics" +11442;19400158591;"Applied Geomatics";journal;"1866928X, 18669298";"Springer Verlag";No;No;0,520;Q2;41;47;200;2763;655;198;3,51;58,79;26,59;1;Germany;Western Europe;"Springer Verlag";"2009-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Engineering; Environmental Science; Social Sciences" +11443;19700175585;"Desalination and Water Treatment";journal;"19443994, 19443986";"Elsevier B.V.";Yes;No;0,520;Q2;96;678;2824;43760;9261;2819;4,05;64,54;38,62;0;United States;Northern America;"Elsevier B.V.";"2009-2026";"Ocean Engineering (Q2); Pollution (Q2); Water Science and Technology (Q2)";"Engineering; Environmental Science" +11444;21101091646;"Electric Power Engineering Technology";journal;"20963203";"";Yes;Yes;0,520;Q2;23;109;477;3671;1153;474;2,96;33,68;30,67;0;China;Asiatic Region;"";"2019-2025";"Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2)";"Energy; Engineering" +11445;21100826272;"European Zoological Journal";journal;"24750263";"Taylor and Francis Ltd.";Yes;No;0,520;Q2;51;113;236;6544;449;225;2,02;57,91;43,21;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +11446;21101263036;"Franklin Open";journal;"27731863, 27731871";"Elsevier B.V.";Yes;No;0,520;Q2;14;239;162;10613;628;161;3,96;44,41;23,44;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +11447;21101017705;"Frontiers in Mechanical Engineering";journal;"22973079";"Frontiers Media SA";Yes;No;0,520;Q2;37;137;373;5052;1338;354;3,66;36,88;24,83;0;Switzerland;Western Europe;"Frontiers Media SA";"2015-2026";"Computer Science Applications (Q2); Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)";"Computer Science; Engineering; Materials Science" +11448;29072;"Gerontology and Geriatrics Education";journal;"02701960, 15453847";"Routledge";No;No;0,520;Q2;34;76;142;2939;284;139;2,05;38,67;72,06;0;United States;Northern America;"Routledge";"1980-2026";"Education (Q2); Geriatrics and Gerontology (Q3)";"Medicine; Social Sciences" +11449;19900192156;"Journal of Hazardous, Toxic, and Radioactive Waste";journal;"21535493, 21535515";"American Society of Civil Engineers (ASCE)";No;No;0,520;Q2;48;58;179;3674;550;178;3,07;63,34;35,06;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"2011-2026";"Chemical Engineering (miscellaneous) (Q2); Environmental Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2); Environmental Chemistry (Q3)";"Chemical Engineering; Earth and Planetary Sciences; Environmental Science" +11450;20100195042;"Journal of Reproduction and Infertility";journal;"22285482, 2251676X";"Avicenna Research Institute";No;No;0,520;Q2;38;29;123;819;233;110;1,76;28,24;59,84;0;Iran;Middle East;"Avicenna Research Institute";"2011-2025";"Reproductive Medicine (Q2)";"Medicine" +11451;6000177137;"New Perspectives";journal;"23368268, 2336825X";"Institute of International Relations";No;No;0,520;Q2;18;23;77;1183;113;59;1,72;51,43;28,13;0;Czech Republic;Eastern Europe;"Institute of International Relations";"2015-2026";"Political Science and International Relations (Q2)";"Social Sciences" +11452;5100154603;"Opiniao Publica";journal;"01046276, 18070191";"Universidade Estadual de Campinas UNICAMP";Yes;Yes;0,520;Q2;25;19;78;1118;82;78;0,90;58,84;54,05;0;Brazil;Latin America;"Universidade Estadual de Campinas UNICAMP";"2006-2026";"Sociology and Political Science (Q2)";"Social Sciences" +11453;97647;"Palaontologische Zeitschrift";journal;"18676812, 00310220";"Springer Verlag";No;No;0,520;Q2;38;51;134;4138;219;132;1,58;81,14;22,22;0;Germany;Western Europe;"Springer Verlag";"1914-1916, 1921-1924, 1926-1942, 1944, 1951-2026";"Paleontology (Q2)";"Earth and Planetary Sciences" +11454;13441;"Psychologica Belgica";journal;"00332879, 2054670X";"Ubiquity Press";Yes;No;0,520;Q2;44;12;44;805;112;43;2,04;67,08;68,75;0;United Kingdom;Western Europe;"Ubiquity Press";"1975-2025";"Psychology (miscellaneous) (Q2)";"Psychology" +11455;21100923470;"Safety";journal;"2313576X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,520;Q2;30;125;281;7064;821;280;2,96;56,51;36,88;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2025";"Public Health, Environmental and Occupational Health (Q2); Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering; Medicine; Social Sciences" +11456;21100205763;"Systematic and Applied Acarology";journal;"13621971";"Systematic and Applied Acarology Society";No;No;0,520;Q2;32;108;332;4376;411;319;1,21;40,52;29,96;0;Australia;Pacific Region;"Systematic and Applied Acarology Society";"2000, 2005, 2008, 2010-2025";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11457;22081;"Cytogenetic and Genome Research";journal;"14248581, 1424859X";"S. Karger AG";No;No;0,520;Q3;100;57;122;2792;214;121;1,85;48,98;54,09;0;Switzerland;Western Europe;"S. Karger AG";"1962-1972, 2002-2026";"Genetics (Q3); Genetics (clinical) (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11458;100147018;"Proceedings of the International Symposium on Power Semiconductor Devices and ICs";conference and proceedings;"10636854";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,520;-;57;180;337;2271;624;331;1,86;12,62;22,89;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992, 2005-2025";"Engineering (miscellaneous)";"Engineering" +11459;20195;"Business History";journal;"17437938, 00076791";"Taylor and Francis Ltd.";No;No;0,519;Q1;48;129;230;10771;396;221;1,89;83,50;23,56;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1958-2026";"History (Q1); Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2)";"Arts and Humanities; Business, Management and Accounting" +11460;21100218134;"Jezyk Polski";journal;"00216941";"Towarzystwo Milosnikow Jezyka Polskiego";No;No;0,519;Q1;8;35;110;1054;32;100;0,31;30,11;61,54;0;Poland;Eastern Europe;"Towarzystwo Milosnikow Jezyka Polskiego";"2012-2025";"Linguistics and Language (Q1)";"Social Sciences" +11461;21101146405;"Journal of Human Rights, Culture and Legal System";journal;"28072812, 28072979";"Lembaga Contrarius Indonesia";Yes;No;0,519;Q1;17;35;79;2661;302;79;4,13;76,03;20,29;1;Indonesia;Asiatic Region;"Lembaga Contrarius Indonesia";"2021-2026";"Law (Q1); Environmental Science (miscellaneous) (Q2); Political Science and International Relations (Q2); Public Administration (Q2)";"Environmental Science; Social Sciences" +11462;21100898700;"Journal of Human Trafficking";journal;"23322705, 23322713";"Taylor and Francis Ltd.";No;No;0,519;Q1;28;84;176;4602;376;161;2,09;54,79;71,05;5;United States;Northern America;"Taylor and Francis Ltd.";"2015-2026";"Anthropology (Q1); Law (Q1); Demography (Q2); Sociology and Political Science (Q2); Transportation (Q2)";"Social Sciences" +11463;21101047675;"Linguistica Antverpiensia, New Series – Themes in Translation Studies";journal;"03042294, 22955739";"Department of Applied Linguistics, Translators and Interpreters, University of Antwerp";No;No;0,519;Q1;30;8;33;519;56;33;2,18;64,88;26,32;0;Belgium;Western Europe;"Department of Applied Linguistics, Translators and Interpreters, University of Antwerp";"2002-2025";"Linguistics and Language (Q1)";"Social Sciences" +11464;24078;"Acarologia";journal;"0044586X, 21077207";"Les Amis d'Acarologia";Yes;Yes;0,519;Q2;30;85;271;3884;318;269;1,25;45,69;30,89;0;France;Western Europe;"Les Amis d'Acarologia";"1965-1985, 1987, 1994-2008, 2010-2026";"Insect Science (Q2)";"Agricultural and Biological Sciences" +11465;4400151402;"Advances in Geosciences";journal;"16807340, 16807359";"Copernicus Publications";Yes;No;0,519;Q2;52;21;69;830;110;69;1,56;39,52;28,30;0;Germany;Western Europe;"Copernicus Publications";"2003, 2005-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Space and Planetary Science (Q3)";"Earth and Planetary Sciences" +11466;12082;"Australian Journal of Psychology";journal;"00049530, 17429536";"Routledge";Yes;No;0,519;Q2;59;41;82;2351;185;82;1,88;57,34;74,53;0;United States;Northern America;"Routledge";"1949-2026";"Psychology (miscellaneous) (Q2)";"Psychology" +11467;21100200806;"BMC Proceedings";journal;"17536561";"BioMed Central Ltd";Yes;No;0,519;Q2;29;27;41;781;65;34;1,58;28,93;54,92;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2009, 2011-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11468;27626;"Contemporary Nurse";journal;"10376178";"Taylor and Francis Ltd.";No;No;0,519;Q2;57;77;142;2523;320;109;1,88;32,77;76,31;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +11469;21101089657;"Drone Systems and Applications";journal;"25644939";"Canadian Science Publishing";Yes;No;0,519;Q2;34;23;87;876;305;81;4,16;38,09;23,64;0;Canada;Northern America;"Canadian Science Publishing";"2021-2026";"Aerospace Engineering (Q2); Automotive Engineering (Q2); Computer Science Applications (Q2); Control and Optimization (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering; Mathematics" +11470;21100786317;"Frontiers in Energy Research";journal;"2296598X";"Frontiers Media SA";Yes;No;0,519;Q2;87;319;4167;11511;11924;3959;2,61;36,08;30,53;2;Switzerland;Western Europe;"Frontiers Media SA";"2013-2026";"Economics and Econometrics (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Economics, Econometrics and Finance; Energy" +11471;13338;"Health Care Analysis";journal;"15733394, 10653058";"Springer Netherlands";No;No;0,519;Q2;48;55;59;3311;113;59;1,38;60,20;44,21;2;Netherlands;Western Europe;"Springer Netherlands";"1993-2026";"Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2); Health Policy (Q3)";"Medicine; Nursing; Social Sciences" +11472;21101188401;"IEEE Journal on Miniaturization for Air and Space Systems";journal;"25763164";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,519;Q2;18;41;111;1399;315;111;3,04;34,12;29,25;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Aerospace Engineering (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Transportation (Q2)";"Engineering; Materials Science; Social Sciences" +11473;21100888788;"Innovative Infrastructure Solutions";journal;"23644176, 23644184";"Springer International Publishing AG";No;No;0,519;Q2;42;578;1185;34397;3951;1184;3,36;59,51;22,29;0;Switzerland;Western Europe;"Springer International Publishing AG";"2016-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Engineering (miscellaneous) (Q2); Environmental Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering; Environmental Science" +11474;21100870584;"International Journal of School and Educational Psychology";journal;"21683603, 21683611";"Taylor and Francis Ltd.";No;No;0,519;Q2;27;20;85;1242;171;85;1,78;62,10;64,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +11475;90549;"Landscape Research";journal;"14699710, 01426397";"Routledge";No;No;0,519;Q2;67;172;224;8102;478;211;2,08;47,10;51,42;0;United Kingdom;Western Europe;"Routledge";"1970, 1972-2026";"Environmental Science (miscellaneous) (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)";"Environmental Science; Social Sciences" +11476;21101111779;"Laparoscopic, Endoscopic, and Robotic Surgery";journal;"24689009";"KeAi Communications Co.";Yes;Yes;0,519;Q2;11;42;88;1448;199;78;2,46;34,48;47,65;0;China;Asiatic Region;"KeAi Communications Co.";"2018-2026";"Surgery (Q2)";"Medicine" +11477;27302;"Materials Transactions";journal;"13459678, 13475320";"Japan Institute of Metals (JIM)";Yes;No;0,519;Q2;124;203;815;6806;1389;801;1,88;33,53;16,19;0;Japan;Asiatic Region;"Japan Institute of Metals (JIM)";"1993, 2001-2026";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +11478;28835;"Nursing Education Perspectives";journal;"15365026";"Lippincott Williams and Wilkins Ltd.";No;No;0,519;Q2;63;178;430;2302;621;381;1,39;12,93;86,81;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2002-2026";"Education (Q2); Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Nursing; Social Sciences" +11479;12911;"Orthopedics";journal;"19382367, 01477447";"Slack Incorporated";No;No;0,519;Q2;85;91;349;2684;524;347;1,49;29,49;22,15;0;United States;Northern America;"Slack Incorporated";"1978-2026";"Surgery (Q2); Orthopedics and Sports Medicine (Q3)";"Medicine" +11480;19600157910;"Palaeobiodiversity and Palaeoenvironments";journal;"18671608, 18671594";"Springer Science and Business Media Deutschland GmbH";No;No;0,519;Q2;42;62;130;5252;201;124;1,64;84,71;28,57;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2010-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Geology (Q2); Paleontology (Q2); Global and Planetary Change (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +11481;12600154735;"Pediatrics and Neonatology";journal;"18759572, 22121692";"Elsevier (Singapore) Pte Ltd";Yes;Yes;0,519;Q2;58;182;433;4424;610;325;1,40;24,31;44,01;0;Singapore;Asiatic Region;"Elsevier (Singapore) Pte Ltd";"2008-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +11482;22212;"Scientia Pharmaceutica";journal;"22180532, 00368709";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,519;Q2;61;62;192;4628;668;192;3,54;74,65;44,51;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"1949, 1960-1961, 1973-2025";"Pharmaceutical Science (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +11483;22074;"Current Genetics";journal;"01728083, 14320983";"Springer Science and Business Media Deutschland GmbH";No;No;0,519;Q3;98;30;89;2073;171;88;1,73;69,10;40,26;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1979-2025";"Genetics (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11484;20710;"DARU, Journal of Pharmaceutical Sciences";journal;"15608115, 20082231";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,519;Q3;68;34;121;1816;395;119;2,72;53,41;44,25;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2000-2026";"Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +11485;24054;"Communication Education";journal;"03634523, 14795795";"Routledge";No;No;0,518;Q1;81;34;126;1552;226;110;2,08;45,65;56,82;0;United Kingdom;Western Europe;"Routledge";"1976-2026";"Linguistics and Language (Q1); Communication (Q2); Education (Q2)";"Social Sciences" +11486;5000158307;"Musculoskeletal Care";journal;"14782189";"Wiley-Blackwell";No;No;0,518;Q1;40;150;407;5691;733;406;1,56;37,94;53,59;2;United States;Northern America;"Wiley-Blackwell";"2003, 2006-2026";"Chiropractics (Q1); Nursing (miscellaneous) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3); Rheumatology (Q3)";"Health Professions; Medicine; Nursing" +11487;21101307596;"Aquaculture Journal";journal;"26739496";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,518;Q2;9;28;60;1664;181;59;2,71;59,43;36,64;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Aquatic Science (Q2)";"Agricultural and Biological Sciences" +11488;21100902636;"Behavioral Science and Policy";journal;"23794607, 23794615";"SAGE Publications Inc.";No;No;0,518;Q2;16;7;37;439;56;30;1,78;62,71;45,00;0;United States;Northern America;"SAGE Publications Inc.";"2015, 2017-2025";"Development (Q2); Public Health, Environmental and Occupational Health (Q2); Behavioral Neuroscience (Q3); Human-Computer Interaction (Q3)";"Computer Science; Medicine; Neuroscience; Social Sciences" +11489;20064;"Biological and Pharmaceutical Bulletin";journal;"13475215, 09186158";"Pharmaceutical Society of Japan";No;No;0,518;Q2;143;242;781;8847;1503;774;1,83;36,56;30,28;0;Japan;Asiatic Region;"Pharmaceutical Society of Japan";"1993-2026";"Pharmaceutical Science (Q2); Medicine (miscellaneous) (Q3); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +11490;21101304520;"Blood Vessels, Thrombosis and Hemostasis";journal;"29503272";"Elsevier B.V.";Yes;No;0,518;Q2;3;77;29;2897;37;29;1,28;37,62;44,26;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Cardiology and Cardiovascular Medicine (Q2); Surgery (Q2); Hematology (Q3); Oncology (Q3)";"Medicine" +11491;21101143774;"Chemical Review and Letters";journal;"26767279, 26454947";"";Yes;Yes;0,518;Q2;23;108;159;5649;779;158;4,64;52,31;41,88;0;Iran;Middle East;"";"2019-2026";"Chemistry (miscellaneous) (Q2); Inorganic Chemistry (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry" +11492;14118;"Development Southern Africa";journal;"14703637, 0376835X";"Routledge";No;No;0,518;Q2;59;51;202;2655;477;200;2,06;52,06;58,04;0;United Kingdom;Western Europe;"Routledge";"1984-2026";"Development (Q2); Geography, Planning and Development (Q2)";"Social Sciences" +11493;16064;"East European Politics and Societies";journal;"15338371, 08883254";"SAGE Publications Inc.";No;No;0,518;Q2;54;65;186;4285;288;180;1,27;65,92;53,54;0;United States;Northern America;"SAGE Publications Inc.";"1986-2026";"Sociology and Political Science (Q2)";"Social Sciences" +11494;21101131055;"European Journal of Breast Health";journal;"25870831";"Galenos Publishing House";Yes;No;0,518;Q2;21;58;147;1525;276;140;1,99;26,29;47,81;0;Turkey;Middle East;"Galenos Publishing House";"2019-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Surgery (Q2); Internal Medicine (Q3); Oncology (Q3)";"Medicine" +11495;19700174683;"International Journal for Numerical Methods in Biomedical Engineering";journal;"20407947, 20407939";"Wiley-Blackwell";No;No;0,518;Q2;80;136;321;7613;897;318;2,54;55,98;26,90;0;United States;Northern America;"Wiley-Blackwell";"2010-2026";"Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Modeling and Simulation (Q2); Software (Q2); Biomedical Engineering (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Engineering; Mathematics" +11496;21100228023;"Journal of Commutative Algebra";journal;"19390807, 19392346";"Rocky Mountain Mathematics Consortium";No;No;0,518;Q2;18;34;105;620;57;105;0,51;18,24;2,17;0;United States;Northern America;"Rocky Mountain Mathematics Consortium";"2009-2025";"Algebra and Number Theory (Q2)";"Mathematics" +11497;21100848471;"Journal of Experimental Zoology Part A: Ecological and Integrative Physiology";journal;"24715646, 24715638";"John Wiley & Sons Inc.";No;No;0,518;Q2;32;102;284;7152;558;278;1,72;70,12;43,96;1;United States;Northern America;"John Wiley & Sons Inc.";"2017-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3); Molecular Biology (Q3); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +11498;15915;"Journal of Health Care for the Poor and Underserved";journal;"10492089, 15486869";"Johns Hopkins University Press";No;No;0,518;Q2;80;116;423;4239;546;388;1,16;36,54;65,34;2;United States;Northern America;"Johns Hopkins University Press";"1990-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +11499;21100921058;"Polymer-Plastics Technology and Materials";journal;"2574089X, 25740881";"Taylor and Francis Ltd.";No;No;0,518;Q2;83;140;419;13215;1657;418;4,44;94,39;41,60;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2026";"Chemical Engineering (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)";"Chemical Engineering; Materials Science" +11500;26308;"Quarterly Journal of Mathematics";journal;"00335606, 14643847";"Oxford University Press";No;No;0,518;Q2;38;56;181;1447;136;181;0,75;25,84;18,39;0;United Kingdom;Western Europe;"Oxford University Press";"1930-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11501;15281;"Sport Psychologist";journal;"15432793, 08884781";"Human Kinetics Publishers Inc.";No;No;0,518;Q3;88;25;80;1417;139;80;1,43;56,68;49,48;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1989, 1991-1992, 1996-2026";"Applied Psychology (Q3); Sports Science (Q3)";"Health Professions; Psychology" +11502;21100790525;"European Competition Journal";journal;"17441056, 17578396";"Taylor and Francis Ltd.";No;No;0,517;Q1;17;37;73;1567;82;72;1,17;42,35;31,48;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005, 2012, 2014-2025";"Law (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Social Sciences" +11503;19700181331;"International Journal of Children's Spirituality";journal;"14698455, 1364436X";"Routledge";No;No;0,517;Q1;27;21;27;1064;54;26;2,06;50,67;72,09;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Philosophy (Q1); Religious Studies (Q1); Education (Q2); Developmental and Educational Psychology (Q3)";"Arts and Humanities; Psychology; Social Sciences" +11504;16750;"Journal of Neurolinguistics";journal;"18738052, 09116044";"Elsevier Ltd";No;No;0,517;Q1;70;43;101;3649;185;101;1,72;84,86;56,52;0;United Kingdom;Western Europe;"Elsevier Ltd";"1985-1986, 1988-1992, 1994-2026";"Arts and Humanities (miscellaneous) (Q1); Linguistics and Language (Q1); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3)";"Arts and Humanities; Neuroscience; Psychology; Social Sciences" +11505;21101096461;"Women's Health Reports";journal;"26884844";"Mary Ann Liebert Inc.";Yes;No;0,517;Q1;12;120;236;4371;377;233;1,44;36,43;66,72;0;United States;Northern America;"Mary Ann Liebert Inc.";"2020-2025";"Advanced and Specialized Nursing (Q1); Maternity and Midwifery (Q2); Obstetrics and Gynecology (Q2); Public Health, Environmental and Occupational Health (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +11506;19900192158;"Asian Journal of Technology Innovation";journal;"19761597, 21586721";"Routledge";No;No;0,517;Q2;30;72;93;4446;304;93;2,68;61,75;36,09;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Economics and Econometrics (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +11507;130113;"Cognitive Processing";journal;"16124782, 16124790";"Springer Science and Business Media Deutschland GmbH";No;No;0,517;Q2;61;81;161;5422;267;158;1,49;66,94;49,81;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2026";"Artificial Intelligence (Q2); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Medicine (miscellaneous) (Q3)";"Computer Science; Medicine; Neuroscience; Psychology" +11508;21101228214;"EJNMMI Reports";journal;"3005074X";"Springer Nature";Yes;No;0,517;Q2;21;42;107;1069;173;107;1,79;25,45;32,09;0;Switzerland;Western Europe;"Springer Nature";"2024-2026";"Computer Science (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Biophysics (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Medicine" +11509;101700;"European Journal of Wildlife Research";journal;"16124642";"Springer Verlag";No;No;0,517;Q2;65;148;313;9251;602;312;1,80;62,51;36,48;1;Germany;Western Europe;"Springer Verlag";"1996-2002, 2004-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11510;20878;"Health Education Journal";journal;"00178969, 17488176";"SAGE Publications Ltd";No;No;0,517;Q2;47;79;222;3132;417;218;2,01;39,65;68,53;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1943-2026";"Education (Q2); Health (social science) (Q2)";"Social Sciences" +11511;29499;"International Journal of Developmental Biology";journal;"16963547, 02146282";"UPV/EHU Press";No;No;0,517;Q2;123;15;59;531;102;57;1,98;35,40;55,68;0;Spain;Western Europe;"UPV/EHU Press";"1989-2025";"Embryology (Q2); Developmental Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11512;29232;"International Journal of Occupational Safety and Ergonomics";journal;"10803548, 23769130";"Taylor and Francis Ltd.";No;No;0,517;Q2;56;167;535;9014;1434;535;2,44;53,98;42,14;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Public Health, Environmental and Occupational Health (Q2); Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering; Medicine; Social Sciences" +11513;145625;"Ionics";journal;"09477047, 18620760";"Springer Science and Business Media Deutschland GmbH";No;No;0,517;Q2;86;936;1599;53356;5251;1599;3,43;57,00;34,50;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1995-2026";"Chemical Engineering (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Chemical Engineering; Engineering; Materials Science; Physics and Astronomy" +11514;21100904390;"Journal of Education and Health Promotion";journal;"22779531, 23196440";"Wolters Kluwer Medknow Publications";Yes;No;0,517;Q2;38;553;1303;18227;2565;1273;1,79;32,96;51,77;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2026";"Education (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +11515;27604;"Journal of Obstetrics and Gynaecology";journal;"13646893, 01443615";"Taylor and Francis Ltd.";Yes;No;0,517;Q2;63;80;878;2411;1435;853;2,23;30,14;57,10;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1945, 1980-2026";"Obstetrics and Gynecology (Q2)";"Medicine" +11516;21101061412;"Journal of the Global Power and Propulsion Society";journal;"25153080";"Global Power and Propulsion Society";Yes;No;0,517;Q2;14;27;88;755;184;87;2,27;27,96;12,00;0;Switzerland;Western Europe;"Global Power and Propulsion Society";"2019-2026";"Aerospace Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +11517;17239;"Journal of Thoracic Imaging";journal;"08835993, 15360237";"Lippincott Williams and Wilkins";No;No;0,517;Q2;72;37;219;1293;333;207;1,39;34,95;39,47;0;United States;Northern America;"Lippincott Williams and Wilkins";"1985-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +11518;21101039813;"JTCVS Techniques";journal;"26662507";"Elsevier Inc.";Yes;No;0,517;Q2;23;300;871;2666;900;671;1,05;8,89;23,60;0;Netherlands;Western Europe;"Elsevier Inc.";"2020-2026";"Surgery (Q2); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +11519;11600153404;"Pure and Applied Mathematics Quarterly";journal;"15588599, 15588602";"International Press of Boston, Inc.";No;No;0,517;Q2;31;51;235;1603;184;217;0,79;31,43;14,29;0;United States;Northern America;"International Press of Boston, Inc.";"2006-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11520;4700153103;"Revista Brasileira de Ginecologia e Obstetricia";journal;"18069339, 01007203";"Federacao Brasileira das Sociedades de Ginecologia e Obstetricia";Yes;Yes;0,517;Q2;34;136;401;2986;687;340;1,34;21,96;58,80;0;Brazil;Latin America;"Federacao Brasileira das Sociedades de Ginecologia e Obstetricia";"2006-2025";"Obstetrics and Gynecology (Q2)";"Medicine" +11521;19900191853;"Seminars in Plastic Surgery";journal;"15360067, 15352188";"Thieme Medical Publishers, Inc.";No;No;0,517;Q2;50;46;131;1534;229;107;1,62;33,35;36,59;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"2004-2005, 2010-2026";"Surgery (Q2)";"Medicine" +11522;29411;"Transactions of the American Fisheries Society";journal;"15488659, 00028487";"Oxford University Press";No;No;0,517;Q2;103;54;148;3854;253;148;1,52;71,37;26,98;1;United States;Northern America;"Oxford University Press";"1872-1876, 1878-1894, 1896-1908, 1910-1935, 1937-1943, 1945, 1947-1955, 1957-2026";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +11523;21101079112;"Endocrine and Metabolic Science";journal;"26663961";"Elsevier B.V.";Yes;No;0,517;Q3;13;73;86;3771;184;86;2,19;51,66;47,95;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11524;19105;"Agricultural and Forest Entomology";journal;"14619555, 14619563";"Wiley-Blackwell Publishing Ltd";No;No;0,516;Q1;71;75;163;5576;357;163;2,28;74,35;31,00;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1999-2026";"Forestry (Q1); Agronomy and Crop Science (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +11525;12000154533;"Canadian Review of Sociology";journal;"17556171, 1755618X";"John Wiley & Sons Inc.";No;No;0,516;Q1;48;21;111;1464;212;102;1,48;69,71;54,29;0;United States;Northern America;"John Wiley & Sons Inc.";"1964-1995, 2008-2026";"Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +11526;21101021079;"Corpus Pragmatics";journal;"25099515";"Springer Science + Business Media";No;No;0,516;Q1;13;22;42;1070;69;41;1,48;48,64;53,49;0;Switzerland;Western Europe;"Springer Science + Business Media";"2017-2026";"Linguistics and Language (Q1); Computer Science Applications (Q2)";"Computer Science; Social Sciences" +11527;21100208060;"European Journal of Probation";journal;"20662203";"SAGE Publications Ltd";No;No;0,516;Q1;26;12;42;504;66;40;1,38;42,00;50,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2009-2026";"Law (Q1)";"Social Sciences" +11528;200147134;"First Monday";journal;"13960466";"";Yes;No;0,516;Q1;93;74;251;4383;615;248;2,94;59,23;49,31;0;United States;Northern America;"";"1996-2026";"Law (Q1); Computer Networks and Communications (Q2); Human-Computer Interaction (Q3)";"Computer Science; Social Sciences" +11529;4700152708;"International Journal of Prisoner Health";journal;"17449200, 17449219";"Emerald Publishing";No;No;0,516;Q1;31;0;91;0;176;88;2,09;0,00;0,00;0;United Kingdom;Western Europe;"Emerald Publishing";"2005-2009, 2011-2023";"Health Professions (miscellaneous) (Q1); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine" +11530;4700152785;"Journal of Intergenerational Relationships";journal;"15350770, 15350932";"Routledge";No;No;0,516;Q1;36;61;101;2579;226;101;1,92;42,28;75,81;2;United States;Northern America;"Routledge";"2003-2026";"Archeology (Q1); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Geriatrics and Gerontology (Q3); Life-span and Life-course Studies (Q3); Social Psychology (Q3)";"Medicine; Psychology; Social Sciences" +11531;11300153312;"Small-scale Forestry";journal;"18737617, 18737854";"Springer Science and Business Media B.V.";No;No;0,516;Q1;38;25;95;1679;233;94;2,61;67,16;27,47;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2007-2026";"Forestry (Q1)";"Agricultural and Biological Sciences" +11532;25206;"Archiv der Mathematik";journal;"0003889X, 14208938";"Springer International Publishing";Yes;No;0,516;Q2;50;124;381;1945;248;380;0,65;15,69;16,82;0;Switzerland;Western Europe;"Springer International Publishing";"1948-1949, 1952-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11533;21101314563;"Coasts";journal;"2673964X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,516;Q2;10;49;82;2915;186;82;2,17;59,49;33,69;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Environmental Science (miscellaneous) (Q2); Energy (miscellaneous) (Q3)";"Energy; Environmental Science" +11534;21101195979;"Interdisciplinary Cardiovascular and Thoracic Surgery";journal;"2753670X";"Oxford University Press";Yes;No;0,516;Q2;79;313;853;7549;1401;770;1,47;24,12;22,76;0;United Kingdom;Western Europe;"Oxford University Press";"2023-2026";"Cardiology and Cardiovascular Medicine (Q2); Surgery (Q2); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +11535;21100799507;"Journal of Audiology and Otology";journal;"23841621, 23841710";"Korean Audiological Society and Korean Otological Society";No;No;0,516;Q2;28;38;108;1028;191;107;1,89;27,05;44,27;0;South Korea;Asiatic Region;"Korean Audiological Society and Korean Otological Society";"2016-2026";"Otorhinolaryngology (Q2); Speech and Hearing (Q2); Sensory Systems (Q3)";"Health Professions; Medicine; Neuroscience" +11536;12100155919;"Journal of Financial Counseling and Planning";journal;"19477910, 10523073";"Springer Publishing Company";Yes;No;0,516;Q2;60;35;94;1654;250;91;2,48;47,26;60,26;0;United States;Northern America;"Springer Publishing Company";"1990-1991, 1993-2025";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +11537;15986;"Journal of Occupational and Environmental Medicine";journal;"10762752, 15365948";"Lippincott Williams and Wilkins";No;No;0,516;Q2;134;327;833;11337;1264;774;1,34;34,67;50,23;0;United States;Northern America;"Lippincott Williams and Wilkins";"1959, 1963, 1965-1970, 1980, 1988, 1990-1991, 1995-2026";"Public Health, Environmental and Occupational Health (Q2)";"Medicine" +11538;27846;"Marine and Freshwater Research";journal;"13231650, 14486059";"CSIRO Publishing";No;No;0,516;Q2;108;83;337;5876;591;334;1,76;70,80;36,22;0;Australia;Pacific Region;"CSIRO Publishing";"1948-2026";"Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Oceanography (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +11539;21100897004;"Medical Science Educator";journal;"21568650";"Springer New York";No;No;0,516;Q2;36;433;670;12499;1284;535;1,80;28,87;56,55;0;United States;Northern America;"Springer New York";"2011-2026";"Education (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +11540;21100872348;"Ocular Oncology and Pathology";journal;"22964681, 22964657";"S. Karger AG";No;No;0,516;Q2;25;40;87;973;181;82;1,72;24,33;42,50;0;Switzerland;Western Europe;"S. Karger AG";"2014-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +11541;144608;"Postepy Dermatologii i Alergologii";journal;"1642395X, 22990046";"Termedia Publishing House Ltd.";Yes;No;0,516;Q2;45;94;430;2835;737;350;1,55;30,16;63,00;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2005-2025";"Dermatology (Q2); Immunology and Allergy (Q3)";"Medicine" +11542;21100972601;"Process Integration and Optimization for Sustainability";journal;"25094246, 25094238";"Springer International Publishing";No;No;0,516;Q2;27;200;247;11354;877;241;3,54;56,77;28,01;0;Singapore;Asiatic Region;"Springer International Publishing";"2017-2026";"Chemical Engineering (miscellaneous) (Q2); Control and Systems Engineering (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Pollution (Q2); Waste Management and Disposal (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Chemical Engineering; Energy; Engineering; Environmental Science; Social Sciences" +11543;19498;"Veterinary Anaesthesia and Analgesia";journal;"14672995, 14672987";"Elsevier B.V.";No;No;0,516;Q2;71;139;280;3424;401;211;1,31;24,63;57,51;0;Netherlands;Western Europe;"Elsevier B.V.";"1970-1974, 1976-1978, 1980, 1982-1986, 1988-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +11544;21771;"AIDS Research and Human Retroviruses";journal;"19318405, 08892229";"Mary Ann Liebert Inc.";No;No;0,516;Q3;100;85;288;2724;412;282;1,32;32,05;52,57;0;United States;Northern America;"Mary Ann Liebert Inc.";"1987-2026";"Immunology (Q3); Infectious Diseases (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine" +11545;21100255433;"Applied Neuropsychology: Child";journal;"21622973, 21622965";"Taylor and Francis Ltd.";No;No;0,516;Q3;33;136;211;7952;440;210;1,57;58,47;59,51;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Developmental and Educational Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)";"Psychology" +11546;12645;"Clinical Obstetrics and Gynecology";journal;"00099201, 15325520";"Lippincott Williams and Wilkins";No;No;0,516;Q3;96;91;263;4071;412;240;1,25;44,74;63,30;0;United States;Northern America;"Lippincott Williams and Wilkins";"1958-1963, 1965-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +11547;19400158434;"Estonian Journal of Archaeology";journal;"17367484, 14062933";"Estonian Academy Publishers";Yes;No;0,515;Q1;16;6;28;721;31;27;1,19;120,17;64,29;0;Estonia;Eastern Europe;"Estonian Academy Publishers";"2008-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +11548;110220;"Human Ecology";journal;"15729915, 03007839";"Springer";No;No;0,515;Q1;90;88;252;5944;526;248;2,04;67,55;41,16;0;United States;Northern America;"Springer";"1972-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Ecology (Q2); Environmental Science (miscellaneous) (Q2); Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2); Sociology and Political Science (Q2); Health, Toxicology and Mutagenesis (Q3)";"Arts and Humanities; Environmental Science; Medicine; Social Sciences" +11549;21101096410;"Journal of Pentecostal and Charismatic Christianity";journal;"27691624";"Routledge";No;No;0,515;Q1;5;17;39;690;24;33;0,70;40,59;22,22;0;United States;Northern America;"Routledge";"2022-2026";"Religious Studies (Q1)";"Arts and Humanities" +11550;23697;"Science Progress";journal;"20477163, 00368504";"SAGE Publications Ltd";Yes;No;0,515;Q1;56;424;575;17707;1943;557;2,84;41,76;38,44;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1946-1949, 1955, 1957, 1960-1963, 1965-1972, 1974-1993, 1995-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +11551;4700152761;"Anesthesiology Clinics";journal;"22103538, 19322275";"W.B. Saunders";No;No;0,515;Q2;71;62;197;3964;368;161;1,44;63,94;37,21;0;United States;Northern America;"W.B. Saunders";"2007-2026";"Anesthesiology and Pain Medicine (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +11552;21100823214;"Canadian Geriatrics Journal";journal;"19258348";"Canadian Geriatrics Society";Yes;No;0,515;Q2;34;28;106;799;189;104;1,55;28,54;62,07;0;Canada;Northern America;"Canadian Geriatrics Society";"2011-2025";"Gerontology (Q2); Geriatrics and Gerontology (Q3)";"Medicine; Nursing" +11553;5600153399;"Communication Studies";journal;"17451035, 10510974";"Taylor and Francis Ltd.";Yes;No;0,515;Q2;61;62;132;3592;265;129;1,87;57,94;67,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Communication (Q2)";"Social Sciences" +11554;5700165206;"Complex Analysis and Operator Theory";journal;"16618262, 16618254";"Springer International Publishing";No;No;0,515;Q2;32;206;458;6121;469;458;1,02;29,71;26,36;0;Switzerland;Western Europe;"Springer International Publishing";"2007-2026";"Applied Mathematics (Q2); Computational Mathematics (Q2); Computational Theory and Mathematics (Q2)";"Computer Science; Mathematics" +11555;14864;"Cryobiology";journal;"00112240, 10902392";"Academic Press Inc.";No;No;0,515;Q2;101;136;288;6475;743;285;2,64;47,61;39,20;0;United States;Northern America;"Academic Press Inc.";"1964-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +11556;15628;"Folia Neuropathologica";journal;"16414640, 1509572X";"Termedia Publishing House Ltd.";Yes;No;0,515;Q2;47;42;146;1504;258;146;1,52;35,81;51,89;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"1994-2025";"Pathology and Forensic Medicine (Q2); Neurology (clinical) (Q3)";"Medicine" +11557;100147337;"Journal of Education and Work";journal;"13639080, 14699435";"Brill Academic Publishers";No;No;0,515;Q2;50;8;135;409;329;134;2,16;51,13;58,62;0;United Kingdom;Western Europe;"Brill Academic Publishers";"2005-2026";"Education (Q2); Organizational Behavior and Human Resource Management (Q2); Public Administration (Q2)";"Business, Management and Accounting; Social Sciences" +11558;23559;"Journal of Statistical Computation and Simulation";journal;"15635163, 00949655";"Taylor and Francis Ltd.";No;No;0,515;Q2;74;197;517;7246;843;517;1,56;36,78;32,04;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972-2026";"Applied Mathematics (Q2); Modeling and Simulation (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +11559;28593;"Journal of Turbulence";journal;"14685248";"Taylor and Francis Ltd.";No;No;0,515;Q2;68;25;79;1064;131;76;1,85;42,56;12,20;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Computational Mechanics (Q2); Condensed Matter Physics (Q2); Mechanics of Materials (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Engineering; Physics and Astronomy" +11560;29742;"Marine Geodesy";journal;"01490419, 1521060X";"Taylor and Francis Ltd.";No;No;0,515;Q2;60;37;81;1680;186;76;1,70;45,41;24,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-1990, 1992-2026";"Oceanography (Q2)";"Earth and Planetary Sciences" +11561;21101066160;"Mathematical Sciences";journal;"22517456, 20081359";"Springer Nature";No;No;0,515;Q2;31;0;132;0;291;132;2,60;0,00;0,00;0;Germany;Western Europe;"Springer Nature";"2012-2024";"Analysis (Q2); Applied Mathematics (Q2); Computer Science Applications (Q2); Information Systems (Q2); Numerical Analysis (Q2); Signal Processing (Q2); Statistics and Probability (Q2)";"Computer Science; Mathematics" +11562;21100248003;"National Remote Sensing Bulletin";journal;"10074619";"Science Press";No;No;0,515;Q2;44;232;638;14061;1777;637;2,60;60,61;37,68;0;China;Asiatic Region;"Science Press";"1999-2001, 2013-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2); Instrumentation (Q2)";"Earth and Planetary Sciences; Physics and Astronomy; Social Sciences" +11563;21101175298;"Research in Cold and Arid Regions";journal;"29497302, 20971583";"KeAi Communications Co.";No;No;0,515;Q2;14;73;106;3715;304;106;3,77;50,89;35,13;0;China;Asiatic Region;"KeAi Communications Co.";"2022-2026";"Earth-Surface Processes (Q2); Environmental Engineering (Q2); Environmental Science (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Environmental Science" +11564;19588;"Surgical and Radiologic Anatomy";journal;"09301038, 12798517";"Springer-Verlag Italia s.r.l.";No;No;0,515;Q2;80;250;662;6247;1074;638;1,67;24,99;31,15;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1986-2026";"Anatomy (Q2); Pathology and Forensic Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Surgery (Q2)";"Medicine" +11565;26619;"Symbolic Interaction";journal;"15338665, 01956086";"Wiley-Blackwell";No;No;0,515;Q2;65;52;74;3303;152;71;2,00;63,52;51,81;0;United States;Northern America;"Wiley-Blackwell";"1977-2026";"Communication (Q2); Education (Q2); Nursing (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Social Psychology (Q3)";"Nursing; Psychology; Social Sciences" +11566;27428;"Turkish Journal of Mathematics";journal;"13036149, 13000098";"TUBITAK";Yes;No;0,515;Q2;42;55;439;1410;500;439;1,15;25,64;37,72;0;Turkey;Middle East;"TUBITAK";"1995-2002, 2006-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11567;19377;"Water Supply";journal;"16069749, 16070798";"IWA Publishing";Yes;No;0,515;Q2;58;96;1165;4524;2840;1163;2,26;47,13;27,67;0;United Kingdom;Western Europe;"IWA Publishing";"2001-2026";"Water Science and Technology (Q2)";"Environmental Science" +11568;21100228102;"Anemia";journal;"20901267, 20901275";"John Wiley and Sons Ltd";Yes;No;0,515;Q3;37;22;27;821;75;27;2,47;37,32;44,83;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Hematology (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11569;21100197357;"IEEE-RAS International Conference on Humanoid Robots";conference and proceedings;"21640580, 21640572";"IEEE Computer Society";No;No;0,515;-;61;123;347;3811;658;344;1,75;30,98;14,62;0;United States;Northern America;"IEEE Computer Society";"2011-2012, 2014-2019, 2021-2025";"Artificial Intelligence; Computer Vision and Pattern Recognition; Electrical and Electronic Engineering; Hardware and Architecture; Human-Computer Interaction";"Computer Science; Engineering" +11570;21100228035;"Psychology in Russia: State of the Art";journal;"20746857";"Russian Psychological Society";Yes;Yes;0,514;Q1;19;37;105;1950;221;105;2,14;52,70;58,40;0;Russian Federation;Eastern Europe;"Russian Psychological Society";"2012-2025";"History and Philosophy of Science (Q1); Education (Q2); Psychology (miscellaneous) (Q2)";"Arts and Humanities; Psychology; Social Sciences" +11571;21101030459;"Advances in Medical Education and Practice";journal;"11797258";"Dove Medical Press Ltd";Yes;No;0,514;Q2;54;231;449;7380;920;393;1,89;31,95;47,27;0;United Kingdom;Western Europe;"Dove Medical Press Ltd";"2010-2026";"Education (Q2)";"Social Sciences" +11572;19603;"Advances in Parasitology";book series;"0065308X, 21636079";"Academic Press";No;No;0,514;Q2;109;14;41;3178;232;8;3,76;227,00;60,00;0;United States;Northern America;"Academic Press";"1963-1965, 1967-1980, 1982-1983, 1985-2025";"Parasitology (Q2); Medicine (miscellaneous) (Q3)";"Immunology and Microbiology; Medicine" +11573;25307;"Calcolo";journal;"11265434, 00080624";"Springer-Verlag Italia s.r.l.";No;No;0,514;Q2;43;47;177;1658;235;177;1,28;35,28;34,95;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1964-2026";"Algebra and Number Theory (Q2); Computational Mathematics (Q2)";"Mathematics" +11574;21101128260;"CivilEng";journal;"26734109";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,514;Q2;20;69;189;3626;573;188;3,00;52,55;20,15;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2026";"Civil and Structural Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering" +11575;19819;"Clinics in Sports Medicine";journal;"1556228X, 02785919";"W.B. Saunders";No;No;0,514;Q2;100;103;193;4429;345;156;1,76;43,00;31,60;0;United States;Northern America;"W.B. Saunders";"1982-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3); Sports Science (Q3)";"Health Professions; Medicine" +11576;21101077107;"Continuity in Education";journal;"26319179";"Ubiquity Press";Yes;Yes;0,514;Q2;10;8;29;590;65;29;2,00;73,75;85,19;0;United Kingdom;Western Europe;"Ubiquity Press";"2020-2026";"Education (Q2); Developmental and Educational Psychology (Q3); Physiology (medical) (Q3); Social Psychology (Q3)";"Medicine; Psychology; Social Sciences" +11577;25291;"Journal of Addictive Diseases";journal;"10550887, 15450848";"Taylor and Francis Ltd.";No;No;0,514;Q2;72;87;180;3038;274;165;1,56;34,92;47,18;1;United States;Northern America;"Taylor and Francis Ltd.";"1991-2018, 2020-2026";"Clinical Psychology (Q2); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +11578;5000158305;"Journal of Clinical and Experimental Hematopathology";journal;"18809952, 13464280";"Nihon Rinpa Monaikei Gakkai";Yes;No;0,514;Q2;37;49;127;1301;177;119;1,31;26,55;33,33;0;Japan;Asiatic Region;"Nihon Rinpa Monaikei Gakkai";"2006-2016, 2019-2025";"Pathophysiology (Q2); Hematology (Q3)";"Medicine; Nursing" +11579;16258;"Journal of Cold Regions Engineering - ASCE";journal;"0887381X, 19435495";"American Society of Civil Engineers (ASCE)";No;No;0,514;Q2;40;57;100;2103;209;97;1,88;36,89;25,48;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1987-2026";"Geotechnical Engineering and Engineering Geology (Q2); Industrial and Manufacturing Engineering (Q2)";"Earth and Planetary Sciences; Engineering" +11580;19700187628;"Teacher Educator";journal;"08878730, 19388101";"Taylor and Francis Ltd.";No;No;0,514;Q2;32;37;79;2117;163;74;1,80;57,22;64,84;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Education (Q2)";"Social Sciences" +11581;21101070068;"Turkish Archives of Pediatrics";journal;"27576256";"AVES";Yes;Yes;0,514;Q2;28;121;348;2918;520;245;1,59;24,12;60,31;0;Turkey;Middle East;"AVES";"2020-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +11582;17800156713;"Global Health Promotion";journal;"17579767, 17579759";"SAGE Publications Ltd";No;No;0,514;Q3;48;116;193;3660;307;137;1,59;31,55;63,96;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1993, 2006, 2008-2026";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +11583;25336;"Neurodegenerative Diseases";journal;"16602862, 16602854";"S. Karger AG";No;No;0,514;Q3;72;33;49;1864;92;44;1,97;56,48;49,09;0;Switzerland;Western Europe;"S. Karger AG";"2004-2025";"Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +11584;14009;"Psychology and Developing Societies";journal;"09730761, 09713336";"Sage Publications India Pvt. Ltd";No;No;0,514;Q3;28;6;37;298;72;36;1,64;49,67;63,64;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1989-2026";"Social Psychology (Q3)";"Psychology" +11585;28935;"History of Political Economy";journal;"15271919, 00182702";"Duke University Press";No;No;0,513;Q1;41;33;135;2917;106;120;0,64;88,39;17,78;2;United States;Northern America;"Duke University Press";"1986, 1996-2026";"History (Q1); Economics and Econometrics (Q2)";"Arts and Humanities; Economics, Econometrics and Finance" +11586;19700173011;"Modern Intellectual History";journal;"14792451, 14792443";"Cambridge University Press";No;No;0,513;Q1;32;48;168;6669;166;168;0,93;138,94;19,61;0;United Kingdom;Western Europe;"Cambridge University Press";"2004-2026";"Cultural Studies (Q1); History (Q1); Philosophy (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +11587;21101201901;"Bulletin of Geological Science and Technology";journal;"20968523";"";Yes;No;0,513;Q2;25;147;592;6966;1141;592;2,06;47,39;31,77;0;China;Asiatic Region;"";"2020-2026";"Computers in Earth Sciences (Q2); Geophysics (Q2); Geotechnical Engineering and Engineering Geology (Q2); Oceanography (Q2)";"Earth and Planetary Sciences" +11588;24364;"Computers, Materials and Continua";journal;"15462218, 15462226";"Tech Science Press";No;No;0,513;Q2;73;998;3361;44813;11570;3359;3,68;44,90;31,24;0;United States;Northern America;"Tech Science Press";"2004-2026";"Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Mechanics of Materials (Q2); Modeling and Simulation (Q2); Biomaterials (Q3)";"Computer Science; Engineering; Materials Science; Mathematics" +11589;21101333307;"European Journal of Management Studies";journal;"21834172, 26352648";"Emerald Publishing";Yes;No;0,513;Q2;9;17;47;1341;165;46;3,32;78,88;30,00;0;United Kingdom;Western Europe;"Emerald Publishing";"2022-2026";"Business, Management and Accounting (miscellaneous) (Q2); Strategy and Management (Q2); Marketing (Q3)";"Business, Management and Accounting" +11590;23641;"Gender, Technology and Development";journal;"09718524, 09730656";"Routledge";No;No;0,513;Q2;37;22;69;1326;184;68;1,71;60,27;62,50;0;United Kingdom;Western Europe;"Routledge";"1997-2026";"Development (Q2); Gender Studies (Q2)";"Social Sciences" +11591;19600157211;"IForest";journal;"19717458";"SISEF - Italian Society of Silviculture and Forest Ecology";Yes;Yes;0,513;Q2;44;44;149;2162;347;149;2,31;49,14;31,84;1;Italy;Western Europe;"SISEF - Italian Society of Silviculture and Forest Ecology";"2008-2026";"Ecology (Q2); Forestry (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11592;21101118500;"Journal of Chromatography Open";journal;"27723917";"Elsevier B.V.";Yes;No;0,513;Q2;17;86;164;4979;597;158;3,73;57,90;44,61;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Analytical Chemistry (Q2)";"Chemistry" +11593;21101023092;"Journal of Competitiveness";journal;"18041728, 1804171X";"Tomas Bata University in Zlín";Yes;No;0,513;Q2;45;55;127;3829;470;126;3,07;69,62;37,91;0;Czech Republic;Eastern Europe;"Tomas Bata University in Zlín";"2016-2025";"Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +11594;24357;"Journal of Experimental and Theoretical Artificial Intelligence";journal;"13623079, 0952813X";"Taylor and Francis Ltd.";No;No;0,513;Q2;58;67;190;3479;637;190;3,07;51,93;33,95;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Artificial Intelligence (Q2); Software (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +11595;23941;"Journal of Mathematical Chemistry";journal;"02599791, 15728897";"Springer Netherlands";No;No;0,513;Q2;76;98;344;3910;684;336;2,18;39,90;36,42;0;Netherlands;Western Europe;"Springer Netherlands";"1987-2026";"Applied Mathematics (Q2); Chemistry (miscellaneous) (Q2)";"Chemistry; Mathematics" +11596;17600155006;"KSCE Journal of Civil Engineering";journal;"12267988, 19763808";"Elsevier Inc.";Yes;No;0,513;Q2;74;248;1299;10323;3481;1296;2,60;41,63;26,92;3;United States;Northern America;"Elsevier Inc.";"1999, 2001-2003, 2006, 2008-2026";"Civil and Structural Engineering (Q2)";"Engineering" +11597;4000151803;"Near Surface Geophysics";journal;"15694445";"EAGE Publishing BV";No;No;0,513;Q2;56;35;122;1618;230;119;1,61;46,23;18,90;1;Netherlands;Western Europe;"EAGE Publishing BV";"2003-2026";"Geophysics (Q2)";"Earth and Planetary Sciences" +11598;17300154913;"Performance Improvement Quarterly";journal;"19378327, 08985952";"International Society for Performance Improvement";No;No;0,513;Q2;29;0;14;0;67;12;0,00;0,00;0,00;0;United States;Northern America;"International Society for Performance Improvement";"1988-1995, 2009-2022";"Education (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Social Sciences" +11599;21101079622;"Results in Optics";journal;"26669501";"Elsevier B.V.";Yes;No;0,513;Q2;31;164;531;6614;2050;527;3,78;40,33;22,01;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Atomic and Molecular Physics, and Optics (Q2)";"Physics and Astronomy" +11600;17906;"Seminars in Ultrasound, CT and MRI";journal;"15585034, 08872171";"W.B. Saunders";No;No;0,513;Q2;61;40;152;1948;328;136;2,21;48,70;39,67;0;United States;Northern America;"W.B. Saunders";"1984-2026";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +11601;21100860692;"South Asian Journal of Human Resources Management";journal;"23220937, 23495790";"SAGE Publications Ltd";No;No;0,513;Q2;21;42;59;2918;215;56;2,84;69,48;44,58;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2014-2026";"Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting" +11602;14188;"Statistica Neerlandica";journal;"00390402, 14679574";"Wiley-Blackwell Publishing Ltd";No;No;0,513;Q2;45;38;92;1177;115;84;0,96;30,97;26,67;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1946, 1948-2026";"Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +11603;21100860733;"Trends in Psychology";journal;"23581883";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,513;Q2;21;143;266;8771;508;262;1,90;61,34;56,92;3;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2018-2026";"Psychology (miscellaneous) (Q2)";"Psychology" +11604;21100853891;"World Journal of Emergency Medicine";journal;"19208642";"Second Affiliated Hospital, Zhejiang University School of Medicine";No;No;0,513;Q2;21;119;303;2730;513;207;1,61;22,94;45,53;0;China;Asiatic Region;"Second Affiliated Hospital, Zhejiang University School of Medicine";"2012-2013, 2015-2026";"Emergency Medicine (Q2)";"Medicine" +11605;17600155048;"Gastroenterology Research and Practice";journal;"1687630X, 16876121";"John Wiley and Sons Ltd";Yes;No;0,513;Q3;71;39;140;1285;295;140;1,68;32,95;36,60;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Gastroenterology (Q3); Hepatology (Q3)";"Medicine" +11606;14138;"Journal of Ambulatory Care Management";journal;"15503267, 01489917";"Lippincott Williams and Wilkins Ltd.";No;No;0,513;Q3;47;30;112;597;133;93;0,99;19,90;61,87;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1978-2026";"Health Policy (Q3)";"Medicine" +11607;21101185523;"Adolescents";journal;"26737051";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,512;Q1;11;82;129;4548;236;125;1,98;55,46;58,36;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Health Professions (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q2); Psychology (miscellaneous) (Q3)";"Health Professions; Psychology; Social Sciences" +11608;24606;"Anthrozoos";journal;"08927936, 17530377";"Routledge";No;No;0,512;Q1;78;64;173;3928;482;173;2,55;61,38;73,81;0;United Kingdom;Western Europe;"Routledge";"1990, 1992-1993, 1996-2026";"Anthropology (Q1); Animal Science and Zoology (Q2); Education (Q2); Sociology and Political Science (Q2); Veterinary (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Social Sciences; Veterinary" +11609;14435;"Current Legal Problems";journal;"20448422, 00701998";"Oxford University Press";No;No;0,512;Q1;19;13;30;1833;61;30;2,35;141,00;69,23;0;United Kingdom;Western Europe;"Oxford University Press";"1983, 2014-2025";"Law (Q1)";"Social Sciences" +11610;19900192514;"Dynamics of Asymmetric Conflict: Pathways toward Terrorism and Genocide";journal;"17467594, 17467586";"Routledge";No;No;0,512;Q1;21;19;41;1226;74;36;1,41;64,53;35,00;0;United Kingdom;Western Europe;"Routledge";"2010-2025";"Cultural Studies (Q1); Law (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +11611;5600155013;"Intelligence and National Security";journal;"17439019, 02684527";"Routledge";No;No;0,512;Q1;38;80;195;4779;245;191;1,26;59,74;30,86;4;United Kingdom;Western Europe;"Routledge";"1986-2026";"History (Q1); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +11612;21101091651;"Journal of Pediatric Hematology/Oncology Nursing";journal;"27527549, 27527530";"SAGE Publications Inc.";No;No;0,512;Q1;64;31;114;1037;242;111;1,77;33,45;82,76;0;United States;Northern America;"SAGE Publications Inc.";"2022-2026";"Advanced and Specialized Nursing (Q1); Pediatrics (Q2); Medicine (miscellaneous) (Q3); Oncology (nursing) (Q3)";"Medicine; Nursing" +11613;24131;"American Journal of Primatology";journal;"02752565, 10982345";"John Wiley & Sons Inc.";No;No;0,512;Q2;99;165;288;12903;522;266;1,58;78,20;50,46;0;United States;Northern America;"John Wiley & Sons Inc.";"1981-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +11614;21100229216;"Arquivos Brasileiros de Cirurgia Digestiva";journal;"01026720, 23176326";"Colegio Brasileiro de Cirurgia Digestiva";Yes;No;0,512;Q2;31;53;235;1588;325;208;1,42;29,96;30,86;0;Brazil;Latin America;"Colegio Brasileiro de Cirurgia Digestiva";"2012-2026";"Surgery (Q2); Gastroenterology (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +11615;21101300207;"BioChem";journal;"26736411";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,512;Q2;9;44;50;4218;134;50;2,68;95,86;44,52;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)";"Biochemistry, Genetics and Molecular Biology" +11616;21100873333;"Cardiovascular Endocrinology and Metabolism";journal;"25740954";"Lippincott Williams and Wilkins";Yes;No;0,512;Q2;22;21;58;746;66;49;1,33;35,52;31,25;0;United States;Northern America;"Lippincott Williams and Wilkins";"2018-2025";"Cardiology and Cardiovascular Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +11617;21100205111;"Computational Methods and Function Theory";journal;"21953724, 16179447";"Springer Science and Business Media Deutschland GmbH";No;No;0,512;Q2;24;70;134;1396;102;131;0,68;19,94;21,14;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2001, 2003-2005, 2007-2026";"Analysis (Q2); Applied Mathematics (Q2); Computational Theory and Mathematics (Q2)";"Computer Science; Mathematics" +11618;20311;"Environmental Entomology";journal;"0046225X, 19382936";"Oxford University Press";No;No;0,512;Q2;109;141;366;8504;708;366;1,73;60,31;39,12;0;United States;Northern America;"Oxford University Press";"1972-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11619;24506;"GeoInformatica";journal;"15737624, 13846175";"Kluwer Academic Publishers";No;No;0,512;Q2;67;42;80;2358;238;76;3,22;56,14;24,11;0;Netherlands;Western Europe;"Kluwer Academic Publishers";"1997-2026";"Geography, Planning and Development (Q2); Information Systems (Q2)";"Computer Science; Social Sciences" +11620;26474;"Geological Journal";journal;"00721050, 10991034";"John Wiley and Sons Ltd";No;No;0,512;Q2;71;407;669;35536;1605;661;2,83;87,31;25,34;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1951-1954, 1956-1957, 1961-2026";"Geology (Q2)";"Earth and Planetary Sciences" +11621;21100456711;"Hand Surgery and Rehabilitation";journal;"24681229, 24681210";"Elsevier Masson s.r.l.";No;No;0,512;Q2;41;153;419;3146;590;352;1,45;20,56;27,07;0;France;Western Europe;"Elsevier Masson s.r.l.";"2016-2026";"Rehabilitation (Q2); Surgery (Q2); Orthopedics and Sports Medicine (Q3)";"Medicine" +11622;5800173380;"Human Dimensions of Wildlife";journal;"1533158X, 10871209";"Taylor and Francis Ltd.";No;No;0,512;Q2;68;83;136;4044;306;112;1,94;48,72;42,74;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)";"Environmental Science" +11623;28697;"Materials Letters";journal;"18734979, 0167577X";"Elsevier B.V.";No;No;0,512;Q2;189;1505;6038;19753;16890;6030;2,82;13,12;32,93;0;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +11624;5000157801;"Mathematical Structures in Computer Science";journal;"09601295, 14698072";"Cambridge University Press";No;No;0,512;Q2;50;39;125;1464;117;115;0,88;37,54;16,67;0;United Kingdom;Western Europe;"Cambridge University Press";"1991-2026";"Computer Science Applications (Q2); Mathematics (miscellaneous) (Q2)";"Computer Science; Mathematics" +11625;19700190314;"Pastoral Care in Education";journal;"14680122, 02643944";"Routledge";No;No;0,512;Q2;30;83;93;4249;196;81;1,75;51,19;76,51;2;United States;Northern America;"Routledge";"1983-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +11626;28579;"Pure and Applied Geophysics";journal;"00334553, 14209136";"Birkhauser Verlag Basel";No;No;0,512;Q2;113;259;665;14377;1450;659;2,21;55,51;25,49;4;Switzerland;Western Europe;"Birkhauser Verlag Basel";"1964-2026";"Geochemistry and Petrology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +11627;144671;"Reference Services Review";journal;"00907324";"Emerald Group Publishing Ltd.";No;No;0,512;Q2;46;20;86;806;138;74;1,25;40,30;54,72;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1973-2026";"Library and Information Sciences (Q2); E-learning (Q3)";"Social Sciences" +11628;21100466401;"International Journal of Reproductive BioMedicine";journal;"24764108, 24763772";"Research and Clinical Center for Infertitlity";Yes;No;0,512;Q3;52;85;282;2987;550;272;1,58;35,14;56,41;0;Iran;Middle East;"Research and Clinical Center for Infertitlity";"2011-2013, 2015-2025";"Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine" +11629;11700154377;"Journal of Individual Differences";journal;"21512299, 16140001";"Hogrefe Publishing GmbH";No;No;0,512;Q3;50;23;74;1202;102;74;1,16;52,26;43,66;0;Germany;Western Europe;"Hogrefe Publishing GmbH";"2005-2025";"Psychology (miscellaneous) (Q3); Biological Psychiatry (Q4)";"Neuroscience; Psychology" +11630;13469;"Meteorologische Zeitschrift";journal;"16101227, 09412948";"Schweizerbart Science Publishers";Yes;No;0,512;Q3;72;17;88;752;150;87;1,52;44,24;27,78;0;Germany;Western Europe;"Schweizerbart Science Publishers";"1996-2025";"Atmospheric Science (Q3)";"Earth and Planetary Sciences" +11631;19613;"Schweizerische Medizinische Wochenschrift";journal;"14247860, 14243997";"Schwabe und Co. AG";Yes;Yes;0,512;Q3;86;165;380;6175;622;373;1,45;37,42;44,99;0;Switzerland;Western Europe;"Schwabe und Co. AG";"2001-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +11632;69772;"Anthropologie (France)";journal;"00035521";"Elsevier Masson s.r.l.";No;No;0,511;Q1;37;55;180;2742;173;176;0,85;49,85;35,58;0;France;Western Europe;"Elsevier Masson s.r.l.";"1947-1948, 1974-1979, 1996-2026";"Anthropology (Q1); History and Philosophy of Science (Q1)";"Arts and Humanities; Social Sciences" +11633;21101043799;"Emotions and Society";journal;"26316900, 26316897";"Policy Press";No;No;0,511;Q1;14;18;68;984;139;61;1,67;54,67;80,00;0;United Kingdom;Western Europe;"Policy Press";"2019-2025";"Cultural Studies (Q1); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +11634;17558;"Tumu Gongcheng Xuebao/China Civil Engineering Journal";journal;"1000131X";"Chinese Society of Civil Engineering";No;No;0,511;Q1;55;132;585;4572;1115;585;1,81;34,64;25,36;0;China;Asiatic Region;"Chinese Society of Civil Engineering";"1984-1989, 2006-2026";"Architecture (Q1); Arts and Humanities (miscellaneous) (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Arts and Humanities; Engineering" +11635;26507;"Bulletin of the Geological Society of Finland";journal;"03675211, 17994632";"Geological Society of Finland";Yes;Yes;0,511;Q2;28;6;25;402;53;24;2,29;67,00;28,57;0;Finland;Western Europe;"Geological Society of Finland";"1979-1987, 1989-2025";"Geology (Q2)";"Earth and Planetary Sciences" +11636;18077;"Fitoterapia";journal;"0367326X, 18736971";"Elsevier B.V.";No;No;0,511;Q2;134;577;950;31544;3126;948;3,34;54,67;46,26;1;Netherlands;Western Europe;"Elsevier B.V.";"1948-1949, 1961, 1972-2026";"Horticulture (Q2); Plant Science (Q2); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3)";"Agricultural and Biological Sciences; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11637;21101206922;"Forensic Sciences";journal;"26736756";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,511;Q2;15;80;148;4214;348;146;1,82;52,68;53,59;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Pathology and Forensic Medicine (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +11638;21100788265;"Housing and Society";journal;"23760923, 08882746";"Taylor and Francis Ltd.";No;No;0,511;Q2;13;29;52;1491;102;43;1,74;51,41;68,00;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Geography, Planning and Development (Q2); Sociology and Political Science (Q2); Urban Studies (Q2)";"Social Sciences" +11639;6400153106;"Information Development";journal;"17416469, 02666669";"SAGE Publications Ltd";No;No;0,511;Q2;48;243;252;16154;929;246;3,64;66,48;33,40;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1985-2026";"Library and Information Sciences (Q2)";"Social Sciences" +11640;21100863126;"International Journal of Work-Integrated Learning";journal;"25381032";"";Yes;Yes;0,511;Q2;32;38;116;2005;194;116;1,60;52,76;67,02;0;New Zealand;Pacific Region;"";"2018-2025";"Education (Q2)";"Social Sciences" +11641;19700201683;"Italian Journal of Geosciences";journal;"20381719, 20381727";"Societa Geologica Italiana";No;No;0,511;Q2;48;27;72;2580;109;72;1,45;95,56;25,58;0;Italy;Western Europe;"Societa Geologica Italiana";"2001, 2010-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q2)";"Earth and Planetary Sciences" +11642;16800;"Journal of Hand Therapy";journal;"1545004X, 08941130";"Hanley and Belfus Inc.";No;No;0,511;Q2;78;167;297;5810;557;263;1,77;34,79;55,14;0;United States;Northern America;"Hanley and Belfus Inc.";"1987-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)";"Health Professions; Medicine" +11643;21101043571;"Journal of Information and Telecommunication";journal;"24751847, 24751839";"Taylor and Francis Ltd.";Yes;No;0,511;Q2;24;32;83;1243;309;82;3,22;38,84;37,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Computer Networks and Communications (Q2); Computer Science Applications (Q2); Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +11644;21157;"Journal of Intelligent Material Systems and Structures";journal;"15308138, 1045389X";"SAGE Publications Ltd";No;No;0,511;Q2;140;112;439;4548;1324;438;3,18;40,61;17,68;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1990-2026";"Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)";"Engineering; Materials Science" +11645;21100945715;"Journal of International Logistics and Trade";journal;"25087592, 17382122";"Emerald Publishing";Yes;Yes;0,511;Q2;12;11;32;558;111;31;3,68;50,73;30,77;0;South Korea;Asiatic Region;"Emerald Publishing";"2018-2026";"Economics and Econometrics (Q2); Management Information Systems (Q2); Management Science and Operations Research (Q3); Marketing (Q3); Transportation (Q3)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Social Sciences" +11646;4700152496;"Landscape and Ecological Engineering";journal;"18601871, 1860188X";"Springer";No;No;0,511;Q2;43;62;137;4137;313;133;2,10;66,73;30,85;0;Japan;Asiatic Region;"Springer";"2005-2026";"Ecology (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)";"Environmental Science" +11647;26917;"Nationalism and Ethnic Politics";journal;"15572986, 13537113";"Routledge";No;No;0,511;Q2;36;40;78;3173;134;74;2,04;79,33;30,30;3;United Kingdom;Western Europe;"Routledge";"1995-2026";"Geography, Planning and Development (Q2); Political Science and International Relations (Q2)";"Social Sciences" +11648;5700153460;"Publishing Research Quarterly";journal;"19364792, 10538801";"Springer US";No;No;0,511;Q2;27;23;90;1159;203;90;1,58;50,39;40,91;1;United States;Northern America;"Springer US";"1991-2025";"Business and International Management (Q2); Communication (Q2); Computer Science Applications (Q2); Management of Technology and Innovation (Q2); Media Technology (Q2); Marketing (Q3)";"Business, Management and Accounting; Computer Science; Engineering; Social Sciences" +11649;22949;"Research Technology Management";journal;"19300166, 08956308";"Taylor and Francis Ltd.";No;No;0,511;Q2;86;71;191;1300;369;113;1,74;18,31;34,25;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-1989, 1995-2026";"Engineering (miscellaneous) (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Engineering" +11650;21100924764;"Shape Memory and Superelasticity";journal;"2199384X, 21993858";"Springer US";No;No;0,511;Q2;37;71;126;3117;282;117;2,10;43,90;18,11;0;United States;Northern America;"Springer US";"2015-2026";"Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +11651;21101022415;"Spatial Information Research";journal;"23663286, 23663294";"Korean Spatial Information Society";No;No;0,511;Q2;34;57;185;2519;614;185;4,06;44,19;21,24;0;South Korea;Asiatic Region;"Korean Spatial Information Society";"2016-2026";"Artificial Intelligence (Q2); Computer Science Applications (Q2); Computers in Earth Sciences (Q2); Geography, Planning and Development (Q2)";"Computer Science; Earth and Planetary Sciences; Social Sciences" +11652;16900154710;"Statistical Analysis and Data Mining";journal;"19321864, 19321872";"John Wiley and Sons Inc";No;No;0,511;Q2;42;50;158;1758;395;157;1,32;35,16;34,09;0;United States;Northern America;"John Wiley and Sons Inc";"2008-2026";"Analysis (Q2); Computer Science Applications (Q2); Information Systems (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Computer Science; Decision Sciences; Mathematics" +11653;11600153403;"Disaster Medicine and Public Health Preparedness";journal;"19357893, 1938744X";"Cambridge University Press";No;No;0,511;Q3;66;377;1304;11782;2117;1146;1,55;31,25;47,94;2;United Kingdom;Western Europe;"Cambridge University Press";"2007-2026";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +11654;21371;"Expert Review of Pharmacoeconomics and Outcomes Research";journal;"14737167, 17448379";"Taylor and Francis Ltd.";No;No;0,511;Q3;69;151;356;6844;734;321;2,19;45,32;47,45;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Health Policy (Q3); Medicine (miscellaneous) (Q3); Pharmacology (medical) (Q3)";"Medicine" +11655;21100923448;"Molecular and Clinical Oncology";journal;"20499450, 20499469";"Spandidos Publications";No;No;0,511;Q3;27;114;355;5059;648;355;1,90;44,38;31,23;0;United Kingdom;Western Europe;"Spandidos Publications";"2013, 2016-2026";"Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11656;21100934631;"Pleura and Peritoneum";journal;"2364768X";"Walter de Gruyter GmbH";Yes;No;0,511;Q3;27;29;64;874;138;58;1,78;30,14;41,41;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2016-2025";"Internal Medicine (Q3)";"Medicine" +11657;5700153823;"Religious Studies";journal;"1469901X, 00344125";"Cambridge University Press";No;No;0,510;Q1;30;112;202;4570;173;197;0,69;40,80;13,51;0;United Kingdom;Western Europe;"Cambridge University Press";"1965-2026";"Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities" +11658;71598;"Agricultural and Resource Economics Review";journal;"10682805, 23722614";"Cambridge University Press";Yes;No;0,510;Q2;41;31;82;1725;158;82;1,93;55,65;34,94;1;United States;Northern America;"Cambridge University Press";"1997, 2004-2026";"Agronomy and Crop Science (Q2); Economics and Econometrics (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +11659;20500195051;"Arthropoda Selecta";journal;"0136006X";"KMK Scientific Press Ltd.";No;No;0,510;Q2;19;54;158;2170;141;158;0,89;40,19;46,28;0;Russian Federation;Eastern Europe;"KMK Scientific Press Ltd.";"2011-2025";"Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +11660;27613;"Canadian Geographies/Geographies Canadiennes";trade journal;"15410064, 00083658";"John Wiley and Sons Inc";No;No;0,510;Q2;59;0;91;0;190;86;1,71;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Inc";"1950, 1952-2024";"Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +11661;19594;"Clays and Clay Minerals";journal;"00098604, 15528367";"Cambridge University Press";No;No;0,510;Q2;105;32;134;2032;349;131;2,24;63,50;35,77;0;United Kingdom;Western Europe;"Cambridge University Press";"1966-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Geochemistry and Petrology (Q2); Soil Science (Q2); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +11662;21100814040;"Environmental Geotechnics";journal;"2051803X";"ICE Publishing";No;No;0,510;Q2;33;46;105;2405;211;81;1,58;52,28;38,41;1;United Kingdom;Western Europe;"ICE Publishing";"2014-2025";"Environmental Engineering (Q2); Geochemistry and Petrology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2); Pollution (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2); Ecological Modeling (Q3); Environmental Chemistry (Q3)";"Earth and Planetary Sciences; Environmental Science" +11663;22610;"Facies";journal;"01729179, 16124820";"Springer Science and Business Media Deutschland GmbH";No;No;0,510;Q2;69;22;51;1904;106;51;2,09;86,55;26,36;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1979-2026";"Geology (Q2); Paleontology (Q2); Stratigraphy (Q2)";"Earth and Planetary Sciences" +11664;26585;"Glasgow Mathematical Journal";journal;"1469509X, 00170895";"Cambridge University Press";No;No;0,510;Q2;37;54;134;1402;68;133;0,47;25,96;20,37;0;United Kingdom;Western Europe;"Cambridge University Press";"1967-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11665;21101190270;"Journal of Computational Mathematics and Data Science";journal;"27724158";"Elsevier B.V.";Yes;No;0,510;Q2;16;20;60;807;224;60;2,66;40,35;17,39;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Applied Mathematics (Q2); Artificial Intelligence (Q2); Computational Mathematics (Q2); Computer Science Applications (Q2)";"Computer Science; Mathematics" +11666;21100298691;"Journal of Function Spaces";journal;"23148888, 23148896";"John Wiley and Sons Ltd";Yes;No;0,510;Q2;43;49;432;1356;782;432;2,15;27,67;37,90;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2014-2026";"Analysis (Q2)";"Mathematics" +11667;22877;"Journal of Sustainable Forestry";journal;"1540756X, 10549811";"Taylor and Francis Ltd.";No;No;0,510;Q2;42;84;124;5282;312;123;2,47;62,88;31,72;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Food Science (Q2); Forestry (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Agricultural and Biological Sciences; Energy; Environmental Science; Social Sciences" +11668;15502;"Measurement and Control (United Kingdom)";journal;"00202940";"SAGE Publications Ltd";Yes;No;0,510;Q2;40;162;359;5726;1141;359;3,35;35,35;27,08;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1968-2026";"Applied Mathematics (Q2); Control and Optimization (Q2); Instrumentation (Q2)";"Mathematics; Physics and Astronomy" +11669;14498;"Mechanics of Time-Dependent Materials";journal;"13852000, 15732738";"Springer Nature";No;No;0,510;Q2;54;105;261;4686;921;261;3,72;44,63;25,36;0;Netherlands;Western Europe;"Springer Nature";"1997-2026";"Aerospace Engineering (Q2); Chemical Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)";"Chemical Engineering; Engineering; Materials Science" +11670;21101192756;"Oral Oncology Reports";journal;"27729060";"Elsevier Ltd";Yes;No;0,510;Q2;13;78;666;2093;955;221;1,44;26,83;39,67;0;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Oral Surgery (Q2); Oncology (Q3)";"Dentistry; Medicine" +11671;13826;"ORL";journal;"14230275, 03011569";"S. Karger AG";No;No;0,510;Q2;57;31;128;889;215;123;1,82;28,68;36,90;0;Switzerland;Western Europe;"S. Karger AG";"1938-1940, 1942-2025";"Otorhinolaryngology (Q2)";"Medicine" +11672;21100453516;"Psychology, Society and Education";journal;"1989709X, 21712085";"UCOPress. Editorial Universidad de Cordoba";Yes;Yes;0,510;Q2;17;24;70;1280;137;70;1,74;53,33;38,10;0;Spain;Western Europe;"UCOPress. Editorial Universidad de Cordoba";"2012, 2015-2026";"Clinical Psychology (Q2); Education (Q2); Sociology and Political Science (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +11673;21662;"Science of Nature";journal;"14321904, 00281042";"Springer Science and Business Media Deutschland GmbH";No;No;0,510;Q2;116;95;174;5504;369;169;1,64;57,94;37,56;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1913-1944, 1946-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Medicine" +11674;19400157212;"SHILAP Revista de lepidopterologia";journal;"23404078, 03005267";"Soc Hispano-Luso-Amer Lepidopterologia-Shilap";Yes;Yes;0,510;Q2;18;64;208;2065;172;206;0,86;32,27;27,27;0;Spain;Western Europe;"Soc Hispano-Luso-Amer Lepidopterologia-Shilap";"2008-2013, 2015-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +11675;26870;"Siberian Mathematical Journal";journal;"15739260, 00374466";"Pleiades Publishing";No;No;0,510;Q2;38;115;361;2335;235;361;0,61;20,30;20,00;0;United States;Northern America;"Pleiades Publishing";"1966-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11676;21101052706;"Annals of Blood";journal;"2521361X";"AME Publishing Company";No;No;0,510;Q3;13;26;117;1570;191;99;1,35;60,38;43,75;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2019-2025";"Hematology (Q3)";"Medicine" +11677;19700188350;"International Journal of Preventive Medicine";journal;"20088213, 20087802";"Wolters Kluwer Medknow Publications";Yes;No;0,510;Q3;65;90;356;3093;546;274;1,51;34,37;48,12;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2010-2025";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +11678;15270;"South African Journal of Psychology";journal;"00812463, 2078208X";"SAGE Publications Inc.";No;No;0,510;Q3;48;45;139;1993;281;130;1,83;44,29;54,88;0;United States;Northern America;"SAGE Publications Inc.";"1979-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +11679;21101046224;"Human Geography (United Kingdom)";journal;"19427786, 2633674X";"SAGE Publications Inc.";No;No;0,509;Q1;30;83;116;5271;237;106;2,11;63,51;43,10;2;United States;Northern America;"SAGE Publications Inc.";"2008-2026";"Philosophy (Q1); Geography, Planning and Development (Q2)";"Arts and Humanities; Social Sciences" +11680;19700181415;"Journal of Beliefs and Values";journal;"13617672, 14699362";"Routledge";No;No;0,509;Q1;29;82;142;4079;221;137;1,75;49,74;57,50;1;United Kingdom;Western Europe;"Routledge";"1984-2026";"Religious Studies (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +11681;21101020136;"Languages";journal;"2226471X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,509;Q1;25;305;984;18821;1676;953;1,65;61,71;57,80;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2026";"Linguistics and Language (Q1)";"Social Sciences" +11682;21100869489;"Academic Pathology";journal;"23742895";"Association of Pathology Chairs";Yes;No;0,509;Q2;22;46;117;1397;205;110;2,06;30,37;60,00;0;United States;Northern America;"Association of Pathology Chairs";"2014-2026";"Pathology and Forensic Medicine (Q2)";"Medicine" +11683;24531;"Acta Mathematica Scientia";journal;"15729087, 02529602";"Springer";No;No;0,509;Q2;46;139;424;4210;436;423;1,00;30,29;32,52;0;Singapore;Asiatic Region;"Springer";"1996-2004, 2006-2026";"Mathematics (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Mathematics; Physics and Astronomy" +11684;21100200653;"Information Polity";journal;"18758754, 15701255";"SAGE Publications Ltd";No;No;0,509;Q2;50;7;84;341;210;72;2,51;48,71;46,15;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2025";"Communication (Q2); Geography, Planning and Development (Q2); Information Systems (Q2); Public Administration (Q2); Sociology and Political Science (Q2)";"Computer Science; Social Sciences" +11685;28494;"International Journal of Computer Mathematics";journal;"00207160, 10290265";"Taylor and Francis Ltd.";No;No;0,509;Q2;62;139;321;5314;581;318;1,99;38,23;24,40;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1964, 1968, 1971-1975, 1977-2026";"Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2)";"Computer Science; Mathematics" +11686;5000154502;"International Journal of Medical Robotics and Computer Assisted Surgery";journal;"1478596X, 14785951";"John Wiley and Sons Ltd";No;No;0,509;Q2;72;92;352;3396;998;352;2,59;36,91;29,53;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2004-2026";"Computer Science Applications (Q2); Surgery (Q2); Biophysics (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Medicine" +11687;24857;"Journal of Cutaneous Pathology";journal;"16000560, 03036987";"Wiley-Blackwell Publishing Ltd";No;No;0,509;Q2;94;144;555;2609;719;519;1,29;18,12;48,42;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1974-2026";"Dermatology (Q2); Pathology and Forensic Medicine (Q2); Histology (Q3)";"Medicine" +11688;16300;"Journal of Performance of Constructed Facilities";journal;"19435509, 08873828";"American Society of Civil Engineers (ASCE)";No;No;0,509;Q2;79;86;259;3400;605;242;2,22;39,53;26,35;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1987-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering" +11689;21100239261;"Journal of Social Studies Research";journal;"0885985X";"Sage Publications";No;No;0,509;Q2;25;18;63;1352;113;63;1,75;75,11;58,70;0;United States;Northern America;"Sage Publications";"1985-1986, 2013-2026";"Education (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +11690;17306;"Neuroimaging Clinics of North America";journal;"10525149, 15579867";"W.B. Saunders";No;No;0,509;Q2;75;61;193;2515;309;144;1,41;41,23;31,48;0;United States;Northern America;"W.B. Saunders";"1993-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3)";"Medicine" +11691;29320;"Online Journal of Issues in Nursing";journal;"10913734";"American Nurses Association";Yes;No;0,509;Q2;58;41;115;1267;209;114;1,44;30,90;79,21;0;United States;Northern America;"American Nurses Association";"1996-2026";"Issues, Ethics and Legal Aspects (Q2)";"Nursing" +11692;21100199768;"Practical Assessment, Research and Evaluation";journal;"15317714";"University of Maryland";Yes;No;0,509;Q2;68;2;51;35;142;51;3,88;17,50;0,00;0;United States;Northern America;"University of Maryland";"1989, 1991, 1993, 1995, 1997, 1999, 2001, 2003-2025";"Education (Q2)";"Social Sciences" +11693;21101299652;"SEG Discovery";journal;"26940655, 26940663";"Geoscienceworld";No;No;0,509;Q2;7;7;32;342;41;30;1,57;48,86;5,88;0;United States;Northern America;"Geoscienceworld";"2004, 2021-2025";"Economic Geology (Q2)";"Earth and Planetary Sciences" +11694;24565;"Zoological Studies";journal;"10215506, 1810522X";"Academia Sinica";Yes;No;0,509;Q2;53;69;194;4171;295;194;1,38;60,45;34,21;0;Taiwan;Asiatic Region;"Academia Sinica";"1994-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +11695;26089;"Turkish Journal of Hematology";journal;"13007777, 13085263";"Turkish Society of Hematology";Yes;Yes;0,509;Q3;26;67;178;1088;149;76;0,70;16,24;47,10;0;Turkey;Middle East;"Turkish Society of Hematology";"2000-2026";"Hematology (Q3)";"Medicine" +11696;21100284428;"Archaeologia Austriaca";book series;"18162959, 00038008";"Verlag der Oesterreichischen Akademie der Wissenschaften";No;No;0,508;Q1;13;14;32;1321;29;28;0,18;94,36;48,84;0;Austria;Western Europe;"Verlag der Oesterreichischen Akademie der Wissenschaften";"2011-2013, 2015-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +11697;27644;"Curationis";journal;"22236279, 03798577";"AOSIS (Pty) Ltd";Yes;No;0,508;Q1;33;39;109;1766;230;109;1,37;45,28;55,38;0;South Africa;Africa;"AOSIS (Pty) Ltd";"1978-2026";"Advanced and Specialized Nursing (Q1); Nurse Assisting (Q1); Assessment and Diagnosis (Q2); Fundamentals and Skills (Q2); Immunology (Q3)";"Immunology and Microbiology; Nursing" +11698;16300154746;"International Journal of Cross Cultural Management";journal;"14705958, 17412838";"SAGE Publications Ltd";No;No;0,508;Q1;59;38;82;3339;260;73;2,84;87,87;37,50;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Business and International Management (Q2); Organizational Behavior and Human Resource Management (Q2)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +11699;18000156705;"Soccer and Society";journal;"17439590, 14660970";"Routledge";No;No;0,508;Q1;42;101;238;4852;461;227;1,62;48,04;23,20;1;United Kingdom;Western Europe;"Routledge";"2008-2026";"Cultural Studies (Q1); Sociology and Political Science (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +11700;5700161790;"Visual Communication";journal;"14703572, 17413214";"SAGE Publications Ltd";No;No;0,508;Q1;51;77;117;3947;276;112;2,51;51,26;51,68;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2026";"Visual Arts and Performing Arts (Q1); Communication (Q2)";"Arts and Humanities; Social Sciences" +11701;22701;"Applied Organometallic Chemistry";journal;"02682605, 10990739";"John Wiley and Sons Ltd";No;No;0,508;Q2;99;711;1247;45097;5382;1247;4,50;63,43;40,35;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1987-2026";"Chemistry (miscellaneous) (Q2); Inorganic Chemistry (Q2)";"Chemistry" +11702;19700201408;"Ars Mathematica Contemporanea";journal;"18553974, 18553966";"Society of Mathematicians, Physicists and Astronomers of Slovenia";Yes;Yes;0,508;Q2;23;66;121;1591;104;121;0,84;24,11;26,90;0;Slovenia;Eastern Europe;"Society of Mathematicians, Physicists and Astronomers of Slovenia";"2011-2025";"Algebra and Number Theory (Q2); Discrete Mathematics and Combinatorics (Q2); Geometry and Topology (Q2); Theoretical Computer Science (Q2)";"Mathematics" +11703;12221;"Asian Journal of Control";journal;"19346093, 15618625";"Wiley-Blackwell";No;No;0,508;Q2;67;443;890;15873;2670;886;3,10;35,83;29,69;0;United States;Northern America;"Wiley-Blackwell";"2000-2026";"Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2)";"Engineering" +11704;19700190315;"Beilstein Journal of Nanotechnology";journal;"21904286";"Beilstein-Institut Zur Forderung der Chemischen Wissenschaften";Yes;Yes;0,508;Q2;93;145;357;11116;1221;354;3,47;76,66;36,99;0;Germany;Western Europe;"Beilstein-Institut Zur Forderung der Chemischen Wissenschaften";"2010-2026";"Electrical and Electronic Engineering (Q2); Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q3)";"Engineering; Materials Science; Physics and Astronomy" +11705;37316;"Canadian Journal of Soil Science";journal;"00084271, 19181841";"Agricultural Institute of Canada";No;No;0,508;Q2;86;43;134;2609;267;134;2,34;60,67;36,46;0;Canada;Northern America;"Agricultural Institute of Canada";"1974-2026";"Soil Science (Q2)";"Agricultural and Biological Sciences" +11706;19700201670;"CYTA - Journal of Food";journal;"19476345, 19476337";"Taylor and Francis Ltd.";Yes;No;0,508;Q2;56;113;252;6157;823;252;3,46;54,49;48,44;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Food Science (Q2); Industrial and Manufacturing Engineering (Q2)";"Agricultural and Biological Sciences; Chemical Engineering; Chemistry; Engineering" +11707;13909;"Geobios";journal;"00166995, 17775728";"Elsevier Masson s.r.l.";No;No;0,508;Q2;62;60;109;4240;168;107;1,42;70,67;32,51;0;France;Western Europe;"Elsevier Masson s.r.l.";"1966, 1968-2026";"Paleontology (Q2); Stratigraphy (Q2); Space and Planetary Science (Q3)";"Earth and Planetary Sciences" +11708;21101196048;"Geographies";journal;"26737086";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,508;Q2;14;78;132;5039;355;128;2,80;64,60;32,35;2;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Geography, Planning and Development (Q2); Social Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +11709;17700156604;"International Journal of Civil Engineering";journal;"17350522, 23833874";"Springer Science and Business Media Deutschland GmbH";No;No;0,508;Q2;45;146;356;6232;937;356;2,61;42,68;23,00;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2009-2026";"Civil and Structural Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +11710;26648;"Journal of the Indian Society of Remote Sensing";journal;"09743006, 0255660X";"Springer";No;No;0,508;Q2;65;316;536;15423;1538;530;2,59;48,81;26,50;5;India;Asiatic Region;"Springer";"1973-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +11711;21100454957;"Mammal Research";journal;"21992401, 2199241X";"";No;No;0,508;Q2;56;53;161;3309;281;161;1,76;62,43;37,16;1;Germany;Western Europe;"";"2015-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +11712;145383;"Paddy and Water Environment";journal;"16112490, 16112504";"Springer Science and Business Media Deutschland GmbH";No;No;0,508;Q2;52;53;126;2567;324;126;2,73;48,43;27,83;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2026";"Agronomy and Crop Science (Q2); Environmental Engineering (Q2); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11713;15722;"Pediatric Emergency Care";journal;"07495161, 15351815";"Lippincott Williams and Wilkins";No;No;0,508;Q2;82;233;957;5707;1161;880;1,03;24,49;54,77;0;United States;Northern America;"Lippincott Williams and Wilkins";"1985-2026";"Emergency Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +11714;21101044741;"Physical Activity and Health";journal;"25152270";"Ubiquity Press";Yes;No;0,508;Q2;14;18;67;736;134;67;2,10;40,89;40,45;0;United Kingdom;Western Europe;"Ubiquity Press";"2017-2025";"Anatomy (Q2); Health (social science) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Biomedical Engineering (Q3); Orthopedics and Sports Medicine (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Health Professions; Medicine; Social Sciences" +11715;12100157009;"Politics and Policy";journal;"17471346, 15555623";"John Wiley and Sons Inc";No;No;0,508;Q2;39;108;184;7911;417;167;2,28;73,25;34,73;4;United States;Northern America;"John Wiley and Sons Inc";"2001-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +11716;26928;"Stochastic Analysis and Applications";journal;"15329356, 07362994";"Taylor and Francis Ltd.";No;No;0,508;Q2;45;30;154;948;178;154;1,17;31,60;25,37;0;United States;Northern America;"Taylor and Francis Ltd.";"1983-2026";"Applied Mathematics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Decision Sciences; Mathematics" +11717;20871;"Transportation Planning and Technology";journal;"10290354, 03081060";"Taylor and Francis Ltd.";No;No;0,508;Q2;54;160;145;8226;376;140;2,72;51,41;28,70;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972-2026";"Geography, Planning and Development (Q2); Transportation (Q3)";"Social Sciences" +11718;5800173373;"Water and Environment Journal";journal;"17476585, 17476593";"John Wiley and Sons Inc";No;No;0,508;Q2;53;57;189;3164;437;180;2,11;55,51;38,17;0;United States;Northern America;"John Wiley and Sons Inc";"1987-2026";"Environmental Engineering (Q2); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2); Pollution (Q3)";"Environmental Science" +11719;25419;"Acta Haematologica";journal;"00015792, 14219662";"S. Karger AG";No;No;0,508;Q3;68;109;241;3621;362;234;1,58;33,22;47,05;0;Switzerland;Western Europe;"S. Karger AG";"1948-2026";"Hematology (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +11720;21100982276;"BMJ Military Health";journal;"26333775, 26333767";"BMJ Publishing Group";No;No;0,508;Q3;39;241;401;5257;557;306;1,28;21,81;34,48;4;United Kingdom;Western Europe;"BMJ Publishing Group";"2018-2026";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +11721;145395;"Journal of Research in Medical Sciences";journal;"17357136, 17351995";"Wolters Kluwer Medknow Publications";Yes;No;0,508;Q3;63;69;253;2521;442;238;1,58;36,54;47,32;0;Iran;Middle East;"Wolters Kluwer Medknow Publications";"2005-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +11722;19700188101;"Journal of Taibah University Medical Sciences";journal;"16583612";"Elsevier B.V.";Yes;No;0,508;Q3;41;98;469;3287;1156;413;2,65;33,54;45,89;0;Netherlands;Western Europe;"Elsevier B.V.";"2009-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +11723;21100464933;"Asian Bioethics Review";journal;"17938759, 17939453";"National University of Singapore, Department of Biological Sciences, Centre for Biomedical Ethics";No;No;0,507;Q1;24;70;115;2636;236;97;2,10;37,66;42,75;0;Singapore;Asiatic Region;"National University of Singapore, Department of Biological Sciences, Centre for Biomedical Ethics";"2015-2026";"Philosophy (Q1); Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2); Health Policy (Q3)";"Arts and Humanities; Medicine; Nursing; Social Sciences" +11724;21101172014;"Designs for Learning";journal;"20017480";"Stockholm University Press";Yes;No;0,507;Q1;8;8;21;295;35;20;1,17;36,88;78,57;0;Sweden;Western Europe;"Stockholm University Press";"2019-2023, 2025";"Cultural Studies (Q1); Linguistics and Language (Q1); Communication (Q2); Ecology (Q2); Education (Q2); Developmental and Educational Psychology (Q3); Human-Computer Interaction (Q3)";"Computer Science; Environmental Science; Psychology; Social Sciences" +11725;15436;"Journal of Constructivist Psychology";journal;"15210650, 10720537";"Taylor and Francis Ltd.";No;No;0,507;Q1;40;63;131;3140;219;130;1,57;49,84;55,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Linguistics and Language (Q1); Developmental and Educational Psychology (Q3); Social Psychology (Q3)";"Psychology; Social Sciences" +11726;25672;"Phonetica";journal;"00318388, 14230321";"De Gruyter Mouton";No;No;0,507;Q1;51;19;49;907;63;49;1,18;47,74;46,88;0;Switzerland;Western Europe;"De Gruyter Mouton";"1957-2026";"Linguistics and Language (Q1); Acoustics and Ultrasonics (Q2)";"Physics and Astronomy; Social Sciences" +11727;29496;"Religion";journal;"10961151, 0048721X";"Taylor and Francis Ltd.";No;No;0,507;Q1;44;47;91;3184;128;78;1,34;67,74;38,60;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +11728;23051;"ACM Transactions on Computational Logic";journal;"15293785, 1557945X";"Association for Computing Machinery";No;No;0,507;Q2;55;25;89;1048;114;89;1,18;41,92;10,26;0;United States;Northern America;"Association for Computing Machinery";"2000-2026";"Computational Mathematics (Q2); Computer Science (miscellaneous) (Q2); Logic (Q2); Theoretical Computer Science (Q2)";"Computer Science; Mathematics" +11729;13711;"Combustion Theory and Modelling";journal;"13647830, 17413559";"Taylor and Francis Ltd.";No;No;0,507;Q2;72;40;136;1743;207;136;1,49;43,58;11,54;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Modeling and Simulation (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Chemical Engineering; Chemistry; Energy; Mathematics; Physics and Astronomy" +11730;5700163232;"Contemporary Political Theory";journal;"14708914, 14769336";"Palgrave Macmillan Ltd.";No;No;0,507;Q2;24;31;72;1614;137;64;1,57;52,06;45,07;1;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2009-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +11731;29667;"Emergency Medicine Clinics of North America";journal;"15580539, 07338627";"W.B. Saunders";No;No;0,507;Q2;70;73;200;3174;384;163;1,66;43,48;44,72;1;United States;Northern America;"W.B. Saunders";"1983-2026";"Emergency Medicine (Q2)";"Medicine" +11732;27961;"Geophysical Prospecting";journal;"00168025, 13652478";"John Wiley and Sons Inc";No;No;0,507;Q2;107;181;424;8101;801;421;1,82;44,76;25,11;1;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1953-2026";"Geochemistry and Petrology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +11733;21100787658;"Gland Surgery";journal;"22278575, 2227684X";"AME Publishing Company";No;No;0,507;Q2;48;234;630;7303;1138;573;1,75;31,21;37,73;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2016-2026";"Surgery (Q2)";"Medicine" +11734;130045;"Journal of Applied Biomedicine";journal;"12140287, 1214021X";"University of South Bohemia in Ceske Budejovice Faculty of Health and Social Sciences";Yes;No;0,507;Q2;42;19;71;466;156;71;1,96;24,53;42,37;0;Czech Republic;Eastern Europe;"University of South Bohemia in Ceske Budejovice Faculty of Health and Social Sciences";"2005-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Artificial Intelligence (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Biomedical Engineering (Q3); Health, Toxicology and Mutagenesis (Q3); Medicine (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Computer Science; Engineering; Environmental Science; Immunology and Microbiology; Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +11735;17500155115;"Journal of Engineered Fibers and Fabrics";journal;"15589250";"SAGE Publications Ltd";Yes;No;0,507;Q2;50;68;256;3743;818;256;2,93;55,04;39,53;0;United States;Northern America;"SAGE Publications Ltd";"2002-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +11736;19500157423;"Journal of Orthoptera Research";journal;"10826467, 19372426";"Pensoft Publishers";Yes;No;0,507;Q2;23;26;63;1113;90;62;1,28;42,81;26,09;0;United States;Northern America;"Pensoft Publishers";"2001, 2005, 2008-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +11737;21100853516;"Journal of Otology";journal;"16722930";"Tsinghua University Press";Yes;Yes;0,507;Q2;25;42;116;1195;195;116;1,40;28,45;48,77;0;China;Asiatic Region;"Tsinghua University Press";"2006-2026";"Otorhinolaryngology (Q2)";"Medicine" +11738;19171;"Journal of Quality in Maintenance Engineering";journal;"13552511";"Emerald Group Publishing Ltd.";No;No;0,507;Q2;66;34;121;1863;451;121;4,33;54,79;27,72;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1995-2026";"Industrial and Manufacturing Engineering (Q2); Safety, Risk, Reliability and Quality (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Engineering" +11739;27705;"Journal of the Institute of Brewing";journal;"00469750, 20500416";"";No;No;0,507;Q2;71;18;62;852;126;49;1,66;47,33;38,10;0;United Kingdom;Western Europe;"";"1904, 1908, 1910-1912, 1914-2026";"Food Science (Q2)";"Agricultural and Biological Sciences" +11740;27910;"New Zealand Journal of Marine and Freshwater Research";journal;"00288330, 11758805";"Taylor and Francis Ltd.";No;No;0,507;Q2;67;90;112;6447;197;111;1,55;71,63;42,99;9;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1967-2025";"Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Water Science and Technology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11741;21101152766;"NJAS: Impact in Agricultural and Life Sciences";journal;"27685241";"Taylor and Francis Ltd.";No;No;0,507;Q2;5;23;30;1250;58;29;1,93;54,35;46,24;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2023-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Water Science and Technology (Q2); Global and Planetary Change (Q3); Pollution (Q3)";"Agricultural and Biological Sciences; Business, Management and Accounting; Environmental Science" +11742;12395;"Polar Geography";journal;"19390513, 1088937X";"Taylor and Francis Ltd.";No;No;0,507;Q2;39;25;46;1697;119;44;2,43;67,88;64,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-1979, 1995-2005, 2007-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Social Sciences" +11743;21100803584;"Visceral Medicine";journal;"22974725, 2297475X";"S. Karger AG";Yes;No;0,507;Q2;42;55;116;1953;199;96;1,64;35,51;28,00;0;Switzerland;Western Europe;"S. Karger AG";"2016-2026";"Surgery (Q2); Gastroenterology (Q3)";"Medicine" +11744;21101057953;"Water Science";journal;"23570008, 11104929";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,507;Q2;31;48;90;2203;265;90;2,84;45,90;26,39;0;United Kingdom;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2013-2026";"Ecology (Q2); Water Science and Technology (Q2); Pollution (Q3)";"Environmental Science" +11745;19081;"Missouri Medicine";journal;"00266620";"Missouri State Medical Association";No;No;0,507;Q3;48;102;181;0;356;171;1,08;0,00;47,73;0;United States;Northern America;"Missouri State Medical Association";"1945-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +11746;28670;"Geographica Helvetica";journal;"00167312, 21948798";"Copernicus Publications";Yes;Yes;0,506;Q1;29;36;112;2267;164;111;1,67;62,97;56,96;0;Germany;Western Europe;"Copernicus Publications";"1946-2026";"Anthropology (Q1); Earth-Surface Processes (Q2); Geography, Planning and Development (Q2); Global and Planetary Change (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +11747;24778;"Journal of Agricultural and Environmental Ethics";journal;"11877863, 1573322X";"Springer Science and Business Media B.V.";No;No;0,506;Q1;69;26;58;1389;133;57;1,86;53,42;38,18;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1991-2026";"History (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Environmental Science" +11748;21101037149;"Training, Language and Culture";journal;"2521442X, 25202073";"RUDN University";Yes;Yes;0,506;Q1;14;32;88;1490;115;88;1,28;46,56;50,85;0;Russian Federation;Eastern Europe;"RUDN University";"2017-2025";"Cultural Studies (Q1); Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +11749;24568;"Advances in Applied Probability";journal;"00018678, 14756064";"Cambridge University Press";No;No;0,506;Q2;67;73;126;2565;123;126;0,99;35,14;23,72;0;United Kingdom;Western Europe;"Cambridge University Press";"1969-1971, 1973-1976, 1980, 1983-1988, 1990, 1992-1993, 1995-2026";"Applied Mathematics (Q2); Statistics and Probability (Q2)";"Mathematics" +11750;21100901785;"Aerosol Science and Engineering";journal;"2510375X, 25103768";"Springer International Publishing";No;No;0,506;Q2;21;129;118;7618;336;117;3,19;59,05;35,05;1;Switzerland;Western Europe;"Springer International Publishing";"2017-2026";"Materials Science (miscellaneous) (Q2); Environmental Chemistry (Q3); Pollution (Q3)";"Environmental Science; Materials Science" +11751;145269;"Homology, Homotopy and Applications";journal;"15320073, 15320081";"International Press, Inc.";Yes;No;0,506;Q2;32;36;115;762;60;115;0,42;21,17;11,48;0;United States;Northern America;"International Press, Inc.";"2001-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11752;21100338355;"IEEE Journal of the Electron Devices Society";journal;"21686734";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,506;Q2;57;204;394;6095;1204;386;2,91;29,88;23,95;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2026";"Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +11753;21100286802;"Jamba: Journal of Disaster Risk Studies";journal;"2072845X, 19961421";"AOSIS (Pty) Ltd";Yes;No;0,506;Q2;35;52;129;2623;332;128;1,95;50,44;49,38;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2013-2026";"Management, Monitoring, Policy and Law (Q2); Safety Research (Q2)";"Environmental Science; Social Sciences" +11754;23817;"Journal of African Business";journal;"15228916, 15229076";"Routledge";No;No;0,506;Q2;45;80;127;6270;452;126;3,28;78,38;27,01;0;United States;Northern America;"Routledge";"2000-2026";"Development (Q2); Geography, Planning and Development (Q2)";"Social Sciences" +11755;21101151590;"Journal of Deliberative Democracy";journal;"26340488";"International Association for Public Participation";Yes;Yes;0,506;Q2;13;12;45;790;96;45;2,50;65,83;39,13;1;United States;Northern America;"International Association for Public Participation";"2013, 2015, 2020-2025";"Sociology and Political Science (Q2)";"Social Sciences" +11756;21101111517;"Journal of Pedagogical Research";journal;"26023717";"Duzce University, Faculty of Education";Yes;Yes;0,506;Q2;17;89;234;5530;612;232;2,63;62,13;45,36;0;Turkey;Middle East;"Duzce University, Faculty of Education";"2019-2025";"Education (Q2)";"Social Sciences" +11757;21101089551;"Journal of Risk and Financial Management";journal;"19118074, 19118066";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,506;Q2;69;725;1715;43542;6416;1699;3,55;60,06;35,16;3;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2026";"Accounting (Q2); Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2); Finance (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +11758;21100261937;"MRS Communications";journal;"21596859, 21596867";"Springer International Publishing AG";No;No;0,506;Q2;55;226;533;7750;1324;440;2,64;34,29;33,00;0;Switzerland;Western Europe;"Springer International Publishing AG";"2011-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +11759;21100283718;"Numerical Algebra, Control and Optimization";journal;"21553289, 21553297";"American Institute of Mathematical Sciences";No;No;0,506;Q2;29;63;129;2166;204;125;1,18;34,38;28,24;0;United States;Northern America;"American Institute of Mathematical Sciences";"2011-2026";"Algebra and Number Theory (Q2); Applied Mathematics (Q2); Control and Optimization (Q2)";"Mathematics" +11760;130120;"Surgical Innovation";journal;"15533514, 15533506";"SAGE Publications Inc.";No;No;0,506;Q2;62;75;321;1998;627;274;2,35;26,64;24,17;0;United States;Northern America;"SAGE Publications Inc.";"1994-2002, 2004-2026";"Surgery (Q2)";"Medicine" +11761;21100837404;"Adaptive Human Behavior and Physiology";journal;"21987335";"Springer International Publishing AG";No;No;0,506;Q3;27;20;73;1144;99;68;1,39;57,20;47,83;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2025";"Behavioral Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Neuroscience; Psychology" +11762;28727;"Anti-Cancer Drugs";journal;"09594973, 14735741";"Lippincott Williams and Wilkins";No;No;0,506;Q3;106;106;517;3015;1033;515;1,96;28,44;46,03;0;United States;Northern America;"Lippincott Williams and Wilkins";"1990-2026";"Oncology (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11763;21100854839;"Future Science OA";journal;"20565623";"Taylor and Francis Ltd.";Yes;No;0,506;Q3;52;160;268;7046;694;248;2,48;44,04;45,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Biotechnology (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11764;19600161810;"Hematology/ Oncology and Stem Cell Therapy";journal;"25890646, 16583876";"Wolters Kluwer Health";Yes;No;0,506;Q3;34;12;131;144;197;120;1,32;12,00;35,90;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2008-2025";"Hematology (Q3); Medicine (miscellaneous) (Q3); Oncology (Q3)";"Medicine" +11765;16177;"International Journal of Neuroscience";journal;"00207454, 15635279";"Taylor and Francis Ltd.";No;No;0,506;Q3;85;189;466;6540;886;457;1,83;34,60;42,33;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1970-1973, 1975-2026";"Medicine (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience" +11766;21274;"Journal of Immunological Methods";journal;"00221759, 18727905";"Elsevier B.V.";No;No;0,506;Q3;155;96;331;3148;594;323;1,68;32,79;42,68;0;Netherlands;Western Europe;"Elsevier B.V.";"1971-2026";"Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +11767;18692;"Proceedings of the American Control Conference";conference and proceedings;"07431619";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,506;-;138;675;2162;16242;2689;2145;1,23;24,06;20,13;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1982-1988, 1990-1995, 1997-2009, 2011-2025";"Electrical and Electronic Engineering";"Engineering" +11768;21100855983;"Arbitration International";journal;"09570411, 18758398";"Oxford University Press";No;No;0,505;Q1;28;40;89;6806;60;88;0,67;170,15;20,69;1;United Kingdom;Western Europe;"Oxford University Press";"1996-2025";"Law (Q1); Business and International Management (Q2)";"Business, Management and Accounting; Social Sciences" +11769;5000154401;"Archaeological Prospection";journal;"10990763, 10752196";"John Wiley and Sons Ltd";No;No;0,505;Q1;48;67;101;4049;220;99;2,21;60,43;28,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1994-2026";"Archeology (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +11770;21101041530;"Journal of Cultural Cognitive Science";journal;"25201018";"Springer International Publishing";No;No;0,505;Q1;15;35;61;2060;124;58;2,20;58,86;51,72;0;Singapore;Asiatic Region;"Springer International Publishing";"2017-2026";"Linguistics and Language (Q1); Experimental and Cognitive Psychology (Q3)";"Psychology; Social Sciences" +11771;13952;"Archive of Applied Mechanics";journal;"14320681, 09391533";"Springer Verlag";No;No;0,505;Q2;75;273;660;13542;1998;656;3,37;49,60;22,99;0;Germany;Western Europe;"Springer Verlag";"1991-2026";"Mechanical Engineering (Q2)";"Engineering" +11772;21100367685;"CEAS Aeronautical Journal";journal;"18695582, 18695590";"Springer Science + Business Media";No;No;0,505;Q2;36;163;214;6100;550;208;2,57;37,42;13,20;1;United States;Northern America;"Springer Science + Business Media";"2011-2026";"Aerospace Engineering (Q2); Transportation (Q3)";"Engineering; Social Sciences" +11773;24793;"European Journal of Dermatology";journal;"19524013, 11671122";"John Libbey";No;No;0,505;Q2;88;189;569;2608;490;236;0,76;13,80;47,63;0;France;Western Europe;"John Libbey";"1993-2026";"Dermatology (Q2)";"Medicine" +11774;26113;"General and Comparative Endocrinology";journal;"10956840, 00166480";"Academic Press Inc.";No;No;0,505;Q2;141;94;369;6169;729;359;1,94;65,63;46,24;0;United States;Northern America;"Academic Press Inc.";"1961-2026";"Animal Science and Zoology (Q2); Endocrinology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +11775;21101153080;"High Temperature Corrosion of Materials";journal;"27318400";"Springer";No;No;0,505;Q2;95;36;246;1659;527;233;2,07;46,08;24,24;0;United States;Northern America;"Springer";"2023-2026";"Inorganic Chemistry (Q2); Materials Chemistry (Q2); Materials Science (miscellaneous) (Q2); Metals and Alloys (Q2)";"Chemistry; Materials Science" +11776;5100155079;"IET Control Theory and Applications";journal;"17518644, 17518652";"John Wiley & Sons Inc.";Yes;No;0,505;Q2;128;116;550;4595;1324;547;2,39;39,61;29,78;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2007-2026";"Computer Science Applications (Q2); Control and Optimization (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Human-Computer Interaction (Q3)";"Computer Science; Engineering; Mathematics" +11777;21100463075;"International Journal of Chinese Education";journal;"22125868, 2212585X";"SAGE Publications Ltd";Yes;Yes;0,505;Q2;15;23;107;1356;242;102;2,23;58,96;53,57;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2012-2026";"Education (Q2)";"Social Sciences" +11778;14893;"International Journal of Psychoanalysis";journal;"17458315, 00207578";"Taylor and Francis Ltd.";No;No;0,505;Q2;78;94;249;2650;196;202;0,74;28,19;36,59;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1945-1947, 1957-1958, 1961, 1973-1976, 1979-2025";"Clinical Psychology (Q2); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +11779;16502;"Jianzhu Jiegou Xuebao/Journal of Building Structures";journal;"10006869";"";No;No;0,505;Q2;58;242;1061;8538;1706;1061;1,41;35,28;27,99;0;China;Asiatic Region;"";"1982-1989, 1998, 2001-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Engineering" +11780;13265;"Journal of AAPOS";journal;"15283933, 10918531";"Elsevier Inc.";No;No;0,505;Q2;85;179;501;2779;560;457;1,00;15,53;51,46;0;United States;Northern America;"Elsevier Inc.";"1997-2026";"Ophthalmology (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +11781;21100423216;"Journal of Astronomical Telescopes, Instruments, and Systems";journal;"23294221, 23294124";"SPIE";No;No;0,505;Q2;42;239;355;9356;706;351;1,57;39,15;21,30;0;United States;Northern America;"SPIE";"2015-2025";"Astronomy and Astrophysics (Q2); Control and Systems Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Instrumentation (Q2); Mechanical Engineering (Q2); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Engineering; Materials Science; Physics and Astronomy" +11782;21100976152;"Journal of Civil Engineering Education";journal;"26439107, 26439115";"American Society of Civil Engineers (ASCE)";No;No;0,505;Q2;55;29;62;1568;191;58;3,00;54,07;54,64;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"2020-2026";"Civil and Structural Engineering (Q2); Industrial Relations (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Engineering" +11783;21100774787;"Journal of Financial Regulation and Compliance";journal;"13581988, 17400279";"Emerald Publishing";No;No;0,505;Q2;32;60;102;4036;377;102;3,61;67,27;28,46;0;United Kingdom;Western Europe;"Emerald Publishing";"1996-2026";"Finance (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +11784;21100314711;"Translational Andrology and Urology";journal;"22234691, 22234683";"AME Publishing Company";No;No;0,505;Q2;62;371;675;12738;1117;578;1,61;34,33;31,57;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2012-2026";"Urology (Q2); Reproductive Medicine (Q3)";"Medicine" +11785;15165;"Vision Research";journal;"18785646, 00426989";"Elsevier Ltd";No;No;0,505;Q2;195;112;284;7546;528;276;1,93;67,38;45,32;0;United Kingdom;Western Europe;"Elsevier Ltd";"1961-2026";"Ophthalmology (Q2); Sensory Systems (Q3)";"Medicine; Neuroscience" +11786;21101039849;"Mediterranean Journal of Rheumatology";journal;"2529198X, 24593516";"Greek Rheumatology Society and Professional Association of Rheumatologists";Yes;No;0,505;Q3;22;84;260;2742;501;253;2,01;32,64;52,60;0;Greece;Western Europe;"Greek Rheumatology Society and Professional Association of Rheumatologists";"2017-2025";"Rheumatology (Q3)";"Medicine" +11787;18825;"Sao Paulo Medical Journal";journal;"15163180, 18069460";"Associacao Paulista de Medicina";Yes;Yes;0,505;Q3;52;78;267;2427;445;249;1,25;31,12;48,11;0;Brazil;Latin America;"Associacao Paulista de Medicina";"1994-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +11788;21101132227;"Culture and Evolution";journal;"29397375";"Akademiai Kiado";No;No;0,504;Q1;30;2;11;146;17;10;1,40;73,00;66,67;0;Hungary;Eastern Europe;"Akademiai Kiado";"2022-2025";"Anthropology (Q1); Cultural Studies (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Experimental and Cognitive Psychology (Q3); Social Psychology (Q3)";"Agricultural and Biological Sciences; Psychology; Social Sciences" +11789;21100921043;"Journal of European Competition Law and Practice";journal;"20417772, 20417764";"Oxford University Press";No;No;0,504;Q1;21;47;219;4038;192;193;0,85;85,91;46,03;0;United States;Northern America;"Oxford University Press";"2010-2025";"Law (Q1)";"Social Sciences" +11790;21100286971;"Annals of Functional Analysis";journal;"20088752, 26397390";"Springer International Publishing";Yes;No;0,504;Q2;25;78;242;2324;227;242;0,87;29,79;25,00;0;Switzerland;Western Europe;"Springer International Publishing";"2010-2026";"Algebra and Number Theory (Q2); Analysis (Q2); Control and Optimization (Q2)";"Mathematics" +11791;14489;"Archives de Pediatrie";journal;"0929693X, 1769664X";"Elsevier Masson s.r.l.";No;No;0,504;Q2;46;116;348;3241;574;328;1,48;27,94;64,05;0;France;Western Europe;"Elsevier Masson s.r.l.";"1994-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +11792;21100986474;"Asian Pacific Island Nursing Journal";journal;"23736658";"JMIR Publications Inc.";Yes;No;0,504;Q2;12;19;26;701;69;25;2,96;36,89;68,49;0;Canada;Northern America;"JMIR Publications Inc.";"2016-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +11793;21101188722;"Chinese Journal of Structural Chemistry";journal;"2949768X";"Elsevier B.V.";No;No;0,504;Q2;16;0;74;0;199;73;6,91;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2023";"Inorganic Chemistry (Q2); Materials Chemistry (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Materials Science" +11794;21101039508;"Dermatology Practical and Conceptual";journal;"21609381";"Mattioli 1885";Yes;Yes;0,504;Q2;23;257;769;4485;1011;609;1,36;17,45;58,04;0;Italy;Western Europe;"Mattioli 1885";"2014, 2017, 2019-2026";"Dermatology (Q2); Genetics (Q3); Molecular Biology (Q3); Oncology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11795;21101024200;"Designs";journal;"24119660";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,504;Q2;35;145;404;6988;1440;396;3,84;48,19;22,41;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2025";"Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +11796;28469;"Discrete Optimization";journal;"15725286";"Elsevier B.V.";No;No;0,504;Q2;46;24;86;713;134;84;0,88;29,71;26,98;0;Netherlands;Western Europe;"Elsevier B.V.";"2004-2026";"Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +11797;29088;"EMJ - Engineering Management Journal";journal;"10429247";"Taylor and Francis Ltd.";No;No;0,504;Q2;50;78;115;6014;381;102;3,42;77,10;34,42;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Engineering (miscellaneous) (Q2); Organizational Behavior and Human Resource Management (Q2)";"Business, Management and Accounting; Engineering" +11798;16319;"IEEE Transactions on Nanobioscience";journal;"15361241, 15582639";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,504;Q2;82;61;239;2985;1112;237;4,94;48,93;32,56;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2002-2026";"Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Pharmaceutical Science (Q2); Bioengineering (Q3); Biomedical Engineering (Q3); Biotechnology (Q3); Medicine (miscellaneous) (Q3); Nanoscience and Nanotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Computer Science; Engineering; Materials Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11799;21100394149;"Journal of Applied Analysis and Computation";journal;"2156907X, 21585644";"Wilmington Scientific Publisher";No;No;0,504;Q2;36;185;518;6380;830;517;1,76;34,49;38,38;0;United States;Northern America;"Wilmington Scientific Publisher";"2015-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11800;16400154786;"Journal of Biophotonics";journal;"18640648, 1864063X";"John Wiley and Sons Inc";No;No;0,504;Q2;88;234;695;10007;1697;658;2,32;42,76;39,56;0;Germany;Western Europe;"John Wiley and Sons Inc";"2008-2026";"Chemistry (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Engineering; Materials Science; Physics and Astronomy" +11801;21101153205;"Journal of Optimization";journal;"23146486, 2356752X";"John Wiley and Sons Ltd";No;No;0,504;Q2;16;0;11;0;49;11;4,80;0,00;0,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2014, 2016-2019, 2021-2024";"Analysis (Q2); Control and Optimization (Q2); Decision Sciences (miscellaneous) (Q2)";"Decision Sciences; Mathematics" +11802;14508;"Journal of Pediatric Ophthalmology and Strabismus";journal;"19382405, 01913913";"Slack Incorporated";No;No;0,504;Q2;56;90;305;1527;314;243;1,08;16,97;51,18;0;United States;Northern America;"Slack Incorporated";"1978-2026";"Ophthalmology (Q2); Pediatrics, Perinatology and Child Health (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +11803;21100198447;"Journal of Topology and Analysis";journal;"17937167, 17935253";"World Scientific";No;No;0,504;Q2;22;78;123;1844;60;123;0,37;23,64;17,95;0;Singapore;Asiatic Region;"World Scientific";"2009-2026";"Analysis (Q2); Geometry and Topology (Q2)";"Mathematics" +11804;21100887523;"Marketing Education Review";journal;"10528008, 21539987";"Routledge";No;No;0,504;Q2;20;38;96;1726;246;84;2,65;45,42;46,07;0;United Kingdom;Western Europe;"Routledge";"2015, 2018-2026";"Education (Q2)";"Social Sciences" +11805;100147323;"Mathematical Modelling and Analysis";journal;"13926292, 16483510";"Vilnius Gediminas Technical University";Yes;Yes;0,504;Q2;33;31;118;807;225;118;1,90;26,03;28,38;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"1996-2026";"Analysis (Q2); Modeling and Simulation (Q2)";"Mathematics" +11806;19847;"Rangeland Journal";journal;"10369872, 18347541";"CSIRO Publishing";No;No;0,504;Q2;52;12;67;949;113;66;2,22;79,08;25,58;0;Australia;Pacific Region;"CSIRO Publishing";"1998-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11807;19200156704;"Wideochirurgia I Inne Techniki Maloinwazyjne";journal;"18954588, 22990054";"Medycyna Praktyczna Cholerzyn";Yes;No;0,504;Q2;27;61;222;2252;395;213;1,68;36,92;25,00;0;Poland;Eastern Europe;"Medycyna Praktyczna Cholerzyn";"2007-2025";"Surgery (Q2); Urology (Q2); Gastroenterology (Q3); Obstetrics and Gynecology (Q3)";"Medicine" +11808;27930;"Wuhan Daxue Xuebao (Xinxi Kexue Ban)/Geomatics and Information Science of Wuhan University";journal;"16718860";"Editorial Department of Geomatics and Information Science of Wuhan University";No;No;0,504;Q2;48;232;679;7812;1373;668;2,11;33,67;33,54;0;China;Asiatic Region;"Editorial Department of Geomatics and Information Science of Wuhan University";"1998, 2001-2026";"Computer Science (miscellaneous) (Q2); Earth-Surface Processes (Q2)";"Computer Science; Earth and Planetary Sciences" +11809;19856;"Zhongguo Dianli/Electric Power";journal;"10049649";"Zhongguo Dianli Bianjibu";Yes;No;0,504;Q2;30;236;843;6859;2059;843;2,95;29,06;33,09;0;China;Asiatic Region;"Zhongguo Dianli Bianjibu";"1998, 2001-2003, 2019-2026";"Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering" +11810;12870;"Cognitive Neuropsychiatry";journal;"14640619, 13546805";"Routledge";No;No;0,504;Q3;71;19;87;1198;123;85;1,20;63,05;38,46;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Cognitive Neuroscience (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Neuroscience" +11811;19900191908;"Innovations in Clinical Neuroscience";journal;"21588341, 21588333";"Matrix Medical Communications";Yes;No;0,504;Q3;53;36;124;1275;249;96;1,30;35,42;41,09;0;United States;Northern America;"Matrix Medical Communications";"2011-2025";"Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +11812;16147;"International Journal of Developmental Neuroscience";journal;"07365748, 1873474X";"John Wiley and Sons Inc";No;No;0,504;Q3;103;102;210;4771;427;209;1,83;46,77;52,44;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1983-2026";"Developmental Biology (Q3); Developmental Neuroscience (Q3)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +11813;29230;"International Journal of Occupational Medicine and Environmental Health";journal;"12321087, 1896494X";"Nofer Institute of Occupational Medicine";Yes;No;0,504;Q3;62;47;168;1755;338;168;1,97;37,34;52,91;0;Poland;Eastern Europe;"Nofer Institute of Occupational Medicine";"1994-2025";"Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +11814;29822;"Iowa Orthopedic Journal";journal;"15551377, 15415457";"University of Iowa";Yes;No;0,504;Q3;54;36;174;0;252;172;1,15;0,00;26,06;0;United States;Northern America;"University of Iowa";"1993-2002, 2004-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +11815;21101263949;"Interactional Linguistics";journal;"26664224, 26664232";"John Benjamins Publishing Company";No;No;0,503;Q1;7;14;24;871;33;23;1,53;62,21;65,38;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2021-2025";"Linguistics and Language (Q1)";"Social Sciences" +11816;34940;"Medical Anthropology: Cross Cultural Studies in Health and Illness";journal;"01459740, 15455882";"Taylor and Francis Ltd.";No;No;0,503;Q1;57;67;181;3473;293;166;1,24;51,84;59,26;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-1986, 1989-1994, 1996-1997, 1999-2026";"Anthropology (Q1); Health (social science) (Q2)";"Social Sciences" +11817;19600157368;"Revista de Historia Economica - Journal of Iberian and Latin American Economic History";journal;"20413335, 02126109";"Cambridge University Press";No;No;0,503;Q1;27;30;55;2361;58;52;0,94;78,70;30,91;0;United Kingdom;Western Europe;"Cambridge University Press";"1983-2026";"History (Q1); Economics and Econometrics (Q2)";"Arts and Humanities; Economics, Econometrics and Finance" +11818;5600155048;"Space and Culture";journal;"15528308, 12063312";"SAGE Publications Inc.";No;No;0,503;Q1;53;85;137;3977;288;133;1,94;46,79;59,42;0;United States;Northern America;"SAGE Publications Inc.";"1997-2026";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Geography, Planning and Development (Q2); Urban Studies (Q2); Tourism, Leisure and Hospitality Management (Q3)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +11819;21101052352;"Annals of Eye Science";journal;"25204122";"AME Publishing Company";No;No;0,503;Q2;15;37;66;1788;97;59;0,91;48,32;32,86;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2016-2025";"Ophthalmology (Q2)";"Medicine" +11820;20188;"Disaster Prevention and Management";journal;"17586100, 09653562";"Emerald Publishing";No;No;0,503;Q2;73;67;139;2854;301;129;2,01;42,60;46,51;0;United Kingdom;Western Europe;"Emerald Publishing";"1992-2026";"Business, Management and Accounting (miscellaneous) (Q2); Health (social science) (Q2); Management, Monitoring, Policy and Law (Q2); Public Health, Environmental and Occupational Health (Q3)";"Business, Management and Accounting; Environmental Science; Medicine; Social Sciences" +11821;21101298381;"Frontiers in Child and Adolescent Psychiatry";journal;"28134540";"Frontiers Media SA";Yes;No;0,503;Q2;8;70;141;3563;219;131;1,57;50,90;58,54;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Pediatrics, Perinatology and Child Health (Q2); Developmental and Educational Psychology (Q3); Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3)";"Medicine; Psychology" +11822;21100794825;"Health Psychology Open";journal;"20551029";"SAGE Publications Inc.";Yes;No;0,503;Q2;37;16;46;1007;92;46;1,70;62,94;70,51;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2014-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +11823;23446;"Journal of Applied Biomechanics";journal;"15432688, 10658483";"Human Kinetics Publishers Inc.";No;No;0,503;Q2;76;68;161;2722;258;159;1,57;40,03;39,10;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1995-2026";"Rehabilitation (Q2); Biophysics (Q3); Orthopedics and Sports Medicine (Q3); Sports Science (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +11824;21100855842;"Journal of Earth System Science";journal;"23474327, 0973774X";"Indian Academy of Sciences";Yes;No;0,503;Q2;77;242;692;14141;1568;683;2,34;58,43;25,43;5;India;Asiatic Region;"Indian Academy of Sciences";"1997, 2000-2001, 2005-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +11825;21100774786;"Journal of Financial Economic Policy";journal;"17576385, 17576393";"Emerald Group Publishing Ltd.";No;No;0,503;Q2;25;64;117;4529;388;114;3,74;70,77;26,09;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2012, 2014-2026";"Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +11826;21101275456;"Journal of Materials Science: Materials in Engineering";journal;"30048958";"Springer";Yes;No;0,503;Q2;39;149;51;8466;227;51;4,50;56,82;30,74;0;Singapore;Asiatic Region;"Springer";"2024-2026";"Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +11827;12100157240;"Journal of Public Affairs";journal;"14791854, 14723891";"Wiley-Blackwell";No;No;0,503;Q2;54;90;548;6380;1793;544;2,49;70,89;31,61;0;United States;Northern America;"Wiley-Blackwell";"2001, 2008-2026";"Political Science and International Relations (Q2); Public Administration (Q2)";"Social Sciences" +11828;17270;"Medical Dosimetry";journal;"18734022, 09583947";"Elsevier Inc.";No;No;0,503;Q2;50;64;169;1619;265;166;1,75;25,30;29,65;0;United States;Northern America;"Elsevier Inc.";"1988-2026";"Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)";"Health Professions; Medicine" +11829;14174;"Molecular Vision";journal;"10900535";"Molecular Vision";Yes;Yes;0,503;Q2;110;27;122;1129;218;122;1,75;41,81;51,97;0;United States;Northern America;"Molecular Vision";"1995-2025";"Ophthalmology (Q2)";"Medicine" +11830;19700174753;"Nano Communication Networks";journal;"18787789";"Elsevier B.V.";No;No;0,503;Q2;49;22;77;1198;326;77;4,28;54,45;36,49;0;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Applied Mathematics (Q2); Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering; Mathematics" +11831;21101338737;"Technology in Agronomy";journal;"28359445";"Maximum Academic Press";Yes;No;0,503;Q2;9;18;53;985;178;53;3,53;54,72;27,63;0;United States;Northern America;"Maximum Academic Press";"2021-2026";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +11832;4700151916;"Zootaxa";journal;"11755334, 11755326";"Magnolia Press";No;No;0,503;Q2;115;2121;5853;86791;5571;5403;0,94;40,92;28,49;4;New Zealand;Pacific Region;"Magnolia Press";"2005-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +11833;19700177321;"ecancermedicalscience";journal;"17546605";"ecancer Global Foundation";Yes;No;0,503;Q3;54;229;485;7431;813;482;1,49;32,45;45,84;0;United Kingdom;Western Europe;"ecancer Global Foundation";"2007, 2009-2026";"Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11834;23034;"Journal of Infection and Chemotherapy";journal;"14377780, 1341321X";"Elsevier B.V.";No;No;0,503;Q3;79;392;756;10397;1217;745;1,66;26,52;27,38;0;Netherlands;Western Europe;"Elsevier B.V.";"1995-2026";"Infectious Diseases (Q3); Microbiology (medical) (Q3); Pharmacology (medical) (Q3)";"Medicine" +11835;18967;"Mutation Research - Fundamental and Molecular Mechanisms of Mutagenesis";journal;"13861964, 18792871";"Elsevier B.V.";No;No;0,503;Q3;179;28;78;1536;160;78;2,15;54,86;38,60;0;Netherlands;Western Europe;"Elsevier B.V.";"1964-2026";"Genetics (Q3); Health, Toxicology and Mutagenesis (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Environmental Science" +11836;21101149929;"Therapeutic Advances in Rare Disease";journal;"26330040";"SAGE Publications Ltd";Yes;Yes;0,503;Q3;11;22;65;949;137;65;2,08;43,14;53,29;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2020-2026";"Internal Medicine (Q3)";"Medicine" +11837;21101199922;"Proceedings - IEEE Global Communications Conference, GLOBECOM";conference and proceedings;"25766813, 23340983";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,503;-;89;0;3260;0;5045;3252;1,30;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2012-2024";"Artificial Intelligence; Computer Networks and Communications; Hardware and Architecture; Signal Processing";"Computer Science" +11838;19543;"Health Care for Women International";journal;"07399332, 10964665";"Taylor and Francis Ltd.";No;No;0,502;Q1;65;120;307;4880;486;275;1,40;40,67;70,87;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2026";"Health Professions (miscellaneous) (Q1)";"Health Professions" +11839;145585;"Industrial Law Journal";journal;"03059332, 14643669";"Oxford University Press";No;No;0,502;Q1;37;35;105;4085;186;103;1,54;116,71;42,22;0;United Kingdom;Western Europe;"Oxford University Press";"1972-2025";"Law (Q1)";"Social Sciences" +11840;21101039810;"Journal of Osteopathic Medicine";journal;"27023648";"Walter de Gruyter GmbH";No;No;0,502;Q1;64;98;269;2664;367;228;1,50;27,18;50,00;1;Germany;Western Europe;"Walter de Gruyter GmbH";"2021-2026";"Complementary and Manual Therapy (Q1); Complementary and Alternative Medicine (Q2)";"Health Professions; Medicine" +11841;21101287785;"Natural Language Processing";journal;"29770424";"Cambridge University Press";No;No;0,502;Q1;70;56;137;3445;459;134;3,41;61,52;39,63;0;United Kingdom;Western Europe;"Cambridge University Press";"2025";"Linguistics and Language (Q1); Artificial Intelligence (Q2); Software (Q2)";"Computer Science; Social Sciences" +11842;21100932761;"3D Printing in Medicine";journal;"23656271";"BioMed Central Ltd";Yes;No;0,502;Q2;33;59;110;1996;374;107;3,18;33,83;33,05;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2016-2026";"Computer Science Applications (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Biomedical Engineering (Q3)";"Computer Science; Engineering; Medicine" +11843;28473;"Ageing International";journal;"1936606X, 01635158";"Springer New York";No;No;0,502;Q2;51;62;168;3222;301;168;1,68;51,97;51,69;0;United States;Northern America;"Springer New York";"1974-2006, 2008-2026";"Health (social science) (Q2)";"Social Sciences" +11844;21100810659;"Botanikai Kozlemenyek";journal;"00068144, 24159662";"Magyar Biologiai Tarsasag (Hungarian Biological Society)";No;No;0,502;Q2;7;14;32;752;22;32;0,95;53,71;31,03;0;Hungary;Eastern Europe;"Magyar Biologiai Tarsasag (Hungarian Biological Society)";"2016-2025";"Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +11845;21100843358;"Central European Forestry Journal";journal;"2454034X, 24540358";"De Gruyter Open Ltd";Yes;Yes;0,502;Q2;23;24;73;1548;136;73;2,16;64,50;29,00;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2017-2025";"Forestry (Q2)";"Agricultural and Biological Sciences" +11846;19700187631;"Community College Journal of Research and Practice";journal;"10668926, 15210413";"Routledge";No;No;0,502;Q2;42;90;206;4541;295;204;1,28;50,46;51,08;0;United States;Northern America;"Routledge";"1993-2026";"Education (Q2)";"Social Sciences" +11847;19900193208;"Issues in Accounting Education";journal;"07393172, 15587983";"American Accounting Association";No;No;0,502;Q2;36;44;121;1620;282;112;2,26;36,82;45,24;0;United States;Northern America;"American Accounting Association";"2001, 2009-2026";"Accounting (Q2); Education (Q2)";"Business, Management and Accounting; Social Sciences" +11848;23050;"Journal of Microencapsulation";journal;"02652048, 14645246";"Taylor and Francis Ltd.";No;No;0,502;Q2;95;43;141;3480;528;141;3,59;80,93;39,91;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2026";"Organic Chemistry (Q2); Pharmaceutical Science (Q2); Physical and Theoretical Chemistry (Q2); Bioengineering (Q3); Colloid and Surface Chemistry (Q3)";"Chemical Engineering; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +11849;144834;"Journal of Traditional Chinese Medicine";journal;"2589451X, 02552922";"";No;No;0,502;Q2;40;148;427;6326;1111;421;2,27;42,74;41,46;0;China;Asiatic Region;"";"1996-2026";"Complementary and Alternative Medicine (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +11850;21101266478;"New Directions for Higher Education";journal;"02710560, 15360741";"John Wiley and Sons Inc";No;No;0,502;Q2;10;26;77;951;143;69;1,91;36,58;59,68;0;United States;Northern America;"John Wiley and Sons Inc";"1975, 1986, 1994-1996, 2001, 2016-2026";"Education (Q2)";"Social Sciences" +11851;21100945249;"Plant Physiology Reports";journal;"26622548, 2662253X";"Springer";No;No;0,502;Q2;35;87;199;4121;549;196;3,14;47,37;33,72;0;India;Asiatic Region;"Springer";"2019-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2); Genetics (Q3); Physiology (Q3); Cell Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +11852;13021;"Seminars in Arthroplasty JSES";journal;"10454527, 15584437";"W.B. Saunders";No;No;0,502;Q2;18;84;362;2879;406;359;1,08;34,27;20,62;0;United States;Northern America;"W.B. Saunders";"1990-1995, 1997, 2001-2018, 2020-2026";"Surgery (Q2); Orthopedics and Sports Medicine (Q3)";"Medicine" +11853;5800179611;"Teacher Development";journal;"13664530, 17475120";"Routledge";No;No;0,502;Q2;40;102;112;5526;242;112;2,22;54,18;66,30;1;United Kingdom;Western Europe;"Routledge";"1997-2026";"Education (Q2)";"Social Sciences" +11854;27087;"American Journal of Therapeutics";journal;"10752765, 15363686";"Lippincott Williams and Wilkins";No;No;0,502;Q3;75;158;547;3121;435;131;0,98;19,75;38,92;0;United States;Northern America;"Lippincott Williams and Wilkins";"1960-1961, 1995-2026";"Medicine (miscellaneous) (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +11855;13671;"Biologicals";journal;"10958320, 10451056";"Academic Press";No;No;0,502;Q3;71;36;125;1293;272;120;2,27;35,92;43,33;2;United States;Northern America;"Academic Press";"1990-2026";"Applied Microbiology and Biotechnology (Q3); Bioengineering (Q3); Biotechnology (Q3); Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11856;15459;"BioTechniques";journal;"19409818, 07366205";"";Yes;No;0,502;Q3;152;42;218;1175;458;191;1,88;27,98;40,29;0;United Kingdom;Western Europe;"";"1984-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology" +11857;19700194012;"Journal of Renewable and Sustainable Energy";journal;"19417012";"American Institute of Physics";No;No;0,502;Q3;69;315;509;14480;1264;507;2,65;45,97;28,30;0;United States;Northern America;"American Institute of Physics";"2010-2026";"Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +11858;26579;"European Review of Latin American and Caribbean Studies";journal;"18794750, 09240608";"Centre for Latin American Research and Documentation/Centro de Estudios y Documentacion Latinoamericanos (CEDLA)";Yes;Yes;0,501;Q1;23;13;43;532;61;43;0,80;40,92;45,00;0;Netherlands;Western Europe;"Centre for Latin American Research and Documentation/Centro de Estudios y Documentacion Latinoamericanos (CEDLA)";"1996, 2001, 2012-2025";"History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +11859;21101091648;"Finance and Society";journal;"20595999";"Cambridge University Press";Yes;No;0,501;Q1;10;31;60;2517;113;57;1,90;81,19;35,94;2;United Kingdom;Western Europe;"Cambridge University Press";"2019, 2021-2026";"Arts and Humanities (miscellaneous) (Q1); History and Philosophy of Science (Q1); Finance (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +11860;21100854451;"Global Journal of Environmental Science and Management";journal;"23833866, 23833572";"";Yes;No;0,501;Q1;41;95;271;6229;854;271;3,17;65,57;44,05;0;Iran;Middle East;"";"2015-2026";"Architecture (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Engineering (Q2); Environmental Science (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Pollution (Q3); Waste Management and Disposal (Q3)";"Agricultural and Biological Sciences; Engineering; Environmental Science; Social Sciences" +11861;92738;"International Journal of Historical Archaeology";journal;"10927697, 15737748";"Springer New York";No;No;0,501;Q1;34;68;143;5481;144;140;0,89;80,60;45,45;0;United States;Northern America;"Springer New York";"1997-2026";"Archeology (arts and humanities) (Q1); Arts and Humanities (miscellaneous) (Q1); History (Q1); Geography, Planning and Development (Q2)";"Arts and Humanities; Social Sciences" +11862;17300154968;"Bioinformatics and Biology Insights";journal;"11779322";"SAGE Publications Inc.";Yes;No;0,501;Q2;37;41;180;2948;460;180;2,21;71,90;30,67;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2009-2026";"Applied Mathematics (Q2); Computational Mathematics (Q2); Computer Science Applications (Q2); Biochemistry (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics" +11863;21100976730;"Biology Methods and Protocols";journal;"23968923";"Oxford University Press";Yes;No;0,501;Q2;19;94;171;3984;356;171;2,13;42,38;42,10;0;United Kingdom;Western Europe;"Oxford University Press";"2016-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +11864;12921;"European Journal of Lipid Science and Technology";journal;"14389312, 14387697";"Wiley-VCH Verlag";No;No;0,501;Q2;120;88;230;4449;625;227;2,55;50,56;42,12;1;Germany;Western Europe;"Wiley-VCH Verlag";"2000-2026";"Chemistry (miscellaneous) (Q2); Food Science (Q2); Industrial and Manufacturing Engineering (Q2); Biotechnology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Engineering" +11865;21101201903;"GeoHazards";journal;"2624795X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,501;Q2;13;85;121;4925;303;120;2,78;57,94;29,10;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +11866;19700186866;"IET Power Electronics";journal;"17554543, 17554535";"John Wiley & Sons Inc.";Yes;No;0,501;Q2;104;185;597;6313;1653;592;2,78;34,12;23,00;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2008-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +11867;21101060201;"Maternal-Fetal Medicine";journal;"26415895, 20966954";"Wolters Kluwer Health";Yes;Yes;0,501;Q2;14;63;135;1656;189;109;1,02;26,29;60,00;0;United States;Northern America;"Wolters Kluwer Health";"2019-2026";"Pediatrics, Perinatology and Child Health (Q2); Obstetrics and Gynecology (Q3)";"Medicine" +11868;18384;"Medicinal Chemistry Research";journal;"10542523, 15548120";"Springer";No;No;0,501;Q2;69;162;507;10257;1744;495;3,69;63,31;39,73;0;United States;Northern America;"Springer";"1994, 1996-2026";"Organic Chemistry (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)";"Chemistry; Pharmacology, Toxicology and Pharmaceutics" +11869;21100256975;"Acta Naturae";journal;"20758251";"Acta Naturae";No;No;0,501;Q3;40;36;124;1754;248;124;1,54;48,72;50,31;0;Russian Federation;Eastern Europe;"Acta Naturae";"2013-2025";"Biochemistry (Q3); Biotechnology (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology" +11870;20214;"Eastern Mediterranean Health Journal";journal;"10203397";"World Health Organization";No;No;0,501;Q3;64;123;387;2549;594;290;1,36;20,72;51,94;2;Switzerland;Western Europe;"World Health Organization";"1996-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +11871;26067;"Endokrynologia Polska";journal;"22998306, 0423104X";"Via Medica";Yes;No;0,501;Q3;41;94;288;3212;539;278;1,74;34,17;56,46;1;Poland;Eastern Europe;"Via Medica";"1961-1989, 1991-1993, 2005-2025";"Endocrinology, Diabetes and Metabolism (Q3); Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11872;19700194017;"Journal of Mental Health Research in Intellectual Disabilities";journal;"19315872, 19315864";"Taylor and Francis Ltd.";No;No;0,501;Q3;35;32;58;1607;108;56;1,80;50,22;62,30;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +11873;19800188077;"British Journal of Music Education";journal;"02650517, 14692104";"Cambridge University Press";No;No;0,500;Q1;32;29;84;1258;104;78;1,41;43,38;53,06;0;United Kingdom;Western Europe;"Cambridge University Press";"1984-1998, 2007-2026";"Music (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +11874;12100156090;"British Politics";journal;"1746918X, 17469198";"Palgrave Macmillan Ltd.";No;No;0,500;Q1;37;37;84;2286;152;84;1,82;61,78;32,20;5;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2006-2026";"History (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +11875;144927;"Child Abuse Review";journal;"09529136, 10990852";"John Wiley and Sons Ltd";No;No;0,500;Q1;59;59;169;2633;292;155;1,85;44,63;63,45;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1992-2026";"Law (Q1); Pediatrics, Perinatology and Child Health (Q2); Social Work (Q3)";"Medicine; Social Sciences" +11876;21100873340;"City, Territory and Architecture";journal;"21952701";"SpringerOpen";Yes;No;0,500;Q1;25;43;97;3026;276;97;2,48;70,37;54,55;0;United Kingdom;Western Europe;"SpringerOpen";"2014-2026";"Architecture (Q1); Geography, Planning and Development (Q2); Urban Studies (Q2)";"Engineering; Social Sciences" +11877;7300153102;"International Journal of Low-Carbon Technologies";journal;"17481325, 17481317";"Oxford University Press";Yes;No;0,500;Q1;49;191;527;7128;1558;527;2,75;37,32;28,73;0;United Kingdom;Western Europe;"Oxford University Press";"2007-2026";"Architecture (Q1); Civil and Structural Engineering (Q2); Environmental Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering; Environmental Science" +11878;21101281532;"Revista de Estudios de la Administracion Local y Autonomica";journal;"19898975";"Instituto Nacional de Administracion Publica";Yes;No;0,500;Q1;6;12;67;420;45;66;0,72;35,00;21,43;0;Spain;Western Europe;"Instituto Nacional de Administracion Publica";"2021-2025";"Law (Q1)";"Social Sciences" +11879;19700187605;"South Asian Diaspora";journal;"19438184, 19438192";"Routledge";No;No;0,500;Q1;17;37;44;1860;73;43;1,69;50,27;45,65;0;United Kingdom;Western Europe;"Routledge";"2009-2026";"Anthropology (Q1); Cultural Studies (Q1); Sociology and Political Science (Q2)";"Social Sciences" +11880;21100244868;"AHURI Final Report";journal;"18347223";"Australian Housing and Urban Research Institute";No;No;0,500;Q2;19;11;58;1107;100;58;1,61;100,64;43,10;4;Australia;Pacific Region;"Australian Housing and Urban Research Institute";"2008-2026";"Development (Q2); Public Administration (Q2); Urban Studies (Q2)";"Social Sciences" +11881;14943;"Animal Biotechnology";journal;"15322378, 10495398";"Taylor and Francis Ltd.";Yes;No;0,500;Q2;44;45;814;2236;1820;814;2,13;49,69;37,28;0;United States;Northern America;"Taylor and Francis Ltd.";"1990-2026";"Animal Science and Zoology (Q2); Bioengineering (Q3); Biotechnology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +11882;17600155018;"Australian Mammalogy";journal;"18367402, 03100049";"CSIRO Publishing";No;No;0,500;Q2;34;51;147;2444;209;147;1,65;47,92;43,54;0;Australia;Pacific Region;"CSIRO Publishing";"2000-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +11883;4000149606;"Boundary Value Problems";journal;"16872770, 16872762";"SpringerOpen";Yes;No;0,500;Q2;53;196;387;7339;693;382;1,96;37,44;25,00;0;United Kingdom;Western Europe;"SpringerOpen";"2006-2026";"Algebra and Number Theory (Q2); Analysis (Q2)";"Mathematics" +11884;19900192570;"Central European Journal of Urology";journal;"20804873, 20804806";"Polish Urological Association";Yes;No;0,500;Q2;36;69;211;1927;347;195;1,56;27,93;15,20;0;Poland;Eastern Europe;"Polish Urological Association";"2009-2026";"Urology (Q2)";"Medicine" +11885;26586;"Chemical Physics Letters";journal;"00092614";"Elsevier B.V.";No;No;0,500;Q2;263;526;1879;22538;5650;1874;3,04;42,85;34,26;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Physical and Theoretical Chemistry (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Chemistry; Physics and Astronomy" +11886;21101388282;"Frontiers in Environmental Health";journal;"2813558X";"Frontiers Media SA";Yes;No;0,500;Q2;5;14;42;750;83;40;1,98;53,57;43,86;0;Switzerland;Western Europe;"Frontiers Media SA";"2023-2026";"Environmental Science (miscellaneous) (Q2); Health (social science) (Q2); Epidemiology (Q3); Public Health, Environmental and Occupational Health (Q3)";"Environmental Science; Medicine; Social Sciences" +11887;21100894553;"Gifted Child Today";journal;"10762175, 2162951X";"SAGE Publications Ltd";No;No;0,500;Q2;20;36;92;626;124;69;1,58;17,39;76,19;0;United States;Northern America;"SAGE Publications Ltd";"2015-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +11888;21101044881;"International Journal of Serious Games";journal;"23848766";"Serious Games Society";Yes;Yes;0,500;Q2;19;40;94;2140;256;79;3,11;53,50;42,37;0;Italy;Western Europe;"Serious Games Society";"2019-2026";"Applied Mathematics (Q2); Artificial Intelligence (Q2); Computer Graphics and Computer-Aided Design (Q2); Education (Q2); Software (Q2); Human-Computer Interaction (Q3)";"Computer Science; Mathematics; Social Sciences" +11889;15654;"Journal of Agricultural, Biological, and Environmental Statistics";journal;"10857117, 15372693";"Springer";No;No;0,500;Q2;61;83;149;3838;225;144;1,21;46,24;36,74;1;United States;Northern America;"Springer";"1996-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Applied Mathematics (Q2); Environmental Science (miscellaneous) (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)";"Agricultural and Biological Sciences; Decision Sciences; Environmental Science; Mathematics" +11890;16802;"Journal of Manual and Manipulative Therapy";journal;"10669817, 20426186";"Taylor and Francis Ltd.";No;No;0,500;Q2;54;87;156;3383;361;136;2,15;38,89;37,16;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions" +11891;21185;"Journal of Reinforced Plastics and Composites";journal;"07316844, 15307964";"SAGE Publications Ltd";No;No;0,500;Q2;99;326;260;16452;937;260;3,22;50,47;25,41;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1982-2026";"Ceramics and Composites (Q2); Materials Chemistry (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Polymers and Plastics (Q2)";"Engineering; Materials Science" +11892;21100855410;"Mining Technology: Transactions of the Institutions of Mining and Metallurgy";journal;"25726668, 25726676";"SAGE Publications Ltd";No;No;0,500;Q2;39;19;63;698;147;63;2,65;36,74;11,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2026";"Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +11893;15933;"Portal";journal;"15307131, 15312542";"Johns Hopkins University Press";No;No;0,500;Q2;48;52;137;1467;180;123;1,36;28,21;59,42;0;United States;Northern America;"Johns Hopkins University Press";"2001-2026";"Development (Q2); Library and Information Sciences (Q2)";"Social Sciences" +11894;4500151528;"Urban Water Journal";journal;"17449006, 1573062X";"Taylor and Francis Ltd.";No;No;0,500;Q2;64;96;324;5172;701;315;2,29;53,88;29,34;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Geography, Planning and Development (Q2); Water Science and Technology (Q2)";"Environmental Science; Social Sciences" +11895;21101287727;"Global Health and Medicine";journal;"24349194, 24349186";"";No;No;0,500;Q3;18;63;190;1718;380;140;2,27;27,27;34,53;0;Japan;Asiatic Region;"";"2021-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +11896;19085;"Sarcoidosis Vasculitis and Diffuse Lung Diseases";journal;"2532179X, 11240490";"Mattioli 1885";No;No;0,500;Q3;68;52;148;1614;218;127;1,43;31,04;51,94;0;Italy;Western Europe;"Mattioli 1885";"1996-2025";"Immunology and Allergy (Q3); Internal Medicine (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +11897;21100773741;"Journal of Policing, Intelligence and Counter Terrorism";journal;"18335330, 21595364";"Taylor and Francis Ltd.";No;No;0,499;Q1;19;35;76;1957;146;65;1,81;55,91;35,42;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2013, 2016-2026";"Law (Q1); Political Science and International Relations (Q2)";"Social Sciences" +11898;21100373631;"Stratum Plus";journal;"18573533, 16089057";"";No;No;0,499;Q1;13;118;380;5650;140;379;0,42;47,88;41,57;0;Moldova;Eastern Europe;"";"2014-2025";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +11899;4700152294;"Activities, Adaptation and Aging";journal;"01924788, 15444368";"Routledge";No;No;0,499;Q2;32;50;98;2864;235;88;2,11;57,28;71,22;0;United States;Northern America;"Routledge";"1981-1999, 2001-2026";"Health Professions (miscellaneous) (Q2); Geriatrics and Gerontology (Q3); Gerontology (Q3)";"Health Professions; Medicine; Nursing" +11900;21101189039;"Artificial Intelligence Surgery";journal;"27710408";"OAE Publishing Inc.";No;No;0,499;Q2;8;44;59;2012;158;46;2,68;45,73;28,76;0;United States;Northern America;"OAE Publishing Inc.";"2023-2025";"Artificial Intelligence (Q2); Surgery (Q2); Biomedical Engineering (Q3)";"Computer Science; Engineering; Medicine" +11901;13600154724;"Biomicrofluidics";journal;"19321058";"American Institute of Physics";No;No;0,499;Q2;86;44;234;4017;692;231;2,73;91,30;34,97;0;United States;Northern America;"American Institute of Physics";"2007-2026";"Condensed Matter Physics (Q2); Fluid Flow and Transfer Processes (Q2); Materials Science (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2); Biomedical Engineering (Q3); Colloid and Surface Chemistry (Q3); Genetics (Q3); Molecular Biology (Q3); Nanoscience and Nanotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Engineering; Materials Science; Physics and Astronomy" +11902;21100215164;"Dermatology Research and Practice";journal;"16876113, 16876105";"John Wiley and Sons Ltd";Yes;No;0,499;Q2;42;21;52;840;112;52;1,94;40,00;46,53;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Dermatology (Q2)";"Medicine" +11903;24907;"Distributed Computing";journal;"01782770, 14320452";"Springer Verlag";No;No;0,499;Q2;54;19;67;901;119;63;2,20;47,42;25,45;0;Germany;Western Europe;"Springer Verlag";"1986-2026";"Computational Theory and Mathematics (Q2); Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +11904;21449;"Ecology of Freshwater Fish";journal;"16000633, 09066691";"Blackwell Munksgaard";No;No;0,499;Q2;70;51;184;3477;341;180;1,77;68,18;33,49;0;Denmark;Western Europe;"Blackwell Munksgaard";"1992-2026";"Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11905;144975;"Family Journal";journal;"10664807, 15523950";"SAGE Publications Inc.";No;No;0,499;Q2;48;176;301;8390;485;294;1,37;47,67;67,34;0;United States;Northern America;"SAGE Publications Inc.";"1993-2026";"Social Sciences (miscellaneous) (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +11906;18544;"Folia Geobotanica";journal;"18749348, 12119520";"Springer Nature";No;No;0,499;Q2;55;17;49;1298;83;48;1,48;76,35;40,32;0;Netherlands;Western Europe;"Springer Nature";"1994-2025";"Paleontology (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +11907;4700152292;"Glasnik Matematicki";journal;"0017095X";"Croatian Mathematical Society";No;No;0,499;Q2;21;19;62;412;38;62;0,45;21,68;48,65;0;Croatia;Eastern Europe;"Croatian Mathematical Society";"2006-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11908;20841;"Health and Human Rights";journal;"10790969, 21504113";"Harvard School of Public Health";Yes;No;0,499;Q2;49;59;119;494;226;85;1,48;8,37;66,98;0;United States;Northern America;"Harvard School of Public Health";"1994-2001, 2003-2004, 2006, 2008-2025";"Health (social science) (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +11909;12302;"JOM";journal;"15431851, 10474838";"Minerals, Metals and Materials Society";No;No;0,499;Q2;153;919;1693;37966;4620;1576;2,56;41,31;29,50;0;United States;Northern America;"Minerals, Metals and Materials Society";"1956, 1968, 1974, 1979-2026";"Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +11910;21101185426;"Journal of Applied Organometallic Chemistry";journal;"27831272, 27833623";"Sami Publishing Company";No;No;0,499;Q2;20;30;74;1861;340;74;5,45;62,03;39,80;0;France;Western Europe;"Sami Publishing Company";"2021-2025";"Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Organic Chemistry (Q2); Catalysis (Q3)";"Chemical Engineering; Chemistry; Materials Science" +11911;58655;"Journal of Systems Engineering and Electronics";journal;"16711793";"Beijing Institute of Aerospace Information";No;No;0,499;Q2;51;0;377;0;1032;375;2,74;0,00;0,00;0;China;Asiatic Region;"Beijing Institute of Aerospace Information";"1992-2024";"Computer Science Applications (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +11912;21100217620;"Quality Assurance and Safety of Crops and Foods";journal;"17578361, 1757837X";"Codon Publications";No;No;0,499;Q2;36;57;172;3836;866;172;5,61;67,30;46,15;0;Singapore;Asiatic Region;"Codon Publications";"2009-2025";"Agronomy and Crop Science (Q2); Food Science (Q2)";"Agricultural and Biological Sciences" +11913;21101323222;"Smart Construction";journal;"29602033, 29602025";"ELSP";No;No;0,499;Q2;4;31;15;1526;44;14;2,93;49,23;38,71;0;Hong Kong;Asiatic Region;"ELSP";"2024-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Control and Systems Engineering (Q2)";"Engineering" +11914;21100422153;"SoftwareX";journal;"23527110";"Elsevier B.V.";Yes;No;0,499;Q2;59;451;834;12224;2161;834;2,23;27,10;21,11;1;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Computer Science Applications (Q2); Software (Q2)";"Computer Science" +11915;13000154710;"Tropical Plant Pathology";journal;"19825676, 19832052";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,499;Q2;41;89;223;4150;524;221;2,17;46,63;38,46;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2008-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +11916;21100286934;"Vietnam Journal of Mathematics";journal;"2305221X, 23052228";"Springer Science + Business Media";No;No;0,499;Q2;23;91;175;2592;166;171;0,91;28,48;24,86;0;United States;Northern America;"Springer Science + Business Media";"2013-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11917;12517;"Wave Motion";journal;"01652125";"Elsevier B.V.";No;No;0,499;Q2;75;154;333;6536;809;332;2,50;42,44;23,77;2;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Applied Mathematics (Q2); Computational Mathematics (Q2); Modeling and Simulation (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Mathematics; Physics and Astronomy" +11918;21100793213;"Current Pharmacology Reports";journal;"2198641X";"Springer Science and Business Media Deutschland GmbH";No;No;0,499;Q3;43;57;109;5669;321;109;2,14;99,46;45,66;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2015-2026";"Biochemistry (Q3); Drug Discovery (Q3); Genetics (Q3); Pharmacology (Q3)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +11919;21101296127;"Frontiers in Developmental Psychology";journal;"28137779";"Frontiers Media SA";Yes;No;0,499;Q3;6;43;69;2912;121;66;1,75;67,72;69,01;0;Switzerland;Western Europe;"Frontiers Media SA";"2023-2026";"Developmental and Educational Psychology (Q3); Experimental and Cognitive Psychology (Q3); Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3)";"Medicine; Psychology" +11920;21100317204;"Gynecology and Minimally Invasive Therapy";journal;"22133089, 22133070";"Wolters Kluwer Medknow Publications";Yes;Yes;0,499;Q3;25;65;160;1440;270;139;1,85;22,15;45,45;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2012-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +11921;22980;"Journal of Basic and Clinical Physiology and Pharmacology";journal;"21910286, 07926855";"Walter de Gruyter GmbH";No;No;0,499;Q3;49;46;230;2217;480;210;2,28;48,20;46,15;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1985-1988, 1990-2026";"Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Physiology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11922;19700201505;"Journal of Bronchology and Interventional Pulmonology";journal;"19446586, 19488270";"Lippincott Williams and Wilkins";No;No;0,499;Q3;47;34;223;817;327;142;1,49;24,03;30,00;0;United States;Northern America;"Lippincott Williams and Wilkins";"2009-2026";"Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +11923;25433;"Monist";journal;"00269662, 21533601";"Oxford University Press";No;No;0,498;Q1;40;35;98;1480;139;98;0,97;42,29;38,89;0;United Kingdom;Western Europe;"Oxford University Press";"1919-1920, 1963, 1966, 1968-1969, 1973-1974, 1976-1981, 1984, 1986-1987, 1990-1991, 1993-1996, 2001-2008, 2012-2026";"Philosophy (Q1)";"Arts and Humanities" +11924;21101326198;"Pro Jure Revista de Derecho";journal;"28107659";"Pontificia Universidad Catolica de Valparaiso";No;No;0,498;Q1;4;35;34;1979;16;30;0,42;56,54;32,50;0;Chile;Latin America;"Pontificia Universidad Catolica de Valparaiso";"2024-2025";"Law (Q1); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +11925;5700163885;"Southeast European and Black Sea Studies";journal;"17439639, 14683857";"Routledge";No;No;0,498;Q1;34;82;147;5759;292;145;2,10;70,23;46,22;3;United Kingdom;Western Europe;"Routledge";"2008-2026";"History (Q1); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +11926;12493;"Acta Oecologica";journal;"1146609X";"Elsevier B.V.";No;No;0,498;Q2;88;71;158;5036;292;158;1,82;70,93;32,34;0;Netherlands;Western Europe;"Elsevier B.V.";"1983, 1990-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +11927;28794;"Cancer Biotherapy and Radiopharmaceuticals";journal;"10849785, 15578852";"Mary Ann Liebert Inc.";No;No;0,498;Q2;74;110;259;5419;546;254;1,94;49,26;41,97;0;United States;Northern America;"Mary Ann Liebert Inc.";"1996-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Medicine (miscellaneous) (Q3); Oncology (Q3); Pharmacology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11928;19600166325;"Cardiovascular Engineering and Technology";journal;"1869408X, 18694098";"Springer";No;No;0,498;Q2;43;54;196;2044;516;195;2,56;37,85;31,00;0;United States;Northern America;"Springer";"2010-2026";"Cardiology and Cardiovascular Medicine (Q2); Biomedical Engineering (Q3)";"Engineering; Medicine" +11929;20000195083;"Clinical, Cosmetic and Investigational Dentistry";journal;"11791357";"Dove Medical Press Ltd";Yes;No;0,498;Q2;37;60;122;2275;278;115;1,97;37,92;48,86;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +11930;5600157643;"Collectanea Mathematica";journal;"20384815, 00100757";"";No;No;0,498;Q2;25;69;106;1753;81;106;0,71;25,41;25,68;0;Italy;Western Europe;"";"2006-2026";"Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics" +11931;29268;"Community Development Journal";journal;"00103802, 14682656";"Oxford University Press";No;No;0,498;Q2;56;44;116;1650;224;107;1,68;37,50;53,41;3;United Kingdom;Western Europe;"Oxford University Press";"1966-2025";"Development (Q2)";"Social Sciences" +11932;21101023217;"Gifted Education International";journal;"20479077, 02614294";"SAGE Publications Ltd";No;No;0,498;Q2;23;36;80;2578;163;76;2,04;71,61;49,15;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1982-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +11933;19700187304;"Indian Journal of Anaesthesia";journal;"09762817, 00195049";"Wolters Kluwer Medknow Publications";Yes;Yes;0,498;Q2;54;225;836;4431;968;458;1,28;19,69;41,08;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2010-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +11934;19513;"International Journal of Network Management";journal;"10557148, 10991190";"John Wiley and Sons Ltd";No;No;0,498;Q2;35;63;102;2740;320;94;3,46;43,49;24,86;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1991-2026";"Computer Networks and Communications (Q2); Computer Science Applications (Q2)";"Computer Science" +11935;19700200878;"Iranian Endodontic Journal";journal;"20082746, 17357497";"Iranian Centre for Endodontic Research";Yes;No;0,498;Q2;37;50;124;1718;239;119;2,16;34,36;44,53;0;Iran;Middle East;"Iranian Centre for Endodontic Research";"2010-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +11936;24621;"Journal of Molecular Graphics and Modelling";journal;"10933263, 18734243";"Elsevier Inc.";No;No;0,498;Q2;90;217;651;13011;2106;651;3,43;59,96;33,90;0;United States;Northern America;"Elsevier Inc.";"1997-2026";"Computer Graphics and Computer-Aided Design (Q2); Materials Chemistry (Q2); Physical and Theoretical Chemistry (Q2); Spectroscopy (Q2)";"Chemistry; Computer Science; Materials Science" +11937;29285;"Journal of Vocational Rehabilitation";journal;"10522263, 18786316";"SAGE Publications Ltd";No;No;0,498;Q2;50;52;175;2192;280;169;1,41;42,15;64,63;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991-2026";"Occupational Therapy (Q2); Rehabilitation (Q2)";"Health Professions; Medicine" +11938;130044;"Pharmacogenetics and Genomics";journal;"17446880, 17446872";"Lippincott Williams and Wilkins";No;No;0,498;Q2;158;34;103;928;192;99;1,90;27,29;56,36;0;United States;Northern America;"Lippincott Williams and Wilkins";"2005-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Genetics (Q3); Genetics (clinical) (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +11939;21100908414;"Proceedings of the ACM on Human-Computer Interaction";journal;"25730142";"Association for Computing Machinery";No;No;0,498;Q2;95;695;1602;66171;9698;1586;5,83;95,21;43,72;5;United States;Northern America;"Association for Computing Machinery";"2017-2025";"Computer Networks and Communications (Q2); Social Sciences (miscellaneous) (Q2); Human-Computer Interaction (Q3)";"Computer Science; Social Sciences" +11940;21100220340;"Revista de Investigacion Educativa";journal;"02124068, 19899106";"Universidad de Murcia";Yes;Yes;0,498;Q2;31;44;98;2000;217;95;1,99;45,45;58,20;0;Spain;Western Europe;"Universidad de Murcia";"2012-2025";"Education (Q2)";"Social Sciences" +11941;21100915696;"State and Local Government Review";journal;"19433409, 0160323X";"SAGE Publications Inc.";No;No;0,498;Q2;14;33;73;1445;114;69;1,28;43,79;39,13;0;United States;Northern America;"SAGE Publications Inc.";"2012, 2018-2026";"Political Science and International Relations (Q2); Public Administration (Q2)";"Social Sciences" +11942;17159;"Textile Research Journal";journal;"00405175, 17467748";"SAGE Publications Ltd";No;No;0,498;Q2;109;335;981;15074;2724;979;2,85;45,00;42,52;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1931-2026";"Chemical Engineering (miscellaneous) (Q2); Polymers and Plastics (Q2)";"Chemical Engineering; Materials Science" +11943;12480;"Work";journal;"18759270, 10519815";"SAGE Publications Ltd";No;No;0,498;Q2;74;414;1205;19188;2258;1155;1,64;46,35;50,14;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1990-2026";"Rehabilitation (Q2); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +11944;40173;"Asian Pacific Journal of Cancer Prevention";journal;"15137368, 2476762X";"Asian Pacific Organization for Cancer Prevention";Yes;No;0,498;Q3;104;534;1542;14511;3179;1508;1,93;27,17;48,19;0;Thailand;Asiatic Region;"Asian Pacific Organization for Cancer Prevention";"2000-2026";"Epidemiology (Q3); Oncology (Q3); Public Health, Environmental and Occupational Health (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11945;15970;"Journal of Medicinal Food";journal;"15577600, 1096620X";"Mary Ann Liebert Inc.";No;No;0,498;Q3;113;131;346;5832;805;342;2,11;44,52;51,39;0;United States;Northern America;"Mary Ann Liebert Inc.";"1998-2026";"Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +11946;5000158107;"Asian Journal of Criminology";journal;"1871014X, 18710131";"Springer Netherlands";No;No;0,497;Q1;27;20;81;1331;141;79;1,81;66,55;46,34;0;Netherlands;Western Europe;"Springer Netherlands";"2006-2026";"Law (Q1)";"Social Sciences" +11947;4000151708;"China Review";journal;"16802012";"Chinese University of Hong Kong Press";No;No;0,497;Q1;30;25;121;1859;213;121;1,51;74,36;41,46;0;China;Asiatic Region;"Chinese University of Hong Kong Press";"2005-2025";"Cultural Studies (Q1)";"Social Sciences" +11948;5600155969;"Civil Wars";journal;"13698249, 1743968X";"Routledge";No;No;0,497;Q1;30;41;98;2827;124;81;1,26;68,95;59,65;3;United States;Northern America;"Routledge";"2001-2002, 2010-2026";"History (Q1); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +11949;5800154205;"International Journal of Comparative and Applied Criminal Justice";journal;"21576475, 01924036";"Routledge";No;No;0,497;Q1;26;38;71;2899;154;66;2,35;76,29;36,17;1;United States;Northern America;"Routledge";"1977-1995, 2009, 2014-2026";"Law (Q1); Sociology and Political Science (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +11950;21100913570;"Biosurface and Biotribology";journal;"24054518";"John Wiley and Sons Inc";Yes;No;0,497;Q2;13;20;60;954;174;60;1,73;47,70;25,00;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2019-2026";"Mechanical Engineering (Q2); Surfaces, Coatings and Films (Q2); Biomaterials (Q3); Biomedical Engineering (Q3); Biophysics (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +11951;28675;"Brazilian Journal of Medical and Biological Research";journal;"0100879X, 1414431X";"Associacao Brasileira de Divulgacao Cientifica";Yes;No;0,497;Q2;105;116;337;4393;690;336;1,94;37,87;47,14;0;Brazil;Latin America;"Associacao Brasileira de Divulgacao Cientifica";"1973-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Biochemistry (Q3); Biophysics (Q3); Immunology (Q3); Medicine (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q3); Physiology (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +11952;21100316020;"Crystals";journal;"20734352";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,497;Q2;88;1059;4627;53270;13615;4542;2,97;50,30;31,81;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Chemical Engineering (miscellaneous) (Q2); Condensed Matter Physics (Q2); Inorganic Chemistry (Q2); Materials Science (miscellaneous) (Q2)";"Chemical Engineering; Chemistry; Materials Science; Physics and Astronomy" +11953;21101140341;"CSIAM Transactions on Applied Mathematics";journal;"27080560, 27080579";"Global Science Press";No;No;0,497;Q2;15;28;84;1446;94;84;1,07;51,64;25,00;0;Hong Kong;Asiatic Region;"Global Science Press";"2020-2025";"Applied Mathematics (Q2)";"Mathematics" +11954;21101202109;"DEN Open";journal;"26924609";"Blackwell Publishing Asia";Yes;No;0,497;Q2;13;164;342;3498;505;338;1,53;21,33;15,85;1;United States;Northern America;"Blackwell Publishing Asia";"2021-2026";"Surgery (Q2); Gastroenterology (Q3); Internal Medicine (Q3)";"Medicine" +11955;19793;"Entomologia Experimentalis et Applicata";journal;"15707458, 00138703";"Wiley-Blackwell Publishing Ltd";No;No;0,497;Q2;102;128;350;7168;651;312;1,87;56,00;39,28;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1958-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +11956;15300154801;"Eurasip Journal on Advances in Signal Processing";journal;"16876172, 16876180";"Springer Publishing Company";Yes;No;0,497;Q2;106;64;348;2391;949;347;2,73;37,36;22,67;0;United States;Northern America;"Springer Publishing Company";"2002, 2007-2026";"Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Signal Processing (Q2)";"Computer Science; Engineering" +11957;25853;"European Journal of Organic Chemistry";journal;"10990690, 1434193X";"Wiley-VCH Verlag";No;No;0,497;Q2;183;691;2050;42692;5092;2030;2,59;61,78;32,53;0;Germany;Western Europe;"Wiley-VCH Verlag";"1998-2026";"Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry" +11958;21100448080;"Interest Groups and Advocacy";journal;"20477414, 20477422";"Palgrave Macmillan Ltd.";Yes;No;0,497;Q2;25;22;73;1280;112;71;1,41;58,18;43,18;1;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2014-2026";"Sociology and Political Science (Q2)";"Social Sciences" +11959;12600154765;"Japanese Journal of Political Science";journal;"14681099, 14740060";"Cambridge University Press";Yes;No;0,497;Q2;28;18;63;1392;112;63;1,93;77,33;33,33;0;United Kingdom;Western Europe;"Cambridge University Press";"2000-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +11960;21101309512;"Journal of College Student Mental Health";journal;"28367138, 28367146";"Routledge";No;No;0,497;Q2;36;40;147;2276;258;142;1,77;56,90;63,16;0;United Kingdom;Western Europe;"Routledge";"2024-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +11961;26621;"Journal of Electronic Packaging";journal;"15289044, 10437398";"American Society of Mechanical Engineers (ASME)";No;No;0,497;Q2;68;34;175;1049;519;171;2,30;30,85;17,65;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1989-2026";"Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Mechanics of Materials (Q2)";"Computer Science; Engineering; Materials Science" +11962;21100818914;"Journal of Landscape Ecology (Czech Republic)";journal;"18054196, 18032427";"Sciendo";Yes;Yes;0,497;Q2;21;37;60;1942;152;60;2,08;52,49;30,86;0;Poland;Eastern Europe;"Sciendo";"2013-2026";"Ecology (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)";"Environmental Science" +11963;21100847475;"Journal of Metals, Materials and Minerals";journal;"26300508, 08576149";"Chulalongkorn University Department of Biology";No;No;0,497;Q2;19;88;206;3795;555;206;3,01;43,13;43,80;0;Thailand;Asiatic Region;"Chulalongkorn University Department of Biology";"2017-2025";"Ceramics and Composites (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2); Polymers and Plastics (Q2); Biomaterials (Q3)";"Engineering; Materials Science" +11964;19700181203;"KONA Powder and Particle Journal";journal;"02884534, 21875537";"Hosokawa Powder Technology Foundation";Yes;Yes;0,497;Q2;51;20;54;1587;183;51;3,46;79,35;28,57;0;Japan;Asiatic Region;"Hosokawa Powder Technology Foundation";"1983-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Chemical Engineering; Chemistry; Engineering; Materials Science" +11965;21100830702;"Mathematics";journal;"22277390";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,497;Q2;99;4026;13831;163753;38803;13737;2,78;40,67;29,41;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2)";"Computer Science; Engineering; Mathematics" +11966;28055;"Australian Journal of Primary Health";journal;"18367399, 14487527";"CSIRO Publishing";No;No;0,497;Q3;42;64;232;1902;316;229;1,31;29,72;67,66;0;Australia;Pacific Region;"CSIRO Publishing";"2001-2026";"Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +11967;13414;"Contemporary Family Therapy";journal;"08922764, 15733335";"Kluwer Academic/Human Sciences Press Inc.";No;No;0,496;Q1;46;58;116;3775;230;115;1,30;65,09;58,24;0;United States;Northern America;"Kluwer Academic/Human Sciences Press Inc.";"1986-2026";"Cultural Studies (Q1); Clinical Psychology (Q2); Social Sciences (miscellaneous) (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +11968;145137;"Critical Criminology";journal;"15729877, 12058629";"Springer Netherlands";No;No;0,496;Q1;46;57;184;2939;293;171;1,46;51,56;30,56;1;Netherlands;Western Europe;"Springer Netherlands";"1996-1997, 2000-2026";"Law (Q1); Sociology and Political Science (Q2)";"Social Sciences" +11969;15651;"Journal of Material Culture";journal;"13591835, 14603586";"SAGE Publications Ltd";No;No;0,496;Q1;64;28;77;1805;107;76;1,36;64,46;62,79;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2026";"Anthropology (Q1); Archeology (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Social Sciences" +11970;21101189035;"Journal of Yeungnam Medical Science";journal;"27998010";"Yeungnam University School of Medicine and College of Medicine";Yes;Yes;0,496;Q1;14;77;193;2552;387;171;2,15;33,14;35,91;0;South Korea;Asiatic Region;"Yeungnam University School of Medicine and College of Medicine";"2022-2026";"Multidisciplinary (Q1)";"Multidisciplinary" +11971;12100156063;"Vigo International Journal of Applied Linguistics";journal;"16970381";"Universidade de Vigo, Faculty of Science";No;No;0,496;Q1;16;6;19;373;39;19;2,17;62,17;41,67;0;Spain;Western Europe;"Universidade de Vigo, Faculty of Science";"2009-2026";"Linguistics and Language (Q1)";"Social Sciences" +11972;21100797723;"World Competition";journal;"18758436, 10114548";"Kluwer Law International";No;No;0,496;Q1;9;24;69;1098;42;57;0,46;45,75;30,30;0;Netherlands;Western Europe;"Kluwer Law International";"2016-2025";"Law (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +11973;20701;"Acta Cardiologica Sinica";journal;"10116842";"Republic of China Society of Cardiology";No;No;0,496;Q2;32;89;281;2430;422;171;1,55;27,30;33,52;0;Taiwan;Asiatic Region;"Republic of China Society of Cardiology";"1988-2026";"Cardiology and Cardiovascular Medicine (Q2)";"Medicine" +11974;93599;"Arid Land Research and Management";journal;"15324990, 15324982";"Taylor and Francis Ltd.";No;No;0,496;Q2;48;36;87;2262;236;83;2,67;62,83;32,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Soil Science (Q2)";"Agricultural and Biological Sciences" +11975;85637;"Cereal Research Communications";journal;"17889170, 01333720";"Springer Nature";No;No;0,496;Q2;46;225;354;14970;941;353;2,85;66,53;39,66;0;Switzerland;Western Europe;"Springer Nature";"1993-2026";"Agronomy and Crop Science (Q2); Genetics (Q3); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +11976;16900154707;"Crop and Pasture Science";journal;"18365795, 18360947";"CSIRO Publishing";No;No;0,496;Q2;106;65;293;4636;713;286;2,29;71,32;34,23;0;Australia;Pacific Region;"CSIRO Publishing";"2009-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +11977;38533;"Eurasian Soil Science";journal;"10642293, 1556195X";"";No;No;0,496;Q2;49;212;551;11788;1037;551;1,75;55,60;44,91;0;Russian Federation;Eastern Europe;"";"1992-2026";"Earth-Surface Processes (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +11978;26443;"European Journal of Applied Mathematics";journal;"14694425, 09567925";"Cambridge University Press";Yes;No;0,496;Q2;56;63;135;2731;174;133;1,27;43,35;24,48;0;United Kingdom;Western Europe;"Cambridge University Press";"1990-2026";"Applied Mathematics (Q2)";"Mathematics" +11979;21100241765;"International Journal of Analytical Chemistry";journal;"16878760, 16878779";"John Wiley and Sons Ltd";Yes;No;0,496;Q2;39;28;162;920;512;162;3,24;32,86;36,84;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011, 2013-2026";"Analytical Chemistry (Q2)";"Chemistry" +11980;5700163096;"International Negotiation";journal;"1382340X, 15718069";"Brill Academic Publishers";No;No;0,496;Q2;27;35;49;2300;73;49;1,21;65,71;43,86;2;Netherlands;Western Europe;"Brill Academic Publishers";"1999, 2002, 2007-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +11981;21101218132;"Journal of Capital Markets Studies";journal;"25144774";"Emerald Publishing";Yes;Yes;0,496;Q2;13;11;43;636;146;37;4,48;57,82;56,25;0;United Kingdom;Western Europe;"Emerald Publishing";"2017-2025";"Economics and Econometrics (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +11982;21100843696;"Journal of Groundwater Science and Engineering";journal;"23057068";"Groundwater Science and Engineering Limited";Yes;Yes;0,496;Q2;15;23;98;1111;191;98;2,05;48,30;33,02;0;China;Asiatic Region;"Groundwater Science and Engineering Limited";"2017-2025";"Economic Geology (Q2); Geology (Q2); Water Science and Technology (Q2)";"Earth and Planetary Sciences; Environmental Science" +11983;12984;"Machine Vision and Applications";journal;"14321769, 09328092";"Springer Verlag";No;No;0,496;Q2;84;138;360;7107;1014;357;2,33;51,50;26,40;0;Germany;Western Europe;"Springer Verlag";"1988-2026";"Computer Science Applications (Q2); Computer Vision and Pattern Recognition (Q2); Hardware and Architecture (Q2); Software (Q2)";"Computer Science" +11984;83956;"NAD Nordic Studies on Alcohol and Drugs";journal;"14586126, 14550725";"SAGE Publications Inc.";Yes;Yes;0,496;Q2;26;42;135;1677;255;114;1,87;39,93;57,98;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1989-1992, 2009-2026";"Health (social science) (Q2); Health Policy (Q3)";"Medicine; Social Sciences" +11985;21100244860;"Opuscula Philolichenum";journal;"19417527, 19417519";"New York Botanical Garden";No;No;0,496;Q2;15;3;12;199;15;12;1,43;66,33;0,00;0;United States;Northern America;"New York Botanical Garden";"2013-2025";"Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +11986;21101203736;"Photochem";journal;"26737256";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,496;Q2;19;39;122;2845;314;118;2,85;72,95;44,17;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Chemistry (miscellaneous) (Q2)";"Chemistry" +11987;16579;"Plant Breeding";journal;"14390523, 01799541";"Wiley-Blackwell Publishing Ltd";No;No;0,496;Q2;90;113;222;7472;482;221;2,05;66,12;34,67;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1964, 1986-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +11988;21100858269;"Plastic Surgery";journal;"22925511, 22925503";"SAGE Publications Inc.";No;No;0,496;Q2;36;146;241;3517;268;189;1,02;24,09;43,35;1;United States;Northern America;"SAGE Publications Inc.";"1995-1996, 2014, 2017-2026";"Surgery (Q2)";"Medicine" +11989;17700156405;"Polish Journal of Food and Nutrition Sciences";journal;"20836007, 12300322";"Polish Academy Sciences. Institute of Animal Reproduction and Food Research";Yes;No;0,496;Q2;47;34;107;1765;309;107;2,61;51,91;57,86;0;Poland;Eastern Europe;"Polish Academy Sciences. Institute of Animal Reproduction and Food Research";"2009-2025";"Food Science (Q2); Nutrition and Dietetics (Q3)";"Agricultural and Biological Sciences; Nursing" +11990;25960;"Proceedings of the Edinburgh Mathematical Society";journal;"14643839, 00130915";"Cambridge University Press";No;No;0,496;Q2;39;77;172;2094;135;172;0,85;27,19;24,16;0;United Kingdom;Western Europe;"Cambridge University Press";"1883-1898, 1900-1907, 1909-1925, 1927-1942, 1945-1950, 1953-1954, 1956-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +11991;14232;"Propellants, Explosives, Pyrotechnics";journal;"15214087, 07213115";"Wiley-VCH Verlag";No;No;0,496;Q2;86;171;491;6595;1231;475;2,44;38,57;26,50;0;Germany;Western Europe;"Wiley-VCH Verlag";"1976-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)";"Chemical Engineering; Chemistry" +11992;21100202933;"Teaching Statistics";journal;"14679639, 0141982X";"Wiley-Blackwell";No;No;0,496;Q2;21;39;67;993;105;59;1,57;25,46;43,90;0;United States;Northern America;"Wiley-Blackwell";"1979-2026";"Education (Q2); Statistics and Probability (Q2)";"Mathematics; Social Sciences" +11993;14877;"European Biophysics Journal";journal;"14321017, 01757571";"Springer Science and Business Media Deutschland GmbH";No;No;0,496;Q3;93;74;149;4068;296;145;1,89;54,97;36,54;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1984-2026";"Biophysics (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11994;21100375269;"International Journal of Managerial and Financial Accounting";journal;"17536715, 17536723";"Inderscience";No;No;0,496;Q3;21;24;60;1598;184;60;2,71;66,58;33,33;0;Switzerland;Western Europe;"Inderscience";"2002, 2008-2026";"Accounting (Q3)";"Business, Management and Accounting" +11995;21101044940;"Minerva Endocrinology";journal;"27246116, 27246507";"Edizioni Minerva Medica";No;No;0,496;Q3;45;55;171;1949;278;134;1,85;35,44;50,31;0;Italy;Western Europe;"Edizioni Minerva Medica";"2021-2025";"Endocrinology, Diabetes and Metabolism (Q3); Internal Medicine (Q3); Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +11996;17280;"IEEE MTT-S International Microwave Symposium Digest";conference and proceedings;"0149645X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,496;-;84;278;847;3668;1263;840;1,58;13,19;19,73;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1976, 1980-1985, 1987-2014, 2016-2025";"Condensed Matter Physics; Electrical and Electronic Engineering; Radiation";"Engineering; Physics and Astronomy" +11997;21101200922;"Proceedings of the International Symposium on Modeling and Optimization in Mobile, Ad Hoc, and Wireless Networks, WiOpt";conference and proceedings;"26903342, 26903334";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,496;-;8;62;141;1457;196;139;1,39;23,50;28,05;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2023-2025";"Computer Networks and Communications; Control and Optimization; Information Systems and Management; Modeling and Simulation";"Computer Science; Decision Sciences; Mathematics" +11998;21101092536;"Chaos Theory and Applications";journal;"26874539";"";Yes;No;0,495;Q1;16;20;95;803;249;95;2,81;40,15;20,00;0;Turkey;Middle East;"";"2019-2025";"Multidisciplinary (Q1); Electrical and Electronic Engineering (Q2); Engineering (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2); Mechanical Engineering (Q2); Biomedical Engineering (Q3)";"Engineering; Mathematics; Multidisciplinary" +11999;21101107941;"Palliative Medicine Reports";journal;"26892820";"Mary Ann Liebert Inc.";Yes;No;0,495;Q1;12;64;171;1906;256;164;1,35;29,78;59,04;0;United States;Northern America;"Mary Ann Liebert Inc.";"2020-2025";"Advanced and Specialized Nursing (Q1); Anesthesiology and Pain Medicine (Q2); Health (social science) (Q2)";"Medicine; Nursing; Social Sciences" +12000;21101373147;"Agrobiological Records";journal;"27087182, 27087190";"Unique Scientific Publishers";No;No;0,495;Q2;13;58;93;3822;480;93;5,16;65,90;39,53;0;Pakistan;Asiatic Region;"Unique Scientific Publishers";"2023-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +12001;21101089335;"Chemistry (Switzerland)";journal;"26248549";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,495;Q2;25;203;392;13828;1249;385;2,67;68,12;36,47;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2026";"Chemistry (miscellaneous) (Q2); Inorganic Chemistry (Q2); Organic Chemistry (Q2); Electrochemistry (Q3)";"Chemistry" +12002;21062;"Current Problems in Surgery";journal;"15356337, 00113840";"Elsevier Inc.";Yes;No;0,495;Q2;53;235;178;8221;351;125;2,00;34,98;36,24;1;United States;Northern America;"Elsevier Inc.";"1964-2026";"Surgery (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +12003;23189;"Food Science and Technology International";journal;"15321738, 10820132";"SAGE Publications Inc.";No;No;0,495;Q2;79;110;220;5265;637;220;2,52;47,86;52,31;0;United States;Northern America;"SAGE Publications Inc.";"1995-2026";"Chemical Engineering (miscellaneous) (Q2); Food Science (Q2); Industrial and Manufacturing Engineering (Q2)";"Agricultural and Biological Sciences; Chemical Engineering; Engineering" +12004;21101188408;"Frontiers in Research Metrics and Analytics";journal;"25040537";"Frontiers Media SA";Yes;No;0,495;Q2;29;54;216;2317;513;198;2,80;42,91;40,85;1;Switzerland;Western Europe;"Frontiers Media SA";"2016-2026";"Library and Information Sciences (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +12005;26541;"Fuel Cells";journal;"16156846, 16156854";"John Wiley and Sons Ltd";No;No;0,495;Q2;85;52;104;2587;307;99;2,84;49,75;27,80;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2003-2026";"Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +12006;21101209809;"Interactions";journal;"30050731";"Springer Nature";No;No;0,495;Q2;57;118;420;3832;2081;418;5,21;32,47;25,98;0;Switzerland;Western Europe;"Springer Nature";"2024-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Nuclear and High Energy Physics (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Physics and Astronomy" +12007;16780;"International Journal of Rehabilitation Research";journal;"03425282, 14735660";"Lippincott Williams and Wilkins Ltd.";No;No;0,495;Q2;66;37;143;1131;222;139;1,33;30,57;50,34;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1978-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine" +12008;19924;"International Journal of Satellite Communications and Networking";journal;"15420981, 15420973";"John Wiley and Sons Ltd";No;No;0,495;Q2;48;46;98;1992;226;95;2,39;43,30;23,70;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2003-2026";"Electrical and Electronic Engineering (Q2); Media Technology (Q2)";"Engineering" +12009;21101042013;"Journal of Educational Data Mining";journal;"21572100";"International Educational Data Mining Society";No;No;0,495;Q2;13;15;49;984;119;44;2,42;65,60;32,76;0;United States;Northern America;"International Educational Data Mining Society";"2019-2025";"Artificial Intelligence (Q2); Computer Science Applications (Q2); Education (Q2)";"Computer Science; Social Sciences" +12010;21100432792;"Journal of Electronic Science and Technology";journal;"2666223X, 1674862X";"KeAi Communications Co.";Yes;No;0,495;Q2;24;31;82;1104;297;82;3,54;35,61;25,56;0;China;Asiatic Region;"KeAi Communications Co.";"2015-2026";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q2)";"Computer Science; Engineering" +12011;21155;"Journal of Engineering Materials and Technology";journal;"00944289, 15288889";"The American Society of Mechanical Engineers(ASME)";No;No;0,495;Q2;82;21;118;1033;250;115;2,40;49,19;23,88;0;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"1973-2026";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +12012;25130;"Journal of Environmental Science and Health - Part A Toxic/Hazardous Substances and Environmental Engineering";journal;"10934529, 15324117";"Taylor and Francis Ltd.";No;No;0,495;Q2;93;68;252;3878;594;252;2,16;57,03;38,64;0;United States;Northern America;"Taylor and Francis Ltd.";"1978-1979, 1996-2026";"Environmental Engineering (Q2); Medicine (miscellaneous) (Q3)";"Environmental Science; Medicine" +12013;27005;"Journal of the American Society of Brewing Chemists";journal;"19437854, 03610470";"Taylor and Francis Ltd.";No;No;0,495;Q2;51;47;147;2430;342;147;2,28;51,70;40,11;1;United States;Northern America;"Taylor and Francis Ltd.";"1994-2026";"Food Science (Q2); Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +12014;13544;"Reproduction, Fertility and Development";journal;"14485990, 10313613";"CSIRO Publishing";No;No;0,495;Q2;91;55;203;2837;381;198;1,99;51,58;52,71;0;Australia;Pacific Region;"CSIRO Publishing";"1989-2026";"Animal Science and Zoology (Q2); Biotechnology (Q3); Developmental Biology (Q3); Genetics (Q3); Molecular Biology (Q3); Reproductive Medicine (Q3); Endocrinology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +12015;29158;"Cancer Investigation";journal;"07357907, 15324192";"Taylor & Francis Group LLC Philadelphia";No;No;0,495;Q3;97;69;243;3385;406;216;1,90;49,06;47,35;0;United States;Northern America;"Taylor & Francis Group LLC Philadelphia";"1983-2026";"Medicine (miscellaneous) (Q3); Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12016;16675;"Journal of Clinical Neurophysiology";journal;"15371603, 07360258";"Lippincott Williams and Wilkins";No;No;0,495;Q3;116;131;296;4144;527;269;1,68;31,63;38,14;0;United States;Northern America;"Lippincott Williams and Wilkins";"1984-2026";"Medicine (miscellaneous) (Q3); Neurology (Q3); Neurology (clinical) (Q3); Physiology (Q3); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +12017;20254;"Letters in Applied Microbiology";journal;"02668254, 1472765X";"Oxford University Press";No;No;0,495;Q3;138;144;614;6742;1566;610;2,14;46,82;49,10;0;United Kingdom;Western Europe;"Oxford University Press";"1985-2026";"Applied Microbiology and Biotechnology (Q3)";"Immunology and Microbiology" +12018;21101100112;"Rheumatology and Autoimmunity";journal;"27671429, 27671410";"John Wiley and Sons Inc";Yes;No;0,495;Q3;8;50;113;2070;137;83;1,11;41,40;48,37;0;United States;Northern America;"John Wiley and Sons Inc";"2021-2026";"Immunology (Q3); Immunology and Allergy (Q3); Internal Medicine (Q3); Rheumatology (Q3)";"Immunology and Microbiology; Medicine" +12019;6700153284;"Social Influence";journal;"15534529, 15534510";"Taylor and Francis Ltd.";Yes;No;0,495;Q3;40;26;29;1648;53;29;1,88;63,38;45,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Social Psychology (Q3)";"Psychology" +12020;15060;"Africa Spectrum";journal;"18686869, 00020397";"SAGE Publications Inc.";Yes;Yes;0,494;Q1;34;33;51;1873;132;49;2,26;56,76;23,21;1;Germany;Western Europe;"SAGE Publications Inc.";"1983-1984, 2006-2026";"Cultural Studies (Q1); Development (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12021;21101175745;"Journal of English for Research Publication Purposes";journal;"25900994, 25901001";"John Benjamins Publishing Company";No;No;0,494;Q1;9;7;28;350;54;23;1,71;50,00;54,55;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2020-2025";"Linguistics and Language (Q1)";"Social Sciences" +12022;21101047934;"Slovo.ru: Baltic Accent";journal;"22255346, 26868989";"Immanuel Kant Baltic Federal University";Yes;Yes;0,494;Q1;7;32;123;987;62;120;0,53;30,84;59,62;0;Russian Federation;Eastern Europe;"Immanuel Kant Baltic Federal University";"2019-2025";"Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +12023;21101224788;"Applied Microbiology (Switzerland)";journal;"26738007";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,494;Q2;18;150;287;11410;833;286;3,08;76,07;48,50;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2026";"Chemical Engineering (miscellaneous) (Q2); Applied Microbiology and Biotechnology (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +12024;21100305243;"Australasian Journal of Early Childhood";journal;"18395961, 18369391";"SAGE Publications Ltd";No;No;0,494;Q2;29;40;80;1521;158;66;1,45;38,03;86,96;0;Australia;Pacific Region;"SAGE Publications Ltd";"2010, 2013-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +12025;21101202299;"Compounds";journal;"26736918";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,494;Q2;14;61;115;4010;386;105;3,83;65,74;44,63;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science" +12026;21101374262;"IEEE Open Journal on Immersive Displays";journal;"2836211X";"Institute of Electrical and Electronics Engineers";No;No;0,494;Q2;4;23;11;1457;47;11;4,27;63,35;23,71;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2024-2026";"Computer Science Applications (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Software (Q2); Theoretical Computer Science (Q3)";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +12027;23838;"Journal of Applied Probability";journal;"14756072, 00219002";"Cambridge University Press";No;No;0,494;Q2;67;107;231;3091;205;231;0,75;28,89;21,10;0;United Kingdom;Western Europe;"Cambridge University Press";"1975-2026";"Mathematics (miscellaneous) (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +12028;25282;"Journal of Fluorescence";journal;"15734994, 10530509";"Springer";No;No;0,494;Q2;88;1098;647;54944;2710;647;4,30;50,04;39,09;0;United States;Northern America;"Springer";"1991-2026";"Spectroscopy (Q2); Biochemistry (Q3); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +12029;4700152831;"Journal of Foodservice Business Research";journal;"15378039, 15378020";"Routledge";No;No;0,494;Q2;43;118;139;9334;561;137;3,59;79,10;44,26;1;United States;Northern America;"Routledge";"2002-2026";"Food Science (Q2)";"Agricultural and Biological Sciences" +12030;3500148012;"Medical Molecular Morphology";journal;"18601480, 18601499";"Springer";No;No;0,494;Q2;51;49;100;1410;151;99;1,27;28,78;25,47;0;Japan;Asiatic Region;"Springer";"1996-1999, 2005-2026";"Pathology and Forensic Medicine (Q2); Medicine (miscellaneous) (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12031;14917;"Radiation and Environmental Biophysics";journal;"0301634X, 14322099";"Springer Science and Business Media Deutschland GmbH";No;No;0,494;Q2;64;85;143;3508;338;133;2,33;41,27;37,24;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1974-2026";"Environmental Science (miscellaneous) (Q2); Radiation (Q2); Biophysics (Q3)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Physics and Astronomy" +12032;18733;"Rendiconti Lincei";journal;"23852623, 20374631";"Springer Science and Business Media Deutschland GmbH";No;No;0,494;Q2;44;96;243;6235;772;242;2,96;64,95;33,71;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1990-1998, 2000-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +12033;21101061461;"Smart Agriculture";journal;"20968094";"Agricultural Information Institute, Chinese Academy of Agricultural Sciences";Yes;No;0,494;Q2;16;83;182;4147;540;182;3,04;49,96;40,29;0;China;Asiatic Region;"Agricultural Information Institute, Chinese Academy of Agricultural Sciences";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Agronomy and Crop Science (Q2); Engineering (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Engineering" +12034;145623;"Tree Genetics and Genomes";journal;"16142942, 16142950";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,494;Q2;78;40;145;2659;296;145;2,05;66,48;36,19;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2026";"Forestry (Q2); Horticulture (Q2); Genetics (Q3); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12035;14944;"Antonie van Leeuwenhoek, International Journal of General and Molecular Microbiology";journal;"00036072, 15729699";"Springer Science and Business Media Deutschland GmbH";No;No;0,494;Q3;128;190;330;12343;696;329;2,10;64,96;44,88;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1934-1939, 1941-1944, 1946-2026";"Medicine (miscellaneous) (Q3); Microbiology (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +12036;21101088221;"Exploration of Medicine";journal;"26923106";"Open Exploration Publishing Inc";Yes;Yes;0,494;Q3;18;111;194;7652;546;192;2,68;68,94;44,90;0;China;Asiatic Region;"Open Exploration Publishing Inc";"2020-2026";"Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology" +12037;29799;"Indian Journal of Orthopaedics";journal;"19983727, 00195413";"Springer";Yes;No;0,494;Q3;53;318;769;9280;1282;741;1,58;29,18;21,06;0;India;Asiatic Region;"Springer";"1974-1982, 2007-2026";"Orthopedics and Sports Medicine (Q3)";"Medicine" +12038;29199;"Industrial Health";journal;"18808026, 00198366";"National Institute of Industrial Health";Yes;No;0,494;Q3;79;58;162;2249;316;145;1,65;38,78;32,57;0;Japan;Asiatic Region;"National Institute of Industrial Health";"1963-2026";"Health, Toxicology and Mutagenesis (Q3); Public Health, Environmental and Occupational Health (Q3)";"Environmental Science; Medicine" +12039;17817;"Medical Engineering and Physics";journal;"18734030, 13504533";"Elsevier Ltd";No;No;0,494;Q3;133;183;509;7793;1385;503;2,61;42,58;28,06;0;United Kingdom;Western Europe;"Elsevier Ltd";"1994-2026";"Biomedical Engineering (Q3); Biophysics (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering" +12040;20300195058;"Proceedings - IEEE International Conference on Multimedia and Expo";conference and proceedings;"1945788X, 19457871";"IEEE Computer Society";No;No;0,494;-;75;994;1520;27759;3639;1513;2,14;27,93;31,49;0;United States;Northern America;"IEEE Computer Society";"2001, 2003, 2011-2025";"Computer Networks and Communications; Computer Science Applications";"Computer Science" +12041;14881;"Clinical Linguistics and Phonetics";journal;"02699206, 14645076";"Informa Healthcare";No;No;0,493;Q1;63;81;192;4431;282;180;1,31;54,70;70,70;0;United Kingdom;Western Europe;"Informa Healthcare";"1987-2026";"Linguistics and Language (Q1); Speech and Hearing (Q2); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine; Social Sciences" +12042;14306;"Harvard Journal on Legislation";journal;"0017808X";"Harvard University";No;No;0,493;Q1;22;10;42;1469;25;36;0,59;146,90;46,67;0;United States;Northern America;"Harvard University";"1975, 1978-1979, 1983, 1987-1992, 1996-2025";"Law (Q1)";"Social Sciences" +12043;12100156480;"Music Theory Spectrum";journal;"01956167, 15338339";"Oxford University Press";No;No;0,493;Q1;30;25;58;842;54;56;0,85;33,68;37,50;0;United States;Northern America;"Oxford University Press";"1981-1994, 1996-2025";"Music (Q1)";"Arts and Humanities" +12044;20528;"Perfusion (United Kingdom)";journal;"1477111X, 02676591";"SAGE Publications Ltd";No;No;0,493;Q1;58;345;630;8789;1084;582;1,73;25,48;31,99;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-2026";"Advanced and Specialized Nursing (Q1); Radiology, Nuclear Medicine and Imaging (Q2); Safety Research (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Nursing; Social Sciences" +12045;21100890619;"Philosophy of Management";journal;"20529597, 17403812";"Springer International Publishing AG";No;No;0,493;Q1;18;25;85;1252;145;83;1,67;50,08;26,67;0;Switzerland;Western Europe;"Springer International Publishing AG";"2002-2005, 2007-2026";"History and Philosophy of Science (Q1); Business and International Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2); Organizational Behavior and Human Resource Management (Q3)";"Arts and Humanities; Business, Management and Accounting" +12046;200147136;"Religion, State and Society";journal;"14653974, 09637494";"Routledge";No;No;0,493;Q1;30;31;112;1548;140;77;1,05;49,94;51,52;0;United Kingdom;Western Europe;"Routledge";"1992-2026";"Religious Studies (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +12047;21100870601;"Africa Journal of Management";journal;"23322373";"Taylor and Francis Ltd.";No;No;0,493;Q2;26;22;64;1864;145;58;2,05;84,73;34,69;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2025";"Business and International Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +12048;21100874197;"Archives Animal Breeding";journal;"00039438, 23639822";"Copernicus Publications";Yes;No;0,493;Q2;39;59;142;2861;318;142;2,04;48,49;37,19;0;Germany;Western Europe;"Copernicus Publications";"1996-2026";"Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Food Animals (Q2); Plant Science (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +12049;13490;"Asia Pacific Viewpoint";journal;"14678373, 13607456";"Wiley-Blackwell Publishing Ltd";No;No;0,493;Q2;51;56;95;3360;211;89;2,34;60,00;47,93;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Development (Q2); Geography, Planning and Development (Q2)";"Social Sciences" +12050;21101118072;"Australasian Journal of Special and Inclusive Education";journal;"25150731, 2515074X";"Cambridge University Press";No;No;0,493;Q2;23;15;31;718;74;31;2,12;47,87;70,73;0;United Kingdom;Western Europe;"Cambridge University Press";"2018-2026";"Education (Q2)";"Social Sciences" +12051;17900156742;"Complex Variables and Elliptic Equations";journal;"17476933, 17476941";"Taylor and Francis Ltd.";No;No;0,493;Q2;38;204;405;5709;347;405;0,80;27,99;33,25;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Analysis (Q2); Applied Mathematics (Q2); Computational Mathematics (Q2); Numerical Analysis (Q2)";"Mathematics" +12052;21101240286;"Construction Materials";journal;"26737108";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,493;Q2;11;89;99;5018;283;99;3,00;56,38;24,92;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Building and Construction (Q2); Engineering (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Environmental Science; Materials Science" +12053;21101099109;"Euro-Mediterranean Journal for Environmental Integration";journal;"23657448, 23656433";"Springer Nature";No;No;0,493;Q2;32;379;267;22037;833;262;3,35;58,15;40,94;1;United States;Northern America;"Springer Nature";"2016-2026";"Environmental Science (miscellaneous) (Q2)";"Environmental Science" +12054;16800154717;"IFLA Journal";journal;"03400352, 17452651";"SAGE Publications Ltd";No;No;0,493;Q2;31;109;165;5669;375;157;2,56;52,01;45,15;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1975-2026";"Library and Information Sciences (Q2)";"Social Sciences" +12055;28130;"Journal of Adhesion";journal;"00218464, 15455823";"Taylor and Francis Ltd.";No;No;0,493;Q2;69;123;293;5306;851;291;2,99;43,14;24,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1969-2026";"Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Mechanics of Materials (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +12056;21101256296;"Journal of Contemporary Applied Mathematics";journal;"30063183, 22225498";"";No;No;0,493;Q2;5;24;50;605;53;50;1,52;25,21;33,33;0;Azerbaijan;Eastern Europe;"";"2020-2026";"Analysis (Q2); Applied Mathematics (Q2); Control and Optimization (Q2); Mathematical Physics (Q2)";"Mathematics" +12057;21177;"Journal of Materials Science: Materials in Electronics";journal;"09574522, 1573482X";"Springer New York";No;No;0,493;Q2;117;2263;6673;114773;20759;6652;3,20;50,72;31,86;0;United States;Northern America;"Springer New York";"1990-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Bioengineering (Q3); Biomaterials (Q3); Biomedical Engineering (Q3); Biophysics (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science; Physics and Astronomy" +12058;30019;"Journal of Organizational Behavior Management";journal;"01608061, 15408604";"Routledge";No;No;0,493;Q2;41;33;66;809;137;34;1,95;24,52;56,67;0;United States;Northern America;"Routledge";"1977-1978, 1980-1985, 1987-1991, 1993-2026";"Management of Technology and Innovation (Q2); Strategy and Management (Q2); Applied Psychology (Q3)";"Business, Management and Accounting; Psychology" +12059;15108;"Journal of Paediatrics and Child Health";journal;"10344810, 14401754";"John Wiley and Sons Inc";No;No;0,493;Q2;92;313;1119;6922;1176;778;0,99;22,12;58,02;1;United States;Northern America;"John Wiley and Sons Inc";"1965-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +12060;11300153313;"Journal of Research in International Education";journal;"14752409, 17412943";"SAGE Publications Ltd";No;No;0,493;Q2;41;15;50;729;104;50;1,97;48,60;52,38;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2025";"Education (Q2)";"Social Sciences" +12061;21101027245;"Journal of Statistical Theory and Applications";journal;"15387887, 22141766";"Springer Science and Business Media B.V.";Yes;No;0,493;Q2;14;49;53;1892;168;53;3,78;38,61;30,43;0;France;Western Europe;"Springer Science and Business Media B.V.";"2019-2026";"Applied Mathematics (Q2); Computer Science Applications (Q2); Statistics and Probability (Q2)";"Computer Science; Mathematics" +12062;19700186818;"Ships and Offshore Structures";journal;"17445302, 1754212X";"Taylor and Francis Ltd.";No;No;0,493;Q2;50;460;575;18530;1333;573;2,20;40,28;25,93;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Mechanical Engineering (Q2); Ocean Engineering (Q2)";"Engineering" +12063;88509;"Weed Technology";journal;"0890037X, 15502740";"Cambridge University Press";Yes;No;0,493;Q2;82;111;305;4818;593;305;1,80;43,41;19,46;0;United States;Northern America;"Cambridge University Press";"1990, 1993-2001, 2003-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +12064;33323;"Scandinavian Journal of Clinical and Laboratory Investigation";journal;"00365513, 15027686";"Taylor and Francis Ltd.";No;No;0,493;Q3;78;91;275;2491;398;236;1,36;27,37;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1949-2026";"Clinical Biochemistry (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12065;19900191410;"Ethics and Social Welfare";journal;"17496535, 17496543";"Routledge";No;No;0,492;Q1;22;32;96;1360;134;84;1,05;42,50;68,92;0;United Kingdom;Western Europe;"Routledge";"2015-2026";"Philosophy (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +12066;21101128151;"Journal of Applied History";journal;"25895885, 25895893";"Brill Academic Publishers";No;No;0,492;Q1;7;7;25;512;46;22;1,80;73,14;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2026";"History (Q1)";"Arts and Humanities" +12067;16641;"Acta Physiologiae Plantarum";journal;"18611664, 01375881";"";No;No;0,492;Q2;113;118;404;7909;1074;403;2,58;67,03;40,00;0;Germany;Western Europe;"";"1985, 1987-1988, 1993-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12068;4700152835;"American Journal of Sexuality Education";journal;"15546136, 15546128";"Routledge";No;No;0,492;Q2;32;68;87;3679;184;86;1,98;54,10;73,83;1;United States;Northern America;"Routledge";"2005-2026";"Education (Q2)";"Social Sciences" +12069;21101034089;"Applied Economic Analysis";journal;"26327627";"Emerald Group Publishing Ltd.";Yes;Yes;0,492;Q2;22;8;43;390;120;41;2,14;48,75;34,78;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +12070;13713;"Cryogenics";journal;"00112275, 18792235";"Elsevier Ltd";No;No;0,492;Q2;78;209;416;7171;1017;413;2,38;34,31;20,99;0;United Kingdom;Western Europe;"Elsevier Ltd";"1960-2026";"Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Materials Science; Physics and Astronomy" +12071;27477;"Current Applied Physics";journal;"15671739";"Elsevier B.V.";No;No;0,492;Q2;108;177;596;8440;1681;593;2,84;47,68;28,41;0;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Materials Science; Physics and Astronomy" +12072;21101037129;"Current Otorhinolaryngology Reports";journal;"2167583X";"Springer Science and Business Media Deutschland GmbH";No;No;0,492;Q2;26;21;136;1153;187;136;1,54;54,90;48,68;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2013-2026";"Otorhinolaryngology (Q2); Surgery (Q2); Immunology and Allergy (Q3); Neurology (clinical) (Q3)";"Medicine" +12073;12734;"Issues in Educational Research";journal;"03137155, 18376290";"Western Australian Institute for Educational Research Inc.";Yes;Yes;0,492;Q2;40;91;261;4479;531;243;1,95;49,22;57,78;0;Australia;Pacific Region;"Western Australian Institute for Educational Research Inc.";"2002-2025";"Education (Q2)";"Social Sciences" +12074;11800154589;"Journal of Algebra and its Applications";journal;"17936829, 02194988";"World Scientific Publishing Co. Pte Ltd";No;No;0,492;Q2;37;623;866;13254;674;864;0,77;21,27;30,97;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2004, 2008-2026";"Algebra and Number Theory (Q2); Applied Mathematics (Q2)";"Mathematics" +12075;18538;"Journal of Fluids Engineering";journal;"1528901X, 00982202";"American Society of Mechanical Engineers (ASME)";No;No;0,492;Q2;128;125;457;4852;1014;437;2,30;38,82;14,29;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1897-1909, 1912-1926, 1928-2026";"Mechanical Engineering (Q2)";"Engineering" +12076;19900191760;"Journal of Peace Education";journal;"17400201, 1740021X";"Routledge";No;No;0,492;Q2;24;28;52;1591;88;48;1,33;56,82;69,05;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Education (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12077;21100912389;"Korean Journal of Neurotrauma";journal;"22348999, 22882243";"Korean Neurotraumatology Society";No;No;0,492;Q2;15;32;173;672;216;138;1,35;21,00;17,71;0;South Korea;Asiatic Region;"Korean Neurotraumatology Society";"2018-2025";"Surgery (Q2)";"Medicine" +12078;17400154829;"Memetic Computing";journal;"18659284, 18659292";"Springer Verlag";No;No;0,492;Q2;44;47;86;2276;296;83;2,91;48,43;36,00;0;Germany;Western Europe;"Springer Verlag";"2009-2026";"Computer Science (miscellaneous) (Q2); Control and Optimization (Q2)";"Computer Science; Mathematics" +12079;21101374258;"Pets";journal;"28139372";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,492;Q2;6;42;34;2018;71;32;2,09;48,05;69,41;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2024-2025";"Small Animals (Q2)";"Veterinary" +12080;14544;"Rheologica Acta";journal;"00354511, 14351528";"";No;No;0,492;Q2;99;54;163;2997;423;159;2,53;55,50;27,95;0;Germany;Western Europe;"";"1958, 1961-2026";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +12081;21101221511;"Advances in Psychiatry and Behavioral Health";journal;"26673827, 26673835";"Elsevier Inc.";No;No;0,492;Q3;7;25;72;1476;98;69;1,38;59,04;66,22;0;United States;Northern America;"Elsevier Inc.";"2021-2025";"Psychiatry and Mental Health (Q3)";"Medicine" +12082;19700201337;"Biofuels";journal;"17597277, 17597269";"Taylor and Francis Ltd.";No;No;0,492;Q3;59;139;322;9075;1067;322;3,66;65,29;30,82;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Renewable Energy, Sustainability and the Environment (Q3); Waste Management and Disposal (Q3)";"Energy; Environmental Science" +12083;20663;"Current Drug Metabolism";journal;"18755453, 13892002";"Bentham Science Publishers";No;No;0,492;Q3;130;54;225;4484;532;217;2,37;83,04;50,54;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2000-2026";"Clinical Biochemistry (Q3); Pharmacology (Q3)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +12084;13498;"Developmental Neuropsychology";journal;"15326942, 87565641";"Routledge";No;No;0,492;Q3;114;14;68;1115;149;68;1,79;79,64;58,57;0;United Kingdom;Western Europe;"Routledge";"1985-2026";"Developmental and Educational Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)";"Psychology" +12085;21101039232;"Microbial Physiology";journal;"26731665, 26731673";"S. Karger AG";Yes;No;0,492;Q3;92;9;34;656;78;34;2,75;72,89;39,39;0;Switzerland;Western Europe;"S. Karger AG";"2020-2026";"Applied Microbiology and Biotechnology (Q3); Biochemistry (Q3); Biotechnology (Q3); Microbiology (Q3); Physiology (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +12086;24957;"Skin therapy letter";journal;"12015989";"International Skin Therapy Newsletter, Inc.";No;No;0,492;Q3;37;12;30;0;50;30;1,44;0,00;48,39;0;Canada;Northern America;"International Skin Therapy Newsletter, Inc.";"1999-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +12087;21999;"Vibrational Spectroscopy";journal;"09242031";"Elsevier B.V.";No;No;0,492;Q3;98;72;292;3166;1083;290;3,46;43,97;37,77;0;Netherlands;Western Europe;"Elsevier B.V.";"1990-2026";"Spectroscopy (Q3)";"Chemistry" +12088;19800188060;"Celebrity Studies";journal;"19392400, 19392397";"Routledge";No;No;0,491;Q1;34;57;131;2600;211;119;1,35;45,61;69,70;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Cultural Studies (Q1)";"Social Sciences" +12089;19700177700;"European Energy and Environmental Law Review";journal;"18793886, 25890387";"Kluwer Law International";No;No;0,491;Q1;20;10;68;547;110;66;1,14;54,70;55,56;0;Netherlands;Western Europe;"Kluwer Law International";"2008-2025";"Law (Q1); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science; Social Sciences" +12090;17371;"IEEE Transactions on Professional Communication";journal;"15581500, 03611434";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,491;Q1;58;29;91;1485;240;85;1,97;51,21;50,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1972-2025";"Linguistics and Language (Q1); Electrical and Electronic Engineering (Q2); Industrial Relations (Q2)";"Business, Management and Accounting; Engineering; Social Sciences" +12091;24100;"Acta Arithmetica";journal;"17306264, 00651036";"Instytut Matematyczny";No;No;0,491;Q2;49;66;279;1496;131;279;0,42;22,67;26,47;0;Poland;Eastern Europe;"Instytut Matematyczny";"1971, 1996-2025";"Algebra and Number Theory (Q2)";"Mathematics" +12092;21101059775;"All Earth";journal;"27669645";"Taylor and Francis Ltd.";Yes;No;0,491;Q2;60;48;87;2718;223;83;2,42;56,63;22,49;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2021-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2); Global and Planetary Change (Q3)";"Earth and Planetary Sciences; Environmental Science" +12093;12054;"Arts in Psychotherapy";journal;"01974556, 18735878";"Elsevier Ltd";No;No;0,491;Q2;57;112;213;7401;506;206;2,14;66,08;68,62;1;United Kingdom;Western Europe;"Elsevier Ltd";"1978, 1980-2026";"Clinical Psychology (Q2); Health Professions (miscellaneous) (Q2); Psychiatry and Mental Health (Q3)";"Health Professions; Medicine; Psychology" +12094;13712;"Continuum Mechanics and Thermodynamics";journal;"09351175, 14320959";"Springer Science and Business Media Deutschland GmbH";No;No;0,491;Q2;67;97;310;5442;844;306;2,79;56,10;22,54;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1989-2026";"Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Engineering; Materials Science; Physics and Astronomy" +12095;67249;"Experimental Agriculture";journal;"00144797, 14694441";"Cambridge University Press";No;No;0,491;Q2;61;30;99;1691;252;99;2,75;56,37;31,01;0;United Kingdom;Western Europe;"Cambridge University Press";"1965-2026";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +12096;21101317180;"Indoor Environments";journal;"29503620";"Elsevier B.V.";Yes;No;0,491;Q2;7;74;61;3983;164;61;2,69;53,82;42,51;1;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Engineering" +12097;1000147102;"Journal of Business Economics and Management";journal;"20294433, 16111699";"Vilnius Gediminas Technical University";Yes;No;0,491;Q2;59;62;167;3839;561;167;3,42;61,92;52,34;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2003-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +12098;21100255088;"Journal of Water Sanitation and Hygiene for Development";journal;"24089362, 20439083";"IWA Publishing";Yes;No;0,491;Q2;39;86;278;3764;572;278;1,82;43,77;29,76;1;United Kingdom;Western Europe;"IWA Publishing";"2011-2026";"Development (Q2); Water Science and Technology (Q2); Pollution (Q3); Public Health, Environmental and Occupational Health (Q3); Waste Management and Disposal (Q3)";"Environmental Science; Medicine; Social Sciences" +12099;144982;"Physics Education";journal;"00319120, 13616552";"Institute of Physics";No;No;0,491;Q2;41;238;620;4571;560;584;1,08;19,21;26,70;0;United Kingdom;Western Europe;"Institute of Physics";"1966-2025";"Education (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy; Social Sciences" +12100;22100;"European Cytokine Network";journal;"11485493, 19524005";"John Libbey";No;No;0,491;Q3;73;8;20;507;39;20;1,64;63,38;54,55;0;France;Western Europe;"John Libbey";"1990-2025";"Clinical Biochemistry (Q3); Immunology (Q3); Immunology and Allergy (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +12101;17700155012;"Handbook of Clinical Neurology";book series;"00729752, 22124152";"Elsevier B.V.";No;No;0,491;Q3;108;194;515;22691;1601;15;2,57;116,96;49,56;0;Netherlands;Western Europe;"Elsevier B.V.";"2003-2004, 2006-2025";"Medicine (miscellaneous) (Q3); Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +12102;21101253665;"Contemporary Musicology";journal;"25879731";"Gnesins Russian Academy of Music";Yes;Yes;0,490;Q1;2;28;72;456;34;72;0,62;16,29;74,19;0;Russian Federation;Eastern Europe;"Gnesins Russian Academy of Music";"2020-2025";"Arts and Humanities (miscellaneous) (Q1); Music (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +12103;21100217021;"Journal of Writing Research";journal;"22943307, 20301006";"University of Antwerp";Yes;Yes;0,490;Q1;37;19;44;1299;93;44;1,97;68,37;51,11;0;Belgium;Western Europe;"University of Antwerp";"2008-2026";"Linguistics and Language (Q1); Literature and Literary Theory (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +12104;19900188955;"PoLAR: Political and Legal Anthropology Review";journal;"10816976, 15552934";"John Wiley and Sons Inc";No;No;0,490;Q1;39;34;76;1693;68;49;0,87;49,79;63,89;0;United States;Northern America;"John Wiley and Sons Inc";"1973-1974, 1977-2026";"Anthropology (Q1); Law (Q1); Sociology and Political Science (Q2)";"Social Sciences" +12105;85584;"Acta Pedologica Sinica";journal;"05643929";"Science Press";No;No;0,490;Q2;32;154;464;6327;1108;464;2,33;41,08;42,04;0;China;Asiatic Region;"Science Press";"1979-1980, 1983-1985, 1988, 2016-2026";"Soil Science (Q2)";"Agricultural and Biological Sciences" +12106;21101337825;"Circular Agricultural Systems";journal;"27679608";"Maximum Academic Press";Yes;No;0,490;Q2;10;18;37;1299;138;36;2,21;72,17;40,68;0;United States;Northern America;"Maximum Academic Press";"2021-2026";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +12107;24458;"Dental Clinics of North America";journal;"00118532, 15580512";"W.B. Saunders";No;No;0,490;Q2;92;54;227;2283;443;200;1,21;42,28;56,73;0;United States;Northern America;"W.B. Saunders";"1957, 1961, 1964-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +12108;21101082067;"Digital Government: Research and Practice";journal;"26390175";"Association for Computing Machinery";No;No;0,490;Q2;21;55;97;3256;313;95;3,53;59,20;34,73;5;United States;Northern America;"Association for Computing Machinery";"2020-2025";"Computer Networks and Communications (Q2); Computer Science Applications (Q2); Information Systems (Q2); Public Administration (Q2); Software (Q2)";"Computer Science; Social Sciences" +12109;21100897514;"EPJ Photovoltaics";journal;"21050716";"EDP Sciences";Yes;No;0,490;Q2;20;34;113;1124;288;112;2,64;33,06;17,79;1;France;Western Europe;"EDP Sciences";"2010-2026";"Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering; Materials Science; Physics and Astronomy" +12110;21101331987;"Frontiers in Aquaculture";journal;"28135334";"Frontiers Media SA";Yes;No;0,490;Q2;8;17;64;1323;158;61;2,37;77,82;36,96;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Animal Science and Zoology (Q2); Aquatic Science (Q2); Food Science (Q2)";"Agricultural and Biological Sciences" +12111;21100239623;"International Journal of Applied Glass Science";journal;"20411286, 20411294";"John Wiley and Sons Ltd";No;No;0,490;Q2;51;31;144;1264;373;144;2,65;40,77;29,63;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +12112;55762;"International Journal of Crashworthiness";journal;"17542111, 13588265";"Taylor and Francis Ltd.";No;No;0,490;Q2;52;61;294;2630;880;294;2,79;43,11;23,42;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Transportation (Q3)";"Engineering; Social Sciences" +12113;6400153174;"Journal of Transformative Education";journal;"15527840, 15413446";"SAGE Publications Inc.";No;No;0,490;Q2;44;53;83;2463;172;72;2,07;46,47;68,22;0;United States;Northern America;"SAGE Publications Inc.";"2003-2026";"Education (Q2)";"Social Sciences" +12114;18327;"Journal of Veterinary Science";journal;"1229845X, 1976555X";"Korean Society of Veterinary Science";Yes;No;0,490;Q2;61;79;254;3049;521;249;1,96;38,59;40,30;0;South Korea;Asiatic Region;"Korean Society of Veterinary Science";"2000-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +12115;21101259016;"Mersin Photogrammetry Journal";journal;"2687654X";"Mersin University";No;No;0,490;Q2;8;10;30;261;69;30;2,45;26,10;20,00;0;Turkey;Middle East;"Mersin University";"2020-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q2)";"Earth and Planetary Sciences; Engineering" +12116;22206;"Natural Computing";journal;"15677818, 15729796";"Springer Science and Business Media B.V.";No;No;0,490;Q2;52;71;136;2108;318;122;2,01;29,69;29,35;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2003-2026";"Computer Science Applications (Q2)";"Computer Science" +12117;21100391100;"Psychoanalytic Study of the Child";journal;"00797308";"Taylor and Francis Ltd.";No;No;0,490;Q2;25;39;90;801;123;73;1,52;20,54;55,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1945-1946, 1958, 1960-1961, 1963, 1965-1972, 1974-2009, 2011-2015, 2017-2026";"Pediatrics, Perinatology and Child Health (Q2); Developmental and Educational Psychology (Q3); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +12118;16568;"Science and Technology Libraries";journal;"0194262X, 15411109";"Routledge";No;No;0,490;Q2;27;36;84;1496;283;83;2,38;41,56;41,25;0;United States;Northern America;"Routledge";"1980-2008, 2010-2026";"Library and Information Sciences (Q2)";"Social Sciences" +12119;20725;"Wireless Personal Communications";journal;"1572834X, 09296212";"Springer";No;No;0,490;Q2;100;169;2664;6995;8410;2664;3,16;41,39;26,95;0;United States;Northern America;"Springer";"1994-2026";"Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +12120;21101078839;"Gynecology and Obstetrics Clinical Medicine";journal;"26671646, 20970587";"BMJ Publishing Group";Yes;Yes;0,490;Q3;11;43;127;1488;229;103;2,00;34,60;57,76;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2021-2026";"Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine" +12121;21101166820;"Journal of Global Health Reports";journal;"23991623";"International Society of Global Health";Yes;No;0,490;Q3;16;0;178;0;291;178;1,67;0,00;0,00;0;United Kingdom;Western Europe;"International Society of Global Health";"2019-2024";"Medicine (miscellaneous) (Q3)";"Medicine" +12122;21100837200;"Schizophrenia Research and Treatment";journal;"20902085, 20902093";"John Wiley and Sons Ltd";Yes;No;0,490;Q3;13;0;2;0;8;2;5,00;0,00;0,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2014-2023";"Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +12123;89175;"Anthropology and Education Quarterly";journal;"01617761, 15481492";"Wiley-Blackwell";No;No;0,489;Q1;61;36;69;1585;121;62;1,65;44,03;66,10;0;United States;Northern America;"Wiley-Blackwell";"1977-2026";"Anthropology (Q1); Education (Q2)";"Social Sciences" +12124;21100903820;"Cognitive Semantics";journal;"23526416, 23526408";"Brill Academic Publishers";No;No;0,489;Q1;11;21;44;969;64;43;1,54;46,14;41,38;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2025";"Linguistics and Language (Q1)";"Social Sciences" +12125;21100896922;"Journal of Language Evolution";journal;"2058458X";"Oxford University Press";No;No;0,489;Q1;18;7;31;855;43;31;1,29;122,14;45,00;0;United Kingdom;Western Europe;"Oxford University Press";"2016-2026";"Linguistics and Language (Q1); Developmental and Educational Psychology (Q3); Developmental Neuroscience (Q3)";"Neuroscience; Psychology; Social Sciences" +12126;16859;"Labor History";journal;"0023656X, 14699702";"Routledge";No;No;0,489;Q1;28;93;136;6544;156;130;1,22;70,37;25,62;0;United Kingdom;Western Europe;"Routledge";"1960-2026";"History (Q1); Organizational Behavior and Human Resource Management (Q3)";"Arts and Humanities; Business, Management and Accounting" +12127;21100825187;"ChemNanoMat";journal;"2199692X";"Wiley-VCH Verlag";No;No;0,489;Q2;60;229;622;15229;1557;618;2,59;66,50;35,84;0;Germany;Western Europe;"Wiley-VCH Verlag";"2015-2026";"Energy Engineering and Power Technology (Q2); Materials Chemistry (Q2); Biomaterials (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Materials Science" +12128;21101023028;"CVIR Endovascular";journal;"25208934";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,489;Q2;20;122;219;2374;404;210;1,99;19,46;24,45;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2018-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +12129;21490;"Ethology Ecology and Evolution";journal;"03949370, 18287131";"Taylor and Francis Ltd.";Yes;No;0,489;Q2;49;51;132;3187;184;127;0,98;62,49;39,22;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +12130;5800169272;"International Journal of Intelligence and CounterIntelligence";journal;"15210561, 08850607";"Routledge";No;No;0,489;Q2;27;81;150;4258;174;137;1,21;52,57;22,64;3;United Kingdom;Western Europe;"Routledge";"1986, 1988-1991, 1993-2026";"Political Science and International Relations (Q2)";"Social Sciences" +12131;21100394784;"International Journal of Interactive Mobile Technologies";journal;"18657923";"";Yes;No;0,489;Q2;47;284;827;9921;2602;827;3,27;34,93;37,98;0;Austria;Western Europe;"";"2008-2026";"Computer Networks and Communications (Q2); Computer Science Applications (Q2); Education (Q2); E-learning (Q3)";"Computer Science; Social Sciences" +12132;12157;"Journal of Electron Spectroscopy and Related Phenomena";journal;"03682048";"Elsevier B.V.";No;No;0,489;Q2;109;32;177;1329;328;174;2,14;41,53;22,43;0;Netherlands;Western Europe;"Elsevier B.V.";"1972-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Physical and Theoretical Chemistry (Q2); Radiation (Q2); Spectroscopy (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +12133;50091;"Journal of Waterway, Port, Coastal and Ocean Engineering";journal;"19435460, 0733950X";"American Society of Civil Engineers (ASCE)";No;No;0,489;Q2;84;52;111;2194;195;109;1,86;42,19;20,41;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1982-2026";"Civil and Structural Engineering (Q2); Ocean Engineering (Q2); Water Science and Technology (Q2)";"Engineering; Environmental Science" +12134;8600153118;"Mathematics and Financial Economics";journal;"18629660, 18629679";"Springer Science and Business Media Deutschland GmbH";No;No;0,489;Q2;32;38;74;1358;95;73;1,18;35,74;25,56;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2007-2026";"Finance (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +12135;14547;"Social Choice and Welfare";journal;"01761714, 1432217X";"Springer New York";No;No;0,489;Q2;64;106;189;3726;239;187;1,41;35,15;16,74;2;United States;Northern America;"Springer New York";"1984-2026";"Economics and Econometrics (Q2); Social Sciences (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Social Sciences" +12136;15035;"Social Work with Groups";journal;"01609513, 15409481";"Routledge";No;No;0,489;Q2;28;30;91;863;152;79;1,63;28,77;62,90;0;United States;Northern America;"Routledge";"1978-2026";"Education (Q2); Social Sciences (miscellaneous) (Q2); Social Work (Q3)";"Social Sciences" +12137;21100876878;"Turkish Journal of Physical Medicine and Rehabilitation";journal;"25870823, 25871250";"Turkish Society of Physical Medicine and Rehabilitation";Yes;No;0,489;Q2;21;72;228;2101;361;203;1,43;29,18;61,60;0;Turkey;Middle East;"Turkish Society of Physical Medicine and Rehabilitation";"2018-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)";"Health Professions; Medicine" +12138;17928;"Ultrasonic Imaging";journal;"01617346, 10960910";"SAGE Publications Inc.";No;No;0,489;Q2;54;33;60;1214;160;59;1,98;36,79;42,37;0;United States;Northern America;"SAGE Publications Inc.";"1979-2026";"Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)";"Health Professions; Medicine" +12139;25149;"Journal of Toxicological Sciences";journal;"18803989, 03881350";"Japanese Society of Toxicology";Yes;No;0,489;Q3;65;67;165;2254;298;140;1,92;33,64;34,89;0;Japan;Asiatic Region;"Japanese Society of Toxicology";"1976-2026";"Medicine (miscellaneous) (Q3); Toxicology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +12140;20516;"PACE - Pacing and Clinical Electrophysiology";journal;"01478389, 15408159";"John Wiley and Sons Inc";No;No;0,489;Q3;115;199;674;4482;900;646;1,26;22,52;26,49;0;United States;Northern America;"John Wiley and Sons Inc";"1978-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +12141;11200153559;"Nordic Journal of Music Therapy";journal;"19448260, 08098131";"Routledge";No;No;0,488;Q1;35;38;85;1884;151;69;1,65;49,58;68,87;0;United Kingdom;Western Europe;"Routledge";"2001-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Complementary and Alternative Medicine (Q2); Psychiatry and Mental Health (Q3)";"Arts and Humanities; Medicine; Social Sciences" +12142;21100826276;"Biodiversity Science";journal;"10050094";"Chinese Academy of Sciences";No;No;0,488;Q2;31;236;657;11841;1321;633;1,88;50,17;40,82;0;China;Asiatic Region;"Chinese Academy of Sciences";"2017-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12143;100147339;"British Journal of Special Education";journal;"14678578, 09523383";"Wiley-Blackwell Publishing Ltd";No;No;0,488;Q2;48;74;127;2875;257;98;1,53;38,85;63,58;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1974-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +12144;21100861075;"Child Health Nursing Research";journal;"22879129, 22879110";"Korean Academy of Child Health Nursing";Yes;No;0,488;Q2;14;28;93;820;164;83;1,62;29,29;65,38;0;South Korea;Asiatic Region;"Korean Academy of Child Health Nursing";"2018-2026";"Pediatrics (Q2); Pediatrics, Perinatology and Child Health (Q2)";"Medicine; Nursing" +12145;21101324529;"Chinese General Practice Journal";journal;"29505593";"KeAi Communications Co.";Yes;No;0,488;Q2;3;31;35;1103;59;34;1,69;35,58;42,24;0;China;Asiatic Region;"KeAi Communications Co.";"2024-2025";"Family Practice (Q2); Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +12146;23737;"Computational Intelligence";journal;"08247935, 14678640";"Wiley-Blackwell Publishing Ltd";No;No;0,488;Q2;63;101;219;5104;637;215;2,84;50,53;32,89;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1985-2026";"Artificial Intelligence (Q2); Computational Mathematics (Q2)";"Computer Science; Mathematics" +12147;21100780992;"GMS Journal for Medical Education";journal;"23665017";"German Medical Science GMS Publishing House";Yes;No;0,488;Q2;33;66;186;471;355;166;2,06;7,14;54,69;0;Germany;Western Europe;"German Medical Science GMS Publishing House";"2016-2025";"Education (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +12148;5000155600;"Health Education";journal;"1758714X, 09654283";"Emerald Group Publishing Ltd.";No;No;0,488;Q2;45;75;70;3914;141;68;1,64;52,19;62,70;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1992-2026";"Education (Q2); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +12149;21100780473;"International Journal of Development Issues";journal;"14468956, 17588553";"Emerald Group Publishing Ltd.";No;No;0,488;Q2;29;26;73;1507;210;72;2,82;57,96;44,19;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003-2025";"Development (Q2); Economics and Econometrics (Q2); Political Science and International Relations (Q2)";"Economics, Econometrics and Finance; Social Sciences" +12150;24172;"Journal of Chromatography B: Analytical Technologies in the Biomedical and Life Sciences";journal;"1873376X, 15700232";"Elsevier B.V.";No;No;0,488;Q2;174;307;866;11765;2499;860;2,73;38,32;47,35;0;Netherlands;Western Europe;"Elsevier B.V.";"2002-2026";"Analytical Chemistry (Q2); Biochemistry (Q3); Clinical Biochemistry (Q3); Medicine (miscellaneous) (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine" +12151;21140;"Journal of Composite Materials";journal;"00219983, 1530793X";"SAGE Publications Ltd";No;No;0,488;Q2;121;299;804;14440;2511;801;3,20;48,29;21,15;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1967-2026";"Ceramics and Composites (Q2); Materials Chemistry (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +12152;12962;"Journal of Intelligent Systems";journal;"03341860, 2191026X";"Walter de Gruyter GmbH";Yes;No;0,488;Q2;41;56;271;2536;1049;271;3,64;45,29;33,33;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1991-2002, 2004-2026";"Artificial Intelligence (Q2); Information Systems (Q2); Software (Q2)";"Computer Science" +12153;21101033150;"Kidney Cancer";journal;"24684562, 24684570";"SAGE Publications Ltd";Yes;No;0,488;Q2;13;18;53;1006;59;43;0,87;55,89;30,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2017-2025";"Nephrology (Q2); Oncology (Q3)";"Medicine" +12154;21101257849;"Memories - Materials, Devices, Circuits and Systems";journal;"27730646";"Elsevier Ltd";Yes;No;0,488;Q2;15;17;109;756;354;106;3,15;44,47;21,43;0;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Computational Mechanics (Q2); Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2); Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Computer Science; Engineering; Materials Science" +12155;15300154802;"Transgenic Research";journal;"15739368, 09628819";"Springer Science and Business Media Deutschland GmbH";No;No;0,488;Q2;103;54;130;2890;304;126;2,07;53,52;37,09;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1991-2026";"Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Biotechnology (Q3); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12156;19900192104;"Cardiology Research and Practice";journal;"20900597, 20908016";"John Wiley and Sons Ltd";Yes;No;0,488;Q3;52;44;118;1777;264;118;2,02;40,39;38,93;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +12157;21100967241;"Epilepsy and Behavior Reports";journal;"25899864";"Elsevier Inc.";Yes;No;0,488;Q3;26;96;220;2576;402;211;1,88;26,83;41,72;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Behavioral Neuroscience (Q3); Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +12158;22186;"Genetics and Molecular Biology";journal;"14154757, 16784685";"Brazilian Society of Genetics";Yes;No;0,488;Q3;69;28;231;1448;422;231;1,62;51,71;45,40;0;Brazil;Latin America;"Brazilian Society of Genetics";"1998-2026";"Genetics (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +12159;18238;"Revista de Investigacion Clinica";journal;"23853956, 00348376";"Instituto Nacional de la Nutricion Salvador Zubiran";Yes;Yes;0,488;Q3;37;28;106;0;209;103;1,97;0,00;27,07;0;Mexico;Latin America;"Instituto Nacional de la Nutricion Salvador Zubiran";"1949-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +12160;21100299413;"Journal of Cultural Heritage Management and Sustainable Development";journal;"20441274, 20441266";"Emerald Group Publishing Ltd.";No;No;0,487;Q1;31;102;208;4523;529;204;2,37;44,34;57,26;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2026";"Conservation (Q1); Business, Management and Accounting (miscellaneous) (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +12161;21101210514;"Jurnal Studi Ilmu-ilmu al-Qur'an dan Hadis";journal;"14116855, 25484737";"State Islamic University Sunan Kalijaga Faculty of Ushuluddin and Islamic Thought";Yes;Yes;0,487;Q1;7;22;54;1237;122;54;3,17;56,23;17,65;0;Indonesia;Asiatic Region;"State Islamic University Sunan Kalijaga Faculty of Ushuluddin and Islamic Thought";"2022-2026";"Cultural Studies (Q1); History (Q1); Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +12162;21100777482;"Analysis and Geometry in Metric Spaces";journal;"22993274";"Walter de Gruyter GmbH";Yes;No;0,487;Q2;18;17;46;663;34;46;0,83;39,00;28,57;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2013-2025";"Analysis (Q2); Applied Mathematics (Q2); Geometry and Topology (Q2)";"Mathematics" +12163;21101128453;"ATS Scholar";journal;"26907097";"American Thoracic Society";Yes;No;0,487;Q2;16;68;207;1319;256;160;1,09;19,40;44,08;0;United States;Northern America;"American Thoracic Society";"2020-2025";"Critical Care and Intensive Care Medicine (Q2); Education (Q2); Neurology (clinical) (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine; Social Sciences" +12164;21100370079;"Computational Condensed Matter";journal;"23522143";"Elsevier B.V.";No;No;0,487;Q2;38;182;338;10945;1350;337;4,31;60,14;25,21;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Materials Science (miscellaneous) (Q2)";"Materials Science; Physics and Astronomy" +12165;26415;"Electronic Transactions on Numerical Analysis";journal;"10689613";"Kent State University";Yes;No;0,487;Q2;52;25;123;977;121;121;0,99;39,08;17,91;0;United States;Northern America;"Kent State University";"1996-2026";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +12166;7600153104;"IET Optoelectronics";journal;"17518768, 17518776";"John Wiley & Sons Inc.";Yes;No;0,487;Q2;52;27;78;989;212;76;3,53;36,63;17,65;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2007-2026";"Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2)";"Engineering; Physics and Astronomy" +12167;21101162627;"Infinity Journal";journal;"20896867, 24609285";"STKIP Siliwangi Bandung (IKIP Siliwangi)";Yes;No;0,487;Q2;15;52;80;3001;359;80;5,09;57,71;47,24;0;Indonesia;Asiatic Region;"STKIP Siliwangi Bandung (IKIP Siliwangi)";"2019-2025";"Development (Q2); Education (Q2); Mathematics (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Mathematics; Social Sciences" +12168;21100826328;"Journal of Astronomical Instrumentation";journal;"22511725, 22511717";"World Scientific";No;No;0,487;Q2;33;9;58;219;97;56;1,61;24,33;22,08;0;Singapore;Asiatic Region;"World Scientific";"2012-2026";"Instrumentation (Q2); Astronomy and Astrophysics (Q3)";"Physics and Astronomy" +12169;21160;"Journal of Materials Engineering and Performance";journal;"10599495, 15441024";"Springer New York";No;No;0,487;Q2;98;3176;2960;133405;8673;2947;2,89;42,00;26,90;0;United States;Northern America;"Springer New York";"1992-2026";"Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +12170;14609;"Ophthalmic Plastic and Reconstructive Surgery";journal;"15372677, 07409303";"Wolters Kluwer Health";No;No;0,487;Q2;78;314;701;6288;907;556;1,33;20,03;45,07;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1984-2026";"Ophthalmology (Q2); Surgery (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +12171;59030;"Quaestiones Mathematicae";journal;"1727933X, 16073606";"Taylor and Francis Ltd.";No;No;0,487;Q2;33;120;447;2963;386;444;0,95;24,69;28,69;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12172;200147114;"Quality in Higher Education";journal;"14701081, 13538322";"Routledge";No;No;0,487;Q2;55;25;80;1077;186;64;1,96;43,08;40,63;0;United Kingdom;Western Europe;"Routledge";"1995-2026";"Education (Q2)";"Social Sciences" +12173;6000195380;"Regenerative Medicine";journal;"17460751, 1746076X";"Taylor and Francis Ltd.";No;No;0,487;Q2;80;65;205;4697;461;178;2,42;72,26;34,98;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Embryology (Q2); Biomedical Engineering (Q3)";"Engineering; Medicine" +12174;21101139563;"Scandinavian Journal of Military Studies";journal;"25963856";"Scandinavian Military Studies";Yes;Yes;0,487;Q2;10;31;61;2078;90;60;1,79;67,03;20,75;6;Denmark;Western Europe;"Scandinavian Military Studies";"2019-2026";"Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering; Social Sciences" +12175;14571;"Shock Waves";journal;"14322153, 09381287";"Springer Science and Business Media Deutschland GmbH";No;No;0,487;Q2;71;50;141;1883;282;138;2,00;37,66;16,87;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1991-2026";"Mechanical Engineering (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Engineering; Physics and Astronomy" +12176;21916;"Telecommunication Systems";journal;"10184864, 15729451";"Springer Netherlands";No;No;0,487;Q2;70;138;380;6694;1188;376;3,51;48,51;26,02;0;Netherlands;Western Europe;"Springer Netherlands";"1993-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +12177;17579;"Actas Espanolas de Psiquiatria";journal;"15782735, 11399287";"STM Editores S.A";No;No;0,487;Q3;43;133;167;5505;287;154;1,95;41,39;55,83;0;Spain;Western Europe;"STM Editores S.A";"1996-2025";"Psychiatry and Mental Health (Q3)";"Medicine" +12178;16789;"Analytical Biochemistry";journal;"10960309, 00032697";"Academic Press Inc.";No;No;0,487;Q3;212;219;734;11427;2330;730;3,18;52,18;42,10;0;United States;Northern America;"Academic Press Inc.";"1960-2026";"Biochemistry (Q3); Biophysics (Q3); Molecular Biology (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +12179;21100901212;"Current Drug Research Reviews";journal;"25899783, 25899775";"Bentham Science Publishers";No;No;0,487;Q3;55;65;81;5870;218;73;3,08;90,31;44,29;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2019-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +12180;130017;"Current Neurovascular Research";journal;"15672026, 18755739";"Bentham Science Publishers";No;No;0,487;Q3;64;36;181;2211;337;166;1,71;61,42;47,19;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2004-2026";"Developmental Neuroscience (Q3); Neurology (Q3); Neurology (clinical) (Q3); Cellular and Molecular Neuroscience (Q4)";"Medicine; Neuroscience" +12181;21655;"Journal of Biomaterials Applications";journal;"08853282, 15308022";"SAGE Publications Ltd";No;No;0,487;Q3;75;119;338;6179;1003;338;2,89;51,92;40,44;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-2026";"Biomaterials (Q3); Biomedical Engineering (Q3)";"Engineering; Materials Science" +12182;16746;"Journal of Neurogenetics";journal;"15635260, 01677063";"Taylor and Francis Ltd.";No;No;0,487;Q3;45;17;55;858;72;44;0,74;50,47;35,48;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-1987, 1989-2026";"Genetics (Q3); Cellular and Molecular Neuroscience (Q4)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +12183;19900193558;"Journal of Tropical Meteorology";journal;"10068775, 10044965";"Science Press";No;No;0,487;Q3;17;42;108;2037;135;108;1,32;48,50;43,78;0;China;Asiatic Region;"Science Press";"2008-2015, 2017-2025";"Atmospheric Science (Q3)";"Earth and Planetary Sciences" +12184;21100278316;"Arachnology";journal;"20509936, 20509928";"British Arachnological Society (BAS)";No;No;0,486;Q2;15;37;121;1611;115;119;0,93;43,54;19,57;0;United Kingdom;Western Europe;"British Arachnological Society (BAS)";"2013, 2015-2025";"Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +12185;25825;"Chemoecology";journal;"14230445, 09377409";"Springer Nature";No;No;0,486;Q2;61;23;50;1664;93;48;1,65;72,35;43,48;0;Switzerland;Western Europe;"Springer Nature";"1990-1994, 1996, 1998-2025";"Ecology, Evolution, Behavior and Systematics (Q2); Biochemistry (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12186;26814;"Coastal Management";journal;"08920753, 15210421";"Taylor and Francis Ltd.";No;No;0,486;Q2;64;27;73;1459;142;72;1,56;54,04;45,88;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3)";"Environmental Science" +12187;21100872366;"Cogent Social Sciences";journal;"23311886";"Cogent OA";Yes;No;0,486;Q2;43;492;1422;34769;4512;1418;3,01;70,67;38,02;4;United Kingdom;Western Europe;"Cogent OA";"2015-2026";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +12188;24304;"Computer Supported Cooperative Work";journal;"09259724, 15737551";"Springer Netherlands";No;No;0,486;Q2;79;28;86;2751;376;80;2,98;98,25;51,61;0;Netherlands;Western Europe;"Springer Netherlands";"1992-2025";"Computer Science (miscellaneous) (Q2)";"Computer Science" +12189;21100889405;"Critical and Radical Social Work";journal;"20498675, 20498608";"Policy Press";No;No;0,486;Q2;15;43;109;2278;142;99;0,89;52,98;70,15;0;United Kingdom;Western Europe;"Policy Press";"2018-2026";"Sociology and Political Science (Q2)";"Social Sciences" +12190;24993;"European Journal of Wood and Wood Products";journal;"1436736X, 00183768";"Springer Verlag";No;No;0,486;Q2;83;196;406;9376;1221;405;3,02;47,84;30,00;0;Germany;Western Europe;"Springer Verlag";"1937-1944, 1951-2026";"Forestry (Q2); Materials Science (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Materials Science" +12191;21100431169;"International Journal of Islamic and Middle Eastern Finance and Management";journal;"17538394, 17538408";"Emerald Publishing";No;No;0,486;Q2;53;109;193;7624;946;191;4,83;69,94;26,43;0;United Kingdom;Western Europe;"Emerald Publishing";"2008-2026";"Business and International Management (Q2); Finance (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +12192;4000151705;"Journal of Burn Care and Research";journal;"15590488, 1559047X";"Oxford University Press";No;No;0,486;Q2;100;205;656;6187;1167;623;1,76;30,18;47,24;0;United States;Northern America;"Oxford University Press";"2006-2026";"Emergency Medicine (Q2); Rehabilitation (Q2); Surgery (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +12193;28448;"Journal of Seismology";journal;"1573157X, 13834649";"Springer Netherlands";No;No;0,486;Q2;72;94;198;5238;418;197;1,51;55,72;27,51;0;Netherlands;Western Europe;"Springer Netherlands";"1997-2026";"Geochemistry and Petrology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +12194;21100874149;"Management (France)";journal;"12864692";"DMSP Research Center";Yes;Yes;0,486;Q2;37;23;77;1637;119;76;0,94;71,17;51,56;0;France;Western Europe;"DMSP Research Center";"1998-2025";"Business, Management and Accounting (miscellaneous) (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +12195;15443;"Metrologia";journal;"00261394, 16817575";"IOP Publishing Ltd.";No;No;0,486;Q2;95;88;444;2216;682;412;1,75;25,18;24,32;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1965-2025";"Engineering (miscellaneous) (Q2)";"Engineering" +12196;28704;"Modelling and Simulation in Materials Science and Engineering";journal;"09650393, 1361651X";"IOP Publishing Ltd.";No;No;0,486;Q2;100;131;379;6748;901;378;2,30;51,51;22,57;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1992-2025";"Computer Science Applications (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2); Modeling and Simulation (Q2)";"Computer Science; Engineering; Materials Science; Mathematics; Physics and Astronomy" +12197;16842;"Qualitative Sociology";journal;"01620436, 15737837";"Springer New York";No;No;0,486;Q2;74;37;80;2408;142;78;1,38;65,08;40,00;0;United States;Northern America;"Springer New York";"1978-2026";"Sociology and Political Science (Q2)";"Social Sciences" +12198;14343;"Theoretical Population Biology";journal;"00405809, 10960325";"Academic Press Inc.";No;No;0,486;Q2;102;38;125;1985;161;121;1,33;52,24;30,00;0;United States;Northern America;"Academic Press Inc.";"1970-2026";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +12199;20548;"Urologia Internationalis";journal;"00421138, 14230399";"S. Karger AG";No;No;0,486;Q2;70;127;379;3093;594;371;1,51;24,35;24,93;1;Switzerland;Western Europe;"S. Karger AG";"1955-2026";"Urology (Q2)";"Medicine" +12200;21100869971;"Veterinary Record Open";journal;"23992050, 20526113";"John Wiley & Sons Inc.";Yes;No;0,486;Q2;23;18;57;694;99;57;1,72;38,56;54,88;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2014-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +12201;21101306755;"IJID One Health";journal;"29499151";"Elsevier B.V.";Yes;No;0,486;Q3;5;30;22;908;37;16;1,68;30,27;37,82;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Genetics (Q3); Immunology (Q3); Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +12202;18893;"International Journal of Immunogenetics";journal;"1744313X, 17443121";"Wiley-Blackwell Publishing Ltd";No;No;0,486;Q3;51;33;113;1641;162;100;1,42;49,73;46,50;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1974-1996, 2005-2026";"Genetics (Q3); Genetics (clinical) (Q3); Immunology (Q3); Medicine (miscellaneous) (Q3); Molecular Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +12203;17700156760;"Advances in Materials Science and Engineering";journal;"16878442, 16878434";"John Wiley and Sons Ltd";Yes;No;0,485;Q2;90;69;1004;3746;3535;1001;3,26;54,29;21,20;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +12204;17639;"Alzheimer Disease and Associated Disorders";journal;"08930341, 15464156";"Lippincott Williams and Wilkins";No;No;0,485;Q2;116;40;187;609;289;184;1,54;15,23;51,61;0;United States;Northern America;"Lippincott Williams and Wilkins";"1987-2026";"Clinical Psychology (Q2); Geriatrics and Gerontology (Q3); Gerontology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Nursing; Psychology" +12205;18024;"European Journal of Plant Pathology";journal;"09291873, 15738469";"Springer Nature";No;No;0,485;Q2;117;211;528;10755;1227;525;2,49;50,97;42,57;2;Netherlands;Western Europe;"Springer Nature";"1994-2026";"Agronomy and Crop Science (Q2); Horticulture (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +12206;21101123131;"Journal of Cartilage and Joint Preservation";journal;"26672545";"Elsevier B.V.";Yes;No;0,485;Q2;9;51;138;1831;208;124;1,52;35,90;24,14;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Surgery (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Immunology and Allergy (Q3); Orthopedics and Sports Medicine (Q3); Rheumatology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12207;19571;"Journal of Media Economics";journal;"08997764, 15327736";"Taylor and Francis Ltd.";No;No;0,485;Q2;40;11;21;728;45;21;2,44;66,18;52,00;0;United States;Northern America;"Taylor and Francis Ltd.";"1988-2020, 2022-2026";"Communication (Q2); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +12208;5200153104;"Journal of Poultry Science";journal;"13467395, 13490486";"Japan Poultry Science Association";Yes;No;0,485;Q2;44;31;103;1412;235;100;2,16;45,55;30,66;0;Japan;Asiatic Region;"Japan Poultry Science Association";"2001-2004, 2006-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +12209;21100438184;"Journal of Pre-College Engineering Education Research";journal;"21579288";"Purdue University Press";Yes;Yes;0,485;Q2;23;7;43;379;82;43;1,64;54,14;84,62;0;United States;Northern America;"Purdue University Press";"2014-2025";"Education (Q2); Engineering (miscellaneous) (Q2)";"Engineering; Social Sciences" +12210;21101149918;"Journal of VitreoRetinal Diseases";journal;"24741264, 24741272";"SAGE Publications Inc.";No;No;0,485;Q2;16;164;291;3634;325;269;1,01;22,16;32,48;1;United States;Northern America;"SAGE Publications Inc.";"2017-2026";"Ophthalmology (Q2)";"Medicine" +12211;28813;"Nurse Leader";journal;"15414612, 15414620";"Academic Press Inc.";No;No;0,485;Q2;27;179;423;2659;594;395;1,36;14,85;83,45;0;United States;Northern America;"Academic Press Inc.";"2003-2026";"Leadership and Management (Q2)";"Nursing" +12212;11900154405;"Oral and Maxillofacial Surgery";journal;"18651550, 18651569";"Springer Verlag";No;No;0,485;Q2;46;187;319;5918;628;314;1,97;31,65;35,69;0;Germany;Western Europe;"Springer Verlag";"2003, 2007-2026";"Oral Surgery (Q2); Otorhinolaryngology (Q2); Surgery (Q2)";"Dentistry; Medicine" +12213;5000153701;"Risk Management and Insurance Review";journal;"15406296, 10981616";"Wiley-Blackwell Publishing Ltd";No;No;0,485;Q2;24;23;65;1391;160;62;2,50;60,48;41,30;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2006-2026";"Economics and Econometrics (Q2); Finance (Q2); Accounting (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +12214;23610;"Scandinavian Journal of Forest Research";journal;"16511891, 02827581";"Taylor and Francis A.S.";No;No;0,485;Q2;74;39;119;1981;214;119;1,63;50,79;41,14;2;Sweden;Western Europe;"Taylor and Francis A.S.";"1986-1991, 1993-2026";"Forestry (Q2)";"Agricultural and Biological Sciences" +12215;19700177501;"Topological Methods in Nonlinear Analysis";journal;"12303429";"Juliusz Schauder Center for Nonlinear Analysis";No;No;0,485;Q2;31;65;220;1693;175;219;0,78;26,05;26,92;0;Poland;Eastern Europe;"Juliusz Schauder Center for Nonlinear Analysis";"1997, 2009-2025";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +12216;15418;"Women and Therapy";journal;"02703149, 15410315";"Routledge";No;No;0,485;Q2;42;25;70;1436;120;64;1,54;57,44;83,08;0;United States;Northern America;"Routledge";"1982-2026";"Gender Studies (Q2); Psychology (miscellaneous) (Q3)";"Psychology; Social Sciences" +12217;21101192900;"Zoonoses (Ireland)";journal;"27377474, 27377466";"Compuscript Ltd";Yes;Yes;0,485;Q2;14;40;124;1783;247;114;1,57;44,58;45,38;0;Ireland;Western Europe;"Compuscript Ltd";"2021-2026";"Veterinary (miscellaneous) (Q2); Infectious Diseases (Q3)";"Medicine; Veterinary" +12218;26761;"Advances in Experimental Medicine and Biology";book series;"00652598, 22148019";"Springer";Yes;No;0,485;Q3;180;490;2139;40936;4200;125;1,76;83,54;49,63;0;United States;Northern America;"Springer";"1971-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12219;20000195094;"Cell Journal";journal;"22285806, 22285814";"Royan Institute (ACECR)";Yes;No;0,485;Q3;46;32;270;1282;552;270;2,05;40,06;48,72;0;Iran;Middle East;"Royan Institute (ACECR)";"2011-2025";"Developmental Biology (Q3); Molecular Biology (Q3); Reproductive Medicine (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12220;21101163373;"Clinical and Translational Discovery";journal;"27680622";"John Wiley and Sons Inc";Yes;No;0,485;Q3;14;71;317;2536;368;136;1,49;35,72;38,78;0;Australia;Pacific Region;"John Wiley and Sons Inc";"2021-2026";"Clinical Biochemistry (Q3); Genetics (Q3); Molecular Medicine (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +12221;17300154942;"Molecular Cytogenetics";journal;"17558166";"BioMed Central Ltd";Yes;No;0,485;Q3;42;35;119;1061;220;119;1,54;30,31;58,60;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2008-2026";"Biochemistry (Q3); Biochemistry (medical) (Q3); Genetics (Q3); Genetics (clinical) (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12222;21100840179;"Qualitative Psychology";journal;"23263601, 23263598";"American Psychological Association";No;No;0,485;Q3;31;32;82;2133;180;78;1,79;66,66;71,43;0;United States;Northern America;"American Psychological Association";"2014-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +12223;21100861082;"Democratic Theory";journal;"23328894, 23328908";"Berghahn Journals";Yes;Yes;0,484;Q1;17;11;45;602;81;43;1,33;54,73;63,64;0;United Kingdom;Western Europe;"Berghahn Journals";"2014-2025";"Philosophy (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +12224;16200154754;"Journal of the British Society for Phenomenology";journal;"23320486, 00071773";"Taylor and Francis Ltd.";No;No;0,484;Q1;18;32;79;1238;95;73;0,55;38,69;40,63;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1970-2026";"Philosophy (Q1)";"Arts and Humanities" +12225;21100831042;"Spirituality in Clinical Practice";journal;"23264519, 23264500";"American Psychological Association";No;No;0,484;Q1;28;16;107;939;175;106;1,16;58,69;44,00;0;United States;Northern America;"American Psychological Association";"2014-2025";"Complementary and Manual Therapy (Q1); Clinical Psychology (Q2); Complementary and Alternative Medicine (Q2); Psychiatry and Mental Health (Q3)";"Health Professions; Medicine; Psychology" +12226;21100385960;"American Journal of Cultural Sociology";journal;"20497121, 20497113";"Springer International Publishing AG";No;No;0,484;Q2;29;48;78;3980;142;73;1,38;82,92;39,71;0;Switzerland;Western Europe;"Springer International Publishing AG";"2013-2026";"Sociology and Political Science (Q2)";"Social Sciences" +12227;20490;"Annals of Transplantation";journal;"14259524, 23290358";"International Scientific Information, Inc.";Yes;No;0,484;Q2;47;46;156;1333;253;155;1,37;28,98;35,89;0;United States;Northern America;"International Scientific Information, Inc.";"1996-2026";"Transplantation (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +12228;21100854134;"Hupo Kexue/Journal of Lake Sciences";journal;"10035427";"Science Press";No;No;0,484;Q2;34;169;517;8503;1159;515;2,27;50,31;38,71;0;China;Asiatic Region;"Science Press";"2016-2025";"Aquatic Science (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Water Science and Technology (Q2); Pollution (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +12229;21100463102;"International Journal of Dynamics and Control";journal;"2195268X, 21952698";"Springer International Publishing AG";No;No;0,484;Q2;40;419;696;16693;2061;696;3,22;39,84;24,11;0;Switzerland;Western Europe;"Springer International Publishing AG";"2013-2026";"Civil and Structural Engineering (Q2); Control and Optimization (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Modeling and Simulation (Q2)";"Engineering; Mathematics" +12230;21100790518;"International Journal of Management Science and Engineering Management";journal;"17509653, 17509661";"Taylor and Francis Ltd.";No;No;0,484;Q2;40;57;83;2998;309;80;4,09;52,60;29,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Engineering (miscellaneous) (Q2); Information Systems and Management (Q2); Mechanical Engineering (Q2); Strategy and Management (Q2); Management Science and Operations Research (Q3)";"Business, Management and Accounting; Decision Sciences; Engineering" +12231;7700153202;"Investigaciones Regionales";journal;"23402717, 16957253";"Asociacion Espanola de Ciencia Regional";Yes;Yes;0,484;Q2;26;29;69;1278;121;67;1,32;44,07;53,57;0;Spain;Western Europe;"Asociacion Espanola de Ciencia Regional";"2007-2025";"Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Economics, Econometrics and Finance; Social Sciences" +12232;23355;"Journal of Environmental Engineering (United States)";journal;"07339372, 19437870";"American Society of Civil Engineers (ASCE)";No;No;0,484;Q2;114;126;352;6058;667;349;1,81;48,08;33,59;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1973-2026";"Civil and Structural Engineering (Q2); Environmental Engineering (Q2); Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3)";"Engineering; Environmental Science" +12233;21101061456;"Journal of Tourism, Heritage and Services Marketing";journal;"25291947";"International Hellenic University";Yes;Yes;0,484;Q2;17;14;38;1100;128;34;3,03;78,57;27,78;0;Greece;Western Europe;"International Hellenic University";"2019-2025";"Geography, Planning and Development (Q2); Marketing (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +12234;6400153118;"Journal of Ultrasound";journal;"19713495, 18767931";"Springer Science and Business Media Deutschland GmbH";No;No;0,484;Q2;45;178;377;4094;741;359;2,12;23,00;40,76;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2007-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Internal Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +12235;14227;"Plant Molecular Biology Reporter";journal;"07359640, 15729818";"Springer";No;No;0,484;Q2;76;170;157;11630;356;157;2,50;68,41;43,10;1;United States;Northern America;"Springer";"1983-2026";"Plant Science (Q2); Molecular Biology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12236;21100838016;"Quarterly Journal of Finance";journal;"20101406, 20101392";"World Scientific";No;No;0,484;Q2;28;22;65;859;46;65;0,72;39,05;30,95;0;Singapore;Asiatic Region;"World Scientific";"2011-2026";"Economics and Econometrics (Q2); Finance (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +12237;11200153526;"Studies in Economics and Finance";journal;"10867376";"Emerald Publishing";No;No;0,484;Q2;36;82;155;5138;570;151;3,49;62,66;30,25;0;United Kingdom;Western Europe;"Emerald Publishing";"1977-1987, 1989-1991, 1993-1998, 2002-2004, 2006-2026";"Economics and Econometrics (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q2)";"Economics, Econometrics and Finance" +12238;21101162822;"Urban, Planning and Transport Research";journal;"21650020";"Taylor and Francis Ltd.";Yes;No;0,484;Q2;15;49;138;2590;381;136;2,76;52,86;38,05;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2026";"Geography, Planning and Development (Q2); Urban Studies (Q2); Transportation (Q3)";"Social Sciences" +12239;19700182320;"Advances in Human-Computer Interaction";journal;"16875893, 16875907";"John Wiley and Sons Ltd";Yes;No;0,484;Q3;34;12;38;800;196;38;3,63;66,67;61,54;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Human-Computer Interaction (Q3)";"Computer Science" +12240;20112;"Bundesgesundheitsblatt - Gesundheitsforschung - Gesundheitsschutz";journal;"14371588, 14369990";"Springer Verlag";No;No;0,484;Q3;81;175;502;5881;721;424;1,47;33,61;56,42;6;Germany;Western Europe;"Springer Verlag";"1999-2026";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +12241;15500154703;"Evolutionary Psychology";journal;"14747049";"SAGE Publications Inc.";Yes;No;0,484;Q3;55;15;71;1093;109;71;1,55;72,87;37,50;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2003-2004, 2006-2007, 2009-2026";"Behavioral Neuroscience (Q3); Medicine (miscellaneous) (Q3); Social Psychology (Q3)";"Medicine; Neuroscience; Psychology" +12242;31473;"Conference on Human Factors in Computing Systems - Proceedings";conference and proceedings;"-";"Association for Computing Machinery";No;No;0,484;-;264;0;3684;0;30433;3664;8,74;0,00;0,00;0;United States;Northern America;"Association for Computing Machinery";"1982-1983, 1986, 1988-2024";"Computer Graphics and Computer-Aided Design; Human-Computer Interaction; Software";"Computer Science" +12243;21100316465;"Apunts. Educacion Fisica y Deportes";journal;"15774015, 20140983";"Instituto Nacional de Educacion Fisica de Cataluna";Yes;Yes;0,483;Q1;21;28;99;1049;196;99;1,88;37,46;26,60;0;Spain;Western Europe;"Instituto Nacional de Educacion Fisica de Cataluna";"2000, 2002, 2013-2026";"Cultural Studies (Q1); Education (Q2)";"Social Sciences" +12244;16931;"American Sociologist";journal;"00031232, 19364784";"Springer";No;No;0,483;Q2;32;48;111;3399;169;104;1,46;70,81;33,33;0;United States;Northern America;"Springer";"1973-1975, 1978-1979, 1981, 1987-1996, 2002, 2004-2026";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12245;13013;"Annals of Applied Biology";journal;"17447348, 00034746";"Wiley-Blackwell Publishing Ltd";No;No;0,483;Q2;101;79;204;5057;482;194;2,29;64,01;41,69;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1914-2026";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +12246;63670;"Bulletin of Geosciences";journal;"12141119";"Czech Geological Survey";Yes;No;0,483;Q2;44;34;51;3879;77;51;1,72;114,09;27,37;0;Czech Republic;Eastern Europe;"Czech Geological Survey";"2003-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)";"Earth and Planetary Sciences; Environmental Science" +12247;25803;"Carbohydrate Research";journal;"00086215, 1873426X";"Elsevier Ltd";No;No;0,483;Q2;159;289;529;16350;1734;522;3,47;56,57;41,39;0;United Kingdom;Western Europe;"Elsevier Ltd";"1965-2026";"Analytical Chemistry (Q2); Organic Chemistry (Q2); Biochemistry (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine" +12248;21552;"Environmental Technology (United Kingdom)";journal;"1479487X, 09593330";"Taylor and Francis Ltd.";No;No;0,483;Q2;98;435;1187;22272;3098;1186;2,53;51,20;40,39;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2026";"Water Science and Technology (Q2); Environmental Chemistry (Q3); Medicine (miscellaneous) (Q3); Waste Management and Disposal (Q3)";"Environmental Science; Medicine" +12249;21101068186;"International Journal of Crowd Science";journal;"23987294";"Tsinghua University Press";Yes;Yes;0,483;Q2;20;27;75;1365;204;72;3,02;50,56;23,61;0;United Kingdom;Western Europe;"Tsinghua University Press";"2017-2025";"Business, Management and Accounting (miscellaneous) (Q2); Computer Science (miscellaneous) (Q2); Decision Sciences (miscellaneous) (Q2)";"Business, Management and Accounting; Computer Science; Decision Sciences" +12250;22384;"International Journal of STD and AIDS";journal;"09564624, 17581052";"SAGE Publications Ltd";No;No;0,483;Q2;82;156;477;4636;667;448;1,44;29,72;53,94;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1990-2026";"Dermatology (Q2); Infectious Diseases (Q3); Pharmacology (medical) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +12251;23850;"Journal of Cardiovascular Surgery";journal;"1827191X, 00219509";"Edizioni Minerva Medica";No;No;0,483;Q2;61;74;259;2502;339;229;1,24;33,81;25,00;0;Italy;Western Europe;"Edizioni Minerva Medica";"1960-2025";"Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +12252;29580;"Journal of Comparative Pathology";journal;"00219975, 15323129";"W.B. Saunders Ltd";No;No;0,483;Q2;88;72;229;2107;292;224;1,11;29,26;52,22;0;United Kingdom;Western Europe;"W.B. Saunders Ltd";"1950-2026";"Pathology and Forensic Medicine (Q2); Veterinary (miscellaneous) (Q2)";"Medicine; Veterinary" +12253;23871;"Journal of Cryptology";journal;"14321378, 09332790";"Springer New York";No;No;0,483;Q2;89;34;109;1846;306;108;2,86;54,29;25,00;0;United States;Northern America;"Springer New York";"1988-2026";"Applied Mathematics (Q2); Computer Science Applications (Q2); Software (Q2)";"Computer Science; Mathematics" +12254;21100928676;"Journal of Family and Community Medicine";journal;"2229340X, 22308229";"Wolters Kluwer Medknow Publications";Yes;No;0,483;Q2;46;48;117;1193;222;113;1,44;24,85;54,24;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1996-2026";"Family Practice (Q2); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +12255;13321;"Journal of Solar Energy Engineering";journal;"15288986, 01996231";"American Society of Mechanical Engineers (ASME)";No;No;0,483;Q2;101;58;226;2476;530;223;2,41;42,69;18,58;1;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1980-2026";"Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +12256;13601;"Journal of the American Academy of Audiology";journal;"10500545, 21573107";"";No;No;0,483;Q2;93;47;136;900;175;128;1,25;19,15;52,32;0;United States;Northern America;"";"1990-2025";"Speech and Hearing (Q2)";"Health Professions" +12257;21101081518;"Neurointervention";journal;"22336273, 20939043";"Korean Society of Interventional Neuroradiology";Yes;Yes;0,483;Q2;13;30;93;595;134;82;1,52;19,83;18,27;0;South Korea;Asiatic Region;"Korean Society of Interventional Neuroradiology";"2019-2025";"Radiology, Nuclear Medicine and Imaging (Q2); Neurology (clinical) (Q3)";"Medicine" +12258;5000160207;"Progress in Development Studies";journal;"1477027X, 14649934";"SAGE Publications Ltd";No;No;0,483;Q2;54;13;63;1001;135;58;1,74;77,00;45,16;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Development (Q2)";"Social Sciences" +12259;21100255423;"R Journal";journal;"20734859";"Technische Universitaet Wien";Yes;No;0,483;Q2;71;29;198;1104;278;192;1,04;38,07;38,03;0;Austria;Western Europe;"Technische Universitaet Wien";"2009-2025";"Numerical Analysis (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +12260;21101089493;"Reproduction and Breeding";journal;"26670712";"KeAi Communications Co.";Yes;No;0,483;Q2;11;37;83;1913;195;83;2,31;51,70;30,05;1;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Animal Science and Zoology (Q2); Plant Science (Q2); Developmental Biology (Q3); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12261;28443;"Steel Research International";journal;"16113683, 1869344X";"Wiley-Blackwell";No;No;0,483;Q2;73;624;1075;28617;3030;1065;2,64;45,86;26,14;0;United States;Northern America;"Wiley-Blackwell";"2003-2026";"Condensed Matter Physics (Q2); Materials Chemistry (Q2); Metals and Alloys (Q2); Physical and Theoretical Chemistry (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +12262;21100223312;"Journal of Applied Biomaterials and Functional Materials";journal;"22808000";"SAGE Publications Ltd";Yes;No;0,483;Q3;48;44;103;2858;332;103;3,12;64,95;45,98;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2012-2026";"Bioengineering (Q3); Biomaterials (Q3); Biomedical Engineering (Q3); Biophysics (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science; Medicine" +12263;21101056825;"Bioarchaeology International";journal;"24728349, 24728357";"University of Florida Press";No;No;0,482;Q1;16;16;49;1091;85;47;1,49;68,19;67,57;0;United States;Northern America;"University of Florida Press";"2017-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +12264;21557;"Environmental Values";journal;"09632719, 17527015";"SAGE Publications Ltd";No;No;0,482;Q1;63;17;104;897;177;87;1,78;52,76;40,91;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994-2025";"Philosophy (Q1); Environmental Science (miscellaneous) (Q2)";"Arts and Humanities; Environmental Science" +12265;145095;"Journal of Logic, Language and Information";journal;"09258531, 15729583";"Springer Science and Business Media B.V.";No;No;0,482;Q1;39;24;80;843;89;76;1,28;35,13;18,18;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1992-2002, 2004-2026";"Linguistics and Language (Q1); Philosophy (Q1); Computer Science (miscellaneous) (Q2)";"Arts and Humanities; Computer Science; Social Sciences" +12266;21100258618;"Comparative Population Studies";journal;"18698980, 18698999";"Bundesinstitut fur Bevolkerungsforschung";Yes;Yes;0,482;Q2;25;17;65;764;134;61;2,36;44,94;42,42;0;Germany;Western Europe;"Bundesinstitut fur Bevolkerungsforschung";"2010-2011, 2013-2025";"Demography (Q2)";"Social Sciences" +12267;21100905832;"Icono14";journal;"16978293";"Scientific Association Icono14";Yes;Yes;0,482;Q2;14;18;83;912;152;83;1,94;50,67;69,23;0;Spain;Western Europe;"Scientific Association Icono14";"2018-2025";"Communication (Q2)";"Social Sciences" +12268;15464;"IEEE Transactions on Nanotechnology";journal;"1536125X, 19410085";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,482;Q2;103;78;327;2967;953;327;2,75;38,04;21,09;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2002-2026";"Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Nanoscience and Nanotechnology (Q3)";"Computer Science; Engineering; Materials Science" +12269;21100810612;"IEEJ Journal of Industry Applications";journal;"21871108, 21871094";"The Institute of Electrical Engineers of Japan";No;No;0,482;Q2;30;134;288;2884;610;288;2,28;21,52;11,69;0;Japan;Asiatic Region;"The Institute of Electrical Engineers of Japan";"2012-2026";"Automotive Engineering (Q2); Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)";"Energy; Engineering" +12270;34587;"International Journal of Polymeric Materials and Polymeric Biomaterials";journal;"1563535X, 00914037";"Taylor and Francis Ltd.";No;No;0,482;Q2;60;113;349;11496;1266;349;3,14;101,73;45,81;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Analytical Chemistry (Q2); Chemical Engineering (miscellaneous) (Q2); Polymers and Plastics (Q2)";"Chemical Engineering; Chemistry; Materials Science" +12271;13893;"International Planning Studies";journal;"14699265, 13563475";"Routledge";No;No;0,482;Q2;55;36;72;2181;160;72;1,94;60,58;49,44;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Geography, Planning and Development (Q2)";"Social Sciences" +12272;5800157981;"International Studies of Management and Organization";journal;"00208825, 15580911";"Taylor and Francis Ltd.";No;No;0,482;Q2;37;35;46;3906;162;45;3,06;111,60;41,84;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Business and International Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +12273;21101124068;"Iraqi Journal for Computer Science and Mathematics";journal;"27887421, 29580544";"College of Education, Al-Iraqia University";Yes;No;0,482;Q2;22;96;212;3875;806;211;3,69;40,36;28,21;0;Iraq;Middle East;"College of Education, Al-Iraqia University";"2020-2025";"Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Computer Graphics and Computer-Aided Design (Q2); Computer Networks and Communications (Q2); Statistics and Probability (Q2)";"Computer Science; Mathematics" +12274;21100218512;"Journal of Behavioral Finance";journal;"15427579, 15427560";"Taylor and Francis Ltd.";No;No;0,482;Q2;37;66;111;3594;290;109;2,55;54,45;29,49;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007, 2011-2026";"Finance (Q2); Experimental and Cognitive Psychology (Q3)";"Economics, Econometrics and Finance; Psychology" +12275;20010;"Journal of Natural Medicines";journal;"18610293, 13403443";"Springer";No;No;0,482;Q2;65;116;270;4510;705;242;2,82;38,88;34,29;0;Japan;Asiatic Region;"Springer";"1994-2026";"Complementary and Alternative Medicine (Q2); Organic Chemistry (Q2); Pharmaceutical Science (Q2); Drug Discovery (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +12276;144948;"Journal of Occupational Science";journal;"21581576, 14427591";"Taylor and Francis Ltd.";No;No;0,482;Q2;60;95;164;5317;435;142;2,18;55,97;71,78;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12277;21100224432;"Journal of the Korean Wood Science and Technology";journal;"22337180, 10170715";"Korean Society of Wood Science Technology";No;No;0,482;Q2;27;49;129;2068;354;129;2,60;42,20;40,34;0;South Korea;Asiatic Region;"Korean Society of Wood Science Technology";"2012-2026";"Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +12278;21100781975;"Network Modeling Analysis in Health Informatics and Bioinformatics";journal;"21926670, 21926662";"Springer";No;No;0,482;Q2;32;176;147;10767;461;147;3,60;61,18;36,00;0;Austria;Western Europe;"Springer";"2012-2026";"Computational Mathematics (Q2); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Urology (Q2); Biomedical Engineering (Q3); Health Informatics (Q3)";"Computer Science; Engineering; Mathematics; Medicine" +12279;19600166315;"Nuclear Medicine and Molecular Imaging";journal;"18693482, 18693474";"Springer Verlag";No;No;0,482;Q2;38;91;149;2747;280;133;2,07;30,19;29,24;1;Germany;Western Europe;"Springer Verlag";"2010-2026";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +12280;14466;"Polymers and Polymer Composites";journal;"14782391, 09673911";"RAPRA Technology Ltd.";Yes;No;0,482;Q2;46;30;238;1491;825;238;2,24;49,70;37,29;0;United Kingdom;Western Europe;"RAPRA Technology Ltd.";"1993-2026";"Ceramics and Composites (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)";"Materials Science" +12281;11700154367;"Proceedings of Institution of Civil Engineers: Construction Materials";journal;"17476518, 1747650X";"ICE Publishing";No;No;0,482;Q2;34;13;79;590;127;61;1,91;45,38;13,33;0;United Kingdom;Western Europe;"ICE Publishing";"2006-2025";"Civil and Structural Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +12282;21101292924;"Psychology of Leaders and Leadership";journal;"27696863, 27696898";"American Psychological Association";No;No;0,482;Q2;22;13;36;759;72;36;1,88;58,38;41,18;0;United States;Northern America;"American Psychological Association";"2022-2025";"Business, Management and Accounting (miscellaneous) (Q2); Applied Psychology (Q3); Social Psychology (Q3)";"Business, Management and Accounting; Psychology" +12283;19700174681;"Revista Paulista de Pediatria";journal;"19840462, 01030582";"Sao Paulo Pediatric Society";Yes;Yes;0,482;Q2;38;87;301;2204;479;288;1,32;25,33;66,17;0;Brazil;Latin America;"Sao Paulo Pediatric Society";"2010-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +12284;20432;"Software Testing Verification and Reliability";journal;"10991689, 09600833";"John Wiley and Sons Ltd";No;No;0,482;Q2;56;25;82;1743;144;58;1,80;69,72;25,23;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1991-2026";"Media Technology (Q2); Safety, Risk, Reliability and Quality (Q2); Software (Q2)";"Computer Science; Engineering" +12285;26383;"South African Journal of Geology";journal;"19968590, 10120750";"Geological Society of South Africa";No;No;0,482;Q2;61;25;92;2157;110;91;1,21;86,28;31,03;0;South Africa;Africa;"Geological Society of South Africa";"1987-2025";"Geology (Q2)";"Earth and Planetary Sciences" +12286;19536;"Veterinary Ophthalmology";journal;"14635224, 14635216";"Wiley-Blackwell Publishing Ltd";No;No;0,482;Q2;65;107;242;3172;319;235;1,32;29,64;59,02;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1998-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +12287;21100316070;"Oncology Research and Treatment";journal;"22965270, 22965262";"S. Karger AG";No;No;0,482;Q3;59;108;240;3644;274;216;0,86;33,74;42,23;0;Switzerland;Western Europe;"S. Karger AG";"1978-1997, 2013-2026";"Hematology (Q3); Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12288;6300153115;"IEEE International Workshop on Quality of Service, IWQoS";conference and proceedings;"1548615X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,482;-;39;150;208;3997;364;206;1,75;26,65;29,60;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1999-2000, 2002, 2006-2014, 2023-2025";"Electrical and Electronic Engineering";"Engineering" +12289;21100999215;"Analytic Philosophy";journal;"2153960X, 21539596";"John Wiley and Sons Ltd";No;No;0,481;Q1;8;66;78;2500;73;76;1,10;37,88;12,28;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2015, 2020-2026";"Philosophy (Q1)";"Arts and Humanities" +12290;21100836581;"Actuators";journal;"20760825";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,481;Q2;48;619;1374;24265;3926;1370;2,77;39,20;24,28;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2012-2026";"Control and Optimization (Q2); Control and Systems Engineering (Q2)";"Engineering; Mathematics" +12291;21100901173;"Applied Network Science";journal;"23648228";"Springer Nature";Yes;No;0,481;Q2;36;65;245;3229;538;245;1,87;49,68;37,88;0;Switzerland;Western Europe;"Springer Nature";"2016-2026";"Computational Mathematics (Q2); Computer Networks and Communications (Q2); Multidisciplinary (Q2)";"Computer Science; Mathematics; Multidisciplinary" +12292;21101037130;"Asia-Pacific Journal of Regional Science";journal;"25097954";"Springer Science and Business Media Deutschland GmbH";No;No;0,481;Q2;23;41;140;2827;396;138;2,93;68,95;36,67;0;Netherlands;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2017-2026";"Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Urban Studies (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Economics, Econometrics and Finance; Energy; Social Sciences" +12293;29181;"Cancer/Radiotherapie";journal;"17696658, 12783218";"Elsevier Masson s.r.l.";No;No;0,481;Q2;40;111;361;5282;579;348;1,26;47,59;39,57;0;France;Western Europe;"Elsevier Masson s.r.l.";"1997-2025";"Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)";"Medicine" +12294;21100887414;"China Journal of Accounting Studies";journal;"21697213, 21697221";"Taylor and Francis Ltd.";Yes;No;0,481;Q2;17;12;89;852;197;89;2,25;71,00;28,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2025";"Business, Management and Accounting (miscellaneous) (Q2); Accounting (Q3)";"Business, Management and Accounting" +12295;21101259361;"Discover Mechanical Engineering";journal;"27316564";"Springer Nature";Yes;No;0,481;Q2;11;78;79;3592;280;78;3,49;46,05;14,81;0;United Kingdom;Western Europe;"Springer Nature";"2022-2026";"Mechanical Engineering (Q2)";"Engineering" +12296;29383;"Energy Exploration and Exploitation";journal;"20484054, 01445987";"SAGE Publications Inc.";Yes;No;0,481;Q2;50;143;306;7811;895;306;3,18;54,62;26,68;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1983-1985, 1987-1988, 1995-2026";"Energy Engineering and Power Technology (Q2); Nuclear Energy and Engineering (Q2); Fuel Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +12297;21100446512;"Evidence-based HRM";journal;"20493983, 20493991";"Emerald Publishing";No;No;0,481;Q2;25;102;127;7079;419;127;3,29;69,40;45,54;0;United Kingdom;Western Europe;"Emerald Publishing";"2013-2026";"Industrial Relations (Q2); Applied Psychology (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Psychology" +12298;21101302941;"Frontiers in Analytical Science";journal;"26739283";"Frontiers Media SA";Yes;No;0,481;Q2;11;11;92;471;211;85;2,54;42,82;43,18;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Analytical Chemistry (Q2); Pharmaceutical Science (Q2); Biochemistry (Q3); Spectroscopy (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +12299;21101140334;"Heart and Mind";journal;"24686476, 24686484";"Wolters Kluwer Medknow Publications";Yes;Yes;0,481;Q2;12;67;136;3817;237;106;1,90;56,97;38,32;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2017-2026";"Clinical Psychology (Q2); Cardiology and Cardiovascular Medicine (Q3); Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +12300;12679;"IEEE Technology and Society Magazine";journal;"02780097, 1937416X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,481;Q2;47;34;155;1083;270;119;2,12;31,85;24,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1982-2025";"Engineering (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Engineering; Social Sciences" +12301;19271;"International Journal on Software Tools for Technology Transfer";journal;"14332779, 14332787";"Springer Verlag";No;No;0,481;Q2;62;49;146;1808;366;144;1,92;36,90;21,53;0;Germany;Western Europe;"Springer Verlag";"1997-2026";"Information Systems (Q2); Software (Q2)";"Computer Science" +12302;28436;"Journal of Atmospheric and Solar-Terrestrial Physics";journal;"13646826";"Elsevier Ltd";No;No;0,481;Q2;110;206;362;10324;778;360;2,24;50,12;25,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"1997-2026";"Geophysics (Q2); Atmospheric Science (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences" +12303;19700201207;"Journal of Craniovertebral Junction and Spine";journal;"09748237, 09769285";"Wolters Kluwer Medknow Publications";Yes;Yes;0,481;Q2;34;75;198;2037;278;187;0,95;27,16;10,69;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2010-2026";"Surgery (Q2); Neurology (clinical) (Q3)";"Medicine" +12304;24358;"Journal of Heuristics";journal;"13811231, 15729397";"Springer Netherlands";No;No;0,481;Q2;77;38;53;1973;136;53;3,27;51,92;28,23;0;Netherlands;Western Europe;"Springer Netherlands";"1995-2026";"Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Control and Optimization (Q2); Information Systems (Q2); Software (Q2); Management Science and Operations Research (Q3)";"Computer Science; Decision Sciences; Mathematics" +12305;4000152105;"Neotropical Entomology";journal;"16788052, 1519566X";"Springer";No;Yes;0,481;Q2;63;136;291;8856;582;283;1,96;65,12;36,80;0;United States;Northern America;"Springer";"2001-2026";"Insect Science (Q2)";"Agricultural and Biological Sciences" +12306;22149;"Oral and Maxillofacial Surgery Clinics of North America";journal;"15581365, 10423699";"W.B. Saunders";No;No;0,481;Q2;61;63;176;2112;303;151;1,70;33,52;19,55;0;United States;Northern America;"W.B. Saunders";"1994, 2001-2026";"Oral Surgery (Q2); Otorhinolaryngology (Q2); Surgery (Q2)";"Dentistry; Medicine" +12307;23442;"Politics and the Life Sciences";journal;"14715457, 07309384";"Cambridge University Press";No;No;0,481;Q2;26;26;61;1661;112;55;1,35;63,88;40,23;1;United Kingdom;Western Europe;"Cambridge University Press";"1982-1984, 1986-2026";"Public Administration (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12308;21101041533;"Advances in Public Health";journal;"23147784, 23566868";"John Wiley and Sons Ltd";Yes;No;0,481;Q3;20;53;127;2408;247;127;1,94;45,43;43,63;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2015, 2019-2026";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +12309;32422;"Journal of International Medical Research";journal;"14732300, 03000605";"SAGE Publications Ltd";Yes;No;0,481;Q3;79;519;1515;14887;2693;1514;1,78;28,68;42,74;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1972-2026";"Biochemistry (Q3); Biochemistry (medical) (Q3); Medicine (miscellaneous) (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12310;22265;"Scandinavian Cardiovascular Journal";journal;"16512006, 14017431";"Taylor and Francis Ltd.";No;No;0,481;Q3;52;28;139;847;208;130;1,51;30,25;34,19;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1967-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +12311;21100212301;"Proceedings of the Annual Conference of the International Speech Communication Association, INTERSPEECH";conference and proceedings;"29581796, 2308457X";"International Speech Communication Association";No;No;0,481;-;140;1180;3339;35466;7231;3329;2,06;30,06;31,01;0;France;Western Europe;"International Speech Communication Association";"2004, 2006-2011, 2013-2025";"Computer Science (miscellaneous); Human-Computer Interaction; Linguistics and Language; Modeling and Simulation; Sensory Systems; Signal Processing; Software";"Computer Science; Mathematics; Neuroscience; Social Sciences" +12312;21100874350;"Baltic Region";journal;"23100524, 20798555";"Immanuel Kant Baltic Federal University";Yes;Yes;0,480;Q1;12;21;105;777;122;103;1,16;37,00;48,65;0;Russian Federation;Eastern Europe;"Immanuel Kant Baltic Federal University";"2018-2025";"Cultural Studies (Q1); History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2); Geography, Planning and Development (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +12313;21100447802;"Asian Education and Development Studies";journal;"20463170, 20463162";"Emerald Publishing";No;No;0,480;Q2;26;97;118;6818;344;116;2,97;70,29;39,91;0;United Kingdom;Western Europe;"Emerald Publishing";"2013-2026";"Development (Q2); Education (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +12314;19700190342;"Australian Planner";journal;"21506841, 07293682";"Taylor and Francis Ltd.";No;No;0,480;Q2;33;17;56;659;94;48;1,44;38,76;36,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-2018, 2020-2026";"Geography, Planning and Development (Q2); Urban Studies (Q2)";"Social Sciences" +12315;21100225612;"Central European Journal of International and Security Studies";journal;"1802548X, 1805482X";"Metropolitni Univerzita Praha";Yes;Yes;0,480;Q2;11;18;53;1230;88;53;2,42;68,33;28,57;0;Czech Republic;Eastern Europe;"Metropolitni Univerzita Praha";"2012-2025";"Political Science and International Relations (Q2); Safety Research (Q2)";"Social Sciences" +12316;85530;"City and Society";journal;"08930465, 1548744X";"John Wiley and Sons Inc";No;No;0,480;Q2;36;20;58;1001;63;38;1,33;50,05;63,16;0;United States;Northern America;"John Wiley and Sons Inc";"1987-1992, 1994, 1997, 1999, 2001-2026";"Geography, Planning and Development (Q2); Urban Studies (Q2)";"Social Sciences" +12317;21101027206;"Journal of General and Family Medicine";journal;"21897948, 21896577";"John Wiley and Sons Inc";Yes;No;0,480;Q2;22;120;244;2307;348;172;1,85;19,23;26,49;1;United States;Northern America;"John Wiley and Sons Inc";"2015-2026";"Family Practice (Q2); Geriatrics and Gerontology (Q3); Internal Medicine (Q3)";"Medicine" +12318;27775;"Legal Medicine";journal;"18734162, 13446223";"Elsevier B.V.";No;No;0,480;Q2;59;130;419;4585;705;403;1,59;35,27;42,52;0;Netherlands;Western Europe;"Elsevier B.V.";"1999-2026";"Issues, Ethics and Legal Aspects (Q2); Pathology and Forensic Medicine (Q2)";"Medicine; Nursing" +12319;29118;"Physica B: Condensed Matter";journal;"09214526";"Elsevier B.V.";No;No;0,480;Q2;143;1163;2507;62110;8003;2491;3,34;53,40;29,05;0;Netherlands;Western Europe;"Elsevier B.V.";"1984, 1988-2026";"Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +12320;15300154820;"Production Engineering";journal;"09446524, 18637353";"Springer Science and Business Media Deutschland GmbH";No;No;0,480;Q2;47;74;227;3069;606;227;2,59;41,47;18,99;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1977, 2008-2026";"Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +12321;21100782676;"Teaching Public Administration";journal;"01447394, 20478720";"SAGE Publications Inc.";No;No;0,480;Q2;19;22;71;1072;145;71;2,02;48,73;40,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1979-1980, 1982-2007, 2009, 2012-2026";"Education (Q2); Public Administration (Q2)";"Social Sciences" +12322;17600155055;"Journal of Cancer Epidemiology";journal;"16878566, 16878558";"John Wiley and Sons Ltd";Yes;No;0,480;Q3;31;0;18;0;47;18;3,89;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2009-2024";"Epidemiology (Q3); Genetics (Q3); Public Health, Environmental and Occupational Health (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12323;21101176787;"Proceedings - AAAI Artificial Intelligence and Interactive Digital Entertainment Conference, AIIDE";conference and proceedings;"23340924, 2326909X";"Association for the Advancement of Artificial Intelligence";No;No;0,480;-;18;56;123;1515;302;117;2,48;27,05;25,96;0;United States;Northern America;"Association for the Advancement of Artificial Intelligence";"2016-2025";"Artificial Intelligence; Computer Graphics and Computer-Aided Design; Computer Science Applications; Human-Computer Interaction; Software";"Computer Science" +12324;21100865931;"EC Tax Review";journal;"09282750, 18758363";"Kluwer Law International";No;No;0,479;Q1;9;24;90;901;57;76;0,65;37,54;18,52;0;Netherlands;Western Europe;"Kluwer Law International";"2018-2025";"Law (Q1); Accounting (Q3)";"Business, Management and Accounting; Social Sciences" +12325;6000159314;"International Journal of Education Through Art";journal;"17435234, 2040090X";"Intellect Ltd.";No;No;0,479;Q1;14;32;86;904;91;77;1,16;28,25;71,43;0;United Kingdom;Western Europe;"Intellect Ltd.";"2007, 2009-2010, 2012-2025";"Arts and Humanities (miscellaneous) (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +12326;15662;"International Review of Law and Economics";journal;"01448188";"Elsevier Inc.";No;No;0,479;Q1;52;34;104;1659;150;103;1,39;48,79;29,51;0;United States;Northern America;"Elsevier Inc.";"1981-2026";"Law (Q1); Economics and Econometrics (Q2); Finance (Q2)";"Economics, Econometrics and Finance; Social Sciences" +12327;21100898964;"Iranian Journal of Nursing and Midwifery Research";journal;"17359066, 22285504";"Wolters Kluwer Medknow Publications";Yes;No;0,479;Q1;41;140;323;4480;550;305;1,49;32,00;62,64;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2014-2026";"Advanced and Specialized Nursing (Q1); Assessment and Diagnosis (Q2); Issues, Ethics and Legal Aspects (Q2); Maternity and Midwifery (Q2); Nursing (miscellaneous) (Q2)";"Nursing" +12328;22244;"Annals of the Royal College of Surgeons of England";journal;"00358843, 14787083";"Royal College of Surgeons of England";No;No;0,479;Q2;83;108;499;2297;773;437;1,73;21,27;21,90;0;United Kingdom;Western Europe;"Royal College of Surgeons of England";"1947-2026";"Surgery (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +12329;18800156743;"Avian Conservation and Ecology";journal;"17126568";"Resilience Alliance";Yes;No;0,479;Q2;34;42;175;3005;204;173;1,14;71,55;46,43;0;Canada;Northern America;"Resilience Alliance";"2009-2026";"Animal Science and Zoology (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12330;5000153705;"Education and Treatment of Children";journal;"07488491, 19348924";"Springer Science and Business Media Deutschland GmbH";No;No;0,479;Q2;55;32;81;1587;129;69;1,19;49,59;68,81;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +12331;21101254801;"Frontiers in Photonics";journal;"26736853";"Frontiers Media SA";Yes;No;0,479;Q2;11;14;105;732;203;95;1,51;52,29;37,04;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Atomic and Molecular Physics, and Optics (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Materials Science; Physics and Astronomy" +12332;21101185613;"Future Transportation";journal;"26737590";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,479;Q2;18;202;208;11030;623;208;3,05;54,60;27,76;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Engineering (miscellaneous) (Q2); Energy (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering" +12333;21101088902;"GEUS Bulletin";journal;"25972162, 25972154";"GEUS - Geological Survey of Denmark and Greenland";Yes;Yes;0,479;Q2;37;7;40;588;47;36;0,93;84,00;34,78;0;Denmark;Western Europe;"GEUS - Geological Survey of Denmark and Greenland";"2020-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q2); Geophysics (Q2); Atmospheric Science (Q3)";"Earth and Planetary Sciences" +12334;17932;"Integration";journal;"01679260";"Elsevier B.V.";No;No;0,479;Q2;53;219;394;8231;1267;393;3,59;37,58;27,79;0;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Software (Q2)";"Computer Science; Engineering" +12335;11800154585;"International Journal of Optomechatronics";journal;"15599620, 15599612";"Taylor and Francis Ltd.";Yes;No;0,479;Q2;28;12;33;548;108;32;3,24;45,67;21,05;0;United States;Northern America;"Taylor and Francis Ltd.";"2007-2026";"Electrical and Electronic Engineering (Q2); Instrumentation (Q2); Mechanical Engineering (Q2)";"Engineering; Physics and Astronomy" +12336;23720;"International Review of Applied Economics";journal;"14653486, 02692171";"Taylor and Francis Ltd.";No;No;0,479;Q2;56;69;130;3734;240;113;1,91;54,12;37,29;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +12337;23870;"Journal of Convex Analysis";journal;"09446532";"Heldermann Verlag";No;No;0,479;Q2;43;64;145;1723;121;143;0,88;26,92;15,08;0;Germany;Western Europe;"Heldermann Verlag";"1996-1999, 2001-2026";"Analysis (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics" +12338;21100370881;"Journal of Experimental Psychology: Animal Learning and Cognition";journal;"23298464, 23298456";"American Psychological Association";No;No;0,479;Q2;82;23;78;942;87;78;0,90;40,96;35,14;0;United States;Northern America;"American Psychological Association";"2014-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Experimental and Cognitive Psychology (Q3)";"Agricultural and Biological Sciences; Psychology" +12339;19700188349;"Journal of Industrial Engineering and Management";journal;"20138423, 20130953";"OmniaScience";Yes;No;0,479;Q2;49;29;109;1947;358;108;2,79;67,14;39,02;0;Spain;Western Europe;"OmniaScience";"2008-2026";"Industrial and Manufacturing Engineering (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Engineering" +12340;18500162200;"Journal of Infrared, Millimeter, and Terahertz Waves";journal;"18666892, 18666906";"Springer New York";No;No;0,479;Q2;77;88;183;4396;618;182;3,82;49,95;20,00;0;United States;Northern America;"Springer New York";"2008-2026";"Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Instrumentation (Q2); Radiation (Q2)";"Engineering; Physics and Astronomy" +12341;28526;"Journal of Magnetism and Magnetic Materials";journal;"03048853";"Elsevier B.V.";No;No;0,479;Q2;209;765;3302;35564;9783;3269;3,18;46,49;28,31;0;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Materials Science; Physics and Astronomy" +12342;24552;"Mathematica Scandinavica";journal;"00255521";"Mathematica Scandinavica";Yes;No;0,479;Q2;35;18;83;284;52;83;0,55;15,78;17,86;0;Denmark;Western Europe;"Mathematica Scandinavica";"1996-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12343;17720;"North American Journal of Fisheries Management";journal;"15488675, 02755947";"Oxford University Press";No;No;0,479;Q2;87;106;352;6147;491;350;1,33;57,99;22,94;0;United States;Northern America;"Oxford University Press";"1981-2026";"Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Management, Monitoring, Policy and Law (Q3)";"Agricultural and Biological Sciences; Environmental Science" +12344;16515;"Photosynthetica";journal;"03003604, 15739058";"Institute of Experimental Botany, ASCR";Yes;No;0,479;Q2;98;37;131;2060;274;124;1,93;55,68;28,45;0;Czech Republic;Eastern Europe;"Institute of Experimental Botany, ASCR";"1979, 1981, 1983, 1985, 1988-1989, 1993-2025";"Plant Science (Q2); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12345;21101342310;"Community Science";journal;"26929430";"John Wiley and Sons Inc";Yes;No;0,479;Q3;5;18;24;1089;50;18;2,10;60,50;55,05;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Global and Planetary Change (Q3); Health, Toxicology and Mutagenesis (Q3); Management, Monitoring, Policy and Law (Q3); Pollution (Q3)";"Environmental Science" +12346;21100470510;"Drug Research";journal;"21949379, 21949387";"Georg Thieme Verlag";No;No;0,479;Q3;76;32;169;1458;431;169;2,28;45,56;44,12;0;Germany;Western Europe;"Georg Thieme Verlag";"1972, 2013-2026";"Drug Discovery (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +12347;12400154707;"Multidisciplinary Respiratory Medicine";journal;"1828695X, 20496958";"Mattioli 1885";Yes;No;0,479;Q3;49;26;83;1084;143;81;1,29;41,69;43,81;0;United Kingdom;Western Europe;"Mattioli 1885";"2008-2025";"Pulmonary and Respiratory Medicine (Q3)";"Medicine" +12348;15344;"International History Review";journal;"07075332, 19496540";"Routledge";No;No;0,478;Q1;33;100;188;4700;157;182;0,67;47,00;20,18;0;United Kingdom;Western Europe;"Routledge";"1979-2026";"Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +12349;19700182024;"Proceedings of the Institution of Civil Engineers: Urban Design and Planning";journal;"17550807, 17550793";"ICE Publishing";No;No;0,478;Q1;26;8;54;536;114;46;1,78;67,00;33,33;0;United Kingdom;Western Europe;"ICE Publishing";"2009-2025";"Architecture (Q1); Civil and Structural Engineering (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2)";"Engineering; Social Sciences" +12350;17443;"Structural Design of Tall and Special Buildings";journal;"15417808, 15417794";"John Wiley and Sons Ltd";No;No;0,478;Q1;67;131;233;5763;517;233;1,94;43,99;26,44;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2003-2026";"Architecture (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Engineering" +12351;21100886521;"Action in Teacher Education";journal;"21586098, 01626620";"Taylor and Francis Ltd.";No;No;0,478;Q2;36;29;72;1385;111;60;1,44;47,76;63,33;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984, 1991-1992, 1994, 1996-2026";"Education (Q2)";"Social Sciences" +12352;21101281021;"Alloys";journal;"2674063X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,478;Q2;8;29;54;1319;142;52;2,49;45,48;27,03;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Metals and Alloys (Q2)";"Engineering; Materials Science" +12353;21101240663;"Conservation";journal;"26737159";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,478;Q2;14;85;134;6698;338;132;2,24;78,80;36,26;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12354;21101045762;"Critical Studies on Security";journal;"21624909, 21624887";"Taylor and Francis Ltd.";No;No;0,478;Q2;30;62;86;3920;91;65;1,11;63,23;53,23;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2025";"Political Science and International Relations (Q2)";"Social Sciences" +12355;21101100210;"Derbyana";journal;"27641465";"Instituto de Pesquisas Ambientais/SIMA/SP";Yes;Yes;0,478;Q2;8;17;50;820;54;44;1,06;48,24;36,36;0;Brazil;Latin America;"Instituto de Pesquisas Ambientais/SIMA/SP";"2021-2025";"Geology (Q2)";"Earth and Planetary Sciences" +12356;21100818724;"Electronic Journal of Graph Theory and Applications";journal;"23382287";"Indonesian Combinatorics Society";Yes;Yes;0,478;Q2;13;30;113;546;81;113;0,60;18,20;40,00;0;Indonesia;Asiatic Region;"Indonesian Combinatorics Society";"2016-2025";"Applied Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +12357;5100155036;"Eurasip Journal on Audio, Speech, and Music Processing";journal;"16874722, 16874714";"Springer Publishing Company";Yes;No;0,478;Q2;38;43;151;2034;536;148;3,53;47,30;20,51;0;United States;Northern America;"Springer Publishing Company";"2007-2026";"Acoustics and Ultrasonics (Q2); Electrical and Electronic Engineering (Q2)";"Engineering; Physics and Astronomy" +12358;110096;"Folia Histochemica et Cytobiologica";journal;"02398508, 18975631";"Via Medica";Yes;No;0,478;Q2;50;14;71;748;149;71;1,90;53,43;45,31;0;Poland;Eastern Europe;"Via Medica";"1984-2026";"Pathology and Forensic Medicine (Q2); Histology (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +12359;21841;"Food Additives and Contaminants";journal;"0265203X, 14645122";"Taylor and Francis Ltd.";No;No;0,478;Q2;129;133;336;6261;910;336;2,74;47,08;54,03;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2014, 2018, 2020-2026";"Chemistry (miscellaneous) (Q2); Food Science (Q2); Health, Toxicology and Mutagenesis (Q3); Public Health, Environmental and Occupational Health (Q3); Toxicology (Q3)";"Agricultural and Biological Sciences; Chemistry; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +12360;26022;"IEEE Journal of Quantum Electronics";journal;"15581713, 00189197";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,478;Q2;140;89;232;3163;469;230;1,87;35,54;27,39;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1965-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2)";"Engineering; Physics and Astronomy" +12361;17700156703;"International Electronic Journal of Mathematics Education";journal;"13063030";"Modestum LTD";No;No;0,478;Q2;22;60;42;2937;112;42;2,68;48,95;53,42;0;Turkey;Middle East;"Modestum LTD";"2009-2016, 2021-2026";"Education (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics; Social Sciences" +12362;20459;"Journal of Applied Entomology";journal;"14390418, 09312048";"Wiley-Blackwell Publishing Ltd";No;No;0,478;Q2;80;141;369;8824;762;368;1,98;62,58;40,77;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1986-2026";"Agronomy and Crop Science (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +12363;21141;"Journal of Dynamic Systems, Measurement and Control";journal;"00220434, 15289028";"American Society of Mechanical Engineers (ASME)";No;No;0,478;Q2;101;65;230;2476;452;227;1,41;38,09;21,68;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1971-2026";"Computer Science Applications (Q2); Control and Systems Engineering (Q2); Information Systems (Q2); Instrumentation (Q2); Mechanical Engineering (Q2)";"Computer Science; Engineering; Physics and Astronomy" +12364;19900191902;"Journal of Occupational Therapy, Schools, and Early Intervention";journal;"19411243, 19411251";"Routledge";No;No;0,478;Q2;20;75;137;2827;235;132;1,63;37,69;84,29;1;United Kingdom;Western Europe;"Routledge";"2008-2026";"Education (Q2); Occupational Therapy (Q2); Social Psychology (Q3)";"Health Professions; Psychology; Social Sciences" +12365;21101115504;"Journal of Taibah University for Science";journal;"16583655";"Taylor and Francis Ltd.";Yes;Yes;0,478;Q2;63;115;368;6085;1442;368;4,10;52,91;33,70;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Earth and Planetary Sciences; Environmental Science; Mathematics; Physics and Astronomy" +12366;22754;"Journal of the Asia Pacific Economy";journal;"13547860, 14699648";"Routledge";No;No;0,478;Q2;45;138;206;8147;529;205;2,67;59,04;40,73;4;United Kingdom;Western Europe;"Routledge";"1996-2026";"Development (Q2); Geography, Planning and Development (Q2); Political Science and International Relations (Q2)";"Social Sciences" +12367;21101019706;"Journal of the Korean Academy of Child and Adolescent Psychiatry";journal;"22339183, 1225729X";"Korean Academy of Child and Adolescent Psychiatry";Yes;No;0,478;Q2;14;28;97;1235;168;82;1,90;44,11;41,33;0;South Korea;Asiatic Region;"Korean Academy of Child and Adolescent Psychiatry";"2019-2026";"Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q3)";"Medicine" +12368;17135;"Materiales de Construccion";journal;"19883226, 04652746";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,478;Q2;47;20;97;1136;185;95;1,61;56,80;29,23;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1967-1971, 1996-2025";"Building and Construction (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +12369;21101160584;"Mathematical Modelling and Control";journal;"27678946";"American Institute of Mathematical Sciences";Yes;Yes;0,478;Q2;12;30;96;1056;257;96;3,17;35,20;31,25;0;United States;Northern America;"American Institute of Mathematical Sciences";"2021-2025";"Applied Mathematics (Q2); Computational Mathematics (Q2); Control and Optimization (Q2); Modeling and Simulation (Q2)";"Mathematics" +12370;9500153993;"Neuroradiology Journal";journal;"23851996, 19714009";"SAGE Publications Inc.";No;No;0,478;Q2;36;136;322;4110;497;312;1,39;30,22;26,56;0;Italy;Western Europe;"SAGE Publications Inc.";"2006-2026";"Radiology, Nuclear Medicine and Imaging (Q2); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3)";"Medicine" +12371;29389;"Revista Latino-Americana de Enfermagem";journal;"01041169, 15188345";"Escola de Enfermagem de Ribeirao Preto, Universidade de Sao Paulo";Yes;Yes;0,478;Q2;56;135;434;4011;660;402;1,44;29,71;75,77;0;Brazil;Latin America;"Escola de Enfermagem de Ribeirao Preto, Universidade de Sao Paulo";"1993-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +12372;26034;"Endocrine Regulations";journal;"12100668, 13360329";"Sciendo";Yes;No;0,478;Q3;39;32;96;1214;192;96;2,13;37,94;55,20;0;Poland;Eastern Europe;"Sciendo";"1991-2025";"Endocrinology, Diabetes and Metabolism (Q3); Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12373;25895;"Journal of Molecular Recognition";journal;"09523499, 10991352";"John Wiley and Sons Ltd";No;No;0,478;Q3;91;22;136;1518;419;131;2,93;69,00;24,78;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1988-2026";"Molecular Biology (Q3); Structural Biology (Q3)";"Biochemistry, Genetics and Molecular Biology" +12374;21101392349;"Meteorology (Switzerland)";journal;"26740494";"Multidisciplinary Digital Publishing Institute (MDPI)";No;No;0,478;Q3;7;33;81;1588;117;73;1,53;48,12;31,03;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Atmospheric Science (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Earth and Planetary Sciences; Energy" +12375;110163;"Polish Journal of Microbiology";journal;"25444646, 17331331";"";Yes;No;0,478;Q3;50;42;146;1973;322;146;1,88;46,98;51,80;0;Poland;Eastern Europe;"";"2004-2025";"Applied Microbiology and Biotechnology (Q3); Medicine (miscellaneous) (Q3); Microbiology (Q3); Microbiology (medical) (Q3)";"Immunology and Microbiology; Medicine" +12376;18960;"Singapore Medical Journal";journal;"27375935, 00375675";"Lippincott Williams and Wilkins";Yes;Yes;0,478;Q3;79;162;428;2416;658;311;1,69;14,91;41,00;0;United States;Northern America;"Lippincott Williams and Wilkins";"1960-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +12377;5800208186;"Arts and Humanities in Higher Education";journal;"1741265X, 14740222";"SAGE Publications Ltd";No;No;0,477;Q1;36;24;61;1151;129;61;1,59;47,96;69,39;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2026";"Visual Arts and Performing Arts (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +12378;21100831064;"Chinese Journal of Applied Linguistics";journal;"21929513, 21929505";"De Gruyter Mouton";No;No;0,477;Q1;18;31;104;1653;180;101;1,27;53,32;58,93;0;Germany;Western Europe;"De Gruyter Mouton";"2011, 2016-2026";"Linguistics and Language (Q1)";"Social Sciences" +12379;21101314504;"Journal of Structural Design and Construction Practice";journal;"29965144, 29965136";"American Society of Civil Engineers (ASCE)";No;No;0,477;Q1;42;174;307;8306;767;306;2,42;47,74;18,31;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"2025-2026";"Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities" +12380;21101021173;"Medien und Kommunikationswissenschaft";journal;"1615634X";"Nomos Verlagsgesellschaft mbH und Co KG";Yes;Yes;0,477;Q1;9;26;48;1523;61;44;1,45;58,58;52,94;0;Germany;Western Europe;"Nomos Verlagsgesellschaft mbH und Co KG";"2019-2026";"Linguistics and Language (Q1); Communication (Q2)";"Social Sciences" +12381;17500154724;"Trabajos de Prehistoria";journal;"19883218, 00825638";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,477;Q1;30;17;60;1125;46;50;0,59;66,18;30,77;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2003-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +12382;19700190347;"Canadian Journal of Science, Mathematics and Technology Education";journal;"19424051, 14926156";"Springer Nature";No;No;0,477;Q2;38;62;158;2287;210;118;0,98;36,89;63,41;0;Switzerland;Western Europe;"Springer Nature";"2001-2026";"Education (Q2)";"Social Sciences" +12383;21100857172;"Computation";journal;"20793197";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,477;Q2;39;297;724;13005;2291;719;3,52;43,79;23,17;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Applied Mathematics (Q2); Computer Science (miscellaneous) (Q2); Modeling and Simulation (Q2); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +12384;21101310039;"Dermatopathology";journal;"22963529";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,477;Q2;14;43;124;1831;235;118;1,96;42,58;46,11;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Dermatology (Q2)";"Medicine" +12385;21101063833;"International Journal of Cloud Applications and Computing";journal;"21561826, 21561834";"IGI Global Publishing";No;No;0,477;Q2;27;9;103;494;387;103;5,92;54,89;42,31;0;United States;Northern America;"IGI Global Publishing";"2012, 2019-2026";"Computer Networks and Communications (Q2); Computer Science Applications (Q2); Human-Computer Interaction (Q3)";"Computer Science" +12386;23342;"Journal of Chemical Ecology";journal;"15731561, 00980331";"Springer";No;No;0,477;Q2;142;119;228;7334;454;225;1,95;61,63;41,08;0;United States;Northern America;"Springer";"1975-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Biochemistry (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +12387;24418;"Journal of Geoscience Education";journal;"10899995";"Taylor and Francis Ltd.";No;No;0,477;Q2;48;55;124;3700;266;101;2,35;67,27;63,19;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Education (Q2)";"Earth and Planetary Sciences; Social Sciences" +12388;25898;"Journal of Peptide Science";journal;"10752617, 10991387";"John Wiley and Sons Ltd";No;No;0,477;Q2;78;87;214;4978;447;204;2,25;57,22;42,89;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1995-2026";"Organic Chemistry (Q2); Biochemistry (Q3); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Molecular Medicine (Q3); Pharmacology (Q3); Structural Biology (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +12389;21101058018;"Journal of Physics: Complexity";journal;"2632072X";"IOP Publishing Ltd.";Yes;No;0,477;Q2;22;77;202;4574;469;200;2,22;59,40;24,48;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2020-2026";"Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Information Systems (Q2)";"Computer Science" +12390;21100301602;"Journal of Robotics";journal;"16879600, 16879619";"John Wiley and Sons Ltd";Yes;No;0,477;Q2;31;24;100;1013;321;100;3,67;42,21;27,47;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2026";"Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q2)";"Computer Science; Engineering" +12391;17700156101;"Journal on Multimodal User Interfaces";journal;"17837677, 17838738";"Springer Verlag";No;No;0,477;Q2;40;29;67;1638;223;65;3,24;56,48;38,32;0;Germany;Western Europe;"Springer Verlag";"2008-2026";"Signal Processing (Q2); Human-Computer Interaction (Q3)";"Computer Science" +12392;21805;"Mathematical Methods of Operations Research";journal;"14325217, 14322994";"Physica-Verlag";No;No;0,477;Q2;59;28;114;1031;142;109;1,15;36,82;25,76;0;Germany;Western Europe;"Physica-Verlag";"1996-2026";"Mathematics (miscellaneous) (Q2); Software (Q2); Management Science and Operations Research (Q3)";"Computer Science; Decision Sciences; Mathematics" +12393;21100210909;"Nordic Journal of Digital Literacy";journal;"1891943X, 08096724";"Scandinavian University Press";Yes;Yes;0,477;Q2;27;13;59;403;123;52;1,90;31,00;50,00;0;Norway;Western Europe;"Scandinavian University Press";"2012-2025";"Computer Science Applications (Q2); Education (Q2); E-learning (Q3)";"Computer Science; Social Sciences" +12394;21101377090;"npj Health Systems";journal;"30051959";"Springer Nature";No;No;0,477;Q2;5;50;4;2631;12;3;3,00;52,62;40,90;1;United Kingdom;Western Europe;"Springer Nature";"2024-2026";"Health (social science) (Q2); Health Information Management (Q3); Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Health Professions; Medicine; Social Sciences" +12395;21100268418;"Quality Management Journal";journal;"10686967";"Taylor and Francis Ltd.";No;No;0,477;Q2;25;24;59;1401;204;48;4,31;58,38;27,78;0;United States;Northern America;"Taylor and Francis Ltd.";"1994-1995, 1997, 2013-2026";"Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting" +12396;5300152722;"Smart Structures and Systems";journal;"17381584, 17381991";"Techno-Press";No;No;0,477;Q2;71;39;247;1959;557;243;1,64;50,23;24,49;0;South Korea;Asiatic Region;"Techno-Press";"2005-2025";"Computer Science Applications (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +12397;11200153506;"Theoretical Ecology";journal;"18741738, 18741746";"Springer Science and Business Media B.V.";No;No;0,477;Q2;48;32;73;1922;99;72;1,18;60,06;28,40;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2008-2026";"Ecology (Q2); Ecological Modeling (Q3)";"Environmental Science" +12398;21100901151;"Turkish Journal of Orthodontics";journal;"25289659, 21489505";"Galenos Publishing House";Yes;Yes;0,477;Q2;18;20;85;727;177;85;2,06;36,35;63,24;0;Turkey;Middle East;"Galenos Publishing House";"2018-2025";"Orthodontics (Q2)";"Dentistry" +12399;27495;"Annals of Saudi Medicine";journal;"09754466, 02564947";"King Faisal Specialist Hospital and Research Centre";Yes;Yes;0,477;Q3;60;47;150;1531;276;145;1,64;32,57;38,82;0;Saudi Arabia;Middle East;"King Faisal Specialist Hospital and Research Centre";"1988-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +12400;15073;"Folia Biologica (Czech Republic)";journal;"25337602, 00155500";"Charles University in Prague";Yes;No;0,477;Q3;39;21;68;878;122;68;1,67;41,81;48,36;0;Czech Republic;Eastern Europe;"Charles University in Prague";"1961-2025";"Biochemistry (Q3); Developmental Biology (Q3); Genetics (Q3); Immunology (Q3); Medicine (miscellaneous) (Q3); Cell Biology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +12401;19700201419;"LUTS: Lower Urinary Tract Symptoms";journal;"17575664, 17575672";"Wiley Blackwell";No;No;0,477;Q3;30;42;112;1178;196;112;1,72;28,05;21,97;0;Japan;Asiatic Region;"Wiley Blackwell";"2010-2026";"Neurology (Q3); Urology (Q3)";"Medicine; Neuroscience" +12402;21101207028;"Sports Psychiatry";journal;"26740052";"Hogrefe Publishing GmbH";Yes;No;0,477;Q3;7;33;79;922;99;48;1,19;27,94;36,54;0;Germany;Western Europe;"Hogrefe Publishing GmbH";"2022-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +12403;21101080475;"Asian Journal of Business Ethics";journal;"22106731, 22106723";"Springer Science and Business Media B.V.";No;No;0,476;Q1;19;21;82;1448;275;80;2,44;68,95;56,14;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2012-2026";"Philosophy (Q1); Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +12404;21101089140;"E and G Quaternary Science Journal";journal;"04247116, 21999090";"Copernicus Publications";Yes;No;0,476;Q1;33;18;46;1699;93;44;2,17;94,39;44,76;0;Germany;Western Europe;"Copernicus Publications";"1979-1985, 1989-1990, 1992, 1996-2000, 2002-2005, 2007-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Geology (Q2); Paleontology (Q2); Stratigraphy (Q2)";"Arts and Humanities; Earth and Planetary Sciences; Social Sciences" +12405;5100154502;"Journal of Forensic and Legal Medicine";journal;"18787487, 1752928X";"Churchill Livingstone";No;No;0,476;Q1;66;168;325;6318;614;314;1,90;37,61;45,86;1;United Kingdom;Western Europe;"Churchill Livingstone";"2007-2026";"Law (Q1); Pathology and Forensic Medicine (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +12406;21100794598;"Journal of Media Ethics: Exploring Questions of Media Morality";journal;"2373700X, 23736992";"Taylor and Francis Ltd.";No;No;0,476;Q1;27;36;95;1729;125;78;1,34;48,03;44,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Philosophy (Q1); Communication (Q2)";"Arts and Humanities; Social Sciences" +12407;85257;"Studies in Philosophy and Education";journal;"00393746, 1573191X";"Springer Science and Business Media B.V.";No;No;0,476;Q1;46;46;122;2210;157;104;1,47;48,04;54,24;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1960-1970, 1972-1976, 1979, 1990-2026";"Philosophy (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +12408;5400152643;"Ciencia Florestal";journal;"19805098, 01039954";"Universidade Federal de Santa Maria";Yes;No;0,476;Q2;30;53;256;1939;285;255;1,14;36,58;35,91;0;Brazil;Latin America;"Universidade Federal de Santa Maria";"2007-2025";"Forestry (Q2)";"Agricultural and Biological Sciences" +12409;21101267690;"Clean Energy Science and Technology";journal;"29724910";"Universe Scientific Publishing Pte. Ltd.";No;No;0,476;Q2;8;42;53;2757;128;42;2,42;65,64;27,52;0;Singapore;Asiatic Region;"Universe Scientific Publishing Pte. Ltd.";"2023-2026";"Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering" +12410;21100309827;"Control Theory and Technology";journal;"20956983, 21980942";"Springer Science + Business Media";No;No;0,476;Q2;41;69;149;2456;288;139;1,99;35,59;23,35;0;United States;Northern America;"Springer Science + Business Media";"2014-2026";"Aerospace Engineering (Q2); Control and Optimization (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Information Systems (Q2); Modeling and Simulation (Q2); Signal Processing (Q2)";"Computer Science; Engineering; Mathematics" +12411;19400157150;"Cuadernos de Gestion";journal;"11316837, 19882157";"Institute of Applied Business Economics";Yes;Yes;0,476;Q2;20;13;54;1108;156;53;2,69;85,23;37,84;0;Spain;Western Europe;"Institute of Applied Business Economics";"2001-2025";"Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q2); Industrial Relations (Q2); Strategy and Management (Q2); Marketing (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +12412;52557;"International Journal of Nursing Education Scholarship";journal;"1548923X, 21945772";"Walter de Gruyter GmbH";No;No;0,476;Q2;47;26;91;1203;152;91;1,53;46,27;79,09;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2003-2025";"Education (Q2); Nursing (miscellaneous) (Q2)";"Nursing; Social Sciences" +12413;11700154735;"Journal of Aerosol Medicine and Pulmonary Drug Delivery";journal;"19412703, 19412711";"Mary Ann Liebert Inc.";No;No;0,476;Q2;89;47;106;1749;240;98;2,37;37,21;32,08;0;United States;Northern America;"Mary Ann Liebert Inc.";"2008-2026";"Pharmaceutical Science (Q2); Pharmacology (medical) (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +12414;25316;"Journal of Ethnicity in Substance Abuse";journal;"15332659, 15332640";"Taylor and Francis Ltd.";No;No;0,476;Q2;39;143;223;7176;335;218;1,42;50,18;48,41;1;United States;Northern America;"Taylor and Francis Ltd.";"2002-2026";"Health (social science) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +12415;21101017551;"Journal of Evidence-Based Social Work (United States)";journal;"26408074, 26408066";"Routledge";No;No;0,476;Q2;36;86;138;4862;299;135;2,21;56,53;57,31;0;United Kingdom;Western Europe;"Routledge";"2019-2026";"Health (social science) (Q2); Sociology and Political Science (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +12416;21101067746;"Journal of Medical Regulation";journal;"25721852, 25721801";"Federation of State Medical Boards";No;No;0,476;Q2;16;13;55;331;46;35;1,18;25,46;42,11;0;United States;Northern America;"Federation of State Medical Boards";"2014-2025";"Education (Q2); LPN and LVN (Q2); Health Policy (Q3)";"Medicine; Nursing; Social Sciences" +12417;16868;"Motor Control";journal;"10871640, 15432696";"Human Kinetics Publishers Inc.";No;No;0,476;Q2;55;28;126;1261;223;124;1,79;45,04;33,80;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1987, 1997-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Neurology (clinical) (Q3); Physiology (medical) (Q3); Sports Science (Q3)";"Health Professions; Medicine" +12418;71588;"Pain Management";journal;"17581877, 17581869";"Taylor and Francis Ltd.";No;No;0,476;Q2;40;123;235;5573;415;222;1,61;45,31;43,09;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011, 2014-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +12419;21101111784;"Plastic and Aesthetic Research";journal;"23479264, 23496150";"OAE Publishing Inc.";No;No;0,476;Q2;15;36;194;2035;415;191;2,22;56,53;43,27;0;United States;Northern America;"OAE Publishing Inc.";"2017, 2019-2025";"Surgery (Q2)";"Medicine" +12420;19500157825;"SERIEs";journal;"18694187, 18694195";"Springer Verlag";Yes;Yes;0,476;Q2;25;26;53;901;58;51;0,81;34,65;43,86;1;Germany;Western Europe;"Springer Verlag";"2010-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +12421;21100923467;"Transnational Corporations Review";journal;"19186444, 19252099";"Elsevier B.V.";Yes;No;0,476;Q2;27;31;122;1864;342;119;2,87;60,13;35,21;0;Netherlands;Western Europe;"Elsevier B.V.";"2009-2025";"Business and International Management (Q2); Development (Q2); Economics and Econometrics (Q2); Finance (Q2); Strategy and Management (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +12422;34696;"Turkish Journal of Agriculture and Forestry";journal;"1300011X, 13036173";"TUBITAK";Yes;No;0,476;Q2;61;77;247;4360;747;247;2,87;56,62;40,20;0;Turkey;Middle East;"TUBITAK";"1994-2025";"Ecology (Q2); Food Science (Q2); Forestry (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12423;21101081674;"Asian Transport Studies";journal;"21855560";"Elsevier B.V.";Yes;Yes;0,476;Q3;14;18;103;965;232;102;2,31;53,61;30,19;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Transportation (Q3)";"Social Sciences" +12424;19180;"Journal of Applied Genetics";journal;"12341983, 21903883";"Springer Science and Business Media Deutschland GmbH";No;No;0,476;Q3;65;135;207;7521;449;202;2,18;55,71;51,68;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-2026";"Genetics (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12425;5800169484;"Defence Studies";journal;"14702436, 17439698";"Routledge";No;No;0,475;Q1;23;56;114;3527;226;113;1,87;62,98;22,22;10;United Kingdom;Western Europe;"Routledge";"2010-2026";"History (Q1); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +12426;24187;"Human Studies";journal;"1572851X, 01638548";"Springer Netherlands";No;No;0,475;Q1;42;80;113;4110;183;109;1,49;51,38;34,78;0;Netherlands;Western Europe;"Springer Netherlands";"1978-1980, 1982-2026";"Philosophy (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +12427;5700172022;"Informal Logic";journal;"08242577";"University of Windsor";Yes;Yes;0,475;Q1;25;23;70;838;116;69;1,51;36,43;20,00;0;Canada;Northern America;"University of Windsor";"1988, 2010-2025";"Philosophy (Q1)";"Arts and Humanities" +12428;21100805775;"International Journal of Design Creativity and Innovation";journal;"21650357, 21650349";"Taylor and Francis Ltd.";No;No;0,475;Q1;26;14;42;1036;166;38;4,00;74,00;62,07;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Architecture (Q1); Arts and Humanities (miscellaneous) (Q1); Visual Arts and Performing Arts (Q1); Aerospace Engineering (Q2); Education (Q2); Engineering (miscellaneous) (Q2); Behavioral Neuroscience (Q3); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3)";"Arts and Humanities; Engineering; Neuroscience; Psychology; Social Sciences" +12429;19553;"Journal of Applied Communication Research";journal;"14795752, 00909882";"Routledge";No;No;0,475;Q1;77;58;133;1911;297;125;2,40;32,95;73,96;0;United Kingdom;Western Europe;"Routledge";"1973-2026";"Linguistics and Language (Q1); Communication (Q2)";"Social Sciences" +12430;21100370349;"Journal of Criminal Psychology";journal;"20499388, 20093829";"Emerald Publishing";No;No;0,475;Q1;20;72;72;4029;153;70;2,28;55,96;60,66;0;United Kingdom;Western Europe;"Emerald Publishing";"2011-2026";"Law (Q1); Applied Psychology (Q3); Social Psychology (Q3)";"Psychology; Social Sciences" +12431;21100922953;"London Review of International Law";journal;"20506333, 20506325";"Oxford University Press";No;No;0,475;Q1;21;16;59;1831;44;58;0,64;114,44;53,33;0;United Kingdom;Western Europe;"Oxford University Press";"2013-2025";"Law (Q1)";"Social Sciences" +12432;21101063715;"Agrosystems, Geosciences and Environment";journal;"26396696";"John Wiley and Sons Ltd";Yes;No;0,475;Q2;23;240;348;13600;777;344;2,24;56,67;25,83;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Plant Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences" +12433;13715;"Entropy";journal;"10994300";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,475;Q2;123;1260;4619;60133;11855;4563;2,51;47,72;29,47;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"1999-2026";"Electrical and Electronic Engineering (Q2); Information Systems (Q2); Mathematical Physics (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +12434;21489;"Ethology";journal;"14390310, 01791613";"Wiley-Blackwell Publishing Ltd";No;No;0,475;Q2;91;78;224;4474;308;212;1,26;57,36;49,82;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1986-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +12435;15092;"Food and Agricultural Immunology";journal;"14653443, 09540105";"Taylor and Francis Ltd.";Yes;No;0,475;Q2;49;21;118;2225;362;118;4,08;105,95;43,31;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2003, 2005-2026";"Agronomy and Crop Science (Q2); Food Science (Q2); Immunology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology" +12436;21100842867;"HardwareX";journal;"24680672";"Elsevier Ltd";Yes;No;0,475;Q2;34;113;351;3118;863;350;2,11;27,59;22,72;0;United Kingdom;Western Europe;"Elsevier Ltd";"2017-2026";"Civil and Structural Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Instrumentation (Q2); Mechanical Engineering (Q2); Biomedical Engineering (Q3)";"Engineering; Physics and Astronomy" +12437;3200147832;"Journal of Building Physics";journal;"17442583, 17442591";"SAGE Publications Ltd";No;No;0,475;Q2;46;57;88;2699;218;82;2,33;47,35;32,45;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2000-2026";"Building and Construction (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +12438;24097;"Journal of the Indian Chemical Society";journal;"00194522";"Elsevier B.V.";No;No;0,475;Q2;49;821;1194;45604;4680;1193;4,07;55,55;34,47;0;India;Asiatic Region;"Elsevier B.V.";"1973-1985, 1987-1991, 1996-2026";"Inorganic Chemistry (Q2); Organic Chemistry (Q2); Drug Discovery (Q3); Electrochemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry; Pharmacology, Toxicology and Pharmaceutics" +12439;17014;"Journal of Tribology";journal;"15288897, 07424787";"American Society of Mechanical Engineers (ASME)";No;No;0,475;Q2;107;151;454;7119;1301;448;2,83;47,15;23,38;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1967-1975, 1977-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)";"Engineering; Materials Science; Physics and Astronomy" +12440;5000157107;"Journal of Veterinary Behavior";journal;"15587878";"Elsevier Inc.";No;No;0,475;Q2;65;72;239;3168;431;211;1,95;44,00;60,83;1;United States;Northern America;"Elsevier Inc.";"2006-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +12441;15900154751;"Knowledge and Management of Aquatic Ecosystems";journal;"19619502";"EDP Sciences";Yes;Yes;0,475;Q2;41;32;74;2212;143;74;1,74;69,13;35,40;1;France;Western Europe;"EDP Sciences";"2008-2026";"Aquatic Science (Q2); Ecology (Q2); Nature and Landscape Conservation (Q2); Water Science and Technology (Q2); Management, Monitoring, Policy and Law (Q3)";"Agricultural and Biological Sciences; Environmental Science" +12442;26388;"Organic and Biomolecular Chemistry";journal;"14770520, 14770539";"Royal Society of Chemistry";No;No;0,475;Q2;196;963;3209;54128;8482;3201;2,65;56,21;35,78;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2003-2026";"Organic Chemistry (Q2); Biochemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +12443;16387;"OTJR Occupation, Participation and Health";journal;"19382383, 15394492";"SAGE Publications Inc.";No;No;0,475;Q2;53;124;176;5277;334;166;1,91;42,56;70,14;2;United States;Northern America;"SAGE Publications Inc.";"2002-2026";"Occupational Therapy (Q2)";"Health Professions" +12444;10400153302;"Physica Status Solidi - Rapid Research Letters";journal;"18626254, 18626270";"Wiley-VCH Verlag";No;No;0,475;Q2;88;230;617;10162;1277;604;2,00;44,18;27,12;0;Germany;Western Europe;"Wiley-VCH Verlag";"2007-2026";"Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)";"Materials Science; Physics and Astronomy" +12445;144658;"Quality Assurance in Education";journal;"09684883";"Emerald Group Publishing Ltd.";No;No;0,475;Q2;65;63;120;3225;311;117;2,58;51,19;36,81;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1993-2026";"Education (Q2)";"Social Sciences" +12446;5700166680;"Revista de Estudios Politicos";journal;"00487694, 19890613";"Centro Estudios Politicos Constitucionales";No;Yes;0,475;Q2;15;44;109;2091;77;106;0,79;47,52;29,55;0;Spain;Western Europe;"Centro Estudios Politicos Constitucionales";"2008-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12447;18700156718;"Zeitschrift fur Erziehungswissenschaft";journal;"18625215, 1434663X";"VS Verlag fur Sozialwissenschaften";No;No;0,475;Q2;32;90;203;6268;321;184;1,76;69,64;60,00;1;Germany;Western Europe;"VS Verlag fur Sozialwissenschaften";"2001, 2008-2026";"Education (Q2)";"Social Sciences" +12448;15013;"Current Treatment Options in Neurology";journal;"10928480, 15343138";"Springer";No;No;0,475;Q3;64;50;102;4330;185;99;1,13;86,60;40,82;0;United States;Northern America;"Springer";"1999-2026";"Neurology (clinical) (Q3)";"Medicine" +12449;21101224879;"Discover Psychology";journal;"27314537";"Discover";Yes;No;0,475;Q3;13;192;294;11572;588;291;1,65;60,27;46,46;0;Switzerland;Western Europe;"Discover";"2021-2026";"Neuroscience (miscellaneous) (Q3); Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3); Behavioral Neuroscience (Q4)";"Medicine; Neuroscience; Psychology" +12450;21101173089;"Journal of Cognitive Enhancement";journal;"25093304, 25093290";"Springer Nature";No;No;0,475;Q3;35;36;85;2964;164;83;1,30;82,33;43,36;0;United States;Northern America;"Springer Nature";"2017-2026";"Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Neuropsychology and Physiological Psychology (Q3); Behavioral Neuroscience (Q4)";"Neuroscience; Psychology" +12451;5700189174;"Australian Journal of Linguistics";journal;"14692996, 07268602";"Routledge";No;No;0,474;Q1;29;29;49;1742;63;49;1,37;60,07;76,47;0;United Kingdom;Western Europe;"Routledge";"1981-2026";"Linguistics and Language (Q1)";"Social Sciences" +12452;21100200613;"Creative Industries Journal";journal;"17510708, 17510694";"Taylor and Francis Ltd.";No;No;0,474;Q1;20;48;101;2517;194;92;1,77;52,44;43,68;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Cultural Studies (Q1); Visual Arts and Performing Arts (Q1); Communication (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +12453;145571;"Journal for General Philosophy of Science";journal;"09254560, 15728587";"Springer Netherlands";No;No;0,474;Q1;25;54;97;2887;139;91;0,97;53,46;18,46;1;Netherlands;Western Europe;"Springer Netherlands";"1980, 1986, 1990-2026";"History and Philosophy of Science (Q1); Philosophy (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +12454;21101170019;"Journal of European Tort Law";journal;"18689612, 18689620";"Walter de Gruyter GmbH";No;No;0,474;Q1;14;14;45;1525;53;41;1,00;108,93;45,45;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2010-2025";"Law (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Social Sciences" +12455;16480;"Kennedy Institute of Ethics Journal";journal;"10863249, 10546863";"Johns Hopkins University Press";No;No;0,474;Q1;54;5;62;301;89;49;0,80;60,20;66,67;0;United States;Northern America;"Johns Hopkins University Press";"1991-2025";"History and Philosophy of Science (Q1); Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2); Health Policy (Q3); Medicine (miscellaneous) (Q3)";"Arts and Humanities; Medicine; Nursing; Social Sciences" +12456;21100897521;"Tejuelo. Didactica de la Lengua y la Literatura. Educacion";journal;"19888430";"Universidad de Extremadura";Yes;Yes;0,474;Q1;10;20;61;807;57;60;0,71;40,35;70,73;0;Spain;Western Europe;"Universidad de Extremadura";"2018-2025";"Linguistics and Language (Q1); Music (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +12457;27027;"Applied Physics A: Materials Science and Processing";journal;"14320630, 09478396";"Springer Heidelberg";Yes;No;0,474;Q2;172;1006;2885;49026;8678;2880;3,04;48,73;30,72;0;Germany;Western Europe;"Springer Heidelberg";"1995-2026";"Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Chemistry; Materials Science" +12458;12100155715;"Assessment for Effective Intervention";journal;"19387458, 15345084";"SAGE Publications Inc.";No;No;0,474;Q2;35;24;67;839;98;66;1,43;34,96;50,00;0;United States;Northern America;"SAGE Publications Inc.";"1988-1993, 1995, 1997, 1999-2026";"Education (Q2); Health Professions (miscellaneous) (Q2); Developmental and Educational Psychology (Q3)";"Health Professions; Psychology; Social Sciences" +12459;15731;"Australian Journal of Political Science";journal;"1363030X, 10361146";"Routledge";No;No;0,474;Q2;47;30;84;1816;180;80;1,82;60,53;53,06;1;United Kingdom;Western Europe;"Routledge";"1990-2026";"Sociology and Political Science (Q2)";"Social Sciences" +12460;21101251254;"European Journal of Anaesthesiology and Intensive Care";journal;"27677206";"Wolters Kluwer Health";Yes;No;0,474;Q2;7;25;60;567;87;53;1,38;22,68;34,15;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2022-2026";"Anesthesiology and Pain Medicine (Q2); Critical Care and Intensive Care Medicine (Q2)";"Medicine" +12461;24762;"Human Rights Quarterly";journal;"1085794X, 02750392";"Johns Hopkins University Press";No;No;0,474;Q2;85;17;75;358;108;74;1,23;21,06;47,83;0;United States;Northern America;"Johns Hopkins University Press";"1981, 1990, 1992, 1994-2025";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12462;19900192119;"IET Wireless Sensor Systems";journal;"20436386, 20436394";"John Wiley & Sons Inc.";Yes;No;0,474;Q2;40;21;65;1352;215;65;3,42;64,38;24,29;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2011-2026";"Industrial and Manufacturing Engineering (Q2)";"Engineering" +12463;4400151712;"International Journal of Fruit Science";journal;"15538362, 15538621";"Taylor and Francis Ltd.";Yes;No;0,474;Q2;45;27;116;1394;387;116;2,69;51,63;35,29;0;United States;Northern America;"Taylor and Francis Ltd.";"2005-2026";"Agronomy and Crop Science (Q2); Ecology (Q2); Horticulture (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12464;21100255539;"International Review of Economics Education";journal;"14773880";"Elsevier B.V.";No;No;0,474;Q2;31;18;56;873;90;56;1,32;48,50;43,18;1;United Kingdom;Western Europe;"Elsevier B.V.";"2003-2011, 2013-2026";"Education (Q2)";"Social Sciences" +12465;29579;"Journal of Biosciences";journal;"02505991, 09737138";"Springer";Yes;No;0,474;Q2;96;90;254;5085;490;229;1,71;56,50;46,92;0;India;Asiatic Region;"Springer";"1979-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +12466;29629;"Journal of Morphology";journal;"03622525, 10974687";"John Wiley & Sons Inc.";No;No;0,474;Q2;90;92;312;5785;470;308;1,48;62,88;38,58;0;United States;Northern America;"John Wiley & Sons Inc.";"1887-1901, 1903, 1908-2026";"Animal Science and Zoology (Q2); Developmental Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12467;21100920033;"Mining, Metallurgy and Exploration";journal;"25243462, 25243470";"Springer International Publishing AG";No;No;0,474;Q2;46;245;627;11278;1609;624;2,55;46,03;26,29;8;Switzerland;Western Europe;"Springer International Publishing AG";"2019-2026";"Chemistry (miscellaneous) (Q2); Control and Systems Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2); Materials Chemistry (Q2); Mechanical Engineering (Q2); Metals and Alloys (Q2)";"Chemistry; Earth and Planetary Sciences; Engineering; Materials Science" +12468;15704;"Pediatric and Developmental Pathology";journal;"10935266, 16155742";"SAGE Publications Inc.";No;No;0,474;Q2;74;83;223;1786;304;198;1,33;21,52;53,10;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1998-2026";"Pathology and Forensic Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +12469;21100432437;"Pediatric Gastroenterology, Hepatology and Nutrition";journal;"22348646, 22348840";"Korean Society of Pediartic Gastroenterology, Hepatology and Nutrition";No;No;0,474;Q2;34;42;124;1212;226;122;1,39;28,86;52,26;0;South Korea;Asiatic Region;"Korean Society of Pediartic Gastroenterology, Hepatology and Nutrition";"2012-2026";"Pediatrics, Perinatology and Child Health (Q2); Gastroenterology (Q3); Hepatology (Q3)";"Medicine" +12470;16578;"Plant Biosystems";journal;"17245575, 11263504";"Springer International Publishing";No;No;0,474;Q2;68;137;370;8412;830;369;2,28;61,40;47,61;0;United Kingdom;Western Europe;"Springer International Publishing";"1993, 1997-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +12471;13421;"Psychoanalytic Psychotherapy";journal;"02668734, 14749734";"Routledge";No;No;0,474;Q2;23;20;82;783;123;69;1,70;39,15;61,82;0;United Kingdom;Western Europe;"Routledge";"1985-1987, 1989-2026";"Clinical Psychology (Q2); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +12472;12100155618;"Rendiconti del Circolo Matematico di Palermo";journal;"0009725X, 19734409";"Springer-Verlag Italia s.r.l.";No;No;0,474;Q2;31;191;503;5205;519;499;0,95;27,25;25,66;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1887-1916, 1919-1938, 1940, 1952-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12473;4700152703;"Stochastics and Dynamics";journal;"02194937, 17936799";"World Scientific Publishing Co. Pte Ltd";No;No;0,474;Q2;30;44;206;1584;158;202;0,54;36,00;26,60;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2005-2026";"Modeling and Simulation (Q2)";"Mathematics" +12474;27416;"Topology and its Applications";journal;"01668641";"Elsevier B.V.";No;No;0,474;Q2;54;311;795;6387;474;785;0,57;20,54;26,96;0;Netherlands;Western Europe;"Elsevier B.V.";"1980-2026";"Geometry and Topology (Q2)";"Mathematics" +12475;21100907367;"Water Economics and Policy";journal;"2382624X, 23826258";"World Scientific";No;No;0,474;Q2;19;66;91;4025;137;78;1,46;60,98;43,15;0;Singapore;Asiatic Region;"World Scientific";"2015-2026";"Business and International Management (Q2); Economics and Econometrics (Q2); Water Science and Technology (Q2); Management, Monitoring, Policy and Law (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science" +12476;22530;"Cardiology in Review";journal;"10615377, 15384683";"Lippincott Williams and Wilkins";No;No;0,474;Q3;70;320;271;15846;444;258;1,52;49,52;32,06;0;United States;Northern America;"Lippincott Williams and Wilkins";"1995-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +12477;5400152603;"Proceedings -Design, Automation and Test in Europe, DATE";conference and proceedings;"15301591";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,474;-;102;427;707;10209;1537;703;2,17;23,91;21,88;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1998-2015, 2021, 2023-2025";"Engineering (miscellaneous)";"Engineering" +12478;24525;"Ethics and International Affairs";journal;"17477093, 08926794";"Cambridge University Press";No;No;0,473;Q1;63;16;94;1143;146;86;1,41;71,44;36,36;0;United States;Northern America;"Cambridge University Press";"1987-2026";"Philosophy (Q1); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +12479;23054;"ACM Transactions on Modeling and Computer Simulation";journal;"15581195, 10493301";"Association for Computing Machinery";No;No;0,473;Q2;59;27;74;1029;127;69;1,79;38,11;29,27;0;United States;Northern America;"Association for Computing Machinery";"1991-2026";"Modeling and Simulation (Q2); Computer Science Applications (Q3)";"Computer Science; Mathematics" +12480;19880;"Advanced Composite Materials";journal;"09243046, 15685519";"Taylor and Francis Ltd.";No;No;0,473;Q2;46;88;157;3804;467;157;2,97;43,23;20,25;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-2026";"Ceramics and Composites (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +12481;21101274044;"Asian Journal for Mathematics Education";journal;"27527271, 27527263";"SAGE Publications Ltd";Yes;Yes;0,473;Q2;7;29;71;1558;125;70;1,70;53,72;38,46;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2022-2026";"Education (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +12482;15900154754;"Bulletin of the Iranian Mathematical Society";journal;"10186301, 17358515";"Iranian Mathematical Society";Yes;No;0,473;Q2;28;88;404;2324;418;404;1,12;26,41;29,12;0;Iran;Middle East;"Iranian Mathematical Society";"2008-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12483;23526;"Communications in Statistics Part B: Simulation and Computation";journal;"15324141, 03610918";"Taylor and Francis Ltd.";No;No;0,473;Q2;65;603;1174;19339;1728;1167;1,45;32,07;34,32;1;United States;Northern America;"Taylor and Francis Ltd.";"1976-2026";"Modeling and Simulation (Q2); Statistics and Probability (Q2)";"Mathematics" +12484;21101146369;"EPJ Nuclear Sciences and Technologies";journal;"24919292";"EDP Sciences";Yes;No;0,473;Q2;10;75;109;2201;224;107;2,30;29,35;22,92;0;France;Western Europe;"EDP Sciences";"2020-2026";"Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2)";"Energy; Engineering; Physics and Astronomy" +12485;21100945202;"Genomics and Informatics";journal;"22340742";"BioMed Central Ltd";Yes;No;0,473;Q2;17;28;131;1488;214;124;1,94;53,14;35,11;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2015, 2019-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3); Health Informatics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +12486;11700154398;"IEEE Nanotechnology Magazine";journal;"19427808, 19324510";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,473;Q2;25;41;119;1014;215;89;1,88;24,73;30,30;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2007-2026";"Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Nanoscience and Nanotechnology (Q3)";"Engineering; Materials Science" +12487;12148;"ISIJ International";journal;"09151559";"Iron and Steel Institute of Japan";Yes;No;0,473;Q2;141;233;777;8480;1648;766;1,90;36,39;19,25;0;Japan;Asiatic Region;"Iron and Steel Institute of Japan";"1986, 1989-2026";"Materials Chemistry (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)";"Engineering; Materials Science" +12488;27576;"Island Arc";journal;"10384871, 14401738";"John Wiley and Sons Inc";No;No;0,473;Q2;69;35;98;2216;110;96;0,80;63,31;21,90;0;United States;Northern America;"John Wiley and Sons Inc";"1992-2026";"Geology (Q2)";"Earth and Planetary Sciences" +12489;25053;"IT Professional";journal;"15209202, 1941045X";"IEEE Computer Society";No;No;0,473;Q2;70;85;242;1438;635;224;2,40;16,92;21,98;0;United States;Northern America;"IEEE Computer Society";"1999-2026";"Hardware and Architecture (Q2); Software (Q2); Computer Science Applications (Q3)";"Computer Science" +12490;21100286991;"Journal of Eye Movement Research";journal;"19958692";"International Group for Eye Movement Research";Yes;No;0,473;Q2;35;43;84;2181;225;84;2,15;50,72;41,89;0;Switzerland;Western Europe;"International Group for Eye Movement Research";"2012-2026";"Ophthalmology (Q2); Sensory Systems (Q4)";"Medicine; Neuroscience" +12491;12134;"Journal of Official Statistics";journal;"20017367, 0282423X";"SAGE Publications Ltd";Yes;No;0,473;Q2;38;21;107;716;111;103;0,72;34,10;30,65;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-1989, 1991, 2009-2025";"Statistics and Probability (Q2)";"Mathematics" +12492;21100205112;"Journal of Software: Evolution and Process";journal;"20477481";"John Wiley and Sons Ltd";No;No;0,473;Q2;67;119;308;6533;793;297;2,56;54,90;34,01;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2026";"Software (Q2)";"Computer Science" +12493;14792;"New Zealand Journal of Educational Studies";journal;"21994714, 00288276";"Springer Singapore";No;No;0,473;Q2;27;48;122;2071;181;103;1,30;43,15;66,67;0;Singapore;Asiatic Region;"Springer Singapore";"1996-2013, 2015-2026";"Education (Q2)";"Social Sciences" +12494;28815;"Nurse Researcher";trade journal;"13515578, 20478992";"RCN Publishing Company Ltd.";No;No;0,473;Q2;64;11;54;0;125;52;2,59;0,00;83,78;0;United Kingdom;Western Europe;"RCN Publishing Company Ltd.";"2001-2025";"Research and Theory (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +12495;13420;"Psychoanalytic Psychology";journal;"19391331, 07369735";"American Psychological Association";No;No;0,473;Q2;51;34;99;1606;139;99;1,50;47,24;49,53;0;United States;Northern America;"American Psychological Association";"1984-2025";"Clinical Psychology (Q2)";"Psychology" +12496;21101176039;"Quanqiu Nengyuan Hulianwang";journal;"20965125";"Global Energy Interconnection Development and Cooperation Organization";Yes;Yes;0,473;Q2;23;72;195;2664;410;195;2,55;37,00;35,13;0;China;Asiatic Region;"Global Energy Interconnection Development and Cooperation Organization";"2019-2026";"Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering" +12497;25524;"Social Marketing Quarterly";journal;"15394093, 15245004";"SAGE Publications Inc.";No;No;0,473;Q2;38;25;56;1418;132;48;2,51;56,72;68,52;0;United States;Northern America;"SAGE Publications Inc.";"1994-2026";"Economics and Econometrics (Q2); Marketing (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +12498;26821;"Stratigraphy and Geological Correlation";journal;"08695938, 15556263";"Pleiades Publishing";No;No;0,473;Q2;46;46;115;3255;147;115;1,19;70,76;51,67;0;United States;Northern America;"Pleiades Publishing";"1994, 1996-2025";"Geology (Q2); Paleontology (Q2); Stratigraphy (Q2)";"Earth and Planetary Sciences" +12499;19700182315;"WMU Journal of Maritime Affairs";journal;"1651436X, 16541642";"Springer Science and Business Media Deutschland GmbH";No;No;0,473;Q2;34;44;78;2581;226;69;2,98;58,66;33,33;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2002-2026";"Ocean Engineering (Q2); Safety Research (Q2); Human Factors and Ergonomics (Q3); Management, Monitoring, Policy and Law (Q3); Transportation (Q3)";"Engineering; Environmental Science; Social Sciences" +12500;21101179127;"Psychiatry International";journal;"26735318";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,473;Q3;12;158;137;9375;237;131;1,76;59,34;52,72;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2026";"Medicine (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Neuroscience" +12501;17700;"QJM: An International Journal of Medicine";journal;"14602393, 14602725";"Oxford University Press";No;No;0,473;Q3;142;258;874;3288;993;560;1,19;12,74;38,07;1;United Kingdom;Western Europe;"Oxford University Press";"1907-1974, 1976-1982, 1985-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +12502;16807;"Applied Immunohistochemistry and Molecular Morphology";journal;"15334058, 15412016";"Lippincott Williams and Wilkins";No;No;0,472;Q2;83;47;267;1571;351;262;1,32;33,43;53,66;0;United States;Northern America;"Lippincott Williams and Wilkins";"1996-1997, 1999-2026";"Medical Laboratory Technology (Q2); Pathology and Forensic Medicine (Q2); Histology (Q3)";"Health Professions; Medicine" +12503;21044;"Cochlear Implants International";journal;"17547628, 14670100";"Maney Publishing";No;No;0,472;Q2;45;46;138;1746;194;133;1,36;37,96;43,87;0;United Kingdom;Western Europe;"Maney Publishing";"2001-2026";"Otorhinolaryngology (Q2); Speech and Hearing (Q2)";"Health Professions; Medicine" +12504;21101255617;"Crops";journal;"26737655";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,472;Q2;12;92;108;6485;288;106;2,56;70,49;31,87;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Agronomy and Crop Science (Q2); Environmental Science (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +12505;5800173405;"Current Bioinformatics";journal;"15748936, 2212392X";"Bentham Science Publishers";No;No;0,472;Q2;43;107;222;7114;581;217;2,91;66,49;36,61;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Computational Mathematics (Q2); Biochemistry (Q3); Genetics (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Mathematics" +12506;21100198432;"International Journal of Biomathematics";journal;"17935245, 17937159";"World Scientific";No;No;0,472;Q2;40;261;330;10432;673;330;2,00;39,97;35,72;0;Singapore;Asiatic Region;"World Scientific";"2008-2026";"Applied Mathematics (Q2); Modeling and Simulation (Q2)";"Mathematics" +12507;4000150002;"International Journal of Biomedical Imaging";journal;"16874188, 16874196";"John Wiley and Sons Ltd";Yes;No;0,472;Q2;56;24;38;953;124;38;3,33;39,71;39,13;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2006-2026";"Radiology, Nuclear Medicine and Imaging (Q2)";"Medicine" +12508;200147135;"Journal of Child and Adolescent Mental Health";journal;"17280591, 17280583";"Routledge";No;No;0,472;Q2;27;43;20;2594;29;18;1,45;60,33;67,86;0;United Kingdom;Western Europe;"Routledge";"2005-2021, 2023-2026";"Clinical Psychology (Q2); Pediatrics, Perinatology and Child Health (Q2); Developmental and Educational Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +12509;19469;"Journal of Early Childhood Teacher Education";journal;"17455642, 10901027";"Taylor and Francis Ltd.";No;No;0,472;Q2;32;125;117;6675;227;95;1,49;53,40;75,07;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2026";"Education (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +12510;21101021576;"Journal of Finance and Data Science";journal;"24059188";"KeAi Communications Co.";Yes;No;0,472;Q2;26;18;67;803;256;63;2,83;44,61;27,27;1;China;Asiatic Region;"KeAi Communications Co.";"2015-2025";"Applied Mathematics (Q2); Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2); Finance (Q2); Computer Science Applications (Q3); Statistics and Probability (Q3)";"Business, Management and Accounting; Computer Science; Economics, Econometrics and Finance; Mathematics" +12511;21100434052;"Journal of Renewable Materials";journal;"21646341, 21646325";"Tech Science Press";No;No;0,472;Q2;46;112;565;8671;1810;563;2,65;77,42;39,88;0;United States;Northern America;"Tech Science Press";"2013-2026";"Environmental Science (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Environmental Science; Materials Science" +12512;20118;"Journal of Southwest Petroleum University(Science & Technology Edition)";journal;"16745086";"Science Press";No;No;0,472;Q2;26;74;305;2465;390;305;1,54;33,31;30,16;0;China;Asiatic Region;"Science Press";"2008-2025";"Energy Engineering and Power Technology (Q2); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Energy" +12513;19055;"Minimally Invasive Therapy and Allied Technologies";journal;"13652931, 13645706";"Taylor and Francis Ltd.";No;No;0,472;Q2;55;58;235;1702;448;230;1,81;29,34;26,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-2026";"Surgery (Q2)";"Medicine" +12514;12600154783;"Networks and Heterogeneous Media";journal;"1556181X, 15561801";"American Institute of Mathematical Sciences";Yes;No;0,472;Q2;43;65;176;2478;283;175;1,78;38,12;29,76;0;United States;Northern America;"American Institute of Mathematical Sciences";"2006-2026";"Applied Mathematics (Q2); Engineering (miscellaneous) (Q2); Computer Science Applications (Q3); Statistics and Probability (Q3)";"Computer Science; Engineering; Mathematics" +12515;29929;"Norsk Geografisk Tidsskrift";journal;"15025292, 00291951";"Taylor and Francis A.S.";No;No;0,472;Q2;45;13;71;503;147;67;1,59;38,69;24,00;0;United Kingdom;Western Europe;"Taylor and Francis A.S.";"1926-1928, 1930, 1932-1933, 1935-1936, 1938, 1940-1946, 1948, 1951, 1954, 1956-1957, 1959, 1961, 1963, 1965, 1967-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +12516;27885;"Powder Metallurgy";journal;"17432901, 00325899";"SAGE Publications Ltd";No;No;0,472;Q2;55;49;132;1854;312;132;1,92;37,84;28,43;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1958-2026";"Ceramics and Composites (Q2); Condensed Matter Physics (Q2); Materials Chemistry (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)";"Engineering; Materials Science; Physics and Astronomy" +12517;21101215789;"Ruminants";journal;"2673933X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,472;Q2;12;63;113;3535;272;113;2,38;56,11;35,45;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Veterinary" +12518;144637;"Tertiary Education and Management";journal;"13583883, 15731936";"Springer Science and Business Media B.V.";No;No;0,472;Q2;50;9;66;778;174;63;2,71;86,44;51,85;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1995-2026";"Education (Q2); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Social Sciences" +12519;18937;"Tropical Animal Health and Production";journal;"15737438, 00494747";"Springer Science and Business Media B.V.";No;No;0,472;Q2;73;530;1229;26813;2696;1223;2,09;50,59;32,78;4;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1969-2026";"Animal Science and Zoology (Q2); Food Animals (Q2)";"Agricultural and Biological Sciences; Veterinary" +12520;21101300357;"UCL Open Environment";journal;"26320886";"UCL Press";Yes;No;0,472;Q2;11;10;55;621;139;47;3,13;62,10;45,71;0;United Kingdom;Western Europe;"UCL Press";"2021-2026";"Environmental Engineering (Q2); Geography, Planning and Development (Q2); Global and Planetary Change (Q3); Public Health, Environmental and Occupational Health (Q3)";"Environmental Science; Medicine; Social Sciences" +12521;21100901675;"Women in Sport and Physical Activity Journal";journal;"10636161, 19381581";"Human Kinetics Publishers Inc.";No;No;0,472;Q2;18;49;86;2662;142;82;1,71;54,33;62,12;0;United States;Northern America;"Human Kinetics Publishers Inc.";"2018-2026";"Education (Q2); Gender Studies (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Social Sciences" +12522;21100830711;"Clinical and Experimental Hepatology";journal;"24498238, 23921099";"Termedia Publishing House Ltd.";Yes;No;0,472;Q3;25;23;115;923;208;114;1,99;40,13;51,47;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2015-2025";"Hepatology (Q3)";"Medicine" +12523;13377;"Health Services and Outcomes Research Methodology";journal;"13873741, 15729400";"Springer";No;No;0,472;Q3;38;43;73;1976;174;73;3,09;45,95;45,40;0;United States;Northern America;"Springer";"2000-2004, 2006-2026";"Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +12524;19001;"OMICS A Journal of Integrative Biology";journal;"15362310, 15578100";"Mary Ann Liebert Inc.";No;No;0,472;Q3;76;65;189;3548;376;172;1,95;54,58;41,58;0;United States;Northern America;"Mary Ann Liebert Inc.";"2002-2026";"Biochemistry (Q3); Biotechnology (Q3); Genetics (Q3); Medicine (miscellaneous) (Q3); Molecular Medicine (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12525;21100381232;"Social and Environmental Accountability Journal";journal;"0969160X, 21562245";"Routledge";No;No;0,472;Q3;29;24;63;1134;134;34;1,86;47,25;50,00;0;United States;Northern America;"Routledge";"1993-2026";"Accounting (Q3)";"Business, Management and Accounting" +12526;21100794012;"Public Relations Inquiry";journal;"20461488, 2046147X";"SAGE Publications Inc.";No;No;0,471;Q1;26;30;57;1921;173;49;2,86;64,03;68,18;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2014-2026";"Linguistics and Language (Q1); Communication (Q2); Strategy and Management (Q2); Marketing (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Social Sciences" +12527;28440;"Comparative Economic Studies";journal;"14783320, 08887233";"Palgrave Macmillan";No;No;0,471;Q2;33;27;76;2035;160;74;1,98;75,37;22,00;3;United Kingdom;Western Europe;"Palgrave Macmillan";"1992-1994, 1996, 2005, 2008-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +12528;130016;"Cutaneous and Ocular Toxicology";journal;"15569527, 15569535";"Taylor and Francis Ltd.";No;No;0,471;Q2;42;59;142;2527;266;140;1,59;42,83;50,88;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-2000, 2005-2026";"Complementary and Alternative Medicine (Q2); Critical Care and Intensive Care Medicine (Q2); Pharmaceutical Science (Q2); Medicine (miscellaneous) (Q3); Toxicology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +12529;21101165605;"Discover Social Science and Health";journal;"27310469";"Springer Nature";Yes;No;0,471;Q2;8;176;134;8461;224;133;1,67;48,07;44,39;0;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Health (social science) (Q2); Social Sciences (miscellaneous) (Q2); Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +12530;21101196713;"Emerging Trends in Drugs, Addictions, and Health";journal;"26671182";"Elsevier Ltd";Yes;No;0,471;Q2;10;23;53;1331;105;51;1,82;57,87;40,98;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Clinical Psychology (Q2); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Psychology" +12531;27573;"Few-Body Systems";journal;"01777963, 14325411";"Springer-Verlag Wien";No;No;0,471;Q2;48;46;262;2044;336;255;1,10;44,43;21,50;0;Austria;Western Europe;"Springer-Verlag Wien";"1986-2026";"Atomic and Molecular Physics, and Optics (Q2)";"Physics and Astronomy" +12532;21100274870;"Global Responsibility to Protect";journal;"1875984X, 18759858";"Brill Academic Publishers";No;No;0,471;Q2;20;19;51;1708;49;47;0,58;89,89;52,38;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2026";"Political Science and International Relations (Q2)";"Social Sciences" +12533;21100286806;"IEEE Design and Test";journal;"21682364, 21682356";"IEEE Computer Society";No;No;0,471;Q2;89;74;249;1238;388;209;1,62;16,73;17,81;0;United States;Northern America;"IEEE Computer Society";"2013-2026";"Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Software (Q2)";"Computer Science; Engineering" +12534;21101292825;"JMIR Neurotechnology";journal;"2817092X";"JMIR Publications Inc.";Yes;No;0,471;Q2;5;9;24;508;47;23;2,32;56,44;33,33;0;Canada;Northern America;"JMIR Publications Inc.";"2022-2026";"Rehabilitation (Q2); Health Informatics (Q3); Neurology (clinical) (Q3); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience" +12535;26620;"Journal of Electronic Materials";journal;"03615235, 1543186X";"Springer New York";No;No;0,471;Q2;121;930;2186;45630;6440;2181;3,00;49,06;29,91;0;United States;Northern America;"Springer New York";"1972-2026";"Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2)";"Engineering; Materials Science; Physics and Astronomy" +12536;21100774305;"Journal of Sustainable Development of Energy, Water and Environment Systems";journal;"18489257";"International Centre for Sustainable Development of Energy, Water and Environment Systems SDEWES";Yes;No;0,471;Q2;28;68;154;3451;412;153;2,40;50,75;31,95;0;Croatia;Eastern Europe;"International Centre for Sustainable Development of Energy, Water and Environment Systems SDEWES";"2013-2026";"Energy Engineering and Power Technology (Q2); Environmental Science (miscellaneous) (Q2); Water Science and Technology (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science" +12537;21101024044;"Magnetochemistry";journal;"23127481";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,471;Q2;41;111;526;6023;1556;516;2,82;54,26;33,70;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2015-2026";"Chemistry (miscellaneous) (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2)";"Chemistry; Materials Science" +12538;21100405051;"Methods and Applications in Fluorescence";journal;"20506120";"IOP Publishing Ltd.";No;No;0,471;Q2;43;16;136;683;360;130;2,68;42,69;46,58;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2013-2026";"Atomic and Molecular Physics, and Optics (Q2); Instrumentation (Q2); Materials Science (miscellaneous) (Q2); Spectroscopy (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +12539;21099;"Pharmaceutical Development and Technology";journal;"10837450, 10979867";"Taylor and Francis Ltd.";No;No;0,471;Q2;79;104;288;7532;917;284;2,95;72,42;50,47;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Pharmaceutical Science (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +12540;21101093023;"Probability, Uncertainty and Quantitative Risk";journal;"23670126, 20959672";"American Institute of Mathematical Sciences";No;No;0,471;Q2;14;27;69;762;53;67;0,88;28,22;25,49;0;United States;Northern America;"American Institute of Mathematical Sciences";"2016-2025";"Applied Mathematics (Q2); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +12541;21100853511;"Rehabilitation Research and Practice";journal;"20902875, 20902867";"John Wiley and Sons Ltd";Yes;No;0,471;Q2;19;0;29;0;76;29;2,69;0,00;0,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2024";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)";"Health Professions; Medicine" +12542;18850;"Reproduction in Domestic Animals";journal;"14390531, 09366768";"Wiley-Blackwell Publishing Ltd";No;No;0,471;Q2;89;135;661;5526;1240;657;1,73;40,93;40,12;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1966-2026";"Animal Science and Zoology (Q2); Biotechnology (Q3); Endocrinology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12543;24033;"Turkish Journal of Zoology";journal;"13000179, 13036114";"TUBITAK";Yes;No;0,471;Q2;39;31;129;1889;268;129;1,72;60,94;38,18;0;Turkey;Middle East;"TUBITAK";"1994-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +12544;21100403271;"Anatolian Journal of Cardiology";journal;"21492271, 21492263";"Turkish Society of Cardiology";Yes;Yes;0,471;Q3;42;157;475;2659;544;316;1,20;16,94;35,87;0;Turkey;Middle East;"Turkish Society of Cardiology";"2015-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +12545;21101037916;"Clinical Nutrition Open Science";journal;"26672685";"Elsevier B.V.";Yes;No;0,471;Q3;27;140;261;6247;504;255;1,75;44,62;54,75;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Endocrinology, Diabetes and Metabolism (Q3); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +12546;21100980646;"Current Issues in Personality Psychology";journal;"23534192, 2353561X";"Termedia Publishing House Ltd.";Yes;Yes;0,471;Q3;15;32;104;1259;163;104;1,19;39,34;61,18;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2016-2025";"Social Psychology (Q3)";"Psychology" +12547;14511;"Current Topics in Developmental Biology";book series;"00702153, 15578933";"Academic Press Inc.";No;No;0,471;Q4;119;59;161;8916;491;5;2,95;151,12;39,53;0;United States;Northern America;"Academic Press Inc.";"1966-1972, 1974-1975, 1977-1980, 1982-1984, 1986-1987, 1990-2001, 2003-2026";"Cell Biology (Q4); Developmental Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +12548;19073;"Zygote";journal;"14698730, 09671994";"Cambridge University Press";No;No;0,471;Q4;54;36;252;1627;439;252;1,76;45,19;46,35;0;United Kingdom;Western Europe;"Cambridge University Press";"1993-2026";"Cell Biology (Q4); Developmental Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +12549;21100847481;"Health and Social Care Chaplaincy";journal;"20515553, 20515561";"Equinox Publishing Ltd";No;No;0,470;Q1;12;12;39;436;58;35;1,96;36,33;60,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2017-2025";"Religious Studies (Q1); Health (social science) (Q2); Social Psychology (Q3)";"Arts and Humanities; Psychology; Social Sciences" +12550;21100407545;"International Journal for Crime, Justice and Social Democracy";journal;"22028005, 22027998";"Queensland Uuniversity of Technology";Yes;Yes;0,470;Q1;33;38;106;2538;250;98;1,83;66,79;71,67;2;Australia;Pacific Region;"Queensland Uuniversity of Technology";"2013-2025";"Law (Q1); Sociology and Political Science (Q2)";"Social Sciences" +12551;12100154707;"Journal of Asian Architecture and Building Engineering";journal;"13472852, 13467581";"Taylor and Francis Ltd.";Yes;No;0,470;Q1;37;712;532;39007;1540;532;2,94;54,79;37,83;1;Japan;Asiatic Region;"Taylor and Francis Ltd.";"2002-2026";"Architecture (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Arts and Humanities; Engineering; Social Sciences" +12552;21100854622;"Journal of Facade Design and Engineering";journal;"22133038, 2213302X";"TU Delft Open";Yes;No;0,470;Q1;16;3;36;142;67;32;2,83;47,33;25,00;0;Netherlands;Western Europe;"TU Delft Open";"2017-2024";"Architecture (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Engineering" +12553;21101047452;"Journal of Soft Computing in Civil Engineering";journal;"25882872";"Pouyan Press";Yes;Yes;0,470;Q1;23;28;84;1724;289;84;3,46;61,57;16,05;0;Iran;Middle East;"Pouyan Press";"2017-2026";"Architecture (Q1); Artificial Intelligence (Q2); Building and Construction (Q2); Civil and Structural Engineering (Q2); Computer Science Applications (Q3)";"Computer Science; Engineering" +12554;21101037141;"RUDN Journal of Russian History";journal;"23128674, 23128690";"RUDN University";Yes;Yes;0,470;Q1;6;48;132;1031;54;132;0,42;21,48;44,62;0;Russian Federation;Eastern Europe;"RUDN University";"2019-2025";"History (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +12555;27426;"Annals of Geophysics";journal;"15935213, 2037416X";"Istituto Nazionale di Geofisica e Vulcanologia";Yes;Yes;0,470;Q2;73;90;144;4524;260;137;1,79;50,27;32,58;0;Italy;Western Europe;"Istituto Nazionale di Geofisica e Vulcanologia";"2002-2025";"Geophysics (Q2)";"Earth and Planetary Sciences" +12556;21100786316;"Bio-Algorithms and Med-Systems";journal;"1896530X, 18959091";"Index Copernicus International";No;No;0,470;Q2;18;10;66;626;136;64;2,29;62,60;34,69;0;Poland;Eastern Europe;"Index Copernicus International";"2012-2025";"Computer Science (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Health Informatics (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Medicine" +12557;21100901480;"Biogeographia";journal;"24755257";"eScholarship University of California";Yes;Yes;0,470;Q2;13;14;44;768;66;41;1,35;54,86;29,79;0;United States;Northern America;"eScholarship University of California";"2016-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Global and Planetary Change (Q3)";"Agricultural and Biological Sciences; Environmental Science" +12558;21041;"Clinics in Colon and Rectal Surgery";journal;"15310043, 15309681";"Thieme Medical Publishers, Inc.";No;No;0,470;Q2;64;61;261;2058;384;221;1,29;33,74;55,10;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"2001-2026";"Surgery (Q2); Gastroenterology (Q3)";"Medicine" +12559;21101192683;"Ecological Studies";book series;"00708356, 2196971X";"Springer";No;No;0,470;Q2;8;0;49;0;52;6;0,22;0,00;0,00;0;Germany;Western Europe;"Springer";"1989, 1996, 2003, 2007-2008, 2010, 2017-2018, 2021-2023";"Agricultural and Biological Sciences (miscellaneous) (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Forestry (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12560;21101101247;"Engineering Reports";journal;"25778196";"John Wiley and Sons Inc";Yes;No;0,470;Q2;39;641;510;31849;1767;504;3,86;49,69;22,77;1;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2)";"Computer Science; Engineering" +12561;21101072200;"IET Cyber-systems and Robotics";journal;"26316315";"John Wiley and Sons Inc";Yes;No;0,470;Q2;17;31;86;1211;225;84;3,28;39,06;24,62;0;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Human-Computer Interaction (Q3)";"Computer Science" +12562;18669;"In Vitro Cellular and Developmental Biology - Plant";journal;"14752689, 10545476";"Springer";No;No;0,470;Q2;87;115;252;6569;687;252;2,50;57,12;46,65;0;United States;Northern America;"Springer";"1972, 1985, 1991-2026";"Plant Science (Q2); Biotechnology (Q3); Cell Biology (Q4); Developmental Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12563;21100924897;"Journal of Analytical Science and Technology";journal;"20933134, 20933371";"SpringerOpen";Yes;No;0,470;Q2;41;47;160;1870;507;159;2,67;39,79;38,89;0;United Kingdom;Western Europe;"SpringerOpen";"2013-2026";"Chemistry (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Environmental Science; Materials Science; Physics and Astronomy" +12564;15594;"Journal of Biosocial Science";journal;"00219320, 14697599";"Cambridge University Press";Yes;No;0,470;Q2;67;47;209;2317;365;209;1,58;49,30;55,48;0;United Kingdom;Western Europe;"Cambridge University Press";"1969-2026";"Social Sciences (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +12565;15300154856;"Journal of Geosciences (Czech Republic)";journal;"18026222, 18031943";"Czech Geological Survey";Yes;No;0,470;Q2;38;14;61;650;69;57;1,05;46,43;7,32;0;Czech Republic;Eastern Europe;"Czech Geological Survey";"2007-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q2)";"Earth and Planetary Sciences" +12566;21100446999;"Journal of Global Mobility";journal;"20498802, 20498799";"Emerald Group Publishing Ltd.";No;No;0,470;Q2;35;31;84;3001;274;80;2,77;96,81;53,85;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2013-2026";"Business and International Management (Q2); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting" +12567;27852;"Marine Resource Economics";journal;"23345985, 07381360";"University of Chicago Press";No;No;0,470;Q2;54;12;63;793;131;62;1,83;66,08;23,53;0;United States;Northern America;"University of Chicago Press";"1987, 1989, 1993-2026";"Economics and Econometrics (Q2); Geography, Planning and Development (Q2); Oceanography (Q2); Management, Monitoring, Policy and Law (Q3)";"Earth and Planetary Sciences; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +12568;21101171910;"Smart Grids and Sustainable Energy";journal;"27318087";"Springer";No;No;0,470;Q2;26;83;99;3659;313;99;3,70;44,08;25,62;0;Germany;Western Europe;"Springer";"2023-2026";"Economics and Econometrics (Q2); Electrical and Electronic Engineering (Q2); Energy (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Economics, Econometrics and Finance; Energy; Engineering" +12569;21101040222;"World Journal of Pediatric Surgery";journal;"25165410";"BMJ Publishing Group";Yes;Yes;0,470;Q2;11;50;133;1777;245;122;1,68;35,54;45,90;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2018-2026";"Pediatrics, Perinatology and Child Health (Q2); Surgery (Q2)";"Medicine" +12570;21101203740;"Gastroenterology Research";journal;"19182813, 19182805";"Elmer Press";No;No;0,470;Q3;4;36;27;1127;42;27;1,56;31,31;27,83;0;Canada;Northern America;"Elmer Press";"2015, 2017, 2019-2025";"Gastroenterology (Q3)";"Medicine" +12571;12120;"Journal of Nonparametric Statistics";journal;"10290311, 10485252";"Taylor and Francis Ltd.";No;No;0,470;Q3;49;82;140;2970;155;136;1,03;36,22;34,76;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-2026";"Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +12572;26192;"Lymphology";journal;"25227963, 00247766";"International Society of Lymphology";Yes;No;0,470;Q3;55;16;64;472;103;62;1,95;29,50;35,29;0;United States;Northern America;"International Society of Lymphology";"1968-2025";"Hematology (Q3); Immunology and Allergy (Q3)";"Medicine" +12573;20365;"Revista Argentina de Microbiologia";journal;"03257541";"Asociacion Argentina de Microbiologia";Yes;No;0,470;Q3;38;68;164;2028;341;160;2,21;29,82;61,18;0;Argentina;Latin America;"Asociacion Argentina de Microbiologia";"1979-2026";"Medicine (miscellaneous) (Q3); Microbiology (Q3); Microbiology (medical) (Q3)";"Immunology and Microbiology; Medicine" +12574;16100154737;"Bulletin of the Council for Research in Music Education";journal;"21627223, 00109894";"University of Illinois at Urbana-Champaign";No;No;0,469;Q1;27;9;47;437;63;44;1,29;48,56;69,23;0;United States;Northern America;"University of Illinois at Urbana-Champaign";"2002-2025";"Music (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +12575;21101043445;"Interdisciplinary Journal for Religion and Transformation in Contemporary Society";journal;"23642807, 23653140";"Brill Academic Publishers";Yes;Yes;0,469;Q1;9;38;79;1418;47;79;0,76;37,32;28,57;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2026";"Religious Studies (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +12576;21100814045;"Journal of Human Rights and the Environment";journal;"17597188, 17597196";"Edward Elgar Publishing Ltd.";No;No;0,469;Q1;22;16;46;360;125;38;1,52;22,50;73,33;0;United Kingdom;Western Europe;"Edward Elgar Publishing Ltd.";"2016-2025";"Law (Q1); Sociology and Political Science (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +12577;21100836837;"AIMS Energy";journal;"23338326, 23338334";"AIMS Press";Yes;No;0,469;Q2;31;53;172;2832;455;165;2,52;53,43;24,72;0;United States;Northern America;"AIMS Press";"2014, 2016-2026";"Energy Engineering and Power Technology (Q2); Fuel Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +12578;13006;"Anatomical Science International";journal;"1447073X, 14476959";"Springer";No;No;0,469;Q2;49;110;158;4091;294;145;1,88;37,19;34,72;0;Singapore;Asiatic Region;"Springer";"2002-2026";"Anatomy (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +12579;20659;"Critical Reviews in Therapeutic Drug Carrier Systems";journal;"07434863, 2162660X";"Begell House Inc.";No;No;0,469;Q2;88;18;53;2908;188;53;3,22;161,56;56,14;0;United States;Northern America;"Begell House Inc.";"1984-2026";"Pharmaceutical Science (Q2); Medicine (miscellaneous) (Q3); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +12580;12931;"Cybernetics and Systems";journal;"10876553, 01969722";"Taylor and Francis Ltd.";No;No;0,469;Q2;51;82;247;3061;712;242;3,22;37,33;36,92;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2026";"Artificial Intelligence (Q2); Information Systems (Q2); Software (Q3)";"Computer Science" +12581;20023;"Economic Record";journal;"14754932, 00130249";"Wiley-Blackwell Publishing Ltd";No;No;0,469;Q2;53;27;65;1450;101;65;1,27;53,70;25,86;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1925-1932, 1934-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +12582;21101196210;"European Journal of Materials";journal;"26889277";"Taylor and Francis Ltd.";Yes;No;0,469;Q2;9;16;51;880;136;50;2,15;55,00;24,29;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2022-2026";"Materials Science (miscellaneous) (Q2); Biomaterials (Q3)";"Materials Science" +12583;21100831025;"Frontiers in Physics";journal;"2296424X";"Frontiers Media SA";Yes;No;0,469;Q2;79;409;2883;16971;6970;2728;2,25;41,49;33,08;0;Switzerland;Western Europe;"Frontiers Media SA";"2013-2026";"Materials Science (miscellaneous) (Q2); Mathematical Physics (Q2); Physics and Astronomy (miscellaneous) (Q2); Biophysics (Q3); Physical and Theoretical Chemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Mathematics; Physics and Astronomy" +12584;21101199907;"Frontiers of Mathematical Finance";journal;"27696715";"American Institute of Mathematical Sciences";No;No;0,469;Q2;7;18;60;582;57;60;0,83;32,33;17,07;0;United States;Northern America;"American Institute of Mathematical Sciences";"2022-2026";"Applied Mathematics (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Mathematics" +12585;19700188302;"Journal of Continuing Higher Education";journal;"19484801, 07377363";"Routledge";No;No;0,469;Q2;26;29;65;941;105;58;1,69;32,45;60,00;0;United States;Northern America;"Routledge";"1978-2026";"Education (Q2)";"Social Sciences" +12586;21101163289;"Latin American Journal of Central Banking";journal;"26661438";"Elsevier B.V.";Yes;No;0,469;Q2;12;52;80;1891;160;80;2,04;36,37;25,89;8;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Economics and Econometrics (Q2)";"Economics, Econometrics and Finance" +12587;4100151522;"Political Power and Social Theory";book series;"01988719";"Emerald Group Publishing Ltd.";No;No;0,469;Q2;23;16;31;408;12;9;0,24;25,50;40,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000, 2002-2003, 2005-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12588;20667;"Asian Pacific Journal of Allergy and Immunology";journal;"22288694, 0125877X";"Allergy and Immunology Society of Thailand";No;No;0,469;Q3;45;112;157;3804;279;157;1,69;33,96;51,80;2;Thailand;Asiatic Region;"Allergy and Immunology Society of Thailand";"1983-2025";"Immunology (Q3); Immunology and Allergy (Q3); Medicine (miscellaneous) (Q3)";"Immunology and Microbiology; Medicine" +12589;19900193210;"International Journal of Endocrinology and Metabolism";journal;"1726913X, 17269148";"Brieflands";Yes;No;0,469;Q3;42;21;76;718;149;75;1,89;34,19;48,35;0;Netherlands;Western Europe;"Brieflands";"2010-2025";"Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +12590;19700201673;"Osong Public Health and Research Perspectives";journal;"22109099, 22336052";"Korea Centers for Disease Control and Prevention";Yes;Yes;0,469;Q3;42;55;163;2144;230;143;1,38;38,98;48,84;0;South Korea;Asiatic Region;"Korea Centers for Disease Control and Prevention";"2010-2025";"Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +12591;21100843497;"Accounting, Economics and Law: A Convivium";journal;"21522820";"Walter de Gruyter GmbH";Yes;No;0,468;Q1;23;43;75;2015;87;75;1,33;46,86;50,00;1;Germany;Western Europe;"Walter de Gruyter GmbH";"2011-2026";"Law (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2); Accounting (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +12592;21100922988;"Antitrust Bulletin";journal;"19307969, 0003603X";"SAGE Publications Inc.";No;No;0,468;Q1;26;16;74;1042;89;69;0,98;65,13;70,59;0;United States;Northern America;"SAGE Publications Inc.";"1972, 1986, 1994, 1996-2026";"Law (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +12593;25301;"Bulletin of Symbolic Logic";journal;"10798986, 19435894";"Cambridge University Press";No;No;0,468;Q1;44;23;57;1164;43;57;0,73;50,61;2,33;0;United Kingdom;Western Europe;"Cambridge University Press";"1995-2025";"Philosophy (Q1); Logic (Q2)";"Arts and Humanities; Mathematics" +12594;5900152813;"International Journal of Art and Design Education";journal;"14768062, 14768070";"Wiley-Blackwell Publishing Ltd";No;No;0,468;Q1;37;96;134;3674;229;124;1,72;38,27;63,29;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Arts and Humanities (miscellaneous) (Q1); Visual Arts and Performing Arts (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +12595;21101251299;"Interpreting and Society";journal;"27523810";"SAGE Publications Ltd";Yes;Yes;0,468;Q1;7;8;25;494;60;23;1,94;61,75;53,33;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2021-2025";"Linguistics and Language (Q1); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +12596;17507;"Social Compass";journal;"00377686, 14617404";"SAGE Publications Ltd";No;No;0,468;Q1;44;37;106;1837;130;103;0,93;49,65;56,52;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1953-1957, 1959-1960, 1962, 1965, 1967, 1969-1970, 1972-1974, 1985-2025";"Anthropology (Q1); Religious Studies (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +12597;26998;"Annalen der Physik";journal;"00033804, 15213889";"Wiley-Blackwell";No;No;0,468;Q2;82;146;541;9282;1188;530;2,27;63,58;26,50;0;Germany;Western Europe;"Wiley-Blackwell";"1799-1943, 1947-1950, 1952, 1957-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +12598;5800179622;"Applied General Topology";journal;"15769402, 19894147";"Universidad Politecnica de Valencia";Yes;Yes;0,468;Q2;17;58;110;1303;111;110;0,97;22,47;18,75;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2007-2026";"Geometry and Topology (Q2)";"Mathematics" +12599;21100204505;"Australasian Journal of Information Systems";journal;"14498618, 13262238";"Australasian Association for Information Systems";Yes;Yes;0,468;Q2;37;17;67;1087;180;63;2,16;63,94;40,91;0;Australia;Pacific Region;"Australasian Association for Information Systems";"1996, 2007, 2009-2025";"Business, Management and Accounting (miscellaneous) (Q2); Information Systems (Q2); Information Systems and Management (Q2); Human-Computer Interaction (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +12600;21101185486;"Documentation, Information and Knowledge";journal;"10032797";"";No;No;0,468;Q2;11;76;255;3683;391;253;1,71;48,46;50,00;0;China;Asiatic Region;"";"2019-2025";"Communication (Q2); Library and Information Sciences (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +12601;21100199757;"European Physical Journal H";journal;"21026467, 21026459";"Springer Science and Business Media Deutschland GmbH";No;No;0,468;Q2;28;22;51;1435;68;49;1,49;65,23;19,23;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2010-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +12602;21100899523;"International Journal of Aerospace Psychology";journal;"24721832, 24721840";"Taylor and Francis Ltd.";No;No;0,468;Q2;55;15;46;745;109;43;2,10;49,67;27,27;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2025";"Aerospace Engineering (Q2); Education (Q2); Applied Psychology (Q3); Computer Science Applications (Q3)";"Computer Science; Engineering; Psychology; Social Sciences" +12603;21100228041;"International Journal of Energy and Environmental Engineering";journal;"20089163, 22516832";"";Yes;No;0,468;Q2;52;0;149;0;395;148;2,49;0,00;0,00;0;Germany;Western Europe;"";"2010-2023";"Environmental Engineering (Q2); Energy (miscellaneous) (Q3)";"Energy; Environmental Science" +12604;29197;"Journal of Elder Abuse and Neglect";journal;"08946566, 15404129";"Routledge";No;No;0,468;Q2;53;29;63;1468;118;54;1,15;50,62;56,38;0;United States;Northern America;"Routledge";"1988-2026";"Social Sciences (miscellaneous) (Q2); Geriatrics and Gerontology (Q3)";"Medicine; Social Sciences" +12605;21100197510;"Journal of Electrical and Computer Engineering";journal;"20900147, 20900155";"John Wiley and Sons Ltd";Yes;No;0,468;Q2;43;76;255;3202;772;255;3,19;42,13;26,24;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q2)";"Computer Science; Engineering" +12606;23921;"Journal of Knot Theory and its Ramifications";journal;"17936527, 02182165";"World Scientific";No;No;0,468;Q2;41;115;290;2077;124;286;0,43;18,06;27,22;0;Singapore;Asiatic Region;"World Scientific";"1992, 1995-2026";"Algebra and Number Theory (Q2); Geometry and Topology (Q2)";"Mathematics" +12607;21100901135;"Journal of Sustainable Real Estate";journal;"19498276, 19498284";"Taylor and Francis Ltd.";Yes;No;0,468;Q2;8;0;19;0;41;18;1,92;0,00;0,00;0;United States;Northern America;"Taylor and Francis Ltd.";"2010, 2013-2015, 2017-2024";"Geography, Planning and Development (Q2); Nature and Landscape Conservation (Q2); Urban Studies (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +12608;21101278445;"Journal of the Anus, Rectum and Colon";journal;"24323853";"The Japan Society of Coloproctology";Yes;No;0,468;Q2;12;59;126;1650;218;125;1,59;27,97;11,24;0;Japan;Asiatic Region;"The Japan Society of Coloproctology";"2021-2026";"Nursing (miscellaneous) (Q2); Clinical Biochemistry (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +12609;21100284945;"Nanomaterials and Nanotechnology";journal;"18479804";"SAGE Publications Ltd";Yes;No;0,468;Q2;38;14;39;745;130;36;2,56;53,21;36,21;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2011-2025";"Ceramics and Composites (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +12610;21100898103;"RAUSP Management Journal";journal;"25310488";"Emerald Group Publishing Ltd.";Yes;Yes;0,468;Q2;23;20;80;982;232;64;2,40;49,10;41,82;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2018-2025";"Business, Management and Accounting (miscellaneous) (Q2); Education (Q2)";"Business, Management and Accounting; Social Sciences" +12611;8000153103;"Ricerche di Matematica";journal;"18273491, 00355038";"Springer-Verlag Italia s.r.l.";No;No;0,468;Q2;25;209;275;4857;356;270;1,41;23,24;30,46;1;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"2007-2026";"Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics" +12612;27968;"Zeitschrift fur Analysis und ihre Anwendungen";journal;"02322064";"European Mathematical Society Publishing House";Yes;Yes;0,468;Q2;41;16;77;524;71;77;0,98;32,75;19,35;0;Germany;Western Europe;"European Mathematical Society Publishing House";"1996-2025";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +12613;23363;"Canadian Journal of Physiology and Pharmacology";journal;"00084212, 12057541";"National Research Council of Canada";No;No;0,468;Q3;101;48;240;2642;406;234;1,83;55,04;45,15;0;Canada;Northern America;"National Research Council of Canada";"1964-2026";"Medicine (miscellaneous) (Q3); Pharmacology (Q3); Physiology (Q3); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +12614;21101226895;"Current Hepatology Reports";journal;"21959595";"Springer Nature";No;No;0,468;Q3;21;43;90;2851;134;90;1,67;66,30;40,77;0;United States;Northern America;"Springer Nature";"2016-2026";"Hepatology (Q3)";"Medicine" +12615;21101030756;"Current Treatment Options in Allergy";journal;"21963053";"Springer Nature";No;No;0,468;Q3;25;30;79;1922;160;79;1,80;64,07;47,25;0;Switzerland;Western Europe;"Springer Nature";"2014-2026";"Immunology and Allergy (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +12616;19700188266;"Humanistic Psychologist";journal;"15473333, 08873267";"American Psychological Association";No;No;0,468;Q3;35;24;93;1427;118;90;1,37;59,46;50,00;0;United States;Northern America;"American Psychological Association";"1985-2025";"Applied Psychology (Q3); Social Psychology (Q3)";"Psychology" +12617;21100780211;"Lung Cancer Management";journal;"17581974, 17581966";"Taylor and Francis Ltd.";No;No;0,468;Q3;9;8;16;266;34;16;2,27;33,25;26,32;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2014, 2020-2026";"Oncology (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +12618;13310;"Nutrition and Health";journal;"02601060, 2047945X";"SAGE Publications Ltd";No;No;0,468;Q3;34;281;276;11768;540;257;1,72;41,88;61,26;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1982-2004, 2006-2009, 2011-2013, 2017-2026";"Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +12619;21100937015;"Arctic Review on Law and Politics";journal;"23874562";"Cappelen Damm Akademisk";Yes;No;0,467;Q1;14;3;55;157;140;50;3,06;52,33;66,67;0;Norway;Western Europe;"Cappelen Damm Akademisk";"2019-2025";"Law (Q1); Sociology and Political Science (Q2)";"Social Sciences" +12620;21100464750;"English Teaching and Learning";journal;"25228560, 10237267";"Springer";No;No;0,467;Q1;20;48;77;2855;156;74;1,90;59,48;55,06;0;Singapore;Asiatic Region;"Springer";"2015-2026";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +12621;21101245222;"Jurnal Konstitusi";journal;"25481657, 18297706";"Registrar and Secretariat General of the Constitutional Court of the Republic of Indonesia";Yes;Yes;0,467;Q1;9;36;111;1616;99;111;0,72;44,89;25,00;0;Indonesia;Asiatic Region;"Registrar and Secretariat General of the Constitutional Court of the Republic of Indonesia";"2020-2025";"Law (Q1)";"Social Sciences" +12622;21100407605;"Studia Islamika";journal;"23556145, 02150492";"Gedung Pusat Pengkajian Islam dan Masyarakat (PPIM) UIN Jakarta";Yes;No;0,467;Q1;17;20;64;1078;75;63;1,06;53,90;25,00;0;Indonesia;Asiatic Region;"Gedung Pusat Pengkajian Islam dan Masyarakat (PPIM) UIN Jakarta";"1994-1997, 1999-2006, 2008-2025";"Religious Studies (Q1)";"Arts and Humanities" +12623;28883;"Zygon";journal;"05912385, 14679744";"Open Library of Humanities";Yes;Yes;0,467;Q1;33;74;215;2951;146;202;0,67;39,88;29,63;0;United Kingdom;Western Europe;"Open Library of Humanities";"1966-2025";"Cultural Studies (Q1); Religious Studies (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +12624;22587;"Environmental Fluid Mechanics";journal;"15677419, 15731510";"Springer Science and Business Media B.V.";No;No;0,467;Q2;61;47;182;1985;388;174;2,08;42,23;25,34;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2001-2026";"Water Science and Technology (Q2); Environmental Chemistry (Q3)";"Environmental Science" +12625;21100932756;"EPJ Techniques and Instrumentation";journal;"21957045";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,467;Q2;9;5;37;151;93;36;3,16;30,20;23,53;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2014-2015, 2020-2026";"Instrumentation (Q2)";"Physics and Astronomy" +12626;21101021755;"Journal of Aging and Environment";journal;"26892618, 26892626";"Routledge";No;No;0,467;Q2;38;55;80;2757;150;80;1,63;50,13;59,62;0;United Kingdom;Western Europe;"Routledge";"2020-2026";"Environmental Science (miscellaneous) (Q2); Health (social science) (Q2); Sociology and Political Science (Q2); Gerontology (Q3)";"Environmental Science; Nursing; Social Sciences" +12627;24158;"Journal of Chemical and Engineering Data";journal;"00219568, 15205134";"American Chemical Society";No;No;0,467;Q2;168;387;1035;19128;2445;1021;2,53;49,43;35,29;0;United States;Northern America;"American Chemical Society";"1956-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)";"Chemical Engineering; Chemistry" +12628;21101254075;"Journal of Cyber Security Technology";journal;"23742925, 23742917";"Taylor and Francis Ltd.";No;No;0,467;Q2;20;24;36;1153;131;36;4,15;48,04;37,25;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Information Systems (Q2); Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2); Computer Science Applications (Q3); Signal Processing (Q3); Software (Q3)";"Computer Science; Engineering; Social Sciences" +12629;13939;"Journal of Paleontology";journal;"00223360, 19372337";"Cambridge University Press";No;No;0,467;Q2;77;96;257;8884;341;252;1,08;92,54;25,16;0;United Kingdom;Western Europe;"Cambridge University Press";"1962, 1977, 1979-2026";"Paleontology (Q2)";"Earth and Planetary Sciences" +12630;21100904835;"Journal of Sustainable Water in the Built Environment";journal;"23796111";"American Society of Civil Engineers (ASCE)";No;No;0,467;Q2;23;25;80;1353;136;79;1,80;54,12;34,74;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"2015-2026";"Water Science and Technology (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science" +12631;17819;"Tropical Ecology";journal;"05643295, 26618982";"Springer";No;No;0,467;Q2;51;46;178;3324;396;178;2,21;72,26;28,07;1;India;Asiatic Region;"Springer";"1976-1978, 1988, 1993-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12632;21101023769;"U.S. Geological Survey Techniques and Methods";journal;"23287047, 23287055";"US Geological Survey";No;No;0,467;Q2;8;6;32;395;46;31;1,43;65,83;27,59;0;United States;Northern America;"US Geological Survey";"2019-2025";"Computers in Earth Sciences (Q2); Geology (Q2); Water Science and Technology (Q2); Ecological Modeling (Q3)";"Earth and Planetary Sciences; Environmental Science" +12633;21101017677;"BJPsych International";journal;"20564740, 20586264";"Cambridge University Press";Yes;Yes;0,467;Q3;30;53;108;1095;171;95;1,54;20,66;43,35;0;United Kingdom;Western Europe;"Cambridge University Press";"2015-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +12634;21101300691;"Discover Developmental Biology";journal;"30593247";"Springer Science and Business Media Deutschland GmbH";No;No;0,467;Q3;85;2;39;108;50;37;1,48;54,00;25,00;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2025-2026";"Genetics (Q3); Developmental Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +12635;13882;"European Journal of Protistology";journal;"09324739, 16180429";"Elsevier GmbH";No;No;0,467;Q3;59;36;164;2311;307;163;2,04;64,19;44,60;0;Germany;Western Europe;"Elsevier GmbH";"1987-2026";"Microbiology (Q3)";"Immunology and Microbiology" +12636;21100451649;"Evolutionary Behavioral Sciences";journal;"23302933, 23302925";"American Psychological Association";No;No;0,467;Q3;30;18;107;1824;124;107;1,10;101,33;42,50;0;United States;Northern America;"American Psychological Association";"2014-2025";"Experimental and Cognitive Psychology (Q3); Social Psychology (Q3)";"Psychology" +12637;21100938864;"Health Psychology Report";journal;"23535571, 23534184";"Termedia Publishing House Ltd.";Yes;Yes;0,467;Q3;17;26;96;1574;175;96;1,78;60,54;62,77;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2019-2025";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +12638;5700164129;"Criminal Justice Studies";journal;"14786028, 1478601X";"Routledge";No;No;0,466;Q1;31;24;72;1393;137;71;1,52;58,04;54,10;0;United Kingdom;Western Europe;"Routledge";"2007-2026";"Law (Q1)";"Social Sciences" +12639;21100870605;"European Journal of Cultural and Political Sociology";journal;"23254815, 23254823";"Taylor and Francis Ltd.";No;No;0,466;Q1;19;16;83;786;137;69;1,33;49,13;66,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2025";"Cultural Studies (Q1); Sociology and Political Science (Q2)";"Social Sciences" +12640;21100217634;"Journal of Empirical Legal Studies";journal;"17401453, 17401461";"Wiley-Blackwell Publishing Ltd";No;No;0,466;Q1;38;33;86;2106;115;83;1,14;63,82;25,00;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2007, 2009, 2011-2026";"Law (Q1); Education (Q2)";"Social Sciences" +12641;20395;"ANZ Journal of Surgery";journal;"14451433, 14452197";"Wiley-Blackwell Publishing Ltd";No;No;0,466;Q2;92;529;1923;11257;1886;1153;0,99;21,28;32,71;5;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2001-2026";"Surgery (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +12642;21100790723;"Computability";journal;"22113576, 22113568";"SAGE Publications Ltd";No;No;0,466;Q2;13;0;57;0;51;54;0,98;0,00;0,00;0;Netherlands;Western Europe;"SAGE Publications Ltd";"2012-2024";"Computational Theory and Mathematics (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +12643;21101061926;"Frontiers in Communication";journal;"2297900X";"Frontiers Media SA";Yes;No;0,466;Q2;46;358;869;20975;1849;786;2,04;58,59;50,12;2;Switzerland;Western Europe;"Frontiers Media SA";"2016-2026";"Communication (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +12644;21101199911;"Geodynamics";journal;"1992142X, 25192663";"Lviv Polytechnic National University";No;No;0,466;Q2;4;17;36;600;50;36;1,39;35,29;33,33;0;Ukraine;Eastern Europe;"Lviv Polytechnic National University";"2023-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +12645;5400152640;"IET Information Security";journal;"17518709, 17518717";"John Wiley and Sons Ltd";Yes;No;0,466;Q2;47;53;149;2809;361;145;2,42;53,00;30,43;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2007-2026";"Computer Networks and Communications (Q2); Information Systems (Q2); Software (Q3)";"Computer Science" +12646;28074;"International Journal of Modern Physics D";journal;"02182718, 17936594";"World Scientific";No;No;0,466;Q2;101;158;479;9237;926;475;1,67;58,46;17,91;0;Singapore;Asiatic Region;"World Scientific";"1995-2026";"Mathematical Physics (Q2); Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Mathematics; Physics and Astronomy" +12647;13537;"Iranian Polymer Journal (English Edition)";journal;"17355265, 10261265";"Springer Science and Business Media Deutschland GmbH";No;No;0,466;Q2;59;193;373;10633;1245;372;3,31;55,09;33,80;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-2026";"Chemical Engineering (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)";"Chemical Engineering; Materials Science" +12648;21101017597;"Journal of Biosystems Engineering";journal;"22341862, 17381266";"Springer Science and Business Media Deutschland GmbH";No;No;0,466;Q2;19;36;120;1768;355;120;2,91;49,11;27,56;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2016, 2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Mechanical Engineering (Q2); Computer Science Applications (Q3)";"Agricultural and Biological Sciences; Computer Science; Engineering" +12649;21101107976;"Journal of International Maritime Safety, Environmental Affairs, and Shipping";journal;"25725084";"Informa UK Limited";Yes;No;0,466;Q2;17;16;59;759;149;59;2,77;47,44;25,64;0;United Kingdom;Western Europe;"Informa UK Limited";"2017-2026";"Ocean Engineering (Q2); Safety, Risk, Reliability and Quality (Q2); Management, Monitoring, Policy and Law (Q3); Pollution (Q3)";"Engineering; Environmental Science" +12650;25659;"Journal of Navigation";journal;"03734633, 14697785";"Cambridge University Press";No;No;0,466;Q2;74;23;162;935;401;160;1,73;40,65;25,33;0;United Kingdom;Western Europe;"Cambridge University Press";"1948-2025";"Ocean Engineering (Q2); Oceanography (Q2)";"Earth and Planetary Sciences; Engineering" +12651;71359;"Journal of the Brazilian Society of Mechanical Sciences and Engineering";journal;"16785878, 18063691";"Springer Verlag";Yes;No;0,466;Q2;67;660;1987;28526;5862;1983;3,04;43,22;20,29;0;Germany;Western Europe;"Springer Verlag";"2003-2026";"Aerospace Engineering (Q2); Applied Mathematics (Q2); Automotive Engineering (Q2); Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)";"Engineering; Mathematics" +12652;21100857390;"Journal of the Korean Association of Oral and Maxillofacial Surgeons";journal;"22347550, 22345930";"Korean Association of Oral and Maxillofacial Surgeons";No;No;0,466;Q2;26;61;175;1446;266;151;1,44;23,70;38,30;0;South Korea;Asiatic Region;"Korean Association of Oral and Maxillofacial Surgeons";"2017-2025";"Oral Surgery (Q2); Surgery (Q2)";"Dentistry; Medicine" +12653;21101361181;"Marine Development";journal;"3004832X";"Springer";Yes;No;0,466;Q2;6;22;41;1246;105;40;2,56;56,64;44,64;0;Singapore;Asiatic Region;"Springer";"2023-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Ocean Engineering (Q2)";"Economics, Econometrics and Finance; Engineering" +12654;14309;"Otolaryngologic Clinics of North America";journal;"15578259, 00306665";"W.B. Saunders";No;No;0,466;Q2;91;113;353;3890;584;299;1,87;34,42;43,87;0;United States;Northern America;"W.B. Saunders";"1970-2026";"Otorhinolaryngology (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +12655;19300157022;"Proceedings of the Institution of Mechanical Engineers, Part O: Journal of Risk and Reliability";journal;"17480078, 1748006X";"SAGE Publications Ltd";No;No;0,466;Q2;42;107;271;4814;754;263;2,78;44,99;31,34;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2006-2026";"Safety, Risk, Reliability and Quality (Q2)";"Engineering" +12656;17460;"South African Journal of Physiotherapy";journal;"24108219, 03796175";"AOSIS (Pty) Ltd";Yes;No;0,466;Q2;16;22;112;884;164;106;1,18;40,18;62,30;0;South Africa;Africa;"AOSIS (Pty) Ltd";"1987-1989, 1991-1998, 2019-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions" +12657;21100810502;"Transportation Infrastructure Geotechnology";journal;"21967202, 21967210";"Springer International Publishing";No;No;0,466;Q2;26;304;287;10188;906;286;3,32;33,51;22,19;0;United States;Northern America;"Springer International Publishing";"2014-2026";"Civil and Structural Engineering (Q2); Environmental Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2); Transportation (Q3)";"Earth and Planetary Sciences; Engineering; Environmental Science; Social Sciences" +12658;21100200405;"Zoosystematics and Evolution";journal;"18600743, 14351935";"Pensoft Publishers";Yes;No;0,466;Q2;31;140;185;7014;267;185;1,44;50,10;33,27;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"1996-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +12659;20715;"Central European Journal of Immunology";journal;"16444124, 14263912";"Termedia Publishing House Ltd.";Yes;No;0,466;Q3;41;24;99;717;160;92;1,19;29,88;47,41;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"1996-2025";"Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +12660;19200156944;"International Journal of Electrochemical Science";journal;"14523981";"Elsevier B.V.";Yes;No;0,466;Q3;108;272;1542;15327;5047;1542;4,63;56,35;35,40;0;Serbia;Eastern Europe;"Elsevier B.V.";"2006-2026";"Electrochemistry (Q3)";"Chemistry" +12661;14256;"Protein and Peptide Letters";journal;"09298665, 18755305";"Bentham Science Publishers";No;No;0,466;Q3;71;73;285;4579;568;268;2,17;62,73;46,15;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"1994-2025";"Biochemistry (Q3); Medicine (miscellaneous) (Q3); Structural Biology (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12662;5600152714;"Scientific Online Letters on the Atmosphere";journal;"13496476";"Springer";Yes;No;0,466;Q3;45;63;153;1818;192;144;1,23;28,86;19,39;1;Japan;Asiatic Region;"Springer";"2005-2025";"Atmospheric Science (Q3)";"Earth and Planetary Sciences" +12663;21100937147;"Ultrasound International Open";journal;"2509596X, 21997152";"Georg Thieme Verlag";Yes;No;0,466;Q3;21;6;31;81;92;30;2,82;13,50;41,38;0;Germany;Western Europe;"Georg Thieme Verlag";"2015-2025";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +12664;28509;"European Journal of the History of Economic Thought";journal;"14695936, 09672567";"Routledge";No;No;0,465;Q1;30;62;150;4385;114;144;0,72;70,73;28,75;0;United Kingdom;Western Europe;"Routledge";"1993-2026";"Arts and Humanities (miscellaneous) (Q1); History and Philosophy of Science (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Arts and Humanities; Economics, Econometrics and Finance" +12665;24765;"Canadian Journal of Zoology";journal;"00084301, 14803283";"National Research Council of Canada";No;No;0,465;Q2;122;122;259;8393;390;243;1,50;68,80;34,69;0;Canada;Northern America;"National Research Council of Canada";"1965-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +12666;21101044833;"Decision Making: Applications in Management and Engineering";journal;"26200104, 25606018";"Regional Association for Security and crisis management";Yes;No;0,465;Q2;46;86;181;4458;682;181;3,41;51,84;31,34;0;Serbia;Eastern Europe;"Regional Association for Security and crisis management";"2018-2025";"Decision Sciences (miscellaneous) (Q2)";"Decision Sciences" +12667;17700156701;"Environmental Progress and Sustainable Energy";journal;"19447450, 19447442";"John Wiley and Sons Inc";No;No;0,465;Q2;87;372;739;21769;2112;736;3,04;58,52;29,57;0;United States;Northern America;"John Wiley and Sons Inc";"2009-2026";"Chemical Engineering (miscellaneous) (Q2); Environmental Engineering (Q2); Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3); Renewable Energy, Sustainability and the Environment (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3)";"Chemical Engineering; Energy; Environmental Science" +12668;28031;"IEEE Transactions on Plasma Science";journal;"00933813, 19399375";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,465;Q2;128;482;1759;14814;3083;1738;1,79;30,73;23,31;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1973-2026";"Condensed Matter Physics (Q2); Nuclear and High Energy Physics (Q2)";"Physics and Astronomy" +12669;54469;"Journal of Applied Poultry Research";journal;"15370437, 10566171";"Elsevier Inc.";Yes;No;0,465;Q2;82;126;272;5677;686;272;2,55;45,06;31,65;0;United States;Northern America;"Elsevier Inc.";"1992-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +12670;21100466753;"Operative Neurosurgery";journal;"23324252, 23324260";"Lippincott Williams and Wilkins";No;No;0,465;Q2;47;483;1238;10037;1165;932;0,97;20,78;20,81;0;United States;Northern America;"Lippincott Williams and Wilkins";"2010, 2012-2026";"Surgery (Q2); Neurology (clinical) (Q3)";"Medicine" +12671;21100887529;"RMLE Online";journal;"19404476";"Taylor and Francis Ltd.";Yes;No;0,465;Q2;23;10;31;660;63;31;2,24;66,00;77,78;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Education (Q2)";"Social Sciences" +12672;14372;"Tribology Transactions";journal;"1547397X, 10402004";"Taylor and Francis Ltd.";No;No;0,465;Q2;87;105;260;4087;710;257;2,83;38,92;24,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)";"Engineering; Materials Science; Physics and Astronomy" +12673;20151;"Advances in Immunology";book series;"00652776, 15578445";"Academic Press Inc.";No;No;0,465;Q3;121;23;39;3134;137;3;3,75;136,26;0,00;0;United States;Northern America;"Academic Press Inc.";"1961, 1963-1964, 1966-1976, 1978-2025";"Immunology (Q3); Immunology and Allergy (Q3)";"Immunology and Microbiology; Medicine" +12674;4600151507;"Anti-Inflammatory and Anti-Allergy Agents in Medicinal Chemistry";journal;"1875614X, 18715230";"Bentham Science Publishers";No;No;0,465;Q3;31;31;61;2248;161;58;2,47;72,52;34,62;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Immunology (Q3); Immunology and Allergy (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +12675;22529;"Cardiology Clinics";journal;"07338651, 15582264";"W.B. Saunders";No;No;0,465;Q3;68;63;164;3751;256;139;1,24;59,54;43,27;0;United States;Northern America;"W.B. Saunders";"1983-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +12676;21100919471;"Current Dermatology Reports";journal;"21624933";"Springer";No;No;0,465;Q3;28;34;103;1993;222;102;1,51;58,62;63,78;0;United States;Northern America;"Springer";"2012-2026";"Dermatology (Q3)";"Medicine" +12677;23903;"Kardiologia Polska";journal;"00229032, 18974279";"Via Medica";Yes;No;0,465;Q3;50;306;875;5232;1146;701;1,50;17,10;32,59;0;Poland;Eastern Europe;"Via Medica";"1954-1955, 1961-1994, 1996-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +12678;144739;"Facilities";journal;"02632772";"Emerald Group Publishing Ltd.";No;No;0,464;Q1;63;79;177;4809;514;175;2,86;60,87;38,59;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1983-2026";"Architecture (Q1); Building and Construction (Q2); Human Factors and Ergonomics (Q3)";"Engineering; Social Sciences" +12679;21101322178;"Frontiers in Language Sciences";journal;"28134605";"Frontiers Media SA";Yes;No;0,464;Q1;7;49;93;3135;136;90;1,36;63,98;66,41;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Linguistics and Language (Q1); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3)";"Neuroscience; Psychology; Social Sciences" +12680;19500157216;"Journal of Addictions and Offender Counseling";journal;"10553835, 21611874";"Wiley-Blackwell";No;No;0,464;Q1;20;16;35;1000;66;32;2,04;62,50;59,26;0;United States;Northern America;"Wiley-Blackwell";"1990-2026";"Law (Q1); Clinical Psychology (Q3); Social Psychology (Q3)";"Psychology; Social Sciences" +12681;21101094524;"Journal of Indonesian Legal Studies";journal;"25481592, 25481584";"Universitas Negeri Semarang";Yes;No;0,464;Q1;16;26;84;1629;233;83;2,30;62,65;40,32;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2016-2025";"Law (Q1)";"Social Sciences" +12682;21101109913;"Language, Culture and Society";journal;"25433164, 25433156";"John Benjamins Publishing Company";No;No;0,464;Q1;12;5;38;195;59;33;1,44;39,00;50,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2026";"Linguistics and Language (Q1)";"Social Sciences" +12683;19398;"Acta Pharmaceutica";journal;"18469558, 13300075";"Hrvatsko Farmaceutsko Drustvo";Yes;No;0,464;Q2;70;42;125;1671;278;125;1,99;39,79;53,88;0;Croatia;Eastern Europe;"Hrvatsko Farmaceutsko Drustvo";"1986, 1992-2026";"Pharmaceutical Science (Q2); Medicine (miscellaneous) (Q3); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +12684;22698;"American Economist";journal;"23281235, 05694345";"SAGE Publications Inc.";No;No;0,464;Q2;24;21;63;724;103;59;2,10;34,48;16,22;0;United States;Northern America;"SAGE Publications Inc.";"1960-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +12685;17032;"Berliner Journal fur Soziologie";journal;"18622593, 08631808";"Walter de Gruyter GmbH";No;No;0,464;Q2;23;36;77;1873;112;64;1,10;52,03;53,33;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1992-1993, 1996-1999, 2001-2026";"Sociology and Political Science (Q2)";"Social Sciences" +12686;19900188006;"BioSocieties";journal;"17458560, 17458552";"Palgrave Macmillan Ltd.";No;No;0,464;Q2;37;50;99;3399;203;95;2,13;67,98;69,70;1;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2006-2026";"Health (social science) (Q2); Health Policy (Q3)";"Medicine; Social Sciences" +12687;21100923472;"Ethics and Human Research";journal;"25782363, 25782355";"John Wiley and Sons Inc";No;No;0,464;Q2;38;26;75;995;149;73;1,53;38,27;62,37;0;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Health (social science) (Q2)";"Social Sciences" +12688;25857;"Flavour and Fragrance Journal";journal;"10991026, 08825734";"John Wiley and Sons Ltd";No;No;0,464;Q2;91;86;109;4079;345;108;3,23;47,43;43,30;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1985-2026";"Chemistry (miscellaneous) (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Chemistry" +12689;23294;"Izvestiya Mathematics";journal;"10645632, 14684810";"Steklov Mathematical Institute of Russian Academy of Sciences";No;No;0,464;Q2;30;49;141;1294;81;139;0,55;26,41;13,51;0;Russian Federation;Eastern Europe;"Steklov Mathematical Institute of Russian Academy of Sciences";"1993-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12690;24350;"Journal of Economic Education";journal;"00220485, 21524068";"Routledge";Yes;No;0,464;Q2;59;40;116;955;144;113;1,04;23,88;39,66;2;United States;Northern America;"Routledge";"1969-2026";"Economics and Econometrics (Q2); Education (Q2)";"Economics, Econometrics and Finance; Social Sciences" +12691;27019;"Journal of Energy Resources Technology";journal;"15288994, 01950738";"American Society of Mechanical Engineers (ASME)";No;No;0,464;Q2;74;0;624;0;1559;622;2,72;0,00;0,00;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1979-2024";"Energy Engineering and Power Technology (Q2); Geochemistry and Petrology (Q2); Mechanical Engineering (Q2); Fuel Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Earth and Planetary Sciences; Energy; Engineering" +12692;21101167512;"Journal of Ionic Liquids";journal;"27724220";"Elsevier B.V.";Yes;No;0,464;Q2;15;54;112;3849;326;112;2,75;71,28;39,15;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2025";"Chemical Engineering (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)";"Chemical Engineering; Environmental Science" +12693;28549;"Journal of Nonlinear Mathematical Physics";journal;"14029251, 17760852";"Springer Nature";Yes;No;0,464;Q2;48;100;220;3655;456;218;2,17;36,55;32,20;0;Netherlands;Western Europe;"Springer Nature";"1994-2026";"Mathematical Physics (Q2); Statistical and Nonlinear Physics (Q3)";"Mathematics; Physics and Astronomy" +12694;19900191975;"Journal of Uncertain Systems";journal;"17528917, 17528909";"World Scientific";No;No;0,464;Q2;24;32;92;1237;322;88;4,28;38,66;41,18;0;Singapore;Asiatic Region;"World Scientific";"2011-2019, 2021-2026";"Computer Vision and Pattern Recognition (Q2); Control and Optimization (Q2); Artificial Intelligence (Q3)";"Computer Science; Mathematics" +12695;21101091791;"Micro and Nanostructures";journal;"27730123, 27730131";"Elsevier Ltd";No;No;0,464;Q2;100;277;622;13850;2025;619;3,22;50,00;30,31;0;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Biomaterials (Q3)";"Materials Science; Physics and Astronomy" +12696;26717;"Microelectronics Reliability";journal;"00262714";"Elsevier Ltd";No;No;0,464;Q2;115;298;831;8208;2207;826;2,77;27,54;26,10;0;United Kingdom;Western Europe;"Elsevier Ltd";"1962-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Safety, Risk, Reliability and Quality (Q2); Surfaces, Coatings and Films (Q2); Nanoscience and Nanotechnology (Q3)";"Engineering; Materials Science; Physics and Astronomy" +12697;12000154479;"Phytopathologia Mediterranea";journal;"00319465, 15932095";"Firenze University Press";Yes;No;0,464;Q2;64;36;118;1865;219;117;1,46;51,81;43,75;0;Italy;Western Europe;"Firenze University Press";"2000-2026";"Agronomy and Crop Science (Q2); Horticulture (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +12698;21101197327;"Power Electronic Devices and Components";journal;"27723704";"Elsevier B.V.";Yes;No;0,464;Q2;9;60;67;1705;196;66;2,63;28,42;18,09;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Electrical and Electronic Engineering (Q2); Engineering (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Engineering; Physics and Astronomy" +12699;17540;"Acta Neurobiologiae Experimentalis";journal;"00651400, 16890035";"Nencki Institute of Experimental Biology";Yes;No;0,464;Q3;64;19;120;1417;208;120;1,63;74,58;56,00;0;Poland;Eastern Europe;"Nencki Institute of Experimental Biology";"1970-2025";"Medicine (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q3)";"Medicine; Neuroscience" +12700;21101131038;"Cardiology Plus";journal;"2470752X, 24707511";"Lippincott Williams and Wilkins";Yes;Yes;0,464;Q3;9;28;101;1324;202;89;2,30;47,29;44,44;0;United States;Northern America;"Lippincott Williams and Wilkins";"2016, 2022-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +12701;21100199566;"Health SA Gesondheid";journal;"10259848, 20719736";"AOSIS (Pty) Ltd";Yes;No;0,464;Q3;25;135;301;5283;540;297;1,40;39,13;64,44;1;South Africa;Africa;"AOSIS (Pty) Ltd";"2011-2026";"Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +12702;96959;"Journal of the American Psychoanalytic Association";journal;"19412460, 00030651";"SAGE Publications Inc.";No;No;0,463;Q1;59;59;169;1418;118;108;0,53;24,03;47,37;0;United States;Northern America;"SAGE Publications Inc.";"1953-2026";"Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q3)";"Arts and Humanities; Psychology" +12703;21100863482;"Revista de Comunicacion";journal;"16840933, 22271465";"University of Piura";Yes;Yes;0,463;Q1;18;44;138;2537;260;131;1,67;57,66;61,95;0;Peru;Latin America;"University of Piura";"2018-2025";"Cultural Studies (Q1); Communication (Q2)";"Social Sciences" +12704;69005;"Agricultural Finance Review";journal;"00021466, 20416326";"Emerald Publishing";No;No;0,463;Q2;41;37;110;1773;261;108;2,66;47,92;29,52;0;United Kingdom;Western Europe;"Emerald Publishing";"1980, 2000-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Economics and Econometrics (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q2); Strategy and Management (Q2)";"Agricultural and Biological Sciences; Business, Management and Accounting; Economics, Econometrics and Finance" +12705;15053;"Infants and Young Children";journal;"08963746, 15505081";"Lippincott Williams and Wilkins Ltd.";No;No;0,463;Q2;57;30;73;1195;105;61;1,31;39,83;79,73;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1988-2026";"Pediatrics, Perinatology and Child Health (Q2); Developmental and Educational Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +12706;21100198500;"International Journal of Disaster Resilience in the Built Environment";journal;"17595916, 17595908";"Emerald Group Publishing Ltd.";No;No;0,463;Q2;36;53;123;2735;270;120;2,14;51,60;33,56;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2026";"Building and Construction (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering" +12707;21100913562;"Inventions";journal;"24115134";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,463;Q2;42;111;407;5111;1272;397;3,00;46,05;26,01;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2025";"Engineering (miscellaneous) (Q2)";"Engineering" +12708;4700152737;"Journal of Applied School Psychology";journal;"15377903, 15377911";"Routledge";No;No;0,463;Q2;40;17;52;967;87;52;1,19;56,88;69,44;0;United States;Northern America;"Routledge";"2002-2026";"Education (Q2); Applied Psychology (Q3); Developmental and Educational Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology; Social Sciences" +12709;21100838567;"Journal of Bio- and Tribo-Corrosion";journal;"21984220, 21984239";"Springer International Publishing AG";No;No;0,463;Q2;50;132;314;7934;1296;313;4,09;60,11;30,59;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Materials Chemistry (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)";"Engineering; Materials Science" +12710;29274;"Journal of Geography";journal;"17526868, 00221341";"Taylor and Francis Ltd.";No;No;0,463;Q2;43;21;46;1061;80;37;1,50;50,52;55,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1902-2026";"Earth-Surface Processes (Q2); Education (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +12711;21100870577;"Journal of Oceanology and Limnology";journal;"20965508, 25233521";"Science Press";No;No;0,463;Q2;47;173;522;10098;1014;518;1,94;58,37;38,99;0;China;Asiatic Region;"Science Press";"2018-2026";"Oceanography (Q2); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science" +12712;21101089378;"Journal of Policy Studies";journal;"27999130, 28000714";"Seoul National University - Graduate School of Public Administration";No;No;0,463;Q2;8;19;62;1497;107;59;1,74;78,79;29,41;0;South Korea;Asiatic Region;"Seoul National University - Graduate School of Public Administration";"2021-2025";"Public Administration (Q2)";"Social Sciences" +12713;4000152107;"Journal of Venomous Animals and Toxins Including Tropical Diseases";journal;"16789199";"Centro de Estudos de Venenos e Animais Peconhentos";Yes;No;0,463;Q2;46;22;73;1417;169;73;2,36;64,41;46,90;0;United Kingdom;Western Europe;"Centro de Estudos de Venenos e Animais Peconhentos";"2006-2025";"Animal Science and Zoology (Q2); Parasitology (Q2); Infectious Diseases (Q3); Toxicology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +12714;21100790089;"Montenegrin Journal of Sports Science and Medicine";journal;"18008755, 18008763";"Montenegrin Sports Academy";Yes;Yes;0,463;Q2;18;20;60;835;133;60;2,13;41,75;25,88;0;Montenegro;Eastern Europe;"Montenegrin Sports Academy";"2016-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3)";"Health Professions; Medicine" +12715;144945;"Networks and Spatial Economics";journal;"15729427, 1566113X";"Springer";No;No;0,463;Q2;64;76;113;4027;256;110;2,19;52,99;37,43;2;United States;Northern America;"Springer";"2005-2026";"Computer Networks and Communications (Q2); Artificial Intelligence (Q3); Software (Q3)";"Computer Science" +12716;21100388318;"Plant Gene";journal;"23524073";"Elsevier B.V.";No;No;0,463;Q2;40;79;121;5259;270;117;2,25;66,57;37,87;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Plant Science (Q2); Biochemistry (Q3); Biotechnology (Q3); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12717;6400153109;"Russian Geology and Geophysics";journal;"10687971";"Publishing House of Siberian Branch of the Russian Academy of Sciences";No;No;0,463;Q2;59;110;305;5898;355;305;1,09;53,62;38,93;0;Netherlands;Western Europe;"Publishing House of Siberian Branch of the Russian Academy of Sciences";"2007-2026";"Earth-Surface Processes (Q2); Geology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +12718;18886;"Sexuality and Disability";journal;"15736717, 01461044";"Springer";No;No;0,463;Q2;55;33;152;1438;301;138;1,86;43,58;67,31;0;United States;Northern America;"Springer";"1978-1984, 1987, 1991-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)";"Health Professions; Medicine" +12719;19700186855;"ACM Transactions on Accessible Computing";journal;"19367228";"Association for Computing Machinery";No;No;0,463;Q3;45;15;80;1575;429;75;4,45;105,00;58,06;0;United States;Northern America;"Association for Computing Machinery";"2008-2025";"Computer Science Applications (Q3); Human-Computer Interaction (Q3)";"Computer Science" +12720;39097;"Annali dell'Istituto Superiore di Sanita";journal;"00212571, 23848553";"Istituto Superiore di Sanita";Yes;Yes;0,463;Q3;59;35;121;1224;193;116;1,64;34,97;60,63;0;Italy;Western Europe;"Istituto Superiore di Sanita";"1965-2025";"Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +12721;21101307589;"Journal of Ageing and Longevity";journal;"26739259";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,463;Q3;8;56;85;2807;147;82;0,98;50,13;65,79;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Geriatrics and Gerontology (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +12722;12247;"Journal of Human Behavior in the Social Environment";journal;"15403556, 10911359";"Routledge";No;No;0,462;Q1;52;182;244;9815;549;244;2,29;53,93;53,07;1;United States;Northern America;"Routledge";"1998-2026";"Anthropology (Q1); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +12723;16861;"Laterality";journal;"14640678, 1357650X";"Taylor and Francis Ltd.";No;No;0,462;Q1;57;22;72;1667;125;72;2,09;75,77;52,94;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q3); Psychology (miscellaneous) (Q3)";"Arts and Humanities; Medicine; Psychology" +12724;21101114559;"Teoria y Derecho";journal;"18883443, 26956594";"Tirant lo Blanch";Yes;Yes;0,462;Q1;4;22;70;1738;21;66;0,27;79,00;25,00;0;Spain;Western Europe;"Tirant lo Blanch";"2019, 2021-2025";"Law (Q1)";"Social Sciences" +12725;21101121509;"Ulumuna";journal;"14113457, 23557648";"Universitas Islam Negeri (UIN) Mataram";Yes;Yes;0,462;Q1;10;40;93;1821;219;93;2,34;45,53;21,84;0;Indonesia;Asiatic Region;"Universitas Islam Negeri (UIN) Mataram";"2019-2025";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); History (Q1); Philosophy (Q1); Religious Studies (Q1); Education (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +12726;19700182746;"Applicable Analysis and Discrete Mathematics";journal;"14528630";"University of Belgrade";Yes;No;0,462;Q2;35;43;91;1109;102;91;1,22;25,79;29,41;0;Serbia;Eastern Europe;"University of Belgrade";"2007-2025";"Analysis (Q2); Applied Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +12727;17953;"Biological Cybernetics";journal;"14320770, 03401200";"Springer Science and Business Media Deutschland GmbH";No;No;0,462;Q2;108;27;92;2037;140;86;2,02;75,44;23,17;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1961-2026";"Computer Science (miscellaneous) (Q2); Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science" +12728;4600151401;"Boletin de la Sociedad Espanola de Ceramica y Vidrio";journal;"03663175, 21730431";"Sociedad Espanola de Ceramica y Vidrio";Yes;Yes;0,462;Q2;38;44;185;2131;503;157;2,63;48,43;43,56;0;Spain;Western Europe;"Sociedad Espanola de Ceramica y Vidrio";"2001-2026";"Ceramics and Composites (Q2); Industrial and Manufacturing Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Materials Science" +12729;26581;"Catalysis Surveys from Asia";journal;"15749266, 15711013";"Springer";No;No;0,462;Q2;62;28;91;1615;252;90;2,80;57,68;36,75;0;United States;Northern America;"Springer";"2002-2026";"Chemistry (miscellaneous) (Q2); Catalysis (Q3)";"Chemical Engineering; Chemistry" +12730;21101077110;"Cognitive Computation and Systems";journal;"25177567";"John Wiley and Sons Inc";Yes;No;0,462;Q2;17;5;71;124;196;70;3,31;24,80;44,44;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2019-2025";"Computer Vision and Pattern Recognition (Q2); Artificial Intelligence (Q3); Cognitive Neuroscience (Q3); Computer Science Applications (Q3); Experimental and Cognitive Psychology (Q3)";"Computer Science; Neuroscience; Psychology" +12731;21101047121;"Delaware Journal of Public Health";journal;"26396378";"Delaware Academy of Medicine";No;No;0,462;Q2;14;69;224;1118;292;154;0,93;16,20;68,22;0;United States;Northern America;"Delaware Academy of Medicine";"2018-2025";"Health (social science) (Q2); Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +12732;25771;"Episodes";journal;"07053797";"International Union of Geological Sciences";Yes;No;0,462;Q2;89;39;127;2586;207;119;1,61;66,31;26,04;0;China;Asiatic Region;"International Union of Geological Sciences";"1979-1989, 1992, 1996-2025";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +12733;6100152706;"Georgian Mathematical Journal";journal;"1072947X, 15729176";"Walter de Gruyter GmbH";No;No;0,462;Q2;33;129;253;2585;266;253;1,02;20,04;24,49;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1994-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12734;21101019618;"International Journal of Exercise Science";journal;"1939795X";"Western Kentucky University";Yes;No;0,462;Q2;21;100;368;3630;559;366;1,52;36,30;35,58;0;United States;Northern America;"Western Kentucky University";"2019-2025";"Health (social science) (Q2); Occupational Therapy (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Health Professions; Social Sciences" +12735;21100826224;"Journal of Advanced Veterinary and Animal Research";journal;"23117710";"Network for the Veterinarians of Bangladesh";Yes;No;0,462;Q2;29;101;304;4581;772;304;2,35;45,36;38,11;1;Bangladesh;Asiatic Region;"Network for the Veterinarians of Bangladesh";"2014-2025";"Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Veterinary" +12736;22540;"Journal of Arachnology";journal;"01618202";"American Museum of Natural History";No;No;0,462;Q2;54;28;80;1205;91;80;1,02;43,04;30,00;0;United States;Northern America;"American Museum of Natural History";"1987, 1993-2025";"Insect Science (Q2)";"Agricultural and Biological Sciences" +12737;21101039448;"Journal of Vertebrate Biology";journal;"26947684";"Institute of Vertebrate Biology Czech Academy of Sciences";No;No;0,462;Q2;44;29;108;1676;164;107;1,28;57,79;37,65;0;Czech Republic;Eastern Europe;"Institute of Vertebrate Biology Czech Academy of Sciences";"2020-2026";"Animal Science and Zoology (Q2); Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +12738;24478;"Lithuanian Mathematical Journal";journal;"03631672, 15738825";"Springer GmbH & Co, Auslieferungs-Gesellschaf";No;No;0,462;Q2;22;39;110;982;85;110;0,79;25,18;32,47;0;Germany;Western Europe;"Springer GmbH & Co, Auslieferungs-Gesellschaf";"1973-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12739;26891;"Mathematical Population Studies";journal;"08898480, 1547724X";"Taylor and Francis Ltd.";No;No;0,462;Q2;26;13;37;434;63;36;1,64;33,38;35,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2001, 2003-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Demography (Q2); Geography, Planning and Development (Q2); Mathematics (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Mathematics; Social Sciences" +12740;21772;"Neurochirurgie";journal;"17730619, 00283770";"Elsevier Masson s.r.l.";No;No;0,462;Q2;40;124;335;3455;437;251;1,24;27,86;23,86;0;France;Western Europe;"Elsevier Masson s.r.l.";"1955-2026";"Surgery (Q2); Neurology (clinical) (Q3)";"Medicine" +12741;21100229190;"Ophthalmic Surgery Lasers and Imaging Retina";journal;"23258160, 23258179";"Slack Incorporated";No;No;0,462;Q2;69;141;360;2296;347;326;0,86;16,28;36,79;0;United States;Northern America;"Slack Incorporated";"2013-2026";"Ophthalmology (Q2); Surgery (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +12742;21100897215;"Revista de Educacion a Distancia";journal;"15787680";"Universidad de Murcia";Yes;Yes;0,462;Q2;20;15;97;768;212;97;2,16;51,20;52,17;0;Spain;Western Europe;"Universidad de Murcia";"2018-2025";"Education (Q2); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +12743;9400153141;"Revista Espanola de Pedagogia";journal;"21740909, 00349461";"Universidad Internacional de la Rioja";Yes;Yes;0,462;Q2;22;34;91;1711;129;87;1,33;50,32;53,01;0;Spain;Western Europe;"Universidad Internacional de la Rioja";"2006-2025";"Education (Q2)";"Social Sciences" +12744;21101041416;"SeMA Journal";journal;"22817875, 22543902";"Springer Nature";No;No;0,462;Q2;25;63;94;2522;168;91;1,59;40,03;22,73;0;Switzerland;Western Europe;"Springer Nature";"2010-2026";"Applied Mathematics (Q2); Control and Optimization (Q2); Modeling and Simulation (Q2); Numerical Analysis (Q2)";"Mathematics" +12745;24512;"Soil and Sediment Contamination";journal;"15497887, 15320383";"Taylor and Francis Ltd.";No;No;0,462;Q2;59;186;207;11732;489;206;2,34;63,08;37,96;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Soil Science (Q2); Environmental Chemistry (Q3); Health, Toxicology and Mutagenesis (Q3); Pollution (Q3)";"Agricultural and Biological Sciences; Environmental Science" +12746;19700200821;"Therapeutic Delivery";journal;"20415990, 20416008";"Taylor and Francis Ltd.";No;No;0,462;Q2;74;94;169;6488;486;143;3,10;69,02;43,40;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Pharmaceutical Science (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +12747;8700153309;"Wood Material Science and Engineering";journal;"17480272, 17480280";"Taylor and Francis Ltd.";No;No;0,462;Q2;36;351;451;16709;1329;448;2,68;47,60;31,02;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Materials Science (miscellaneous) (Q2)";"Materials Science" +12748;19700180835;"Advances in Protein Chemistry and Structural Biology";book series;"18761631, 18761623";"Academic Press Inc.";No;No;0,462;Q3;90;111;187;14626;518;42;2,77;131,77;36,67;0;United States;Northern America;"Academic Press Inc.";"2008-2026";"Biochemistry (Q3); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +12749;5000160301;"Environmental Quality Management";journal;"15206483, 10881913";"John Wiley & Sons Inc.";No;No;0,462;Q3;38;237;604;15154;1630;597;2,86;63,94;36,84;1;United States;Northern America;"John Wiley & Sons Inc.";"1991-2026";"Management, Monitoring, Policy and Law (Q3); Pollution (Q3); Public Health, Environmental and Occupational Health (Q3); Waste Management and Disposal (Q3)";"Environmental Science; Medicine" +12750;19700174993;"Journal of Contemporary Brachytherapy";journal;"20812841, 1689832X";"Termedia Publishing House Ltd.";Yes;No;0,462;Q3;36;54;204;1347;291;190;1,45;24,94;34,06;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2010-2025";"Oncology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +12751;21101092524;"PHAGE: Therapy, Applications, and Research";journal;"26416549, 26416530";"Mary Ann Liebert Inc.";No;No;0,462;Q3;17;42;80;2235;122;68;1,40;53,21;39,89;0;United States;Northern America;"Mary Ann Liebert Inc.";"2020-2026";"Applied Microbiology and Biotechnology (Q3); Microbiology (Q3); Microbiology (medical) (Q3); Virology (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +12752;18222;"Revista Clinica Espanola";journal;"00142565, 15781860";"Sociedad Espanola de Medicina Interna (SEMI)";No;No;0,462;Q3;33;101;293;2342;411;213;1,47;23,19;42,12;0;Spain;Western Europe;"Sociedad Espanola de Medicina Interna (SEMI)";"1947-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +12753;24282;"Proceedings - International Conference on Pattern Recognition";conference and proceedings;"10514651";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,462;-;133;0;720;0;1491;717;0,00;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1982, 1984, 1986, 1988, 1990, 1992, 1994, 1996, 1998, 2000, 2002, 2004, 2006, 2008, 2010, 2012, 2014, 2016, 2018, 2020-2022";"Computer Vision and Pattern Recognition";"Computer Science" +12754;21101238221;"Architecture";journal;"26738945";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,461;Q1;13;132;142;7418;375;137;2,74;56,20;41,28;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Architecture (Q1); Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities; Engineering" +12755;21100970270;"Current Issues in Criminal Justice";journal;"10345329, 22069542";"Routledge";No;No;0,461;Q1;17;58;82;3635;183;68;2,17;62,67;61,86;4;United Kingdom;Western Europe;"Routledge";"2019-2026";"Law (Q1)";"Social Sciences" +12756;15540;"Journal of Humanistic Psychology";journal;"1552650X, 00221678";"SAGE Publications Inc.";No;No;0,461;Q1;53;151;258;6892;488;244;1,56;45,64;50,41;2;United States;Northern America;"SAGE Publications Inc.";"1961-2026";"Philosophy (Q1); Sociology and Political Science (Q2); Social Psychology (Q3)";"Arts and Humanities; Psychology; Social Sciences" +12757;21100376830;"African Journal of Economic and Management Studies";journal;"20400713, 20400705";"Emerald Group Publishing Ltd.";No;No;0,461;Q2;34;94;139;5101;462;136;3,18;54,27;17,34;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +12758;19208;"Baltic Journal of Coleopterology";journal;"14078619";"Baltic Institute of Coleopterology";No;No;0,461;Q2;19;34;99;531;76;99;0,78;15,62;26,47;0;Latvia;Eastern Europe;"Baltic Institute of Coleopterology";"2003-2025";"Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +12759;36442;"Biological Agriculture and Horticulture";journal;"01448765, 21650616";"Taylor and Francis Ltd.";No;No;0,461;Q2;41;23;59;1283;140;59;2,43;55,78;41,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-2026";"Agronomy and Crop Science (Q2); Horticulture (Q2)";"Agricultural and Biological Sciences" +12760;22748;"Catalysis Letters";journal;"1572879X, 1011372X";"";No;No;0,461;Q2;139;397;1199;19933;3232;1199;2,70;50,21;35,17;0;United States;Northern America;"";"1988-2026";"Chemistry (miscellaneous) (Q2); Catalysis (Q3)";"Chemical Engineering; Chemistry" +12761;21101303336;"Grasses";journal;"28133463";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,461;Q2;6;53;51;2958;116;50;2,35;55,81;31,85;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +12762;17296;"IEEE Microwave Magazine";journal;"15273342, 15579581";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,461;Q2;103;160;483;4422;742;370;1,55;27,64;25,23;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2000-2026";"Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Radiation (Q2)";"Engineering; Physics and Astronomy" +12763;5300152202;"IET Communications";journal;"17518628, 17518636";"John Wiley & Sons Inc.";Yes;No;0,461;Q2;74;148;547;5307;1467;542;2,08;35,86;27,56;0;United States;Northern America;"John Wiley & Sons Inc.";"2007-2026";"Electrical and Electronic Engineering (Q2); Computer Science Applications (Q3)";"Computer Science; Engineering" +12764;19900194817;"IET Electrical Systems in Transportation";journal;"20429738, 20429746";"John Wiley and Sons Ltd";Yes;No;0,461;Q2;45;18;69;816;205;68;2,93;45,33;14,06;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2025";"Electrical and Electronic Engineering (Q2)";"Engineering" +12765;21100777750;"International Journal of Emotional Education";journal;"20737629";"University of Malta";Yes;Yes;0,461;Q2;21;16;57;724;113;55;1,80;45,25;78,00;0;Malta;Western Europe;"University of Malta";"2016-2025";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +12766;21100905391;"International Journal of Renewable Energy Development";journal;"22524940";"Diponegoro university Indonesia - Center of Biomass and Renewable Energy (CBIORE)";Yes;No;0,461;Q2;32;102;304;5990;962;304;2,91;58,73;32,48;0;Indonesia;Asiatic Region;"Diponegoro university Indonesia - Center of Biomass and Renewable Energy (CBIORE)";"2012-2026";"Energy Engineering and Power Technology (Q2); Environmental Engineering (Q2); Energy (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science" +12767;11300153720;"Physical Communication";journal;"18744907";"Elsevier B.V.";No;No;0,461;Q2;59;345;721;13388;1916;716;2,75;38,81;29,06;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +12768;21100922942;"Teaching Exceptional Children";journal;"21635684, 00400599";"SAGE Publications Ltd";No;No;0,461;Q2;27;73;174;2032;238;129;1,40;27,84;75,34;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996, 2003, 2014-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +12769;21101042930;"Journal of Pancreatology";journal;"25773577, 20965664";"Wolters Kluwer Health";Yes;Yes;0,461;Q3;15;59;100;2059;159;94;1,58;34,90;35,26;0;United States;Northern America;"Wolters Kluwer Health";"2018-2025";"Endocrinology, Diabetes and Metabolism (Q3); Hepatology (Q3); Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12770;17891;"Seminars in Interventional Radiology";journal;"10988963, 07399529";"Thieme Medical Publishers, Inc.";No;No;0,461;Q3;67;84;225;3167;361;214;1,11;37,70;27,65;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1984-2026";"Cardiology and Cardiovascular Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +12771;700147302;"IEEE International Reliability Physics Symposium Proceedings";conference and proceedings;"15417026";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,461;-;64;205;535;3499;854;529;1,64;17,07;21,15;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1967, 1970, 2001-2006, 2008-2025";"Engineering (miscellaneous)";"Engineering" +12772;19443;"American Journal of Health-System Pharmacy";journal;"10792082, 15352900";"Oxford University Press";No;No;0,460;Q1;113;347;1009;8023;1364;818;1,21;23,12;58,04;0;United States;Northern America;"Oxford University Press";"1953-1954, 1957, 1959, 1964, 1969, 1971, 1975, 1977, 1980-1981, 1983, 1985, 1987, 1990-1991, 1994-2026";"Pharmacy (Q1); Health Policy (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +12773;21101186824;"Corrections: Policy, Practice, and Research";journal;"23774657, 23774665";"Informa UK Ltd";No;No;0,460;Q1;18;38;84;2320;154;83;1,87;61,05;61,70;1;United Kingdom;Western Europe;"Informa UK Ltd";"2016-2026";"Law (Q1); Sociology and Political Science (Q2)";"Social Sciences" +12774;19700170139;"International Research in Children's Literature";journal;"17556198, 17556201";"Edinburgh University Press";No;No;0,460;Q1;14;26;77;855;39;65;0,41;32,88;61,90;0;United Kingdom;Western Europe;"Edinburgh University Press";"2008-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +12775;19900191915;"Intersecciones en Antropologia";journal;"16662105, 1850373X";"Universidad Nacional del Centro de la Provincia de Buenos Aires";Yes;Yes;0,460;Q1;18;9;57;573;37;57;0,50;63,67;55,26;0;Argentina;Latin America;"Universidad Nacional del Centro de la Provincia de Buenos Aires";"2010-2025";"Anthropology (Q1)";"Social Sciences" +12776;15732;"Journal of the History of Ideas";journal;"00225037, 10863222";"University of Pennsylvania Press";No;No;0,460;Q1;47;33;92;3084;66;78;0,64;93,45;37,14;0;United States;Northern America;"University of Pennsylvania Press";"1970-2026";"Philosophy (Q1)";"Arts and Humanities" +12777;5700165171;"Korea Observer";journal;"25863053, 00233919";"Institute of Korean Studies";No;No;0,460;Q1;19;26;75;1732;97;75;1,48;66,62;33,33;0;South Korea;Asiatic Region;"Institute of Korean Studies";"2007-2025";"Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +12778;21100905930;"Kratkiye Soobshcheniya Instituta Arkheologii";journal;"01302620";"Russian Academy of Sciences, Institute of Archaeology";No;No;0,460;Q1;8;85;363;2718;84;363;0,20;31,98;48,39;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences, Institute of Archaeology";"2018-2025";"Archeology (arts and humanities) (Q1); History (Q1)";"Arts and Humanities" +12779;21100826373;"Music Theory Online";journal;"10673040";"Society for Music Theory";Yes;Yes;0,460;Q1;14;19;113;1475;97;108;0,63;77,63;35,71;0;United States;Northern America;"Society for Music Theory";"2004, 2009-2010, 2016-2025";"Music (Q1)";"Arts and Humanities" +12780;25958;"Slavic Review";journal;"00376779, 23257784";"Cambridge University Press";No;No;0,460;Q1;49;26;114;1997;105;110;0,41;76,81;48,39;0;United States;Northern America;"Cambridge University Press";"1963-1966, 1969-1974, 1976-1979, 1981-2026";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1)";"Arts and Humanities; Social Sciences" +12781;21101092537;"Transactions of the International Society for Music Information Retrieval";journal;"25143298";"Ubiquity Press";Yes;No;0,460;Q1;20;23;48;1442;168;47;3,36;62,70;23,47;0;United Kingdom;Western Europe;"Ubiquity Press";"2019-2025";"Linguistics and Language (Q1); Museology (Q1); Music (Q1); Electrical and Electronic Engineering (Q2); Library and Information Sciences (Q2)";"Arts and Humanities; Engineering; Social Sciences" +12782;21101303301;"Analytics";journal;"28132203";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,460;Q2;12;36;87;1726;277;84;3,48;47,94;35,29;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Analysis (Q2); Computer Science (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2)";"Computer Science; Mathematics" +12783;21100886426;"Brain-Computer Interfaces";journal;"23262621, 2326263X";"Taylor and Francis Ltd.";No;No;0,460;Q2;26;0;39;0;87;38;2,32;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2024";"Electrical and Electronic Engineering (Q2); Biomedical Engineering (Q3); Human-Computer Interaction (Q3); Behavioral Neuroscience (Q4)";"Computer Science; Engineering; Neuroscience" +12784;21101056926;"Central and Eastern European Migration Review";journal;"23001682";"Polska Akademia Nauk";Yes;Yes;0,460;Q2;13;10;64;606;94;63;1,32;60,60;63,64;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2019-2025";"Demography (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12785;21100900506;"Chinese Journal of Eco-Agriculture";journal;"20966237";"Science Press";Yes;No;0,460;Q2;27;168;513;7383;1152;513;2,25;43,95;39,64;0;China;Asiatic Region;"Science Press";"2018-2026";"Agronomy and Crop Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12786;5700165213;"Czech Journal of Genetics and Plant Breeding";journal;"12121975, 18059325";"Czech Academy of Agricultural Sciences";Yes;No;0,460;Q2;28;20;65;920;128;64;2,27;46,00;50,89;0;Czech Republic;Eastern Europe;"Czech Academy of Agricultural Sciences";"2005, 2007-2025";"Plant Science (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +12787;144862;"Fibers and Polymers";journal;"18750052, 12299197";"Korean Fiber Society";No;No;0,460;Q2;83;434;1109;20154;3325;1109;3,31;46,44;39,40;0;South Korea;Asiatic Region;"Korean Fiber Society";"2000-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Polymers and Plastics (Q2)";"Chemical Engineering; Chemistry; Materials Science" +12788;21879;"Folia Parasitologica";journal;"00155683, 18036465";"Czech Academy of Sciences";Yes;No;0,460;Q2;53;33;76;2100;147;76;2,07;63,64;38,30;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"1971-2025";"Parasitology (Q2)";"Immunology and Microbiology" +12789;21100777291;"Foods and Raw Materials";journal;"23084057, 23109599";"Kemerovo State University";Yes;Yes;0,460;Q2;20;51;109;2692;310;109;3,01;52,78;50,46;0;Russian Federation;Eastern Europe;"Kemerovo State University";"2013-2026";"Food Science (Q2)";"Agricultural and Biological Sciences" +12790;21100996100;"International Journal of Population Data Science";journal;"23994908";"Swansea University";Yes;No;0,460;Q2;25;52;239;1527;267;214;0,93;29,37;63,83;1;United Kingdom;Western Europe;"Swansea University";"2017-2026";"Demography (Q2); Information Systems (Q2); Information Systems and Management (Q2); Health Informatics (Q3)";"Computer Science; Decision Sciences; Medicine; Social Sciences" +12791;22533;"Journal of Applied Animal Research";journal;"09741844, 09712119";"Taylor and Francis Ltd.";Yes;No;0,460;Q2;49;63;251;3359;623;251;2,23;53,32;30,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Veterinary" +12792;4900153217;"Journal of Computational and Nonlinear Dynamics";journal;"15551423, 15551415";"American Society of Mechanical Engineers (ASME)";No;No;0,460;Q2;67;100;267;4006;631;261;2,24;40,06;21,51;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"2006-2026";"Applied Mathematics (Q2); Control and Systems Engineering (Q2); Mechanical Engineering (Q2)";"Engineering; Mathematics" +12793;12214;"Journal of Emergency Medicine";journal;"07364679, 10901280";"Elsevier Inc.";No;No;0,460;Q2;103;365;724;7972;942;625;1,29;21,84;38,10;2;United States;Northern America;"Elsevier Inc.";"1983-2026";"Emergency Medicine (Q2)";"Medicine" +12794;21100400829;"Mires and Peat";journal;"1819754X";"The International Mire Conservation Group (IMCG)";Yes;Yes;0,460;Q2;27;35;91;2509;171;91;1,78;71,69;40,94;1;Germany;Western Europe;"The International Mire Conservation Group (IMCG)";"2015-2025";"Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12795;16516;"Phycologia";journal;"00318884, 23302968";"Taylor and Francis Ltd.";No;No;0,460;Q2;81;52;162;2654;294;156;2,06;51,04;39,44;0;United States;Northern America;"Taylor and Francis Ltd.";"1977, 1981, 1983-1986, 1988-2026";"Aquatic Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +12796;4900153304;"Archives of Environmental and Occupational Health";journal;"19338244, 21544700";"Taylor and Francis Ltd.";No;No;0,460;Q3;71;32;181;1199;339;178;1,60;37,47;56,08;0;United States;Northern America;"Taylor and Francis Ltd.";"2005-2026";"Environmental Science (miscellaneous) (Q3); Health, Toxicology and Mutagenesis (Q3); Public Health, Environmental and Occupational Health (Q3); Toxicology (Q3)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +12797;21783;"Psychopharmacology Bulletin";journal;"24722448, 00485764";"MedWorks Media LLC";No;No;0,460;Q3;68;43;82;875;123;75;1,28;20,35;47,54;0;United States;Northern America;"MedWorks Media LLC";"1963-1967, 1969-1998, 2001-2004, 2006-2012, 2016-2026";"Pharmacology (medical) (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +12798;21100197182;"Annual Conference on Innovation and Technology in Computer Science Education, ITiCSE";conference and proceedings;"1942647X";"Association for Computing Machinery";No;No;0,460;-;48;209;488;5664;1379;476;3,19;27,10;42,27;1;United States;Northern America;"Association for Computing Machinery";"1999, 2011-2013, 2015-2025";"Education; Management of Technology and Innovation";"Business, Management and Accounting; Social Sciences" +12799;21100218359;"Annual IEEE Communications Society Conference on Sensor, Mesh and Ad Hoc Communications and Networks workshops";conference and proceedings;"21555486, 21555494";"IEEE Computer Society";No;No;0,460;-;29;0;187;0;299;179;1,28;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012, 2019-2024";"Computer Networks and Communications; Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering" +12800;130055;"Public Organization Review";journal;"15667170, 15737098";"Kluwer Academic Publishers";No;No;0,459;Q1;44;160;232;8960;588;228;2,46;56,00;39,83;1;Netherlands;Western Europe;"Kluwer Academic Publishers";"2004-2026";"Law (Q1); Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting; Social Sciences" +12801;25159;"ACI Materials Journal";journal;"0889325X";"American Concrete Institute";No;No;0,459;Q2;122;44;225;2101;349;225;1,39;47,75;21,13;0;United States;Northern America;"American Concrete Institute";"1987-2025";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Materials Science (miscellaneous) (Q2)";"Engineering; Materials Science" +12802;27566;"ACSM's Health and Fitness Journal";journal;"1536593X, 10915397";"Lippincott Williams and Wilkins Ltd.";No;No;0,459;Q2;36;78;235;1194;304;202;1,55;15,31;58,43;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1998-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3); Public Health, Environmental and Occupational Health (Q3); Sports Science (Q3)";"Health Professions; Medicine" +12803;21101272841;"AJO International";journal;"29502535";"Elsevier B.V.";Yes;No;0,459;Q2;5;113;76;3485;110;74;1,45;30,84;35,12;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Ophthalmology (Q2); Optometry (Q2)";"Health Professions; Medicine" +12804;21100797236;"All Azimuth";journal;"21467757";"Center for Foreign Policy and Peace Research, Ihsan Dogramaci Peace Foundation";No;No;0,459;Q2;12;15;36;1104;46;36;1,17;73,60;40,00;0;Turkey;Middle East;"Center for Foreign Policy and Peace Research, Ihsan Dogramaci Peace Foundation";"2012-2025";"Political Science and International Relations (Q2)";"Social Sciences" +12805;19300156810;"Asia-Pacific Journal of Accounting and Economics";journal;"21642257, 16081625";"Taylor and Francis Ltd.";No;No;0,459;Q2;33;118;220;6387;527;220;2,39;54,13;42,62;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Economics and Econometrics (Q2); Finance (Q2); Accounting (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +12806;21100939696;"BMJ Leader";journal;"2398631X";"BMJ Publishing Group";No;No;0,459;Q2;22;148;268;4207;429;196;1,70;28,43;53,33;2;United Kingdom;Western Europe;"BMJ Publishing Group";"2017-2026";"Strategy and Management (Q2); Health Policy (Q3); Leadership and Management (Q3)";"Business, Management and Accounting; Medicine; Nursing" +12807;18029;"Canadian Journal of Respiratory Therapy";journal;"23686820, 12059838";"Canadian Society of Respiratory Therapists";Yes;Yes;0,459;Q2;20;27;85;863;112;75;1,51;31,96;48,00;0;Canada;Northern America;"Canadian Society of Respiratory Therapists";"1996-2026";"Health Professions (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q3)";"Health Professions; Medicine" +12808;19053;"Computational Economics";journal;"09277099, 15729974";"Springer Netherlands";No;No;0,459;Q2;56;636;478;30812;1521;475;3,12;48,45;28,12;4;Netherlands;Western Europe;"Springer Netherlands";"1993-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Computer Science Applications (Q3)";"Computer Science; Economics, Econometrics and Finance" +12809;19700175205;"European Annals of Otorhinolaryngology, Head and Neck Diseases";journal;"18797296, 1879730X";"Elsevier Masson s.r.l.";Yes;No;0,459;Q2;51;91;268;1675;292;188;1,13;18,41;29,91;0;France;Western Europe;"Elsevier Masson s.r.l.";"2010-2026";"Otorhinolaryngology (Q2); Surgery (Q2)";"Medicine" +12810;19700186912;"Geomechanics and Engineering";journal;"20926219, 2005307X";"Techno-Press";No;No;0,459;Q2;57;161;591;6676;1295;586;2,31;41,47;25,87;0;South Korea;Asiatic Region;"Techno-Press";"2009-2026";"Civil and Structural Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +12811;21101064316;"Geoscience Communication";journal;"25697102, 25697110";"Copernicus Publications";Yes;Yes;0,459;Q2;17;23;61;1461;137;61;2,00;63,52;47,62;0;Germany;Western Europe;"Copernicus Publications";"2018-2026";"Communication (Q2); Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences; Social Sciences" +12812;21101042017;"Instruments";journal;"2410390X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,459;Q2;22;34;189;1524;247;187;1,32;44,82;27,98;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2026";"Instrumentation (Q2)";"Physics and Astronomy" +12813;23230;"International Journal of Algebra and Computation";journal;"02181967, 17936500";"World Scientific Publishing Co. Pte Ltd";No;No;0,459;Q2;38;52;191;1233;112;191;0,55;23,71;22,34;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1996-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12814;21100448564;"Journal of Islamic Accounting and Business Research";journal;"17590817, 17590825";"Emerald Group Publishing Ltd.";No;No;0,459;Q2;42;240;291;18207;1497;289;5,39;75,86;35,54;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2026";"Business and International Management (Q2); Strategy and Management (Q2); Accounting (Q3)";"Business, Management and Accounting" +12815;110152;"Optik";journal;"00304026, 16181336";"Elsevier GmbH";No;No;0,459;Q2;121;269;3056;11844;9838;3050;3,64;44,03;26,61;0;Germany;Western Europe;"Elsevier GmbH";"1946, 1968-1988, 1993-2026";"Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)";"Engineering; Materials Science; Physics and Astronomy" +12816;19700173163;"Pediatric Endocrinology, Diabetes and Metabolism";journal;"2081237X, 20838441";"Termedia Publishing House Ltd.";Yes;No;0,459;Q2;21;34;115;355;157;104;1,48;10,44;65,19;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2007-2025";"Pediatrics, Perinatology and Child Health (Q2); Endocrinology, Diabetes and Metabolism (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +12817;17600155205;"Revista de la Construccion";journal;"0718915X, 07177925";"Pontificia Universidad Catolica de Chile, Escuela de Construccion Civil";Yes;Yes;0,459;Q2;23;36;133;1703;318;133;2,30;47,31;18,18;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile, Escuela de Construccion Civil";"2008-2025";"Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Engineering" +12818;21100932758;"Women's Reproductive Health";journal;"23293713, 23293691";"Taylor and Francis Ltd.";No;No;0,459;Q2;14;106;108;6154;194;100;1,67;58,06;80,29;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014, 2019-2026";"Maternity and Midwifery (Q2); Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine; Nursing" +12819;21100987402;"European Journal of Health Psychology";journal;"25128442, 25128450";"Hogrefe-Verlag GmbH and Co. KG";No;No;0,459;Q3;22;18;53;964;95;50;1,18;53,56;48,68;0;Germany;Western Europe;"Hogrefe-Verlag GmbH and Co. KG";"2020-2025";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +12820;21100396385;"Journal of Evidence-Based Psychotherapies";journal;"23600853";"Cluj University Press";No;No;0,459;Q3;24;16;54;1149;70;52;1,33;71,81;54,24;0;Romania;Eastern Europe;"Cluj University Press";"2014-2025";"Clinical Psychology (Q3); Experimental and Cognitive Psychology (Q3)";"Psychology" +12821;20241;"Journal of Virological Methods";journal;"01660934, 18790984";"Elsevier B.V.";No;No;0,459;Q3;123;139;483;4991;883;483;1,74;35,91;48,40;2;Netherlands;Western Europe;"Elsevier B.V.";"1980-2026";"Virology (Q3)";"Immunology and Microbiology" +12822;21101272840;"Obesities";journal;"26734168";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,459;Q3;10;95;97;5588;170;96;1,66;58,82;50,00;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Endocrinology, Diabetes and Metabolism (Q3); Epidemiology (Q3); Psychology (miscellaneous) (Q3)";"Medicine; Psychology" +12823;19700200710;"Pediatric Reports";journal;"2036749X, 20367503";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,459;Q3;28;134;231;6575;464;221;2,10;49,07;59,57;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2025";"Pediatrics (Q3)";"Nursing" +12824;17100154713;"Prion";journal;"19336896, 1933690X";"Landes Bioscience";Yes;No;0,459;Q3;52;11;41;433;77;36;1,82;39,36;32,50;0;United States;Northern America;"Landes Bioscience";"2007-2026";"Biochemistry (Q3); Infectious Diseases (Q3); Cell Biology (Q4); Cellular and Molecular Neuroscience (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +12825;21101121910;"Arkheologiia Evraziiskikh Stepei";journal;"25876112, 26189488";"Academy of Sciences of Tatarstan, A.Kh. Khalikov Archaeology Institute";Yes;Yes;0,458;Q1;7;159;542;4856;103;542;0,16;30,54;40,38;0;Russian Federation;Eastern Europe;"Academy of Sciences of Tatarstan, A.Kh. Khalikov Archaeology Institute";"2019-2025";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +12826;21100922650;"Global Bioethics";journal;"11287462, 15917398";"Routledge";Yes;No;0,458;Q1;17;17;22;663;53;20;2,67;39,00;39,13;0;United States;Northern America;"Routledge";"1996-2009, 2011, 2014-2025";"Philosophy (Q1); Health (social science) (Q2); Health Policy (Q3)";"Arts and Humanities; Medicine; Social Sciences" +12827;27717;"Holistic Nursing Practice";journal;"08879311, 15505138";"Lippincott Williams and Wilkins Ltd.";No;No;0,458;Q1;48;80;209;1966;370;183;1,68;24,58;65,57;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1986-2026";"Advanced and Specialized Nursing (Q1); Complementary and Alternative Medicine (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +12828;5600153382;"Journal of the Economic and Social History of the Orient";journal;"15685209, 00224995";"Brill Academic Publishers";No;No;0,458;Q1;41;30;75;1888;59;75;0,77;62,93;38,24;0;Netherlands;Western Europe;"Brill Academic Publishers";"1957, 1959-1976, 1978-2025";"History (Q1); Economics and Econometrics (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +12829;21100229214;"Malaysian Journal of Learning and Instruction";journal;"21802483, 16758110";"Universiti Utara Malaysia Press";Yes;No;0,458;Q1;25;11;54;758;151;54;2,69;68,91;44,44;0;Malaysia;Asiatic Region;"Universiti Utara Malaysia Press";"2006, 2010, 2012-2025";"Cultural Studies (Q1); Education (Q2); Developmental and Educational Psychology (Q3); Psychology (miscellaneous) (Q3)";"Psychology; Social Sciences" +12830;145432;"Pragmatics";journal;"10182101";"International Pragmatics Association";No;No;0,458;Q1;33;65;76;3255;118;76;1,31;50,08;55,45;0;Belgium;Western Europe;"International Pragmatics Association";"2005-2026";"Linguistics and Language (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +12831;5700162015;"Public Integrity";journal;"15580989, 10999922";"Taylor and Francis Ltd.";No;No;0,458;Q1;35;77;161;4792;347;155;2,13;62,23;34,19;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Law (Q1); Philosophy (Q1); Business and International Management (Q2); Public Administration (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +12832;5700164344;"Youth Justice";journal;"14732254, 17476283";"SAGE Publications Inc.";No;No;0,458;Q1;41;37;69;2068;139;58;2,04;55,89;63,75;3;United States;Northern America;"SAGE Publications Inc.";"2001-2026";"Law (Q1); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +12833;26435;"Beton- und Stahlbetonbau";journal;"14371006, 00059900";"Wiley-Blackwell";No;No;0,458;Q2;34;106;310;2294;305;259;0,99;21,64;15,52;0;United States;Northern America;"Wiley-Blackwell";"1969-2026";"Building and Construction (Q2)";"Engineering" +12834;12300154710;"Economic and Labour Relations Review";journal;"10353046, 18382673";"Cambridge University Press";No;No;0,458;Q2;33;47;158;2976;276;139;1,58;63,32;61,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1990-2026";"Economics and Econometrics (Q2); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +12835;19900192450;"Filomat";journal;"03545180, 24060933";"University of Nis";Yes;No;0,458;Q2;55;851;2115;22972;2314;2115;1,12;26,99;32,55;0;Serbia;Eastern Europe;"University of Nis";"2010-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12836;21101061454;"Fractional Differential Calculus";journal;"18479677";"Element D.O.O.";No;No;0,458;Q2;9;20;47;565;67;47;1,36;28,25;32,26;0;Croatia;Eastern Europe;"Element D.O.O.";"2019-2025";"Analysis (Q2); Applied Mathematics (Q2)";"Mathematics" +12837;21100899009;"International Journal of Educational Psychology";journal;"20143591";"Hipatia Editorial";Yes;No;0,458;Q2;15;11;37;638;72;37;1,83;58,00;52,50;0;Spain;Western Europe;"Hipatia Editorial";"2018-2025";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +12838;21100226810;"Journal of Hohai University (Natural Sciences)";journal;"10001980";"Editorial Board of Journal of Hohai University (Natural Sciences)";No;No;0,458;Q2;21;101;289;3059;591;289;2,25;30,29;32,42;0;China;Asiatic Region;"Editorial Board of Journal of Hohai University (Natural Sciences)";"2012-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science" +12839;5200152802;"Mathematical Biosciences and Engineering";journal;"15471063, 15510018";"American Institute of Mathematical Sciences";Yes;No;0,458;Q2;68;119;1951;5635;4538;1944;2,31;47,35;35,73;0;United States;Northern America;"American Institute of Mathematical Sciences";"2004-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Applied Mathematics (Q2); Computational Mathematics (Q2); Modeling and Simulation (Q2); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Mathematics; Medicine" +12840;22989;"Parasite Immunology";journal;"01419838, 13653024";"Wiley-Blackwell Publishing Ltd";No;No;0,458;Q2;87;42;139;2252;237;135;1,53;53,62;46,49;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1979-2026";"Parasitology (Q2); Immunology (Q3)";"Immunology and Microbiology" +12841;13097;"South African Geographical Journal";journal;"03736245, 21512418";"Routledge";No;No;0,458;Q2;36;45;82;2515;174;82;2,06;55,89;50,00;0;United Kingdom;Western Europe;"Routledge";"1931-1932, 1934-1936, 1938-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +12842;21100267005;"Advances in Science and Technology of Water Resources";journal;"10067647";"Editorial Board of Journal of Hohai University (Natural Sciences)";No;No;0,458;Q3;20;90;292;3242;538;292;2,23;36,02;33,25;0;China;Asiatic Region;"Editorial Board of Journal of Hohai University (Natural Sciences)";"2013-2025";"Water Science and Technology (Q3)";"Environmental Science" +12843;21101162977;"Hepatology Forum";journal;"13075888, 27577392";"Kare Publishing";No;No;0,458;Q3;13;39;98;1228;186;85;1,97;31,49;42,01;0;Turkey;Middle East;"Kare Publishing";"2020-2026";"Gastroenterology (Q3); Hepatology (Q3)";"Medicine" +12844;21100388411;"Hormone Molecular Biology and Clinical Investigation";journal;"18681883, 18681891";"Walter de Gruyter GmbH";No;No;0,458;Q3;48;26;137;1177;223;133;1,79;45,27;50,63;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2010-2026";"Endocrinology, Diabetes and Metabolism (Q3); Medicine (miscellaneous) (Q3); Endocrinology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12845;25223;"Toxicology and Industrial Health";journal;"07482337, 14770393";"SAGE Publications Ltd";No;No;0,458;Q3;74;50;193;2231;413;190;1,91;44,62;51,71;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1985-2026";"Health, Toxicology and Mutagenesis (Q3); Public Health, Environmental and Occupational Health (Q3); Toxicology (Q3)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +12846;21101233878;"Conference Record - Industrial and Commercial Power Systems Technical Conference";conference and proceedings;"21584907, 21584893";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,458;-;8;58;75;1712;168;74;2,24;29,52;25,79;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2006, 2021, 2024-2025";"Engineering (miscellaneous)";"Engineering" +12847;21101101248;"Economic Anthropology";journal;"23304847";"John Wiley and Sons Inc";No;No;0,457;Q1;24;30;80;1446;96;70;1,16;48,20;68,00;1;United States;Northern America;"John Wiley and Sons Inc";"2014-2026";"Anthropology (Q1); Economics and Econometrics (Q2)";"Economics, Econometrics and Finance; Social Sciences" +12848;22431;"Journal of East Asian Linguistics";journal;"15728560, 09258558";"Springer Netherlands";No;No;0,457;Q1;39;22;51;1274;56;48;1,09;57,91;32,26;0;Netherlands;Western Europe;"Springer Netherlands";"1992-2026";"History and Philosophy of Science (Q1); Linguistics and Language (Q1)";"Arts and Humanities; Social Sciences" +12849;28982;"Anti-Corrosion Methods and Materials";journal;"00035599";"Emerald Publishing";No;No;0,457;Q2;41;141;210;5948;641;210;3,40;42,18;31,21;0;United Kingdom;Western Europe;"Emerald Publishing";"1954-2026";"Chemical Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)";"Chemical Engineering; Materials Science" +12850;21100858472;"ASCE-ASME Journal of Risk and Uncertainty in Engineering Systems, Part B: Mechanical Engineering";journal;"23329025, 23329017";"The American Society of Mechanical Engineers(ASME)";No;No;0,457;Q2;27;32;118;1503;300;109;1,74;46,97;20,43;0;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"2015-2026";"Mechanical Engineering (Q2); Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering; Social Sciences" +12851;21100808899;"Biodiversity Data Journal";journal;"13142828, 13142836";"Pensoft Publishers";Yes;No;0,457;Q2;39;302;811;12534;1215;807;1,43;41,50;34,37;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2013-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Animal Science and Zoology (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12852;52142;"Brazilian Oral Research";journal;"18073107, 18068324";"Sociedade Brasileira de Hematologia e Hemoterapia";Yes;Yes;0,457;Q2;67;127;413;4343;673;412;1,45;34,20;58,25;0;Brazil;Latin America;"Sociedade Brasileira de Hematologia e Hemoterapia";"2001-2025";"Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Dentistry; Medicine" +12853;97382;"Jiaotong Yunshu Gongcheng Xuebao/Journal of Traffic and Transportation Engineering";journal;"16711637";"Chang'an University";Yes;No;0,457;Q2;36;143;369;6077;842;369;2,42;42,50;26,71;0;China;Asiatic Region;"Chang'an University";"2004-2025";"Automotive Engineering (Q2); Civil and Structural Engineering (Q2)";"Engineering" +12854;21100207619;"Journal of Clinical and Experimental Dentistry";journal;"19895488";"Medicina Oral S.L.";Yes;No;0,457;Q2;49;203;491;5521;899;491;1,66;27,20;42,62;0;Spain;Western Europe;"Medicina Oral S.L.";"2010-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +12855;21101295952;"Journal of Edge Computing";journal;"2837181X";"Academy of Cognitive and Natural Sciences";Yes;No;0,457;Q2;9;11;28;552;91;27;3,57;50,18;23,08;0;Ukraine;Eastern Europe;"Academy of Cognitive and Natural Sciences";"2022-2025";"Computer Networks and Communications (Q2); Computer Science (miscellaneous) (Q2); Hardware and Architecture (Q2); Artificial Intelligence (Q3)";"Computer Science" +12856;15900;"Journal of Extra-Corporeal Technology";journal;"00221058, 29698960";"EDP Sciences";Yes;No;0,457;Q2;45;56;117;949;172;94;1,29;16,95;34,09;0;France;Western Europe;"EDP Sciences";"1966, 1974-2025";"Health Professions (miscellaneous) (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine" +12857;21100872821;"Journal of Orthodontic Science";journal;"22780203, 22781897";"Wolters Kluwer Medknow Publications";Yes;No;0,457;Q2;24;56;184;1779;352;184;1,82;31,77;39,77;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2012-2025";"Orthodontics (Q2)";"Dentistry" +12858;21100448929;"Nankai Business Review International";journal;"20408757, 20408749";"Emerald Group Publishing Ltd.";No;No;0,457;Q2;27;35;92;2592;267;91;2,94;74,06;45,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2026";"Business and International Management (Q2); Strategy and Management (Q2)";"Business, Management and Accounting" +12859;21101087140;"Nano Express";journal;"2632959X";"Institute of Physics";Yes;No;0,457;Q2;31;76;199;5378;548;199;2,93;70,76;32,21;0;United Kingdom;Western Europe;"Institute of Physics";"2020-2026";"Materials Science (miscellaneous) (Q2); Polymers and Plastics (Q2); Biomaterials (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science" +12860;4700151602;"Palaeoworld";journal;"1871174X";"Elsevier B.V.";No;No;0,457;Q2;41;119;232;8535;327;229;1,38;71,72;34,65;0;Netherlands;Western Europe;"Elsevier B.V.";"2006-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Paleontology (Q2); Stratigraphy (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +12861;22273;"Peace Economics, Peace Science and Public Policy";journal;"15548597, 10792457";"Walter de Gruyter GmbH";No;No;0,457;Q2;23;20;53;1010;122;49;2,24;50,50;31,71;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1994-1996, 1999-2026";"Economics and Econometrics (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2); Management, Monitoring, Policy and Law (Q3)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +12862;20971;"Proceedings of the Institution of Mechanical Engineers, Part L: Journal of Materials: Design and Applications";journal;"20413076, 14644207";"SAGE Publications Ltd";No;No;0,457;Q2;55;241;540;11814;1629;535;3,15;49,02;17,25;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1999-2026";"Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)";"Engineering; Materials Science" +12863;25749;"Environmental Engineering Science";journal;"15579018, 10928758";"Mary Ann Liebert Inc.";No;No;0,457;Q3;81;55;219;2664;422;207;1,79;48,44;36,32;0;United States;Northern America;"Mary Ann Liebert Inc.";"1997-2026";"Environmental Chemistry (Q3); Pollution (Q3); Waste Management and Disposal (Q3)";"Environmental Science" +12864;21100855885;"Gynecologic Oncology Reports";journal;"23525789";"Elsevier B.V.";Yes;No;0,457;Q3;32;236;586;5189;810;562;1,28;21,99;57,93;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Obstetrics and Gynecology (Q3); Oncology (Q3)";"Medicine" +12865;19700201639;"International Journal of Rheumatology";journal;"16879260, 16879279";"John Wiley and Sons Ltd";Yes;No;0,457;Q3;44;0;21;0;42;21;2,25;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2010-2024";"Immunology (Q3); Rheumatology (Q3)";"Immunology and Microbiology; Medicine" +12866;21100842667;"Wellcome Open Research";journal;"2398502X";"F1000 Research Ltd";Yes;No;0,457;Q3;59;457;1178;20039;2098;1097;1,74;43,85;46,50;0;United Kingdom;Western Europe;"F1000 Research Ltd";"2016-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12867;5700153334;"Changing English: Studies in Culture and Education";journal;"1358684X, 14693585";"Routledge";No;No;0,456;Q1;25;46;108;1233;158;96;1,69;26,80;42,62;0;United Kingdom;Western Europe;"Routledge";"1994-2026";"Cultural Studies (Q1); Education (Q2)";"Social Sciences" +12868;21100889419;"Annals of Actuarial Science";journal;"17484995, 17485002";"Cambridge University Press";No;No;0,456;Q2;21;39;83;1502;101;74;1,20;38,51;18,89;0;United Kingdom;Western Europe;"Cambridge University Press";"2010-2026";"Economics and Econometrics (Q2); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +12869;11300153311;"Arthropod-Plant Interactions";journal;"18728847, 18728855";"Springer Science and Business Media B.V.";No;No;0,456;Q2;49;102;232;7317;422;229;1,78;71,74;37,85;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2007-2026";"Agronomy and Crop Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12870;17700155817;"Australasian Journal of Combinatorics";journal;"10344942, 22023518";"University of Queensland Press";Yes;Yes;0,456;Q2;38;68;216;1226;107;214;0,53;18,03;28,00;0;Australia;Pacific Region;"University of Queensland Press";"1996-2026";"Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +12871;17676;"Australian Veterinary Journal";journal;"17510813, 00050423";"Wiley-Blackwell";No;No;0,456;Q2;74;122;212;4068;385;208;1,76;33,34;51,07;0;United States;Northern America;"Wiley-Blackwell";"1925-2026";"Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +12872;21100211117;"Communications in Applied Mathematics and Computational Science";journal;"15593940, 21575452";"Mathematical Sciences Publishers";No;No;0,456;Q2;28;9;15;285;23;15;0,82;31,67;15,00;0;United States;Northern America;"Mathematical Sciences Publishers";"2006-2025";"Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q3)";"Computer Science; Mathematics" +12873;21100199814;"Cybernetics and Information Technologies";journal;"13119702, 13144081";"Institute of Information and Communication Technologies, Bulgarian Academy of Sciences";Yes;Yes;0,456;Q2;27;42;119;1666;339;119;3,49;39,67;37,62;0;Bulgaria;Eastern Europe;"Institute of Information and Communication Technologies, Bulgarian Academy of Sciences";"2011-2025";"Computer Science (miscellaneous) (Q2)";"Computer Science" +12874;21101306831;"Distributed Ledger Technologies";journal;"27696480";"Association for Computing Machinery";No;No;0,456;Q2;11;46;69;2708;214;65;3,19;58,87;21,25;0;United States;Northern America;"Association for Computing Machinery";"2022-2026";"Information Systems (Q2); Management Information Systems (Q2); Computer Science Applications (Q3)";"Business, Management and Accounting; Computer Science" +12875;15420;"Electronic Library";journal;"02640473";"Emerald Group Publishing Ltd.";No;No;0,456;Q2;53;64;132;3503;384;128;3,16;54,73;42,01;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1983-2026";"Library and Information Sciences (Q2); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +12876;5300152724;"IET Systems Biology";journal;"17518857, 17518849";"John Wiley & Sons Inc.";Yes;No;0,456;Q2;56;52;69;2851;147;69;1,87;54,83;39,45;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2007-2026";"Modeling and Simulation (Q2); Biotechnology (Q3); Genetics (Q3); Cell Biology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Mathematics" +12877;19700187807;"Information Security Journal";journal;"19393555, 19393547";"Taylor and Francis Ltd.";No;No;0,456;Q2;37;63;105;3238;342;105;3,00;51,40;32,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Information Systems and Management (Q2); Computer Science Applications (Q3); Software (Q3)";"Computer Science; Decision Sciences" +12878;21907;"Journal of Anaesthesiology Clinical Pharmacology";journal;"09709185, 22312730";"Wolters Kluwer Medknow Publications";Yes;Yes;0,456;Q2;52;154;514;2525;485;280;0,98;16,40;46,17;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1996-1999, 2002-2026";"Anesthesiology and Pain Medicine (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +12879;21100446524;"Journal of Entrepreneurship and Public Policy";journal;"20452101, 2045211X";"Emerald Group Publishing Ltd.";No;No;0,456;Q2;25;73;65;5788;224;63;4,02;79,29;39,38;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2012-2026";"Business and International Management (Q2); Strategy and Management (Q2); Urban Studies (Q2)";"Business, Management and Accounting; Social Sciences" +12880;21100450131;"Journal of Technology and Science Education";journal;"20145349, 20136374";"OmniaScience";Yes;No;0,456;Q2;27;51;170;2640;482;169;2,84;51,76;46,91;0;Spain;Western Europe;"OmniaScience";"2014-2026";"Education (Q2); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +12881;21100285052;"Journal of the American Association of Nurse Practitioners";journal;"23276886, 23276924";"Wolters Kluwer Health";No;No;0,456;Q2;38;109;480;2154;658;442;1,11;19,76;78,45;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2013-2026";"Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +12882;21744;"Planta Medica";journal;"14390221, 00320943";"Georg Thieme Verlag";No;No;0,456;Q2;145;80;323;5849;799;317;2,26;73,11;42,76;0;Germany;Western Europe;"Georg Thieme Verlag";"1961, 1965-2026";"Complementary and Alternative Medicine (Q2); Organic Chemistry (Q2); Pharmaceutical Science (Q2); Analytical Chemistry (Q3); Drug Discovery (Q3); Molecular Medicine (Q3); Pharmacology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +12883;21100825516;"Random Matrices: Theory and Application";journal;"20103263, 20103271";"World Scientific";No;No;0,456;Q2;23;26;90;799;72;90;0,88;30,73;22,45;0;Singapore;Asiatic Region;"World Scientific";"2012-2026";"Algebra and Number Theory (Q2); Discrete Mathematics and Combinatorics (Q2); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +12884;29886;"Solid State Communications";journal;"00381098";"Elsevier Ltd";No;No;0,456;Q2;149;408;839;19662;2469;838;3,04;48,19;27,60;0;United Kingdom;Western Europe;"Elsevier Ltd";"1963-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Chemistry (Q2)";"Chemistry; Materials Science; Physics and Astronomy" +12885;27970;"ZAMM Zeitschrift fur Angewandte Mathematik und Mechanik";journal;"00442267, 15214001";"Wiley-VCH Verlag";No;No;0,456;Q2;64;436;816;18393;2891;811;3,99;42,19;24,79;0;Germany;Western Europe;"Wiley-VCH Verlag";"1921-1944, 1947-2026";"Applied Mathematics (Q2); Computational Mechanics (Q2)";"Engineering; Mathematics" +12886;29702;"Clinical Physiology and Functional Imaging";journal;"1475097X, 14750961";"Wiley-Blackwell Publishing Ltd";No;No;0,456;Q3;81;65;153;2357;269;152;1,80;36,26;35,63;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2002-2026";"Medicine (miscellaneous) (Q3); Physiology (Q3); Physiology (medical) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12887;21100831409;"Couple and Family Psychology: Research and Practice";journal;"21604096, 2160410X";"American Psychological Association";No;No;0,456;Q3;21;29;49;1523;82;47;1,05;52,52;76,34;0;United States;Northern America;"American Psychological Association";"2016-2025";"Clinical Psychology (Q3); Social Psychology (Q3)";"Psychology" +12888;19700177504;"Diabetology International";journal;"21901686, 21901678";"Springer";No;No;0,456;Q3;30;91;236;3738;353;232;1,16;41,08;26,84;0;Japan;Asiatic Region;"Springer";"2010-2026";"Endocrinology, Diabetes and Metabolism (Q3); Internal Medicine (Q3)";"Medicine" +12889;12742;"Ginekologia Polska";journal;"00170011, 25436767";"Via Medica";Yes;No;0,456;Q3;36;155;481;3481;660;466;1,35;22,46;54,71;0;Poland;Eastern Europe;"Via Medica";"1948, 1953-1989, 1992-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +12890;13972;"Psychological Studies";journal;"00332968, 09749861";"Springer International Publishing AG";No;No;0,456;Q3;26;60;163;3816;292;159;1,28;63,60;51,46;0;India;Asiatic Region;"Springer International Publishing AG";"1971, 1980, 1992, 2009, 2014-2026";"Medicine (miscellaneous) (Q3); Psychology (miscellaneous) (Q3)";"Medicine; Psychology" +12891;16200154714;"American Journal of Archaeology";journal;"1939828X, 00029114";"University of Chicago Press";No;No;0,455;Q1;45;28;80;2239;81;72;0,96;79,96;38,64;0;United States;Northern America;"University of Chicago Press";"2002-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +12892;21101047935;"Hasanuddin Law Review";journal;"24429880, 24429899";"Faculty of Law, Universitas Hasanuddin";Yes;Yes;0,455;Q1;11;15;60;578;115;60;2,28;38,53;38,24;0;Indonesia;Asiatic Region;"Faculty of Law, Universitas Hasanuddin";"2017-2025";"Law (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12893;25620;"Journal of Logic and Computation";journal;"0955792X, 1465363X";"Oxford University Press";No;No;0,455;Q1;59;151;204;4499;202;197;0,97;29,79;19,93;0;United Kingdom;Western Europe;"Oxford University Press";"1990-2026";"Arts and Humanities (miscellaneous) (Q1); Hardware and Architecture (Q2); Logic (Q2); Software (Q3); Theoretical Computer Science (Q3)";"Arts and Humanities; Computer Science; Mathematics" +12894;23953;"Rural History: Economy, Society, Culture";journal;"09567933, 14740656";"Cambridge University Press";No;No;0,455;Q1;23;27;61;3000;49;61;0,89;111,11;29,17;0;United Kingdom;Western Europe;"Cambridge University Press";"1990-2026";"Arts and Humanities (miscellaneous) (Q1); History (Q1); Geography, Planning and Development (Q2); Urban Studies (Q2)";"Arts and Humanities; Social Sciences" +12895;21101137854;"HRB Open Research";journal;"25154826";"F1000 Research Ltd";Yes;No;0,455;Q2;15;55;155;2276;210;153;1,05;41,38;67,02;1;United Kingdom;Western Europe;"F1000 Research Ltd";"2018-2026";"Health Professions (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine" +12896;15484;"International Journal of Computers and Applications";journal;"1206212X, 19257074";"Taylor and Francis Ltd.";No;No;0,455;Q2;30;73;262;3834;782;256;2,25;52,52;31,46;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Computer Graphics and Computer-Aided Design (Q2); Hardware and Architecture (Q2); Computer Science Applications (Q3); Software (Q3)";"Computer Science" +12897;21100832752;"Journal of International Arbitration";journal;"2212182X, 02558106";"Kluwer Law International";No;No;0,455;Q2;9;32;97;2665;76;97;0,67;83,28;25,00;0;Netherlands;Western Europe;"Kluwer Law International";"2017-2026";"Law (Q2)";"Social Sciences" +12898;18807;"Onderstepoort Journal of Veterinary Research";journal;"22190635, 00302465";"AOSIS (Pty) Ltd";Yes;No;0,455;Q2;45;11;43;419;87;42;1,47;38,09;44,44;0;South Africa;Africa;"AOSIS (Pty) Ltd";"1965-2026";"Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +12899;21492;"Research on Chemical Intermediates";journal;"09226168, 15685675";"Springer Netherlands";No;No;0,455;Q2;78;356;843;19972;2838;843;3,48;56,10;36,73;0;Netherlands;Western Europe;"Springer Netherlands";"1984-2026";"Chemistry (miscellaneous) (Q2)";"Chemistry" +12900;20013;"Software Quality Journal";journal;"09639314, 15731367";"Springer New York";No;No;0,455;Q2;55;35;139;1835;421;134;3,15;52,43;31,13;0;United States;Northern America;"Springer New York";"1992-1999, 2001-2026";"Media Technology (Q2); Safety, Risk, Reliability and Quality (Q2); Software (Q3)";"Computer Science; Engineering" +12901;21100396116;"Cerebrovascular Diseases Extra";journal;"16645456";"S. Karger AG";Yes;No;0,455;Q3;25;25;61;722;147;59;1,91;28,88;34,81;0;Switzerland;Western Europe;"S. Karger AG";"2015-2026";"Cardiology and Cardiovascular Medicine (Q3); Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +12902;21101145558;"Consortium Psychiatricum";journal;"27132919, 27127672";"Eco-Vector LLC";Yes;Yes;0,455;Q3;11;12;100;456;172;93;2,05;38,00;58,18;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2020-2025";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Psychology" +12903;23097;"Coronary Artery Disease";journal;"09546928, 14735830";"Lippincott Williams and Wilkins";No;No;0,455;Q3;71;167;367;3174;530;301;1,75;19,01;24,86;0;United States;Northern America;"Lippincott Williams and Wilkins";"1990-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +12904;21101041408;"Evolutionary Psychological Science";journal;"21989885";"Springer Nature";No;No;0,455;Q3;26;36;111;2401;166;111;1,16;66,69;42,35;0;Switzerland;Western Europe;"Springer Nature";"2015-2026";"Social Psychology (Q3)";"Psychology" +12905;21101058282;"Hepatoma Research";journal;"24542520, 23945079";"OAE Publishing Inc.";No;No;0,455;Q3;19;27;145;2378;231;125;1,40;88,07;38,81;0;United States;Northern America;"OAE Publishing Inc.";"2019-2025";"Hepatology (Q3); Oncology (Q3)";"Medicine" +12906;23758;"International Angiology";journal;"03929590, 18271839";"Edizioni Minerva Medica S.p.A.";No;No;0,455;Q3;67;55;185;2272;290;177;1,56;41,31;30,30;0;Italy;Western Europe;"Edizioni Minerva Medica S.p.A.";"1984-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +12907;30413;"Journal of the Chinese Medical Association";journal;"17264901, 17287731";"Wolters Kluwer Health";Yes;No;0,455;Q3;58;139;557;3749;991;473;1,99;26,97;39,47;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2003-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +12908;30058;"History of Education";journal;"14645130, 0046760X";"Routledge";No;No;0,454;Q1;27;39;144;2207;146;135;1,15;56,59;45,61;0;United Kingdom;Western Europe;"Routledge";"1972-1997, 1999-2001, 2005-2026";"History and Philosophy of Science (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +12909;23528;"Presidential Studies Quarterly";journal;"17415705, 03604918";"John Wiley and Sons Inc";No;No;0,454;Q1;42;18;98;1303;98;95;0,98;72,39;25,00;1;United States;Northern America;"John Wiley and Sons Inc";"1983, 1985, 1988, 1999-2026";"History (Q1); Public Administration (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +12910;145648;"Refuge";journal;"19207336, 02295113";"York University Libraries";Yes;Yes;0,454;Q1;37;8;69;563;70;61;0,93;70,38;73,68;0;Canada;Northern America;"York University Libraries";"1996-2025";"Cultural Studies (Q1); Demography (Q2); Geography, Planning and Development (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12911;19700183077;"Research in Dance Education";journal;"14701111, 14647893";"Taylor and Francis Ltd.";No;No;0,454;Q1;25;126;133;5276;209;118;1,32;41,87;59,29;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Visual Arts and Performing Arts (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +12912;21100945165;"Acta Informatica Pragensia";journal;"18054951";"";Yes;Yes;0,454;Q2;12;30;79;1712;219;75;3,15;57,07;39,24;0;Czech Republic;Eastern Europe;"";"2019-2025";"Information Systems (Q2); Library and Information Sciences (Q2); Management Information Systems (Q2); Computer Science Applications (Q3)";"Business, Management and Accounting; Computer Science; Social Sciences" +12913;21100780696;"Big Data";journal;"21676461, 2167647X";"Mary Ann Liebert Inc.";No;No;0,454;Q2;47;37;118;1818;330;111;2,59;49,14;37,90;0;United States;Northern America;"Mary Ann Liebert Inc.";"2013-2026";"Information Systems (Q2); Information Systems and Management (Q2); Computer Science Applications (Q3)";"Computer Science; Decision Sciences" +12914;65749;"Boletin de la Sociedad Matematica Mexicana";journal;"1405213X, 22964495";"Springer International Publishing";No;No;0,454;Q2;23;148;282;3813;276;282;0,97;25,76;20,56;0;Switzerland;Western Europe;"Springer International Publishing";"1996-2009, 2011-2012, 2015-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12915;17948;"Dendrobiology";journal;"20838387, 16411307";"Polska Akademia Nauk";Yes;No;0,454;Q2;27;23;60;1908;104;60;1,74;82,96;36,70;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2000-2001, 2004-2025";"Forestry (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +12916;21100329547;"International Journal of Group Theory";journal;"22517669, 22517650";"University of Isfahan";Yes;Yes;0,454;Q2;13;23;65;538;62;63;0,34;23,39;24,39;0;Iran;Middle East;"University of Isfahan";"2012-2026";"Algebra and Number Theory (Q2)";"Mathematics" +12917;130102;"Irrigation and Drainage";journal;"15310353, 15310361";"John Wiley and Sons Ltd";No;No;0,454;Q2;55;189;347;8591;864;332;2,28;45,46;24,03;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2001-2026";"Agronomy and Crop Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences" +12918;21101209166;"Jambura Law Review";journal;"26549255, 26560461";"Universitas Negeri Gorontalo";No;No;0,454;Q2;10;26;59;1378;130;59;3,08;53,00;36,54;0;Indonesia;Asiatic Region;"Universitas Negeri Gorontalo";"2020-2025";"Law (Q2)";"Social Sciences" +12919;21101270640;"Journal of Electric Power Science and Technology";journal;"16739140";"";No;No;0,454;Q2;19;172;483;5187;1140;483;2,80;30,16;31,46;0;China;Asiatic Region;"";"2020-2025";"Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2)";"Energy; Engineering" +12920;20983;"Journal of Micromechanics and Microengineering";journal;"13616439, 09601317";"IOP Publishing Ltd.";No;No;0,454;Q2;151;134;419;5748;1107;416;2,55;42,90;23,22;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1991-2025";"Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Electronic, Optical and Magnetic Materials (Q3); Nanoscience and Nanotechnology (Q3)";"Engineering; Materials Science" +12921;19700170495;"LIBER Quarterly";journal;"14355205";"";Yes;Yes;0,454;Q2;23;13;33;405;68;33;1,30;31,15;55,32;0;Netherlands;Western Europe;"";"1999-2026";"Library and Information Sciences (Q2)";"Social Sciences" +12922;21100464772;"Network Science";journal;"20501250, 20501242";"Cambridge University Press";No;No;0,454;Q2;29;22;72;1363;117;70;1,71;61,95;23,33;0;United Kingdom;Western Europe;"Cambridge University Press";"2013-2026";"Communication (Q2); Sociology and Political Science (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +12923;21101202111;"Organics";journal;"2673401X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,454;Q2;16;54;107;3417;292;105;3,00;63,28;41,70;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Organic Chemistry (Q2)";"Chemistry" +12924;12982;"Prosthetics and Orthotics International";journal;"17461553, 03093646";"Wolters Kluwer Health";No;No;0,454;Q2;68;117;290;3746;476;276;1,59;32,02;46,56;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1977-2026";"Health Professions (miscellaneous) (Q2); Rehabilitation (Q2); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine" +12925;18800156731;"RELIEVE - Revista Electronica de Investigacion y Evaluacion Educativa";journal;"11344032";"Universidad de Granada";Yes;Yes;0,454;Q2;28;19;56;1084;121;56;2,40;57,05;47,30;0;Spain;Western Europe;"Universidad de Granada";"2001-2025";"Education (Q2)";"Social Sciences" +12926;21100821131;"Review of Behavioral Finance";journal;"19405987, 19405979";"Emerald Group Publishing Ltd.";No;No;0,454;Q2;31;55;155;2883;538;153;3,14;52,42;29,20;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2026";"Finance (Q2); Accounting (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +12927;24511;"Surface and Interface Analysis";journal;"01422421, 10969918";"John Wiley and Sons Ltd";No;No;0,454;Q2;106;93;307;3704;649;294;2,38;39,83;27,36;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1979-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Chemistry (Q2); Surfaces, Coatings and Films (Q2); Surfaces and Interfaces (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +12928;21100781742;"Veterinary Parasitology: Regional Studies and Reports";journal;"24059390";"Elsevier B.V.";No;No;0,454;Q2;29;218;432;9192;786;432;1,82;42,17;42,32;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Parasitology (Q2); Veterinary (miscellaneous) (Q2)";"Immunology and Microbiology; Veterinary" +12929;20179;"Allergologia et Immunopathologia";journal;"15781267, 03010546";"Codon Publications";No;No;0,454;Q3;48;143;348;4760;780;341;2,01;33,29;57,68;0;Singapore;Asiatic Region;"Codon Publications";"1973-2026";"Immunology (Q3); Immunology and Allergy (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)";"Immunology and Microbiology; Medicine" +12930;21101154149;"Journal of Asian Energy Studies";journal;"25241222";"Hong Kong Baptist University";No;No;0,454;Q3;8;15;25;925;55;25;2,20;61,67;30,77;1;Hong Kong;Asiatic Region;"Hong Kong Baptist University";"2019-2026";"Energy (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +12931;15949;"Journal of Medical and Biological Engineering";journal;"16090985, 21994757";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,454;Q3;55;82;246;2889;579;245;2,43;35,23;35,09;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2001-2026";"Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)";"Engineering; Medicine" +12932;14801;"Sexual and Relationship Therapy";journal;"14681749, 14681994";"Routledge";No;No;0,454;Q3;57;69;180;3811;336;165;2,01;55,23;64,68;1;United Kingdom;Western Europe;"Routledge";"2000-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +12933;21101194144;"Digital Translation: International Journal of Translation and Localization";journal;"29496861, 29496845";"John Benjamins Publishing Company";No;No;0,453;Q1;8;8;31;368;36;29;1,32;46,00;71,43;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2023-2026";"Linguistics and Language (Q1); Communication (Q2); Software (Q3)";"Computer Science; Social Sciences" +12934;25329;"Canadian Mathematical Bulletin";journal;"14964287, 00084395";"Canadian Mathematical Society";No;No;0,453;Q2;35;138;280;2893;168;280;0,51;20,96;21,70;0;Canada;Northern America;"Canadian Mathematical Society";"1968-1969, 1971-1973, 1979, 1984, 1988, 1996-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12935;21100886534;"International Journal of Political Economy";journal;"15580970, 08911916";"Routledge";No;No;0,453;Q2;33;28;68;1636;93;64;1,30;58,43;16,22;1;United Kingdom;Western Europe;"Routledge";"1996-2004, 2006-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +12936;25798;"International Journal of Politics, Culture and Society";journal;"15733416, 08914486";"Human Sciences Press";No;No;0,453;Q2;38;70;93;5186;173;84;1,87;74,09;40,00;1;United States;Northern America;"Human Sciences Press";"1987-2005, 2008-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12937;21100899643;"Journal of Computational Physics: X";journal;"25900552";"Academic Press Inc.";Yes;No;0,453;Q2;19;0;19;0;35;19;1,71;0,00;0,00;0;United States;Northern America;"Academic Press Inc.";"2019-2023";"Physics and Astronomy (miscellaneous) (Q2); Computer Science Applications (Q3)";"Computer Science; Physics and Astronomy" +12938;27848;"Marine Geophysical Research";journal;"15730581, 00253235";"Springer Science and Business Media B.V.";No;No;0,453;Q2;62;36;95;1737;218;95;2,45;48,25;28,15;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1970-1998, 2000-2026";"Geochemistry and Petrology (Q2); Geophysics (Q2); Oceanography (Q2)";"Earth and Planetary Sciences" +12939;20406;"Proceedings of the Institution of Mechanical Engineers, Part B: Journal of Engineering Manufacture";journal;"20412975, 09544054";"SAGE Publications Inc.";No;No;0,453;Q2;89;272;532;9618;1487;526;2,81;35,36;25,35;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1983-2026";"Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +12940;4000150504;"Regular and Chaotic Dynamics";journal;"14684845, 15603547";"Pleiades Publishing";No;No;0,453;Q2;44;57;141;2004;141;140;0,93;35,16;30,69;0;United States;Northern America;"Pleiades Publishing";"1998-2026";"Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2); Mechanical Engineering (Q2); Modeling and Simulation (Q2); Mathematical Physics (Q3); Statistical and Nonlinear Physics (Q3)";"Engineering; Mathematics; Physics and Astronomy" +12941;24584;"Zoologischer Anzeiger";journal;"00445231";"Elsevier GmbH";No;No;0,453;Q2;50;104;241;5947;332;239;1,42;57,18;33,68;0;Germany;Western Europe;"Elsevier GmbH";"1961, 1982-1983, 1990-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +12942;19649;"Canadian Journal of Microbiology";journal;"00084166, 14803275";"National Research Council of Canada";No;No;0,453;Q3;114;75;163;4785;351;155;2,36;63,80;45,95;2;Canada;Northern America;"National Research Council of Canada";"1954-1962, 1964-2026";"Applied Microbiology and Biotechnology (Q3); Genetics (Q3); Immunology (Q3); Medicine (miscellaneous) (Q3); Microbiology (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +12943;60803;"Gaceta Sanitaria";journal;"02139111, 15781283";"Ediciones Doyma, S.L.";Yes;Yes;0,453;Q3;54;83;299;1893;360;250;1,09;22,81;63,94;1;Spain;Western Europe;"Ediciones Doyma, S.L.";"1987-2026";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +12944;145054;"International Economics and Economic Policy";journal;"16124804, 16124812";"Springer Verlag";No;No;0,453;Q3;34;65;97;3815;224;96;2,00;58,69;18,11;1;Germany;Western Europe;"Springer Verlag";"2005-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +12945;110245;"Therapeutic Apheresis and Dialysis";journal;"17449987, 17449979";"John Wiley and Sons Inc";No;No;0,453;Q3;65;134;479;3217;596;386;1,18;24,01;36,02;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2003-2026";"Hematology (Q3); Nephrology (Q3)";"Medicine" +12946;15930;"Zeitschrift fur Padagogische Psychologie";journal;"16642910, 10100652";"Hogrefe Publishing GmbH";No;No;0,453;Q3;45;29;63;1460;91;61;1,20;50,34;59,04;4;Switzerland;Western Europe;"Hogrefe Publishing GmbH";"1996-2026";"Developmental and Educational Psychology (Q3)";"Psychology" +12947;21101095939;"Food Ethics";journal;"23646861";"Springer International Publishing AG";No;No;0,452;Q1;17;22;61;1439;163;56;2,49;65,41;40,00;2;Switzerland;Western Europe;"Springer International Publishing AG";"2018-2026";"Philosophy (Q1); Food Science (Q2)";"Agricultural and Biological Sciences; Arts and Humanities" +12948;21101088440;"Investigaciones sobre Lectura";journal;"23408685";"Asociacion Espanola de Comprension Lectora";Yes;Yes;0,452;Q1;9;11;30;566;45;29;1,26;51,45;50,00;0;Spain;Western Europe;"Asociacion Espanola de Comprension Lectora";"2019-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +12949;21101060655;"Isogloss";journal;"23854138";"Universitat Autonoma de Barcelona";Yes;Yes;0,452;Q1;6;57;191;3151;113;184;0,54;55,28;51,64;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2019-2026";"Linguistics and Language (Q1)";"Social Sciences" +12950;24686;"Australian Journal of Earth Sciences";journal;"08120099";"Taylor and Francis Ltd.";No;No;0,452;Q2;91;66;199;5152;272;186;1,37;78,06;24,40;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +12951;14874;"Child's Nervous System";journal;"02567040, 14330350";"Springer Science and Business Media Deutschland GmbH";No;No;0,452;Q2;106;425;1323;12052;1747;1196;1,32;28,36;35,19;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1985-2026";"Pediatrics, Perinatology and Child Health (Q2); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3)";"Medicine" +12952;5800169165;"Conflict, Security and Development";journal;"14678802, 14781174";"Routledge";No;No;0,452;Q2;34;34;87;2787;154;84;1,70;81,97;41,18;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +12953;13518;"Contemporary South Asia";journal;"09584935, 1469364X";"Routledge";No;No;0,452;Q2;35;44;133;2229;178;114;1,13;50,66;52,73;0;United Kingdom;Western Europe;"Routledge";"1992-2006, 2008-2026";"Development (Q2); Geography, Planning and Development (Q2); Political Science and International Relations (Q2)";"Social Sciences" +12954;21100884987;"Engineering Management in Production and Services";journal;"25436597, 2543912X";"De Gruyter Open Ltd";Yes;No;0,452;Q2;26;28;104;1615;365;104;3,64;57,68;54,17;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2016-2025";"Industrial and Manufacturing Engineering (Q2); Management Information Systems (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Engineering" +12955;22226;"Forest Science";journal;"19383738, 0015749X";"Springer International Publishing";No;No;0,452;Q2;94;44;163;2762;272;161;1,72;62,77;27,27;0;Switzerland;Western Europe;"Springer International Publishing";"1965, 1970, 1974-1991, 1993-2026";"Ecology (Q2); Forestry (Q2); Ecological Modeling (Q3)";"Agricultural and Biological Sciences; Environmental Science" +12956;5300152705;"General Thoracic and Cardiovascular Surgery";journal;"18636705, 18636713";"Springer";No;No;0,452;Q2;53;133;361;3027;530;345;1,62;22,76;16,24;0;Japan;Asiatic Region;"Springer";"2007-2026";"Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +12957;21100390407;"Journal of Biomedical Physics and Engineering";journal;"22517200";"Shiraz University of Medical Sciences";Yes;No;0,452;Q2;29;60;199;1764;433;171;1,78;29,40;33,67;0;Iran;Middle East;"Shiraz University of Medical Sciences";"2015-2026";"Computer Vision and Pattern Recognition (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Radiation (Q2); Radiological and Ultrasound Technology (Q2); Artificial Intelligence (Q3); Bioengineering (Q3); Biomedical Engineering (Q3); Computer Science Applications (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Chemical Engineering; Computer Science; Engineering; Health Professions; Medicine; Physics and Astronomy" +12958;21100464566;"Journal of International Society of Preventive and Community Dentistry";journal;"22310762, 22501002";"Wolters Kluwer Medknow Publications";No;No;0,452;Q2;38;58;194;2021;439;193;1,99;34,84;52,46;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2011-2025";"Dentistry (miscellaneous) (Q2)";"Dentistry" +12959;21100789025;"Journal of Media Law";journal;"17577640, 17577632";"Taylor and Francis Ltd.";No;No;0,452;Q2;14;13;60;230;105;50;2,17;17,69;61,54;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009, 2013, 2015-2026";"Communication (Q2); Law (Q2)";"Social Sciences" +12960;26158;"Journal of Oral Science";journal;"13434934, 18804926";"Nihon University, School of Dentistry";Yes;No;0,452;Q2;66;37;180;1059;337;180;1,66;28,62;42,47;0;Japan;Asiatic Region;"Nihon University, School of Dentistry";"1998-2026";"Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Dentistry; Medicine" +12961;18313;"Journal of Veterinary Diagnostic Investigation";journal;"19434936, 10406387";"SAGE Publications Inc.";No;No;0,452;Q2;93;142;425;4510;615;410;1,29;31,76;48,59;3;United States;Northern America;"SAGE Publications Inc.";"1989-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +12962;19900192596;"Mathematical Modelling of Natural Phenomena";journal;"09735348, 17606101";"EDP Sciences";No;No;0,452;Q2;47;29;105;1255;190;102;1,23;43,28;29,21;0;France;Western Europe;"EDP Sciences";"2006-2026";"Applied Mathematics (Q2); Modeling and Simulation (Q2)";"Mathematics" +12963;96933;"Mathematical Notes";journal;"00014346, 15738876";"Pleiades Publishing";No;No;0,452;Q2;34;187;680;3189;401;680;0,63;17,05;33,61;0;United States;Northern America;"Pleiades Publishing";"1909-1916, 1924-1925, 1929-1930, 1932-1933, 1935, 1937, 1992-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +12964;21100243801;"Multisensory Research";journal;"22134808, 22134794";"Brill Academic Publishers";No;No;0,452;Q2;62;36;70;2476;141;70;1,94;68,78;46,73;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2026";"Computer Vision and Pattern Recognition (Q2); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Ophthalmology (Q3); Sensory Systems (Q4)";"Computer Science; Medicine; Neuroscience; Psychology" +12965;79036;"Pacific Symposium on Biocomputing";journal;"23356928, 23356936";"World Scientific Publishing Co., Inc.";No;No;0,452;Q2;84;56;152;0;199;146;1,33;0,00;38,91;0;United States;Northern America;"World Scientific Publishing Co., Inc.";"1996-2005, 2012-2025";"Computational Theory and Mathematics (Q2); Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)";"Computer Science; Engineering; Medicine" +12966;29121;"Physica E: Low-Dimensional Systems and Nanostructures";journal;"13869477";"Elsevier B.V.";No;No;0,452;Q2;123;215;801;11114;2199;796;2,92;51,69;29,84;0;Netherlands;Western Europe;"Elsevier B.V.";"1974, 1997-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q3); Nanoscience and Nanotechnology (Q3)";"Materials Science; Physics and Astronomy" +12967;144700;"Proceedings of the Institution of Civil Engineers: Engineering Sustainability";journal;"14784629, 17517680";"ICE Publishing";No;No;0,452;Q2;38;37;99;1725;199;81;2,31;46,62;26,42;0;United Kingdom;Western Europe;"ICE Publishing";"2004-2025";"Civil and Structural Engineering (Q2)";"Engineering" +12968;21101284296;"Sage Open Pathology";journal;"30502098";"SAGE Publications Ltd";No;No;0,452;Q2;20;10;107;223;194;97;2,20;22,30;46,81;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2025-2026";"Pathology and Forensic Medicine (Q2); Histology (Q3); Microbiology (medical) (Q3)";"Medicine" +12969;21100368201;"Wine Economics and Policy";journal;"22133968, 22129774";"Firenze University Press";Yes;Yes;0,452;Q2;40;17;49;1034;125;49;2,68;60,82;38,89;0;Italy;Western Europe;"Firenze University Press";"2012-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Food Science (Q2); Horticulture (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +12970;21101337218;"Facts Views and Vision in ObGyn";journal;"20320418, 26844230";"Galenos Publishing House";Yes;No;0,452;Q3;14;58;162;1442;244;145;1,49;24,86;44,49;0;Turkey;Middle East;"Galenos Publishing House";"2021-2025";"Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine" +12971;20500195044;"Journal of Current Glaucoma Practice";journal;"09740333, 09751947";"Jaypee Brothers Medical Publishers (P) Ltd";No;No;0,452;Q3;24;36;107;1238;162;97;1,30;34,39;40,14;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2011-2025";"Ophthalmology (Q3)";"Medicine" +12972;19700175128;"Journal of Human Reproductive Sciences";journal;"19984766, 09741208";"Wolters Kluwer Medknow Publications";Yes;Yes;0,452;Q3;49;44;160;897;223;136;1,23;20,39;61,78;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2009-2025";"Reproductive Medicine (Q3)";"Medicine" +12973;21101320632;"Medicine Plus";journal;"29503477, 2097289X";"KeAi Publishing Communications Ltd.";Yes;No;0,452;Q3;6;33;39;1738;97;36;2,49;52,67;39,73;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2024-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +12974;20531;"Phlebology";journal;"17581125, 02683555";"SAGE Publications Ltd";No;No;0,452;Q3;64;136;272;3517;385;238;1,37;25,86;34,80;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +12975;110173;"Progress in Transplantation";journal;"15269248, 21646708";"SAGE Publications Inc.";No;No;0,452;Q3;50;32;148;642;180;133;1,09;20,06;65,22;0;United States;Northern America;"SAGE Publications Inc.";"2000-2025";"Transplantation (Q3)";"Medicine" +12976;21101090010;"Psikohumaniora";journal;"25029363, 25277456";"State Islamic University Walisongo Semarang Faculty of Psychology and Health";Yes;No;0,452;Q3;8;15;56;1097;76;56;0,97;73,13;55,56;0;Indonesia;Asiatic Region;"State Islamic University Walisongo Semarang Faculty of Psychology and Health";"2019-2025";"Applied Psychology (Q3); Clinical Psychology (Q3); Experimental and Cognitive Psychology (Q3)";"Psychology" +12977;27703;"Tohoku Journal of Experimental Medicine";journal;"13493329, 00408727";"Tohoku University Medical Press";Yes;No;0,452;Q3;74;118;318;4052;496;312;1,44;34,34;36,49;0;Japan;Asiatic Region;"Tohoku University Medical Press";"1920-1945, 1947-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +12978;75113;"IEEE Aerospace Conference Proceedings";conference and proceedings;"1095323X";"IEEE Computer Society";No;No;0,452;-;81;390;1487;8882;1824;1484;1,06;22,77;19,52;0;United States;Northern America;"IEEE Computer Society";"1998, 2000-2025";"Aerospace Engineering; Space and Planetary Science";"Earth and Planetary Sciences; Engineering" +12979;21101234305;"International Journal of TESOL Studies";journal;"26326779, 26336898";"International Tesol Union Co., Ltd";Yes;Yes;0,451;Q1;8;44;107;2194;190;97;2,54;49,86;50,82;0;United Kingdom;Western Europe;"International Tesol Union Co., Ltd";"2022-2026";"Linguistics and Language (Q1); Literature and Literary Theory (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +12980;21100240000;"Australian Journal of Civil Engineering";journal;"14488353";"Taylor and Francis Ltd.";No;No;0,451;Q2;26;31;67;1311;159;67;2,68;42,29;31,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Civil and Structural Engineering (Q2)";"Engineering" +12981;21100874339;"BMC Zoology";journal;"20563132";"BioMed Central Ltd";Yes;No;0,451;Q2;20;27;118;1708;251;114;2,19;63,26;31,16;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2016-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +12982;25828;"Colloid and Polymer Science";journal;"0303402X, 14351536";"Springer Science and Business Media Deutschland GmbH";No;No;0,451;Q2;102;208;393;10231;1166;389;3,09;49,19;38,05;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1974-2026";"Materials Chemistry (Q2); Polymers and Plastics (Q2); Colloid and Surface Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Chemical Engineering; Chemistry; Materials Science" +12983;24998;"Computer Aided Geometric Design";journal;"01678396";"Elsevier B.V.";No;No;0,451;Q2;81;35;179;1323;342;179;1,88;37,80;30,83;0;Netherlands;Western Europe;"Elsevier B.V.";"1974, 1984-2026";"Aerospace Engineering (Q2); Automotive Engineering (Q2); Computer Graphics and Computer-Aided Design (Q2); Modeling and Simulation (Q2)";"Computer Science; Engineering; Mathematics" +12984;17910;"Cryptogamie, Algologie";journal;"01811568";"A.D.A.C.";No;No;0,451;Q2;41;6;29;445;57;29;2,06;74,17;42,86;0;France;Western Europe;"A.D.A.C.";"1990-2025";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +12985;145553;"Forensic Science, Medicine, and Pathology";journal;"1547769X, 15562891";"Springer";No;No;0,451;Q2;53;342;371;10180;626;325;1,75;29,77;45,05;2;United States;Northern America;"Springer";"2005-2026";"Pathology and Forensic Medicine (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +12986;21990;"Herpetological Monographs";book series;"07331347";"Herpetologist's League Inc.";No;No;0,451;Q2;44;0;7;0;17;7;2,43;0,00;0,00;0;United States;Northern America;"Herpetologist's League Inc.";"1991-1992, 1994-2021, 2023-2024";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +12987;26049;"IEEE Transactions on Device and Materials Reliability";journal;"15582574, 15304388";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,451;Q2;85;140;210;4505;625;205;2,80;32,18;26,76;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2001-2026";"Electrical and Electronic Engineering (Q2); Safety, Risk, Reliability and Quality (Q2); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science" +12988;21100356783;"International Journal of Africa Nursing Sciences";journal;"22141391";"Elsevier Ltd";Yes;No;0,451;Q2;31;97;418;3615;765;418;1,57;37,27;55,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +12989;21101307588;"International Medical Education";journal;"2813141X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,451;Q2;6;55;77;1848;197;71;2,75;33,60;52,86;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Education (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +12990;29517;"International Review of Hydrobiology";journal;"15222632, 14342944";"Wiley-VCH Verlag";No;No;0,451;Q2;62;15;26;865;38;25;0,78;57,67;46,05;1;Germany;Western Europe;"Wiley-VCH Verlag";"1998-2026";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +12991;40738;"Journal of Animal and Feed Sciences";journal;"12301388, 27198448";"Kielanowski Institute of Animal Physiology and Nutrition, Polish Academy of Science";No;No;0,451;Q2;43;58;134;2906;272;134;2,19;50,10;41,63;0;Poland;Eastern Europe;"Kielanowski Institute of Animal Physiology and Nutrition, Polish Academy of Science";"1996-2025";"Animal Science and Zoology (Q2); Food Science (Q2)";"Agricultural and Biological Sciences" +12992;17044;"Neues Jahrbuch fur Mineralogie, Abhandlungen";journal;"23637161, 00777757";"Schweizerbart Science Publishers";No;No;0,451;Q2;36;5;22;348;26;22;1,25;69,60;14,29;0;Germany;Western Europe;"Schweizerbart Science Publishers";"1980-1988, 1996-2025";"Geochemistry and Petrology (Q2)";"Earth and Planetary Sciences" +12993;12883;"New Zealand Journal of Ecology";journal;"01106465, 11777788";"New Zealand Ecological Society";Yes;No;0,451;Q2;60;44;119;2696;187;115;1,56;61,27;40,88;2;New Zealand;Pacific Region;"New Zealand Ecological Society";"1980, 1982-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +12994;29067;"Nuclear Instruments and Methods in Physics Research, Section A: Accelerators, Spectrometers, Detectors and Associated Equipment";journal;"01689002";"Elsevier B.V.";No;No;0,451;Q2;191;695;2809;16508;3847;2787;1,32;23,75;22,45;0;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Instrumentation (Q2); Nuclear and High Energy Physics (Q2)";"Physics and Astronomy" +12995;14608;"Ophthalmic Genetics";journal;"13816810, 17445094";"Taylor and Francis Ltd.";No;No;0,451;Q2;49;128;340;3530;442;322;1,18;27,58;46,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2026";"Pediatrics, Perinatology and Child Health (Q2); Genetics (clinical) (Q3); Ophthalmology (Q3)";"Medicine" +12996;11600153420;"Social Work in Public Health";journal;"1937190X, 19371918";"Routledge";No;No;0,451;Q2;46;42;165;2054;253;164;1,28;48,90;64,39;0;United States;Northern America;"Routledge";"2007-2026";"Health (social science) (Q2); Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3); Social Work (Q3)";"Medicine; Social Sciences" +12997;21100294100;"Spectroscopy (Santa Monica)";journal;"08876703";"Advanstar Communications Inc.";No;No;0,451;Q2;35;63;257;433;296;188;0,87;6,87;23,53;0;United States;Northern America;"Advanstar Communications Inc.";"1996-2026";"Atomic and Molecular Physics, and Optics (Q2); Analytical Chemistry (Q3); Spectroscopy (Q3)";"Chemistry; Physics and Astronomy" +12998;60896;"Sugar Tech";journal;"09740740, 09721525";"Springer";No;No;0,451;Q2;51;202;457;9503;1340;446;2,52;47,04;33,76;1;India;Asiatic Region;"Springer";"2003-2026";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +12999;21101061452;"Zoological Systematics";journal;"20956827";"Institute of Zoology Chinese Academy of Sciences";No;No;0,451;Q2;11;12;67;1340;62;54;1,07;111,67;41,51;0;China;Asiatic Region;"Institute of Zoology Chinese Academy of Sciences";"2019-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +13000;13320;"Applied Solar Energy (English translation of Geliotekhnika)";journal;"0003701X, 19349424";"Pleiades Publishing";No;No;0,451;Q3;30;37;253;1489;494;253;2,21;40,24;17,32;0;United States;Northern America;"Pleiades Publishing";"1977-1990, 1995-2025";"Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +13001;21101272839;"International Journal of Translational Medicine";journal;"26738937";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,451;Q3;12;58;133;4883;247;132;2,00;84,19;45,45;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Genetics (Q3); Medicine (miscellaneous) (Q3); Immunology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +13002;21100198411;"Proceedings of the International Symposium on Wireless Communication Systems";conference and proceedings;"21540217, 21540225";"V D E Verlag GmbH";No;No;0,451;-;39;0;200;0;256;198;0,99;0,00;0,00;0;United States;Northern America;"V D E Verlag GmbH";"1995, 2011-2013, 2015-2019, 2021-2022, 2024";"Computer Networks and Communications; Electrical and Electronic Engineering; Media Technology";"Computer Science; Engineering" +13003;21101039768;"JACCP Journal of the American College of Clinical Pharmacy";journal;"25749870";"Wiley-Blackwell Publishing Ltd";No;No;0,450;Q1;26;169;461;4780;606;360;1,34;28,28;64,32;0;United States;Northern America;"Wiley-Blackwell Publishing Ltd";"2018-2026";"Pharmacy (Q1); Pharmaceutical Science (Q2); Pharmacology (medical) (Q3)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +13004;21101158605;"Persica Antiqua";journal;"27832295, 27832732";"Tissaphernes Archaeological Research Group";No;No;0,450;Q1;4;10;27;472;19;27;0,41;47,20;16,67;0;Iran;Middle East;"Tissaphernes Archaeological Research Group";"2021-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +13005;21100927407;"AIMS Mathematics";journal;"24736988";"American Institute of Mathematical Sciences";Yes;No;0,450;Q2;50;1351;4430;44460;8230;4424;1,94;32,91;33,32;0;United States;Northern America;"American Institute of Mathematical Sciences";"2016-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13006;145016;"Defense and Security Analysis";journal;"14751798, 14751801";"Routledge";No;No;0,450;Q2;20;49;87;3090;170;84;2,21;63,06;13,64;3;United Kingdom;Western Europe;"Routledge";"2003-2004, 2006-2026";"Geography, Planning and Development (Q2); Political Science and International Relations (Q2)";"Social Sciences" +13007;21101023186;"Heat Transfer";journal;"26884534, 26884542";"John Wiley & Sons Inc.";No;No;0,450;Q2;56;323;828;14279;2600;827;3,04;44,21;21,04;1;United States;Northern America;"John Wiley & Sons Inc.";"2020-2026";"Condensed Matter Physics (Q2); Fluid Flow and Transfer Processes (Q2)";"Chemical Engineering; Physics and Astronomy" +13008;21101160642;"International Journal of Robotics and Control Systems";journal;"27752658";"Association for Scientific Computing Electronics and Engineering (ASCEE)";No;No;0,450;Q2;21;177;211;10864;990;211;4,38;61,38;23,97;0;Indonesia;Asiatic Region;"Association for Scientific Computing Electronics and Engineering (ASCEE)";"2021-2025";"Aerospace Engineering (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +13009;21101085284;"International Ocean Discovery Program: Preliminary Reports";journal;"23729562";"IODP-MI";No;No;0,450;Q2;15;29;63;2097;46;61;0,64;72,31;48,78;0;United States;Northern America;"IODP-MI";"2015-2025";"Oceanography (Q2)";"Earth and Planetary Sciences" +13010;13515;"Journal of Aquatic Animal Health";journal;"08997659, 15488667";"Oxford University Press";No;No;0,450;Q2;66;19;78;1152;155;76;2,04;60,63;36,26;0;United States;Northern America;"Oxford University Press";"1989-2025";"Aquatic Science (Q2)";"Agricultural and Biological Sciences" +13011;25427;"Journal of Horticultural Science and Biotechnology";journal;"14620316";"Taylor and Francis Ltd.";No;No;0,450;Q2;75;84;190;6136;502;186;2,68;73,05;39,88;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Horticulture (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +13012;21101291060;"Journal of Sailing Technology";journal;"2475370X";"Society of Naval Architects and Marine Engineers";No;No;0,450;Q2;8;19;34;729;65;34;2,57;38,37;8,96;0;United States;Northern America;"Society of Naval Architects and Marine Engineers";"2021-2025";"Engineering (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Ocean Engineering (Q2)";"Engineering" +13013;19887;"Journal of Sports Medicine and Physical Fitness";journal;"18271928, 00224707";"Edizioni Minerva Medica S.p.A.";No;No;0,450;Q2;80;207;571;7809;815;547;1,35;37,72;28,69;0;Italy;Western Europe;"Edizioni Minerva Medica S.p.A.";"1962-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3); Sports Science (Q3)";"Health Professions; Medicine" +13014;21100202719;"Journal of Systems and Information Technology";journal;"17588847, 13287265";"Emerald Publishing";No;No;0,450;Q2;42;41;66;3379;245;65;4,39;82,41;37,04;0;United Kingdom;Western Europe;"Emerald Publishing";"1997-2004, 2007-2026";"Computer Science (miscellaneous) (Q2); Information Systems (Q2); Management Information Systems (Q2)";"Business, Management and Accounting; Computer Science" +13015;25255;"Journal of the Australian Mathematical Society";journal;"14468107, 14467887";"Cambridge University Press";No;No;0,450;Q2;42;39;97;1150;74;97;0,77;29,49;19,54;0;United Kingdom;Western Europe;"Cambridge University Press";"1959-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13016;16882;"Periodica Polytechnica Civil Engineering";journal;"05536626, 15873773";"Budapest University of Technology and Economics";Yes;No;0,450;Q2;38;108;323;4488;779;323;2,43;41,56;21,56;0;Hungary;Eastern Europe;"Budapest University of Technology and Economics";"1972-1974, 1977, 1979-1983, 1985-2025";"Civil and Structural Engineering (Q2); Engineering (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences; Engineering" +13017;8000153140;"Polar Science";journal;"18739652";"Elsevier B.V.";No;No;0,450;Q2;44;70;174;4592;319;169;1,85;65,60;26,01;1;Netherlands;Western Europe;"Elsevier B.V.";"2007-2026";"Aquatic Science (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +13018;4700152407;"Annals of Indian Academy of Neurology";journal;"09722327, 19983549";"Wolters Kluwer Medknow Publications";Yes;Yes;0,450;Q3;50;206;748;3654;672;348;0,84;17,74;42,99;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2006-2025";"Neurology (clinical) (Q3)";"Medicine" +13019;21100202511;"International Journal of Trichology";journal;"09747753, 09749241";"Wolters Kluwer Medknow Publications";Yes;No;0,450;Q3;40;86;120;1123;145;98;1,14;13,06;54,71;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2009-2025";"Dermatology (Q3)";"Medicine" +13020;4700152828;"Journal of Human Resources in Hospitality and Tourism";journal;"15332845, 15332853";"Routledge";No;No;0,450;Q3;44;32;88;2483;257;87;3,39;77,59;38,46;0;United States;Northern America;"Routledge";"2002-2025";"Organizational Behavior and Human Resource Management (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting" +13021;21101094440;"Progress in Microbes and Molecular Biology";journal;"26371049";"HH Publisher";Yes;No;0,450;Q3;26;21;83;2239;329;83;4,50;106,62;35,79;0;Malaysia;Asiatic Region;"HH Publisher";"2018-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Microbiology (Q3); Microbiology (medical) (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +13022;19900191621;"US Cardiology Review";journal;"17583896, 1758390X";"";Yes;No;0,450;Q3;10;21;67;626;114;66;1,98;29,81;39,19;0;United Kingdom;Western Europe;"";"2011-2012, 2016-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +13023;15488;"Encephale";journal;"00137006";"Elsevier Masson s.r.l.";No;No;0,449;Q1;57;153;352;5227;447;299;1,20;34,16;51,39;8;France;Western Europe;"Elsevier Masson s.r.l.";"1946, 1949-1973, 1975-2026";"Arts and Humanities (miscellaneous) (Q1); Psychiatry and Mental Health (Q3)";"Arts and Humanities; Medicine" +13024;21100326898;"Acta Crystallographica Section A: Foundations and Advances";journal;"20532733";"John Wiley & Sons Inc.";No;No;0,449;Q2;96;47;153;1359;199;152;1,38;28,91;18,28;0;United States;Northern America;"John Wiley & Sons Inc.";"1998, 2014-2026";"Condensed Matter Physics (Q2); Inorganic Chemistry (Q2); Biochemistry (Q3); Materials Science (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q3); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Physics and Astronomy" +13025;21101101421;"Applications in Engineering Science";journal;"26664968";"Elsevier Ltd";Yes;No;0,449;Q2;19;71;114;3434;370;113;3,89;48,37;19,67;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Civil and Structural Engineering (Q2); Computational Mechanics (Q2); Mechanical Engineering (Q2)";"Engineering" +13026;130069;"Chemistry and Biodiversity";journal;"16121872, 16121880";"Wiley-Blackwell";No;No;0,449;Q2;91;1498;2043;89854;6481;2043;3,27;59,98;43,83;0;United States;Northern America;"Wiley-Blackwell";"2004-2026";"Chemistry (miscellaneous) (Q2); Biochemistry (Q3); Bioengineering (Q3); Medicine (miscellaneous) (Q3); Molecular Medicine (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Medicine" +13027;4500151406;"Clinical Teacher";journal;"17434971, 1743498X";"John Wiley and Sons Inc";No;No;0,449;Q2;43;286;353;5327;486;273;1,27;18,63;62,00;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2006-2026";"Review and Exam Preparation (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +13028;21875;"Experimental Parasitology";journal;"00144894, 10902449";"Academic Press Inc.";No;No;0,449;Q2;90;111;416;5442;832;416;2,02;49,03;46,96;0;United States;Northern America;"Academic Press Inc.";"1951-2026";"Parasitology (Q2); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Immunology (Q4)";"Immunology and Microbiology; Medicine" +13029;13762;"International Journal of Thermophysics";journal;"15729567, 0195928X";"Springer";No;No;0,449;Q2;87;194;533;10885;1533;527;2,81;56,11;24,35;0;United States;Northern America;"Springer";"1980-2026";"Condensed Matter Physics (Q2); Fluid Flow and Transfer Processes (Q2); Instrumentation (Q2); Physical and Theoretical Chemistry (Q3)";"Chemical Engineering; Chemistry; Physics and Astronomy" +13030;5800179605;"Journal of Cardiothoracic Surgery";journal;"17498090";"BioMed Central Ltd";Yes;No;0,449;Q2;65;478;1378;12781;2314;1362;1,62;26,74;35,16;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +13031;16525;"Journal of Portfolio Management";journal;"00954918";"Portfolio Management Research";No;No;0,449;Q2;67;122;387;3233;394;368;1,05;26,50;13,67;0;United States;Northern America;"Portfolio Management Research";"1986, 1988-1990, 1995-2026";"Business, Management and Accounting (miscellaneous) (Q2); Finance (Q2); Accounting (Q3); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13032;21100829572;"Journal of the Mechanical Behavior of Materials";journal;"21910243, 03348938";"Walter de Gruyter GmbH";Yes;No;0,449;Q2;23;55;172;2348;494;172;3,07;42,69;23,94;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1996-1997, 2001, 2013, 2017-2026";"Mechanics of Materials (Q2); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +13033;63779;"Lake and Reservoir Management";journal;"21515530, 10402381";"Taylor and Francis Ltd.";No;No;0,449;Q2;51;25;73;1419;93;68;1,38;56,76;28,17;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984, 1986-1991, 1993-2026";"Aquatic Science (Q2); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +13034;17815;"Materials Science and Technology (United Kingdom)";journal;"02670836, 17432847";"SAGE Publications Inc.";No;No;0,449;Q2;122;285;554;13127;1374;554;2,28;46,06;28,86;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1984-2026";"Condensed Matter Physics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science; Physics and Astronomy" +13035;22817;"Oral Health and Preventive Dentistry";journal;"17579996, 16021622";"Quintessence Publishing Co. Inc.";Yes;No;0,449;Q2;45;93;188;4071;360;188;1,84;43,77;51,44;0;United States;Northern America;"Quintessence Publishing Co. Inc.";"2003-2026";"Dental Hygiene (Q2)";"Dentistry" +13036;27370;"Population Ecology";journal;"1438390X, 14383896";"John Wiley and Sons Inc";No;No;0,449;Q2;71;28;75;1827;98;68;1,45;65,25;21,98;0;Japan;Asiatic Region;"John Wiley and Sons Inc";"1996, 1999-2026";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +13037;21101256757;"Transactions of National Academy of Sciences of Azerbaijan. Series of Physical-Technical and Mathematical Sciences";journal;"26177900, 30058139";"Institute of Mathematics and Mechanics, National Academy of Sciences of Azerbaijan";No;No;0,449;Q2;10;23;78;610;92;77;1,55;26,52;36,96;0;Azerbaijan;Eastern Europe;"Institute of Mathematics and Mechanics, National Academy of Sciences of Azerbaijan";"2015-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13038;21100852983;"Cardiology Research";journal;"19232837, 19232829";"Elmer Press";No;No;0,449;Q3;16;62;155;2007;243;152;1,38;32,37;32,15;0;Canada;Northern America;"Elmer Press";"2013-2016, 2018-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +13039;21100976737;"European Clinical Respiratory Journal";journal;"20018525";"Taylor and Francis Ltd.";Yes;No;0,449;Q3;21;45;64;1554;112;63;1,67;34,53;49,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Pulmonary and Respiratory Medicine (Q3)";"Medicine" +13040;21100201505;"International Journal of Advances in Soft Computing and its Applications";journal;"20748523";"Al-Zaytoonah University of Jordan";Yes;No;0,449;Q3;30;62;149;2222;542;149;3,49;35,84;26,23;0;Jordan;Middle East;"Al-Zaytoonah University of Jordan";"2009-2025";"Computer Science Applications (Q3)";"Computer Science" +13041;21100215173;"International Journal of Nephrology";journal;"20902158, 2090214X";"John Wiley and Sons Ltd";Yes;No;0,449;Q3;44;26;76;1143;153;76;2,03;43,96;39,29;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2026";"Nephrology (Q3)";"Medicine" +13042;16690;"Journal of Computational Neuroscience";journal;"09295313, 15736873";"Springer";No;No;0,449;Q3;89;33;82;1885;124;75;1,24;57,12;18,67;0;United States;Northern America;"Springer";"1994-2026";"Cognitive Neuroscience (Q3); Cellular and Molecular Neuroscience (Q4); Sensory Systems (Q4)";"Neuroscience" +13043;21100395920;"Journal of the ASEAN Federation of Endocrine Societies";journal;"08571074, 2308118X";"ASEAN Federation of Endocrine Societies";Yes;Yes;0,449;Q3;13;0;129;0;197;113;1,21;0,00;0,00;0;Philippines;Asiatic Region;"ASEAN Federation of Endocrine Societies";"2014-2024";"Endocrinology, Diabetes and Metabolism (Q3); Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13044;22311;"International Journal of the Sociology of Language";journal;"16133668, 01652516";"De Gruyter Mouton";No;No;0,448;Q1;56;46;168;2185;219;155;0,85;47,50;70,00;0;Germany;Western Europe;"De Gruyter Mouton";"1974-2026";"Linguistics and Language (Q1)";"Social Sciences" +13045;5600155094;"Perspectives on Science";journal;"10636145, 15309274";"MIT Press";No;No;0,448;Q1;33;6;101;432;118;94;0,97;72,00;28,57;0;United States;Northern America;"MIT Press";"1994-1995, 1997, 1999-2025";"History and Philosophy of Science (Q1); Multidisciplinary (Q2)";"Arts and Humanities; Multidisciplinary" +13046;21101112621;"Applied Phycology";journal;"26388081";"Informa UK Ltd";Yes;No;0,448;Q2;12;30;56;1971;165;54;2,63;65,70;48,28;0;United Kingdom;Western Europe;"Informa UK Ltd";"2020-2026";"Aquatic Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +13047;24622;"Biofouling";journal;"10292454, 08927014";"Taylor and Francis Ltd.";No;No;0,448;Q2;117;78;217;4682;544;217;2,48;60,03;46,37;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Aquatic Science (Q2); Applied Microbiology and Biotechnology (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Environmental Science; Immunology and Microbiology" +13048;21101039812;"European Journal of Science and Mathematics Education";journal;"2301251X";"Bastas";No;No;0,448;Q2;12;30;113;1433;221;113;2,13;47,77;51,47;0;Cyprus;Western Europe;"Bastas";"2014, 2019-2026";"Education (Q2)";"Social Sciences" +13049;15077;"Indiana Law Journal";journal;"00196665";"The Trustees of Indiana University";No;No;0,448;Q2;36;31;117;8030;115;117;0,54;259,03;37,78;0;United States;Northern America;"The Trustees of Indiana University";"1973, 1977-1979, 1981-1983, 1989, 1992-2025";"Law (Q2)";"Social Sciences" +13050;145200;"International Journal on Digital Libraries";journal;"14325012, 14321300";"Springer Verlag";No;No;0,448;Q2;42;26;94;1084;224;87;1,78;41,69;37,50;0;Germany;Western Europe;"Springer Verlag";"1997-1998, 2000, 2004-2010, 2012-2026";"Library and Information Sciences (Q2)";"Social Sciences" +13051;17700156756;"Journal of Asset Management";journal;"14708272, 1479179X";"Palgrave Macmillan Ltd.";No;No;0,448;Q2;28;51;132;2071;283;127;2,01;40,61;17,71;1;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2009-2026";"Business and International Management (Q2); Information Systems and Management (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Decision Sciences" +13052;21101046402;"Journal of Pollination Ecology";journal;"19207603";"Enviroquest Ltd";Yes;Yes;0,448;Q2;11;25;58;1401;101;58;1,31;56,04;44,00;0;Canada;Northern America;"Enviroquest Ltd";"2011, 2014-2016, 2018-2025";"Animal Science and Zoology (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13053;21100902965;"Measurement";journal;"15366367, 15366359";"Taylor and Francis Ltd.";No;No;0,448;Q2;25;50;60;2470;72;60;1,36;49,40;40,52;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2008, 2010-2026";"Applied Mathematics (Q2); Education (Q2); Statistics and Probability (Q3)";"Mathematics; Social Sciences" +13054;4500151512;"Nanotechnology and Precision Engineering";journal;"16726030, 25895540";"American Institute of Physics";Yes;Yes;0,448;Q2;27;56;92;2562;256;92;2,52;45,75;28,17;0;United States;Northern America;"American Institute of Physics";"2006-2026";"Electrical and Electronic Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Instrumentation (Q2); Mechanical Engineering (Q2); Nanoscience and Nanotechnology (Q3)";"Engineering; Materials Science; Physics and Astronomy" +13055;21101064229;"New England Journal of Entrepreneurship";journal;"1550333X, 25748904";"Emerald Publishing";Yes;Yes;0,448;Q2;22;12;30;606;78;26;3,00;50,50;54,17;0;United Kingdom;Western Europe;"Emerald Publishing";"1998-2025";"Business and International Management (Q2); Public Administration (Q2); Accounting (Q3); Economics and Econometrics (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +13056;29385;"Revista Brasileira de Enfermagem";journal;"00347167, 19840446";"";Yes;No;0,448;Q2;41;298;923;7257;1271;889;1,31;24,35;77,47;0;Brazil;Latin America;"";"1965, 1967-1971, 1973, 1976-1979, 1983-1987, 1995-2026";"Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +13057;11500153309;"Romanian Journal of Physics";journal;"1221146X";"Publishing House of the Romanian Academy";No;No;0,448;Q2;41;67;209;2204;323;209;1,85;32,90;31,11;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2008-2025";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +13058;5700161063;"Urban Forum";journal;"18746330, 10153802";"Springer Science and Business Media B.V.";No;No;0,448;Q2;47;30;82;2030;173;81;2,31;67,67;35,94;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1990-2026";"Geography, Planning and Development (Q2); Urban Studies (Q2)";"Social Sciences" +13059;19520;"Veterinary Immunology and Immunopathology";journal;"01652427, 18732534";"Elsevier B.V.";No;No;0,448;Q2;114;92;229;4291;410;229;1,93;46,64;48,17;0;Netherlands;Western Europe;"Elsevier B.V.";"1979-2026";"Veterinary (miscellaneous) (Q2); Immunology (Q4)";"Immunology and Microbiology; Veterinary" +13060;19835;"Current Sports Medicine Reports";journal;"15378918, 1537890X";"Lippincott Williams and Wilkins";No;No;0,448;Q3;73;88;275;2009;359;240;1,16;22,83;38,70;0;United States;Northern America;"Lippincott Williams and Wilkins";"2002-2026";"Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Public Health, Environmental and Occupational Health (Q3); Sports Science (Q3)";"Health Professions; Medicine" +13061;18400156712;"Journal of Smoking Cessation";journal;"18342612";"Maximum Academic Press";Yes;No;0,448;Q3;21;12;28;455;40;27;1,31;37,92;55,81;0;United States;Northern America;"Maximum Academic Press";"2006-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +13062;21101152882;"Psychological Test Adaptation and Development";journal;"26981866";"Hogrefe Publishing GmbH";Yes;No;0,448;Q3;10;23;71;1185;157;69;2,19;51,52;48,72;0;Germany;Western Europe;"Hogrefe Publishing GmbH";"2020-2025";"Applied Psychology (Q3); Psychology (miscellaneous) (Q3)";"Psychology" +13063;21100890928;"Journal of Ethnic and Cultural Studies";journal;"21491291";"Florida Gulf Coast University";Yes;No;0,447;Q1;21;63;169;4148;375;168;2,16;65,84;59,24;0;United States;Northern America;"Florida Gulf Coast University";"2018-2026";"Cultural Studies (Q1); Sociology and Political Science (Q2)";"Social Sciences" +13064;21101130997;"Journal of Open Archaeology Data";journal;"20491565";"Ubiquity Press";Yes;No;0,447;Q1;10;16;38;349;43;21;1,06;21,81;52,17;0;United Kingdom;Western Europe;"Ubiquity Press";"2019-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +13065;21100888787;"Annals of Economics and Statistics";journal;"21154430, 19683863";"Groupe des ecoles nationales d'economie et statistique";No;No;0,447;Q2;9;9;56;295;44;55;0,72;32,78;31,82;0;France;Western Europe;"Groupe des ecoles nationales d'economie et statistique";"2018-2025";"Social Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics; Social Sciences" +13066;19155;"Archives of Insect Biochemistry and Physiology";journal;"15206327, 07394462";"John Wiley and Sons Ltd";No;No;0,447;Q2;76;85;285;4831;603;281;2,19;56,84;38,26;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1983-2026";"Insect Science (Q2); Biochemistry (Q3); Medicine (miscellaneous) (Q3); Physiology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +13067;23678;"Artificial Intelligence for Engineering Design, Analysis and Manufacturing: AIEDAM";journal;"08900604, 14691760";"Cambridge University Press";No;No;0,447;Q2;65;31;86;2053;247;85;3,16;66,23;26,85;0;United Kingdom;Western Europe;"Cambridge University Press";"1987-2026";"Industrial and Manufacturing Engineering (Q2); Artificial Intelligence (Q3)";"Computer Science; Engineering" +13068;21101314094;"ASEAN Journal of Educational Research and Technology";journal;"28284860, 28284887";"Yayasan Bumi Publikasi Nusantara";No;No;0,447;Q2;13;30;82;1111;208;82;2,64;37,03;50,00;0;Indonesia;Asiatic Region;"Yayasan Bumi Publikasi Nusantara";"2022-2025";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +13069;21100933240;"Australasian Orthodontic Journal";journal;"22077480, 22077472";"Australian Society of Orthodontists";Yes;Yes;0,447;Q2;32;33;101;1201;149;100;1,77;36,39;47,37;0;Australia;Pacific Region;"Australian Society of Orthodontists";"2017-2025";"Orthodontics (Q2)";"Dentistry" +13070;27871;"Concurrency and Computation: Practice and Experience";journal;"15320626, 15320634";"John Wiley and Sons Ltd";No;No;0,447;Q2;89;522;1925;21547;4937;1903;2,69;41,28;30,47;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2001-2026";"Computational Theory and Mathematics (Q2); Computer Networks and Communications (Q2); Computer Science Applications (Q3); Software (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +13071;19700166610;"Current Herpetology";journal;"13455834, 18811019";"Herpetological Society of Japan";No;No;0,447;Q2;22;20;59;772;56;59;1,05;38,60;17,86;0;Japan;Asiatic Region;"Herpetological Society of Japan";"2000-2025";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +13072;19700177026;"IEEE Embedded Systems Letters";journal;"19430663, 19430671";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,447;Q2;37;173;247;2374;631;244;2,31;13,72;19,67;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2009-2026";"Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q2)";"Computer Science; Engineering" +13073;19700174611;"Information Technology and Control";journal;"2335884X, 1392124X";"Kauno Technologijos Universitetas";Yes;No;0,447;Q2;27;83;202;3035;550;202;2,71;36,57;39,15;0;Lithuania;Eastern Europe;"Kauno Technologijos Universitetas";"2008-2025";"Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Computer Science Applications (Q3)";"Computer Science; Engineering" +13074;21101050919;"Journal of Family Trauma, Child Custody and Child Development";journal;"26904586, 26904594";"Taylor and Francis Ltd.";No;No;0,447;Q2;28;32;76;1947;122;70;1,80;60,84;64,95;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2020-2026";"Health (social science) (Q2); Law (Q2); Pediatrics, Perinatology and Child Health (Q2); Clinical Psychology (Q3); Developmental and Educational Psychology (Q3); Social Psychology (Q3)";"Medicine; Psychology; Social Sciences" +13075;21100218042;"Journal of Media Business Studies";journal;"16522354";"Taylor and Francis Ltd.";No;No;0,447;Q2;31;27;53;2130;133;53;2,46;78,89;58,23;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Business and International Management (Q2); Communication (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +13076;4000152122;"Journal of the American Association for Laboratory Animal Science";journal;"27696677, 15596109";"American Association for Laboratory Animal Science";No;No;0,447;Q2;73;136;231;5018;398;210;1,32;36,90;56,67;0;United States;Northern America;"American Association for Laboratory Animal Science";"2006-2025";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +13077;25596;"Proceedings of the Institution of Mechanical Engineers Part M: Journal of Engineering for the Maritime Environment";journal;"20413084, 14750902";"SAGE Publications Ltd";No;No;0,447;Q2;49;92;223;4139;570;222;2,48;44,99;22,65;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2026";"Mechanical Engineering (Q2); Ocean Engineering (Q2)";"Engineering" +13078;21101074783;"Upstream Oil and Gas Technology";journal;"26662604";"Elsevier Inc.";No;No;0,447;Q2;17;0;36;0;117;36;3,86;0,00;0,00;0;United States;Northern America;"Elsevier Inc.";"2019-2023";"Chemical Engineering (miscellaneous) (Q2); Geochemistry and Petrology (Q2); Geophysics (Q2); Geotechnical Engineering and Engineering Geology (Q2); Fuel Technology (Q3)";"Chemical Engineering; Earth and Planetary Sciences; Energy" +13079;19900192614;"Eurasian Journal of Medicine";journal;"13088734, 13088742";"AVES";Yes;Yes;0,447;Q3;29;41;195;1225;390;181;1,55;29,88;37,65;0;Turkey;Middle East;"AVES";"2011-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +13080;12736;"Journal of Clinical and Experimental Neuropsychology";journal;"1744411X, 13803395";"Taylor and Francis Ltd.";No;No;0,447;Q3;129;80;206;5818;404;199;1,81;72,73;59,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-2026";"Clinical Psychology (Q3); Neurology (Q3); Neurology (clinical) (Q3); Neuropsychology and Physiological Psychology (Q3)";"Medicine; Neuroscience; Psychology" +13081;21100238627;"Journal of Thyroid Research";journal;"20420072, 20908067";"John Wiley and Sons Ltd";Yes;No;0,447;Q3;44;0;13;0;26;13;2,75;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2010-2024";"Endocrinology, Diabetes and Metabolism (Q3)";"Medicine" +13082;21101091736;"Worldwide Waste";journal;"23997117";"White Horse Press";Yes;Yes;0,447;Q3;8;5;12;346;21;12;1,43;69,20;60,00;0;United Kingdom;Western Europe;"White Horse Press";"2018-2025";"Waste Management and Disposal (Q3)";"Environmental Science" +13083;5600157617;"Criminal Law and Philosophy";journal;"18719791, 18719805";"Springer Netherlands";No;No;0,446;Q1;28;53;121;1000;104;118;0,82;18,87;26,92;0;Netherlands;Western Europe;"Springer Netherlands";"2007-2026";"Philosophy (Q1); Law (Q2)";"Arts and Humanities; Social Sciences" +13084;144612;"Cehui Xuebao/Acta Geodaetica et Cartographica Sinica";journal;"10011595";"SinoMaps Press";Yes;No;0,446;Q2;50;226;751;6724;1413;666;1,38;29,75;28,37;0;China;Asiatic Region;"SinoMaps Press";"2005-2025";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +13085;20748;"Educational Media International";journal;"14695790, 09523987";"Routledge";No;No;0,446;Q2;53;31;70;1440;155;65;2,17;46,45;53,23;0;United Kingdom;Western Europe;"Routledge";"1978-1979, 1987-2026";"Communication (Q2); Education (Q2)";"Social Sciences" +13086;22252;"Forestry Chronicle";journal;"00157546";"Canadian Institute of Forestry";Yes;No;0,446;Q2;60;26;56;1763;88;50;1,44;67,81;26,15;1;Canada;Northern America;"Canadian Institute of Forestry";"1988-2026";"Forestry (Q2)";"Agricultural and Biological Sciences" +13087;91636;"International Food and Agribusiness Management Review";journal;"10967508, 15592448";"Wageningen Academic Publishers";Yes;No;0,446;Q2;53;41;159;2173;315;156;1,85;53,00;41,23;0;United States;Northern America;"Wageningen Academic Publishers";"1998-2025";"Business and International Management (Q2); Food Science (Q2)";"Agricultural and Biological Sciences; Business, Management and Accounting" +13088;12192;"Journal of Back and Musculoskeletal Rehabilitation";journal;"18786324, 10538127";"SAGE Publications Ltd";No;No;0,446;Q2;50;228;479;9637;809;458;1,56;42,27;40,43;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2000, 2002-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3)";"Health Professions; Medicine" +13089;7000153278;"Journal of Iberian Geology";journal;"16986180, 18867995";"Springer Nature";Yes;No;0,446;Q2;37;60;82;5366;127;79;1,42;89,43;35,65;0;Switzerland;Western Europe;"Springer Nature";"2007-2026";"Geology (Q2); Stratigraphy (Q2)";"Earth and Planetary Sciences" +13090;20500195422;"Journal of Pipeline Systems Engineering and Practice";journal;"19491190, 19491204";"ASCE";No;No;0,446;Q2;43;119;248;4355;649;239;2,66;36,60;28,64;0;United States;Northern America;"ASCE";"2010-2026";"Civil and Structural Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +13091;12341;"Journal of the Optical Society of America B: Optical Physics";journal;"07403224, 15208540";"Optica Publishing Group (formerly OSA)";No;No;0,446;Q2;165;261;1269;10312;2385;1261;1,91;39,51;28,86;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"1984-2025";"Atomic and Molecular Physics, and Optics (Q2); Statistical and Nonlinear Physics (Q3)";"Physics and Astronomy" +13092;17700156748;"Journal of Turkish Science Education";journal;"13046020";"";Yes;No;0,446;Q2;30;40;157;2610;384;157;2,54;65,25;55,56;1;Turkey;Middle East;"";"2009-2025";"Education (Q2); Applied Psychology (Q3)";"Psychology; Social Sciences" +13093;144767;"Limnetica";journal;"02138409, 19891806";"Asociacion Iberica de Limnologia";Yes;Yes;0,446;Q2;41;22;72;1295;94;70;1,31;58,86;39,60;0;Spain;Western Europe;"Asociacion Iberica de Limnologia";"1996-2026";"Aquatic Science (Q2); Ecology (Q2); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +13094;25221;"New York Journal of Mathematics";journal;"10769803";"University at Albany";Yes;Yes;0,446;Q2;33;68;191;1775;102;190;0,51;26,10;18,64;0;United States;Northern America;"University at Albany";"1996-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13095;11600153402;"Plant Biotechnology Reports";journal;"18635474, 18635466";"Springer";No;No;0,446;Q2;52;69;213;4320;460;213;2,07;62,61;41,13;0;Singapore;Asiatic Region;"Springer";"2007-2026";"Plant Science (Q2); Biotechnology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +13096;12452;"Raumforschung und Raumordnung";journal;"18694179, 00340111";"Oekom - Gesellschaft fuer Oekologische Kommunikation mbH";Yes;No;0,446;Q2;25;32;123;1638;156;113;1,39;51,19;34,38;0;Germany;Western Europe;"Oekom - Gesellschaft fuer Oekologische Kommunikation mbH";"1977-1987, 1990-1991, 1993-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +13097;19900192567;"Transactions on Electrical and Electronic Materials";journal;"20927592, 12297607";"The Korean Institute of Electrical and Electronic Material Engineers";Yes;No;0,446;Q2;37;105;224;4883;827;224;4,09;46,50;26,75;0;South Korea;Asiatic Region;"The Korean Institute of Electrical and Electronic Material Engineers";"2007, 2011-2026";"Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science" +13098;21100405118;"Archives of Rheumatology";journal;"21485046, 26186500";"Turkish League Against Rheumatism (TLAR)";Yes;No;0,446;Q3;25;56;233;1732;307;191;1,14;30,93;42,19;0;Turkey;Middle East;"Turkish League Against Rheumatism (TLAR)";"2014-2026";"Rheumatology (Q3)";"Medicine" +13099;19700174698;"Avicenna Journal of Medical Biotechnology";journal;"20084625, 20082835";"Avicenna Research Institute";Yes;No;0,446;Q3;36;37;108;1373;200;97;1,79;37,11;50,65;0;Iran;Middle East;"Avicenna Research Institute";"2010-2026";"Applied Microbiology and Biotechnology (Q3); Bioengineering (Q3); Biomedical Engineering (Q3); Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Immunology and Microbiology" +13100;21100254589;"Clinical Liver Disease";journal;"20462484";"Wolters Kluwer Medknow Publications";No;No;0,446;Q3;37;0;347;0;445;326;1,27;0,00;0,00;0;United States;Northern America;"Wolters Kluwer Medknow Publications";"2013-2024";"Hepatology (Q3)";"Medicine" +13101;30014;"Journal of Motor Behavior";journal;"00222895, 19401027";"Routledge";No;No;0,446;Q3;85;68;188;3639;308;188;1,56;53,51;37,50;0;United States;Northern America;"Routledge";"1969-2026";"Biophysics (Q3); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Orthopedics and Sports Medicine (Q3); Sports Science (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Neuroscience; Psychology" +13102;19200156803;"Psihologija";journal;"14519283, 00485705";"Serbian Psychological Society";Yes;Yes;0,446;Q3;23;24;72;1560;115;72;1,83;65,00;62,16;0;Serbia;Eastern Europe;"Serbian Psychological Society";"2007-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +13103;5800207753;"English Language and Linguistics";journal;"13606743, 14694379";"Cambridge University Press";No;No;0,445;Q1;43;40;95;2357;88;92;0,72;58,93;49,23;0;United Kingdom;Western Europe;"Cambridge University Press";"1997-2026";"Linguistics and Language (Q1)";"Social Sciences" +13104;21743;"Journal of Wound, Ostomy and Continence Nursing";journal;"15283976, 10715754";"Lippincott Williams and Wilkins";No;No;0,445;Q1;67;98;272;1322;336;220;1,03;13,49;69,80;0;United States;Northern America;"Lippincott Williams and Wilkins";"1977-1979, 1982-2026";"Medical and Surgical Nursing (Q1); Advanced and Specialized Nursing (Q2)";"Nursing" +13105;56416;"Traditiones";journal;"18556396, 03520447";"Zalozba ZRC";Yes;Yes;0,445;Q1;12;19;61;1100;53;60;1,15;57,89;73,91;0;Slovenia;Eastern Europe;"Zalozba ZRC";"1982, 2011-2025";"Anthropology (Q1); Cultural Studies (Q1); Music (Q1)";"Arts and Humanities; Social Sciences" +13106;19900191852;"Advances in Civil Engineering";journal;"16878086, 16878094";"John Wiley and Sons Ltd";Yes;No;0,445;Q2;66;289;1276;12668;3156;1275;1,99;43,83;29,67;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Civil and Structural Engineering (Q2)";"Engineering" +13107;27627;"Creative Nursing";journal;"10784535";"SAGE Publications Inc.";No;No;0,445;Q2;20;60;135;1746;232;116;2,05;29,10;82,57;0;United States;Northern America;"SAGE Publications Inc.";"1994-2026";"Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +13108;22171;"Genetica";journal;"00166707, 15736857";"Springer Science and Business Media Deutschland GmbH";No;No;0,445;Q2;98;34;78;2092;157;76;2,12;61,53;43,71;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1919-1941, 1943, 1949-1951, 1953, 1955-1957, 1959-1960, 1962-2026";"Animal Science and Zoology (Q2); Insect Science (Q2); Plant Science (Q2); Genetics (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +13109;5800179624;"Geomechanics and Geoengineering";journal;"17486033, 17486025";"Taylor and Francis Ltd.";No;No;0,445;Q2;43;85;233;4421;519;223;1,80;52,01;20,63;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +13110;21100935763;"Health Systems";journal;"20476973, 20476965";"Taylor and Francis Inc.";No;No;0,445;Q2;24;28;72;1669;203;69;3,19;59,61;34,04;0;United States;Northern America;"Taylor and Francis Inc.";"2012-2026";"Information Systems (Q2); Computer Science Applications (Q3); Health Informatics (Q3); Health Information Management (Q3); Health Policy (Q3); Human-Computer Interaction (Q3); Management Science and Operations Research (Q3)";"Computer Science; Decision Sciences; Health Professions; Medicine" +13111;21101198699;"iLIVER";journal;"27729478";"Elsevier Ltd";Yes;No;0,445;Q2;8;45;107;1895;177;91;1,96;42,11;38,99;0;United Kingdom;Western Europe;"Elsevier Ltd";"2022-2026";"Dentistry (miscellaneous) (Q2); Hepatology (Q3)";"Dentistry; Medicine" +13112;13088;"International Journal of Applied Ceramic Technology";journal;"1546542X, 17447402";"Wiley-Blackwell";No;No;0,445;Q2;80;388;1006;17226;2801;1000;2,80;44,40;30,96;0;United States;Northern America;"Wiley-Blackwell";"2004-2026";"Ceramics and Composites (Q2); Condensed Matter Physics (Q2); Materials Chemistry (Q2); Marketing (Q3)";"Business, Management and Accounting; Materials Science; Physics and Astronomy" +13113;14757;"International Journal of Health Care Quality Assurance";journal;"09526862";"Emerald Publishing";No;No;0,445;Q2;62;50;9;2330;38;9;4,00;46,60;40,97;0;United Kingdom;Western Europe;"Emerald Publishing";"1988-2026";"Business, Management and Accounting (miscellaneous) (Q2); Health Policy (Q3)";"Business, Management and Accounting; Medicine" +13114;11200153520;"International Journal of Numerical Analysis and Modeling";journal;"17055105";"University of Alberta";No;No;0,445;Q2;37;38;117;1451;122;116;0,99;38,18;30,11;0;Canada;Northern America;"University of Alberta";"2004-2026";"Numerical Analysis (Q2)";"Mathematics" +13115;21101038907;"JBI Evidence Implementation";journal;"26913321";"Wolters Kluwer Health";No;No;0,445;Q2;52;50;180;1710;258;167;1,37;34,20;68,95;0;United States;Northern America;"Wolters Kluwer Health";"2020-2026";"Nursing (miscellaneous) (Q2); Internal Medicine (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing" +13116;144950;"Journal of Geophysics and Engineering";journal;"17422140, 17422132";"Oxford University Press";Yes;No;0,445;Q2;57;140;319;5497;690;317;2,10;39,26;28,13;0;United Kingdom;Western Europe;"Oxford University Press";"2004-2026";"Geology (Q2); Geophysics (Q2); Industrial and Manufacturing Engineering (Q2); Management, Monitoring, Policy and Law (Q3)";"Earth and Planetary Sciences; Engineering; Environmental Science" +13117;21101244191;"Palaeoentomology";journal;"26242834, 26242826";"Magnolia Press";No;No;0,445;Q2;17;72;223;3086;315;181;1,58;42,86;28,66;0;New Zealand;Pacific Region;"Magnolia Press";"2020-2025";"Ecology (Q2); Insect Science (Q2); Paleontology (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +13118;21100837274;"Physical Therapy Reviews";journal;"10833196, 1743288X";"Taylor and Francis Ltd.";No;No;0,445;Q2;42;54;92;3062;138;90;1,58;56,70;42,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3)";"Health Professions; Medicine" +13119;23484;"Polity";journal;"17441684, 00323497";"University of Chicago Press";No;No;0,445;Q2;38;50;157;591;148;102;0,77;11,82;44,44;1;United States;Northern America;"University of Chicago Press";"1995-2026";"Sociology and Political Science (Q2)";"Social Sciences" +13120;21100904322;"Research Journal of Textile and Apparel";journal;"15606074, 25158090";"Emerald Group Publishing Ltd.";No;No;0,445;Q2;29;116;132;5696;421;131;3,41;49,10;45,35;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1997-2026";"Business and International Management (Q2); Industrial and Manufacturing Engineering (Q2); Management of Technology and Innovation (Q2); Materials Science (miscellaneous) (Q3)";"Business, Management and Accounting; Engineering; Materials Science" +13121;21101083109;"SN Computer Science";journal;"2662995X, 26618907";"Springer";No;No;0,445;Q2;65;1025;2513;45346;8133;2512;3,15;44,24;31,43;0;Singapore;Asiatic Region;"Springer";"2020-2026";"Computational Theory and Mathematics (Q2); Computer Graphics and Computer-Aided Design (Q2); Computer Networks and Communications (Q2); Computer Science (miscellaneous) (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3)";"Computer Science" +13122;20799;"Transport";journal;"16484142, 16483480";"Vilnius Gediminas Technical University";Yes;No;0,445;Q2;45;22;77;1248;222;76;3,49;56,73;34,52;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"1980-1992, 2002-2025";"Automotive Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +13123;19735;"Indian Journal of Microbiology";journal;"00468991, 09737715";"Springer";No;No;0,445;Q3;72;200;329;13793;855;322;2,64;68,97;42,67;0;India;Asiatic Region;"Springer";"1973-1982, 1996-2026";"Microbiology (Q3)";"Immunology and Microbiology" +13124;19700170615;"Journal of Integrative Bioinformatics";journal;"16134516";"De Gruyter Open Ltd";Yes;No;0,445;Q3;30;16;70;0;149;65;2,00;0,00;28,17;0;Germany;Western Europe;"De Gruyter Open Ltd";"2008-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +13125;21100244929;"Leibniz International Proceedings in Informatics, LIPIcs";conference and proceedings;"18688969";"Schloss Dagstuhl- Leibniz-Zentrum fur Informatik GmbH, Dagstuhl Publishing";Yes;No;0,445;-;58;1754;4711;56044;4375;4488;0,88;31,95;17,94;0;Germany;Western Europe;"Schloss Dagstuhl- Leibniz-Zentrum fur Informatik GmbH, Dagstuhl Publishing";"2008-2025";"Logic; Software";"Computer Science; Mathematics" +13126;21101185951;"Construction Materials and Products";journal;"26187183";"Belgorod V G Shukhov State Technology University";No;No;0,444;Q1;13;62;128;1902;311;128;3,08;30,68;43,48;0;Russian Federation;Eastern Europe;"Belgorod V G Shukhov State Technology University";"2022-2026";"Architecture (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +13127;21100843365;"Indonesian Journal of Islam and Muslim Societies";journal;"2406825X, 20891490";"Pascasarjana Universitas Islam Negeri (UIN) Salatiga";Yes;No;0,444;Q1;18;14;47;673;71;47;1,32;48,07;23,33;0;Indonesia;Asiatic Region;"Pascasarjana Universitas Islam Negeri (UIN) Salatiga";"2011-2025";"Religious Studies (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +13128;26802;"International Journal of Speech Technology";journal;"13812416, 15728110";"Springer Netherlands";No;No;0,444;Q1;47;60;238;2697;698;238;3,04;44,95;37,30;0;Netherlands;Western Europe;"Springer Netherlands";"1995, 1997-2026";"Linguistics and Language (Q1); Computer Vision and Pattern Recognition (Q2); Human-Computer Interaction (Q3); Software (Q3)";"Computer Science; Social Sciences" +13129;21100286926;"Religions";journal;"20771444";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,444;Q1;48;1589;4337;79829;3933;4236;0,81;50,24;36,87;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2026";"Religious Studies (Q1)";"Arts and Humanities" +13130;12100156147;"Sport in History";journal;"17460271, 17460263";"Routledge";No;No;0,444;Q1;24;36;75;1596;69;74;0,84;44,33;26,19;0;United Kingdom;Western Europe;"Routledge";"2003-2025";"History (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q2)";"Arts and Humanities; Health Professions" +13131;21101021170;"Acta Biologica Sibirica";journal;"24121908";"Altai State University";Yes;No;0,444;Q2;10;99;248;3852;272;247;1,10;38,91;40,56;0;Russian Federation;Eastern Europe;"Altai State University";"2019-2026";"Animal Science and Zoology (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2); Nature and Landscape Conservation (Q2); Plant Science (Q2); Global and Planetary Change (Q3)";"Agricultural and Biological Sciences; Environmental Science" +13132;21100824974;"African Journal of Laboratory Medicine";journal;"22252002, 22252010";"AOSIS (Pty) Ltd";Yes;Yes;0,444;Q2;21;51;127;1678;206;119;1,29;32,90;39,27;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2014, 2016-2026";"Medical Laboratory Technology (Q2); Clinical Biochemistry (Q3); Public Health, Environmental and Occupational Health (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +13133;19700175229;"Analytical Methods";journal;"17599679, 17599660";"Royal Society of Chemistry";No;No;0,444;Q2;112;810;2078;37780;6163;2076;2,94;46,64;43,12;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2009-2026";"Chemical Engineering (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Analytical Chemistry (Q3)";"Chemical Engineering; Chemistry; Engineering" +13134;21100933828;"Australian Journal of General Practice";journal;"2208794X, 22087958";"Royal Australian College of General Practitioners";No;No;0,444;Q2;61;196;544;3221;712;496;1,21;16,43;56,94;0;Australia;Pacific Region;"Royal Australian College of General Practitioners";"2018-2026";"Family Practice (Q2)";"Medicine" +13135;25799;"Biopolymers";journal;"00063525, 10970282";"John Wiley and Sons Inc";No;No;0,444;Q2;147;93;101;6599;272;100;2,71;70,96;48,02;0;United States;Northern America;"John Wiley and Sons Inc";"1963-2026";"Organic Chemistry (Q2); Biochemistry (Q3); Biomaterials (Q3); Biophysics (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Medicine" +13136;28682;"British Journal of Occupational Therapy";journal;"03080226, 14776006";"SAGE Publications Inc.";No;No;0,444;Q2;58;103;283;3836;417;247;1,45;37,24;71,30;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1974-1976, 1996-2026";"Occupational Therapy (Q2)";"Health Professions" +13137;21574;"Emu";journal;"14485540, 01584197";"Taylor and Francis Ltd.";No;No;0,444;Q2;50;44;94;2135;125;89;1,41;48,52;40,59;0;Australia;Pacific Region;"Taylor and Francis Ltd.";"1901-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13138;3300147411;"Home Health Care Management and Practice";journal;"15526739, 10848223";"SAGE Publications Inc.";No;No;0,444;Q2;27;64;101;2319;149;101;1,54;36,23;55,48;1;United States;Northern America;"SAGE Publications Inc.";"1988-2026";"Community and Home Care (Q2); Leadership and Management (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing" +13139;144698;"International Journal of Simulation Modelling";journal;"17264529, 19968566";"DAAAM International Vienna";No;No;0,444;Q2;39;60;183;1503;443;182;2,68;25,05;33,88;0;Austria;Western Europe;"DAAAM International Vienna";"2005-2025";"Modeling and Simulation (Q2); Computer Science Applications (Q3)";"Computer Science; Mathematics" +13140;19800188068;"International Journal of Spray and Combustion Dynamics";journal;"17568277, 17568285";"SAGE Publications Inc.";Yes;No;0,444;Q2;26;8;60;261;87;58;1,21;32,63;29,63;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2011-2026";"Automotive Engineering (Q2); Physics and Astronomy (miscellaneous) (Q2); Energy Engineering and Power Technology (Q3)";"Energy; Engineering; Physics and Astronomy" +13141;17800156703;"Journal of Empirical Research on Human Research Ethics";journal;"15562646, 15562654";"SAGE Publications Inc.";No;No;0,444;Q2;46;45;104;1691;200;98;1,82;37,58;50,00;0;United States;Northern America;"SAGE Publications Inc.";"2007, 2009-2026";"Communication (Q2); Education (Q2); Law (Q2); Medicine (miscellaneous) (Q3); Social Psychology (Q3)";"Medicine; Psychology; Social Sciences" +13142;21100970311;"Journal of Nondestructive Evaluation, Diagnostics and Prognostics of Engineering Systems";journal;"25723901, 25723898";"The American Society of Mechanical Engineers(ASME)";No;No;0,444;Q2;20;31;84;1151;181;84;2,41;37,13;25,00;0;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"2018-2026";"Civil and Structural Engineering (Q2); Mechanics of Materials (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering" +13143;21100802686;"Risk, Hazards and Crisis in Public Policy";journal;"19444079";"John Wiley & Sons Inc.";No;No;0,444;Q2;31;72;60;5174;170;54;2,68;71,86;45,35;1;United States;Northern America;"John Wiley & Sons Inc.";"2010-2026";"Public Administration (Q2)";"Social Sciences" +13144;11700154503;"Symmetry, Integrability and Geometry: Methods and Applications (SIGMA)";journal;"18150659";"Institute of Mathematics";Yes;Yes;0,444;Q2;45;105;321;3776;326;321;1,07;35,96;16,57;0;Ukraine;Eastern Europe;"Institute of Mathematics";"2005-2026";"Geometry and Topology (Q2); Analysis (Q3); Mathematical Physics (Q3)";"Mathematics" +13145;20049;"Behavioural Pharmacology";journal;"14735849, 09558810";"Lippincott Williams and Wilkins";No;No;0,444;Q3;92;65;146;3322;253;145;1,47;51,11;50,16;0;United States;Northern America;"Lippincott Williams and Wilkins";"1992-2026";"Pharmacology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +13146;7200153133;"Clinica e Investigacion en Arteriosclerosis";journal;"02149168, 15781879";"Sociedad Espanola de Arteriosclerosis";No;No;0,444;Q3;26;55;126;2384;214;126;1,71;43,35;46,20;0;Spain;Western Europe;"Sociedad Espanola de Arteriosclerosis";"2007-2026";"Cardiology and Cardiovascular Medicine (Q3); Pharmacology (medical) (Q3)";"Medicine" +13147;21101311863;"Dystonia";journal;"28132106";"Frontiers Media SA";Yes;No;0,444;Q3;8;21;54;1335;78;51;1,42;63,57;52,38;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Cognitive Neuroscience (Q3); Neurology (Q3); Neuroscience (miscellaneous) (Q3); Cellular and Molecular Neuroscience (Q4)";"Neuroscience" +13148;20109;"Macroeconomic Dynamics";journal;"14698056, 13651005";"Cambridge University Press";No;No;0,444;Q3;55;99;293;5490;332;293;1,13;55,45;22,97;0;United Kingdom;Western Europe;"Cambridge University Press";"1997-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +13149;21100798106;"International Journal of Tourism Anthropology";journal;"17590450, 17590442";"Inderscience";No;No;0,443;Q1;10;5;17;269;39;17;2,83;53,80;22,22;0;United Kingdom;Western Europe;"Inderscience";"2010, 2016-2025";"Anthropology (Q1); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +13150;24747;"Modern Asian Studies";journal;"0026749X, 14698099";"Cambridge University Press";No;No;0,443;Q1;57;25;210;3150;220;208;0,89;126,00;45,71;0;United Kingdom;Western Europe;"Cambridge University Press";"1967-2026";"History (Q1); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +13151;12444;"Aeronautical Journal";journal;"20596464, 00019240";"Cambridge University Press";No;No;0,443;Q2;57;205;345;8492;825;340;2,04;41,42;18,36;0;United Kingdom;Western Europe;"Cambridge University Press";"1969-1992, 1994-2026";"Aerospace Engineering (Q2)";"Engineering" +13152;17121;"American Journal of Veterinary Research";journal;"19435681, 00029645";"American Veterinary Medical Association";Yes;No;0,443;Q2;109;345;642;10026;838;542;1,25;29,06;53,28;0;United States;Northern America;"American Veterinary Medical Association";"1945-1947, 1949-2026";"Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +13153;27489;"Asian Geographer";journal;"10225706, 21581762";"Routledge";No;No;0,443;Q2;17;10;31;752;86;31;2,90;75,20;21,05;0;United Kingdom;Western Europe;"Routledge";"1982-1987, 1991-1995, 2015-2026";"Geography, Planning and Development (Q2)";"Social Sciences" +13154;21101066040;"Asia-Pacific Science Education";journal;"23641177";"Brill Academic Publishers";Yes;No;0,443;Q2;17;16;50;875;79;44;1,64;54,69;68,75;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2025";"Education (Q2)";"Social Sciences" +13155;13051;"Education for Primary Care";journal;"14739879, 1475990X";"Taylor and Francis Ltd.";No;No;0,443;Q2;27;62;170;1155;168;124;1,05;18,63;63,69;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Family Practice (Q2); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +13156;21101059746;"IEEE Open Journal of Nanotechnology";journal;"26441292";"Institute of Electrical and Electronics Engineers Inc.";Yes;No;0,443;Q2;15;21;70;766;239;67;3,26;36,48;17,07;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020-2026";"Electrical and Electronic Engineering (Q2); Materials Chemistry (Q2); Computer Science Applications (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Computer Science; Engineering; Materials Science" +13157;21100872775;"International Journal of Vehicle Performance";journal;"17453194, 17453208";"Inderscience Enterprises Ltd";No;No;0,443;Q2;16;20;62;813;148;61;2,63;40,65;30,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2013-2025";"Automotive Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Modeling and Simulation (Q2); Safety, Risk, Reliability and Quality (Q2); Computer Science Applications (Q3); Fuel Technology (Q3)";"Computer Science; Energy; Engineering; Mathematics" +13158;21101220011;"Interventional Pain Medicine";journal;"27725944";"Elsevier B.V.";No;No;0,443;Q2;9;132;246;2532;359;190;1,59;19,18;23,72;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +13159;31004;"Journal of Agricultural Science";journal;"00218596, 14695146";"Cambridge University Press";Yes;No;0,443;Q2;93;62;187;3986;416;183;2,07;64,29;27,57;0;United Kingdom;Western Europe;"Cambridge University Press";"1905-2026";"Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +13160;21100905384;"Journal of Microbiology and Biology Education";journal;"19357877, 19357885";"American Society for Microbiology";Yes;No;0,443;Q2;26;122;254;3492;461;250;1,57;28,62;66,21;0;United States;Northern America;"American Society for Microbiology";"2010, 2013, 2016-2017, 2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Education (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Social Sciences" +13161;21101159024;"Journal of Optical Microsystems";journal;"27085260";"SPIE";No;No;0,443;Q2;10;21;69;591;142;61;2,22;28,14;23,26;0;United States;Northern America;"SPIE";"2021-2025";"Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +13162;14596;"Palynology";journal;"01916122";"Taylor and Francis Ltd.";No;No;0,443;Q2;41;52;156;4493;239;149;1,60;86,40;43,35;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-2026";"Paleontology (Q2)";"Earth and Planetary Sciences" +13163;39594;"Stochastics";journal;"17442516, 17442508";"Gordon and Breach Science Publishers";No;No;0,443;Q2;32;74;163;2116;158;163;1,01;28,59;34,04;0;Switzerland;Western Europe;"Gordon and Breach Science Publishers";"1975, 1979-1984, 2007-2026";"Modeling and Simulation (Q2); Statistics and Probability (Q3)";"Mathematics" +13164;26508;"Synthesis (Germany)";journal;"1437210X, 00397881";"Georg Thieme Verlag";No;No;0,443;Q2;163;309;1248;18781;2358;1227;1,81;60,78;31,71;0;Germany;Western Europe;"Georg Thieme Verlag";"1970-2026";"Organic Chemistry (Q2); Catalysis (Q3)";"Chemical Engineering; Chemistry" +13165;21101190207;"Tourism and Hospitality";journal;"26735768";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,443;Q2;21;278;181;19760;622;176;3,25;71,08;45,82;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +13166;18031;"Wind and Structures, An International Journal";journal;"15986225, 12266116";"Techno-Press";No;No;0,443;Q2;54;62;192;2733;344;191;1,93;44,08;20,28;0;South Korea;Asiatic Region;"Techno-Press";"1998-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Modeling and Simulation (Q2)";"Engineering; Mathematics" +13167;19341;"Actas Urologicas Espanolas";journal;"16997980, 02104806";"Elsevier Ltd";No;No;0,443;Q3;32;115;280;2597;355;251;1,37;22,58;30,16;0;Spain;Western Europe;"Elsevier Ltd";"1977-2026";"Urology (Q3)";"Medicine" +13168;21100780466;"American Journal of Ophthalmology Case Reports";journal;"24519936";"Elsevier Inc.";Yes;No;0,443;Q3;29;255;987;4483;1107;984;0,98;17,58;38,47;0;United States;Northern America;"Elsevier Inc.";"2016-2026";"Ophthalmology (Q3)";"Medicine" +13169;21100197949;"Interventional Cardiology Clinics";journal;"22117458, 22117466";"Elsevier Inc.";No;No;0,443;Q3;25;61;174;2531;176;141;1,02;41,49;34,71;0;United States;Northern America;"Elsevier Inc.";"2012-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +13170;21100976869;"Medical Hypothesis, Discovery, and Innovation in Ophthalmology";journal;"23224436, 23223219";"International Virtual Ophthalmic Research Center";Yes;No;0,443;Q3;16;24;73;1601;141;69;2,29;66,71;31,11;0;United States;Northern America;"International Virtual Ophthalmic Research Center";"2019-2025";"Ophthalmology (Q3); Optometry (Q3)";"Health Professions; Medicine" +13171;18369;"Medicina Clinica";journal;"00257753, 15788989";"Ediciones Doyma, S.L.";No;No;0,443;Q3;76;384;1092;6915;1240;703;1,19;18,01;51,46;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"1948, 1960-1965, 1973-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +13172;5300152225;"Nordic Psychology";journal;"19040016, 19012276";"Routledge";Yes;No;0,443;Q3;29;39;85;1858;120;73;1,24;47,64;45,54;2;United Kingdom;Western Europe;"Routledge";"2006-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +13173;16077;"Journal of Biomolecular Techniques";journal;"15240215, 19434731";"Association of Biomolecular Resource Facilities";Yes;No;0,443;Q4;56;21;41;235;47;40;1,35;11,19;47,37;0;United States;Northern America;"Association of Biomolecular Resource Facilities";"1999-2025";"Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +13174;21100243809;"Procedia CIRP";conference and proceedings;"22128271";"Elsevier B.V.";No;No;0,443;-;125;869;3416;20396;7151;3375;1,90;23,47;21,65;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Control and Systems Engineering; Industrial and Manufacturing Engineering";"Engineering" +13175;21100223537;"European Journal of Hospital Pharmacy";journal;"20479956, 20479964";"European Association of Hospital Pharmacists (EAHP)";No;No;0,442;Q1;31;186;372;3601;524;294;1,32;19,36;59,53;2;Belgium;Western Europe;"European Association of Hospital Pharmacists (EAHP)";"2010, 2012-2026";"Pharmacy (Q1)";"Health Professions" +13176;17600155397;"International Journal of Design";journal;"1994036X, 19913761";"Chinese Institute of Design";Yes;No;0,442;Q1;59;19;57;1405;213;57;2,68;73,95;64,71;0;Taiwan;Asiatic Region;"Chinese Institute of Design";"2007-2025";"Visual Arts and Performing Arts (Q1); Computer Graphics and Computer-Aided Design (Q2); Industrial and Manufacturing Engineering (Q2); Computer Science Applications (Q3); Marketing (Q3); Strategy and Management (Q3)";"Arts and Humanities; Business, Management and Accounting; Computer Science; Engineering" +13177;17687;"Avian Diseases";journal;"00052086";"American Association of Avian Pathologists";No;No;0,442;Q2;96;59;164;2821;307;160;1,81;47,81;45,96;0;United States;Northern America;"American Association of Avian Pathologists";"1963, 1965-2025";"Animal Science and Zoology (Q2); Food Animals (Q2); Immunology and Microbiology (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology; Veterinary" +13178;29437;"Coloration Technology";journal;"14784408, 14723581";"Wiley-Blackwell";No;No;0,442;Q2;66;107;176;5522;550;174;3,33;51,61;48,67;0;United States;Northern America;"Wiley-Blackwell";"2001-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3)";"Chemical Engineering; Chemistry; Materials Science" +13179;4700152426;"Current Pharmaceutical Analysis";journal;"1875676X, 15734129";"KeAi Communications Co.";No;No;0,442;Q2;32;79;208;4162;553;200;3,73;52,68;42,35;0;China;Asiatic Region;"KeAi Communications Co.";"2006-2026";"Pharmaceutical Science (Q2); Biochemistry (Q3); Biophysics (Q3); Molecular Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +13180;21101203739;"Food Materials Research";journal;"27714683";"Maximum Academic Press";Yes;No;0,442;Q2;11;25;92;1575;249;92;2,79;63,00;42,86;0;United States;Northern America;"Maximum Academic Press";"2021-2026";"Food Science (Q2)";"Agricultural and Biological Sciences" +13181;22623;"Geochemical Journal";journal;"00167002";"The Physiological Society of Japan";No;No;0,442;Q2;73;22;65;1115;90;65;1,26;50,68;22,33;0;Japan;Asiatic Region;"The Physiological Society of Japan";"1966-2025";"Geochemistry and Petrology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +13182;13371;"HEC Forum";journal;"09562737, 15728498";"Springer Netherlands";No;No;0,442;Q2;32;41;79;1850;169;78;2,13;45,12;51,85;0;Netherlands;Western Europe;"Springer Netherlands";"1989-2026";"Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2); Health Policy (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Nursing; Social Sciences" +13183;26672;"International Journal of Ambient Energy";journal;"21628246, 01430750";"Taylor and Francis Ltd.";No;No;0,442;Q2;52;168;1261;9303;3524;1261;3,05;55,38;20,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2026";"Building and Construction (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering" +13184;11800154542;"International Journal of Computers, Communications and Control";journal;"18419836, 18419844";"Agora University";Yes;No;0,442;Q2;46;59;181;2088;473;181;2,82;35,39;20,93;0;Romania;Eastern Europe;"Agora University";"2007-2026";"Computational Theory and Mathematics (Q2); Computer Networks and Communications (Q2); Computer Science Applications (Q3)";"Computer Science" +13185;21100456855;"International Review for Spatial Planning and Sustainable Development";journal;"21873666";"SPSD Press";No;No;0,442;Q2;19;63;175;3107;366;172;2,14;49,32;39,72;0;Japan;Asiatic Region;"SPSD Press";"2013-2026";"Geography, Planning and Development (Q2); Urban Studies (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +13186;22109;"Intervention in School and Clinic";journal;"10534512, 15384810";"SAGE Publications Ltd";No;No;0,442;Q2;44;33;148;946;244;141;1,58;28,67;74,36;1;United States;Northern America;"SAGE Publications Ltd";"1965-2026";"Education (Q2); Clinical Psychology (Q3); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +13187;22423;"Journal of Helminthology";journal;"0022149X, 14752697";"Cambridge University Press";Yes;No;0,442;Q2;62;141;281;8493;524;280;2,03;60,23;46,39;0;United Kingdom;Western Europe;"Cambridge University Press";"1923-1943, 1945-2026";"Animal Science and Zoology (Q2); Medicine (miscellaneous) (Q3); Parasitology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +13188;17624;"Journal of Plant Biochemistry and Biotechnology";journal;"09741275, 09717811";"Springer";No;No;0,442;Q2;43;99;226;6753;525;218;2,51;68,21;39,82;0;India;Asiatic Region;"Springer";"1992-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2); Biotechnology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +13189;23588;"Journal of Real Estate Research";journal;"26911175, 08965803";"Taylor and Francis Ltd.";No;No;0,442;Q2;41;35;64;1846;103;63;1,56;52,74;21,95;1;United States;Northern America;"Taylor and Francis Ltd.";"1990, 1992, 1995, 1998, 2001, 2003-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q2); Urban Studies (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +13190;18317;"Journal of Veterinary Medical Education";journal;"0748321X";"University of Toronto Press";No;No;0,442;Q2;50;90;299;2392;327;286;0,85;26,58;61,81;0;Canada;Northern America;"University of Toronto Press";"1996-1998, 2000-2026";"Education (Q2); Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences; Veterinary" +13191;21100432452;"Materials Research Express";journal;"20531591";"IOP Publishing Ltd.";Yes;No;0,442;Q2;86;463;2232;21932;6025;2228;2,68;47,37;28,32;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2014-2025";"Metals and Alloys (Q2); Polymers and Plastics (Q2); Surfaces, Coatings and Films (Q2); Biomaterials (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science" +13192;21100248806;"Metallography, Microstructure, and Analysis";journal;"21929262, 21929270";"Springer Science + Business Media";Yes;No;0,442;Q2;36;119;286;3733;514;236;1,73;31,37;26,73;0;United States;Northern America;"Springer Science + Business Media";"2012-2026";"Metals and Alloys (Q2)";"Materials Science" +13193;25330;"Rationality and Society";journal;"14617358, 10434631";"SAGE Publications Ltd";No;No;0,442;Q2;56;19;58;988;103;58;2,03;52,00;25,81;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1989-2026";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +13194;20570;"Chemotherapy";journal;"00093157, 14219794";"S. Karger AG";No;No;0,442;Q3;64;21;89;822;124;87;1,10;39,14;44,80;0;Switzerland;Western Europe;"S. Karger AG";"1960-2025";"Drug Discovery (Q3); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Oncology (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +13195;22211;"Genome";journal;"14803321, 08312796";"Canadian Science Publishing";No;No;0,442;Q3;113;64;125;4546;225;121;1,81;71,03;41,51;0;Canada;Northern America;"Canadian Science Publishing";"1987-2026";"Biotechnology (Q3); Genetics (Q3); Medicine (miscellaneous) (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13196;19900191484;"China Perspectives";journal;"19964617, 20703449";"French Centre for Research on Contemporary China";No;No;0,441;Q1;33;31;94;1226;124;81;1,14;39,55;40,63;0;Hong Kong;Asiatic Region;"French Centre for Research on Contemporary China";"2007-2025";"Cultural Studies (Q1); Geography, Planning and Development (Q2); Political Science and International Relations (Q2)";"Social Sciences" +13197;13701;"Folia Phoniatrica et Logopaedica";journal;"14219972, 10217762";"S. Karger AG";No;No;0,441;Q1;60;88;132;4320;243;131;1,61;49,09;59,56;0;Switzerland;Western Europe;"S. Karger AG";"1949-1956, 1958-2026";"Linguistics and Language (Q1); LPN and LVN (Q2); Speech and Hearing (Q2)";"Health Professions; Nursing; Social Sciences" +13198;15887;"Journal of Urban History";journal;"15526771, 00961442";"SAGE Publications Inc.";No;No;0,441;Q1;37;103;193;6012;175;189;0,81;58,37;43,31;0;United States;Northern America;"SAGE Publications Inc.";"1974-2026";"History (Q1); Sociology and Political Science (Q2); Urban Studies (Q2)";"Arts and Humanities; Social Sciences" +13199;21100828755;"Queensland Archaeological Research";journal;"1839339X, 08143021";"James Cook University";No;No;0,441;Q1;7;0;8;0;8;8;0,50;0,00;0,00;0;Australia;Pacific Region;"James Cook University";"2014-2020, 2022-2024";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +13200;21100456774;"Scientia et Fides";journal;"23007648, 23535636";"";Yes;Yes;0,441;Q1;11;26;76;915;62;74;0,74;35,19;13,33;0;Poland;Eastern Europe;"";"2013-2025";"Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities" +13201;21101140352;"Advanced Physical Research";journal;"26638436";"Jomard Publishing";No;No;0,441;Q2;12;43;73;1144;102;73;1,71;26,60;41,60;0;Azerbaijan;Eastern Europe;"Jomard Publishing";"2019-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Radiation (Q2); Electronic, Optical and Magnetic Materials (Q3); Statistical and Nonlinear Physics (Q3)";"Materials Science; Physics and Astronomy" +13202;18003;"Advanced Robotics";journal;"01691864, 15685535";"Taylor and Francis Ltd.";No;No;0,441;Q2;81;122;348;4593;708;324;1,89;37,65;19,26;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2026";"Control and Systems Engineering (Q2); Computer Science Applications (Q3); Hardware and Architecture (Q3); Human-Computer Interaction (Q3); Software (Q3)";"Computer Science; Engineering" +13203;21411;"Anaesthesia and Intensive Care";journal;"0310057X, 14480271";"Australian Society of Anaesthetists";No;No;0,441;Q2;77;87;200;1929;211;139;1,09;22,17;33,77;0;Australia;Pacific Region;"Australian Society of Anaesthetists";"1972-2026";"Anesthesiology and Pain Medicine (Q2); Critical Care and Intensive Care Medicine (Q2)";"Medicine" +13204;27454;"Composite Interfaces";journal;"09276440, 15685543";"Taylor and Francis Ltd.";No;No;0,441;Q2;63;139;230;7762;698;228;2,99;55,84;31,20;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Ceramics and Composites (Q2); Physics and Astronomy (miscellaneous) (Q2); Surfaces, Coatings and Films (Q2)";"Materials Science; Physics and Astronomy" +13205;23792;"Computer Journal";journal;"14602067, 00104620";"Oxford University Press";No;No;0,441;Q2;77;149;678;5973;1513;671;2,19;40,09;30,59;0;United Kingdom;Western Europe;"Oxford University Press";"1967-2026";"Computer Science (miscellaneous) (Q2)";"Computer Science" +13206;130039;"CrystEngComm";journal;"14668033";"Royal Society of Chemistry";No;No;0,441;Q2;168;664;2264;37234;5411;2257;2,32;56,08;34,38;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"1999-2000, 2002-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +13207;21101393933;"Data Science in Finance and Economics";journal;"27692140";"American Institute of Mathematical Sciences";No;No;0,441;Q2;11;22;72;1470;223;72;3,28;66,82;22,00;0;United States;Northern America;"American Institute of Mathematical Sciences";"2022-2026";"Decision Sciences (miscellaneous) (Q2); Finance (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3); Economics and Econometrics (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Computer Science; Decision Sciences; Economics, Econometrics and Finance; Mathematics" +13208;21100446423;"Ecological Genetics and Genomics";journal;"24059854";"Elsevier Inc.";No;No;0,441;Q2;18;119;201;6852;474;201;2,64;57,58;29,49;0;United States;Northern America;"Elsevier Inc.";"2016-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +13209;21100941066;"Frontiers in Applied Mathematics and Statistics";journal;"22974687";"Frontiers Media SA";Yes;No;0,441;Q2;29;101;418;3821;896;388;2,09;37,83;33,19;0;Switzerland;Western Europe;"Frontiers Media SA";"2015-2026";"Applied Mathematics (Q2); Statistics and Probability (Q3)";"Mathematics" +13210;21100204120;"Journal of Analytical Methods in Chemistry";journal;"20908873, 20908865";"John Wiley and Sons Ltd";Yes;No;0,441;Q2;49;25;150;890;448;150;2,38;35,60;46,84;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1999, 2012-2026";"Chemical Engineering (miscellaneous) (Q2); Instrumentation (Q2); Analytical Chemistry (Q3); Computer Science Applications (Q3)";"Chemical Engineering; Chemistry; Computer Science; Physics and Astronomy" +13211;21101019334;"Journal of Business Analytics";journal;"2573234X, 25732358";"Taylor and Francis Ltd.";No;No;0,441;Q2;15;29;48;1926;137;47;2,47;66,41;30,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2026";"Industrial and Manufacturing Engineering (Q2); Information Systems (Q2); Information Systems and Management (Q2); Management Information Systems (Q2); Artificial Intelligence (Q3); Management Science and Operations Research (Q3); Statistics, Probability and Uncertainty (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering" +13212;6100152803;"Micro and Nano Letters";journal;"17500443";"John Wiley and Sons Inc";Yes;No;0,441;Q2;47;9;108;365;311;101;3,22;40,56;25,00;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2007-2026";"Condensed Matter Physics (Q2); Bioengineering (Q3); Biomedical Engineering (Q3); Materials Science (miscellaneous) (Q3); Nanoscience and Nanotechnology (Q3)";"Chemical Engineering; Engineering; Materials Science; Physics and Astronomy" +13213;21100833027;"Photonics";journal;"23046732";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,441;Q2;51;1241;3591;52320;8130;3566;2,28;42,16;30,95;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2014-2026";"Atomic and Molecular Physics, and Optics (Q2); Instrumentation (Q2); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine; Physics and Astronomy" +13214;24831;"Quantum Information Processing";journal;"15731332, 15700755";"Springer";No;No;0,441;Q2;85;394;1253;17356;2958;1246;2,33;44,05;31,20;1;United States;Northern America;"Springer";"2004-2026";"Electrical and Electronic Engineering (Q2); Modeling and Simulation (Q2); Electronic, Optical and Magnetic Materials (Q3); Signal Processing (Q3); Statistical and Nonlinear Physics (Q3); Theoretical Computer Science (Q3)";"Computer Science; Engineering; Materials Science; Mathematics; Physics and Astronomy" +13215;22964;"Quintessence International";journal;"19367163, 00336572";"Quintessenz Verlags-GmbH";No;No;0,441;Q2;84;104;279;3366;413;247;1,36;32,37;42,23;0;United States;Northern America;"Quintessenz Verlags-GmbH";"1969-2026";"Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Dentistry; Medicine" +13216;21100790817;"Tijdschrift voor Entomologie";journal;"00407496, 22119434";"Brill Academic Publishers";No;No;0,441;Q2;21;1;17;51;12;14;0,55;51,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1998-2025";"Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +13217;21100451564;"Translational Research in Anatomy";journal;"2214854X";"Elsevier GmbH";Yes;No;0,441;Q2;18;90;192;3515;275;188;1,58;39,06;41,55;0;Germany;Western Europe;"Elsevier GmbH";"2015-2026";"Anatomy (Q2)";"Medicine" +13218;22396;"Acta Myologica";journal;"25321900, 11282460";"Pacini Editore Srl";Yes;No;0,441;Q3;41;27;65;608;94;62;1,19;22,52;57,63;0;Italy;Western Europe;"Pacini Editore Srl";"1997-2025";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +13219;67314;"Annals of Dermatology";journal;"10139087, 20053894";"Korean Dermatological Association";Yes;No;0,441;Q3;56;48;330;1767;405;282;1,23;36,81;42,19;0;South Korea;Asiatic Region;"Korean Dermatological Association";"1989-1996, 2008-2026";"Dermatology (Q3)";"Medicine" +13220;19600166028;"BMC Research Notes";journal;"17560500";"BioMed Central Ltd";Yes;No;0,441;Q3;107;506;1139;15744;2338;1059;1,69;31,11;46,04;1;United Kingdom;Western Europe;"BioMed Central Ltd";"2008-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13221;20919;"Journal of Microscopy";journal;"00222720, 13652818";"Wiley-Blackwell Publishing Ltd";No;No;0,441;Q3;130;124;253;5563;471;238;1,87;44,86;35,73;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1969-2026";"Histology (Q3); Pathology and Forensic Medicine (Q3)";"Medicine" +13222;21101062346;"LHB: Hydroscience Journal";journal;"27678490";"Taylor and Francis Ltd.";Yes;No;0,441;Q3;23;12;87;402;119;83;1,04;33,50;23,21;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2021-2026";"Water Science and Technology (Q3)";"Environmental Science" +13223;25207;"Archive for Mathematical Logic";journal;"14320665, 09335846";"Springer New York";No;No;0,440;Q1;34;54;148;1146;74;148;0,49;21,22;14,29;0;United States;Northern America;"Springer New York";"1988-2026";"Philosophy (Q1); Logic (Q2)";"Arts and Humanities; Mathematics" +13224;13350;"Alcheringa";journal;"03115518, 17520754";"Taylor and Francis Ltd.";No;No;0,440;Q2;40;40;104;3931;131;95;1,19;98,28;25,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1975-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Paleontology (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +13225;21101275455;"Astronomy";journal;"26740346";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,440;Q2;8;26;56;1416;93;53;1,75;54,46;15,56;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +13226;21101062489;"Ceramics";journal;"25716131";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,440;Q2;25;155;361;8998;1076;361;3,01;58,05;34,12;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2018-2026";"Ceramics and Composites (Q2); Materials Science (miscellaneous) (Q3)";"Materials Science" +13227;21174;"Dongnan Daxue Xuebao (Ziran Kexue Ban)/Journal of Southeast University (Natural Science Edition)";journal;"10010505";"Southeast University";No;No;0,440;Q2;29;195;455;5235;850;455;2,10;26,85;29,15;0;China;Asiatic Region;"Southeast University";"2002-2025";"Engineering (miscellaneous) (Q2)";"Engineering" +13228;29908;"Families in Society";journal;"10443894, 19451350";"SAGE Publications Ltd";No;No;0,440;Q2;59;159;141;9789;240;129;1,82;61,57;68,35;2;United States;Northern America;"SAGE Publications Ltd";"1990, 1993, 1996-2026";"Social Sciences (miscellaneous) (Q2); Social Work (Q3)";"Social Sciences" +13229;130138;"International Journal on Document Analysis and Recognition";journal;"14332825, 14332833";"Springer Verlag";Yes;No;0,440;Q2;64;77;98;4005;269;95;2,48;52,01;23,81;0;Germany;Western Europe;"Springer Verlag";"1998-2026";"Computer Vision and Pattern Recognition (Q2); Computer Science Applications (Q3); Software (Q3)";"Computer Science" +13230;12479;"Journal of Engineering Design";journal;"14661837, 09544828";"Taylor and Francis Ltd.";Yes;No;0,440;Q2;68;171;146;10042;565;140;3,45;58,73;32,20;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-1985, 1990-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +13231;21101210861;"Journal of Postsecondary Student Success";journal;"27694887, 27694879";"Center for Postsecondary Success, Florida State University";Yes;Yes;0,440;Q2;8;20;60;1056;104;58;1,84;52,80;71,05;0;United States;Northern America;"Center for Postsecondary Success, Florida State University";"2021-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +13232;6700153289;"Journal of Volcanology and Seismology";journal;"07420463, 18197108";"Pleiades Publishing";No;No;0,440;Q2;23;69;118;2308;121;118;0,92;33,45;36,81;0;United States;Northern America;"Pleiades Publishing";"2007-2025";"Geochemistry and Petrology (Q2); Geology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +13233;19700175275;"Mental Health and Social Inclusion";journal;"20428308, 20428316";"Emerald Publishing";No;No;0,440;Q2;25;121;221;4600;419;207;2,02;38,02;47,86;0;United Kingdom;Western Europe;"Emerald Publishing";"2010-2026";"Health (social science) (Q2); Psychiatry and Mental Health (Q3)";"Medicine; Social Sciences" +13234;21084;"Physiological Entomology";journal;"03076962, 13653032";"Wiley-Blackwell Publishing Ltd";No;No;0,440;Q2;68;47;80;3021;170;79;2,09;64,28;43,72;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1976-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +13235;16621;"Plant Species Biology";journal;"0913557X, 14421984";"Wiley-Blackwell Publishing Ltd";No;No;0,440;Q2;44;52;93;2864;144;87;1,55;55,08;32,26;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1986-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13236;58834;"Schmalenbach Journal of Business Research";journal;"23666153, 03412687";"Springer Gabler";Yes;Yes;0,440;Q2;39;36;65;3676;188;61;2,41;102,11;40,50;0;Germany;Western Europe;"Springer Gabler";"1976, 2016-2025";"Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13237;21101300538;"Southern Power System Technology";journal;"16740629";"Editorial Department of Southern Power System Technology";No;No;0,440;Q2;10;196;193;5667;484;190;2,51;28,91;32,26;0;China;Asiatic Region;"Editorial Department of Southern Power System Technology";"2024-2025";"Electrical and Electronic Engineering (Q2)";"Engineering" +13238;20571;"Theoretical Computer Science";journal;"03043975";"Elsevier B.V.";No;No;0,440;Q2;139;385;1174;11618;1653;1156;1,42;30,18;25,34;0;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Computer Science (miscellaneous) (Q2); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +13239;21101041947;"Triple Helix";journal;"21971927";"Brill Academic Publishers";Yes;No;0,440;Q2;19;9;50;504;103;43;1,17;56,00;39,13;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Education (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +13240;19700175905;"Enzymes";book series;"18746047";"Elsevier B.V.";No;No;0,440;Q3;32;22;57;2165;109;8;2,33;98,41;41,46;0;United States;Northern America;"Elsevier B.V.";"1970-1976, 1981-1983, 1986-1987, 1990, 1992, 2001-2003, 2006-2007, 2009-2025";"Biochemistry (Q3); Biophysics (Q3); Biotechnology (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +13241;21100200425;"Bulletin of the Section of Logic";journal;"01380680";"Lodz University";Yes;Yes;0,439;Q1;17;8;70;329;42;69;0,80;41,13;42,86;0;Poland;Eastern Europe;"Lodz University";"1996-2025";"Philosophy (Q1); Logic (Q2)";"Arts and Humanities; Mathematics" +13242;5700160619;"Cultural Studies - Critical Methodologies";journal;"15327086, 1552356X";"SAGE Publications Inc.";No;No;0,439;Q1;49;42;179;1972;257;177;0,98;46,95;67,61;0;United States;Northern America;"SAGE Publications Inc.";"2001-2026";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1)";"Arts and Humanities; Social Sciences" +13243;1100147107;"Mortality";journal;"13576275, 14699885";"Routledge";No;No;0,439;Q1;36;107;128;5241;238;116;1,89;48,98;64,32;0;United Kingdom;Western Europe;"Routledge";"2001, 2005-2026";"Philosophy (Q1); Religious Studies (Q1); Health (social science) (Q2)";"Arts and Humanities; Social Sciences" +13244;4900152804;"Advances in Applied Clifford Algebras";journal;"16614909, 01887009";"Springer International Publishing";No;No;0,439;Q2;38;52;176;1502;200;176;1,04;28,88;30,00;0;Switzerland;Western Europe;"Springer International Publishing";"2001, 2003-2026";"Applied Mathematics (Q2)";"Mathematics" +13245;24691;"Analysis Mathematica";journal;"1588273X, 01333852";"Springer Nature";No;No;0,439;Q2;24;74;175;1666;132;173;0,64;22,51;25,86;0;Switzerland;Western Europe;"Springer Nature";"1975-2026";"Mathematics (miscellaneous) (Q2); Analysis (Q3)";"Mathematics" +13246;21101186887;"Chinese Journal of Geological Hazard and Control";journal;"10038035";"";Yes;No;0,439;Q2;17;91;289;2949;533;289;1,87;32,41;26,84;0;China;Asiatic Region;"";"2019-2026";"Environmental Engineering (Q2); Environmental Science (miscellaneous) (Q3)";"Environmental Science" +13247;30054;"Chinese Journal of Nursing";journal;"02541769";"Chinese Nursing Journals Publishing House Co.,Ltd";No;No;0,439;Q2;15;458;1332;10668;1982;1332;1,57;23,29;65,69;0;China;Asiatic Region;"Chinese Nursing Journals Publishing House Co.,Ltd";"1982-1997, 2022-2026";"Advanced and Specialized Nursing (Q2); Critical Care Nursing (Q2); Research and Theory (Q2); Leadership and Management (Q3)";"Nursing" +13248;24673;"Crystal Research and Technology";journal;"15214079, 02321300";"John Wiley & Sons Inc.";No;No;0,439;Q2;75;96;354;4807;855;352;2,67;50,07;31,42;0;Germany;Western Europe;"John Wiley & Sons Inc.";"1966-2026";"Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +13249;21101028599;"Developmental Child Welfare";journal;"25161032, 25161040";"SAGE Publications Ltd";No;No;0,439;Q2;14;13;42;822;73;42;1,36;63,23;67,35;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2019-2025";"Health (social science) (Q2); Pediatrics, Perinatology and Child Health (Q2); Developmental and Educational Psychology (Q3)";"Medicine; Psychology; Social Sciences" +13250;21100429738;"International Journal of Air-Conditioning and Refrigeration";journal;"20101325, 20101333";"Society of Refrigeration and Air Conditioning Engineers";Yes;No;0,439;Q2;24;22;65;816;177;65;3,02;37,09;12,68;0;United States;Northern America;"Society of Refrigeration and Air Conditioning Engineers";"2015-2026";"Control and Systems Engineering (Q2); Fluid Flow and Transfer Processes (Q2); Renewable Energy, Sustainability and the Environment (Q3)";"Chemical Engineering; Energy; Engineering" +13251;23391;"Journal of Environmental Science and Health - Part B Pesticides, Food Contaminants, and Agricultural Wastes";journal;"03601234, 15324109";"Taylor and Francis Ltd.";No;No;0,439;Q2;68;56;236;2844;490;236;2,16;50,79;44,88;1;United States;Northern America;"Taylor and Francis Ltd.";"1976-2026";"Food Science (Q2); Medicine (miscellaneous) (Q3); Pollution (Q3)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +13252;23933;"Journal of Lie Theory";journal;"09495932";"Heldermann Verlag";No;No;0,439;Q2;28;40;151;1136;85;150;0,44;28,40;19,23;0;Germany;Western Europe;"Heldermann Verlag";"1996-1998, 2000-2025";"Algebra and Number Theory (Q2)";"Mathematics" +13253;28565;"Journal of Physics B: Atomic, Molecular and Optical Physics";journal;"09534075, 13616455";"Institute of Physics";No;No;0,439;Q2;143;139;531;7580;825;529;1,63;54,53;22,47;0;United Kingdom;Western Europe;"Institute of Physics";"1988-2025";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2)";"Physics and Astronomy" +13254;12100156347;"Journal of Public Procurement";journal;"15350118, 21506930";"Emerald Group Publishing Ltd.";No;No;0,439;Q2;29;40;56;2735;165;55;3,08;68,38;30,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2012-2026";"Public Administration (Q2)";"Social Sciences" +13255;20500195024;"Journal of Quantitative Analysis in Sports";journal;"21946388, 15590410";"Walter de Gruyter GmbH";No;No;0,439;Q2;29;28;61;798;112;60;1,60;28,50;17,65;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2011-2026";"Decision Sciences (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Decision Sciences; Social Sciences" +13256;20350;"Journal of Theoretical Politics";journal;"14603667, 09516298";"SAGE Publications Ltd";No;No;0,439;Q2;57;16;50;762;53;49;0,96;47,63;27,27;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1989-2026";"Sociology and Political Science (Q2)";"Social Sciences" +13257;14471;"Meccanica";journal;"15729648, 00256455";"Springer Netherlands";No;No;0,439;Q2;81;187;439;7733;1084;434;2,36;41,35;25,00;1;Netherlands;Western Europe;"Springer Netherlands";"1966-2026";"Condensed Matter Physics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering; Physics and Astronomy" +13258;29092;"Nuclear Technology";journal;"00295450, 19437471";"Taylor and Francis Ltd.";No;No;0,439;Q2;69;345;453;11183;716;424;1,66;32,41;20,88;1;United States;Northern America;"Taylor and Francis Ltd.";"1971-2026";"Condensed Matter Physics (Q2); Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2)";"Energy; Physics and Astronomy" +13259;9100153108;"Physical Mesomechanics";journal;"19905424, 10299599";"Pleiades Publishing";No;No;0,439;Q2;37;58;177;2691;403;177;2,31;46,40;31,25;0;United States;Northern America;"Pleiades Publishing";"2004, 2007-2025";"Condensed Matter Physics (Q2); Mechanics of Materials (Q2); Materials Science (miscellaneous) (Q3); Surfaces and Interfaces (Q3)";"Engineering; Materials Science; Physics and Astronomy" +13260;22062;"Structural Engineering and Mechanics";journal;"12254568, 15986217";"Techno-Press";No;No;0,439;Q2;82;131;665;6005;1791;665;3,48;45,84;21,48;0;South Korea;Asiatic Region;"Techno-Press";"1994-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +13261;19504;"Veterinary Clinical Pathology";journal;"02756382, 1939165X";"Wiley-Blackwell";No;No;0,439;Q2;69;102;319;2449;360;274;0,97;24,01;63,40;0;United States;Northern America;"Wiley-Blackwell";"1977-2026";"Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +13262;19700175024;"Advances in Hematology";journal;"16879104, 16879112";"John Wiley and Sons Ltd";Yes;No;0,439;Q3;42;33;38;1168;52;38;1,43;35,39;39,23;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Hematology (Q3)";"Medicine" +13263;4400151520;"Diving and Hyperbaric Medicine";journal;"18333516, 22091491";"South Pacific Underwater Medicine Society and the European Underwater and Baromedical Society";No;No;0,439;Q3;31;63;162;1157;165;130;1,05;18,37;35,20;0;Australia;Pacific Region;"South Pacific Underwater Medicine Society and the European Underwater and Baromedical Society";"2006-2025";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +13264;21100889671;"Global Health, Epidemiology and Genomics";journal;"20544200";"John Wiley and Sons Ltd";Yes;No;0,439;Q3;20;20;31;1094;76;31;3,05;54,70;33,33;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2016-2025";"Epidemiology (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +13265;24061;"Journal of Raman Spectroscopy";journal;"03770486, 10974555";"John Wiley and Sons Ltd";No;No;0,439;Q3;142;165;450;8070;1145;443;2,37;48,91;32,73;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1973-2026";"Materials Science (miscellaneous) (Q3); Spectroscopy (Q3)";"Chemistry; Materials Science" +13266;21101070323;"Novitas-ROYAL";journal;"13074733";"Children Research Center";No;No;0,438;Q1;11;25;65;1194;147;65;2,04;47,76;59,09;0;Turkey;Middle East;"Children Research Center";"2019-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +13267;21100246534;"Acta Crystallographica Section B: Structural Science, Crystal Engineering and Materials";journal;"20525206, 20525192";"John Wiley & Sons Inc.";No;No;0,438;Q2;51;63;232;2875;433;218;2,19;45,63;31,33;0;United States;Northern America;"John Wiley & Sons Inc.";"2013-2026";"Atomic and Molecular Physics, and Optics (Q2); Materials Chemistry (Q2); Metals and Alloys (Q2); Electronic, Optical and Magnetic Materials (Q3); Medicine (miscellaneous) (Q3)";"Materials Science; Medicine; Physics and Astronomy" +13268;21100236211;"Acta Geodaetica et Geophysica";journal;"22135812, 22135820";"Springer Nature";No;No;0,438;Q2;28;24;92;1030;225;91;2,84;42,92;26,58;0;Switzerland;Western Europe;"Springer Nature";"2013-2026";"Building and Construction (Q2); Geology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences; Engineering" +13269;21101148008;"Australian and International Journal of Rural Education";journal;"18397387";"Society for the Provision of Education in Rural Education";Yes;Yes;0,438;Q2;10;25;90;892;128;88;1,29;35,68;55,56;0;Australia;Pacific Region;"Society for the Provision of Education in Rural Education";"2019-2025";"Education (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +13270;4400151742;"Beilstein Journal of Organic Chemistry";journal;"2195951X, 18605397";"Beilstein-Institut Zur Forderung der Chemischen Wissenschaften";Yes;Yes;0,438;Q2;93;212;603;12280;1368;590;2,50;57,92;32,86;0;Germany;Western Europe;"Beilstein-Institut Zur Forderung der Chemischen Wissenschaften";"2005-2026";"Organic Chemistry (Q2)";"Chemistry" +13271;21100857955;"Data Technologies and Applications";journal;"25149288, 25149318";"Emerald Publishing";Yes;No;0,438;Q2;40;41;114;2161;302;114;2,56;52,71;37,40;0;United Kingdom;Western Europe;"Emerald Publishing";"2018-2026";"Information Systems (Q2); Library and Information Sciences (Q2)";"Computer Science; Social Sciences" +13272;21101176676;"Disabilities";journal;"26737272";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,438;Q2;12;119;170;6332;373;167;1,99;53,21;68,54;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Health Professions (miscellaneous) (Q2); Health (social science) (Q2); Social Sciences (miscellaneous) (Q2)";"Health Professions; Social Sciences" +13273;21101251296;"IEEE Open Journal of Instrumentation and Measurement";journal;"27687236";"Institute of Electrical and Electronics Engineers";Yes;No;0,438;Q2;11;66;113;2778;261;104;2,27;42,09;23,60;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2022-2026";"Electrical and Electronic Engineering (Q2); Instrumentation (Q2)";"Engineering; Physics and Astronomy" +13274;21101163444;"International Journal on Child Maltreatment: Research, Policy and Practice";journal;"25245236, 25245244";"Springer Nature";No;No;0,438;Q2;15;29;100;1477;163;86;1,38;50,93;69,79;1;Switzerland;Western Europe;"Springer Nature";"2018-2026";"Health (social science) (Q2); Law (Q2); Pediatrics, Perinatology and Child Health (Q2); Developmental and Educational Psychology (Q3)";"Medicine; Psychology; Social Sciences" +13275;11300153503;"Journal of Correctional Health Care";journal;"10783458, 19405200";"Mary Ann Liebert Inc.";No;No;0,438;Q2;37;56;193;1721;186;174;0,98;30,73;65,30;0;United States;Northern America;"Mary Ann Liebert Inc.";"1994-2025";"Community and Home Care (Q2); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing" +13276;24703;"Journal of Crystal Growth";journal;"00220248";"Elsevier B.V.";No;No;0,438;Q2;172;270;984;10435;2338;976;2,49;38,65;27,89;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Condensed Matter Physics (Q2); Materials Chemistry (Q2); Inorganic Chemistry (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +13277;19700182651;"Russian Mathematics";journal;"1066369X, 1934810X";"Pleiades Publishing";No;No;0,438;Q2;21;94;309;1757;210;309;0,73;18,69;25,17;0;United States;Northern America;"Pleiades Publishing";"1992, 2008, 2010-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13278;11700154400;"TOP";journal;"11345764, 18638279";"";No;No;0,438;Q2;35;34;72;1432;123;70;1,72;42,12;30,86;0;Germany;Western Europe;"";"1993-1996, 2003, 2007-2026";"Discrete Mathematics and Combinatorics (Q2); Information Systems and Management (Q2); Modeling and Simulation (Q2); Management Science and Operations Research (Q3); Statistics and Probability (Q3)";"Decision Sciences; Mathematics" +13279;21101256270;"Cancer Diagnosis and Prognosis";journal;"27327787";"International Institute of Anticancer Research";No;No;0,438;Q3;14;97;335;3074;518;335;1,64;31,69;22,50;0;Greece;Western Europe;"International Institute of Anticancer Research";"2021-2026";"Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13280;17600155002;"Gravitation and Cosmology";journal;"19950721, 02022893";"Pleiades Publishing";No;No;0,438;Q3;26;59;147;2532;251;147;2,04;42,92;38,14;0;United States;Northern America;"Pleiades Publishing";"2008-2025";"Astronomy and Astrophysics (Q3)";"Physics and Astronomy" +13281;21101251364;"JSAMS Plus";journal;"27726967";"Elsevier B.V.";Yes;No;0,438;Q3;7;41;62;1531;93;56;1,17;37,34;50,52;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Orthopedics and Sports Medicine (Q3)";"Medicine" +13282;14249;"Preparative Biochemistry and Biotechnology";journal;"10826068, 15322297";"Taylor and Francis Ltd.";No;No;0,438;Q3;49;175;356;10461;983;356;2,75;59,78;44,59;0;United States;Northern America;"Taylor and Francis Ltd.";"1996-2026";"Biochemistry (Q3); Biotechnology (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13283;4900152601;"Sport Sciences for Health";journal;"18247490, 18251234";"Springer-Verlag Italia s.r.l.";No;No;0,438;Q3;31;329;441;15382;694;434;1,53;46,75;33,62;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"2004-2026";"Orthopedics and Sports Medicine (Q3); Sports Science (Q3)";"Health Professions; Medicine" +13284;21378;"Viral Immunology";journal;"15578976, 08828245";"Mary Ann Liebert Inc.";No;No;0,438;Q3;73;37;213;1641;276;188;1,43;44,35;44,44;0;United States;Northern America;"Mary Ann Liebert Inc.";"1987, 1989-2026";"Virology (Q3); Immunology (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +13285;21101108507;"Geohumanities";journal;"2373566X, 23735678";"Informa UK Limited";No;No;0,437;Q1;12;41;99;2114;122;97;1,23;51,56;56,96;0;United Kingdom;Western Europe;"Informa UK Limited";"2015, 2018-2026";"Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +13286;5600153637;"Journal of Communication Inquiry";journal;"15524612, 01968599";"SAGE Publications Inc.";No;No;0,437;Q1;42;38;106;1947;203;93;1,80;51,24;46,81;0;United States;Northern America;"SAGE Publications Inc.";"1974-1982, 1984-2026";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Communication (Q2)";"Arts and Humanities; Social Sciences" +13287;21101289973;"Advanced Engineering Letters";journal;"28129709";"The Association of Intellectuals for the Development of Science in Serbia "The Serbian Academic Center" Novi Sad";Yes;No;0,437;Q2;10;20;60;695;184;60;3,23;34,75;21,88;0;Serbia;Eastern Europe;"The Association of Intellectuals for the Development of Science in Serbia "The Serbian Academic Center" Novi Sad";"2022-2025";"Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Energy Engineering and Power Technology (Q3); Materials Science (miscellaneous) (Q3)";"Energy; Engineering; Materials Science" +13288;25049;"American Journal of Comparative Law";journal;"0002919X, 23269197";"Oxford University Press";No;No;0,437;Q2;56;16;83;3089;119;79;1,09;193,06;35,00;0;United States;Northern America;"Oxford University Press";"1963, 1974, 1977, 1985-1988, 1990, 1992, 1995-2025";"Law (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +13289;19700201409;"Computational Methods in Applied Mathematics";journal;"16094840, 16099389";"Walter de Gruyter GmbH";No;No;0,437;Q2;39;50;150;1809;154;148;1,12;36,18;31,90;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2001-2026";"Applied Mathematics (Q2); Computational Mathematics (Q2); Numerical Analysis (Q2)";"Mathematics" +13290;21100209322;"Fracture and Structural Integrity";journal;"19718993";"Gruppo Italiano Frattura";Yes;Yes;0,437;Q2;34;88;297;2292;657;295;2,54;26,05;28,19;0;Italy;Western Europe;"Gruppo Italiano Frattura";"2011-2026";"Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +13291;21100994466;"Geological Field Trips and Maps";journal;"26116189";"Societa Geologica Italiana";Yes;No;0,437;Q2;7;5;23;411;25;23;0,88;82,20;28,57;0;Italy;Western Europe;"Societa Geologica Italiana";"2018-2025";"Economic Geology (Q2); Geology (Q2); Stratigraphy (Q2); Global and Planetary Change (Q3)";"Earth and Planetary Sciences; Environmental Science" +13292;25509;"Information and Computation";journal;"10902651, 08905401";"Elsevier Inc.";No;No;0,437;Q2;86;99;315;3159;384;300;1,39;31,91;20,16;0;United States;Northern America;"Elsevier Inc.";"1987-2026";"Computational Theory and Mathematics (Q2); Information Systems (Q2); Computer Science Applications (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +13293;21100204920;"International Journal of Physical Modelling in Geotechnics";journal;"20426550, 1346213X";"ICE Publishing";No;No;0,437;Q2;32;14;75;452;110;70;1,45;32,29;8,16;0;United Kingdom;Western Europe;"ICE Publishing";"2011-2025";"Geotechnical Engineering and Engineering Geology (Q2)";"Earth and Planetary Sciences" +13294;80793;"Journal of Agricultural and Applied Economics";journal;"20567405, 10740708";"Cambridge University Press";Yes;No;0,437;Q2;25;47;112;2416;209;112;1,75;51,40;23,13;0;United States;Northern America;"Cambridge University Press";"1975-1977, 1984-1985, 1991, 1995, 2000, 2006, 2008, 2015-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +13295;21100788435;"Journal of Electrochemical Energy Conversion and Storage";journal;"23816910, 23816872";"American Society of Mechanical Engineers (ASME)";No;No;0,437;Q2;30;51;186;2101;484;183;2,76;41,20;26,82;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"2016-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2); Electronic, Optical and Magnetic Materials (Q3); Energy Engineering and Power Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering; Materials Science" +13296;21101276703;"Journal of Micro/Nanopatterning, Materials and Metrology";journal;"27088340";"SPIE";No;No;0,437;Q2;20;84;198;1982;470;171;2,35;23,60;21,39;0;United States;Northern America;"SPIE";"2014, 2021-2025";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +13297;15300154847;"Journal of Population Research";journal;"18359469, 14432447";"Springer Netherlands";Yes;No;0,437;Q2;31;53;82;2824;134;81;1,49;53,28;48,00;0;Netherlands;Western Europe;"Springer Netherlands";"2000, 2002, 2005-2026";"Demography (Q2)";"Social Sciences" +13298;29695;"Kang T'ieh/Iron and Steel";journal;"0449749X";"Chinese Society of Metals";No;No;0,437;Q2;31;239;648;9568;1339;647;2,21;40,03;28,38;0;China;Asiatic Region;"Chinese Society of Metals";"1981-2025";"Materials Chemistry (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)";"Engineering; Materials Science" +13299;21100899525;"Peacebuilding";journal;"21647267, 21647259";"Taylor and Francis Ltd.";No;No;0,437;Q2;20;47;87;0;173;87;1,93;0,00;45,07;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2026";"Development (Q2); Political Science and International Relations (Q2); Safety Research (Q2)";"Social Sciences" +13300;15449;"Transactions of the Institute of Measurement and Control";journal;"14770369, 01423312";"SAGE Publications Ltd";No;No;0,437;Q2;57;521;783;18152;2058;782;2,66;34,84;30,06;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1979-2026";"Instrumentation (Q2)";"Physics and Astronomy" +13301;21101260642;"Hygiene";journal;"2673947X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,437;Q3;10;60;97;3527;249;96;2,74;58,78;55,18;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Immunology and Microbiology; Medicine" +13302;95123;"Malaysian Journal of Medical Sciences";journal;"21804303, 1394195X";"Penerbit Universiti Sains Malaysia";Yes;No;0,437;Q3;47;98;327;3465;600;289;1,72;35,36;51,86;0;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2003-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +13303;29978;"Stat";journal;"20491573";"John Wiley and Sons Inc";No;No;0,437;Q3;27;92;335;3061;289;330;0,83;33,27;27,13;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2012-2026";"Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +13304;15864;"Journal of Imperial and Commonwealth History";journal;"17439329, 03086534";"Routledge";No;No;0,436;Q1;38;106;125;7080;119;119;0,93;66,79;31,96;0;United Kingdom;Western Europe;"Routledge";"1972-2026";"History (Q1); Development (Q2); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +13305;53663;"Journal of Near Eastern Studies";journal;"00222968, 15456978";"University of Chicago Press";No;No;0,436;Q1;29;16;47;1405;59;32;1,40;87,81;25,81;0;United States;Northern America;"University of Chicago Press";"1968, 1974, 1980, 1982-1988, 1992-1994, 1996-2025";"Archeology (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Linguistics and Language (Q1)";"Arts and Humanities; Social Sciences" +13306;21101174186;"Journal of Qualitative Research in Tourism";journal;"26329670, 26329689";"Edward Elgar Publishing Ltd.";No;No;0,436;Q1;7;10;32;599;97;29;3,62;59,90;68,00;0;United Kingdom;Western Europe;"Edward Elgar Publishing Ltd.";"2020-2025";"Arts and Humanities (miscellaneous) (Q1)";"Arts and Humanities" +13307;19700200843;"Philosophical Papers";journal;"05568641, 19968523";"Taylor and Francis Ltd.";No;No;0,436;Q1;31;0;28;0;59;28;4,45;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972-2024, 2026";"Philosophy (Q1)";"Arts and Humanities" +13308;21100447810;"International Journal for Lesson and Learning Studies";journal;"20468261, 20468253";"Emerald Group Publishing Ltd.";No;No;0,436;Q2;29;47;87;2068;169;85;1,79;44,00;63,64;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2012-2026";"Education (Q2)";"Social Sciences" +13309;29804;"International Journal of Accounting";journal;"22133933, 10944060";"World Scientific Publishing Co. Pte Ltd";No;No;0,436;Q2;75;47;52;3623;115;51;1,71;77,09;28,70;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1996-2025";"Finance (Q2); Accounting (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13310;24380;"Journal of Financial Research";journal;"02702592, 14756803";"Wiley-Blackwell Publishing Ltd";No;No;0,436;Q2;58;95;120;5514;211;119;1,85;58,04;26,27;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1978-2026";"Finance (Q2); Accounting (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13311;20318;"Journal of Modern African Studies";journal;"14697777, 0022278X";"Cambridge University Press";No;No;0,436;Q2;75;11;69;900;127;69;1,79;81,82;31,58;0;United Kingdom;Western Europe;"Cambridge University Press";"1963-2025";"Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Social Sciences" +13312;21100268426;"Journal of Seed Science";journal;"23171537";"Associacao Brasileira de Tecnologia de Sementes";Yes;No;0,436;Q2;33;34;124;1288;180;118;1,33;37,88;50,89;0;Brazil;Latin America;"Associacao Brasileira de Tecnologia de Sementes";"2013-2025";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +13313;10900153307;"Journal of Simulation";journal;"17477778, 17477786";"Taylor and Francis Ltd.";No;No;0,436;Q2;36;85;151;5619;383;148;2,58;66,11;32,32;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Industrial and Manufacturing Engineering (Q2); Modeling and Simulation (Q2); Management Science and Operations Research (Q3); Software (Q3)";"Computer Science; Decision Sciences; Engineering; Mathematics" +13314;19900191954;"Journal of the Indian Ocean Region";journal;"1948108X, 19480881";"Taylor and Francis Inc.";No;No;0,436;Q2;25;9;49;521;91;35;1,16;57,89;50,00;0;United States;Northern America;"Taylor and Francis Inc.";"2010-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2); Management, Monitoring, Policy and Law (Q3); Oceanography (Q3); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +13315;21100255068;"Masaryk University Journal of Law and Technology";journal;"18025951, 18025943";"Faculty of Law, Masaryk University";Yes;No;0,436;Q2;10;11;27;548;53;27;2,33;49,82;42,11;0;Czech Republic;Eastern Europe;"Faculty of Law, Masaryk University";"2013-2025";"Law (Q2); Library and Information Sciences (Q2); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +13316;21100211335;"Paediatrics and International Child Health";journal;"20469055, 20469047";"Taylor and Francis Ltd.";No;No;0,436;Q2;59;17;68;419;94;64;1,77;24,65;55,26;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +13317;21101149663;"STEM Education";journal;"27671925";"American Institute of Mathematical Sciences";Yes;Yes;0,436;Q2;10;48;66;2652;152;60;2,82;55,25;45,86;0;United States;Northern America;"American Institute of Mathematical Sciences";"2021-2026";"Applied Mathematics (Q2); Education (Q2)";"Mathematics; Social Sciences" +13318;57383;"Taiwanese Journal of Mathematics";journal;"10275487";"Mathematical Society of the Rep. of China";No;No;0,436;Q2;56;72;162;1763;159;162;0,89;24,49;29,85;0;Taiwan;Asiatic Region;"Mathematical Society of the Rep. of China";"1997-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13319;25140;"Carbonates and Evaporites";journal;"08912556, 18785212";"";No;No;0,436;Q3;37;161;276;10214;564;275;2,15;63,44;25,59;0;Germany;Western Europe;"";"1986-2026";"Geochemistry and Petrology (Q3)";"Earth and Planetary Sciences" +13320;21101096145;"International Journal of Spa and Wellness";journal;"24721743";"Routledge";No;No;0,436;Q3;18;53;56;4221;288;56;5,79;79,64;41,94;0;United States;Northern America;"Routledge";"2018-2026";"Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting" +13321;19700186867;"Journal of Ambient Intelligence and Smart Environments";journal;"18761364";"SAGE Publications Ltd";No;No;0,436;Q3;41;14;77;579;165;60;2,00;41,36;33,33;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2009-2025";"Software (Q3)";"Computer Science" +13322;21100385812;"Journal of Chinese Human Resources Management";journal;"20408013, 20408005";"Porcelain Publishing International LTD";No;No;0,436;Q3;20;28;60;2095;209;60;4,00;74,82;39,39;0;United Kingdom;Western Europe;"Porcelain Publishing International LTD";"2010-2025";"Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting" +13323;21101037128;"Pedagogy in Health Promotion";journal;"23733799, 23733802";"SAGE Publications Inc.";No;No;0,436;Q3;18;55;112;1412;173;97;1,80;25,67;77,72;0;United States;Northern America;"SAGE Publications Inc.";"2015-2026";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +13324;24846;"Critical Inquiry";journal;"15397858, 00931896";"University of Chicago Press";No;No;0,435;Q1;89;29;97;265;127;85;1,07;9,14;60,00;0;United States;Northern America;"University of Chicago Press";"1976, 1985-1987, 1996-2026";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1)";"Arts and Humanities; Social Sciences" +13325;21101343521;"Journal of Urban Archaeology";journal;"27362434, 27362426";"Brepols Publishers";No;No;0,435;Q1;9;22;60;2083;68;55;1,18;94,68;42,11;0;Belgium;Western Europe;"Brepols Publishers";"2021-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +13326;19900191944;"OCNOS";journal;"22549099, 1885446X";"Centro de Estudios de Promoción de la Lectura y Literatura Infantil, Universidad de Castilla-La Manc";Yes;Yes;0,435;Q1;18;20;60;894;56;59;0,68;44,70;61,54;0;Spain;Western Europe;"Centro de Estudios de Promoción de la Lectura y Literatura Infantil, Universidad de Castilla-La Manc";"2009-2026";"Literature and Literary Theory (Q1); Education (Q2); Social Psychology (Q3)";"Arts and Humanities; Psychology; Social Sciences" +13327;5800156836;"Voprosy Jazykoznanija";journal;"0373658X";"Russian Academy of Sciences";No;No;0,435;Q1;9;40;119;1815;50;117;0,42;45,38;55,36;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2009-2025";"Linguistics and Language (Q1)";"Social Sciences" +13328;14000156207;"Accounting Perspectives";journal;"19113838, 1911382X";"John Wiley and Sons Inc";No;No;0,435;Q2;28;36;66;2770;142;61;1,76;76,94;36,92;0;Canada;Northern America;"John Wiley and Sons Inc";"2007-2026";"Finance (Q2); Accounting (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13329;5800207394;"Child Care in Practice";journal;"13575279, 1476489X";"Routledge";No;No;0,435;Q2;34;58;135;2863;233;123;1,57;49,36;64,91;1;United Kingdom;Western Europe;"Routledge";"1994-2026";"Community and Home Care (Q2); Education (Q2); Health (social science) (Q2); Pediatrics, Perinatology and Child Health (Q2); Developmental and Educational Psychology (Q3); Pediatrics (Q3)";"Medicine; Nursing; Psychology; Social Sciences" +13330;21101313382;"Frontiers in Chemical Biology";journal;"2813530X";"Frontiers Media SA";Yes;No;0,435;Q2;6;29;41;1350;100;38;2,50;46,55;46,51;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Chemistry (miscellaneous) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +13331;29006;"Hangkong Xuebao/Acta Aeronautica et Astronautica Sinica";journal;"10006893";"Chinese Society of Astronautics";No;No;0,435;Q2;51;506;1633;23442;3142;1633;1,91;46,33;29,58;0;China;Asiatic Region;"Chinese Society of Astronautics";"1985-1986, 1991, 1998, 2000-2025";"Aerospace Engineering (Q2); Applied Mathematics (Q2); Modeling and Simulation (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Engineering; Mathematics" +13332;21983;"Herpetologica";journal;"00180831";"Herpetologist's League Inc.";No;No;0,435;Q2;60;31;93;2060;114;91;1,09;66,45;27,86;0;United States;Northern America;"Herpetologist's League Inc.";"1981-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +13333;21101063736;"IFAC Journal of Systems and Control";journal;"24686018";"Elsevier B.V.";No;No;0,435;Q2;19;56;94;2592;219;94;2,29;46,29;25,54;0;United Kingdom;Western Europe;"Elsevier B.V.";"2017-2026";"Computer Networks and Communications (Q2); Control and Systems Engineering (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3); Management Science and Operations Research (Q3); Modeling and Simulation (Q3)";"Computer Science; Decision Sciences; Engineering; Mathematics" +13334;11700154729;"International Review of Public Administration";journal;"23317795, 12294659";"Taylor and Francis Ltd.";No;No;0,435;Q2;28;24;59;1524;115;57;1,75;63,50;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1999-2026";"Public Administration (Q2)";"Social Sciences" +13335;21101195783;"Journal of Baghdad College of Dentistry";journal;"18171869, 23115270";"University of Baghdad";Yes;No;0,435;Q2;11;32;97;1316;209;97;2,18;41,13;44,44;0;Iraq;Middle East;"University of Baghdad";"2019-2025";"Dentistry (miscellaneous) (Q2)";"Dentistry" +13336;21100854235;"Journal of Dental Research, Dental Clinics, Dental Prospects";journal;"2008210X, 20082118";"Tabriz University of Medical Sciences Faculty of Dentistry";Yes;Yes;0,435;Q2;14;30;124;928;213;123;1,60;30,93;55,93;0;Iran;Middle East;"Tabriz University of Medical Sciences Faculty of Dentistry";"2014-2025";"Dentistry (miscellaneous) (Q2)";"Dentistry" +13337;21101053537;"Journal of Innovation Management";journal;"21830606";"Universidade do Porto - Faculdade de Engenharia";Yes;Yes;0,435;Q2;28;27;97;1814;239;93;2,54;67,19;44,87;0;Portugal;Western Europe;"Universidade do Porto - Faculdade de Engenharia";"2013-2025";"Engineering (miscellaneous) (Q2); Management of Technology and Innovation (Q2)";"Business, Management and Accounting; Engineering" +13338;24824;"New Journal of Chemistry";journal;"11440546, 13699261";"Royal Society of Chemistry";No;No;0,435;Q2;153;1716;6671;94291;17093;6667;2,62;54,95;39,53;1;United Kingdom;Western Europe;"Royal Society of Chemistry";"1996-2026";"Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Catalysis (Q3)";"Chemical Engineering; Chemistry; Materials Science" +13339;25738;"Petroleum Geoscience";journal;"13540793";"Geological Society of London";No;No;0,435;Q2;73;34;98;2333;187;96;1,58;68,62;22,98;0;United Kingdom;Western Europe;"Geological Society of London";"1995-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Economic Geology (Q2); Geology (Q2); Fuel Technology (Q3); Geochemistry and Petrology (Q3)";"Earth and Planetary Sciences; Energy" +13340;21101248533;"Science of Traditional Chinese Medicine";journal;"2836922X, 28369211";"Wolters Kluwer Health";Yes;Yes;0,435;Q2;7;38;53;2452;138;49;2,60;64,53;44,40;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2023-2026";"Complementary and Alternative Medicine (Q2); Pharmacology (medical) (Q3)";"Medicine" +13341;21100824682;"Smart Science";journal;"23080477";"Taylor and Francis Ltd.";Yes;No;0,435;Q2;24;41;110;1942;367;110;2,92;47,37;27,52;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2025";"Chemistry (miscellaneous) (Q2); Computational Mathematics (Q2); Computer Networks and Communications (Q2); Engineering (miscellaneous) (Q2); Fluid Flow and Transfer Processes (Q2); Energy (miscellaneous) (Q3); Modeling and Simulation (Q3)";"Chemical Engineering; Chemistry; Computer Science; Energy; Engineering; Mathematics" +13342;21100442094;"Social Inclusion";journal;"21832803";"Cogitatio Press";Yes;No;0,435;Q2;42;179;341;10397;583;303;1,58;58,08;64,81;5;Portugal;Western Europe;"Cogitatio Press";"2013-2026";"Sociology and Political Science (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +13343;5400152707;"Clean - Soil, Air, Water";journal;"18630669, 18630650";"John Wiley and Sons Inc";No;No;0,435;Q3;86;99;196;5739;399;188;2,29;57,97;33,42;0;Germany;Western Europe;"John Wiley and Sons Inc";"2007-2026";"Environmental Chemistry (Q3); Pollution (Q3); Water Science and Technology (Q3)";"Environmental Science" +13344;21100228953;"Journal of Arthropod-Borne Diseases";journal;"23222271, 23221984";"Tehran University of Medical Sciences";Yes;No;0,435;Q3;30;35;96;1252;162;96;1,55;35,77;30,71;0;Iran;Middle East;"Tehran University of Medical Sciences";"2012-2025";"Infectious Diseases (Q3); Parasitology (Q3)";"Immunology and Microbiology; Medicine" +13345;29317;"Oncology Nursing Forum";journal;"15380688, 0190535X";"Oncology Nursing Society";No;No;0,435;Q3;105;56;176;1994;274;157;1,54;35,61;70,59;0;United States;Northern America;"Oncology Nursing Society";"1977-2026";"Oncology (nursing) (Q3)";"Nursing" +13346;12906;"Proceedings of the IEEE Symposium on Reliable Distributed Systems";conference and proceedings;"10609857";"IEEE Computer Society";No;No;0,435;-;54;0;89;0;169;80;1,06;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"1992, 1994-2024";"Computer Networks and Communications; Hardware and Architecture; Software; Theoretical Computer Science";"Computer Science; Mathematics" +13347;23635;"Adaptive Behavior";journal;"17412633, 10597123";"SAGE Publications Ltd";No;No;0,434;Q1;64;32;131;2035;238;118;1,55;63,59;18,31;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2026";"Philosophy (Q1); Artificial Intelligence (Q3); Experimental and Cognitive Psychology (Q3); Behavioral Neuroscience (Q4)";"Arts and Humanities; Computer Science; Neuroscience; Psychology" +13348;19893;"Canadian Modern Language Review";journal;"17101131, 00084506";"University of Toronto Press";No;No;0,434;Q1;66;18;55;1028;65;51;1,25;57,11;58,14;0;Canada;Northern America;"University of Toronto Press";"1966, 1973, 1990, 1996-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +13349;19500157042;"Currents in Pharmacy Teaching and Learning";journal;"18771300, 18771297";"Elsevier Inc.";No;No;0,434;Q1;38;174;496;4597;748;454;1,54;26,42;62,29;0;United States;Northern America;"Elsevier Inc.";"2009-2026";"Pharmacy (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +13350;51952;"Acta Agriculturae Scandinavica Section B: Soil and Plant Science";journal;"16511913, 09064710";"Taylor and Francis Ltd.";Yes;No;0,434;Q2;54;27;126;1466;278;126;1,73;54,30;42,06;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Agronomy and Crop Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences" +13351;19900194818;"African Journal of Emergency Medicine";journal;"22114203, 2211419X";"African Federation for Emergency Medicine";Yes;No;0,434;Q2;30;77;192;1751;281;169;1,23;22,74;38,37;0;South Africa;Africa;"African Federation for Emergency Medicine";"2011-2026";"Critical Care Nursing (Q2); Emergency Medicine (Q2); Emergency Nursing (Q2); Geochemistry and Petrology (Q3); Gerontology (Q3)";"Earth and Planetary Sciences; Medicine; Nursing" +13352;21101124074;"Archives of Automotive Engineering";journal;"1234754X, 2084476X";"Lukasiewicz Research Network - Automotive Industry Institute";No;No;0,434;Q2;13;15;60;494;138;60;2,78;32,93;13,16;0;Poland;Eastern Europe;"Lukasiewicz Research Network - Automotive Industry Institute";"2019-2025";"Automotive Engineering (Q2); Mechanical Engineering (Q2); Fuel Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3); Transportation (Q3)";"Energy; Engineering; Social Sciences" +13353;21100451148;"Bordon";journal;"02105934, 23406577";"Sociedad Espanola de Pedagogia";Yes;Yes;0,434;Q2;23;32;97;1594;184;97;1,28;49,81;74,39;0;Spain;Western Europe;"Sociedad Espanola de Pedagogia";"2011-2025";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +13354;13185;"Computing in Science and Engineering";journal;"15219615, 1558366X";"IEEE Computer Society";No;No;0,434;Q2;86;49;146;530;355;136;2,67;10,82;27,40;0;United States;Northern America;"IEEE Computer Society";"1999-2026";"Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2)";"Computer Science; Engineering" +13355;21101239952;"Frontiers in Sensors";journal;"26735067";"Frontiers Media SA";Yes;No;0,434;Q2;14;26;69;1186;193;66;2,45;45,62;33,77;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Electrical and Electronic Engineering (Q2); Analytical Chemistry (Q3); Biomedical Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Engineering; Materials Science" +13356;25515;"Graphical Models";journal;"15240703, 15240711";"Elsevier Inc.";Yes;No;0,434;Q2;64;57;79;2621;208;77;2,18;45,98;29,09;0;United States;Northern America;"Elsevier Inc.";"2000-2026";"Computer Graphics and Computer-Aided Design (Q2); Geometry and Topology (Q2); Modeling and Simulation (Q3); Software (Q3)";"Computer Science; Mathematics" +13357;15030;"Indian Pediatrics";journal;"09747559, 00196061";"Springer";Yes;No;0,434;Q2;66;234;814;2676;741;497;0,80;11,44;42,36;0;India;Asiatic Region;"Springer";"1964-2026";"Pediatrics, Perinatology and Child Health (Q2)";"Medicine" +13358;22691;"International Economic Journal";journal;"1743517X, 10168737";"Taylor and Francis Ltd.";No;No;0,434;Q2;36;36;93;1680;164;93;1,98;46,67;30,16;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +13359;19600157217;"International Journal of Intelligent Transportation Systems Research";journal;"13488503, 18688659";"Springer";No;No;0,434;Q2;28;162;155;6482;414;155;2,84;40,01;25,56;0;United States;Northern America;"Springer";"2010-2026";"Aerospace Engineering (Q2); Applied Mathematics (Q2); Automotive Engineering (Q2); Control and Systems Engineering (Q2); Information Systems (Q2); Computer Science Applications (Q3); Human-Computer Interaction (Q3); Software (Q3); Transportation (Q3); Neuroscience (miscellaneous) (Q4)";"Computer Science; Engineering; Mathematics; Neuroscience; Social Sciences" +13360;21100381648;"Journal of Communication in Healthcare";journal;"17538076, 17538068";"Maney Publishing";No;No;0,434;Q2;24;50;144;2230;244;109;1,82;44,60;59,60;0;United Kingdom;Western Europe;"Maney Publishing";"2009, 2014-2026";"Communication (Q2); Health Information Management (Q3); Public Health, Environmental and Occupational Health (Q3)";"Health Professions; Medicine; Social Sciences" +13361;145201;"Journal of Industry, Competition and Trade";journal;"15661679, 15737012";"Springer";No;No;0,434;Q2;33;25;58;1078;107;58;2,43;43,12;24,00;1;United States;Northern America;"Springer";"2004-2026";"Industrial Relations (Q2); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13362;21101133331;"Journal of Librarianship and Scholarly Communication";journal;"21623309";"Iowa State University Digital Press";Yes;Yes;0,434;Q2;10;32;46;1224;61;44;1,07;38,25;65,75;0;United States;Northern America;"Iowa State University Digital Press";"2015, 2018-2025";"Communication (Q2); Library and Information Sciences (Q2)";"Social Sciences" +13363;19120;"Journal of the American Mosquito Control Association";journal;"8756971X, 19436270";"American Mosquito Control Association";No;No;0,434;Q2;71;27;123;887;156;123;1,43;32,85;35,37;0;United States;Northern America;"American Mosquito Control Association";"1985-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Agricultural and Biological Sciences; Medicine" +13364;16933;"Mineralogy and Petrology";journal;"14381168, 09300708";"Springer-Verlag Wien";No;No;0,434;Q2;74;69;109;5030;146;107;1,25;72,90;27,45;0;Austria;Western Europe;"Springer-Verlag Wien";"1987-2026";"Geophysics (Q2); Geochemistry and Petrology (Q3)";"Earth and Planetary Sciences" +13365;29119;"Physica C: Superconductivity and its Applications";journal;"18732143, 09214534";"Elsevier B.V.";No;No;0,434;Q2;94;127;348;4599;534;347;1,50;36,21;21,74;0;Netherlands;Western Europe;"Elsevier B.V.";"1988-2026";"Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q3); Energy Engineering and Power Technology (Q3)";"Energy; Engineering; Materials Science; Physics and Astronomy" +13366;21100810885;"Problemy Analiza";journal;"23063432, 23063424";"Petrozavodsk State University";Yes;Yes;0,434;Q2;10;25;73;545;77;73;1,33;21,80;27,27;0;Russian Federation;Eastern Europe;"Petrozavodsk State University";"2016-2025";"Applied Mathematics (Q2); Analysis (Q3)";"Mathematics" +13367;19700201680;"Remote Sensing Letters";journal;"2150704X, 21507058";"Taylor and Francis Ltd.";No;No;0,434;Q2;64;127;367;2732;659;367;1,70;21,51;28,29;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2)";"Earth and Planetary Sciences; Engineering" +13368;21101016524;"Sains Tanah";journal;"14123606, 23561424";"";Yes;No;0,434;Q2;12;57;74;3332;182;74;2,41;58,46;39,64;0;Indonesia;Asiatic Region;"";"2019-2025";"Agronomy and Crop Science (Q2); Soil Science (Q2); Atmospheric Science (Q3); Pollution (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +13369;21304;"African Journal of AIDS Research";journal;"17279445, 16085906";"Taylor and Francis Ltd.";No;No;0,434;Q3;37;19;95;845;115;92;1,14;44,47;41,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine" +13370;21100224443;"Annals of Parasitology";journal;"23006706, 22990631";"";No;No;0,434;Q3;27;19;145;78;134;137;0,73;4,11;37,10;0;Poland;Eastern Europe;"";"2012-2025";"Microbiology (medical) (Q3); Parasitology (Q3)";"Immunology and Microbiology; Medicine" +13371;20144;"Drilling Fluid and Completion Fluid";journal;"10015620";"North China Petroleum Administration Drilling Technology Research Institute";Yes;No;0,434;Q3;20;102;329;2320;403;329;1,21;22,75;29,47;0;China;Asiatic Region;"North China Petroleum Administration Drilling Technology Research Institute";"2002-2026";"Energy Engineering and Power Technology (Q3)";"Energy" +13372;21100330721;"Person-Centered and Experiential Psychotherapies";journal;"17529182, 14779757";"Routledge";No;No;0,434;Q3;23;48;78;1961;111;74;1,33;40,85;54,43;0;United States;Northern America;"Routledge";"2002-2026";"Clinical Psychology (Q3); Developmental and Educational Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +13373;145345;"Polish Journal of Radiology";journal;"18990967, 1733134X";"Termedia Publishing House Ltd.";Yes;No;0,434;Q3;37;74;239;2197;435;229;1,81;29,69;39,09;1;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2004-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13374;21100238602;"Pulmonary Medicine";journal;"20901844, 20901836";"John Wiley and Sons Ltd";Yes;No;0,434;Q3;42;13;20;384;47;20;2,19;29,54;41,27;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2026";"Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +13375;21101039082;"Scandinavian Journal of Work and Organizational Psychology";journal;"20022867";"Stockholm University Press";Yes;No;0,434;Q3;12;17;38;1170;81;37;2,28;68,82;65,52;0;Sweden;Western Europe;"Stockholm University Press";"2019-2025";"Applied Psychology (Q3); Organizational Behavior and Human Resource Management (Q3); Psychology (miscellaneous) (Q3)";"Business, Management and Accounting; Psychology" +13376;21100795655;"AlterNative";journal;"11741740, 11771801";"SAGE Publications Inc.";No;No;0,433;Q1;35;86;232;3741;419;223;1,59;43,50;68,48;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2014, 2016-2026";"Anthropology (Q1); Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +13377;22015;"Child Language Teaching and Therapy";journal;"02656590, 14770865";"SAGE Publications Ltd";No;No;0,433;Q1;46;18;50;958;89;50;1,94;53,22;86,11;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1985-2026";"Linguistics and Language (Q1); Education (Q2); Speech and Hearing (Q2); Clinical Psychology (Q3); Developmental and Educational Psychology (Q3)";"Health Professions; Psychology; Social Sciences" +13378;12095;"Anatolia";journal;"13032917, 21566909";"Routledge";No;No;0,433;Q2;50;71;201;4082;477;150;2,41;57,49;38,00;2;United Kingdom;Western Europe;"Routledge";"1999-2026";"Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +13379;21101264201;"Annals of Breast Surgery";journal;"26162776";"AME Publishing Company";No;No;0,433;Q2;8;30;115;1087;157;99;1,47;36,23;59,85;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2022-2025";"Surgery (Q2)";"Medicine" +13380;13794;"BioSystems";journal;"03032647, 18728324";"Elsevier Ireland Ltd";No;No;0,433;Q2;88;181;452;13740;969;439;2,25;75,91;25,62;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1967-2026";"Applied Mathematics (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3); Modeling and Simulation (Q3); Statistics and Probability (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Mathematics; Medicine" +13381;19704;"Bulletin of Entomological Research";journal;"14752670, 00074853";"Cambridge University Press";No;No;0,433;Q2;86;110;260;6271;497;260;1,79;57,01;37,03;0;United Kingdom;Western Europe;"Cambridge University Press";"1910-2026";"Agronomy and Crop Science (Q2); Insect Science (Q2); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Medicine" +13382;21100428109;"Canadian Journal of Dental Hygiene";journal;"1712171X, 17121728";"Canadian Dental Hygienists Association";Yes;No;0,433;Q2;14;25;66;633;115;55;1,76;25,32;69,33;0;Canada;Northern America;"Canadian Dental Hygienists Association";"2015-2025";"Dentistry (miscellaneous) (Q2)";"Dentistry" +13383;21383;"Comparative Medicine";journal;"15320820, 2769819X";"American Association for Laboratory Animal Science";Yes;No;0,433;Q2;78;0;134;0;214;127;1,23;0,00;0,00;0;United States;Northern America;"American Association for Laboratory Animal Science";"2000-2024";"Veterinary (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Veterinary" +13384;4900152206;"Data Base for Advances in Information Systems";journal;"23311622, 15320936";"Association for Computing Machinery";No;No;0,433;Q2;73;23;73;1955;169;72;2,38;85,00;33,33;0;United States;Northern America;"Association for Computing Machinery";"1969-2026";"Computer Networks and Communications (Q2); Management Information Systems (Q2)";"Business, Management and Accounting; Computer Science" +13385;21100898044;"International Journal of Comparative Education and Development";journal;"23094907, 23967404";"Emerald Group Publishing Ltd.";No;No;0,433;Q2;17;25;46;1542;100;45;2,21;61,68;35,71;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2016-2026";"Education (Q2)";"Social Sciences" +13386;19700175824;"International Journal of Ecology";journal;"16879708, 16879716";"John Wiley and Sons Ltd";Yes;No;0,433;Q2;31;0;45;0;111;45;1,59;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2009-2024";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13387;21101024139;"Journal of Geodetic Science";journal;"20819943";"Walter de Gruyter GmbH";Yes;No;0,433;Q2;24;7;47;282;63;47;1,37;40,29;14,81;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2011-2026";"Applied Mathematics (Q2); Computers in Earth Sciences (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Geophysics (Q2); Astronomy and Astrophysics (Q3)";"Earth and Planetary Sciences; Mathematics; Physics and Astronomy" +13388;21100901479;"Journal of Teaching and Learning for Graduate Employability";journal;"18383815";"Deakin University";Yes;Yes;0,433;Q2;21;7;74;507;138;72;1,58;72,43;72,22;0;Australia;Pacific Region;"Deakin University";"2018-2026";"Education (Q2); Human Factors and Ergonomics (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Social Sciences" +13389;25746;"Osaka Journal of Mathematics";journal;"00306126";"Osaka University";No;No;0,433;Q2;38;31;117;669;56;116;0,47;21,58;12,28;0;Japan;Asiatic Region;"Osaka University";"1949-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13390;13656;"Ozone: Science and Engineering";journal;"01919512, 15476545";"Taylor and Francis Ltd.";No;No;0,433;Q2;66;64;152;3248;410;139;2,35;50,75;43,73;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2026";"Environmental Engineering (Q2); Environmental Chemistry (Q3)";"Environmental Science" +13391;27398;"Zeitschrift fur Geomorphologie";journal;"18641687, 03728854";"Schweizerbart Science Publishers";No;No;0,433;Q2;44;9;23;674;39;22;1,00;74,89;20,69;0;Germany;Western Europe;"Schweizerbart Science Publishers";"1979-2019, 2021-2022, 2024-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +13392;13035;"Annals of Human Biology";journal;"03014460, 14645033";"Informa Healthcare";Yes;No;0,433;Q3;73;48;154;2724;245;139;1,64;56,75;60,26;0;United Kingdom;Western Europe;"Informa Healthcare";"1974-2026";"Epidemiology (Q3); Genetics (Q3); Public Health, Environmental and Occupational Health (Q3); Aging (Q4); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13393;21100267980;"GERMS";journal;"22482997";"European Academy of HIV/AIDS and Infectious Diseases";Yes;No;0,433;Q3;25;30;145;956;243;126;1,68;31,87;64,04;0;Romania;Eastern Europe;"European Academy of HIV/AIDS and Infectious Diseases";"2011-2025";"Epidemiology (Q3); Immunology and Microbiology (miscellaneous) (Q3); Infectious Diseases (Q3); Microbiology (medical) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Immunology and Microbiology; Medicine" +13394;18683;"Psychiatria Polska";journal;"00332674, 23915854";"Polish Psychiatric Association";Yes;No;0,433;Q3;40;72;260;2576;361;235;1,34;35,78;65,47;0;Poland;Eastern Europe;"Polish Psychiatric Association";"1967-2025";"Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +13395;4600151502;"Revista Brasileira de Epidemiologia";journal;"1415790X, 19805497";"Assocaicao Brasileira de Pos, Gradacao em Saude Coletiva";Yes;Yes;0,433;Q3;50;62;238;1924;268;233;1,01;31,03;61,35;0;Brazil;Latin America;"Assocaicao Brasileira de Pos, Gradacao em Saude Coletiva";"2000, 2006-2026";"Epidemiology (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +13396;21100283369;"VirusDisease";journal;"23473584, 23473517";"Springer";No;No;0,433;Q3;42;46;145;2037;295;143;1,56;44,28;32,65;1;India;Asiatic Region;"Springer";"2014-2026";"Infectious Diseases (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine" +13397;21100258853;"F1000Research";journal;"20461402";"F1000 Research Ltd";Yes;No;0,432;Q1;129;625;1988;31173;3679;1969;1,92;49,88;43,40;0;United Kingdom;Western Europe;"F1000 Research Ltd";"2012-2026";"Arts and Humanities (miscellaneous) (Q1); Library and Information Sciences (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Arts and Humanities; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +13398;4700152619;"International Journal for Philosophy of Religion";journal;"00207047, 15728684";"Springer Science and Business Media B.V.";No;No;0,432;Q1;25;37;89;972;50;80;0,50;26,27;5,56;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1970-2026";"Philosophy (Q1)";"Arts and Humanities" +13399;21100871186;"Medicina Historica";journal;"25322370";"Mattioli 1885";No;No;0,432;Q1;11;9;126;456;79;115;0,56;50,67;42,86;0;Italy;Western Europe;"Mattioli 1885";"2017-2025";"History (Q1); History and Philosophy of Science (Q1); Medicine (miscellaneous) (Q3)";"Arts and Humanities; Medicine" +13400;16784;"Australian Journal of Botany";journal;"00671924, 14449862";"CSIRO Publishing";No;No;0,432;Q2;80;28;114;1716;157;114;1,46;61,29;43,33;0;Australia;Pacific Region;"CSIRO Publishing";"1953-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +13401;21101048389;"CCF Transactions on Pervasive Computing and Interaction";journal;"25245228, 2524521X";"Springer Verlag";No;No;0,432;Q2;20;46;83;2677;204;81;2,08;58,20;35,09;0;Germany;Western Europe;"Springer Verlag";"2019-2026";"Computer Networks and Communications (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3); Human-Computer Interaction (Q3)";"Computer Science" +13402;21000196008;"Computational and Theoretical Chemistry";journal;"2210271X";"Elsevier B.V.";No;No;0,432;Q2;107;468;1192;26516;3562;1192;3,05;56,66;33,97;0;Netherlands;Western Europe;"Elsevier B.V.";"2011-2026";"Condensed Matter Physics (Q2); Biochemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Physics and Astronomy" +13403;12900;"Designed Monomers and Polymers";journal;"15685551, 1385772X";"Taylor and Francis Ltd.";Yes;No;0,432;Q2;46;6;62;415;151;62;2,18;69,17;54,84;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)";"Chemical Engineering; Chemistry; Materials Science" +13404;21100384222;"Egyptian Journal of Forensic Sciences";journal;"20905939, 2090536X";"Springer International Publishing AG";Yes;Yes;0,432;Q2;33;81;156;3760;323;151;2,14;46,42;44,93;0;Switzerland;Western Europe;"Springer International Publishing AG";"2011-2026";"Health (social science) (Q2); Law (Q2); Pathology and Forensic Medicine (Q3)";"Medicine; Social Sciences" +13405;21100320408;"Human Service Organizations Management, Leadership and Governance";journal;"2330314X, 23303131";"Taylor and Francis Ltd.";No;No;0,432;Q2;31;44;98;2794;182;91;1,99;63,50;63,85;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Health (social science) (Q2); Public Administration (Q2); Sociology and Political Science (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +13406;20322;"Journal of Adolescent and Adult Literacy";journal;"10813004";"Wiley-Blackwell";No;No;0,432;Q2;70;61;141;2548;260;114;2,20;41,77;65,55;0;United States;Northern America;"Wiley-Blackwell";"1995-2026";"Education (Q2)";"Social Sciences" +13407;19700182688;"Journal of Baltic Science Education";journal;"25387138, 16483898";"Scientia Socialis Ltd";Yes;No;0,432;Q2;31;77;229;4392;433;216;1,97;57,04;44,20;0;Lithuania;Eastern Europe;"Scientia Socialis Ltd";"2008-2025";"Education (Q2)";"Social Sciences" +13408;21101155951;"Journal of Curriculum Studies Research";journal;"26902788";"OpenED Network";Yes;No;0,432;Q2;15;33;67;1829;179;67;2,98;55,42;55,79;0;Turkey;Middle East;"OpenED Network";"2019-2025";"Education (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +13409;21101058819;"Journal of Robotics and Control (JRC)";journal;"27155056, 27155072";"Department of Agribusiness, Universitas Muhammadiyah Yogyakarta";No;No;0,432;Q2;32;200;337;16507;1775;337;5,36;82,54;27,67;0;Indonesia;Asiatic Region;"Department of Agribusiness, Universitas Muhammadiyah Yogyakarta";"2020-2025";"Control and Systems Engineering (Q2); Artificial Intelligence (Q3)";"Computer Science; Engineering" +13410;19900192004;"Mathematica Bohemica";journal;"24647136, 08627959";"Academy of Sciences of the Czech Republic";Yes;Yes;0,432;Q2;15;31;112;639;94;112;0,76;20,61;21,43;0;Czech Republic;Eastern Europe;"Academy of Sciences of the Czech Republic";"2011-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13411;23314;"Physical Geography";journal;"02723646";"Taylor and Francis Ltd.";No;No;0,432;Q2;50;31;98;2689;179;98;1,92;86,74;32,17;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1975, 1980-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Atmospheric Science (Q3); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science" +13412;92166;"Small Ruminant Research";journal;"09214488";"Elsevier B.V.";No;No;0,432;Q2;106;161;554;8418;1079;552;2,03;52,29;37,76;0;Netherlands;Western Europe;"Elsevier B.V.";"1988-2026";"Animal Science and Zoology (Q2); Food Animals (Q2)";"Agricultural and Biological Sciences; Veterinary" +13413;19501;"Veterinary and Comparative Orthopaedics and Traumatology";journal;"25676911, 09320814";"Georg Thieme Verlag";No;No;0,432;Q2;57;44;181;1014;177;159;0,95;23,05;35,81;0;Germany;Western Europe;"Georg Thieme Verlag";"1996-2026";"Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Veterinary" +13414;21101041527;"Chilean Journal of Statistics";journal;"07187912, 07187920";"Chilean Statistical Society";No;No;0,432;Q3;7;10;33;357;41;31;1,35;35,70;26,92;0;Chile;Latin America;"Chilean Statistical Society";"2019-2025";"Statistics and Probability (Q3)";"Mathematics" +13415;19900192123;"World Medical and Health Policy";journal;"21532028, 19484682";"John Wiley and Sons Inc";No;No;0,432;Q3;27;67;128;3823;210;105;1,41;57,06;47,87;0;United States;Northern America;"John Wiley and Sons Inc";"2009-2026";"Health Policy (Q3)";"Medicine" +13416;19437;"AES: Journal of the Audio Engineering Society";journal;"15494950";"Audio Engineering Society";No;No;0,431;Q1;71;62;203;2727;395;200;1,76;43,98;12,15;0;United States;Northern America;"Audio Engineering Society";"1970-2025";"Music (Q1); Engineering (miscellaneous) (Q2)";"Arts and Humanities; Engineering" +13417;21100941000;"Cuadernos de Prehistoria y Arqueologia de la Universidad Autonoma de Madrid";journal;"02111608, 25303589";"Universidad Autonoma de Madrid";Yes;Yes;0,431;Q1;6;21;62;1357;35;62;0,60;64,62;28,36;0;Spain;Western Europe;"Universidad Autonoma de Madrid";"2018-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +13418;21100903821;"International Journal of Society, Culture and Language";journal;"23292210";"Lulu Press Inc";Yes;Yes;0,431;Q1;14;48;154;2162;270;154;1,75;45,04;54,96;0;United States;Northern America;"Lulu Press Inc";"2019-2025";"Anthropology (Q1); Linguistics and Language (Q1); Education (Q2); Gender Studies (Q2)";"Social Sciences" +13419;4000152110;"Advances in Accounting";journal;"10465715, 08826110";"Emerald Publishing";No;No;0,431;Q2;49;48;89;3384;169;82;1,63;70,50;38,14;0;United States;Northern America;"Emerald Publishing";"2000-2003, 2005-2026";"Finance (Q2); Accounting (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13420;21100201017;"Advances in Applied Mathematics and Mechanics";journal;"20751354, 20700733";"Global Science Press";No;No;0,431;Q2;36;75;167;2857;188;167;1,13;38,09;31,05;0;United Kingdom;Western Europe;"Global Science Press";"2009-2026";"Applied Mathematics (Q2); Mechanical Engineering (Q2)";"Engineering; Mathematics" +13421;21101052233;"Annual Plant Reviews Online";journal;"26393832";"John Wiley and Sons Inc";No;No;0,431;Q2;23;5;18;738;27;18;1,00;147,60;51,72;0;United States;Northern America;"John Wiley and Sons Inc";"2018-2025";"Agronomy and Crop Science (Q2); Food Science (Q2); Horticulture (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +13422;26245;"Asian and Pacific Migration Journal";journal;"01171968";"SAGE Publications Inc.";No;No;0,431;Q2;40;36;91;1984;160;88;1,30;55,11;56,00;0;Philippines;Asiatic Region;"SAGE Publications Inc.";"1992-2026";"Demography (Q2); Geography, Planning and Development (Q2)";"Social Sciences" +13423;21100217607;"International Journal of MS Care";journal;"15372073";"Consortium of Multiple Sclerosis";No;No;0,431;Q2;41;50;153;1887;223;134;1,30;37,74;62,50;0;United States;Northern America;"Consortium of Multiple Sclerosis";"2012-2026";"Advanced and Specialized Nursing (Q2); Neurology (clinical) (Q3)";"Medicine; Nursing" +13424;21101170632;"Journal of Agriculture, Food Systems, and Community Development";journal;"21520801";"Thomas A. Lyson Center for Civic Agriculture and Food Systems";Yes;No;0,431;Q2;20;126;227;5298;354;189;1,46;42,05;65,87;0;United States;Northern America;"Thomas A. Lyson Center for Civic Agriculture and Food Systems";"2012, 2015-2026";"Development (Q2); Geography, Planning and Development (Q2); Health (social science) (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +13425;3300147401;"Journal of Chengdu University of Technology (Science and Technology Edition)";journal;"16719727";"Chengdu University of Technology";No;No;0,431;Q2;32;78;222;6697;332;222;1,59;85,86;30,00;0;China;Asiatic Region;"Chengdu University of Technology";"2004-2026";"Geology (Q2)";"Earth and Planetary Sciences" +13426;25583;"Journal of Indian Society of Pedodontics and Preventive Dentistry";journal;"09704388, 19983905";"Wolters Kluwer Medknow Publications";Yes;No;0,431;Q2;46;80;170;2177;258;158;1,42;27,21;60,42;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1983-1989, 1991-2025";"Dentistry (miscellaneous) (Q2)";"Dentistry" +13427;4700152721;"Journal of Teaching in Travel and Tourism";journal;"15313239, 15313220";"Routledge";No;No;0,431;Q2;37;30;79;1577;254;74;3,94;52,57;51,61;0;United States;Northern America;"Routledge";"2001-2026";"Education (Q2); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +13428;28596;"Journal of Vacuum Science and Technology A: Vacuum, Surfaces and Films";journal;"15208559, 07342101";"AVS Science and Technology Society";No;No;0,431;Q2;131;323;935;14729;2165;931;2,32;45,60;24,51;0;United States;Northern America;"AVS Science and Technology Society";"1970, 1982-2026";"Condensed Matter Physics (Q2); Surfaces, Coatings and Films (Q2); Surfaces and Interfaces (Q3)";"Materials Science; Physics and Astronomy" +13429;19700182408;"Lithosphere";journal;"19418264, 19474253";"Geoscienceworld";Yes;No;0,431;Q2;64;42;435;2542;759;433;1,45;60,52;31,58;0;United States;Northern America;"Geoscienceworld";"2009-2026";"Geology (Q2)";"Earth and Planetary Sciences" +13430;28703;"Mathematics and Mechanics of Solids";journal;"17413028, 10812865";"SAGE Publications Inc.";No;No;0,431;Q2;60;213;419;10184;838;409;1,81;47,81;20,37;0;United States;Northern America;"SAGE Publications Inc.";"1996-2026";"Mathematics (miscellaneous) (Q2); Mechanics of Materials (Q2); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science; Mathematics" +13431;21101080460;"Operations Research Forum";journal;"26622556";"Springer International Publishing AG";No;No;0,431;Q2;18;187;279;9697;703;271;2,40;51,86;27,29;1;Switzerland;Western Europe;"Springer International Publishing AG";"2020-2026";"Applied Mathematics (Q2); Control and Optimization (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Computer Science Applications (Q3)";"Computer Science; Economics, Econometrics and Finance; Mathematics" +13432;22146;"Operative Techniques in Thoracic and Cardiovascular Surgery";journal;"15328627, 15222942";"W.B. Saunders";No;No;0,431;Q2;22;42;118;459;66;79;0,58;10,93;22,76;0;United States;Northern America;"W.B. Saunders";"1998-2026";"Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +13433;29112;"Photonics and Nanostructures - Fundamentals and Applications";journal;"15694429, 15694410";"Elsevier B.V.";No;No;0,431;Q2;52;107;232;5076;649;230;2,83;47,44;31,99;0;Netherlands;Western Europe;"Elsevier B.V.";"2003-2026";"Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q3); Hardware and Architecture (Q3); Nanoscience and Nanotechnology (Q3)";"Computer Science; Engineering; Materials Science; Physics and Astronomy" +13434;22310;"Polar Research";journal;"17518369, 08000395";"Norwegian Polar Institute";Yes;No;0,431;Q2;64;17;66;852;93;64;0,88;50,12;32,65;0;United Kingdom;Western Europe;"Norwegian Polar Institute";"1982-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Chemistry (Q3); Environmental Science (miscellaneous) (Q3); Oceanography (Q3)";"Earth and Planetary Sciences; Environmental Science" +13435;21100205924;"Redia";journal;"03704327";"Coppini";Yes;No;0,431;Q2;18;27;69;880;67;69;0,91;32,59;37,33;0;Italy;Western Europe;"Coppini";"2011-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +13436;21101169889;"Traffic Safety Research";journal;"20043082";"Lund University Faculty of Engineering";Yes;No;0,431;Q2;8;36;81;1452;147;81;1,24;40,33;35,16;1;Sweden;Western Europe;"Lund University Faculty of Engineering";"2021-2026";"Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2); Urban Studies (Q2); Transportation (Q3)";"Engineering; Social Sciences" +13437;19700177126;"Biopreservation and Biobanking";journal;"19475535, 19475543";"Mary Ann Liebert Inc.";No;No;0,431;Q3;47;118;240;4089;398;215;1,78;34,65;57,58;1;United States;Northern America;"Mary Ann Liebert Inc.";"2008-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13438;21100828905;"BJPsych Advances";journal;"20564686, 20564678";"Cambridge University Press";No;No;0,431;Q3;63;88;187;2194;300;175;1,56;24,93;53,05;0;United Kingdom;Western Europe;"Cambridge University Press";"2015-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +13439;21101107325;"Gastrointestinal Disorders";journal;"26245647";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,431;Q3;12;78;145;4504;268;143;1,95;57,74;43,76;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Gastroenterology (Q3); Hepatology (Q3); Immunology and Microbiology (miscellaneous) (Q3); Oncology (Q3)";"Immunology and Microbiology; Medicine" +13440;5800173396;"Sequential Analysis";journal;"07474946, 15324176";"Taylor and Francis Ltd.";No;No;0,431;Q3;28;31;69;964;69;69;1,20;31,10;27,27;0;United States;Northern America;"Taylor and Francis Ltd.";"1984-1995, 2007-2026";"Modeling and Simulation (Q3); Statistics and Probability (Q3)";"Mathematics" +13441;7100153115;"Serbian Astronomical Journal";journal;"1450698X";"Astronomical Observatory";Yes;Yes;0,431;Q3;18;13;29;877;27;29;0,47;67,46;38,24;0;Serbia;Eastern Europe;"Astronomical Observatory";"2007-2025";"Astronomy and Astrophysics (Q3)";"Physics and Astronomy" +13442;21101106370;"Proceedings of the International Conference on Digital Audio Effects, DAFx";conference and proceedings;"24136700, 24136689";"";No;No;0,431;-;43;62;166;1622;222;160;1,32;26,16;10,49;0;Austria;Western Europe;"";"1998-2005, 2007-2014, 2016-2025";"Computer Science Applications; Music; Signal Processing";"Arts and Humanities; Computer Science" +13443;700147018;"Proceedings of the International Symposium on Low Power Electronics and Design";conference and proceedings;"15334678";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,431;-;68;73;88;2076;165;86;2,13;28,44;20,59;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1995, 1998-2000, 2003-2019, 2021-2023, 2025";"Engineering (miscellaneous)";"Engineering" +13444;17700156447;"Biodemography and Social Biology";journal;"19485573, 19485565";"Taylor and Francis Ltd.";No;No;0,430;Q1;40;18;52;734;63;45;1,15;40,78;37,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986, 1988, 1990, 1996, 2008-2026";"Anthropology (Q1); Demography (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Social Sciences" +13445;21101366455;"International Journal of Technology and Educational Innovation";journal;"24442925";"Universidad de Malaga";Yes;No;0,430;Q1;5;18;20;1090;50;20;2,50;60,56;42,55;0;Spain;Western Europe;"Universidad de Malaga";"2024-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +13446;5800179610;"Review of Education, Pedagogy, and Cultural Studies";journal;"15563022, 10714413";"Taylor and Francis Ltd.";No;No;0,430;Q1;33;47;97;2110;154;87;1,20;44,89;56,06;4;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Cultural Studies (Q1); Education (Q2)";"Social Sciences" +13447;21100902866;"Advances in Materials and Processing Technologies";journal;"2374068X, 23740698";"Taylor and Francis Ltd.";No;No;0,430;Q2;37;208;817;10909;2440;816;2,98;52,45;16,49;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Industrial and Manufacturing Engineering (Q2); Mechanics of Materials (Q2); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +13448;21101309509;"Algebraic Statistics";journal;"26932997, 26933004";"Mathematical Sciences Publishers";No;No;0,430;Q2;5;10;32;298;23;31;0,75;29,80;27,27;0;United States;Northern America;"Mathematical Sciences Publishers";"2021-2026";"Algebra and Number Theory (Q2); Applied Mathematics (Q2); Statistics and Probability (Q3)";"Mathematics" +13449;21100922754;"Higher Education for the Future";journal;"23485779, 23476311";"Sage Publications India Pvt. Ltd";No;No;0,430;Q2;15;17;46;610;107;40;1,10;35,88;21,05;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2019-2026";"Education (Q2)";"Social Sciences" +13450;5100155084;"IET Electric Power Applications";journal;"17518660, 17518679";"John Wiley and Sons Inc";Yes;No;0,430;Q2;110;154;391;4941;851;389;2,23;32,08;25,04;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2007-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +13451;29196;"Journal of Cross-Cultural Gerontology";journal;"01693816, 15730719";"Springer New York";No;No;0,430;Q2;55;30;71;1558;111;70;1,35;51,93;46,00;1;United States;Northern America;"Springer New York";"1986-2026";"Health (social science) (Q2); Geriatrics and Gerontology (Q3)";"Medicine; Social Sciences" +13452;21100312008;"Journal of Financial Management of Property and Construction";journal;"17598443, 13664387";"Emerald Group Publishing Ltd.";No;No;0,430;Q2;35;33;70;2245;242;69;3,45;68,03;18,75;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005-2026";"Business and International Management (Q2); Finance (Q2); Accounting (Q3); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13453;19700166619;"Journal of Neuroscience, Psychology, and Economics";journal;"1937321X, 2151318X";"American Psychological Association";No;No;0,430;Q2;33;8;42;396;79;42;1,76;49,50;42,11;0;United States;Northern America;"American Psychological Association";"2008-2025";"Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Applied Psychology (Q3); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Neuropsychology and Physiological Psychology (Q3); Behavioral Neuroscience (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Neuroscience; Psychology" +13454;5800170936;"Legal Issues of Economic Integration";journal;"18756433, 15666573";"Kluwer Law International";No;No;0,430;Q2;19;21;58;1927;59;56;1,16;91,76;50,00;1;Netherlands;Western Europe;"Kluwer Law International";"2012-2025";"Law (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +13455;4700152758;"Reference Librarian";journal;"02763877, 15411117";"Routledge";No;No;0,430;Q2;27;18;28;498;62;25;1,29;27,67;75,00;0;United States;Northern America;"Routledge";"1982-2025";"Library and Information Sciences (Q2)";"Social Sciences" +13456;19090;"Acta Microbiologica et Immunologica Hungarica";journal;"12178950, 15882640";"Akademiai Kiado ZRt.";No;No;0,430;Q3;36;47;134;1939;225;134;1,66;41,26;47,83;0;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"1994-2026";"Immunology and Microbiology (miscellaneous) (Q3); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Microbiology (medical) (Q3)";"Immunology and Microbiology; Medicine" +13457;16598;"Cardiovascular Ultrasound";journal;"14767120";"BioMed Central Ltd";Yes;No;0,430;Q3;62;24;63;835;130;63;1,81;34,79;35,15;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2003-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13458;19800188015;"Journal of the Turkish German Gynecology Association";journal;"13090399, 13090380";"Galenos Publishing House";Yes;No;0,430;Q3;28;41;125;929;155;92;1,23;22,66;40,80;0;Turkey;Middle East;"Galenos Publishing House";"2005-2025";"Obstetrics and Gynecology (Q3)";"Medicine" +13459;21101050039;"Turkish Journal of Obstetrics and Gynecology";journal;"21499330, 21499322";"Turkish Society of Obstetrics and Gynecology";No;No;0,430;Q3;23;48;137;1155;198;120;1,53;24,06;41,23;0;Turkey;Middle East;"Turkish Society of Obstetrics and Gynecology";"2016-2025";"Obstetrics and Gynecology (Q3)";"Medicine" +13460;21100860908;"Linguistics Vanguard";journal;"2199174X";"De Gruyter Mouton";No;No;0,429;Q1;27;101;251;4418;250;247;1,04;43,74;55,94;1;Germany;Western Europe;"De Gruyter Mouton";"2015-2026";"Linguistics and Language (Q1)";"Social Sciences" +13461;21100203940;"Scripta Theologica";journal;"00369764, 22546227";"Servicio de Publicaciones de la Universidad de Navarra";Yes;No;0,429;Q1;7;23;66;1123;25;66;0,36;48,83;8,70;0;Spain;Western Europe;"Servicio de Publicaciones de la Universidad de Navarra";"2011-2026";"Religious Studies (Q1)";"Arts and Humanities" +13462;21100427224;"Speech, Language and Hearing";journal;"20505728, 2050571X";"Taylor and Francis Ltd.";No;No;0,429;Q1;18;69;101;3573;146;97;1,00;51,78;69,47;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Linguistics and Language (Q1); Otorhinolaryngology (Q2); Speech and Hearing (Q2)";"Health Professions; Medicine; Social Sciences" +13463;21100239244;"Advances in Mechanics";journal;"10000992";"li xue jin zhan bian ji bu";No;No;0,429;Q2;30;22;73;4152;229;73;2,71;188,73;34,00;0;China;Asiatic Region;"li xue jin zhan bian ji bu";"2013-2025";"Mechanical Engineering (Q2); Mathematical Physics (Q3)";"Engineering; Mathematics" +13464;21100305327;"Austral Entomology";journal;"2052174X, 20521758";"John Wiley & Sons Inc.";No;No;0,429;Q2;53;48;106;2811;142;106;1,32;58,56;36,81;2;United States;Northern America;"John Wiley & Sons Inc.";"2014-2026";"Agronomy and Crop Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13465;15947;"Behaviormetrika";journal;"03857417, 13496964";"Springer";Yes;No;0,429;Q2;19;41;80;1382;100;71;1,06;33,71;19,48;0;Japan;Asiatic Region;"Springer";"1985-1986, 2017-2026";"Applied Mathematics (Q2); Analysis (Q3); Clinical Psychology (Q3); Experimental and Cognitive Psychology (Q3)";"Mathematics; Psychology" +13466;21101157750;"Birds";journal;"26736004";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,429;Q2;13;66;111;4465;231;110;1,79;67,65;40,91;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +13467;21100865028;"Business Perspectives and Research";journal;"22785337, 23949937";"SAGE Publications Ltd";No;No;0,429;Q2;25;52;137;3011;342;127;2,09;57,90;44,55;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2012-2026";"Business and International Management (Q2); Strategy and Management (Q3)";"Business, Management and Accounting" +13468;20499;"Canadian Public Policy";journal;"03170861";"University of Toronto Press";No;No;0,429;Q2;45;42;103;2486;128;101;1,34;59,19;43,48;1;Canada;Northern America;"University of Toronto Press";"1978-1980, 1984, 1989-2025";"Public Administration (Q2); Sociology and Political Science (Q2)";"Social Sciences" +13469;13899;"Fossils and Strata";journal;"03009491";"John Wiley and Sons Inc";No;No;0,429;Q2;27;0;1;0;2;1;2,00;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Inc";"1981, 1983, 1985, 1987-1989, 1991, 1996-1999, 2001, 2003-2006, 2008-2009, 2012-2013, 2016-2017, 2024";"Paleontology (Q2)";"Earth and Planetary Sciences" +13470;21100841770;"Global Journal of Emerging Market Economies";journal;"09749101, 09752730";"SAGE Publications Inc.";No;No;0,429;Q2;18;30;66;1754;177;63;2,27;58,47;28,33;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2009-2026";"Business and International Management (Q2); Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Geography, Planning and Development (Q2); Global and Planetary Change (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +13471;5300152720;"IET Science, Measurement and Technology";journal;"17518822, 17518830";"John Wiley & Sons Inc.";Yes;No;0,429;Q2;62;53;135;1699;319;134;2,22;32,06;28,38;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2007-2026";"Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2)";"Engineering; Physics and Astronomy" +13472;21101210876;"Journal for Labour Market Research";journal;"25105027, 25105019";"";Yes;Yes;0,429;Q2;31;32;79;1633;160;79;1,93;51,03;29,58;2;Germany;Western Europe;"";"2012-2026";"Industrial Relations (Q2); Economics and Econometrics (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13473;21100840059;"Journal of Computational Dynamics";journal;"21582505";"American Institute of Mathematical Sciences";No;No;0,429;Q2;18;20;79;788;88;79;0,84;39,40;11,36;0;United States;Northern America;"American Institute of Mathematical Sciences";"2014-2026";"Computational Mechanics (Q2); Computational Mathematics (Q3)";"Engineering; Mathematics" +13474;19168;"Journal of Dynamical and Control Systems";journal;"15738698, 10792724";"Springer New York";No;No;0,429;Q2;45;38;189;1096;179;189;1,05;28,84;22,73;0;United States;Northern America;"Springer New York";"1995-2026";"Algebra and Number Theory (Q2); Control and Optimization (Q2); Control and Systems Engineering (Q2); Numerical Analysis (Q2)";"Engineering; Mathematics" +13475;22585;"Journal of Nematology";journal;"0022300X";"Sciendo";Yes;No;0,429;Q2;74;3;131;155;249;131;2,14;51,67;64,29;0;United States;Northern America;"Sciendo";"1981, 1987-1989, 1993-2025";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +13476;16582;"Plant Biotechnology";journal;"13476114, 13424580";"Japanese Society for Plant Cell and Molecular Biology";Yes;No;0,429;Q2;55;59;156;2504;235;133;1,38;42,44;27,73;0;Japan;Asiatic Region;"Japanese Society for Plant Cell and Molecular Biology";"1997-2025";"Agronomy and Crop Science (Q2); Plant Science (Q2); Biotechnology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +13477;23362;"Raffles Bulletin of Zoology";journal;"23457600, 02172445";"Centre for Medical Education (CenMed) Yong Loo Lin School of Medicine National University of Singapore";No;No;0,429;Q2;47;44;114;2329;124;114;1,13;52,93;27,93;0;Singapore;Asiatic Region;"Centre for Medical Education (CenMed) Yong Loo Lin School of Medicine National University of Singapore";"1996-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +13478;11700154202;"Revista Chilena de Derecho";journal;"07183437, 07160747";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,429;Q2;16;13;77;814;56;69;0,45;62,62;33,33;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2007-2025";"Law (Q2)";"Social Sciences" +13479;21101109593;"Vibration";journal;"2571631X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,429;Q2;23;81;179;3636;426;178;2,49;44,89;21,75;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +13480;13633;"Zhongguo Kongjian Kexue Jishu/Chinese Space Science and Technology";journal;"1000758X";"Chinese Academy of Space Technology";Yes;Yes;0,429;Q2;20;99;286;2584;524;286;1,87;26,10;32,77;0;China;Asiatic Region;"Chinese Academy of Space Technology";"2004-2025";"Aerospace Engineering (Q2); Electrical and Electronic Engineering (Q2); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +13481;19900193844;"Arab Journal of Urology";journal;"2090598X, 20905998";"Taylor and Francis Ltd.";Yes;Yes;0,429;Q3;37;59;109;2182;200;99;1,83;36,98;12,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Urology (Q3)";"Medicine" +13482;4000148009;"British Journal of Hospital Medicine";journal;"17508460, 17597390";"IMR Press Limited";No;No;0,429;Q3;39;297;619;10190;992;527;1,30;34,31;44,52;2;United Kingdom;Western Europe;"IMR Press Limited";"1996, 2005-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +13483;24396;"Chinese Journal of Dental Research";journal;"14626446, 18675646";"Quintessence Publishing Co. Inc.";No;No;0,429;Q3;33;29;95;0;160;95;1,42;0,00;40,13;0;United States;Northern America;"Quintessence Publishing Co. Inc.";"1998-2000, 2010-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +13484;19700174974;"Future Medicinal Chemistry";journal;"17568919, 17568927";"Taylor and Francis Ltd.";No;No;0,429;Q3;106;222;472;15685;1388;419;3,19;70,65;40,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Drug Discovery (Q3); Pharmacology (Q3); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +13485;21100329538;"International Journal of Healthcare Management";journal;"20479700, 20479719";"Maney Publishing";No;No;0,429;Q3;36;167;204;7159;561;204;1,81;42,87;41,95;0;United Kingdom;Western Europe;"Maney Publishing";"2010, 2012-2026";"Health Policy (Q3); Leadership and Management (Q3)";"Medicine; Nursing" +13486;21100821160;"International Journal of Molecular and Cellular Medicine";journal;"22519645, 22519637";"Babol University of Medical Sciences";No;No;0,429;Q3;26;49;91;2621;177;91;1,94;53,49;39,53;0;Iran;Middle East;"Babol University of Medical Sciences";"2016-2025";"Biochemistry (Q3); Biotechnology (Q3); Genetics (Q3); Cell Biology (Q4); Molecular Biology (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology" +13487;12795;"Perception";journal;"14684233, 03010066";"SAGE Publications Inc.";No;No;0,429;Q3;109;73;176;3225;235;166;1,26;44,18;38,50;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1972-2026";"Artificial Intelligence (Q3); Experimental and Cognitive Psychology (Q3); Ophthalmology (Q3); Sensory Systems (Q4)";"Computer Science; Medicine; Neuroscience; Psychology" +13488;21100936369;"Proceedings of Electronic Lexicography in the 21st Century Conference";conference and proceedings;"25335626";"Lexical Computing CZ s.r.o.";No;No;0,429;-;10;52;39;1425;45;38;1,15;27,40;51,47;0;Czech Republic;Eastern Europe;"Lexical Computing CZ s.r.o.";"2019, 2021, 2023, 2025";"Linguistics and Language";"Social Sciences" +13489;21101187137;"JASA Express Letters";journal;"26911191";"American Institute of Physics";Yes;No;0,428;Q1;15;146;391;4142;674;391;1,63;28,37;35,43;0;United States;Northern America;"American Institute of Physics";"2021-2026";"Arts and Humanities (miscellaneous) (Q1); Music (Q1); Acoustics and Ultrasonics (Q2)";"Arts and Humanities; Physics and Astronomy" +13490;5700160142;"Proceedings of the Aristotelean Society";journal;"14679264, 00667374";"Oxford University Press";No;No;0,428;Q1;58;16;54;532;47;54;0,68;33,25;66,67;0;United Kingdom;Western Europe;"Oxford University Press";"1996-2025";"Philosophy (Q1)";"Arts and Humanities" +13491;21100390417;"AMA Journal of Ethics";journal;"23766980";"American Medical Association";No;No;0,428;Q2;52;135;446;2082;637;407;1,39;15,42;59,36;0;United States;Northern America;"American Medical Association";"2015-2025";"Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2); Health Policy (Q3)";"Medicine; Nursing; Social Sciences" +13492;11200153401;"European Journal of Industrial Engineering";journal;"17515254, 17515262";"Inderscience Enterprises Ltd";No;No;0,428;Q2;36;40;90;2001;223;90;1,63;50,03;30,51;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2026";"Industrial and Manufacturing Engineering (Q2)";"Engineering" +13493;19500157034;"Funkcialaj Ekvacioj";journal;"05328721";"KOBE UNIV";No;No;0,428;Q2;25;13;31;319;26;31;0,43;24,54;4,76;0;Japan;Asiatic Region;"KOBE UNIV";"2003-2025";"Algebra and Number Theory (Q2); Geometry and Topology (Q2); Analysis (Q3)";"Mathematics" +13494;13002;"Heat Transfer Engineering";journal;"15210537, 01457632";"Taylor and Francis Ltd.";No;No;0,428;Q2;87;250;372;8814;784;366;2,10;35,26;20,03;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2026";"Condensed Matter Physics (Q2); Fluid Flow and Transfer Processes (Q2); Mechanical Engineering (Q2)";"Chemical Engineering; Engineering; Physics and Astronomy" +13495;5400152714;"IET Software";journal;"17518806, 17518814";"John Wiley and Sons Ltd";Yes;No;0,428;Q2;51;35;111;1910;267;110;2,05;54,57;33,11;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2007-2026";"Computer Graphics and Computer-Aided Design (Q2)";"Computer Science" +13496;21100410629;"Intelligent Systems in Accounting, Finance and Management";journal;"15501949, 21600074";"John Wiley and Sons Inc";No;No;0,428;Q2;29;24;45;1473;206;41;3,17;61,38;20,00;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2011-2013, 2015-2026";"Business, Management and Accounting (miscellaneous) (Q2); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13497;4700152264;"International Journal of Automotive Technology";journal;"12299138, 19763832";"Korean Society of Automotive Engineers";No;No;0,428;Q2;60;208;409;5937;1034;409;2,86;28,54;24,22;0;South Korea;Asiatic Region;"Korean Society of Automotive Engineers";"2000-2026";"Automotive Engineering (Q2)";"Engineering" +13498;21100820733;"International Organisations Research Journal";journal;"19967845, 25422081";"National Research University Higher School of Economics (HSE University)";Yes;No;0,428;Q2;17;21;110;1125;115;110;0,82;53,57;40,91;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2015-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2); Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance; Social Sciences" +13499;19700181201;"Journal of Visceral Surgery";journal;"18787886";"Elsevier Masson s.r.l.";No;No;0,428;Q2;45;115;281;1777;369;243;1,43;15,45;28,96;0;France;Western Europe;"Elsevier Masson s.r.l.";"2010-2026";"Surgery (Q2)";"Medicine" +13500;21100224006;"Journal of World Energy Law and Business";journal;"17549965, 17549957";"Oxford University Press";No;No;0,428;Q2;16;33;94;3257;169;91;1,79;98,70;44,68;1;United States;Northern America;"Oxford University Press";"2012-2025";"Law (Q2); Energy (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3)";"Energy; Environmental Science; Social Sciences" +13501;54198;"Shuili Fadian Xuebao/Journal of Hydroelectric Engineering";journal;"10031243";"Tsinghua University";No;No;0,428;Q2;31;138;449;5118;916;449;2,30;37,09;30,84;0;China;Asiatic Region;"Tsinghua University";"1998, 2001-2026";"Mechanical Engineering (Q2); Energy Engineering and Power Technology (Q3); Water Science and Technology (Q3)";"Energy; Engineering; Environmental Science" +13502;12284;"Surface Science";journal;"00396028";"Elsevier B.V.";No;No;0,428;Q2;169;150;384;8343;824;378;2,20;55,62;29,98;0;Netherlands;Western Europe;"Elsevier B.V.";"1964-2026";"Condensed Matter Physics (Q2); Materials Chemistry (Q2); Surfaces, Coatings and Films (Q2); Surfaces and Interfaces (Q3)";"Materials Science; Physics and Astronomy" +13503;19248;"Thoracic and Cardiovascular Surgeon";journal;"14391902, 01716425";"Georg Thieme Verlag";No;No;0,428;Q2;61;96;319;2051;432;279;1,28;21,36;25,05;0;Germany;Western Europe;"Georg Thieme Verlag";"1973-2026";"Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +13504;12080;"Australian Health Review";journal;"14498944, 01565788";"CSIRO Publishing";No;No;0,428;Q3;63;129;375;3384;463;353;1,08;26,23;57,37;0;Australia;Pacific Region;"CSIRO Publishing";"1980-2025";"Health Policy (Q3)";"Medicine" +13505;16951;"Grundwasser";journal;"14321165, 1430483X";"Springer Science and Business Media Deutschland GmbH";No;No;0,428;Q3;23;15;66;676;92;51;1,60;45,07;14,29;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1997-2026";"Water Science and Technology (Q3)";"Environmental Science" +13506;19500157310;"Investment Analysts Journal";journal;"20770227, 10293523";"Taylor and Francis Ltd.";No;No;0,428;Q3;24;48;65;2459;160;64;2,67;51,23;27,12;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972-2026";"Accounting (Q3); Economics and Econometrics (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13507;21100451751;"Journal of Current Ophthalmology";journal;"24522325";"Wolters Kluwer Medknow Publications";Yes;Yes;0,428;Q3;35;38;228;1235;252;214;0,74;32,50;40,80;0;Iran;Middle East;"Wolters Kluwer Medknow Publications";"2015-2025";"Ophthalmology (Q3)";"Medicine" +13508;19700174659;"Ontario Health Technology Assessment Series";journal;"19157398";"Health Quality Ontario";No;No;0,428;Q3;36;6;27;0;52;27;1,81;0,00;0,00;0;Canada;Northern America;"Health Quality Ontario";"2010-2025";"Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)";"Engineering; Medicine" +13509;19700182696;"Reports in Medical Imaging";journal;"11791586";"Dove Medical Press Ltd";Yes;No;0,428;Q3;12;0;5;0;13;5;0,00;0,00;0,00;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2022";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13510;22364;"Revista do Instituto de Medicina Tropical de Sao Paulo";journal;"16789946, 00364665";"Instituto de Medicina Tropical de Sao Paulo";Yes;No;0,428;Q3;61;83;213;2193;306;209;1,20;26,42;55,02;0;Brazil;Latin America;"Instituto de Medicina Tropical de Sao Paulo";"1961-2026";"Infectious Diseases (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +13511;23775;"Zeitschrift fur Physikalische Chemie";journal;"21967156, 09429352";"Walter de Gruyter GmbH";No;No;0,428;Q3;62;100;293;4994;939;292;3,83;49,94;27,36;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1943-1944, 1950-2026";"Physical and Theoretical Chemistry (Q3)";"Chemistry" +13512;21100370037;"Materials Today: Proceedings";conference and proceedings;"22147853";"Elsevier Ltd";No;No;0,428;-;135;0;12287;0;37229;12196;3,06;0,00;0,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"2005, 2014-2024";"Materials Science (miscellaneous)";"Materials Science" +13513;21100916808;"Barnboken";journal;"20004389";"Swedish Institute for Children's Books";Yes;Yes;0,427;Q1;5;26;71;726;37;62;0,35;27,92;79,41;0;Sweden;Western Europe;"Swedish Institute for Children's Books";"2018-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +13514;14916;"Cognitive Neuropsychology";journal;"14640627, 02643294";"Taylor and Francis Ltd.";No;No;0,427;Q1;103;20;69;1783;83;57;1,47;89,15;63,49;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2026";"Arts and Humanities (miscellaneous) (Q1); Cognitive Neuroscience (Q3); Developmental and Educational Psychology (Q3); Experimental and Cognitive Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)";"Arts and Humanities; Neuroscience; Psychology" +13515;21100814050;"Millennial Asia";journal;"23217081, 09763996";"SAGE Publications Inc.";No;No;0,427;Q1;18;72;115;3949;268;114;2,40;54,85;28,15;3;United Kingdom;Western Europe;"SAGE Publications Inc.";"2014-2026";"Cultural Studies (Q1); Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Economics, Econometrics and Finance; Social Sciences" +13516;23934;"Applied Spectroscopy";journal;"00037028, 19433530";"SAGE Publications Inc.";No;No;0,427;Q2;133;151;354;8385;866;350;2,29;55,53;29,34;1;United States;Northern America;"SAGE Publications Inc.";"1966, 1970-2026";"Instrumentation (Q2); Spectroscopy (Q3)";"Chemistry; Physics and Astronomy" +13517;25195;"Applied Stochastic Models in Business and Industry";journal;"15264025, 15241904";"John Wiley and Sons Ltd";No;No;0,427;Q2;50;93;229;3498;315;181;1,32;37,61;25,71;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1999-2026";"Business, Management and Accounting (miscellaneous) (Q2); Management Science and Operations Research (Q3); Modeling and Simulation (Q3)";"Business, Management and Accounting; Decision Sciences; Mathematics" +13518;18500158100;"Forum (Germany)";journal;"21946183, 15408884";"Walter de Gruyter GmbH";Yes;No;0,427;Q2;28;17;89;903;81;82;0,73;53,12;44,44;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2000, 2002, 2004-2025";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +13519;21100894548;"Global Studies of Childhood";journal;"20436106";"SAGE Publications Ltd";No;No;0,427;Q2;23;56;100;2821;160;88;1,48;50,38;70,09;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2015-2026";"Demography (Q2); Development (Q2); Education (Q2); Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +13520;20500195078;"International Journal of Aeronautical and Space Sciences";journal;"20932480, 2093274X";"The Korean Society for Aeronautical & Space Sciences";Yes;No;0,427;Q2;32;223;321;7643;690;318;2,18;34,27;22,12;1;South Korea;Asiatic Region;"The Korean Society for Aeronautical & Space Sciences";"2011-2026";"Aerospace Engineering (Q2); Electrical and Electronic Engineering (Q2); Control and Systems Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +13521;11700154720;"International Journal of Number Theory";journal;"17937310, 17930421";"World Scientific Publishing Co. Pte Ltd";No;No;0,427;Q2;28;126;372;2275;183;372;0,45;18,06;24,87;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2008-2026";"Algebra and Number Theory (Q2)";"Mathematics" +13522;21100886153;"Journal of Advanced Academics";journal;"21629536, 1932202X";"SAGE Publications Ltd";No;No;0,427;Q2;43;42;65;2606;126;54;1,36;62,05;59,09;0;United States;Northern America;"SAGE Publications Ltd";"2006-2026";"Education (Q2)";"Social Sciences" +13523;21100802717;"Journal of Veterinary Research (Poland)";journal;"24507393, 24508608";"";Yes;No;0,427;Q2;39;74;214;2621;405;214;1,87;35,42;56,03;0;Poland;Eastern Europe;"";"2016-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +13524;5700176240;"Practice";journal;"17424909, 09503153";"Taylor and Francis Ltd.";No;No;0,427;Q2;28;35;92;1269;124;76;1,08;36,26;70,27;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-1992, 1994-2006, 2008-2026";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +13525;21101226105;"Safety in Extreme Environments";journal;"25248189, 25248170";"Springer International Publishing";No;No;0,427;Q2;17;20;66;1245;193;66;2,96;62,25;20,34;1;Switzerland;Western Europe;"Springer International Publishing";"2019-2026";"Environmental Engineering (Q2); Environmental Chemistry (Q3); Environmental Science (miscellaneous) (Q3); Health, Toxicology and Mutagenesis (Q3)";"Environmental Science" +13526;5700169004;"Security Journal";journal;"17434645, 09551662";"Palgrave Macmillan Ltd.";No;No;0,427;Q2;38;67;171;4555;449;171;2,47;67,99;35,76;1;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1995, 2000, 2009-2026";"Law (Q2); Safety Research (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +13527;28021;"Acta Biomedica";journal;"25316745, 03924203";"Mattioli 1885";No;No;0,427;Q3;68;219;775;6776;1177;692;1,25;30,94;49,15;0;Italy;Western Europe;"Mattioli 1885";"1974-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +13528;28921;"Communications in Statistics - Theory and Methods";journal;"1532415X, 03610926";"Taylor and Francis Ltd.";No;No;0,427;Q3;79;462;1473;13266;1737;1462;1,15;28,71;32,85;0;United States;Northern America;"Taylor and Francis Ltd.";"1976-2026";"Statistics and Probability (Q3)";"Mathematics" +13529;21100873119;"Current Radiology Reports";journal;"21674825";"Springer";No;No;0,427;Q3;25;5;41;205;88;41;1,59;41,00;50,00;0;United States;Northern America;"Springer";"2013-2025";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13530;19700188429;"Gastroenterology and Hepatology from Bed to Bench";journal;"20084234, 20082258";"Research Institute for Gastroenterology and Liver Diseases";No;No;0,427;Q3;40;27;154;1204;259;146;1,58;44,59;45,39;0;Iran;Middle East;"Research Institute for Gastroenterology and Liver Diseases";"2011-2025";"Gastroenterology (Q3); Hepatology (Q3)";"Medicine" +13531;14123;"Lipids";journal;"15589307, 00244201";"John Wiley & Sons Inc.";No;No;0,427;Q3;137;47;73;2121;126;73;1,32;45,13;43,88;1;Germany;Western Europe;"John Wiley & Sons Inc.";"1966-2026";"Biochemistry (Q3); Organic Chemistry (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +13532;21100868219;"International Journal of Fashion Studies";journal;"20517106, 20517114";"Intellect Ltd.";No;No;0,426;Q1;10;22;58;887;81;52;1,16;40,32;85,71;0;United Kingdom;Western Europe;"Intellect Ltd.";"2018-2025";"Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +13533;21101064943;"Nordic Journal of Migration Research";journal;"1799649X";"Helsinki University Press";Yes;Yes;0,426;Q1;12;22;92;1181;155;87;1,66;53,68;73,81;1;Finland;Western Europe;"Helsinki University Press";"2019-2026";"Anthropology (Q1); Demography (Q2); Geography, Planning and Development (Q2); Law (Q2); Sociology and Political Science (Q2)";"Social Sciences" +13534;21100883675;"Arab Journal of Basic and Applied Sciences";journal;"25765299";"Taylor and Francis Ltd.";Yes;No;0,426;Q2;46;35;138;1615;426;138;2,70;46,14;33,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Energy (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Energy; Environmental Science; Materials Science; Mathematics" +13535;25788;"Bioorganic and Medicinal Chemistry Letters";journal;"14643405, 0960894X";"Elsevier Ltd";No;No;0,426;Q2;177;259;955;10500;2324;954;2,40;40,54;38,96;0;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2026";"Pharmaceutical Science (Q2); Biochemistry (Q3); Clinical Biochemistry (Q3); Drug Discovery (Q3); Organic Chemistry (Q3); Molecular Biology (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +13536;21101068011;"Brain Hemorrhages";journal;"2589238X";"KeAi Communications Co.";Yes;No;0,426;Q2;13;65;132;2789;196;110;1,56;42,91;36,20;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2025";"Surgery (Q2); Neurology (Q3); Neurology (clinical) (Q3); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience" +13537;21101023312;"Economics of Transition and Institutional Change";journal;"25776975, 25776983";"John Wiley & Sons Inc.";No;No;0,426;Q2;62;31;120;2164;216;120;2,06;69,81;27,27;0;United States;Northern America;"John Wiley & Sons Inc.";"2019-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +13538;21100201754;"European Physical Journal Plus";journal;"21905444";"Springer Science and Business Media Deutschland GmbH";No;No;0,426;Q2;99;1256;3620;61142;10339;3585;3,03;48,68;29,23;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Fluid Flow and Transfer Processes (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Chemical Engineering; Physics and Astronomy" +13539;130043;"Geological Society Memoir";book series;"04354052";"Geological Society of London";No;No;0,426;Q2;73;45;92;3072;152;52;1,97;68,27;16,13;0;United Kingdom;Western Europe;"Geological Society of London";"1958, 1960, 1962, 1968, 1971, 1973, 1978, 1985-1986, 1990-1992, 1994-1995, 1997, 1999, 2002-2006, 2008, 2010-2011, 2013-2017, 2019-2025";"Geology (Q2)";"Earth and Planetary Sciences" +13540;7100153108;"Innovations: Technology and Techniques in Cardiothoracic and Vascular Surgery";journal;"15569845, 15590879";"SAGE Publications Ltd";No;No;0,426;Q2;37;121;327;2032;350;251;0,99;16,79;23,03;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2026";"Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +13541;21100200823;"International Archives of Otorhinolaryngology";journal;"18099777, 18094864";"Georg Thieme Verlag";Yes;Yes;0,426;Q2;35;100;279;2796;382;267;1,41;27,96;42,35;0;Germany;Western Europe;"Georg Thieme Verlag";"2011-2025";"Otorhinolaryngology (Q2)";"Medicine" +13542;21101200903;"International Journal of Hybrid Intelligent Systems";journal;"18758819, 14485869";"SAGE Publications Ltd";No;No;0,426;Q2;11;9;42;258;107;42;1,44;28,67;45,45;0;Netherlands;Western Europe;"SAGE Publications Ltd";"2019-2025";"Mathematics (miscellaneous) (Q2); Artificial Intelligence (Q3)";"Computer Science; Mathematics" +13543;25636;"International Journal of Periodontics and Restorative Dentistry";journal;"19453388, 01987569";"Quintessence Publishing Co. Inc.";No;No;0,426;Q2;101;68;308;1247;423;291;1,24;18,34;29,07;0;United States;Northern America;"Quintessence Publishing Co. Inc.";"1981-2026";"Oral Surgery (Q2); Periodontics (Q2); Medicine (miscellaneous) (Q3)";"Dentistry; Medicine" +13544;19700182111;"Journal of Agrometeorology";journal;"25832980, 09721665";"Association of Agrometeorologists";Yes;No;0,426;Q2;22;102;271;1718;459;243;1,83;16,84;34,91;0;India;Asiatic Region;"Association of Agrometeorologists";"2008-2025";"Agronomy and Crop Science (Q2); Forestry (Q2); Atmospheric Science (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +13545;21100375872;"Journal of Economics, Finance and Administrative Science";journal;"20771886, 22180648";"ESAN University";Yes;Yes;0,426;Q2;32;32;73;1952;226;67;3,23;61,00;32,14;0;Peru;Latin America;"ESAN University";"2012-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +13546;21101192306;"Journal of Economics, Race, and Policy";journal;"25208411, 2520842X";"Springer International Publishing";No;No;0,426;Q2;8;24;64;1426;101;61;1,53;59,42;19,61;0;Switzerland;Western Europe;"Springer International Publishing";"2020, 2022-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2); Management, Monitoring, Policy and Law (Q3)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +13547;40720;"Journal of International Food and Agribusiness Marketing";journal;"08974438, 15286983";"Routledge";No;No;0,426;Q2;36;57;104;4646;336;102;3,51;81,51;41,03;0;United States;Northern America;"Routledge";"1989-2026";"Business and International Management (Q2); Food Science (Q2); Marketing (Q3)";"Agricultural and Biological Sciences; Business, Management and Accounting" +13548;23435;"Journal of Tropical Ecology";journal;"02664674, 14697831";"Cambridge University Press";No;No;0,426;Q2;101;38;123;2520;180;123;1,42;66,32;33,13;0;United Kingdom;Western Europe;"Cambridge University Press";"1985-2026";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +13549;18329;"Journal of Wildlife Diseases";journal;"19433700, 00903558";"Wildlife Disease Association, Inc.";No;No;0,426;Q2;86;125;347;4803;464;319;1,33;38,42;53,81;0;United States;Northern America;"Wildlife Disease Association, Inc.";"1970-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13550;21100934094;"Nonprofit Policy Forum";journal;"21543348";"Walter de Gruyter GmbH";Yes;Yes;0,426;Q2;21;49;68;2765;110;61;1,46;56,43;51,58;2;Germany;Western Europe;"Walter de Gruyter GmbH";"2010-2026";"Public Administration (Q2); Sociology and Political Science (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +13551;26820;"Stratigraphy";journal;"1547139X";"Micropaleontology Press";No;No;0,426;Q2;31;12;42;1044;60;42;1,54;87,00;14,63;0;United States;Northern America;"Micropaleontology Press";"1988, 2006-2025";"Paleontology (Q2)";"Earth and Planetary Sciences" +13552;20901;"Wilderness and Environmental Medicine";journal;"10806032, 15451534";"SAGE Publications Inc.";No;No;0,426;Q2;60;162;291;4529;382;222;1,38;27,96;37,07;1;United States;Northern America;"SAGE Publications Inc.";"1995-2026";"Emergency Medicine (Q2); Public Health, Environmental and Occupational Health (Q3); Sports Science (Q3)";"Health Professions; Medicine" +13553;17700155035;"Journal of Emerging Market Finance";journal;"09730710, 09726527";"Sage Publications India Pvt. Ltd";No;No;0,426;Q3;26;22;57;1061;149;56;2,79;48,23;35,56;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2002-2026";"Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +13554;21100242270;"Journal of Neurological Surgery, Part B: Skull Base";journal;"2193634X, 21936331";"Thieme Medical Publishers, Inc.";No;No;0,426;Q3;59;149;384;4304;511;380;1,05;28,89;27,17;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"2012-2026";"Neurology (clinical) (Q3)";"Medicine" +13555;23056;"Journal of Oncology Pharmacy Practice";journal;"1477092X, 10781552";"SAGE Publications Ltd";No;No;0,426;Q3;50;339;809;9305;1093;777;1,36;27,45;52,39;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Medicine (miscellaneous) (Q3); Oncology (Q3); Pharmacology (medical) (Q3)";"Medicine" +13556;18857;"Scottish Medical Journal";journal;"00369330, 20456441";"SAGE Publications Inc.";Yes;No;0,426;Q3;33;20;78;330;91;60;1,15;16,50;27,50;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1956-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +13557;19700182801;"Procedia Computer Science";conference and proceedings;"18770509";"Elsevier B.V.";No;No;0,426;-;169;3685;7496;86385;20723;7392;2,28;23,44;33,48;1;Netherlands;Western Europe;"Elsevier B.V.";"2010-2025";"Computer Science (miscellaneous)";"Computer Science" +13558;15244;"Historical Journal";journal;"14695103, 0018246X";"Cambridge University Press";No;No;0,425;Q1;55;71;185;8560;179;183;0,95;120,56;37,84;0;United Kingdom;Western Europe;"Cambridge University Press";"1958-2026";"History (Q1)";"Arts and Humanities" +13559;21101289972;"History of Early Modern Educational Thought";book series;"25425536";"Brill Academic Publishers";No;No;0,425;Q1;2;0;8;0;3;1;0,14;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2022, 2024";"History (Q1)";"Arts and Humanities" +13560;21101041846;"Journal of Computer Applications in Archaeology";journal;"25148362";"Ubiquity Press";Yes;No;0,425;Q1;19;23;52;1598;101;51;1,83;69,48;29,76;2;United Kingdom;Western Europe;"Ubiquity Press";"2018-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1); Computer Science Applications (Q3)";"Arts and Humanities; Computer Science; Social Sciences" +13561;21101153193;"Journal of Frontier Studies";journal;"25000225";"LLC Scientific Industrial Enterprise “Genesis. Frontier. Science”";Yes;Yes;0,425;Q1;4;44;96;2186;32;96;0,33;49,68;45,07;0;Russian Federation;Eastern Europe;"LLC Scientific Industrial Enterprise “Genesis. Frontier. Science”";"2023-2025";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +13562;21100793204;"Muzeologia a Kulturne Dedicstvo";journal;"24539759, 13392204";"Muzeologia a kulturne dedicstvo, o.z";Yes;Yes;0,425;Q1;9;20;62;906;63;62;1,08;45,30;36,96;0;Slovakia;Eastern Europe;"Muzeologia a kulturne dedicstvo, o.z";"2013-2025";"Conservation (Q1); Museology (Q1)";"Arts and Humanities" +13563;19700200806;"American Journal of Distance Education";journal;"08923647, 15389286";"Taylor and Francis Ltd.";No;No;0,425;Q2;38;50;88;2065;153;70;1,75;41,30;62,75;0;United States;Northern America;"Taylor and Francis Ltd.";"1987-1996, 1998-1999, 2001, 2008-2026";"Education (Q2); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +13564;21101055932;"Applied Mobilities";journal;"23800127, 23800135";"Routledge";No;No;0,425;Q2;19;26;69;1554;142;63;2,00;59,77;40,00;0;United Kingdom;Western Europe;"Routledge";"2016-2026";"Geography, Planning and Development (Q2); Urban Studies (Q2); Transportation (Q3)";"Social Sciences" +13565;21100886227;"Applied Nanoscience (Switzerland)";journal;"21905517, 21905509";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,425;Q2;100;53;1055;2707;3235;1053;3,14;51,08;42,70;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Biotechnology (Q3); Materials Science (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Engineering; Materials Science; Physics and Astronomy" +13566;21101134424;"Baltic Journal of Health and Physical Activity";journal;"20801297, 20809999";"Gdansk University of Physical Education and Sport";Yes;Yes;0,425;Q2;11;33;104;1316;156;104;1,49;39,88;39,44;0;Poland;Eastern Europe;"Gdansk University of Physical Education and Sport";"2019-2026";"Education (Q2); Health Professions (miscellaneous) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Public Health, Environmental and Occupational Health (Q3)";"Health Professions; Medicine; Social Sciences" +13567;21100790933;"BioInvasions Records";journal;"22421300";"Regional Euro-Asian Biological Invasions Centre";Yes;No;0,425;Q2;32;73;297;3535;483;294;1,59;48,42;35,91;0;Finland;Western Europe;"Regional Euro-Asian Biological Invasions Centre";"2012-2025";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13568;21101244545;"Discover Space";journal;"2948295X";"Springer Science and Business Media B.V.";Yes;No;0,425;Q2;45;15;15;655;27;15;2,00;43,67;11,11;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2024-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Physics and Astronomy" +13569;56471;"Euphytica";journal;"15735060, 00142336";"Springer Science and Business Media B.V.";No;No;0,425;Q2;133;197;485;11267;919;483;1,82;57,19;36,71;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1952-2026";"Agronomy and Crop Science (Q2); Horticulture (Q2); Plant Science (Q2); Genetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +13570;25029;"European Journal of Prosthodontics and Restorative Dentistry";journal;"23968893, 09657452";"Dennis Barber Ltd";No;No;0,425;Q2;35;48;117;2215;185;117;1,46;46,15;45,26;0;United Kingdom;Western Europe;"Dennis Barber Ltd";"1992-2026";"Dentistry (miscellaneous) (Q2); Oral Surgery (Q2); Surgery (Q2); Transplantation (Q3)";"Dentistry; Medicine" +13571;27551;"Europhysics Letters";journal;"02955075, 12864854";"IOP Publishing Ltd.";No;No;0,425;Q2;182;255;1033;10712;1810;1020;1,88;42,01;26,82;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1986-2025";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +13572;22090;"High Ability Studies";journal;"13598139, 1469834X";"Taylor and Francis Ltd.";No;No;0,425;Q2;45;11;34;634;80;33;2,39;57,64;22,86;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Education (Q2)";"Social Sciences" +13573;21100913652;"IAFOR Journal of Education";journal;"21870594";"The International Academic Forum (IAFOR)";Yes;Yes;0,425;Q2;18;43;79;2290;189;77;2,07;53,26;48,24;0;Japan;Asiatic Region;"The International Academic Forum (IAFOR)";"2018-2025";"Education (Q2); Public Administration (Q2)";"Social Sciences" +13574;25270;"Inorganica Chimica Acta";journal;"18733255, 00201693";"Elsevier B.V.";No;No;0,425;Q2;114;398;1284;24917;4226;1276;3,55;62,61;40,10;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Materials Chemistry (Q2); Inorganic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry; Materials Science" +13575;17700156313;"Iranian Journal of Pharmaceutical Research";journal;"17350328, 17266890";"Brieflands";Yes;No;0,425;Q2;70;100;231;4346;492;230;1,88;43,46;45,58;0;Netherlands;Western Europe;"Brieflands";"2002-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +13576;21100936575;"Journal of Asian Security and International Affairs";journal;"23490039, 23477970";"SAGE Publications Inc.";No;No;0,425;Q2;14;22;63;1802;101;61;1,60;81,91;39,29;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2014-2026";"Political Science and International Relations (Q2)";"Social Sciences" +13577;21101318133;"Journal of Clinical and Translational Pathology";journal;"2771165X, 29935202";"Xia and He Publishing Inc.";No;No;0,425;Q2;7;25;73;912;104;68;1,78;36,48;52,33;0;United States;Northern America;"Xia and He Publishing Inc.";"2021-2025";"Surgery (Q2); Pathology and Forensic Medicine (Q3)";"Medicine" +13578;21100293700;"Journal of Engineering Research (Kuwait)";journal;"23071877, 23071885";"Elsevier B.V.";Yes;Yes;0,425;Q2;29;342;646;16769;1806;646;3,90;49,03;23,94;3;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +13579;29535;"Journal of Freshwater Ecology";journal;"02705060, 21566941";"Taylor and Francis Ltd.";Yes;No;0,425;Q2;45;50;120;3209;196;119;1,52;64,18;40,93;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2026";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +13580;21101028118;"Journal of Gender-Based Violence";journal;"23986808, 23986816";"Bristol University Press";No;No;0,425;Q2;21;39;99;1855;166;89;1,32;47,56;82,29;0;United Kingdom;Western Europe;"Bristol University Press";"2017-2026";"Gender Studies (Q2); Law (Q2)";"Social Sciences" +13581;4400151724;"Journal of Mineralogical and Petrological Sciences";journal;"13493825, 13456296";"Tohoku University";No;No;0,425;Q2;38;29;89;1128;118;84;1,33;38,90;21,30;0;Japan;Asiatic Region;"Tohoku University";"2000-2026";"Geology (Q2); Geophysics (Q2)";"Earth and Planetary Sciences" +13582;57844;"Journal of Molecular Modeling";journal;"16102940, 09485023";"Springer Science and Business Media Deutschland GmbH";No;No;0,425;Q2;89;344;1198;18397;3309;1194;3,03;53,48;33,09;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-2026";"Computational Theory and Mathematics (Q2); Catalysis (Q3); Computer Science Applications (Q3); Inorganic Chemistry (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Chemical Engineering; Chemistry; Computer Science" +13583;14060;"Library Quarterly";journal;"00242519, 1549652X";"University of Chicago Press";No;No;0,425;Q2;50;24;79;1319;118;70;1,13;54,96;71,70;0;United States;Northern America;"University of Chicago Press";"1946-1947, 1951, 1958, 1979, 1981, 1988-2026";"Library and Information Sciences (Q2)";"Social Sciences" +13584;19700188449;"Medical Ultrasonography";journal;"20668643, 18444172";"Societatea Romana de Ultrasonografie in Medicina si Biologie";No;No;0,425;Q2;42;100;284;2178;378;168;1,07;21,78;44,78;0;Romania;Eastern Europe;"Societatea Romana de Ultrasonografie in Medicina si Biologie";"2010-2025";"Acoustics and Ultrasonics (Q2); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Health Professions; Medicine; Physics and Astronomy" +13585;29512;"Radiation Measurements";journal;"13504487";"Elsevier Ltd";No;No;0,425;Q2;115;145;405;5221;794;402;1,83;36,01;28,31;0;United Kingdom;Western Europe;"Elsevier Ltd";"1994-2026";"Instrumentation (Q2); Radiation (Q2)";"Physics and Astronomy" +13586;15432;"Bioscience, Biotechnology and Biochemistry";journal;"09168451, 13476947";"Oxford University Press";No;No;0,425;Q3;144;215;564;7605;978;564;1,71;35,37;28,88;0;United States;Northern America;"Oxford University Press";"1988-1989, 1992-2026";"Analytical Chemistry (Q3); Applied Microbiology and Biotechnology (Q3); Biochemistry (Q3); Biotechnology (Q3); Medicine (miscellaneous) (Q3); Organic Chemistry (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Immunology and Microbiology; Medicine" +13587;21101241665;"iRADIOLOGY";journal;"28342860, 28342879";"John Wiley and Sons Inc";Yes;No;0,425;Q3;9;55;88;2349;169;76;1,92;42,71;41,83;0;China;Asiatic Region;"John Wiley and Sons Inc";"2023-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13588;145443;"Journal of Cancer Research and Therapeutics";journal;"19984138, 09731482";"Wolters Kluwer Medknow Publications";Yes;No;0,425;Q3;58;237;1312;5713;1730;1261;1,29;24,11;38,96;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2005-2025";"Medicine (miscellaneous) (Q3); Oncology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13589;19700175038;"Open AIDS Journal";journal;"18746136";"Bentham Science Publishers";Yes;No;0,425;Q3;24;10;22;288;28;22;1,73;28,80;59,26;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2009-2025";"Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine" +13590;14954;"Zeitschrift fur Naturforschung - Section C Journal of Biosciences";journal;"09395075, 18657125";"Walter de Gruyter GmbH";No;No;0,425;Q3;83;67;140;4891;380;138;2,62;73,00;34,55;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1973-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology" +13591;145077;"Children's Literature in Education";journal;"15731693, 00456713";"Springer Science and Business Media B.V.";No;No;0,424;Q1;28;87;119;3610;150;115;1,11;41,49;66,67;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1970-2002, 2005-2026";"Linguistics and Language (Q1); Literature and Literary Theory (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +13592;21101185196;"Nazhruna: Jurnal Pendidikan Islam";journal;"26148013";"Institut Pesantren KH Abdul Chalim";Yes;No;0,424;Q1;13;44;69;2491;207;69;3,00;56,61;30,10;0;Indonesia;Asiatic Region;"Institut Pesantren KH Abdul Chalim";"2023-2026";"History (Q1); Philosophy (Q1); Religious Studies (Q1); Education (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +13593;21100241768;"Preservation, Digital Technology and Culture";journal;"21952965, 21952957";"De Gruyter Saur";No;No;0,424;Q1;15;31;63;1170;148;50;3,02;37,74;36,84;0;Germany;Western Europe;"De Gruyter Saur";"2013-2026";"Conservation (Q1); Library and Information Sciences (Q2); Computer Science Applications (Q3)";"Arts and Humanities; Computer Science; Social Sciences" +13594;18400156702;"Amfiteatru Economic";journal;"15829146";"Bucharest University of Economic Studies Publishing House";Yes;Yes;0,424;Q2;36;72;203;2975;564;198;2,82;41,32;59,85;0;Romania;Eastern Europe;"Bucharest University of Economic Studies Publishing House";"2008-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +13595;21101197198;"Brawijaya Law Journal";journal;"25030841, 23564512";"Brawijaya University Faculty of Law";Yes;Yes;0,424;Q2;4;17;41;973;39;41;1,11;57,24;62,50;0;Indonesia;Asiatic Region;"Brawijaya University Faculty of Law";"2022-2025";"Law (Q2)";"Social Sciences" +13596;7100153145;"Developmental Neurorehabilitation";journal;"17518423, 17518431";"Taylor and Francis Ltd.";No;No;0,424;Q2;69;32;144;1341;211;144;1,42;41,91;76,92;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997, 1999, 2002-2003, 2005-2026";"Pediatrics, Perinatology and Child Health (Q2); Rehabilitation (Q2); Developmental Neuroscience (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Neuroscience" +13597;21101038723;"Gornaya Promyshlennost";journal;"16099192, 25879138";"Scientific and Industrial company 'Gemos Ltd.'";No;No;0,424;Q2;12;201;391;3127;390;391;1,00;15,56;33,18;0;Russian Federation;Eastern Europe;"Scientific and Industrial company 'Gemos Ltd.'";"2019-2025";"Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)";"Earth and Planetary Sciences; Engineering" +13598;26132;"Journal of Computer Science and Technology";journal;"18604749, 10009000";"Springer New York";No;No;0,424;Q2;66;110;270;4555;571;262;2,12;41,41;29,54;0;United States;Northern America;"Springer New York";"1986-2026";"Computational Theory and Mathematics (Q2); Computer Science Applications (Q3); Hardware and Architecture (Q3); Software (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +13599;21101177663;"Journal of Geodesy and Geoinformation Science";journal;"20965990, 20961650";"SinoMaps Press";Yes;Yes;0,424;Q2;13;20;97;689;142;94;1,54;34,45;36,36;0;China;Asiatic Region;"SinoMaps Press";"2021-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q2)";"Earth and Planetary Sciences" +13600;21101238227;"Micro";journal;"26738023";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,424;Q2;18;60;161;4419;425;159;2,57;73,65;42,34;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"1995-2006, 2021-2025";"Engineering (miscellaneous) (Q2)";"Engineering" +13601;21100405404;"Science and Technology for the Built Environment";journal;"2374474X, 23744731";"Taylor and Francis Ltd.";No;No;0,424;Q2;77;76;252;3377;445;239;1,74;44,43;26,48;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Building and Construction (Q2); Environmental Engineering (Q2); Fluid Flow and Transfer Processes (Q2)";"Chemical Engineering; Engineering; Environmental Science" +13602;21100201542;"Symmetry";journal;"20738994";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,424;Q2;116;2182;6585;91436;16967;6456;2,65;41,90;31,80;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2026";"Chemistry (miscellaneous) (Q2); Computer Science (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Chemistry; Computer Science; Mathematics; Physics and Astronomy" +13603;4700152284;"Turkish Journal of Biology";journal;"13036092, 13000152";"TUBITAK";No;No;0,424;Q2;58;57;108;3491;181;108;1,75;61,25;57,89;0;Turkey;Middle East;"TUBITAK";"2006-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Microbiology (Q3); Cell Biology (Q4); Genetics (Q4); Molecular Biology (Q4); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +13604;23906;"Turkish Journal of Earth Sciences";journal;"1303619X, 13000985";"TUBITAK";No;No;0,424;Q2;55;52;138;2910;250;136;2,02;55,96;26,71;0;Turkey;Middle East;"TUBITAK";"2002-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +13605;24569;"Advances in Geometry";journal;"1615715X, 16157168";"Walter de Gruyter GmbH";No;No;0,424;Q3;27;41;108;816;77;108;0,73;19,90;15,58;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2001-2026";"Geometry and Topology (Q3)";"Mathematics" +13606;21100888782;"Electronic Journal of the International Federation of Clinical Chemistry and Laboratory Medicine";journal;"16503414";"International Federation of Clinical Chemistry and Laboratory Medicine";No;No;0,424;Q3;25;69;105;1679;182;100;1,83;24,33;42,68;0;Italy;Western Europe;"International Federation of Clinical Chemistry and Laboratory Medicine";"2018-2026";"Biochemistry (medical) (Q3); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13607;5900153316;"Journal of Medical Biochemistry";journal;"14528258, 14528266";"Society of Medical Biochemists of Serbia";Yes;No;0,424;Q3;31;215;214;6322;405;214;1,94;29,40;52,23;0;Serbia;Eastern Europe;"Society of Medical Biochemists of Serbia";"2007-2026";"Biochemistry (medical) (Q3); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13608;21100409310;"Journal of Medical Radiation Sciences";journal;"20513909, 20513895";"John Wiley & Sons Inc.";Yes;No;0,424;Q3;37;98;256;2854;479;197;1,72;29,12;59,38;1;United States;Northern America;"John Wiley & Sons Inc.";"2004-2026";"Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Health Professions; Medicine" +13609;12574;"Journal of Radiological Protection";journal;"09524746, 13616498";"IOP Publishing Ltd.";No;No;0,424;Q3;57;107;346;2890;506;311;1,41;27,01;36,07;1;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1988-2026";"Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3); Waste Management and Disposal (Q3)";"Environmental Science; Medicine" +13610;26125;"Parallel Architectures and Compilation Techniques - Conference Proceedings, PACT";conference and proceedings;"1089795X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,424;-;77;41;117;2098;201;110;1,69;51,17;22,75;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1996-2014, 2016-2024";"Hardware and Architecture; Software; Theoretical Computer Science";"Computer Science; Mathematics" +13611;21100395950;"Proceedings of the European Test Workshop";conference and proceedings;"15301877, 15581780";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,424;-;20;54;166;1269;242;160;1,72;23,50;17,39;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1993, 2000-2003, 2016-2025";"Electrical and Electronic Engineering; Industrial and Manufacturing Engineering; Software";"Computer Science; Engineering" +13612;21101134504;"Proceedings of the International Technical Meeting of The Institute of Navigation, ITM";conference and proceedings;"23303662, 23303646";"Institute of Navigation";No;No;0,424;-;15;79;381;1415;455;376;1,03;17,91;26,59;1;United States;Northern America;"Institute of Navigation";"2022-2025";"Aerospace Engineering; Electrical and Electronic Engineering";"Engineering" +13613;21100805729;"Asia Policy";journal;"15592960, 15590968";"National Bureau of Asian Research";No;No;0,423;Q1;18;55;193;1793;193;188;0,90;32,60;59,32;7;United States;Northern America;"National Bureau of Asian Research";"2009, 2016-2026";"History (Q1); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +13614;54288;"Animal Science Journal";journal;"13443941, 17400929";"John Wiley and Sons Inc";No;No;0,423;Q2;60;118;341;5136;595;336;1,58;43,53;31,48;0;United States;Northern America;"John Wiley and Sons Inc";"2003-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Animal Science and Zoology (Q2); Food Science (Q2)";"Agricultural and Biological Sciences" +13615;5200152707;"Eurasip Journal on Image and Video Processing";journal;"16875281, 16875176";"Springer Publishing Company";Yes;No;0,423;Q2;61;21;72;1265;213;72;3,00;60,24;25,32;0;United States;Northern America;"Springer Publishing Company";"2007-2025";"Electrical and Electronic Engineering (Q2); Information Systems (Q2); Signal Processing (Q3)";"Computer Science; Engineering" +13616;21100818734;"European Journal of Environmental Sciences";journal;"23361964, 18050174";"";Yes;Yes;0,423;Q2;17;12;33;388;51;33;1,71;32,33;53,33;0;Czech Republic;Eastern Europe;"";"2015-2025";"Ecology (Q2); Nature and Landscape Conservation (Q2); Management, Monitoring, Policy and Law (Q3); Pollution (Q3)";"Environmental Science" +13617;17200154707;"Journal of Electrical Engineering and Technology";journal;"19750102, 20937423";"Korean Institute of Electrical Engineers";No;No;0,423;Q2;50;421;1080;11894;2647;1080;2,57;28,25;25,93;0;South Korea;Asiatic Region;"Korean Institute of Electrical Engineers";"2008-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +13618;19900193983;"Journal of Herbal Medicine";journal;"22108041, 22108033";"Elsevier GmbH";No;No;0,423;Q2;48;96;444;5441;1193;440;2,52;56,68;48,60;0;Germany;Western Europe;"Elsevier GmbH";"2011-2026";"Complementary and Alternative Medicine (Q2)";"Medicine" +13619;13772;"Journal of Laryngology and Otology";journal;"17485460, 00222151";"Cambridge University Press";No;No;0,423;Q2;81;222;690;5277;704;651;1,04;23,77;33,21;0;United Kingdom;Western Europe;"Cambridge University Press";"1891, 1921-2026";"Otorhinolaryngology (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +13620;21101287735;"Journal of Law and Political Economy";journal;"26939681";"eScholarship Publishing";Yes;No;0,423;Q2;8;24;49;3205;68;38;0,81;133,54;41,38;0;United States;Northern America;"eScholarship Publishing";"2021-2025";"Law (Q2)";"Social Sciences" +13621;19238;"Journal of Plant Pathology";journal;"11254653, 22397264";"Springer Science and Business Media Deutschland GmbH";No;No;0,423;Q2;62;274;740;10121;998;408;1,46;36,94;41,69;9;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1997-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +13622;21100871631;"Journal of Sustainable Mining";journal;"23003960, 25434950";"Central Mining Institute";Yes;Yes;0,423;Q2;37;42;90;1958;171;89;1,94;46,62;17,04;0;Poland;Eastern Europe;"Central Mining Institute";"2013-2026";"Environmental Engineering (Q2); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Pollution (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Earth and Planetary Sciences; Energy; Environmental Science" +13623;17600155136;"Kotuitui";journal;"1177083X";"Routledge";Yes;Yes;0,423;Q2;25;71;84;4550;228;84;2,85;64,08;64,45;0;United Kingdom;Western Europe;"Routledge";"2009-2010, 2012-2025";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +13624;19700201335;"Scandinavian Journal of Disability Research";journal;"17453011, 15017419";"Stockholm University Press";Yes;No;0,423;Q2;38;51;102;2441;205;101;2,03;47,86;68,33;0;Sweden;Western Europe;"Stockholm University Press";"1999-2026";"Rehabilitation (Q2); Social Sciences (miscellaneous) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine; Social Sciences" +13625;21101063740;"Urban Agriculture and Regional Food Systems";journal;"25751220";"John Wiley and Sons Ltd";Yes;No;0,423;Q2;14;25;47;1472;108;45;2,51;58,88;30,21;1;United States;Northern America;"John Wiley and Sons Ltd";"2016-2026";"Agronomy and Crop Science (Q2); Horticulture (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +13626;19400156832;"Brain Impairment";journal;"18395252, 14439646";"";No;No;0,423;Q3;32;35;127;1956;222;123;1,68;55,89;71,20;0;United Kingdom;Western Europe;"";"2002, 2004, 2008-2026";"Cognitive Neuroscience (Q3); Neurology (Q3); Neurology (clinical) (Q3); Neuropsychology and Physiological Psychology (Q3); Speech and Hearing (Q3); Behavioral Neuroscience (Q4)";"Health Professions; Medicine; Neuroscience; Psychology" +13627;23524;"Electrophoresis";journal;"01730835, 15222683";"John Wiley and Sons Inc";No;No;0,423;Q3;171;152;553;6725;1448;528;2,58;44,24;40,47;0;United States;Northern America;"John Wiley and Sons Inc";"1980-2026";"Analytical Chemistry (Q3); Biochemistry (Q3); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +13628;144749;"International Journal of Advanced Robotic Systems";journal;"17298806, 17298814";"SAGE Publications Inc.";Yes;No;0,423;Q3;75;42;183;1450;476;183;2,00;34,52;19,73;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2004-2026";"Artificial Intelligence (Q3); Computer Science Applications (Q3); Software (Q3)";"Computer Science" +13629;15845;"Journal of Biomechanical Engineering";journal;"15288951, 01480731";"American Society of Mechanical Engineers (ASME)";No;No;0,423;Q3;145;132;489;5905;915;477;1,67;44,73;26,02;1;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1977-2026";"Biomedical Engineering (Q3); Physiology (medical) (Q3)";"Engineering; Medicine" +13630;17209;"Journal of Clinical Ultrasound";journal;"00912751, 10970096";"John Wiley & Sons Inc.";No;No;0,423;Q3;71;349;704;8424;872;548;1,17;24,14;46,32;0;United States;Northern America;"John Wiley & Sons Inc.";"1973-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13631;23881;"Journal of Invasive Cardiology";journal;"15572501, 10423931";"Cliggott Publishing Co.";No;No;0,423;Q3;67;85;390;807;369;336;0,84;9,49;21,27;0;United States;Northern America;"Cliggott Publishing Co.";"1990-2025";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13632;19700201668;"Journal of Parasitology Research";journal;"20900031, 20900023";"John Wiley and Sons Ltd";Yes;No;0,423;Q3;40;62;133;3431;267;133;1,90;55,34;36,30;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Infectious Diseases (Q3); Parasitology (Q3)";"Immunology and Microbiology; Medicine" +13633;21100874322;"Psychiatry and Clinical Psychopharmacology";journal;"24750573, 24750581";"AVES";Yes;No;0,423;Q3;29;65;133;2268;167;131;1,33;34,89;51,27;0;United Kingdom;Western Europe;"AVES";"2017-2025";"Pharmacology (medical) (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +13634;20883;"Wiener Medizinische Wochenschrift";journal;"1563258X, 00435341";"Springer";No;No;0,423;Q3;52;67;186;2695;246;159;1,06;40,22;41,00;0;Austria;Western Europe;"Springer";"1946-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +13635;12196;"Methods in Molecular Biology";book series;"19406029, 10643745";"";Yes;No;0,423;Q4;229;2461;11186;69589;12548;525;1,07;28,28;43,97;2;United States;Northern America;"";"1993-2026";"Genetics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +13636;21100465194;"Digital Scholarship in the Humanities";journal;"20557671, 2055768X";"Oxford University Press";No;No;0,422;Q1;32;99;297;4320;522;294;1,92;43,64;44,49;0;United States;Northern America;"Oxford University Press";"2015-2025";"Linguistics and Language (Q1); Information Systems (Q2); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +13637;24079;"Acta Chiropterologica";journal;"15081109";"Museum and Institute of Zoology PAS";No;No;0,422;Q2;48;24;72;1531;89;72;1,23;63,79;45,45;0;Poland;Eastern Europe;"Museum and Institute of Zoology PAS";"1999-2025";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +13638;19700184700;"African Journal of Marine Science";journal;"18142338, 1814232X";"National Inquiry Services Centre Ltd";No;No;0,422;Q2;61;40;82;2392;124;82;1,04;59,80;36,04;0;South Africa;Africa;"National Inquiry Services Centre Ltd";"2003-2025";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +13639;21100873079;"Asian Journal of Comparative Politics";journal;"20578911, 2057892X";"SAGE Publications Ltd";No;No;0,422;Q2;19;25;163;1594;334;163;1,93;63,76;20,59;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2016-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +13640;21101325378;"ASME Open Journal of Engineering";journal;"27703495";"American Society of Mechanical Engineers (ASME)";No;No;0,422;Q2;12;46;150;1954;371;148;2,30;42,48;19,72;1;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"2022-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +13641;21100781878;"Bio-based and Applied Economics";journal;"22806180, 22806172";"Firenze University Press";Yes;Yes;0,422;Q2;25;22;65;1103;102;61;1,66;50,14;41,25;0;Italy;Western Europe;"Firenze University Press";"2012-2026";"Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Food Science (Q2); Environmental Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Environmental Science" +13642;27453;"Communications in Theoretical Physics";journal;"02536102";"IOP Publishing Ltd.";No;No;0,422;Q2;71;228;609;12522;1740;608;3,38;54,92;31,08;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1996-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +13643;25341;"HortScience";journal;"00185345, 23279834";"American Society for Horticultural Science";Yes;No;0,422;Q2;112;356;744;13047;1387;740;1,71;36,65;41,15;0;United States;Northern America;"American Society for Horticultural Science";"1966, 1971-1975, 1977-2026";"Horticulture (Q2)";"Agricultural and Biological Sciences" +13644;11500153504;"International Review of Economics";journal;"18634613, 18651704";"Springer Verlag";No;No;0,422;Q2;27;37;91;2232;192;90;1,79;60,32;28,95;0;Germany;Western Europe;"Springer Verlag";"2008-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +13645;21100203114;"Journal of Computer Networks and Communications";journal;"20907141, 2090715X";"John Wiley and Sons Ltd";Yes;No;0,422;Q2;37;9;47;489;152;47;3,24;54,33;11,76;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2026";"Computer Networks and Communications (Q2); Information Systems (Q2)";"Computer Science" +13646;21101268480;"Journal of Natural Gas Geoscience";journal;"2543151X, 2468256X";"KeAi Communications Co.";Yes;No;0,422;Q2;13;30;91;1494;223;91;2,67;49,80;28,57;0;China;Asiatic Region;"KeAi Communications Co.";"2021-2026";"Geology (Q2); Geophysics (Q2); Energy Engineering and Power Technology (Q3); Geochemistry and Petrology (Q3)";"Earth and Planetary Sciences; Energy" +13647;17700156304;"Journal of Sensors";journal;"1687725X, 16877268";"John Wiley and Sons Ltd";Yes;No;0,422;Q2;76;40;707;1998;1970;706;2,71;49,95;35,34;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Electrical and Electronic Engineering (Q2); Instrumentation (Q2); Control and Systems Engineering (Q3)";"Engineering; Physics and Astronomy" +13648;21101142417;"Journal of Social and Economic Development";journal;"21996873, 09725792";"Springer";No;No;0,422;Q2;19;138;161;7160;339;158;2,25;51,88;32,95;1;Germany;Western Europe;"Springer";"2015-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Education (Q2); Social Sciences (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Social Sciences" +13649;15599;"Neuropediatrics";journal;"0174304X, 14391899";"Georg Thieme Verlag";No;No;0,422;Q2;80;59;237;1325;283;211;1,01;22,46;53,21;0;Germany;Western Europe;"Georg Thieme Verlag";"1980-2026";"Pediatrics, Perinatology and Child Health (Q2); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3)";"Medicine" +13650;26138;"Parallel Computing";journal;"01678191";"Elsevier B.V.";No;No;0,422;Q2;74;20;106;1014;271;102;1,51;50,70;19,74;0;Netherlands;Western Europe;"Elsevier B.V.";"1984-2026";"Computer Graphics and Computer-Aided Design (Q2); Computer Networks and Communications (Q2); Artificial Intelligence (Q3); Hardware and Architecture (Q3); Software (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +13651;33410;"Phytoparasitica";journal;"03342123, 18767184";"Springer Science and Business Media B.V.";No;No;0,422;Q2;60;103;275;5681;518;274;1,78;55,16;36,30;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1973-2026";"Insect Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +13652;15563;"Review of Scientific Instruments";journal;"00346748, 10897623";"American Institute of Physics";No;No;0,422;Q2;195;773;2760;26458;4510;2751;1,66;34,23;23,28;0;United States;Northern America;"American Institute of Physics";"1930-2026";"Instrumentation (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Physics and Astronomy" +13653;21101039870;"Revista Espanola de la Transparencia";journal;"24442607";"Association of Professionals and Researchers of Transparency";Yes;Yes;0,422;Q2;7;12;85;381;69;85;0,81;31,75;44,44;0;Spain;Western Europe;"Association of Professionals and Researchers of Transparency";"2020-2025";"Communication (Q2); Law (Q2); Public Administration (Q2)";"Social Sciences" +13654;21101381155;"Urban Lifeline";journal;"27319989";"Springer";Yes;No;0,422;Q2;6;22;31;1100;83;30;2,68;50,00;30,11;0;Singapore;Asiatic Region;"Springer";"2024-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Safety, Risk, Reliability and Quality (Q2); Artificial Intelligence (Q3)";"Computer Science; Engineering" +13655;21101128172;"AsiaIntervention";journal;"24263958, 24910929";"Europa Group";No;No;0,422;Q3;9;38;109;499;91;74;0,70;13,13;13,07;0;France;Western Europe;"Europa Group";"2019-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +13656;5000153107;"Central Nervous System Agents in Medicinal Chemistry";journal;"18715249, 18756166";"Bentham Science Publishers";No;No;0,422;Q3;43;59;65;5711;136;60;2,13;96,80;41,99;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Neuropsychology and Physiological Psychology (Q3); Molecular Medicine (Q4); Neuroscience (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Neuroscience; Psychology" +13657;20602;"Clinical Neuropharmacology";journal;"1537162X, 03625664";"Lippincott Williams and Wilkins";No;No;0,422;Q3;90;41;128;1036;217;125;1,35;25,27;45,60;0;United States;Northern America;"Lippincott Williams and Wilkins";"1982-2026";"Neurology (clinical) (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +13658;23251;"Herz";journal;"16156692, 03409937";"Springer Medizin";No;No;0,422;Q3;58;70;208;2265;290;189;1,41;32,36;29,06;0;Germany;Western Europe;"Springer Medizin";"1978-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +13659;21101176849;"Jurnal Ilmiah Peuradeun";journal;"23388617, 24432067";"SCAD Independent";No;No;0,421;Q1;14;90;170;4826;449;170;3,15;53,62;35,69;0;Indonesia;Asiatic Region;"SCAD Independent";"2019-2026";"Arts and Humanities (miscellaneous) (Q1); Linguistics and Language (Q1); Religious Studies (Q1); Education (Q2); Law (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +13660;27029;"Applied Physics B: Lasers and Optics";journal;"09462171";"Springer Verlag";No;No;0,421;Q2;151;240;627;9516;1275;623;1,88;39,65;28,69;0;Germany;Western Europe;"Springer Verlag";"1994-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +13661;17600155115;"Australian Journal of Teacher Education";journal;"1835517X, 03135373";"Edith Cowan University";No;No;0,421;Q2;54;32;132;1767;199;132;1,03;55,22;56,99;0;Australia;Pacific Region;"Edith Cowan University";"2008-2025";"Education (Q2)";"Social Sciences" +13662;16383;"Comparative Studies of South Asia, Africa and the Middle East";journal;"1548226X, 1089201X";"Duke University Press";No;No;0,421;Q2;41;59;142;2666;96;123;0,63;45,19;55,36;0;United States;Northern America;"Duke University Press";"1996-2025";"Development (Q2); Geography, Planning and Development (Q2); Political Science and International Relations (Q2)";"Social Sciences" +13663;78470;"Discrete Mathematics and Theoretical Computer Science";journal;"14627264, 13658050";"Maison de l'informatique et des mathematiques discretes";Yes;Yes;0,421;Q2;27;52;147;1231;82;146;0,54;23,67;21,28;0;France;Western Europe;"Maison de l'informatique et des mathematiques discretes";"1998-2000, 2004-2026";"Computer Science (miscellaneous) (Q2); Discrete Mathematics and Combinatorics (Q2); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +13664;21101079441;"European Oral Research";journal;"26512823, 26306158";"Istanbul University Press";Yes;Yes;0,421;Q2;12;24;72;904;123;72;1,60;37,67;66,15;0;Turkey;Middle East;"Istanbul University Press";"2019-2025";"Dentistry (miscellaneous) (Q2)";"Dentistry" +13665;21101057644;"Journal of Corporate Accounting and Finance";journal;"10970053, 10448136";"Wiley-Blackwell";No;No;0,421;Q2;27;81;197;3980;396;193;2,04;49,14;29,34;0;United States;Northern America;"Wiley-Blackwell";"1989-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Accounting (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13666;15800154702;"Journal of Korean Academy of Nursing";journal;"20053673, 2093758X";"Korean Society of Nursing Science";No;No;0,421;Q2;36;48;141;2129;203;134;1,36;44,35;78,63;0;South Korea;Asiatic Region;"Korean Society of Nursing Science";"2008-2025";"Nursing (miscellaneous) (Q2)";"Nursing" +13667;13784;"Journal of Non-Equilibrium Thermodynamics";journal;"03400204, 14374358";"Walter de Gruyter GmbH";No;No;0,421;Q2;48;39;106;1779;304;102;3,35;45,62;25,53;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1976-2026";"Chemistry (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Chemistry; Physics and Astronomy" +13668;21100301413;"Journal of the Operations Research Society of China";journal;"21946698, 2194668X";"Springer International Publishing";No;No;0,421;Q2;25;136;173;5332;300;168;1,25;39,21;36,54;0;Switzerland;Western Europe;"Springer International Publishing";"2013-2026";"Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2); Management Science and Operations Research (Q3)";"Decision Sciences; Mathematics" +13669;19700182729;"Journal of Thermal Science and Engineering Applications";journal;"19485093, 19485085";"The American Society of Mechanical Engineers(ASME)";No;No;0,421;Q2;43;114;491;4227;922;490;2,14;37,08;22,22;0;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"2009-2026";"Condensed Matter Physics (Q2); Engineering (miscellaneous) (Q2); Fluid Flow and Transfer Processes (Q2); Materials Science (miscellaneous) (Q3)";"Chemical Engineering; Engineering; Materials Science; Physics and Astronomy" +13670;35688;"Materials and Corrosion";journal;"15214176, 09475117";"John Wiley and Sons Inc";No;No;0,421;Q2;74;159;409;6758;972;407;2,13;42,50;29,81;0;United States;Northern America;"John Wiley and Sons Inc";"1950-1951, 1953-2026";"Materials Chemistry (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2); Surfaces, Coatings and Films (Q2); Environmental Chemistry (Q3)";"Engineering; Environmental Science; Materials Science" +13671;21100391500;"Proceedings of the Indian National Science Academy";journal;"03700046, 24549983";"Springer Nature";Yes;No;0,421;Q2;32;336;241;18658;685;238;1,69;55,53;31,31;3;India;Asiatic Region;"Springer Nature";"1978-1980, 1984, 2005-2026";"Physics and Astronomy (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Physics and Astronomy" +13672;21101026986;"Production Engineering Archives";journal;"23537779, 23535156";"";Yes;No;0,421;Q2;26;52;153;2361;401;153;2,82;45,40;37,50;0;Poland;Eastern Europe;"";"2017-2025";"Industrial and Manufacturing Engineering (Q2); Management Information Systems (Q2); Management of Technology and Innovation (Q2); Safety, Risk, Reliability and Quality (Q2)";"Business, Management and Accounting; Engineering" +13673;21100199731;"Scandinavian Journal of Information Systems";journal;"19010990, 09050167";"The IRIS Association (Information Systems Research in Scandinavia), the Scandinavian chapter of the Association for Information Systems";No;No;0,421;Q2;18;9;51;670;79;36;0,68;74,44;36,36;0;Denmark;Western Europe;"The IRIS Association (Information Systems Research in Scandinavia), the Scandinavian chapter of the Association for Information Systems";"2011-2025";"Information Systems (Q2)";"Computer Science" +13674;21101321455;"Development and Sustainability in Economics and Finance";journal;"29505240";"Elsevier B.V.";No;No;0,421;Q3;6;71;30;4177;83;30;2,77;58,83;26,76;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +13675;14121;"European Review of Applied Psychology";journal;"11629088";"Elsevier Masson s.r.l.";No;No;0,421;Q3;42;39;102;2708;193;101;1,38;69,44;60,00;1;France;Western Europe;"Elsevier Masson s.r.l.";"1998, 2004-2026";"Applied Psychology (Q3)";"Psychology" +13676;24208;"Genetic Programming and Evolvable Machines";journal;"13892576, 15737632";"Springer";No;No;0,421;Q3;47;20;69;1011;145;55;2,33;50,55;22,39;0;United States;Northern America;"Springer";"2003-2026";"Artificial Intelligence (Q3); Computer Science Applications (Q3); Hardware and Architecture (Q3); Software (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +13677;26440;"Polimery w medycynie";journal;"03700747";"Wroclaw Medical University";Yes;Yes;0,421;Q3;19;16;34;0;85;34;1,87;0,00;57,69;0;Poland;Eastern Europe;"Wroclaw Medical University";"1974-2016, 2019-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +13678;14794;"Statistics and Probability Letters";journal;"01677152";"Elsevier B.V.";No;No;0,421;Q3;79;193;586;3638;480;586;0,72;18,85;29,36;0;Netherlands;Western Europe;"Elsevier B.V.";"1982-2026";"Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +13679;13349;"Taiyangneng Xuebao/Acta Energiae Solaris Sinica";journal;"02540096";"Science Press";No;No;0,421;Q3;37;933;2586;20900;4897;2585;1,94;22,40;32,56;0;China;Asiatic Region;"Science Press";"1986-2025";"Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3); Energy Engineering and Power Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Materials Science; Physics and Astronomy" +13680;13850;"Wind Engineering";journal;"0309524X, 2048402X";"SAGE Publications Inc.";No;No;0,421;Q3;57;125;255;5044;701;255;2,86;40,35;21,39;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1977-2026";"Energy Engineering and Power Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +13681;13435;"Communist and Post-Communist Studies";journal;"0967067X, 18736920";"University of California Press";No;No;0,420;Q2;57;24;90;1555;135;90;1,31;64,79;43,75;1;United Kingdom;Western Europe;"University of California Press";"1993-2025";"Development (Q2); Sociology and Political Science (Q2)";"Social Sciences" +13682;24783;"ETRI Journal";journal;"12256463, 22337326";"John Wiley & Sons Inc.";Yes;Yes;0,420;Q2;54;113;261;4064;651;255;2,50;35,96;26,39;0;United States;Northern America;"John Wiley & Sons Inc.";"1994-2026";"Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q3)";"Computer Science; Engineering; Materials Science" +13683;16291;"European Law Review";journal;"03075400";"Sweet & Maxwell Ltd.";No;No;0,420;Q2;33;38;133;1995;119;115;0,57;52,50;51,16;0;United Kingdom;Western Europe;"Sweet & Maxwell Ltd.";"1995, 2008-2025";"Law (Q2)";"Social Sciences" +13684;29995;"Fusion Science and Technology";journal;"15361055";"Taylor and Francis Ltd.";No;No;0,420;Q2;64;132;279;3805;356;272;1,24;28,83;24,12;0;United States;Northern America;"Taylor and Francis Ltd.";"2001-2026";"Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2); Materials Science (miscellaneous) (Q3)";"Energy; Engineering; Materials Science; Physics and Astronomy" +13685;21100438328;"Health Security";journal;"23265108, 23265094";"Mary Ann Liebert Inc.";No;No;0,420;Q2;53;52;228;1667;292;159;1,04;32,06;49,54;0;United States;Northern America;"Mary Ann Liebert Inc.";"2015-2025";"Emergency Medicine (Q2); Safety Research (Q2); Health (social science) (Q3); Health, Toxicology and Mutagenesis (Q3); Management, Monitoring, Policy and Law (Q3); Public Health, Environmental and Occupational Health (Q3)";"Environmental Science; Medicine; Social Sciences" +13686;21101117188;"IIM Kozhikode Society and Management Review";journal;"2321029X, 22779752";"Sage Publications India Pvt. Ltd";No;No;0,420;Q2;15;29;46;2404;115;46;2,31;82,90;29,09;0;Singapore;Asiatic Region;"Sage Publications India Pvt. Ltd";"2018-2026";"Education (Q2)";"Social Sciences" +13687;24479;"Lobachevskii Journal of Mathematics";journal;"19950802, 18189962";"Pleiades Publishing";No;No;0,420;Q2;33;424;1459;10437;1279;1459;0,89;24,62;30,46;0;United States;Northern America;"Pleiades Publishing";"1999-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13688;11900154311;"Mathematica Slovaca";journal;"01399918, 13372211";"Walter de Gruyter GmbH";No;No;0,420;Q2;34;112;338;2753;357;338;0,98;24,58;22,08;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2007-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13689;5000160302;"Revista de Derecho";journal;"07180950, 07169132";"Universidad Austral de Chile";Yes;Yes;0,420;Q2;14;15;94;707;50;94;0,47;47,13;33,33;0;Chile;Latin America;"Universidad Austral de Chile";"2006-2025";"Law (Q2)";"Social Sciences" +13690;13600154752;"South African Journal of Enology and Viticulture";journal;"0253939X";"South African Society for Enology and Viticulture";Yes;No;0,420;Q2;42;10;43;512;71;43;1,44;51,20;14,29;0;South Africa;Africa;"South African Society for Enology and Viticulture";"2004-2025";"Food Science (Q2); Horticulture (Q2)";"Agricultural and Biological Sciences" +13691;9500154151;"Surface Science Spectra";journal;"10555269, 15208575";"AVS Science and Technology Society";No;No;0,420;Q2;40;36;131;426;153;129;1,32;11,83;31,25;0;United States;Northern America;"AVS Science and Technology Society";"1992-1994, 1996, 1998-2026";"Condensed Matter Physics (Q2); Surfaces, Coatings and Films (Q2); Surfaces and Interfaces (Q3)";"Materials Science; Physics and Astronomy" +13692;29568;"Town Planning Review";journal;"1478341X, 00410020";"Liverpool University Press";No;No;0,420;Q2;54;35;112;1579;185;109;1,68;45,11;34,83;3;United Kingdom;Western Europe;"Liverpool University Press";"1977-2026";"Geography, Planning and Development (Q2); Urban Studies (Q2)";"Social Sciences" +13693;26207;"Xinan Jiaotong Daxue Xuebao/Journal of Southwest Jiaotong University";journal;"02582724";"";No;No;0,420;Q2;31;165;482;4335;707;482;1,45;26,27;34,42;0;China;Asiatic Region;"";"1991, 1998, 2001-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +13694;23938;"Atomic Spectroscopy";journal;"01955373";"Atomic Spectroscopy Press Limited";Yes;No;0,420;Q3;36;69;166;2824;407;161;2,34;40,93;39,14;0;United States;Northern America;"Atomic Spectroscopy Press Limited";"1980-1989, 1996-2026";"Spectroscopy (Q3)";"Chemistry" +13695;17954;"Computer Methods in Biomechanics and Biomedical Engineering";journal;"14768259, 10255842";"Taylor and Francis Ltd.";No;No;0,420;Q3;75;470;521;21341;1307;521;2,51;45,41;33,93;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Bioengineering (Q3); Biomedical Engineering (Q3); Computer Science Applications (Q3); Human-Computer Interaction (Q3); Medicine (miscellaneous) (Q3)";"Chemical Engineering; Computer Science; Engineering; Medicine" +13696;21100201787;"Danish Medical Journal";journal;"22451919";"Almindelige Danske Laegeforening";No;No;0,420;Q3;62;111;251;1953;273;240;1,07;17,59;50,22;0;Denmark;Western Europe;"Almindelige Danske Laegeforening";"2012-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +13697;22667;"Indian Geotechnical Journal";journal;"09719555, 22773347";"Springer India";No;No;0,420;Q3;32;440;365;21221;829;358;2,29;48,23;23,68;0;India;Asiatic Region;"Springer India";"1972-1989, 2012-2026";"Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +13698;19700167105;"Integrative Biology";journal;"17579694, 17579708";"Oxford University Press";No;No;0,420;Q3;89;23;49;1412;96;49;2,19;61,39;40,48;0;United Kingdom;Western Europe;"Oxford University Press";"2009-2026";"Biochemistry (Q3); Biophysics (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13699;27667;"Middle East Fertility Society Journal";journal;"11105690, 20903251";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,420;Q3;32;73;122;3121;243;120;1,69;42,75;53,01;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996-2026";"Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine" +13700;19700188125;"Molecular Syndromology";journal;"16618777, 16618769";"S. Karger AG";No;No;0,420;Q3;47;125;210;2974;249;204;1,06;23,79;53,20;1;Switzerland;Western Europe;"S. Karger AG";"2010-2026";"Genetics (clinical) (Q3); Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13701;29429;"Post-Communist Economies";journal;"14653958, 14631377";"Routledge";No;No;0,420;Q3;38;54;135;3281;297;131;1,87;60,76;35,61;0;United Kingdom;Western Europe;"Routledge";"1999-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +13702;21101108506;"Asia Pacific Translation and Intercultural Studies";journal;"23306351, 23306343";"Informa UK Limited";No;No;0,419;Q1;8;19;58;632;61;52;1,14;33,26;47,83;0;United Kingdom;Western Europe;"Informa UK Limited";"2017, 2019-2026";"Cultural Studies (Q1); Linguistics and Language (Q1)";"Social Sciences" +13703;19700169834;"Gender and Language";journal;"1747633X, 17476321";"University of Toronto Press";No;No;0,419;Q1;23;5;74;319;109;73;1,29;63,80;87,50;0;United Kingdom;Western Europe;"University of Toronto Press";"2008, 2010, 2013-2025";"Linguistics and Language (Q1); Philosophy (Q1); Gender Studies (Q2)";"Arts and Humanities; Social Sciences" +13704;21100386855;"Heritage and Society";journal;"2159032X, 21590338";"Maney Publishing";No;No;0,419;Q1;20;44;55;2785;92;55;1,67;63,30;48,72;0;United Kingdom;Western Europe;"Maney Publishing";"2011, 2014-2026";"Anthropology (Q1); Conservation (Q1); Cultural Studies (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +13705;18296;"Journal of Equine Veterinary Science";journal;"15427412, 07370806";"W.B. Saunders";No;No;0,419;Q1;54;162;557;5652;805;526;1,38;34,89;51,00;0;United States;Northern America;"W.B. Saunders";"1981-2026";"Equine (Q1)";"Veterinary" +13706;19700169883;"Journal of Latin American and Caribbean Anthropology";journal;"19354932, 19354940";"Wiley-Blackwell";No;No;0,419;Q1;25;30;113;1291;84;103;0,68;43,03;58,97;0;United States;Northern America;"Wiley-Blackwell";"1976, 2010-2026";"Anthropology (Q1)";"Social Sciences" +13707;21100870920;"Linguistic Variation";journal;"22116842, 22116834";"John Benjamins Publishing Company";No;No;0,419;Q1;9;28;25;1943;19;25;0,42;69,39;27,91;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2017-2026";"Linguistics and Language (Q1); Food Science (Q2)";"Agricultural and Biological Sciences; Social Sciences" +13708;12100155713;"Mental Lexicon";journal;"18711340, 18711375";"John Benjamins Publishing Company";No;No;0,419;Q1;35;7;59;515;45;55;0,54;73,57;66,67;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2006-2025";"Linguistics and Language (Q1); Cognitive Neuroscience (Q3)";"Neuroscience; Social Sciences" +13709;21101128291;"Migration and Society";journal;"25741306, 25741314";"Berghahn Journals";Yes;Yes;0,419;Q1;14;17;45;1063;74;42;1,39;62,53;80,00;0;United Kingdom;Western Europe;"Berghahn Journals";"2018-2025";"Anthropology (Q1); Geography, Planning and Development (Q2)";"Social Sciences" +13710;19600161803;"Annals of Forest Research";journal;"18448135, 20652445";"Editura Silvica";Yes;Yes;0,419;Q2;29;22;62;1556;131;62;2,07;70,73;29,33;0;Romania;Eastern Europe;"Editura Silvica";"2009-2025";"Ecology (Q2); Forestry (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13711;5800179628;"Australasian Journal of Environmental Management";journal;"14486563, 21595356";"Taylor and Francis Ltd.";No;No;0,419;Q2;37;22;70;1440;122;59;1,80;65,45;55,29;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +13712;19700174656;"Automatika";journal;"00051144";"Taylor and Francis Ltd.";Yes;No;0,419;Q2;36;73;296;2891;839;296;2,88;39,60;37,87;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q3)";"Computer Science; Engineering" +13713;20908;"Biotechnic and Histochemistry";journal;"10520295, 14737760";"Taylor and Francis Ltd.";No;No;0,419;Q2;56;48;180;1845;328;177;1,40;38,44;46,70;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1926-2026";"Medical Laboratory Technology (Q2); Histology (Q3); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine" +13714;19400158712;"Chilean Journal of Agricultural Research";journal;"07185820, 07185839";"Instituto de Investigaciones Agropecuarias, INIA";Yes;No;0,419;Q2;53;65;197;2510;413;195;1,78;38,62;41,41;0;Chile;Latin America;"Instituto de Investigaciones Agropecuarias, INIA";"2008-2025";"Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +13715;17964;"International Journal of Communication Systems";journal;"10991131, 10745351";"John Wiley and Sons Ltd";No;No;0,419;Q2;73;501;904;19979;2408;898;2,94;39,88;28,63;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1994-2026";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +13716;19700201604;"International Journal of Structural Integrity";journal;"17579872, 17579864";"Emerald Group Publishing Ltd.";No;No;0,419;Q2;35;100;167;5516;558;165;3,33;55,16;27,85;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2026";"Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +13717;21101136847;"International Tax Studies";journal;"25901117";"International Bureau of Fiscal Documentation (IBFD)";No;No;0,419;Q2;4;9;30;500;7;30;0,37;55,56;14,29;0;Netherlands;Western Europe;"International Bureau of Fiscal Documentation (IBFD)";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Law (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Economics, Econometrics and Finance; Social Sciences" +13718;21101200244;"Journal of Fuzzy Extension and Applications";journal;"27831442, 27173453";"Research Expansion Alliance (REA)";Yes;Yes;0,419;Q2;19;37;106;2031;378;106;3,74;54,89;31,37;0;Serbia;Eastern Europe;"Research Expansion Alliance (REA)";"2020-2025";"Logic (Q2); Mathematics (miscellaneous) (Q2); Applied Mathematics (Q3); Artificial Intelligence (Q3)";"Computer Science; Mathematics" +13719;21101089352;"Journal of Long-Term Care";journal;"25169122";"LSE Press";Yes;Yes;0,419;Q2;15;27;94;1168;140;94;1,34;43,26;73,94;1;United Kingdom;Western Europe;"LSE Press";"2018-2026";"Health Professions (miscellaneous) (Q2); Health (social science) (Q3)";"Health Professions; Social Sciences" +13720;19714;"Journal of Organizational Computing and Electronic Commerce";journal;"15327744, 10919392";"Taylor and Francis Ltd.";No;No;0,419;Q2;56;22;38;1940;122;38;2,89;88,18;29,69;0;United States;Northern America;"Taylor and Francis Ltd.";"1992-1993, 1996-2026";"Computational Theory and Mathematics (Q2); Information Systems (Q2); Computer Science Applications (Q3)";"Computer Science" +13721;15119;"Journal of Tropical Pediatrics";journal;"14653664, 01426338";"Oxford University Press";No;No;0,419;Q2;63;56;217;1480;273;205;1,11;26,43;54,10;1;United Kingdom;Western Europe;"Oxford University Press";"1955-2026";"Pediatrics, Perinatology and Child Health (Q2); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +13722;144816;"Methodology and Computing in Applied Probability";journal;"15737713, 13875841";"Springer";No;No;0,419;Q2;38;99;289;3076;353;288;1,24;31,07;26,29;0;United States;Northern America;"Springer";"1999-2000, 2004-2026";"Mathematics (miscellaneous) (Q2); Statistics and Probability (Q3)";"Mathematics" +13723;80601;"New Zealand Journal of Agricultural Research";journal;"00288233, 11758775";"Taylor and Francis Ltd.";No;No;0,419;Q2;57;153;115;7367;240;111;2,36;48,15;36,88;13;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1958-2025";"Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Plant Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences" +13724;19800188013;"Special Topics and Reviews in Porous Media";journal;"21514798, 2151562X";"Begell House Inc.";No;No;0,419;Q2;26;36;85;1444;224;85;2,71;40,11;20,43;0;United States;Northern America;"Begell House Inc.";"2010-2025";"Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +13725;24605;"Arhiv za Higijenu Rada i Toksikologiju";journal;"18486312, 00041254";"";Yes;Yes;0,419;Q3;51;33;105;1630;216;100;1,69;49,39;61,81;0;Germany;Western Europe;"";"1953-2025";"Public Health, Environmental and Occupational Health (Q3); Toxicology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +13726;21101146364;"ARP Rheumatology";journal;"27954552";"Sociedade Portuguesa de Reumatologia";Yes;Yes;0,419;Q3;32;55;168;1040;177;109;0,93;18,91;61,44;0;Portugal;Western Europe;"Sociedade Portuguesa de Reumatologia";"2022-2025";"Rheumatology (Q3)";"Medicine" +13727;21101079250;"Blockchain in Healthcare Today";journal;"25738240";"Partners in Digital Health";Yes;No;0,419;Q3;12;23;44;892;146;34;2,94;38,78;46,30;0;United States;Northern America;"Partners in Digital Health";"2019-2025";"Computer Science Applications (Q3); Health Information Management (Q3)";"Computer Science; Health Professions" +13728;21100239242;"Research of Environmental Sciences";journal;"10016929";"Editorial Board, Research of Environmental Sciences";No;No;0,419;Q3;36;256;778;11889;1740;776;2,44;46,44;43,90;0;China;Asiatic Region;"Editorial Board, Research of Environmental Sciences";"2013-2026";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +13729;21101162819;"Urology Research and Practice";journal;"29801478";"AVES";Yes;Yes;0,419;Q3;25;35;178;802;253;171;1,38;22,91;18,67;0;Turkey;Middle East;"AVES";"2023-2025";"Urology (Q3)";"Medicine" +13730;10900153305;"Archaeologies";journal;"15558622, 19353987";"Springer New York";No;No;0,418;Q1;29;31;67;1526;72;58;0,98;49,23;43,90;0;United States;Northern America;"Springer New York";"2007-2026";"Archeology (arts and humanities) (Q1)";"Arts and Humanities" +13731;21101198455;"Asian Journal of Philosophy";journal;"27314642";"Springer Nature";No;No;0,418;Q1;7;135;211;3975;170;206;0,79;29,44;20,98;0;Netherlands;Western Europe;"Springer Nature";"2022-2026";"Philosophy (Q1)";"Arts and Humanities" +13732;21100427205;"Etudes et Travaux";journal;"24499579, 20846762";"Institute of Mediterranean and Oriental Cultures of the Polish Academy of Sciences";Yes;Yes;0,418;Q1;9;11;22;883;20;21;0,79;80,27;42,86;0;Poland;Eastern Europe;"Institute of Mediterranean and Oriental Cultures of the Polish Academy of Sciences";"2011-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +13733;67476;"Social Anthropology";journal;"14698676, 09640282";"Berghahn Journals";Yes;Yes;0,418;Q1;58;29;109;1330;195;91;1,74;45,86;59,09;0;United Kingdom;Western Europe;"Berghahn Journals";"1982, 1992-2025";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3)";"Arts and Humanities; Psychology; Social Sciences" +13734;23304;"Advances in Physiology Education";journal;"10434046, 15221229";"American Physiological Society";Yes;No;0,418;Q2;82;146;363;4572;585;314;1,57;31,32;54,59;0;United States;Northern America;"American Physiological Society";"1998-2026";"Education (Q2); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Social Sciences" +13735;4500151511;"African Journal of Herpetology";journal;"21564574, 21533660";"Taylor and Francis Ltd.";No;No;0,418;Q2;23;18;41;1167;48;40;1,07;64,83;26,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2000, 2002-2003, 2005-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +13736;21100313904;"Anesthesiology and Pain Medicine";journal;"22287531, 22287523";"Brieflands";No;No;0,418;Q2;39;54;221;1388;336;217;1,23;25,70;38,25;0;Netherlands;Western Europe;"Brieflands";"2011-2025";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +13737;145693;"Canadian Pharmacists Journal";journal;"1913701X, 17151635";"SAGE Publications Ltd";No;No;0,418;Q2;36;63;165;1301;223;96;1,44;20,65;61,54;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2025";"Pharmaceutical Science (Q2); Pharmacy (Q2)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +13738;21100285499;"Dolomites Research Notes on Approximation";journal;"20356803";"Padova University Press";Yes;Yes;0,418;Q2;16;22;100;546;122;98;1,04;24,82;30,00;0;Italy;Western Europe;"Padova University Press";"2013-2026";"Mathematics (miscellaneous) (Q2); Applied Mathematics (Q3)";"Mathematics" +13739;33949;"Geologie en Mijnbouw/Netherlands Journal of Geosciences";journal;"15739708, 00167746";"";Yes;No;0,418;Q2;58;0;56;0;102;54;1,29;0,00;0,00;0;Netherlands;Western Europe;"";"1970-1971, 1973-2024";"Geology (Q2)";"Earth and Planetary Sciences" +13740;17258;"IEEE Electrical Insulation Magazine";journal;"15584402, 08837554";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,418;Q2;93;35;120;475;167;81;1,36;13,57;25,42;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1985-2026";"Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science" +13741;5700165202;"IET Radar, Sonar and Navigation";journal;"17518784, 17518792";"John Wiley & Sons Inc.";Yes;No;0,418;Q2;101;118;510;4151;972;499;1,83;35,18;25,06;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2007-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +13742;19700188257;"International Journal of Image and Data Fusion";journal;"19479832, 19479824";"Taylor and Francis Ltd.";No;No;0,418;Q2;38;26;60;1274;121;60;1,95;49,00;30,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Computer Science Applications (Q3)";"Computer Science; Earth and Planetary Sciences" +13743;4700152646;"International Journal of Information Technology and Decision Making";journal;"17936845, 02196220";"World Scientific Publishing Co. Pte Ltd";Yes;No;0,418;Q2;60;170;217;9933;581;200;2,78;58,43;32,47;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2002-2003, 2005-2026";"Computer Science (miscellaneous) (Q2)";"Computer Science" +13744;19300156920;"International Journal of Sport Finance";journal;"15586235, 1930076X";"SAGE Publications Ltd";No;No;0,418;Q2;35;16;44;808;47;41;1,19;50,50;18,92;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2024";"Business and International Management (Q2); Finance (Q3); Marketing (Q3); Sports Science (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Health Professions" +13745;21100275968;"Journal for European Environmental and Planning Law";journal;"18760104, 16137272";"Brill Academic Publishers";No;No;0,418;Q2;15;22;58;1639;76;50;1,55;74,50;45,83;1;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2025";"Law (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +13746;20612;"Journal of Food Safety";journal;"01496085, 17454565";"Wiley-Blackwell";No;No;0,418;Q2;62;43;224;2327;586;224;2,71;54,12;45,60;2;United States;Northern America;"Wiley-Blackwell";"1977-1978, 1980-2026";"Food Science (Q2); Microbiology (Q3); Parasitology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology" +13747;21707;"Journal of Neurosurgical Sciences";journal;"03905616, 18271855";"Edizioni Minerva Medica";No;No;0,418;Q2;46;57;306;2508;347;248;1,20;44,00;27,33;0;Italy;Western Europe;"Edizioni Minerva Medica";"1957-2026";"Surgery (Q2); Neurology (clinical) (Q3)";"Medicine" +13748;20920;"Microscopy Research and Technique";journal;"10970029, 1059910X";"Wiley-Liss Inc.";No;No;0,418;Q2;139;278;741;13140;1839;738;2,52;47,27;40,63;0;United States;Northern America;"Wiley-Liss Inc.";"1992-2026";"Anatomy (Q2); Instrumentation (Q2); Medical Laboratory Technology (Q2); Histology (Q3)";"Health Professions; Medicine; Physics and Astronomy" +13749;21101044937;"Minerva Dental and Oral Science";journal;"27246329, 27246337";"Edizioni Minerva Medica S.p.A.";No;No;0,418;Q2;38;44;163;1864;260;146;2,30;42,36;42,32;0;Italy;Western Europe;"Edizioni Minerva Medica S.p.A.";"2021-2025";"Oral Surgery (Q2); Surgery (Q2); Otorhinolaryngology (Q3)";"Dentistry; Medicine" +13750;35539;"New Zealand Journal of Crop and Horticultural Science";journal;"11758783, 01140671";"Taylor and Francis Ltd.";No;No;0,418;Q2;51;181;98;9364;237;95;2,68;51,73;39,48;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2025";"Agronomy and Crop Science (Q2); Horticulture (Q2)";"Agricultural and Biological Sciences" +13751;29464;"Physics Letters, Section A: General, Atomic and Solid State Physics";journal;"03759601";"Elsevier B.V.";No;No;0,418;Q2;200;772;1481;35673;3476;1417;2,43;46,21;29,48;0;Netherlands;Western Europe;"Elsevier B.V.";"1963, 1965, 1967-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +13752;19700181302;"Plant Ecology and Diversity";journal;"17550874, 17551668";"Routledge";No;No;0,418;Q2;49;26;59;2324;75;59;1,33;89,38;44,57;0;United Kingdom;Western Europe;"Routledge";"2008-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13753;21101270643;"Torrential Rain and Disasters";journal;"20972164";"";Yes;No;0,418;Q2;9;68;221;2046;276;221;1,30;30,09;44,26;0;China;Asiatic Region;"";"2020-2025";"Geophysics (Q2); Atmospheric Science (Q3); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science" +13754;23179;"Environmental and Ecological Statistics";journal;"13528505, 15733009";"Springer";No;No;0,418;Q3;58;56;119;2705;243;118;2,11;48,30;43,38;1;United States;Northern America;"Springer";"1994-2026";"Environmental Science (miscellaneous) (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Environmental Science; Mathematics" +13755;23423;"General Physiology and Biophysics";journal;"02315882, 13384325";"Slovak Academy of Sciences";No;No;0,418;Q3;47;42;149;1615;235;149;1,52;38,45;49,73;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences";"1983-2025";"Biophysics (Q3); Medicine (miscellaneous) (Q3); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +13756;24836;"Indian Journal of Dermatology, Venereology and Leprology";journal;"03786323, 09733922";"Scientific Scholar";Yes;No;0,418;Q3;67;270;678;3284;646;344;0,86;12,16;48,99;0;India;Asiatic Region;"Scientific Scholar";"1976-1982, 1985-1995, 2002-2026";"Dermatology (Q3); Infectious Diseases (Q3)";"Medicine" +13757;20831;"Indian Journal of Medical Microbiology";journal;"02550857, 19983646";"Indian Association of Medical Microbiologists";Yes;No;0,418;Q3;62;166;481;3393;650;434;1,38;20,44;51,21;0;India;Asiatic Region;"Indian Association of Medical Microbiologists";"1986-1987, 1989-1991, 2003-2026";"Immunology and Allergy (Q3); Infectious Diseases (Q3); Microbiology (Q3); Microbiology (medical) (Q3); Immunology (Q4)";"Immunology and Microbiology; Medicine" +13758;19900192592;"Journal of Innovative Optical Health Sciences";journal;"17935458, 17937205";"World Scientific";Yes;No;0,418;Q3;36;76;181;4202;413;171;2,10;55,29;38,42;0;Singapore;Asiatic Region;"World Scientific";"2008-2026";"Atomic and Molecular Physics, and Optics (Q3); Biomedical Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Medicine (miscellaneous) (Q3)";"Engineering; Materials Science; Medicine; Physics and Astronomy" +13759;14307;"Systematic Parasitology";journal;"15735192, 01655752";"Springer Science and Business Media B.V.";No;No;0,418;Q3;58;62;183;2864;255;183;1,57;46,19;40,72;1;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1979-2026";"Parasitology (Q3)";"Immunology and Microbiology" +13760;21100910567;"Holocaust Studies";journal;"17504902, 20484887";"Routledge";No;No;0,417;Q1;16;45;84;2408;67;80;0,79;53,51;58,93;0;United States;Northern America;"Routledge";"2005-2026";"Cultural Studies (Q1); History (Q1); Communication (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +13761;17832;"Medical Humanities";journal;"14734265, 1468215X";"BMJ Publishing Group";No;No;0,417;Q1;39;154;224;7862;378;214;1,57;51,05;62,95;3;United Kingdom;Western Europe;"BMJ Publishing Group";"1997, 2000-2026";"Philosophy (Q1); Pathology and Forensic Medicine (Q3)";"Arts and Humanities; Medicine" +13762;19600161831;"African Geographical Review";journal;"19376812";"Taylor and Francis Ltd.";No;No;0,417;Q2;28;77;126;4232;231;125;1,87;54,96;25,93;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +13763;17300154911;"Annales Societatis Geologorum Poloniae";journal;"02089068";"Polish Geological Society";No;No;0,417;Q2;27;10;55;843;62;53;0,78;84,30;25,00;0;Poland;Eastern Europe;"Polish Geological Society";"2008-2025";"Economic Geology (Q2); Geology (Q2); Stratigraphy (Q2)";"Earth and Planetary Sciences" +13764;21101049680;"Extracta Mathematicae";journal;"26055686";"Instituto de Matematicas de la Universidad de Extremadura (IMUEX)";Yes;Yes;0,417;Q2;5;14;39;289;37;39;1,23;20,64;5,26;0;Spain;Western Europe;"Instituto de Matematicas de la Universidad de Extremadura (IMUEX)";"2019-2025";"Algebra and Number Theory (Q2); Mathematics (miscellaneous) (Q2); Analysis (Q3); Geometry and Topology (Q3)";"Mathematics" +13765;21101030113;"Integers";journal;"15531732";"Colgate University";Yes;Yes;0,417;Q2;9;116;343;1851;164;343;0,40;15,96;18,09;0;United States;Northern America;"Colgate University";"2011, 2019-2026";"Algebra and Number Theory (Q2); Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +13766;26550;"International Journal of Clinical and Experimental Hypnosis";journal;"00207144, 17445183";"Routledge";No;No;0,417;Q2;57;31;79;2031;142;69;2,00;65,52;53,75;0;United Kingdom;Western Europe;"Routledge";"1959-2026";"Complementary and Manual Therapy (Q2); Clinical Psychology (Q3)";"Health Professions; Psychology" +13767;21101034465;"Iranian Journal of Mathematical Chemistry";journal;"20089015, 22286489";"University of Kashan";No;No;0,417;Q2;12;24;60;533;86;60;1,63;22,21;23,91;0;Iran;Middle East;"University of Kashan";"2019-2025";"Chemistry (miscellaneous) (Q2); Applied Mathematics (Q3)";"Chemistry; Mathematics" +13768;19900192727;"Journal de Theorie des Nombres de Bordeaux";journal;"12467405, 21188572";"Societe Arithmetique de Bordeaux";No;No;0,417;Q2;28;40;119;825;43;119;0,31;20,63;14,04;0;France;Western Europe;"Societe Arithmetique de Bordeaux";"1996-2025";"Algebra and Number Theory (Q2)";"Mathematics" +13769;19900194826;"Journal of Global Information Technology Management";journal;"1097198X, 23336846";"Taylor and Francis Ltd.";No;No;0,417;Q2;43;18;61;1173;158;38;2,25;65,17;23,08;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Information Systems (Q2); Information Systems and Management (Q2); E-learning (Q3)";"Computer Science; Decision Sciences; Social Sciences" +13770;145517;"Journal of Indian Prosthodontic Society";journal;"19984057, 09724052";"Wolters Kluwer Medknow Publications";Yes;Yes;0,417;Q2;40;56;172;1302;284;160;1,50;23,25;44,10;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2005-2026";"Dentistry (miscellaneous) (Q2); Oral Surgery (Q2)";"Dentistry" +13771;21100894515;"Materials Letters: X";journal;"25901508";"Elsevier B.V.";Yes;No;0,417;Q2;18;23;97;285;295;97;2,94;12,39;30,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science; Physics and Astronomy" +13772;130109;"Shengtai Xuebao/Acta Ecologica Sinica";journal;"10000933";"Science Press";No;No;0,417;Q2;67;465;2594;23234;5443;2594;2,16;49,97;41,91;0;China;Asiatic Region;"Science Press";"2005-2025";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13773;5700167216;"Stato e Mercato";journal;"03929701, 26120976";"Societa Editrice Il Mulino";No;No;0,417;Q2;22;17;45;696;74;44;1,65;40,94;42,86;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1997-2018, 2020-2025";"Sociology and Political Science (Q2)";"Social Sciences" +13774;19900191819;"Women's Studies in Communication";journal;"07491409, 2152999X";"Taylor and Francis Ltd.";No;No;0,417;Q2;39;35;92;1641;132;81;1,34;46,89;73,53;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-1979, 1981-2026";"Communication (Q2); Gender Studies (Q2)";"Social Sciences" +13775;5700164241;"Young";journal;"17413222, 11033088";"SAGE Publications Inc.";Yes;No;0,417;Q2;44;43;84;2386;184;82;1,48;55,49;72,55;2;United States;Northern America;"SAGE Publications Inc.";"1993-2026";"Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3); Health (social science) (Q3)";"Psychology; Social Sciences" +13776;23919;"Journal of Inverse and Ill-Posed Problems";journal;"09280219, 15693945";"Walter de Gruyter GmbH";No;No;0,417;Q3;41;56;184;1950;220;184;1,28;34,82;30,89;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1993-2026";"Applied Mathematics (Q3)";"Mathematics" +13777;29008;"Journal of Post Keynesian Economics";journal;"01603477, 15577821";"Routledge";No;No;0,417;Q3;53;34;88;1896;137;85;1,57;55,76;20,00;1;United States;Northern America;"Routledge";"1985, 1989, 1996-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +13778;30066;"Journal of Psychophysiology";journal;"21512124, 02698803";"Hogrefe Publishing GmbH";No;No;0,417;Q3;53;12;61;683;79;56;0,97;56,92;48,84;0;Germany;Western Europe;"Hogrefe Publishing GmbH";"1987-2025";"Neuropsychology and Physiological Psychology (Q3); Neuroscience (miscellaneous) (Q4); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Neuroscience; Psychology" +13779;21101017166;"KI - Kunstliche Intelligenz";journal;"16101987, 09331875";"Springer International Publishing";No;No;0,417;Q3;36;37;101;1079;226;78;2,26;29,16;22,31;0;Switzerland;Western Europe;"Springer International Publishing";"2010-2026";"Artificial Intelligence (Q3)";"Computer Science" +13780;19400158604;"Kinesiology";journal;"13311441, 1848638X";"University of Zagreb - Faculty of Kinesiology";Yes;Yes;0,417;Q3;36;30;103;1388;137;102;1,30;46,27;34,21;0;Croatia;Eastern Europe;"University of Zagreb - Faculty of Kinesiology";"2008-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)";"Health Professions" +13781;4700152603;"Medicinal Chemistry";journal;"15734064, 18756638";"Bentham Science Publishers";No;No;0,417;Q3;54;81;216;5647;624;211;3,01;69,72;34,10;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2005-2025";"Drug Discovery (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +13782;25742;"Petrology";journal;"15562085, 08695911";"Pleiades Publishing";No;No;0,417;Q3;46;40;117;2654;111;117;0,91;66,35;40,56;0;United States;Northern America;"Pleiades Publishing";"1996-2026";"Geochemistry and Petrology (Q3)";"Earth and Planetary Sciences" +13783;14259;"Protein Expression and Purification";journal;"10960279, 10465928";"Academic Press Inc.";No;No;0,417;Q3;101;137;335;5968;635;334;1,84;43,56;45,33;0;United States;Northern America;"Academic Press Inc.";"1990-2026";"Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology" +13784;21100887535;"Collection and Curation";journal;"25149326";"Emerald Group Publishing Ltd.";Yes;No;0,416;Q1;22;17;46;735;99;46;2,11;43,24;41,38;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2018-2026";"Museology (Q1); Library and Information Sciences (Q2)";"Arts and Humanities; Social Sciences" +13785;82109;"Continuum";journal;"14693666, 10304312";"Taylor and Francis Ltd.";No;No;0,416;Q1;45;94;190;3862;248;178;1,14;41,09;57,24;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-1981, 1988-1994, 2003, 2008-2026";"Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +13786;5600155023;"Ethnography";journal;"17412714, 14661381";"SAGE Publications Ltd";No;No;0,416;Q1;65;107;119;5913;171;116;1,33;55,26;51,85;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2000-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1)";"Arts and Humanities; Social Sciences" +13787;21101071257;"Advances in Continuous and Discrete Models";journal;"27314235";"Springer Science and Business Media Deutschland GmbH";No;No;0,416;Q2;86;162;174;6048;323;173;1,43;37,33;35,02;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2022-2026";"Algebra and Number Theory (Q2); Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +13788;29593;"Applied Optics";journal;"21553165, 1559128X";"Optica Publishing Group";No;No;0,416;Q2;229;1266;3933;40599;7171;3918;1,82;32,07;29,56;0;United States;Northern America;"Optica Publishing Group";"1962-2026";"Electrical and Electronic Engineering (Q2); Engineering (miscellaneous) (Q2); Atomic and Molecular Physics, and Optics (Q3)";"Engineering; Physics and Astronomy" +13789;21101268329;"AppliedChem";journal;"26739623";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,416;Q2;11;40;73;2665;196;73;2,09;66,63;43,35;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +13790;19325;"Arab Gulf Journal of Scientific Research";journal;"25360051, 19859899";"Emerald Publishing";No;No;0,416;Q2;21;15;190;580;732;190;3,71;38,67;23,33;0;United Kingdom;Western Europe;"Emerald Publishing";"1983-2026";"Agronomy and Crop Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Education (Q2); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +13791;21100853574;"Emergency Medicine International";journal;"20902840, 20902859";"John Wiley and Sons Ltd";Yes;No;0,416;Q2;10;48;92;1610;156;91;1,70;33,54;40,74;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2012, 2014-2020, 2022-2026";"Emergency Medicine (Q2)";"Medicine" +13792;21101238109;"Entrepreneurship Education";journal;"25208152, 25208144";"Springer";No;No;0,416;Q2;7;29;41;2528;128;39;3,12;87,17;28,79;0;Singapore;Asiatic Region;"Springer";"2023-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Education (Q2); Social Sciences (miscellaneous) (Q2)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +13793;21101250416;"Global Pediatrics";journal;"26670097";"Elsevier B.V.";Yes;No;0,416;Q2;11;61;210;2353;369;196;1,61;38,57;49,17;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Pediatrics, Perinatology and Child Health (Q2); Rheumatology (Q3)";"Medicine" +13794;15240;"Iranian Journal of Medical Sciences";journal;"17353688, 02530716";"Shiraz University of Medical Sciences";Yes;No;0,416;Q2;44;97;249;3039;386;213;1,59;31,33;46,19;0;Iran;Middle East;"Shiraz University of Medical Sciences";"1979-1981, 1989-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Clinical Psychology (Q3); Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics; Psychology" +13795;21101295909;"Journal of Disability Research";journal;"26762633";"King Salman Center for Disability Research";Yes;No;0,416;Q2;11;77;158;3400;476;154;3,06;44,16;29,58;0;Saudi Arabia;Middle East;"King Salman Center for Disability Research";"2022-2025";"Rehabilitation (Q2); Biomedical Engineering (Q3); Health (social science) (Q3); Medicine (miscellaneous) (Q3)";"Engineering; Medicine; Social Sciences" +13796;145257;"Journal of Technology Education";journal;"10451064";"";Yes;Yes;0,416;Q2;30;11;26;522;38;19;1,60;47,45;44,00;0;United States;Northern America;"";"2002-2025";"Education (Q2); Engineering (miscellaneous) (Q2)";"Engineering; Social Sciences" +13797;21100384025;"Open Chemistry";journal;"23915420";"Walter de Gruyter GmbH";Yes;No;0,416;Q2;48;89;475;4463;1262;475;2,72;50,15;38,32;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2003, 2015-2026";"Materials Chemistry (Q2); Chemistry (miscellaneous) (Q3)";"Chemistry; Materials Science" +13798;24515;"Separation Science and Technology";journal;"15205754, 01496395";"Taylor and Francis Ltd.";No;No;0,416;Q2;98;191;565;9477;1436;559;2,61;49,62;40,82;0;United States;Northern America;"Taylor and Francis Ltd.";"1978-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3); Filtration and Separation (Q3); Process Chemistry and Technology (Q3)";"Chemical Engineering; Chemistry" +13799;11600153419;"Topics in Companion Animal Medicine";journal;"19389736";"W.B. Saunders";No;No;0,416;Q2;59;40;150;1466;211;150;1,34;36,65;50,70;0;United States;Northern America;"W.B. Saunders";"2008-2026";"Small Animals (Q2)";"Veterinary" +13800;27539;"Archives of Iranian Medicine";journal;"10292977, 17353947";"Academy of Medical Sciences of I.R. Iran";No;No;0,416;Q3;65;101;338;1622;469;312;1,21;16,06;42,06;0;Iran;Middle East;"Academy of Medical Sciences of I.R. Iran";"2002-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +13801;15900154725;"Indian Journal of Community Medicine";journal;"09700218, 19983581";"Wolters Kluwer Medknow Publications";Yes;No;0,416;Q3;53;281;476;6593;682;423;1,46;23,46;46,43;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2009-2026";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +13802;21101178239;"International Journal of Cardiology Congenital Heart Disease";journal;"26666685";"Elsevier B.V.";Yes;No;0,416;Q3;12;90;202;3006;274;184;1,38;33,40;42,86;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +13803;17200154701;"Journal of International Advanced Otology";journal;"13087649, 21483817";"AVES";Yes;Yes;0,416;Q3;29;74;271;1692;326;267;1,11;22,86;40,12;0;Turkey;Middle East;"AVES";"2009-2025";"Medicine (miscellaneous) (Q3); Otorhinolaryngology (Q3)";"Medicine" +13804;21101199244;"Topics in Systems Engineering";book series;"28109090, 28109104";"World Scientific";No;No;0,416;Q3;1;0;3;0;5;2;2,50;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2021-2023, 2026";"Condensed Matter Physics (Q3); Control and Systems Engineering (Q3)";"Engineering; Physics and Astronomy" +13805;19400158711;"Acta Analytica";journal;"03535150, 18746349";"Springer Netherlands";No;No;0,415;Q1;17;64;118;2868;77;116;0,58;44,81;17,11;0;Netherlands;Western Europe;"Springer Netherlands";"2003, 2006-2007, 2009-2026";"Philosophy (Q1)";"Arts and Humanities" +13806;21100800449;"Critical Studies in Television";journal;"17496039, 17496020";"SAGE Publications Inc.";No;No;0,415;Q1;19;46;89;2509;128;75;1,98;54,54;60,98;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2014-2026";"Cultural Studies (Q1); Communication (Q2)";"Social Sciences" +13807;21100324716;"Journal of Disability and Religion";journal;"23312521, 2331253X";"Taylor and Francis Ltd.";No;No;0,415;Q1;21;40;97;1584;107;93;1,40;39,60;54,29;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Religious Studies (Q1); Rehabilitation (Q2); Health (social science) (Q3)";"Arts and Humanities; Medicine; Social Sciences" +13808;21101283114;"Justicia Islamica";journal;"16935926, 25027646";"Faculty of Sharia, UIN Kiai Ageng Muhammad Besari Ponorogo";No;No;0,415;Q1;6;20;60;1301;101;60;1,93;65,05;27,91;0;Indonesia;Asiatic Region;"Faculty of Sharia, UIN Kiai Ageng Muhammad Besari Ponorogo";"2022-2025";"Religious Studies (Q1); Law (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +13809;21101184585;"Paramedicine";journal;"27536386";"SAGE Publications Inc.";No;No;0,415;Q1;21;43;63;1807;123;47;2,43;42,02;54,78;1;United States;Northern America;"SAGE Publications Inc.";"2023-2026";"Emergency Medical Services (Q1); Emergency Medicine (Q2); Emergency Nursing (Q2)";"Health Professions; Medicine; Nursing" +13810;17657;"Archives of Animal Nutrition";journal;"14772817, 1745039X";"Taylor and Francis Ltd.";No;No;0,415;Q2;63;17;73;719;127;72;1,47;42,29;42,59;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980, 1988-1989, 2003-2026";"Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Medicine; Veterinary" +13811;66860;"Czech Journal of Animal Science";journal;"18059309, 12121819";"Czech Academy of Agricultural Sciences";Yes;No;0,415;Q2;52;48;143;1774;265;143;1,94;36,96;48,52;0;Czech Republic;Eastern Europe;"Czech Academy of Agricultural Sciences";"1998-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +13812;22164;"Genetic Resources and Crop Evolution";journal;"09259864, 15735109";"Springer Nature";No;No;0,415;Q2;86;647;705;37765;1655;705;2,33;58,37;37,85;3;Netherlands;Western Europe;"Springer Nature";"1992-2026";"Agronomy and Crop Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +13813;21100223326;"International Journal of Industrial Engineering Computations";journal;"19232934, 19232926";"Growing Science";Yes;No;0,415;Q2;42;75;146;2993;351;146;2,44;39,91;39,27;0;Canada;Northern America;"Growing Science";"2010-2026";"Industrial and Manufacturing Engineering (Q2)";"Engineering" +13814;21100201516;"International Journal of Mobile and Blended Learning";journal;"19418655, 19418647";"IGI Global Publishing";No;No;0,415;Q2;25;2;49;73;93;49;2,20;36,50;20,00;0;United States;Northern America;"IGI Global Publishing";"2009-2025";"Computer Science (miscellaneous) (Q2); Education (Q2); E-learning (Q3)";"Computer Science; Social Sciences" +13815;7900153139;"Journal of Oleo Science";journal;"13473352, 13458957";"Japan Oil Chemists Society";Yes;No;0,415;Q2;64;108;433;4233;1003;410;1,99;39,19;37,41;0;Japan;Asiatic Region;"Japan Oil Chemists Society";"2001-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Chemical Engineering; Chemistry; Medicine" +13816;25529;"Optimal Control Applications and Methods";journal;"10991514, 01432087";"John Wiley and Sons Ltd";No;No;0,415;Q2;57;183;404;7693;1049;399;2,77;42,04;25,57;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1980-2026";"Control and Optimization (Q2); Applied Mathematics (Q3); Control and Systems Engineering (Q3); Software (Q3)";"Computer Science; Engineering; Mathematics" +13817;19700188306;"Perspectives: Policy and Practice in Higher Education";journal;"13603108, 14607018";"Routledge";No;No;0,415;Q2;26;59;77;1962;126;58;1,74;33,25;57,00;0;United States;Northern America;"Routledge";"1997-2026";"Education (Q2)";"Social Sciences" +13818;25991;"Social Science Information";journal;"05390184, 14617412";"SAGE Publications Ltd";No;No;0,415;Q2;51;25;72;1455;146;68;1,90;58,20;31,25;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1962-2026";"Library and Information Sciences (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +13819;21100262313;"Worldwide Hospitality and Tourism Themes";journal;"17554217, 17554225";"Emerald Group Publishing Ltd.";No;No;0,415;Q2;41;79;234;2748;676;203;3,13;34,78;53,73;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2026";"Development (Q2); Management, Monitoring, Policy and Law (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Environmental Science; Social Sciences" +13820;26518;"Acta Clinica Croatica";journal;"03539466, 13339451";"Dr. Mladen Stojanovic University Hospital";Yes;Yes;0,415;Q3;35;93;466;2769;583;462;0,56;29,77;50,38;0;Croatia;Eastern Europe;"Dr. Mladen Stojanovic University Hospital";"1993-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +13821;24835;"Indian Journal of Dermatology";journal;"19983611, 00195154";"Wolters Kluwer Medknow Publications";Yes;Yes;0,415;Q3;57;105;651;1923;590;325;0,91;18,31;53,73;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1962-1990, 2006-2026";"Dermatology (Q3)";"Medicine" +13822;4700152453;"Iranian Journal of Allergy, Asthma and Immunology";journal;"17355249, 17351502";"Tehran University of Medical Sciences";Yes;No;0,415;Q3;36;75;202;2964;301;196;1,50;39,52;44,63;0;Iran;Middle East;"Tehran University of Medical Sciences";"2005-2026";"Immunology and Allergy (Q3)";"Medicine" +13823;18826;"Saudi Medical Journal";journal;"16583175, 03795284";"Saudi Arabian Armed Forces Hospital";Yes;No;0,415;Q3;69;0;647;0;963;601;1,43;0,00;0,00;0;Saudi Arabia;Middle East;"Saudi Arabian Armed Forces Hospital";"1979-2024";"Medicine (miscellaneous) (Q3)";"Medicine" +13824;21101300541;"Therapeutic advances in allergy and rhinology";journal;"27534030";"SAGE Publications Ltd";No;No;0,415;Q3;17;1;25;38;38;23;1,09;38,00;90,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2023-2025";"Immunology and Allergy (Q3); Otorhinolaryngology (Q3)";"Medicine" +13825;21100929563;"LEARN Journal: Language Education and Acquisition Research Network";journal;"26300672, 26729431";"Language Institute, Thammasat University";Yes;Yes;0,414;Q1;16;75;220;2979;414;220;1,56;39,72;63,41;0;Thailand;Asiatic Region;"Language Institute, Thammasat University";"2019-2026";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +13826;21100415026;"Invertebrate Zoology";journal;"18129250, 18140815";"KMK Scientific Press Ltd.";No;No;0,414;Q2;15;49;102;2548;102;102;1,00;52,00;41,41;1;Russian Federation;Eastern Europe;"KMK Scientific Press Ltd.";"2015-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +13827;21100246533;"Journal of Ecological Engineering";journal;"22998993";"Polskie Towarzystwo Inzynierii Ekologicznej (PTIE)";Yes;No;0,414;Q2;40;409;1157;18055;2731;1157;2,50;44,14;39,77;1;Poland;Eastern Europe;"Polskie Towarzystwo Inzynierii Ekologicznej (PTIE)";"2013-2026";"Agronomy and Crop Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Environmental Engineering (Q3); Environmental Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Environmental Science" +13828;21100774788;"Journal of Electromagnetic Engineering and Science";journal;"26717255, 26717263";"Korean Institute of Electromagnetic Engineering and Science";Yes;Yes;0,414;Q2;23;70;239;1522;385;239;1,74;21,74;17,21;0;South Korea;Asiatic Region;"Korean Institute of Electromagnetic Engineering and Science";"2013-2014, 2016-2026";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Instrumentation (Q2); Radiation (Q2)";"Computer Science; Engineering; Physics and Astronomy" +13829;19235;"Journal of Plant Nutrition";journal;"01904167, 15324087";"Taylor and Francis Ltd.";No;No;0,414;Q2;106;229;796;14557;1745;796;2,17;63,57;30,04;0;United States;Northern America;"Taylor and Francis Ltd.";"1979-2026";"Agronomy and Crop Science (Q2); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +13830;21183;"Journal of Porous Media";journal;"19340508, 1091028X";"Begell House Inc.";No;No;0,414;Q2;48;61;216;2660;557;210;2,42;43,61;22,22;0;United States;Northern America;"Begell House Inc.";"1998-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2); Biomedical Engineering (Q3); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Modeling and Simulation (Q3)";"Engineering; Materials Science; Mathematics; Physics and Astronomy" +13831;21100456864;"Professions and Professionalism";journal;"18931049";"Oslo and Akershus University College of Applied Sciences";Yes;Yes;0,414;Q2;13;12;37;549;54;36;1,00;45,75;60,00;0;Norway;Western Europe;"Oslo and Akershus University College of Applied Sciences";"2016-2025";"Education (Q2); Life-span and Life-course Studies (Q3)";"Social Sciences" +13832;23472;"Resources and Environment in the Yangtze Basin";journal;"10048227";"";No;No;0,414;Q2;20;182;655;7073;1286;655;2,16;38,86;42,60;0;China;Asiatic Region;"";"1996-1998, 2020-2025";"Ecology (Q2); Nature and Landscape Conservation (Q2); Management, Monitoring, Policy and Law (Q3); Water Science and Technology (Q3)";"Environmental Science" +13833;21101184423;"Solids";journal;"26736497";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,414;Q2;16;69;109;4034;273;108;2,21;58,46;30,49;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Physics and Astronomy (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +13834;145613;"American Journal of Family Therapy";journal;"01926187, 15210383";"Routledge";No;No;0,414;Q3;53;46;108;1914;181;106;1,51;41,61;50,53;0;United States;Northern America;"Routledge";"1979-2026";"Clinical Psychology (Q3); Social Psychology (Q3)";"Psychology" +13835;21100416172;"Clinical and Translational Imaging";journal;"22815872, 22817565";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,414;Q3;42;67;187;2525;284;157;1,26;37,69;44,30;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2013-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13836;21100296642;"Ethiopian Journal of Health Sciences";journal;"10291857, 24137170";"";Yes;Yes;0,414;Q3;42;30;387;0;649;368;1,17;0,00;31,88;0;Ethiopia;Africa;"";"2013-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +13837;21101215218;"Financial Planning Review";journal;"25738615";"John Wiley and Sons Inc";No;No;0,414;Q3;14;26;46;1318;59;34;1,19;50,69;43,40;0;United States;Northern America;"John Wiley and Sons Inc";"2018-2026";"Finance (Q3)";"Economics, Econometrics and Finance" +13838;15840;"Journal of Antibiotics";journal;"00218820, 18811469";"Springer Nature";No;No;0,414;Q3;99;88;279;2903;676;271;2,46;32,99;39,38;0;United Kingdom;Western Europe;"Springer Nature";"1953-2026";"Drug Discovery (Q3); Pharmacology (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +13839;12030;"Learning and Behavior";journal;"15434508, 15434494";"Springer New York";No;No;0,414;Q3;66;61;149;2322;157;126;1,01;38,07;52,74;0;United States;Northern America;"Springer New York";"2003-2026";"Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Behavioral Neuroscience (Q4)";"Neuroscience; Psychology" +13840;21101090041;"Magnetic Resonance";journal;"26990016";"Copernicus Publications";Yes;No;0,414;Q3;15;20;50;888;83;49;1,78;44,40;28,72;0;Germany;Western Europe;"Copernicus Publications";"2020-2026";"Analytical Chemistry (Q3); Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3)";"Chemistry; Physics and Astronomy" +13841;21101036623;"OPEC Energy Review";journal;"17530229, 17530237";"John Wiley & Sons Inc.";No;No;0,414;Q3;17;2;69;105;176;69;2,87;52,50;66,67;0;United States;Northern America;"John Wiley & Sons Inc.";"2019-2025";"Economics and Econometrics (Q3); Energy (miscellaneous) (Q3)";"Economics, Econometrics and Finance; Energy" +13842;145729;"Statistical Methods and Applications";journal;"16182510, 1613981X";"";No;No;0,414;Q3;37;58;186;2388;270;180;1,50;41,17;45,28;0;Germany;Western Europe;"";"1996-1997, 2000-2026";"Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +13843;26074;"Transfusion and Apheresis Science";journal;"14730502, 18781683";"Elsevier Ltd";No;No;0,414;Q3;69;200;521;4357;587;434;1,09;21,79;48,62;0;United Kingdom;Western Europe;"Elsevier Ltd";"1996-2026";"Hematology (Q3)";"Medicine" +13844;4700152639;"American Museum Novitates";book series;"00030082";"American Museum of Natural History";No;No;0,413;Q1;47;8;46;736;69;46;1,62;92,00;25,00;0;United States;Northern America;"American Museum of Natural History";"2005-2025";"Archeology (Q1); History (Q1); Museology (Q1)";"Arts and Humanities; Social Sciences" +13845;5800207537;"Language and Literature";journal;"09639470, 14617293";"SAGE Publications Ltd";No;No;0,413;Q1;43;24;56;1097;68;55;1,00;45,71;61,29;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2026";"Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +13846;21101196452;"Nations and Religions of Eurasia";journal;"25422332, 26868040";"Altai State University";Yes;Yes;0,413;Q1;3;51;82;1712;31;82;0,38;33,57;48,78;0;Russian Federation;Eastern Europe;"Altai State University";"2023-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +13847;21101041529;"Revista Mediterranea de Comunicacion";journal;"1989872X, 25300024";"Universidad de Alicante";Yes;Yes;0,413;Q1;15;44;162;2390;237;143;1,46;54,32;65,31;0;Spain;Western Europe;"Universidad de Alicante";"2020-2026";"Cultural Studies (Q1); Communication (Q2)";"Social Sciences" +13848;12633;"Aircraft Engineering and Aerospace Technology";journal;"17584213, 17488842";"Emerald Publishing";No;No;0,413;Q2;44;154;473;5023;987;465;2,27;32,62;27,00;0;United Kingdom;Western Europe;"Emerald Publishing";"1929-2026";"Aerospace Engineering (Q2)";"Engineering" +13849;21100285045;"Azerbaijan Journal of Mathematics";journal;"22219501, 22186816";"Institute of Mathematics and Mechanics NAS of Azerbaijan";Yes;No;0,413;Q2;19;34;83;738;81;82;0,93;21,71;24,24;0;Azerbaijan;Eastern Europe;"Institute of Mathematics and Mechanics NAS of Azerbaijan";"2011-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13850;19400157158;"Estudios Sobre Educacion";journal;"15787001, 23866292";"Servicio de Publicaciones de la Universidad de Navarra";Yes;Yes;0,413;Q2;21;18;56;923;84;56;1,44;51,28;65,31;0;Spain;Western Europe;"Servicio de Publicaciones de la Universidad de Navarra";"2001-2026";"Education (Q2)";"Social Sciences" +13851;21101136824;"European Taxation";journal;"00143138, 23529199";"International Bureau of Fiscal Documentation (IBFD)";No;No;0,413;Q2;5;71;224;1792;34;208;0,19;25,24;37,93;0;Netherlands;Western Europe;"International Bureau of Fiscal Documentation (IBFD)";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Law (Q2)";"Economics, Econometrics and Finance; Social Sciences" +13852;15091;"Folia Morphologica (Poland)";journal;"00155659, 16443284";"Via Medica";Yes;No;0,413;Q2;42;115;375;4294;575;371;1,47;37,34;40,99;0;Poland;Eastern Europe;"Via Medica";"1952-1955, 1961, 1964-2026";"Anatomy (Q2); Histology (Q3)";"Medicine" +13853;19900192318;"Gadjah Mada International Journal of Business";journal;"14111128, 23387238";"Gadjah Mada University";Yes;Yes;0,413;Q2;20;15;45;1164;128;45;2,63;77,60;51,61;0;Indonesia;Asiatic Region;"Gadjah Mada University";"2010-2026";"Business and International Management (Q2); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13854;4500151509;"International Journal of Applied Mathematics and Computer Science";journal;"1641876X, 20838492";"";Yes;No;0,413;Q2;56;50;141;1685;268;141;1,90;33,70;25,18;0;Germany;Western Europe;"";"2001-2002, 2006-2025";"Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Applied Mathematics (Q3)";"Computer Science; Engineering; Mathematics" +13855;21101316431;"JMIR XR and Spatial Computing";journal;"28183045";"JMIR Publications Inc.";Yes;No;0,413;Q2;4;21;19;1263;44;18;2,32;60,14;34,68;0;Canada;Northern America;"JMIR Publications Inc.";"2024-2025";"Anesthesiology and Pain Medicine (Q2); Critical Care and Intensive Care Medicine (Q2); Surgery (Q2); Health Informatics (Q3)";"Medicine" +13856;21100901952;"Journal of Air Transportation";journal;"23809450";"American Institute of Aeronautics and Astronautics Inc. (AIAA)";No;No;0,413;Q2;17;29;53;1191;119;51;2,05;41,07;22,08;0;United States;Northern America;"American Institute of Aeronautics and Astronautics Inc. (AIAA)";"2016-2026";"Aerospace Engineering (Q2); Safety Research (Q2); Energy (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Management of Technology and Innovation (Q3); Transportation (Q3)";"Business, Management and Accounting; Energy; Engineering; Environmental Science; Social Sciences" +13857;23827;"Journal of Cardiac Surgery";journal;"08860440, 15408191";"John Wiley and Sons Inc";No;No;0,413;Q2;71;60;1226;1538;1091;839;0,41;25,63;23,39;0;United States;Northern America;"John Wiley and Sons Inc";"1986-2026";"Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +13858;23103;"Journal of Pharmacy Practice";journal;"08971900, 15311937";"SAGE Publications Inc.";No;No;0,413;Q2;43;112;571;2366;807;543;1,31;21,13;59,61;1;United States;Northern America;"SAGE Publications Inc.";"1988-2026";"Pharmacy (Q2); Pharmacology (medical) (Q3)";"Health Professions; Medicine" +13859;21100202150;"Operations Research for Health Care";journal;"22116923";"Elsevier B.V.";No;No;0,413;Q2;41;1;28;42;73;27;1,77;42,00;0,00;0;United Kingdom;Western Europe;"Elsevier B.V.";"2012-2025";"Health Professions (miscellaneous) (Q2); Oral Surgery (Q2); Surgery (Q2); Management Science and Operations Research (Q3); Medicine (miscellaneous) (Q3); Otorhinolaryngology (Q3)";"Decision Sciences; Dentistry; Health Professions; Medicine" +13860;15810;"Probability in the Engineering and Informational Sciences";journal;"02699648, 14698951";"Cambridge University Press";No;No;0,413;Q2;44;29;163;959;177;162;0,84;33,07;28,13;0;United Kingdom;Western Europe;"Cambridge University Press";"1987-2026";"Industrial and Manufacturing Engineering (Q2); Management Science and Operations Research (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Engineering; Mathematics" +13861;19388;"Archivio Italiano di Urologia e Andrologia";journal;"11243562, 22824197";"Page Press Publications";Yes;No;0,413;Q3;34;120;305;3332;445;282;1,25;27,77;21,49;0;Italy;Western Europe;"Page Press Publications";"1993-2025";"Urology (Q3)";"Medicine" +13862;19500157005;"Cardiac Electrophysiology Clinics";journal;"18779182, 18779190";"W.B. Saunders";No;No;0,413;Q3;30;66;198;3010;209;162;0,94;45,61;28,39;0;United States;Northern America;"W.B. Saunders";"2009-2026";"Cardiology and Cardiovascular Medicine (Q3); Physiology (medical) (Q3)";"Medicine" +13863;22523;"Clay Minerals";journal;"00098558, 14718030";"Mineralogical Society";No;No;0,413;Q3;84;24;87;1584;181;87;2,00;66,00;37,11;0;United Kingdom;Western Europe;"Mineralogical Society";"1979-2026";"Geochemistry and Petrology (Q3)";"Earth and Planetary Sciences" +13864;16643;"Current Problems in Diagnostic Radiology";journal;"15356302, 03630188";"Elsevier Inc.";No;No;0,413;Q3;46;140;348;3513;541;339;1,50;25,09;42,66;0;United States;Northern America;"Elsevier Inc.";"1976-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13865;13921;"High Altitude Medicine and Biology";journal;"15578682, 15270297";"Mary Ann Liebert Inc.";No;No;0,413;Q3;67;75;150;2751;217;129;1,41;36,68;36,07;0;United States;Northern America;"Mary Ann Liebert Inc.";"2000-2026";"Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3); Physiology (Q4); Sports Science (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +13866;17210;"Journal of Computer Assisted Tomography";journal;"15323145, 03638715";"Lippincott Williams and Wilkins";No;No;0,413;Q3;106;152;405;4741;579;400;1,49;31,19;35,20;0;United States;Northern America;"Lippincott Williams and Wilkins";"1977-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13867;12100157208;"Journal of Economics and Finance";journal;"10550925, 19389744";"Springer New York";No;No;0,413;Q3;41;43;140;2138;307;140;2,17;49,72;22,73;0;United States;Northern America;"Springer New York";"1992-2026";"Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +13868;21101262976;"Journal of Pharmaceutical and Biomedical Analysis Open";journal;"2949771X";"Elsevier B.V.";Yes;No;0,413;Q3;9;49;43;3517;178;43;4,14;71,78;49,52;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Analytical Chemistry (Q3)";"Chemistry" +13869;21101370217;"Journal of Psychopathology";journal;"24996904, 22840249";"Pacini Editore Srl";No;No;0,413;Q3;19;24;71;1013;113;69;1,80;42,21;59,62;0;Italy;Western Europe;"Pacini Editore Srl";"2014-2015, 2017-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +13870;19700174717;"NASN School Nurses";journal;"19426038, 1942602X";"SAGE Publications Inc.";No;No;0,413;Q3;18;53;178;843;189;127;1,13;15,91;90,43;0;United States;Northern America;"SAGE Publications Inc.";"2009-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +13871;14669;"Orbit";journal;"01676830, 17445108";"Taylor and Francis Ltd.";No;Yes;0,413;Q3;48;201;448;3527;465;384;0,96;17,55;43,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-2026";"Medicine (miscellaneous) (Q3); Ophthalmology (Q3)";"Medicine" +13872;8000153145;"Proceedings - IEEE Computer Security Foundations Symposium";conference and proceedings;"19401434";"IEEE Computer Society";No;No;0,413;-;72;40;121;1609;162;115;1,29;40,23;20,54;0;United States;Northern America;"IEEE Computer Society";"1997, 2007-2011, 2016-2025";"Engineering (miscellaneous)";"Engineering" +13873;30408;"American Indian and Alaska Native Mental Health Research";journal;"15337731, 08935394";"University Press of Colorado";No;No;0,412;Q1;33;11;38;210;54;38;0,75;19,09;67,16;0;United States;Northern America;"University Press of Colorado";"1987-1990, 1992-2026";"Anthropology (Q1); History (Q1); Education (Q2); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3)";"Arts and Humanities; Medicine; Psychology; Social Sciences" +13874;21101323219;"Arab World English Journal";journal;"22299327";"";No;No;0,412;Q1;16;155;496;6650;1000;495;2,14;42,90;58,87;0;Malaysia;Asiatic Region;"";"2015, 2022-2026";"Linguistics and Language (Q1)";"Social Sciences" +13875;5800208127;"Catalan Journal of Linguistics";journal;"16956885, 20149719";"Universitat Autonoma de Barcelona";Yes;Yes;0,412;Q1;26;10;22;654;11;19;0,77;65,40;55,56;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2002-2025";"Linguistics and Language (Q1)";"Social Sciences" +13876;1300147101;"Foundations of Science";journal;"12331821, 15728471";"Springer Science and Business Media B.V.";No;No;0,412;Q1;35;103;202;5888;289;166;1,64;57,17;21,74;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1995, 1997-2002, 2005-2026";"History and Philosophy of Science (Q1); Multidisciplinary (Q2)";"Arts and Humanities; Multidisciplinary" +13877;21100864742;"HOPOS";journal;"21525188, 21566240";"University of Chicago Press";No;No;0,412;Q1;13;26;61;1431;42;59;0,78;55,04;11,54;0;United States;Northern America;"University of Chicago Press";"2013, 2015-2026";"History and Philosophy of Science (Q1)";"Arts and Humanities" +13878;21100901016;"Journal of Language and Education";journal;"24117390";"National Research University Higher School of Economics (HSE University)";Yes;Yes;0,412;Q1;17;40;147;2350;312;146;2,31;58,75;66,20;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2018-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +13879;21100386854;"Journal of Museum Education";journal;"10598650, 20516169";"Maney Publishing";No;No;0,412;Q1;19;84;147;1975;168;128;0,52;23,51;72,32;0;United Kingdom;Western Europe;"Maney Publishing";"2012, 2014-2026";"Museology (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +13880;24529;"Acta Mathematica Hungarica";journal;"15882632, 02365294";"Springer Netherlands";No;No;0,412;Q2;49;84;295;1613;213;295;0,75;19,20;20,16;0;Netherlands;Western Europe;"Springer Netherlands";"1983-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13881;21101043579;"Annals of Corporate Governance";journal;"23816732, 23816724";"Now Publishers Inc";No;No;0,412;Q2;6;3;7;838;16;7;2,25;279,33;30,00;0;United States;Northern America;"Now Publishers Inc";"2019-2025";"Business, Management and Accounting (miscellaneous) (Q2); Law (Q2); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +13882;21101334583;"Aquaculture, Fish and Fisheries";journal;"26938847";"John Wiley and Sons Ltd";Yes;No;0,412;Q2;10;26;145;1879;301;143;1,45;72,27;26,61;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2022-2026";"Animal Science and Zoology (Q2); Aquatic Science (Q2)";"Agricultural and Biological Sciences" +13883;25322;"Bulletin of Latin American Research";journal;"14709856, 02613050";"Wiley-Blackwell Publishing Ltd";No;No;0,412;Q2;42;27;134;1193;173;129;0,98;44,19;57,50;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1982-2026";"Development (Q2); Geography, Planning and Development (Q2)";"Social Sciences" +13884;19637;"Crime, Law and Social Change";journal;"15730751, 09254994";"Springer Netherlands";No;No;0,412;Q2;63;56;192;3731;411;190;2,06;66,63;37,17;0;Netherlands;Western Europe;"Springer Netherlands";"1991-2026";"Law (Q2); Social Sciences (miscellaneous) (Q2); Pathology and Forensic Medicine (Q3)";"Medicine; Social Sciences" +13885;21101026934;"Economics and Business Review";journal;"23921641, 24500097";"";Yes;Yes;0,412;Q2;13;23;95;1196;249;88;2,90;52,00;39,22;0;Poland;Eastern Europe;"";"2019-2025";"Business and International Management (Q2); Economics and Econometrics (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +13886;21100201977;"Electronic Journal of Information Systems in Developing Countries";journal;"16814835";"John Wiley and Sons Inc";Yes;No;0,412;Q2;56;56;128;3778;359;123;2,78;67,46;47,46;0;China;Asiatic Region;"John Wiley and Sons Inc";"2000-2026";"Information Systems (Q2); E-learning (Q3)";"Computer Science; Social Sciences" +13887;21100898979;"Environmental Law Review";journal;"17405564, 14614529";"SAGE Publications Ltd";No;No;0,412;Q2;11;18;63;920;79;49;1,05;51,11;60,00;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2026";"Geography, Planning and Development (Q2); Law (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +13888;18400156716;"Fottea";journal;"18025439, 18054927";"Czech phycological Society";Yes;No;0,412;Q2;37;17;59;846;118;58;1,79;49,76;49,30;0;Czech Republic;Eastern Europe;"Czech phycological Society";"2008-2025";"Plant Science (Q2)";"Agricultural and Biological Sciences" +13889;21101144867;"GRUR International";journal;"26328623, 26328550";"Oxford University Press";No;No;0,412;Q2;13;97;340;6245;285;298;0,75;64,38;46,15;4;United Kingdom;Western Europe;"Oxford University Press";"2020-2026";"Law (Q2)";"Social Sciences" +13890;21101161422;"Hydrogeology and Engineering Geology";journal;"10003665";"";Yes;No;0,412;Q2;21;136;397;5016;695;394;1,72;36,88;30,56;0;China;Asiatic Region;"";"2019-2025";"Earth-Surface Processes (Q2); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +13891;19700166614;"International Journal of Orthopaedic and Trauma Nursing";journal;"18781241, 18781292";"Elsevier Ltd";No;No;0,412;Q2;27;58;118;1701;212;101;1,62;29,33;57,02;0;United Kingdom;Western Europe;"Elsevier Ltd";"2010-2026";"Advanced and Specialized Nursing (Q2); Orthopedics and Sports Medicine (Q3)";"Medicine; Nursing" +13892;21101163369;"Journal of Dentistry (Iran)";journal;"23456485, 23456418";"Shiraz University of Medical Sciences";Yes;No;0,412;Q2;9;50;183;1674;303;181;1,71;33,48;48,62;0;Iran;Middle East;"Shiraz University of Medical Sciences";"2022-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +13893;21100255503;"Journal of Flow Chemistry";journal;"20630212, 2062249X";"Springer Nature";No;No;0,412;Q2;36;30;136;1163;314;134;2,67;38,77;32,34;0;Switzerland;Western Europe;"Springer Nature";"2011-2026";"Fluid Flow and Transfer Processes (Q2); Chemistry (miscellaneous) (Q3); Organic Chemistry (Q3)";"Chemical Engineering; Chemistry" +13894;5800179580;"Physica Status Solidi (A) Applications and Materials Science";journal;"18626300, 18626319";"Wiley-VCH Verlag";No;No;0,412;Q2;122;410;1186;18374;2485;1161;2,10;44,81;26,01;0;Germany;Western Europe;"Wiley-VCH Verlag";"2005-2026";"Electrical and Electronic Engineering (Q2); Surfaces, Coatings and Films (Q2); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3); Materials Chemistry (Q3); Surfaces and Interfaces (Q3)";"Engineering; Materials Science; Physics and Astronomy" +13895;16334;"Proceedings of the Institution of Mechanical Engineers, Part H: Journal of Engineering in Medicine";journal;"09544119, 20413033";"SAGE Publications Ltd";No;No;0,412;Q2;93;97;375;4481;849;372;2,15;46,20;28,57;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1989-2026";"Mechanical Engineering (Q2); Medicine (miscellaneous) (Q3)";"Engineering; Medicine" +13896;20410;"Proceedings of the Institution of Mechanical Engineers, Part J: Journal of Engineering Tribology";journal;"2041305X, 13506501";"SAGE Publications Ltd";No;No;0,412;Q2;73;170;461;8033;1249;458;2,80;47,25;23,17;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994-2026";"Mechanical Engineering (Q2); Surfaces, Coatings and Films (Q2); Surfaces and Interfaces (Q3)";"Engineering; Materials Science; Physics and Astronomy" +13897;26481;"Society";journal;"01472011, 19364725";"Springer New York";No;No;0,412;Q2;36;86;171;3337;248;150;1,38;38,80;30,21;0;United States;Northern America;"Springer New York";"1968, 1971-1999, 2002-2026";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +13898;21100941199;"Statistics and Public Policy";journal;"2330443X";"Taylor and Francis Inc.";Yes;No;0,412;Q2;21;7;43;268;79;34;1,41;38,29;37,50;0;United States;Northern America;"Taylor and Francis Inc.";"2014-2025";"Public Administration (Q2); Applied Mathematics (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics; Social Sciences" +13899;21101176838;"Traditional and Kampo Medicine";journal;"20534515";"John Wiley and Sons Inc";No;No;0,412;Q2;15;35;124;718;119;75;1,27;20,51;23,45;0;United States;Northern America;"John Wiley and Sons Inc";"2014-2026";"Complementary and Alternative Medicine (Q2); Pharmacology (medical) (Q3)";"Medicine" +13900;21101154811;"Vestnik Rossiyskikh Universitetov. Matematika";journal;"27823342, 26869667";"Tambov State University";No;No;0,412;Q2;5;28;96;407;45;96;0,44;14,54;21,95;0;Russian Federation;Eastern Europe;"Tambov State University";"2019-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +13901;32957;"Acta Clinica Belgica: International Journal of Clinical and Laboratory Medicine";journal;"17843286, 22953337";"Taylor and Francis Ltd.";No;No;0,412;Q3;45;25;263;734;334;259;1,15;29,36;50,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1946-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +13902;88147;"Indian Journal of Labour Economics";journal;"00195308";"Springer International Publishing AG";No;No;0,412;Q3;28;66;161;2619;246;159;1,30;39,68;38,02;4;Switzerland;Western Europe;"Springer International Publishing AG";"1996, 1998-2013, 2015-2025";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +13903;21101306239;"JHLT Open";journal;"29501334";"Elsevier B.V.";Yes;No;0,412;Q3;6;232;144;7653;190;137;1,32;32,99;36,98;2;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +13904;7600153124;"Journal of Hunger and Environmental Nutrition";journal;"19320248, 19320256";"Taylor and Francis Ltd.";No;No;0,412;Q3;44;140;205;6159;338;205;1,61;43,99;61,82;1;United States;Northern America;"Taylor and Francis Ltd.";"2006-2026";"Health (social science) (Q3); Nutrition and Dietetics (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing; Social Sciences" +13905;21100809151;"Journal of Mid-Life Health";journal;"09767819, 09767800";"Wolters Kluwer Medknow Publications";Yes;Yes;0,412;Q3;28;85;190;1965;267;162;0,94;23,12;57,94;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2016-2026";"Health (social science) (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +13906;16469;"Pakistan Journal of Medical Sciences";journal;"1682024X, 1681715X";"Professional Medical Publications";Yes;No;0,412;Q3;56;594;1261;14048;2057;1189;1,56;23,65;49,20;0;Pakistan;Asiatic Region;"Professional Medical Publications";"2000-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +13907;29707;"Reports on Mathematical Physics";journal;"00344877";"Elsevier Ltd";No;No;0,412;Q3;46;40;142;1073;168;142;1,16;26,83;24,64;0;United Kingdom;Western Europe;"Elsevier Ltd";"1970-1980, 1984-1986, 1988-1989, 1991-2025";"Mathematical Physics (Q3); Statistical and Nonlinear Physics (Q3)";"Mathematics; Physics and Astronomy" +13908;12792;"Pastoral Psychology";journal;"15736679, 00312789";"Springer New York";No;No;0,411;Q1;36;105;188;6116;262;186;1,40;58,25;47,45;1;United States;Northern America;"Springer New York";"1950-1972, 1975-2002, 2005-2026";"Religious Studies (Q1); Sociology and Political Science (Q2); Applied Psychology (Q3); Social Psychology (Q3)";"Arts and Humanities; Psychology; Social Sciences" +13909;21100904692;"Translation and Translanguaging in Multilingual Contexts";journal;"23521813, 23521805";"John Benjamins Publishing Company";No;No;0,411;Q1;10;19;56;809;68;53;0,84;42,58;60,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2025";"Linguistics and Language (Q1); Literature and Literary Theory (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +13910;21100773738;"Amphibian and Reptile Conservation";journal;"1083446X, 15259153";"Amphibian and Reptile Conservation";No;No;0,411;Q2;17;11;34;559;38;34;1,07;50,82;39,13;0;United States;Northern America;"Amphibian and Reptile Conservation";"2016-2026";"Animal Science and Zoology (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13911;12400154704;"Aquatic Mammals";journal;"01675427, 19967292";"European Association for Aquatic Mammals";No;No;0,411;Q2;38;23;207;899;206;197;0,99;39,09;60,00;0;Belgium;Western Europe;"European Association for Aquatic Mammals";"2008-2025";"Animal Science and Zoology (Q2); Aquatic Science (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +13912;21101041507;"Discrete Mathematics Letters";journal;"26642557";"Shahin Digital Publisher";Yes;Yes;0,411;Q2;13;25;155;444;131;153;0,77;17,76;10,42;0;Pakistan;Asiatic Region;"Shahin Digital Publisher";"2019-2026";"Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +13913;19400157155;"Hacettepe Journal of Mathematics and Statistics";journal;"2651477X, 13035010";"Hacettepe University";No;No;0,411;Q2;42;145;358;4422;398;358;1,11;30,50;31,53;0;Turkey;Middle East;"Hacettepe University";"2008-2025";"Algebra and Number Theory (Q2); Analysis (Q3); Geometry and Topology (Q3); Statistics and Probability (Q3)";"Mathematics" +13914;19515;"International Journal of Wireless Information Networks";journal;"10689605, 15728129";"Springer New York";No;No;0,411;Q2;38;0;80;0;213;77;2,51;0,00;0,00;0;United States;Northern America;"Springer New York";"1994-2024, 2026";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q3)";"Computer Science; Engineering" +13915;21100217216;"Iranian Journal of Science and Technology - Transactions of Civil Engineering";journal;"22286160, 23641843";"Springer Science and Business Media Deutschland GmbH";No;No;0,411;Q2;35;548;852;31283;2204;852;2,53;57,09;21,69;1;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2012-2026";"Civil and Structural Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences; Engineering" +13916;21100463939;"Journal of Engineering (United Kingdom)";journal;"23144912, 23144904";"John Wiley and Sons Ltd";Yes;No;0,411;Q2;42;128;201;5932;667;201;3,60;46,34;19,85;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Chemical Engineering (miscellaneous) (Q2); Civil and Structural Engineering (Q2); Electrical and Electronic Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Hardware and Architecture (Q3)";"Chemical Engineering; Computer Science; Engineering" +13917;21101021415;"Journal of Heat and Mass Transfer Research";journal;"23833068";"Semnan University, Center of Excellence in Nonlinear Analysis and Applications";Yes;Yes;0,411;Q2;11;21;72;898;150;72;2,25;42,76;20,00;0;Iran;Middle East;"Semnan University, Center of Excellence in Nonlinear Analysis and Applications";"2019-2025";"Fluid Flow and Transfer Processes (Q2); Mechanical Engineering (Q2); Condensed Matter Physics (Q3)";"Chemical Engineering; Engineering; Physics and Astronomy" +13918;21100781705;"Journal of Machine Engineering";journal;"18957595, 23918071";"Editorial Institution of Wroclaw Board of Scientific";Yes;No;0,411;Q2;18;38;119;1010;224;119;1,66;26,58;27,42;0;Poland;Eastern Europe;"Editorial Institution of Wroclaw Board of Scientific";"2016-2025";"Industrial and Manufacturing Engineering (Q2); Computer Science Applications (Q3)";"Computer Science; Engineering" +13919;35303;"Journal of Manipulative and Physiological Therapeutics";journal;"01614754, 15326586";"Elsevier Inc.";No;No;0,411;Q2;91;97;119;4173;200;119;1,34;43,02;48,27;0;United States;Northern America;"Elsevier Inc.";"1982-2025";"Chiropractics (Q2)";"Health Professions" +13920;21101123259;"Journal of Problem Based Learning in Higher Education";journal;"22460918";"Aalborg University press";Yes;Yes;0,411;Q2;8;16;57;655;90;51;1,23;40,94;50,00;0;Denmark;Western Europe;"Aalborg University press";"2019-2025";"Education (Q2)";"Social Sciences" +13921;4700152864;"Journal of Public Child Welfare";journal;"15548732, 15548740";"Taylor and Francis Ltd.";No;No;0,411;Q2;32;109;134;6496;245;133;1,81;59,60;70,22;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +13922;21101021772;"Journal of Resources and Ecology";journal;"1674764X";"Editorial office of Journal of Resources and Ecology";No;No;0,411;Q2;19;158;378;6610;696;373;1,72;41,84;46,30;0;China;Asiatic Region;"Editorial office of Journal of Resources and Ecology";"2019-2026";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Environmental Engineering (Q3)";"Agricultural and Biological Sciences; Environmental Science" +13923;12320;"Journal of the Optical Society of America A: Optics and Image Science, and Vision";journal;"15208532, 10847529";"Optica Publishing Group";Yes;No;0,411;Q2;182;284;921;9516;1516;911;1,61;33,51;28,15;0;United States;Northern America;"Optica Publishing Group";"1979, 1984-2026";"Computer Vision and Pattern Recognition (Q2); Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3); Medicine (miscellaneous) (Q3)";"Computer Science; Materials Science; Medicine; Physics and Astronomy" +13924;21101145473;"Mediterranean Geoscience Reviews";journal;"2661863X, 26618648";"Springer Nature";No;No;0,411;Q2;18;69;64;5112;130;59;2,27;74,09;19,73;1;Netherlands;Western Europe;"Springer Nature";"2019-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +13925;27730;"New Astronomy";journal;"13841092, 13841076";"Elsevier B.V.";No;No;0,411;Q2;76;104;376;6143;820;373;2,38;59,07;25,75;0;Netherlands;Western Europe;"Elsevier B.V.";"1996-2026";"Instrumentation (Q2); Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Physics and Astronomy" +13926;13859;"Research in Nondestructive Evaluation";journal;"09349847, 14322110";"Taylor and Francis Ltd.";No;No;0,411;Q2;37;16;52;563;92;50;1,73;35,19;20,31;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2002, 2004-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science; Physics and Astronomy" +13927;144730;"Studies in Nonlinear Dynamics and Econometrics";journal;"15583708, 10811826";"Walter de Gruyter GmbH";No;No;0,411;Q2;38;66;107;3256;110;106;1,14;49,33;25,00;1;Germany;Western Europe;"Walter de Gruyter GmbH";"2002-2026";"Social Sciences (miscellaneous) (Q2); Analysis (Q3); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Mathematics; Social Sciences" +13928;23858;"Turkish Online Journal of Distance Education";journal;"13026488";"Anadolu Universitesi";Yes;No;0,411;Q2;41;60;200;3827;364;195;1,58;63,78;45,11;0;Turkey;Middle East;"Anadolu Universitesi";"2004-2026";"Education (Q2)";"Social Sciences" +13929;73153;"Weed Biology and Management";journal;"14446162, 14456664";"Wiley-Blackwell Publishing Ltd";No;No;0,411;Q2;47;10;34;658;68;34;2,08;65,80;28,95;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2001-2026";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +13930;20032;"Acta Radiologica";journal;"02841851, 16000455";"SAGE Publications Ltd";No;No;0,411;Q3;84;153;744;4320;1052;731;1,31;28,24;38,47;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1921-2026";"Medicine (miscellaneous) (Q3); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Health Professions; Medicine" +13931;27550;"European Physical Journal E";journal;"12928941, 1292895X";"Springer New York";No;No;0,411;Q3;106;78;297;4443;559;290;2,22;56,96;25,76;0;United States;Northern America;"Springer New York";"2000-2026";"Biophysics (Q3); Biotechnology (Q3); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Surfaces and Interfaces (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Medicine; Physics and Astronomy" +13932;21100854826;"Hepatic Oncology";journal;"20450923, 20450931";"Taylor and Francis Ltd.";Yes;No;0,411;Q3;5;8;11;556;20;11;1,78;69,50;51,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016, 2020, 2022-2025";"Hepatology (Q3); Oncology (Q3)";"Medicine" +13933;21100215168;"International Journal of Vascular Medicine";journal;"20902824, 20902832";"John Wiley and Sons Ltd";Yes;No;0,411;Q3;38;11;13;394;25;13;0,71;35,82;26,53;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +13934;21100305001;"Longitudinal and Life Course Studies";journal;"17579597";"Bristol University Press";No;No;0,411;Q3;25;34;92;1693;100;73;0,88;49,79;45,24;0;United Kingdom;Western Europe;"Bristol University Press";"2014-2026";"Life-span and Life-course Studies (Q3)";"Social Sciences" +13935;21101117186;"Programme Grants for Applied Research";journal;"20504322, 20504330";"NIHR Journals Library";Yes;Yes;0,411;Q3;9;12;28;1128;31;28;0,53;94,00;63,91;0;United Kingdom;Western Europe;"NIHR Journals Library";"2019-2026";"Health Informatics (Q3); Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +13936;21100780549;"Russian Sociological Review";journal;"1728192X, 17281938";"National Research University Higher School of Economics (HSE University)";Yes;Yes;0,410;Q1;12;30;141;1825;104;139;0,78;60,83;27,27;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2001-2003, 2016-2025";"Cultural Studies (Q1); Philosophy (Q1); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +13937;17300;"Botanica Marina";journal;"00068055, 14374323";"Walter de Gruyter GmbH";No;No;0,410;Q2;72;49;134;2877;270;131;1,90;58,71;50,25;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1959-2025";"Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +13938;25251;"Business Lawyer";journal;"00076899";"American Bar Association";No;No;0,410;Q2;25;45;163;6597;71;152;0,31;146,60;22,12;0;United States;Northern America;"American Bar Association";"1979, 1995-2012, 2014-2025";"Law (Q2); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Social Sciences" +13939;22804;"Chemical Papers";journal;"03666352, 25857290";"Springer International Publishing AG";Yes;No;0,410;Q2;68;709;1890;38864;5585;1889;3,10;54,82;37,87;0;Switzerland;Western Europe;"Springer International Publishing AG";"1973, 1996-2026";"Chemical Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Biochemistry (Q3); Chemistry (miscellaneous) (Q3); Materials Chemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Engineering; Materials Science" +13940;20430;"International Journal of Acarology";journal;"01647954";"Taylor and Francis Ltd.";No;No;0,410;Q2;37;73;209;2338;223;209;1,07;32,03;40,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1975-2026";"Insect Science (Q2)";"Agricultural and Biological Sciences" +13941;21100902609;"Journal of Korean Academy of Nursing Administration";journal;"22884955, 12259330";"Korean Academy of Nursing Administration";No;No;0,410;Q2;17;53;154;2093;174;154;1,02;39,49;67,67;0;South Korea;Asiatic Region;"Korean Academy of Nursing Administration";"2018-2026";"Education (Q2); Nursing (miscellaneous) (Q2)";"Nursing; Social Sciences" +13942;20984;"Proceedings of the Institution of Mechanical Engineers, Part K: Journal of Multi-body Dynamics";journal;"20413068, 14644193";"SAGE Publications Ltd";No;No;0,410;Q2;49;41;120;1497;277;119;2,30;36,51;21,05;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1999-2026";"Mechanical Engineering (Q2); Condensed Matter Physics (Q3)";"Engineering; Physics and Astronomy" +13943;21100466426;"Communications in Mathematics and Statistics";journal;"21946701, 2194671X";"Springer Verlag";No;No;0,410;Q3;21;95;134;2910;178;133;1,23;30,63;36,28;0;Germany;Western Europe;"Springer Verlag";"2013-2026";"Applied Mathematics (Q3); Computational Mathematics (Q3); Statistics and Probability (Q3)";"Mathematics" +13944;21100358312;"Current Geriatrics Reports";journal;"21967865";"Springer";No;No;0,410;Q3;26;25;54;1518;72;54;1,49;60,72;60,92;0;United States;Northern America;"Springer";"2012, 2014-2026";"Geriatrics and Gerontology (Q3)";"Medicine" +13945;16202;"International Review of Neurobiology";book series;"21625514, 00747742";"Academic Press Inc.";No;No;0,410;Q3;105;73;217;7041;553;39;2,09;96,45;35,44;0;United States;Northern America;"Academic Press Inc.";"1959-1967, 1969-1972, 1974-1977, 1979, 1981-1986, 1988-1990, 1992-2026";"Neurology (clinical) (Q3); Cellular and Molecular Neuroscience (Q4)";"Medicine; Neuroscience" +13946;4700152751;"Journal of Workplace Behavioral Health";journal;"15555259, 15555240";"Routledge";No;No;0,410;Q3;28;93;65;5764;121;61;1,70;61,98;55,32;0;United States;Northern America;"Routledge";"2005-2026";"Applied Psychology (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Psychology" +13947;21167;"Pharmacogenomics";journal;"14622416, 17448042";"Taylor and Francis Ltd.";No;No;0,410;Q3;106;71;254;4075;403;236;1,54;57,39;48,64;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Pharmacology (Q3); Genetics (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +13948;19900188060;"Anthropological Journal of European Cultures";journal;"17552923, 17552931";"Berghahn Journals";Yes;Yes;0,409;Q1;14;18;51;751;80;46;1,82;41,72;57,14;0;United Kingdom;Western Europe;"Berghahn Journals";"2008-2025";"Anthropology (Q1); Cultural Studies (Q1)";"Social Sciences" +13949;11200153529;"Journal of Spirituality in Mental Health";journal;"19349645, 19349637";"Routledge";No;No;0,409;Q1;23;53;68;2978;110;68;1,45;56,19;51,52;0;United States;Northern America;"Routledge";"2006-2026";"Religious Studies (Q1); Social Sciences (miscellaneous) (Q2); Applied Psychology (Q3); Social Psychology (Q3)";"Arts and Humanities; Psychology; Social Sciences" +13950;21101105751;"Jurnal Pendidikan Islam";journal;"24608149, 23554339";"Faculty of Tarbiya and Teacher Training UIN Sunan Gunung";Yes;Yes;0,409;Q1;11;30;67;1514;215;67;3,10;50,47;47,06;0;Indonesia;Asiatic Region;"Faculty of Tarbiya and Teacher Training UIN Sunan Gunung";"2019-2025";"Religious Studies (Q1); Education (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +13951;5600152903;"Labor Studies Journal";journal;"0160449X, 15389758";"SAGE Publications Inc.";No;No;0,409;Q1;30;27;58;1075;71;55;1,17;39,81;29,27;0;United States;Northern America;"SAGE Publications Inc.";"1996-2026";"Arts and Humanities (miscellaneous) (Q1); Industrial Relations (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +13952;29346;"South Atlantic Quarterly";journal;"15278026, 00382876";"Duke University Press";No;No;0,409;Q1;58;50;155;1770;212;147;1,15;35,40;44,90;0;United States;Northern America;"Duke University Press";"1904-1905, 1907, 1912-1913, 1919, 1926, 1941, 1959-1960, 1962-1964, 1970-1971, 1973, 1977-1981, 1984, 1986-1987, 1999, 2001-2025";"Cultural Studies (Q1); Literature and Literary Theory (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +13953;21567;"Annales de la Societe Entomologique de France";journal;"00379271, 21686351";"Taylor and Francis Ltd.";No;No;0,409;Q2;42;35;87;1406;74;81;0,91;40,17;23,97;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988, 1996-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +13954;16671;"Emergency Radiology";journal;"14381435, 10703004";"Springer Science and Business Media Deutschland GmbH";No;No;0,409;Q2;56;116;306;2857;425;298;1,15;24,63;32,15;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1994-2026";"Emergency Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +13955;21100896874;"European Journal of Educational Research";journal;"21658714";"Eurasian Society of Educational Research";Yes;No;0,409;Q2;35;86;431;4867;980;431;1,98;56,59;57,58;0;Netherlands;Western Europe;"Eurasian Society of Educational Research";"2018-2026";"Education (Q2)";"Social Sciences" +13956;29577;"Journal of Biological Systems";journal;"17936470, 02183390";"World Scientific";No;No;0,409;Q2;42;45;142;1963;236;141;1,58;43,62;38,10;0;Singapore;Asiatic Region;"World Scientific";"1995-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Ecology (Q2); Applied Mathematics (Q3)";"Agricultural and Biological Sciences; Environmental Science; Mathematics" +13957;16788;"Journal of Bodywork and Movement Therapies";journal;"15329283, 13608592";"Churchill Livingstone";No;No;0,409;Q2;73;478;834;20143;1302;831;1,47;42,14;45,88;0;United States;Northern America;"Churchill Livingstone";"1996-2026";"Complementary and Alternative Medicine (Q2); Complementary and Manual Therapy (Q2); Rehabilitation (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine" +13958;144699;"Journal of Mechanical Science and Technology";journal;"1738494X, 19763824";"Korean Society of Mechanical Engineers";No;No;0,409;Q2;84;667;1740;20076;4074;1740;2,38;30,10;26,28;1;South Korea;Asiatic Region;"Korean Society of Mechanical Engineers";"1996, 2005-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +13959;22447;"Journal of the Indian Institute of Science";journal;"00194964, 09704140";"Indian Institute of Science";No;No;0,409;Q2;46;20;197;2198;479;169;2,00;109,90;21,05;0;India;Asiatic Region;"Indian Institute of Science";"1974, 1976-1978, 1983-1984, 1988, 1995-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +13960;21100831406;"Journal of The Institution of Engineers (India): Series D";journal;"22502130, 22502122";"Springer";No;No;0,409;Q2;30;242;438;9344;1766;438;4,36;38,61;12,99;0;India;Asiatic Region;"Springer";"2012-2026";"Mechanical Engineering (Q2); Metals and Alloys (Q2); Geotechnical Engineering and Engineering Geology (Q3); Materials Chemistry (Q3)";"Earth and Planetary Sciences; Engineering; Materials Science" +13961;19900191993;"Journal of Visualized Experiments";journal;"1940087X";"MyJoVE Corporation";No;No;0,409;Q2;152;1269;3086;40484;3469;3042;1,06;31,90;43,40;0;United States;Northern America;"MyJoVE Corporation";"2006-2026";"Chemical Engineering (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology; Neuroscience" +13962;21101136742;"Justice Evaluation Journal";journal;"24751979, 24751987";"Routledge";No;No;0,409;Q2;14;28;39;1486;71;39;2,29;53,07;42,42;0;United Kingdom;Western Europe;"Routledge";"2018-2026";"Law (Q2)";"Social Sciences" +13963;21100324700;"Kuwait Journal of Science";journal;"23074108, 23074116";"Elsevier B.V.";Yes;Yes;0,409;Q2;28;150;467;7708;1250;466;3,21;51,39;30,28;0;Netherlands;Western Europe;"Elsevier B.V.";"2013-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +13964;19700169884;"NORA - Nordic Journal of Feminist and Gender Research";journal;"08038740, 1502394X";"Routledge";No;No;0,409;Q2;37;51;87;2638;126;73;1,58;51,73;87,64;2;United Kingdom;Western Europe;"Routledge";"1993-2026";"Gender Studies (Q2)";"Social Sciences" +13965;23969;"Proceedings of the Institution of Mechanical Engineers, Part D: Journal of Automobile Engineering";journal;"09544070, 20412991";"SAGE Publications Inc.";No;No;0,409;Q2;80;810;823;30385;2131;821;2,52;37,51;26,16;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1989-2026";"Aerospace Engineering (Q2); Mechanical Engineering (Q2)";"Engineering" +13966;7000153220;"Research in Post-Compulsory Education";journal;"13596748, 17475112";"Routledge";No;No;0,409;Q2;30;41;98;1944;161;97;1,77;47,41;59,65;1;United Kingdom;Western Europe;"Routledge";"1996-2026";"Education (Q2)";"Social Sciences" +13967;21101032713;"Rural Educator";journal;"26439662, 0273446X";"National Rural Education Association";Yes;Yes;0,409;Q2;14;32;80;1302;142;72;0,93;40,69;63,08;0;United States;Northern America;"National Rural Education Association";"2019-2025";"Education (Q2)";"Social Sciences" +13968;4400151405;"Uluslararasi Iliskiler";journal;"13047310";"International Relations Council of Turkey";No;No;0,409;Q2;13;25;80;1754;93;75;0,98;70,16;42,86;1;Turkey;Middle East;"International Relations Council of Turkey";"2005-2025";"Political Science and International Relations (Q2)";"Social Sciences" +13969;21101188421;"Applied AI Letters";journal;"26895595";"John Wiley and Sons Inc";Yes;No;0,409;Q3;15;30;24;1168;71;4;2,29;38,93;18,97;0;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Artificial Intelligence (Q3)";"Computer Science" +13970;19700173223;"Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders";journal;"11795441";"SAGE Publications Ltd";Yes;No;0,409;Q3;30;14;34;361;66;33;1,45;25,79;49,02;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008, 2010-2026";"Immunology and Allergy (Q3); Rheumatology (Q3)";"Medicine" +13971;130123;"Hemodialysis International";journal;"15424758, 14927535";"John Wiley and Sons Inc";No;No;0,409;Q3;61;96;199;2882;293;187;1,51;30,02;47,89;1;United States;Northern America;"John Wiley and Sons Inc";"2004-2026";"Hematology (Q3); Nephrology (Q3)";"Medicine" +13972;11700154321;"International Journal of Innovation Management";journal;"17575877, 13639196";"World Scientific Publishing Co. Pte Ltd";No;No;0,409;Q3;64;61;225;4830;438;221;1,59;79,18;36,63;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2004, 2008-2025";"Business and International Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +13973;21100860435;"Journal of Motor Learning and Development";journal;"23253215, 23253193";"Human Kinetics Publishers Inc.";No;No;0,409;Q3;23;43;99;2288;148;97;1,51;53,21;46,47;0;United States;Northern America;"Human Kinetics Publishers Inc.";"2017-2026";"Biophysics (Q3); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Orthopedics and Sports Medicine (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience; Psychology" +13974;14484;"Journal of Neuro-Ophthalmology";journal;"10708022, 15365166";"Lippincott Williams and Wilkins";No;No;0,409;Q3;80;263;869;2733;675;660;0,67;10,39;41,13;0;United States;Northern America;"Lippincott Williams and Wilkins";"1994-2026";"Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3); Ophthalmology (Q3)";"Medicine" +13975;21100202721;"Journal of Public Mental Health";journal;"20428731, 17465729";"Emerald Group Publishing Ltd.";No;No;0,409;Q3;32;46;99;1813;127;88;1,06;39,41;60,98;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1999-2000, 2003-2026";"Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +13976;21100927199;"Journal of Ultrasonography";journal;"2451070X, 20848404";"Walter de Gruyter GmbH";Yes;Yes;0,409;Q3;16;40;121;970;190;116;1,44;24,25;42,78;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2019-2025";"Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Health Professions; Medicine" +13977;21100855807;"Medeniyet Medical Journal";journal;"21492042, 21494606";"Galenos Publishing House";Yes;Yes;0,409;Q3;15;40;142;931;185;120;1,35;23,28;46,85;0;Turkey;Middle East;"Galenos Publishing House";"2015-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +13978;16408;"Ochsner Journal";journal;"15245012";"Ochsner Clinic";Yes;Yes;0,409;Q3;55;52;190;911;260;152;1,44;17,52;33,71;0;United States;Northern America;"Ochsner Clinic";"2001-2003, 2006-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +13979;21100905025;"Results in Applied Mathematics";journal;"25900374";"Elsevier B.V.";Yes;No;0,409;Q3;19;149;223;4592;342;223;1,56;30,82;26,59;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Applied Mathematics (Q3)";"Mathematics" +13980;14823;"Social Cognition";journal;"0278016X";"Guilford Publications";No;No;0,409;Q3;95;30;73;1691;69;70;0,85;56,37;46,34;0;United States;Northern America;"Guilford Publications";"1982, 1985-1987, 1996-2025";"Developmental and Educational Psychology (Q3); Social Psychology (Q3)";"Psychology" +13981;18773;"Water International";journal;"02508060";"Taylor and Francis Ltd.";No;No;0,409;Q3;72;60;220;2632;374;156;1,75;43,87;34,18;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1975-2026";"Management, Monitoring, Policy and Law (Q3); Water Science and Technology (Q3)";"Environmental Science" +13982;21101236074;"Australian Journal of Applied Linguistics";journal;"22090959";"Castledown Publishers";Yes;No;0,408;Q1;7;48;43;2847;102;42;2,19;59,31;40,00;0;Australia;Pacific Region;"Castledown Publishers";"2021-2026";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +13983;23596;"Feminist Review";journal;"14664380, 01417789";"Palgrave Macmillan Ltd.";No;No;0,408;Q1;66;22;97;717;115;83;1,18;32,59;95,24;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1994-2026";"Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q2)";"Arts and Humanities; Social Sciences" +13984;4700152741;"Journal of Ethnicity in Criminal Justice";journal;"15377938, 15377946";"Routledge";No;No;0,408;Q1;26;17;48;921;54;46;0,78;54,18;65,52;0;United States;Northern America;"Routledge";"2003-2026";"Anthropology (Q1); Law (Q2)";"Social Sciences" +13985;21101058363;"Language Teaching Research Quarterly";journal;"26676753";"European Knowledge Development (EUROKD)";No;No;0,408;Q1;14;83;206;4721;344;200;1,69;56,88;53,67;0;Turkey;Middle East;"European Knowledge Development (EUROKD)";"2019-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +13986;19900191856;"Studia Theologica - Nordic Journal of Theology";journal;"15027791, 0039338X";"Routledge";No;No;0,408;Q1;11;14;42;493;17;36;0,45;35,21;23,08;0;United Kingdom;Western Europe;"Routledge";"1947-2026";"Religious Studies (Q1)";"Arts and Humanities" +13987;16400154762;"Zeitschrift fur Assyriologie und Vorderasiastische Archaeologie";journal;"00845299, 16131150";"Walter de Gruyter GmbH";No;No;0,408;Q1;20;11;36;580;22;36;0,35;52,73;27,78;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1886-1900, 1902-1903, 1905-1912, 1914-1918, 1921-1931, 1933-1934, 1936, 1938-1941, 1944, 1950, 1952, 1955, 1957, 1959, 1961-1962, 1964-1965, 1967, 1969-1992, 1994-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +13988;24137;"Amphibia - Reptilia";journal;"01735373, 15685381";"Brill Academic Publishers";No;No;0,408;Q2;56;44;124;2980;165;123;1,08;67,73;31,78;1;Netherlands;Western Europe;"Brill Academic Publishers";"1980-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +13989;21101080101;"Arid Land Geography";journal;"10006060";"Science China Press";No;No;0,408;Q2;19;192;564;6939;1077;564;2,15;36,14;42,45;0;China;Asiatic Region;"Science China Press";"2019-2025";"Earth-Surface Processes (Q2); Ecology (Q2); Geology (Q2); Atmospheric Science (Q3)";"Earth and Planetary Sciences; Environmental Science" +13990;18500168400;"Asian Affairs";journal;"03068374, 14771500";"Routledge";No;No;0,408;Q2;22;45;108;1789;123;93;0,84;39,76;22,64;1;United Kingdom;Western Europe;"Routledge";"1995-2026";"Geography, Planning and Development (Q2); Law (Q2); Political Science and International Relations (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +13991;26956;"Building Services Engineering Research and Technology";journal;"14770849, 01436244";"SAGE Publications Inc.";No;No;0,408;Q2;47;57;123;2063;260;119;1,94;36,19;29,61;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"1980-2026";"Building and Construction (Q2)";"Engineering" +13992;4700152809;"Data Science Journal";journal;"16831470";"Ubiquity Press";Yes;No;0,408;Q2;34;38;114;1690;222;112;1,74;44,47;38,93;0;France;Western Europe;"Ubiquity Press";"2003, 2006-2026";"Computer Science (miscellaneous) (Q2); Computer Science Applications (Q3)";"Computer Science" +13993;21101223525;"Frontiers in Engineering and Built Environment";journal;"26342499, 26342502";"Emerald Publishing";Yes;Yes;0,408;Q2;10;18;37;857;126;37;3,70;47,61;12,50;0;United Kingdom;Western Europe;"Emerald Publishing";"2021-2025";"Civil and Structural Engineering (Q2); Electrical and Electronic Engineering (Q2); Engineering (miscellaneous) (Q2); Mechanical Engineering (Q2)";"Engineering" +13994;26349;"Geologica Carpathica";journal;"13368052, 13350552";"";Yes;Yes;0,408;Q2;51;11;85;909;109;85;1,17;82,64;19,61;0;Slovakia;Eastern Europe;"";"1991-2025";"Geology (Q2)";"Earth and Planetary Sciences" +13995;21100811263;"Geotechnical Research";journal;"20526156";"ICE Publishing";Yes;No;0,408;Q2;23;13;53;467;75;40;1,74;35,92;10,87;0;United Kingdom;Western Europe;"ICE Publishing";"2014-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +13996;12000154348;"International Journal of Electronic Government Research";journal;"15483894, 15483886";"IGI Publishing";No;No;0,408;Q2;38;14;62;718;172;62;2,67;51,29;30,00;0;United States;Northern America;"IGI Publishing";"2005-2025";"Computer Networks and Communications (Q2); Social Sciences (miscellaneous) (Q2); E-learning (Q3); Hardware and Architecture (Q3); Software (Q3)";"Computer Science; Social Sciences" +13997;78505;"Italian Review of Agricultural Economics";journal;"22811559, 00356190";"Firenze University Press";No;No;0,408;Q2;9;5;68;336;115;63;1,60;67,20;38,46;0;Italy;Western Europe;"Firenze University Press";"1978-1979, 2019-2026";"Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Food Science (Q2); Geography, Planning and Development (Q2); Social Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Social Sciences" +13998;18801;"OIE Revue Scientifique et Technique";journal;"16080637, 02531933";"World Organisation for Animal Health";Yes;No;0,408;Q2;107;1;86;22;148;80;1,69;22,00;0,00;0;France;Western Europe;"World Organisation for Animal Health";"1990-2024";"Animal Science and Zoology (Q2); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Medicine" +13999;12397;"Polar Record";journal;"00322474, 14753057";"Cambridge University Press";No;No;0,408;Q2;43;29;93;1689;152;91;1,58;58,24;27,66;0;United Kingdom;Western Europe;"Cambridge University Press";"1931-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Ecology (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +14000;21101267547;"Revista General de Derecho Constitucional";journal;"18867650, 18866212";"Iustel";No;No;0,408;Q2;3;18;58;838;13;56;0,32;46,56;41,67;0;Spain;Western Europe;"Iustel";"2020-2025";"Law (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14001;12347;"Thin Solid Films";journal;"00406090";"Elsevier B.V.";No;No;0,408;Q2;225;236;1055;10877;2354;1050;2,32;46,09;29,03;0;Netherlands;Western Europe;"Elsevier B.V.";"1967-2026";"Metals and Alloys (Q2); Surfaces, Coatings and Films (Q2); Electronic, Optical and Magnetic Materials (Q3); Materials Chemistry (Q3); Surfaces and Interfaces (Q3)";"Materials Science; Physics and Astronomy" +14002;22933;"Turkish Journal of Electrical Engineering and Computer Sciences";journal;"13000632, 13036203";"TUBITAK";Yes;No;0,408;Q2;48;44;294;1888;634;294;2,50;42,91;22,90;0;Turkey;Middle East;"TUBITAK";"1996-2026";"Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2)";"Computer Science; Engineering" +14003;30027;"Canadian Journal of Dietetic Practice and Research";journal;"14863847, 22929592";"Dietitians of Canada";No;No;0,408;Q3;39;32;103;510;95;89;0,77;15,94;82,28;0;Canada;Northern America;"Dietitians of Canada";"1996-2025";"Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +14004;4900152712;"Chinese Journal of Analytical Chemistry";journal;"02533820, 18722040";"Chinese Academy of Sciences";No;No;0,408;Q3;45;108;272;5401;717;265;2,83;50,01;44,82;0;China;Asiatic Region;"Chinese Academy of Sciences";"1989, 1996-2026";"Analytical Chemistry (Q3)";"Chemistry" +14005;19700175093;"Clinical Pharmacology: Advances and Applications";journal;"11791438";"Dove Medical Press Ltd";Yes;No;0,408;Q3;39;23;26;1843;58;24;2,21;80,13;56,25;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2026";"Pharmacology (medical) (Q3)";"Medicine" +14006;21100258747;"International Journal of Renewable Energy Research";journal;"13090127";"Gazi Universitesi";Yes;No;0,408;Q3;50;57;429;2073;1062;429;2,99;36,37;22,97;0;Turkey;Middle East;"Gazi Universitesi";"2011-2026";"Energy Engineering and Power Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +14007;81032;"Japanese Economic Review";journal;"13524739, 14685876";"Wiley-Blackwell Publishing Ltd";No;No;0,408;Q3;33;49;92;1800;81;83;0,81;36,73;21,18;6;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1995-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +14008;15352;"Japanese Psychological Research";journal;"00215368, 14685884";"Wiley-Blackwell Publishing Ltd";No;No;0,408;Q3;40;82;166;3560;207;162;1,08;43,41;34,44;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1954-1956, 1958-1990, 1992-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +14009;21101339748;"Journal of Computational Algebra";journal;"27728277";"Elsevier B.V.";Yes;No;0,408;Q3;4;11;24;203;30;24;1,27;18,45;9,52;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Algebra and Number Theory (Q3); Applied Mathematics (Q3); Computational Mathematics (Q3)";"Mathematics" +14010;21100426136;"Critical African Studies";journal;"21681392, 20407211";"Taylor and Francis Ltd.";No;No;0,407;Q1;21;36;69;2152;98;62;1,02;59,78;37,04;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +14011;99172;"Norwegian Archaeological Review";journal;"15027678, 00293652";"Routledge";No;No;0,407;Q1;34;20;35;741;26;23;0,82;37,05;26,67;0;United Kingdom;Western Europe;"Routledge";"1968-2025";"Archeology (arts and humanities) (Q1)";"Arts and Humanities" +14012;11900154360;"Revista INVI";journal;"07181299, 07188358";"Universidad de Chile";Yes;Yes;0,407;Q1;25;33;87;1876;111;81;0,85;56,85;55,56;0;Chile;Latin America;"Universidad de Chile";"2008-2025";"Architecture (Q1); Urban Studies (Q2)";"Engineering; Social Sciences" +14013;26584;"Chemical Physics";journal;"03010104";"Elsevier B.V.";No;No;0,407;Q2;138;335;755;18073;1815;748;2,66;53,95;32,45;0;Netherlands;Western Europe;"Elsevier B.V.";"1973-2026";"Physics and Astronomy (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q3)";"Chemistry; Physics and Astronomy" +14014;79582;"EPPO Bulletin";journal;"02508052, 13652338";"Wiley-Blackwell";No;No;0,407;Q2;48;76;201;1495;217;134;1,01;19,67;34,15;1;United States;Northern America;"Wiley-Blackwell";"1971-2025";"Agronomy and Crop Science (Q2); Horticulture (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +14015;200147106;"Geosciences Journal";journal;"15987477, 12264806";"Korean Association of Geoscience Societies";No;No;0,407;Q2;50;68;162;3751;239;157;1,41;55,16;28,06;0;South Korea;Asiatic Region;"Korean Association of Geoscience Societies";"1997-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science" +14016;21101277812;"Innovation and Emerging Technologies";journal;"27375994, 28109007";"World Scientific";No;No;0,407;Q2;9;51;61;3067;204;61;3,45;60,14;35,40;0;Singapore;Asiatic Region;"World Scientific";"2022-2026";"Electrical and Electronic Engineering (Q2); Bioengineering (Q3); Biomaterials (Q3); Biomedical Engineering (Q3)";"Chemical Engineering; Engineering; Materials Science" +14017;21101145466;"International Journal of Educational Research and Innovation";journal;"23864303";"Universidad Pablo de Olavide";Yes;Yes;0,407;Q2;18;20;74;926;172;74;3,18;46,30;50,00;0;Spain;Western Europe;"Universidad Pablo de Olavide";"2019-2025";"Education (Q2)";"Social Sciences" +14018;21100921050;"International Journal of Information and Education Technology";journal;"20103689";"International Journal of Information and Education Technology";No;No;0,407;Q2;29;266;633;13503;1662;633;2,91;50,76;48,81;0;Singapore;Asiatic Region;"International Journal of Information and Education Technology";"2014, 2019-2026";"Education (Q2); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +14019;21100869222;"Journal of Legal Affairs and Dispute Resolution in Engineering and Construction";journal;"19434162, 19434170";"American Society of Civil Engineers (ASCE)";No;No;0,407;Q2;29;103;243;5429;540;239;2,30;52,71;29,44;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"2009, 2018-2026";"Civil and Structural Engineering (Q2); Engineering (miscellaneous) (Q2); Law (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering; Social Sciences" +14020;21100898027;"Journal on Mathematics Education";journal;"24070610, 20878885";"Sriwijaya University";Yes;No;0,407;Q2;36;68;146;3625;449;133;3,00;53,31;53,74;0;Indonesia;Asiatic Region;"Sriwijaya University";"2010-2026";"Education (Q2); Mathematics (miscellaneous) (Q2)";"Mathematics; Social Sciences" +14021;21100838755;"Nonlinear Functional Analysis and Applications";journal;"24660973, 12291595";"Kyungnam University Press";Yes;No;0,407;Q2;17;63;194;1633;241;194;1,15;25,92;36,22;0;South Korea;Asiatic Region;"Kyungnam University Press";"2017-2025";"Control and Optimization (Q2); Numerical Analysis (Q2); Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +14022;14022;"Paleontological Journal";journal;"15556174, 00310301";"";No;No;0,407;Q2;43;122;429;5686;328;420;0,69;46,61;43,98;0;Russian Federation;Eastern Europe;"";"1990-2025";"Paleontology (Q2)";"Earth and Planetary Sciences" +14023;21100490427;"Physics Teacher";journal;"0031921X, 19434928";"American Institute of Physics";No;No;0,407;Q2;49;247;827;2729;445;671;0,52;11,05;28,79;0;United States;Northern America;"American Institute of Physics";"1963-1968, 1972-1974, 1976-1979, 1981-1984, 1986-1990, 1993-1994, 1996-2026";"Education (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy; Social Sciences" +14024;19700169404;"Primate Conservation";journal;"08986207";"IUCN/SSC Primate Specialist Group";No;No;0,407;Q2;21;8;53;488;47;51;0,53;61,00;43,33;0;United States;Northern America;"IUCN/SSC Primate Specialist Group";"2009-2010, 2013-2018, 2020-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Environmental Science" +14025;26373;"Rocky Mountain Journal of Mathematics";journal;"19453795, 00357596";"Rocky Mountain Mathematics Consortium";No;No;0,407;Q2;50;123;380;2064;298;380;0,81;16,78;24,21;0;United States;Northern America;"Rocky Mountain Mathematics Consortium";"1971-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +14026;21101144403;"Scandinavian Journal of Public Administration";journal;"20017413, 20017405";"University of Gothenburg School of Public Administration";Yes;Yes;0,407;Q2;10;16;61;832;102;59;1,59;52,00;58,06;0;Sweden;Western Europe;"University of Gothenburg School of Public Administration";"2019-2025";"Business, Management and Accounting (miscellaneous) (Q2); Law (Q2); Public Administration (Q2)";"Business, Management and Accounting; Social Sciences" +14027;24880;"South African Journal of Science";journal;"19967489, 00382353";"Academy of Science of South Africa";Yes;Yes;0,407;Q2;75;113;378;3821;612;267;1,24;33,81;52,38;1;South Africa;Africa;"Academy of Science of South Africa";"1973-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Earth and Planetary Sciences" +14028;19700201507;"Zoologia";journal;"19844689, 19844670";"";Yes;No;0,407;Q2;46;61;126;3410;172;124;1,56;55,90;32,18;0;Brazil;Latin America;"";"2009-2025";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +14029;21101260505;"ZTE Communications";journal;"16735188";"";No;No;0,407;Q2;13;38;154;1147;234;142;1,66;30,18;34,21;0;China;Asiatic Region;"";"2020-2025";"Communication (Q2); Computer Networks and Communications (Q2); Signal Processing (Q3)";"Computer Science; Social Sciences" +14030;27820;"Acta Gastro-Enterologica Belgica";journal;"30414326, 17843227";"Universa Press";No;No;0,407;Q3;42;60;227;1548;219;169;1,01;25,80;36,73;0;Belgium;Western Europe;"Universa Press";"1946-2025";"Gastroenterology (Q3)";"Medicine" +14031;12400154717;"Jiaotong Yunshu Xitong Gongcheng Yu Xinxi/Journal of Transportation Systems Engineering and Information Technology";journal;"10096744";"Science Press";No;No;0,407;Q3;36;198;568;3369;1172;568;2,14;17,02;33,76;0;China;Asiatic Region;"Science Press";"2008-2025";"Computer Science Applications (Q3); Control and Systems Engineering (Q3); Modeling and Simulation (Q3); Transportation (Q3)";"Computer Science; Engineering; Mathematics; Social Sciences" +14032;21101278626;"JMIR Biomedical Engineering";journal;"25613278";"JMIR Publications Inc.";Yes;No;0,407;Q3;4;10;19;643;53;19;2,79;64,30;28,26;1;Canada;Northern America;"JMIR Publications Inc.";"2021, 2024-2026";"Biomedical Engineering (Q3); Health Informatics (Q3)";"Engineering; Medicine" +14033;25129;"Journal of Environmental Pathology, Toxicology and Oncology";journal;"07318898";"Begell House Inc.";No;No;0,407;Q3;54;29;78;1133;175;78;2,31;39,07;44,19;0;United States;Northern America;"Begell House Inc.";"1984-1990, 1992-2026";"Health, Toxicology and Mutagenesis (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Toxicology (Q3)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +14034;21100372826;"Alpine and Mediterranean Quaternary";journal;"22797335, 22797327";"AIQUA - Associazione Italiana per lo Studio del Quaternario";Yes;Yes;0,406;Q1;35;8;26;691;41;26;2,11;86,38;31,25;0;Italy;Western Europe;"AIQUA - Associazione Italiana per lo Studio del Quaternario";"1988-2026";"Archeology (arts and humanities) (Q1); Earth-Surface Processes (Q2); Geology (Q2); Paleontology (Q2)";"Arts and Humanities; Earth and Planetary Sciences" +14035;13300154702;"Applied Physics Express";journal;"18820786, 18820778";"Japan Society of Applied Physics";Yes;No;0,406;Q2;120;127;877;4517;1950;873;2,24;35,57;16,86;0;Japan;Asiatic Region;"Japan Society of Applied Physics";"2008-2025";"Engineering (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Engineering; Physics and Astronomy" +14036;19156;"Arthropod Structure and Development";journal;"14678039, 18735495";"Elsevier Ltd";No;No;0,406;Q2;75;47;125;2647;198;122;1,39;56,32;27,85;0;United Kingdom;Western Europe;"Elsevier Ltd";"2000-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2); Medicine (miscellaneous) (Q3); Developmental Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +14037;21100266566;"Brazilian Journal of Geology";journal;"23174692, 23174889";"Sociedade Brasileira de Geologia";Yes;Yes;0,406;Q2;33;10;83;603;110;82;1,37;60,30;27,78;0;Brazil;Latin America;"Sociedade Brasileira de Geologia";"1978, 2013-2025";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +14038;16366;"Canadian Journal of Chemical Engineering";journal;"00084034, 1939019X";"John Wiley and Sons Inc";No;No;0,406;Q2;89;490;1144;27671;2683;1117;2,32;56,47;30,91;0;United States;Northern America;"John Wiley and Sons Inc";"1958-2026";"Chemical Engineering (miscellaneous) (Q2)";"Chemical Engineering" +14039;21101119536;"Chinese Public Administration Review";journal;"15396754, 25731483";"SAGE Publications Ltd";No;No;0,406;Q2;11;21;62;1401;102;60;1,62;66,71;44,12;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2009, 2011, 2016-2026";"Political Science and International Relations (Q2); Public Administration (Q2)";"Social Sciences" +14040;5600154339;"Communication Quarterly";journal;"17464102, 01463373";"Routledge";No;No;0,406;Q2;60;28;83;1601;158;83;1,84;57,18;49,18;0;United Kingdom;Western Europe;"Routledge";"1976-2026";"Communication (Q2)";"Social Sciences" +14041;19900192134;"Decision Sciences Journal of Innovative Education";journal;"15404609, 15404595";"John Wiley and Sons Ltd";No;No;0,406;Q2;32;20;53;657;125;52;2,06;32,85;30,95;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2025";"Business, Management and Accounting (miscellaneous) (Q2); Decision Sciences (miscellaneous) (Q2); Education (Q2)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +14042;21100902013;"Fluids";journal;"23115521";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,406;Q2;40;326;1001;15179;2323;992;2,19;46,56;23,82;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2026";"Fluid Flow and Transfer Processes (Q2); Mechanical Engineering (Q2); Condensed Matter Physics (Q3)";"Chemical Engineering; Engineering; Physics and Astronomy" +14043;21101023959;"International Journal of Production Management and Engineering";journal;"23404876, 23405317";"Universidad Politecnica de Valencia";Yes;Yes;0,406;Q2;12;17;49;889;132;49;2,42;52,29;36,36;1;Spain;Western Europe;"Universidad Politecnica de Valencia";"2019-2025";"Industrial and Manufacturing Engineering (Q2); Business and International Management (Q3); Management Science and Operations Research (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Decision Sciences; Engineering" +14044;21101375099;"Journal of Engineering Management and Systems Engineering";journal;"29583527, 29583519";"Acadlore Publishing Services Limited";No;No;0,406;Q2;10;20;50;627;148;49;3,53;31,35;39,29;0;Hong Kong;Asiatic Region;"Acadlore Publishing Services Limited";"2022-2025";"Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Safety, Risk, Reliability and Quality (Q2); Control and Systems Engineering (Q3)";"Engineering" +14045;21101093008;"Journal of Glaciology and Geocryology";journal;"10000240";"Science China Press";No;No;0,406;Q2;22;138;455;5944;732;455;1,48;43,07;35,52;0;China;Asiatic Region;"Science China Press";"2019-2025";"Earth-Surface Processes (Q2); Geology (Q2); Geophysics (Q2); Atmospheric Science (Q3)";"Earth and Planetary Sciences" +14046;21101182142;"Journal of Government and Economics";journal;"26673193";"Elsevier B.V.";Yes;No;0,406;Q2;12;24;70;1020;128;61;1,35;42,50;17,24;1;Netherlands;Western Europe;"Elsevier B.V.";"2021-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +14047;11400153333;"Journal of Signal Processing Systems";journal;"19398115, 19398018";"Springer New York";No;No;0,406;Q2;63;19;271;814;599;261;2,33;42,84;30,77;0;United States;Northern America;"Springer New York";"2008-2026";"Information Systems (Q2); Control and Systems Engineering (Q3); Hardware and Architecture (Q3); Modeling and Simulation (Q3); Signal Processing (Q3); Theoretical Computer Science (Q3)";"Computer Science; Engineering; Mathematics" +14048;21100429296;"Journal of Social Studies Education Research";journal;"13099108";"Association for Social Studies Educa";Yes;No;0,406;Q2;25;47;168;2764;379;168;2,37;58,81;70,00;0;Turkey;Middle East;"Association for Social Studies Educa";"2015-2025";"Education (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14049;13961;"Micropaleontology";journal;"00262803";"Micropaleontology Press";No;No;0,406;Q2;52;27;73;2581;95;69;1,30;95,59;39,73;0;United States;Northern America;"Micropaleontology Press";"1979-2026";"Paleontology (Q2)";"Earth and Planetary Sciences" +14050;21100898936;"Mining Informational and Analytical Bulletin";journal;"02361493";"Publishing house Mining book";No;No;0,406;Q2;25;209;804;5291;1027;804;1,62;25,32;37,97;0;Russian Federation;Eastern Europe;"Publishing house Mining book";"2018-2026";"Ecology (Q2); Geology (Q2); Industrial and Manufacturing Engineering (Q2); Geochemistry and Petrology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences; Engineering; Environmental Science" +14051;12409;"Multidimensional Systems and Signal Processing";journal;"15730824, 09236082";"Springer Netherlands";No;No;0,406;Q2;51;4;101;90;268;101;2,50;22,50;37,50;0;Netherlands;Western Europe;"Springer Netherlands";"1990-2026";"Information Systems (Q2); Applied Mathematics (Q3); Artificial Intelligence (Q3); Computer Science Applications (Q3); Hardware and Architecture (Q3); Signal Processing (Q3); Software (Q3)";"Computer Science; Mathematics" +14052;21101254556;"Women's Health Nursing";journal;"30228247, 30227666";"Korean Society of Women Health Nursing";No;No;0,406;Q2;12;39;113;1319;183;102;1,56;33,82;80,25;0;South Korea;Asiatic Region;"Korean Society of Women Health Nursing";"2024-2025";"Advanced and Specialized Nursing (Q2); Maternity and Midwifery (Q2); Health (social science) (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Nursing; Social Sciences" +14053;21101125145;"Access Microbiology";journal;"25168290";"Microbiology Society";Yes;No;0,406;Q3;20;130;432;4542;631;421;1,36;34,94;46,19;0;United Kingdom;Western Europe;"Microbiology Society";"2019-2026";"Microbiology (Q3); Microbiology (medical) (Q3)";"Immunology and Microbiology; Medicine" +14054;24767;"Adicciones";journal;"02144840";"Edita Socidrogalcohol";No;No;0,406;Q3;42;31;109;1821;165;93;1,19;58,74;61,11;0;Spain;Western Europe;"Edita Socidrogalcohol";"1994-2025";"Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +14055;21100199758;"Egyptian Heart Journal";journal;"2090911X, 11102608";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,406;Q3;23;112;344;3462;537;335;1,53;30,91;28,79;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +14056;25564;"German Economic Review";journal;"14680475, 14656485";"Walter de Gruyter GmbH";No;No;0,406;Q3;42;20;49;1120;81;48;1,34;56,00;15,00;0;United Kingdom;Western Europe;"Walter de Gruyter GmbH";"2001-2025";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +14057;21101162758;"Parasites, Hosts and Diseases";journal;"29825164, 29826799";"Korean Society for Parasitology and Tropical Medicine";No;No;0,406;Q3;54;30;147;0;259;145;1,54;0,00;40,43;0;South Korea;Asiatic Region;"Korean Society for Parasitology and Tropical Medicine";"2023-2025";"Infectious Diseases (Q3); Parasitology (Q3)";"Immunology and Microbiology; Medicine" +14058;20514;"Seminars in Dialysis";journal;"1525139X, 08940959";"Wiley-Blackwell Publishing Ltd";No;No;0,406;Q3;96;47;203;1464;289;190;1,40;31,15;38,37;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1988-2026";"Nephrology (Q3)";"Medicine" +14059;21100788370;"Vision";journal;"09722629, 22495304";"SAGE Publications Ltd";Yes;No;0,406;Q3;34;85;413;5852;1041;401;2,43;68,85;52,41;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007, 2015-2026";"Business and International Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +14060;21101239184;"IEEE Intelligent Vehicles Symposium, Proceedings";conference and proceedings;"19310587, 26427214";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,406;-;101;376;509;10731;926;505;1,81;28,54;16,62;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992, 1996, 2000, 2003-2015, 2020-2022, 2024-2025";"Automotive Engineering; Computer Science Applications; Modeling and Simulation";"Computer Science; Engineering; Mathematics" +14061;21101196159;"Ukrainian Numismatic Annual";journal;"26179822, 26166275";"Central Ukrainian National Technical University";Yes;Yes;0,405;Q1;5;26;43;761;47;43;1,09;29,27;27,78;0;Ukraine;Eastern Europe;"Central Ukrainian National Technical University";"2023-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1); Museology (Q1)";"Arts and Humanities; Social Sciences" +14062;24223;"Advances in Skin and Wound Care";journal;"15388654, 15277941";"Lippincott Williams and Wilkins Ltd.";No;No;0,405;Q2;76;138;483;3112;606;430;1,14;22,55;56,74;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2000-2026";"Advanced and Specialized Nursing (Q2); Dermatology (Q3)";"Medicine; Nursing" +14063;26881;"Combustion Science and Technology";journal;"1563521X, 00102202";"Taylor and Francis Ltd.";No;No;0,405;Q2;94;525;678;23035;1484;678;2,08;43,88;27,32;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1969-2026";"Chemical Engineering (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3)";"Chemical Engineering; Chemistry; Energy; Physics and Astronomy" +14064;14100;"Development in Practice";journal;"13649213, 09614524";"Routledge";No;No;0,405;Q2;59;203;285;8519;482;205;1,85;41,97;43,43;5;United Kingdom;Western Europe;"Routledge";"1991-2026";"Development (Q2); Geography, Planning and Development (Q2)";"Social Sciences" +14065;21100785516;"Geodynamics and Tectonophysics";journal;"2078502X";"Institute of the Earth's Crust";Yes;Yes;0,405;Q2;18;67;232;2934;203;231;0,82;43,79;38,99;0;Russian Federation;Eastern Europe;"Institute of the Earth's Crust";"2015-2026";"Earth-Surface Processes (Q2); Economic Geology (Q2); Geology (Q2); Geophysics (Q3)";"Earth and Planetary Sciences" +14066;19700186850;"IEEE Solid-State Circuits Magazine";trade journal;"19430590, 19430582";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,405;Q2;36;50;183;1026;204;178;1,01;20,52;19,75;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2009-2026";"Electrical and Electronic Engineering (Q2)";"Engineering" +14067;21100370443;"International Journal of Agronomy";journal;"16878159, 16878167";"John Wiley and Sons Ltd";Yes;No;0,405;Q2;38;93;180;5361;436;180;2,52;57,65;25,63;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2026";"Agronomy and Crop Science (Q2)";"Agricultural and Biological Sciences" +14068;21101046174;"International Journal of Educational Reform";journal;"10567879, 26319675";"SAGE Publications Inc.";No;No;0,405;Q2;19;111;134;5408;278;134;1,96;48,72;50,00;1;United States;Northern America;"SAGE Publications Inc.";"1992-2026";"Education (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14069;21101199906;"Journal of Ocean Engineering and Technology";journal;"22876715";"Korean Society of Ocean Engineers(KSOE)";Yes;No;0,405;Q2;6;60;70;1456;95;70;1,36;24,27;17,34;0;South Korea;Asiatic Region;"Korean Society of Ocean Engineers(KSOE)";"2023-2025";"Ocean Engineering (Q2)";"Engineering" +14070;12283;"Journal of Social Service Research";journal;"01488376, 15407314";"Routledge";No;No;0,405;Q2;50;126;192;7137;303;189;1,31;56,64;60,52;1;United States;Northern America;"Routledge";"1978-2026";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Social Work (Q3)";"Social Sciences" +14071;21101268971;"Journal of White Collar and Corporate Crime";journal;"26313103";"SAGE Publications Inc.";No;No;0,405;Q2;14;12;37;702;121;31;3,28;58,50;41,18;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2020-2026";"Business, Management and Accounting (miscellaneous) (Q2); Law (Q2)";"Business, Management and Accounting; Social Sciences" +14072;11600154147;"Mammal Study";journal;"13486160, 13434152";"Mammalogical Society of Japan";No;No;0,405;Q2;26;39;93;2124;128;91;1,33;54,46;30,33;0;Japan;Asiatic Region;"Mammalogical Society of Japan";"2008-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +14073;29262;"Nursing Science Quarterly";journal;"15527409, 08943184";"SAGE Publications Inc.";No;No;0,405;Q2;46;97;225;1493;261;206;0,80;15,39;72,12;0;United States;Northern America;"SAGE Publications Inc.";"1988-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +14074;30008;"Revista da Escola de Enfermagem da USP";journal;"00806234, 1980220X";"Universidade de Sao Paulo, Escola de Enfermagem";Yes;No;0,405;Q2;42;239;561;6135;718;549;0,81;25,67;77,44;0;Brazil;Latin America;"Universidade de Sao Paulo, Escola de Enfermagem";"1967-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +14075;21100437945;"Spanish Journal of Palaeontology";journal;"22550550, 26609568";"Sociedad Espanola de Paleontologia";Yes;Yes;0,405;Q2;16;13;45;1305;40;43;1,06;100,38;24,24;0;Spain;Western Europe;"Sociedad Espanola de Paleontologia";"2012-2025";"Paleontology (Q2)";"Earth and Planetary Sciences" +14076;4700152722;"Technical Services Quarterly";journal;"07317131";"Routledge";No;No;0,405;Q2;20;33;129;708;90;79;0,87;21,45;69,05;0;United States;Northern America;"Routledge";"1984-2026";"Library and Information Sciences (Q2); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +14077;21100875757;"Advances in Operator Theory";journal;"2538225X";"Springer International Publishing";Yes;No;0,405;Q3;20;86;216;2029;177;216;0,81;23,59;25,50;0;Switzerland;Western Europe;"Springer International Publishing";"2016-2026";"Algebra and Number Theory (Q3); Analysis (Q3)";"Mathematics" +14078;21101308797;"African Journal of Psychological Assessment";journal;"26172798, 27071618";"AOSIS (Pty) Ltd";Yes;No;0,405;Q3;7;8;37;301;48;35;0,91;37,63;57,89;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2021-2025";"Applied Psychology (Q3); Developmental and Educational Psychology (Q3); Psychology (miscellaneous) (Q3); Social Psychology (Q3)";"Psychology" +14079;21100259509;"E-Informatica Software Engineering Journal";journal;"18977979, 20844840";"Wroclaw University of Science and Technology";Yes;Yes;0,405;Q3;14;7;26;451;75;26;2,44;64,43;33,33;0;Poland;Eastern Europe;"Wroclaw University of Science and Technology";"2012-2026";"Software (Q3)";"Computer Science" +14080;26572;"Journal of Essential Oil Research";journal;"21638152, 10412905";"Taylor and Francis Ltd.";No;No;0,405;Q3;67;43;155;2116;419;154;2,28;49,21;44,61;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +14081;11400153311;"Accounting History";journal;"10323732, 17493374";"SAGE Publications Ltd";No;No;0,404;Q1;36;41;92;2791;107;78;1,00;68,07;43,84;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2026";"History (Q1); Accounting (Q3)";"Arts and Humanities; Business, Management and Accounting" +14082;19900192151;"Architecture, City and Environment";journal;"18864805, 18877052";"Universitat Politecnica de Catalunya";Yes;No;0,404;Q1;13;36;118;1950;136;118;1,05;54,17;46,67;0;Spain;Western Europe;"Universitat Politecnica de Catalunya";"2011-2025";"Architecture (Q1); Geography, Planning and Development (Q2); Urban Studies (Q2)";"Engineering; Social Sciences" +14083;19300157105;"HTS Teologiese Studies / Theological Studies";journal;"20728050, 02599422";"AOSIS (Pty) Ltd";Yes;No;0,404;Q1;31;152;743;5900;800;726;0,99;38,82;23,87;0;South Africa;Africa;"AOSIS (Pty) Ltd";"1987, 2004-2006, 2008-2026";"Religious Studies (Q1)";"Arts and Humanities" +14084;14000155853;"Iberica";journal;"11397241, 23402784";"AELFE";Yes;Yes;0,404;Q1;32;27;83;1213;142;73;1,67;44,93;60,98;0;Spain;Western Europe;"AELFE";"2008-2025";"Linguistics and Language (Q1)";"Social Sciences" +14085;16300154717;"Journal of African Archaeology";journal;"21915784, 16121651";"Brill Nijhoff";No;No;0,404;Q1;33;12;30;798;25;30;0,88;66,50;38,89;0;Germany;Western Europe;"Brill Nijhoff";"2003-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +14086;7000153207;"NanoEthics";journal;"18714765, 18714757";"Springer Netherlands";Yes;No;0,404;Q1;39;19;56;921;128;51;2,80;48,47;36,54;0;Netherlands;Western Europe;"Springer Netherlands";"2007-2026";"History and Philosophy of Science (Q1); Philosophy (Q1); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Management of Technology and Innovation (Q3); Nanoscience and Nanotechnology (Q3)";"Arts and Humanities; Business, Management and Accounting; Materials Science; Social Sciences" +14087;21100898825;"Aloma";journal;"23399694, 11383194";"Facultat de Psicologia, Ciencies de l'Educacio i de l'Esport Blanquerna";Yes;No;0,404;Q2;12;13;46;569;77;46;1,45;43,77;44,44;0;Spain;Western Europe;"Facultat de Psicologia, Ciencies de l'Educacio i de l'Esport Blanquerna";"2018-2025";"Computer Networks and Communications (Q2); Education (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Psychology (miscellaneous) (Q3)";"Computer Science; Health Professions; Psychology; Social Sciences" +14088;22809;"Criminal Justice Ethics";journal;"19375948, 0731129X";"Taylor and Francis Ltd.";No;No;0,404;Q2;20;16;37;733;58;37;1,70;45,81;34,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-2025";"Law (Q2)";"Social Sciences" +14089;21100944389;"Current Anesthesiology Reports";journal;"15233855, 21676275";"Springer";No;No;0,404;Q2;26;49;158;2981;258;158;0,92;60,84;35,03;0;United States;Northern America;"Springer";"2013-2025";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +14090;21101184428;"Electronic Materials";journal;"26733978";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,404;Q2;13;23;62;1068;135;59;2,18;46,43;32,11;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Electrical and Electronic Engineering (Q2); Chemistry (miscellaneous) (Q3); Electronic, Optical and Magnetic Materials (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Engineering; Materials Science" +14091;18184;"Engineering Computations";journal;"02644401";"Emerald Group Publishing Ltd.";No;No;0,404;Q2;69;243;397;10510;912;395;2,35;43,25;26,44;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1984-2026";"Computational Theory and Mathematics (Q2); Engineering (miscellaneous) (Q2); Computer Science Applications (Q3); Software (Q3)";"Computer Science; Engineering" +14092;21100912216;"IET Cyber-Physical Systems: Theory and Applications";journal;"23983396";"John Wiley & Sons Inc.";Yes;No;0,404;Q2;26;37;84;1692;196;80;2,45;45,73;26,47;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2016-2026";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Information Systems (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3)";"Computer Science; Engineering" +14093;19700175280;"IIMB Management Review";journal;"09703896";"Elsevier Ltd";Yes;No;0,404;Q2;41;35;102;1788;230;90;2,04;51,09;39,19;0;United Kingdom;Western Europe;"Elsevier Ltd";"2010-2025";"Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +14094;12400154727;"International Journal of Coal Preparation and Utilization";journal;"19392699, 19392702";"Routledge";No;No;0,404;Q2;41;326;465;12940;1274;465;2,51;39,69;31,34;0;United Kingdom;Western Europe;"Routledge";"1999, 2003-2005, 2007-2026";"Chemical Engineering (miscellaneous) (Q2); Mechanical Engineering (Q2); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Chemical Engineering; Earth and Planetary Sciences; Energy; Engineering" +14095;21101256227;"Iran Journal of Computer Science";journal;"25208438, 25208446";"Springer International Publishing";No;No;0,404;Q2;22;148;106;7504;339;101;3,35;50,70;27,54;0;Switzerland;Western Europe;"Springer International Publishing";"2018-2026";"Computer Science (miscellaneous) (Q2); Computer Science Applications (Q3)";"Computer Science" +14096;21101046769;"Journal of Building Pathology and Rehabilitation";journal;"23653159, 23653167";"Springer Science and Business Media B.V.";No;No;0,404;Q2;26;162;357;8374;909;355;2,72;51,69;21,98;0;Germany;Western Europe;"Springer Science and Business Media B.V.";"2016-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2)";"Engineering" +14097;21152;"Journal of Elasticity";journal;"15732681, 03743535";"Springer Netherlands";No;No;0,404;Q2;76;82;215;3609;363;204;1,79;44,01;22,89;0;Netherlands;Western Europe;"Springer Netherlands";"1971-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q2); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +14098;21101081506;"Journal of Financial Data Science";journal;"26403951, 26403943";"With intelligence";No;No;0,404;Q2;19;38;106;1040;129;99;1,14;27,37;14,63;0;United Kingdom;Western Europe;"With intelligence";"2019-2025";"Business, Management and Accounting (miscellaneous) (Q2); Computational Theory and Mathematics (Q2); Information Systems (Q2); Information Systems and Management (Q2); Artificial Intelligence (Q3); Business and International Management (Q3); Finance (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences; Economics, Econometrics and Finance" +14099;21101146387;"Law Reform: Jurnal Pembaharuan Hukum";journal;"25808508, 18584810";"Diponegoro University";Yes;No;0,404;Q2;10;21;55;1185;107;55;1,86;56,43;32,20;0;Indonesia;Asiatic Region;"Diponegoro University";"2019-2025";"Law (Q2)";"Social Sciences" +14100;11900154315;"Letters in Spatial and Resource Sciences";journal;"18644031, 1864404X";"Springer Verlag";No;No;0,404;Q2;25;30;113;1342;240;112;2,25;44,73;15,71;1;Germany;Western Europe;"Springer Verlag";"2008-2026";"Demography (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +14101;21101238226;"Metrology";journal;"26738244";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,404;Q2;11;79;97;3748;221;93;2,12;47,44;17,28;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Engineering (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Engineering; Physics and Astronomy" +14102;19700180522;"Molecular and Cellular Toxicology";journal;"20928467, 1738642X";"Springer Verlag";No;No;0,404;Q2;32;138;249;6627;443;248;1,45;48,02;43,33;0;Germany;Western Europe;"Springer Verlag";"2010-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Health, Toxicology and Mutagenesis (Q3); Pathology and Forensic Medicine (Q3); Public Health, Environmental and Occupational Health (Q3); Toxicology (Q3)";"Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +14103;145675;"Social Work in Mental Health";journal;"15332985, 15332993";"Routledge";No;No;0,404;Q2;33;48;131;2666;185;126;1,46;55,54;62,59;0;United States;Northern America;"Routledge";"2002-2026";"Social Sciences (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q3); Social Work (Q3)";"Medicine; Social Sciences" +14104;50194;"Surgical Laparoscopy, Endoscopy and Percutaneous Techniques";journal;"15304515, 15344908";"Lippincott Williams and Wilkins";No;No;0,404;Q2;72;75;358;1972;432;351;1,17;26,29;30,09;0;United States;Northern America;"Lippincott Williams and Wilkins";"1991, 1996-1998, 2000-2026";"Surgery (Q2)";"Medicine" +14105;21101039869;"Vietnam Journal of Earth Sciences";journal;"26159783, 28155890";"Publishing House of Natural Science and Technology, VAST";No;No;0,404;Q2;19;31;91;1949;213;91;2,43;62,87;31,52;0;Viet Nam;Asiatic Region;"Publishing House of Natural Science and Technology, VAST";"2018-2025";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +14106;18385;"Acta Cytologica";journal;"00015547, 19382650";"S. Karger AG";No;No;0,404;Q3;70;86;191;2537;236;180;1,19;29,50;50,41;0;Switzerland;Western Europe;"S. Karger AG";"1960-2026";"Histology (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)";"Medicine" +14107;15483;"Biotechnology and Biotechnological Equipment";journal;"13102818, 13143530";"Taylor and Francis Ltd.";Yes;No;0,404;Q3;61;11;284;434;560;282;1,56;39,45;46,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2026";"Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology" +14108;21100829975;"Clinical and Experimental Vaccine Research";journal;"2287366X, 22873651";"Korean Vaccine Society";Yes;Yes;0,404;Q3;25;41;118;1601;182;108;1,32;39,05;44,62;0;South Korea;Asiatic Region;"Korean Vaccine Society";"2017-2026";"Immunology and Allergy (Q3); Infectious Diseases (Q3); Pharmacology (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +14109;23453;"Combinatorial Chemistry and High Throughput Screening";journal;"13862073, 18755402";"Bentham Science Publishers";No;No;0,404;Q3;75;370;674;23597;1360;655;2,02;63,78;43,47;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"1998-2026";"Computer Science Applications (Q3); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Organic Chemistry (Q3)";"Chemistry; Computer Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +14110;21101071824;"Indian Dermatology Online Journal";journal;"22295178, 22495673";"Wolters Kluwer Medknow Publications";Yes;Yes;0,404;Q3;29;270;700;3278;711;398;1,03;12,14;49,70;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2016, 2019-2026";"Dermatology (Q3); Immunology and Allergy (Q3); Infectious Diseases (Q3); Microbiology (medical) (Q3)";"Medicine" +14111;19700175790;"International Journal of Social Psychology";journal;"15793680, 02134748";"SAGE Publications Ltd";No;No;0,404;Q3;31;7;64;0;111;63;1,21;0,00;54,55;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-2025";"Social Psychology (Q3)";"Psychology" +14112;21100316466;"Ab Imperio";journal;"21649731, 21664072";"Ab Imperio";No;No;0,403;Q1;16;25;116;571;45;92;0,23;22,84;16,67;0;United States;Northern America;"Ab Imperio";"2013-2025";"History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +14113;21100427648;"Cuneiform Monographs";book series;"09290052";"Brill Academic Publishers";No;No;0,403;Q1;12;0;25;0;5;1;0,29;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2015, 2019-2024, 2026";"Anthropology (Q1); Cultural Studies (Q1); History (Q1); Linguistics and Language (Q1)";"Arts and Humanities; Social Sciences" +14114;5600155537;"Intercultural Education";journal;"14675986, 14698439";"Routledge";No;No;0,403;Q1;38;66;124;2684;189;117;1,46;40,67;65,83;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Cultural Studies (Q1); Education (Q2)";"Social Sciences" +14115;21101298387;"Journal of Pacific Archaeology";journal;"11794712, 11794704";"New Zealand Archaeological Association";Yes;No;0,403;Q1;5;15;17;868;25;16;1,77;57,87;35,14;0;New Zealand;Pacific Region;"New Zealand Archaeological Association";"2010, 2013, 2021-2022, 2024-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +14116;21100943527;"Philosophy of Music Education Review";journal;"10635734, 15433412";"Indiana University Press";No;No;0,403;Q1;9;13;41;625;36;32;0,85;48,08;50,00;0;United States;Northern America;"Indiana University Press";"2019-2025";"Music (Q1); Philosophy (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +14117;21100245723;"Acta Medica Academica";journal;"18402879, 18401848";"Academy of Sciences and Arts of Bosnia and Herzegovina";Yes;Yes;0,403;Q2;25;30;100;851;145;94;0,91;28,37;43,85;0;Bosnia and Herzegovina;Eastern Europe;"Academy of Sciences and Arts of Bosnia and Herzegovina";"2012-2025";"Veterinary (miscellaneous) (Q2); Epidemiology (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Veterinary" +14118;19700173166;"Acta Polytechnica Hungarica";journal;"17858860";"Obuda University";Yes;No;0,403;Q2;49;181;510;5448;1364;491;2,93;30,10;27,53;0;Hungary;Eastern Europe;"Obuda University";"2004-2026";"Engineering (miscellaneous) (Q2); Multidisciplinary (Q2)";"Engineering; Multidisciplinary" +14119;145592;"Computational and Mathematical Organization Theory";journal;"15729346, 1381298X";"Springer";No;No;0,403;Q2;39;25;53;977;139;52;1,74;39,08;26,23;0;United States;Northern America;"Springer";"1995, 2000-2001, 2004-2026";"Computer Science (miscellaneous) (Q2); Decision Sciences (miscellaneous) (Q2); Applied Mathematics (Q3); Computational Mathematics (Q3); Modeling and Simulation (Q3)";"Computer Science; Decision Sciences; Mathematics" +14120;21101019765;"Current Physical Medicine and Rehabilitation Reports";journal;"21674833";"Springer Science and Business Media B.V.";No;No;0,403;Q2;28;52;132;2804;203;132;1,32;53,92;55,43;0;United States;Northern America;"Springer Science and Business Media B.V.";"2013-2026";"Rehabilitation (Q2); Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine" +14121;27681;"Enfermeria Intensiva";journal;"11302399, 15781291";"Ediciones Doyma, S.L.";No;No;0,403;Q2;23;67;122;2275;179;99;1,40;33,96;69,14;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"1994-2026";"Advanced and Specialized Nursing (Q2); Critical Care and Intensive Care Medicine (Q2); Critical Care Nursing (Q2); Fundamentals and Skills (Q2)";"Medicine; Nursing" +14122;21101156995;"IEEE Canadian Journal of Electrical and Computer Engineering";journal;"26941783";"IEEE Canada";No;No;0,403;Q2;22;44;122;1455;350;121;2,61;33,07;19,20;0;Canada;Northern America;"IEEE Canada";"2021-2026";"Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q3)";"Computer Science; Engineering" +14123;16252;"Journal of Aerospace Engineering";journal;"08931321, 19435525";"American Society of Civil Engineers (ASCE)";No;No;0,403;Q2;66;141;398;5258;729;398;1,74;37,29;24,44;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1988-2026";"Aerospace Engineering (Q2); Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +14124;15431;"Journal of Comparative Psychology";journal;"07357036, 19392087";"American Psychological Association";No;No;0,403;Q2;95;29;88;1636;110;87;1,15;56,41;54,26;0;United States;Northern America;"American Psychological Association";"1983-2025";"Ecology, Evolution, Behavior and Systematics (Q2); Psychology (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Psychology" +14125;21100904890;"Journal of Computer Languages";journal;"25901184, 26659182";"Elsevier Ltd";No;No;0,403;Q2;61;38;97;2087;248;94;2,64;54,92;19,09;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2026";"Computer Networks and Communications (Q2); Human-Computer Interaction (Q3); Software (Q3)";"Computer Science" +14126;21100780474;"Journal of Curriculum and Pedagogy";journal;"15505170, 21568154";"Taylor and Francis Ltd.";No;No;0,403;Q2;23;82;76;3720;134;62;1,64;45,37;69,29;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Education (Q2)";"Social Sciences" +14127;21101250473;"Journal of Holography Applications in Physics";journal;"27833518, 27834778";"";Yes;Yes;0,403;Q2;10;30;72;1249;128;68;1,46;41,63;38,24;0;Iran;Middle East;"";"2021-2026";"Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2); Astronomy and Astrophysics (Q3); Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3)";"Energy; Physics and Astronomy" +14128;16555;"Phyton-International Journal of Experimental Botany";journal;"18515657, 00319457";"Tech Science Press";Yes;Yes;0,403;Q2;29;211;577;15602;1236;577;2,08;73,94;41,03;0;Argentina;Latin America;"Tech Science Press";"1984, 1996-2000, 2006-2026";"Plant Science (Q2); Biochemistry (Q3); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +14129;13852;"Applied Rheology";journal;"16178106, 14306395";"Walter de Gruyter GmbH";Yes;No;0,403;Q3;41;32;78;1403;230;78;2,72;43,84;32,12;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1996-1997, 1999-2025";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)";"Materials Science; Physics and Astronomy" +14130;21101185616;"Biophysica";journal;"26734125";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,403;Q3;13;63;138;4005;255;135;2,01;63,57;35,00;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology" +14131;21100983147;"Bruno Pini Mathematical Analysis Seminar";book series;"22402829";"University of Bologna, Department of Mathematics";Yes;Yes;0,403;Q3;3;2;36;64;19;35;0,60;32,00;0,00;0;Italy;Western Europe;"University of Bologna, Department of Mathematics";"2019-2024";"Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +14132;21101201118;"French Journal of Urology";journal;"29503930, 29504201";"Elsevier Masson s.r.l.";No;No;0,403;Q3;38;131;409;4355;516;370;1,14;33,24;29,85;0;France;Western Europe;"Elsevier Masson s.r.l.";"2024-2026";"Urology (Q3)";"Medicine" +14133;21100870388;"Iranian Journal of Ageing";journal;"1735806X";"";Yes;No;0,403;Q3;16;40;117;1741;167;117;1,14;43,53;51,66;0;Iran;Middle East;"";"2018-2026";"Geriatrics and Gerontology (Q3); Gerontology (Q3); Aging (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +14134;21101186823;"Journal of 3D Printing in Medicine";journal;"20594763, 20594755";"Future Science Group";No;No;0,403;Q3;15;0;34;0;107;32;4,43;0,00;0,00;0;United Kingdom;Western Europe;"Future Science Group";"2018-2024";"Biomedical Engineering (Q3); Computer Science Applications (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Computer Science; Engineering; Medicine" +14135;21101314505;"Journal of Stochastic Analysis";journal;"26896931";"The LSU Scholarly Repository";No;No;0,403;Q3;11;20;47;480;29;47;0,50;24,00;23,33;0;United States;Northern America;"The LSU Scholarly Repository";"2020-2025";"Analysis (Q3); Statistics and Probability (Q3)";"Mathematics" +14136;19700176017;"Operators and Matrices";journal;"18463886";"Element D.O.O.";No;No;0,403;Q3;24;33;202;796;138;201;0,72;24,12;37,14;0;Croatia;Eastern Europe;"Element D.O.O.";"2009-2025";"Algebra and Number Theory (Q3); Analysis (Q3)";"Mathematics" +14137;19700174949;"Postepy Psychiatrii i Neurologii";journal;"12302813";"Termedia Publishing House Ltd.";Yes;Yes;0,403;Q3;12;27;91;985;148;89;1,59;36,48;58,51;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2007-2025";"Clinical Psychology (Q3); Neurology (Q3); Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Neuroscience; Psychology" +14138;18546;"American Speech";journal;"15272133, 00031283";"Duke University Press";No;No;0,402;Q1;40;24;68;1300;47;66;0,59;54,17;58,06;0;United States;Northern America;"Duke University Press";"1981, 1984, 1996-2025";"Linguistics and Language (Q1); Communication (Q2)";"Social Sciences" +14139;19700182334;"Advances in Mechanical Engineering";journal;"16878132, 16878140";"SAGE Publications Inc.";Yes;No;0,402;Q2;74;261;1051;9813;2701;1047;2,50;37,60;25,99;0;United States;Northern America;"SAGE Publications Inc.";"2009-2026";"Mechanical Engineering (Q2)";"Engineering" +14140;12123;"Behavioral Sciences and the Law";journal;"10990798, 07353936";"John Wiley and Sons Ltd";No;No;0,402;Q2;91;49;126;3289;245;120;2,10;67,12;50,42;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1983-2026";"Law (Q2); Clinical Psychology (Q3); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology; Social Sciences" +14141;19900193250;"Building Acoustics";journal;"1351010X, 20598025";"SAGE Publications Inc.";No;No;0,402;Q2;33;33;74;1568;204;74;2,11;47,52;31,86;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1997-2026";"Acoustics and Ultrasonics (Q2); Building and Construction (Q2); Mechanical Engineering (Q2)";"Engineering; Physics and Astronomy" +14142;100147025;"Clinical Medicine and Research";journal;"15394182, 15546179";"Marshfield Clinic";Yes;No;0,402;Q2;66;18;87;465;121;84;1,34;25,83;42,31;0;United States;Northern America;"Marshfield Clinic";"2003-2025";"Community and Home Care (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +14143;21100837257;"College Teaching";journal;"87567555, 19308299";"Taylor and Francis Ltd.";No;No;0,402;Q2;58;98;185;3002;251;170;1,34;30,63;69,64;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Education (Q2)";"Social Sciences" +14144;21100413835;"Dental Research Journal";journal;"20080255, 17353327";"Wolters Kluwer Medknow Publications";Yes;No;0,402;Q2;33;57;216;2046;332;213;1,48;35,89;45,75;0;Iran;Middle East;"Wolters Kluwer Medknow Publications";"2009-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +14145;21190;"Drug Development and Industrial Pharmacy";journal;"03639045, 15205762";"Taylor and Francis Ltd.";No;No;0,402;Q2;111;149;223;9244;632;223;2,73;62,04;40,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974, 1976-2026";"Pharmaceutical Science (Q2); Drug Discovery (Q3); Organic Chemistry (Q3); Pharmacology (Q3)";"Chemistry; Pharmacology, Toxicology and Pharmaceutics" +14146;13020;"Fordham Law Review";journal;"0015704X";"Fordham University School of Law";No;No;0,402;Q2;48;44;189;12273;107;179;0,50;278,93;45,65;0;United States;Northern America;"Fordham University School of Law";"1973, 1975, 1978, 1980, 1983, 1994-2025";"Law (Q2)";"Social Sciences" +14147;27967;"Geotectonics";journal;"15561976, 00168521";"Pleiades Publishing";No;No;0,402;Q2;36;37;144;2249;143;144;0,95;60,78;32,22;0;United States;Northern America;"Pleiades Publishing";"1978-1988, 2004-2025";"Geology (Q2)";"Earth and Planetary Sciences" +14148;15360;"IEEE Instrumentation and Measurement Magazine";journal;"10946969, 19410123";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,402;Q2;60;89;264;1218;422;225;1,53;13,69;23,25;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1998-2026";"Instrumentation (Q2); Electrical and Electronic Engineering (Q3)";"Engineering; Physics and Astronomy" +14149;21100894767;"INFORMS Transactions on Education";journal;"15320545";"INFORMS Inst.for Operations Res.and the Management Sciences";Yes;Yes;0,402;Q2;10;17;64;498;88;60;0,86;29,29;47,37;0;United States;Northern America;"INFORMS Inst.for Operations Res.and the Management Sciences";"2001, 2006, 2009, 2012, 2014, 2018-2025";"Education (Q2); Management Information Systems (Q2); Management Science and Operations Research (Q3)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +14150;21101047190;"Journal of Chest Surgery";journal;"27651614, 27651606";"Korean Society for Thoracic and Cardiovascular Surgery";Yes;Yes;0,402;Q2;11;46;238;710;310;227;1,25;15,43;26,98;0;South Korea;Asiatic Region;"Korean Society for Thoracic and Cardiovascular Surgery";"2021-2026";"Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +14151;5800179629;"Journal of Criminal Justice Education";journal;"10511253, 17459117";"Taylor and Francis Ltd.";No;No;0,402;Q2;37;89;128;4284;213;117;1,17;48,13;60,20;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-1995, 2005-2026";"Education (Q2); Law (Q2)";"Social Sciences" +14152;22036;"Journal of Field Ornithology";journal;"02738570, 15579263";"Resilience Alliance";Yes;No;0,402;Q2;57;30;131;1924;132;130;1,08;64,13;41,91;0;United States;Northern America;"Resilience Alliance";"1996-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +14153;21100848403;"Journal of Pediatric Pharmacology and Therapeutics";journal;"15516776, 2331348X";"Pediatric Pharmacy Advocacy Group, Inc.";No;No;0,402;Q2;33;96;323;2791;460;304;1,51;29,07;62,25;0;United States;Northern America;"Pediatric Pharmacy Advocacy Group, Inc.";"2007, 2010, 2012, 2014-2025";"Pediatrics, Perinatology and Child Health (Q2); Pharmacology (medical) (Q3)";"Medicine" +14154;21101152591;"Journal of Railway Science and Engineering";journal;"16727029";"Central South University";No;No;0,402;Q2;13;458;894;11441;1571;894;1,76;24,98;30,13;0;China;Asiatic Region;"Central South University";"2023-2026";"Building and Construction (Q2); Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)";"Engineering" +14155;9000153112;"Journal of School Choice";journal;"15582159, 15582167";"Routledge";No;No;0,402;Q2;26;59;99;2761;129;91;1,32;46,80;39,08;3;United Kingdom;Western Europe;"Routledge";"2006-2026";"Education (Q2)";"Social Sciences" +14156;4700152484;"Journal of Systems Science and Systems Engineering";journal;"10043756, 18619576";"Systems Engineering Society of China";No;No;0,402;Q2;38;73;106;3598;279;106;2,71;49,29;35,38;0;Germany;Western Europe;"Systems Engineering Society of China";"2003, 2005-2026";"Information Systems (Q2); Control and Systems Engineering (Q3)";"Computer Science; Engineering" +14157;40064;"Medicine, Science and the Law";journal;"20421818, 00258024";"SAGE Publications Ltd";No;No;0,402;Q2;44;82;154;2849;273;114;1,99;34,74;49,18;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"1960-2026";"Law (Q2); Health Policy (Q3); Issues, Ethics and Legal Aspects (Q3)";"Medicine; Nursing; Social Sciences" +14158;11600153414;"Proceedings of the Institution of Civil Engineers: Ground Improvement";journal;"17550750, 17550769";"ICE Publishing";No;No;0,402;Q2;54;29;87;1087;126;76;1,11;37,48;26,14;0;United Kingdom;Western Europe;"ICE Publishing";"2008-2025";"Building and Construction (Q2); Mechanics of Materials (Q2); Soil Science (Q2); Geotechnical Engineering and Engineering Geology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering" +14159;19400157269;"Proceedings of the Institution of Mechanical Engineers, Part P: Journal of Sports Engineering and Technology";journal;"1754338X, 17543371";"SAGE Publications Ltd";No;No;0,402;Q2;29;141;151;5202;282;147;1,60;36,89;18,52;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Engineering (miscellaneous) (Q2); Sports Science (Q4)";"Engineering; Health Professions" +14160;21100228109;"Advances in Virology";journal;"16878639, 16878647";"John Wiley and Sons Ltd";Yes;No;0,402;Q3;33;17;53;818;88;53;2,04;48,12;41,18;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Infectious Diseases (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine" +14161;25469;"Blood Coagulation and Fibrinolysis";journal;"14735733, 09575235";"Lippincott Williams and Wilkins";No;No;0,402;Q3;81;65;248;1565;286;234;0,97;24,08;55,18;0;United States;Northern America;"Lippincott Williams and Wilkins";"1990-2026";"Hematology (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +14162;19600166305;"Current Breast Cancer Reports";journal;"19434588, 19434596";"Springer";No;No;0,402;Q3;28;58;121;3788;136;120;1,16;65,31;70,79;0;United States;Northern America;"Springer";"2009-2026";"Oncology (Q3)";"Medicine" +14163;21100806011;"Endocrinologia, Diabetes y Nutricion";journal;"25300172, 25300164";"Sociedad Espanola de Endocrinologia y Nutricion";No;No;0,402;Q3;39;115;360;2854;477;343;1,29;24,82;59,90;1;Spain;Western Europe;"Sociedad Espanola de Endocrinologia y Nutricion";"2017-2026";"Endocrinology, Diabetes and Metabolism (Q3); Nutrition and Dietetics (Q3); Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +14164;18489;"Indian Journal of Tuberculosis";journal;"00195707";"Tuberculosis Association of India";No;No;0,402;Q3;31;247;370;6349;457;332;1,23;25,70;43,77;0;India;Asiatic Region;"Tuberculosis Association of India";"1973-1993, 2007-2026";"Infectious Diseases (Q3)";"Medicine" +14165;24127;"International Journal of Quantum Chemistry";journal;"1097461X, 00207608";"John Wiley & Sons Inc.";No;No;0,402;Q3;125;130;638;7460;1621;635;2,66;57,38;32,00;0;United States;Northern America;"John Wiley & Sons Inc.";"1967-2026";"Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry; Physics and Astronomy" +14166;12100157243;"Iranian Journal of Biotechnology";journal;"23222921, 17283043";"National Institute of Genetic Engineering and Biotechnology";No;No;0,402;Q3;37;36;117;1567;217;117;1,74;43,53;42,94;0;Iran;Middle East;"National Institute of Genetic Engineering and Biotechnology";"2008-2026";"Biochemistry (Q3); Biotechnology (Q3); Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology" +14167;21101101954;"South African Journal of Sports Medicine";journal;"10155163, 2078516X";"Academy of Science of South Africa";Yes;Yes;0,402;Q3;11;32;72;672;77;69;1,27;21,00;43,90;0;South Africa;Africa;"Academy of Science of South Africa";"2019-2026";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine" +14168;22071;"Critical Reviews in Eukaryotic Gene Expression";journal;"10454403";"Begell House Inc.";No;No;0,402;Q4;71;53;169;2194;263;169;1,43;41,40;49,23;0;United States;Northern America;"Begell House Inc.";"1990-2025";"Genetics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +14169;21100300689;"IEEE IAS Electrical Safety Workshop";conference and proceedings;"23263288, 2326330X";"IEEE Computer Society";No;No;0,402;-;9;34;88;406;73;85;0,98;11,94;16,18;0;United States;Northern America;"IEEE Computer Society";"2013-2025";"Electrical and Electronic Engineering; Safety, Risk, Reliability and Quality";"Engineering" +14170;19700200922;"3L: Language, Linguistics, Literature";journal;"01285157, 25502247";"Penerbit Universiti Kebangsaan Malaysia";Yes;No;0,401;Q1;23;97;210;3799;258;208;1,12;39,16;58,90;0;Malaysia;Asiatic Region;"Penerbit Universiti Kebangsaan Malaysia";"2008-2025";"Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +14171;19700200924;"Circulo de Linguistica Aplicada a la Comunicacion";journal;"15764737";"Universidad Complutense Madrid";Yes;Yes;0,401;Q1;15;80;221;4160;141;221;0,71;52,00;63,16;0;Spain;Western Europe;"Universidad Complutense Madrid";"2010-2025";"Linguistics and Language (Q1)";"Social Sciences" +14172;20895;"Contemporary European History";journal;"09607773, 14692171";"Cambridge University Press";No;No;0,401;Q1;36;113;187;11409;200;185;0,91;100,96;45,38;0;United Kingdom;Western Europe;"Cambridge University Press";"1992-2026";"History (Q1)";"Arts and Humanities" +14173;21100854429;"Curved and Layered Structures";journal;"23537396";"Walter de Gruyter GmbH";Yes;No;0,401;Q1;25;19;96;840;232;96;2,26;44,21;25,76;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2014-2026";"Architecture (Q1); Aerospace Engineering (Q2); Building and Construction (Q2); Civil and Structural Engineering (Q2); Computational Mechanics (Q2); Mechanics of Materials (Q2); Safety, Risk, Reliability and Quality (Q2)";"Engineering" +14174;21100211106;"Historia Social";journal;"30206286, 02142570";"Fundacion Instituto de Historia Social";No;No;0,401;Q1;11;26;81;1667;28;80;0,27;64,12;28,57;0;Spain;Western Europe;"Fundacion Instituto de Historia Social";"2011-2025";"History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +14175;21100305226;"Hungarian Geographical Bulletin";journal;"20645147, 20645031";"Hungarian Academy of Sciences, Geographical Research Institute";Yes;Yes;0,401;Q1;24;22;66;1565;136;66;2,23;71,14;32,73;0;Hungary;Eastern Europe;"Hungarian Academy of Sciences, Geographical Research Institute";"2014-2025";"Cultural Studies (Q1); Agronomy and Crop Science (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Social Sciences" +14176;21100889414;"Qudus International Journal of Islamic Studies";journal;"24769304, 23551895";"STAIN Kudus";Yes;No;0,401;Q1;16;4;39;229;85;39;1,87;57,25;57,14;0;Indonesia;Asiatic Region;"STAIN Kudus";"2018-2025";"Cultural Studies (Q1); History (Q1); Religious Studies (Q1); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +14177;19400158376;"CAB Reviews: Perspectives in Agriculture, Veterinary Science, Nutrition and Natural Resources";journal;"17498848";"CABI International";No;No;0,401;Q2;49;86;173;8897;379;173;2,31;103,45;36,36;1;United Kingdom;Western Europe;"CABI International";"2006-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Nature and Landscape Conservation (Q2); Veterinary (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Environmental Science; Veterinary" +14178;21100894513;"Chemical Engineering Science: X";journal;"25901400";"Elsevier Ltd";Yes;No;0,401;Q2;24;0;2;0;5;2;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"2019-2022";"Chemical Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry; Engineering" +14179;21100874186;"Computer Assisted Surgery";journal;"24699322";"Taylor and Francis Ltd.";Yes;No;0,401;Q2;72;18;39;691;88;38;2,38;38,39;23,58;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Family Practice (Q2); Surgery (Q2); Computer Science Applications (Q3)";"Computer Science; Medicine" +14180;13749;"Heat and Mass Transfer";journal;"09477411, 14321181";"Springer Verlag";No;No;0,401;Q2;94;107;432;3923;1081;430;2,48;36,66;26,98;0;Germany;Western Europe;"Springer Verlag";"1995-2026";"Fluid Flow and Transfer Processes (Q2); Condensed Matter Physics (Q3)";"Chemical Engineering; Physics and Astronomy" +14181;19700200870;"Intelligent Buildings International";journal;"17566932, 17508975";"Taylor and Francis Ltd.";No;No;0,401;Q2;34;41;91;1658;187;76;1,86;40,44;48,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Building and Construction (Q2); Geography, Planning and Development (Q2); Civil and Structural Engineering (Q3); Computer Science Applications (Q3)";"Computer Science; Engineering; Social Sciences" +14182;7200153129;"International Community Law Review";journal;"18719732, 18719740";"Martinus Nijhoff Publishers";No;No;0,401;Q2;21;31;78;3185;56;67;0,75;102,74;34,29;1;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"2006-2026";"Law (Q2); Political Science and International Relations (Q2)";"Social Sciences" +14183;21101236742;"Jambe Law Journal";journal;"25987925, 2598795X";"Jambi University";No;No;0,401;Q2;6;30;40;1440;88;40;2,37;48,00;42,68;0;Indonesia;Asiatic Region;"Jambi University";"2020-2025";"Law (Q2)";"Social Sciences" +14184;12160;"Journal of Laser Applications";journal;"1042346X, 19381387";"American Institute of Physics";No;No;0,401;Q2;72;150;476;5028;1001;474;2,13;33,52;28,03;0;United States;Northern America;"American Institute of Physics";"1988-2026";"Instrumentation (Q2); Atomic and Molecular Physics, and Optics (Q3); Biomedical Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +14185;21101269386;"Liquids";journal;"26738015";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,401;Q2;11;36;102;1829;260;102;2,23;50,81;22,22;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +14186;16638;"Plant Systematics and Evolution";journal;"16156110, 03782697";"Springer";No;No;0,401;Q2;87;43;133;3581;219;131;1,63;83,28;38,65;0;Austria;Western Europe;"Springer";"1974-2026";"Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +14187;4700153104;"Revista Brasileira de Botanica";journal;"01008404, 18069959";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,401;Q2;46;82;277;4887;563;274;1,91;59,60;43,88;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2006-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +14188;21101075550;"Small Enterprise Research";journal;"11750979, 13215906";"Taylor and Francis Ltd.";No;No;0,401;Q2;29;10;55;1001;150;53;1,89;100,10;47,37;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-1994, 1996-2008, 2010-2026";"Business, Management and Accounting (miscellaneous) (Q2); Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Business and International Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +14189;21101055713;"Chemistry Africa";journal;"25225766, 25225758";"Springer Science and Business Media Deutschland GmbH";No;No;0,401;Q3;33;359;815;21558;2161;811;2,74;60,05;38,15;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2018-2026";"Catalysis (Q3); Chemistry (miscellaneous) (Q3); Environmental Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Chemical Engineering; Chemistry; Environmental Science" +14190;19700176024;"Iranian Journal of Microbiology";journal;"20083289, 20084447";"Tehran University of Medical Sciences";Yes;No;0,401;Q3;42;119;314;4135;564;309;1,68;34,75;47,69;0;Iran;Middle East;"Tehran University of Medical Sciences";"2010-2026";"Microbiology (Q3); Microbiology (medical) (Q3)";"Immunology and Microbiology; Medicine" +14191;12797;"Journal of Educational and Psychological Consultation";journal;"10474412, 1532768X";"Routledge";No;No;0,401;Q3;42;34;60;1881;86;58;1,59;55,32;76,03;1;United States;Northern America;"Routledge";"1990-2005, 2007-2026";"Developmental and Educational Psychology (Q3); Psychology (miscellaneous) (Q3)";"Psychology" +14192;17700155407;"Journal of Infection in Developing Countries";journal;"20366590, 19722680";"Journal of Infection in Developing Countries";Yes;No;0,401;Q3;69;238;837;7760;1245;826;1,49;32,61;49,41;0;Italy;Western Europe;"Journal of Infection in Developing Countries";"2007-2026";"Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Microbiology (Q3); Parasitology (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine" +14193;19006;"Psychiatric Genetics";journal;"14735873, 09558829";"Lippincott Williams and Wilkins";No;No;0,401;Q3;67;30;77;955;118;77;1,49;31,83;48,34;0;United States;Northern America;"Lippincott Williams and Wilkins";"1990-2026";"Genetics (clinical) (Q3); Psychiatry and Mental Health (Q3); Biological Psychiatry (Q4); Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +14194;21101199201;"Psychiatry and Clinical Neurosciences Reports";journal;"27692558";"Blackwell Publishing Asia";Yes;No;0,401;Q3;9;222;263;7471;291;222;1,12;33,65;30,19;0;Japan;Asiatic Region;"Blackwell Publishing Asia";"2022-2026";"Neurology (Q3); Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3); Biological Psychiatry (Q4)";"Medicine; Neuroscience" +14195;19900193810;"Retinal Cases and Brief Reports";journal;"19371578, 19351089";"Lippincott Williams and Wilkins";No;No;0,401;Q3;26;274;584;2914;536;573;0,89;10,64;38,59;0;United States;Northern America;"Lippincott Williams and Wilkins";"2007, 2009-2026";"Medicine (miscellaneous) (Q3); Ophthalmology (Q3)";"Medicine" +14196;11600153451;"Rhetoric Society Quarterly";journal;"1930322X, 02773945";"Taylor and Francis Ltd.";No;No;0,400;Q1;34;32;115;1588;113;105;0,91;49,63;51,16;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976-2026";"Linguistics and Language (Q1); Communication (Q2)";"Social Sciences" +14197;21100981107;"Applied Engineering Letters";journal;"24664847, 24664677";"The Association of Intellectuals for the Development of Science in Serbia "The Serbian Academic Center" Novi Sad";Yes;No;0,400;Q2;15;16;60;508;166;60;3,33;31,75;16,36;0;Serbia;Eastern Europe;"The Association of Intellectuals for the Development of Science in Serbia "The Serbian Academic Center" Novi Sad";"2016-2025";"Engineering (miscellaneous) (Q2); Energy (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Energy; Engineering; Materials Science" +14198;21941;"Folia Primatologica";journal;"00155713, 14219980";"Brill Academic Publishers";No;No;0,400;Q2;54;30;85;1680;87;83;0,54;56,00;49,61;0;Netherlands;Western Europe;"Brill Academic Publishers";"1963-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +14199;23841;"Journal of Approximation Theory";journal;"10960430, 00219045";"Academic Press Inc.";No;No;0,400;Q2;62;57;155;1567;150;154;0,78;27,49;19,39;0;United States;Northern America;"Academic Press Inc.";"1968-2026";"Mathematics (miscellaneous) (Q2); Analysis (Q3); Applied Mathematics (Q3); Numerical Analysis (Q3)";"Mathematics" +14200;21101023923;"Journal of Computational Applied Mechanics";journal;"24236713, 24236705";"University of Tehran";Yes;Yes;0,400;Q2;19;50;130;2089;425;130;3,59;41,78;17,73;0;Iran;Middle East;"University of Tehran";"2019-2026";"Computational Mechanics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)";"Engineering" +14201;21101188857;"Journal of Economics and Management (Poland)";journal;"17321948, 27199975";"University of Economics in Katowice";Yes;Yes;0,400;Q2;7;24;38;1704;136;38;3,58;71,00;48,21;0;Poland;Eastern Europe;"University of Economics in Katowice";"2023-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Information Systems and Management (Q2); Management Information Systems (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +14202;21101073709;"Journal of Mining and Environment";journal;"22518606, 22518592";"Shahrood University of Technology";No;No;0,400;Q2;18;106;241;5340;502;241;2,02;50,38;14,72;0;Iran;Middle East;"Shahrood University of Technology";"2019-2026";"Industrial and Manufacturing Engineering (Q2); Geochemistry and Petrology (Q3); Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3); Pollution (Q3)";"Earth and Planetary Sciences; Engineering; Environmental Science" +14203;13569;"Journal of Pesticide Science";journal;"13490923, 1348589X";"Pesticide Science Society of Japan";Yes;No;0,400;Q2;51;23;92;733;154;92;1,55;31,87;18,75;0;Japan;Asiatic Region;"Pesticide Science Society of Japan";"1975-2025";"Insect Science (Q2); Health, Toxicology and Mutagenesis (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14204;5800169464;"Nonproliferation Review";journal;"10736700, 17461766";"Routledge";No;No;0,400;Q2;32;16;64;536;45;47;0,43;33,50;13,33;0;United Kingdom;Western Europe;"Routledge";"1993-2020, 2022-2026";"Political Science and International Relations (Q2)";"Social Sciences" +14205;21101107953;"Remote Sensing in Earth Systems Sciences";journal;"25208209, 25208195";"Springer Nature";No;No;0,400;Q2;20;85;102;3730;274;102;2,80;43,88;31,33;0;Switzerland;Western Europe;"Springer Nature";"2018-2026";"Computers in Earth Sciences (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2); Atmospheric Science (Q3); Oceanography (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Social Sciences" +14206;21100996939;"Revista Cientifica General Jose Maria Cordova";journal;"19006586, 25007645";"Escuela Militar de Cadetes";Yes;Yes;0,400;Q2;10;45;164;2113;158;150;0,80;46,96;24,36;0;Colombia;Latin America;"Escuela Militar de Cadetes";"2011-2013, 2015-2026";"Law (Q2); Political Science and International Relations (Q2); Public Administration (Q2); Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Engineering; Social Sciences" +14207;16523;"Tourism";journal;"18491545, 13327461";"Institute for Tourism";Yes;No;0,400;Q2;35;54;139;3038;357;137;2,74;56,26;39,26;0;Croatia;Eastern Europe;"Institute for Tourism";"2002-2025";"Geography, Planning and Development (Q2); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +14208;21101168871;"APN Science Bulletin";journal;"25227971";"Asia-pacific Network for Global Change Research";Yes;Yes;0,400;Q3;9;9;53;510;88;52;1,25;56,67;36,73;0;Japan;Asiatic Region;"Asia-pacific Network for Global Change Research";"2019-2025";"Energy Engineering and Power Technology (Q3); Environmental Science (miscellaneous) (Q3); Global and Planetary Change (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science" +14209;21101315874;"EJC Skin Cancer";journal;"27726118";"Elsevier B.V.";Yes;No;0,400;Q3;3;49;29;1255;33;26;1,14;25,61;39,86;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Dermatology (Q3); Oncology (Q3)";"Medicine" +14210;12100154807;"Journal of the Korean Astronomical Society";journal;"12254614, 2288890X";"Korean Astronomical Society";Yes;No;0,400;Q3;25;25;65;1542;56;65;0,87;61,68;26,11;0;South Korea;Asiatic Region;"Korean Astronomical Society";"1993, 2008-2026";"Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Physics and Astronomy" +14211;18057;"Neurosciences";journal;"13196138";"Saudi Arabian Armed Forces Hospital";No;No;0,400;Q3;34;14;173;0;261;158;1,50;0,00;37,84;0;Saudi Arabia;Middle East;"Saudi Arabian Armed Forces Hospital";"2002-2025";"Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +14212;19700201628;"Open Microbiology Journal";journal;"18742858";"Bentham Science Publishers";Yes;No;0,400;Q3;39;12;46;831;99;44;1,68;69,25;39,22;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2011-2026";"Immunology and Microbiology (miscellaneous) (Q3)";"Immunology and Microbiology" +14213;5600153635;"Risk Management";journal;"17434637, 14603799";"Palgrave Macmillan Ltd.";No;No;0,400;Q3;28;28;65;1775;181;65;2,80;63,39;41,18;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1999, 2006, 2009-2026";"Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +14214;21101039623;"Proceedings of the International Conference on Knowledge Representation and Reasoning";conference and proceedings;"23341025, 23341033";"Association for the Advancement of Artificial Intelligence";No;No;0,400;-;62;0;175;0;261;171;1,49;0,00;0,00;0;United States;Northern America;"Association for the Advancement of Artificial Intelligence";"1989, 1991-1992, 1994, 1996, 1998, 2000, 2002, 2006, 2008, 2010, 2012, 2014, 2016, 2023-2024";"Logic; Software";"Computer Science; Mathematics" +14215;12100155734;"Ethnography and Education";journal;"17457823, 17457831";"Routledge";No;No;0,399;Q1;29;53;73;2484;119;70;1,33;46,87;65,82;1;United Kingdom;Western Europe;"Routledge";"2010-2026";"Cultural Studies (Q1); Education (Q2); Gender Studies (Q2)";"Social Sciences" +14216;21101038727;"Etnografia";journal;"26188600, 26870789";"Peter the Great Museum of Anthropology and Ethnography (Kunstkamera), Russian Academy of Sciences";No;No;0,399;Q1;9;43;132;1013;54;132;0,43;23,56;44,44;0;Russian Federation;Eastern Europe;"Peter the Great Museum of Anthropology and Ethnography (Kunstkamera), Russian Academy of Sciences";"2018-2025";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +14217;21100790521;"Polar Journal";journal;"21548978, 2154896X";"Taylor and Francis Ltd.";No;No;0,399;Q1;27;38;84;1844;133;69;1,72;48,53;64,91;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +14218;27741;"Theoria (Sweden)";journal;"00405825, 17552567";"John Wiley and Sons Inc";No;Yes;0,399;Q1;24;92;186;3256;115;158;0,58;35,39;23,91;1;United States;Northern America;"John Wiley and Sons Inc";"1935-2026";"Philosophy (Q1)";"Arts and Humanities" +14219;21100857441;"Categories and General Algebraic Structures with Applications";journal;"23455861, 23455853";"Shahid Beheshti University";Yes;Yes;0,399;Q2;8;18;48;360;29;47;0,56;20,00;25,00;0;Iran;Middle East;"Shahid Beheshti University";"2017-2026";"Discrete Mathematics and Combinatorics (Q2); Analysis (Q3); Applied Mathematics (Q3); Computational Mathematics (Q3)";"Mathematics" +14220;18258;"Compensation and Benefits Review";journal;"15523837, 08863687";"SAGE Publications Inc.";No;No;0,399;Q2;20;19;43;975;78;41;2,36;51,32;39,02;0;United States;Northern America;"SAGE Publications Inc.";"1985-1989, 2000-2026";"Business, Management and Accounting (miscellaneous) (Q2); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting" +14221;20556;"Italian Journal of Food Science";journal;"11201770, 22395687";"Codon Publications";Yes;No;0,399;Q2;45;121;173;7340;644;173;3,88;60,66;47,28;0;Singapore;Asiatic Region;"Codon Publications";"1996-2026";"Food Science (Q2)";"Agricultural and Biological Sciences" +14222;700147309;"Journal of General Management";journal;"17596106, 03063070";"SAGE Publications Inc.";No;No;0,399;Q2;29;60;111;5104;227;108;1,90;85,07;41,67;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1979, 1982, 2003-2026";"Business, Management and Accounting (miscellaneous) (Q2); Strategy and Management (Q3)";"Business, Management and Accounting" +14223;4700152438;"Journal of Indian Association for Child and Adolescent Mental Health";journal;"09731342";"Sage Publications";No;No;0,399;Q2;15;49;155;1454;200;140;1,22;29,67;53,33;0;India;Asiatic Region;"Sage Publications";"2006-2008, 2010-2025";"Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q3)";"Medicine" +14224;19700201456;"Journal of Urbanism";journal;"17549175, 17549183";"Taylor and Francis Ltd.";No;No;0,399;Q2;39;79;135;4689;232;126;1,65;59,35;45,32;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Geography, Planning and Development (Q2); Urban Studies (Q2)";"Social Sciences" +14225;21101030204;"Journal of Women's Entrepreneurship and Education";journal;"18211283, 24060674";"Institute of Economic Sciences";Yes;No;0,399;Q2;12;25;81;1026;191;73;2,47;41,04;50,98;0;Serbia;Eastern Europe;"Institute of Economic Sciences";"2019-2025";"Business, Management and Accounting (miscellaneous) (Q2); Education (Q2); Gender Studies (Q2)";"Business, Management and Accounting; Social Sciences" +14226;17061;"Lubrication Science";journal;"09540075, 15576833";"John Wiley and Sons Ltd";No;No;0,399;Q2;47;37;134;1416;362;134;2,30;38,27;26,35;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1988-2026";"Surfaces, Coatings and Films (Q2); Materials Chemistry (Q3)";"Materials Science" +14227;22653;"Mammalia";journal;"18641547, 00251461";"Walter de Gruyter GmbH";No;No;0,399;Q2;46;79;241;3646;259;240;0,94;46,15;28,39;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1936-1937, 1939-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +14228;21100788814;"Physics in Medicine";journal;"23524510";"Elsevier B.V.";Yes;No;0,399;Q2;11;0;11;0;48;11;0,00;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2022";"Instrumentation (Q2); Biophysics (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine; Physics and Astronomy" +14229;17400154810;"Radiological Physics and Technology";journal;"18650341, 18650333";"Springer";No;No;0,399;Q2;33;126;198;3543;336;191;1,55;28,12;16,85;0;Singapore;Asiatic Region;"Springer";"2008-2026";"Radiation (Q2); Medicine (miscellaneous) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Health Professions; Medicine; Physics and Astronomy" +14230;18587;"Shuili Xuebao/Journal of Hydraulic Engineering";journal;"05599350";"International Research and Training Center on Erosion and Sedimentation and China Water and Power Press";No;No;0,399;Q2;48;141;390;3895;856;390;1,93;27,62;32,08;0;China;Asiatic Region;"International Research and Training Center on Erosion and Sedimentation and China Water and Power Press";"1985-1998, 2001-2025";"Mechanical Engineering (Q2); Energy Engineering and Power Technology (Q3); Water Science and Technology (Q3)";"Energy; Engineering; Environmental Science" +14231;12142;"International Journal of Mass Spectrometry";journal;"13873806";"Elsevier B.V.";No;No;0,399;Q3;130;84;315;3477;603;305;1,88;41,39;27,75;0;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Condensed Matter Physics (Q3); Instrumentation (Q3); Physical and Theoretical Chemistry (Q3); Spectroscopy (Q3)";"Chemistry; Physics and Astronomy" +14232;21100266501;"International Journal of Mycobacteriology";journal;"22125531, 2212554X";"Wolters Kluwer Medknow Publications";Yes;No;0,399;Q3;33;61;242;1865;342;231;1,45;30,57;42,08;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2012-2025";"Infectious Diseases (Q3); Microbiology (medical) (Q3)";"Medicine" +14233;22450;"Journal of Vector Borne Diseases";journal;"09729062";"Wolters Kluwer Medknow Publications";Yes;Yes;0,399;Q3;51;73;200;2751;305;193;1,51;37,68;39,18;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2003-2025";"Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Parasitology (Q3)";"Immunology and Microbiology; Medicine" +14234;26988;"Luminescence";journal;"15227243, 15227235";"John Wiley and Sons Ltd";No;No;0,399;Q3;60;327;819;15672;2415;818;2,91;47,93;38,65;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1997-2026";"Biophysics (Q3); Chemistry (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +14235;24130;"Natural Resource Modeling";journal;"08908575, 19397445";"John Wiley and Sons Inc";No;No;0,399;Q3;39;22;70;1336;137;68;1,90;60,73;24,69;0;United States;Northern America;"John Wiley and Sons Inc";"1986-1995, 1997-2026";"Environmental Science (miscellaneous) (Q3); Modeling and Simulation (Q3)";"Environmental Science; Mathematics" +14236;17325;"Nuclear Medicine Communications";journal;"14735628, 01433636";"Wolters Kluwer Health";No;No;0,399;Q3;84;142;441;4491;625;429;1,36;31,63;38,67;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1980-2026";"Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +14237;21100929572;"Rambam Maimonides Medical Journal";journal;"20769172";"Rambam Health Care Campus";Yes;Yes;0,399;Q3;15;14;78;553;131;70;1,60;39,50;47,50;0;Israel;Middle East;"Rambam Health Care Campus";"2011, 2019-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +14238;18256;"Revista Iberoamericana de Micologia";journal;"11301406, 21739188";"Asociacion Espanola de Micologia";No;No;0,399;Q3;52;17;43;547;77;41;1,42;32,18;44,71;0;Spain;Western Europe;"Asociacion Espanola de Micologia";"1996-2026";"Infectious Diseases (Q3); Microbiology (Q4)";"Immunology and Microbiology; Medicine" +14239;130070;"Wspolczesna Onkologia";journal;"14282526, 18974309";"Termedia Publishing House Ltd.";Yes;No;0,399;Q3;37;37;123;1591;186;120;1,31;43,00;51,89;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2005-2025";"Oncology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +14240;21101264424;"Proceedings of the ACM SIGCOMM Internet Measurement Conference, IMC";conference and proceedings;"21503761";"Association for Computing Machinery";No;No;0,399;-;13;17;152;904;334;146;2,20;53,18;18,75;0;United States;Northern America;"Association for Computing Machinery";"2016, 2021, 2023-2025";"Computer Networks and Communications; Software";"Computer Science" +14241;15015;"Agricultural History Review";journal;"00021490";"British Agricultural History Society";No;No;0,398;Q1;24;10;33;994;22;32;0,30;99,40;21,43;0;United Kingdom;Western Europe;"British Agricultural History Society";"1978-2025";"History and Philosophy of Science (Q1); Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Economics and Econometrics (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Economics, Econometrics and Finance" +14242;5800207817;"Journal of Greek Linguistics";journal;"15699846, 15665844";"Brill Academic Publishers";Yes;No;0,398;Q1;13;12;27;420;19;21;0,61;35,00;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2025";"Linguistics and Language (Q1)";"Social Sciences" +14243;21101047823;"Lexicography";journal;"21974292, 21974306";"University of Toronto Press";No;No;0,398;Q1;10;9;29;251;18;26;0,67;27,89;53,33;0;Canada;Northern America;"University of Toronto Press";"2014-2025";"Linguistics and Language (Q1)";"Social Sciences" +14244;85143;"Records of the Australian Museum";journal;"00671975";"Scientific Publications";Yes;Yes;0,398;Q1;25;9;68;614;57;67;0,91;68,22;30,00;0;Australia;Pacific Region;"Scientific Publications";"1983, 2005-2012, 2014-2025";"History (Q1); Museology (Q1); Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences; Arts and Humanities" +14245;21100905833;"Beyond Behavior";journal;"21635323, 10742956";"SAGE Publications Inc.";No;No;0,398;Q2;17;19;57;660;66;48;1,26;34,74;72,22;0;United States;Northern America;"SAGE Publications Inc.";"2012-2026";"Education (Q2); Clinical Psychology (Q3); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +14246;12505;"Ecology of Food and Nutrition";journal;"03670244, 15435237";"Taylor and Francis Ltd.";No;No;0,398;Q2;53;22;104;1043;147;94;1,27;47,41;64,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Ecology (Q2); Food Science (Q2); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +14247;21101071896;"Environmental Economics";journal;"19986041, 1998605X";"LLC CPC Business Perspectives";Yes;No;0,398;Q2;14;35;64;1567;215;64;3,64;44,77;48,82;0;Ukraine;Eastern Europe;"LLC CPC Business Perspectives";"2017-2026";"Geography, Planning and Development (Q2); Law (Q2); Public Administration (Q2); Economics and Econometrics (Q3); Environmental Science (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q3); Global and Planetary Change (Q4)";"Economics, Econometrics and Finance; Energy; Environmental Science; Social Sciences" +14248;21100202720;"International Journal of Housing Markets and Analysis";journal;"17538270, 17538289";"Emarald Group Publishing Ltd";No;No;0,398;Q2;34;161;247;9915;631;229;2,67;61,58;29,51;0;United Kingdom;Western Europe;"Emarald Group Publishing Ltd";"2008-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +14249;15626;"International Journal of Law and Psychiatry";journal;"18736386, 01602527";"Elsevier Ltd";No;No;0,398;Q2;83;49;150;2905;327;148;2,31;59,29;54,71;1;United Kingdom;Western Europe;"Elsevier Ltd";"1978-1984, 1986-2026";"Law (Q2); Pathology and Forensic Medicine (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Social Sciences" +14250;19700201467;"Journal of Civil Society";journal;"17448689, 17448697";"Taylor and Francis Ltd.";No;No;0,398;Q2;30;25;72;1548;145;71;1,77;61,92;42,22;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005, 2010-2026";"Sociology and Political Science (Q2)";"Social Sciences" +14251;4700151913;"Journal of Energetic Materials";journal;"07370652, 15458822";"Taylor and Francis Ltd.";No;No;0,398;Q2;44;77;141;3306;285;141;1,90;42,94;30,60;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +14252;21100815317;"Journal of Pharmacopuncture";journal;"20936966, 22346856";"Korean Pharmacopuncture Institute";Yes;Yes;0,398;Q2;32;37;119;1298;260;117;1,71;35,08;42,86;0;South Korea;Asiatic Region;"Korean Pharmacopuncture Institute";"2016-2025";"Complementary and Alternative Medicine (Q2); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +14253;21100938252;"Journal of Women and Gender in Higher Education";journal;"26379112, 26379120";"Taylor and Francis Inc.";No;No;0,398;Q2;20;23;59;1284;101;56;1,53;55,83;71,43;0;United States;Northern America;"Taylor and Francis Inc.";"2019-2026";"Education (Q2); Gender Studies (Q2)";"Social Sciences" +14254;8100153107;"Magallania";journal;"07180209, 07182244";"Universidad de Magallanes";Yes;Yes;0,398;Q2;25;5;44;178;32;44;0,74;35,60;33,33;0;Chile;Latin America;"Universidad de Magallanes";"2007-2025";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14255;144729;"On the Horizon";journal;"10748121, 20541708";"Emerald Publishing";No;No;0,398;Q2;38;28;53;1749;109;48;1,57;62,46;38,46;0;United Kingdom;Western Europe;"Emerald Publishing";"2000-2025";"Education (Q2)";"Social Sciences" +14256;11500153308;"Recent Patents on Nanotechnology";journal;"22124020, 18722105";"Bentham Science Publishers";No;No;0,398;Q2;41;59;95;4164;364;88;3,49;70,58;36,84;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2007-2026";"Engineering (miscellaneous) (Q2); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Nanoscience and Nanotechnology (Q3)";"Engineering; Materials Science; Physics and Astronomy" +14257;21100228131;"Studies in Communication Sciences";journal;"22964150, 14244896";"HBZ Open Publishing Environment";Yes;Yes;0,398;Q2;17;8;88;334;123;78;0,60;41,75;70,59;0;Switzerland;Western Europe;"HBZ Open Publishing Environment";"2012-2026";"Communication (Q2)";"Social Sciences" +14258;21977;"Acta Cardiologica";journal;"00015385, 03737934";"Taylor and Francis Ltd.";Yes;No;0,398;Q3;46;221;543;4727;758;407;1,39;21,39;31,81;0;Belgium;Western Europe;"Taylor and Francis Ltd.";"1946-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +14259;20700195024;"Asian Pacific Journal of Tropical Biomedicine";journal;"22211691, 25889222";"Wolters Kluwer Medknow Publications";Yes;Yes;0,398;Q3;95;50;168;2297;378;168;2,30;45,94;41,12;0;Netherlands;Western Europe;"Wolters Kluwer Medknow Publications";"2011-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology" +14260;21100199849;"Basic and Clinical Neuroscience";journal;"2008126X, 22287442";"Iran University of Medical Sciences";Yes;Yes;0,398;Q3;34;85;225;4156;324;224;1,23;48,89;38,08;0;Iran;Middle East;"Iran University of Medical Sciences";"2010-2025";"Neurology (clinical) (Q3); Cellular and Molecular Neuroscience (Q4)";"Medicine; Neuroscience" +14261;18780;"Circuits, Systems, and Signal Processing";journal;"0278081X, 15315878";"Springer Nature";No;No;0,398;Q3;70;588;1028;24401;3037;1027;3,21;41,50;30,80;0;United States;Northern America;"Springer Nature";"1982-2026";"Applied Mathematics (Q3); Signal Processing (Q3)";"Computer Science; Mathematics" +14262;21100386859;"JAAD Case Reports";journal;"23525126";"Elsevier Inc.";Yes;No;0,398;Q3;38;578;1398;4855;1490;1328;1,11;8,40;54,91;1;United States;Northern America;"Elsevier Inc.";"2015-2026";"Dermatology (Q3)";"Medicine" +14263;21100463101;"Melanoma Management";journal;"20450893, 20450885";"Taylor and Francis Ltd.";Yes;No;0,398;Q3;16;14;15;888;21;15;1,17;63,43;40,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Dermatology (Q3); Oncology (Q3)";"Medicine" +14264;14133;"Molecular and Biochemical Parasitology";journal;"01666851, 18729428";"Elsevier B.V.";No;No;0,398;Q3;127;30;118;1978;181;115;1,49;65,93;48,75;0;Netherlands;Western Europe;"Elsevier B.V.";"1980-2026";"Parasitology (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +14265;29035;"Open Economies Review";journal;"09237992, 1573708X";"Springer Netherlands";No;No;0,398;Q3;44;87;119;4536;204;117;1,44;52,14;22,96;8;Netherlands;Western Europe;"Springer Netherlands";"1990-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +14266;20099;"Women and Health";journal;"03630242, 15410331";"Routledge";No;No;0,398;Q3;72;80;259;3022;341;235;1,10;37,78;55,56;0;United States;Northern America;"Routledge";"1975-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +14267;21100224005;"Obradoiro de Historia Moderna";journal;"23400013, 11330481";"Universidade de Santiago de Compostela";Yes;No;0,397;Q1;7;7;26;689;14;26;0,56;98,43;25,00;0;Spain;Western Europe;"Universidade de Santiago de Compostela";"1999, 2001, 2012-2014, 2016-2025";"History (Q1)";"Arts and Humanities" +14268;39159;"Oxford Journal of Archaeology";journal;"02625253, 14680092";"Wiley-Blackwell Publishing Ltd";No;No;0,397;Q1;41;21;65;1266;44;64;0,73;60,29;24,24;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1982-2026";"Archeology (arts and humanities) (Q1); Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q2)";"Arts and Humanities; Social Sciences" +14269;13686;"Advances in Heat Transfer";book series;"00652717";"Elsevier Ltd";No;No;0,397;Q2;37;13;35;966;85;3;2,71;74,31;27,27;0;United Kingdom;Western Europe;"Elsevier Ltd";"1964-1967, 1969-1977, 1979, 1982, 1984-1985, 1987, 1989-1999, 2001, 2003-2004, 2006-2007, 2009-2026";"Fluid Flow and Transfer Processes (Q2); Mechanical Engineering (Q2); Condensed Matter Physics (Q3)";"Chemical Engineering; Engineering; Physics and Astronomy" +14270;26506;"Bulletin of the Geological Society of Denmark";journal;"00116297";"Dansk Geologisk Forening";Yes;No;0,397;Q2;32;15;31;885;38;31;1,41;59,00;17,65;0;Denmark;Western Europe;"Dansk Geologisk Forening";"1978-1990, 1997, 1999-2009, 2011-2026";"Geology (Q2)";"Earth and Planetary Sciences" +14271;22830;"Canadian Journal of Criminology and Criminal Justice";journal;"17077753, 19110219";"University of Toronto Press";No;No;0,397;Q2;48;12;57;778;80;56;1,11;64,83;66,67;0;Canada;Northern America;"University of Toronto Press";"2003-2025";"Law (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14272;14578;"Ecologia Austral";journal;"03275477, 1667782X";"Asociacion Argentina de Ecologia";Yes;Yes;0,397;Q2;37;29;206;1659;223;206;0,88;57,21;50,43;0;Argentina;Latin America;"Asociacion Argentina de Ecologia";"1991, 1993-2025";"Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences; Environmental Science" +14273;21101089389;"Food Science and Applied Biotechnology";journal;"26033380";"University of Food Technologies Plovdiv";No;No;0,397;Q2;14;16;88;739;204;87;2,11;46,19;50,00;0;Bulgaria;Eastern Europe;"University of Food Technologies Plovdiv";"2019-2025";"Food Science (Q2); Analytical Chemistry (Q3); Biotechnology (Q3); Inorganic Chemistry (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry" +14274;21101162543;"International Journal of Agriculture and Biosciences";journal;"23063599, 23056622";"Unique Scientific Publishers";No;No;0,397;Q2;19;169;184;8227;736;184;4,50;48,68;42,88;0;Pakistan;Asiatic Region;"Unique Scientific Publishers";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +14275;21100224419;"International Journal of Computer Science in Sport";journal;"16844769";"Sciendo";Yes;No;0,397;Q2;18;15;34;579;67;34;1,68;38,60;17,65;0;Austria;Western Europe;"Sciendo";"2012-2025";"Computer Science (miscellaneous) (Q2); Biomedical Engineering (Q3)";"Computer Science; Engineering" +14276;21101218126;"International Journal of Disability and Social Justice";journal;"27324044, 27324036";"Pluto Journals";Yes;Yes;0,397;Q2;8;17;49;967;98;46;1,84;56,88;73,21;0;United Kingdom;Western Europe;"Pluto Journals";"2021-2025";"Education (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14277;28604;"Izvestiya, Physics of the Solid Earth";journal;"10693513, 15556506";"Pleiades Publishing";No;No;0,397;Q2;32;92;258;3135;228;258;0,82;34,08;36,87;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science" +14278;21100199755;"Journal of Defense Modeling and Simulation";journal;"15485129, 1557380X";"SAGE Publications Inc.";No;No;0,397;Q2;30;87;163;3471;368;150;1,72;39,90;20,69;3;United States;Northern America;"SAGE Publications Inc.";"2004-2026";"Engineering (miscellaneous) (Q2); Modeling and Simulation (Q3)";"Engineering; Mathematics" +14279;12333;"Journal of Phase Equilibria and Diffusion";journal;"18637345, 15477037";"Springer New York";Yes;No;0,397;Q2;66;52;205;1947;396;200;1,84;37,44;31,61;0;United States;Northern America;"Springer New York";"2004-2026";"Metals and Alloys (Q2); Condensed Matter Physics (Q3); Materials Chemistry (Q3)";"Materials Science; Physics and Astronomy" +14280;19860;"Mycoscience";journal;"16182545, 13403540";"The Mycological Society of Japan";No;No;0,397;Q2;57;33;94;1435;147;93;1,27;43,48;32,84;0;Netherlands;Western Europe;"The Mycological Society of Japan";"1994-2026";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +14281;21100369233;"Open Geosciences";journal;"23915447";"Walter de Gruyter GmbH";Yes;No;0,397;Q2;45;166;399;9273;792;399;1,97;55,86;32,84;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2014-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science" +14282;21101123122;"Recent Advances in Food, Nutrition and Agriculture";journal;"27725758, 2772574X";"Bentham Science Publishers";No;No;0,397;Q2;6;43;44;3812;103;41;1,82;88,65;47,50;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2022-2026";"Agronomy and Crop Science (Q2); Food Science (Q2)";"Agricultural and Biological Sciences" +14283;21100199128;"REVESCO Revista de Estudios Cooperativos";journal;"18858031, 11356618";"Universidad Complutense Madrid";Yes;Yes;0,397;Q2;20;29;72;1669;82;72;1,09;57,55;49,21;0;Spain;Western Europe;"Universidad Complutense Madrid";"2011-2025";"Social Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +14284;21101334584;"Sage Open Pediatrics";journal;"30502225";"SAGE Publications Ltd";No;No;0,397;Q2;31;135;290;4175;431;281;1,11;30,93;50,26;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2025-2026";"Pediatrics, Perinatology and Child Health (Q2); Pediatrics (Q3)";"Medicine; Nursing" +14285;18300156708;"Technical Communication Quarterly";journal;"15427625, 10572252";"Routledge";No;No;0,397;Q2;44;46;91;2564;214;88;1,80;55,74;58,67;0;United States;Northern America;"Routledge";"1992-1995, 1998-2000, 2005-2026";"Communication (Q2); Education (Q2)";"Social Sciences" +14286;21100361500;"US Geological Survey Circular";journal;"23305703, 1067084X";"US Geological Survey";No;No;0,397;Q2;31;3;27;177;40;27;1,71;59,00;62,50;3;United States;Northern America;"US Geological Survey";"2002-2012, 2019-2025";"Ecology (Q2); Geology (Q2); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science" +14287;24585;"Zoology";journal;"18732720, 09442006";"Elsevier GmbH";No;No;0,397;Q2;64;31;110;2088;167;109;1,46;67,35;39,68;0;Germany;Western Europe;"Elsevier GmbH";"1994-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +14288;21101068013;"Clinical Infection in Practice";journal;"25901702";"Elsevier B.V.";Yes;No;0,397;Q3;13;50;147;854;178;113;1,22;17,08;50,68;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Infectious Diseases (Q3)";"Medicine" +14289;23979;"Electroanalysis";journal;"15214109, 10400397";"Wiley-VCH Verlag";No;No;0,397;Q3;145;194;576;10228;1503;563;2,64;52,72;43,47;0;Germany;Western Europe;"Wiley-VCH Verlag";"1989-2026";"Analytical Chemistry (Q3); Electrochemistry (Q3)";"Chemistry" +14290;21101387479;"Endocrine Oncology";journal;"26344793";"BioScientifica Ltd.";Yes;No;0,397;Q3;4;31;13;1206;25;12;1,92;38,90;44,12;0;United Kingdom;Western Europe;"BioScientifica Ltd.";"2024-2026";"Endocrinology, Diabetes and Metabolism (Q3); Oncology (Q3); Cancer Research (Q4); Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +14291;25111;"International Journal of Toxicology";journal;"10915818, 1092874X";"SAGE Publications Inc.";No;No;0,397;Q3;79;75;199;3178;309;179;1,35;42,37;42,25;0;United States;Northern America;"SAGE Publications Inc.";"1982-2026";"Toxicology (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +14292;19700201437;"Genome Integrity";journal;"20419414";"Wolters Kluwer Medknow Publications";Yes;No;0,397;Q4;23;0;1;0;2;1;0,00;0,00;0,00;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2010-2022";"Genetics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +14293;15693;"Journal of Modern Italian Studies";journal;"14699583, 1354571X";"Taylor and Francis Ltd.";No;No;0,396;Q1;32;42;102;2242;115;93;0,63;53,38;37,21;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +14294;21401;"Advances in Anesthesia";book series;"18780415, 07376146";"Academic Press Inc.";No;No;0,396;Q2;16;12;40;507;71;37;1,64;42,25;39,39;0;United States;Northern America;"Academic Press Inc.";"2003-2025";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +14295;21101204427;"Advances in Earth Science";journal;"10018166";"Science China Press";No;No;0,396;Q2;24;102;300;7432;490;300;1,58;72,86;36,05;0;China;Asiatic Region;"Science China Press";"2019-2025";"Geology (Q2); Atmospheric Science (Q3); Geophysics (Q3); Oceanography (Q3)";"Earth and Planetary Sciences" +14296;21101390127;"Archives for Technical Sciences";journal;"18404855, 22330046";"Technical institute of Bijeljina";No;No;0,396;Q2;15;205;78;5014;531;78;8,15;24,46;48,00;0;Bosnia and Herzegovina;Eastern Europe;"Technical institute of Bijeljina";"2021-2025";"Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Business and International Management (Q3); Civil and Structural Engineering (Q3); Medicine (miscellaneous) (Q3)";"Business, Management and Accounting; Engineering; Medicine" +14297;16393;"Chemical Engineering Communications";journal;"00986445, 15635201";"Taylor and Francis Ltd.";No;No;0,396;Q2;70;140;384;7311;923;381;2,12;52,22;37,16;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1973-1976, 1978-2026";"Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +14298;16031;"Electric Power Components and Systems";journal;"15325016, 15325008";"Taylor and Francis Ltd.";No;No;0,396;Q2;70;0;674;0;1748;673;2,76;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2024";"Mechanical Engineering (Q2); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)";"Energy; Engineering" +14299;21100907383;"Georesursy";journal;"16085043, 16085078";"Georesursy LLC";Yes;No;0,396;Q2;14;87;212;2738;185;207;0,88;31,47;44,55;0;Russian Federation;Eastern Europe;"Georesursy LLC";"2017-2025";"Geology (Q2); Geophysics (Q3)";"Earth and Planetary Sciences" +14300;30029;"He Jishu/Nuclear Techniques";journal;"02533219";"Science Press";Yes;Yes;0,396;Q2;18;195;569;5847;622;569;1,22;29,98;30,56;0;China;Asiatic Region;"Science Press";"1993-1995, 1998-2025";"Nuclear Energy and Engineering (Q2); Radiation (Q2); Nuclear and High Energy Physics (Q3)";"Energy; Physics and Astronomy" +14301;21101256263;"Journal of Combinatorics";journal;"2150959X, 21563527";"International Press, Inc.";No;No;0,396;Q2;6;21;72;405;36;70;0,47;19,29;32,69;0;United States;Northern America;"International Press, Inc.";"2011-2013, 2015, 2017-2018, 2020-2026";"Discrete Mathematics and Combinatorics (Q2)";"Mathematics" +14302;51667;"Journal of Mechanics";journal;"18118216, 17277191";"Oxford University Press";Yes;No;0,396;Q2;33;51;154;1631;244;151;1,68;31,98;34,59;0;United Kingdom;Western Europe;"Oxford University Press";"1998-2026";"Mechanical Engineering (Q2); Applied Mathematics (Q3); Condensed Matter Physics (Q3)";"Engineering; Mathematics; Physics and Astronomy" +14303;5700166917;"Journal of Planning History";journal;"15526585, 15385132";"SAGE Publications Inc.";No;No;0,396;Q2;26;12;41;595;31;40;0,33;49,58;42,86;0;United States;Northern America;"SAGE Publications Inc.";"2002-2026";"Geography, Planning and Development (Q2)";"Social Sciences" +14304;21100912224;"Journal of World-Systems Research";journal;"1076156X";"University Library System, University of Pittsburgh";Yes;Yes;0,396;Q2;12;25;87;2087;80;65;0,79;83,48;7,41;1;United States;Northern America;"University Library System, University of Pittsburgh";"1995-1997, 1999-2000, 2002-2004, 2006-2008, 2012, 2015-2017, 2019-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14305;21101038746;"Management and Labour Studies";journal;"23210710, 0258042X";"Sage Publications India Pvt. Ltd";No;No;0,396;Q2;21;33;102;1924;213;88;1,94;58,30;49,15;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1999-2026";"Industrial Relations (Q2); Business and International Management (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting" +14306;21570;"Prison Journal";journal;"00328855, 15527522";"SAGE Publications Inc.";No;No;0,396;Q2;63;36;109;1879;157;109;1,29;52,19;59,78;1;United States;Northern America;"SAGE Publications Inc.";"1921-1992, 1996-2026";"Law (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14307;21101257051;"Research in Ecology";journal;"26613379";"Bilingual Publishing Group";No;No;0,396;Q2;6;89;44;4286;81;41;2,00;48,16;41,37;0;Singapore;Asiatic Region;"Bilingual Publishing Group";"2022-2026";"Ecology (Q2); Nature and Landscape Conservation (Q2); Ecological Modeling (Q3); Environmental Science (miscellaneous) (Q3)";"Environmental Science" +14308;24884;"Scottish Journal of Political Economy";journal;"14679485, 00369292";"Wiley-Blackwell Publishing Ltd";No;No;0,396;Q2;57;52;84;2413;128;82;1,36;46,40;26,67;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1954-2026";"Sociology and Political Science (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +14309;21100836861;"Advances in Autism";journal;"20563876, 20563868";"Emerald Group Publishing Ltd.";No;No;0,396;Q3;20;54;88;2257;118;84;1,17;41,80;65,88;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2015-2026";"Cognitive Neuroscience (Q3); Developmental and Educational Psychology (Q3); Neurology (Q3); Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Neuroscience; Psychology" +14310;23345;"Bulletin of the Chemical Society of Japan";journal;"00092673, 13480634";"Oxford University Press";No;No;0,396;Q3;111;128;542;6946;1546;540;3,54;54,27;21,99;0;United Kingdom;Western Europe;"Oxford University Press";"1965-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +14311;21101138042;"Chemical Thermodynamics and Thermal Analysis";journal;"26673126";"Elsevier B.V.";Yes;No;0,396;Q3;16;91;108;4831;286;107;2,08;53,09;30,74;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Physical and Theoretical Chemistry (Q3)";"Chemistry" +14312;16373;"Hong Kong Physiotherapy Journal";journal;"10137025, 1876441X";"World Scientific";Yes;Yes;0,396;Q3;27;14;45;564;77;42;1,52;40,29;32,43;0;Singapore;Asiatic Region;"World Scientific";"2000-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions" +14313;21100824968;"International Perspectives in Psychology: Research, Practice, Consultation";journal;"21573891, 21573883";"Hogrefe-Verlag GmbH and Co. KG";No;No;0,396;Q3;15;24;72;1433;106;66;1,58;59,71;63,41;0;Germany;Western Europe;"Hogrefe-Verlag GmbH and Co. KG";"2017-2026";"Applied Psychology (Q3); Clinical Psychology (Q3); Social Psychology (Q3)";"Psychology" +14314;21101329150;"Journal of Chemistry Letters";journal;"27171892, 28210123";"Eurasian Science Society (ESS)";No;No;0,396;Q3;11;30;72;1589;200;72;3,02;52,97;44,05;0;Iran;Middle East;"Eurasian Science Society (ESS)";"2021-2025";"Analytical Chemistry (Q3); Inorganic Chemistry (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry" +14315;20987;"Journal of Thermal Stresses";journal;"01495739, 1521074X";"Taylor and Francis Ltd.";No;No;0,396;Q3;78;97;208;4261;503;208;2,45;43,93;25,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-2026";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)";"Materials Science; Physics and Astronomy" +14316;19700175781;"Psychology and Neuroscience";journal;"19843054, 19833288";"Casa do Psicologo";Yes;Yes;0,396;Q3;27;21;76;1136;153;76;2,04;54,10;52,13;0;Brazil;Latin America;"Casa do Psicologo";"2010-2025";"Neuropsychology and Physiological Psychology (Q3); Neuroscience (miscellaneous) (Q4)";"Neuroscience; Psychology" +14317;25477;"South African Journal of Economics";journal;"00382280, 18136982";"Wiley-Blackwell";No;No;0,396;Q3;42;26;74;1245;130;73;1,86;47,88;29,55;0;United States;Northern America;"Wiley-Blackwell";"1933-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +14318;21100201981;"Journal of Management, Spirituality and Religion";journal;"1942258X, 14766086";"International Association of Management, Spirituality and Religion";No;No;0,395;Q1;43;37;84;2791;168;83;2,18;75,43;43,48;0;United Kingdom;Western Europe;"International Association of Management, Spirituality and Religion";"2004-2026";"Philosophy (Q1); Religious Studies (Q1); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Arts and Humanities; Business, Management and Accounting" +14319;27833;"Theological Studies";journal;"00405639, 21691304";"SAGE Publications Inc.";No;No;0,395;Q1;26;27;91;1693;47;75;0,41;62,70;43,48;0;United States;Northern America;"SAGE Publications Inc.";"1968, 1973-1976, 1979-1982, 1987-1990, 1993, 1995-2025";"Religious Studies (Q1)";"Arts and Humanities" +14320;21101177674;"ASME Journal of Heat and Mass Transfer";journal;"28328469, 28328450";"American Society of Mechanical Engineers (ASME)";No;No;0,395;Q2;151;130;454;5729;928;448;2,03;44,07;21,32;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"2023-2026";"Mechanical Engineering (Q2); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science" +14321;21385;"Canadian Journal of Administrative Sciences";journal;"19364490, 08250383";"Wiley-Blackwell";No;No;0,395;Q2;65;45;103;4014;167;95;1,55;89,20;37,70;0;United States;Northern America;"Wiley-Blackwell";"1984-1990, 1992, 1996-2026";"Public Administration (Q2); Business and International Management (Q3); Management of Technology and Innovation (Q3); Marketing (Q3)";"Business, Management and Accounting; Social Sciences" +14322;21101059012;"Chemistry Teacher International";journal;"25693263";"Walter de Gruyter GmbH";Yes;No;0,395;Q2;15;69;115;3088;240;112;1,30;44,75;53,79;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2019-2026";"Education (Q2); Chemistry (miscellaneous) (Q3)";"Chemistry; Social Sciences" +14323;21100413836;"European Countryside";journal;"18038417";"de Gruyter";Yes;No;0,395;Q2;28;36;108;2101;187;108;1,70;58,36;50,00;1;Germany;Western Europe;"de Gruyter";"2012-2025";"Geography, Planning and Development (Q2); Nature and Landscape Conservation (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +14324;21100394100;"IET Networks";journal;"20474962, 20474954";"John Wiley & Sons Inc.";Yes;No;0,395;Q2;36;29;97;1408;257;94;2,64;48,55;20,00;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2014-2026";"Computer Networks and Communications (Q2); Control and Optimization (Q2); Management Science and Operations Research (Q3)";"Computer Science; Decision Sciences; Mathematics" +14325;12100155655;"Journal of Location Based Services";journal;"17489725, 17489733";"Taylor and Francis Ltd.";No;No;0,395;Q2;31;21;45;942;102;43;2,50;44,86;33,33;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q3); Signal Processing (Q3)";"Computer Science; Engineering" +14326;23857;"Revue Suisse de Zoologie";journal;"0035418X";"Museum d'Histoire Naturelle de Geneve";No;No;0,395;Q2;32;11;74;314;39;74;0,54;28,55;12,50;0;Switzerland;Western Europe;"Museum d'Histoire Naturelle de Geneve";"1964-1979, 1994-2025";"Ecology, Evolution, Behavior and Systematics (Q2)";"Agricultural and Biological Sciences" +14327;21101224399;"Tribology and Materials";journal;"28129717";"Balkan Scientific Centre";Yes;No;0,395;Q2;9;20;60;646;163;60;3,23;32,30;22,81;0;Serbia;Eastern Europe;"Balkan Scientific Centre";"2022-2025";"Mechanical Engineering (Q2); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science" +14328;14500154715;"Tropical Plant Biology";journal;"19359764, 19359756";"Springer";No;No;0,395;Q2;34;87;67;5498;145;67;2,19;63,20;41,16;0;United States;Northern America;"Springer";"2008-2026";"Plant Science (Q2); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +14329;21101183485;"Imagination, Cognition and Personality";journal;"15414477, 02762366";"SAGE Publications Ltd";No;No;0,395;Q3;39;37;66;2182;89;56;1,21;58,97;51,28;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1982-2026";"Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Psychology (miscellaneous) (Q3)";"Neuroscience; Psychology" +14330;21100218377;"Journal of Nucleic Acids";journal;"20900201, 2090021X";"John Wiley and Sons Ltd";Yes;No;0,395;Q3;39;2;7;13;17;7;2,67;6,50;20,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2025";"Biochemistry (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +14331;16307;"Journal of Surveying Engineering, - ASCE";journal;"07339453";"American Society of Civil Engineers (ASCE)";No;No;0,395;Q3;47;27;87;815;143;82;1,20;30,19;23,40;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1980, 1983-2026";"Civil and Structural Engineering (Q3)";"Engineering" +14332;6100153022;"Strategies in Trauma and Limb Reconstruction";journal;"18288928, 18288936";"Jaypee Brothers Medical Publishers (P) Ltd";Yes;No;0,395;Q3;37;20;93;559;105;89;0,74;27,95;28,74;0;Italy;Western Europe;"Jaypee Brothers Medical Publishers (P) Ltd";"2007-2025";"Orthopedics and Sports Medicine (Q3)";"Medicine" +14333;21101167500;"Proceedings - International Conference on Computational Linguistics, COLING";conference and proceedings;"29512093";"Association for Computational Linguistics (ACL)";No;No;0,395;-;34;1169;821;43599;2398;798;0,62;37,30;29,54;0;United States;Northern America;"Association for Computational Linguistics (ACL)";"2022, 2024-2025";"Computational Theory and Mathematics; Computer Science Applications; Theoretical Computer Science";"Computer Science; Mathematics" +14334;21100316041;"Proceedings of the Seminar for Arabian Studies";conference and proceedings;"03088421";"Archaeopress";No;No;0,395;-;16;23;23;767;19;21;0,83;33,35;51,02;0;United Kingdom;Western Europe;"Archaeopress";"2011, 2013-2014, 2016-2019, 2024-2025";"Archeology; Archeology (arts and humanities); Cultural Studies; History; Visual Arts and Performing Arts";"Arts and Humanities; Social Sciences" +14335;21100265343;"CALL-EJ";journal;"21879036";"The Pacific Association for Computer Assisted Language Learning (PacCALL)";No;No;0,394;Q1;20;78;167;3861;293;163;1,61;49,50;47,06;0;Japan;Asiatic Region;"The Pacific Association for Computer Assisted Language Learning (PacCALL)";"2013-2025";"Linguistics and Language (Q1); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +14336;21100301417;"European Journal of Geography";journal;"24107433, 17921341";"European Association of Geographers";Yes;Yes;0,394;Q1;17;43;84;2741;172;84;2,53;63,74;45,05;0;Belgium;Western Europe;"European Association of Geographers";"2010-2012, 2014-2026";"Cultural Studies (Q1); Demography (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2)";"Social Sciences" +14337;21101094552;"Music Educators Journal";journal;"00274321, 19450087";"SAGE Publications Inc.";No;No;0,394;Q1;31;39;117;697;79;71;0,54;17,87;48,78;0;United States;Northern America;"SAGE Publications Inc.";"1934-2026";"Music (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +14338;21101039406;"Nakhara: Journal of Environmental Design and Planning";journal;"26512416, 26729016";"Chulalongkorn University - Faculty of Architecture";No;No;0,394;Q1;9;24;70;1247;140;70;1,86;51,96;46,67;0;Thailand;Asiatic Region;"Chulalongkorn University - Faculty of Architecture";"2019-2026";"Architecture (Q1); Conservation (Q1); Visual Arts and Performing Arts (Q1); Nature and Landscape Conservation (Q2); Urban Studies (Q2); Management, Monitoring, Policy and Law (Q3)";"Arts and Humanities; Engineering; Environmental Science; Social Sciences" +14339;21100847371;"Advances in Nano Research";journal;"2287237X, 22872388";"Techno-Press";No;No;0,394;Q2;45;47;286;3208;738;286;3,02;68,26;21,62;0;South Korea;Asiatic Region;"Techno-Press";"2017-2025";"Ceramics and Composites (Q2); Mechanical Engineering (Q2); Atomic and Molecular Physics, and Optics (Q3); Biotechnology (Q3); Catalysis (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Fluid Flow and Transfer Processes (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science; Physics and Astronomy" +14340;21100915694;"Bulletin of Irkutsk State University, Series Mathematics";journal;"25418785, 19977670";"Irkutsk State University";Yes;Yes;0,394;Q2;11;45;111;835;77;111;0,68;18,56;26,25;0;Russian Federation;Eastern Europe;"Irkutsk State University";"2019-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +14341;16396;"Chemical Engineering and Technology";journal;"09307516, 15214125";"Wiley-VCH Verlag";No;No;0,394;Q2;104;177;721;8371;1539;705;2,20;47,29;30,17;0;Germany;Western Europe;"Wiley-VCH Verlag";"1987-2026";"Industrial and Manufacturing Engineering (Q2); Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry; Engineering" +14342;5800207390;"Clinical Supervisor";journal;"07325223, 1545231X";"Routledge";No;No;0,394;Q2;37;25;46;1266;81;36;1,88;50,64;69,44;0;United States;Northern America;"Routledge";"1983-2026";"Education (Q2); Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology; Social Sciences" +14343;13560;"Ecological Psychology";journal;"15326969, 10407413";"Routledge";No;No;0,394;Q2;57;22;36;1601;51;32;1,32;72,77;30,36;0;United States;Northern America;"Routledge";"1989-2026";"Computer Science (miscellaneous) (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Experimental and Cognitive Psychology (Q3); Social Psychology (Q3)";"Agricultural and Biological Sciences; Computer Science; Psychology" +14344;21100215706;"International Journal of Doctoral Studies";journal;"15568873, 15568881";"Informing Science Institute";Yes;No;0,394;Q2;43;18;52;1307;91;52;1,50;72,61;44,90;1;United States;Northern America;"Informing Science Institute";"2010-2025";"Education (Q2)";"Social Sciences" +14345;21100906923;"International Journal of Online and Biomedical Engineering";journal;"26268493";"";Yes;No;0,394;Q2;32;139;517;5140;1370;517;2,79;36,98;25,71;0;Germany;Western Europe;"";"2019-2026";"Engineering (miscellaneous) (Q2); Biomedical Engineering (Q3)";"Engineering" +14346;4100151711;"Journal of Hospice and Palliative Nursing";journal;"15222179, 15390705";"Lippincott Williams and Wilkins Ltd.";No;No;0,394;Q2;36;94;240;2468;295;226;0,98;26,26;82,24;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1999-2026";"Advanced and Specialized Nursing (Q2); Community and Home Care (Q2)";"Nursing" +14347;16298;"Journal of Irrigation and Drainage Engineering - ASCE";journal;"07339437, 19434774";"American Society of Civil Engineers (ASCE)";No;No;0,394;Q2;91;62;227;2907;341;164;1,32;46,89;20,85;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1982-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Civil and Structural Engineering (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Engineering; Environmental Science" +14348;19421;"Journal of Technology in Human Services";journal;"15228991, 15228835";"Routledge";No;No;0,394;Q2;41;29;50;1567;103;50;1,74;54,03;65,71;0;United States;Northern America;"Routledge";"1996-2026";"Computer Networks and Communications (Q2); Social Sciences (miscellaneous) (Q2); Health (social science) (Q3)";"Computer Science; Social Sciences" +14349;21101309790;"Proceedings of DRS";book series;"23983132";"Design Research Society";No;No;0,394;Q2;12;0;641;0;370;1;0,37;0,00;0,00;0;United Kingdom;Western Europe;"Design Research Society";"2022, 2024";"Multidisciplinary (Q2)";"Multidisciplinary" +14350;21101172929;"Advanced Journal of Chemistry, Section A";journal;"26455676, 26457768";"Sami Publishing Company";No;No;0,394;Q3;24;141;117;5629;528;117;4,89;39,92;42,78;0;France;Western Europe;"Sami Publishing Company";"2019-2026";"Chemical Engineering (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q3)";"Chemical Engineering; Chemistry" +14351;21101096403;"Androgens";journal;"26894653";"Mary Ann Liebert Inc.";Yes;No;0,394;Q3;11;0;30;0;50;27;0,00;0,00;0,00;0;United States;Northern America;"Mary Ann Liebert Inc.";"2020-2022";"Reproductive Medicine (Q3); Urology (Q3); Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +14352;21100304268;"Asian Journal of Organic Chemistry";journal;"21935815, 21935807";"John Wiley and Sons Inc";No;No;0,394;Q3;69;604;1011;39533;2302;1007;2,20;65,45;33,00;0;Germany;Western Europe;"John Wiley and Sons Inc";"2012-2026";"Organic Chemistry (Q3)";"Chemistry" +14353;14000154941;"Basic Income Studies";journal;"19320183, 21946094";"Walter de Gruyter GmbH";No;No;0,394;Q3;17;21;31;1200;45;31;0,77;57,14;32,50;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2006, 2009-2011, 2013-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +14354;21100894206;"Civil and Environmental Engineering";journal;"13365835, 21996512";"Sciendo";Yes;No;0,394;Q3;15;153;233;5206;500;233;2,39;34,03;26,01;0;Germany;Western Europe;"Sciendo";"2018-2026";"Civil and Structural Engineering (Q3); Environmental Engineering (Q3)";"Engineering; Environmental Science" +14355;19700175244;"Current Radiopharmaceuticals";journal;"18744710, 18744729";"KeAi Communications Co.";No;No;0,394;Q3;37;27;113;1496;211;106;2,17;55,41;46,24;0;United Arab Emirates;Middle East;"KeAi Communications Co.";"2009-2026";"Pharmacology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +14356;21101188859;"International Journal of Alcohol and Drug Research";journal;"19257066";"Kettil Bruun Society for Social and Epidemiological Research on Alcohol";Yes;No;0,394;Q3;6;12;41;412;44;32;1,14;34,33;55,38;0;Norway;Western Europe;"Kettil Bruun Society for Social and Epidemiological Research on Alcohol";"2020-2025";"Epidemiology (Q3); Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +14357;21101044878;"Minerva Cardiology and Angiology";journal;"27245683, 27245772";"Edizioni Minerva Medica S.p.A.";No;No;0,394;Q3;31;86;249;3468;281;207;1,24;40,33;37,63;0;Italy;Western Europe;"Edizioni Minerva Medica S.p.A.";"2021-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +14358;20119;"Oilfield Chemistry";journal;"10004092";"China International Book Trading Corp. (Guoji Shudian)";No;No;0,394;Q3;15;73;330;1848;392;330;1,28;25,32;33,07;0;China;Asiatic Region;"China International Book Trading Corp. (Guoji Shudian)";"1996-2025";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3)";"Chemical Engineering; Chemistry; Energy" +14359;21100873487;"Peptide Science";journal;"24758817";"John Wiley & Sons Inc.";No;No;0,394;Q3;23;32;88;1831;167;86;2,14;57,22;38,35;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2018-2026";"Biochemistry (Q3); Biomaterials (Q3); Biophysics (Q3); Organic Chemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science" +14360;14939;"Proceedings of the IEEE VLSI Test Symposium";conference and proceedings;"23751053";"IEEE Computer Society";No;No;0,394;-;61;59;146;1470;196;140;1,55;24,92;24,24;0;United States;Northern America;"IEEE Computer Society";"1991-1992, 1994-2025";"Computer Science Applications; Electrical and Electronic Engineering";"Computer Science; Engineering" +14361;21101046202;"Historia i Swiat";journal;"29566436, 22992464";"Department of History, University of Natural Sciences and Humanities in Siedlce";No;No;0,393;Q1;5;24;85;894;58;85;0,78;37,25;33,33;0;Poland;Eastern Europe;"Department of History, University of Natural Sciences and Humanities in Siedlce";"2019-2025";"History (Q1)";"Arts and Humanities" +14362;21100886544;"Journal of Contemporary East Asia Studies";journal;"24761028, 24761036";"Routledge";Yes;No;0,393;Q1;18;2;57;80;110;54;1,87;40,00;33,33;0;United Kingdom;Western Europe;"Routledge";"2017-2026";"Cultural Studies (Q1); Development (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14363;17900156739;"Journal of Eastern African Studies";journal;"17531055, 17531063";"Routledge";No;No;0,393;Q1;44;36;96;1692;133;92;1,14;47,00;36,17;0;United Kingdom;Western Europe;"Routledge";"2009-2026";"Anthropology (Q1); Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +14364;27636;"Cartographic Perspectives";journal;"10489053";"NACIS (North American Cartographic Information Society)";No;No;0,393;Q2;21;26;32;627;34;23;0,55;24,12;48,78;0;United States;Northern America;"NACIS (North American Cartographic Information Society)";"1990-1992, 1996, 2005-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science" +14365;27647;"Dimensions of Critical Care Nursing";journal;"07304625, 15388646";"Lippincott Williams and Wilkins Ltd.";No;No;0,393;Q2;40;58;165;1336;216;138;1,15;23,03;74,57;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1982-2026";"Critical Care Nursing (Q2); Emergency Nursing (Q2)";"Nursing" +14366;5000154609;"Foundations and Trends in Web Science";journal;"15550788, 1555077X";"Now Publishers Inc";No;No;0,393;Q2;10;0;2;0;5;2;0,00;0,00;0,00;0;United States;Northern America;"Now Publishers Inc";"2006, 2010-2012, 2014, 2016-2017, 2020, 2022";"Computer Networks and Communications (Q2)";"Computer Science" +14367;70730;"Geological Quarterly";journal;"16417291";"Polish Geological Institute";No;No;0,393;Q2;49;71;140;5174;162;137;1,23;72,87;31,25;0;Poland;Eastern Europe;"Polish Geological Institute";"2000-2025";"Geology (Q2)";"Earth and Planetary Sciences" +14368;22822;"International Forestry Review";journal;"14655489";"Commonwealth Forestry Association";No;No;0,393;Q2;62;25;122;1906;208;122;1,56;76,24;32,18;0;United Kingdom;Western Europe;"Commonwealth Forestry Association";"1999-2025";"Ecology (Q2); Forestry (Q2); Geography, Planning and Development (Q2)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +14369;21101142610;"International Journal of Advanced Nuclear Reactor Design and Technology";journal;"24686050";"KeAi Communications Co.";Yes;No;0,393;Q2;12;58;77;1113;116;77;1,54;19,19;31,85;0;China;Asiatic Region;"KeAi Communications Co.";"2019-2026";"Nuclear Energy and Engineering (Q2)";"Energy" +14370;21100397309;"Journal of Chinese Economic and Foreign Trade Studies";journal;"17544416, 17544408";"Emerald Publishing";No;No;0,393;Q2;21;26;44;1784;117;41;2,28;68,62;38,71;0;United Kingdom;Western Europe;"Emerald Publishing";"2010-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business and International Management (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +14371;21100829274;"Journal of International Studies";journal;"20718330, 23063483";"Centre of Sociological Research";Yes;Yes;0,393;Q2;39;59;179;3455;543;178;3,52;58,56;54,07;0;Poland;Eastern Europe;"Centre of Sociological Research";"2008-2025";"Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Business and International Management (Q3); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +14372;19700177122;"Journal of Primary Health Care";journal;"11726164, 11726156";"CSIRO Publishing";Yes;Yes;0,393;Q2;30;43;216;314;206;183;1,03;7,30;65,28;0;Australia;Pacific Region;"CSIRO Publishing";"2009-2025";"Family Practice (Q2); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +14373;25674;"Lecture Notes in Computer Science";book series;"03029743, 16113349";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,393;Q2;535;23082;58607;674907;98967;54363;1,21;29,24;28,88;20;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1973-2026";"Computer Science (miscellaneous) (Q2); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +14374;19100;"Morphologie";journal;"12860115";"Elsevier Masson s.r.l.";No;No;0,393;Q2;29;50;147;1618;238;131;1,62;32,36;37,50;0;France;Western Europe;"Elsevier Masson s.r.l.";"1997-2026";"Anatomy (Q2)";"Medicine" +14375;21100310032;"OCL - Oilseeds and Fats, Crops and Lipids";journal;"22726977, 22576614";"EDP Sciences";Yes;Yes;0,393;Q2;43;37;99;2112;225;96;1,63;57,08;41,13;0;France;Western Europe;"EDP Sciences";"2013-2026";"Agronomy and Crop Science (Q2); Food Science (Q2); Biochemistry (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +14376;15738;"Pediatric Hematology and Oncology";journal;"08880018, 15210669";"Taylor and Francis Ltd.";No;No;0,393;Q2;52;35;205;1124;229;171;1,12;32,11;50,27;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2026";"Pediatrics, Perinatology and Child Health (Q2); Hematology (Q3); Oncology (Q3)";"Medicine" +14377;29122;"Physica Scripta";journal;"00318949, 14024896";"Institute of Physics";No;No;0,393;Q2;94;3029;7217;139899;18651;7209;2,60;46,19;30,59;0;United Kingdom;Western Europe;"Institute of Physics";"1970-2025";"Physics and Astronomy (miscellaneous) (Q2); Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Mathematical Physics (Q3)";"Mathematics; Physics and Astronomy" +14378;20407;"Proceedings of the Institution of Mechanical Engineers, Part C: Journal of Mechanical Engineering Science";journal;"20412983, 09544062";"SAGE Publications Ltd";No;No;0,393;Q2;81;705;2016;28186;4877;2006;2,34;39,98;23,17;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1983-2026";"Mechanical Engineering (Q2)";"Engineering" +14379;20671;"Vascular";journal;"1708539X, 17085381";"SAGE Publications Ltd";No;No;0,393;Q2;62;234;539;5770;629;519;0,99;24,66;26,81;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1993-2026";"Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +14380;24678;"Crystallography Reviews";journal;"0889311X, 14763508";"Taylor and Francis Ltd.";No;No;0,393;Q3;37;6;35;673;57;24;1,42;112,17;27,78;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-1996, 1998-2000, 2002-2026";"Biochemistry (Q3); Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Physics and Astronomy" +14381;21100396040;"Dementia and Geriatric Cognitive Disorders Extra";journal;"16645464";"S. Karger AG";Yes;No;0,393;Q3;34;15;39;594;63;39;1,53;39,60;47,44;0;Switzerland;Western Europe;"S. Karger AG";"2011, 2015-2026";"Psychiatry and Mental Health (Q3); Cognitive Neuroscience (Q4)";"Medicine; Neuroscience" +14382;21100911339;"Energy Harvesting and Systems";journal;"23298774, 23298766";"Walter de Gruyter GmbH";No;No;0,393;Q3;24;4;109;268;353;109;3,40;67,00;42,86;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2014-2025";"Electrical and Electronic Engineering (Q3); Electrochemistry (Q3); Energy Engineering and Power Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Chemistry; Energy; Engineering" +14383;26527;"Fundamenta Mathematicae";journal;"17306329, 00162736";"Institute of Mathematics. Polish Academy of Sciences";No;No;0,393;Q3;41;40;128;870;58;127;0,55;21,75;21,54;0;Poland;Eastern Europe;"Institute of Mathematics. Polish Academy of Sciences";"1989-1991, 1994, 1996-2025";"Algebra and Number Theory (Q3)";"Mathematics" +14384;25001;"Holzforschung";journal;"00183830, 1437434X";"Walter de Gruyter GmbH";No;No;0,393;Q3;92;64;232;2850;543;231;2,16;44,53;33,33;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1947-2026";"Biomaterials (Q3)";"Materials Science" +14385;21100853503;"Journal of Cardiovascular and Thoracic Research";journal;"20086830, 20085117";"Tabriz University of Medical Sciences";Yes;Yes;0,393;Q3;19;43;130;1225;178;124;1,44;28,49;36,67;0;Iran;Middle East;"Tabriz University of Medical Sciences";"2016, 2018-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +14386;21100924770;"Journal of Elliptic and Parabolic Equations";journal;"22969020, 22969039";"Springer International Publishing";No;No;0,393;Q3;16;117;160;3222;162;160;0,91;27,54;26,24;0;Switzerland;Western Europe;"Springer International Publishing";"2015-2026";"Analysis (Q3); Applied Mathematics (Q3); Numerical Analysis (Q3)";"Mathematics" +14387;16709;"Journal of Forensic Psychiatry and Psychology";journal;"14789957, 14789949";"Routledge";No;No;0,393;Q3;58;57;138;3046;179;137;1,23;53,44;62,32;1;United Kingdom;Western Europe;"Routledge";"2003-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +14388;21101039083;"Nonautonomous Dynamical Systems";journal;"23530626";"Walter de Gruyter GmbH";Yes;No;0,393;Q3;13;0;37;0;54;37;0,94;0,00;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2014-2024";"Analysis (Q3); Applied Mathematics (Q3); Numerical Analysis (Q3); Statistics and Probability (Q3)";"Mathematics" +14389;4000148812;"Reumatologia Clinica";journal;"1699258X, 18851398";"Ediciones Doyma, S.L.";No;No;0,393;Q3;39;86;334;2016;396;279;1,31;23,44;53,20;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2005-2026";"Rheumatology (Q3)";"Medicine" +14390;5100155104;"Sensing and Imaging";journal;"15572072, 15572064";"Springer";No;No;0,393;Q3;32;166;151;8177;466;151;3,44;49,26;34,67;0;United States;Northern America;"Springer";"2006-2026";"Electrical and Electronic Engineering (Q3); Instrumentation (Q3)";"Engineering; Physics and Astronomy" +14391;20227;"Turkish Journal of Medical Sciences";journal;"13000144, 13036165";"TUBITAK";No;No;0,393;Q3;47;182;614;6314;918;597;1,45;34,69;46,63;0;Turkey;Middle East;"TUBITAK";"1994-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +14392;144684;"Proceedings - International Conference on Image Processing, ICIP";conference and proceedings;"15224880";"IEEE Computer Society";No;No;0,393;-;134;486;2171;11429;3897;2162;1,51;23,52;24,27;0;United States;Northern America;"IEEE Computer Society";"1994, 1997, 1999, 2003-2012, 2015-2025";"Computer Networks and Communications; Computer Vision and Pattern Recognition; Engineering (miscellaneous); Information Systems; Signal Processing; Software";"Computer Science; Engineering" +14393;26288;"Journal of Latin American Studies";journal;"0022216X, 1469767X";"Cambridge University Press";No;No;0,392;Q1;56;15;75;1721;87;75;1,20;114,73;36,84;0;United Kingdom;Western Europe;"Cambridge University Press";"1969-2026";"Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +14394;21100285419;"Expert Opinion on Orphan Drugs";journal;"21678707";"Taylor and Francis Ltd.";No;No;0,392;Q2;30;0;16;0;41;14;4,75;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2024";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Health Policy (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +14395;29231;"Forschung im Ingenieurwesen/Engineering Research";journal;"00157899, 14340860";"Springer Verlag";No;No;0,392;Q2;30;163;235;5428;480;231;1,92;33,30;13,27;0;Germany;Western Europe;"Springer Verlag";"1930-1931, 1964-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +14396;21101041537;"Indian Journal of Human Development";journal;"09737030, 2456480X";"Sage Publications India Pvt. Ltd";No;No;0,392;Q2;17;10;92;329;93;81;0,95;32,90;53,85;1;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2007-2026";"Social Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3); Human Factors and Ergonomics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +14397;15532;"International Sociology";journal;"02685809, 14617242";"SAGE Publications Ltd";No;No;0,392;Q2;75;46;119;2201;221;111;2,02;47,85;48,78;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-2026";"Sociology and Political Science (Q2)";"Social Sciences" +14398;21100274252;"Journal of Applied Geodesy";journal;"18629016, 18629024";"Walter de Gruyter GmbH";No;No;0,392;Q2;28;76;122;2829;188;120;1,65;37,22;22,61;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2007-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Modeling and Simulation (Q3)";"Earth and Planetary Sciences; Engineering; Mathematics" +14399;4700152730;"Journal of Community Practice";journal;"15433706, 10705422";"Routledge";No;No;0,392;Q2;43;29;89;1053;146;78;1,36;36,31;71,05;0;United States;Northern America;"Routledge";"1994-2025";"Development (Q2); Public Administration (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14400;21100431319;"Journal of Crop Science and Biotechnology";journal;"20058276, 19759479";"Springer";No;No;0,392;Q2;30;62;148;3318;313;148;2,32;53,52;36,08;0;Singapore;Asiatic Region;"Springer";"2009-2010, 2012, 2014-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2); Biotechnology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +14401;19200157113;"Turkish Journal of Fisheries and Aquatic Sciences";journal;"13032712";"Central Fisheries Research Inst";Yes;No;0,392;Q2;47;60;201;3318;411;201;1,73;55,30;39,57;0;Turkey;Middle East;"Central Fisheries Research Inst";"2008-2026";"Animal Science and Zoology (Q2); Aquatic Science (Q2)";"Agricultural and Biological Sciences" +14402;24055;"Ursus";journal;"15376176";"International Association for Bear Research and Management";No;No;0,392;Q2;51;14;53;877;58;53;1,22;62,64;37,10;0;United States;Northern America;"International Association for Bear Research and Management";"1998-2001, 2003-2026";"Animal Science and Zoology (Q2); Nature and Landscape Conservation (Q2); Management, Monitoring, Policy and Law (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14403;21100882155;"Veterinary Research Forum";journal;"20088140";"Urmia University - Faculty of Veterinary Medicine";Yes;No;0,392;Q2;20;96;283;3250;489;282;1,62;33,85;32,68;0;Iran;Middle East;"Urmia University - Faculty of Veterinary Medicine";"2017-2025";"Veterinary (miscellaneous) (Q2)";"Veterinary" +14404;21101290952;"Zoonotic Diseases";journal;"28130227";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,392;Q2;8;36;77;2323;107;74;1,37;64,53;43,51;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Veterinary (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Immunology and Microbiology; Medicine; Veterinary" +14405;12088;"Basic and Applied Social Psychology";journal;"01973533, 15324834";"Routledge";No;No;0,392;Q3;88;39;56;2477;102;54;1,43;63,51;50,88;0;United Kingdom;Western Europe;"Routledge";"1980-2026";"Applied Psychology (Q3); Social Psychology (Q3)";"Psychology" +14406;21100208035;"International Journal of Forensic Mental Health";journal;"19329903, 14999013";"SAGE Publications Ltd";No;No;0,392;Q3;47;24;94;1225;171;93;1,49;51,04;68,48;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2026";"Pathology and Forensic Medicine (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +14407;27215;"Journal of Artificial Organs";journal;"14347229, 16190904";"Springer";No;No;0,392;Q3;47;77;163;2575;232;161;1,44;33,44;22,77;0;Japan;Asiatic Region;"Springer";"1998-2026";"Biomaterials (Q3); Biomedical Engineering (Q3); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Engineering; Materials Science; Medicine" +14408;130090;"Journal of Electronic Commerce in Organizations";journal;"15392937, 15392929";"IGI Global";No;No;0,392;Q3;31;6;31;347;77;31;1,25;57,83;53,33;0;United States;Northern America;"IGI Global";"2003-2026";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Marketing (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Computer Science" +14409;29278;"Journal of Occupational and Environmental Hygiene";journal;"15459624, 15459632";"Taylor and Francis Ltd.";No;No;0,392;Q3;92;103;233;4305;336;215;1,44;41,80;46,28;11;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +14410;21100943513;"Journal of Operation and Automation in Power Engineering";journal;"24234567, 23224576";"University of Mohaghegh Ardabili, Faculty of Electrical Engineering";Yes;Yes;0,392;Q3;15;40;113;1423;248;113;2,27;35,58;14,17;0;Iran;Middle East;"University of Mohaghegh Ardabili, Faculty of Electrical Engineering";"2019-2026";"Applied Mathematics (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Information Systems (Q3)";"Computer Science; Energy; Engineering; Mathematics" +14411;24705;"Liquid Crystals";journal;"02678292, 13665855";"Taylor and Francis Ltd.";No;No;0,392;Q3;87;132;596;5996;1170;586;1,84;45,42;33,80;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2026";"Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +14412;19900193846;"MSMR";journal;"21580111, 21528217";"Armed Forces Health Surveillance Center";No;No;0,392;Q3;22;55;131;805;127;75;0,95;14,64;60,00;0;United States;Northern America;"Armed Forces Health Surveillance Center";"2011-2016, 2019-2025";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +14413;21458;"Pure and Applied Chemistry";journal;"00334545, 13653075";"Walter de Gruyter GmbH";No;No;0,392;Q3;171;157;308;9533;673;291;1,59;60,72;37,55;0;United States;Northern America;"Walter de Gruyter GmbH";"1960-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +14414;20938;"Scanning";journal;"19328745, 01610457";"John Wiley and Sons Inc";Yes;No;0,392;Q3;60;0;37;0;92;37;1,73;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Inc";"1978-1981, 1983-2023";"Atomic and Molecular Physics, and Optics (Q3); Instrumentation (Q3)";"Physics and Astronomy" +14415;26087;"Transfusion Medicine";journal;"09587578, 13653148";"Wiley-Blackwell Publishing Ltd";No;No;0,392;Q3;69;94;220;2670;243;176;1,10;28,40;46,90;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1991-2026";"Hematology (Q3)";"Medicine" +14416;21101131211;"Proceedings - IEEE International Conference on Edge Computing";conference and proceedings;"27679918, 2767990X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,392;-;11;27;114;742;171;92;1,64;27,48;22,67;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2021-2025";"Artificial Intelligence; Computer Networks and Communications; Hardware and Architecture";"Computer Science" +14417;27099;"Acta Geographica Slovenica";journal;"15816613, 15818314";"Zalozba ZRC";Yes;Yes;0,391;Q1;30;13;59;742;96;59;1,56;57,08;51,61;0;Slovenia;Eastern Europe;"Zalozba ZRC";"2003-2025";"Cultural Studies (Q1); Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Earth and Planetary Sciences; Social Sciences" +14418;21100937443;"International Journal of Language Testing";journal;"24765880";"Tabaran Institute of Higher Education (Iran Ministry of Sciences)";Yes;No;0,391;Q1;11;21;69;1219;111;69;1,76;58,05;45,61;0;Iran;Middle East;"Tabaran Institute of Higher Education (Iran Ministry of Sciences)";"2016-2025";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +14419;5800207681;"Phonology";journal;"14698188, 09526757";"Cambridge University Press";No;No;0,391;Q1;56;20;30;1601;19;30;0,50;80,05;24,14;0;United Kingdom;Western Europe;"Cambridge University Press";"1984, 1988-2026";"Linguistics and Language (Q1)";"Social Sciences" +14420;53958;"Agrekon";journal;"03031853, 20780400";"Taylor and Francis Ltd.";No;No;0,391;Q2;38;25;71;1392;126;68;1,95;55,68;29,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1962-2026";"Agronomy and Crop Science (Q2); Geography, Planning and Development (Q2); Economics and Econometrics (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Social Sciences" +14421;5700162393;"India Review";journal;"14736489, 15573036";"Routledge";No;No;0,391;Q2;19;26;82;1919;77;79;1,00;73,81;25,93;0;United Kingdom;Western Europe;"Routledge";"2010-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14422;21101283227;"Justice, Opportunities, and Rehabilitation";journal;"29979668";"Routledge";No;No;0,391;Q2;51;22;80;1143;131;80;1,50;51,95;55,41;0;United Kingdom;Western Europe;"Routledge";"2025-2026";"Law (Q2); Rehabilitation (Q2)";"Medicine; Social Sciences" +14423;18341;"Magyar Allatorvosok Lapja";journal;"0025004X";"Herman Otto Intezet";No;No;0,391;Q2;17;50;196;2391;253;179;1,57;47,82;48,41;0;Hungary;Eastern Europe;"Herman Otto Intezet";"1950, 1996-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +14424;21101120611;"Open Research Europe";journal;"27325121";"F1000 Research Ltd";Yes;Yes;0,391;Q2;17;221;464;11864;899;457;1,71;53,68;47,11;0;United Kingdom;Western Europe;"F1000 Research Ltd";"2021-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +14425;24522;"Zoo Biology";journal;"10982361, 07333188";"Wiley-Liss Inc.";No;No;0,391;Q2;73;76;204;3840;352;199;1,75;50,53;56,13;0;United States;Northern America;"Wiley-Liss Inc.";"1982-2026";"Animal Science and Zoology (Q2); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Medicine" +14426;300147009;"Acta Neuropsychologica";journal;"17307503";"MEDSPORTPRESS Publishing House";No;No;0,391;Q3;16;33;101;1360;124;101;1,41;41,21;49,44;0;Poland;Eastern Europe;"MEDSPORTPRESS Publishing House";"2005-2025";"Applied Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)";"Psychology" +14427;12100155717;"British Journal of Visual Impairment";journal;"17445809, 02646196";"SAGE Publications Inc.";No;No;0,391;Q3;32;120;188;4853;329;183;1,52;40,44;55,59;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1983-2026";"Ophthalmology (Q3)";"Medicine" +14428;21101021076;"Current Behavioral Neuroscience Reports";journal;"21962979";"Springer International Publishing AG";No;No;0,391;Q3;36;27;44;3114;72;44;1,56;115,33;51,35;0;United States;Northern America;"Springer International Publishing AG";"2014-2026";"Public Health, Environmental and Occupational Health (Q3); Behavioral Neuroscience (Q4)";"Medicine; Neuroscience" +14429;19838;"Deutsche Zeitschrift fur Sportmedizin";journal;"03445925, 25105264";"Dynamic Media Sales Verlag";Yes;Yes;0,391;Q3;25;30;108;750;131;83;1,00;25,00;36,14;0;Germany;Western Europe;"Dynamic Media Sales Verlag";"1996-2025";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)";"Health Professions; Medicine" +14430;25878;"Differential Geometry and its Application";journal;"18726984, 09262245";"Elsevier B.V.";No;No;0,391;Q3;42;75;234;1904;168;234;0,70;25,39;25,78;0;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Analysis (Q3); Computational Theory and Mathematics (Q3); Geometry and Topology (Q3)";"Computer Science; Mathematics" +14431;21100395701;"Journal of Complex Networks";journal;"20511310, 20511329";"Oxford University Press";No;No;0,391;Q3;36;57;163;2528;273;163;1,94;44,35;18,13;0;United States;Northern America;"Oxford University Press";"2013-2026";"Applied Mathematics (Q3); Computational Mathematics (Q3); Computer Networks and Communications (Q3); Control and Optimization (Q3); Management Science and Operations Research (Q3)";"Computer Science; Decision Sciences; Mathematics" +14432;21101019609;"Journal of Electrochemical Science and Engineering";journal;"18479286";"International Association of Physical Chemists";Yes;Yes;0,391;Q3;26;67;224;2893;685;216;3,36;43,18;40,64;0;Croatia;Eastern Europe;"International Association of Physical Chemists";"2012-2025";"Chemical Engineering (miscellaneous) (Q3); Colloid and Surface Chemistry (Q3); Electrochemistry (Q3); Materials Chemistry (Q3)";"Chemical Engineering; Chemistry; Materials Science" +14433;25882;"Journal of Heterocyclic Chemistry";journal;"0022152X, 19435193";"John Wiley and Sons Inc";No;No;0,391;Q3;71;150;515;7973;1521;515;3,15;53,15;37,19;0;United States;Northern America;"John Wiley and Sons Inc";"1965-2026";"Organic Chemistry (Q3)";"Chemistry" +14434;21100206268;"Journal of Photonics for Energy";journal;"19477988";"SPIE";No;No;0,391;Q3;37;17;70;643;150;66;2,35;37,82;25,00;0;United States;Northern America;"SPIE";"2011-2025";"Atomic and Molecular Physics, and Optics (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Physics and Astronomy" +14435;17700156704;"Knowledge and Process Management";journal;"10991441, 10924604";"John Wiley and Sons Ltd";No;No;0,391;Q3;57;19;92;1707;256;92;2,69;89,84;26,23;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1997-2026";"Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +14436;12100157001;"Nursing Standard";journal;"20479018, 00296570";"RCN Publishing Company Ltd.";No;No;0,391;Q3;56;55;130;0;262;130;1,06;0,00;76,32;0;United Kingdom;Western Europe;"RCN Publishing Company Ltd.";"1982-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +14437;12530;"Oncologie";journal;"12923818, 17652839";"Walter de Gruyter GmbH";Yes;No;0,391;Q3;15;85;212;4843;419;209;1,97;56,98;43,94;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1999-2026";"Oncology (Q3)";"Medicine" +14438;21101079251;"Recent Advances in Inflammation and Allergy Drug Discovery";journal;"27722716, 27722708";"Bentham Science Publishers";No;No;0,391;Q3;40;57;48;4698;81;40;1,76;82,42;44,81;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2021-2025";"Drug Discovery (Q3); Immunology and Allergy (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +14439;21101089135;"Sexual Health and Compulsivity";journal;"26929996";"Routledge";No;No;0,391;Q3;53;22;49;1263;98;49;1,89;57,41;51,52;0;United Kingdom;Western Europe;"Routledge";"2021-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +14440;21100291859;"IEEE International Conference on Cloud Computing, CLOUD";conference and proceedings;"21596182, 21596190";"IEEE Computer Society";No;No;0,391;-;44;53;205;1692;368;185;1,89;31,92;20,23;0;United States;Northern America;"IEEE Computer Society";"2013-2014, 2016-2025";"Artificial Intelligence; Information Systems; Software";"Computer Science" +14441;26669;"Proceedings - IEEE International Conference on Computer Design: VLSI in Computers and Processors";conference and proceedings;"10636404";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,391;-;54;124;303;3314;494;294;1,50;26,73;26,85;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1988-1991, 1993-2005, 2009-2012, 2020-2024";"Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering" +14442;17776;"Equine Veterinary Education";journal;"20423292, 09577734";"John Wiley & Sons Inc.";No;No;0,390;Q1;43;196;514;5092;492;388;0,88;25,98;56,12;0;United States;Northern America;"John Wiley & Sons Inc.";"1989-2026";"Equine (Q1)";"Veterinary" +14443;5800207545;"Slovenski Jezik";journal;"15811271, 14082616";"Zalozba ZRC";Yes;Yes;0,390;Q1;5;8;28;289;15;27;0,72;36,13;61,54;0;Slovenia;Eastern Europe;"Zalozba ZRC";"2015, 2017, 2019, 2021-2025";"Linguistics and Language (Q1)";"Social Sciences" +14444;19808;"Adansonia";journal;"12808571";"Museum National d'Histoire Naturelle";Yes;Yes;0,390;Q2;18;19;72;912;56;72;0,82;48,00;32,69;0;France;Western Europe;"Museum National d'Histoire Naturelle";"2004-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +14445;14115;"Canadian Journal of Information and Library Science";journal;"19207239, 1195096X";"Canadian Association for Information Science";No;No;0,390;Q2;23;0;6;0;13;6;0,00;0,00;0,00;0;Canada;Northern America;"Canadian Association for Information Science";"1993-2022";"Library and Information Sciences (Q2); Information Systems (Q3)";"Computer Science; Social Sciences" +14446;21100773821;"Computer Methods in Biomechanics and Biomedical Engineering: Imaging and Visualization";journal;"21681163, 21681171";"Taylor and Francis Ltd.";Yes;No;0,390;Q2;33;32;377;1376;1042;374;2,98;43,00;32,12;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Computational Mechanics (Q2); Biomedical Engineering (Q3); Computer Science Applications (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Computer Science; Engineering; Medicine" +14447;21100900271;"Higher Learning Research Communications";journal;"21576254";"Walden University";Yes;Yes;0,390;Q2;15;18;52;1057;118;49;1,97;58,72;58,97;0;United States;Northern America;"Walden University";"2016, 2018-2025";"Education (Q2)";"Social Sciences" +14448;21100394230;"Horticulture Journal";journal;"21890102, 21890110";"Japanese Society for Horticultural Science";Yes;No;0,390;Q2;47;55;150;2312;240;147;1,50;42,04;21,50;0;Japan;Asiatic Region;"Japanese Society for Horticultural Science";"2015-2026";"Horticulture (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +14449;21100897703;"International Journal of Learning, Teaching and Educational Research";journal;"16942116, 16942493";"Society for Research and Knowledge Management";No;No;0,390;Q2;29;482;940;25422;2161;940;2,39;52,74;46,67;0;Mauritius;Africa;"Society for Research and Knowledge Management";"2017-2026";"Education (Q2)";"Social Sciences" +14450;29018;"International Journal of Modern Physics E";journal;"17936608, 02183013";"World Scientific";No;No;0,390;Q2;62;92;315;4662;355;314;1,25;50,67;23,70;0;Singapore;Asiatic Region;"World Scientific";"1996-2026";"Physics and Astronomy (miscellaneous) (Q2); Nuclear and High Energy Physics (Q3)";"Physics and Astronomy" +14451;5800207391;"Journal of Adult Protection";journal;"14668203";"Emerald Publishing";No;No;0,390;Q2;23;34;81;1058;108;67;1,22;31,12;66,67;0;United Kingdom;Western Europe;"Emerald Publishing";"1999-2026";"Law (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14452;36029;"Journal of Dental Hygiene";journal;"15530205, 1043254X";"";No;No;0,390;Q2;35;43;135;1151;151;110;0,97;26,77;87,50;0;United States;Northern America;"";"1988-2026";"Dental Hygiene (Q2)";"Dentistry" +14453;19700175482;"Plant Ecology and Evolution";journal;"20323913, 20323921";"Societe Royale de Botanique de Belgique";Yes;Yes;0,390;Q2;41;36;85;2065;126;84;1,58;57,36;40,41;0;Belgium;Western Europe;"Societe Royale de Botanique de Belgique";"2010-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +14454;21101052864;"Precision Cancer Medicine";journal;"26172216";"AME Publishing Company";No;No;0,390;Q2;11;1;62;52;57;50;0,91;52,00;37,50;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2018-2025";"Anesthesiology and Pain Medicine (Q2); Surgery (Q2); Oncology (Q3); Oncology (nursing) (Q3); Pharmacology (medical) (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +14455;4400151611;"Tree-Ring Research";journal;"15361098";"Tree Ring Society";No;No;0,390;Q2;30;10;24;321;24;24;1,09;32,10;33,82;0;United States;Northern America;"Tree Ring Society";"2001, 2004-2025";"Forestry (Q2); Geology (Q2); Atmospheric Science (Q3); Paleontology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +14456;12200154703;"Archives of Environmental Protection";journal;"20834772, 20834810";"Polska Akademia Nauk";Yes;No;0,390;Q3;34;55;128;2342;264;128;1,86;42,58;49,04;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2007-2025";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +14457;21859;"Enfermedades Infecciosas y Microbiologia Clinica";journal;"0213005X, 15781852";"Sociedad Espanola de Enfermedades Infecciosas y Microbiologia Clinica";No;No;0,390;Q3;50;183;484;3470;502;406;1,10;18,96;61,47;3;Spain;Western Europe;"Sociedad Espanola de Enfermedades Infecciosas y Microbiologia Clinica";"1989-2026";"Infectious Diseases (Q3); Microbiology (medical) (Q3); Microbiology (Q4)";"Immunology and Microbiology; Medicine" +14458;21100232822;"Environmental and Climate Technologies";journal;"22558837";"Walter de Gruyter GmbH";Yes;No;0,390;Q3;31;72;251;3195;497;251;2,15;44,38;48,86;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2009-2026";"Environmental Science (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science" +14459;19700201172;"Journal of Neurosciences in Rural Practice";journal;"09763147, 09763155";"Scientific Scholar LLC";Yes;No;0,390;Q3;40;139;399;2620;465;331;1,22;18,85;37,44;0;United States;Northern America;"Scientific Scholar LLC";"2010-2025";"Neurology (clinical) (Q3); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience" +14460;18117;"Noropsikiyatri Arsivi";journal;"13094866, 13000667";"Turkish Neuropsychiatric Society";No;No;0,390;Q3;31;64;207;1975;265;190;0,99;30,86;55,39;0;Turkey;Middle East;"Turkish Neuropsychiatric Society";"1973-1974, 1976-1977, 1994-1995, 2009-2025";"Psychiatry and Mental Health (Q3); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience" +14461;13419;"Psychoanalytic Inquiry";journal;"19409133, 07351690";"Taylor and Francis Ltd.";No;No;0,390;Q3;43;153;236;3453;112;59;0,40;22,57;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2026";"Clinical Psychology (Q3)";"Psychology" +14462;19700177308;"Stroke Research and Treatment";journal;"20908105, 20420056";"John Wiley and Sons Ltd";Yes;No;0,390;Q3;49;15;24;660;52;24;2,10;44,00;30,85;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2025";"Neurology (clinical) (Q3)";"Medicine" +14463;19700187702;"Synchrotron Radiation News";journal;"08940886, 19317344";"Taylor and Francis Ltd.";No;No;0,390;Q3;32;46;139;594;154;108;1,09;12,91;26,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2025";"Atomic and Molecular Physics, and Optics (Q3); Nuclear and High Energy Physics (Q3)";"Physics and Astronomy" +14464;19700187626;"Cognitive Neuroscience";journal;"17588928, 17588936";"Routledge";No;No;0,390;Q4;41;42;73;1441;76;43;1,02;34,31;66,67;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Cognitive Neuroscience (Q4)";"Neuroscience" +14465;21101263945;"Language and Health";journal;"29499038";"Elsevier B.V.";Yes;No;0,389;Q1;6;20;32;1111;65;31;2,03;55,55;47,37;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Linguistics and Language (Q1)";"Social Sciences" +14466;21100204110;"Logic and Logical Philosophy";journal;"23009802, 14253305";"Nicolaus Copernicus University";Yes;No;0,389;Q1;15;16;80;581;45;78;0,51;36,31;14,29;0;Poland;Eastern Europe;"Nicolaus Copernicus University";"2011-2025";"Philosophy (Q1)";"Arts and Humanities" +14467;21101156911;"TAPA";journal;"25757199, 25757180";"Johns Hopkins University Press";No;No;0,389;Q1;5;6;54;666;36;43;0,75;111,00;28,57;0;United States;Northern America;"Johns Hopkins University Press";"2016, 2019, 2021-2025";"Classics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +14468;21100788912;"African Journal of Science, Technology, Innovation and Development";journal;"20421338, 20421346";"Taylor and Francis Ltd.";No;No;0,389;Q2;30;78;324;5311;686;323;2,02;68,09;29,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Development (Q2); Civil and Structural Engineering (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3)";"Computer Science; Engineering; Social Sciences" +14469;21100778828;"Agricultural Economics (Czech Republic)";journal;"0139570X, 18059295";"Czech Academy of Agricultural Sciences";Yes;No;0,389;Q2;38;49;144;2217;310;144;1,97;45,24;39,16;0;Czech Republic;Eastern Europe;"Czech Academy of Agricultural Sciences";"2003-2004, 2007-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +14470;24656;"American Mathematical Monthly";journal;"00029890, 19300972";"Taylor and Francis Ltd.";No;No;0,389;Q2;59;114;311;1525;125;193;0,46;13,38;14,71;0;United States;Northern America;"Taylor and Francis Ltd.";"1897, 1922, 1924, 1931, 1939, 1941, 1943, 1953-1957, 1959-1963, 1965-1983, 1988, 1990-1994, 1996-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +14471;21101021225;"Anti-Trafficking Review";journal;"22867511, 22870113";"Global Alliance Against Traffic in Women";Yes;Yes;0,389;Q2;16;21;62;842;92;51;0,92;40,10;88,89;1;Thailand;Asiatic Region;"Global Alliance Against Traffic in Women";"2019-2025";"Law (Q2); Political Science and International Relations (Q2)";"Social Sciences" +14472;21469;"Bird Study";journal;"00063657, 19446705";"Taylor and Francis Ltd.";No;No;0,389;Q2;60;35;81;1923;119;80;1,41;54,94;29,05;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1954-2026";"Nature and Landscape Conservation (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14473;21101060456;"China International Strategy Review";journal;"25245635, 25245627";"Springer";No;No;0,389;Q2;14;18;57;875;98;57;1,46;48,61;18,18;0;Singapore;Asiatic Region;"Springer";"2019-2025";"Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14474;26531;"Comptes Rendus Physique";journal;"18781535, 16310705";"Academie des sciences";Yes;Yes;0,389;Q2;89;44;114;3280;127;109;1,28;74,55;11,24;0;France;Western Europe;"Academie des sciences";"2002-2025";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +14475;27536;"European Journal of Physics";journal;"01430807, 13616404";"Institute of Physics";No;No;0,389;Q2;66;150;450;4004;463;444;1,10;26,69;24,76;0;United Kingdom;Western Europe;"Institute of Physics";"1980-2025";"Education (Q2); Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy; Social Sciences" +14476;21100199778;"FME Transactions";journal;"2406128X, 14512092";"Belgrade University";Yes;Yes;0,389;Q2;34;59;191;1969;346;191;1,84;33,37;22,86;0;Serbia;Eastern Europe;"Belgrade University";"2008-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q3)";"Engineering" +14477;13473;"Home Health Care Services Quarterly";journal;"01621424, 15450856";"Routledge";No;No;0,389;Q2;35;5;56;259;76;56;1,31;51,80;61,54;0;United States;Northern America;"Routledge";"1979-2025";"Community and Home Care (Q2); Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing" +14478;19700201405;"International Journal of Micro Air Vehicles";journal;"17568307, 17568293";"SAGE Publications Inc.";Yes;No;0,389;Q2;33;18;38;637;79;37;2,58;35,39;10,91;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2010-2025";"Aerospace Engineering (Q2)";"Engineering" +14479;21100820608;"International Journal of Veterinary Science";journal;"23043075, 23054360";"Unique Scientific Publishers";No;No;0,389;Q2;22;175;358;7675;1129;358;3,70;43,86;45,68;0;Pakistan;Asiatic Region;"Unique Scientific Publishers";"2017-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +14480;22562;"Journal of Herpetology";journal;"00221511";"Society for the Study of Amphibians and Reptiles";No;No;0,389;Q2;71;23;137;1278;163;137;1,22;55,57;40,22;0;United States;Northern America;"Society for the Study of Amphibians and Reptiles";"1980-1983, 1985-1989, 1991-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14481;21101256424;"Journal of Nuclear Engineering";journal;"26734362";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,389;Q2;12;56;110;2256;203;110;1,96;40,29;22,75;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Engineering (miscellaneous) (Q2); Chemical Engineering (miscellaneous) (Q3)";"Chemical Engineering; Engineering" +14482;21100332424;"Journal of Spatial Information Science";journal;"1948660X";"University of Maine";Yes;Yes;0,389;Q2;27;6;33;253;56;27;1,92;42,17;21,74;0;United States;Northern America;"University of Maine";"2010-2026";"Geography, Planning and Development (Q2); Computers in Earth Sciences (Q3); Information Systems (Q3)";"Computer Science; Earth and Planetary Sciences; Social Sciences" +14483;17522;"Law and Critique";journal;"09578536, 15728617";"Springer Netherlands";No;No;0,389;Q2;29;36;77;2181;103;74;1,36;60,58;34,21;1;Netherlands;Western Europe;"Springer Netherlands";"1990-2002, 2004-2025";"Law (Q2)";"Social Sciences" +14484;3300147704;"Services Marketing Quarterly";journal;"15332977, 15332969";"Taylor and Francis Ltd.";No;No;0,389;Q2;40;27;65;2533;158;65;2,31;93,81;55,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Business, Management and Accounting (miscellaneous) (Q2)";"Business, Management and Accounting" +14485;5600155554;"Southern Communication Journal";journal;"19303203, 1041794X";"Routledge";No;No;0,389;Q2;37;31;96;1676;120;96;1,17;54,06;45,76;0;United Kingdom;Western Europe;"Routledge";"1988-2026";"Communication (Q2)";"Social Sciences" +14486;22194;"Washington Law Review";journal;"00430617";"University of Washington School of Law";No;No;0,389;Q2;32;23;87;2055;66;82;0,61;89,35;50,00;0;United States;Northern America;"University of Washington School of Law";"1973-1974, 1976, 1980, 1982-1983, 1986, 1988, 1990-1992, 1994-2000, 2002-2025";"Law (Q2)";"Social Sciences" +14487;19092;"Acta Parasitologica";journal;"18961851, 12302821";"Springer Science and Business Media Deutschland GmbH";No;No;0,389;Q3;44;236;486;11728;816;485;1,58;49,69;43,07;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1992-1994, 1996-2026";"Parasitology (Q3)";"Immunology and Microbiology" +14488;28048;"Applicable Algebra in Engineering, Communications and Computing";journal;"14320622, 09381279";"Springer Science and Business Media Deutschland GmbH";No;No;0,389;Q3;40;92;140;2674;120;137;0,94;29,07;29,86;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1990-2026";"Algebra and Number Theory (Q3); Applied Mathematics (Q3)";"Mathematics" +14489;12596;"Breast Disease";journal;"08886008, 15581551";"SAGE Publications Ltd";No;No;0,389;Q3;38;5;152;0;204;152;1,54;0,00;55,17;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1987-1996, 1998, 2000-2008, 2010-2025";"Medicine (miscellaneous) (Q3); Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +14490;18520;"Cytopathology";journal;"13652303, 09565507";"Wiley-Blackwell Publishing Ltd";No;No;0,389;Q3;58;103;348;2104;392;300;1,20;20,43;49,88;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1990-2026";"Histology (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)";"Medicine" +14491;21100266597;"ECS Journal of Solid State Science and Technology";journal;"21628777, 21628769";"Electrochemical Society Inc.";No;No;0,389;Q3;82;321;1390;15832;3273;1389;2,50;49,32;28,73;0;United States;Northern America;"Electrochemical Society Inc.";"2012-2025";"Electronic, Optical and Magnetic Materials (Q3)";"Materials Science" +14492;21101174183;"Exploration of Immunology";journal;"27686655";"Open Exploration Publishing Inc";Yes;Yes;0,389;Q3;9;56;146;5097;207;142;1,63;91,02;47,68;0;China;Asiatic Region;"Open Exploration Publishing Inc";"2021-2026";"Immunology and Microbiology (miscellaneous) (Q3); Immunology (Q4); Microbiology (Q4)";"Immunology and Microbiology" +14493;4700152833;"Journal of Convention and Event Tourism";journal;"15470148, 15470156";"Routledge";No;No;0,389;Q3;40;20;68;941;142;64;1,89;47,05;51,43;0;United States;Northern America;"Routledge";"2005-2026";"Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting" +14494;24044;"Journal of Mass Spectrometry";journal;"10969888, 10765174";"Wiley-Blackwell";No;No;0,389;Q3;134;88;220;3537;429;211;2,07;40,19;38,39;0;United States;Northern America;"Wiley-Blackwell";"1995-2026";"Medicine (miscellaneous) (Q3); Spectroscopy (Q3)";"Chemistry; Medicine" +14495;21101023175;"Journal of Water and Environmental Nanotechnology";journal;"24766615, 24767204";"Iranian Environmental Mutagen Society";Yes;Yes;0,389;Q3;16;32;96;2165;250;96;2,52;67,66;33,77;0;Iran;Middle East;"Iranian Environmental Mutagen Society";"2019-2025";"Experimental and Cognitive Psychology (Q3); Materials Science (miscellaneous) (Q3); Social Psychology (Q3); Water Science and Technology (Q3)";"Environmental Science; Materials Science; Psychology" +14496;18400156714;"Journal of Web Engineering";journal;"15409589, 15445976";"";No;No;0,389;Q3;23;64;203;2053;543;196;2,63;32,08;28,49;0;United States;Northern America;"";"2008-2026";"Computer Networks and Communications (Q3); Information Systems (Q3); Software (Q3)";"Computer Science" +14497;19900192339;"Psychiatrikē = Psychiatriki";journal;"11052333";"Hellenike Psychiatrike Hetaireia";No;No;0,389;Q3;26;25;77;0;127;69;1,17;0,00;40,48;0;Greece;Western Europe;"Hellenike Psychiatrike Hetaireia";"2011-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +14498;11700154508;"Ethics in Science and Environmental Politics";journal;"16118014, 18635415";"Inter-Research";Yes;Yes;0,388;Q1;25;9;17;498;35;17;1,00;55,33;40,00;0;Germany;Western Europe;"Inter-Research";"2001-2025";"Philosophy (Q1); Ecology (Q2); Education (Q2); Sociology and Political Science (Q2); Management, Monitoring, Policy and Law (Q3)";"Arts and Humanities; Environmental Science; Social Sciences" +14499;91547;"Journal of Architectural Engineering";journal;"10760431, 19435568";"American Society of Civil Engineers (ASCE)";No;No;0,388;Q1;48;68;186;3570;383;186;2,19;52,50;28,49;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1995-2026";"Architecture (Q1); Visual Arts and Performing Arts (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q3)";"Arts and Humanities; Engineering" +14500;21101060650;"Journal of Second Language Pronunciation";journal;"22151931, 2215194X";"John Benjamins Publishing Company";No;No;0,388;Q1;14;23;63;954;60;63;0,76;41,48;60,98;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2015, 2019-2026";"Linguistics and Language (Q1); Education (Q2)";"Social Sciences" +14501;16100154789;"Temenos";journal;"04971817";"Abo Akademi University";Yes;Yes;0,388;Q1;17;12;36;473;32;31;0,84;39,42;78,57;0;Finland;Western Europe;"Abo Akademi University";"2003, 2005-2008, 2013-2025";"Religious Studies (Q1)";"Arts and Humanities" +14502;16900154706;"Animal Production Science";journal;"18365787, 18360939";"CSIRO Publishing";No;No;0,388;Q2;98;115;473;5755;745;468;1,52;50,04;38,80;0;Australia;Pacific Region;"CSIRO Publishing";"2009-2026";"Animal Science and Zoology (Q2); Food Science (Q3)";"Agricultural and Biological Sciences" +14503;17406;"Canadian Journal of Plant Science";journal;"00084220, 19181833";"Agricultural Institute of Canada";No;No;0,388;Q2;75;116;230;4429;375;229;1,95;38,18;37,40;0;Canada;Northern America;"Agricultural Institute of Canada";"1973-1975, 1977-1980, 1983-1985, 1989-1990, 1992-2026";"Agronomy and Crop Science (Q2); Horticulture (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +14504;17201;"Canadian Public Administration";journal;"00084840, 17547121";"Wiley-Blackwell";No;No;0,388;Q2;35;42;118;1897;194;115;1,55;45,17;47,22;0;United States;Northern America;"Wiley-Blackwell";"1958-2026";"Public Administration (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14505;21101288814;"European Journal of Health Communication";journal;"26735903";"University of Zurich, IKMZ - Department of Communication and Media Research";Yes;No;0,388;Q2;9;18;59;1009;89;56;1,05;56,06;75,51;0;Switzerland;Western Europe;"University of Zurich, IKMZ - Department of Communication and Media Research";"2021-2026";"Communication (Q2); Health (social science) (Q3)";"Social Sciences" +14506;11200153519;"Express Polymer Letters";journal;"1788618X";"BME-PT and GTE";Yes;Yes;0,388;Q2;95;96;288;4349;640;252;2,31;45,30;40,65;0;Hungary;Eastern Europe;"BME-PT and GTE";"2007-2026";"Polymers and Plastics (Q2); Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Chemical Engineering; Chemistry; Materials Science" +14507;5300152610;"Folia Oecologica";journal;"13365266, 13387014";"Institute of Forest Ecology of the Slovak Academy of Sciences";Yes;No;0,388;Q2;17;21;65;1139;103;65;1,70;54,24;32,18;0;Slovakia;Eastern Europe;"Institute of Forest Ecology of the Slovak Academy of Sciences";"2006-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Ecology (Q2); Forestry (Q2)";"Agricultural and Biological Sciences; Environmental Science" +14508;21101198492;"Geoscience";journal;"10008527";"China University of Geosciences";No;No;0,388;Q2;16;108;391;3485;590;390;1,60;32,27;31,00;0;China;Asiatic Region;"China University of Geosciences";"2020-2026";"Geology (Q2); Fuel Technology (Q3)";"Earth and Planetary Sciences; Energy" +14509;21100207002;"International Aquatic Research";journal;"20086970, 20084935";"Islamic Azad University of Tonekabon";Yes;Yes;0,388;Q2;36;24;81;2048;177;79;2,09;85,33;49,50;0;Iran;Middle East;"Islamic Azad University of Tonekabon";"2012-2025";"Aquatic Science (Q2)";"Agricultural and Biological Sciences" +14510;21673;"Journal of Craniofacial Surgery";journal;"10492275, 15363732";"Lippincott Williams and Wilkins";No;No;0,388;Q2;94;1490;2654;33070;3202;2540;1,10;22,19;39,08;0;United States;Northern America;"Lippincott Williams and Wilkins";"1990-2026";"Surgery (Q2); Medicine (miscellaneous) (Q3); Otorhinolaryngology (Q3)";"Medicine" +14511;21100218076;"Subterranean Biology";journal;"17681448, 13142615";"Pensoft Publishers";Yes;No;0,388;Q2;20;33;73;1639;85;73;1,20;49,67;36,76;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2011, 2013-2026";"Animal Science and Zoology (Q2); Nature and Landscape Conservation (Q2); Soil Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14512;17478;"Topics in Spinal Cord Injury Rehabilitation";journal;"19455763, 10820744";"Allen Press Inc.";No;No;0,388;Q2;50;45;118;326;185;117;1,47;7,24;47,01;0;United States;Northern America;"Allen Press Inc.";"1998-2025";"Rehabilitation (Q2); Neurology (clinical) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine" +14513;21100819607;"Egyptian Journal of Petroleum";journal;"11100621, 20902468";"Egyptian Petroleum Research Institute";Yes;Yes;0,388;Q3;73;33;115;1315;309;115;2,41;39,85;23,21;0;Egypt;Africa/Middle East;"Egyptian Petroleum Research Institute";"2011-2026";"Catalysis (Q3); Fuel Technology (Q3); Geochemistry and Petrology (Q3); Organic Chemistry (Q3); Process Chemistry and Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Chemical Engineering; Chemistry; Earth and Planetary Sciences; Energy" +14514;21100416114;"eNeurologicalSci";journal;"24056502";"Elsevier B.V.";Yes;No;0,388;Q3;26;51;143;1243;240;119;1,42;24,37;33,33;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Neurology (Q3)";"Neuroscience" +14515;57168;"Gesundheitswesen, Supplement";journal;"09497013, 16155602";"Georg Thieme Verlag";No;No;0,388;Q3;14;2;45;4;56;37;1,24;2,00;0,00;0;Germany;Western Europe;"Georg Thieme Verlag";"2004-2005, 2007-2008, 2010, 2012, 2015-2018, 2020-2021, 2023-2025";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +14516;4900152808;"Journal of Instrumentation";journal;"17480221";"Institute of Physics";No;No;0,388;Q3;96;975;2810;20032;3140;2810;1,12;20,55;24,73;0;United Kingdom;Western Europe;"Institute of Physics";"2006-2025";"Instrumentation (Q3); Mathematical Physics (Q3)";"Mathematics; Physics and Astronomy" +14517;145700;"Korea Australia Rheology Journal";journal;"1226119X, 20937660";"Korean Society of Rheology, Australian Society of Rheology";No;No;0,388;Q3;38;30;87;1791;202;87;2,48;59,70;10,81;0;South Korea;Asiatic Region;"Korean Society of Rheology, Australian Society of Rheology";"2003-2026";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)";"Materials Science; Physics and Astronomy" +14518;14131;"Methods in Enzymology";book series;"00766879, 15577988";"Academic Press Inc.";No;No;0,388;Q3;187;288;775;10880;983;130;1,11;37,78;40,00;0;United States;Northern America;"Academic Press Inc.";"1955, 1957, 1962-1964, 1966-2026";"Biochemistry (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +14519;19228;"Restorative Neurology and Neuroscience";journal;"18783627, 09226028";"SAGE Publications Ltd";No;No;0,388;Q3;89;14;42;823;67;42;1,44;58,79;56,60;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1989-2026";"Neurology (Q3); Neurology (clinical) (Q3); Developmental Neuroscience (Q4)";"Medicine; Neuroscience" +14520;19700180785;"Studies in Natural Products Chemistry";book series;"15725995";"Elsevier B.V.";No;No;0,388;Q3;57;43;151;7154;393;9;2,15;166,37;52,63;0;Netherlands;Western Europe;"Elsevier B.V.";"1992-1997, 2000-2003, 2005-2006, 2008, 2012-2025";"Drug Discovery (Q3); Organic Chemistry (Q3)";"Chemistry; Pharmacology, Toxicology and Pharmaceutics" +14521;26333;"Continuity and Change";journal;"1469218X, 02684160";"Cambridge University Press";No;No;0,387;Q1;33;14;44;1701;30;43;0,41;121,50;50,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1986-2025";"History (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +14522;21101037151;"Human Arenas";journal;"25225804";"Springer Science and Business Media Deutschland GmbH";No;No;0,387;Q1;18;150;227;8170;379;224;1,70;54,47;44,24;2;Netherlands;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2018-2026";"Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q2); Psychology (miscellaneous) (Q3)";"Arts and Humanities; Psychology; Social Sciences" +14523;29276;"Journal of Historical Geography";journal;"10958614, 03057488";"Academic Press";No;No;0,387;Q1;52;69;176;72;202;175;1,14;1,04;40,87;0;United States;Northern America;"Academic Press";"1975-2026";"Archeology (Q1); History (Q1); Geography, Planning and Development (Q2)";"Arts and Humanities; Social Sciences" +14524;27733;"Latin American Research Review";journal;"00238791, 15424278";"Cambridge University Press";Yes;Yes;0,387;Q1;62;76;143;4409;181;140;1,13;58,01;42,15;0;United States;Northern America;"Cambridge University Press";"1965-2026";"Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Geography, Planning and Development (Q2); Multidisciplinary (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Economics, Econometrics and Finance; Multidisciplinary; Social Sciences" +14525;21100857424;"SCIRES-IT";journal;"22394303";"Caspur -Ciber Publishing";Yes;Yes;0,387;Q1;14;27;97;836;125;95;1,36;30,96;54,72;0;Italy;Western Europe;"Caspur -Ciber Publishing";"2016-2025";"Conservation (Q1); Library and Information Sciences (Q2); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Information Systems (Q3)";"Arts and Humanities; Computer Science; Social Sciences" +14526;21101197625;"Sociolinguistica";journal;"1865939X, 09331883";"Walter de Gruyter GmbH";No;No;0,387;Q1;7;20;51;1081;42;46;0,63;54,05;44,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2017-2025";"Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +14527;14000155888;"Time and Mind";journal;"17516978, 1751696X";"Taylor and Francis Ltd.";No;No;0,387;Q1;20;12;39;718;24;32;0,65;59,83;45,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +14528;21100805343;"Annals of Silvicultural Research";journal;"2284354X";"Istituto Sperimentale per la Selvicoltura";Yes;Yes;0,387;Q2;18;11;40;350;52;36;1,65;31,82;40,91;0;Italy;Western Europe;"Istituto Sperimentale per la Selvicoltura";"2013-2025";"Ecology (Q2); Forestry (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14529;12300154714;"Botany";journal;"19162790, 19162804";"Canadian Science Publishing";No;No;0,387;Q2;102;54;158;3067;259;143;1,40;56,80;49,43;0;Canada;Northern America;"Canadian Science Publishing";"2008-2026";"Ecology (Q2); Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14530;21101058917;"China Finance and Economic Review";journal;"21965633, 20954638";"Walter de Gruyter GmbH";No;No;0,387;Q2;14;24;73;672;90;73;1,19;28,00;40,35;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2012-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +14531;145508;"Computer Animation and Virtual Worlds";journal;"15464261, 1546427X";"John Wiley and Sons Ltd";No;No;0,387;Q2;58;82;247;3440;755;238;3,37;41,95;28,41;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2004-2026";"Computer Graphics and Computer-Aided Design (Q2); Software (Q3)";"Computer Science" +14532;21101037127;"Current Oral Health Reports";journal;"21963002";"Springer Nature";No;No;0,387;Q2;37;29;85;1644;178;85;1,68;56,69;45,61;0;Netherlands;Western Europe;"Springer Nature";"2014-2026";"Oral Surgery (Q2); Surgery (Q2); Immunology and Microbiology (miscellaneous) (Q3)";"Dentistry; Immunology and Microbiology; Medicine" +14533;19700182634;"Geographical Research Letters";journal;"02116820, 16979540";"University of La Rioja";Yes;Yes;0,387;Q2;31;12;58;570;105;57;1,59;47,50;40,00;0;Spain;Western Europe;"University of La Rioja";"2009-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +14534;21100205707;"German Journal of Agricultural Economics";journal;"00021121, 21914028";"TIB Open Publishing (Technische Informationsbibliothek (TIB))";Yes;Yes;0,387;Q2;18;10;50;572;81;48;1,86;57,20;33,33;0;Germany;Western Europe;"TIB Open Publishing (Technische Informationsbibliothek (TIB))";"2011-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +14535;21101077475;"International Journal of Community and Social Development";journal;"25166034, 25166026";"Sage Publications India Pvt. Ltd";No;No;0,387;Q2;15;41;77;1777;113;63;1,71;43,34;40,00;1;Singapore;Asiatic Region;"Sage Publications India Pvt. Ltd";"2019-2026";"Development (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14536;21100267903;"International Journal of Game-Based Learning";journal;"21556857, 21556849";"IGI Global Publishing";No;No;0,387;Q2;32;20;28;1166;60;28;2,50;58,30;44,44;0;United States;Northern America;"IGI Global Publishing";"2011-2025";"Education (Q2); Developmental and Educational Psychology (Q3); E-learning (Q3)";"Psychology; Social Sciences" +14537;21100427221;"Journal of Central Banking Theory and Practice";journal;"18009581, 23369205";"de Gruyter";Yes;No;0,387;Q2;20;30;91;1283;231;91;2,66;42,77;34,55;0;Germany;Western Europe;"de Gruyter";"2014-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +14538;21101039663;"Journal of Learning for Development";journal;"23111550";"Commonwealth of Learning";Yes;Yes;0,387;Q2;14;47;115;1798;228;106;2,03;38,26;50,51;0;Canada;Northern America;"Commonwealth of Learning";"2019-2025";"Education (Q2)";"Social Sciences" +14539;18302;"Journal of Swine Health and Production";journal;"1537209X";"American Association of Swine Veterinarians";Yes;No;0,387;Q2;43;11;65;257;75;59;1,03;23,36;50,00;0;United States;Northern America;"American Association of Swine Veterinarians";"1996-2026";"Animal Science and Zoology (Q2); Food Animals (Q2)";"Agricultural and Biological Sciences; Veterinary" +14540;22626;"Laboratory Animals";journal;"00236772, 17581117";"SAGE Publications Ltd";No;No;0,387;Q2;83;87;207;2484;278;163;1,33;28,55;54,08;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1970-2026";"Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Veterinary" +14541;9500153939;"Microelectronics Journal";journal;"18792391, 09598324";"Elsevier Ltd";No;No;0,387;Q2;85;345;875;9423;2112;875;2,44;27,31;31,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"1974-2026";"Surfaces, Coatings and Films (Q2); Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Nanoscience and Nanotechnology (Q3)";"Engineering; Materials Science; Physics and Astronomy" +14542;18700156723;"NASSP Bulletin";journal;"19301405, 01926365";"SAGE Publications Ltd";No;No;0,387;Q2;36;0;39;0;53;31;1,15;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1917-1921, 1926-2023";"Education (Q2)";"Social Sciences" +14543;13924;"Studies in Political Economy";journal;"07078552, 19187033";"Taylor and Francis Ltd.";No;No;0,387;Q2;27;28;49;1268;58;47;1,19;45,29;32,35;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2025";"Political Science and International Relations (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +14544;18769;"Applied Economics Letters";journal;"13504851, 14664291";"Routledge";No;No;0,387;Q3;72;1182;1287;16766;2285;1284;1,78;14,18;35,16;28;United Kingdom;Western Europe;"Routledge";"1994-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +14545;52581;"Biomedical Research (Japan)";journal;"1880313X, 03886107";"Biomedical Research Foundation";Yes;No;0,387;Q3;46;29;72;956;100;72;1,45;32,97;32,24;0;Japan;Asiatic Region;"Biomedical Research Foundation";"1980-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +14546;21101048368;"Journal of Membrane Computing";journal;"25238914, 25238906";"Springer";No;No;0,387;Q3;23;43;73;2021;195;70;2,44;47,00;26,40;0;Singapore;Asiatic Region;"Springer";"2019-2026";"Applied Mathematics (Q3); Computational Theory and Mathematics (Q3)";"Computer Science; Mathematics" +14547;144932;"Protein Journal";journal;"18758355, 15723887";"Springer";No;No;0,387;Q3;65;63;206;4087;379;201;1,99;64,87;43,46;0;United States;Northern America;"Springer";"1996-2002, 2004-2026";"Analytical Chemistry (Q3); Biochemistry (Q3); Bioengineering (Q3); Organic Chemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry" +14548;28416;"Science of Computer Programming";journal;"01676423";"Elsevier B.V.";No;No;0,387;Q3;71;100;254;4423;465;223;1,95;44,23;27,99;0;Netherlands;Western Europe;"Elsevier B.V.";"1981-2026";"Computational Theory and Mathematics (Q3); Information Systems (Q3); Modeling and Simulation (Q3); Software (Q3)";"Computer Science; Mathematics" +14549;16100154741;"Archaeology in Oceania";journal;"07284896, 18344453";"John Wiley and Sons Inc";No;No;0,386;Q1;32;24;61;1586;83;60;1,29;66,08;43,21;0;United States;Northern America;"John Wiley and Sons Inc";"1966-1980, 1983, 1985, 1994, 1996, 1999, 2001-2026";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +14550;21101093007;"Journal of General Music Education";journal;"27527646";"SAGE Publications Inc.";No;No;0,386;Q1;6;28;88;549;59;73;0,63;19,61;50,00;0;United States;Northern America;"SAGE Publications Inc.";"2021-2026";"Music (Q1); Education (Q2)";"Arts and Humanities; Social Sciences" +14551;21101107566;"Jurnal Ilmiah Islam Futura";journal;"14121190, 24077542";"Universitas Islam Negeri Ar-Raniry";Yes;Yes;0,386;Q1;10;20;63;995;130;63;2,34;49,75;32,08;0;Indonesia;Asiatic Region;"Universitas Islam Negeri Ar-Raniry";"2019-2026";"Arts and Humanities (miscellaneous) (Q1); Philosophy (Q1); Religious Studies (Q1); Education (Q2); Gender Studies (Q2)";"Arts and Humanities; Social Sciences" +14552;40907;"Applied Radiation and Isotopes";journal;"09698043, 18729800";"Elsevier Ltd";No;No;0,386;Q2;100;594;1227;20179;2446;1223;2,11;33,97;30,66;0;United Kingdom;Western Europe;"Elsevier Ltd";"1986-1987, 1993-2026";"Radiation (Q2)";"Physics and Astronomy" +14553;21100379743;"Australasian Accounting, Business and Finance Journal";journal;"18342000, 18342019";"University of Wollongong";Yes;Yes;0,386;Q2;32;55;184;3015;478;171;1,54;54,82;45,65;0;Australia;Pacific Region;"University of Wollongong";"2014-2025";"Business, Management and Accounting (miscellaneous) (Q2); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +14554;9500154033;"Biologia";journal;"13369563, 00063088";"Springer Science and Business Media Deutschland GmbH";No;No;0,386;Q2;56;266;875;15413;1737;868;1,97;57,94;38,48;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1954-1955, 1961-1970, 1974-1989, 1996-2001, 2006-2026";"Animal Science and Zoology (Q2); Plant Science (Q2); Biochemistry (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Cell Biology (Q4); Genetics (Q4); Molecular Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +14555;21101228213;"Discover Computing";journal;"29482992";"Springer Science and Business Media B.V.";Yes;No;0,386;Q2;67;347;85;18206;272;84;3,27;52,47;32,96;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2024-2026";"Library and Information Sciences (Q2); Information Systems (Q3)";"Computer Science; Social Sciences" +14556;21100399145;"Gongcheng Kexue Xuebao/Chinese Journal of Engineering";journal;"20959389";"Science Press";Yes;No;0,386;Q2;35;214;617;9898;1439;617;2,29;46,25;32,72;0;China;Asiatic Region;"Science Press";"2015-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +14557;101620;"International Journal of Pest Management";journal;"09670874, 13665863";"Taylor and Francis Ltd.";No;No;0,386;Q2;60;98;225;5475;422;225;1,87;55,87;36,57;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Agronomy and Crop Science (Q2); Insect Science (Q2)";"Agricultural and Biological Sciences" +14558;19700177002;"International Journal of System Assurance Engineering and Management";journal;"09764348, 09756809";"Springer";No;No;0,386;Q2;52;451;1326;19685;3554;1323;2,68;43,65;34,64;0;India;Asiatic Region;"Springer";"2010-2026";"Safety, Risk, Reliability and Quality (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Engineering" +14559;13512;"Journal of Applied Aquaculture";journal;"15450805, 10454438";"Taylor and Francis Ltd.";No;No;0,386;Q2;40;38;167;2141;333;160;1,89;56,34;39,23;0;United States;Northern America;"Taylor and Francis Ltd.";"1991-2026";"Aquatic Science (Q2); Ecology (Q2)";"Agricultural and Biological Sciences; Environmental Science" +14560;29608;"Journal of Limnology";journal;"11295767, 17238633";"Page Press Publications";Yes;No;0,386;Q2;56;15;75;930;94;69;1,40;62,00;40,63;0;Italy;Western Europe;"Page Press Publications";"1997-2025";"Ecology (Q2); Aquatic Science (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14561;5600152814;"Journal of Public Economic Theory";journal;"14679779, 10973923";"Wiley-Blackwell Publishing Ltd";No;No;0,386;Q2;38;85;162;3503;146;159;0,94;41,21;25,77;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1999-2026";"Sociology and Political Science (Q2); Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance; Social Sciences" +14562;24572;"Mathematical Inequalities and Applications";journal;"13314343";"Element D.O.O.";No;No;0,386;Q2;50;43;160;1028;120;160;0,78;23,91;25,00;0;Croatia;Eastern Europe;"Element D.O.O.";"1998-2025";"Mathematics (miscellaneous) (Q2); Applied Mathematics (Q3)";"Mathematics" +14563;7100153127;"Multidiscipline Modeling in Materials and Structures";journal;"15736105, 15736113";"Emerald Group Publishing Ltd.";No;No;0,386;Q2;37;120;205;4870;632;205;3,51;40,58;20,17;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005-2026";"Mechanical Engineering (Q2); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3)";"Engineering; Materials Science; Mathematics" +14564;18576;"Pediatric Neurosurgery";journal;"10162291, 14230305";"S. Karger AG";No;No;0,386;Q2;85;33;125;1152;164;119;1,51;34,91;35,96;0;Switzerland;Western Europe;"S. Karger AG";"1955, 1975-1985, 1987-2026";"Surgery (Q2); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +14565;29234;"Physics Today";trade journal;"00319228";"American Institute of Physics";No;No;0,386;Q2;131;103;355;733;341;337;1,00;7,12;32,50;0;United States;Northern America;"American Institute of Physics";"1948-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +14566;21100903818;"Research in Educational Administration and Leadership";journal;"25647261";"Dokuz Eylul University";Yes;Yes;0,386;Q2;12;22;71;1515;112;69;1,43;68,86;50,00;0;Turkey;Middle East;"Dokuz Eylul University";"2016-2025";"Education (Q2)";"Social Sciences" +14567;19700187606;"Roeper Review";journal;"1940865X, 02783193";"Taylor and Francis Ltd.";No;No;0,386;Q2;51;28;97;1180;103;71;1,00;42,14;69,44;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-2026";"Education (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +14568;21100894876;"State Crime Journal";journal;"20466056";"Pluto Journals";Yes;Yes;0,386;Q2;13;4;38;403;82;37;1,63;100,75;80,00;0;United Kingdom;Western Europe;"Pluto Journals";"2018-2025";"Law (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +14569;5600156484;"Tourism and Hospitality Management";journal;"13307533, 18473377";"University of Rijeka";Yes;Yes;0,386;Q2;27;50;138;3569;352;130;2,59;71,38;51,67;0;Croatia;Eastern Europe;"University of Rijeka";"2013-2025";"Geography, Planning and Development (Q2); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +14570;26427;"Zhongguo Tiedao Kexue/China Railway Science";journal;"10014632";"Chinese Academy of Railway Sciences";No;No;0,386;Q2;37;128;367;3373;556;367;1,43;26,35;26,44;0;China;Asiatic Region;"Chinese Academy of Railway Sciences";"2003-2026";"Mechanical Engineering (Q2)";"Engineering" +14571;24218;"Actas Dermo-Sifiliograficas";journal;"00017310, 15782190";"Elsevier Espana S.L.U";Yes;No;0,386;Q3;53;213;727;3995;739;698;1,03;18,76;56,28;0;Spain;Western Europe;"Elsevier Espana S.L.U";"1945-1982, 1988-2026";"Dermatology (Q3); Histology (Q3); Pathology and Forensic Medicine (Q3)";"Medicine" +14572;22715;"Annals of Agricultural and Environmental Medicine";journal;"12321966, 18982263";"Institute of Agricultural Medicine";Yes;No;0,386;Q3;72;93;286;2961;463;284;1,65;31,84;55,00;0;Poland;Eastern Europe;"Institute of Agricultural Medicine";"1994-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Public Health, Environmental and Occupational Health (Q3); Waste Management and Disposal (Q3)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +14573;14839;"Bioelectromagnetics";journal;"01978462, 1521186X";"Wiley-Liss Inc.";No;No;0,386;Q3;95;56;89;2615;152;86;1,86;46,70;32,86;0;United States;Northern America;"Wiley-Liss Inc.";"1980-2026";"Biophysics (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +14574;21101290579;"Frontiers in Stroke";journal;"28133056";"Frontiers Media SA";Yes;No;0,386;Q3;5;43;100;1565;115;89;1,19;36,40;37,76;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Cardiology and Cardiovascular Medicine (Q3); Neurology (Q3); Neurology (clinical) (Q3); Rehabilitation (Q3)";"Medicine; Neuroscience" +14575;22014;"Ichthyological Research";journal;"16163915, 13418998";"Springer";No;No;0,386;Q3;44;62;139;2695;140;125;1,17;43,47;17,79;1;Japan;Asiatic Region;"Springer";"1996-2026";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14576;21100456724;"Indian Journal of Endocrinology and Metabolism";journal;"22309500, 22308210";"Wolters Kluwer Medknow Publications";Yes;Yes;0,386;Q3;50;114;276;2888;326;227;1,06;25,33;35,56;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2012-2025";"Endocrinology, Diabetes and Metabolism (Q3); Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +14577;3900148506;"International Heart Journal";journal;"13492365, 13493299";"International Heart Journal Association";No;No;0,386;Q3;58;135;487;3873;636;455;1,26;28,69;21,50;0;Japan;Asiatic Region;"International Heart Journal Association";"2005-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +14578;21101060162;"Journal of Interventional Medicine";journal;"20963602, 25900293";"KeAi Publishing Communications Ltd.";Yes;No;0,386;Q3;12;4;79;85;130;76;1,72;21,25;34,62;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2018-2023, 2025";"Medicine (miscellaneous) (Q3)";"Medicine" +14579;13661;"Particulate Science and Technology";journal;"15480046, 02726351";"Taylor and Francis Ltd.";No;No;0,386;Q3;56;119;315;5331;806;314;2,35;44,80;31,73;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2026";"Chemical Engineering (miscellaneous) (Q3)";"Chemical Engineering" +14580;72707;"Asian Perspectives";journal;"15358283, 00668435";"University of Hawaii Press";No;No;0,385;Q1;40;10;32;559;27;29;0,83;55,90;34,04;0;United States;Northern America;"University of Hawaii Press";"1993-2025";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Social Sciences" +14581;5800219327;"Boletin de Filologia";journal;"07189303, 00679674";"Universidad de Chile";Yes;Yes;0,385;Q1;15;34;109;1488;49;108;0,56;43,76;52,78;0;Chile;Latin America;"Universidad de Chile";"2014-2025";"History (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +14582;27205;"Game Studies";journal;"16047982";"Game Studies";Yes;No;0,385;Q1;40;16;51;1010;65;48;0,88;63,13;28,57;0;Norway;Western Europe;"Game Studies";"2002-2006, 2008-2026";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Applied Mathematics (Q3); Statistics, Probability and Uncertainty (Q3)";"Arts and Humanities; Decision Sciences; Mathematics; Social Sciences" +14583;4900152701;"Brazilian Journal of Cardiovascular Surgery";journal;"01027638, 16789741";"Sociedade Brasileira de Cirurgia Cardiovascular";Yes;Yes;0,385;Q2;39;121;395;2450;484;335;1,15;20,25;22,30;0;Brazil;Latin America;"Sociedade Brasileira de Cirurgia Cardiovascular";"2006-2026";"Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +14584;31671;"Communications in Soil Science and Plant Analysis";journal;"00103624, 15322416";"Taylor and Francis Ltd.";No;No;0,385;Q2;89;189;689;13128;1354;689;1,97;69,46;28,94;0;United States;Northern America;"Taylor and Francis Ltd.";"1970-2026";"Agronomy and Crop Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences" +14585;13130;"Distributed and Parallel Databases";journal;"09268782, 15737578";"Springer Netherlands";No;No;0,385;Q2;49;10;76;426;189;73;2,58;42,60;15,15;0;Netherlands;Western Europe;"Springer Netherlands";"1993-2026";"Information Systems and Management (Q2); Hardware and Architecture (Q3); Information Systems (Q3); Software (Q3)";"Computer Science; Decision Sciences" +14586;19700181218;"IEEE Latin America Transactions";journal;"15480992";"IEEE Computer Society";No;No;0,385;Q2;42;140;445;4811;982;442;2,23;34,36;17,87;0;United States;Northern America;"IEEE Computer Society";"2003-2026";"Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +14587;21100828447;"Interdisciplinary Mathematical Sciences";book series;"17931355";"World Scientific";No;No;0,385;Q2;3;0;2;0;2;1;1,00;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2016-2017, 2019-2020, 2023";"Mathematics (miscellaneous) (Q2); Applied Mathematics (Q3)";"Mathematics" +14588;18165;"International Social Security Review";journal;"0020871X, 1468246X";"Wiley-Blackwell Publishing Ltd";No;No;0,385;Q2;36;21;64;966;111;56;1,18;46,00;56,52;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1967-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Public Administration (Q2); Sociology and Political Science (Q2)";"Economics, Econometrics and Finance; Social Sciences" +14589;19700175219;"Iranian Journal of Fuzzy Systems";journal;"17350654, 26764334";"University of Sistan and Baluchestan";Yes;No;0,385;Q2;42;63;228;2257;392;228;1,88;35,83;23,88;0;Iran;Middle East;"University of Sistan and Baluchestan";"2004-2026";"Information Systems and Management (Q2); Mathematics (miscellaneous) (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3)";"Computer Science; Decision Sciences; Mathematics" +14590;21100320405;"Journal of Agricultural Engineering";journal;"22396268, 19747071";"Page Press Publications";Yes;No;0,385;Q2;29;53;130;2045;342;129;2,67;38,58;30,84;1;Italy;Western Europe;"Page Press Publications";"2012-2026";"Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Bioengineering (Q3)";"Chemical Engineering; Engineering" +14591;17141;"Journal of the Textile Institute";journal;"17542340, 00405000";"Taylor and Francis Ltd.";No;No;0,385;Q2;68;385;743;16311;1684;718;2,18;42,37;41,25;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1967-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Polymers and Plastics (Q2); Materials Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Engineering; Materials Science" +14592;21100224446;"Neotropical Biology and Conservation";journal;"22363777, 18099939";"Pensoft Publishers";Yes;No;0,385;Q2;17;20;68;938;83;66;1,13;46,90;39,53;0;Brazil;Latin America;"Pensoft Publishers";"2012-2025";"Animal Science and Zoology (Q2); Insect Science (Q2); Nature and Landscape Conservation (Q2); Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14593;13578;"Acta Oto-Laryngologica";journal;"16512251, 00016489";"Taylor and Francis Ltd.";No;No;0,385;Q3;95;180;394;4059;462;387;1,21;22,55;41,39;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1918, 1920-2026";"Medicine (miscellaneous) (Q3); Otorhinolaryngology (Q3)";"Medicine" +14594;21101186339;"Advanced Information Systems";journal;"25229052";"National Technical University "Kharkiv Polytechnic Institute"";Yes;No;0,385;Q3;12;50;99;1375;317;99;3,20;27,50;24,42;0;Ukraine;Eastern Europe;"National Technical University "Kharkiv Polytechnic Institute"";"2023-2026";"Artificial Intelligence (Q3); Computer Networks and Communications (Q3); Information Systems (Q3)";"Computer Science" +14595;21100788266;"Biomedical Physics and Engineering Express";journal;"20571976";"Institute of Physics";No;No;0,385;Q3;37;363;646;12412;1279;634;2,08;34,19;35,00;0;United Kingdom;Western Europe;"Institute of Physics";"2015-2026";"Bioengineering (Q3); Biomaterials (Q3); Biomedical Engineering (Q3); Biophysics (Q3); Computer Science Applications (Q3); Health Informatics (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Computer Science; Engineering; Materials Science; Medicine" +14596;20097;"Bulletin of Economic Research";journal;"03073378, 14678586";"Wiley-Blackwell Publishing Ltd";No;No;0,385;Q3;39;56;175;2760;281;175;1,71;49,29;21,95;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1948-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +14597;25740;"Chinese Journal of Geology/Scientia Geologica Sinica";journal;"05635020";"Science Press";No;No;0,385;Q3;49;120;274;5872;352;274;1,32;48,93;30,71;0;China;Asiatic Region;"Science Press";"1979-2026";"Geology (Q3)";"Earth and Planetary Sciences" +14598;24175;"Constraints";journal;"15729354, 13837133";"Springer Netherlands";No;No;0,385;Q3;51;4;47;188;89;44;1,29;47,00;6,67;0;Netherlands;Western Europe;"Springer Netherlands";"1996-2026";"Artificial Intelligence (Q3); Computational Theory and Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3); Software (Q3)";"Computer Science; Mathematics" +14599;25759;"Environmental Forensics";journal;"15275930, 15275922";"Taylor & Francis Group LLC";No;No;0,385;Q3;47;71;125;4660;242;123;1,90;65,63;29,88;0;United States;Northern America;"Taylor & Francis Group LLC";"2000-2026";"Management, Monitoring, Policy and Law (Q3); Waste Management and Disposal (Q3)";"Environmental Science" +14600;300147006;"Innovations in Systems and Software Engineering";journal;"16145054, 16145046";"Springer London";No;No;0,385;Q3;34;94;123;3815;291;115;2,48;40,59;29,85;2;United Kingdom;Western Europe;"Springer London";"2005-2026";"Software (Q3)";"Computer Science" +14601;14200154739;"Journal of Echocardiography";journal;"13490222, 1880344X";"Springer";No;No;0,385;Q3;23;69;132;1172;117;97;0,89;16,99;24,55;0;Japan;Asiatic Region;"Springer";"2003-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +14602;19700175028;"Open Respiratory Medicine Journal";journal;"18743064";"Bentham Science Publishers";Yes;No;0,385;Q3;27;15;45;635;82;42;2,42;42,33;35,44;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2009-2025";"Pulmonary and Respiratory Medicine (Q3)";"Medicine" +14603;17847;"Radiologia";journal;"1578178X, 00338338";"Ediciones Doyma, S.L.";No;No;0,385;Q3;24;140;299;4302;387;269;1,27;30,73;49,46;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"1961, 1970, 1972-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +14604;21101294933;"Rare Disease and Orphan Drugs Journal";journal;"27712893";"OAE Publishing Inc.";No;No;0,385;Q3;7;35;74;2103;132;68;1,73;60,09;49,31;0;United States;Northern America;"OAE Publishing Inc.";"2022-2025";"Genetics (clinical) (Q3); Internal Medicine (Q3)";"Medicine" +14605;144614;"Twin Research and Human Genetics";journal;"18392628, 18324274";"Cambridge University Press";No;No;0,385;Q3;99;37;115;1505;119;115;1,14;40,68;47,74;0;United Kingdom;Western Europe;"Cambridge University Press";"2005-2026";"Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3); Genetics (clinical) (Q4)";"Medicine" +14606;21100942315;"IEEE Workshop on Applications of Signal Processing to Audio and Acoustics";conference and proceedings;"19311168, 19471629";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,385;-;52;97;84;3495;186;83;2,21;36,03;17,68;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2001, 2003, 2005, 2007, 2009, 2011, 2013, 2017, 2019, 2021, 2023, 2025";"Computer Science Applications; Electrical and Electronic Engineering";"Computer Science; Engineering" +14607;14980;"Humor";journal;"16133722, 09331719";"De Gruyter Mouton";No;No;0,384;Q1;60;24;86;1396;129;83;1,56;58,17;54,69;0;Germany;Western Europe;"De Gruyter Mouton";"1988-2026";"Linguistics and Language (Q1); Sociology and Political Science (Q2); Psychology (miscellaneous) (Q3)";"Psychology; Social Sciences" +14608;57782;"Journal of the History of Economic Thought";journal;"14699656, 10538372";"Cambridge University Press";No;No;0,384;Q1;26;28;118;1560;88;111;0,70;55,71;37,84;0;United Kingdom;Western Europe;"Cambridge University Press";"1970, 1979-1989, 2003-2026";"Arts and Humanities (miscellaneous) (Q1); History and Philosophy of Science (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2)";"Arts and Humanities; Economics, Econometrics and Finance" +14609;76311;"Palestine Exploration Quarterly";journal;"17431301, 00310328";"Maney Publishing";No;No;0,384;Q1;19;30;61;1500;47;54;0,72;50,00;31,43;0;United Kingdom;Western Europe;"Maney Publishing";"1865, 1869, 1871-1995, 2004-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1); Religious Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +14610;21101043318;"Studies in Communication and Media";journal;"21924007";"Nomos Verlagsgesellschaft mbH und Co KG";Yes;Yes;0,384;Q1;13;15;49;907;50;44;0,78;60,47;54,55;0;Germany;Western Europe;"Nomos Verlagsgesellschaft mbH und Co KG";"2019-2025";"Linguistics and Language (Q1); Communication (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14611;21101364771;"Asian Journal of Periodontics and Orthodontics";journal;"30623499";"Turkish Specialized Dental Publication";No;No;0,384;Q2;10;30;53;1947;277;53;3,97;64,90;42,17;0;Turkey;Middle East;"Turkish Specialized Dental Publication";"2021-2025";"Orthodontics (Q2); Periodontics (Q2)";"Dentistry" +14612;25244;"Bulletin of the Australian Mathematical Society";journal;"17551633, 00049727";"Cambridge University Press";No;No;0,384;Q2;51;132;411;1830;238;407;0,54;13,86;26,47;0;United Kingdom;Western Europe;"Cambridge University Press";"1969-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +14613;14300;"Harvard Journal of Law and Public Policy";journal;"01934872";"Harvard University";No;No;0,384;Q2;33;13;107;1711;126;105;1,32;131,62;18,18;0;United States;Northern America;"Harvard University";"1980, 1985, 1990, 1995-2025";"Law (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14614;19900191986;"International Journal of Aerospace Engineering";journal;"16875974, 16875966";"John Wiley and Sons Ltd";Yes;No;0,384;Q2;40;69;431;2555;781;431;1,64;37,03;22,57;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2026";"Aerospace Engineering (Q2)";"Engineering" +14615;21625;"International Journal of Surgical Pathology";journal;"10668969, 19402465";"SAGE Publications Inc.";No;No;0,384;Q2;59;321;603;7411;641;581;1,03;23,09;45,70;0;United States;Northern America;"SAGE Publications Inc.";"1993-2026";"Anatomy (Q2); Surgery (Q2); Pathology and Forensic Medicine (Q3)";"Medicine" +14616;23300;"Japan Journal of Industrial and Applied Mathematics";journal;"1868937X, 09167005";"Springer Japan";No;No;0,384;Q2;33;83;183;2664;207;181;1,24;32,10;20,43;0;Japan;Asiatic Region;"Springer Japan";"1991-2026";"Engineering (miscellaneous) (Q2); Applied Mathematics (Q3)";"Engineering; Mathematics" +14617;21101272983;"Journal of Anesthesia and Translational Medicine";journal;"29573912";"KeAi Communications Co.";No;No;0,384;Q2;3;33;29;2243;46;28;1,59;67,97;45,71;0;Netherlands;Western Europe;"KeAi Communications Co.";"2024-2025";"Anesthesiology and Pain Medicine (Q2); Critical Care and Intensive Care Medicine (Q2)";"Medicine" +14618;11700154717;"Journal of Asia-Pacific Entomology";journal;"12268615";"Elsevier B.V.";No;No;0,384;Q2;54;155;479;7533;832;479;1,62;48,60;35,86;0;Netherlands;Western Europe;"Elsevier B.V.";"1998-2026";"Insect Science (Q2)";"Agricultural and Biological Sciences" +14619;21101054451;"Journal of Mother and Child";journal;"2719535X, 27196488";"";No;No;0,384;Q2;10;24;68;608;101;67;1,49;25,33;72,03;0;Poland;Eastern Europe;"";"2019-2026";"Maternity and Midwifery (Q2); Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine; Nursing" +14620;28250;"Journal of Psychosocial Nursing and Mental Health Services";journal;"02793695";"Slack Incorporated";No;No;0,384;Q2;45;110;340;2920;369;280;1,07;26,55;72,97;0;United States;Northern America;"Slack Incorporated";"1981-2026";"Nursing (miscellaneous) (Q2); Psychiatry and Mental Health (Q3)";"Medicine; Nursing" +14621;21101054418;"Journal of Public Finance and Public Choice";journal;"25156918, 25156926";"Bristol University Press";No;No;0,384;Q2;8;13;35;850;58;32;1,96;65,38;18,75;0;United Kingdom;Western Europe;"Bristol University Press";"2018-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Public Administration (Q2)";"Economics, Econometrics and Finance; Social Sciences" +14622;21101197328;"Nuclear Analysis";journal;"27731839";"KeAi Publishing Communications Ltd.";Yes;No;0,384;Q2;9;31;64;1054;145;64;2,15;34,00;23,00;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2022-2026";"Nuclear Energy and Engineering (Q2); Analytical Chemistry (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Energy; Materials Science" +14623;19700169402;"Progress in Community Health Partnerships: Research, Education, and Action";journal;"1557055X, 15570541";"Johns Hopkins University Press";No;No;0,384;Q2;37;59;218;1400;180;168;0,80;23,73;73,00;0;United States;Northern America;"Johns Hopkins University Press";"2007-2025";"Education (Q2); Sociology and Political Science (Q2); Health (social science) (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +14624;18109;"Sociological Spectrum";journal;"02732173, 15210707";"Taylor and Francis Ltd.";No;No;0,384;Q2;53;23;38;1385;66;37;1,36;60,22;46,81;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2026";"Sociology and Political Science (Q2)";"Social Sciences" +14625;6400153143;"Turkish Journal of Pharmaceutical Sciences";journal;"1304530X";"Turkish Pharmacists Association";Yes;No;0,384;Q2;31;40;204;1500;470;203;1,70;37,50;57,02;0;Turkey;Middle East;"Turkish Pharmacists Association";"2006-2025";"Pharmaceutical Science (Q2); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +14626;21101021758;"Forensic Science International: Reports";journal;"26659107";"Elsevier B.V.";Yes;No;0,384;Q3;13;39;144;1342;198;137;1,19;34,41;39,19;1;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Pathology and Forensic Medicine (Q3)";"Medicine" +14627;23855;"Journal of Electrocardiology";journal;"00220736, 15328430";"Elsevier B.V.";No;No;0,384;Q3;75;201;447;3938;669;415;1,61;19,59;29,16;0;United States;Northern America;"Elsevier B.V.";"1968-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +14628;21154;"Journal of Electroceramics";journal;"15738663, 13853449";"Springer Netherlands";No;No;0,384;Q3;89;54;116;3045;267;115;2,01;56,39;34,56;0;Netherlands;Western Europe;"Springer Netherlands";"1997-2026";"Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Materials Chemistry (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +14629;13763;"Journal of Low Temperature Physics";journal;"15737357, 00222291";"Springer New York";No;No;0,384;Q3;74;104;579;3375;625;570;1,19;32,45;23,59;0;United States;Northern America;"Springer New York";"1969-2026";"Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)";"Materials Science; Physics and Astronomy" +14630;21101298941;"Pharmacological Research - Natural Products";journal;"29501997";"Elsevier B.V.";No;No;0,384;Q3;9;310;119;23861;317;119;2,66;76,97;39,39;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Pharmacology (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +14631;29089;"Photonic Network Communications";journal;"1387974X, 15728188";"Springer Netherlands";No;No;0,384;Q3;49;9;71;301;159;70;2,08;33,44;11,11;0;Netherlands;Western Europe;"Springer Netherlands";"1999-2026";"Atomic and Molecular Physics, and Optics (Q3); Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3); Software (Q3)";"Computer Science; Engineering; Physics and Astronomy" +14632;4000151814;"Radiologia Brasileira";journal;"01003984";"Colegio Brasileiro de Radiologia";Yes;No;0,384;Q3;30;44;196;965;207;142;0,77;21,93;30,66;0;Brazil;Latin America;"Colegio Brasileiro de Radiologia";"2006-2025";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +14633;23736;"Research in Economics";journal;"10909451, 10909443";"Academic Press";No;No;0,384;Q3;38;47;124;2326;180;124;1,36;49,49;29,55;0;United States;Northern America;"Academic Press";"1997-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +14634;21100860053;"eTropic";journal;"14482940";"James Cook University";Yes;Yes;0,383;Q1;10;27;78;1161;102;78;1,08;43,00;53,13;0;Australia;Pacific Region;"James Cook University";"2018-2025";"Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Social Sciences (miscellaneous) (Q2); Urban Studies (Q2)";"Arts and Humanities; Social Sciences" +14635;16200154748;"Journal of Roman Archaeology";journal;"10477594, 23315709";"Cambridge University Press";No;No;0,383;Q1;34;12;97;1155;74;97;0,64;96,25;46,67;0;United States;Northern America;"Cambridge University Press";"1994, 2005-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); Classics (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +14636;21100427651;"Language Dynamics and Change";journal;"22105832, 22105824";"Brill Academic Publishers";No;No;0,383;Q1;22;5;18;521;33;18;1,55;104,20;42,86;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2026";"Linguistics and Language (Q1)";"Social Sciences" +14637;5800207780;"Language Matters";journal;"10228195, 17535395";"Taylor and Francis Ltd.";No;No;0,383;Q1;21;23;59;873;84;51;1,36;37,96;41,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2025";"Linguistics and Language (Q1)";"Social Sciences" +14638;21100286862;"Advances in Natural Sciences: Nanoscience and Nanotechnology";journal;"20436262";"IOP Publishing Ltd.";Yes;No;0,383;Q2;73;72;215;3354;563;215;2,68;46,58;40,27;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2010-2025";"Industrial and Manufacturing Engineering (Q2); Electrical and Electronic Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +14639;39604;"British Poultry Science";journal;"00071668, 14661799";"Taylor and Francis Ltd.";No;No;0,383;Q2;113;123;273;6350;522;271;1,82;51,63;41,40;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1960-2026";"Animal Science and Zoology (Q2); Food Science (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Medicine" +14640;25266;"Bulletin of the Belgian Mathematical Society - Simon Stevin";journal;"13701444";"Belgian Mathematical Society";No;No;0,383;Q2;37;36;143;835;95;142;0,66;23,19;19,40;0;Belgium;Western Europe;"Belgian Mathematical Society";"1994-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +14641;21100220469;"Forest Science and Technology";journal;"21580715, 21580103";"Taylor and Francis Ltd.";Yes;No;0,383;Q2;30;47;97;3065;231;94;2,53;65,21;29,76;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Forestry (Q2); Management, Monitoring, Policy and Law (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14642;21100782417;"Global Discourse";journal;"23269995, 20437897";"Bristol University Press";No;No;0,383;Q2;26;25;128;1185;181;65;0,63;47,40;11,76;0;United Kingdom;Western Europe;"Bristol University Press";"2010-2011, 2013-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14643;21100384006;"International Journal of Intelligent Unmanned Systems";journal;"20496427, 20496435";"Emerald Group Publishing Ltd.";No;No;0,383;Q2;19;11;73;341;141;70;2,14;31,00;22,22;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2013-2026";"Automotive Engineering (Q2); Mechanical Engineering (Q2); Economics and Econometrics (Q3); Modeling and Simulation (Q3)";"Economics, Econometrics and Finance; Engineering; Mathematics" +14644;21100855411;"Journal for Social Action in Counseling and Psychology";journal;"21598142";"Ball State University Center for Peace and Conflict Studies";Yes;Yes;0,383;Q2;9;5;34;221;38;34;0,88;44,20;71,43;0;United States;Northern America;"Ball State University Center for Peace and Conflict Studies";"2017-2025";"Sociology and Political Science (Q2); Clinical Psychology (Q3); Education (Q3); Social Psychology (Q3)";"Psychology; Social Sciences" +14645;21101306748;"Journal of Digital Social Research";journal;"20031998";"DIGSUM (Centre for Digital Social Research), Umea University";Yes;No;0,383;Q2;10;17;83;993;151;83;1,66;58,41;55,56;0;Sweden;Western Europe;"DIGSUM (Centre for Digital Social Research), Umea University";"2021-2025";"Communication (Q2); Gender Studies (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14646;21101152758;"Journal of Information Systems Engineering and Business Intelligence";journal;"25986333, 24432555";"Airlangga University";Yes;Yes;0,383;Q2;10;38;53;1861;211;53;3,98;48,97;38,55;0;Indonesia;Asiatic Region;"Airlangga University";"2023-2025";"Computer Science (miscellaneous) (Q2); Information Systems and Management (Q2); Management Information Systems (Q2); Information Systems (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +14647;21100211108;"Journal of Lasers in Medical Sciences";journal;"22286721, 20089783";"Laser Application in Medical Sciences Research Center";Yes;No;0,383;Q2;41;58;220;2068;423;219;1,89;35,66;51,89;0;Iran;Middle East;"Laser Application in Medical Sciences Research Center";"2010-2025";"Dentistry (miscellaneous) (Q2); Dermatology (Q3); Nephrology (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3); Urology (Q3)";"Dentistry; Medicine" +14648;21100916807;"KN - Journal of Cartography and Geographic Information";journal;"25244957, 25244965";"Springer International Publishing AG";No;No;0,383;Q2;17;27;84;977;103;61;1,38;36,19;34,15;0;Switzerland;Western Europe;"Springer International Publishing AG";"2019-2026";"Earth and Planetary Sciences (miscellaneous) (Q2); Earth-Surface Processes (Q2); Computers in Earth Sciences (Q3)";"Earth and Planetary Sciences" +14649;21100898952;"Nature Conservation Research";journal;"2500008X";"Fund for Support and Development of Protected Areas "Bear Land"";Yes;Yes;0,383;Q2;20;26;109;1580;163;109;1,77;60,77;47,47;0;Russian Federation;Eastern Europe;"Fund for Support and Development of Protected Areas "Bear Land"";"2016-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Ecology (Q2); Nature and Landscape Conservation (Q2)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +14650;21100886537;"Operations and Supply Chain Management";journal;"19793561, 25799363";"Operations and Supply Chain Management Forum";Yes;No;0,383;Q2;25;36;125;2518;323;125;2,58;69,94;26,53;0;Indonesia;Asiatic Region;"Operations and Supply Chain Management Forum";"2018-2025";"Information Systems and Management (Q2); Management Information Systems (Q2); Management Science and Operations Research (Q3); Statistics, Probability and Uncertainty (Q3)";"Business, Management and Accounting; Decision Sciences" +14651;21101267107;"Quality Education for All";journal;"29769310";"Emerald Publishing";Yes;No;0,383;Q2;6;33;36;2199;95;36;2,64;66,64;45,95;0;United Kingdom;Western Europe;"Emerald Publishing";"2024-2026";"Education (Q2)";"Social Sciences" +14652;19700201145;"Saudi Journal of Anaesthesia";journal;"1658354X, 09753125";"Wolters Kluwer Medknow Publications";Yes;No;0,383;Q2;41;142;450;2537;503;289;0,95;17,87;36,91;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2011-2026";"Anesthesiology and Pain Medicine (Q2)";"Medicine" +14653;22445;"Annals of Noninvasive Electrocardiology";journal;"1082720X, 1542474X";"Wiley-Blackwell Publishing Ltd";Yes;No;0,383;Q3;61;90;245;1575;288;235;0,95;17,50;36,12;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Physiology (medical) (Q3)";"Medicine" +14654;19620;"Aquatic Microbial Ecology";journal;"16161564, 09483055";"Inter-Research";No;No;0,383;Q3;122;10;37;766;52;37;1,52;76,60;60,00;0;Germany;Western Europe;"Inter-Research";"1995-2025";"Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14655;20500;"Bulletin of Materials Science";journal;"02504707, 09737669";"Indian Academy of Sciences";Yes;No;0,383;Q3;94;153;763;6593;1748;760;2,36;43,09;28,54;0;India;Asiatic Region;"Indian Academy of Sciences";"1979-2026";"Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science" +14656;13374;"Health Physics";journal;"15385159, 00179078";"Lippincott Williams and Wilkins Ltd.";No;No;0,383;Q3;89;172;368;3267;393;317;0,89;18,99;31,05;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1958-2026";"Epidemiology (Q3); Health, Toxicology and Mutagenesis (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Environmental Science; Medicine" +14657;19600157902;"IEEE Magnetics Letters";journal;"19493088, 1949307X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,383;Q3;36;28;120;650;197;120;1,73;23,21;22,22;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2010-2026";"Electronic, Optical and Magnetic Materials (Q3)";"Materials Science" +14658;21101083786;"Infectious Microbes and Diseases";journal;"26415917, 20967241";"Lippincott Williams and Wilkins";Yes;No;0,383;Q3;16;34;88;1644;113;80;1,54;48,35;42,05;0;United States;Northern America;"Lippincott Williams and Wilkins";"2019-2026";"Epidemiology (Q3); Infectious Diseases (Q3); Microbiology (medical) (Q3)";"Medicine" +14659;23197;"Infinite Dimensional Analysis, Quantum Probability and Related Topics";journal;"17936306, 02190257";"World Scientific Publishing Co. Pte Ltd";No;No;0,383;Q3;35;35;83;788;73;81;0,82;22,51;17,14;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1998-2026";"Applied Mathematics (Q3); Mathematical Physics (Q3); Statistical and Nonlinear Physics (Q3); Statistics and Probability (Q3)";"Mathematics; Physics and Astronomy" +14660;21100266502;"Journal of Cryptographic Engineering";journal;"21908516, 21908508";"Springer Science + Business Media";No;No;0,383;Q3;38;23;99;869;207;96;2,00;37,78;16,30;0;United States;Northern America;"Springer Science + Business Media";"2011-2026";"Computer Networks and Communications (Q3); Software (Q3)";"Computer Science" +14661;16007;"Journal of Smooth Muscle Research";journal;"18848796, 09168737";"Japan Society of Smooth Muscle Research";Yes;Yes;0,383;Q3;37;12;21;422;35;21;2,00;35,17;22,22;0;Japan;Asiatic Region;"Japan Society of Smooth Muscle Research";"1991-2025";"Medicine (miscellaneous) (Q3); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +14662;20317;"New Microbiologica";journal;"11217138";"Luigi Ponzio e figlio Editori";No;No;0,383;Q3;49;53;163;1284;216;163;1,27;24,23;51,49;0;Italy;Western Europe;"Luigi Ponzio e figlio Editori";"1993-2025";"Medicine (miscellaneous) (Q3); Microbiology (medical) (Q3)";"Medicine" +14663;28829;"Nursing Economics";journal;"07461739";"Anthony J. Jannetti Inc.";No;No;0,383;Q3;56;0;6;0;6;5;0,00;0,00;0,00;0;United States;Northern America;"Anthony J. Jannetti Inc.";"1983-2022";"Leadership and Management (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +14664;20605;"Revista Portuguesa de Cardiologia";journal;"08702551, 21742030";"Sociedade Portuguesa de Cardiologia";Yes;Yes;0,383;Q3;34;127;517;3053;441;279;0,92;24,04;43,98;1;Portugal;Western Europe;"Sociedade Portuguesa de Cardiologia";"1970, 1982-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +14665;28430;"Scientia Marina";journal;"18868134, 02148358";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,383;Q3;81;8;65;392;104;63;1,71;49,00;35,48;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1996-2025";"Aquatic Science (Q3); Oceanography (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +14666;5000158507;"Proceedings - IEEE International Conference on Mobile Data Management";conference and proceedings;"15516245";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,383;-;51;50;225;996;288;189;1,39;19,92;25,60;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2002, 2006-2011, 2013-2016, 2018-2025";"Engineering (miscellaneous)";"Engineering" +14667;21101185302;"Al-Ahwal";journal;"2085627X, 25286617";"Al-Ahwal Research Centre Department of Islamic Family Law, Faculty of Sharia and Law, UIN Sunan Kalijaga";Yes;No;0,382;Q1;8;5;48;227;50;48;1,28;45,40;36,36;0;Indonesia;Asiatic Region;"Al-Ahwal Research Centre Department of Islamic Family Law, Faculty of Sharia and Law, UIN Sunan Kalijaga";"2019-2025";"Arts and Humanities (miscellaneous) (Q1); Religious Studies (Q1); Gender Studies (Q2); Law (Q2)";"Arts and Humanities; Social Sciences" +14668;21101198450;"Ancient Iranian Studies";journal;"28212215, 28212223";"Tissaphernes Archaeological Research Group";No;No;0,382;Q1;5;10;56;296;38;56;0,87;29,60;25,00;0;Iran;Middle East;"Tissaphernes Archaeological Research Group";"2022-2026";"Archeology (arts and humanities) (Q1); History (Q1); Linguistics and Language (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +14669;21101028070;"Interiority";journal;"26153386, 26146584";"Faculty of Engineering, Universitas Indonesia";Yes;Yes;0,382;Q1;10;14;42;502;64;37;1,04;35,86;70,83;0;Indonesia;Asiatic Region;"Faculty of Engineering, Universitas Indonesia";"2018-2026";"Architecture (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Engineering; Social Sciences" +14670;21100842159;"International Review of Applied Sciences and Engineering";journal;"20620810, 20634269";"Akademiai Kiado";Yes;No;0,382;Q1;18;43;117;1797;303;117;3,20;41,79;27,27;0;Hungary;Eastern Europe;"Akademiai Kiado";"2017-2026";"Architecture (Q1); Engineering (miscellaneous) (Q2); Environmental Engineering (Q3); Information Systems (Q3); Management Science and Operations Research (Q3); Materials Science (miscellaneous) (Q3)";"Computer Science; Decision Sciences; Engineering; Environmental Science; Materials Science" +14671;28227;"Asian Pacific Journal of Social Work";journal;"02185385";"Routledge";No;No;0,382;Q2;22;0;55;0;69;47;1,15;0,00;0,00;0;United Kingdom;Western Europe;"Routledge";"1991-2024";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14672;21101289969;"Frontiers in Amphibian and Reptile Science";journal;"28136780";"Frontiers Media SA";Yes;No;0,382;Q2;4;21;12;1011;22;12;1,83;48,14;43,56;0;Switzerland;Western Europe;"Frontiers Media SA";"2023, 2025-2026";"Animal Science and Zoology (Q2); Nature and Landscape Conservation (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14673;4700152702;"International Journal of Geometric Methods in Modern Physics";journal;"17936977, 02198878";"World Scientific Publishing Co. Pte Ltd";No;No;0,382;Q2;49;510;785;29212;1907;782;2,63;57,28;26,07;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2005-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +14674;80835;"Journal of Agricultural and Resource Economics";journal;"10685502";"Colorado State University";Yes;No;0,382;Q2;60;42;92;2404;117;92;0,95;57,24;32,41;0;United States;Northern America;"Colorado State University";"1996-2026";"Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Economics and Econometrics (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +14675;21100244628;"Journal of Berry Research";journal;"18785093, 18785123";"SAGE Publications Ltd";No;No;0,382;Q2;40;24;74;1362;141;74;2,55;56,75;41,21;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2010-2026";"Agronomy and Crop Science (Q2); Horticulture (Q2); Plant Science (Q2); Soil Science (Q2); Biochemistry (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +14676;21100852994;"Journal of Micro and Nano-Manufacturing";journal;"21660468, 21660476";"The American Society of Mechanical Engineers(ASME)";No;No;0,382;Q2;23;0;43;0;65;42;1,11;0,00;0,00;0;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"2013-2024";"Industrial and Manufacturing Engineering (Q2); Mechanics of Materials (Q3); Process Chemistry and Technology (Q3)";"Chemical Engineering; Engineering" +14677;19500157812;"Legume Research";journal;"02505371, 09760571";"Agricultural Research Communication Centre";No;No;0,382;Q2;28;313;818;8428;1047;818;1,27;26,93;32,33;0;India;Asiatic Region;"Agricultural Research Communication Centre";"2008-2025";"Agronomy and Crop Science (Q2); Plant Science (Q2); Soil Science (Q2)";"Agricultural and Biological Sciences" +14678;29244;"Physics-Uspekhi";journal;"10637869, 14684780";"";No;No;0,382;Q2;97;88;248;8452;458;240;1,57;96,05;21,82;0;Russian Federation;Eastern Europe;"";"1993-2025";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +14679;21100913887;"Sociology of Development";journal;"2374538X";"University of California Press";No;No;0,382;Q2;12;12;53;1023;72;53;1,47;85,25;52,63;0;United States;Northern America;"University of California Press";"2019-2026";"Development (Q2)";"Social Sciences" +14680;21530;"Space and Polity";journal;"14701235, 13562576";"Routledge";No;No;0,382;Q2;49;19;55;965;104;52;1,95;50,79;23,33;0;United Kingdom;Western Europe;"Routledge";"1997-2026";"Geography, Planning and Development (Q2); Political Science and International Relations (Q2)";"Social Sciences" +14681;24142;"Artificial Life";journal;"10645462, 15309185";"MIT Press";No;No;0,382;Q3;68;21;108;302;153;93;1,63;14,38;16,67;0;United States;Northern America;"MIT Press";"1995, 1997-2025";"Artificial Intelligence (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Computer Science" +14682;25262;"Beitrage zur Algebra und Geometrie";journal;"01384821, 21910383";"";No;No;0,382;Q3;25;90;156;1749;96;155;0,60;19,43;22,15;0;Germany;Western Europe;"";"2000-2002, 2004-2026";"Algebra and Number Theory (Q3); Geometry and Topology (Q3)";"Mathematics" +14683;21100828959;"European Education";journal;"19447086, 10564934";"Routledge";No;No;0,382;Q3;25;41;42;2458;73;41;1,93;59,95;65,00;0;United Kingdom;Western Europe;"Routledge";"1996-2013, 2015-2026";"Education (Q3)";"Social Sciences" +14684;21101248692;"Frontiers in Gastroenterology";journal;"28131169";"Frontiers Media SA";Yes;No;0,382;Q3;8;37;131;1317;166;120;1,17;35,59;38,05;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Gastroenterology (Q3); Hepatology (Q3)";"Medicine" +14685;14737;"International Journal of Artificial Organs";journal;"03913988, 17246040";"Wichtig Publishing Srl";No;No;0,382;Q3;67;92;302;2240;495;290;1,65;24,35;38,76;0;Italy;Western Europe;"Wichtig Publishing Srl";"1978-2026";"Bioengineering (Q3); Biomaterials (Q3); Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)";"Chemical Engineering; Engineering; Materials Science; Medicine" +14686;23914;"Journal of Integer Sequences";journal;"15307638";"University of Waterloo";Yes;No;0,382;Q3;33;64;203;974;102;199;0,45;15,22;18,46;0;Canada;Northern America;"University of Waterloo";"1998-2026";"Discrete Mathematics and Combinatorics (Q3)";"Mathematics" +14687;21100332242;"Journal of Low Power Electronics and Applications";journal;"20799268";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,382;Q3;30;71;187;2837;448;186;2,23;39,96;20,56;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2025";"Electrical and Electronic Engineering (Q3)";"Engineering" +14688;15415;"Phi Delta Kappan";journal;"19406487, 00317217";"SAGE Publications Inc.";No;No;0,382;Q3;75;73;396;717;319;224;0,63;9,82;52,94;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1981, 1984, 1993-1994, 1996-2025";"Education (Q3)";"Social Sciences" +14689;21100891195;"Proceedings of the Institution of Mechanical Engineers, Part N: Journal of Nanomaterials, Nanoengineering and Nanosystems";journal;"23977922, 23977914";"SAGE Publications Ltd";No;No;0,382;Q3;29;96;86;4780;267;86;2,91;49,79;26,32;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2016-2026";"Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science; Physics and Astronomy" +14690;17913;"Techniques in Vascular and Interventional Radiology";journal;"15579808, 10892516";"W.B. Saunders";No;No;0,382;Q3;55;45;125;1645;186;115;1,57;36,56;25,00;0;United States;Northern America;"W.B. Saunders";"1998-2025";"Cardiology and Cardiovascular Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +14691;13588;"Americas";journal;"15336247, 00031615";"Cambridge University Press";No;No;0,381;Q1;23;20;56;1686;35;53;0,54;84,30;20,00;1;United States;Northern America;"Cambridge University Press";"1962, 1965, 1967-1969, 1971, 1973, 1975-1978, 1980-1983, 1985-1989, 1991-1997, 1999-2026";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +14692;21100205108;"Archeological Papers of the American Anthropological Association";book series;"1551823X, 15518248";"Wiley-VCH Verlag";No;No;0,381;Q1;38;0;33;0;24;33;0,78;0,00;0,00;0;Germany;Western Europe;"Wiley-VCH Verlag";"1989-1990, 1992-1995, 1997-1999, 2001-2024";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +14693;21100945718;"Revista Tradumatica";journal;"15787559";"Universitat Autonoma de Barcelona";Yes;Yes;0,381;Q1;10;0;54;0;65;54;1,41;0,00;0,00;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2019-2024, 2026";"Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +14694;21100777275;"Folia Horticulturae";journal;"08671761, 20835965";"De Gruyter Open Ltd";Yes;No;0,381;Q2;26;20;89;1125;180;89;1,76;56,25;35,64;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2016-2026";"Horticulture (Q2)";"Agricultural and Biological Sciences" +14695;21100868400;"Journal of Applied Journalism and Media Studies";journal;"20010818, 20499531";"Intellect Ltd.";No;No;0,381;Q2;14;31;69;1494;55;62;0,70;48,19;46,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2016, 2018-2026";"Communication (Q2)";"Social Sciences" +14696;21100456777;"Journal of Demographic Economics";journal;"20540892, 20540906";"Cambridge University Press";No;No;0,381;Q2;20;28;79;1503;105;77;1,12;53,68;40,74;2;United Kingdom;Western Europe;"Cambridge University Press";"2015-2026";"Demography (Q2); Geography, Planning and Development (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +14697;16278;"Journal of Energy Engineering";journal;"19437897, 07339402";"American Society of Civil Engineers (ASCE)";No;No;0,381;Q2;43;98;171;4431;411;170;2,62;45,21;30,73;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1982-2026";"Nuclear Energy and Engineering (Q2); Civil and Structural Engineering (Q3); Energy Engineering and Power Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3); Waste Management and Disposal (Q3)";"Energy; Engineering; Environmental Science" +14698;26724;"Journal of the American Society for Horticultural Science";journal;"00031062, 23279788";"American Society for Horticultural Science";Yes;No;0,381;Q2;102;35;101;1706;149;101;1,48;48,74;35,03;0;United States;Northern America;"American Society for Horticultural Science";"1970-1981, 1983-2026";"Horticulture (Q2); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +14699;15726;"Kolner Zeitschrift fur Soziologie und Sozialpsychologie";journal;"00232653, 1861891X";"Forschungsinstitut fur Soziologie";No;No;0,381;Q2;44;37;111;3069;169;101;1,13;82,95;47,89;0;Germany;Western Europe;"Forschungsinstitut fur Soziologie";"1983, 1988-1989, 1992-1993, 1996-2026";"Sociology and Political Science (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +14700;5600153109;"Sociologica";journal;"19718853";"University of Bologna";Yes;Yes;0,381;Q2;24;28;82;1320;102;81;1,36;47,14;56,52;0;Italy;Western Europe;"University of Bologna";"2013-2025";"Sociology and Political Science (Q2)";"Social Sciences" +14701;146161;"Acta Cirurgica Brasileira";journal;"01028650, 16782674";"Sociedade Brasileira para o Desenvolvimento de Pesquisa em Cirurgia";Yes;No;0,381;Q3;42;84;253;2168;421;251;1,52;25,81;39,45;0;Brazil;Latin America;"Sociedade Brasileira para o Desenvolvimento de Pesquisa em Cirurgia";"2002-2026";"Surgery (Q3)";"Medicine" +14702;95292;"Annals of Thoracic and Cardiovascular Surgery";journal;"21861005, 13411098";"Japanese Association for Coronary Artery Surgery";Yes;No;0,381;Q3;51;55;175;1048;244;172;1,30;19,05;16,30;0;Japan;Asiatic Region;"Japanese Association for Coronary Artery Surgery";"1998-2026";"Cardiology and Cardiovascular Medicine (Q3); Gastroenterology (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3); Surgery (Q3)";"Medicine" +14703;21101215112;"International Journal of Energy and Water Resources";journal;"25383604, 25220101";"Springer";No;No;0,381;Q3;22;168;120;9267;336;120;2,75;55,16;23,60;1;Singapore;Asiatic Region;"Springer";"2018-2026";"Energy Engineering and Power Technology (Q3); Energy (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q3); Water Science and Technology (Q3)";"Energy; Environmental Science" +14704;4000151815;"International Journal of Internet Marketing and Advertising";journal;"14775212, 17418100";"Inderscience Enterprises Ltd";No;No;0,381;Q3;29;39;110;3434;229;110;1,85;88,05;34,41;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2026";"Marketing (Q3)";"Business, Management and Accounting" +14705;28075;"International Journal of Modern Physics B";journal;"02179792, 17936578";"World Scientific";No;No;0,381;Q3;90;368;1123;16360;2995;1120;3,05;44,46;30,62;0;Singapore;Asiatic Region;"World Scientific";"1993, 1996-2026";"Condensed Matter Physics (Q3); Statistical and Nonlinear Physics (Q3)";"Physics and Astronomy" +14706;12671;"Mental Health, Religion and Culture";journal;"14699737, 13674676";"Routledge";No;No;0,381;Q3;60;33;223;1518;250;213;0,86;46,00;50,52;0;United Kingdom;Western Europe;"Routledge";"2000-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +14707;21101290575;"Muscles";journal;"28130413";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,381;Q3;7;63;82;3611;124;77;1,55;57,32;43,66;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Medicine (miscellaneous) (Q3); Pharmacology (Q3); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +14708;15876;"New Zealand Medical Journal";journal;"00288446, 11758716";"Pasifika Medical Association Group";No;No;0,381;Q3;62;231;726;4942;635;530;0,76;21,39;54,27;5;New Zealand;Pacific Region;"Pasifika Medical Association Group";"1945-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +14709;21101307223;"Surgical Oncology Insight";journal;"29502470";"Elsevier B.V.";No;No;0,381;Q3;5;72;86;2567;100;85;1,16;35,65;42,86;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Oncology (Q3)";"Medicine" +14710;14822;"Xenobiotica";journal;"00498254, 13665928";"Taylor and Francis Ltd.";No;No;0,381;Q3;95;71;252;3314;368;250;1,62;46,68;44,83;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Biochemistry (Q3); Health, Toxicology and Mutagenesis (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Toxicology (Q3)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +14711;5600155035;"Angelaki - Journal of the Theoretical Humanities";journal;"0969725X, 14692899";"Routledge";No;No;0,380;Q1;29;68;204;2268;109;178;0,57;33,35;38,57;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Cultural Studies (Q1); Literature and Literary Theory (Q1); Philosophy (Q1)";"Arts and Humanities; Social Sciences" +14712;21100889869;"Antropologicheskij Forum";journal;"18158889, 18158870";"Peter the Great Museum of Anthropology and Ethnography (Kunstkamera), Russian Academy of Sciences";No;No;0,380;Q1;6;25;89;1130;32;86;0,35;45,20;63,89;0;Russian Federation;Eastern Europe;"Peter the Great Museum of Anthropology and Ethnography (Kunstkamera), Russian Academy of Sciences";"2018-2025";"Anthropology (Q1); Cultural Studies (Q1)";"Social Sciences" +14713;21101170301;"Geomorfologiya i Paleogeografiya";journal;"29491797, 29491789";"Russian Academy of Sciences";No;No;0,380;Q1;13;48;125;2071;127;123;1,27;43,15;46,79;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2023-2025";"Archeology (arts and humanities) (Q1); Earth and Planetary Sciences (miscellaneous) (Q2); Earth-Surface Processes (Q2); Geology (Q3); Space and Planetary Science (Q3)";"Arts and Humanities; Earth and Planetary Sciences" +14714;13375;"Psicologica";journal;"02112159, 15768597";"";Yes;Yes;0,380;Q1;24;5;27;312;23;27;0,81;62,40;38,89;0;Spain;Western Europe;"";"2004-2025";"Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q3); Experimental and Cognitive Psychology (Q3); Psychology (miscellaneous) (Q3); Statistics and Probability (Q3)";"Arts and Humanities; Mathematics; Psychology" +14715;17171;"Slavery and Abolition";journal;"17439523, 0144039X";"Routledge";No;No;0,380;Q1;34;57;124;2579;89;114;0,63;45,25;42,62;0;United Kingdom;Western Europe;"Routledge";"1980-2026";"History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +14716;24573;"Aequationes Mathematicae";journal;"00019054, 14208903";"Springer International Publishing";No;No;0,380;Q2;42;160;247;3162;222;247;0,93;19,76;23,05;0;Switzerland;Western Europe;"Springer International Publishing";"1968-2026";"Mathematics (miscellaneous) (Q2); Applied Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3)";"Mathematics" +14717;20974;"Ardea";journal;"03732266";"Nederlandse Ornithologische Unie";No;No;0,380;Q2;55;13;78;624;81;74;1,12;48,00;33,33;0;Netherlands;Western Europe;"Nederlandse Ornithologische Unie";"1981-1985, 1987, 1990-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14718;6400153108;"Artery Research";journal;"18764401, 18729312";"BioMed Central Ltd";Yes;No;0,380;Q2;26;29;44;1403;74;43;1,48;48,38;41,71;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2006-2026";"Anatomy (Q2); Cardiology and Cardiovascular Medicine (Q3); Physiology (medical) (Q3)";"Medicine" +14719;19200156956;"Asian Economic Papers";journal;"15360083, 15353516";"MIT Press";No;No;0,380;Q2;25;13;74;192;76;67;0,66;14,77;30,00;2;United States;Northern America;"MIT Press";"2008-2025";"Political Science and International Relations (Q2); Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance; Social Sciences" +14720;21101055871;"Bulletin for International Taxation";journal;"18195490, 23529202";"International Bureau of Fiscal Documentation (IBFD)";No;No;0,380;Q2;7;35;135;1061;37;132;0,20;30,31;27,42;0;Netherlands;Western Europe;"International Bureau of Fiscal Documentation (IBFD)";"2019-2025";"Law (Q2); Accounting (Q3); Economics and Econometrics (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +14721;21100787833;"CIRIEC-Espana Revista de Economia Publica, Social y Cooperativa";journal;"19896816, 02138093";"CIRIEC";Yes;Yes;0,380;Q2;20;37;102;2314;167;102;1,84;62,54;37,50;0;Spain;Western Europe;"CIRIEC";"2015-2025";"Sociology and Political Science (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +14722;25823;"Complexity";journal;"10762787, 10990526";"John Wiley and Sons Inc";Yes;No;0,380;Q2;93;84;877;3762;2015;872;1,85;44,79;24,62;0;United States;Northern America;"John Wiley and Sons Inc";"1995-2026";"Computer Science (miscellaneous) (Q2); Multidisciplinary (Q2)";"Computer Science; Multidisciplinary" +14723;21101184513;"Compositionality";journal;"26314444";"";No;No;0,380;Q2;6;6;19;168;24;19;1,36;28,00;15,38;0;United States;Northern America;"";"2019-2025";"Mathematics (miscellaneous) (Q2); Computational Theory and Mathematics (Q3)";"Computer Science; Mathematics" +14724;11600153671;"Democracy and Security";journal;"15555860, 17419166";"Taylor and Francis Ltd.";No;No;0,380;Q2;19;34;52;1938;94;51;2,25;57,00;21,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Political Science and International Relations (Q2); Safety Research (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14725;21100872806;"Environmental and Socio-Economic Studies";journal;"23540079";"De Gruyter Open Ltd";Yes;Yes;0,380;Q2;15;25;75;1384;144;75;1,70;55,36;40,00;0;Germany;Western Europe;"De Gruyter Open Ltd";"2018-2025";"Geography, Planning and Development (Q2); Nature and Landscape Conservation (Q2); Urban Studies (Q2); Management, Monitoring, Policy and Law (Q3); Pollution (Q3)";"Environmental Science; Social Sciences" +14726;21100201980;"For the Learning of Mathematics";journal;"02280671";"FLM Publishing Association";No;No;0,380;Q2;20;42;93;473;45;40;0,39;11,26;45,45;0;Canada;Northern America;"FLM Publishing Association";"2011-2025";"Mathematics (miscellaneous) (Q2); Education (Q3)";"Mathematics; Social Sciences" +14727;21101073270;"Frontiers of Oral and Maxillofacial Medicine";journal;"2664777X";"AME Publishing Company";No;No;0,380;Q2;10;30;116;1358;155;109;1,07;45,27;41,18;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2019-2025";"Oral Surgery (Q2); Otorhinolaryngology (Q3); Surgery (Q3)";"Dentistry; Medicine" +14728;21101358081;"International Journal of Automotive Manufacturing and Materials";journal;"2653777X";"Scilight Press Pty. Ltd";No;No;0,380;Q2;8;25;61;1004;144;59;2,02;40,16;32,00;0;Australia;Pacific Region;"Scilight Press Pty. Ltd";"2022-2025";"Automotive Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Energy Engineering and Power Technology (Q3); Materials Science (miscellaneous) (Q3)";"Energy; Engineering; Materials Science" +14729;21101039864;"International Journal of Clinical Pediatric Dentistry";journal;"09751904, 09747052";"Jaypee Brothers Medical Publishers (P) Ltd";No;No;0,380;Q2;23;269;670;6507;969;668;1,19;24,19;61,36;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2019-2026";"Oral Surgery (Q2); Orthodontics (Q2); Periodontics (Q2); Pediatrics, Perinatology and Child Health (Q3)";"Dentistry; Medicine" +14730;21100235612;"International Journal of Technology";journal;"20869614, 20872100";"Faculty of Engineering, Universitas Indonesia";Yes;No;0,380;Q2;32;154;511;7540;1224;509;2,33;48,96;37,02;0;Indonesia;Asiatic Region;"Faculty of Engineering, Universitas Indonesia";"2010-2026";"Engineering (miscellaneous) (Q2); Multidisciplinary (Q2); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Engineering; Multidisciplinary" +14731;21101064978;"Nanomedicine Journal";journal;"23223049, 23225904";"Mashhad University of Medical Sciences";Yes;No;0,380;Q2;18;42;103;2463;253;103;2,30;58,64;47,59;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2019-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Biomedical Engineering (Q3); Materials Science (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Bioengineering (Q4)";"Chemical Engineering; Engineering; Materials Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +14732;4700152283;"Revista de Ciencias Farmaceuticas Basica e Aplicada";journal;"2179443X, 18084532";"Universidade Estadual Paulista (UNESP)";Yes;No;0,380;Q2;22;0;11;0;32;10;0,00;0,00;0,00;0;Brazil;Latin America;"Universidade Estadual Paulista (UNESP)";"2005-2022";"Pharmaceutical Science (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +14733;11700154610;"Salamandra";journal;"00363375";"Deutsche Gesellschaft fur Herpetologie, Und Terrarienkunde";No;No;0,380;Q2;25;41;83;2055;107;60;1,30;50,12;29,37;0;Germany;Western Europe;"Deutsche Gesellschaft fur Herpetologie, Und Terrarienkunde";"2008-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14734;19510;"Veterinary Clinics of North America - Equine Practice";journal;"15584224, 07490739";"W.B. Saunders";No;No;0,380;Q2;68;47;139;2440;195;120;1,18;51,91;69,49;0;United States;Northern America;"W.B. Saunders";"1985-2026";"Equine (Q2)";"Veterinary" +14735;19552;"Veterinary Record";journal;"00424900, 20427670";"John Wiley and Sons Inc";Yes;No;0,380;Q2;119;968;2752;5150;971;776;0,32;5,32;60,16;5;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1945-1951, 1961, 1965-2026";"Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +14736;26775;"Acta Oceanologica Sinica";journal;"18691099, 0253505X";"Springer Verlag";No;No;0,380;Q3;43;133;490;7748;735;486;1,41;58,26;36,42;0;China;Asiatic Region;"Springer Verlag";"1985-1993, 1996-2026";"Aquatic Science (Q3); Oceanography (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +14737;24588;"Annales Zoologici";journal;"00034541";"Muzeum i Instytut Zoologii";No;No;0,380;Q3;34;48;155;1611;124;155;0,80;33,56;24,14;0;Poland;Eastern Europe;"Muzeum i Instytut Zoologii";"1996-2025";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14738;21100857388;"Atoms";journal;"22182004";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,380;Q3;31;98;380;4482;463;373;1,34;45,73;23,90;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Nuclear and High Energy Physics (Q3)";"Physics and Astronomy" +14739;21100996098;"Canadian Journal of Educational Administration and Policy";journal;"12077798";"University of Saskatchewan, Department of Educational Administration, College of Education";Yes;No;0,380;Q3;8;18;69;948;81;68;1,10;52,67;45,95;0;Canada;Northern America;"University of Saskatchewan, Department of Educational Administration, College of Education";"2020-2025";"Education (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +14740;17972;"Diatom Research";journal;"21598347, 0269249X";"Taylor and Francis Ltd.";No;No;0,380;Q3;44;29;56;1742;67;52;1,32;60,07;37,04;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2026";"Aquatic Science (Q3)";"Agricultural and Biological Sciences" +14741;13541;"Dreaming";journal;"10530797, 15733351";"American Psychological Association";No;No;0,380;Q3;49;29;104;1093;117;104;0,84;37,69;51,43;0;United States;Northern America;"American Psychological Association";"1993-1994, 1996-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +14742;21101251206;"Electrical Measurement and Instrumentation";book series;"10011390";"";Yes;No;0,380;Q3;20;238;963;5902;1609;963;1,94;24,80;32,74;0;China;Asiatic Region;"";"2020-2025";"Electrical and Electronic Engineering (Q3)";"Engineering" +14743;21101303340;"Exploration of Foods and Foodomics";journal;"28379020";"Open Exploration Publishing Inc";Yes;No;0,380;Q3;8;44;63;2501;185;62;2,94;56,84;33,12;0;China;Asiatic Region;"Open Exploration Publishing Inc";"2023-2026";"Chemical Health and Safety (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Chemical Engineering" +14744;21101197407;"Frontiers in Urology";journal;"26739828";"Frontiers Media SA";Yes;No;0,380;Q3;8;31;168;916;185;150;1,37;29,55;30,95;0;Switzerland;Western Europe;"Frontiers Media SA";"2021-2026";"Urology (Q3)";"Medicine" +14745;5300152528;"Journal of Essential Oil-Bearing Plants";journal;"0972060X";"Taylor and Francis Ltd.";No;No;0,380;Q3;48;98;333;5545;849;333;2,53;56,58;42,21;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Analytical Chemistry (Q3); Biochemistry (Q3); Organic Chemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +14746;13028;"Journal of Medical Ultrasonics (Singapore)";journal;"16132254, 13464523";"Springer";No;No;0,380;Q3;29;72;304;1167;329;227;0,95;16,21;27,43;0;Singapore;Asiatic Region;"Springer";"2003-2026";"Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +14747;21100215171;"Journal of Pregnancy";journal;"20902735, 20902727";"John Wiley and Sons Ltd";Yes;No;0,380;Q3;48;14;59;451;106;59;1,79;32,21;51,76;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +14748;21101044918;"Minerva Obstetrics and Gynecology";journal;"27246450, 2724606X";"Edizioni Minerva Medica";No;No;0,380;Q3;44;76;226;2778;250;207;1,07;36,55;52,35;0;Italy;Western Europe;"Edizioni Minerva Medica";"2021-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +14749;21101022436;"Multiscale and Multidisciplinary Modeling, Experiments and Design";journal;"25208179, 25208160";"Springer Science and Business Media B.V.";No;No;0,380;Q3;25;436;505;24466;1535;504;3,09;56,11;23,46;0;Switzerland;Western Europe;"Springer Science and Business Media B.V.";"2018-2026";"Applied Mathematics (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Mathematics" +14750;13823;"Noise and Health";journal;"14631741, 19984030";"Wolters Kluwer Medknow Publications";Yes;No;0,380;Q3;63;127;139;4264;264;138;1,45;33,57;53,59;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2002-2025";"Otorhinolaryngology (Q3); Public Health, Environmental and Occupational Health (Q3); Speech and Hearing (Q3)";"Health Professions; Medicine" +14751;19700187610;"Pedagogies";journal;"15544818, 1554480X";"Taylor and Francis Ltd.";No;No;0,380;Q3;25;50;96;2437;220;87;1,96;48,74;51,40;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Education (Q3)";"Social Sciences" +14752;16941;"Physiotherapy Canada";journal;"03000508";"University of Toronto Press";No;No;0,380;Q3;43;69;171;2033;154;110;0,91;29,46;70,90;0;Canada;Northern America;"University of Toronto Press";"1973-1995, 2009-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions" +14753;15130;"Strabismus";journal;"09273972, 17445132";"Taylor and Francis Ltd.";No;No;0,380;Q3;40;73;100;1517;106;96;1,03;20,78;50,93;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Ophthalmology (Q3)";"Medicine" +14754;17500154901;"Progress in Molecular Biology and Translational Science";book series;"18771173, 18780814";"Elsevier B.V.";No;No;0,380;Q4;124;100;297;11641;949;36;2,36;116,41;35,65;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2026";"Molecular Biology (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology" +14755;21100793123;"Journal of College Reading and Learning";journal;"10790195, 23327413";"Taylor and Francis Ltd.";No;No;0,379;Q1;25;15;55;811;69;47;1,09;54,07;44,19;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2013, 2015-2026";"Linguistics and Language (Q1); Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +14756;145723;"Philosophia Mathematica";journal;"00318019, 17446406";"Oxford University Press";No;No;0,379;Q1;27;16;35;767;32;35;1,04;47,94;27,59;0;United Kingdom;Western Europe;"Oxford University Press";"1964-1970, 1972-1976, 1978, 1980, 1986-1989, 1991, 1993-1996, 1999, 2001, 2004-2025";"Philosophy (Q1); Mathematics (miscellaneous) (Q2)";"Arts and Humanities; Mathematics" +14757;21100923616;"Study Abroad Research in Second Language Acquisition and International Education";journal;"24055530, 24055522";"John Benjamins Publishing Company";No;No;0,379;Q1;13;13;33;846;51;32;1,67;65,08;60,87;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2016-2025";"Linguistics and Language (Q1); Education (Q3)";"Social Sciences" +14758;21101318131;"Agricultural and Rural Studies";journal;"29599784";"SCC PRESS";No;No;0,379;Q2;6;22;42;1413;96;39;2,29;64,23;36,92;0;Hong Kong;Asiatic Region;"SCC PRESS";"2023-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Gender Studies (Q2); Geography, Planning and Development (Q2)";"Economics, Econometrics and Finance; Social Sciences" +14759;21100381208;"Contemporary Clinical Dentistry";journal;"09762361, 0976237X";"Wolters Kluwer Medknow Publications";Yes;No;0,379;Q2;44;61;177;1061;265;168;1,17;17,39;49,71;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2012-2025";"Oral Surgery (Q2); Orthodontics (Q2); Periodontics (Q2)";"Dentistry" +14760;21101134735;"Data Science";journal;"24518484, 24518492";"SAGE Publications Ltd";Yes;No;0,379;Q2;14;4;27;169;58;26;1,29;42,25;25,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2017, 2019-2024";"Computer Science (miscellaneous) (Q2); Artificial Intelligence (Q3); Computational Mathematics (Q3); Information Systems (Q3); Modeling and Simulation (Q3); Statistics and Probability (Q3)";"Computer Science; Mathematics" +14761;21101149360;"Egyptian Journal of Soil Science";journal;"23570369, 03026701";"National Information and Documentation Centre";No;No;0,379;Q2;17;124;181;8222;568;181;3,25;66,31;32,59;0;Egypt;Africa/Middle East;"National Information and Documentation Centre";"2013-2025";"Soil Science (Q2); Environmental Chemistry (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14762;5600155948;"European Law Journal";journal;"14680386, 13515993";"Wiley-Blackwell Publishing Ltd";No;No;0,379;Q2;73;16;86;298;140;72;1,75;18,63;62,96;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1995-2025";"Law (Q2)";"Social Sciences" +14763;83742;"Hong Kong Journal of Occupational Therapy";journal;"18764398, 15691861";"SAGE Publications Inc.";Yes;Yes;0,379;Q2;24;20;46;799;84;44;1,68;39,95;51,85;0;Singapore;Asiatic Region;"SAGE Publications Inc.";"2002-2026";"Occupational Therapy (Q2)";"Health Professions" +14764;4700152208;"International Journal of Humanoid Robotics";journal;"17936942, 02198436";"World Scientific Publishing Co. Pte Ltd";No;No;0,379;Q2;45;36;77;1396;195;73;2,84;38,78;30,84;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2004-2026";"Mechanical Engineering (Q2); Artificial Intelligence (Q3)";"Computer Science; Engineering" +14765;19700201141;"Journal of Ayurveda and Integrative Medicine";journal;"09759476, 09762809";"Elsevier B.V.";Yes;No;0,379;Q2;46;157;447;5424;994;403;2,23;34,55;42,19;0;Netherlands;Western Europe;"Elsevier B.V.";"2010-2026";"Complementary and Alternative Medicine (Q2); Drug Discovery (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +14766;28204;"Journal of Continuing Education in Nursing";journal;"00220124, 19382472";"Slack Incorporated";No;No;0,379;Q2;51;104;318;1539;318;273;0,98;14,80;72,58;0;United States;Northern America;"Slack Incorporated";"1970-2026";"Nursing (miscellaneous) (Q2); Review and Exam Preparation (Q2); Education (Q3)";"Nursing; Social Sciences" +14767;21100912213;"Nursing Practice Today";journal;"23831154, 23831162";"Tehran University of Medical Sciences";Yes;Yes;0,379;Q2;14;40;120;1288;164;102;1,34;32,20;55,83;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2026";"Nursing (miscellaneous) (Q2)";"Nursing" +14768;21101040698;"South African Journal of Bioethics and Law";journal;"19997639";"South African Medical Association";Yes;No;0,379;Q2;8;27;78;531;82;51;0,96;19,67;59,09;0;South Africa;Africa;"South African Medical Association";"2019-2025";"Health Professions (miscellaneous) (Q2); Law (Q2); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Health Professions; Medicine; Social Sciences" +14769;17878;"Willdenowia";journal;"18686397, 05119618";"Botanischer Garten und Botanisches Museum Berlin-Dahlem";No;No;0,379;Q2;22;14;39;936;55;39;1,60;66,86;28,95;0;Germany;Western Europe;"Botanischer Garten und Botanisches Museum Berlin-Dahlem";"1985-1989, 1991-1997, 2011-2025";"Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14770;21100975685;"Annals of Financial Economics";journal;"20104952, 20104960";"World Scientific";No;No;0,379;Q3;23;24;74;1369;233;73;2,78;57,04;21,05;0;Singapore;Asiatic Region;"World Scientific";"2005-2009, 2011-2026";"Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +14771;24080;"Heterocyclic Communications";journal;"07930283, 21910197";"Walter de Gruyter GmbH";Yes;No;0,379;Q3;31;4;43;336;101;43;2,21;84,00;61,11;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1994-2026";"Organic Chemistry (Q3)";"Chemistry" +14772;26903;"High Temperature Materials and Processes";journal;"21910324, 03346455";"Walter de Gruyter GmbH";Yes;No;0,379;Q3;34;32;191;1064;430;191;1,94;33,25;27,97;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1984, 1986-2026";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +14773;144811;"International Journal of Construction Education and Research";journal;"15578771, 15503984";"Routledge";No;No;0,379;Q3;32;50;84;3092;180;72;2,24;61,84;29,31;0;United Kingdom;Western Europe;"Routledge";"2004, 2006-2026";"Building and Construction (Q3); Education (Q3)";"Engineering; Social Sciences" +14774;21100210905;"i-Perception";journal;"20416695";"SAGE Publications Ltd";Yes;No;0,379;Q3;47;59;150;2423;212;149;1,03;41,07;33,33;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2010-2026";"Artificial Intelligence (Q3); Experimental and Cognitive Psychology (Q3); Ophthalmology (Q3); Sensory Systems (Q4)";"Computer Science; Medicine; Neuroscience; Psychology" +14775;21100200826;"Journal of Human Sport and Exercise";journal;"19885202";"Asociacion Espanola de Analisis del Rendimiento Deportivo";Yes;No;0,379;Q3;39;112;193;4058;270;193;1,48;36,23;26,73;0;Spain;Western Europe;"Asociacion Espanola de Analisis del Rendimiento Deportivo";"2010-2026";"Education (Q3); Health (social science) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)";"Health Professions; Social Sciences" +14776;12182;"Journal of Molecular Spectroscopy";journal;"00222852, 1096083X";"Academic Press Inc.";No;No;0,379;Q3;78;41;216;1475;244;214;1,20;35,98;22,54;0;United States;Northern America;"Academic Press Inc.";"1957-2026";"Atomic and Molecular Physics, and Optics (Q3); Physical and Theoretical Chemistry (Q3); Spectroscopy (Q3)";"Chemistry; Physics and Astronomy" +14777;21100781874;"News of the National Academy of Sciences of the Republic of Kazakhstan, Series of Geology and Technical Sciences";journal;"2518170X, 22245278";"National Academy of Sciences of the Republic of Kazakhstan";Yes;No;0,379;Q3;20;112;324;2057;423;322;1,30;18,37;46,35;0;Kazakhstan;Asiatic Region;"National Academy of Sciences of the Republic of Kazakhstan";"2016-2026";"Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +14778;21101030455;"Ocean and Coastal Research";journal;"26752824";"Universidade de Sao Paulo. Museu de Zoologia";Yes;Yes;0,379;Q3;38;41;181;2493;221;175;1,30;60,80;36,24;0;Brazil;Latin America;"Universidade de Sao Paulo. Museu de Zoologia";"2020-2025";"Aquatic Science (Q3); Oceanography (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +14779;5800207571;"Support for Learning";journal;"14679604, 02682141";"John Wiley and Sons Inc";No;No;0,379;Q3;39;37;73;1305;112;62;1,37;35,27;72,73;0;United States;Northern America;"John Wiley and Sons Inc";"1986-2026";"Education (Q3)";"Social Sciences" +14780;26306;"Canadian Studies in Population";journal;"03801489, 1927629X";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,378;Q1;15;17;23;848;33;23;1,27;49,88;52,78;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1975, 1978, 1992, 1994-1996, 2007, 2010-2026";"History (Q1); Demography (Q2)";"Arts and Humanities; Social Sciences" +14781;21100896913;"Cognitive Studies";journal;"23922397";"Polish Academy of Sciences, Institute of Slavic Studies";Yes;Yes;0,378;Q1;9;11;42;513;30;42;0,71;46,64;50,00;0;Poland;Eastern Europe;"Polish Academy of Sciences, Institute of Slavic Studies";"2018-2024";"Linguistics and Language (Q1); Communication (Q2); Computer Networks and Communications (Q3)";"Computer Science; Social Sciences" +14782;5600153391;"Historical Materialism";journal;"14654466, 1569206X";"Brill Academic Publishers";No;No;0,378;Q1;42;29;115;1945;122;113;1,17;67,07;21,88;0;Netherlands;Western Europe;"Brill Academic Publishers";"1997-1998, 2002-2025";"History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +14783;300147003;"Journal of Futures Studies";journal;"10276084";"Tamkang University";No;No;0,378;Q1;29;23;102;641;125;100;1,12;27,87;57,58;0;Taiwan;Asiatic Region;"Tamkang University";"2005-2025";"History and Philosophy of Science (Q1); Decision Sciences (miscellaneous) (Q2); Development (Q2)";"Arts and Humanities; Decision Sciences; Social Sciences" +14784;21101089491;"Srednie Veka";journal;"01318780";"Izdatel'stvo Nauka";No;No;0,378;Q1;3;32;141;865;12;137;0,08;27,03;45,16;0;Russian Federation;Eastern Europe;"Izdatel'stvo Nauka";"2019-2025";"History (Q1)";"Arts and Humanities" +14785;21100235819;"Verbum et Ecclesia";journal;"20747705, 16099982";"AOSIS (Pty) Ltd";Yes;No;0,378;Q1;17;119;285;4453;115;281;0,40;37,42;24,24;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2013-2026";"Religious Studies (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +14786;12100154833;"ACM Transactions on Applied Perception";journal;"15443965, 15443558";"Association for Computing Machinery";No;No;0,378;Q2;62;12;60;683;142;57;2,41;56,92;28,95;0;United States;Northern America;"Association for Computing Machinery";"2004-2026";"Computer Science (miscellaneous) (Q2); Experimental and Cognitive Psychology (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics; Psychology" +14787;35872;"American Journal of Potato Research";journal;"18749380, 1099209X";"Springer";No;No;0,378;Q2;63;51;97;2296;165;97;1,64;45,02;29,05;0;United States;Northern America;"Springer";"1968, 1998-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +14788;110256;"Canadian Family Physician";journal;"0008350X, 17155258";"College of Family Physicians of Canada";Yes;No;0,378;Q2;93;214;778;3200;550;376;0,64;14,95;57,54;1;Canada;Northern America;"College of Family Physicians of Canada";"1977-1983, 1985, 1987-2026";"Family Practice (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +14789;21100805739;"Comparative Cognition and Behavior Reviews";journal;"19114745";"Comparative Cognition Society";Yes;Yes;0,378;Q2;14;15;34;746;37;33;0,90;49,73;41,67;0;Canada;Northern America;"Comparative Cognition Society";"2009, 2016-2025";"Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Veterinary" +14790;21101045741;"Computational and Mathematical Methods";journal;"25777408";"John Wiley and Sons Ltd";Yes;No;0,378;Q2;15;11;34;343;70;34;1,81;31,18;29,03;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2019-2025";"Computational Mechanics (Q2); Computational Mathematics (Q3); Computational Theory and Mathematics (Q3)";"Computer Science; Engineering; Mathematics" +14791;21101066743;"Electrical Engineering and Electromechanics";journal;"23093404, 2074272X";"National Technical University "Kharkiv Polytechnic Institute"";Yes;No;0,378;Q2;17;66;204;2124;427;204;2,03;32,18;24,34;0;Ukraine;Eastern Europe;"National Technical University "Kharkiv Polytechnic Institute"";"2019-2026";"Mechanical Engineering (Q2); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)";"Energy; Engineering" +14792;5600152816;"European Physical Journal: Special Topics";journal;"19516355, 19516401";"Springer Verlag";No;No;0,378;Q2;101;757;916;32811;2020;867;2,10;43,34;28,55;2;Germany;Western Europe;"Springer Verlag";"2007-2026";"Physics and Astronomy (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +14793;6200180160;"Frontiers of Earth Science";journal;"20950195, 20950209";"Higher Education Press Limited Company";No;No;0,378;Q2;43;66;212;3556;394;208;1,68;53,88;38,38;0;China;Asiatic Region;"Higher Education Press Limited Company";"2007-2026";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +14794;21100204516;"International Journal of Data Analysis Techniques and Strategies";journal;"17558050, 17558069";"Inderscience";No;No;0,378;Q2;21;21;57;712;97;57;1,48;33,90;44,26;0;Switzerland;Western Europe;"Inderscience";"2008-2026";"Information Systems and Management (Q2); Applied Mathematics (Q3); Information Systems (Q3)";"Computer Science; Decision Sciences; Mathematics" +14795;21100371227;"International Journal of Geotechnical Engineering";journal;"19386362, 19397879";"Maney Publishing";No;No;0,378;Q2;44;69;225;2983;436;209;1,35;43,23;19,87;0;United Kingdom;Western Europe;"Maney Publishing";"2007-2026";"Soil Science (Q2); Environmental Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +14796;21100889432;"Journal of Water Management Modeling";journal;"22926062";"Computational Hydraulics Int.";Yes;No;0,378;Q2;10;36;56;1466;96;56;1,68;40,72;30,77;0;Canada;Northern America;"Computational Hydraulics Int.";"2018-2026";"Geography, Planning and Development (Q2); Civil and Structural Engineering (Q3); Water Science and Technology (Q3)";"Engineering; Environmental Science; Social Sciences" +14797;21101181921;"Parasitologia";journal;"26736772";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,378;Q2;10;67;98;3953;155;96;1,46;59,00;49,14;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3); Parasitology (Q3)";"Immunology and Microbiology; Medicine; Veterinary" +14798;19900191805;"Review of Communication";journal;"15358593";"Routledge";No;No;0,378;Q2;28;20;71;1553;120;61;1,07;77,65;62,75;0;United States;Northern America;"Routledge";"2010-2026";"Communication (Q2)";"Social Sciences" +14799;21101089370;"Tunnel Construction";journal;"20964498";"";No;No;0,378;Q2;28;274;1016;7409;1245;1016;1,16;27,04;26,87;0;China;Asiatic Region;"";"2019-2026";"Mechanical Engineering (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences; Engineering" +14800;7200153146;"Annals of Cardiac Anaesthesia";journal;"09745181, 09719784";"Wolters Kluwer Medknow Publications";Yes;Yes;0,378;Q3;43;116;321;1866;375;237;0,96;16,09;32,14;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2007-2026";"Anesthesiology and Pain Medicine (Q3); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +14801;20149;"Central European Journal of Public Health";journal;"18031048, 12107778";"Czech National Institute of Public Health";No;No;0,378;Q3;42;42;172;685;204;170;0,91;16,31;54,30;0;Czech Republic;Eastern Europe;"Czech National Institute of Public Health";"1993-2025";"Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +14802;4700152716;"Children and Schools";journal;"15328759";"National Association of Social Workers";No;No;0,378;Q3;39;30;92;865;130;81;1,28;28,83;76,06;0;United States;Northern America;"National Association of Social Workers";"1978-1979, 1981-1995, 2005-2026";"Education (Q3); Health (social science) (Q3)";"Social Sciences" +14803;28456;"Computational Geometry: Theory and Applications";journal;"09257721";"Elsevier B.V.";No;No;0,378;Q3;63;30;145;781;135;136;0,86;26,03;18,92;0;Netherlands;Western Europe;"Elsevier B.V.";"1991-2026";"Computational Mathematics (Q3); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Control and Optimization (Q3); Geometry and Topology (Q3)";"Computer Science; Mathematics" +14804;21101021452;"Environmental Health Engineering and Management";journal;"24233765, 24234311";"Kerman University of Medical Sciences";Yes;Yes;0,378;Q3;19;49;143;2406;255;140;1,71;49,10;39,49;0;Iran;Middle East;"Kerman University of Medical Sciences";"2019-2026";"Chemical Health and Safety (Q3); Environmental Science (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Chemical Engineering; Environmental Science; Medicine" +14805;21100401154;"Epidemiologic Methods";journal;"21949263, 2161962X";"Walter de Gruyter GmbH";No;No;0,378;Q3;18;17;35;690;52;35;1,74;40,59;35,19;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2012-2025";"Applied Mathematics (Q3); Epidemiology (Q3)";"Mathematics; Medicine" +14806;6100153023;"IET Microwaves, Antennas and Propagation";journal;"17518733, 17518725";"John Wiley and Sons Inc";Yes;No;0,378;Q3;89;82;325;2471;518;322;1,63;30,13;25,53;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2007-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +14807;21100205991;"Journal of Mental Health Training, Education and Practice";journal;"20428707, 17556228";"Emerald Group Publishing Ltd.";No;No;0,378;Q3;25;29;92;1104;126;91;1,23;38,07;64,03;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2006-2026";"Education (Q3); Health Policy (Q3); Health (social science) (Q3); Organizational Behavior and Human Resource Management (Q3); Psychiatry and Mental Health (Q3)";"Business, Management and Accounting; Medicine; Social Sciences" +14808;145274;"Journal of Statistical Mechanics: Theory and Experiment";journal;"17425468";"Institute of Physics";No;No;0,378;Q3;101;184;703;10258;951;701;1,15;55,75;17,07;0;United Kingdom;Western Europe;"Institute of Physics";"2004-2025";"Statistical and Nonlinear Physics (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics; Physics and Astronomy" +14809;60891;"Journal of the Australian Ceramic Society";journal;"25101560, 25101579";"Springer International Publishing AG";No;No;0,378;Q3;35;210;427;10222;1082;426;2,64;48,68;32,84;0;Switzerland;Western Europe;"Springer International Publishing AG";"2007-2026";"Ceramics and Composites (Q3); Materials Chemistry (Q3)";"Materials Science" +14810;17613;"Physics and Chemistry of Minerals";journal;"14322021, 03421791";"Springer Verlag";No;No;0,378;Q3;86;32;124;1783;192;122;1,34;55,72;22,15;0;Germany;Western Europe;"Springer Verlag";"1977-2026";"Geochemistry and Petrology (Q3); Materials Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Materials Science" +14811;17949;"Ultrasound Quarterly";journal;"15360253, 08948771";"Lippincott Williams and Wilkins Ltd.";No;No;0,378;Q3;46;25;134;416;155;127;1,20;16,64;43,64;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1988-1995, 1998-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +14812;40294;"You Qi Chu Yun/Oil and Gas Storage and Transportation";journal;"10008241";"";Yes;Yes;0,378;Q3;22;76;490;2497;681;479;1,45;32,86;32,34;0;China;Asiatic Region;"";"1990, 1998, 2020-2025";"Energy (miscellaneous) (Q3); Environmental Engineering (Q3)";"Energy; Environmental Science" +14813;21100858680;"Advances in Database Technology - EDBT";conference and proceedings;"23672005";"OpenProceedings.org";No;No;0,378;-;30;76;323;2972;372;310;1,28;39,11;28,96;0;Germany;Western Europe;"OpenProceedings.org";"2016-2025";"Computer Science Applications; Information Systems; Software";"Computer Science" +14814;14692;"Environmental History";journal;"19308892, 10845453";"University of Chicago Press";No;No;0,377;Q1;48;34;99;648;80;67;0,80;19,06;42,86;0;United States;Northern America;"University of Chicago Press";"1996-2026";"History (Q1); Environmental Science (miscellaneous) (Q3)";"Arts and Humanities; Environmental Science" +14815;21100818509;"International Journal of Arabic-English Studies";journal;"16800982";"Librairie du Liban Publishers";No;No;0,377;Q1;10;49;129;1961;123;129;1,12;40,02;59,09;0;Lebanon;Middle East;"Librairie du Liban Publishers";"2014, 2016-2026";"Cultural Studies (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +14816;21100927901;"Journal of Al-Tamaddun";journal;"18237517, 22892672";"Academy of Islamic Studies, Dept of Islamic History and Civilization, University of Malaya";Yes;Yes;0,377;Q1;8;47;119;2336;147;119;1,29;49,70;25,00;0;Malaysia;Asiatic Region;"Academy of Islamic Studies, Dept of Islamic History and Civilization, University of Malaya";"2019-2025";"Anthropology (Q1); Cultural Studies (Q1); History (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +14817;21100887517;"Journal of Dance Education";journal;"15290824, 2158074X";"Taylor and Francis Ltd.";No;No;0,377;Q1;24;54;102;1925;113;100;1,07;35,65;74,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2025";"Visual Arts and Performing Arts (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +14818;21101049148;"Kantian Journal";journal;"02076918, 23103701";"Immanuel Kant Baltic Federal University";Yes;Yes;0,377;Q1;5;12;82;343;30;78;0,38;28,58;33,33;0;Russian Federation;Eastern Europe;"Immanuel Kant Baltic Federal University";"2019-2025";"Philosophy (Q1)";"Arts and Humanities" +14819;69182;"Urban Morphology";journal;"10274278";"International Seminar on Urban Form";No;No;0,377;Q1;34;17;68;544;39;48;0,68;32,00;33,33;0;France;Western Europe;"International Seminar on Urban Form";"1997-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1); Urban Studies (Q2)";"Arts and Humanities; Social Sciences" +14820;21101363647;"Advances in Engineering and Intelligence Systems";journal;"28210263";"Bilijipub Publisher";No;No;0,377;Q2;10;36;104;1463;218;104;2,33;40,64;27,12;0;Iran;Middle East;"Bilijipub Publisher";"2022-2025";"Computer Vision and Pattern Recognition (Q2); Artificial Intelligence (Q3); Information Systems (Q3)";"Computer Science" +14821;25355;"Canadian Journal of Development Studies";journal;"21589100, 02255189";"Routledge";No;No;0,377;Q2;48;38;97;1924;138;95;1,36;50,63;48,44;0;United Kingdom;Western Europe;"Routledge";"1980-2026";"Development (Q2)";"Social Sciences" +14822;21100866269;"Chinese Journal of Agrometeorology";journal;"10006362";"Editorial Board of Chinese Journal of Agrometeorology";No;No;0,377;Q2;17;161;307;5956;522;307;1,71;36,99;41,83;0;China;Asiatic Region;"Editorial Board of Chinese Journal of Agrometeorology";"2016-2026";"Agronomy and Crop Science (Q2); Forestry (Q2); Atmospheric Science (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +14823;21100395923;"Citizenship Teaching and Learning";journal;"17511917, 17511925";"Intellect Ltd.";No;No;0,377;Q2;13;15;66;808;110;61;1,73;53,87;58,06;0;United Kingdom;Western Europe;"Intellect Ltd.";"2013-2025";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14824;21101393930;"Demographic Review";journal;"24092274";"National Research University Higher School of Economics (HSE University)";No;No;0,377;Q2;6;28;79;985;76;79;1,11;35,18;43,18;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2024-2025";"Demography (Q2); Geography, Planning and Development (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14825;19200157025;"Engineering Economics";journal;"13922785, 20295839";"Kauno Technologijos Universitetas";Yes;No;0,377;Q2;45;40;119;2901;297;119;2,25;72,53;40,80;0;Lithuania;Eastern Europe;"Kauno Technologijos Universitetas";"2008-2025";"Engineering (miscellaneous) (Q2); Business and International Management (Q3); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Engineering" +14826;20622;"Experimental Techniques";journal;"07328818, 17471567";"Springer International Publishing AG";No;No;0,377;Q2;48;116;249;3894;525;246;2,30;33,57;20,00;0;Switzerland;Western Europe;"Springer International Publishing AG";"1975-2026";"Mechanical Engineering (Q2); Mechanics of Materials (Q3)";"Engineering" +14827;21100388412;"Forum for Health Economics and Policy";journal;"21946191, 15589544";"Walter de Gruyter GmbH";No;No;0,377;Q2;13;3;14;137;24;12;2,00;45,67;28,57;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2008, 2010-2012, 2014-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Health Policy (Q3)";"Economics, Econometrics and Finance; Medicine" +14828;9500154105;"Journal of Applied Remote Sensing";journal;"19313195";"SPIE";No;No;0,377;Q2;71;173;592;7979;1096;585;2,05;46,12;32,44;0;United States;Northern America;"SPIE";"2007-2025";"Earth and Planetary Sciences (miscellaneous) (Q2)";"Earth and Planetary Sciences" +14829;22872;"Journal of Forest Research";journal;"13416979, 16107403";"Taylor and Francis Ltd.";No;No;0,377;Q2;52;55;173;2766;241;169;1,43;50,29;35,66;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-1997, 1999-2026";"Forestry (Q2)";"Agricultural and Biological Sciences" +14830;21100818504;"Journal of Medical Signals and Sensors";journal;"22287477";"Isfahan University of Medical Sciences(IUMS)";Yes;No;0,377;Q2;34;32;107;1248;219;105;2,00;39,00;37,04;0;India;Asiatic Region;"Isfahan University of Medical Sciences(IUMS)";"2011-2026";"Computer Science (miscellaneous) (Q2); Biomedical Engineering (Q3); Health Informatics (Q3); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Computer Science; Engineering; Health Professions; Medicine" +14831;21101162537;"Optics";journal;"26733269";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,377;Q2;13;65;129;2349;247;129;1,92;36,14;26,15;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Physics and Astronomy (miscellaneous) (Q2); Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science; Physics and Astronomy" +14832;5400152628;"Revista Brasileira de Farmacognosia";journal;"0102695X, 1981528X";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,377;Q2;68;113;360;6927;747;360;2,04;61,30;45,32;0;Brazil;Latin America;"Springer Science and Business Media Deutschland GmbH";"2007-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +14833;34839;"Ulusal Travma ve Acil Cerrahi Dergisi";journal;"1306696X, 13077945";"Turkish Association of Trauma and Emergency Surgery";No;No;0,377;Q2;33;173;600;4382;808;595;1,34;25,33;19,25;0;Turkey;Middle East;"Turkish Association of Trauma and Emergency Surgery";"2003-2004, 2006-2026";"Emergency Medicine (Q2); Anesthesiology and Pain Medicine (Q3); Surgery (Q3)";"Medicine" +14834;16985;"Die Rehabilitation";journal;"14391309, 00343536";"Georg Thieme Verlag";No;No;0,377;Q3;36;62;201;1310;126;131;0,65;21,13;53,95;0;Germany;Western Europe;"Georg Thieme Verlag";"1972-2026";"Rehabilitation (Q3)";"Medicine" +14835;11200153571;"Evolutionary Bioinformatics";journal;"11769343";"Libertas Academica Ltd.";Yes;No;0,377;Q3;42;3;64;188;100;64;1,74;62,67;56,52;0;New Zealand;Pacific Region;"Libertas Academica Ltd.";"2005-2026";"Computer Science Applications (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Computer Science" +14836;20796;"Gesundheitswesen";journal;"14394421, 09413790";"Georg Thieme Verlag";No;No;0,377;Q3;47;148;445;2988;336;385;0,77;20,19;53,74;0;Germany;Western Europe;"Georg Thieme Verlag";"1992-2026";"Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +14837;25260;"Heteroatom Chemistry";journal;"10981071, 10427163";"John Wiley and Sons Inc";Yes;No;0,377;Q3;48;3;8;134;28;8;5,00;44,67;12,50;0;China;Asiatic Region;"John Wiley and Sons Inc";"1990-2023, 2025-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +14838;11700154733;"Journal of Biomedical Nanotechnology";journal;"15507041, 15507033";"American Scientific Publishers";No;No;0,377;Q3;99;0;116;0;170;116;0,00;0,00;0,00;0;United States;Northern America;"American Scientific Publishers";"2007-2022";"Biomedical Engineering (Q3); Materials Science (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Nanoscience and Nanotechnology (Q3); Pharmaceutical Science (Q3); Bioengineering (Q4)";"Chemical Engineering; Engineering; Materials Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +14839;21101193684;"Journal of Disability Studies in Education";journal;"2588879X, 25888803";"Brill Academic Publishers";Yes;Yes;0,377;Q3;7;7;22;517;43;20;1,73;73,86;60,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2025";"Education (Q3)";"Social Sciences" +14840;21100211340;"Medical Mycology Case Reports";journal;"22117539";"Elsevier B.V.";Yes;No;0,377;Q3;27;66;173;1167;245;171;1,32;17,68;48,94;0;Netherlands;Western Europe;"Elsevier B.V.";"2012-2026";"Infectious Diseases (Q3); Microbiology (Q4)";"Immunology and Microbiology; Medicine" +14841;21101393928;"Renewable Energy Research and Applications";journal;"26767430, 2717252X";"Shahrood University of Technology";No;No;0,377;Q3;10;24;72;988;138;72;2,02;41,17;14,29;0;Iran;Middle East;"Shahrood University of Technology";"2025";"Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +14842;21100469452;"Timing and Time Perception";journal;"2213445X, 22134468";"Brill Academic Publishers";No;No;0,377;Q3;22;24;58;1291;46;56;0,40;53,79;38,16;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2026";"Applied Psychology (Q3); Neuropsychology and Physiological Psychology (Q3); Cognitive Neuroscience (Q4); Experimental and Cognitive Psychology (Q4)";"Neuroscience; Psychology" +14843;21101171934;"US Geological Survey Data Report";journal;"27719448";"US Geological Survey";No;No;0,377;Q3;5;13;50;533;36;50;0,70;41,00;31,11;11;United States;Northern America;"US Geological Survey";"2022-2025";"Ecology (Q3); Geology (Q3); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science" +14844;21101168870;"Camera Praehistorica";journal;"26586665, 26583828";"Peter the Great Museum of Anthropology and Ethnography (Kunstkamera), Russian Academy of Sciences";No;No;0,376;Q1;5;8;51;434;21;49;0,53;54,25;41,67;0;Russian Federation;Eastern Europe;"Peter the Great Museum of Anthropology and Ethnography (Kunstkamera), Russian Academy of Sciences";"2019-2025";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +14845;21100927989;"Oriental Studies";journal;"26191008, 26190990";"Kalmyk Scientific Centre of Russian Academy of Sciences";Yes;No;0,376;Q1;9;87;304;2627;91;304;0,33;30,20;56,45;0;Russian Federation;Eastern Europe;"Kalmyk Scientific Centre of Russian Academy of Sciences";"2013-2025";"Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1); Linguistics and Language (Q1)";"Arts and Humanities; Social Sciences" +14846;21101133223;"Teosofi: Jurnal Tasawuf dan Pemikiran Islam";journal;"20887957, 2442871X";"Faculty of Ushuluddin and Philosophy, Sunan Ampel State Islamic University Surabaya";Yes;No;0,376;Q1;5;18;48;1071;62;48;1,06;59,50;24,24;0;Indonesia;Asiatic Region;"Faculty of Ushuluddin and Philosophy, Sunan Ampel State Islamic University Surabaya";"2022-2025";"Cultural Studies (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +14847;21101043234;"Agricultural Engineering";journal;"24495999, 20831587";"";No;No;0,376;Q2;13;20;68;898;150;68;2,83;44,90;35,96;0;Poland;Eastern Europe;"";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Environmental Engineering (Q3)";"Agricultural and Biological Sciences; Engineering; Environmental Science" +14848;21101260414;"Animal - Open space";journal;"27726940";"Elsevier B.V.";No;No;0,376;Q2;9;25;74;612;125;73;1,67;24,48;43,96;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +14849;21101267538;"Geofizicheskiy Zhurnal";journal;"25241052, 02033100";"Subbotin Institute of Geophysics of the National Academy of Sciences of Ukraine (SIG of NASU).";Yes;Yes;0,376;Q2;10;99;158;1997;175;155;1,34;20,17;34,45;0;Ukraine;Eastern Europe;"Subbotin Institute of Geophysics of the National Academy of Sciences of Ukraine (SIG of NASU).";"2010, 2020-2025";"Earth-Surface Processes (Q2); Geology (Q3); Geophysics (Q3)";"Earth and Planetary Sciences" +14850;16904;"International Finance";journal;"13670271, 14682362";"Wiley-Blackwell Publishing Ltd";No;No;0,376;Q2;45;21;50;1041;76;50;1,03;49,57;23,64;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1998-2026";"Geography, Planning and Development (Q2); Development (Q3); Finance (Q3)";"Economics, Econometrics and Finance; Social Sciences" +14851;21101088827;"Journal of the ASABE";journal;"27693287, 27693295";"American Society of Agricultural and Biological Engineers";No;No;0,376;Q2;123;88;376;3746;624;376;1,60;42,57;27,76;0;United States;Northern America;"American Society of Agricultural and Biological Engineers";"2022-2026";"Agronomy and Crop Science (Q2); Forestry (Q2); Soil Science (Q2); Biomedical Engineering (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Engineering" +14852;21100871308;"Plant and Fungal Systematics";journal;"25447459";"W. Szafer Institute of Botany, Polish Academy of Sciences";Yes;Yes;0,376;Q2;24;9;52;447;65;52;1,23;49,67;35,90;0;Poland;Eastern Europe;"W. Szafer Institute of Botany, Polish Academy of Sciences";"2018-2025";"Plant Science (Q2)";"Agricultural and Biological Sciences" +14853;13561;"Revista Chilena de Historia Natural";journal;"0716078X, 07176317";"BioMed Central Ltd";Yes;Yes;0,376;Q2;49;4;29;176;37;27;1,40;44,00;44,44;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2000, 2002-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14854;21100887437;"South African Journal of Accounting Research";journal;"23763981, 10291954";"Taylor and Francis Ltd.";No;No;0,376;Q2;13;15;38;1057;93;37;2,44;70,47;45,83;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2026";"Business, Management and Accounting (miscellaneous) (Q2); Accounting (Q3)";"Business, Management and Accounting" +14855;21100453523;"Acta Geochimica";journal;"23657499, 20960956";"Science Press";No;No;0,376;Q3;37;111;214;9641;339;213;1,71;86,86;27,87;0;China;Asiatic Region;"Science Press";"2016-2026";"Geochemistry and Petrology (Q3)";"Earth and Planetary Sciences" +14856;145316;"African Health Sciences";journal;"16806905";"Makerere University, Medical School";Yes;No;0,376;Q3;65;139;850;4008;1007;831;0,93;28,83;44,04;0;Uganda;Africa;"Makerere University, Medical School";"2001-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +14857;17922;"Cryptogamie, Mycologie";journal;"01811584";"A.D.A.C.";No;No;0,376;Q3;38;6;27;328;39;27;1,41;54,67;50,00;0;France;Western Europe;"A.D.A.C.";"1990-1993, 1995-2025";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14858;19700182115;"Education as Change";journal;"19479417, 16823206";"Unisa Press";Yes;No;0,376;Q3;25;0;71;0;155;62;2,33;0,00;0,00;0;South Africa;Africa;"Unisa Press";"2008-2024, 2026";"Education (Q3)";"Social Sciences" +14859;15238;"Iranian Biomedical Journal";journal;"2008823X, 1028852X";"Pasteur Institute of Iran";Yes;Yes;0,376;Q3;45;40;129;1800;208;128;1,52;45,00;43,33;0;Iran;Middle East;"Pasteur Institute of Iran";"1999-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biochemistry (medical) (Q3); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +14860;22543;"Journal of Crustacean Biology";journal;"1937240X, 02780372";"Brill Academic Publishers";No;No;0,376;Q3;66;74;223;4200;280;223;1,34;56,76;32,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1984, 1992-2026";"Aquatic Science (Q3)";"Agricultural and Biological Sciences" +14861;23872;"Journal of Difference Equations and Applications";journal;"15635120, 10236198";"Taylor and Francis Ltd.";No;No;0,376;Q3;54;80;231;2297;241;223;1,10;28,71;33,12;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-1996, 1998-2026";"Algebra and Number Theory (Q3); Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +14862;26952;"Journal of Dispersion Science and Technology";journal;"15322351, 01932691";"Taylor and Francis Ltd.";No;No;0,376;Q3;71;415;746;22447;1830;746;2,39;54,09;37,69;0;United States;Northern America;"Taylor and Francis Ltd.";"1980-2026";"Physical and Theoretical Chemistry (Q3); Polymers and Plastics (Q3); Surfaces, Coatings and Films (Q3)";"Chemistry; Materials Science" +14863;21101087219;"Journal of Illicit Economies and Development";journal;"25167227";"LSE Press";Yes;Yes;0,376;Q3;14;16;71;727;101;63;0,90;45,44;38,10;2;United Kingdom;Western Europe;"LSE Press";"2019-2025";"Development (Q3)";"Social Sciences" +14864;21100400818;"Practical Laboratory Medicine";journal;"23525517";"Elsevier B.V.";Yes;No;0,376;Q3;25;65;177;2186;284;173;1,54;33,63;45,41;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2026";"Clinical Biochemistry (Q3); Radiological and Ultrasound Technology (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions" +14865;19375;"Water SA";journal;"18167950, 03784738";"South African Water Research Commission";Yes;Yes;0,376;Q3;75;34;125;1710;191;125;1,42;50,29;37,65;0;South Africa;Africa;"South African Water Research Commission";"1976-2026";"Applied Microbiology and Biotechnology (Q3); Management, Monitoring, Policy and Law (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3)";"Environmental Science; Immunology and Microbiology" +14866;21100784265;"Ius Canonicum";journal;"0021325X, 22546219";"Servicio de Publicaciones de la Universidad de Navarra";Yes;No;0,375;Q1;7;23;77;1318;23;69;0,30;57,30;30,77;0;Spain;Western Europe;"Servicio de Publicaciones de la Universidad de Navarra";"2016-2025";"Religious Studies (Q1); Law (Q2)";"Arts and Humanities; Social Sciences" +14867;5700152857;"Mind, Culture, and Activity";journal;"10749039, 15327884";"Taylor and Francis Ltd.";No;No;0,375;Q1;69;0;72;0;115;61;0,94;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2024";"Anthropology (Q1); Cultural Studies (Q1); Linguistics and Language (Q1); Developmental and Educational Psychology (Q3); Education (Q3); Social Psychology (Q3); Cognitive Neuroscience (Q4)";"Neuroscience; Psychology; Social Sciences" +14868;21100348975;"Studia Historica Slovenica";journal;"15808122";"Zgodovinsko Drustvo Dr. Franca Kovacica v Mariboru";No;No;0,375;Q1;12;20;65;979;58;65;0,81;48,95;40,00;0;Slovenia;Eastern Europe;"Zgodovinsko Drustvo Dr. Franca Kovacica v Mariboru";"2002-2003, 2006-2025";"History (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +14869;24090;"Acta Ethologica";journal;"14379546, 08739749";"Springer Science and Business Media Deutschland GmbH";No;No;0,375;Q2;40;23;67;1145;93;66;1,33;49,78;38,16;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1998-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14870;21100211753;"Asian Myrmecology";journal;"19851944";"International Network for the Study of Asian Ants";Yes;No;0,375;Q2;19;9;23;530;28;23;1,00;58,89;15,15;0;Malaysia;Asiatic Region;"International Network for the Study of Asian Ants";"2008-2011, 2013-2025";"Insect Science (Q2); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14871;19700188217;"Bioanalysis";journal;"17576180, 17576199";"Taylor and Francis Ltd.";No;No;0,375;Q2;77;155;371;6848;676;321;1,82;44,18;42,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Medical Laboratory Technology (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Analytical Chemistry (Q3); Clinical Biochemistry (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +14872;13841;"Brazilian Journal of Biology";journal;"15196984, 16784375";"Instituto Internacional de Ecologia";Yes;No;0,375;Q2;68;435;1585;19469;2772;1485;1,74;44,76;45,11;0;Brazil;Latin America;"Instituto Internacional de Ecologia";"2000-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +14873;21101317176;"Chips";journal;"26740729";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,375;Q2;9;52;51;2562;112;48;2,42;49,27;16,67;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3)";"Computer Science; Engineering; Materials Science" +14874;17400154818;"ERA Forum";journal;"16123093, 18639038";"Springer Verlag";No;No;0,375;Q2;19;42;118;732;195;106;1,38;17,43;45,00;1;Germany;Western Europe;"Springer Verlag";"2009-2026";"Law (Q2); Political Science and International Relations (Q2)";"Social Sciences" +14875;19700186865;"International Journal of Computer Games Technology";journal;"16877047, 16877055";"John Wiley and Sons Ltd";Yes;No;0,375;Q2;27;8;21;541;74;21;4,06;67,63;33,33;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2025";"Computer Graphics and Computer-Aided Design (Q2); Human-Computer Interaction (Q3); Software (Q3)";"Computer Science" +14876;21100972446;"International Journal of Sociology";journal;"15579336";"Taylor and Francis Ltd.";No;No;0,375;Q2;18;22;68;1403;116;65;1,36;63,77;46,51;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001, 2016, 2019-2026";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14877;13931;"Journal of Property Research";journal;"14664453, 09599916";"Routledge";No;No;0,375;Q2;43;22;48;1209;161;48;2,00;54,95;28,57;1;United Kingdom;Western Europe;"Routledge";"1991-2026";"Geography, Planning and Development (Q2); Urban Studies (Q2)";"Social Sciences" +14878;24485;"Lithology and Mineral Resources";journal;"00244902, 16083229";"Pleiades Publishing";No;No;0,375;Q2;26;43;118;2494;109;118;0,88;58,00;44,35;0;United States;Northern America;"Pleiades Publishing";"1984-1986, 1992, 2004-2026";"Economic Geology (Q2); Geochemistry and Petrology (Q3)";"Earth and Planetary Sciences" +14879;21100888550;"Mediterranean Botany";journal;"26039109";"Universidad Complutense Madrid";Yes;Yes;0,375;Q2;21;19;65;1060;69;64;0,90;55,79;27,85;0;Spain;Western Europe;"Universidad Complutense Madrid";"2018-2025";"Plant Science (Q2); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14880;5800191628;"Netherlands International Law Review";journal;"0165070X, 17416191";"Springer Nature";No;No;0,375;Q2;27;10;57;728;72;51;1,32;72,80;16,67;1;Switzerland;Western Europe;"Springer Nature";"1953, 1955-2026";"Law (Q2)";"Social Sciences" +14881;21100887525;"New Educator";journal;"15499243";"Taylor and Francis Ltd.";No;No;0,375;Q2;29;23;53;1293;79;44;1,34;56,22;62,96;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Sociology and Political Science (Q2); Education (Q3)";"Social Sciences" +14882;23257;"New Zealand Journal of Zoology";journal;"03014223";"Taylor and Francis Ltd.";No;No;0,375;Q2;42;57;66;3136;83;62;1,28;55,02;44,64;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974-2025";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +14883;21100867253;"Plant Breeding and Biotechnology";journal;"22879358, 22879366";"Korean Society of Breeding Science";No;No;0,375;Q2;17;22;65;827;128;65;1,31;37,59;37,50;0;South Korea;Asiatic Region;"Korean Society of Breeding Science";"2015, 2018-2025";"Plant Science (Q2); Biotechnology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +14884;6100153019;"Service Oriented Computing and Applications";journal;"18632386, 18632394";"Springer London";No;No;0,375;Q2;34;63;89;2139;215;80;2,78;33,95;33,14;0;United Kingdom;Western Europe;"Springer London";"2007-2025";"Management Information Systems (Q2); Hardware and Architecture (Q3); Information Systems (Q3); Software (Q3)";"Business, Management and Accounting; Computer Science" +14885;144682;"South African Family Practice";journal;"20786204, 20786190";"AOSIS (Pty) Ltd";Yes;No;0,375;Q2;29;59;278;1651;301;243;0,95;27,98;49,48;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2000-2026";"Family Practice (Q2); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +14886;23359;"Bioremediation Journal";journal;"15476529, 10889868";"Taylor and Francis Ltd.";No;No;0,375;Q3;47;114;137;7394;273;68;1,83;64,86;48,20;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +14887;5900153306;"BioResources";journal;"19302126";"North Carolina State University";Yes;No;0,375;Q3;111;644;1607;28545;3570;1562;2,25;44,32;36,74;0;United States;Northern America;"North Carolina State University";"2007-2026";"Environmental Engineering (Q3); Waste Management and Disposal (Q3); Bioengineering (Q4)";"Chemical Engineering; Environmental Science" +14888;21087;"Digestive Surgery";journal;"14219883, 02534886";"S. Karger AG";No;No;0,375;Q3;83;38;91;1110;107;89;1,16;29,21;24,07;1;Switzerland;Western Europe;"S. Karger AG";"1984-2025";"Gastroenterology (Q3); Surgery (Q3)";"Medicine" +14889;21100206280;"Ensenanza de las Ciencias";journal;"02124521, 21746486";"Universitat Autonoma de Barcelona";Yes;Yes;0,375;Q3;25;17;84;784;117;81;1,18;46,12;62,22;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2009-2025";"Education (Q3)";"Social Sciences" +14890;25256;"European Journal of Inorganic Chemistry";journal;"10990682, 14341948";"Wiley-VCH Verlag";No;No;0,375;Q3;153;371;1183;23058;2013;1168;1,65;62,15;31,52;0;Germany;Western Europe;"Wiley-VCH Verlag";"1877-1878, 1882-1891, 1894-1897, 1902, 1904, 1906, 1911, 1915, 1917, 1919-1944, 1962-1963, 1975, 1977-1985, 1987-1988, 1990-1994, 1996-2026";"Inorganic Chemistry (Q3)";"Chemistry" +14891;25476;"Intelligent Automation and Soft Computing";journal;"10798587, 2326005X";"Tech Science Press";No;No;0,375;Q3;45;11;1206;514;2860;1206;2,32;46,73;18,60;0;United States;Northern America;"Tech Science Press";"1995-2025";"Artificial Intelligence (Q3); Computational Theory and Mathematics (Q3); Software (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +14892;21100241790;"International Journal of Differential Equations";journal;"16879651, 16879643";"John Wiley and Sons Ltd";Yes;No;0,375;Q3;32;25;52;1012;84;52;1,72;40,48;23,33;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +14893;21101038736;"International Marine Energy Journal";journal;"26315548";"European Wave and Tidal Energy Conference";Yes;Yes;0,375;Q3;12;47;48;1219;74;47;0,82;25,94;22,12;0;United Kingdom;Western Europe;"European Wave and Tidal Energy Conference";"2018-2025";"Ocean Engineering (Q3); Oceanography (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Earth and Planetary Sciences; Energy; Engineering" +14894;14894;"Journal of Biological Physics";journal;"15730689, 00920606";"Springer Science and Business Media B.V.";No;No;0,375;Q3;55;29;70;1402;167;70;2,43;48,34;37,08;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1973-1993, 1995-1997, 1999-2026";"Atomic and Molecular Physics, and Optics (Q3); Biophysics (Q3); Cell Biology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Physics and Astronomy" +14895;144926;"Journal of Computational Electronics";journal;"15728137, 15698025";"Springer";No;No;0,375;Q3;57;206;413;8455;1201;411;3,06;41,04;26,26;0;United States;Northern America;"Springer";"2002-2026";"Atomic and Molecular Physics, and Optics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Modeling and Simulation (Q3)";"Engineering; Materials Science; Mathematics; Physics and Astronomy" +14896;19600166323;"Journal of Parasitic Diseases";journal;"09717196, 09750703";"Springer";No;No;0,375;Q3;40;138;300;7009;492;300;1,32;50,79;45,02;0;India;Asiatic Region;"Springer";"2009-2026";"Parasitology (Q3)";"Immunology and Microbiology" +14897;19900191849;"Journal of Physical Education and Sport";journal;"22478051, 2247806X";"Editura Universitatii din Pitesti";Yes;No;0,375;Q3;43;176;1128;6638;1523;1128;1,45;37,72;37,38;0;Romania;Eastern Europe;"Editura Universitatii din Pitesti";"2011-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)";"Health Professions" +14898;21055;"Materials Science-Poland";journal;"20831331, 2083134X";"Sciendo";Yes;No;0,375;Q3;48;49;147;2032;349;147;2,32;41,47;27,78;0;Germany;Western Europe;"Sciendo";"2002-2025";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +14899;21100853513;"Pharmaceutical Nanotechnology";journal;"22117385, 22117393";"Bentham Science Publishers";No;No;0,375;Q3;27;117;112;12245;338;108;2,95;104,66;43,72;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2014-2026";"Biomedical Engineering (Q3); Pharmaceutical Science (Q3)";"Engineering; Pharmacology, Toxicology and Pharmaceutics" +14900;25303;"Polyhedron";journal;"02775387";"Elsevier Ltd";No;No;0,375;Q3;116;376;1243;22692;3302;1241;2,93;60,35;35,64;0;United Kingdom;Western Europe;"Elsevier Ltd";"1982-2026";"Inorganic Chemistry (Q3); Materials Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry; Materials Science" +14901;19500157076;"Reaction Kinetics, Mechanisms and Catalysis";journal;"18785204, 18785190";"Springer Science and Business Media B.V.";No;No;0,375;Q3;53;272;588;12430;1317;583;2,34;45,70;41,63;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2010-2026";"Catalysis (Q3); Physical and Theoretical Chemistry (Q3)";"Chemical Engineering; Chemistry" +14902;21101133224;"Separation Science Plus";journal;"25731815";"John Wiley and Sons Inc";No;No;0,375;Q3;18;198;291;7392;784;291;2,90;37,33;39,56;0;United States;Northern America;"John Wiley and Sons Inc";"2018-2026";"Analytical Chemistry (Q3); Filtration and Separation (Q4)";"Chemical Engineering; Chemistry" +14903;7200153192;"Taiwania";journal;"0372333X";"National Taiwan University (IEEB)";Yes;No;0,375;Q3;26;87;212;3071;235;197;1,11;35,30;29,41;0;Taiwan;Asiatic Region;"National Taiwan University (IEEB)";"2007-2026";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14904;21101361110;"Therapeutic Advances in Pulmonary and Critical Care Medicine";journal;"29768675";"SAGE Publications Ltd";No;No;0,375;Q3;25;10;32;466;66;30;3,11;46,60;25,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2023-2025";"Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +14905;5700181946;"Babel";journal;"05219744, 15699668";"John Benjamins Publishing Company";No;No;0,374;Q1;24;42;107;1723;123;107;1,08;41,02;59,38;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1955-1971, 1973-1985, 1987-1990, 1995-2026";"Linguistics and Language (Q1); Communication (Q2)";"Social Sciences" +14906;21100286340;"Discourse and Interaction";journal;"18029930, 1805952X";"Masarykova Universita";No;No;0,374;Q1;11;12;39;497;41;38;0,96;41,42;75,00;0;Czech Republic;Eastern Europe;"Masarykova Universita";"2013-2025";"Linguistics and Language (Q1)";"Social Sciences" +14907;15556;"Financial History Review";journal;"09685650, 14740052";"Cambridge University Press";No;No;0,374;Q1;24;19;35;1180;27;35;0,83;62,11;19,35;0;United Kingdom;Western Europe;"Cambridge University Press";"1994-1999, 2003-2026";"History (Q1); Finance (Q3)";"Arts and Humanities; Economics, Econometrics and Finance" +14908;21100200645;"International Journal of Language Studies";journal;"21574901, 21574898";"Lulu Press Inc";No;No;0,374;Q1;16;30;86;1418;123;80;1,47;47,27;71,79;0;United States;Northern America;"Lulu Press Inc";"2018-2026";"Linguistics and Language (Q1)";"Social Sciences" +14909;29448;"Review of Radical Political Economics";journal;"04866134, 15528502";"SAGE Publications Inc.";No;No;0,374;Q1;47;67;112;3154;151;105;1,27;47,07;34,15;0;United States;Northern America;"SAGE Publications Inc.";"1969-2026";"Philosophy (Q1); Economics and Econometrics (Q3)";"Arts and Humanities; Economics, Econometrics and Finance" +14910;21100829150;"Taiwan Journal of TESOL";journal;"18149448, 20767617";"Crane Publishing Co.";No;No;0,374;Q1;10;9;27;445;44;26;0,81;49,44;47,06;0;Taiwan;Asiatic Region;"Crane Publishing Co.";"2017-2025";"Linguistics and Language (Q1); Education (Q3)";"Social Sciences" +14911;12685;"American Journal of Law and Medicine";journal;"00988588, 2375835X";"Cambridge University Press";No;No;0,374;Q2;37;22;83;5219;82;82;0,96;237,23;41,94;0;United Kingdom;Western Europe;"Cambridge University Press";"1975-2025";"Law (Q2); Health (social science) (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +14912;21101051704;"Central Asian Affairs";journal;"22142290, 22142282";"Brill Academic Publishers";No;No;0,374;Q2;14;11;46;698;61;45;0,78;63,45;58,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2025";"Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14913;21101165604;"Frontiers of Mathematics";journal;"27318656, 27318648";"Higher Education Press Limited Company";No;No;0,374;Q2;35;94;187;2215;125;187;0,65;23,56;42,46;0;China;Asiatic Region;"Higher Education Press Limited Company";"2023-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +14914;21100283367;"International Journal of Prognostics and Health Management";journal;"21532648";"Prognostics and Health Management Society";Yes;Yes;0,374;Q2;31;45;85;2005;178;83;2,15;44,56;15,89;0;United States;Northern America;"Prognostics and Health Management Society";"2010-2026";"Computer Science (miscellaneous) (Q2); Safety, Risk, Reliability and Quality (Q2); Civil and Structural Engineering (Q3); Energy Engineering and Power Technology (Q3); Mechanical Engineering (Q3)";"Computer Science; Energy; Engineering" +14915;145626;"Journal of Natural Disasters";journal;"10044574";"Institute of Engineering Mechanics (IEM)";No;No;0,374;Q2;29;117;392;3712;537;392;1,32;31,73;30,65;0;China;Asiatic Region;"Institute of Engineering Mechanics (IEM)";"2003-2005, 2007-2019, 2021-2025";"Earth and Planetary Sciences (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +14916;18319;"Journal of Veterinary Medical Science";journal;"13477439, 09167250";"Japanese Society of Veterinary Science";Yes;No;0,374;Q2;77;225;666;6898;819;460;1,15;30,66;33,54;0;Japan;Asiatic Region;"Japanese Society of Veterinary Science";"1991-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +14917;21100465416;"Nonlinear Engineering";journal;"21928029, 21928010";"Walter de Gruyter GmbH";Yes;No;0,374;Q2;39;126;233;3532;570;232;2,61;28,03;39,16;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2012-2026";"Engineering (miscellaneous) (Q2); Chemical Engineering (miscellaneous) (Q3); Computer Networks and Communications (Q3); Modeling and Simulation (Q3)";"Chemical Engineering; Computer Science; Engineering; Mathematics" +14918;21101264299;"Quaestio Facti";journal;"26604515, 26046202";"University of Girona";Yes;Yes;0,374;Q2;6;18;56;913;38;53;0,63;50,72;27,78;0;Spain;Western Europe;"University of Girona";"2020-2026";"Law (Q2)";"Social Sciences" +14919;21101176848;"Quantitative Finance and Economics";journal;"25730134";"American Institute of Mathematical Sciences";Yes;Yes;0,374;Q2;9;32;64;1881;139;64;2,17;58,78;37,50;0;United States;Northern America;"American Institute of Mathematical Sciences";"2017, 2023-2026";"Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +14920;21100886347;"Risks";journal;"22279091";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,374;Q2;45;251;662;13166;1860;652;2,79;52,45;35,08;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Accounting (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +14921;14452;"Simulation";journal;"17413133, 00375497";"SAGE Publications Ltd";No;No;0,374;Q2;58;71;215;3439;453;205;2,30;48,44;24,69;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1963-2026";"Computer Graphics and Computer-Aided Design (Q2); Mathematics (miscellaneous) (Q2); Modeling and Simulation (Q3); Software (Q3)";"Computer Science; Mathematics" +14922;21100942342;"Asian Journal of University Education";journal;"26009749, 18237797";"UiTM Press";Yes;No;0,374;Q3;25;77;214;3436;429;214;1,98;44,62;50,47;0;Malaysia;Asiatic Region;"UiTM Press";"2019-2025";"Education (Q3)";"Social Sciences" +14923;21101189038;"Complex Engineering Systems";journal;"27706249";"OAE Publishing Inc.";No;No;0,374;Q3;9;16;66;932;136;64;1,92;58,25;31,03;0;United States;Northern America;"OAE Publishing Inc.";"2021-2026";"Control and Systems Engineering (Q3)";"Engineering" +14924;29630;"Journal of Natural History";journal;"00222933, 14645262";"Taylor and Francis Ltd.";No;No;0,374;Q3;58;132;285;6027;250;283;0,89;45,66;28,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1967-2026";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14925;19900192172;"Journal of Nutrition in Gerontology and Geriatrics";journal;"21551200, 21551197";"Routledge";No;No;0,374;Q3;34;16;40;629;54;40;0,92;39,31;59,60;0;United States;Northern America;"Routledge";"2011-2026";"Geriatrics and Gerontology (Q3); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +14926;25897;"Journal of Organometallic Chemistry";journal;"0022328X";"Elsevier B.V.";No;No;0,374;Q3;139;310;745;20704;1879;734;2,74;66,79;36,18;0;Netherlands;Western Europe;"Elsevier B.V.";"1963-2026";"Biochemistry (Q3); Inorganic Chemistry (Q3); Materials Chemistry (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science" +14927;4700152787;"Journal of Social Work in End-of-Life and Palliative Care";journal;"15524256, 15524264";"Routledge";No;No;0,374;Q3;32;35;104;725;84;56;0,79;20,71;79,07;0;United States;Northern America;"Routledge";"2005-2026";"Health (social science) (Q3); Life-span and Life-course Studies (Q3); Medicine (miscellaneous) (Q3); Social Work (Q3)";"Medicine; Social Sciences" +14928;21100434810;"Microbial Risk Analysis";journal;"23523522";"Elsevier B.V.";No;No;0,374;Q3;27;19;83;1132;175;83;2,17;59,58;46,34;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Epidemiology (Q3); Infectious Diseases (Q3); Microbiology (medical) (Q3)";"Medicine" +14929;26442;"Polycyclic Aromatic Compounds";journal;"15635333, 10406638";"Taylor and Francis Ltd.";No;No;0,374;Q3;49;110;1448;6793;4206;1447;3,04;61,75;39,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2026";"Materials Chemistry (Q3); Organic Chemistry (Q3); Polymers and Plastics (Q3)";"Chemistry; Materials Science" +14930;21101291056;"Power Electronics and Drives";journal;"25434292, 24510262";"Sciendo";Yes;No;0,374;Q3;8;31;55;874;136;55;2,47;28,19;14,74;0;Poland;Eastern Europe;"Sciendo";"2023-2026";"Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Nuclear Energy and Engineering (Q3)";"Energy; Engineering" +14931;17896;"Seminars in Roentgenology";journal;"0037198X, 15584658";"W.B. Saunders";No;No;0,374;Q3;35;43;141;2126;160;116;1,03;49,44;35,17;0;United States;Northern America;"W.B. Saunders";"1966-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +14932;95165;"Proceedings of the IEEE Workshop on Computers in Power Electronics, COMPEL";conference and proceedings;"10935142";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,374;-;25;0;87;0;93;86;0,00;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1990, 1992, 1994, 1996, 1998, 2000, 2002, 2004, 2006, 2022";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Engineering (miscellaneous); Software";"Computer Science; Engineering; Materials Science" +14933;56297;"Anthropological Science";journal;"09187960, 13488570";"Anthropological Society of Nippon";No;No;0,373;Q1;36;11;48;427;34;45;0,36;38,82;32,50;0;Japan;Asiatic Region;"Anthropological Society of Nippon";"1993-2026";"Anthropology (Q1)";"Social Sciences" +14934;21100838187;"European Journal of Humour Research";journal;"2307700X";"Cracow Tertium Society for the Promotion of Language Studies";Yes;Yes;0,373;Q1;13;56;134;2542;174;134;1,42;45,39;44,87;0;Poland;Eastern Europe;"Cracow Tertium Society for the Promotion of Language Studies";"2017-2025";"Cultural Studies (Q1); Linguistics and Language (Q1); Communication (Q2); Applied Psychology (Q3)";"Psychology; Social Sciences" +14935;38295;"Historical Archaeology";journal;"04409213, 23281103";"Springer Science and Business Media Deutschland GmbH";No;No;0,373;Q1;31;26;166;2446;96;149;0,55;94,08;70,37;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1968, 1971, 1977, 1981, 1983-1984, 1987, 1990-1991, 1993, 1996, 1998-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +14936;5700164168;"History and Anthropology";journal;"14772612, 02757206";"Routledge";No;No;0,373;Q1;37;46;151;3221;139;151;0,89;70,02;40,00;0;United Kingdom;Western Europe;"Routledge";"1984-1987, 1989-2026";"Anthropology (Q1); Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +14937;21101046167;"Journal of Cultural Analytics";journal;"23714549";"Department of Languages, Literatures, and Cultures, McGill University";Yes;Yes;0,373;Q1;13;13;64;669;57;64;0,61;51,46;48,65;0;Canada;Northern America;"Department of Languages, Literatures, and Cultures, McGill University";"2019-2025";"History (Q1); Literature and Literary Theory (Q1); Arts and Humanities (miscellaneous) (Q2); Computer Science (miscellaneous) (Q2)";"Arts and Humanities; Computer Science" +14938;21100902635;"Revista Electronica Interuniversitaria de Formacion del Profesorado";journal;"15750965";"Universidad de Murcia Servicio de Publicaciones";Yes;Yes;0,373;Q1;18;31;142;1223;235;141;1,76;39,45;50,00;0;Spain;Western Europe;"Universidad de Murcia Servicio de Publicaciones";"2019-2025";"Cultural Studies (Q1); Education (Q3)";"Social Sciences" +14939;21101046765;"Advances in Weed Science";journal;"26759462";"Sociedade Brasileira da Ciencia das Plantas Daninha";Yes;No;0,373;Q2;40;38;109;1507;201;107;1,14;39,66;24,18;0;Brazil;Latin America;"Sociedade Brasileira da Ciencia das Plantas Daninha";"2021-2025";"Agronomy and Crop Science (Q2); Plant Science (Q2); Biochemistry (Q3); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +14940;21100842838;"AIMS Agriculture and Food";journal;"24712086";"AIMS Press";Yes;No;0,373;Q2;28;53;171;2925;393;169;2,20;55,19;39,50;0;United States;Northern America;"AIMS Press";"2016-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Food Science (Q3)";"Agricultural and Biological Sciences" +14941;21100198528;"International Journal of Geoinformatics";journal;"16866576, 26730014";"Association for Geoinformation Technology";No;No;0,373;Q2;18;107;245;4528;535;238;2,33;42,32;33,49;0;Thailand;Asiatic Region;"Association for Geoinformation Technology";"2008-2026";"Geography, Planning and Development (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Instrumentation (Q3)";"Earth and Planetary Sciences; Physics and Astronomy; Social Sciences" +14942;21100208059;"Journal of International Political Theory";journal;"17551722, 17550882";"SAGE Publications Ltd";No;No;0,373;Q2;22;50;69;2354;84;68;1,00;47,08;40,82;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2009, 2014-2026";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14943;21101041900;"Journal of International Studies (Malaysia)";journal;"2289666X, 1823691X";"Universiti Utara Malaysia Press";Yes;No;0,373;Q2;8;11;50;803;82;50;1,75;73,00;38,10;0;Malaysia;Asiatic Region;"Universiti Utara Malaysia Press";"2019-2025";"Political Science and International Relations (Q2); Business and International Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +14944;28242;"Journal of Perinatal and Neonatal Nursing";journal;"08932190, 15505073";"Lippincott Williams and Wilkins";No;No;0,373;Q2;54;72;234;2048;217;196;0,90;28,44;72,73;0;United States;Northern America;"Lippincott Williams and Wilkins";"1987-2026";"Critical Care Nursing (Q2); Maternity and Midwifery (Q2); Medicine (miscellaneous) (Q3); Pediatrics (Q3)";"Medicine; Nursing" +14945;21101049098;"Plasma Physics and Technology";journal;"23362634, 23362626";"Czech Technical University";No;No;0,373;Q2;6;39;51;632;61;51;1,22;16,21;18,48;0;Czech Republic;Eastern Europe;"Czech Technical University";"2019-2025";"Physics and Astronomy (miscellaneous) (Q2); Condensed Matter Physics (Q3)";"Physics and Astronomy" +14946;21100203931;"Psyche: Journal of Entomology";journal;"00332615, 16877438";"John Wiley and Sons Inc";Yes;No;0,373;Q2;34;15;33;765;68;33;1,76;51,00;37,74;0;United States;Northern America;"John Wiley and Sons Inc";"1874-1885, 1888-1910, 1912-1995, 2009-2025";"Insect Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14947;89299;"Revista Brasileira de Estudos de Populacao";journal;"01023098";"Associacao Brasileira de Estudos Populacionais";Yes;Yes;0,373;Q2;19;28;103;1207;74;95;0,50;43,11;43,10;0;Brazil;Latin America;"Associacao Brasileira de Estudos Populacionais";"1984-1992, 1996, 2007-2025";"Demography (Q2)";"Social Sciences" +14948;130177;"Zebrafish";journal;"15458547";"Mary Ann Liebert Inc.";No;No;0,373;Q2;64;30;110;1119;156;109;1,19;37,30;41,78;0;United States;Northern America;"Mary Ann Liebert Inc.";"2005-2025";"Animal Science and Zoology (Q2); Developmental Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +14949;21100298667;"Center for Educational Policy Studies Journal";journal;"18559719, 22322647";"University of Ljubljana";Yes;Yes;0,373;Q3;26;48;127;2053;159;114;0,79;42,77;66,67;0;Slovenia;Eastern Europe;"University of Ljubljana";"2011-2025";"Education (Q3)";"Social Sciences" +14950;19900191845;"Frontiers of Materials Science";journal;"20950268, 2095025X";"Higher Education Press Limited Company";No;No;0,373;Q3;47;40;127;2373;275;126;2,45;59,33;40,97;0;China;Asiatic Region;"Higher Education Press Limited Company";"2011-2026";"Materials Science (miscellaneous) (Q3)";"Materials Science" +14951;21100255536;"Journal of Mathematical Physics, Analysis, Geometry";journal;"18175805, 18129471";"B.Verkin Institute for Low Temperature Physics and Engineering of the NAS of Ukraine";Yes;No;0,373;Q3;16;22;90;532;70;90;0,62;24,18;18,92;0;Ukraine;Eastern Europe;"B.Verkin Institute for Low Temperature Physics and Engineering of the NAS of Ukraine";"2008-2025";"Analysis (Q3); Geometry and Topology (Q3); Mathematical Physics (Q3)";"Mathematics" +14952;12991;"RAIRO - Operations Research";journal;"12903868, 03990559";"EDP Sciences";No;No;0,373;Q3;43;175;628;7805;1337;628;1,84;44,60;36,23;0;France;Western Europe;"EDP Sciences";"1977-1978, 1995-2026";"Computer Science Applications (Q3); Management Science and Operations Research (Q3); Theoretical Computer Science (Q3)";"Computer Science; Decision Sciences; Mathematics" +14953;21101060167;"Software Impacts";journal;"26659638";"Elsevier B.V.";No;No;0,373;Q3;25;78;416;1407;807;415;1,85;18,04;22,53;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Software (Q3)";"Computer Science" +14954;21101038537;"SynOpen";journal;"25099396";"Georg Thieme Verlag";Yes;No;0,373;Q3;17;22;130;1201;285;129;2,47;54,59;39,25;0;Germany;Western Europe;"Georg Thieme Verlag";"2017-2026";"Biomaterials (Q3); Catalysis (Q3); Materials Science (miscellaneous) (Q3); Organic Chemistry (Q3)";"Chemical Engineering; Chemistry; Materials Science" +14955;19659;"Theoretical Medicine and Bioethics";journal;"15731200, 13867415";"Springer Science and Business Media B.V.";No;No;0,373;Q3;47;33;98;1302;135;81;1,39;39,45;32,50;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1997-2026";"Issues, Ethics and Legal Aspects (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +14956;21100332435;"World Journal for Pediatric and Congenital Heart Surgery";journal;"2150136X, 21501351";"SAGE Publications Inc.";No;No;0,373;Q3;39;169;429;2905;392;376;0,82;17,19;31,14;0;United States;Northern America;"SAGE Publications Inc.";"2010-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3); Surgery (Q3)";"Medicine" +14957;21101166827;"Dissertationes Archaeologicae ex Instituto Archaeologico Universitatis de Rolando Eotvos Nominatae";journal;"20644574";"Eotvos Lorand Tudomanyegyetem";Yes;Yes;0,372;Q1;7;37;81;2391;45;80;0,42;64,62;39,47;0;Hungary;Eastern Europe;"Eotvos Lorand Tudomanyegyetem";"2019-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +14958;5700183126;"Sign Language Studies";journal;"15336263, 03021475";"Gallaudet University Press";No;No;0,372;Q1;37;20;80;1085;49;77;0,57;54,25;65,79;0;United States;Northern America;"Gallaudet University Press";"2002-2025";"Linguistics and Language (Q1)";"Social Sciences" +14959;21101226574;"Annals of Dental Specialty";journal;"23472022, 23218436";"";No;No;0,372;Q2;10;68;179;2786;344;179;2,53;40,97;53,54;0;Turkey;Middle East;"";"2020-2025";"Dental Assisting (Q2); Dentistry (miscellaneous) (Q2); Oral Surgery (Q2); Dental Hygiene (Q3)";"Dentistry" +14960;21100775648;"Cogent Arts and Humanities";journal;"23311983";"Cogent OA";Yes;No;0,372;Q2;27;354;695;18868;1150;695;1,56;53,30;41,96;0;United Kingdom;Western Europe;"Cogent OA";"2014-2026";"Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +14961;21100416511;"Ethnobiology and Conservation";journal;"22384782";"Universidade Federal Rural de Pernambuco";Yes;No;0,372;Q2;23;38;88;2492;139;85;1,59;65,58;48,48;0;Brazil;Latin America;"Universidade Federal Rural de Pernambuco";"2012-2025";"Animal Science and Zoology (Q2); Anthropology (Q2); Nature and Landscape Conservation (Q2); Plant Science (Q2); Ecology (Q3)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +14962;11900154359;"European Journal of Transport and Infrastructure Research";journal;"15677141, 15677133";"TU Delft";Yes;Yes;0,372;Q2;38;16;41;687;74;40;1,35;42,94;17,39;1;Netherlands;Western Europe;"TU Delft";"2002, 2008-2025";"Geography, Planning and Development (Q2); Urban Studies (Q2); Transportation (Q3)";"Social Sciences" +14963;27946;"Geophysical and Astrophysical Fluid Dynamics";journal;"10290419, 03091929";"Taylor and Francis Ltd.";No;No;0,372;Q2;41;26;57;995;78;56;1,52;38,27;10,64;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971, 1973, 1975, 1977-2026";"Computational Mechanics (Q2); Astronomy and Astrophysics (Q3); Geochemistry and Petrology (Q3); Geophysics (Q3); Mechanics of Materials (Q3)";"Earth and Planetary Sciences; Engineering; Physics and Astronomy" +14964;21101177468;"German Journal of Veterinary Research";journal;"27031322";"German Multidisciplinary Publishing Center";Yes;No;0,372;Q2;12;45;92;2393;168;90;1,74;53,18;35,02;0;Germany;Western Europe;"German Multidisciplinary Publishing Center";"2021-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +14965;21100941737;"Hawaii Journal of Health and Social Welfare";journal;"26415216, 26415224";"University Health Partners of Hawaii";No;No;0,372;Q2;38;39;189;939;233;166;1,42;24,08;65,44;0;United States;Northern America;"University Health Partners of Hawaii";"2019-2026";"Social Sciences (miscellaneous) (Q2); Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +14966;21100197318;"International Journal of Automation Technology";journal;"18838022, 18817629";"Fuji Technology Press";Yes;No;0,372;Q2;30;109;244;2592;338;225;1,28;23,78;9,41;0;Japan;Asiatic Region;"Fuji Technology Press";"2007-2026";"Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q3)";"Engineering" +14967;12000154350;"International Journal of Knowledge Management";journal;"15480666, 15480658";"IGI Publishing";No;No;0,372;Q2;34;78;60;3671;169;60;2,22;47,06;50,00;0;United States;Northern America;"IGI Publishing";"2005-2026";"Management Information Systems (Q2); Computer Science Applications (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Computer Science" +14968;21100242411;"International Journal of Law in Context";journal;"17445531, 17445523";"Cambridge University Press";No;No;0,372;Q2;34;47;102;3491;140;101;1,33;74,28;67,19;0;United Kingdom;Western Europe;"Cambridge University Press";"2005-2026";"Law (Q2)";"Social Sciences" +14969;21101032131;"Journal for Peace and Nuclear Disarmament";journal;"25751654";"Taylor and Francis Ltd.";Yes;Yes;0,372;Q2;14;29;103;1348;104;79;0,97;46,48;36,00;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2025";"Political Science and International Relations (Q2)";"Social Sciences" +14970;21100846340;"Journal of Comparative Politics";journal;"13381385";"University of Ljubljana";Yes;No;0,372;Q2;9;14;37;867;47;35;1,00;61,93;30,00;0;Slovenia;Eastern Europe;"University of Ljubljana";"2017-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14971;21100857120;"Open Agriculture";journal;"23919531";"Walter de Gruyter GmbH";Yes;No;0,372;Q2;33;82;316;5110;753;314;2,24;62,32;40,52;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2016-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +14972;5700168238;"Politologicky Casopis";journal;"12113247, 18059503";"Masaryk University";No;No;0,372;Q2;15;11;36;875;46;36;1,14;79,55;15,00;0;Czech Republic;Eastern Europe;"Masaryk University";"2015-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14973;5800208235;"Spatial Cognition and Computation";journal;"13875868, 15739252";"Taylor and Francis Ltd.";No;No;0,372;Q2;46;14;34;755;78;34;2,05;53,93;46,30;0;United States;Northern America;"Taylor and Francis Ltd.";"2000, 2003-2026";"Computer Graphics and Computer-Aided Design (Q2); Computer Vision and Pattern Recognition (Q2); Earth-Surface Processes (Q2); Modeling and Simulation (Q3); Experimental and Cognitive Psychology (Q4)";"Computer Science; Earth and Planetary Sciences; Mathematics; Psychology" +14974;21100218539;"Asian Journal of Endoscopic Surgery";journal;"17585902, 17585910";"Blackwell Publishing Asia";No;No;0,372;Q3;32;233;431;3455;469;421;1,06;14,83;12,73;0;Japan;Asiatic Region;"Blackwell Publishing Asia";"2011-2026";"Gastroenterology (Q3); Surgery (Q3)";"Medicine" +14975;20529;"British Journal of Neurosurgery";journal;"02688697, 1360046X";"Taylor and Francis Ltd.";No;No;0,372;Q3;80;171;801;4781;820;710;0,90;27,96;22,72;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3); Surgery (Q3)";"Medicine" +14976;21101240666;"Clinical Transplantation and Research";journal;"30227712, 30226783";"Korean Society for Transplantation";Yes;Yes;0,372;Q3;9;54;111;2819;136;105;0,96;52,20;34,29;0;South Korea;Asiatic Region;"Korean Society for Transplantation";"2024-2025";"Transplantation (Q3); Immunology (Q4)";"Immunology and Microbiology; Medicine" +14977;19700186711;"Decision Analysis";journal;"15458504, 15458490";"INFORMS Institute for Operations Research and the Management Sciences";No;No;0,372;Q3;34;18;55;701;83;51;1,33;38,94;13,89;0;United States;Northern America;"INFORMS Institute for Operations Research and the Management Sciences";"2006, 2010-2025";"Decision Sciences (miscellaneous) (Q3)";"Decision Sciences" +14978;19900195021;"International Journal of Steel Structures";journal;"20936311, 15982351";"Korean Society of Steel Construction";No;No;0,372;Q3;44;99;341;2988;586;341;1,61;30,18;22,12;0;South Korea;Asiatic Region;"Korean Society of Steel Construction";"2009-2026";"Civil and Structural Engineering (Q3)";"Engineering" +14979;21100241696;"Journal for Nurses in Professional Development";journal;"2169981X, 21699798";"Lippincott Williams and Wilkins";No;No;0,372;Q3;27;101;314;1164;264;288;0,88;11,52;89,03;0;United States;Northern America;"Lippincott Williams and Wilkins";"2013-2026";"Education (Q3); Fundamentals and Skills (Q3); Leadership and Management (Q3); Medicine (miscellaneous) (Q3); Review and Exam Preparation (Q3)";"Medicine; Nursing; Social Sciences" +14980;19500157817;"Mathematical Communications";journal;"13310623";"Udruga Matematicara Osijek";Yes;Yes;0,372;Q3;26;18;60;401;67;60;1,08;22,28;38,46;0;Croatia;Eastern Europe;"Udruga Matematicara Osijek";"2008-2025";"Algebra and Number Theory (Q3); Analysis (Q3); Applied Mathematics (Q3); Geometry and Topology (Q3)";"Mathematics" +14981;21100399153;"Boletin del Museo Chileno de Arte Precolombino";journal;"07161530, 07186894";"Museo Chileno de Arte Precolombino";Yes;Yes;0,371;Q1;12;9;56;491;32;49;0,66;54,56;36,36;0;Chile;Latin America;"Museo Chileno de Arte Precolombino";"2014-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1); Visual Arts and Performing Arts (Q1); Anthropology (Q2)";"Arts and Humanities; Social Sciences" +14982;13475;"Culture and Psychology";journal;"14617056, 1354067X";"SAGE Publications Ltd";No;No;0,371;Q1;61;97;137;5641;205;130;1,53;58,15;59,55;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2026";"Cultural Studies (Q1); Anthropology (Q2); Sociology and Political Science (Q2); Social Psychology (Q3)";"Psychology; Social Sciences" +14983;5700154315;"Family and Consumer Sciences Research Journal";journal;"1077727X, 15523934";"Wiley-Blackwell";No;No;0,371;Q1;44;33;71;1391;112;58;1,42;42,15;65,79;0;United States;Northern America;"Wiley-Blackwell";"1972-1973, 1994-2026";"Cultural Studies (Q1); Sociology and Political Science (Q2)";"Social Sciences" +14984;22963;"Interdisciplinary Science Reviews";journal;"03080188, 17432790";"SAGE Publications Ltd";No;No;0,371;Q1;35;8;116;150;185;102;2,05;18,75;50,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1976-2025";"History and Philosophy of Science (Q1); Multidisciplinary (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Multidisciplinary; Social Sciences" +14985;21101173038;"Language and Semiotic Studies";journal;"2096031X, 27517160";"Walter de Gruyter GmbH";Yes;Yes;0,371;Q1;7;43;88;1710;125;87;1,62;39,77;53,45;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2017-2026";"Cultural Studies (Q1); Linguistics and Language (Q1); Communication (Q2)";"Social Sciences" +14986;5900152783;"Visual Studies";journal;"1472586X, 14725878";"Routledge";No;No;0,371;Q1;56;97;218;2884;212;186;0,97;29,73;48,03;0;United Kingdom;Western Europe;"Routledge";"2002-2026";"Cultural Studies (Q1); Visual Arts and Performing Arts (Q1); Anthropology (Q2)";"Arts and Humanities; Social Sciences" +14987;24713;"Behaviour";journal;"00057959, 1568539X";"Brill Academic Publishers";No;No;0,371;Q2;91;52;152;3231;154;147;1,16;62,13;42,71;0;Netherlands;Western Europe;"Brill Academic Publishers";"1948, 1950-1951, 1953-2026";"Animal Science and Zoology (Q2); Behavioral Neuroscience (Q4)";"Agricultural and Biological Sciences; Neuroscience" +14988;20316;"European Journal of Entomology";journal;"12105759, 18028829";"Czech Academy of Sciences";Yes;No;0,371;Q2;67;33;122;1727;176;122;1,42;52,33;31,06;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"1993-2026";"Insect Science (Q2)";"Agricultural and Biological Sciences" +14989;21100811152;"International Journal of Forestry Research";journal;"16879368, 16879376";"John Wiley and Sons Ltd";Yes;No;0,371;Q2;21;59;107;3302;265;107;2,51;55,97;22,75;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2016-2026";"Forestry (Q2); Nature and Landscape Conservation (Q2); Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +14990;19900191761;"Journal of Radio and Audio Media";journal;"19376537, 19376529";"Routledge";No;No;0,371;Q2;22;41;104;1823;122;94;0,95;44,46;38,18;1;United States;Northern America;"Routledge";"2010-2026";"Communication (Q2)";"Social Sciences" +14991;19272;"Kew Bulletin";journal;"1874933X, 00755974";"Springer Science and Business Media Deutschland GmbH";No;No;0,371;Q2;40;79;206;2571;193;205;0,86;32,54;29,77;0;United Kingdom;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1993-2026";"Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +14992;21101388869;"Lex Social";journal;"21746419";"Universidad Pablo de Olavide";No;No;0,371;Q2;4;36;116;1607;43;103;0,39;44,64;40,00;0;Spain;Western Europe;"Universidad Pablo de Olavide";"2022-2025";"Law (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +14993;26436;"Social Science Japan Journal";journal;"13691465, 14682680";"Oxford University Press";No;No;0,371;Q2;29;25;39;1719;67;37;1,63;68,76;36,36;0;United Kingdom;Western Europe;"Oxford University Press";"1998-2026";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +14994;27021;"Applied Magnetic Resonance";journal;"09379347, 16137507";"Springer-Verlag Wien";No;No;0,371;Q3;52;107;310;4063;394;290;1,27;37,97;26,54;0;Austria;Western Europe;"Springer-Verlag Wien";"1990-2026";"Atomic and Molecular Physics, and Optics (Q3)";"Physics and Astronomy" +14995;21101172931;"Asian Journal of Green Chemistry";journal;"25884328, 25885839";"Sami Publishing Company";No;No;0,371;Q3;13;61;80;2927;325;80;4,06;47,98;44,75;0;France;Western Europe;"Sami Publishing Company";"2023-2026";"Analytical Chemistry (Q3); Chemistry (miscellaneous) (Q3); Environmental Chemistry (Q3); Materials Chemistry (Q3); Organic Chemistry (Q3)";"Chemistry; Environmental Science; Materials Science" +14996;21101049547;"EAI Endorsed Transactions on Industrial Networks and Intelligent Systems";journal;"24100218";"European Alliance for Innovation";Yes;Yes;0,371;Q3;16;22;57;692;116;57;1,90;31,45;22,67;0;Belgium;Western Europe;"European Alliance for Innovation";"2014-2025";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Control and Systems Engineering (Q3); Information Systems (Q3)";"Computer Science; Engineering" +14997;17500155106;"Egyptian Journal of Neurology, Psychiatry and Neurosurgery";journal;"16878329, 11101083";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,371;Q3;27;129;490;5076;781;477;1,50;39,35;44,70;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2009-2016, 2018-2026";"Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3); Surgery (Q3); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience" +14998;21100241210;"Geotectonica et Metallogenia";journal;"10011552, 20959508";"Science Press";No;No;0,371;Q3;32;100;258;6775;294;258;0,90;67,75;27,75;0;China;Asiatic Region;"Science Press";"2013-2025";"Geology (Q3)";"Earth and Planetary Sciences" +14999;28193;"Journal of Community Health Nursing";journal;"15327655, 07370016";"Routledge";No;No;0,371;Q3;40;31;68;1083;110;68;2,04;34,94;80,53;0;United States;Northern America;"Routledge";"1984-2026";"Community and Home Care (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing" +15000;12185;"Journal of Optics (India)";journal;"09728821, 09746900";"Springer";No;No;0,371;Q3;35;897;1247;32935;3349;1244;2,76;36,72;31,64;0;India;Asiatic Region;"Springer";"1996-2026";"Atomic and Molecular Physics, and Optics (Q3)";"Physics and Astronomy" +15001;21100198231;"Psychosis";journal;"17522439, 17522447";"Routledge";No;No;0,371;Q3;37;50;110;1928;132;101;1,08;38,56;60,34;0;United States;Northern America;"Routledge";"2009-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +15002;28580;"Radio Science";journal;"00486604, 1944799X";"Wiley-Blackwell";No;No;0,371;Q3;100;97;267;3743;464;264;1,78;38,59;26,65;0;United States;Northern America;"Wiley-Blackwell";"1966-2026";"Condensed Matter Physics (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)";"Earth and Planetary Sciences; Engineering; Physics and Astronomy" +15003;18349;"South African Medical Journal";journal;"02569574, 20785135";"South African Medical Association";Yes;No;0,371;Q3;70;161;498;4704;462;395;0,89;29,22;47,65;0;South Africa;Africa;"South African Medical Association";"1945-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +15004;21100211110;"ICSE Workshop on Software Engineering for Adaptive and Self-Managing Systems";conference and proceedings;"21567891, 21572305";"IEEE Computer Society";No;No;0,371;-;25;21;25;769;40;23;1,60;36,62;18,42;0;United States;Northern America;"IEEE Computer Society";"2012-2013, 2019, 2023, 2025";"Hardware and Architecture; Software";"Computer Science" +15005;14000155544;"Jazz Perspectives";journal;"17494060, 17494079";"Routledge";No;No;0,370;Q1;8;0;4;0;3;4;0,75;0,00;0,00;0;United Kingdom;Western Europe;"Routledge";"2010-2018, 2020-2021, 2023";"Cultural Studies (Q1); Music (Q1)";"Arts and Humanities; Social Sciences" +15006;6700153271;"Journal of Egyptian Archaeology";journal;"25140582, 03075133";"Egypt Exploration Society";No;No;0,370;Q1;15;32;66;1432;42;65;0,40;44,75;39,62;0;United Kingdom;Western Europe;"Egypt Exploration Society";"1964, 1966-1967, 1969, 1971-1972, 1975, 1980, 2002-2010, 2012-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +15007;14000156125;"Language Documentation and Conservation";journal;"19345275";"University of Hawaii Press";Yes;Yes;0,370;Q1;16;13;59;738;38;59;0,42;56,77;52,78;0;United States;Northern America;"University of Hawaii Press";"2016-2025";"Linguistics and Language (Q1); Library and Information Sciences (Q2); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +15008;21100443880;"Language Related Research";journal;"23223081, 23830816";"Tarbiat Modares University";Yes;No;0,370;Q1;13;73;276;3156;343;269;0,95;43,23;48,28;0;Iran;Middle East;"Tarbiat Modares University";"2012-2026";"Linguistics and Language (Q1)";"Social Sciences" +15009;19700200844;"New Writing";journal;"14790726, 19433107";"Routledge";No;No;0,370;Q1;15;44;129;1328;59;91;0,49;30,18;66,20;0;United Kingdom;Western Europe;"Routledge";"2004-2026";"Literature and Literary Theory (Q1)";"Arts and Humanities" +15010;21100886398;"Profile: Issues in Teachers' Professional Development";journal;"16570790, 22565760";"Universidad Nacional de Colombia";Yes;Yes;0,370;Q1;16;26;88;1069;109;82;1,25;41,12;53,33;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2018-2026";"Linguistics and Language (Q1); Education (Q3)";"Social Sciences" +15011;11600153783;"Review of Faith and International Affairs";journal;"19317743, 15570274";"Taylor and Francis Ltd.";No;No;0,370;Q1;25;47;128;2126;154;115;1,13;45,23;44,44;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007, 2009-2026";"Religious Studies (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +15012;21100788924;"African Journal of Research in Mathematics, Science and Technology Education";journal;"18117295, 24697656";"Taylor and Francis Ltd.";No;No;0,370;Q2;23;30;81;1315;139;79;1,81;43,83;44,07;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"Engineering (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2); Computer Science Applications (Q3); Education (Q3)";"Computer Science; Engineering; Mathematics; Physics and Astronomy; Social Sciences" +15013;27632;"Critical Care Nursing Clinics of North America";journal;"08995885, 15583481";"W.B. Saunders";No;No;0,370;Q2;40;61;162;1823;227;137;1,04;29,89;75,63;0;United States;Northern America;"W.B. Saunders";"1989-2026";"Critical Care Nursing (Q2)";"Nursing" +15014;21101185500;"Florence Nightingale Journal of Nursing";journal;"26876442";"Istanbul University-Cerrahpasa, Florence Nightingale Faculty of Nursing";Yes;Yes;0,370;Q2;8;34;89;1116;133;87;1,44;32,82;67,65;0;Turkey;Middle East;"Istanbul University-Cerrahpasa, Florence Nightingale Faculty of Nursing";"2020-2025";"Nursing (miscellaneous) (Q2)";"Nursing" +15015;19700201164;"International Journal of Aeroacoustics";journal;"20484003, 1475472X";"SAGE Publications Inc.";No;No;0,370;Q2;34;28;107;950;150;98;1,17;33,93;17,72;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2011-2026";"Acoustics and Ultrasonics (Q2); Aerospace Engineering (Q3)";"Engineering; Physics and Astronomy" +15016;27665;"Journal of Contemporary African Studies";journal;"14699397, 02589001";"Routledge";No;No;0,370;Q2;44;34;106;1736;149;98;1,17;51,06;32,61;0;United Kingdom;Western Europe;"Routledge";"1981-1984, 1986-2025";"Geography, Planning and Development (Q2); Political Science and International Relations (Q2); Development (Q3)";"Social Sciences" +15017;130084;"Journal of Contemporary Criminal Justice";journal;"10439862, 15525406";"SAGE Publications Inc.";No;No;0,370;Q2;66;51;127;2340;173;121;1,78;45,88;68,24;4;United States;Northern America;"SAGE Publications Inc.";"1978-1981, 1983-1984, 1987-2026";"Law (Q2)";"Social Sciences" +15018;62444;"Journal of Spatial Science";journal;"14498596, 18365655";"Mapping Sciences Institute Australia";No;No;0,370;Q2;37;35;146;1515;292;140;2,17;43,29;34,51;0;Australia;Pacific Region;"Mapping Sciences Institute Australia";"2004-2025";"Geography, Planning and Development (Q2); Atmospheric Science (Q3); Energy (miscellaneous) (Q3)";"Earth and Planetary Sciences; Energy; Social Sciences" +15019;21101170027;"Materia Socio-Medica";journal;"15127680, 1986597X";"";No;No;0,370;Q2;18;51;150;1319;231;148;1,30;25,86;51,04;0;Bosnia and Herzegovina;Eastern Europe;"";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Social Sciences" +15020;21100984218;"World Journal of Traditional Chinese Medicine";journal;"23118571, 25892894";"Wolters Kluwer Medknow Publications";Yes;Yes;0,370;Q2;21;52;152;2657;399;151;2,41;51,10;48,28;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2015-2025";"Complementary and Alternative Medicine (Q2)";"Medicine" +15021;12914;"Xitong Gongcheng Lilun yu Shijian/System Engineering Theory and Practice";journal;"10006788";"Systems Engineering Society of China";No;No;0,370;Q2;50;163;687;6892;1022;687;1,56;42,28;37,82;0;China;Asiatic Region;"Systems Engineering Society of China";"1998, 2001-2026";"Economic Geology (Q2); Computer Science Applications (Q3); Control and Systems Engineering (Q3); Modeling and Simulation (Q3)";"Computer Science; Earth and Planetary Sciences; Engineering; Mathematics" +15022;21100326880;"Acta Crystallographica Section F:Structural Biology Communications";journal;"2053230X";"John Wiley and Sons Ltd";No;No;0,370;Q3;48;65;142;2255;162;133;1,01;34,69;35,67;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2014-2026";"Biochemistry (Q3); Biophysics (Q3); Condensed Matter Physics (Q3); Medicine (miscellaneous) (Q3); Genetics (Q4); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Physics and Astronomy" +15023;21101132919;"Brain Disorders";journal;"26664593";"Elsevier B.V.";Yes;No;0,370;Q3;14;120;137;7193;237;136;1,42;59,94;40,20;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Neurology (Q3)";"Neuroscience" +15024;13277;"Families, Systems and Health";journal;"10917527, 19390602";"American Psychological Association";No;No;0,370;Q3;60;80;262;2100;258;254;0,78;26,25;71,53;1;United States;Northern America;"American Psychological Association";"1996-2025";"Applied Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +15025;21100868212;"Hematology, Transfusion and Cell Therapy";journal;"25311387, 25311379";"Elsevier Editora Ltda";Yes;Yes;0,370;Q3;38;86;462;2080;508;435;1,01;24,19;52,20;0;Brazil;Latin America;"Elsevier Editora Ltda";"2018-2026";"Hematology (Q3); Immunology and Allergy (Q4)";"Medicine" +15026;21100878668;"Moroccan Journal of Chemistry";journal;"2351812X";"University Mohammed Premier Oujda";No;No;0,370;Q3;23;103;245;6510;718;245;3,38;63,20;34,22;0;Morocco;Africa;"University Mohammed Premier Oujda";"2018-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +15027;21101061970;"New Materials, Compounds and Applications";journal;"25217194, 25234773";"Jomard Publishing";No;No;0,370;Q3;10;48;93;1611;170;92;2,27;33,56;43,15;0;Azerbaijan;Eastern Europe;"Jomard Publishing";"2019-2025";"Analytical Chemistry (Q3); Chemistry (miscellaneous) (Q3); Inorganic Chemistry (Q3); Organic Chemistry (Q3)";"Chemistry" +15028;12520;"Nowotwory";journal;"23002115, 0029540X";"Via Medica";Yes;Yes;0,370;Q3;12;56;175;1731;151;141;1,00;30,91;54,63;0;Poland;Eastern Europe;"Via Medica";"1960-2025";"Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15029;19700175135;"Rare Tumors";journal;"20363605, 20363613";"Page Press Publications";Yes;No;0,370;Q3;24;15;81;447;98;70;1,02;29,80;46,08;0;Italy;Western Europe;"Page Press Publications";"2010-2026";"Histology (Q3); Oncology (Q3)";"Medicine" +15030;19300156930;"Revista Complutense de Educacion";journal;"11302496, 19882793";"Universidad Complutense Madrid";Yes;Yes;0,370;Q3;27;47;223;2099;290;222;1,19;44,66;64,03;0;Spain;Western Europe;"Universidad Complutense Madrid";"2009-2026";"Education (Q3)";"Social Sciences" +15031;19700182025;"Stem Cells and Cloning: Advances and Applications";journal;"11786957";"Dove Medical Press Ltd";Yes;No;0,370;Q3;29;5;23;438;35;18;1,69;87,60;19,23;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2025";"Medicine (miscellaneous) (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15032;14503;"Tribology";journal;"10040595";"Science Press";No;No;0,370;Q3;32;155;400;5554;865;399;2,10;35,83;30,82;0;China;Asiatic Region;"Science Press";"1993-2026";"Materials Chemistry (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Surfaces, Coatings and Films (Q3)";"Engineering; Materials Science" +15033;21100830113;"ISPRS Annals of the Photogrammetry, Remote Sensing and Spatial Information Sciences";conference and proceedings;"21949042, 21949050";"Copernicus GmbH";Yes;Yes;0,370;-;59;243;994;6207;1529;951;1,51;25,54;26,91;0;Germany;Western Europe;"Copernicus GmbH";"2012-2026";"Earth and Planetary Sciences (miscellaneous); Environmental Science (miscellaneous); Instrumentation";"Earth and Planetary Sciences; Environmental Science; Physics and Astronomy" +15034;21100406938;"Global Pentecostal and Charismatic Studies";book series;"18762247";"Brill Academic Publishers";No;No;0,369;Q1;8;24;5;1850;4;5;0,80;77,08;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2013, 2015-2021, 2023-2026";"Cultural Studies (Q1); History (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +15035;18299;"American Journal of Economics and Sociology";journal;"00029246, 15367150";"Wiley-Blackwell Publishing Ltd";No;No;0,369;Q2;52;53;131;2586;230;121;1,95;48,79;36,36;4;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1941-1966, 1968-1976, 1978-2026";"Sociology and Political Science (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +15036;21101100275;"Bestuur";journal;"27224708, 23023783";"Sebelas Maret University Faculty of Law";Yes;No;0,369;Q2;15;9;43;651;86;43;2,03;72,33;42,31;0;Indonesia;Asiatic Region;"Sebelas Maret University Faculty of Law";"2019-2025";"Law (Q2); Public Administration (Q2); Social Sciences (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +15037;21101132463;"Bulletin of the Karaganda University. Mathematics Series";journal;"26635011, 25187929";"E.A. Buketov Karaganda University Publish house";Yes;No;0,369;Q2;12;72;182;1568;141;180;0,84;21,78;36,17;0;Kazakhstan;Asiatic Region;"E.A. Buketov Karaganda University Publish house";"2019-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +15038;21100208020;"Economics and Sociology";journal;"2071789X, 23063459";"Centre of Sociological Research";Yes;Yes;0,369;Q2;41;62;204;3517;529;203;2,74;56,73;57,30;0;Poland;Eastern Europe;"Centre of Sociological Research";"2008-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +15039;12400154713;"Geospatial Health";journal;"19707096, 18271987";"Page Press Publications";Yes;No;0,369;Q2;46;47;144;2133;197;141;1,53;45,38;36,16;0;Italy;Western Europe;"Page Press Publications";"2006-2026";"Geography, Planning and Development (Q2); Health Policy (Q3); Health (social science) (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +15040;4000152112;"International Journal of Food Engineering";journal;"15563758, 21945764";"Walter de Gruyter GmbH";No;No;0,369;Q2;44;63;179;2953;388;178;1,92;46,87;47,46;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2005-2026";"Engineering (miscellaneous) (Q2); Biotechnology (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Engineering" +15041;21101060475;"Jahresbericht der Deutschen Mathematiker-Vereinigung";journal;"00120456, 18697135";"Springer Science and Business Media Deutschland GmbH";No;No;0,369;Q2;15;1;34;296;35;21;0,88;296,00;0,00;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2010-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +15042;21100929581;"Journal of Intellectual Property, Information Technology and E-Commerce Law";journal;"21903387";"Digital Peer Publishing Licenses";Yes;No;0,369;Q2;14;13;85;1323;85;76;0,87;101,77;22,22;0;Germany;Western Europe;"Digital Peer Publishing Licenses";"2019-2025";"Law (Q2)";"Social Sciences" +15043;13805;"Logopedics Phoniatrics Vocology";journal;"16512022, 14015439";"Informa Healthcare";No;No;0,369;Q2;44;30;79;1481;147;78;1,88;49,37;59,09;0;United Kingdom;Western Europe;"Informa Healthcare";"1991-2026";"Arts and Humanities (miscellaneous) (Q2); LPN and LVN (Q2); Medicine (miscellaneous) (Q3); Speech and Hearing (Q3)";"Arts and Humanities; Health Professions; Medicine; Nursing" +15044;21101180711;"Rivista Italiana di Informatica e Diritto";journal;"27047318";"Consiglio Nazionale delle Ricerche";Yes;Yes;0,369;Q2;6;61;134;3203;79;124;0,51;52,51;42,19;0;Italy;Western Europe;"Consiglio Nazionale delle Ricerche";"2019-2025";"Law (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3); Information Systems (Q3)";"Computer Science; Social Sciences" +15045;22683;"Analytical Sciences";journal;"09106340, 13482246";"Springer International Publishing AG";Yes;No;0,369;Q3;87;183;645;8850;1469;594;1,96;48,36;35,24;0;Switzerland;Western Europe;"Springer International Publishing AG";"1985-2026";"Analytical Chemistry (Q3)";"Chemistry" +15046;19700183042;"Archives of Budo";journal;"16438698";"Archives of Budo Bartlomiej Barczynski";Yes;No;0,369;Q3;30;9;87;517;143;87;2,06;57,44;27,50;0;Poland;Eastern Europe;"Archives of Budo Bartlomiej Barczynski";"2009-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)";"Health Professions" +15047;16349;"Brazilian Journal of Chemical Engineering";journal;"16784383, 01046632";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,369;Q3;69;114;328;7216;670;324;2,03;63,30;35,07;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1995-2026";"Chemical Engineering (miscellaneous) (Q3)";"Chemical Engineering" +15048;29920;"Croatian Medical Journal";journal;"13328166, 03539504";"Medicinska Naklada Zagreb";Yes;Yes;0,369;Q3;72;64;213;1714;338;170;1,59;26,78;56,57;0;Croatia;Eastern Europe;"Medicinska Naklada Zagreb";"1992-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +15049;19700200711;"Gastroenterology Insights";journal;"20367422";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,369;Q3;14;49;156;2357;240;155;1,69;48,10;43,18;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2009-2013, 2015-2025";"Gastroenterology (Q3); Hepatology (Q3)";"Medicine" +15050;21100932462;"Journal of Nuclear Fuel Cycle and Waste Technology";journal;"22885471, 17381894";"Korean Radioactive Waste Society";Yes;No;0,369;Q3;9;43;131;1077;131;124;0,97;25,05;20,83;0;South Korea;Asiatic Region;"Korean Radioactive Waste Society";"2019-2025";"Fuel Technology (Q3); Management, Monitoring, Policy and Law (Q3); Nuclear Energy and Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q3); Waste Management and Disposal (Q3)";"Energy; Environmental Science" +15051;29068;"Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms";journal;"0168583X";"Elsevier B.V.";No;No;0,369;Q3;140;249;877;9061;1337;869;1,52;36,39;25,16;0;Netherlands;Western Europe;"Elsevier B.V.";"1983-2026";"Instrumentation (Q3); Nuclear and High Energy Physics (Q3)";"Physics and Astronomy" +15052;21100900063;"Photobiomodulation, Photomedicine, and Laser Surgery";journal;"25785478";"Mary Ann Liebert Inc.";No;No;0,369;Q3;35;85;283;3372;542;260;1,48;39,67;48,33;0;United States;Northern America;"Mary Ann Liebert Inc.";"2019-2026";"Biomedical Engineering (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Engineering; Medicine" +15053;145343;"Plasma Science and Technology";journal;"10090630";"IOP Publishing Ltd.";No;No;0,369;Q3;47;158;627;5356;1049;624;1,58;33,90;28,65;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2000-2025";"Condensed Matter Physics (Q3)";"Physics and Astronomy" +15054;19900188288;"Subjectivity";journal;"17556341, 1755635X";"Palgrave Macmillan Ltd.";No;No;0,369;Q3;19;17;68;866;74;57;0,92;50,94;47,83;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2011, 2015-2025";"Applied Psychology (Q3); Social Psychology (Q3)";"Psychology" +15055;21100868871;"Constructional Approaches to Language";book series;"1573594X";"John Benjamins Publishing Company";No;No;0,368;Q1;16;10;27;659;34;2;0,65;65,90;83,33;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2012, 2018-2023, 2025";"Linguistics and Language (Q1)";"Social Sciences" +15056;21100790313;"Interpersona";journal;"19816472";"Study Group on Assessment, Therapy and Emotions";Yes;Yes;0,368;Q1;13;18;48;975;56;47;1,10;54,17;41,30;0;Germany;Western Europe;"Study Group on Assessment, Therapy and Emotions";"2016-2025";"Cultural Studies (Q1); Anthropology (Q2); Gender Studies (Q2); Developmental and Educational Psychology (Q3); Social Psychology (Q3)";"Psychology; Social Sciences" +15057;19700188235;"Journal of Media and Religion";journal;"15348423, 15348415";"Routledge";No;No;0,368;Q1;17;13;24;720;32;24;0,64;55,38;47,06;0;United States;Northern America;"Routledge";"2010-2026";"Religious Studies (Q1); Communication (Q2)";"Arts and Humanities; Social Sciences" +15058;21101272297;"Journal of Umm Al-Qura University for Engineering and Architecture";journal;"16588150";"Springer Science and Business Media Deutschland GmbH";Yes;Yes;0,368;Q1;11;183;78;8605;236;77;3,16;47,02;23,12;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2022-2026";"Architecture (Q1); Building and Construction (Q3); Civil and Structural Engineering (Q3); Energy (miscellaneous) (Q3)";"Energy; Engineering" +15059;21101040623;"LingVaria";journal;"18962122, 23921226";"Ksiegarnia Akademicka Publishing Ltd";Yes;Yes;0,368;Q1;5;35;118;1030;32;114;0,32;29,43;72,09;0;Poland;Eastern Europe;"Ksiegarnia Akademicka Publishing Ltd";"2019-2025";"Linguistics and Language (Q1); Communication (Q2)";"Social Sciences" +15060;18880;"Australian Economic Papers";journal;"14678454, 0004900X";"Wiley-Blackwell Publishing Ltd";No;No;0,368;Q2;26;43;122;2051;191;118;1,48;47,70;36,17;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1962-1997, 1999, 2001, 2006, 2008-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +15061;17995;"Economic Botany";journal;"00130001, 18749364";"Springer";Yes;No;0,368;Q2;86;35;74;1963;161;69;2,15;56,09;42,34;0;United States;Northern America;"Springer";"1947-2025";"Horticulture (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +15062;21101144887;"Energy Research Letters";journal;"26526433";"Asia-Pacific Applied Economics Association";No;No;0,368;Q2;21;36;72;539;140;72;1,69;14,97;22,22;0;Australia;Pacific Region;"Asia-Pacific Applied Economics Association";"2020-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Economics and Econometrics (Q3); Energy (miscellaneous) (Q3); Finance (Q3)";"Economics, Econometrics and Finance; Energy" +15063;4000149405;"International Journal for Computational Methods in Engineering Science and Mechanics";journal;"15502295, 15502287";"Taylor and Francis Ltd.";No;No;0,368;Q2;34;42;99;1577;238;99;1,75;37,55;14,46;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Computational Mechanics (Q2); Computational Mathematics (Q3)";"Engineering; Mathematics" +15064;21100203119;"International Journal of Bio-Inspired Computation";journal;"17580374, 17580366";"Inderscience";No;No;0,368;Q2;46;44;131;1496;267;131;2,36;34,00;41,94;0;Switzerland;Western Europe;"Inderscience";"2009-2026";"Computer Science (miscellaneous) (Q2); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +15065;4900152403;"International Journal of Computational Methods";journal;"02198762, 17936969";"World Scientific";No;No;0,368;Q2;49;115;248;4605;416;243;1,63;40,04;19,27;0;Singapore;Asiatic Region;"World Scientific";"2006-2026";"Computer Science (miscellaneous) (Q2); Computational Mathematics (Q3)";"Computer Science; Mathematics" +15066;21101249910;"JADA Foundational Science";journal;"2772414X";"Elsevier B.V.";Yes;No;0,368;Q2;6;14;39;789;59;36;1,42;56,36;45,45;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Dentistry (miscellaneous) (Q2); Oral Surgery (Q2)";"Dentistry" +15067;21101255028;"Journal of Data, Information and Management";journal;"25246356, 25246364";"Springer International Publishing";No;No;0,368;Q2;21;21;72;1521;189;72;1,86;72,43;28,57;0;Switzerland;Western Europe;"Springer International Publishing";"2019-2026";"Management Information Systems (Q2); Business, Management and Accounting (miscellaneous) (Q3); Information Systems (Q3)";"Business, Management and Accounting; Computer Science" +15068;21100940688;"Journal of Regional Security";journal;"2217995X, 24060364";"Belgrade Centre for Security Policy";Yes;Yes;0,368;Q2;10;14;36;932;39;34;1,32;66,57;51,85;0;Serbia;Eastern Europe;"Belgrade Centre for Security Policy";"2012-2025";"Political Science and International Relations (Q2); Safety Research (Q2)";"Social Sciences" +15069;21100246535;"Lankesteriana";journal;"14093871, 22152067";"Jardin Botanico Lankester";Yes;Yes;0,368;Q2;20;16;79;778;82;79;1,15;48,63;20,93;0;Costa Rica;Latin America;"Jardin Botanico Lankester";"2004-2007, 2013-2025";"Plant Science (Q2)";"Agricultural and Biological Sciences" +15070;4500151538;"Revista Brasileira de Parasitologia Veterinaria";journal;"19842961, 0103846X";"Brazilain Coll Veterinary Parasitology";Yes;No;0,368;Q2;42;77;221;3128;329;221;1,43;40,62;48,29;0;Brazil;Latin America;"Brazilain Coll Veterinary Parasitology";"2005-2025";"Veterinary (miscellaneous) (Q2); Parasitology (Q3)";"Immunology and Microbiology; Veterinary" +15071;19200157039;"Tropical Life Sciences Research";journal;"19853718, 21804249";"Penerbit Universiti Sains Malaysia";Yes;Yes;0,368;Q2;32;45;116;2237;232;116;1,85;49,71;44,04;0;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2009-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +15072;21100239246;"Acta Geoscientica Sinica";journal;"10063021";"Chinese Academy of Geologi­cal Sciences";No;No;0,368;Q3;37;90;259;4453;378;257;1,48;49,48;31,54;0;China;Asiatic Region;"Chinese Academy of Geologi­cal Sciences";"2013-2025";"Geology (Q3)";"Earth and Planetary Sciences" +15073;19900193893;"Acta Limnologica Brasiliensia";journal;"01026712, 2179975X";"Brazilian Limnology Association";Yes;Yes;0,368;Q3;29;42;113;2343;141;113;1,11;55,79;53,89;0;Brazil;Latin America;"Brazilian Limnology Association";"2011-2026";"Aquatic Science (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15074;12522;"Advances in Marine Biology";book series;"00652881, 21625875";"Academic Press";No;No;0,368;Q3;80;15;39;1553;134;3;2,25;103,53;0,00;0;United States;Northern America;"Academic Press";"1963-1967, 1969, 1971-1973, 1975-1977, 1979-1980, 1982, 1984-1985, 1987-1994, 1997-2025";"Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15075;23942;"Biomedical Chromatography";journal;"10990801, 02693879";"John Wiley and Sons Ltd";No;No;0,368;Q3;76;313;763;10946;1522;761;1,91;34,97;46,99;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1986-1987, 1989-2026";"Analytical Chemistry (Q3); Biochemistry (Q3); Clinical Biochemistry (Q3); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +15076;21101347343;"Cleaner Chemical Engineering";journal;"27727823";"Elsevier B.V.";Yes;No;0,368;Q3;6;77;19;6329;44;19;2,32;82,19;32,98;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Environmental Science (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3)";"Environmental Science" +15077;21100855508;"Dependence Modeling";journal;"23002298";"Walter de Gruyter GmbH";Yes;No;0,368;Q3;17;6;45;287;53;43;1,12;47,83;7,69;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2013-2026";"Applied Mathematics (Q3); Modeling and Simulation (Q3); Statistics and Probability (Q3)";"Mathematics" +15078;21101317532;"Frontiers in Behavioral Economics";journal;"28135296";"Frontiers Media SA";Yes;No;0,368;Q3;5;29;64;1558;80;58;1,27;53,72;31,75;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Decision Sciences (miscellaneous) (Q3); Economics and Econometrics (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +15079;21101041707;"Journal of Creating Value";journal;"23949643, 2454213X";"SAGE Publications Inc.";No;No;0,368;Q3;20;16;62;647;103;51;1,70;40,44;41,38;0;United States;Northern America;"SAGE Publications Inc.";"2015-2026";"Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Marketing (Q3)";"Business, Management and Accounting" +15080;21100818512;"Journal of Enabling Technologies";journal;"23986263";"Emerald Group Publishing Ltd.";No;No;0,368;Q3;29;21;51;890;116;47;2,30;42,38;41,89;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2017-2025";"Computer Science Applications (Q3); Health (social science) (Q3); Management of Technology and Innovation (Q3); Rehabilitation (Q3)";"Business, Management and Accounting; Computer Science; Medicine; Social Sciences" +15081;21701;"Journal of Laparoendoscopic and Advanced Surgical Techniques";journal;"15579034, 10926429";"Mary Ann Liebert Inc.";No;No;0,368;Q3;76;161;573;4055;706;556;1,21;25,19;24,88;0;United States;Northern America;"Mary Ann Liebert Inc.";"1997-2026";"Surgery (Q3)";"Medicine" +15082;5300152723;"Journal of Psychology in Africa";journal;"14330237, 18155626";"Taylor and Francis Ltd.";No;No;0,368;Q3;33;52;255;2485;326;255;1,17;47,79;48,28;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2013, 2015-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +15083;11300153404;"Journal of the Korean Statistical Society";journal;"12263192";"Korean Statistical Society";No;No;0,368;Q3;30;59;149;1915;122;149;0,80;32,46;38,26;0;South Korea;Asiatic Region;"Korean Statistical Society";"2008-2026";"Statistics and Probability (Q3)";"Mathematics" +15084;21100911837;"Participatory Educational Research";journal;"21486123";"Ozgen Korkmaz";Yes;No;0,368;Q3;19;90;332;5601;620;331;1,48;62,23;46,74;0;Turkey;Middle East;"Ozgen Korkmaz";"2019-2026";"Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +15085;26940;"Proceedings of the Geologists' Association";journal;"00167878";"Geologists' Association";No;No;0,368;Q3;53;47;140;4310;172;137;1,32;91,70;25,66;0;United Kingdom;Western Europe;"Geologists' Association";"1859, 1861-1864, 1871-2026";"Geology (Q3); Paleontology (Q3)";"Earth and Planetary Sciences" +15086;21101225425;"Advances in Communication and Swallowing";journal;"27725383, 27725391";"IOS Press BV";No;No;0,367;Q1;5;1;44;0;39;38;0,76;0,00;0,00;0;Netherlands;Western Europe;"IOS Press BV";"2021-2025";"Linguistics and Language (Q1); Speech and Hearing (Q3)";"Health Professions; Social Sciences" +15087;21100242824;"Interpreters Newsletter";journal;"15914127";"universitat de Trieste";Yes;Yes;0,367;Q1;15;0;34;0;26;30;0,55;0,00;0,00;0;Italy;Western Europe;"universitat de Trieste";"2010-2024";"Linguistics and Language (Q1)";"Social Sciences" +15088;21100301415;"Journal of Language Teaching and Research";journal;"17984769, 20530684";"Academy Publication";No;No;0,367;Q1;28;216;558;7627;800;557;1,41;35,31;48,72;0;United Kingdom;Western Europe;"Academy Publication";"2014-2026";"Linguistics and Language (Q1); Literature and Literary Theory (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +15089;21100891043;"Open Quaternary";journal;"2055298X";"Ubiquity Press";Yes;No;0,367;Q1;17;10;25;675;29;25;1,55;67,50;53,85;0;United Kingdom;Western Europe;"Ubiquity Press";"2015-2026";"Archeology (Q1); Anthropology (Q2); Ecology (Q3); Environmental Science (miscellaneous) (Q3); Global and Planetary Change (Q4)";"Environmental Science; Social Sciences" +15090;5600155080;"Philosophy and Social Criticism";journal;"1461734X, 01914537";"SAGE Publications Inc.";No;No;0,367;Q1;47;133;255;6387;321;251;1,09;48,02;32,82;1;United States;Northern America;"SAGE Publications Inc.";"1973-1982, 1984-2026";"Philosophy (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +15091;21100195304;"Procesamiento del Lenguaje Natural";journal;"19897553, 11355948";"Sociedad Espanola para el Procesamiento del Lenguaje Natural";Yes;Yes;0,367;Q1;25;65;141;2323;241;141;1,26;35,74;32,11;0;Spain;Western Europe;"Sociedad Espanola para el Procesamiento del Lenguaje Natural";"2007, 2009, 2011-2025";"Linguistics and Language (Q1); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +15092;5800156831;"RLA";journal;"0033698X, 07184883";"Universidad de Concepcion";Yes;No;0,367;Q1;19;8;46;347;29;43;0,57;43,38;64,29;0;Chile;Latin America;"Universidad de Concepcion";"2008-2025";"Linguistics and Language (Q1); Education (Q3)";"Social Sciences" +15093;23937;"Transactions of the Royal Historical Society";journal;"00804401, 14740648";"Cambridge University Press";No;No;0,367;Q1;38;39;57;3643;56;55;1,02;93,41;52,94;0;United Kingdom;Western Europe;"Cambridge University Press";"1872-1874, 1876-1878, 1880-1886, 1889, 1891-1937, 1939-1992, 1994-2018, 2020-2026";"History (Q1)";"Arts and Humanities" +15094;19700194007;"African Security Review";journal;"21540128, 10246029";"Taylor and Francis Ltd.";No;No;0,367;Q2;22;34;89;1955;136;83;1,58;57,50;24,49;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995, 2010-2026";"Law (Q2); Political Science and International Relations (Q2); Safety Research (Q2)";"Social Sciences" +15095;19700184800;"Arboriculture and Urban Forestry";journal;"19355297";"International Society of Arboriculture";No;No;0,367;Q2;61;40;73;2002;120;71;1,79;50,05;41,42;1;United States;Northern America;"International Society of Arboriculture";"2006-2026";"Forestry (Q2); Ecology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15096;19500157802;"Asian Social Work and Policy Review";journal;"17531403, 17531411";"Wiley-Blackwell Publishing Ltd";No;No;0,367;Q2;23;16;76;809;104;75;1,15;50,56;40,00;0;Australia;Pacific Region;"Wiley-Blackwell Publishing Ltd";"2008-2026";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Social Work (Q4)";"Social Sciences" +15097;7200153125;"Enfermeria Clinica";journal;"11308621, 15792013";"Elsevier Espana S.L.U";No;No;0,367;Q2;31;91;223;2420;274;192;0,90;26,59;67,55;0;Spain;Western Europe;"Elsevier Espana S.L.U";"2005-2026";"Nursing (miscellaneous) (Q2); Fundamentals and Skills (Q3); Research and Theory (Q3)";"Nursing" +15098;12728;"Geburtshilfe und Frauenheilkunde";journal;"14388804, 00165751";"Georg Thieme Verlag";No;No;0,367;Q2;45;267;914;3834;423;361;0,45;14,36;48,65;0;Germany;Western Europe;"Georg Thieme Verlag";"1947-1948, 1950-2026";"Maternity and Midwifery (Q2); Obstetrics and Gynecology (Q3)";"Medicine; Nursing" +15099;5600155528;"International Journal of Organization Theory and Behavior";journal;"15324273, 10934537";"Emerald Publishing";No;No;0,367;Q2;17;65;49;5012;131;47;2,53;77,11;50,00;0;United Kingdom;Western Europe;"Emerald Publishing";"2012-2026";"Public Administration (Q2); Applied Psychology (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Psychology; Social Sciences" +15100;23584;"Journal of Real Estate Literature";journal;"09277544";"Taylor and Francis Ltd.";No;No;0,367;Q2;25;9;22;613;39;22;1,75;68,11;29,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Urban Studies (Q2); Business, Management and Accounting (miscellaneous) (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +15101;21101198721;"Natural and Engineering Sciences";journal;"24588989";"";Yes;No;0,367;Q2;18;165;107;4647;684;107;7,73;28,16;36,69;0;Turkey;Middle East;"";"2020-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Animal Science and Zoology (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +15102;16407;"Occupational Therapy in Health Care";journal;"07380577, 15413098";"Taylor & Francis Group LLC Philadelphia";No;No;0,367;Q2;34;84;142;3592;174;135;1,26;42,76;69,38;0;United States;Northern America;"Taylor & Francis Group LLC Philadelphia";"1984-1992, 1995-2026";"Occupational Therapy (Q2); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine" +15103;22363;"Periodica Polytechnica Social and Management Sciences";journal;"14163837, 15873803";"Budapest University of Technology and Economics";Yes;No;0,367;Q2;18;18;54;994;97;54;2,22;55,22;68,29;0;Hungary;Eastern Europe;"Budapest University of Technology and Economics";"1999-2026";"Engineering (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Decision Sciences (miscellaneous) (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Decision Sciences; Engineering; Social Sciences" +15104;21101076085;"Public Administration and Policy";journal;"2517679X, 17272645";"Emerald Group Publishing Ltd.";Yes;Yes;0,367;Q2;18;33;86;1046;184;73;2,21;31,70;30,77;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2018-2025";"Geography, Planning and Development (Q2); Public Administration (Q2); Sociology and Political Science (Q2); Health (social science) (Q3)";"Social Sciences" +15105;5600153488;"Rural Society";journal;"10371656";"Routledge";Yes;No;0,367;Q2;33;16;40;1149;80;39;1,71;71,81;38,89;0;United Kingdom;Western Europe;"Routledge";"1991-2026";"Sociology and Political Science (Q2); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +15106;21100898012;"SA Journal of Human Resource Management";journal;"2071078X, 16837584";"AOSIS (Pty) Ltd";Yes;No;0,367;Q2;23;118;194;7362;467;192;2,17;62,39;50,00;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2018-2026";"Demography (Q2); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Social Sciences" +15107;19700183008;"TripleC";journal;"1726670X";"Media Systems and Media Organisation Research Group";Yes;Yes;0,367;Q2;38;22;56;1340;79;56;1,23;60,91;19,23;0;Germany;Western Europe;"Media Systems and Media Organisation Research Group";"2010-2026";"Communication (Q2); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +15108;24547;"Zoological Science";journal;"02890003";"Zoological Society of Japan";No;No;0,367;Q2;69;66;173;2696;199;173;1,06;40,85;25,71;0;Japan;Asiatic Region;"Zoological Society of Japan";"1992-2025";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +15109;52374;"Acta Odontologica Latinoamericana";journal;"18524834, 03264815";"";Yes;No;0,367;Q3;25;28;83;799;120;83;1,13;28,54;54,76;0;Argentina;Latin America;"";"1984-1986, 1990, 1993-1994, 1996-2016, 2019-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +15110;21100932467;"AIMS Environmental Science";journal;"23720352";"American Institute of Mathematical Sciences";Yes;No;0,367;Q3;29;43;140;2923;324;136;2,00;67,98;33,56;0;United States;Northern America;"American Institute of Mathematical Sciences";"2014-2026";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +15111;14477;"Anales de Pediatria";journal;"16954033, 16959531";"Asociacion Espanola de Pediatria";Yes;Yes;0,367;Q3;41;186;609;2704;723;575;1,24;14,54;65,74;0;Spain;Western Europe;"Asociacion Espanola de Pediatria";"2003-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +15112;145216;"Conformal Geometry and Dynamics";journal;"10884173";"American Mathematical Society";No;No;0,367;Q3;20;5;29;123;10;29;0,47;24,60;12,50;0;United States;Northern America;"American Mathematical Society";"1997-2025";"Geometry and Topology (Q3)";"Mathematics" +15113;15316;"Japanese Journal of Infectious Diseases";journal;"13446304, 18842836";"National Institute of Health";No;No;0,367;Q3;63;40;230;864;270;229;1,13;21,60;36,14;0;Japan;Asiatic Region;"National Institute of Health";"1961-1963, 1999-2026";"Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Microbiology (medical) (Q3)";"Medicine" +15114;21101107949;"Journal of Bio-X Research";journal;"25773585, 20965672";"American Association for the Advancement of Science";Yes;Yes;0,367;Q3;10;41;88;2932;162;62;2,33;71,51;42,86;0;United States;Northern America;"American Association for the Advancement of Science";"2018-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biomedical Engineering (Q3); Computer Science Applications (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Engineering" +15115;5800228222;"Journal of Pharmaceutical Innovation";journal;"18725120, 19398042";"Springer";No;No;0,367;Q3;43;298;393;16100;1062;383;2,57;54,03;41,74;0;United States;Northern America;"Springer";"2006-2026";"Drug Discovery (Q3); Pharmaceutical Science (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +15116;21100334848;"Management and Marketing";journal;"20698887, 18420206";"Springer International Publishing";Yes;No;0,367;Q3;29;21;96;1144;251;96;2,53;54,48;55,38;0;Switzerland;Western Europe;"Springer International Publishing";"2014-2025";"Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting" +15117;130141;"Microfluidics and Nanofluidics";journal;"16134982, 16134990";"Springer Verlag";No;No;0,367;Q3;109;79;267;3946;718;263;2,95;49,95;34,69;0;Germany;Western Europe;"Springer Verlag";"2004-2026";"Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3); Materials Chemistry (Q3); Nanoscience and Nanotechnology (Q3)";"Materials Science; Physics and Astronomy" +15118;25103;"Neues Jahrbuch fur Geologie und Palaontologie - Abhandlungen";journal;"00777749, 2363717X";"Schweizerbart Science Publishers";No;No;0,367;Q3;48;71;187;4827;171;186;0,78;67,99;15,29;0;Germany;Western Europe;"Schweizerbart Science Publishers";"1987, 1995-2026";"Paleontology (Q3)";"Earth and Planetary Sciences" +15119;19700175248;"Open Dermatology Journal";journal;"18743722";"Bentham Science Publishers";Yes;No;0,367;Q3;12;15;35;672;48;31;1,73;44,80;55,77;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2010-2025";"Dermatology (Q3)";"Medicine" +15120;19700200879;"Science and Technology of Nuclear Installations";journal;"16876083, 16876075";"John Wiley and Sons Ltd";Yes;No;0,367;Q3;35;15;97;374;149;97;1,81;24,93;43,94;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Nuclear Energy and Engineering (Q3)";"Energy" +15121;21101100718;"Proceedings - IEEE Consumer Communications and Networking Conference, CCNC";conference and proceedings;"23319860";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,367;-;17;269;777;4004;1142;772;1,49;14,88;19,43;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2022-2025";"Artificial Intelligence; Computer Networks and Communications; Computer Vision and Pattern Recognition; Electrical and Electronic Engineering";"Computer Science; Engineering" +15122;6700153261;"Anatolian Studies";journal;"00661546, 20480849";"Cambridge University Press";No;No;0,366;Q1;29;11;29;981;17;28;0,72;89,18;26,32;0;United Kingdom;Western Europe;"Cambridge University Press";"1951-2026";"Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +15123;21101165015;"Arheologia (Kyiv)";journal;"2616499X, 02353490";"Institute of Archaeology of the National Academy of Sciences of Ukraine";Yes;Yes;0,366;Q1;4;22;94;1618;26;93;0,16;73,55;33,33;0;Ukraine;Eastern Europe;"Institute of Archaeology of the National Academy of Sciences of Ukraine";"2019, 2021-2025";"Archeology (Q1); Archeology (arts and humanities) (Q1)";"Arts and Humanities; Social Sciences" +15124;23991;"Current History";journal;"1944785X, 00113530";"University of California Press";No;No;0,366;Q1;32;49;176;0;198;170;1,18;0,00;42,00;2;United States;Northern America;"University of California Press";"1916, 1924-1925, 1965, 1967, 1977, 1980, 1982, 1984-1987, 1996, 1998-2025";"History (Q1)";"Arts and Humanities" +15125;21100425898;"Fat Studies";journal;"2160486X, 21604851";"Taylor and Francis Ltd.";No;No;0,366;Q1;24;36;88;1489;123;82;1,33;41,36;75,00;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Cultural Studies (Q1); Anthropology (Q2); Gender Studies (Q2); Health (social science) (Q3); Nutrition and Dietetics (Q3); Social Psychology (Q3)";"Nursing; Psychology; Social Sciences" +15126;5600154341;"History and Memory";journal;"15271994, 0935560X";"Indiana University Press";No;No;0,366;Q1;33;14;40;1134;29;35;0,72;81,00;50,00;0;United States;Northern America;"Indiana University Press";"1999-2025";"History (Q1)";"Arts and Humanities" +15127;21101056813;"Acta Palaeontologica Romaniae";journal;"22483802, 1842371X";"Romanian Society of Palaeontologists";No;No;0,366;Q2;7;4;31;944;34;31;1,36;236,00;0,00;0;Romania;Eastern Europe;"Romanian Society of Palaeontologists";"2019-2025";"Stratigraphy (Q2); Atmospheric Science (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Geology (Q3); Paleontology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +15128;28018;"Atencion Primaria";journal;"02126567, 15781275";"Elsevier Espana S.L.U";Yes;No;0,366;Q2;47;211;456;3373;529;309;1,13;15,99;56,73;1;Spain;Western Europe;"Elsevier Espana S.L.U";"1989-2026";"Family Practice (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +15129;21100244623;"Bonn Zoological Bulletin";journal;"21907307";"Zoologisches Forschungsmuseum Alexander Koenig";Yes;Yes;0,366;Q2;14;0;34;0;32;34;1,07;0,00;0,00;0;Germany;Western Europe;"Zoologisches Forschungsmuseum Alexander Koenig";"2012-2023";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +15130;21100786528;"Chinese Journal of Plant Ecology";journal;"1005264X";"Editorial Office of Chinese Journal of Plant Ecology";No;No;0,366;Q2;28;173;405;8721;678;404;1,54;50,41;42,09;0;China;Asiatic Region;"Editorial Office of Chinese Journal of Plant Ecology";"2016-2025";"Plant Science (Q2); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15131;21100927361;"Clinical Advances in Periodontics";journal;"25738046, 21630097";"John Wiley and Sons Inc";No;No;0,366;Q2;10;47;117;0;148;116;1,37;0,00;41,67;0;United States;Northern America;"John Wiley and Sons Inc";"2017-2025";"Periodontics (Q2); Medicine (miscellaneous) (Q3)";"Dentistry; Medicine" +15132;21101167539;"Guidance, Navigation and Control";journal;"27374807, 27374920";"World Scientific";No;No;0,366;Q2;12;42;86;1258;163;86;1,79;29,95;26,35;0;Singapore;Asiatic Region;"World Scientific";"2021-2026";"Safety, Risk, Reliability and Quality (Q2); Aerospace Engineering (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)";"Engineering" +15133;19700188366;"Gyroscopy and Navigation";journal;"20751109, 20751087";"Pleiades Publishing";No;No;0,366;Q2;27;25;98;680;117;98;1,10;27,20;19,67;0;United States;Northern America;"Pleiades Publishing";"2010-2025";"Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +15134;25344;"HortTechnology";journal;"19437714, 10630198";"American Society for Horticultural Science";Yes;No;0,366;Q2;70;127;245;4056;379;245;1,43;31,94;43,03;0;United States;Northern America;"American Society for Horticultural Science";"1993-2026";"Horticulture (Q2)";"Agricultural and Biological Sciences" +15135;12763;"International Journal of Technology Management";journal;"17415276, 02675730";"Inderscience Publishers";No;No;0,366;Q2;72;40;133;3101;272;133;2,08;77,53;32,74;0;United Kingdom;Western Europe;"Inderscience Publishers";"1986-1989, 1996-2025";"Engineering (miscellaneous) (Q2); Law (Q2); Computer Science Applications (Q3); Industrial Relations (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Computer Science; Engineering; Social Sciences" +15136;17334;"International Journal of Theoretical and Applied Finance";journal;"02190249, 17936322";"World Scientific Publishing Co. Pte Ltd";No;No;0,366;Q2;41;22;100;809;57;96;0,55;36,77;19,15;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2003-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q3)";"Economics, Econometrics and Finance" +15137;21122;"Ironmaking and Steelmaking";journal;"17432812, 03019233";"SAGE Publications Ltd";No;No;0,366;Q2;62;335;404;13116;1078;399;2,78;39,15;27,75;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1974-2026";"Metals and Alloys (Q2); Materials Chemistry (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science" +15138;40377;"Journal of Applied Animal Welfare Science";journal;"15327604, 10888705";"Taylor and Francis Ltd.";No;No;0,366;Q2;56;91;147;4802;261;145;1,68;52,77;53,91;1;United States;Northern America;"Taylor and Francis Ltd.";"2002-2026";"Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Veterinary" +15139;21100937573;"Journal of Intellectual Property Law and Practice";journal;"17471540, 17471532";"Oxford University Press";No;No;0,366;Q2;19;95;323;6508;263;286;1,01;68,51;46,27;2;United Kingdom;Western Europe;"Oxford University Press";"2005-2026";"Law (Q2)";"Social Sciences" +15140;4000150401;"Journal of Neonatal Nursing";journal;"13551841";"Elsevier B.V.";No;No;0,366;Q2;32;161;353;5042;430;327;1,20;31,32;76,47;0;United Kingdom;Western Europe;"Elsevier B.V.";"2005-2026";"Maternity and Midwifery (Q2); Pediatrics (Q3)";"Nursing" +15141;24577;"Mathematical Logic Quarterly";journal;"09425616, 15213870";"Wiley-VCH Verlag";No;No;0,366;Q2;30;4;104;99;46;102;0,50;24,75;33,33;0;Germany;Western Europe;"Wiley-VCH Verlag";"1955-2025";"Logic (Q2)";"Mathematics" +15142;21100438194;"Open Veterinary Journal";journal;"22186050, 22264485";"Faculty of Veterinary Medicine, University of Tripoli";Yes;No;0,366;Q2;26;672;700;31820;1233;697;1,81;47,35;43,89;0;Libya;Africa;"Faculty of Veterinary Medicine, University of Tripoli";"2015-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +15143;21101077091;"Physics (Switzerland)";journal;"26248174";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,366;Q2;21;68;248;3810;407;244;1,38;56,03;19,77;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +15144;27047;"American Journal of Dermatopathology";journal;"15330311, 01931091";"Lippincott Williams and Wilkins";Yes;No;0,366;Q3;87;295;796;4379;556;561;0,60;14,84;51,94;0;United States;Northern America;"Lippincott Williams and Wilkins";"1979-2026";"Dermatology (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)";"Medicine" +15145;21101256292;"Annales Universitatis Mariae Curie-Sklodowska, sectio A - Mathematica";journal;"03651029, 20837402";"Wydawnictwo Uniwersytetu Marii Curie-Sklodowskiej w Lublinie";Yes;Yes;0,366;Q3;6;13;21;203;19;21;0,40;15,62;12,50;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Marii Curie-Sklodowskiej w Lublinie";"2020-2025";"Algebra and Number Theory (Q3); Analysis (Q3); Applied Mathematics (Q3); Statistics and Probability (Q3)";"Mathematics" +15146;28674;"Bratislava Medical Journal";journal;"13360345, 00069248";"Springer International Publishing";No;No;0,366;Q3;45;364;409;14744;575;405;1,54;40,51;46,37;0;Slovakia;Eastern Europe;"Springer International Publishing";"1950-1955, 1960-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +15147;21100223321;"International Journal of Training Research";journal;"14480220";"Taylor and Francis Ltd.";No;No;0,366;Q3;21;24;47;1092;103;45;2,33;45,50;55,88;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Education (Q3)";"Social Sciences" +15148;21100834920;"Journal of Education for Business";journal;"08832323, 19403356";"Taylor and Francis Ltd.";No;No;0,366;Q3;63;39;172;1425;308;172;1,30;36,54;51,25;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990, 1995-2026";"Business, Management and Accounting (miscellaneous) (Q3); Education (Q3)";"Business, Management and Accounting; Social Sciences" +15149;21101045047;"Journal of Philanthropy and Marketing";journal;"26911361";"John Wiley and Sons Inc";No;No;0,366;Q3;28;4;159;217;254;151;1,46;54,25;44,44;0;United States;Northern America;"John Wiley and Sons Inc";"2021-2025";"Economics and Econometrics (Q3); Marketing (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15150;30085;"Journal of Social and Clinical Psychology";journal;"07367236";"Guilford Publications";No;No;0,366;Q3;121;24;68;1247;74;68;1,19;51,96;48,62;0;United States;Northern America;"Guilford Publications";"1983-1985, 1987-1988, 1990, 1996-2025";"Clinical Psychology (Q3); Social Psychology (Q3)";"Psychology" +15151;21101162544;"Neurosurgical Focus: Video";journal;"26435217";"American Association of Neurological Surgeons";No;No;0,366;Q3;7;58;164;375;131;149;0,76;6,47;21,21;0;United States;Northern America;"American Association of Neurological Surgeons";"2019-2026";"Neurology (Q3); Surgery (Q3)";"Medicine; Neuroscience" +15152;21100856193;"Nutrition and Healthy Aging";journal;"24519480, 24519502";"SAGE Publications Ltd";Yes;No;0,366;Q3;24;1;42;56;50;42;1,00;56,00;42,86;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2017-2025";"Biochemistry (Q3); Food Science (Q3); Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +15153;29080;"Proceedings of the Institution of Mechanical Engineers, Part G: Journal of Aerospace Engineering";journal;"20413025, 09544100";"SAGE Publications Ltd";No;No;0,366;Q3;59;189;595;7065;1009;595;1,61;37,38;22,14;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1989-2026";"Aerospace Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +15154;21100975679;"Research and Practice in Intellectual and Developmental Disabilities";journal;"23297026, 23297018";"Taylor and Francis Ltd.";No;No;0,366;Q3;18;21;65;787;79;39;1,34;37,48;58,54;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Neurology (Q3); Neurology (clinical) (Q3); Rehabilitation (Q3); Developmental Neuroscience (Q4)";"Medicine; Neuroscience" +15155;25305;"SAR and QSAR in Environmental Research";journal;"1029046X, 1062936X";"Taylor and Francis Ltd.";No;No;0,366;Q3;58;53;154;3200;361;154;2,55;60,38;35,37;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2025";"Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Bioengineering (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Medicine; Pharmacology, Toxicology and Pharmaceutics" +15156;5800207714;"Communication Disorders Quarterly";journal;"15384837, 15257401";"SAGE Publications Inc.";No;No;0,365;Q1;40;29;80;1269;123;80;1,50;43,76;71,25;0;United States;Northern America;"SAGE Publications Inc.";"1976, 1978-1990, 1992-1995, 1997-2026";"Linguistics and Language (Q1); Speech and Hearing (Q3)";"Health Professions; Social Sciences" +15157;21101012657;"Journal of Pharmaceutical Health Care and Sciences";journal;"20550294";"BioMed Central Ltd";Yes;No;0,365;Q1;14;112;167;3166;232;167;1,22;28,27;30,18;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2017, 2019-2026";"Pharmacology (nursing) (Q1); Pharmacology (medical) (Q3)";"Medicine; Nursing" +15158;5600155214;"Journal of the American Academy of Religion";journal;"14774585, 00027189";"Oxford University Press";No;No;0,365;Q1;44;34;123;2355;81;113;0,58;69,26;39,39;0;United States;Northern America;"Oxford University Press";"1933-2025";"Religious Studies (Q1)";"Arts and Humanities" +15159;22614;"Research in the Teaching of English";journal;"0034527X, 19432348";"National Council of Teachers of English";No;No;0,365;Q1;52;8;69;527;83;52;1,30;65,88;69,23;0;United States;Northern America;"National Council of Teachers of English";"1979-1980, 1984, 1988, 1994, 1996-2001, 2004-2025";"Linguistics and Language (Q1); Education (Q3)";"Social Sciences" +15160;35770;"Acta Agriculturae Scandinavica - Section A: Animal Science";journal;"09064702, 16511972";"Taylor and Francis Ltd.";No;No;0,365;Q2;47;20;51;1018;80;51;1,58;50,90;37,93;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2018, 2020-2026";"Animal Science and Zoology (Q2); Food Animals (Q2)";"Agricultural and Biological Sciences; Veterinary" +15161;19093;"Acta Protozoologica";journal;"16890027, 00651583";"Komitet Slowianoznawstwa PAN";Yes;No;0,365;Q2;43;11;14;773;27;14;1,25;70,27;40,00;0;Poland;Eastern Europe;"Komitet Slowianoznawstwa PAN";"1973-1990, 1992-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +15162;21100331609;"Australian Journal of Indigenous Education";journal;"13260111, 20497784";"Aboriginal and Torres Strait Islander Studies Unit, The University of Queensland";Yes;Yes;0,365;Q2;35;15;66;673;99;60;1,03;44,87;67,50;0;United Kingdom;Western Europe;"Aboriginal and Torres Strait Islander Studies Unit, The University of Queensland";"1996-2025";"Anthropology (Q2); Education (Q3)";"Social Sciences" +15163;53135;"Dialectical Anthropology";journal;"03044092, 15730786";"Springer Netherlands";No;No;0,365;Q2;30;51;83;2301;91;59;1,13;45,12;69,49;0;Netherlands;Western Europe;"Springer Netherlands";"1975, 1977-2001, 2003-2026";"Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +15164;14300154709;"Hystrix";journal;"18255272, 03941914";"Associazione Teriologica Italiana onlus";Yes;Yes;0,365;Q2;34;2;60;147;85;55;1,31;73,50;11,11;0;Italy;Western Europe;"Associazione Teriologica Italiana onlus";"2008-2024";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15165;21101264988;"ICCM Not: Notices of the International Consortium of Chinese Mathematicians";journal;"23264810, 23264845";"International Press, Inc.";No;No;0,365;Q2;4;0;49;0;13;25;0,08;0,00;0,00;0;United States;Northern America;"International Press, Inc.";"2020-2024";"Mathematics (miscellaneous) (Q2)";"Mathematics" +15166;21100217632;"Iranian Journal of Science and Technology - Transactions of Mechanical Engineering";journal;"22286187, 23641835";"Springer Nature";No;No;0,365;Q2;30;158;359;7442;855;359;2,66;47,10;19,05;0;Switzerland;Western Europe;"Springer Nature";"2012-2026";"Computational Mechanics (Q2); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +15167;21100228051;"Journal of Contemporary European Research";journal;"1815347X";"University Association for Contemporary European Studies";Yes;Yes;0,365;Q2;26;0;31;0;51;31;1,86;0,00;0,00;0;United Kingdom;Western Europe;"University Association for Contemporary European Studies";"2010-2023";"Political Science and International Relations (Q2)";"Social Sciences" +15168;4800156203;"Revista Brasileira de Engenharia Agricola e Ambiental";journal;"14154366, 18071929";"Departamento de Engenharia Agricola - UFCG/Cnpq";Yes;No;0,365;Q2;45;120;360;4198;572;360;1,50;34,98;35,02;0;Brazil;Latin America;"Departamento de Engenharia Agricola - UFCG/Cnpq";"2005-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Agronomy and Crop Science (Q2); Environmental Engineering (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15169;12149;"Transactions of the Indian Institute of Metals";journal;"09722815, 09751645";"Springer";No;No;0,365;Q2;53;280;1062;9568;2248;1055;2,13;34,17;23,24;0;India;Asiatic Region;"Springer";"1969-1971, 1973-1975, 1981-1985, 1987, 1996-2026";"Metals and Alloys (Q2)";"Materials Science" +15170;19512;"Veterinary Clinics of North America - Exotic Animal Practice";journal;"15584232, 10949194";"W.B. Saunders";No;No;0,365;Q2;52;46;126;2966;184;108;1,27;64,48;52,78;0;United States;Northern America;"W.B. Saunders";"1998-2026";"Small Animals (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +15171;37536;"Acta Otorrinolaringologica Espanola";journal;"19883013, 00016519";"Sociedad Espanola de Otorrinolaringologia y Cirugia de Cabeza y Cuello";No;No;0,365;Q3;33;71;189;1249;183;173;0,92;17,59;46,50;0;Spain;Western Europe;"Sociedad Espanola de Otorrinolaringologia y Cirugia de Cabeza y Cuello";"1973-1986, 1988-2026";"Otorhinolaryngology (Q3)";"Medicine" +15172;17600155013;"Advances in Fuzzy Systems";journal;"16877101, 1687711X";"John Wiley and Sons Ltd";Yes;No;0,365;Q3;30;9;32;453;75;32;2,56;50,33;21,43;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Computational Mathematics (Q3); Control and Optimization (Q3); Control and Systems Engineering (Q3)";"Engineering; Mathematics" +15173;21100782252;"BMJ Innovations";journal;"2055642X, 20558074";"BMJ Publishing Group";No;No;0,365;Q3;31;34;99;954;146;93;1,69;28,06;53,96;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2015-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +15174;19823;"Corrosion";journal;"00109312, 1938159X";"Association for Materials Protection and Performance";No;No;0,365;Q3;107;92;321;4420;425;311;1,33;48,04;30,27;0;United States;Northern America;"Association for Materials Protection and Performance";"1969-2025";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Chemical Engineering; Chemistry; Materials Science" +15175;21100892307;"Ecology and Control of Vector-Borne Diseases";book series;"18750699";"Wageningen Academic Publishers";No;No;0,365;Q3;9;0;30;0;39;30;1,13;0,00;0,00;0;Netherlands;Western Europe;"Wageningen Academic Publishers";"2018, 2021-2022, 2024";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Infectious Diseases (Q3); Parasitology (Q3)";"Agricultural and Biological Sciences; Environmental Science; Immunology and Microbiology; Medicine" +15176;6200180185;"Infancia y Aprendizaje";journal;"15784126, 02103702";"SAGE Publications Ltd";No;Yes;0,365;Q3;33;8;93;477;133;89;1,27;59,63;61,11;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1978-2025";"Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +15177;4000149403;"International Journal of Ventilation";journal;"20444044, 14733315";"Taylor and Francis Ltd.";No;No;0,365;Q3;30;44;65;1731;117;64;1,72;39,34;29,03;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Building and Construction (Q3); Civil and Structural Engineering (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)";"Engineering" +15178;21100823276;"Journal of Asian Ceramic Societies";journal;"21870764";"Taylor and Francis Ltd.";Yes;No;0,365;Q3;61;28;163;1167;363;163;1,99;41,68;27,48;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Ceramics and Composites (Q3)";"Materials Science" +15179;15405;"Journal of Child Psychotherapy";journal;"14699370, 0075417X";"Routledge";No;No;0,365;Q3;29;38;102;1134;69;74;0,71;29,84;65,79;0;United Kingdom;Western Europe;"Routledge";"1963-2026";"Clinical Psychology (Q3); Pediatrics, Perinatology and Child Health (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +15180;28952;"Journal of Economic Issues";journal;"1946326X, 00213624";"Routledge";No;No;0,365;Q3;61;85;263;4263;331;258;1,11;50,15;29,03;0;United Kingdom;Western Europe;"Routledge";"1967-1969, 1973, 1977-1983, 1985-1986, 1988-1992, 1996-2025";"Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15181;24070;"Magnetic Resonance in Chemistry";journal;"07491581, 1097458X";"John Wiley and Sons Ltd";No;No;0,365;Q3;86;100;240;4690;435;218;1,99;46,90;36,91;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1985-2026";"Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Materials Science" +15182;11500153403;"NeoReviews";journal;"15269906";"American Academy of Pediatrics";No;No;0,365;Q3;33;109;342;4133;383;336;0,97;37,92;65,66;0;United States;Northern America;"American Academy of Pediatrics";"2008-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +15183;27990;"Revista da Associacao Medica Brasileira";journal;"01044230, 18069282";"Associacao Medica Brasileira";Yes;No;0,365;Q3;54;339;1149;6345;1295;971;1,11;18,72;49,50;0;Brazil;Latin America;"Associacao Medica Brasileira";"1976, 1992-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +15184;21101179292;"Spiritual Psychology and Counseling";journal;"24589675";"";Yes;Yes;0,365;Q3;5;17;38;1286;57;38;1,50;75,65;52,94;0;Turkey;Middle East;"";"2023-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +15185;17400154821;"Sports Engineering";journal;"14602687, 13697072";"Springer Nature";No;No;0,365;Q3;32;49;113;1549;207;110;1,69;31,61;25,86;1;United States;Northern America;"Springer Nature";"2009-2026";"Biomedical Engineering (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)";"Engineering; Health Professions; Mathematics; Medicine" +15186;21550;"Structural Chemistry";journal;"15729001, 10400400";"Springer";No;No;0,365;Q3;60;282;512;16062;1231;492;2,19;56,96;34,40;0;United States;Northern America;"Springer";"1990-2026";"Condensed Matter Physics (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry; Physics and Astronomy" +15187;21100376682;"Toxicologie Analytique et Clinique";journal;"23520078, 23520086";"Elsevier Masson s.r.l.";Yes;No;0,365;Q3;17;69;145;2298;206;129;1,75;33,30;49,85;0;France;Western Europe;"Elsevier Masson s.r.l.";"2014-2026";"Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +15188;17600155382;"Glottometrics";journal;"26258226, 16178351";"International Quantitative Linguistics Association";No;No;0,364;Q1;8;4;25;168;25;25;1,00;42,00;50,00;0;Germany;Western Europe;"International Quantitative Linguistics Association";"2017-2025";"Linguistics and Language (Q1); Applied Mathematics (Q3)";"Mathematics; Social Sciences" +15189;21100775661;"Physical Culture and Sport, Studies and Research";journal;"20812221, 18994849";"De Gruyter Open Ltd";Yes;No;0,364;Q1;16;32;79;1783;145;79;1,59;55,72;42,42;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2016-2026";"Cultural Studies (Q1); Applied Psychology (Q3); Education (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Psychology; Social Sciences" +15190;21101033509;"Starinar";journal;"24060739, 03500241";"";Yes;Yes;0,364;Q1;5;10;34;805;16;34;0,35;80,50;29,17;0;Serbia;Eastern Europe;"";"2019-2024";"Archeology (Q1); Archeology (arts and humanities) (Q1); Classics (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +15191;23840;"Boreal Environment Research";journal;"12396095";"Finish Environment Institute";Yes;No;0,364;Q2;65;13;29;757;53;29;1,50;58,23;47,78;0;Finland;Western Europe;"Finish Environment Institute";"1996-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Atmospheric Science (Q3); Ecological Modeling (Q3); Pollution (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +15192;14721;"Medical Reference Services Quarterly";journal;"02763869, 15409597";"Routledge";No;No;0,364;Q2;31;34;95;805;112;89;1,29;23,68;63,64;0;United States;Northern America;"Routledge";"1982-2026";"Library and Information Sciences (Q2); Health Informatics (Q3)";"Medicine; Social Sciences" +15193;4000151818;"Mobilization";journal;"1086671X";"San Diego State University";No;No;0,364;Q2;58;0;58;0;94;58;1,57;0,00;0,00;0;United States;Northern America;"San Diego State University";"1996, 1998-1999, 2003-2024";"Sociology and Political Science (Q2); Transportation (Q3)";"Social Sciences" +15194;21100843001;"Steel Construction";journal;"18670520, 18670539";"John Wiley & Sons Inc.";No;No;0,364;Q2;21;27;81;790;114;75;1,79;29,26;13,51;0;United States;Northern America;"John Wiley & Sons Inc.";"2008-2026";"Metals and Alloys (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science" +15195;21101264302;"UNEC Journal of Engineering and Applied Sciences";journal;"2790234X, 27902358";"Azerbaijan State University of Economics";No;No;0,364;Q2;10;25;61;748;99;61;1,75;29,92;42,35;0;Azerbaijan;Eastern Europe;"Azerbaijan State University of Economics";"2021-2025";"Engineering (miscellaneous) (Q2); Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +15196;21101361186;"CONSTRUCTION";journal;"27858731";"Universiti Malaysia Pahang";No;No;0,364;Q3;10;26;95;1085;204;95;2,14;41,73;54,55;0;Malaysia;Asiatic Region;"Universiti Malaysia Pahang";"2021-2025";"Building and Construction (Q3); Civil and Structural Engineering (Q3); Environmental Engineering (Q3); Waste Management and Disposal (Q3)";"Engineering; Environmental Science" +15197;70451;"Consulting Psychology Journal";journal;"10659293, 19390149";"American Psychological Association";No;No;0,364;Q3;57;19;63;1023;106;61;1,58;53,84;59,46;0;United States;Northern America;"American Psychological Association";"1993-2025";"Applied Psychology (Q3); Developmental and Educational Psychology (Q3); Psychology (miscellaneous) (Q3)";"Psychology" +15198;23159;"Echocardiography";journal;"07422822, 15408175";"John Wiley and Sons Inc";No;No;0,364;Q3;77;313;693;8585;810;618;1,17;27,43;39,51;0;United States;Northern America;"John Wiley and Sons Inc";"1984-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +15199;144723;"Fetal and Pediatric Pathology";journal;"15513815, 15513823";"Taylor and Francis Ltd.";No;No;0,364;Q3;43;57;284;1623;258;279;0,80;28,47;58,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-1998, 2000-2001, 2003-2026";"Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +15200;130072;"International Journal of Medicinal Mushrooms";journal;"15219437, 19404344";"Begell House Inc.";No;No;0,364;Q3;47;80;241;3432;517;241;1,87;42,90;44,41;0;United States;Northern America;"Begell House Inc.";"2005-2026";"Applied Microbiology and Biotechnology (Q3); Drug Discovery (Q3); Pharmacology (Q3)";"Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +15201;21100870639;"Journal of Binocular Vision and Ocular Motility";journal;"2576117X, 25761218";"Taylor and Francis Ltd.";No;No;0,364;Q3;16;14;85;380;87;81;1,02;27,14;59,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2026";"Ophthalmology (Q3)";"Medicine" +15202;4700152637;"Journal of Economic Interaction and Coordination";journal;"1860711X, 18607128";"Springer Verlag";No;No;0,364;Q3;30;50;96;2824;161;92;1,73;56,48;27,27;2;Germany;Western Europe;"Springer Verlag";"2006-2026";"Business and International Management (Q3); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15203;15457;"Journal of Employment Counseling";journal;"21611920, 00220787";"Wiley-Blackwell";No;No;0,364;Q3;38;17;50;1352;70;50;1,41;79,53;58,54;0;United States;Northern America;"Wiley-Blackwell";"1964-2026";"Applied Psychology (Q3); Organizational Behavior and Human Resource Management (Q3); Psychology (miscellaneous) (Q3)";"Business, Management and Accounting; Psychology" +15204;25891;"Journal of Macromolecular Science, Part A: Pure and Applied Chemistry";journal;"15205738, 10601325";"Taylor and Francis Ltd.";No;No;0,364;Q3;64;112;248;6545;585;245;2,44;58,44;37,29;0;United States;Northern America;"Taylor and Francis Ltd.";"1992-2026";"Ceramics and Composites (Q3); Chemistry (miscellaneous) (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)";"Chemistry; Materials Science" +15205;19700175126;"Medical Devices: Evidence and Research";journal;"11791470";"Dove Medical Press Ltd";Yes;No;0,364;Q3;49;53;102;1649;192;97;1,60;31,11;39,71;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2008-2026";"Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)";"Engineering; Medicine" +15206;21101053555;"Conatus - Journal of Philosophy";journal;"26539373, 24593842";"NKUA Applied Philosophy Research Laboratory";Yes;Yes;0,363;Q1;7;27;91;1188;124;91;1,17;44,00;33,33;0;Greece;Western Europe;"NKUA Applied Philosophy Research Laboratory";"2018-2025";"Philosophy (Q1)";"Arts and Humanities" +15207;24150;"International Journal of Middle East Studies";journal;"14716380, 00207438";"Cambridge University Press";No;No;0,363;Q1;60;31;163;2469;114;162;0,59;79,65;55,56;0;United Kingdom;Western Europe;"Cambridge University Press";"1970-2026";"History (Q1); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +15208;200147126;"Journal of Intercultural Studies";journal;"07256868, 14699540";"Taylor and Francis Ltd.";No;No;0,363;Q1;50;89;184;4812;284;162;1,38;54,07;61,69;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2026";"Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +15209;5600153223;"Migraciones";journal;"23410833, 11385774";"Universidad Pontificia Comillas de Madrid";Yes;Yes;0,363;Q1;15;26;80;1594;90;77;1,33;61,31;39,02;0;Spain;Western Europe;"Universidad Pontificia Comillas de Madrid";"2012-2026";"Cultural Studies (Q1); Demography (Q2)";"Social Sciences" +15210;15900154753;"Communicative and Integrative Biology";journal;"19420889";"Taylor and Francis Ltd.";Yes;No;0,363;Q2;52;13;59;952;131;57;2,67;73,23;29,03;0;United States;Northern America;"Taylor and Francis Ltd.";"2008-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +15211;19300157037;"Computer Science and Information Systems";journal;"24061018, 18200214";"ComSIS Consortium";Yes;Yes;0,363;Q2;35;81;267;3255;477;239;1,54;40,19;32,54;0;Serbia;Eastern Europe;"ComSIS Consortium";"2008-2025";"Computer Science (miscellaneous) (Q2)";"Computer Science" +15212;13583;"George Washington Law Review";journal;"00168076";"George Washington University";No;No;0,363;Q2;39;33;101;10896;91;96;1,05;330,18;46,88;0;United States;Northern America;"George Washington University";"1976, 1978, 1980, 1982-1983, 1989, 1992-1994, 1996-2025";"Law (Q2)";"Social Sciences" +15213;21100216567;"IET Biometrics";journal;"20474938, 20474946";"John Wiley and Sons Ltd";Yes;No;0,363;Q2;47;15;89;638;173;86;2,15;42,53;30,16;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2026";"Computer Vision and Pattern Recognition (Q2); Signal Processing (Q3); Software (Q3)";"Computer Science" +15214;23412;"Journal of AOAC International";journal;"10603271, 19447922";"Oxford University Press";No;No;0,363;Q2;110;90;446;2201;966;443;2,21;24,46;43,64;0;United States;Northern America;"Oxford University Press";"1921-1923, 1938-1939, 1946-1947, 1992-2026";"Agronomy and Crop Science (Q2); Analytical Chemistry (Q3); Environmental Chemistry (Q3); Food Science (Q3); Pharmacology (Q3)";"Agricultural and Biological Sciences; Chemistry; Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +15215;21100934999;"Journal of Plant Nutrition and Fertilizers";journal;"1008505X";"Chinese Academy of Agriculture Sciences,Editorial Department of Journal of Plant Nutrition and Fertilizer";No;No;0,363;Q2;25;201;603;10148;1099;603;1,90;50,49;41,32;0;China;Asiatic Region;"Chinese Academy of Agriculture Sciences,Editorial Department of Journal of Plant Nutrition and Fertilizer";"2018-2026";"Agronomy and Crop Science (Q2); Plant Science (Q2); Soil Science (Q3)";"Agricultural and Biological Sciences" +15216;19911;"New Zealand Journal of Botany";journal;"0028825X, 11758643";"Taylor and Francis Ltd.";No;No;0,363;Q2;44;147;85;10826;152;80;2,27;73,65;39,31;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1963-2025";"Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15217;26758;"Astronomy Letters";journal;"10637737, 15626873";"Pleiades Publishing";No;No;0,363;Q3;48;41;208;1718;176;208;0,85;41,90;33,64;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Physics and Astronomy" +15218;16857;"Biochemical Systematics and Ecology";journal;"03051978";"Elsevier Ltd";No;No;0,363;Q3;83;153;424;7998;988;424;2,41;52,27;43,50;0;United Kingdom;Western Europe;"Elsevier Ltd";"1973-2026";"Biochemistry (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +15219;21100861792;"Biointerface Research in Applied Chemistry";journal;"20695837";"AMG Transcend Association";Yes;No;0,363;Q3;48;90;1305;5396;3102;1302;2,05;59,96;45,04;0;Romania;Eastern Europe;"AMG Transcend Association";"2016-2026";"Biochemistry (Q3); Biotechnology (Q3); Molecular Biology (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology" +15220;17320;"Bulletin of the Menninger Clinic";journal;"00259284, 19432828";"Guilford Publications";No;No;0,363;Q3;45;17;69;461;84;68;1,29;27,12;62,32;0;United States;Northern America;"Guilford Publications";"1945-2025";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +15221;14955;"Clinical Pediatrics";journal;"19382707, 00099228";"SAGE Publications Inc.";No;No;0,363;Q3;82;260;662;6338;575;557;0,86;24,38;62,41;1;United States;Northern America;"SAGE Publications Inc.";"1962-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +15222;21100886393;"Econometrics";journal;"22251146";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,363;Q3;28;52;102;2608;188;99;1,85;50,15;20,34;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2013-2025";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +15223;5800161654;"Educational Forum";journal;"19388098, 00131725";"Taylor and Francis Ltd.";No;No;0,363;Q3;40;36;94;1834;104;80;0,87;50,94;67,16;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1936-2026";"Education (Q3)";"Social Sciences" +15224;28327;"Gastroenterologia y Hepatologia";journal;"15789519, 02105705";"Ediciones Doyma, S.L.";No;No;0,363;Q3;37;136;474;4107;450;444;1,15;30,20;52,59;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"1982-2026";"Gastroenterology (Q3); Hepatology (Q3)";"Medicine" +15225;26336;"Geologia Croatica";journal;"1330030X";"Croatian Geological Survey";Yes;Yes;0,363;Q3;36;17;60;1104;81;58;1,30;64,94;36,51;0;Croatia;Eastern Europe;"Croatian Geological Survey";"1992-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Geology (Q3)";"Earth and Planetary Sciences" +15226;20794;"Human Antibodies";journal;"10932607, 1875869X";"SAGE Publications Ltd";No;No;0,363;Q3;29;12;53;514;81;53;1,74;42,83;62,22;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1990-1997, 1999-2013, 2015-2025";"Medicine (miscellaneous) (Q3); Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +15227;26179;"Journal of Pediatric Endocrinology and Metabolism";journal;"0334018X, 21910251";"Walter de Gruyter GmbH";No;No;0,363;Q3;76;182;551;5465;657;536;1,10;30,03;60,12;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1985-2026";"Endocrinology, Diabetes and Metabolism (Q3); Pediatrics, Perinatology and Child Health (Q3); Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15228;21100203314;"Journal of Singularities";journal;"19492006";"Worldwide Center of Mathematics";No;No;0,363;Q3;14;11;48;264;24;47;0,65;24,00;21,05;0;United States;Northern America;"Worldwide Center of Mathematics";"2011-2025";"Applied Mathematics (Q3); Geometry and Topology (Q3)";"Mathematics" +15229;21100378965;"Journal of Social Science Education";journal;"16119665, 16185293";"sowi-online e.V.";Yes;Yes;0,363;Q3;17;24;89;1275;82;77;0,78;53,13;63,04;0;Germany;Western Europe;"sowi-online e.V.";"2014-2025";"Education (Q3)";"Social Sciences" +15230;28591;"Journal of Thermophysics and Heat Transfer";journal;"15336808, 08878722";"AIAA International";No;No;0,363;Q3;82;85;213;3434;358;194;1,62;40,40;16,79;0;United States;Northern America;"AIAA International";"1987-2026";"Aerospace Engineering (Q3); Condensed Matter Physics (Q3); Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3); Space and Planetary Science (Q3)";"Chemical Engineering; Earth and Planetary Sciences; Engineering; Physics and Astronomy" +15231;28492;"Leading Edge";journal;"19383789, 1070485X";"Society of Exploration Geophysicists";No;No;0,363;Q3;104;110;352;2156;360;267;1,03;19,60;19,20;0;United States;Northern America;"Society of Exploration Geophysicists";"1958, 1982-1984, 1986-2025";"Geology (Q3); Geophysics (Q3)";"Earth and Planetary Sciences" +15232;19900191933;"Miskolc Mathematical Notes";journal;"17872405, 17872413";"University of Miskolc";Yes;Yes;0,363;Q3;27;74;268;1555;227;268;0,80;21,01;31,97;0;Hungary;Eastern Europe;"University of Miskolc";"2010-2025";"Algebra and Number Theory (Q3); Analysis (Q3); Control and Optimization (Q3); Discrete Mathematics and Combinatorics (Q3); Numerical Analysis (Q3)";"Mathematics" +15233;29085;"Philosophical Magazine Letters";journal;"09500839, 13623036";"Taylor and Francis Ltd.";Yes;No;0,363;Q3;76;11;68;585;111;68;1,93;53,18;15,91;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981, 1987-2025";"Condensed Matter Physics (Q3)";"Physics and Astronomy" +15234;29140;"Physica Status Solidi (B): Basic Research";journal;"15213951, 03701972";"John Wiley and Sons Inc";No;No;0,363;Q3;129;378;846;17518;1554;830;1,71;46,34;26,12;0;Germany;Western Europe;"John Wiley and Sons Inc";"1961-2026";"Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science; Physics and Astronomy" +15235;21100469364;"Surface Topography: Metrology and Properties";journal;"2051672X";"IOP Publishing Ltd.";No;No;0,363;Q3;43;108;422;5136;970;421;2,28;47,56;27,27;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2013-2025";"Instrumentation (Q3); Materials Chemistry (Q3); Process Chemistry and Technology (Q3); Surfaces, Coatings and Films (Q3)";"Chemical Engineering; Materials Science; Physics and Astronomy" +15236;5800208237;"AILA Review";journal;"14610213, 15705595";"John Benjamins Publishing Company";No;No;0,362;Q1;34;14;62;756;99;60;1,00;54,00;71,43;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2003-2016, 2018-2025";"Linguistics and Language (Q1)";"Social Sciences" +15237;90456;"Journal of Mediterranean Archaeology";journal;"17431700, 09527648";"Equinox Publishing Ltd";No;No;0,362;Q1;38;5;32;513;33;27;0,85;102,60;40,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"1988-2025";"Archeology (arts and humanities) (Q1); Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2)";"Arts and Humanities; Social Sciences" +15238;82719;"KIVA";journal;"00231940, 20516177";"Routledge";No;No;0,362;Q1;27;20;71;1615;38;71;0,52;80,75;32,43;0;United States;Northern America;"Routledge";"1954-2026";"Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1); Anthropology (Q2)";"Arts and Humanities; Social Sciences" +15239;19200156922;"Biointerphases";journal;"15594106, 19348630";"American Institute of Physics";Yes;No;0,362;Q2;63;48;128;2594;240;126;1,71;54,04;37,50;1;United States;Northern America;"American Institute of Physics";"2006-2026";"Physics and Astronomy (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biomaterials (Q3); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Physics and Astronomy" +15240;21811;"Farmacia Hospitalaria";journal;"21718695, 11306343";"Elsevier B.V.";Yes;Yes;0,362;Q2;29;107;224;1927;284;190;1,29;18,01;68,35;3;Netherlands;Western Europe;"Elsevier B.V.";"1990-2026";"Pharmacy (Q2); Medicine (miscellaneous) (Q3); Pharmacology (Q3)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +15241;21100385807;"International Journal of Emergency Services";journal;"20470908, 20470894";"Emerald Group Publishing Ltd.";No;No;0,362;Q2;22;33;81;1538;138;74;1,42;46,61;33,06;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2012-2026";"Safety Research (Q2); Management Science and Operations Research (Q3)";"Decision Sciences; Social Sciences" +15242;19300157101;"Invasive Plant Science and Management";journal;"1939747X, 19397291";"Cambridge University Press";No;No;0,362;Q2;41;31;88;1427;124;85;1,45;46,03;37,31;0;United States;Northern America;"Cambridge University Press";"2008-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +15243;21100199782;"Kragujevac Journal of Mathematics";journal;"14509628, 24063045";"University of Kragujevac, Faculty of Science";Yes;Yes;0,362;Q2;25;66;201;1348;178;201;0,83;20,42;27,14;0;Serbia;Eastern Europe;"University of Kragujevac, Faculty of Science";"2011-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +15244;21100938256;"Nordic Journal of Criminology";journal;"2578983X, 25789821";"Scandinavian University Press";Yes;Yes;0,362;Q2;30;22;43;1141;63;41;1,29;51,86;47,62;0;Norway;Western Europe;"Scandinavian University Press";"2019-2026";"Law (Q2)";"Social Sciences" +15245;21101039512;"Physics Open";journal;"26660326";"Elsevier B.V.";Yes;No;0,362;Q2;16;98;107;4362;246;106;2,41;44,51;23,22;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +15246;21100394793;"Plant Health Progress";journal;"15351025";"American Phytopathological Society";No;No;0,362;Q2;24;139;240;1785;268;239;1,09;12,84;41,46;0;United States;Northern America;"American Phytopathological Society";"2008, 2010-2011, 2013-2025";"Horticulture (Q2); Plant Science (Q2)";"Agricultural and Biological Sciences" +15247;13400154702;"Southern Forests";journal;"20702639, 20702620";"Taylor and Francis Ltd.";No;No;0,362;Q2;36;26;79;1217;111;77;1,35;46,81;23,60;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Forestry (Q2)";"Agricultural and Biological Sciences" +15248;18300156711;"Advances in Cognitive Psychology";journal;"18951171";"VIZJA University";Yes;No;0,362;Q3;40;17;95;908;100;91;1,08;53,41;51,02;0;Poland;Eastern Europe;"VIZJA University";"2007-2025";"Applied Psychology (Q3); Clinical Psychology (Q3); Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3); Experimental and Cognitive Psychology (Q4); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience; Psychology" +15249;14976;"Canadian Journal of Civil Engineering";journal;"03151468, 12086029";"National Research Council of Canada";No;No;0,362;Q3;82;166;364;7142;641;346;1,89;43,02;23,76;1;Canada;Northern America;"National Research Council of Canada";"1971, 1974-2026";"Civil and Structural Engineering (Q3); Environmental Science (miscellaneous) (Q3)";"Engineering; Environmental Science" +15250;21100899436;"International Journal of Applied and Computational Mathematics";journal;"23495103, 21995796";"Springer India";No;No;0,362;Q3;41;253;614;9893;1295;613;2,10;39,10;23,32;0;India;Asiatic Region;"Springer India";"2015-2026";"Applied Mathematics (Q3); Computational Mathematics (Q3)";"Mathematics" +15251;1100147101;"International Journal of Tropical Insect Science";journal;"17427584, 17427592";"Springer Nature";No;No;0,362;Q3;41;305;843;16217;1407;841;1,50;53,17;30,93;0;Switzerland;Western Europe;"Springer Nature";"1981, 1986, 1989, 1991-1993, 1995, 1998, 2004-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +15252;21101082050;"Journal of Clinical Virology Plus";journal;"26670380";"Elsevier Ltd";Yes;No;0,362;Q3;12;40;133;1397;152;120;1,10;34,93;47,48;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2026";"Infectious Diseases (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine" +15253;21100833039;"Journal of HerbMed Pharmacology";journal;"23455004";"Shahrekord University of Medical Sciences";Yes;No;0,362;Q3;24;46;197;2460;389;197;1,87;53,48;41,51;0;Iran;Middle East;"Shahrekord University of Medical Sciences";"2015-2026";"Drug Discovery (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +15254;4700152614;"Mini-Reviews in Organic Chemistry";journal;"18756298, 1570193X";"Bentham Science Publishers";No;No;0,362;Q3;47;70;162;7130;479;154;3,06;101,86;33,80;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2004-2026";"Organic Chemistry (Q3)";"Chemistry" +15255;29055;"Modern Physics Letters B";journal;"02179849, 17936640";"World Scientific";No;No;0,362;Q3;63;425;1125;17508;2835;1124;3,00;41,20;28,19;0;Singapore;Asiatic Region;"World Scientific";"1989-1992, 1996-2026";"Condensed Matter Physics (Q3); Statistical and Nonlinear Physics (Q3)";"Physics and Astronomy" +15256;21100396438;"Psicologia Sociale";journal;"26122006, 18272517";"Societa Editrice Il Mulino";No;No;0,362;Q3;15;20;60;1376;63;58;0,78;68,80;51,79;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2006-2025";"Social Psychology (Q3)";"Psychology" +15257;24088;"Rapid Communications in Mass Spectrometry";journal;"09514198, 10970231";"John Wiley and Sons Ltd";No;No;0,362;Q3;155;237;599;9315;1082;579;1,75;39,30;38,91;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1987-2026";"Analytical Chemistry (Q3); Organic Chemistry (Q3); Spectroscopy (Q3)";"Chemistry" +15258;21100838017;"Sankhya B";journal;"09768394, 09768386";"Springer India";No;No;0,362;Q3;16;51;95;1840;100;95;1,24;36,08;29,91;0;India;Asiatic Region;"Springer India";"2010-2026";"Applied Mathematics (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +15259;24571;"X-Ray Spectrometry";journal;"00498246, 10974539";"John Wiley and Sons Ltd";No;No;0,362;Q3;55;92;137;3075;267;129;1,49;33,42;37,81;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1972-2026";"Spectroscopy (Q3)";"Chemistry" +15260;21100198458;"IEEE Vehicular Networking Conference, VNC";conference and proceedings;"21579865, 21579857";"IEEE Computer Society";No;No;0,362;-;39;70;121;1065;215;117;1,78;15,21;19,90;0;United States;Northern America;"IEEE Computer Society";"2011-2013, 2015-2021, 2023-2025";"Automotive Engineering; Computer Networks and Communications; Control and Systems Engineering; Electrical and Electronic Engineering; Transportation";"Computer Science; Engineering; Social Sciences" +15261;21100310020;"Proceedings of the International Joint Conference on Autonomous Agents and Multiagent Systems, AAMAS";conference and proceedings;"15488403, 15582914";"International Foundation for Autonomous Agents and Multiagent Systems (IFAAMAS)";No;No;0,362;-;70;477;1291;14959;1815;1284;1,37;31,36;22,14;0;United States;Northern America;"International Foundation for Autonomous Agents and Multiagent Systems (IFAAMAS)";"2008-2010, 2015-2025";"Artificial Intelligence; Control and Systems Engineering; Software";"Computer Science; Engineering" +15262;21100435589;"Curator";journal;"21516952";"John Wiley & Sons Inc.";No;No;0,361;Q1;21;54;156;2327;169;137;0,96;43,09;65,71;0;United States;Northern America;"John Wiley & Sons Inc.";"1976-1978, 1990, 2015-2026";"Conservation (Q1); Museology (Q1)";"Arts and Humanities" +15263;21101176725;"Historical Life Course Studies";journal;"23526343";"";Yes;Yes;0,361;Q1;10;24;34;1041;78;33;1,59;43,38;54,05;0;Netherlands;Western Europe;"";"2019-2025";"History (Q1)";"Arts and Humanities" +15264;21100896940;"Intellectual Economics";journal;"18228038, 18228011";"Mykolo Romerio Universitetas";Yes;No;0,361;Q1;14;20;71;1167;113;69;1,60;58,35;55,17;0;Lithuania;Eastern Europe;"Mykolo Romerio Universitetas";"2018-2025";"Philosophy (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2); Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +15265;21100463542;"SPAL";journal;"22553924, 11334525";"Seville University Press";Yes;No;0,361;Q1;9;10;66;805;44;66;0,68;80,50;38,46;0;Spain;Western Europe;"Seville University Press";"2015-2025";"Archeology (arts and humanities) (Q1); History (Q1); Archeology (Q2)";"Arts and Humanities; Social Sciences" +15266;28154;"Fennia";journal;"00150010, 17985617";"Geographical Society of Finland";Yes;Yes;0,361;Q2;30;12;68;549;94;66;1,25;45,75;52,63;0;Finland;Western Europe;"Geographical Society of Finland";"1976, 1979-2009, 2011-2025";"Forestry (Q2); Geography, Planning and Development (Q2); Ecology (Q3)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +15267;21101197408;"Frontiers in Future Transportation";journal;"26735210";"Frontiers Media SA";Yes;No;0,361;Q2;12;23;82;1067;161;79;1,98;46,39;19,12;0;Switzerland;Western Europe;"Frontiers Media SA";"2020-2026";"Automotive Engineering (Q2); Urban Studies (Q2); Control and Systems Engineering (Q3); Transportation (Q3)";"Engineering; Social Sciences" +15268;23241;"International Journal of Game Theory";journal;"14321270, 00207276";"Springer Verlag";No;No;0,361;Q2;51;48;128;1300;76;128;0,61;27,08;18,18;0;Germany;Western Europe;"Springer Verlag";"1971, 1973-2026";"Mathematics (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics; Social Sciences" +15269;4700152642;"Journal fur Verbraucherschutz und Lebensmittelsicherheit";journal;"16615751";"Springer Science and Business Media Deutschland GmbH";No;No;0,361;Q2;37;47;143;1433;312;129;2,05;30,49;41,55;1;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2006-2026";"Agronomy and Crop Science (Q2); Food Animals (Q2); Biotechnology (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +15270;26153;"Journal of Oral Implantology";journal;"15481336, 01606972";"Allen Press Inc.";No;No;0,361;Q2;66;83;268;114;296;251;0,93;1,37;32,40;0;United States;Northern America;"Allen Press Inc.";"1977-2026";"Oral Surgery (Q2)";"Dentistry" +15271;21101257960;"Mobility Humanities";journal;"27998118, 27998509";"";No;No;0,361;Q2;5;22;58;1006;42;48;0,82;45,73;54,29;0;South Korea;Asiatic Region;"";"2022-2026";"Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +15272;27440;"Revue Europeenne des Migrations Internationales";journal;"07650752, 17775418";"University of Poitiers";Yes;Yes;0,361;Q2;10;38;98;959;43;80;0,49;25,24;54,29;0;France;Western Europe;"University of Poitiers";"1985-1998, 2003, 2019-2025";"Anthropology (Q2); Demography (Q2); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15273;23565;"Special Care in Dentistry";journal;"02751879, 17544505";"Wiley-Blackwell";No;No;0,361;Q2;54;168;412;4972;544;367;1,34;29,60;51,75;1;United States;Northern America;"Wiley-Blackwell";"1981-2026";"Dentistry (miscellaneous) (Q2)";"Dentistry" +15274;21101185191;"TeMA Journal of Land Use, Mobility and Environment";journal;"19709889, 19709870";"FeDOA - Federico II University Press";Yes;Yes;0,361;Q2;9;61;144;2386;254;130;1,76;39,11;45,63;0;Italy;Western Europe;"FeDOA - Federico II University Press";"2023-2025";"Geography, Planning and Development (Q2); Environmental Science (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +15275;18778;"Violence and Victims";journal;"08866708";"Springer Publishing Company";No;No;0,361;Q2;104;46;139;2583;138;139;0,72;56,15;67,31;0;United States;Northern America;"Springer Publishing Company";"1986-2026";"Law (Q2); Health (social science) (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)";"Medicine; Social Sciences" +15276;21100881468;"ACM Transactions on Parallel Computing";journal;"23294957, 23294949";"Association for Computing Machinery";No;No;0,361;Q3;26;9;56;410;113;55;2,13;45,56;15,15;0;United States;Northern America;"Association for Computing Machinery";"2014-2025";"Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Hardware and Architecture (Q3); Modeling and Simulation (Q3); Software (Q3)";"Computer Science; Mathematics" +15277;4700152450;"Current Rheumatology Reviews";journal;"15733971, 18756360";"Bentham Science Publishers";No;No;0,361;Q3;34;75;173;4734;254;170;1,40;63,12;53,27;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2025";"Rheumatology (Q3)";"Medicine" +15278;13676;"Ear, Nose and Throat Journal";journal;"01455613, 19427522";"Medquest Communications LLC";Yes;No;0,361;Q3;58;808;1367;14242;1297;1257;0,91;17,63;38,62;4;United States;Northern America;"Medquest Communications LLC";"1976-2026";"Medicine (miscellaneous) (Q3); Otorhinolaryngology (Q3)";"Medicine" +15279;29375;"Energy Engineering: Journal of the Association of Energy Engineering";journal;"15460118, 01998595";"Tech Science Press";No;No;0,361;Q3;20;236;496;8851;899;492;2,16;37,50;26,83;0;United States;Northern America;"Tech Science Press";"1980-1985, 1987-2026";"Building and Construction (Q3); Energy Engineering and Power Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering" +15280;28073;"International Journal of Modern Physics A";journal;"0217751X, 1793656X";"World Scientific";No;No;0,361;Q3;117;344;817;16582;1010;810;1,22;48,20;18,98;0;Singapore;Asiatic Region;"World Scientific";"1989, 1991, 1994-2026";"Astronomy and Astrophysics (Q3); Atomic and Molecular Physics, and Optics (Q3); Nuclear and High Energy Physics (Q3)";"Physics and Astronomy" +15281;21100916532;"International Journal of Telerehabilitation";journal;"19452020";"";Yes;Yes;0,361;Q3;18;27;69;1152;122;60;1,39;42,67;69,49;0;United States;Northern America;"";"2010, 2019-2025";"Computer Science Applications (Q3); Health Informatics (Q3); Health Information Management (Q3); Rehabilitation (Q3)";"Computer Science; Health Professions; Medicine" +15282;21100329892;"Journal of Infant, Child, and Adolescent Psychotherapy";journal;"19409214, 15289168";"Routledge";No;No;0,361;Q3;23;23;96;663;74;83;0,95;28,83;70,27;0;United States;Northern America;"Routledge";"2000, 2002, 2004-2010, 2014-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +15283;21100201026;"Journal of Mathematics in Industry";journal;"21905983";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,361;Q3;20;14;50;525;93;50;1,70;37,50;27,45;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2011-2026";"Applied Mathematics (Q3)";"Mathematics" +15284;27243;"Laboratory Medicine";journal;"19437730, 00075027";"Oxford University Press";No;No;0,361;Q3;41;122;400;3027;504;392;1,38;24,81;47,16;0;United Kingdom;Western Europe;"Oxford University Press";"1970-1975, 1978-1979, 1982, 1984-2026";"Biochemistry (medical) (Q3); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15285;22468;"Roczniki Panstwowego Zakladu Higieny / Annals of the National Institute of Hygiene";journal;"00357715";"";Yes;No;0,361;Q3;33;17;132;317;175;130;1,19;18,65;71,93;0;Poland;Eastern Europe;"";"1961, 1965-2025";"Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +15286;5800184384;"SOCAR Proceedings";journal;"22186867, 22188622";"Oil Gas Scientific Research Project Institute";No;No;0,361;Q3;33;90;426;3194;443;426;1,16;35,49;34,23;0;Azerbaijan;Eastern Europe;"Oil Gas Scientific Research Project Institute";"2010-2025";"Applied Mathematics (Q3); Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3); Energy (miscellaneous) (Q3); Fuel Technology (Q3); Geology (Q3); Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Chemical Engineering; Chemistry; Earth and Planetary Sciences; Energy; Mathematics" +15287;26924;"Statistical Inference for Stochastic Processes";journal;"15729311, 13870874";"Springer Science and Business Media B.V.";No;No;0,361;Q3;24;23;68;826;55;67;0,86;35,91;20,83;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2001, 2005-2025";"Statistics and Probability (Q3)";"Mathematics" +15288;26491;"Synlett";journal;"09365214, 14372096";"Georg Thieme Verlag";No;No;0,361;Q3;146;468;1050;23849;1487;1033;1,35;50,96;30,86;0;Germany;Western Europe;"Georg Thieme Verlag";"1989-2026";"Organic Chemistry (Q3)";"Chemistry" +15289;14345;"Theory in Biosciences";journal;"16117530, 14317613";"Springer Science and Business Media Deutschland GmbH";No;No;0,361;Q3;45;21;76;1086;147;73;2,25;51,71;26,67;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1997-2026";"Applied Mathematics (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Statistics and Probability (Q3)";"Agricultural and Biological Sciences; Mathematics" +15290;21101056014;"Topological Algebra and its Applications";journal;"22993231";"Walter de Gruyter GmbH";Yes;Yes;0,361;Q3;10;0;38;0;48;38;1,76;0,00;0,00;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2013-2023";"Algebra and Number Theory (Q3); Applied Mathematics (Q3); Geometry and Topology (Q3)";"Mathematics" +15291;21101184509;"Universal Journal of Mathematics and Applications";journal;"26199653";"";Yes;Yes;0,361;Q3;10;16;60;457;81;60;1,35;28,56;19,35;0;Turkey;Middle East;"";"2019-2025";"Analysis (Q3); Applied Mathematics (Q3); Geometry and Topology (Q3); Numerical Analysis (Q3)";"Mathematics" +15292;20178;"Journal of Baltic Studies";journal;"17517877, 01629778";"Routledge";No;No;0,360;Q1;29;58;112;3560;107;109;0,84;61,38;53,00;0;United Kingdom;Western Europe;"Routledge";"1972-2001, 2003-2026";"Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +15293;21100211114;"Music Therapy Perspectives";journal;"07346875, 20537387";"Oxford University Press";No;No;0,360;Q1;22;29;75;1256;86;70;0,91;43,31;74,12;0;United States;Northern America;"Oxford University Press";"1983-1984, 1986-1987, 1990, 1992-1995, 2002, 2008, 2011-2026";"Music (Q1); Complementary and Alternative Medicine (Q2); Applied Psychology (Q3)";"Arts and Humanities; Medicine; Psychology" +15294;28462;"Surface Engineering";journal;"02670844, 17432944";"SAGE Publications Ltd";No;No;0,360;Q1;61;95;254;3968;573;237;2,14;41,77;24,34;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1985-2026";"Conservation (Q1); Condensed Matter Physics (Q3); Materials Chemistry (Q3); Surfaces and Interfaces (Q3); Surfaces, Coatings and Films (Q3)";"Arts and Humanities; Materials Science; Physics and Astronomy" +15295;24681;"American Business Law Journal";journal;"17441714, 00027766";"John Wiley and Sons Inc";No;No;0,360;Q2;32;14;44;621;99;44;1,75;44,36;31,58;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1963-2026";"Law (Q2); Business and International Management (Q3)";"Business, Management and Accounting; Social Sciences" +15296;38490;"Bragantia";journal;"00068705, 16784499";"Agronomic Institute of Campinas";Yes;No;0,360;Q2;42;44;144;1741;241;144;1,65;39,57;35,96;0;Brazil;Latin America;"Agronomic Institute of Campinas";"1977, 1979, 1985, 1992-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Materials Science" +15297;69809;"Bulletin of Mineralogy, Petrology and Geochemistry";journal;"10072802";"Science Press";No;No;0,360;Q2;36;102;268;7420;332;268;1,34;72,75;32,30;0;China;Asiatic Region;"Science Press";"2001-2017, 2019-2026";"Economic Geology (Q2); Geochemistry and Petrology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +15298;21101304357;"CJC Pediatric and Congenital Heart Disease";journal;"27728129";"Elsevier B.V.";Yes;No;0,360;Q2;6;67;42;1791;64;34;1,52;26,73;43,47;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Dentistry (miscellaneous) (Q2); Cardiology and Cardiovascular Medicine (Q3)";"Dentistry; Medicine" +15299;5800197592;"Economics";journal;"18646042";"Walter de Gruyter GmbH";Yes;No;0,360;Q2;29;47;117;3422;222;117;1,99;72,81;44,19;1;Germany;Western Europe;"Walter de Gruyter GmbH";"2007-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +15300;21101315873;"Frontiers in Sustainable Tourism";journal;"28132815";"Frontiers Media SA";Yes;No;0,360;Q2;6;24;53;1430;110;45;2,13;59,58;37,25;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Management Information Systems (Q2); Environmental Science (miscellaneous) (Q3)";"Business, Management and Accounting; Environmental Science" +15301;18604;"Grana";journal;"00173134, 16512049";"Taylor and Francis Ltd.";No;No;0,360;Q2;49;16;90;851;93;84;1,11;53,19;38,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1970-1974, 1978-2026";"Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15302;21101201904;"Heat Treatment and Surface Engineering";journal;"25787616";"Taylor and Francis Ltd.";Yes;No;0,360;Q2;7;4;29;167;47;29;1,74;41,75;25,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2025";"Metals and Alloys (Q2); Surfaces, Coatings and Films (Q3)";"Materials Science" +15303;21101020018;"International Journal of Care and Caring";journal;"2397883X, 23978821";"Policy Press";No;No;0,360;Q2;20;50;135;2339;152;119;1,10;46,78;75,38;0;United Kingdom;Western Europe;"Policy Press";"2017-2025";"Sociology and Political Science (Q2); Health Policy (Q3); Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +15304;4700152214;"Journal of Exotic Pet Medicine";journal;"19316283, 15575063";"W.B. Saunders";No;No;0,360;Q2;44;35;146;797;117;107;0,74;22,77;63,89;0;United States;Northern America;"W.B. Saunders";"2006-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +15305;21101090012;"Journal of Islamic Monetary Economics and Finance";journal;"24606146, 24606618";"Bank Indonesia Institute";Yes;Yes;0,360;Q2;18;26;104;1551;317;104;2,72;59,65;28,07;0;Indonesia;Asiatic Region;"Bank Indonesia Institute";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +15306;21702;"Journal of Long-Term Effects of Medical Implants";journal;"10506934, 19404379";"Begell House Inc.";No;No;0,360;Q2;45;40;126;1374;180;125;1,29;34,35;27,15;0;United States;Northern America;"Begell House Inc.";"1991-2026";"Dentistry (miscellaneous) (Q2); Biomedical Engineering (Q3)";"Dentistry; Engineering" +15307;145510;"Libri";journal;"18658423, 00242667";"De Gruyter Saur";Yes;Yes;0,360;Q2;33;28;85;1723;165;85;2,09;61,54;41,89;0;Germany;Western Europe;"De Gruyter Saur";"1950, 1953-1956, 1958-2026";"Library and Information Sciences (Q2)";"Social Sciences" +15308;21101345295;"Vegetation Ecology and Diversity";journal;"30331447";"Societa Italiana di Scienza della Vegetazione";Yes;No;0,360;Q2;32;22;35;1364;62;35;1,55;62,00;38,10;0;Italy;Western Europe;"Societa Italiana di Scienza della Vegetazione";"2025";"Forestry (Q2); Plant Science (Q2); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15309;94558;"Yingyong Jichu yu Gongcheng Kexue Xuebao/Journal of Basic Science and Engineering";journal;"10050930";"Editorial Board of Journal of Basic Science and Engineering";No;No;0,360;Q2;26;151;355;4688;543;355;1,78;31,05;27,62;0;China;Asiatic Region;"Editorial Board of Journal of Basic Science and Engineering";"2004-2025";"Engineering (miscellaneous) (Q2)";"Engineering" +15310;21100868232;"Advances in Oceanography and Limnology";journal;"1947573X, 19475721";"Page Press Publications";Yes;Yes;0,360;Q3;23;8;22;388;33;21;1,50;48,50;62,30;0;Italy;Western Europe;"Page Press Publications";"2010-2025";"Aquatic Science (Q3); Oceanography (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +15311;24616;"Algebra Colloquium";journal;"02191733, 10053867";"World Scientific Publishing Co. Pte Ltd";Yes;No;0,360;Q3;33;50;153;986;71;153;0,45;19,72;45,26;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1996-2025";"Algebra and Number Theory (Q3); Applied Mathematics (Q3)";"Mathematics" +15312;3900148211;"International Journal of Integrated Supply Management";journal;"14775360, 17418097";"Inderscience Enterprises Ltd";No;No;0,360;Q3;25;5;47;339;76;47;1,59;67,80;42,86;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2025";"Marketing (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +15313;28499;"Journal of Combinatorial Optimization";journal;"13826905, 15732886";"Springer Netherlands";No;No;0,360;Q3;60;139;492;4347;610;492;1,17;31,27;34,90;0;Netherlands;Western Europe;"Springer Netherlands";"1997-2026";"Applied Mathematics (Q3); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Control and Optimization (Q3); Discrete Mathematics and Combinatorics (Q3)";"Computer Science; Mathematics" +15314;17998;"Neuropsychiatrie";journal;"09486259, 21941327";"Springer";No;No;0,360;Q3;24;47;95;1202;83;59;0,97;25,57;50,36;1;Austria;Western Europe;"Springer";"1995-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +15315;5000156907;"Polimeros";journal;"16785169, 01041428";"Associacao Brasileira de Polimeros";Yes;No;0,360;Q3;45;46;126;1866;276;126;1,58;40,57;47,80;0;Brazil;Latin America;"Associacao Brasileira de Polimeros";"2006-2025";"Chemical Engineering (miscellaneous) (Q3); Organic Chemistry (Q3)";"Chemical Engineering; Chemistry" +15316;21101062403;"Recent Advances in Drug Delivery and Formulation";journal;"26673886, 26673878";"Bentham Science Publishers";No;No;0,360;Q3;46;46;71;3832;164;66;2,35;83,30;41,78;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2021-2026";"Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3); Pharmaceutical Science (Q3)";"Engineering; Medicine; Pharmacology, Toxicology and Pharmaceutics" +15317;14367;"Seminars in Speech and Language";journal;"10989056, 07340478";"Thieme Medical Publishers, Inc.";No;No;0,360;Q3;58;30;96;1828;114;89;0,94;60,93;89,09;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1984-1991, 1994-2026";"LPN and LVN (Q3); Speech and Hearing (Q3)";"Health Professions; Nursing" +15318;26512;"Tetrahedron";journal;"14645416, 00404020";"Elsevier Ltd";No;No;0,360;Q3;245;455;1203;26365;2630;1198;2,13;57,95;34,66;0;United Kingdom;Western Europe;"Elsevier Ltd";"1957-2026";"Biochemistry (Q3); Drug Discovery (Q3); Organic Chemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +15319;19700170279;"English in Education";journal;"17548845, 04250494";"Taylor and Francis Ltd.";No;No;0,359;Q1;29;30;92;860;108;70;1,33;28,67;66,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1964-2026";"Linguistics and Language (Q1); Literature and Literary Theory (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +15320;21101040211;"Forum Scientiae Oeconomia";journal;"23534435, 23005947";"";Yes;Yes;0,359;Q1;23;17;108;1408;261;108;2,67;82,82;50,00;0;Poland;Eastern Europe;"";"2017-2026";"Cultural Studies (Q1); Law (Q2); Multidisciplinary (Q2); Business and International Management (Q3); Economics and Econometrics (Q3); Marketing (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Multidisciplinary; Social Sciences" +15321;21100932525;"International Journal of Food Design";journal;"20566530, 20566522";"Intellect Ltd.";Yes;Yes;0,359;Q1;15;9;37;461;72;31;1,60;51,22;57,89;0;United Kingdom;Western Europe;"Intellect Ltd.";"2016-2025";"Visual Arts and Performing Arts (Q1); Food Science (Q3)";"Agricultural and Biological Sciences; Arts and Humanities" +15322;6000152910;"Journal of Arts Management Law and Society";journal;"10632921, 19307799";"Taylor and Francis Ltd.";No;No;0,359;Q1;29;45;61;2183;102;59;2,07;48,51;51,85;1;United States;Northern America;"Taylor and Francis Ltd.";"1992-2026";"Visual Arts and Performing Arts (Q1); Law (Q2); Strategy and Management (Q3)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +15323;29662;"Journal of the History of Biology";journal;"15730387, 00225010";"";No;No;0,359;Q1;42;28;92;1541;67;79;0,67;55,04;33,33;0;Netherlands;Western Europe;"";"1968-2025";"History and Philosophy of Science (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Arts and Humanities" +15324;16800154742;"Journal of the Philosophy of History";journal;"18722636, 1872261X";"Brill Academic Publishers";No;No;0,359;Q1;16;32;54;1398;36;51;0,60;43,69;16,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2026";"History (Q1); History and Philosophy of Science (Q1)";"Arts and Humanities" +15325;21100247071;"Science and Technology Studies";journal;"22434690";"Finnish Society for Science and Technology Studies";Yes;Yes;0,359;Q1;27;18;57;1116;85;52;1,63;62,00;46,15;0;Finland;Western Europe;"Finnish Society for Science and Technology Studies";"2012-2025";"History and Philosophy of Science (Q1); Multidisciplinary (Q2)";"Arts and Humanities; Multidisciplinary" +15326;16423;"Chemie-Ingenieur-Technik";journal;"15222640, 0009286X";"John Wiley and Sons Inc";No;No;0,359;Q2;55;128;586;4242;973;530;1,57;33,14;23,50;0;Germany;Western Europe;"John Wiley and Sons Inc";"1949-2026";"Industrial and Manufacturing Engineering (Q2); Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry; Engineering" +15327;31877;"International Agrophysics";journal;"23008725, 02368722";"Polska Akademia Nauk";Yes;No;0,359;Q2;55;44;104;2661;200;104;2,08;60,48;38,43;0;Germany;Western Europe;"Polska Akademia Nauk";"1989, 1992-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Fluid Flow and Transfer Processes (Q3); Soil Science (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Chemical Engineering; Environmental Science" +15328;29552;"Journal of Gerontological Nursing";journal;"1938243X, 00989134";"Slack Incorporated";No;No;0,359;Q2;62;94;284;2549;277;238;0,96;27,12;69,97;1;United States;Northern America;"Slack Incorporated";"1975-2026";"Nursing (miscellaneous) (Q2); Gerontology (Q3)";"Nursing" +15329;21101089371;"Law, Technology and Humans";journal;"26524074";"Queensland University of Technology";Yes;Yes;0,359;Q2;11;35;74;2562;134;73;1,96;73,20;54,76;0;Australia;Pacific Region;"Queensland University of Technology";"2019-2025";"Computer Science (miscellaneous) (Q2); Information Systems and Management (Q2); Law (Q2); Social Sciences (miscellaneous) (Q2); Artificial Intelligence (Q3); Biotechnology (Q3); Computer Networks and Communications (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Decision Sciences; Social Sciences" +15330;21101087784;"Laws";journal;"2075471X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,359;Q2;22;99;256;6665;462;249;1,59;67,32;50,83;2;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Law (Q2)";"Social Sciences" +15331;5700152892;"New Political Science";journal;"07393148, 14699931";"Routledge";No;No;0,359;Q2;36;21;103;792;82;91;0,77;37,71;23,53;0;United Kingdom;Western Europe;"Routledge";"1979-1986, 1989-2025";"Sociology and Political Science (Q2)";"Social Sciences" +15332;21100432126;"Revista Derecho del Estado";journal;"23462051, 01229893";"Universidad Externado de Colombia";Yes;Yes;0,359;Q2;10;39;133;1692;77;129;0,72;43,38;36,96;0;Colombia;Latin America;"Universidad Externado de Colombia";"2015-2026";"Law (Q2)";"Social Sciences" +15333;12223;"Social Identities";journal;"13630296, 13504630";"Routledge";No;No;0,359;Q2;52;73;122;3956;161;103;1,33;54,19;48,15;0;United Kingdom;Western Europe;"Routledge";"1995-2025";"Sociology and Political Science (Q2)";"Social Sciences" +15334;17821;"Turkish Journal of Botany";journal;"1300008X, 13036106";"TUBITAK";No;No;0,359;Q2;52;35;129;2185;255;129;1,98;62,43;40,26;0;Turkey;Middle East;"TUBITAK";"1990, 1992-2026";"Plant Science (Q2)";"Agricultural and Biological Sciences" +15335;21100411349;"Zoosystematica Rossica";journal;"03209180, 24100226";"Russian Academy of Sciences, Zoological Institute";Yes;No;0,359;Q2;14;23;99;551;62;99;0,54;23,96;41,51;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences, Zoological Institute";"2014-2025";"Animal Science and Zoology (Q2); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +15336;21101114175;"Advanced Biomedical Research";journal;"22779175";"Wolters Kluwer Medknow Publications";Yes;No;0,359;Q3;19;179;452;6347;600;445;1,21;35,46;46,09;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology" +15337;145434;"Aviation";journal;"18224180, 16487788";"Vilnius Gediminas Technical University";Yes;Yes;0,359;Q3;22;27;81;847;167;80;2,22;31,37;28,21;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2004-2026";"Aerospace Engineering (Q3)";"Engineering" +15338;144880;"Chinese Journal of Endemiology";journal;"20954255";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,359;Q3;31;129;757;2603;574;751;0,46;20,18;48,55;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2005-2026";"Microbiology (medical) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +15339;29613;"Health and Social Work";journal;"15456854, 03607283";"National Association of Social Workers";No;No;0,359;Q3;66;51;114;1179;157;95;1,17;23,12;70,31;0;United States;Northern America;"National Association of Social Workers";"1976-2026";"Health (social science) (Q3); Social Work (Q4)";"Social Sciences" +15340;6100153106;"IET Signal Processing";journal;"17519675, 17519683";"John Wiley and Sons Ltd";Yes;No;0,359;Q3;55;33;214;1239;378;211;1,77;37,55;30,71;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2007-2026";"Electrical and Electronic Engineering (Q3); Signal Processing (Q3)";"Computer Science; Engineering" +15341;12100156481;"International Journal of Art Therapy: Inscape";journal;"17454832, 17454840";"Routledge";No;No;0,359;Q3;29;42;76;1989;129;58;1,35;47,36;78,13;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Clinical Psychology (Q3); Rehabilitation (Q3)";"Medicine; Psychology" +15342;21100928795;"JAMMI";journal;"23710888";"University of Toronto Press";Yes;No;0,359;Q3;11;41;124;969;144;103;1,28;23,63;54,87;1;Canada;Northern America;"University of Toronto Press";"2016-2025";"Infectious Diseases (Q3); Microbiology (medical) (Q3)";"Medicine" +15343;13932;"Journal of Foraminiferal Research";journal;"00961191";"Cushman Foundation";No;No;0,359;Q3;68;0;62;0;63;59;1,12;0,00;0,00;0;United States;Northern America;"Cushman Foundation";"1979-2024";"Paleontology (Q3); Microbiology (Q4)";"Earth and Planetary Sciences; Immunology and Microbiology" +15344;12261;"Journal of Pediatric Orthopaedics Part B";journal;"14735865, 1060152X";"Lippincott Williams and Wilkins";No;No;0,359;Q3;63;111;344;2415;348;312;0,86;21,76;27,00;0;United States;Northern America;"Lippincott Williams and Wilkins";"1989, 1992-2026";"Orthopedics and Sports Medicine (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +15345;21100329308;"Journal of Vacuum Science and Technology B";journal;"21662746, 21662754";"AVS Science and Technology Society";No;No;0,359;Q3;131;174;547;5705;829;543;1,55;32,79;23,65;0;United States;Northern America;"AVS Science and Technology Society";"1991-1992, 2009-2026";"Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Instrumentation (Q3); Materials Chemistry (Q3); Process Chemistry and Technology (Q3); Surfaces, Coatings and Films (Q3)";"Chemical Engineering; Engineering; Materials Science; Physics and Astronomy" +15346;24667;"Journal of Wood Chemistry and Technology";journal;"15322319, 02773813";"Taylor and Francis Ltd.";No;No;0,359;Q3;57;21;107;1303;213;106;1,80;62,05;28,21;0;United States;Northern America;"Taylor and Francis Ltd.";"1981-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Chemical Engineering; Chemistry; Materials Science" +15347;21101272733;"National Accounting Review";journal;"26893010";"American Institute of Mathematical Sciences";Yes;Yes;0,359;Q3;10;26;75;1518;113;74;1,08;58,38;29,82;0;United States;Northern America;"American Institute of Mathematical Sciences";"2021-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +15348;21100254353;"New Bioethics";journal;"20502877, 20502885";"Maney Publishing";No;No;0,359;Q3;19;8;71;470;93;59;1,35;58,75;0,00;0;United Kingdom;Western Europe;"Maney Publishing";"2012-2026";"Health Policy (Q3); Issues, Ethics and Legal Aspects (Q3); Reproductive Medicine (Q3); Genetics (clinical) (Q4)";"Medicine; Nursing" +15349;24991;"Review of Marketing Science";journal;"15465616";"Walter de Gruyter GmbH";No;No;0,359;Q3;15;26;35;2197;61;35;1,64;84,50;35,82;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2003-2017, 2019-2025";"Marketing (Q3)";"Business, Management and Accounting" +15350;12100155425;"South African Journal of Business Management";journal;"20785585, 20785976";"AOSIS (Pty) Ltd";Yes;No;0,359;Q3;27;45;118;3245;246;117;2,00;72,11;46,88;0;South Africa;Africa;"AOSIS (Pty) Ltd";"1985, 2008-2026";"Business and International Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +15351;21101157700;"Surgery in Practice and Science";journal;"26662620";"Elsevier Ltd";Yes;No;0,359;Q3;10;50;207;1443;255;204;1,25;28,86;30,79;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Otorhinolaryngology (Q3); Surgery (Q3); Urology (Q3)";"Medicine" +15352;13202;"Ultrastructural Pathology";journal;"15210758, 01913123";"Informa Healthcare";No;No;0,359;Q3;49;41;120;1965;170;120;1,34;47,93;52,51;0;United Kingdom;Western Europe;"Informa Healthcare";"1980-2026";"Pathology and Forensic Medicine (Q3); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15353;13628;"Yuhang Xuebao/Journal of Astronautics";journal;"10001328";"Chinese Society of Astronautics";No;No;0,359;Q3;39;226;536;7230;967;536;1,77;31,99;26,98;0;China;Asiatic Region;"Chinese Society of Astronautics";"1998, 2001-2026";"Aerospace Engineering (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Engineering" +15354;19700175117;"Egyptian Journal of Medical Human Genetics";journal;"20902441, 11108630";"";Yes;Yes;0,359;Q4;30;198;406;10396;613;400;1,47;52,51;46,96;0;Germany;Western Europe;"";"2010-2026";"Genetics (clinical) (Q4)";"Medicine" +15355;21100932443;"Journal of Immersion and Content-Based Language Education";journal;"22128433, 22128441";"John Benjamins Publishing Company";No;No;0,358;Q1;12;22;41;1286;78;37;0,78;58,45;60,71;1;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2025";"Linguistics and Language (Q1); Education (Q3)";"Social Sciences" +15356;19700169970;"Journal of Intercultural Communication Research";journal;"17475759, 17475767";"Routledge";No;No;0,358;Q1;33;38;78;2319;148;78;1,74;61,03;49,37;0;United Kingdom;Western Europe;"Routledge";"2006-2026";"Cultural Studies (Q1); Communication (Q2)";"Social Sciences" +15357;24827;"Journal of Philosophy of Education";journal;"14679752, 03098249";"Oxford University Press";No;No;0,358;Q1;53;67;220;2532;277;209;1,30;37,79;49,38;0;United Kingdom;Western Europe;"Oxford University Press";"1967-2025";"History (Q1); Philosophy (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +15358;16300154700;"Journal of the American Institute for Conservation";journal;"01971360, 19452330";"Taylor and Francis Ltd.";No;No;0,358;Q1;30;26;68;981;61;60;0,87;37,73;75,44;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-2026";"Conservation (Q1); Museology (Q1)";"Arts and Humanities" +15359;21100902936;"Unity and Dialogue";journal;"23858907, 23354127";"Faculty of Theology, University of Ljubljana";Yes;Yes;0,358;Q1;6;29;95;839;36;86;0,45;28,93;26,67;0;Slovenia;Eastern Europe;"Faculty of Theology, University of Ljubljana";"2018-2025";"Religious Studies (Q1)";"Arts and Humanities" +15360;26163;"Western Journal of Communication";journal;"10570314, 17451027";"Routledge";No;No;0,358;Q1;57;51;139;3041;156;137;1,18;59,63;54,55;0;United Kingdom;Western Europe;"Routledge";"1992-2026";"Linguistics and Language (Q1); Communication (Q2)";"Social Sciences" +15361;5700168058;"European Journal of Crime, Criminal Law and Criminal Justice";journal;"15718174, 09289569";"Martinus Nijhoff Publishers";No;No;0,358;Q2;23;18;47;1356;64;37;1,19;75,33;65,38;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"1993-2000, 2002-2026";"Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15362;7000153231;"IET Computer Vision";journal;"17519640, 17519632";"John Wiley & Sons Inc.";Yes;No;0,358;Q2;52;84;240;5119;454;235;1,81;60,94;36,56;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2007-2026";"Computer Vision and Pattern Recognition (Q2); Software (Q3)";"Computer Science" +15363;26858;"ITE Journal (Institute of Transportation Engineers)";journal;"01628178";"Institute of Transportation Engineers";No;No;0,358;Q2;32;1;81;0;47;27;0,06;0,00;0,00;0;United States;Northern America;"Institute of Transportation Engineers";"1978-2023, 2025";"Automotive Engineering (Q2); Mechanical Engineering (Q3)";"Engineering" +15364;23177;"Proceedings of the Indian Academy of Sciences: Mathematical Sciences";journal;"02534142, 09737685";"Indian Academy of Sciences";Yes;No;0,358;Q2;31;43;164;850;82;162;0,64;19,77;20,34;0;India;Asiatic Region;"Indian Academy of Sciences";"1978-2025";"Mathematics (miscellaneous) (Q2)";"Mathematics" +15365;21100896490;"ETS Research Report Series";journal;"23308516";"John Wiley & Sons Inc.";No;No;0,358;Q3;29;0;45;0;76;45;2,23;0,00;0,00;0;United States;Northern America;"John Wiley & Sons Inc.";"1996-2014, 2018-2025";"Applied Psychology (Q3); Education (Q3); Social Psychology (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Psychology; Social Sciences" +15366;21101278490;"Frontiers in Hematology";journal;"28133935";"Frontiers Media SA";Yes;No;0,358;Q3;6;50;110;2263;120;106;1,16;45,26;43,55;1;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Hematology (Q3); Oncology (Q3)";"Medicine" +15367;130012;"IETE Journal of Research";journal;"0974780X, 03772063";"Taylor and Francis Ltd.";No;No;0,358;Q3;44;429;1856;12348;4008;1814;2,16;28,78;29,97;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974-1975, 1979-1989, 1993-2026";"Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Theoretical Computer Science (Q3)";"Computer Science; Engineering; Mathematics" +15368;21100466874;"Infection, Disease and Health";journal;"24680451, 24680869";"Australasian College for Infection Prevention and Control";No;No;0,358;Q3;29;42;105;1166;129;87;1,40;27,76;58,72;0;Australia;Pacific Region;"Australasian College for Infection Prevention and Control";"2016-2026";"Infectious Diseases (Q3); Nursing (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing" +15369;21101121563;"Journal of Applied Mathematics and Computational Mechanics";journal;"23530588, 22999965";"Czestochowa University of Technology";Yes;No;0,358;Q3;14;20;106;483;158;105;1,68;24,15;25,58;0;Poland;Eastern Europe;"Czestochowa University of Technology";"2019-2025";"Analysis (Q3); Applied Mathematics (Q3); Computational Mathematics (Q3); Mechanical Engineering (Q3); Numerical Analysis (Q3)";"Engineering; Mathematics" +15370;16808;"Journal of Psychiatric Practice";journal;"15381145, 15274160";"Lippincott Williams and Wilkins Ltd.";No;No;0,358;Q3;67;71;215;1891;205;195;0,81;26,63;43,72;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1997-1999, 2003-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +15371;5300152234;"Journal of the Iranian Chemical Society";journal;"1735207X, 17352428";"Springer Verlag";No;No;0,358;Q3;63;155;820;8648;1927;820;2,40;55,79;39,90;0;Germany;Western Europe;"Springer Verlag";"2005-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +15372;21101360606;"Moroccan Journal of Algebra and Geometry with Applications";journal;"28207114";"Sidi Mohamed Ben Abdellah University";No;No;0,358;Q3;4;21;65;529;60;65;0,33;25,19;20,59;0;Morocco;Africa;"Sidi Mohamed Ben Abdellah University";"2022-2025";"Algebra and Number Theory (Q3)";"Mathematics" +15373;84340;"Nihon Reoroji Gakkaishi";journal;"03871533";"Society of Rheology";No;No;0,358;Q3;21;15;98;466;122;96;1,54;31,07;12,82;0;Japan;Asiatic Region;"Society of Rheology";"1973-2025";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +15374;99670;"Periodico di Mineralogia";journal;"22391002, 03698963";"Sapienza Universita Editrice";Yes;No;0,358;Q3;36;15;47;1230;65;47;1,45;82,00;32,65;0;Italy;Western Europe;"Sapienza Universita Editrice";"1979-1988, 1990-1991, 1994-1997, 1999-2025";"Geochemistry and Petrology (Q3); Geology (Q3); Geophysics (Q3)";"Earth and Planetary Sciences" +15375;21100981338;"Renal Replacement Therapy";journal;"20591381";"BioMed Central Ltd";Yes;Yes;0,358;Q3;25;102;202;2886;239;201;1,34;28,29;24,25;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2015-2026";"Nephrology (Q3); Transplantation (Q3); Urology (Q3)";"Medicine" +15376;27191;"Semiconductor Science and Technology";journal;"13616641, 02681242";"IOP Publishing Ltd.";No;No;0,358;Q3;134;160;661;7020;1354;661;2,12;43,88;30,08;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1986-2025";"Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Materials Chemistry (Q3)";"Engineering; Materials Science; Physics and Astronomy" +15377;21100206801;"Statistics and its Interface";journal;"19387989, 19387997";"International Press, Inc.";No;No;0,358;Q3;25;40;143;1303;89;138;0,41;32,58;40,00;0;United States;Northern America;"International Press, Inc.";"2010-2026";"Applied Mathematics (Q3); Statistics and Probability (Q3)";"Mathematics" +15378;21100977384;"Vascular Specialist International";journal;"22887989, 22887970";"Korean Society for Vascular Surgery";Yes;Yes;0,358;Q3;12;39;131;845;133;119;1,15;21,67;21,09;0;South Korea;Asiatic Region;"Korean Society for Vascular Surgery";"2019-2026";"Cardiology and Cardiovascular Medicine (Q3); Surgery (Q3)";"Medicine" +15379;20600195623;"IEEE Power and Energy Society General Meeting";conference and proceedings;"19449933, 19449925";"IEEE Computer Society";No;No;0,358;-;81;662;1678;9726;1659;1675;0,97;14,69;23,02;0;United States;Northern America;"IEEE Computer Society";"2011-2016, 2018-2025";"Electrical and Electronic Engineering; Energy Engineering and Power Technology; Nuclear Energy and Engineering; Renewable Energy, Sustainability and the Environment";"Energy; Engineering" +15380;20300195008;"Proceedings - International Symposium on Biomedical Imaging";conference and proceedings;"19457928, 19458452";"IEEE Computer Society";No;No;0,358;-;79;642;1636;10921;2483;1630;1,39;17,01;29,86;0;United States;Northern America;"IEEE Computer Society";"2002, 2011-2013, 2015-2025";"Biomedical Engineering; Radiology, Nuclear Medicine and Imaging";"Engineering; Medicine" +15381;16100154780;"Israel Exploration Journal";journal;"00212059";"Israel Exploration Society";No;No;0,357;Q1;23;7;41;312;17;41;0,31;44,57;30,77;0;Israel;Middle East;"Israel Exploration Society";"2002-2025";"Archeology (arts and humanities) (Q1); History (Q1); Archeology (Q2)";"Arts and Humanities; Social Sciences" +15382;5600155209;"Modern Italy";journal;"13532944, 14699877";"Cambridge University Press";No;No;0,357;Q1;24;48;78;2816;60;74;0,78;58,67;50,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1995, 1997-2000, 2002-2026";"Cultural Studies (Q1); History (Q1); Anthropology (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +15383;13499;"Asian Development Review";journal;"01161105, 19967241";"World Scientific";Yes;Yes;0,357;Q2;32;43;67;2063;112;64;1,61;47,98;37,35;0;Singapore;Asiatic Region;"World Scientific";"1983-2000, 2002-2025";"Geography, Planning and Development (Q2); Development (Q3); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +15384;96415;"Carsologica Sinica";journal;"10014810";"Institute of Karst Geology of Chinese Academy of Geology Sciences";Yes;No;0,357;Q2;14;108;329;3712;415;329;1,14;34,37;33,33;0;China;Asiatic Region;"Institute of Karst Geology of Chinese Academy of Geology Sciences";"1982, 1986, 2019-2025";"Nature and Landscape Conservation (Q2); Stratigraphy (Q2); Environmental Science (miscellaneous) (Q3); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science" +15385;145469;"Illness Crisis and Loss";journal;"15526968, 10541373";"SAGE Publications Inc.";No;No;0,357;Q2;22;64;131;2902;207;131;1,58;45,34;58,11;0;United States;Northern America;"SAGE Publications Inc.";"1991-1992, 2000-2001, 2005-2026";"Sociology and Political Science (Q2); Health (social science) (Q3)";"Social Sciences" +15386;145329;"International Journal of Discrimination and the Law";journal;"13582291, 20479468";"SAGE Publications Inc.";No;No;0,357;Q2;17;35;62;2206;104;39;1,11;63,03;57,89;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2000, 2005-2009, 2011-2026";"Law (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15387;21100443320;"Johnson Matthey Technology Review";journal;"20565135";"Johnson Matthey Public Limited Company";Yes;Yes;0,357;Q2;64;49;143;2452;229;128;1,40;50,04;27,48;0;United Kingdom;Western Europe;"Johnson Matthey Public Limited Company";"2014-2026";"Metals and Alloys (Q2); Electrochemistry (Q3); Process Chemistry and Technology (Q3)";"Chemical Engineering; Chemistry; Materials Science" +15388;19900191584;"Journal of Poverty and Social Justice";journal;"17598273, 17598281";"Policy Press";No;No;0,357;Q2;24;18;69;976;106;61;1,45;54,22;37,84;0;United Kingdom;Western Europe;"Policy Press";"2010-2025";"Public Administration (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15389;21057;"Nota Lepidopterologica";journal;"03427536, 23675365";"Pensoft Publishers";Yes;No;0,357;Q2;20;16;45;776;41;45;0,71;48,50;19,67;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"1995-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +15390;21101305305;"Radiation";journal;"2673592X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,357;Q2;13;39;73;1764;183;71;2,44;45,23;35,40;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Engineering (miscellaneous) (Q2); Radiation (Q2); Biophysics (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine; Physics and Astronomy" +15391;17600155322;"Revista Espanola de Sociologia";journal;"24450367, 15782824";"Federacion Espanola de Sociologia";Yes;No;0,357;Q2;17;30;158;1707;167;154;1,35;56,90;58,33;0;Spain;Western Europe;"Federacion Espanola de Sociologia";"2010-2026";"Sociology and Political Science (Q2)";"Social Sciences" +15392;19598;"Asia-Pacific Journal of Public Health";journal;"10105395, 19412479";"SAGE Publications Inc.";No;No;0,357;Q3;56;112;459;2692;402;350;0,81;24,04;51,64;0;United States;Northern America;"SAGE Publications Inc.";"1987-1992, 1994-1996, 1998-2026";"Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +15393;14952;"Clinical Pediatric Endocrinology";journal;"09185739, 13477358";"Jeff Corporation Co. Ltd";Yes;No;0,357;Q3;25;40;110;1005;125;103;1,05;25,13;37,62;0;Japan;Asiatic Region;"Jeff Corporation Co. Ltd";"1992-2026";"Endocrinology, Diabetes and Metabolism (Q3); Pediatrics, Perinatology and Child Health (Q3); Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15394;27458;"Contributions to Plasma Physics";journal;"15213986, 08631042";"John Wiley & Sons Inc.";No;No;0,357;Q3;54;85;252;3919;294;245;1,09;46,11;25,11;0;Germany;Western Europe;"John Wiley & Sons Inc.";"1972, 1988-2026";"Condensed Matter Physics (Q3)";"Physics and Astronomy" +15395;15033;"Deafness and Education International";journal;"14643154, 1557069X";"Maney Publishing";No;No;0,357;Q3;31;22;60;1100;87;47;1,28;50,00;71,74;0;United Kingdom;Western Europe;"Maney Publishing";"1999-2026";"Education (Q3); Speech and Hearing (Q3)";"Health Professions; Social Sciences" +15396;21100235634;"European Journal of Physiotherapy";journal;"21679177, 21679169";"Taylor and Francis Ltd.";No;No;0,357;Q3;19;88;146;3642;183;124;1,46;41,39;57,44;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions" +15397;21100863648;"Foundations and Trends in Systems and Control";journal;"23256826, 23256818";"Now Publishers Inc";No;No;0,357;Q3;22;2;5;987;15;5;3,00;493,50;20,00;0;United States;Northern America;"Now Publishers Inc";"2014-2025";"Control and Optimization (Q3); Control and Systems Engineering (Q3)";"Engineering; Mathematics" +15398;21100199342;"International Journal of Mathematical Modelling and Numerical Optimisation";journal;"20403607, 20403615";"Inderscience";No;No;0,357;Q3;17;21;53;694;86;53;1,53;33,05;35,42;0;Switzerland;Western Europe;"Inderscience";"2009-2026";"Applied Mathematics (Q3); Modeling and Simulation (Q3); Numerical Analysis (Q3)";"Mathematics" +15399;19700200886;"Journal of Algorithms and Computational Technology";journal;"17483018, 17483026";"SAGE Publications Inc.";Yes;No;0,357;Q3;24;13;42;468;128;42;2,00;36,00;20,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2009, 2011-2026";"Applied Mathematics (Q3); Computational Mathematics (Q3); Numerical Analysis (Q3)";"Mathematics" +15400;21100244214;"Journal of Control, Automation and Electrical Systems";journal;"21953880, 21953899";"Springer Science + Business Media";No;No;0,357;Q3;35;89;336;3201;654;335;2,11;35,97;14,07;0;United States;Northern America;"Springer Science + Business Media";"2013-2026";"Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)";"Computer Science; Energy; Engineering" +15401;19700201138;"Journal of Global Infectious Diseases";journal;"0974777X, 09748245";"Wolters Kluwer Medknow Publications";Yes;No;0,357;Q3;39;40;126;955;119;85;0,87;23,88;41,03;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2009, 2011-2025";"Infectious Diseases (Q3)";"Medicine" +15402;21101064940;"Journal of Laboratory and Precision Medicine";journal;"25199005";"AME Publishing Company";No;No;0,357;Q3;12;27;103;1618;139;78;1,55;59,93;53,09;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2019-2026";"Biochemistry (medical) (Q3); Clinical Biochemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15403;4500151530;"Personalized Medicine";journal;"17410541, 1744828X";"Taylor and Francis Ltd.";No;No;0,357;Q3;40;54;131;3206;192;126;1,23;59,37;49,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Medicine (miscellaneous) (Q3); Pharmacology (Q3); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +15404;19315;"Rivista di Psichiatria";journal;"00356484, 20382502";"Il Pensiero Scientifico Editore s.r.l.";No;No;0,357;Q3;30;31;115;1123;143;114;1,17;36,23;54,21;0;Italy;Western Europe;"Il Pensiero Scientifico Editore s.r.l.";"1975-1982, 1988-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +15405;20349;"Science and Sports";journal;"17784131, 07651597";"Elsevier Masson s.r.l.";No;No;0,357;Q3;35;86;327;3094;346;295;1,15;35,98;33,76;0;France;Western Europe;"Elsevier Masson s.r.l.";"1986-2026";"Orthopedics and Sports Medicine (Q3); Sports Science (Q4)";"Health Professions; Medicine" +15406;21100843325;"Supercomputing Frontiers and Innovations";journal;"23138734, 24096008";"South Ural State University, Publishing Center";Yes;Yes;0,357;Q3;21;24;82;645;84;82;1,04;26,88;31,71;0;Russian Federation;Eastern Europe;"South Ural State University, Publishing Center";"2014-2026";"Computational Theory and Mathematics (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Hardware and Architecture (Q3); Information Systems (Q3); Software (Q3)";"Computer Science" +15407;145297;"Proceedings - International Symposium on Wearable Computers, ISWC";conference and proceedings;"15504816";"Association for Computing Machinery";No;No;0,357;-;71;35;30;1192;98;29;0,00;34,06;26,92;0;United States;Northern America;"Association for Computing Machinery";"2002-2012, 2014, 2017-2022, 2025";"Computer Networks and Communications; Engineering (miscellaneous); Hardware and Architecture; Software";"Computer Science; Engineering" +15408;21101371413;"European Journal of Cultural Management and Policy";journal;"26635771";"Frontiers Media SA";Yes;No;0,356;Q1;5;20;37;1056;85;34;2,30;52,80;65,52;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Cultural Studies (Q1)";"Social Sciences" +15409;21100897202;"FWU Journal of Social Sciences";journal;"19951272";"Shaheed Benazir Bhutto Women University";No;No;0,356;Q1;11;48;126;2430;265;126;1,47;50,63;44,23;0;Pakistan;Asiatic Region;"Shaheed Benazir Bhutto Women University";"2018-2025";"History (Q1); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Education (Q3); Psychology (miscellaneous) (Q3)";"Arts and Humanities; Psychology; Social Sciences" +15410;86313;"International Journal of Nautical Archaeology";journal;"10959270, 10572414";"Taylor and Francis Ltd.";No;No;0,356;Q1;33;41;76;2391;58;65;0,73;58,32;27,78;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972-2026";"History (Q1); Archeology (Q2); Oceanography (Q3); Paleontology (Q3)";"Arts and Humanities; Earth and Planetary Sciences; Social Sciences" +15411;5800207532;"Keel ja Kirjandus";journal;"23466014, 01311441";"Foundation Kultuurileht";Yes;Yes;0,356;Q1;10;54;166;2546;75;148;0,42;47,15;64,58;0;Estonia;Eastern Europe;"Foundation Kultuurileht";"2013-2025";"Cultural Studies (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +15412;21100242832;"Practical Theology";journal;"1756073X, 17560748";"Taylor and Francis Ltd.";No;No;0,356;Q1;11;47;164;1538;90;127;0,51;32,72;40,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010, 2013-2026";"Philosophy (Q1)";"Arts and Humanities" +15413;12100155622;"Sophia";journal;"1873930X, 00381527";"Springer Netherlands";Yes;No;0,356;Q1;18;65;152;2405;82;145;0,48;37,00;29,58;0;Netherlands;Western Europe;"Springer Netherlands";"1962-2026";"Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities" +15414;21100779065;"Canadian Foreign Policy Journal";journal;"21570817, 11926422";"Taylor and Francis Ltd.";No;No;0,356;Q2;16;18;83;1226;79;63;0,95;68,11;48,28;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004, 2014-2026";"Political Science and International Relations (Q2)";"Social Sciences" +15415;4700152789;"Collection Management";journal;"01462679, 15452549";"Routledge";No;No;0,356;Q2;24;13;59;324;54;55;0,94;24,92;65,22;0;United States;Northern America;"Routledge";"1976, 1978-1979, 1981-1999, 2001-2025";"Library and Information Sciences (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +15416;21101284640;"Discover Global Society";journal;"27319687";"";Yes;No;0,356;Q2;8;179;129;11264;246;128;1,91;62,93;36,83;1;Netherlands;Western Europe;"";"2023-2026";"Anthropology (Q2); Gender Studies (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15417;23634;"Gender and Development";journal;"13552074, 13649221";"Routledge";No;No;0,356;Q2;58;33;133;1087;266;108;0,92;32,94;87,50;2;United Kingdom;Western Europe;"Routledge";"1993-2025";"Gender Studies (Q2); Geography, Planning and Development (Q2); Development (Q3)";"Social Sciences" +15418;32210;"International Journal of Engineering, Transactions A: Basics";journal;"17281431";"Materials and Energy Research Center";Yes;No;0,356;Q2;31;54;313;2604;790;313;2,84;48,22;25,52;0;Iran;Middle East;"Materials and Energy Research Center";"2004, 2006-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +15419;21100239234;"Journal of Railway Engineering Society";journal;"10062106";"Editorial Department of Journal of Railway Engineering Society";No;No;0,356;Q2;19;189;656;1574;521;656;0,71;8,33;28,05;0;China;Asiatic Region;"Editorial Department of Journal of Railway Engineering Society";"2013-2025";"Engineering (miscellaneous) (Q2)";"Engineering" +15420;21101055930;"Open Education Studies";journal;"25447831";"Walter de Gruyter GmbH";Yes;No;0,356;Q2;13;50;126;3102;235;126;1,89;62,04;45,39;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2019-2026";"Social Sciences (miscellaneous) (Q2); Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +15421;11700154374;"Biota Neotropica";journal;"16760603, 16786424";"Universidade Estadual de Campinas UNICAMP";Yes;No;0,356;Q3;46;42;189;2907;260;187;1,08;69,21;34,03;0;Brazil;Latin America;"Universidade Estadual de Campinas UNICAMP";"2007-2025";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15422;21100239249;"Bridge Construction";journal;"10034722";"Wuhan Bridge Media Co., Ltd., MBEC";No;No;0,356;Q3;24;124;406;2186;604;406;1,57;17,63;22,72;0;China;Asiatic Region;"Wuhan Bridge Media Co., Ltd., MBEC";"2013-2025";"Building and Construction (Q3)";"Engineering" +15423;26343;"Geologica Acta";journal;"16965728, 16956133";"Geologica Acta";Yes;Yes;0,356;Q3;56;25;43;2298;60;42;1,56;91,92;25,89;0;Spain;Western Europe;"Geologica Acta";"2003-2025";"Geology (Q3)";"Earth and Planetary Sciences" +15424;22336;"Harvard Business Review";journal;"00178012";"Harvard Business School Publishing";No;No;0,356;Q3;221;46;294;0;359;177;1,22;0,00;15,09;0;United States;Northern America;"Harvard Business School Publishing";"1974, 1978-1987, 1989-2025";"Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Management of Technology and Innovation (Q3); Medicine (miscellaneous) (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Medicine" +15425;21100197358;"Psyecology";journal;"19899386, 21711976";"SAGE Publications Inc.";No;No;0,356;Q3;19;10;40;243;47;40;1,42;24,30;62,50;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2010-2025";"Applied Psychology (Q3); Environmental Science (miscellaneous) (Q3); Experimental and Cognitive Psychology (Q4)";"Environmental Science; Psychology" +15426;19700188308;"Research in Human Development";journal;"15427617, 15427609";"Routledge";No;No;0,356;Q3;39;24;41;1085;55;39;1,29;45,21;69,39;0;United States;Northern America;"Routledge";"2004-2005, 2008-2025";"Developmental and Educational Psychology (Q3); Social Psychology (Q3)";"Psychology" +15427;83472;"Romanian Journal of Morphology and Embryology";journal;"20668279, 12200522";"Publishing House of the Romanian Academy";Yes;No;0,356;Q3;44;78;216;3530;313;213;1,22;45,26;54,17;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"1991-1999, 2005-2025";"Embryology (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Cell Biology (Q4); Developmental Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15428;20539;"Urologia Journal";journal;"17246075, 03915603";"Sage Publications";No;No;0,356;Q3;21;117;265;3051;301;256;1,12;26,08;22,38;0;United States;Northern America;"Sage Publications";"1947-1949, 1960-1962, 1973-1988, 2010-2026";"Urology (Q3)";"Medicine" +15429;21101138521;"Journal of Education Culture and Society";journal;"20811640";"Pro Scientia Publica Foundation";Yes;No;0,355;Q1;17;110;240;4462;388;238;1,94;40,56;54,66;0;Poland;Eastern Europe;"Pro Scientia Publica Foundation";"2019-2025";"History (Q1); History and Philosophy of Science (Q1); Sociology and Political Science (Q2); Education (Q3); Psychology (miscellaneous) (Q3)";"Arts and Humanities; Psychology; Social Sciences" +15430;21101122746;"Journal of Labor and Society";journal;"24714607";"Brill Academic Publishers";No;No;0,355;Q1;16;28;74;1857;67;71;0,67;66,32;12,20;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2026";"Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Economics and Econometrics (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +15431;18748;"Acta Amazonica";journal;"00445967";"Instituto Nacional de Pesquisas da Amazonia";Yes;Yes;0,355;Q2;41;66;139;3114;195;139;1,43;47,18;37,99;0;Brazil;Latin America;"Instituto Nacional de Pesquisas da Amazonia";"1979, 2006-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +15432;21101017691;"Annals of Emerging Technologies in Computing";journal;"2516029X, 25160281";"International Association for Educators and Researchers (IAER)";No;No;0,355;Q2;20;35;83;1170;189;69;2,10;33,43;41,89;0;United Kingdom;Western Europe;"International Association for Educators and Researchers (IAER)";"2017-2026";"Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +15433;21101162636;"Arts and the Market";journal;"20564953, 20564945";"Emerald Publishing";No;No;0,355;Q2;12;10;37;527;69;34;1,83;52,70;41,67;0;United Kingdom;Western Europe;"Emerald Publishing";"2015-2025";"Arts and Humanities (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3)";"Arts and Humanities; Business, Management and Accounting" +15434;19700187617;"Atlantic Journal of Communication";journal;"15456889, 15456870";"Taylor and Francis Ltd.";No;No;0,355;Q2;26;79;116;5554;190;116;1,57;70,30;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Communication (Q2)";"Social Sciences" +15435;27140;"Australian Journal of Advanced Nursing";journal;"14474328, 08130531";"Australian Nursing Federation";No;No;0,355;Q2;45;24;72;954;94;60;1,44;39,75;81,33;0;Australia;Pacific Region;"Australian Nursing Federation";"1983-2025";"Advanced and Specialized Nursing (Q2); Nursing (miscellaneous) (Q3)";"Nursing" +15436;145680;"Business Information Review";journal;"17416450, 02663821";"SAGE Publications Ltd";No;No;0,355;Q2;28;28;73;1063;153;58;2,32;37,96;29,41;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1984-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15437;22249;"Forests Trees and Livelihoods";journal;"14728028";"Taylor and Francis Ltd.";No;No;0,355;Q2;36;24;55;1010;104;52;1,84;42,08;38,81;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1999-2026";"Forestry (Q2)";"Agricultural and Biological Sciences" +15438;19700188202;"International Journal of Digital Accounting Research";journal;"15778517, 23405058";"Universidad de Huelva";No;No;0,355;Q2;20;4;18;234;62;18;3,27;58,50;42,86;0;Spain;Western Europe;"Universidad de Huelva";"2010-2025";"Information Systems and Management (Q2); Accounting (Q3); Finance (Q3)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +15439;21100780798;"International Journal of Engineering, Transactions B: Applications";journal;"1728144X";"Materials and Energy Research Center";Yes;No;0,355;Q2;30;169;321;7001;749;321;2,67;41,43;20,97;0;Iran;Middle East;"Materials and Energy Research Center";"2004-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +15440;21101107981;"Mycosystema";journal;"16726472";"Science Press";No;No;0,355;Q2;18;152;511;7410;766;511;1,74;48,75;49,15;0;China;Asiatic Region;"Science Press";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15441;17700156420;"Notulae Botanicae Horti Agrobotanici Cluj-Napoca";journal;"0255965X, 18424309";"";Yes;No;0,355;Q2;54;151;537;8815;1074;536;2,00;58,38;42,91;0;Romania;Eastern Europe;"";"2007, 2009-2025";"Agronomy and Crop Science (Q2); Horticulture (Q2); Plant Science (Q3)";"Agricultural and Biological Sciences" +15442;19700181204;"OPSEARCH";journal;"00303887, 09750320";"Springer India";No;No;0,355;Q2;37;269;271;12687;696;271;2,70;47,16;30,87;0;India;Asiatic Region;"Springer India";"1998-1999, 2009-2026";"Management Information Systems (Q2); Computer Science Applications (Q3); Information Systems (Q3); Management Science and Operations Research (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +15443;19900191409;"Partner Abuse";journal;"19466560, 19466579";"Springer Publishing Company";No;No;0,355;Q2;16;30;77;2039;96;77;1,06;67,97;68,60;0;United States;Northern America;"Springer Publishing Company";"2011, 2017-2026";"Gender Studies (Q2); Law (Q2); Clinical Psychology (Q3); Health (social science) (Q3); Pediatrics, Perinatology and Child Health (Q3); Social Psychology (Q3)";"Medicine; Psychology; Social Sciences" +15444;21100247800;"Phycological Research";journal;"13220829, 14401835";"John Wiley and Sons Inc";No;No;0,355;Q2;55;34;67;1603;106;67;1,70;47,15;32,92;0;United States;Northern America;"John Wiley and Sons Inc";"1995, 1997-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +15445;12528;"African Journal of Ecology";journal;"13652028, 01416707";"Wiley-Blackwell Publishing Ltd";No;No;0,355;Q3;67;134;411;7519;523;394;1,34;56,11;27,37;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1963-2026";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15446;19700175226;"African Journal of Infectious Diseases";journal;"20060165, 25050419";"African Traditional, Herbal Medicine Supporters Initiative";Yes;No;0,355;Q3;20;29;51;1030;87;50;1,67;35,52;53,19;0;Nigeria;Africa;"African Traditional, Herbal Medicine Supporters Initiative";"2010-2025";"Infectious Diseases (Q3)";"Medicine" +15447;19900193225;"AKCE International Journal of Graphs and Combinatorics";journal;"09728600";"Taylor and Francis Ltd.";Yes;No;0,355;Q3;24;54;137;1091;151;135;1,27;20,20;27,36;0;India;Asiatic Region;"Taylor and Francis Ltd.";"2011-2026";"Discrete Mathematics and Combinatorics (Q3)";"Mathematics" +15448;21101330186;"Cardiothoracic Surgeon";journal;"26622203";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,355;Q3;8;37;79;1007;86;73;1,26;27,22;25,30;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2019-2026";"Cardiology and Cardiovascular Medicine (Q3); Surgery (Q3)";"Medicine" +15449;19369;"Human Systems Management";journal;"01672533";"SAGE Publications Ltd";No;No;0,355;Q3;38;99;165;6703;333;159;2,06;67,71;38,36;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1980-2026";"Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting" +15450;19500157114;"International Journal of Odonatology";journal;"13887890, 21596719";"Wachholtz Verlag GmbH";Yes;Yes;0,355;Q3;29;4;57;141;50;57;0,82;35,25;33,33;0;Germany;Western Europe;"Wachholtz Verlag GmbH";"1998-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +15451;78605;"Journal of Bioactive and Compatible Polymers";journal;"15308030, 08839115";"SAGE Publications Ltd";No;No;0,355;Q3;59;26;99;1468;222;98;1,82;56,46;42,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986-2026";"Biomaterials (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3); Bioengineering (Q4)";"Chemical Engineering; Materials Science" +15452;21427;"Journal of Zhejiang University (Medical Sciences)";journal;"10089292";"Zhejiang University";Yes;No;0,355;Q3;18;90;222;4036;331;222;1,36;44,84;44,16;0;China;Asiatic Region;"Zhejiang University";"2003-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +15453;29020;"Manchester School";journal;"14636786, 14679957";"Wiley-Blackwell Publishing Ltd";No;No;0,355;Q3;49;39;93;1527;119;93;1,14;39,15;20,83;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1930-1941, 1943-1944, 1946-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +15454;21100440523;"Interaction Design and Architecture(s)";journal;"18269745, 22832998";"ASLERD";Yes;Yes;0,354;Q1;22;10;123;705;157;122;1,05;70,50;52,38;0;Italy;Western Europe;"ASLERD";"2007, 2011-2026";"Architecture (Q1); Media Technology (Q2); Multidisciplinary (Q2); Social Sciences (miscellaneous) (Q2); Computer Science Applications (Q3); Education (Q3); Human-Computer Interaction (Q3); Pharmacology (Q3)";"Computer Science; Engineering; Multidisciplinary; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +15455;21101154265;"African Human Mobility Review";journal;"24107972, 24116955";"University of the Western Cape";Yes;Yes;0,354;Q2;7;18;56;774;64;49;0,90;43,00;31,25;1;South Africa;Africa;"University of the Western Cape";"2019-2025";"Law (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Development (Q3)";"Social Sciences" +15456;21101021574;"Aquaculture Studies";journal;"26513668, 26186381";"Central Fisheries Research Institute";No;No;0,354;Q2;12;30;80;1564;164;80;1,61;52,13;37,86;0;Turkey;Middle East;"Central Fisheries Research Institute";"2018-2026";"Animal Science and Zoology (Q2); Aquatic Science (Q3)";"Agricultural and Biological Sciences" +15457;19300157027;"Bulletin of Glaciological Research";journal;"13453807";"Japanese Society of Snow and Ice";No;No;0,354;Q2;13;3;13;143;15;13;0,58;47,67;14,29;0;Japan;Asiatic Region;"Japanese Society of Snow and Ice";"2009-2025";"Earth-Surface Processes (Q2)";"Earth and Planetary Sciences" +15458;21101300209;"Frontiers in Fish Science";journal;"28139097";"Frontiers Media SA";Yes;No;0,354;Q2;3;14;20;1097;27;20;1,35;78,36;44,26;0;Switzerland;Western Europe;"Frontiers Media SA";"2024-2026";"Animal Science and Zoology (Q2); Ecology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15459;21101086731;"Global Perspectives";journal;"25757350";"University of California Press";No;No;0,354;Q2;15;21;137;1160;171;134;1,09;55,24;40,74;0;United States;Northern America;"University of California Press";"2020-2026";"Communication (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15460;21101230594;"Human-Animal Interactions";journal;"29579538";"CABI International";Yes;No;0,354;Q2;7;57;114;2913;224;100;1,99;51,11;76,54;0;United Kingdom;Western Europe;"CABI International";"2022-2025";"Social Sciences (miscellaneous) (Q2); Veterinary (miscellaneous) (Q2); Applied Psychology (Q3); Psychology (miscellaneous) (Q3)";"Psychology; Social Sciences; Veterinary" +15461;21101183613;"International Journal of Maps in Mathematics";journal;"26367467";"";No;No;0,354;Q2;5;21;42;516;36;42;0,81;24,57;21,95;0;Turkey;Middle East;"";"2019-2025";"Geography, Planning and Development (Q2); Applied Mathematics (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Geometry and Topology (Q3)";"Earth and Planetary Sciences; Mathematics; Social Sciences" +15462;4700152783;"Journal of Couple and Relationship Therapy";journal;"15332683, 15332691";"Routledge";No;No;0,354;Q2;31;21;58;1062;84;57;1,31;50,57;58,90;0;United States;Northern America;"Routledge";"2002-2026";"Gender Studies (Q2); Social Sciences (miscellaneous) (Q2); Applied Psychology (Q3); Social Psychology (Q3)";"Psychology; Social Sciences" +15463;21100258622;"Journal of Economic Integration";journal;"19765525, 1225651X";"Sejong University";No;No;0,354;Q2;23;30;89;1405;154;89;1,48;46,83;36,54;0;South Korea;Asiatic Region;"Sejong University";"2013-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +15464;21101305306;"Pharmacoepidemiology";journal;"28130618";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,354;Q2;6;28;68;1583;103;67;1,66;56,54;47,46;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Pharmacology (medical) (Q3); Public Health, Environmental and Occupational Health (Q3); Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +15465;23986;"Studies on Neotropical Fauna and Environment";journal;"17445140, 01650521";"Taylor and Francis Ltd.";No;No;0,354;Q2;40;87;200;5385;210;200;1,11;61,90;33,81;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15466;18300156712;"Advances in Condensed Matter Physics";journal;"16878108, 16878124";"John Wiley and Sons Ltd";Yes;No;0,354;Q3;36;22;69;978;194;69;3,32;44,45;25,93;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Condensed Matter Physics (Q3)";"Physics and Astronomy" +15467;21101021719;"Arid Zone Research";journal;"10014675";"Science Press";No;No;0,354;Q3;20;68;572;2617;888;572;1,59;38,49;43,85;0;China;Asiatic Region;"Science Press";"2019-2026";"Atmospheric Science (Q3); Ecology (Q3); Environmental Science (miscellaneous) (Q3); Geology (Q3); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science" +15468;21101039234;"British and Irish Orthoptic Journal";journal;"25163590, 17439868";"White Rose University Press";Yes;Yes;0,354;Q3;11;16;55;454;76;52;1,35;28,38;58,54;0;United Kingdom;Western Europe;"White Rose University Press";"2019-2025";"Ophthalmology (Q3); Optometry (Q3)";"Health Professions; Medicine" +15469;19700171105;"Differential Equations and Dynamical Systems";journal;"09713514, 09746870";"Springer International Publishing AG";No;No;0,354;Q3;28;99;195;3280;233;195;1,24;33,13;21,70;0;India;Asiatic Region;"Springer International Publishing AG";"2008-2026";"Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +15470;21101278636;"Discover public health";journal;"30050774";"BioMed Central Ltd";Yes;No;0,354;Q3;47;902;264;42375;380;253;1,39;46,98;46,90;5;United Kingdom;Western Europe;"BioMed Central Ltd";"2024-2026";"Epidemiology (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +15471;23150;"IMA Journal of Mathematical Control and Information";journal;"02650754, 14716887";"Oxford University Press";No;No;0,354;Q3;45;46;123;1726;157;123;1,10;37,52;29,66;0;United Kingdom;Western Europe;"Oxford University Press";"1984-2026";"Applied Mathematics (Q3); Control and Optimization (Q3); Control and Systems Engineering (Q3)";"Engineering; Mathematics" +15472;21100831012;"JMV-Journal de Medecine Vasculaire";journal;"25424513";"Elsevier Masson s.r.l.";No;No;0,354;Q3;13;0;103;0;104;57;1,18;0,00;0,00;0;France;Western Europe;"Elsevier Masson s.r.l.";"2017-2024";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +15473;21100218515;"Journal of Gambling Issues";journal;"19107595";"";Yes;No;0,354;Q3;21;16;45;838;65;41;1,68;52,38;34,15;0;Canada;Northern America;"";"2006, 2009, 2012-2025";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +15474;21101092895;"Journal of Physical Therapy Education";journal;"08991855, 19383533";"Lippincott Williams and Wilkins";No;No;0,354;Q3;14;79;149;3144;198;131;1,11;39,80;69,29;0;United Kingdom;Western Europe;"Lippincott Williams and Wilkins";"1991, 1993, 1997, 2004-2005, 2007-2009, 2012, 2015-2026";"Health Policy (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)";"Health Professions; Medicine" +15475;24060;"Journal of Radioanalytical and Nuclear Chemistry";journal;"15882780, 02365731";"Springer Nature";No;No;0,354;Q3;81;888;1632;35548;2947;1612;1,87;40,03;33,67;1;Switzerland;Western Europe;"Springer Nature";"1977-1979, 1981, 1984-2026";"Analytical Chemistry (Q3); Health, Toxicology and Mutagenesis (Q3); Nuclear Energy and Engineering (Q3); Pollution (Q3); Public Health, Environmental and Occupational Health (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Spectroscopy (Q3)";"Chemistry; Energy; Environmental Science; Medicine" +15476;21100201965;"Journal of Statistical Theory and Practice";journal;"15598616, 15598608";"Springer Nature";No;No;0,354;Q3;28;96;183;3207;204;182;1,04;33,41;38,07;0;Switzerland;Western Europe;"Springer Nature";"2007-2026";"Statistics and Probability (Q3)";"Mathematics" +15477;21100827425;"Nordic Journal of Working Life Studies";journal;"22450157";"Roskilde University";Yes;No;0,354;Q3;29;20;81;947;88;73;0,74;47,35;61,76;1;Denmark;Western Europe;"Roskilde University";"2011-2025";"Industrial Relations (Q3); Life-span and Life-course Studies (Q3); Organizational Behavior and Human Resource Management (Q3); Public Health, Environmental and Occupational Health (Q3)";"Business, Management and Accounting; Medicine; Social Sciences" +15478;20405;"Proceedings of the Institution of Mechanical Engineers, Part A: Journal of Power and Energy";journal;"20412967, 09576509";"SAGE Publications Ltd";No;No;0,354;Q3;76;112;329;4332;641;329;1,92;38,68;24,40;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1983-2026";"Energy Engineering and Power Technology (Q3); Mechanical Engineering (Q3)";"Energy; Engineering" +15479;14821;"Social Behavior and Personality";journal;"11796391, 03012212";"Scientific Journal Publishers";No;No;0,354;Q3;81;208;512;8010;728;510;1,40;38,51;48,01;0;New Zealand;Pacific Region;"Scientific Journal Publishers";"1982, 1992, 1996-2026";"Social Psychology (Q3)";"Psychology" +15480;19400158517;"Statistics in Biosciences";journal;"18671764, 18671772";"Springer";No;No;0,354;Q3;23;65;117;2488;93;112;0,58;38,28;40,54;1;United States;Northern America;"Springer";"2009-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Statistics and Probability (Q3)";"Biochemistry, Genetics and Molecular Biology; Mathematics" +15481;21100283373;"IEEE Conference on Computatonal Intelligence and Games, CIG";conference and proceedings;"23254289, 23254270";"IEEE Computer Society";No;No;0,354;-;37;139;374;3239;580;369;1,39;23,30;25,56;0;United States;Northern America;"IEEE Computer Society";"2013-2014, 2016-2025";"Artificial Intelligence; Computer Graphics and Computer-Aided Design; Computer Vision and Pattern Recognition; Human-Computer Interaction; Software";"Computer Science" +15482;21100223164;"International Journal of Conservation Science";journal;"20678223, 2067533X";"Romanian Inventors Forum";Yes;No;0,353;Q1;28;130;363;4488;476;362;1,38;34,52;44,29;0;Romania;Eastern Europe;"Romanian Inventors Forum";"2010-2025";"Conservation (Q1); Nature and Landscape Conservation (Q3)";"Arts and Humanities; Environmental Science" +15483;19700170425;"Journal of Military Ethics";journal;"15027570, 15027589";"Routledge";No;No;0,353;Q1;28;27;71;877;83;59;0,92;32,48;28,00;0;United Kingdom;Western Europe;"Routledge";"2002-2026";"Philosophy (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +15484;17700156741;"International Journal of Play Therapy";journal;"15556824, 19390629";"American Psychological Association";No;No;0,353;Q2;35;18;53;741;53;51;0,88;41,17;82,00;0;United States;Northern America;"American Psychological Association";"1992-2025";"Complementary and Manual Therapy (Q2); Clinical Psychology (Q3)";"Health Professions; Psychology" +15485;22874;"Journal of Forest Science";journal;"1805935X, 12124834";"Czech Academy of Agricultural Sciences";Yes;No;0,353;Q2;39;49;140;2476;201;140;1,43;50,53;26,70;0;Czech Republic;Eastern Europe;"Czech Academy of Agricultural Sciences";"1982-1989, 1999-2026";"Forestry (Q2); Soil Science (Q3)";"Agricultural and Biological Sciences" +15486;21101097254;"Lex Scientia Law Review";journal;"25989685, 25989677";"Universitas Negeri Semarang";Yes;No;0,353;Q2;12;29;81;1752;154;79;1,92;60,41;39,29;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2017-2025";"Law (Q2); Political Science and International Relations (Q2); Public Administration (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15487;21100908514;"Papers in Applied Geography";journal;"2375494X, 23754931";"Routledge";No;No;0,353;Q2;20;44;79;2269;138;79;2,20;51,57;33,04;1;United States;Northern America;"Routledge";"2015-2026";"Geography, Planning and Development (Q2); Urban Studies (Q2); Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences; Social Sciences" +15488;20408;"Proceedings of the Institution of Mechanical Engineers, Part E: Journal of Process Mechanical Engineering";journal;"20413009, 09544089";"SAGE Publications Inc.";No;No;0,353;Q2;46;586;1076;24976;2752;1073;2,44;42,62;16,01;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1989-2026";"Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q3)";"Engineering" +15489;21101262281;"SN Social Sciences";journal;"26629283";"Springer Nature";No;No;0,353;Q2;22;236;705;14693;1175;705;1,52;62,26;35,12;0;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +15490;12524;"African Journal of Aquatic Science";journal;"17279364, 16085914";"National Inquiry Services Centre Ltd";No;No;0,353;Q3;41;28;113;1532;134;106;1,03;54,71;34,72;0;South Africa;Africa;"National Inquiry Services Centre Ltd";"2000-2026";"Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15491;4000150503;"American Journal of Health Education";journal;"21683751, 19325037";"Taylor and Francis Ltd.";No;No;0,353;Q3;41;50;130;2493;140;118;1,23;49,86;65,08;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +15492;19700188334;"Clinical and Experimental Neuroimmunology";journal;"17591961";"John Wiley and Sons Inc";No;No;0,353;Q3;25;46;118;2135;105;97;1,27;46,41;29,55;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2010-2026";"Immunology and Microbiology (miscellaneous) (Q3); Neurology (clinical) (Q3); Immunology (Q4); Neuroscience (miscellaneous) (Q4)";"Immunology and Microbiology; Medicine; Neuroscience" +15493;130047;"Current Drug Discovery Technologies";journal;"15701638, 18756220";"Bentham Science Publishers";No;No;0,353;Q3;55;64;133;4994;263;130;2,04;78,03;43,14;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2004-2026";"Drug Discovery (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +15494;4700152625;"Frontiers of Economics in China";journal;"16733444, 16733568";"Higher Education Press Limited Company";No;No;0,353;Q3;19;16;64;453;108;61;0,67;28,31;30,00;0;China;Asiatic Region;"Higher Education Press Limited Company";"2006-2025";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +15495;21100416079;"Handbook of Environmental Chemistry";book series;"1616864X, 1867979X";"Springer Science and Business Media Deutschland GmbH";No;No;0,353;Q3;45;86;447;7658;483;2;0,85;89,05;0,00;2;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1980, 1982, 1984-1986, 1988-1992, 1995, 1998, 2003-2004, 2010-2025";"Environmental Chemistry (Q3); Pollution (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3); Global and Planetary Change (Q4)";"Environmental Science" +15496;12000154349;"International Journal of Information and Communication Technology Education";journal;"15501337, 15501876";"IGI Publishing";No;No;0,353;Q3;29;18;103;712;240;103;2,57;39,56;42,22;0;United States;Northern America;"IGI Publishing";"2005-2026";"Computer Science Applications (Q3); Education (Q3); E-learning (Q3)";"Computer Science; Social Sciences" +15497;21100909458;"Iraqi Geological Journal";journal;"24146064";"Union of Iraqi Geologists";Yes;No;0,353;Q3;19;203;686;6852;955;686;1,30;33,75;27,07;0;Iraq;Middle East;"Union of Iraqi Geologists";"2016-2026";"Geology (Q3)";"Earth and Planetary Sciences" +15498;13666;"Journal of Elastomers and Plastics";journal;"00952443, 15308006";"SAGE Publications Ltd";No;No;0,353;Q3;40;71;183;2905;442;183;2,44;40,92;28,64;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1969-2026";"Materials Chemistry (Q3); Polymers and Plastics (Q3)";"Materials Science" +15499;23060;"Journal of Pain and Palliative Care Pharmacotherapy";journal;"15360539, 15360288";"Taylor & Francis Group LLC Philadelphia";No;No;0,353;Q3;49;99;155;2821;168;114;1,10;28,49;48,37;1;United States;Northern America;"Taylor & Francis Group LLC Philadelphia";"2002-2026";"Anesthesiology and Pain Medicine (Q3); Pharmacology (medical) (Q3)";"Medicine" +15500;17656;"Journal of the American Academy of Psychiatry and the Law";journal;"19433662, 10936793";"American Academy of Psychiatry and the Law";No;No;0,353;Q3;70;90;310;1716;209;155;0,73;19,07;51,22;0;United States;Northern America;"American Academy of Psychiatry and the Law";"1997-2025";"Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +15501;19943;"Nova Hedwigia";journal;"00295035, 23637188";"Schweizerbart Science Publishers";No;No;0,353;Q3;49;47;155;2102;168;152;1,01;44,72;42,19;0;Germany;Western Europe;"Schweizerbart Science Publishers";"1993-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +15502;15758;"Pediatrics in Review";journal;"01919601, 15263347";"American Academy of Pediatrics";No;No;0,353;Q3;66;128;416;827;444;373;1,11;6,46;68,38;0;United States;Northern America;"American Academy of Pediatrics";"1979, 1982-1984, 1986-2026";"Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +15503;19700175212;"Revista Espanola de Financiacion y Contabilidad";journal;"02102412, 23320753";"Taylor and Francis Ltd.";No;No;0,353;Q3;27;24;62;1786;133;62;2,07;74,42;43,64;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Accounting (Q3); Economics and Econometrics (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15504;21101052930;"Acta Acustica";journal;"10224793, 26814617";"European Acoustics Association, EAA";Yes;No;0,352;Q1;80;82;205;3720;320;203;1,34;45,37;20,13;0;France;Western Europe;"European Acoustics Association, EAA";"2020-2026";"Music (Q1); Acoustics and Ultrasonics (Q2); Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Speech and Hearing (Q3)";"Arts and Humanities; Computer Science; Engineering; Health Professions; Physics and Astronomy" +15505;6700153290;"Contemporary Islam";journal;"18720218, 18720226";"Springer Netherlands";No;No;0,352;Q1;29;36;75;2294;103;75;1,04;63,72;36,54;0;Netherlands;Western Europe;"Springer Netherlands";"2007-2026";"Cultural Studies (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +15506;5000157103;"Continental Philosophy Review";journal;"13872842, 15730611";"Springer Science and Business Media B.V.";No;No;0,352;Q1;34;40;94;1131;96;93;0,76;28,28;34,29;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1973, 1989, 1996-2002, 2005-2026";"Philosophy (Q1)";"Arts and Humanities" +15507;21100255421;"Pragmatics and Society";journal;"18789722, 18789714";"John Benjamins Publishing Company";No;No;0,352;Q1;21;53;119;2392;113;118;1,04;45,13;52,27;1;Netherlands;Western Europe;"John Benjamins Publishing Company";"2010-2026";"Linguistics and Language (Q1)";"Social Sciences" +15508;21101040697;"Russian Language Studies";journal;"26188171, 26188163";"RUDN University";Yes;Yes;0,352;Q1;9;39;104;1278;49;103;0,56;32,77;73,08;0;Russian Federation;Eastern Europe;"RUDN University";"2018-2025";"Linguistics and Language (Q1); Education (Q3)";"Social Sciences" +15509;21101133344;"AJO-DO Clinical Companion";journal;"26664305";"Elsevier Inc.";No;No;0,352;Q2;8;62;181;1323;155;140;0,67;21,34;41,62;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Assessment and Diagnosis (Q2); Oral Surgery (Q2); Orthodontics (Q2)";"Dentistry; Nursing" +15510;21101270780;"Asian Journal of Ethnobiology";journal;"25804510";"Smujo International";No;No;0,352;Q2;9;30;45;1609;121;45;2,26;53,63;47,76;0;Indonesia;Asiatic Region;"Smujo International";"2021-2025";"Animal Science and Zoology (Q2); Anthropology (Q2); Plant Science (Q3)";"Agricultural and Biological Sciences; Social Sciences" +15511;24685;"Australian Zoologist";journal;"00672238";"Royal Zoological Society of New South Wales";No;No;0,352;Q2;37;20;126;1049;122;119;0,78;52,45;33,33;0;Australia;Pacific Region;"Royal Zoological Society of New South Wales";"1982-1990, 1992-2025";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +15512;25840;"Czechoslovak Mathematical Journal";journal;"00114642, 15729141";"Springer New York";No;No;0,352;Q2;36;81;241;1656;141;241;0,47;20,44;24,38;0;United States;Northern America;"Springer New York";"1995-2026";"Mathematics (miscellaneous) (Q2)";"Mathematics" +15513;21217;"Homeopathy";journal;"14754916, 14764245";"Georg Thieme Verlag";No;No;0,352;Q2;45;31;130;666;130;108;0,90;21,48;47,86;0;Germany;Western Europe;"Georg Thieme Verlag";"1998-2026";"Complementary and Alternative Medicine (Q2)";"Medicine" +15514;25547;"Interacting with Computers";journal;"18737951, 09535438";"Oxford University Press";No;No;0,352;Q2;100;37;100;2662;211;96;2,00;71,95;38,39;0;United Kingdom;Western Europe;"Oxford University Press";"1989-2026";"Library and Information Sciences (Q2); Human-Computer Interaction (Q3); Software (Q3)";"Computer Science; Social Sciences" +15515;21101262912;"International Journal of Aquatic Research and Environmental Studies";journal;"29807840";"";No;No;0,352;Q2;11;163;72;3473;440;72;6,72;21,31;44,69;0;Iran;Middle East;"";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15516;21100207610;"Journal of Development Effectiveness";journal;"19439407, 19439342";"Taylor and Francis Ltd.";No;No;0,352;Q2;36;28;78;1242;100;73;1,23;44,36;36,25;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Geography, Planning and Development (Q2); Development (Q3)";"Social Sciences" +15517;28347;"Journal of Graph Algorithms and Applications";journal;"15261719";"Brown University";Yes;Yes;0,352;Q2;41;19;103;675;63;96;0,51;35,53;19,35;0;United States;Northern America;"Brown University";"1997-2026";"Computer Science (miscellaneous) (Q2); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Geometry and Topology (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +15518;18100156702;"Journal of Plant Protection Research";journal;"14274345, 1899007X";"Polish Academy of Sciences, Committee of Plant Protection";Yes;Yes;0,352;Q2;40;47;131;2785;238;131;1,69;59,26;42,78;0;Poland;Eastern Europe;"Polish Academy of Sciences, Committee of Plant Protection";"2008-2025";"Agronomy and Crop Science (Q2); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +15519;21100847303;"Tropical Natural History";journal;"25869892";"Chulalongkorn University";No;No;0,352;Q2;10;48;68;1837;70;68;1,16;38,27;45,16;0;Thailand;Asiatic Region;"Chulalongkorn University";"2017-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Paleontology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +15520;21100401254;"Western Pacific Surveillance and Response Journal : WPSAR";journal;"20947313, 20947321";"World Health Organization";Yes;Yes;0,352;Q2;25;45;139;588;140;124;1,11;13,07;53,27;0;Philippines;Asiatic Region;"World Health Organization";"2013-2026";"Social Sciences (miscellaneous) (Q2); Health (social science) (Q3); Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +15521;4800152303;"Acta Chimica Sinica";journal;"05677351";"Editorial Office of Acta Chimica Sinica";No;No;0,352;Q3;48;128;460;7890;874;459;2,11;61,64;40,92;0;China;Asiatic Region;"Editorial Office of Acta Chimica Sinica";"1982, 1996-2025";"Chemistry (miscellaneous) (Q3)";"Chemistry" +15522;21101057377;"Advanced Mathematical Models and Applications";journal;"25194445";"Jomard Publishing";No;No;0,352;Q3;13;50;111;1504;182;110;1,50;30,08;31,30;0;Azerbaijan;Eastern Europe;"Jomard Publishing";"2019-2025";"Applied Mathematics (Q3); Computational Mathematics (Q3); Control and Optimization (Q3); Modeling and Simulation (Q3); Numerical Analysis (Q3); Statistics and Probability (Q3)";"Mathematics" +15523;19800188058;"Australian Journal of Learning Difficulties";journal;"19404158, 19404166";"Routledge";No;No;0,352;Q3;20;10;31;499;61;31;1,67;49,90;72,97;0;United Kingdom;Western Europe;"Routledge";"2008-2026";"Developmental and Educational Psychology (Q3); Education (Q3); Social Psychology (Q3)";"Psychology; Social Sciences" +15524;23343;"Bulletin of the Chemical Society of Ethiopia";journal;"10113924, 1726801X";"Chemical Society of Ethiopia";Yes;No;0,352;Q3;38;195;322;7204;951;322;3,04;36,94;32,66;0;Ethiopia;Africa;"Chemical Society of Ethiopia";"1996-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +15525;21100914247;"Communicable Diseases Intelligence";journal;"22096051";"Health Protection Policy Branch, Office of Health Protection, Australian Government Department of Health";No;No;0,352;Q3;15;67;204;0;186;202;0,78;0,00;63,93;1;Australia;Pacific Region;"Health Protection Policy Branch, Office of Health Protection, Australian Government Department of Health";"2018-2026";"Epidemiology (Q3); Infectious Diseases (Q3); Microbiology (medical) (Q3); Immunology (Q4)";"Immunology and Microbiology; Medicine" +15526;145573;"GENEVA Risk and Insurance Review";journal;"1554964X, 15549658";"Palgrave Macmillan Ltd.";No;No;0,352;Q3;26;12;31;443;50;29;1,41;36,92;23,53;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1975-1979, 2002, 2005-2026";"Accounting (Q3); Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15527;21101089567;"Journal of Cerebrovascular and Endovascular Neurosurgery";journal;"22873139, 22348565";"Korean Society of Cerebrovascular Surgeons (KSCVS)";No;No;0,352;Q3;11;37;146;792;162;144;0,95;21,41;15,20;0;South Korea;Asiatic Region;"Korean Society of Cerebrovascular Surgeons (KSCVS)";"2019-2025";"Cardiology and Cardiovascular Medicine (Q3); Neurology (clinical) (Q3); Surgery (Q3)";"Medicine" +15528;25682;"Journal of Contemporary Dental Practice";journal;"15263711";"Jaypee Brothers Medical Publishers (P) Ltd";No;No;0,352;Q3;56;183;541;5556;733;519;1,17;30,36;49,42;0;United States;Northern America;"Jaypee Brothers Medical Publishers (P) Ltd";"1999-2025";"Dentistry (miscellaneous) (Q3)";"Dentistry" +15529;21101067612;"Journal of Earth Sciences and Environment";journal;"16726561";"Chang'an University";No;No;0,352;Q3;17;57;225;2829;364;225;1,53;49,63;33,58;0;China;Asiatic Region;"Chang'an University";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science" +15530;21100893350;"Journal of Laboratory Medicine";journal;"25679449, 25679430";"Walter de Gruyter GmbH";Yes;No;0,352;Q3;21;42;118;923;198;106;2,20;21,98;43,82;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1992, 2008-2009, 2012-2013, 2018-2026";"Biochemistry (medical) (Q3); Discrete Mathematics and Combinatorics (Q3); Clinical Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Mathematics; Medicine" +15531;13571;"Journal of Polymer Engineering";journal;"21910340, 03346447";"Walter de Gruyter GmbH";No;No;0,352;Q3;42;73;247;3581;542;247;1,96;49,05;39,93;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1981-1988, 1990-2026";"Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)";"Chemical Engineering; Materials Science" +15532;29688;"Journal of Vector Ecology";journal;"10811710, 19487134";"BioOne";No;No;0,352;Q3;63;17;80;666;83;80;1,10;39,18;46,03;0;United States;Northern America;"BioOne";"1996-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15533;59557;"Malawi Medical Journal";journal;"19957270, 19957262";"Malawi Medical Journal";Yes;Yes;0,352;Q3;33;49;137;1379;144;124;0,82;28,14;44,97;0;Malawi;Africa;"Malawi Medical Journal";"1991-1993, 2008-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +15534;21101210853;"Optics Continuum";journal;"27700208";"Optica Publishing Group (formerly OSA)";Yes;No;0,352;Q3;35;225;654;7685;1001;650;1,65;34,16;22,67;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"2022-2026";"Atomic and Molecular Physics, and Optics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +15535;24739;"Polish Journal of Environmental Studies";journal;"12301485";"HARD";No;No;0,352;Q3;77;621;1495;29875;2630;1495;1,81;48,11;38,51;1;Poland;Eastern Europe;"HARD";"1996-2026";"Environmental Chemistry (Q3); Environmental Science (miscellaneous) (Q3)";"Environmental Science" +15536;14228;"Progress in Rubber, Plastics and Recycling Technology";journal;"14777606, 14782413";"RAPRA Technology Ltd.";No;No;0,352;Q3;27;35;69;1958;169;69;2,53;55,94;28,04;0;United Kingdom;Western Europe;"RAPRA Technology Ltd.";"2003-2026";"Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Organic Chemistry (Q3); Polymers and Plastics (Q3)";"Chemical Engineering; Chemistry; Materials Science" +15537;21101303300;"Reproductive Medicine";journal;"26733897";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,352;Q3;9;44;74;1786;91;71;1,02;40,59;60,75;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3); Surgery (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15538;29388;"Revista Gaucha de Enfermagem";journal;"01026933, 19831447";"Universidade Federal do Rio Grande do Sul Escola de Enfermagem";Yes;No;0,352;Q3;27;109;342;3228;360;332;0,94;29,61;80,19;0;Brazil;Latin America;"Universidade Federal do Rio Grande do Sul Escola de Enfermagem";"1984-1986, 1989-1992, 1994-1997, 1999-2026";"Nursing (miscellaneous) (Q3)";"Nursing" +15539;19700201685;"REVSTAT-Statistical Journal";journal;"21830371, 16456726";"National Statistical Institute";Yes;Yes;0,352;Q3;24;29;86;810;81;85;0,89;27,93;18,33;0;Portugal;Western Europe;"National Statistical Institute";"2010-2025";"Statistics and Probability (Q3)";"Mathematics" +15540;19161;"Revue Roumaine des Sciences Techniques Serie Electrotechnique et Energetique";journal;"00354066";"Publishing House of the Romanian Academy";No;No;0,352;Q3;21;101;225;2282;431;225;2,33;22,59;21,51;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"1969-1970, 1972, 1974-1989, 2011-2025";"Electrical and Electronic Engineering (Q3); Energy (miscellaneous) (Q3)";"Energy; Engineering" +15541;21101239980;"Transport Findings";journal;"26520397";"Findings Press";Yes;No;0,352;Q3;18;37;141;390;167;141;1,09;10,54;38,54;3;Australia;Pacific Region;"Findings Press";"2019-2026";"Civil and Structural Engineering (Q3); Transportation (Q3)";"Engineering; Social Sciences" +15542;6400153170;"Urology Journal";journal;"17351308, 1735546X";"Urology and Nephrology Research Centre";Yes;Yes;0,352;Q3;41;41;202;1319;223;194;0,98;32,17;21,47;0;Iran;Middle East;"Urology and Nephrology Research Centre";"2007-2026";"Urology (Q3)";"Medicine" +15543;23922;"IEEE Vehicular Technology Conference";conference and proceedings;"10903038";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,352;-;133;1323;3212;21668;3945;3192;1,13;16,38;28,29;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1967-1968, 1970-1971, 1975, 1981-2025";"Applied Mathematics; Computer Science Applications; Electrical and Electronic Engineering";"Computer Science; Engineering; Mathematics" +15544;21100215176;"InterSociety Conference on Thermal and Thermomechanical Phenomena in Electronic Systems, ITHERM";conference and proceedings;"19363958";"IEEE Computer Society";No;No;0,352;-;27;184;552;3779;655;546;1,13;20,54;18,04;0;United States;Northern America;"IEEE Computer Society";"2002, 2012, 2019-2025";"Control and Systems Engineering; Electrical and Electronic Engineering";"Engineering" +15545;21100217219;"Proceedings of the IEEE Sensor Array and Multichannel Signal Processing Workshop";conference and proceedings;"2151870X, 15512282";"IEEE Computer Society";No;No;0,352;-;33;0;182;0;217;181;0,79;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2000, 2002, 2012, 2014, 2016, 2018, 2020, 2022, 2024";"Control and Systems Engineering; Electrical and Electronic Engineering; Signal Processing";"Computer Science; Engineering" +15546;19700200984;"Review of Cognitive Linguistics";journal;"18779751, 1877976X";"John Benjamins Publishing Company";No;No;0,351;Q1;31;45;82;2493;58;80;0,64;55,40;51,56;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2010-2026";"Linguistics and Language (Q1); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +15547;21101045282;"Acta Innovations";journal;"23005599";"Rotherham Academic Press Ltd";Yes;No;0,351;Q2;17;23;80;961;183;80;2,62;41,78;32,84;0;United Kingdom;Western Europe;"Rotherham Academic Press Ltd";"2013-2025";"Engineering (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Education (Q3); Energy (miscellaneous) (Q3); Environmental Engineering (Q3); Management of Technology and Innovation (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Business, Management and Accounting; Energy; Engineering; Environmental Science; Medicine; Social Sciences" +15548;21100201070;"Archives of Transport";journal;"23008830, 08669546";"Warsaw University of Technology";Yes;No;0,351;Q2;23;28;108;1333;229;108;2,15;47,61;24,44;0;Poland;Eastern Europe;"Warsaw University of Technology";"2010-2025";"Automotive Engineering (Q2); Transportation (Q3)";"Engineering; Social Sciences" +15549;21101038528;"Automotive Experiences";journal;"26156636, 26156202";"Universitas Muhammadiyah Magelang";Yes;No;0,351;Q2;17;48;127;2100;283;124;2,31;43,75;19,53;0;Indonesia;Asiatic Region;"Universitas Muhammadiyah Magelang";"2018-2025";"Automotive Engineering (Q2); Fuel Technology (Q3); Transportation (Q3)";"Energy; Engineering; Social Sciences" +15550;19475;"Beijing Ligong Daxue Xuebao/Transaction of Beijing Institute of Technology";journal;"10010645";"Beijing Institute of Technology";No;No;0,351;Q2;28;123;449;3016;638;449;1,43;24,52;26,37;0;China;Asiatic Region;"Beijing Institute of Technology";"1990-2001, 2003-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +15551;38688;"Journal of Agricultural Safety and Health";trade journal;"10747583, 19437846";"American Society of Agricultural and Biological Engineers";No;No;0,351;Q2;38;23;46;771;60;46;1,26;33,52;44,44;0;United States;Northern America;"American Society of Agricultural and Biological Engineers";"1997-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Safety, Risk, Reliability and Quality (Q2); Public Health, Environmental and Occupational Health (Q3)";"Agricultural and Biological Sciences; Engineering; Medicine" +15552;19211;"Journal of General Plant Pathology";journal;"13452630, 1610739X";"Springer";No;No;0,351;Q2;49;56;162;1794;213;144;1,36;32,04;25,89;0;Japan;Asiatic Region;"Springer";"1989, 2001-2002, 2004-2026";"Agronomy and Crop Science (Q2); Plant Science (Q3)";"Agricultural and Biological Sciences" +15553;16269;"Journal of Legal Studies";journal;"15375366, 00472530";"University of Chicago Press";Yes;No;0,351;Q2;72;14;43;779;47;41;0,78;55,64;17,86;0;United States;Northern America;"University of Chicago Press";"1983, 1985, 1996-2026";"Law (Q2)";"Social Sciences" +15554;21100943253;"Journal of Physics Communications";journal;"23996528";"Institute of Physics Publishing";Yes;No;0,351;Q2;32;43;247;2108;333;247;1,47;49,02;16,52;0;United States;Northern America;"Institute of Physics Publishing";"2017-2025";"Physics and Astronomy (miscellaneous) (Q2)";"Physics and Astronomy" +15555;21101185418;"Jurnal IUS Kajian Hukum dan Keadilan";journal;"23033827, 2477815X";"Mataram University Faculty of Law";Yes;No;0,351;Q2;7;41;132;1950;202;132;1,89;47,56;42,05;0;Indonesia;Asiatic Region;"Mataram University Faculty of Law";"2019-2025";"Law (Q2); Political Science and International Relations (Q2); Public Administration (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15556;6400153123;"Logica Universalis";journal;"16618300, 16618297";"Springer International Publishing";No;No;0,351;Q2;23;39;74;1023;37;73;0,27;26,23;15,22;0;Switzerland;Western Europe;"Springer International Publishing";"2007-2025";"Logic (Q2); Applied Mathematics (Q3)";"Mathematics" +15557;21100898697;"UUM Journal of Legal Studies";journal;"01279483, 2229984X";"Universiti Utara Malaysia Press";Yes;Yes;0,351;Q2;10;21;86;1270;105;86;1,04;60,48;42,50;0;Malaysia;Asiatic Region;"Universiti Utara Malaysia Press";"2018-2026";"Law (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15558;4800153106;"Acta Botanica Brasilica";journal;"1677941X, 01023306";"Sociedade Botanica do Brasil";Yes;Yes;0,351;Q3;59;57;223;4006;285;223;1,17;70,28;45,49;0;Brazil;Latin America;"Sociedade Botanica do Brasil";"1997-2025";"Plant Science (Q3)";"Agricultural and Biological Sciences" +15559;19351;"Annals of the Missouri Botanical Garden";journal;"00266493";"Missouri Botanical Garden";No;No;0,351;Q3;83;0;24;0;34;24;1,33;0,00;0,00;0;United States;Northern America;"Missouri Botanical Garden";"1946, 1976, 1978-1979, 1981-2024";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +15560;21101104018;"Canadian Liver Journal";journal;"25614444";"University of Toronto Press";No;No;0,351;Q3;12;48;112;1323;123;91;1,15;27,56;56,04;0;Canada;Northern America;"University of Toronto Press";"2018-2025";"Hepatology (Q3)";"Medicine" +15561;21101131496;"Cardiology Discovery";journal;"26938499, 2096952X";"Wolters Kluwer Health";Yes;Yes;0,351;Q3;8;40;103;2130;109;99;0,92;53,25;37,70;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2021-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +15562;4700152491;"Computational Mathematics and Mathematical Physics";journal;"15556662, 09655425";"Pleiades Publishing";No;No;0,351;Q3;36;213;551;5579;423;551;0,80;26,19;29,51;0;United States;Northern America;"Pleiades Publishing";"1985, 1991-1996, 1999-2026";"Computational Mathematics (Q3)";"Mathematics" +15563;21100977421;"Condensed Matter";journal;"24103896";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,351;Q3;23;64;236;3507;403;234;1,50;54,80;21,86;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2025";"Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science; Physics and Astronomy" +15564;17999;"Edinburgh Journal of Botany";journal;"14740036, 09604286";"Royal Botanic Garden Edinburgh";No;No;0,351;Q3;34;12;57;577;51;54;0,84;48,08;19,05;0;United Kingdom;Western Europe;"Royal Botanic Garden Edinburgh";"1990-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +15565;21101053507;"Egyptian Journal of Basic and Applied Sciences";journal;"2314808X";"Taylor and Francis Ltd.";No;No;0,351;Q3;15;34;153;2006;301;153;1,91;59,00;40,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017, 2019-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biomedical Engineering (Q3); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering" +15566;21101048277;"International Electronic Journal of Geometry";journal;"13075624";"DergiPark";No;No;0,351;Q3;10;34;139;967;90;139;0,63;28,44;35,09;0;Turkey;Middle East;"DergiPark";"2019-2025";"Applied Mathematics (Q3); Geometry and Topology (Q3); Mathematical Physics (Q3)";"Mathematics" +15567;21100217227;"Iranian Journal of Science and Technology - Transactions of Electrical Engineering";journal;"23641827, 22286179";"Springer Nature";No;No;0,351;Q3;31;227;298;9215;690;298;2,41;40,59;20,23;0;Switzerland;Western Europe;"Springer Nature";"2012-2013, 2016-2026";"Computer Networks and Communications (Q3); Computer Vision and Pattern Recognition (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Signal Processing (Q3)";"Computer Science; Energy; Engineering" +15568;14237;"Journal of Fuel Chemistry and Technology";journal;"20975945, 2097213X";"Science Press";No;No;0,351;Q3;52;155;507;7161;1004;507;1,93;46,20;38,93;0;China;Asiatic Region;"Science Press";"1996-2026";"Chemical Engineering (miscellaneous) (Q3); Fuel Technology (Q3); Physical and Theoretical Chemistry (Q3)";"Chemical Engineering; Chemistry; Energy" +15569;26738;"Microsystem Technologies";journal;"14321858, 09467076";"Springer Science and Business Media Deutschland GmbH";No;No;0,351;Q3;80;294;525;10640;1122;500;2,46;36,19;26,98;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1994-2026";"Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Hardware and Architecture (Q3); Nanoscience and Nanotechnology (Q4)";"Computer Science; Engineering; Materials Science; Physics and Astronomy" +15570;28420;"Oceanology";journal;"00014370, 15318508";"Pleiades Publishing";No;No;0,351;Q3;36;108;327;3203;270;321;0,76;29,66;44,54;0;United States;Northern America;"Pleiades Publishing";"1972-1973, 1976-1980, 1982-1984, 1986-1990, 1992, 1996-2025";"Oceanography (Q3)";"Earth and Planetary Sciences" +15571;13663;"Periodica Polytechnica Chemical Engineering";journal;"03245853, 15873765";"Budapest University of Technology and Economics";Yes;Yes;0,351;Q3;32;57;174;2643;386;169;2,30;46,37;39,57;0;Hungary;Eastern Europe;"Budapest University of Technology and Economics";"1968-2025";"Biotechnology (Q3); Chemistry (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Environmental Science; Materials Science" +15572;21100209326;"Phytotaxa";journal;"11793163, 11793155";"Magnolia Press";No;No;0,351;Q3;58;1016;2821;43800;2999;2594;1,13;43,11;33,95;0;New Zealand;Pacific Region;"Magnolia Press";"2010-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +15573;14828;"Stochastic Models";journal;"15326349, 15324214";"Taylor and Francis Ltd.";No;No;0,351;Q3;41;30;99;813;77;97;0,74;27,10;29,85;0;United States;Northern America;"Taylor and Francis Ltd.";"2002-2026";"Applied Mathematics (Q3); Modeling and Simulation (Q3); Statistics and Probability (Q3)";"Mathematics" +15574;22059;"Strojnicky Casopis";journal;"24505471, 00392472";"Slovak University of Technology in Bratislava";Yes;Yes;0,351;Q3;18;42;120;758;156;120;1,00;18,05;14,75;0;Slovakia;Eastern Europe;"Slovak University of Technology in Bratislava";"1973-1991, 2016-2025";"Mechanical Engineering (Q3)";"Engineering" +15575;19900191732;"Argument and Computation";journal;"19462166, 19462174";"SAGE Publications Ltd";Yes;No;0,350;Q1;28;13;31;668;47;29;0,94;51,38;22,86;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2010-2026";"Linguistics and Language (Q1); Artificial Intelligence (Q3); Computational Mathematics (Q3); Computer Science Applications (Q3)";"Computer Science; Mathematics; Social Sciences" +15576;22430;"Journal of Comparative Germanic Linguistics";journal;"15728552, 13834924";"Springer Netherlands";No;No;0,350;Q1;27;8;26;775;17;26;0,47;96,88;47,06;0;Netherlands;Western Europe;"Springer Netherlands";"1997-1998, 2000-2001, 2005-2025";"Linguistics and Language (Q1); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +15577;16475;"Oral History Review";journal;"15338592, 00940798";"Taylor and Francis Ltd.";No;No;0,350;Q1;23;24;56;974;64;50;1,14;40,58;56,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1973-1993, 1995-2002, 2006, 2008-2026";"History (Q1)";"Arts and Humanities" +15578;145567;"Pragmatics and Cognition";journal;"15699943, 09290907";"John Benjamins Publishing Company";No;No;0,350;Q1;44;16;50;927;49;44;0,88;57,94;58,62;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1993-2014, 2016-2025";"Linguistics and Language (Q1); History and Philosophy of Science (Q2); Computer Science (miscellaneous) (Q3); Behavioral Neuroscience (Q4)";"Arts and Humanities; Computer Science; Neuroscience; Social Sciences" +15579;21100202950;"Zephyrus";journal;"23863943, 05147336";"Ediciones Universidad de Salamanca";Yes;Yes;0,350;Q1;15;7;55;480;29;55;0,32;68,57;41,67;0;Spain;Western Europe;"Ediciones Universidad de Salamanca";"2011-2025";"Archeology (arts and humanities) (Q1); History (Q1); Archeology (Q2)";"Arts and Humanities; Social Sciences" +15580;94203;"Anthropology and Medicine";journal;"14692910, 13648470";"Routledge";No;No;0,350;Q2;42;6;79;257;114;75;1,18;42,83;50,00;0;United Kingdom;Western Europe;"Routledge";"1997-2026";"Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Arts and Humanities; Medicine; Social Sciences" +15581;21101060915;"Constitutional Review";journal;"25483870, 24600016";"Center for Research and Case Analysis and Library Management of the Constitutional Court of the Republic of Indonesia";Yes;Yes;0,350;Q2;11;16;40;682;44;40;1,21;42,63;29,41;0;Indonesia;Asiatic Region;"Center for Research and Case Analysis and Library Management of the Constitutional Court of the Republic of Indonesia";"2015-2025";"Law (Q2)";"Social Sciences" +15582;21101144516;"Engineering, Technology and Applied Science Research";journal;"17928036, 22414487";"Dr D. Pylarinos";Yes;No;0,350;Q2;34;1549;1611;42090;4262;1611;2,72;27,17;30,44;0;Greece;Western Europe;"Dr D. Pylarinos";"2019-2025";"Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3); Signal Processing (Q3)";"Computer Science; Engineering; Materials Science" +15583;21101041601;"European Papers - A Journal on Law and Integration";journal;"24998249";"European Paper";Yes;Yes;0,350;Q2;14;35;151;2503;159;148;1,07;71,51;62,16;0;United States;Northern America;"European Paper";"2016-2026";"Law (Q2)";"Social Sciences" +15584;19700188325;"Frontiers in Heat and Mass Transfer";journal;"21518629";"Tech Science Press";Yes;No;0,350;Q2;32;98;240;3921;530;240;2,70;40,01;27,37;0;United States;Northern America;"Tech Science Press";"2010-2025";"Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Engineering; Materials Science; Physics and Astronomy" +15585;100147325;"Journal of Classical Sociology";journal;"17412897, 1468795X";"SAGE Publications Ltd";No;No;0,350;Q2;34;32;90;2020;99;88;0,84;63,13;26,47;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Sociology and Political Science (Q2)";"Social Sciences" +15586;21100936589;"Journal of ICT Standardization";journal;"2245800X, 22460853";"River Publishers";No;No;0,350;Q2;14;20;70;682;197;67;2,73;34,10;42,11;0;Denmark;Western Europe;"River Publishers";"2014-2025";"Information Systems and Management (Q2); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Information Systems (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +15587;21101177511;"Journal of LGBTQ Issues in Counseling";journal;"26924951, 2692496X";"Routledge";No;No;0,350;Q2;39;34;84;1323;93;69;1,04;38,91;64,95;0;United Kingdom;Western Europe;"Routledge";"2021-2026";"Gender Studies (Q2); Applied Psychology (Q3); Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology; Social Sciences" +15588;24557;"Mathematical and Computational Applications";journal;"1300686X, 22978747";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,350;Q2;39;139;232;6739;545;225;2,35;48,48;23,27;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"1998-2016, 2021-2025";"Engineering (miscellaneous) (Q2); Applied Mathematics (Q3); Computational Mathematics (Q3)";"Engineering; Mathematics" +15589;18370;"Medicina Intensiva";journal;"15786749, 02105691";"Ediciones Doyma, S.L.";No;No;0,350;Q2;44;156;492;2978;499;409;1,02;19,09;44,97;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"1988-2026";"Critical Care and Intensive Care Medicine (Q2)";"Medicine" +15590;18870;"Schweizer Archiv fur Tierheilkunde";journal;"00367281, 16642848";"Gesellschaft Schweizer Tierarztinnen und Tierarzte";No;No;0,350;Q2;34;30;107;698;132;107;1,02;23,27;69,41;1;Switzerland;Western Europe;"Gesellschaft Schweizer Tierarztinnen und Tierarzte";"1945-1951, 1961, 1965-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +15591;21101121576;"South African Journal of Agricultural Extension";journal;"24133221, 0301603X";"";Yes;No;0,350;Q2;19;59;111;2540;193;111;1,62;43,05;26,47;0;South Africa;Africa;"";"1998-2009, 2011-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Social Sciences" +15592;21100820755;"Zeitschrift fur Vergleichende Politikwissenschaft";journal;"18652646, 18652654";"Springer Verlag";No;No;0,350;Q2;23;22;93;1536;111;79;0,89;69,82;26,67;1;Germany;Western Europe;"Springer Verlag";"2007-2026";"Sociology and Political Science (Q2)";"Social Sciences" +15593;19348;"Arctic";journal;"19231245, 00040843";"Arctic Institute of North America";Yes;No;0,350;Q3;72;14;96;875;113;85;0,88;62,50;46,30;0;Canada;Northern America;"Arctic Institute of North America";"1973, 1975, 1977-1981, 1983-1984, 1986, 1988-2025";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15594;13302;"Arquivos Brasileiros de Oftalmologia";journal;"16782925, 00042749";"Conselho Brasileiro De Oftalmologia";Yes;No;0,350;Q3;39;130;402;2373;378;305;0,90;18,25;49,39;0;Brazil;Latin America;"Conselho Brasileiro De Oftalmologia";"1945, 1949, 1960-1977, 1979-1994, 2000-2026";"Medicine (miscellaneous) (Q3); Ophthalmology (Q3)";"Medicine" +15595;21101028344;"Art of Discrete and Applied Mathematics";journal;"25909770";"University of Primorska";No;No;0,350;Q3;9;53;93;1061;51;92;0,49;20,02;27,78;0;Slovenia;Eastern Europe;"University of Primorska";"2018-2026";"Applied Mathematics (Q3); Computational Theory and Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3)";"Computer Science; Mathematics" +15596;12823;"Canadian Journal of Human Sexuality";journal;"22917063, 11884517";"University of Toronto Press";No;No;0,350;Q3;47;40;106;2530;119;105;0,86;63,25;72,22;0;Canada;Northern America;"University of Toronto Press";"1994, 1996-2025";"Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3)";"Medicine; Psychology" +15597;22594;"Chinese Journal of Applied Ecology";journal;"10019332";"Editorial Board of Chinese Journal of Applied Ecology";No;No;0,350;Q3;58;361;1164;5854;1937;1164;1,79;16,22;40,04;0;China;Asiatic Region;"Editorial Board of Chinese Journal of Applied Ecology";"1991-2026";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +15598;21101089973;"Computational Methods for Differential Equations";journal;"23453982, 23832533";"University of Tabriz";Yes;Yes;0,350;Q3;15;100;200;3298;273;200;1,34;32,98;27,43;0;Iran;Middle East;"University of Tabriz";"2019-2026";"Algebra and Number Theory (Q3); Applied Mathematics (Q3); Numerical Analysis (Q3)";"Mathematics" +15599;21101060896;"European Journal of Psychology Open";journal;"26738627";"Hogrefe-Verlag GmbH and Co. KG";Yes;No;0,350;Q3;42;17;45;821;60;44;0,90;48,29;55,32;0;Germany;Western Europe;"Hogrefe-Verlag GmbH and Co. KG";"2021-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +15600;22393;"Indian Journal of Pharmacology";journal;"02537613, 19983751";"Wolters Kluwer Medknow Publications";Yes;No;0,350;Q3;75;72;232;1247;324;158;1,11;17,32;47,03;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1978-1980, 1982, 1984-1986, 1994-2026";"Pharmacology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +15601;29956;"Journal of Pediatric Hematology/Oncology";journal;"10774114, 15363678";"Lippincott Williams and Wilkins";No;No;0,350;Q3;90;180;783;4117;749;749;0,84;22,87;56,92;0;United States;Northern America;"Lippincott Williams and Wilkins";"1979, 1981-2026";"Hematology (Q3); Oncology (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +15602;21101236036;"Journal of Pediatrics: Clinical Practice";journal;"29505410";"Elsevier Inc.";Yes;No;0,350;Q3;10;46;46;1294;51;39;1,11;28,13;63,23;0;United States;Northern America;"Elsevier Inc.";"2024-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +15603;21101052917;"Mathematical Foundations of Computing";journal;"25778838";"American Institute of Mathematical Sciences";Yes;No;0,350;Q3;12;76;131;2263;131;131;1,04;29,78;32,95;0;United States;Northern America;"American Institute of Mathematical Sciences";"2019-2026";"Artificial Intelligence (Q3); Computational Mathematics (Q3); Computational Theory and Mathematics (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +15604;17840;"Medical Journal of the Islamic Republic of Iran";journal;"22516840, 10161430";"Iran University of Medical Sciences";Yes;Yes;0,350;Q3;43;102;468;4196;580;467;1,03;41,14;40,91;0;Iran;Middle East;"Iran University of Medical Sciences";"1989-1990, 1992, 1996-1998, 2005, 2010, 2012-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +15605;17947;"Neurologist";journal;"10747931, 23312637";"Lippincott Williams and Wilkins";No;No;0,350;Q3;71;65;216;80;264;213;1,27;1,23;49,43;0;United States;Northern America;"Lippincott Williams and Wilkins";"1996-2013, 2015-2026";"Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3)";"Medicine" +15606;15746;"Pediatric Physical Therapy";journal;"08985669, 1538005X";"Lippincott Williams and Wilkins Ltd.";No;No;0,350;Q3;61;100;289;1669;268;227;0,77;16,69;72,13;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1989-2026";"Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine" +15607;15764;"Pediatrics International";journal;"13288067, 1442200X";"John Wiley and Sons Inc";No;No;0,350;Q3;79;339;1024;5802;788;649;0,66;17,12;31,92;0;United States;Northern America;"John Wiley and Sons Inc";"1958-1961, 1963-1981, 1983-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +15608;21101057378;"Transformation in Higher Education";journal;"25195638, 24150991";"AOSIS (Pty) Ltd";Yes;No;0,350;Q3;10;31;44;1589;81;44;2,09;51,26;63,27;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2019-2025";"Education (Q3)";"Social Sciences" +15609;21100832984;"Journal of Language Aggression and Conflict";journal;"22131272";"John Benjamins Publishing Company";No;No;0,349;Q1;23;22;54;1393;85;54;1,48;63,32;62,86;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2013-2026";"Linguistics and Language (Q1); Communication (Q2); Surfaces and Interfaces (Q3)";"Physics and Astronomy; Social Sciences" +15610;21100860902;"Open Linguistics";journal;"23009969";"Walter de Gruyter GmbH";Yes;No;0,349;Q1;21;38;128;2688;104;125;0,83;70,74;50,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2015-2026";"Linguistics and Language (Q1)";"Social Sciences" +15611;21100967508;"Santander Art and Culture Law Review";journal;"2450050X, 23917997";"Jagiellonian University Press";Yes;Yes;0,349;Q1;10;26;97;1356;50;79;0,42;52,15;52,17;0;Poland;Eastern Europe;"Jagiellonian University Press";"2015-2025";"Conservation (Q1); Cultural Studies (Q1); Visual Arts and Performing Arts (Q1); Law (Q2)";"Arts and Humanities; Social Sciences" +15612;17142;"Scandinavian Journal of History";journal;"03468755, 15027716";"Taylor and Francis A.S.";No;No;0,349;Q1;25;28;91;1993;85;91;0,87;71,18;29,73;2;Sweden;Western Europe;"Taylor and Francis A.S.";"1976-2026";"History (Q1)";"Arts and Humanities" +15613;21100788874;"Verbum Vitae";journal;"2451280X, 16448561";"John Paul II Catholic University of Lublin Faculty of Theology";Yes;Yes;0,349;Q1;6;56;180;2873;66;176;0,41;51,30;6,90;0;Poland;Eastern Europe;"John Paul II Catholic University of Lublin Faculty of Theology";"2016-2025";"Religious Studies (Q1)";"Arts and Humanities" +15614;24104;"Acta Zoologica";journal;"14636395, 00017272";"Wiley-Blackwell Publishing Ltd";No;No;0,349;Q2;46;66;121;3658;173;121;1,56;55,42;43,81;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1920-2026";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Cell Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +15615;86937;"California Agriculture";journal;"21608091, 00080845";"University of California, Oakland";Yes;Yes;0,349;Q2;35;15;54;199;65;53;0,91;13,27;38,78;1;United States;Northern America;"University of California, Oakland";"1973-1975, 1979, 1981-1982, 1985, 1992-1993, 1999, 2008-2025";"Agronomy and Crop Science (Q2); Forestry (Q2); Plant Science (Q3)";"Agricultural and Biological Sciences" +15616;14215;"Critical Studies in Media Communication";journal;"14795809, 15295036";"Routledge";No;No;0,349;Q2;65;39;102;1726;144;86;0,77;44,26;46,15;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Communication (Q2)";"Social Sciences" +15617;21101023216;"Foreign Trade Review";journal;"00157325, 09717625";"Sage Publications India Pvt. Ltd";No;No;0,349;Q2;18;39;81;1627;147;78;1,83;41,72;31,88;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1966-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business and International Management (Q3); Marketing (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15618;21101180700;"Indian Journal of Information Sources and Services";journal;"22316094";"The Research Publication";No;No;0,349;Q2;21;199;131;6029;810;131;6,68;30,30;51,14;0;India;Asiatic Region;"The Research Publication";"2019-2026";"Library and Information Sciences (Q2)";"Social Sciences" +15619;21100869224;"International Journal of Mathematical, Engineering and Management Sciences";journal;"24557749";"";Yes;No;0,349;Q2;28;107;211;4744;538;211;2,43;44,34;30,07;0;India;Asiatic Region;"";"2016-2026";"Engineering (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3)";"Business, Management and Accounting; Computer Science; Engineering; Mathematics" +15620;21100791269;"Journal of Animal Behaviour and Biometeorology";journal;"23181265";"Malque Publishing";Yes;No;0,349;Q2;21;37;112;1827;192;111;1,65;49,38;33,97;0;Brazil;Latin America;"Malque Publishing";"2013-2026";"Animal Science and Zoology (Q2); Atmospheric Science (Q3); Ecology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +15621;21100897136;"Karbala International Journal of Modern Science";journal;"24056103, 2405609X";"University of Kerbala";Yes;Yes;0,349;Q2;35;54;175;2572;461;175;2,33;47,63;41,86;0;Iraq;Middle East;"University of Kerbala";"2015-2026";"Multidisciplinary (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Computer Science; Multidisciplinary; Physics and Astronomy" +15622;14451;"Kongqi Donglixue Xuebao/Acta Aerodynamica Sinica";journal;"02581825";"Zhongguo Kongqi Dongli Yanjiu yu Fazhan Zhongxin";No;No;0,349;Q2;28;127;367;4947;510;362;1,33;38,95;29,20;0;China;Asiatic Region;"Zhongguo Kongqi Dongli Yanjiu yu Fazhan Zhongxin";"2001-2025";"Computational Mechanics (Q2); Aerospace Engineering (Q3); Condensed Matter Physics (Q3); Mechanical Engineering (Q3); Modeling and Simulation (Q3); Surfaces and Interfaces (Q3)";"Engineering; Mathematics; Physics and Astronomy" +15623;28725;"MCN The American Journal of Maternal/Child Nursing";journal;"15390683, 0361929X";"Lippincott Williams and Wilkins";Yes;No;0,349;Q2;53;88;264;1405;290;161;0,94;15,97;95,60;0;United States;Northern America;"Lippincott Williams and Wilkins";"1976-2026";"Maternity and Midwifery (Q2); Pharmacology (nursing) (Q2)";"Nursing" +15624;19700174655;"Advanced Steel Construction";journal;"1816112X";"Hong Kong Institute of Steel Construction";No;No;0,349;Q3;34;48;123;1749;184;123;1,48;36,44;25,00;0;China;Asiatic Region;"Hong Kong Institute of Steel Construction";"2005-2026";"Building and Construction (Q3); Civil and Structural Engineering (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +15625;23805;"American Journal of Dentistry";journal;"08948275";"Mosher and Linder, Inc";No;No;0,349;Q3;86;63;170;1896;199;169;1,11;30,10;50,49;0;United States;Northern America;"Mosher and Linder, Inc";"1988-2025";"Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Dentistry; Medicine" +15626;26997;"American Journal of Physics";journal;"00029505, 19432909";"American Association of Physics Teachers";No;No;0,349;Q3;120;125;419;3008;350;350;0,81;24,06;17,12;0;United States;Northern America;"American Association of Physics Teachers";"1935, 1937-1938, 1940-1991, 1993-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +15627;21100832948;"Canadian Journal of Addiction";journal;"23684720";"Lippincott Williams and Wilkins";No;No;0,349;Q3;14;0;54;0;39;45;0,79;0,00;0,00;0;Canada;Northern America;"Lippincott Williams and Wilkins";"2014-2024";"Psychiatry and Mental Health (Q3)";"Medicine" +15628;21100399786;"Construction Economics and Building";journal;"22049029";"Australian Institute of Quantity Surveyors";Yes;Yes;0,349;Q3;35;40;61;2685;142;56;1,81;67,13;17,71;0;Australia;Pacific Region;"Australian Institute of Quantity Surveyors";"2015-2025";"Building and Construction (Q3); Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting; Engineering" +15629;21100327701;"International Journal of GEOMATE";journal;"21862990, 21862982";"GEOMATE International Society";No;No;0,349;Q3;32;209;667;5641;969;667;1,42;26,99;29,49;0;Japan;Asiatic Region;"GEOMATE International Society";"2011-2026";"Building and Construction (Q3); Environmental Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering; Environmental Science" +15630;21101194671;"JEADV Clinical Practice";journal;"27686566";"John Wiley and Sons Inc";Yes;No;0,349;Q3;9;279;492;4923;338;421;0,63;17,65;53,06;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Dermatology (Q3)";"Medicine" +15631;27018;"Journal of Energy in Southern Africa";journal;"24133051, 1021447X";"University of Cape Town";Yes;Yes;0,349;Q3;29;7;26;261;51;26;1,71;37,29;38,46;0;South Africa;Africa;"University of Cape Town";"1993-2007, 2009-2025";"Computer Science (miscellaneous) (Q3); Energy (miscellaneous) (Q3)";"Computer Science; Energy" +15632;25283;"Journal of Fluorine Chemistry";journal;"00221139";"Elsevier B.V.";No;No;0,349;Q3;107;79;238;3323;396;238;1,69;42,06;32,58;0;Netherlands;Western Europe;"Elsevier B.V.";"1971-2026";"Biochemistry (Q3); Environmental Chemistry (Q3); Inorganic Chemistry (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Environmental Science" +15633;21100211731;"Journal of Homotopy and Related Structures";journal;"21938407, 15122891";"Springer Science + Business Media";No;No;0,349;Q3;16;26;63;550;27;63;0,48;21,15;20,00;0;United States;Northern America;"Springer Science + Business Media";"2012-2026";"Algebra and Number Theory (Q3); Geometry and Topology (Q3)";"Mathematics" +15634;21100904920;"Journal of Measurement and Evaluation in Education and Psychology";journal;"13096575";"Association of Measurement and Evaluation in Education and Psychology (EPODDER)";Yes;No;0,349;Q3;9;8;82;352;111;81;0,72;44,00;43,75;0;Turkey;Middle East;"Association of Measurement and Evaluation in Education and Psychology (EPODDER)";"2018-2025";"Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +15635;21100236804;"Real Analysis Exchange";journal;"01471937, 19301219";"Michigan State University Press";No;No;0,349;Q3;23;20;79;270;33;76;0,41;13,50;8,57;0;United States;Northern America;"Michigan State University Press";"1995, 2002-2025";"Analysis (Q3); Geometry and Topology (Q3)";"Mathematics" +15636;21100266590;"Revista de Contabilidad-Spanish Accounting Review";journal;"19884672, 11384891";"Universidad de Murcia";Yes;Yes;0,349;Q3;31;24;78;2011;150;77;1,98;83,79;60,61;0;United Kingdom;Western Europe;"Universidad de Murcia";"2009-2025";"Accounting (Q3)";"Business, Management and Accounting" +15637;21101306352;"Asian Journal of Sport History and Culture";journal;"27690156, 27690148";"Taylor and Francis Ltd.";No;No;0,348;Q1;6;24;51;1121;72;51;1,33;46,71;38,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2023-2026";"Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +15638;5300152518;"Ethnobotany Research and Applications";journal;"15473465";"";Yes;No;0,348;Q1;42;190;399;14572;978;395;2,40;76,69;41,61;0;United States;Northern America;"";"2007-2026";"Cultural Studies (Q1); Anthropology (Q2); Nature and Landscape Conservation (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +15639;19700173305;"Historia y Politica";journal;"15750361, 1989063X";"Center for Constitutional Studies";No;No;0,348;Q1;14;24;73;1401;30;67;0,40;58,38;45,00;0;Spain;Western Europe;"Center for Constitutional Studies";"1999, 2001, 2009-2025";"History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +15640;19700201504;"Journal of Structural and Construction Engineering";journal;"18818153, 13404202";"Architectural Institute of Japan";No;No;0,348;Q1;19;143;433;2820;166;431;0,39;19,72;14,10;0;Japan;Asiatic Region;"Architectural Institute of Japan";"2008-2026";"Architecture (Q1); Building and Construction (Q3)";"Engineering" +15641;145103;"Nexus Network Journal";journal;"15224600, 15905896";"Springer International Publishing";No;No;0,348;Q1;25;50;203;1549;189;192;0,83;30,98;42,35;0;Switzerland;Western Europe;"Springer International Publishing";"2004-2026";"Architecture (Q1); Visual Arts and Performing Arts (Q1); Mathematics (miscellaneous) (Q3)";"Arts and Humanities; Engineering; Mathematics" +15642;4700152443;"AACN Advanced Critical Care";journal;"15597776, 15597768";"American Association of Critical-Care Nurses";No;No;0,348;Q2;52;51;157;1036;169;152;1,02;20,31;81,65;0;United States;Northern America;"American Association of Critical-Care Nurses";"2006-2025";"Emergency Medicine (Q2); Critical Care Nursing (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +15643;19700170812;"Acta Herpetologica";journal;"18279635, 18279643";"Firenze University Press";Yes;Yes;0,348;Q2;22;27;51;1332;51;49;1,03;49,33;31,30;0;Italy;Western Europe;"Firenze University Press";"2009-2025";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +15644;25021;"IEEE Annals of the History of Computing";journal;"19341547, 10586180";"IEEE Computer Society";No;No;0,348;Q2;31;46;131;1361;100;106;0,63;29,59;30,19;0;United States;Northern America;"IEEE Computer Society";"1992-2026";"History and Philosophy of Science (Q2); Computer Science (miscellaneous) (Q3)";"Arts and Humanities; Computer Science" +15645;21101173097;"Journal of Critical Care Medicine";journal;"23931817, 23931809";"Sciendo";Yes;No;0,348;Q2;19;50;113;1414;162;100;1,12;28,28;45,34;0;Poland;Eastern Europe;"Sciendo";"2015-2026";"Critical Care and Intensive Care Medicine (Q2); Emergency Medicine (Q2); Anesthesiology and Pain Medicine (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +15646;12100156092;"Journal of Political Science Education";journal;"15512177, 15512169";"Taylor and Francis Ltd.";No;No;0,348;Q2;37;80;140;3249;185;136;1,41;40,61;49,64;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Sociology and Political Science (Q2); Education (Q3)";"Social Sciences" +15647;21100316000;"Journal of World Intellectual Property";journal;"14222213, 17471796";"John Wiley and Sons Ltd";No;No;0,348;Q2;18;46;99;0;174;92;1,88;0,00;48,21;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2002-2004, 2013-2026";"Law (Q2)";"Social Sciences" +15648;21101163030;"Journal of Zoological and Botanical Gardens";journal;"26735636";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,348;Q2;16;64;161;3283;295;155;1,85;51,30;54,12;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Veterinary (miscellaneous) (Q2)";"Agricultural and Biological Sciences; Veterinary" +15649;25074;"Oceanic Linguistics";journal;"15279421, 00298115";"University of Hawaii Press";No;No;0,348;Q2;25;11;47;772;27;44;0,46;70,18;35,71;0;United States;Northern America;"University of Hawaii Press";"2004-2025";"Linguistics and Language (Q2)";"Social Sciences" +15650;39287;"Polish Journal of Veterinary Sciences";journal;"15051773";"Polska Akademia Nauk";No;No;0,348;Q2;39;75;231;3037;308;231;1,43;40,49;43,97;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2002-2025";"Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +15651;21101181970;"Yustisia";journal;"08520941, 25490907";"Sebelas Maret University Faculty of Law";Yes;No;0,348;Q2;4;18;50;927;71;50;1,40;51,50;40,74;0;Indonesia;Asiatic Region;"Sebelas Maret University Faculty of Law";"2022-2025";"Law (Q2); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Health (social science) (Q3); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +15652;94302;"Acta Carsologica";journal;"15802612, 05836050";"Zalozba ZRC";Yes;Yes;0,348;Q3;33;13;41;582;38;36;0,67;44,77;36,36;0;Slovenia;Eastern Europe;"Zalozba ZRC";"1981-1983, 1986, 2005-2025";"Earth-Surface Processes (Q3)";"Earth and Planetary Sciences" +15653;21101080425;"Acta Epileptologica";journal;"25244434, 20969384";"BioMed Central Ltd";Yes;Yes;0,348;Q3;12;49;112;2228;146;106;1,46;45,47;46,86;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2019-2026";"Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +15654;27719;"Australian Journal of Forensic Sciences";journal;"1834562X, 00450618";"Taylor and Francis Ltd.";No;No;0,348;Q3;36;109;227;3449;239;206;0,86;31,64;46,13;6;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1968-2026";"Pathology and Forensic Medicine (Q3)";"Medicine" +15655;21101126440;"Drugs, Habits and Social Policy";journal;"27526739, 27526747";"Emerald Publishing";No;No;0,348;Q3;25;16;69;746;82;65;1,49;46,63;39,62;0;United Kingdom;Western Europe;"Emerald Publishing";"2022-2025";"Clinical Psychology (Q3); Health Policy (Q3); Health (social science) (Q3); Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Psychology; Social Sciences" +15656;14363;"INFOR";journal;"03155986, 19160615";"Taylor and Francis Ltd.";No;No;0,348;Q3;40;52;65;2732;170;50;2,98;52,54;35,56;0;Canada;Northern America;"Taylor and Francis Ltd.";"1971-1991, 1995-2026";"Computer Science Applications (Q3); Information Systems (Q3); Management Science and Operations Research (Q3); Signal Processing (Q3)";"Computer Science; Decision Sciences" +15657;14388;"Information Processing Letters";journal;"00200190";"Elsevier B.V.";No;No;0,348;Q3;88;59;225;1232;187;225;0,76;20,88;13,56;0;Netherlands;Western Europe;"Elsevier B.V.";"1971-2026";"Computer Science Applications (Q3); Information Systems (Q3); Signal Processing (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +15658;19700186861;"International Journal of Antennas and Propagation";journal;"16875877, 16875869";"John Wiley and Sons Ltd";Yes;No;0,348;Q3;55;43;316;1276;575;315;1,92;29,67;29,59;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +15659;21101183465;"Korean Journal of Mathematics";journal;"19768605, 22881433";"Kangwon Kyungki Mathematical Society";No;No;0,348;Q3;8;32;161;617;110;161;0,68;19,28;22,22;0;South Korea;Asiatic Region;"Kangwon Kyungki Mathematical Society";"2021-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +15660;21100823284;"Management Research";journal;"15365433, 15580946";"Emerald Group Publishing Ltd.";No;Yes;0,348;Q3;28;51;67;3860;168;64;2,53;75,69;43,36;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003-2026";"Business and International Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +15661;18400;"Medicine, Conflict and Survival";journal;"13623699, 17439396";"Routledge";No;No;0,348;Q3;26;44;105;1266;91;48;1,08;28,77;34,04;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Pathology and Forensic Medicine (Q3)";"Medicine" +15662;21100802703;"Nanoscale and Microscale Thermophysical Engineering";journal;"15567265, 15567273";"Taylor and Francis Ltd.";No;No;0,348;Q3;65;10;39;524;91;38;2,80;52,40;19,44;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +15663;25744;"Order";journal;"15729273, 01678094";"Springer Netherlands";No;No;0,348;Q3;30;48;105;923;48;104;0,47;19,23;13,19;0;Netherlands;Western Europe;"Springer Netherlands";"1984-2026";"Algebra and Number Theory (Q3); Computational Theory and Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3); Geometry and Topology (Q3)";"Computer Science; Mathematics" +15664;21101203737;"Physchem";journal;"26737167";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,348;Q3;10;57;92;3349;200;89;2,49;58,75;32,03;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +15665;21100215938;"Profesorado";journal;"1138414X, 19896395";"Grupo de Investigacion FORCE";Yes;Yes;0,348;Q3;29;0;130;0;180;129;1,62;0,00;0,00;0;Spain;Western Europe;"Grupo de Investigacion FORCE";"2012-2024";"Education (Q3)";"Social Sciences" +15666;10800153307;"Revista do Colegio Brasileiro de Cirurgioes";journal;"18094546, 01006991";"Colegio Brasileiro de Cirurgioes";Yes;No;0,348;Q3;33;23;217;695;249;189;1,06;30,22;29,35;0;Brazil;Latin America;"Colegio Brasileiro de Cirurgioes";"2007-2026";"Surgery (Q3)";"Medicine" +15667;21100818505;"Theory of Computing";journal;"15572862";"University of Chicago, Department of Computer Science";Yes;No;0,348;Q3;25;14;43;476;30;38;0,50;34,00;16,22;0;United States;Northern America;"University of Chicago, Department of Computer Science";"2005-2011, 2013-2025";"Computational Theory and Mathematics (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +15668;11600153472;"Journal of Multicultural Discourses";journal;"17447143, 17476615";"Routledge";No;No;0,347;Q1;33;10;72;488;184;55;1,13;48,80;40,00;0;United Kingdom;Western Europe;"Routledge";"2006-2026";"Cultural Studies (Q1); Communication (Q2); Linguistics and Language (Q2)";"Social Sciences" +15669;21101343520;"Theory and Practice of Archaeological Research";journal;"27128202, 23072539";"Altai State University";Yes;No;0,347;Q1;5;54;165;1724;40;165;0,27;31,93;33,02;0;Russian Federation;Eastern Europe;"Altai State University";"2021-2025";"Archeology (arts and humanities) (Q1); Archeology (Q2)";"Arts and Humanities; Social Sciences" +15670;21101012573;"Vestnik Novosibirskogo Gosudarstvennogo Universiteta, Seriya: Istoriya, Filologiya";journal;"18187919";"Novosibirsk State Technical University";Yes;Yes;0,347;Q1;7;123;382;3373;84;382;0,24;27,42;46,83;0;Russian Federation;Eastern Europe;"Novosibirsk State Technical University";"2019-2025";"Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Anthropology (Q2); Archeology (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +15671;4800152405;"Acta Ichthyologica et Piscatoria";journal;"01371592, 17341515";"Pensoft Publishers";Yes;No;0,347;Q2;33;45;100;1649;142;100;1,77;36,64;27,91;0;Poland;Eastern Europe;"Pensoft Publishers";"1996-2026";"Animal Science and Zoology (Q2); Aquatic Science (Q3)";"Agricultural and Biological Sciences" +15672;11700154727;"Chinese Economy";journal;"15580954, 10971475";"M.E. Sharpe Inc.";No;No;0,347;Q2;26;39;87;1652;165;86;1,80;42,36;37,04;0;United States;Northern America;"M.E. Sharpe Inc.";"2008-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +15673;21101124739;"Forensic Anthropology";journal;"25735020, 25735039";"University of Florida Press";No;No;0,347;Q2;17;20;76;899;72;72;0,81;44,95;64,58;0;United States;Northern America;"University of Florida Press";"2018-2026";"Anthropology (Q2)";"Social Sciences" +15674;19400158466;"JMM International Journal on Media Management";journal;"14241250, 14241277";"Taylor and Francis Ltd.";No;No;0,347;Q2;32;5;25;298;36;25;0,79;59,60;55,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Communication (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +15675;19349;"Journal of Mathematical Sociology";journal;"15455874, 0022250X";"Taylor and Francis Ltd.";No;No;0,347;Q2;39;13;43;729;68;42;1,29;56,08;18,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Algebra and Number Theory (Q3)";"Mathematics; Social Sciences" +15676;21101176675;"Modelling";journal;"26733951";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,347;Q2;16;166;172;7200;384;172;2,22;43,37;25,71;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Engineering (miscellaneous) (Q2); Computer Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Modeling and Simulation (Q3)";"Computer Science; Engineering; Mathematics" +15677;25348;"Chinese Annals of Mathematics. Series B";journal;"18606261, 02529599";"Springer Verlag";No;No;0,347;Q3;43;45;168;1102;127;168;0,78;24,49;28,74;0;Germany;Western Europe;"Springer Verlag";"1980, 1996-2026";"Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics" +15678;26530;"Chinese Journal of Organic Chemistry";journal;"02532786";"Science Press";No;No;0,347;Q3;45;295;1149;16356;1903;1148;1,71;55,44;37,28;0;China;Asiatic Region;"Science Press";"1996-2025";"Organic Chemistry (Q3)";"Chemistry" +15679;23154;"Current Treatment Options in Cardiovascular Medicine";journal;"15343189, 10928464";"Springer";No;No;0,347;Q3;44;76;96;5272;126;96;1,30;69,37;37,85;0;United States;Northern America;"Springer";"1999-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +15680;4900152404;"Electrolyte and Blood Pressure";journal;"17385997, 20929935";"Korean Society of Electrolyte and Blood Pressure Research";Yes;No;0,347;Q3;29;6;24;143;31;24;1,06;23,83;37,50;0;South Korea;Asiatic Region;"Korean Society of Electrolyte and Blood Pressure Research";"2006-2025";"Cardiology and Cardiovascular Medicine (Q3); Internal Medicine (Q3); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15681;21101060268;"Frontiers in Dentistry";journal;"2676296X";"Tehran University of Medical Sciences";Yes;No;0,347;Q3;16;54;131;1601;171;128;1,05;29,65;53,09;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +15682;21100307471;"International Journal of Innovation and Technology Management";journal;"17936950, 02198770";"World Scientific";No;No;0,347;Q3;35;30;214;1824;401;212;1,83;60,80;28,57;0;Singapore;Asiatic Region;"World Scientific";"2004-2026";"Management of Technology and Innovation (Q3)";"Business, Management and Accounting" +15683;4700152822;"Journal of Creativity in Mental Health";journal;"15401391, 15401383";"Routledge";No;No;0,347;Q3;30;46;137;2044;184;127;1,36;44,43;76,60;0;United States;Northern America;"Routledge";"2006-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +15684;21100207010;"Journal of Fiber Bioengineering and Informatics";journal;"19408676";"Global Science Press";No;No;0,347;Q3;19;10;73;253;81;73;1,09;25,30;67,86;0;Hong Kong;Asiatic Region;"Global Science Press";"2012-2015, 2018-2025";"Computer Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Computer Science; Materials Science" +15685;12900154727;"Journal of Industrial and Management Optimization";journal;"15475816, 1553166X";"American Institute of Mathematical Sciences";Yes;No;0,347;Q3;46;300;772;12210;1341;772;1,93;40,70;38,87;0;United States;Northern America;"American Institute of Mathematical Sciences";"2007-2025";"Applied Mathematics (Q3); Business and International Management (Q3); Control and Optimization (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Mathematics" +15686;17231;"Journal of Nuclear Medicine Technology";journal;"15355675, 00914916";"Society of Nuclear Medicine Inc.";No;No;0,347;Q3;53;100;241;1971;273;213;1,15;19,71;37,87;0;United States;Northern America;"Society of Nuclear Medicine Inc.";"1974-1976, 1982, 1985-1986, 1988, 1991, 1993-2025";"Medicine (miscellaneous) (Q3); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Health Professions; Medicine" +15687;21100900330;"Marine Systems and Ocean Technology";journal;"1679396X, 21994749";"Springer Nature";No;No;0,347;Q3;19;51;36;2278;98;36;3,07;44,67;17,91;0;Switzerland;Western Europe;"Springer Nature";"2004-2026";"Mechanical Engineering (Q3); Ocean Engineering (Q3)";"Engineering" +15688;21100369113;"Open Mathematics";journal;"23915455";"Walter de Gruyter GmbH";Yes;No;0,347;Q3;40;107;397;2538;337;397;0,81;23,72;37,34;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2005, 2015-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +15689;19900195028;"SA Journal of Industrial Psychology";journal;"20710763, 02585200";"AOSIS (Pty) Ltd";Yes;No;0,347;Q3;40;45;100;2940;204;99;1,91;65,33;53,33;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2011-2026";"Applied Psychology (Q3); Social Psychology (Q3)";"Psychology" +15690;56235;"South African Journal of Clinical Nutrition";journal;"22211268, 16070658";"Taylor and Francis Ltd.";Yes;No;0,347;Q3;30;40;90;1341;103;75;1,27;33,53;63,46;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +15691;21100805726;"Voprosy Obrazovaniya / Educational Studies Moscow";journal;"24124354, 18149545";"National Research University Higher School of Economics (HSE University)";Yes;Yes;0,347;Q3;22;41;123;2117;157;123;1,15;51,63;70,59;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2012-2025";"Education (Q3)";"Social Sciences" +15692;21101200898;"Zhejiang Electric Power";journal;"10071881";"";Yes;Yes;0,347;Q3;14;98;505;2628;756;498;1,92;26,82;31,07;0;China;Asiatic Region;"";"2019-2025";"Energy Engineering and Power Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +15693;21100248929;"International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences - ISPRS Archives";conference and proceedings;"21949034, 16821750";"International Society for Photogrammetry and Remote Sensing";Yes;Yes;0,347;-;96;916;2767;18727;3913;2688;1,45;20,44;32,53;0;Germany;Western Europe;"International Society for Photogrammetry and Remote Sensing";"2000, 2002-2026";"Geography, Planning and Development; Information Systems";"Computer Science; Social Sciences" +15694;21101123252;"Proceedings - IEEE International Symposium on Defect and Fault Tolerance in VLSI and Nanotechnology Systems, DFT";conference and proceedings;"25761501, 2765933X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,347;-;41;35;123;668;173;117;1,34;19,09;20,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2021-2025";"Electrical and Electronic Engineering; Hardware and Architecture; Safety, Risk, Reliability and Quality; Signal Processing";"Computer Science; Engineering" +15695;21100860383;"Cultural-Historical Psychology";journal;"22248935, 18165435";"Moscow State University of Psychology and Education";Yes;Yes;0,346;Q1;15;49;156;1385;127;156;0,80;28,27;61,00;0;Russian Federation;Eastern Europe;"Moscow State University of Psychology and Education";"2018-2025";"Cultural Studies (Q1); Applied Psychology (Q3); Developmental and Educational Psychology (Q3); Psychology (miscellaneous) (Q3); Social Psychology (Q3)";"Psychology; Social Sciences" +15696;12900154715;"International Journal of Ageing and Later Life";journal;"16528670";"Linkoping University Electronic Press";Yes;Yes;0,346;Q1;25;7;21;418;35;20;0,33;59,71;57,14;0;Sweden;Western Europe;"Linkoping University Electronic Press";"2008-2025";"Cultural Studies (Q1); Gender Studies (Q2); Health (social science) (Q3); Life-span and Life-course Studies (Q3)";"Social Sciences" +15697;19700168801;"Journal of Eurasian Studies";journal;"18793665, 18793673";"SAGE Publications Inc.";Yes;Yes;0,346;Q1;35;30;53;1832;88;50;1,53;61,07;50,67;2;United Kingdom;Western Europe;"SAGE Publications Inc.";"2010-2026";"Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +15698;21100979260;"Advances in Traditional Medicine";journal;"26624060, 26624052";"Springer";No;No;0,346;Q2;31;89;234;6058;500;234;2,07;68,07;40,76;0;Singapore;Asiatic Region;"Springer";"2020-2026";"Complementary and Alternative Medicine (Q2)";"Medicine" +15699;21101039227;"Arktika: Ekologia i Ekonomika";journal;"22234594";"Nuclear Safety Institute of the Russian Academy of Sciences";Yes;Yes;0,346;Q2;12;52;151;1382;137;151;0,98;26,58;47,55;0;Russian Federation;Eastern Europe;"Nuclear Safety Institute of the Russian Academy of Sciences";"2020-2025";"Geography, Planning and Development (Q2); Social Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Earth-Surface Processes (Q3); Ecology (Q3); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +15700;21100826324;"Atom Indonesia";journal;"23565322, 01261568";"National Research and Innovation Agency (BRIN)";Yes;Yes;0,346;Q2;15;11;91;343;93;89;1,07;31,18;33,33;0;Indonesia;Asiatic Region;"National Research and Innovation Agency (BRIN)";"2010-2025";"Radiation (Q2); Nuclear and High Energy Physics (Q3); Nuclear Energy and Engineering (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Waste Management and Disposal (Q3)";"Energy; Environmental Science; Medicine; Physics and Astronomy" +15701;21100197918;"International Journal of Zoology";journal;"16878485, 16878477";"John Wiley and Sons Ltd";Yes;No;0,346;Q2;25;28;46;1197;73;46;1,55;42,75;20,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +15702;16707;"Journal of Family Therapy";journal;"14676427, 01634445";"Wiley-Blackwell Publishing Ltd";No;No;0,346;Q2;55;30;99;1750;129;87;0,98;58,33;55,22;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1979-2026";"Social Sciences (miscellaneous) (Q2); Clinical Psychology (Q3); Social Psychology (Q3)";"Psychology; Social Sciences" +15703;21101156859;"Journal of Micromanufacturing";journal;"25165984, 25165992";"SAGE Publications Ltd";No;No;0,346;Q2;11;73;69;3432;160;66;1,75;47,01;8,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2022-2026";"Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q3)";"Engineering" +15704;21101134570;"Jurnal Sylva Lestari";journal;"23390913, 25495747";"University of Lampung Faculty of Agriculture";Yes;No;0,346;Q2;10;56;128;2722;263;128;2,00;48,61;44,59;0;Indonesia;Asiatic Region;"University of Lampung Faculty of Agriculture";"2019-2020, 2022-2026";"Forestry (Q2); Geography, Planning and Development (Q2); Ecology (Q3); Nature and Landscape Conservation (Q3)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +15705;21100199833;"Russian Journal of Theriology";journal;"16823559";"KMK Scientific Press";No;No;0,346;Q2;15;18;59;838;46;59;0,84;46,56;35,09;0;Russian Federation;Eastern Europe;"KMK Scientific Press";"2011-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +15706;21100844882;"Science Editing";journal;"22887474, 22888063";"Korean Council of Science Editors";Yes;Yes;0,346;Q2;19;39;81;527;119;74;1,81;13,51;37,88;0;South Korea;Asiatic Region;"Korean Council of Science Editors";"2014-2025";"Communication (Q2); Health Informatics (Q3)";"Medicine; Social Sciences" +15707;21100814513;"Species Diversity";journal;"13421670";"Japanese Society of Systematic Zoology";Yes;No;0,346;Q2;9;26;93;1194;66;91;0,77;45,92;19,67;0;Japan;Asiatic Region;"Japanese Society of Systematic Zoology";"2016-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15708;21100206241;"Algebra and Discrete Mathematics";journal;"2415721X, 17263255";"Lugansk Taras Shevchenko National University";Yes;No;0,346;Q3;13;32;106;603;50;106;0,44;18,84;30,51;0;Ukraine;Eastern Europe;"Lugansk Taras Shevchenko National University";"2012-2025";"Algebra and Number Theory (Q3); Discrete Mathematics and Combinatorics (Q3)";"Mathematics" +15709;12100157246;"Australian Journal of Mechanical Engineering";journal;"14484846";"Taylor and Francis Ltd.";No;No;0,346;Q3;28;90;312;3420;684;312;2,10;38,00;14,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2009, 2011-2026";"Mechanical Engineering (Q3)";"Engineering" +15710;21100779068;"Comprehensive Child and Adolescent Nursing";journal;"24694207, 24694193";"Taylor and Francis Ltd.";No;No;0,346;Q3;45;18;95;834;132;72;1,38;46,33;82,69;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Pediatrics (Q3)";"Nursing" +15711;27643;"Critical Care Nursing Quarterly";journal;"15505111, 08879303";"Wolters Kluwer Health";No;No;0,346;Q3;42;50;127;1281;166;115;1,21;25,62;53,98;0;United States;Northern America;"Wolters Kluwer Health";"1987-2026";"Critical Care Nursing (Q3)";"Nursing" +15712;21100899293;"Current Medical Mycology";journal;"24233420, 24233439";"Mazandaran University of Medical Sciences";Yes;Yes;0,346;Q3;20;27;91;984;160;91;1,56;36,44;54,05;0;Iran;Middle East;"Mazandaran University of Medical Sciences";"2018-2026";"Infectious Diseases (Q3); Microbiology (Q4)";"Immunology and Microbiology; Medicine" +15713;4500151542;"International Journal of Intelligent Information Technologies";journal;"15483665, 15483657";"IGI Publishing";No;No;0,346;Q3;23;24;54;952;110;54;2,60;39,67;47,76;0;United States;Northern America;"IGI Publishing";"2005-2026";"Decision Sciences (miscellaneous) (Q3); Information Systems (Q3)";"Computer Science; Decision Sciences" +15714;5600154732;"Journal for Specialists in Group Work";journal;"01933922, 15496295";"Routledge";No;No;0,346;Q3;35;9;55;433;66;41;0,98;48,11;85,00;0;United Kingdom;Western Europe;"Routledge";"1981-2025";"Developmental and Educational Psychology (Q3); Social Psychology (Q3)";"Psychology" +15715;22444;"Journal of Parasitology";journal;"19372345, 00223395";"American Society of Parasitologists";No;No;0,346;Q3;108;70;222;1746;247;220;1,03;24,94;36,08;0;United States;Northern America;"American Society of Parasitologists";"1945-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Medicine (miscellaneous) (Q3); Parasitology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +15716;12162;"Journal of the Marine Biological Association of the United Kingdom";journal;"14697769, 00253154";"Cambridge University Press";No;No;0,346;Q3;84;135;277;6778;337;275;1,11;50,21;37,52;0;United Kingdom;Western Europe;"Cambridge University Press";"1887-1900, 1902-1904, 1906-2026";"Aquatic Science (Q3)";"Agricultural and Biological Sciences" +15717;40352;"Marine and Freshwater Behaviour and Physiology";journal;"10290362, 10236244";"Taylor and Francis Ltd.";No;No;0,346;Q3;44;10;26;528;37;26;1,44;52,80;47,83;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2025";"Aquatic Science (Q3); Oceanography (Q3); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Earth and Planetary Sciences" +15718;100147333;"Marine Biology Research";journal;"17451000, 17451019";"Taylor and Francis Ltd.";No;No;0,346;Q3;66;31;134;1840;177;133;1,24;59,35;45,69;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Oceanography (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +15719;33944;"Medical Archives";journal;"0350199X, 19865961";"";Yes;No;0,346;Q3;40;86;226;1694;343;221;1,32;19,70;39,90;0;Bosnia and Herzegovina;Eastern Europe;"";"1950, 1952-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +15720;20500195211;"Mental Health Review Journal";journal;"13619322, 20428758";"Emerald Publishing";No;No;0,346;Q3;32;12;90;703;124;87;1,03;58,58;58,00;0;United Kingdom;Western Europe;"Emerald Publishing";"1996, 1998-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +15721;144667;"Property Management";journal;"02637472";"Emerald Publishing";No;No;0,346;Q3;37;62;125;4287;299;125;2,48;69,15;24,34;0;United Kingdom;Western Europe;"Emerald Publishing";"1983-2026";"Business, Management and Accounting (miscellaneous) (Q3); Finance (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15722;12700154743;"Psykhe";journal;"07182228, 07170297";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,346;Q3;27;20;94;1337;110;93;0,89;66,85;54,10;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2007-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +15723;19700201143;"Urology Annals";journal;"09747834, 09747796";"Wolters Kluwer Medknow Publications";Yes;No;0,346;Q3;32;29;205;676;229;203;1,06;23,31;15,13;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2010-2026";"Urology (Q3)";"Medicine" +15724;25590;"British Journal of Middle Eastern Studies";journal;"14693542, 13530194";"Routledge";No;No;0,345;Q1;35;115;186;1;218;184;1,13;0,01;39,44;6;United Kingdom;Western Europe;"Routledge";"1992-2026";"History (Q1); Geography, Planning and Development (Q2); Earth-Surface Processes (Q3)";"Arts and Humanities; Earth and Planetary Sciences; Social Sciences" +15725;20194;"Journal of British Studies";journal;"00219371, 15456986";"Cambridge University Press";No;No;0,345;Q1;48;20;90;2944;74;90;0,65;147,20;58,62;0;United Kingdom;Western Europe;"Cambridge University Press";"1962-2026";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +15726;21101169071;"Applied Research";journal;"27024288";"Wiley-VCH Verlag";No;No;0,345;Q2;11;84;171;5101;324;169;1,87;60,73;28,26;0;Germany;Western Europe;"Wiley-VCH Verlag";"2022-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +15727;24798;"Asian Journal of Social Science";journal;"15684849, 15685314";"Department of Sociology, National University of Singapore";No;No;0,345;Q2;32;25;81;1421;147;79;1,78;56,84;53,19;0;Singapore;Asiatic Region;"Department of Sociology, National University of Singapore";"1973-1995, 2000-2026";"Anthropology (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15728;21100840337;"Baghdad Science Journal";journal;"24117986, 20788665";"University of Baghdad";Yes;No;0,345;Q2;25;360;772;11934;1752;772;2,17;33,15;45,26;0;Iraq;Middle East;"University of Baghdad";"2017-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Computer Science; Mathematics; Physics and Astronomy" +15729;5300152523;"Cahiers Agricultures";journal;"11667699, 17775949";"EDP Sciences";Yes;Yes;0,345;Q2;29;35;91;1442;115;89;1,34;41,20;40,54;0;France;Western Europe;"EDP Sciences";"2006-2026";"Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Management, Monitoring, Policy and Law (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15730;21101045709;"Forensic Science International: Mind and Law";journal;"26663538";"Elsevier B.V.";Yes;No;0,345;Q2;14;0;35;0;82;27;2,05;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2024";"Law (Q2); Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3)";"Medicine; Psychology; Social Sciences" +15731;21101256428;"Fundamental Plasma Physics";journal;"27728285";"Elsevier B.V.";Yes;No;0,345;Q2;5;14;51;642;75;50;1,53;45,86;16,67;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Multidisciplinary (Q2); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Mathematics; Multidisciplinary; Physics and Astronomy" +15732;12100156709;"Herpetological Conservation and Biology";journal;"19317603, 21510733";"Herpetological Conservation and Biology";Yes;No;0,345;Q2;34;53;156;2774;146;156;0,67;52,34;28,30;0;United States;Northern America;"Herpetological Conservation and Biology";"2008-2025";"Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15733;21101172919;"ICL Journal";journal;"23063734, 19955855";"Walter de Gruyter GmbH";No;No;0,345;Q2;11;20;51;2559;44;47;0,90;127,95;9,09;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2007-2026";"Law (Q2)";"Social Sciences" +15734;21100886226;"International Journal of Evidence and Proof";journal;"13657127, 17405572";"SAGE Publications Ltd";No;No;0,345;Q2;14;25;53;1251;64;52;1,25;50,04;44,23;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2026";"Law (Q2); Sociology and Political Science (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +15735;21101065534;"Iranian Journal of Veterinary Medicine";journal;"22518894, 22520554";"University of Tehran, Faculty of Veterinary Medicine";Yes;No;0,345;Q2;10;75;156;3031;250;155;1,72;40,41;31,60;0;Iran;Middle East;"University of Tehran, Faculty of Veterinary Medicine";"2020-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +15736;19700173116;"Journal of Children's Services";journal;"17466660";"Emerald Group Publishing Ltd.";No;No;0,345;Q2;30;11;50;543;77;49;0,97;49,36;65,79;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2006-2026";"Law (Q2); Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3); Education (Q3); Health (social science) (Q3)";"Psychology; Social Sciences" +15737;5700188665;"Journal of English Linguistics";journal;"00754242, 15525457";"SAGE Publications Ltd";No;No;0,345;Q2;40;15;40;828;33;34;1,04;55,20;63,64;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1967-1981, 1983-1990, 1996-2026";"Linguistics and Language (Q2)";"Social Sciences" +15738;19900191564;"Journal of International Peacekeeping";journal;"18754104, 18754112";"Brill Academic Publishers";No;No;0,345;Q2;15;38;60;2278;53;57;0,91;59,95;26,23;0;Netherlands;Western Europe;"Brill Academic Publishers";"1994-1998, 2000-2001, 2004-2025";"Law (Q2); Political Science and International Relations (Q2); Infectious Diseases (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +15739;24277;"Studia Linguistica";journal;"14679582, 00393193";"John Wiley and Sons Inc";No;No;0,345;Q2;38;19;62;1195;47;62;0,58;62,89;34,38;0;United States;Northern America;"John Wiley and Sons Inc";"1947-1949, 1951-2026";"History and Philosophy of Science (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +15740;145170;"Zhongnan Daxue Xuebao (Ziran Kexue Ban)/Journal of Central South University (Science and Technology)";journal;"16727207";"Central South University";No;No;0,345;Q2;38;434;1256;14401;1841;1256;1,33;33,18;28,93;0;China;Asiatic Region;"Central South University";"2005-2025";"Metals and Alloys (Q2); Condensed Matter Physics (Q3); Geotechnical Engineering and Engineering Geology (Q3); Materials Chemistry (Q3)";"Earth and Planetary Sciences; Materials Science; Physics and Astronomy" +15741;21100211328;"Caspian Journal of Internal Medicine";journal;"20086172, 20086164";"Babol University of Medical Sciences";Yes;No;0,345;Q3;40;101;313;3195;409;308;1,30;31,63;41,70;0;Iran;Middle East;"Babol University of Medical Sciences";"2010-2026";"Internal Medicine (Q3)";"Medicine" +15742;4700152612;"Current Nanoscience";journal;"18756786, 15734137";"Bentham Science Publishers";No;No;0,345;Q3;57;82;194;6908;525;185;2,63;84,24;40,26;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Biomedical Engineering (Q3); Biotechnology (Q3); Medicine (miscellaneous) (Q3); Pharmaceutical Science (Q3); Bioengineering (Q4); Nanoscience and Nanotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +15743;5300152229;"Electronic Journal of Structural Engineering";journal;"14439255";"";Yes;No;0,345;Q3;25;26;87;976;155;87;1,73;37,54;38,36;0;Australia;Pacific Region;"";"2001-2026";"Civil and Structural Engineering (Q3)";"Engineering" +15744;21101196747;"Hardy-Ramanujan Journal";journal;"28047370";"Hardy-Ramanujan Society";No;No;0,345;Q3;5;0;22;0;10;22;0,58;0,00;0,00;0;India;Asiatic Region;"Hardy-Ramanujan Society";"2019-2024";"Algebra and Number Theory (Q3)";"Mathematics" +15745;1000147113;"Indian Journal of Plastic Surgery";journal;"1998376X, 09700358";"Georg Thieme Verlag";Yes;Yes;0,345;Q3;48;0;234;0;234;178;0,85;0,00;0,00;0;India;Asiatic Region;"Georg Thieme Verlag";"1968-1985, 1987-1996, 1999-2001, 2003-2024";"Surgery (Q3)";"Medicine" +15746;19900192159;"International Journal of Sensor Networks";journal;"17481287, 17481279";"Inderscience";No;No;0,345;Q3;37;61;187;2079;320;187;2,03;34,08;26,19;0;United Kingdom;Western Europe;"Inderscience";"2006-2026";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +15747;25919;"Journal of Surfactants and Detergents";journal;"15589293, 10973958";"John Wiley & Sons Inc.";No;No;0,345;Q3;65;112;216;5684;496;210;2,28;50,75;42,64;0;Germany;Western Europe;"John Wiley & Sons Inc.";"1998-2026";"Chemical Engineering (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q3); Surfaces, Coatings and Films (Q3)";"Chemical Engineering; Chemistry; Materials Science" +15748;21101309424;"Journal of the Pediatric Orthopaedic Society of North America";journal;"27682765";"Elsevier B.V.";Yes;No;0,345;Q3;8;119;331;3123;315;288;1,05;26,24;40,04;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2026";"Orthopedics and Sports Medicine (Q3); Pediatrics, Perinatology and Child Health (Q3); Rehabilitation (Q3); Surgery (Q3)";"Medicine" +15749;24819;"Natural Product Research";journal;"14786427, 14786419";"Taylor and Francis Ltd.";No;No;0,345;Q3;82;1712;2146;50407;4582;2137;2,04;29,44;44,65;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Analytical Chemistry (Q3); Biochemistry (Q3); Organic Chemistry (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry" +15750;21100375849;"Open Physics";journal;"23915471";"Walter de Gruyter GmbH";Yes;No;0,345;Q3;50;128;360;5636;914;360;2,84;44,03;29,43;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2015-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +15751;21100936375;"Policy and Practice";journal;"1748135X, 20534272";"Centre for Global Education";Yes;Yes;0,345;Q3;7;14;60;475;56;43;0,80;33,93;69,57;0;United Kingdom;Western Europe;"Centre for Global Education";"2019-2025";"Education (Q3)";"Social Sciences" +15752;17331;"Quarterly Journal of Nuclear Medicine and Molecular Imaging";journal;"18244785, 18271936";"Edizioni Minerva Medica S.p.A.";No;No;0,345;Q3;67;34;111;1636;128;100;1,25;48,12;33,33;0;Italy;Western Europe;"Edizioni Minerva Medica S.p.A.";"2004-2025";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +15753;21100902869;"South African Journal of Childhood Education";journal;"22237674, 22237682";"AOSIS (Pty) Ltd";Yes;No;0,345;Q3;14;39;156;1904;219;151;1,26;48,82;67,61;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2019-2026";"Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +15754;19900191824;"Sultan Qaboos University Medical Journal";journal;"20750528, 2075051X";"Sultan Qaboos University";Yes;Yes;0,345;Q3;41;148;302;3605;318;248;0,85;24,36;45,26;0;Oman;Middle East;"Sultan Qaboos University";"2000-2003, 2006-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +15755;23656;"Systemic Practice and Action Research";journal;"1094429X, 15739295";"Springer New York";No;No;0,345;Q3;45;40;139;2440;273;139;2,01;61,00;38,95;0;United States;Northern America;"Springer New York";"1996, 1998-2026";"Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +15756;19700186905;"Zhongguo Guanxing Jishu Xuebao/Journal of Chinese Inertial Technology";journal;"10056734";"Editorial Department of Journal of Chinese Inertial Technology";No;No;0,345;Q3;24;85;424;1491;531;424;1,23;17,54;30,27;0;China;Asiatic Region;"Editorial Department of Journal of Chinese Inertial Technology";"2010-2025";"Aerospace Engineering (Q3); Control and Systems Engineering (Q3)";"Engineering" +15757;12573;"Food and Foodways";journal;"15423484, 07409710";"Taylor and Francis Ltd.";No;No;0,344;Q1;24;16;48;930;80;46;1,21;58,13;62,79;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-1994, 1999, 2001, 2007-2026";"Cultural Studies (Q1); Anthropology (Q2); Sociology and Political Science (Q2); Food Science (Q3); Health (social science) (Q3)";"Agricultural and Biological Sciences; Social Sciences" +15758;5800207716;"Gesture";journal;"15699773, 15681475";"John Benjamins Publishing Company";No;No;0,344;Q1;50;2;30;101;37;30;0,80;50,50;100,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2001-2014, 2016-2026";"Cultural Studies (Q1); Communication (Q2); Linguistics and Language (Q2); Experimental and Cognitive Psychology (Q4)";"Psychology; Social Sciences" +15759;21101136680;"Bereavement";journal;"27547833";"Cruse Bereavement Care";No;No;0,344;Q2;22;0;37;0;51;32;0,82;0,00;0,00;0;United Kingdom;Western Europe;"Cruse Bereavement Care";"2022-2024";"Advanced and Specialized Nursing (Q2); Gerontology (Q3); Health (social science) (Q3); Social Psychology (Q3)";"Nursing; Psychology; Social Sciences" +15760;21101104290;"China Safety Science Journal";journal;"10033033";"Editorial Department of China Safety Science Journal";No;No;0,344;Q2;18;212;1120;4196;1193;1120;1,05;19,79;36,13;0;China;Asiatic Region;"Editorial Department of China Safety Science Journal";"2019-2025";"Safety, Risk, Reliability and Quality (Q2); Public Health, Environmental and Occupational Health (Q3); Safety Research (Q3)";"Engineering; Medicine; Social Sciences" +15761;25953;"Dados";journal;"16784588, 00115258";"Instituto de Estudos Sociais e Politicos (IESP), UERJ";Yes;Yes;0,344;Q2;34;68;92;4441;73;91;1,02;65,31;32,08;5;Brazil;Latin America;"Instituto de Estudos Sociais e Politicos (IESP), UERJ";"1996-2025";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +15762;28140;"International Journal of Palliative Nursing";journal;"2052286X, 13576321";"MA Healthcare Ltd";No;No;0,344;Q2;50;72;223;1920;184;177;0,68;26,67;66,82;0;United Kingdom;Western Europe;"MA Healthcare Ltd";"2000-2025";"Advanced and Specialized Nursing (Q2)";"Nursing" +15763;21100970232;"Journal of Applied Biology and Biotechnology";journal;"2347212X";"Open Science Publishers LLP Inc.";Yes;No;0,344;Q2;26;149;527;8237;1088;515;1,82;55,28;42,19;0;India;Asiatic Region;"Open Science Publishers LLP Inc.";"2019-2026";"Agronomy and Crop Science (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biotechnology (Q3); Food Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +15764;22038;"Journal of Raptor Research";journal;"08921016";"Raptor Research Foundation, Inc.";No;No;0,344;Q2;42;49;195;2157;178;157;0,88;44,02;29,35;1;United States;Northern America;"Raptor Research Foundation, Inc.";"1990-2025";"Animal Science and Zoology (Q2)";"Agricultural and Biological Sciences" +15765;23028;"New Zealand Journal of Forestry Science";journal;"11795395, 00480134";"Scion";Yes;Yes;0,344;Q2;39;18;54;961;70;54;1,00;53,39;35,48;1;Switzerland;Western Europe;"Scion";"1979, 1981, 1983-2026";"Forestry (Q2); Chemical Engineering (miscellaneous) (Q3); Ecology (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Chemical Engineering; Environmental Science" +15766;21100861552;"Noise Mapping";journal;"2084879X";"Walter de Gruyter GmbH";Yes;No;0,344;Q2;27;7;52;644;99;52;1,70;92,00;30,43;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2014-2026";"Acoustics and Ultrasonics (Q2); Urban Studies (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Physics and Astronomy; Social Sciences" +15767;21101039405;"RUDN Journal of Language Studies, Semiotics and Semantics";journal;"24111236, 23132299";"Peoples' Friendship University of Russia";Yes;Yes;0,344;Q2;10;85;225;1992;110;225;0,44;23,44;75,76;0;Russian Federation;Eastern Europe;"Peoples' Friendship University of Russia";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +15768;21100203503;"Acta Informatica Medica";journal;"03538109, 19865988";"Avicena Publishing";Yes;No;0,344;Q3;39;55;129;1315;192;125;1,22;23,91;34,85;0;Bosnia and Herzegovina;Eastern Europe;"Avicena Publishing";"2012-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +15769;11300153729;"Biochemistry (Moscow) Supplement Series A: Membrane and Cell Biology";journal;"19907478, 19907494";"";No;No;0,344;Q3;18;67;119;2073;192;119;0,77;30,94;54,32;0;Russian Federation;Eastern Europe;"";"2007-2026";"Biochemistry (Q3); Biophysics (Q3); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +15770;19679;"Diseases of Aquatic Organisms";journal;"16161580, 01775103";"Inter-Research";No;No;0,344;Q3;119;55;192;2560;267;192;1,21;46,55;48,43;0;Germany;Western Europe;"Inter-Research";"1990-2026";"Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15771;21100897517;"EPJ Applied Metamaterials";journal;"22722394";"EDP Sciences";Yes;No;0,344;Q3;19;7;37;329;63;37;2,28;47,00;18,52;0;France;Western Europe;"EDP Sciences";"2014-2026";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +15772;21101334580;"European Journal on Artificial Intelligence";journal;"30504546, 30504554";"SAGE Publications Ltd";No;No;0,344;Q3;47;22;78;1055;134;74;1,29;47,95;37,66;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2025-2026";"Artificial Intelligence (Q3)";"Computer Science" +15773;25884;"Geofluids";journal;"14688115, 14688123";"John Wiley and Sons Ltd";Yes;No;0,344;Q3;75;74;1191;3103;1899;1189;1,30;41,93;29,25;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2001-2026";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +15774;19500157820;"GMS German Medical Science";journal;"16123174";"Association of the Scientific Medical Societies in Germany";Yes;Yes;0,344;Q3;34;17;36;91;82;36;1,33;5,35;34,65;0;Germany;Western Europe;"Association of the Scientific Medical Societies in Germany";"2009-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +15775;21101056445;"Journal of Hand and Microsurgery";journal;"09743227, 09746897";"Society for Indian Hand Surgery and Microsurgeons";No;No;0,344;Q3;10;137;240;3652;200;202;0,85;26,66;25,43;0;United States;Northern America;"Society for Indian Hand Surgery and Microsurgeons";"2014-2015, 2018-2026";"Surgery (Q3)";"Medicine" +15776;145396;"Journal of Minimal Access Surgery";journal;"19983921, 09729941";"Wolters Kluwer Medknow Publications";Yes;No;0,344;Q3;37;80;296;1342;325;290;1,07;16,78;23,62;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2005-2026";"Surgery (Q3)";"Medicine" +15777;13027;"Journal of Propulsion Technology";journal;"10014055";"China Aerospace Science and Industry Corp";No;No;0,344;Q3;30;305;1110;9790;1272;1110;1,13;32,10;27,16;0;China;Asiatic Region;"China Aerospace Science and Industry Corp";"1991-2026";"Aerospace Engineering (Q3)";"Engineering" +15778;21100828127;"Journal of Vascular Surgery Cases, Innovations and Techniques";journal;"24684287";"Society for Vascular Surgery";Yes;No;0,344;Q3;17;320;745;4360;652;701;0,93;13,63;26,51;0;United States;Northern America;"Society for Vascular Surgery";"2016-2026";"Cardiology and Cardiovascular Medicine (Q3); Surgery (Q3)";"Medicine" +15779;17567;"Lakes and Reservoirs: Science, Policy and Management for Sustainable Use";journal;"14401770, 13205331";"Wiley-Blackwell Publishing Ltd";No;No;0,344;Q3;45;19;71;1175;116;71;1,70;61,84;21,21;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1995-1996, 1998-2026";"Water Science and Technology (Q3)";"Environmental Science" +15780;21100920046;"LUMAT";journal;"23237112";"University of Helsinki";Yes;Yes;0,344;Q3;13;26;91;1513;114;86;1,03;58,19;69,41;0;Finland;Western Europe;"University of Helsinki";"2016-2025";"Education (Q3)";"Social Sciences" +15781;14153;"Molecular Biology";journal;"16083245, 00268933";"";No;No;0,344;Q3;33;103;306;5727;362;306;1,03;55,60;51,88;0;Russian Federation;Eastern Europe;"";"1971-1976, 1979-1982, 1996-2026";"Biophysics (Q3); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +15782;21101094914;"Observational Studies";journal;"27673324";"University of Pennsylvania Press";Yes;Yes;0,344;Q3;9;16;54;478;65;44;1,15;29,88;18,60;0;United States;Northern America;"University of Pennsylvania Press";"2019-2025";"Applied Mathematics (Q3); Computer Science Applications (Q3); Modeling and Simulation (Q3); Numerical Analysis (Q3); Statistics and Probability (Q3)";"Computer Science; Mathematics" +15783;19700183135;"Pan African Medical Journal";journal;"19378688";"African Field Epidemiology Network";Yes;No;0,344;Q3;59;414;2019;6488;1913;1708;0,77;15,67;43,25;0;Nigeria;Africa;"African Field Epidemiology Network";"2010-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +15784;145603;"Periodica Mathematica Hungarica";journal;"00315303, 15882829";"Springer Nature";No;No;0,344;Q3;29;81;211;1618;142;211;0,59;19,98;25,50;0;Switzerland;Western Europe;"Springer Nature";"1971-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +15785;26392;"Russian Journal of Numerical Analysis and Mathematical Modelling";journal;"15693988, 09276467";"Walter de Gruyter GmbH";No;No;0,344;Q3;26;32;91;1002;78;90;0,98;31,31;21,95;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1986-2026";"Computational Mathematics (Q3); Modeling and Simulation (Q3); Numerical Analysis (Q3)";"Mathematics" +15786;19900191737;"Studies in Informatics and Control";journal;"12201766, 1841429X";"National Institute for R and D in Informatics";Yes;No;0,344;Q3;33;40;124;1137;235;124;2,20;28,43;29,10;0;Romania;Eastern Europe;"National Institute for R and D in Informatics";"2010-2025";"Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +15787;27401;"Theory of Probability and its Applications";journal;"0040585X, 10957219";"Society for Industrial and Applied Mathematics Publications";No;No;0,344;Q3;37;40;153;803;72;151;0,59;20,08;26,42;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"1996-2025";"Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +15788;21100940504;"Filosofskii Zhurnal";journal;"20720726, 26584883";"Russian Academy of Sciences";No;No;0,343;Q1;4;54;157;1670;39;157;0,29;30,93;24,07;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2019-2025";"Cultural Studies (Q1); Philosophy (Q1); History and Philosophy of Science (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +15789;5700154038;"Metaphilosophy";journal;"14679973, 00261068";"Wiley-Blackwell Publishing Ltd";No;No;0,343;Q1;50;38;143;1577;120;142;0,84;41,50;27,50;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1970-2026";"Philosophy (Q1)";"Arts and Humanities" +15790;7100153146;"Review of Central and East European Law";journal;"09259880, 15730352";"Martinus Nijhoff Publishers";No;No;0,343;Q1;19;6;50;805;37;46;0,47;134,17;14,29;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"1975, 1977-1981, 1983-2026";"Classics (Q1); History (Q1); Philosophy (Q1); Law (Q2)";"Arts and Humanities; Social Sciences" +15791;14717;"Technology and Culture";journal;"10973729, 0040165X";"Johns Hopkins University Press";No;No;0,343;Q1;46;41;242;1880;108;236;0,66;45,85;32,65;0;United States;Northern America;"Johns Hopkins University Press";"1970, 1974-1976, 1978-1982, 1984-1993, 1995-2026";"History (Q1); Engineering (miscellaneous) (Q2)";"Arts and Humanities; Engineering" +15792;80174;"Annals of Finance";journal;"16142454, 16142446";"Springer Verlag";No;No;0,343;Q2;30;20;59;818;67;59;1,13;40,90;42,86;0;Germany;Western Europe;"Springer Verlag";"2005-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q3)";"Economics, Econometrics and Finance" +15793;74937;"Autex Research Journal";journal;"23000929, 14709589";"Walter de Gruyter GmbH";Yes;No;0,343;Q2;43;40;180;1373;312;180;1,85;34,33;38,76;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"1999-2000, 2002-2026";"Industrial and Manufacturing Engineering (Q2); Management of Technology and Innovation (Q3); Materials Science (miscellaneous) (Q3)";"Business, Management and Accounting; Engineering; Materials Science" +15794;25158;"Global Governance";journal;"10752846, 19426720";"Brill Academic Publishers";No;No;0,343;Q2;76;20;83;1167;84;80;1,13;58,35;30,77;1;United States;Northern America;"Brill Academic Publishers";"1996-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2); Environmental Science (miscellaneous) (Q3); Safety Research (Q3)";"Environmental Science; Social Sciences" +15795;21100945250;"Journal of Feline Medicine and Surgery Open Reports";journal;"20551169";"SAGE Publications Ltd";Yes;No;0,343;Q2;19;69;186;1538;160;186;0,68;22,29;59,72;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2015-2026";"Small Animals (Q2)";"Veterinary" +15796;21101192898;"Journal of Soft Computing and Data Mining";journal;"2716621X";"Penerbit UTHM";No;No;0,343;Q2;14;56;68;2010;206;68;3,53;35,89;25,83;0;Malaysia;Asiatic Region;"Penerbit UTHM";"2020-2026";"Information Systems and Management (Q2); Artificial Intelligence (Q3); Software (Q3); Theoretical Computer Science (Q3)";"Computer Science; Decision Sciences; Mathematics" +15797;4500151507;"Lixue Xuebao/Chinese Journal of Theoretical and Applied Mechanics";journal;"04591879";"Chinese Society of Theoretical and Applied Mechanics";No;No;0,343;Q2;39;227;778;10005;1319;771;1,49;44,07;29,89;0;China;Asiatic Region;"Chinese Society of Theoretical and Applied Mechanics";"2006-2025";"Computational Mechanics (Q2); Applied Mathematics (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Mathematics" +15798;21100829246;"Mechanical Sciences";journal;"2191916X, 21919151";"Copernicus Publications";Yes;No;0,343;Q2;37;67;175;2255;303;175;1,50;33,66;29,47;0;Germany;Western Europe;"Copernicus Publications";"2010-2026";"Industrial and Manufacturing Engineering (Q2); Civil and Structural Engineering (Q3); Control and Systems Engineering (Q3); Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Chemical Engineering; Engineering" +15799;25587;"Pacific Economic Review";journal;"1361374X, 14680106";"Wiley-Blackwell Publishing Ltd";No;No;0,343;Q2;39;8;74;393;100;71;1,51;49,13;33,33;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1996-2026";"Geography, Planning and Development (Q2); Aerospace Engineering (Q3); Development (Q3); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Engineering; Social Sciences" +15800;5600153110;"Revista Espanola de Investigaciones Sociologicas";journal;"19885903, 02105233";"Centro de Investigaciones Sociologicas";Yes;Yes;0,343;Q2;26;41;97;2142;124;97;1,19;52,24;48,68;15;Spain;Western Europe;"Centro de Investigaciones Sociologicas";"1980-1983, 2008-2025";"Sociology and Political Science (Q2)";"Social Sciences" +15801;5800207822;"Terminology";journal;"15699994, 09299971";"John Benjamins Publishing Company";No;No;0,343;Q2;31;16;32;763;39;30;1,00;47,69;66,67;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1994-1998, 2000-2026";"Communication (Q2); Library and Information Sciences (Q2); Linguistics and Language (Q2)";"Social Sciences" +15802;21101075645;"World Water Policy";journal;"2639541X";"John Wiley & Sons Inc.";No;No;0,343;Q2;12;76;148;3796;207;107;1,36;49,95;31,65;0;United States;Northern America;"John Wiley & Sons Inc.";"2019-2026";"Geography, Planning and Development (Q2); Ecology (Q3); Management, Monitoring, Policy and Law (Q3); Public Administration (Q3); Water Science and Technology (Q3)";"Environmental Science; Social Sciences" +15803;24581;"Animal Biodiversity and Conservation";journal;"2014928X, 1578665X";"Museu de Ciencies Naturals";Yes;Yes;0,343;Q3;43;10;73;862;72;72;1,00;86,20;39,39;0;Spain;Western Europe;"Museu de Ciencies Naturals";"2001-2025";"Animal Science and Zoology (Q3); Nature and Landscape Conservation (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15804;21100830161;"Contemporary Mathematics";book series;"02714132, 10983627";"American Mathematical Society";No;No;0,343;Q3;29;221;383;5467;482;323;0,37;24,74;22,33;0;United States;Northern America;"American Mathematical Society";"2005, 2008-2011, 2013-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +15805;4800152317;"Financial Markets and Portfolio Management";journal;"19344554, 23738529";"Springer New York";No;No;0,343;Q3;31;28;51;1199;109;48;2,29;42,82;15,25;0;United States;Northern America;"Springer New York";"2006-2026";"Accounting (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15806;5100155027;"Geological Bulletin of China";journal;"16712552";"China Geological Survey";No;No;0,343;Q3;64;114;511;5985;597;511;1,19;52,50;32,25;0;China;Asiatic Region;"China Geological Survey";"2006-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +15807;19900191878;"Infocommunications Journal";journal;"20612125, 20612079";"Scientific Association for Infocommunications";No;No;0,343;Q3;15;38;140;1119;236;133;1,82;29,45;29,63;0;Hungary;Eastern Europe;"Scientific Association for Infocommunications";"2011-2025";"Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +15808;12100154806;"International Journal of e-Business Research";journal;"1548114X, 15481131";"IGI Publishing";No;No;0,343;Q3;34;4;42;249;143;41;3,55;62,25;25,00;0;United States;Northern America;"IGI Publishing";"2005-2025";"Computer Science Applications (Q3); Management Information Systems (Q3)";"Business, Management and Accounting; Computer Science" +15809;24022;"Journal of Chemometrics";journal;"1099128X, 08869383";"John Wiley and Sons Ltd";No;No;0,343;Q3;112;101;206;3770;442;191;2,09;37,33;38,69;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1987-2026";"Analytical Chemistry (Q3); Applied Mathematics (Q3)";"Chemistry; Mathematics" +15810;20963;"Journal of Enhanced Heat Transfer";journal;"10265511, 10655131";"Begell House Inc.";No;No;0,343;Q3;39;37;112;1625;186;107;1,58;43,92;20,49;0;United States;Northern America;"Begell House Inc.";"1993-2025";"Condensed Matter Physics (Q3); Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3)";"Chemical Engineering; Engineering; Physics and Astronomy" +15811;21101267543;"Marine and Fishery Sciences";journal;"26837951";"National Institute of Fisheries Research and Development";Yes;Yes;0,343;Q3;7;41;83;2240;94;82;1,12;54,63;40,88;1;Argentina;Latin America;"National Institute of Fisheries Research and Development";"2020-2026";"Animal Science and Zoology (Q3); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15812;21100217020;"Revista Iberoamericana de Diagnostico y Evaluacion Psicologica";journal;"21836051, 11353848";"AIDEP";No;No;0,343;Q3;22;24;184;1087;133;183;0,59;45,29;68,33;0;Spain;Western Europe;"AIDEP";"2008-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +15813;88538;"Romanian Journal of Internal Medicine";journal;"2501062X, 15823296";"Walter de Gruyter GmbH";Yes;Yes;0,343;Q3;30;24;95;0;121;93;1,47;0,00;60,42;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1991-2000, 2002-2025";"Internal Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +15814;56190;"Proceedings - IEEE International Symposium on Circuits and Systems";conference and proceedings;"02714310";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,343;-;89;1161;2236;22324;2816;2227;1,30;19,23;24,13;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1976-1982, 1984-2009, 2011, 2013-2025";"Electrical and Electronic Engineering";"Engineering" +15815;21101062800;"Proceedings of the Design Society";conference and proceedings;"2732527X";"Cambridge University Press";No;No;0,343;-;20;342;961;10397;1488;957;1,68;30,40;29,13;0;United Kingdom;Western Europe;"Cambridge University Press";"2021-2025";"Computer Graphics and Computer-Aided Design; Computer Science Applications; Modeling and Simulation; Software";"Computer Science; Mathematics" +15816;6500153136;"International Journal of Philosophical Studies";journal;"14664542, 09672559";"Routledge";No;No;0,342;Q1;32;74;103;2254;80;92;0,56;30,46;45,00;0;United Kingdom;Western Europe;"Routledge";"1993-2026";"Philosophy (Q1)";"Arts and Humanities" +15817;21100446528;"Journal of Organizational Ethnography";journal;"20466757, 20466749";"Emerald Group Publishing Ltd.";No;No;0,342;Q1;25;42;69;2128;108;65;1,57;50,67;55,88;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2012-2026";"Cultural Studies (Q1); Anthropology (Q2); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +15818;21100228007;"Archives of Razi Institute";journal;"20089872, 03653439";"Razi Vaccine and Serum Research Institute";Yes;Yes;0,342;Q2;23;217;698;5177;1170;696;1,35;23,86;39,74;0;Iran;Middle East;"Razi Vaccine and Serum Research Institute";"2012-2025";"Veterinary (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q3); Toxicology (Q3)";"Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics; Veterinary" +15819;21100843529;"Business Systems Research";journal;"18479375";"Walter de Gruyter GmbH";Yes;No;0,342;Q2;19;34;73;1871;171;73;2,14;55,03;47,44;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2017-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Information Systems (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Computer Science; Economics, Econometrics and Finance" +15820;21100932523;"Future Cities and Environment";journal;"23639075";"Cerebration Science Publishing";Yes;No;0,342;Q2;13;44;64;2355;120;64;1,78;53,52;34,34;0;Hong Kong;Asiatic Region;"Cerebration Science Publishing";"2019-2025";"Architecture (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2); Civil and Structural Engineering (Q3); Environmental Engineering (Q3); Management, Monitoring, Policy and Law (Q3); Mechanical Engineering (Q3)";"Engineering; Environmental Science; Social Sciences" +15821;14000155892;"Insight Turkey";journal;"25647717, 1302177X";"SETA Foundation";Yes;No;0,342;Q2;32;66;163;2746;113;124;0,72;41,61;15,00;0;Turkey;Middle East;"SETA Foundation";"2009-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15822;6100152805;"International Journal of Green Economics";journal;"17449936, 17449928";"Inderscience Enterprises Ltd";No;No;0,342;Q2;23;21;62;1360;129;62;0,85;64,76;39,13;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +15823;21100855821;"Journal of Achievements in Materials and Manufacturing Engineering";journal;"2300892X, 17348412";"International OCSCO World Press";Yes;No;0,342;Q2;19;24;153;806;238;153;1,63;33,58;32,86;0;Poland;Eastern Europe;"International OCSCO World Press";"2016-2025";"Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science" +15824;17600155230;"Journal of Infection Prevention";journal;"17571774, 17571782";"SAGE Publications Ltd";No;No;0,342;Q2;28;30;113;734;103;102;0,80;24,47;63,08;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2009-2026";"Advanced and Specialized Nursing (Q2); Health Policy (Q3); Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing" +15825;21100826258;"Ocean Systems Engineering";journal;"20936702, 2093677X";"Techno-Press";No;No;0,342;Q2;13;19;57;579;70;57;1,16;30,47;9,09;0;South Korea;Asiatic Region;"Techno-Press";"2017-2025";"Automotive Engineering (Q2); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3); Ocean Engineering (Q3); Water Science and Technology (Q3)";"Engineering; Environmental Science; Mathematics" +15826;21100822819;"Vavilovskii Zhurnal Genetiki i Selektsii";journal;"25000462, 25003259";"Institute of Cytology and Genetics of Siberian Branch of the Russian Academy of Sciences";Yes;Yes;0,342;Q2;20;134;291;6208;443;287;1,37;46,33;58,32;0;Russian Federation;Eastern Europe;"Institute of Cytology and Genetics of Siberian Branch of the Russian Academy of Sciences";"2017-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +15827;21100420104;"Voluntary Sector Review";journal;"20408056, 20408064";"Policy Press";No;No;0,342;Q2;20;17;97;999;131;93;1,36;58,76;52,08;0;United Kingdom;Western Europe;"Policy Press";"2015-2025";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +15828;21101185482;"World Regional Studies";journal;"10049479";"";No;No;0,342;Q2;16;122;447;5127;489;447;1,09;42,02;45,85;0;China;Asiatic Region;"";"2019-2025";"Geography, Planning and Development (Q2); Political Science and International Relations (Q2); Urban Studies (Q2); Earth-Surface Processes (Q3)";"Earth and Planetary Sciences; Social Sciences" +15829;21101341270;"Child Protection and Practice";journal;"29501938";"Elsevier B.V.";Yes;No;0,342;Q3;6;164;75;7857;131;62;1,75;47,91;69,50;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Developmental and Educational Psychology (Q3)";"Psychology" +15830;21100972436;"Gifted and Talented International";journal;"15332276, 24709565";"Routledge";No;No;0,342;Q3;18;12;40;852;58;38;1,27;71,00;40,91;0;United States;Northern America;"Routledge";"1996-2026";"Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +15831;20398;"Insectes Sociaux";journal;"14209098, 00201812";"Springer Science and Business Media Deutschland GmbH";No;No;0,342;Q3;73;61;141;4264;175;127;1,30;69,90;39,66;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1954-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +15832;21100244818;"International Journal of Developmental Sciences";journal;"21917485, 2192001X";"SAGE Publications Ltd";No;No;0,342;Q3;29;16;31;827;40;23;1,42;51,69;60,42;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2026";"Developmental and Educational Psychology (Q3); Life-span and Life-course Studies (Q3); Social Psychology (Q3); Aging (Q4); Developmental Neuroscience (Q4)";"Biochemistry, Genetics and Molecular Biology; Neuroscience; Psychology; Social Sciences" +15833;6400153147;"Journal of Molecular Signaling";journal;"17502187";"Ubiquity Press";Yes;No;0,342;Q3;37;0;1;0;1;1;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Ubiquity Press";"2006-2018, 2020-2022";"Biochemistry (Q3); Cell Biology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +15834;5800207425;"Journal of Poetry Therapy";journal;"08893675, 15672344";"Taylor and Francis Ltd.";No;No;0,342;Q3;20;91;100;2824;112;85;1,16;31,03;61,24;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-1993, 1996, 1999-2000, 2003-2026";"Clinical Psychology (Q3); Rehabilitation (Q3)";"Medicine; Psychology" +15835;26477;"Journal of the Geological Society of India";journal;"00167622, 09746889";"Geological Society of India";No;No;0,342;Q3;63;230;669;8640;821;517;1,04;37,57;25,20;0;India;Asiatic Region;"Geological Society of India";"1979-2026";"Geology (Q3)";"Earth and Planetary Sciences" +15836;19900192728;"Moscow Mathematical Journal";journal;"16094514, 16093321";"Independent University of Moscow";No;No;0,342;Q3;27;13;76;354;37;76;0,42;27,23;10,00;0;Russian Federation;Eastern Europe;"Independent University of Moscow";"2001, 2004, 2010-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +15837;19937;"Nordic Journal of Botany";journal;"0107055X, 17561051";"Wiley-Blackwell";No;No;0,342;Q3;45;163;335;6129;424;332;1,36;37,60;38,86;1;United States;Northern America;"Wiley-Blackwell";"1981-2004, 2007-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +15838;21100811145;"Novosti Sistematiki Nizshikh Rastenii";journal;"05685435";"Komarov Botanical Institute";No;No;0,342;Q3;12;31;101;1263;79;101;0,85;40,74;56,57;0;Russian Federation;Eastern Europe;"Komarov Botanical Institute";"2016-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +15839;13716;"Petroleum Science and Technology";journal;"15322459, 10916466";"Taylor and Francis Ltd.";No;No;0,342;Q3;68;300;568;11684;1101;568;1,86;38,95;29,14;1;United States;Northern America;"Taylor and Francis Ltd.";"1997-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Chemical Engineering; Chemistry; Earth and Planetary Sciences; Energy" +15840;13511;"Shock and Vibration";journal;"10709622, 18759203";"John Wiley and Sons Ltd";Yes;No;0,342;Q3;65;121;659;4378;1197;658;1,70;36,18;26,73;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1975, 1993-2026";"Civil and Structural Engineering (Q3); Condensed Matter Physics (Q3); Geotechnical Engineering and Engineering Geology (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Earth and Planetary Sciences; Engineering; Physics and Astronomy" +15841;21101279553;"SN Business and Economics";journal;"26629399";"Springer Nature";No;No;0,342;Q3;24;229;568;14652;1090;568;2,05;63,98;25,61;1;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Business, Management and Accounting (miscellaneous) (Q3); Marketing (Q3); Organizational Behavior and Human Resource Management (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting" +15842;21100226424;"Toxicology and Environmental Health Sciences";journal;"20059752, 22337784";"Korean Society of Environmental Risk Assessment and Health Science";No;No;0,342;Q3;28;45;124;2864;207;123;1,89;63,64;41,83;0;South Korea;Asiatic Region;"Korean Society of Environmental Risk Assessment and Health Science";"2009-2026";"Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +15843;78854;"International Journal of Space Structures";journal;"09560599, 20598033";"SAGE Publications Inc.";No;No;0,341;Q1;36;21;60;881;75;56;1,23;41,95;26,92;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1985, 1993-2026";"Conservation (Q1); Architecture (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Arts and Humanities; Engineering" +15844;4700152757;"Journal of Religion and Spirituality in Social Work";journal;"15426440, 15426432";"Routledge";No;No;0,341;Q1;30;49;85;2423;88;74;1,18;49,45;62,65;0;United States;Northern America;"Routledge";"2004-2026";"Religious Studies (Q1); Public Health, Environmental and Occupational Health (Q3); Social Work (Q4)";"Arts and Humanities; Medicine; Social Sciences" +15845;21100856464;"Settler Colonial Studies";journal;"18380743, 2201473X";"Taylor and Francis Ltd.";No;No;0,341;Q1;32;54;61;3787;71;53;1,16;70,13;56,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2021, 2023-2026";"Cultural Studies (Q1); History (Q1); Anthropology (Q2); Demography (Q2); Law (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +15846;6500153124;"Theology and Science";journal;"14746719, 14746700";"Routledge";No;No;0,341;Q1;18;69;149;3531;84;126;0,55;51,17;15,94;0;United Kingdom;Western Europe;"Routledge";"2003-2026";"Religious Studies (Q1); History and Philosophy of Science (Q2); Multidisciplinary (Q2)";"Arts and Humanities; Multidisciplinary" +15847;4000152130;"Economists' Voice";journal;"21946167, 15533832";"Walter de Gruyter GmbH";No;No;0,341;Q2;19;33;80;771;105;74;1,07;23,36;16,36;2;Germany;Western Europe;"Walter de Gruyter GmbH";"2004-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15848;21100824889;"European Journal of Language Policy";journal;"17576830, 17576822";"Liverpool University Press";No;No;0,341;Q2;14;18;40;697;30;35;0,65;38,72;65,85;0;United Kingdom;Western Europe;"Liverpool University Press";"2016-2025";"Linguistics and Language (Q2)";"Social Sciences" +15849;14393;"International Journal of Computational Fluid Dynamics";journal;"10618562, 10290257";"Taylor and Francis Ltd.";No;No;0,341;Q2;52;12;126;521;125;121;0,70;43,42;33,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Computational Mechanics (Q2); Aerospace Engineering (Q3); Condensed Matter Physics (Q3); Energy Engineering and Power Technology (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Energy; Engineering; Physics and Astronomy" +15850;5300152704;"Journal of Forensic Nursing";journal;"19393938, 15563693";"Lippincott Williams and Wilkins";No;No;0,341;Q2;34;62;147;1867;160;127;1,08;30,11;77,99;0;United States;Northern America;"Lippincott Williams and Wilkins";"2005-2026";"Law (Q2); Issues, Ethics and Legal Aspects (Q3); Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Nursing; Social Sciences" +15851;21100367873;"Journal of Horticultural Research";journal;"23005009, 23533978";"";Yes;Yes;0,341;Q2;20;20;63;987;113;63;1,70;49,35;38,75;0;Poland;Eastern Europe;"";"2014-2026";"Agronomy and Crop Science (Q2); Horticulture (Q2); Food Science (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +15852;21100229411;"Journal of Structural Fire Engineering";journal;"20402317, 20402325";"Emerald Group Publishing Ltd.";No;No;0,341;Q2;24;43;91;1935;138;91;1,60;45,00;13,21;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2026";"Safety, Risk, Reliability and Quality (Q2); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +15853;13326;"Journal of the Chinese Society of Corrosion and Protection";journal;"10054537";"Chinese Society of Corrosion and Protection";No;No;0,341;Q2;22;175;470;6520;844;470;1,87;37,26;33,64;0;China;Asiatic Region;"Chinese Society of Corrosion and Protection";"1993-2011, 2013-2026";"Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +15854;29440;"Review of Austrian Economics";journal;"15737128, 08893047";"Springer";No;No;0,341;Q2;42;53;87;3243;76;84;0,95;61,19;19,67;2;United States;Northern America;"Springer";"1987-1997, 1999-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +15855;21736;"Sound and Vibration";trade journal;"15410161, 26931443";"Academic Publishing Pte. Ltd.";Yes;No;0,341;Q2;38;77;41;2752;100;39;3,72;35,74;32,56;0;Singapore;Asiatic Region;"Academic Publishing Pte. Ltd.";"1976, 1978-1979, 2003-2025";"Acoustics and Ultrasonics (Q2); Safety, Risk, Reliability and Quality (Q2); Mechanical Engineering (Q3)";"Engineering; Physics and Astronomy" +15856;15190;"Acta Orthopaedica Belgica";journal;"00016462";"ARSMB-KVBMG";No;No;0,341;Q3;63;45;335;1171;300;335;0,82;26,02;23,33;0;Belgium;Western Europe;"ARSMB-KVBMG";"1946-2025";"Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3)";"Medicine" +15857;19900193811;"Comparative Cytogenetics";journal;"1993078X, 19930771";"Pensoft Publishers";Yes;No;0,341;Q3;26;18;51;542;52;51;0,97;30,11;27,42;0;Russian Federation;Eastern Europe;"Pensoft Publishers";"2010-2026";"Animal Science and Zoology (Q3); Biotechnology (Q3); Insect Science (Q3); Plant Science (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +15858;21100800769;"IISE Transactions on Healthcare Systems Engineering";journal;"24725579, 24725587";"Taylor and Francis Ltd.";No;No;0,341;Q3;28;23;74;1371;123;74;1,75;59,61;31,25;0;United States;Northern America;"Taylor and Francis Ltd.";"2017-2026";"Public Health, Environmental and Occupational Health (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering; Medicine; Social Sciences" +15859;21100200401;"International Journal of Psychological Research";journal;"20117922, 20112084";"Universidad de San Buenaventura";Yes;Yes;0,341;Q3;23;20;69;1042;90;65;1,15;52,10;37,50;0;Colombia;Latin America;"Universidad de San Buenaventura";"2011-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +15860;15500154701;"Journal of Applied Fluid Mechanics";journal;"17353645, 17353572";"Isfahan University of Technology";Yes;Yes;0,341;Q3;46;205;533;7145;963;533;1,90;34,85;23,30;0;Iran;Middle East;"Isfahan University of Technology";"2009-2026";"Condensed Matter Physics (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Physics and Astronomy" +15861;21101067491;"Journal of Medical Robotics Research";journal;"24249068, 2424905X";"World Scientific";No;No;0,341;Q3;19;18;43;632;48;43;1,23;35,11;15,69;0;Singapore;Asiatic Region;"World Scientific";"2016-2026";"Applied Mathematics (Q3); Artificial Intelligence (Q3); Biomedical Engineering (Q3); Computer Science Applications (Q3); Human-Computer Interaction (Q3)";"Computer Science; Engineering; Mathematics" +15862;29010;"Journal of Regulatory Economics";journal;"15730468, 0922680X";"Springer Netherlands";No;No;0,341;Q3;63;15;40;774;61;40;1,59;51,60;20,00;0;Netherlands;Western Europe;"Springer Netherlands";"1989-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +15863;25335;"Journal of Substance Use";journal;"14659891, 14759942";"Taylor and Francis Ltd.";No;No;0,341;Q3;39;204;431;7317;446;419;0,96;35,87;52,45;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Health (social science) (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +15864;24803;"Monatshefte fur Chemie";journal;"00269247, 14344475";"Springer";No;No;0,341;Q3;77;119;383;5458;835;375;2,29;45,87;40,09;0;Austria;Western Europe;"Springer";"1880-1888, 1890-1912, 1914-1937, 1939, 1941, 1943, 1946-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +15865;21101152612;"Precision Nanomedicine";journal;"26399431";"Andover House, Inc.";Yes;Yes;0,341;Q3;9;26;40;1370;79;35;2,38;52,69;48,45;0;United States;Northern America;"Andover House, Inc.";"2019-2026";"Biochemistry (medical) (Q3); Medicine (miscellaneous) (Q3); Pharmaceutical Science (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +15866;21100791289;"Sport Management Education Journal";journal;"21632367, 19386974";"Human Kinetics Publishers Inc.";No;No;0,341;Q3;17;15;64;802;85;62;1,17;53,47;48,72;0;United States;Northern America;"Human Kinetics Publishers Inc.";"2011, 2016-2025";"Education (Q3); Strategy and Management (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +15867;21100834346;"Thailand Statistician";journal;"23510676, 16859057";"Thai Statistical Association";No;No;0,341;Q3;14;60;180;1645;196;180;1,15;27,42;29,92;0;Thailand;Asiatic Region;"Thai Statistical Association";"2017-2026";"Computational Mathematics (Q3); Statistics and Probability (Q3)";"Mathematics" +15868;26085;"Transfusion Clinique et Biologique";journal;"19538022, 12467820";"Elsevier Masson s.r.l.";No;No;0,341;Q3;47;76;215;1896;215;163;1,05;24,95;45,06;0;France;Western Europe;"Elsevier Masson s.r.l.";"1994-2026";"Biochemistry (medical) (Q3); Hematology (Q3); Medicine (miscellaneous) (Q3); Clinical Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15869;25566;"Zidonghua Xuebao/Acta Automatica Sinica";journal;"18741029, 02544156";"Science Press";No;No;0,341;Q3;84;178;591;10802;1489;590;2,64;60,69;29,38;0;China;Asiatic Region;"Science Press";"1980, 1993-2025";"Computer Graphics and Computer-Aided Design (Q3); Control and Systems Engineering (Q3); Information Systems (Q3); Software (Q3)";"Computer Science; Engineering" +15870;21100286357;"Proceedings of IEEE Computer Society Annual Symposium on VLSI, ISVLSI";conference and proceedings;"21593469, 21593477";"IEEE Computer Society";No;No;0,341;-;35;163;303;3292;450;294;1,56;20,20;17,51;0;United States;Northern America;"IEEE Computer Society";"2002-2003, 2013-2025";"Control and Systems Engineering; Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering" +15871;21101166976;"Dicenda";journal;"19882556, 02122952";"Universidad Complutense Madrid";Yes;Yes;0,340;Q1;5;15;45;535;19;45;0,47;35,67;43,75;0;Spain;Western Europe;"Universidad Complutense Madrid";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +15872;21100299410;"Journal of Management History";journal;"17587751, 17511348";"Emerald Group Publishing Ltd.";No;No;0,340;Q1;32;69;104;5745;263;92;2,96;83,26;25,98;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2006-2026";"History (Q1); History and Philosophy of Science (Q2); Business, Management and Accounting (miscellaneous) (Q3)";"Arts and Humanities; Business, Management and Accounting" +15873;34387;"Medieval Archaeology";journal;"1745817X, 00766097";"Maney Publishing";No;No;0,340;Q1;27;15;44;1406;38;42;0,79;93,73;35,42;0;United Kingdom;Western Europe;"Maney Publishing";"1967, 1981, 2002-2025";"Archeology (arts and humanities) (Q1); History (Q1); Archeology (Q2)";"Arts and Humanities; Social Sciences" +15874;21101162892;"Petita: Jurnal Kajian Ilmu Hukum dan Syariah";journal;"25028006, 25498274";"Lembaga Kajian Konstitusi Indonesia (LKKI), Fakultas Syariah dan Hukum, Universitas Islam Negeri Ar-Raniry";No;No;0,340;Q1;9;51;70;3960;258;66;3,69;77,65;27,27;0;Indonesia;Asiatic Region;"Lembaga Kajian Konstitusi Indonesia (LKKI), Fakultas Syariah dan Hukum, Universitas Islam Negeri Ar-Raniry";"2023-2025";"Religious Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Law (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +15875;5700157507;"Philosophical Investigations";journal;"14679205, 01900536";"Wiley-Blackwell Publishing Ltd";No;No;0,340;Q1;21;23;92;933;49;80;0,34;40,57;4,76;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1978-2026";"Philosophy (Q1)";"Arts and Humanities" +15876;21101021075;"All Life";journal;"26895293, 26895307";"Taylor and Francis Ltd.";Yes;No;0,340;Q2;54;38;228;2490;371;226;1,61;65,53;39,20;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2020-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Neuroscience" +15877;5400152710;"E a M: Ekonomie a Management";journal;"23365064, 12123609";"Technical University of Liberec";Yes;No;0,340;Q2;31;60;145;3030;290;144;2,10;50,50;47,88;0;Czech Republic;Eastern Europe;"Technical University of Liberec";"2007-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business and International Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15878;21100242609;"Insights: the UKSG Journal";journal;"20487754";"United Kingdom Serials Group";Yes;Yes;0,340;Q2;21;17;59;552;87;59;1,47;32,47;62,07;2;United Kingdom;Western Europe;"United Kingdom Serials Group";"2012-2026";"Library and Information Sciences (Q2)";"Social Sciences" +15879;21101056542;"International Journal of Operations Research and Information Systems";journal;"19479328, 19479336";"IGI Global Publishing";No;No;0,340;Q2;10;0;6;0;21;6;1,00;0,00;0,00;0;United States;Northern America;"IGI Global Publishing";"2010, 2019-2023";"Information Systems and Management (Q2); Computational Theory and Mathematics (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Information Systems (Q3); Management Information Systems (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +15880;21101185499;"International Review of Public Policy";journal;"26793873, 27066274";"International Public Policy Association";Yes;Yes;0,340;Q2;15;17;54;1032;93;48;1,51;60,71;34,62;0;France;Western Europe;"International Public Policy Association";"2019-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15881;5100154604;"Ius et Praxis";journal;"07180012, 07172877";"Universidad de Talca";Yes;Yes;0,340;Q2;15;11;137;519;76;128;0,47;47,18;66,67;0;Chile;Latin America;"Universidad de Talca";"2001-2002, 2006-2025";"Law (Q2)";"Social Sciences" +15882;21101039774;"Material Design and Processing Communications";journal;"25776576";"John Wiley and Sons Ltd";Yes;No;0,340;Q2;22;16;21;928;52;21;1,33;58,00;13,64;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2019-2026";"Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +15883;5700160329;"Migraciones Internacionales";journal;"16658906, 25940279";"El Colegio de la Frontera Norte";Yes;Yes;0,340;Q2;17;26;75;1415;69;73;0,82;54,42;51,16;0;Mexico;Latin America;"El Colegio de la Frontera Norte";"2009-2026";"Demography (Q2); Geography, Planning and Development (Q3)";"Social Sciences" +15884;21100940999;"Revista Latinoamericana de Ciencias Sociales, Ninez y Juventud";journal;"20277679, 1692715X";"Revista Latinoamericana de Ciencias Sociales";Yes;Yes;0,340;Q2;11;49;174;2662;152;172;0,75;54,33;58,27;0;Colombia;Latin America;"Revista Latinoamericana de Ciencias Sociales";"2019-2025";"Social Sciences (miscellaneous) (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +15885;18083;"Sociological Focus";journal;"00380237, 21621128";"Taylor and Francis Inc.";No;No;0,340;Q2;36;34;89;2809;101;88;0,98;82,62;50,72;0;United States;Northern America;"Taylor and Francis Inc.";"1970-1984, 1987-2013, 2015-2026";"Social Sciences (miscellaneous) (Q2); Psychology (miscellaneous) (Q3)";"Psychology; Social Sciences" +15886;21101254043;"Studies in Science of Science";journal;"10032053";"";No;No;0,340;Q2;16;166;678;4653;662;678;0,87;28,03;42,96;0;China;Asiatic Region;"";"2021-2025";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +15887;20976;"Ardeola";journal;"05707358, 23410825";"SEO/ Birdlife";No;No;0,340;Q3;34;15;50;887;54;49;1,16;59,13;26,00;0;Spain;Western Europe;"SEO/ Birdlife";"1980-1981, 1987, 1993, 1996-2010, 2012-2025";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +15888;28247;"Arquivos de Gastroenterologia";journal;"16784219, 00042803";"IBEPEGE - Inst. Bras. Estudos Pesquisas Gastroent.";Yes;Yes;0,340;Q3;41;53;231;1747;229;209;0,94;32,96;39,65;0;Brazil;Latin America;"IBEPEGE - Inst. Bras. Estudos Pesquisas Gastroent.";"1973-2025";"Gastroenterology (Q3)";"Medicine" +15889;19300156818;"Asian Biomedicine";journal;"1875855X, 19057415";"";No;No;0,340;Q3;25;38;108;1851;139;90;1,24;48,71;48,67;0;Poland;Eastern Europe;"";"2008-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15890;23433;"Chimia";journal;"00094293";"Swiss Chemical Society";Yes;Yes;0,340;Q3;65;145;465;4722;485;396;0,93;32,57;33,69;0;Switzerland;Western Europe;"Swiss Chemical Society";"1947-1949, 1960-1961, 1973-1986, 1996-2025";"Chemistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Chemistry; Medicine" +15891;29109;"Corrosion Engineering Science and Technology";journal;"1478422X, 17432782";"SAGE Publications Ltd";Yes;No;0,340;Q3;57;102;193;5388;421;193;2,32;52,82;31,28;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2003-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Chemical Engineering; Chemistry; Materials Science" +15892;26900;"Fullerenes Nanotubes and Carbon Nanostructures";journal;"1536383X, 15364046";"Taylor and Francis Ltd.";No;No;0,340;Q3;62;157;389;7918;861;388;2,37;50,43;34,60;0;United States;Northern America;"Taylor and Francis Ltd.";"2002-2026";"Atomic and Molecular Physics, and Optics (Q3); Materials Science (miscellaneous) (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3); Nanoscience and Nanotechnology (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +15893;19500157821;"International Arab Journal of Information Technology";journal;"16833198, 23094524";"Zarqa University";Yes;No;0,340;Q3;41;90;298;3464;679;297;2,30;38,49;30,32;0;Jordan;Middle East;"Zarqa University";"2008-2026";"Computer Science (miscellaneous) (Q3)";"Computer Science" +15894;21100857397;"International Journal of E-Services and Mobile Applications";journal;"1941627X, 19416288";"IGI Global Publishing";No;No;0,340;Q3;17;1;37;47;96;37;1,11;47,00;25,00;0;United States;Northern America;"IGI Global Publishing";"2017-2025";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Management Information Systems (Q3); Marketing (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Computer Science" +15895;21100267784;"Italian Journal of Food Safety";journal;"22397132";"Page Press Publications";Yes;No;0,340;Q3;29;44;133;1574;237;133;1,63;35,77;57,71;1;Italy;Western Europe;"Page Press Publications";"2011-2026";"Food Science (Q3)";"Agricultural and Biological Sciences" +15896;12327;"Journal of Failure Analysis and Prevention";journal;"18641245, 15477029";"Springer New York";No;No;0,340;Q3;44;224;686;7037;1313;657;2,13;31,42;21,92;0;United States;Northern America;"Springer New York";"2001-2026";"Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering; Materials Science" +15897;21101097251;"Journal of Insect Biodiversity and Systematics";journal;"24238112";"Tarbiat Modares University";Yes;Yes;0,340;Q3;10;60;156;3139;150;156;0,99;52,32;30,77;0;Iran;Middle East;"Tarbiat Modares University";"2019-2025";"Insect Science (Q3)";"Agricultural and Biological Sciences" +15898;24045;"Journal of Near Infrared Spectroscopy";journal;"17516552, 09670335";"SAGE Publications Inc.";No;No;0,340;Q3;66;15;83;610;207;83;2,10;40,67;37,66;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1996-2026";"Spectroscopy (Q3)";"Chemistry" +15899;21101158858;"Nordic Journal of Comparative and International Education";journal;"25354051";"Oslo Metropolitan University University Library";Yes;Yes;0,340;Q3;13;33;60;1481;87;55;1,60;44,88;67,65;0;Norway;Western Europe;"Oslo Metropolitan University University Library";"2019-2026";"Education (Q3)";"Social Sciences" +15900;12000154532;"Nursing for Women's Health";journal;"17514851, 1751486X";"Elsevier B.V.";No;No;0,340;Q3;29;50;213;1762;231;170;0,84;35,24;90,29;0;Netherlands;Western Europe;"Elsevier B.V.";"2007-2026";"Nursing (miscellaneous) (Q3)";"Nursing" +15901;14200154709;"Nursing Leadership";journal;"1910622X";"Longwoods Publishing Corp.";No;No;0,340;Q3;34;41;71;1096;78;52;1,10;26,73;88,06;0;Canada;Northern America;"Longwoods Publishing Corp.";"2006-2026";"Leadership and Management (Q3); Nursing (miscellaneous) (Q3)";"Nursing" +15902;23319;"Polish Polar Research";journal;"01380338, 20818262";"Polish Academy of Sciences, Committee on Polar Research";Yes;Yes;0,340;Q3;37;16;51;940;64;49;1,06;58,75;45,65;0;Poland;Eastern Europe;"Polish Academy of Sciences, Committee on Polar Research";"1980-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15903;11500153510;"Recent Patents on Biotechnology";journal;"18722083, 22124012";"Bentham Science Publishers";No;No;0,340;Q3;46;38;75;2606;164;70;1,90;68,58;53,97;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2007-2026";"Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3); Bioengineering (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +15904;21100853738;"ROBOMECH Journal";journal;"21974225";"Springer International Publishing AG";Yes;No;0,340;Q3;24;40;72;1150;157;72;1,50;28,75;9,93;0;Switzerland;Western Europe;"Springer International Publishing AG";"2014-2026";"Artificial Intelligence (Q3); Control and Optimization (Q3); Instrumentation (Q3); Mechanical Engineering (Q3); Modeling and Simulation (Q3)";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +15905;20638;"Texas Heart Institute Journal";journal;"07302347, 15266702";"Texas Heart Institute";Yes;No;0,340;Q3;69;32;320;434;281;223;0,83;13,56;26,04;0;United States;Northern America;"Texas Heart Institute";"1982-2025";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +15906;21100871613;"Transactions of A. Razmadze Mathematical Institute";journal;"23468092, 25889028";"A. Razmadze Mathematical Institute of Iv. Javakhishvili Tbilisi State University";Yes;No;0,340;Q3;14;52;163;1069;79;163;0,46;20,56;21,95;0;Georgia;Eastern Europe;"A. Razmadze Mathematical Institute of Iv. Javakhishvili Tbilisi State University";"2016-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +15907;21986;"Turkish Journal of Chemistry";journal;"13036130, 13000527";"TUBITAK";No;No;0,340;Q3;57;62;356;2822;768;356;2,13;45,52;39,60;0;Turkey;Middle East;"TUBITAK";"1996-2025";"Chemistry (miscellaneous) (Q3)";"Chemistry" +15908;130147;"Ukrainian Mathematical Journal";journal;"00415995, 15739376";"Springer New York";No;No;0,340;Q3;32;160;390;4077;249;387;0,61;25,48;30,37;0;United States;Northern America;"Springer New York";"1957-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +15909;21100204103;"Complutum";journal;"11316993, 19882327";"Universidad Complutense Madrid";Yes;Yes;0,339;Q1;15;33;71;2042;44;70;0,68;61,88;42,17;0;Spain;Western Europe;"Universidad Complutense Madrid";"2011-2025";"Archeology (arts and humanities) (Q1); History (Q1); Archeology (Q2)";"Arts and Humanities; Social Sciences" +15910;21100217606;"International Journal of Community Music";journal;"17526302, 17526299";"Intellect Ltd.";No;No;0,339;Q1;21;21;64;706;52;55;0,88;33,62;61,02;0;United Kingdom;Western Europe;"Intellect Ltd.";"2008-2025";"Music (Q1)";"Arts and Humanities" +15911;19700173246;"Academia Revista Latinoamericana de Administracion";journal;"10128255, 20565127";"Emerald Publishing";No;No;0,339;Q2;26;45;96;2986;196;93;2,01;66,36;31,93;0;United Kingdom;Western Europe;"Emerald Publishing";"2008-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business and International Management (Q3); Education (Q3); Management Science and Operations Research (Q3); Organizational Behavior and Human Resource Management (Q3); Public Administration (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Social Sciences" +15912;21101021437;"Advances in Social Work";journal;"23314125, 15278565";"Indiana University School of Social Work";Yes;Yes;0,339;Q2;17;42;137;2176;162;127;0,60;51,81;71,43;0;United States;Northern America;"Indiana University School of Social Work";"2015, 2019-2025";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Education (Q3)";"Social Sciences" +15913;36197;"Biocontrol Science and Technology";journal;"13600478, 09583157";"Taylor and Francis Ltd.";No;No;0,339;Q2;74;81;244;4535;368;243;1,40;55,99;38,42;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-2026";"Agronomy and Crop Science (Q2); Insect Science (Q3)";"Agricultural and Biological Sciences" +15914;38494;"Critique of Anthropology";journal;"14603721, 0308275X";"SAGE Publications Ltd";No;No;0,339;Q2;57;34;81;1706;146;79;1,00;50,18;68,57;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1974-1981, 1985-2026";"Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +15915;21100896486;"International Journal of E-Entrepreneurship and Innovation";journal;"19478585, 19478593";"IGI Global Publishing";No;No;0,339;Q2;9;2;14;101;25;14;3,60;50,50;11,11;0;United States;Northern America;"IGI Global Publishing";"2018-2026";"Law (Q2); Business and International Management (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Social Sciences" +15916;21101022227;"Journal of Human Rights and Social Work";journal;"23651792";"Springer Science + Business Media";No;No;0,339;Q2;22;81;147;4742;214;137;1,23;58,54;59,36;0;Switzerland;Western Europe;"Springer Science + Business Media";"2016-2026";"Law (Q2); Sociology and Political Science (Q2)";"Social Sciences" +15917;21100858116;"Journal of Nuclear Engineering and Radiation Science";journal;"23328975, 23328983";"American Society of Mechanical Engineers (ASME)";No;No;0,339;Q2;19;53;224;1614;177;211;0,82;30,45;28,14;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"2015-2026";"Radiation (Q2); Nuclear Energy and Engineering (Q3)";"Energy; Physics and Astronomy" +15918;145058;"Journal of Peacebuilding and Development";journal;"21657440, 15423166";"SAGE Publications Inc.";No;No;0,339;Q2;20;50;73;2199;122;62;1,37;43,98;44,44;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2004-2010, 2013-2026";"Political Science and International Relations (Q2); Safety Research (Q3)";"Social Sciences" +15919;18355;"New Zealand Veterinary Journal";journal;"00480169, 11760710";"Taylor and Francis Ltd.";No;No;0,339;Q2;66;58;133;2173;151;123;1,10;37,47;47,30;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1952-2026";"Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +15920;21101167599;"Taxonomy";journal;"26736500";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,339;Q2;11;72;109;3316;138;105;1,30;46,06;33,33;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +15921;19600;"Advances in Applied Microbiology";book series;"00652164";"Academic Press Inc.";No;No;0,339;Q3;99;13;48;2608;190;11;3,54;200,62;54,00;0;United States;Northern America;"Academic Press Inc.";"1959-1966, 1968, 1970-1984, 1986-1993, 1995-1997, 2000-2025";"Applied Microbiology and Biotechnology (Q3)";"Immunology and Microbiology" +15922;21101038812;"Asia Oceania Journal of Nuclear Medicine and Biology";journal;"23225718, 23225726";"Mashhad University of Medical Sciences";Yes;Yes;0,339;Q3;11;27;76;638;72;76;1,12;23,63;29,53;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2019-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biophysics (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15923;21100806944;"Botanica Pacifica";journal;"24103713, 22264701";"BGI FEB RAS";Yes;Yes;0,339;Q3;13;17;111;942;106;111;1,00;55,41;54,43;0;Russian Federation;Eastern Europe;"BGI FEB RAS";"2016-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15924;29300;"Clinica Terapeutica";journal;"19726007, 00099074";"Societa Editrice Universo";No;No;0,339;Q3;38;151;354;4311;512;353;1,57;28,55;45,00;0;Italy;Western Europe;"Societa Editrice Universo";"1958-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +15925;21101099125;"International Journal of Ceramic Engineering and Science";journal;"25783270";"John Wiley and Sons Inc";Yes;No;0,339;Q3;16;38;107;1662;238;106;2,36;43,74;27,65;0;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Biomaterials (Q3); Ceramics and Composites (Q3); Electronic, Optical and Magnetic Materials (Q3); Materials Science (miscellaneous) (Q3)";"Materials Science" +15926;21100218390;"Journal of Environmental Engineering (Japan)";journal;"1881817X, 13480685";"Architectural Institute of Japan";No;No;0,339;Q3;14;74;255;1674;90;255;0,38;22,62;28,39;0;Japan;Asiatic Region;"Architectural Institute of Japan";"2008-2026";"Environmental Engineering (Q3)";"Environmental Science" +15927;19700174898;"Lung India";journal;"0974598X, 09702113";"Wolters Kluwer Medknow Publications";Yes;Yes;0,339;Q3;43;132;354;2108;327;238;0,97;15,97;36,32;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2009-2026";"Pulmonary and Respiratory Medicine (Q3)";"Medicine" +15928;21100208070;"Mental Illness";journal;"20367457, 20367465";"John Wiley and Sons Ltd";Yes;No;0,339;Q3;21;23;35;1264;53;35;1,13;54,96;52,48;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +15929;5700161163;"Organizacija";journal;"15811832, 13185454";"Sciendo";Yes;Yes;0,339;Q3;24;24;72;1612;171;72;1,82;67,17;49,28;0;Poland;Eastern Europe;"Sciendo";"2016-2026";"Business and International Management (Q3); Management Information Systems (Q3); Marketing (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting" +15930;27081;"Tenside, Surfactants, Detergents";journal;"21958564, 09323414";"Walter de Gruyter GmbH";No;No;0,339;Q3;33;48;167;1836;284;167;1,88;38,25;39,90;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1986-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3)";"Chemical Engineering; Chemistry; Physics and Astronomy" +15931;21101152596;"Western Indian Ocean Journal of Marine Science";journal;"26836416, 0856860X";"Western Indian Ocean Marine Science Association";Yes;Yes;0,339;Q3;9;30;75;1308;96;75;1,36;43,60;40,57;0;Tanzania;Africa;"Western Indian Ocean Marine Science Association";"2019-2025";"Ecology (Q3); Environmental Science (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3)";"Environmental Science" +15932;21100942841;"Russian Journal of Economics";journal;"26187213, 24054739";"Non-profit partnership 'Voprosy Ekonomiki'";Yes;Yes;0,338;Q1;22;21;64;1076;129;63;2,29;51,24;50,00;0;Russian Federation;Eastern Europe;"Non-profit partnership 'Voprosy Ekonomiki'";"2015-2025";"History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2); Economics and Econometrics (Q3); Finance (Q3)";"Arts and Humanities; Economics, Econometrics and Finance" +15933;22455;"Urban History";journal;"09639268, 14698706";"Cambridge University Press";No;No;0,338;Q1;31;115;126;9769;85;123;0,67;84,95;48,53;0;United Kingdom;Western Europe;"Cambridge University Press";"1974-2026";"History (Q1); Arts and Humanities (miscellaneous) (Q2); Urban Studies (Q2); Geography, Planning and Development (Q3)";"Arts and Humanities; Social Sciences" +15934;12683;"American Journal of Jurisprudence";journal;"20496494, 00658995";"University of Notre Dame, Law School";No;No;0,338;Q2;13;17;44;1866;32;43;0,63;109,76;26,32;0;United States;Northern America;"University of Notre Dame, Law School";"1973-1975, 1977, 1981, 1987, 1997, 2000, 2016-2025";"Law (Q2)";"Social Sciences" +15935;37794;"Canadian Journal of Animal Science";journal;"00083984, 19181825";"Agricultural Institute of Canada";No;No;0,338;Q2;78;87;125;4362;150;125;1,28;50,14;45,79;0;Canada;Northern America;"Agricultural Institute of Canada";"1975, 1993-2026";"Food Animals (Q2); Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences; Veterinary" +15936;21101018821;"Canadian Journal of Respiratory, Critical Care, and Sleep Medicine";journal;"24745340, 24745332";"Taylor and Francis Ltd.";No;No;0,338;Q2;16;56;184;1615;132;157;0,55;28,84;38,73;0;United States;Northern America;"Taylor and Francis Ltd.";"2017-2026";"Critical Care and Intensive Care Medicine (Q2); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +15937;23247;"International Journal of Nonlinear Sciences and Numerical Simulation";journal;"15651339, 21910294";"Walter de Gruyter GmbH";No;No;0,338;Q2;64;0;256;0;395;256;1,59;0,00;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2000-2023";"Computational Mechanics (Q2); Engineering (miscellaneous) (Q2); Applied Mathematics (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3); Physics and Astronomy (miscellaneous) (Q3); Statistical and Nonlinear Physics (Q3)";"Engineering; Mathematics; Physics and Astronomy" +15938;21101055874;"Journal of Forestry Engineering";journal;"20961359";"Nanjing Forestry University";No;No;0,338;Q2;27;135;447;3817;796;447;2,27;28,27;41,20;0;China;Asiatic Region;"Nanjing Forestry University";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Forestry (Q2)";"Agricultural and Biological Sciences" +15939;21100228063;"Journal of the Southern African Institute of Mining and Metallurgy";journal;"22256253";"South African Institute of Mining and Metallurgy";Yes;Yes;0,338;Q2;51;76;226;2430;331;226;1,42;31,97;26,72;0;South Africa;Africa;"South African Institute of Mining and Metallurgy";"1988, 2006-2026";"Metals and Alloys (Q2); Geotechnical Engineering and Engineering Geology (Q3); Materials Chemistry (Q3)";"Earth and Planetary Sciences; Materials Science" +15940;21101040630;"Revista de Derecho Ambiental (Chile)";journal;"07180101, 07194633";"Universidad de Chile. Centro de Derecho Ambiental";Yes;Yes;0,338;Q2;5;14;50;433;36;47;0,67;30,93;38,46;0;Chile;Latin America;"Universidad de Chile. Centro de Derecho Ambiental";"2019-2025";"Law (Q2); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science; Social Sciences" +15941;5800171939;"RUSI Journal";journal;"17440378, 03071847";"Routledge";No;No;0,338;Q2;30;52;161;1210;126;128;0,73;23,27;20,69;4;United Kingdom;Western Europe;"Routledge";"1972-2026";"Political Science and International Relations (Q2)";"Social Sciences" +15942;17593;"Advances and technical standards in neurosurgery";book series;"00954829, 18699189";"Springer Science and Business Media Deutschland GmbH";No;No;0,338;Q3;33;30;105;0;102;105;0,81;0,00;22,83;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1984-1988, 1990-1995, 1997-2000, 2002-2012, 2014-2016, 2022-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +15943;19600157748;"Ansiedad y Estres";journal;"21740437, 11347937";"Spanish Society for the Study of Anxiety and Stress (SEAS)";No;No;0,338;Q3;20;13;61;640;75;61;1,39;49,23;50,91;0;Spain;Western Europe;"Spanish Society for the Study of Anxiety and Stress (SEAS)";"2009-2025";"Applied Psychology (Q3); Psychiatry and Mental Health (Q3); Social Psychology (Q3)";"Medicine; Psychology" +15944;21100332431;"Biodiversitas";journal;"1412033X, 20854722";"Biology department, Sebelas Maret University Surakarta";Yes;No;0,338;Q3;39;593;2195;32772;4309;2195;1,82;55,26;43,55;0;Indonesia;Asiatic Region;"Biology department, Sebelas Maret University Surakarta";"2014-2026";"Animal Science and Zoology (Q3); Plant Science (Q3); Molecular Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +15945;21100790932;"Current Research in Nutrition and Food Science";journal;"2347467X, 23220007";"Enviro Research Publishers";Yes;No;0,338;Q3;35;121;316;6068;625;314;1,85;50,15;49,74;0;India;Asiatic Region;"Enviro Research Publishers";"2013-2025";"Food Science (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Medicine" +15946;21101064804;"European Journal of Family Business";journal;"2444877X, 24448788";"Universidad de Malaga";Yes;Yes;0,338;Q3;18;11;48;890;81;48;1,81;80,91;51,72;0;Spain;Western Europe;"Universidad de Malaga";"2016-2025";"Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +15947;20381;"Heat Transfer Research";journal;"10642285";"Begell House Inc.";No;No;0,338;Q3;37;89;270;3759;451;268;1,64;42,24;17,16;0;United States;Northern America;"Begell House Inc.";"1992-1993, 1995-2026";"Condensed Matter Physics (Q3); Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3)";"Chemical Engineering; Engineering; Physics and Astronomy" +15948;21101095940;"Humanistic Management Journal";journal;"23666048";"Springer International Publishing AG";No;No;0,338;Q3;19;28;67;2225;144;64;1,94;79,46;32,56;1;Switzerland;Western Europe;"Springer International Publishing AG";"2016-2026";"Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +15949;21100827843;"Hydrological Research Letters";journal;"18823416";"Japan Society of Hydrology and Water Resources";Yes;No;0,338;Q3;17;46;44;1215;55;44;1,27;26,41;18,25;0;Japan;Asiatic Region;"Japan Society of Hydrology and Water Resources";"2015-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science" +15950;19700170838;"International Journal of Rural Management";journal;"09730680, 09730052";"Sage Publications India Pvt. Ltd";No;No;0,338;Q3;19;17;77;763;131;76;1,77;44,88;35,56;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2005-2026";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Environmental Science; Social Sciences" +15951;17700156309;"Iranian Journal of Parasitology";journal;"2008238X, 17357020";"Tehran University of Medical Sciences";Yes;No;0,338;Q3;41;70;206;2236;266;194;1,21;31,94;37,10;0;Iran;Middle East;"Tehran University of Medical Sciences";"2008-2025";"Infectious Diseases (Q3); Parasitology (Q3)";"Immunology and Microbiology; Medicine" +15952;21100899863;"Journal of Mathematical Modeling";journal;"2345394X, 23829869";"University of Guilan";Yes;No;0,338;Q3;12;59;142;1645;152;142;1,25;27,88;22,83;0;Iran;Middle East;"University of Guilan";"2018-2026";"Applied Mathematics (Q3); Computational Mathematics (Q3); Modeling and Simulation (Q3)";"Mathematics" +15953;26971;"Journal of Physical Organic Chemistry";journal;"10991395, 08943230";"John Wiley and Sons Ltd";No;No;0,338;Q3;80;65;302;3375;546;297;2,00;51,92;32,59;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1988-2026";"Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry" +15954;21101017734;"Journal of Urban Mathematics Education";journal;"21512612";"Texas A and M University";Yes;Yes;0,338;Q3;8;11;23;622;40;16;1,79;56,55;52,94;0;United States;Northern America;"Texas A and M University";"2012, 2014, 2016, 2018-2025";"Education (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics; Social Sciences" +15955;21101277810;"Landscape Architecture Frontiers";journal;"2096336X";"Higher Education Press Limited Company";No;No;0,338;Q3;9;46;128;1812;178;128;1,36;39,39;48,98;0;China;Asiatic Region;"Higher Education Press Limited Company";"2018, 2021-2026";"Geography, Planning and Development (Q3)";"Social Sciences" +15956;21100369843;"New Microbes and New Infections";journal;"20522975";"Elsevier Ltd";Yes;No;0,338;Q3;50;126;575;3880;747;300;1,30;30,79;39,65;0;United Kingdom;Western Europe;"Elsevier Ltd";"2013-2026";"Infectious Diseases (Q3); Microbiology (Q4)";"Immunology and Microbiology; Medicine" +15957;4000151823;"Scientia Agricola";journal;"01039016, 1678992X";"University of Sao Paolo";Yes;No;0,338;Q3;73;60;191;2278;293;188;1,37;37,97;34,86;0;Brazil;Latin America;"University of Sao Paolo";"1997-2025";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +15958;9500153928;"Scottish Geographical Journal";journal;"14702541, 1751665X";"Taylor and Francis Ltd.";No;No;0,338;Q3;37;35;94;2143;118;87;1,28;61,23;40,98;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1999-2026";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +15959;20869;"Transportation Journal";journal;"00411612";"John Wiley and Sons Inc";No;No;0,338;Q3;46;27;49;2344;82;47;1,71;86,81;26,56;0;United States;Northern America;"John Wiley and Sons Inc";"1996-2026";"Transportation (Q3)";"Social Sciences" +15960;21100854121;"Allergo Journal International";journal;"21970378";"Springer Medizin";No;No;0,338;Q4;29;46;110;1347;181;101;1,18;29,28;53,23;0;Germany;Western Europe;"Springer Medizin";"2014-2026";"Immunology and Allergy (Q4)";"Medicine" +15961;5700164821;"Interventions";journal;"1469929X, 1369801X";"Routledge";No;No;0,337;Q1;27;104;207;4692;190;191;0,86;45,12;48,98;0;United Kingdom;Western Europe;"Routledge";"1999, 2008, 2010-2026";"History (Q1); Anthropology (Q2)";"Arts and Humanities; Social Sciences" +15962;21100456735;"Lucentum";journal;"19899904, 02132338";"Universidad de Alicante";Yes;Yes;0,337;Q1;8;16;47;1181;21;47;0,31;73,81;37,50;0;Spain;Western Europe;"Universidad de Alicante";"2015-2026";"Archeology (arts and humanities) (Q1); History (Q1); Archeology (Q2); Paleontology (Q3)";"Arts and Humanities; Earth and Planetary Sciences; Social Sciences" +15963;21100468901;"Retos";journal;"19882041, 15791726";"Federacion Espanola de Docentes de Educacion Fisica";Yes;No;0,337;Q1;35;578;2118;25622;3026;2118;1,46;44,33;33,86;2;Spain;Western Europe;"Federacion Espanola de Docentes de Educacion Fisica";"2016-2025";"Cultural Studies (Q1); Gender Studies (Q2); Pharmacy (Q2); Education (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)";"Health Professions; Medicine; Social Sciences" +15964;27310;"Studies in Christian Ethics";journal;"17455235, 09539468";"SAGE Publications Ltd";No;No;0,337;Q1;9;27;127;1551;70;117;0,53;57,44;36,36;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1989, 1991, 1995-1996, 1998-1999, 2003, 2006, 2011-2012, 2015-2026";"Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities" +15965;24618;"Algebra Universalis";journal;"14208911, 00025240";"Springer International Publishing";No;No;0,337;Q2;34;33;117;685;52;117;0,38;20,76;23,73;0;Switzerland;Western Europe;"Springer International Publishing";"1971-2026";"Logic (Q2); Algebra and Number Theory (Q3)";"Mathematics" +15966;74283;"Asian Perspective";journal;"02589184";"Johns Hopkins University Press";No;No;0,337;Q2;31;29;91;1986;111;91;1,27;68,48;20,00;0;United States;Northern America;"Johns Hopkins University Press";"1974, 2005-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2); Life-span and Life-course Studies (Q3)";"Social Sciences" +15967;21101149930;"Bialostockie Studia Prawnicze";journal;"16897404, 27199452";"Sciendo";Yes;Yes;0,337;Q2;5;60;124;2815;94;124;0,76;46,92;49,49;0;Poland;Eastern Europe;"Sciendo";"2023-2025";"Law (Q2); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Public Administration (Q3)";"Social Sciences" +15968;21100899904;"Brazilian Journal of Occupational Therapy";journal;"25268910";"Universidade Federal de Sao Carlos";Yes;No;0,337;Q2;16;95;316;4168;302;307;0,73;43,87;75,79;0;Brazil;Latin America;"Universidade Federal de Sao Carlos";"2018-2026";"Occupational Therapy (Q2); Education (Q3); Health (social science) (Q3)";"Health Professions; Social Sciences" +15969;21100396481;"Bulletin of the Mineral Research and Exploration";journal;"00264563";"General Directorate of Mineral Research and Exploration (MTA)";Yes;Yes;0,337;Q3;17;29;89;1404;116;89;1,40;48,41;23,81;0;Turkey;Middle East;"General Directorate of Mineral Research and Exploration (MTA)";"1979-1986, 1988-1990, 1996-1997, 2014-2025";"Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +15970;21100850505;"ChemistrySelect";journal;"23656549";"Wiley-Blackwell Publishing Ltd";No;No;0,337;Q3;78;3159;6713;193024;14711;6710;2,26;61,10;38,50;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2016-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +15971;20328;"Ecoscience";journal;"11956860";"Taylor and Francis Ltd.";No;No;0,337;Q3;81;9;64;712;79;63;1,05;79,11;44,12;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +15972;21100840089;"Environment and Natural Resources Journal";journal;"16865456, 24082384";"Mahidol University";Yes;Yes;0,337;Q3;16;48;156;2098;255;156;1,67;43,71;42,07;0;Thailand;Asiatic Region;"Mahidol University";"2012-2013, 2017-2026";"Environmental Chemistry (Q3); Environmental Science (miscellaneous) (Q3); Pollution (Q3); Waste Management and Disposal (Q3)";"Environmental Science" +15973;20389;"Industrial Lubrication and Tribology";journal;"00368792, 17585775";"Emerald Publishing";No;No;0,337;Q3;47;230;402;7601;879;397;2,10;33,05;30,67;0;United Kingdom;Western Europe;"Emerald Publishing";"1948-2026";"Energy (miscellaneous) (Q3); Mechanical Engineering (Q3); Surfaces, Coatings and Films (Q3)";"Energy; Engineering; Materials Science" +15974;21100934095;"Innovative Surgical Sciences";journal;"23647485";"Walter de Gruyter GmbH";Yes;No;0,337;Q3;22;43;70;1254;101;64;1,51;29,16;36,13;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2017-2026";"Surgery (Q3)";"Medicine" +15975;30706;"Journal of Agricultural Meteorology";journal;"18810136, 00218588";"Society of Agricultural Meteorology of Japan";No;No;0,337;Q3;28;25;51;838;68;49;1,33;33,52;17,39;0;Japan;Asiatic Region;"Society of Agricultural Meteorology of Japan";"1943-1944, 1948-2026";"Agronomy and Crop Science (Q3); Atmospheric Science (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +15976;21101072121;"Journal of Geo-Information Science";journal;"15608999";"Science Press";No;No;0,337;Q3;31;143;546;6709;943;546;1,85;46,92;37,66;0;China;Asiatic Region;"Science Press";"2017-2025";"Artificial Intelligence (Q3); Computer Science Applications (Q3); Computers in Earth Sciences (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Information Systems (Q3)";"Computer Science; Earth and Planetary Sciences" +15977;19700175157;"Journal of Neonatal-Perinatal Medicine";journal;"18784429, 19345798";"SAGE Publications Ltd";No;No;0,337;Q3;32;87;283;435;336;280;1,02;5,00;48,35;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +15978;21101347239;"Journal of the European Mosquito Control Association";journal;"2054930X";"Wageningen Academic Publishers";Yes;No;0,337;Q3;10;17;28;769;31;24;1,00;45,24;42,03;0;Netherlands;Western Europe;"Wageningen Academic Publishers";"2013-2015, 2018-2026";"Insect Science (Q3)";"Agricultural and Biological Sciences" +15979;24449;"Kybernetika";journal;"00235954, 1805949X";"Institute of Information Theory and Automation of The Czech Academy of Sciences";Yes;No;0,337;Q3;44;41;128;1627;190;127;1,47;39,68;30,68;0;Czech Republic;Eastern Europe;"Institute of Information Theory and Automation of The Czech Academy of Sciences";"1972-1989, 1996-2025";"Artificial Intelligence (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Information Systems (Q3); Software (Q3); Theoretical Computer Science (Q3)";"Computer Science; Engineering; Mathematics" +15980;21100375904;"Open Engineering";journal;"23915439";"Walter de Gruyter GmbH";Yes;No;0,337;Q3;43;64;389;2353;771;389;1,94;36,77;21,11;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2015-2026";"Aerospace Engineering (Q3); Civil and Structural Engineering (Q3); Electrical and Electronic Engineering (Q3); Environmental Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Engineering; Environmental Science; Materials Science" +15981;21101307585;"Oral — Health, Diseases, Therapies, and Technologies";journal;"26736373";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,337;Q3;9;104;122;6005;207;119;1,74;57,74;54,17;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Public Health, Environmental and Occupational Health (Q3); Surgery (Q3); Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +15982;21100834312;"Persian Journal of Acarology";journal;"22518169";"Acarological Society of Iran";Yes;Yes;0,337;Q3;12;46;134;1761;108;125;0,88;38,28;33,90;0;Iran;Middle East;"Acarological Society of Iran";"2017-2026";"Animal Science and Zoology (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +15983;64015;"Physical Oceanography";journal;"09285105, 1573160X";"Marine Hydrophysical Institute of RAS";Yes;No;0,337;Q3;15;57;154;1491;127;153;0,86;26,16;36,36;0;Netherlands;Western Europe;"Marine Hydrophysical Institute of RAS";"1993-2011, 2019-2025";"Fluid Flow and Transfer Processes (Q3); Geophysics (Q3); Ocean Engineering (Q3); Oceanography (Q3); Water Science and Technology (Q3)";"Chemical Engineering; Earth and Planetary Sciences; Engineering; Environmental Science" +15984;14844;"Survey Methodology";journal;"14920921, 07140045";"Statistics Canada";No;No;0,337;Q3;27;34;78;850;42;72;0,42;25,00;23,08;0;Canada;Northern America;"Statistics Canada";"1987-1988, 1992, 2008-2025";"Modeling and Simulation (Q3); Statistics and Probability (Q3)";"Mathematics" +15985;21100211736;"Tourism Analysis";journal;"10835423, 19433999";"Cognizant Communication Corporation";No;No;0,337;Q3;51;32;124;2426;219;124;1,83;75,81;33,75;0;United States;Northern America;"Cognizant Communication Corporation";"2001-2025";"Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting" +15986;21100200407;"Arqueologia";journal;"18538126, 03275159";"University of Buenos Aires";Yes;Yes;0,336;Q1;12;27;86;1550;49;83;0,51;57,41;47,22;0;Argentina;Latin America;"University of Buenos Aires";"2011-2026";"Archeology (arts and humanities) (Q1); Archeology (Q2)";"Arts and Humanities; Social Sciences" +15987;16000154793;"Australian Archaeology";journal;"03122417";"Taylor and Francis Ltd.";No;No;0,336;Q1;31;34;116;1069;73;92;0,63;31,44;56,25;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Archeology (arts and humanities) (Q1); Archeology (Q2)";"Arts and Humanities; Social Sciences" +15988;21100868935;"Espacio, Tiempo y Forma, Serie III: Historia Medieval";journal;"02149745, 23401362";"Universidad Nacional de Educacion a Distancia (UNED)";Yes;Yes;0,336;Q1;5;30;105;1860;42;103;0,44;62,00;36,67;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2018-2025";"Classics (Q1); History (Q1)";"Arts and Humanities" +15989;21101132411;"Journal of Conservation and Museum Studies";journal;"20494572, 13640429";"Ubiquity Press";Yes;No;0,336;Q1;6;1;11;65;14;11;3,00;65,00;100,00;0;United Kingdom;Western Europe;"Ubiquity Press";"2019-2023, 2025";"Conservation (Q1); Museology (Q1)";"Arts and Humanities" +15990;5600153821;"Philosophy";journal;"00318191, 1469817X";"Cambridge University Press";No;No;0,336;Q1;35;29;74;896;78;71;1,08;30,90;31,03;0;United Kingdom;Western Europe;"Cambridge University Press";"1926-2026";"Philosophy (Q1)";"Arts and Humanities" +15991;21101145470;"Wound Practice and Research";journal;"18376304, 22029729";"Cambridge Media";No;No;0,336;Q1;11;26;84;914;88;70;1,37;35,15;66,15;0;Australia;Pacific Region;"Cambridge Media";"2019-2025";"Medical and Surgical Nursing (Q1); Dermatology (Q3); Surgery (Q3)";"Medicine; Nursing" +15992;21100944298;"Baltistica";journal;"01326503, 23450045";"Vilnius University, Department of Baltic Studies";Yes;Yes;0,336;Q2;4;14;48;705;13;45;0,21;50,36;47,06;0;Lithuania;Eastern Europe;"Vilnius University, Department of Baltic Studies";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +15993;5600152936;"Crime Prevention and Community Safety";journal;"17434629, 14603780";"Palgrave Macmillan Ltd.";No;No;0,336;Q2;33;5;71;285;122;71;1,81;57,00;15,38;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1999-2025";"Law (Q2); Sociology and Political Science (Q2); Safety Research (Q3)";"Social Sciences" +15994;21100212132;"DESIDOC Journal of Library and Information Technology";journal;"09740643, 09764658";"Defence Scientific Information and Documentation Centre";No;No;0,336;Q2;22;76;143;2142;214;141;1,44;28,18;28,13;0;India;Asiatic Region;"Defence Scientific Information and Documentation Centre";"2012-2025";"Library and Information Sciences (Q2)";"Social Sciences" +15995;5600153394;"International Criminal Justice Review";journal;"10575677, 15563855";"SAGE Publications Inc.";No;No;0,336;Q2;35;25;68;2022;105;67;1,33;80,88;37,74;0;United States;Northern America;"SAGE Publications Inc.";"1991-2003, 2005-2026";"Law (Q2)";"Social Sciences" +15996;21101083190;"Medialingvistika";journal;"23120274, 2312296X";"Saint Petersburg State University";No;No;0,336;Q2;7;18;88;1027;36;88;0,48;57,06;71,43;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +15997;16610;"Serials Librarian";journal;"15411095, 0361526X";"Routledge";No;No;0,336;Q2;22;26;105;1262;146;94;2,09;48,54;43,75;0;United States;Northern America;"Routledge";"1977-2026";"Library and Information Sciences (Q2)";"Social Sciences" +15998;26901;"Acta Polymerica Sinica";journal;"10003304";"Science Press";No;No;0,336;Q3;31;192;436;8816;541;436;1,17;45,92;33,48;0;China;Asiatic Region;"Science Press";"1996-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Polymers and Plastics (Q3)";"Chemical Engineering; Chemistry; Materials Science" +15999;21100811733;"Acta Technologica Agriculturae";journal;"13352555, 13385267";"De Gruyter Open Ltd";Yes;No;0,336;Q3;21;32;96;935;155;96;1,88;29,22;15,97;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2015-2026";"Agronomy and Crop Science (Q3); Mechanical Engineering (Q3); Waste Management and Disposal (Q3)";"Agricultural and Biological Sciences; Engineering; Environmental Science" +16000;19900193962;"AIP Advances";journal;"21583226";"American Institute of Physics";Yes;No;0,336;Q3;96;1754;4744;62897;8763;4740;1,96;35,86;28,33;0;United States;Northern America;"American Institute of Physics";"2011-2026";"Physics and Astronomy (miscellaneous) (Q3); Nanoscience and Nanotechnology (Q4)";"Materials Science; Physics and Astronomy" +16001;21100199337;"Asian Academy of Management Journal";journal;"21804184, 13942603";"Penerbit Universiti Sains Malaysia";Yes;No;0,336;Q3;24;8;69;642;108;69;1,10;80,25;34,78;0;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2011-2025";"Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting" +16002;20335;"Florida Entomologist";journal;"00154040";"Florida Entomological Society";Yes;No;0,336;Q3;67;32;142;1794;154;142;0,99;56,06;40,61;0;United States;Northern America;"Florida Entomological Society";"1982, 1993-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +16003;4400151731;"Future Cardiology";journal;"17448298, 14796678";"Taylor and Francis Ltd.";No;No;0,336;Q3;46;139;284;5288;347;259;1,02;38,04;31,42;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Cardiology and Cardiovascular Medicine (Q3); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16004;28078;"International Journal of Theoretical Physics";journal;"15729575, 00207748";"Springer New York";No;No;0,336;Q3;77;334;847;16676;1641;838;2,30;49,93;25,63;0;United States;Northern America;"Springer New York";"1968-2026";"Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Mathematics; Physics and Astronomy" +16005;21100915638;"Journal of Forensic Psychology Research and Practice";journal;"24732850, 24732842";"Routledge";No;No;0,336;Q3;29;103;103;6125;167;101;1,53;59,47;54,05;1;United Kingdom;Western Europe;"Routledge";"2017-2026";"Applied Psychology (Q3); Pathology and Forensic Medicine (Q3)";"Medicine; Psychology" +16006;21100898037;"Journal on Efficiency and Responsibility in Education and Science";journal;"23362375, 18031617";"Czech University of Life Sciences Prague";Yes;Yes;0,336;Q3;17;27;82;1650;157;81;1,67;61,11;51,90;0;Czech Republic;Eastern Europe;"Czech University of Life Sciences Prague";"2008-2025";"Education (Q3)";"Social Sciences" +16007;21101101205;"Modern Rheumatology Case Reports";journal;"24725625";"Oxford University Press";No;No;0,336;Q3;13;143;248;3040;268;246;1,09;21,26;28,90;0;United Kingdom;Western Europe;"Oxford University Press";"2017-2026";"Rheumatology (Q3)";"Medicine" +16008;21100787535;"Organizations and Markets in Emerging Economies";journal;"23450037, 20294581";"Vilnius University";Yes;Yes;0,336;Q3;15;20;74;1509;134;74;1,51;75,45;40,00;0;Lithuania;Eastern Europe;"Vilnius University";"2016-2025";"Business and International Management (Q3); Development (Q3); Economics and Econometrics (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +16009;21100896370;"Pacific Rim International Journal of Nursing Research";journal;"19068107, 25868373";"Thailand Nursing and Midwifery Council";No;No;0,336;Q3;15;63;170;2463;178;163;0,87;39,10;77,48;0;Thailand;Asiatic Region;"Thailand Nursing and Midwifery Council";"2018-2026";"Nursing (miscellaneous) (Q3)";"Nursing" +16010;13062;"Progress in Palliative Care";journal;"09699260, 1743291X";"Taylor and Francis Ltd.";No;No;0,336;Q3;25;19;87;654;82;76;0,82;34,42;68,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2025";"Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)";"Medicine; Nursing" +16011;12340;"Theoretical and Mathematical Physics (Russian Federation)";journal;"15739333, 00405779";"Pleiades Publishing";No;No;0,336;Q3;51;149;395;4635;411;395;1,07;31,11;26,98;0;United States;Northern America;"Pleiades Publishing";"1969-2026";"Mathematical Physics (Q3); Statistical and Nonlinear Physics (Q3)";"Mathematics; Physics and Astronomy" +16012;12389;"Turkish Journal of Physics";journal;"13036122, 13000101";"TUBITAK";No;No;0,336;Q3;35;21;41;776;57;41;0,71;36,95;35,00;0;Turkey;Middle East;"TUBITAK";"1994-2025";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +16013;21100216940;"Wireless Telecommunications Symposium";conference and proceedings;"19345070";"IEEE Computer Society";No;No;0,336;-;22;0;47;0;60;41;1,29;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2011-2024";"Computer Networks and Communications; Electrical and Electronic Engineering; Signal Processing";"Computer Science; Engineering" +16014;19976;"British Journal for the History of Science";journal;"1474001X, 00070874";"Cambridge University Press";No;No;0,335;Q1;38;39;85;4071;85;83;0,93;104,38;34,04;0;United Kingdom;Western Europe;"Cambridge University Press";"1962-2026";"History (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities" +16015;5800207960;"Multicultural Perspectives";journal;"15327892, 15210960";"Routledge";No;No;0,335;Q1;28;31;86;946;75;55;0,79;30,52;76,00;0;United States;Northern America;"Routledge";"2009-2025";"Cultural Studies (Q1)";"Social Sciences" +16016;21101158599;"Society Register";journal;"25445502";"Uniwersytet im. Adama Mickiewicza w Poznaniu";Yes;Yes;0,335;Q1;8;14;32;764;70;32;2,19;54,57;50,00;1;Poland;Eastern Europe;"Uniwersytet im. Adama Mickiewicza w Poznaniu";"2023-2025";"Cultural Studies (Q1); Gender Studies (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16017;144831;"Advances in Applied Ceramics";journal;"17436761, 17436753";"SAGE Publications Ltd";No;No;0,335;Q2;62;16;82;1134;163;79;1,74;70,88;32,79;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2004-2025";"Industrial and Manufacturing Engineering (Q2); Ceramics and Composites (Q3)";"Engineering; Materials Science" +16018;23977;"International Journal of Automotive Technology and Management";journal;"14709511, 17415012";"Inderscience Enterprises Ltd";No;No;0,335;Q2;29;16;68;900;113;66;1,40;56,25;23,81;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2001-2025";"Automotive Engineering (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Engineering" +16019;21100845633;"Journal of Southeast Asian Economies";journal;"23395095, 23395206";"ISEAS - Yusof Ishak Institute";No;No;0,335;Q2;15;15;51;796;79;49;1,91;53,07;32,14;0;Singapore;Asiatic Region;"ISEAS - Yusof Ishak Institute";"2017-2025";"Political Science and International Relations (Q2); Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance; Social Sciences" +16020;21101122744;"Labour and Industry";journal;"23255676, 10301763";"Informa UK Ltd";No;No;0,335;Q2;29;24;71;1496;142;65;1,77;62,33;55,77;0;United Kingdom;Western Europe;"Informa UK Ltd";"1987-1991, 1993-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q3); Public Administration (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +16021;21100814520;"Latin American Policy";journal;"20417373, 20417365";"John Wiley and Sons Ltd";No;No;0,335;Q2;14;34;111;1878;128;95;1,14;55,24;26,42;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16022;4700152859;"Maderas: Ciencia y Tecnologia";journal;"07173644, 0718221X";"";Yes;Yes;0,335;Q2;42;46;141;1717;222;141;1,43;37,33;35,67;0;Chile;Latin America;"";"2001-2002, 2006-2026";"Forestry (Q2); Industrial and Manufacturing Engineering (Q2); Chemical Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Chemical Engineering; Engineering; Materials Science" +16023;17798;"Materials at High Temperatures";journal;"09603409";"Maney Publishing";No;No;0,335;Q2;50;29;170;978;197;165;1,10;33,72;24,24;0;United Kingdom;Western Europe;"Maney Publishing";"1991-1995, 1997-2026";"Metals and Alloys (Q2); Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Materials Chemistry (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +16024;21100247042;"Non-ferrous Metals";journal;"20720807, 24140155";"Ore and Metals Publishing house";No;No;0,335;Q2;13;21;66;623;79;66;1,27;29,67;35,94;0;Russian Federation;Eastern Europe;"Ore and Metals Publishing house";"2013-2025";"Metals and Alloys (Q2); Ceramics and Composites (Q3)";"Materials Science" +16025;21101074578;"Populism";journal;"25888072, 25888064";"Brill Academic Publishers";No;No;0,335;Q2;11;20;28;1456;37;27;1,67;72,80;46,43;0;Netherlands;Western Europe;"Brill Academic Publishers";"2018-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16026;21101388875;"Advances in Biomarker Sciences and Technology";journal;"25431064";"KeAi Publishing Communications Ltd.";Yes;No;0,335;Q3;10;29;39;2406;99;36;1,97;82,97;38,61;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2019-2026";"Biochemistry (medical) (Q3); Clinical Biochemistry (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16027;21100244225;"Competition and Regulation in Network Industries";journal;"23992956, 17835917";"SAGE Publications Inc.";No;No;0,335;Q3;16;0;38;0;73;37;1,76;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2013-2024";"Business, Management and Accounting (miscellaneous) (Q3); Management Science and Operations Research (Q3)";"Business, Management and Accounting; Decision Sciences" +16028;26391;"Electronic Journal of Differential Equations";journal;"10726691, 15506150";"Texas State University - San Marcos";Yes;Yes;0,335;Q3;57;121;275;3739;183;274;0,66;30,90;31,67;0;United States;Northern America;"Texas State University - San Marcos";"1996-2026";"Analysis (Q3)";"Mathematics" +16029;14192;"Forum for Development Studies";journal;"08039410, 18911765";"Routledge";No;No;0,335;Q3;33;36;66;2189;110;66;1,54;60,81;38,98;2;United Kingdom;Western Europe;"Routledge";"1992-2026";"Development (Q3); Geography, Planning and Development (Q3)";"Social Sciences" +16030;4900153504;"Geochronometria";journal;"17338387, 18971695";"Silesian University of Technology";No;No;0,335;Q3;40;6;24;353;21;24;0,86;58,83;24,00;0;Poland;Eastern Europe;"Silesian University of Technology";"2000-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +16031;21100466891;"International Journal of Health Governance";journal;"2059464X, 20594631";"Emerald Publishing";No;No;0,335;Q3;34;43;105;1955;155;89;1,51;45,47;48,35;0;United Kingdom;Western Europe;"Emerald Publishing";"2016-2026";"Business, Management and Accounting (miscellaneous) (Q3); Health Policy (Q3); Paleontology (Q3); Public Health, Environmental and Occupational Health (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Earth and Planetary Sciences; Medicine" +16032;14137;"Journal for Healthcare Quality";journal;"19451474, 10622551";"Wolters Kluwer Health";No;No;0,335;Q3;38;47;138;935;155;136;1,09;19,89;51,52;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1992-2026";"Health Policy (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +16033;21101058912;"Journal of Cancer Metastasis and Treatment";journal;"23944722, 24542857";"OAE Publishing Inc.";No;No;0,335;Q3;21;41;118;3187;126;116;1,23;77,73;34,96;0;United States;Northern America;"OAE Publishing Inc.";"2019-2025";"Oncology (Q3)";"Medicine" +16034;21100199701;"Journal of European Real Estate Research";journal;"17539277, 17539269";"Emerald Group Publishing Ltd.";No;No;0,335;Q3;25;43;75;2455;118;66;1,43;57,09;25,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2026";"Accounting (Q3); Economics and Econometrics (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +16035;6100153107;"Journal of Ocean University of China";journal;"19935021, 16725182";"Science Press";No;No;0,335;Q3;42;158;464;7857;808;464;1,65;49,73;33,54;0;China;Asiatic Region;"Science Press";"2003, 2007-2026";"Ocean Engineering (Q3); Oceanography (Q3)";"Earth and Planetary Sciences; Engineering" +16036;21100900367;"Journal of Radiosurgery and SBRT";journal;"21564639, 21564647";"Old City Publishing";No;No;0,335;Q3;15;18;59;509;49;54;0,83;28,28;26,47;0;Spain;Western Europe;"Old City Publishing";"2018-2026";"Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Surgery (Q3)";"Health Professions; Medicine" +16037;22070;"Marine Ornithology";journal;"10183337";"Marine Ornithology";Yes;No;0,335;Q3;38;51;119;2295;111;118;0,98;45,00;38,64;1;Canada;Northern America;"Marine Ornithology";"1990-1991, 1993-2025";"Animal Science and Zoology (Q3); Oceanography (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +16038;16162;"Proceedings of the Institution of Civil Engineers: Municipal Engineer";journal;"09650903, 17517699";"ICE Publishing";No;No;0,335;Q3;31;21;65;788;79;57;1,13;37,52;19,35;0;United Kingdom;Western Europe;"ICE Publishing";"1992-2025";"Civil and Structural Engineering (Q3)";"Engineering" +16039;21100838045;"Sankhya A";journal;"0976836X, 09768378";"Springer India";No;No;0,335;Q3;14;63;149;1641;84;147;0,55;26,05;20,20;0;India;Asiatic Region;"Springer India";"2010-2026";"Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +16040;27206;"Solid-State Electronics";journal;"00381101";"Elsevier Ltd";No;No;0,335;Q3;113;190;548;4882;825;541;1,39;25,69;24,04;0;United Kingdom;Western Europe;"Elsevier Ltd";"1960-2026";"Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Materials Chemistry (Q3)";"Engineering; Materials Science; Physics and Astronomy" +16041;24528;"Solvent Extraction and Ion Exchange";journal;"15322262, 07366299";"Taylor and Francis Ltd.";No;No;0,335;Q3;79;42;114;2175;214;113;2,19;51,79;26,62;0;United States;Northern America;"Taylor and Francis Ltd.";"1983-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +16042;21100928093;"Uchenye Zapiski Kazanskogo Universiteta. Seriya Fiziko-Matematicheskie Nauki";journal;"25002198, 25417746";"Kazan Federal University";Yes;Yes;0,335;Q3;9;45;88;1272;49;88;0,60;28,27;26,67;0;Russian Federation;Eastern Europe;"Kazan Federal University";"2016-2025";"Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3); Modeling and Simulation (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Mathematics; Physics and Astronomy" +16043;21101141528;"Advances in Southeast Asian Studies";journal;"2791531X";"SEAS - Society for South-East Asian Studies";Yes;Yes;0,334;Q1;18;11;48;623;87;43;1,94;56,64;52,94;0;Austria;Western Europe;"SEAS - Society for South-East Asian Studies";"2022-2025";"Cultural Studies (Q1); Anthropology (Q2); Communication (Q2); Law (Q2); Sociology and Political Science (Q2); Development (Q3); Geography, Planning and Development (Q3)";"Social Sciences" +16044;15347;"International Review of Social History";journal;"1469512X, 00208590";"Cambridge University Press";No;No;0,334;Q1;41;30;105;2201;87;101;0,67;73,37;35,29;0;United Kingdom;Western Europe;"Cambridge University Press";"1956-2026";"History (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +16045;145569;"L1 Educational Studies in Language and Literature";journal;"15731731, 15676617";"International Association for Research in L1 Education (ARLE)";Yes;Yes;0,334;Q1;23;21;72;1491;85;72;1,06;71,00;68,42;0;Belgium;Western Europe;"International Association for Research in L1 Education (ARLE)";"2001-2025";"Literature and Literary Theory (Q1); Health Professions (miscellaneous) (Q2); Linguistics and Language (Q2); Education (Q3); Psychology (miscellaneous) (Q3)";"Arts and Humanities; Health Professions; Psychology; Social Sciences" +16046;21100897523;"Moral Philosophy and Politics";journal;"21945616, 21945624";"Walter de Gruyter GmbH";No;No;0,334;Q1;16;38;57;1900;75;54;0,70;50,00;22,22;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2014-2026";"Philosophy (Q1); History and Philosophy of Science (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +16047;5600155293;"Revista Complutense de Historia de America";journal;"1988270X, 11328312";"Universidad Complutense Madrid";Yes;Yes;0,334;Q1;12;23;51;1083;24;47;0,58;47,09;33,33;0;Spain;Western Europe;"Universidad Complutense Madrid";"1996-2025";"History (Q1)";"Arts and Humanities" +16048;19600156802;"Acta Metallurgica Slovaca";journal;"13351532, 13381156";"SciCell s.r.o.";Yes;Yes;0,334;Q2;18;40;96;1194;171;96;2,13;29,85;44,83;0;Slovakia;Eastern Europe;"SciCell s.r.o.";"2009-2025";"Metals and Alloys (Q2)";"Materials Science" +16049;5100155097;"ACTA Paulista de Enfermagem";journal;"19820194, 01032100";"Departamento de Enfermagem/Universidade Federal de Sao Paulo";Yes;No;0,334;Q2;31;112;428;3429;406;419;0,86;30,62;74,33;0;Brazil;Latin America;"Departamento de Enfermagem/Universidade Federal de Sao Paulo";"2006-2025";"Advanced and Specialized Nursing (Q2); Medical and Surgical Nursing (Q2)";"Nursing" +16050;21100887531;"Administrative Theory and Praxis";journal;"19490461, 10841806";"Taylor and Francis Ltd.";No;No;0,334;Q2;23;40;71;2141;145;63;1,90;53,53;42,86;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2026";"Sociology and Political Science (Q2); Business and International Management (Q3); Public Administration (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +16051;21100248874;"Dilemas";journal;"19835922, 21782792";"Universidade Federal do Rio de Janeiro";Yes;Yes;0,334;Q2;14;45;149;2312;64;147;0,18;51,38;43,33;0;Brazil;Latin America;"Universidade Federal do Rio de Janeiro";"2013-2025";"Law (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +16052;19900192538;"European Transport - Trasporti Europei";journal;"18253997";"Universita degli Studi di Trieste";Yes;No;0,334;Q2;28;30;122;1061;181;119;1,55;35,37;38,16;0;Italy;Western Europe;"Universita degli Studi di Trieste";"1995-1996, 2006, 2008, 2010-2013, 2015-2025";"Automotive Engineering (Q2); Transportation (Q3)";"Engineering; Social Sciences" +16053;12043;"Interchange";journal;"15731790, 08264805";"Springer Netherlands";No;No;0,334;Q2;26;17;84;605;153;84;1,71;35,59;53,85;0;Netherlands;Western Europe;"Springer Netherlands";"1970-2003, 2005-2026";"Arts and Humanities (miscellaneous) (Q2); Law (Q2); Social Sciences (miscellaneous) (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +16054;5000153601;"Journal of Teaching in Social Work";journal;"15407349, 08841233";"Routledge";No;No;0,334;Q2;37;57;108;2142;110;102;0,66;37,58;73,26;0;United States;Northern America;"Routledge";"1987-2026";"Sociology and Political Science (Q2); Education (Q3); Social Work (Q4)";"Social Sciences" +16055;21823;"Pharmacia";journal;"04280296";"Pensoft Publishers";Yes;No;0,334;Q2;26;266;558;11845;1113;558;1,97;44,53;55,19;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"1945, 1954-1955, 1987-1991, 1997-2026";"Pharmacy (Q2); Pharmaceutical Science (Q3); Pharmacology (medical) (Q3)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +16056;21101027629;"SAE International Journal of Electrified Vehicles";journal;"26913755, 26913747";"SAE International";No;No;0,334;Q2;32;16;59;694;102;57;1,69;43,38;18,03;0;United States;Northern America;"SAE International";"2020-2026";"Automotive Engineering (Q2); Fuel Technology (Q3)";"Energy; Engineering" +16057;16481;"Biomedical Papers";journal;"12138118, 18047521";"Palacky University Olomouc";Yes;No;0,334;Q3;59;39;170;1662;202;169;1,27;42,62;39,82;0;Czech Republic;Eastern Europe;"Palacky University Olomouc";"2001-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16058;28621;"Biomedizinische Technik";journal;"1862278X, 00135585";"Walter de Gruyter GmbH";No;No;0,334;Q3;51;51;150;2147;263;149;1,59;42,10;27,04;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1956-2026";"Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)";"Engineering; Medicine" +16059;19716;"Canadian Entomologist";journal;"0008347X, 19183240";"Cambridge University Press";No;No;0,334;Q3;54;53;130;2568;161;130;1,01;48,45;40,88;0;United Kingdom;Western Europe;"Cambridge University Press";"1868-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3); Molecular Biology (Q4); Physiology (Q4); Structural Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +16060;19750;"Coleopterists Bulletin";journal;"0010065X";"Coleopterists Society";No;No;0,334;Q3;30;79;252;2056;124;228;0,62;26,03;24,44;0;United States;Northern America;"Coleopterists Society";"1988-2025";"Insect Science (Q3)";"Agricultural and Biological Sciences" +16061;12100155401;"Forensic Science International: Genetics Supplement Series";journal;"1875175X, 18751768";"Elsevier B.V.";No;No;0,334;Q3;31;0;127;0;106;126;0,00;0,00;0,00;0;Ireland;Western Europe;"Elsevier B.V.";"2008-2009, 2011, 2013, 2015, 2017, 2019, 2022";"Pathology and Forensic Medicine (Q3); Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16062;4800156304;"Human Movement";journal;"17323991, 18991955";"Wroclaw University of Health and Sport Sciences";Yes;No;0,334;Q3;28;55;166;2667;219;166;1,38;48,49;28,95;0;Poland;Eastern Europe;"Wroclaw University of Health and Sport Sciences";"2006-2025";"Biophysics (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Public Health, Environmental and Occupational Health (Q3)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +16063;26627;"Internal Medicine";journal;"13497235, 09182918";"Japanese Society of Internal Medicine";Yes;No;0,334;Q3;87;672;2005;12439;1783;1708;0,83;18,51;20,47;0;Japan;Asiatic Region;"Japanese Society of Internal Medicine";"1974, 1992-2026";"Internal Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +16064;14891;"International Journal of Group Psychotherapy";journal;"00207284, 19432836";"Taylor and Francis Ltd.";No;No;0,334;Q3;33;36;50;1771;74;45;1,25;49,19;53,54;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1957, 1959, 1961-2026";"Clinical Psychology (Q3)";"Psychology" +16065;19207;"Journal of Bryology";journal;"17432820, 03736687";"Taylor and Francis Ltd.";No;No;0,334;Q3;42;37;86;1878;90;70;0,84;50,76;39,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +16066;19600164700;"Journal of Chemical Sciences";journal;"09743626, 09737103";"Springer India";No;No;0,334;Q3;68;125;329;5577;668;328;1,87;44,62;33,06;0;India;Asiatic Region;"Springer India";"1980-1981, 1986-1987, 1990, 1993, 2000, 2002, 2004-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +16067;15869;"Journal of Clinical Ethics";journal;"10467890, 19455879";"University of Chicago Press";No;No;0,334;Q3;43;49;121;755;101;115;0,72;15,41;50,00;0;United States;Northern America;"University of Chicago Press";"1990-2026";"Health Policy (Q3); Health (social science) (Q3); Issues, Ethics and Legal Aspects (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Nursing; Social Sciences" +16068;21101052348;"Journal of Hospital Management and Health Policy";journal;"25232533";"AME Publishing Company";No;No;0,334;Q3;11;39;91;1548;129;79;1,59;39,69;45,45;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2019, 2021-2025";"Health Information Management (Q3); Health Policy (Q3); Leadership and Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Health Professions; Medicine; Nursing" +16069;13670;"Journal of Plastic Film and Sheeting";journal;"87560879, 15308014";"SAGE Publications Ltd";No;No;0,334;Q3;37;31;92;1027;141;62;1,30;33,13;33,33;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1985-2026";"Materials Chemistry (Q3); Polymers and Plastics (Q3); Surfaces, Coatings and Films (Q3)";"Materials Science" +16070;19700188434;"Journal of Stem Cells and Regenerative Medicine";journal;"09737154";"M/S GN Corporation Co. Ltd";Yes;No;0,334;Q3;21;11;26;266;31;17;1,00;24,18;31,25;0;Japan;Asiatic Region;"M/S GN Corporation Co. Ltd";"2010-2025";"Biotechnology (Q3); Biochemistry (Q4); Cell Biology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +16071;19700175752;"Logical Methods in Computer Science";journal;"18605974";"Logical Methods in Computer Science";Yes;Yes;0,334;Q3;45;121;306;5428;241;304;0,67;44,86;15,70;0;Germany;Western Europe;"Logical Methods in Computer Science";"2005-2026";"Computational Theory and Mathematics (Q3); Computer Science (miscellaneous) (Q3); Logic (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +16072;18993;"New Genetics and Society";journal;"14636778, 14699915";"Routledge";Yes;No;0,334;Q3;45;6;38;357;63;38;1,84;59,50;73,68;0;United Kingdom;Western Europe;"Routledge";"1996-1997, 1999-2025";"Health Policy (Q3); Health (social science) (Q3); Issues, Ethics and Legal Aspects (Q3); Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing; Social Sciences" +16073;21100867420;"Pakistan Journal of Commerce and Social Sciences";journal;"19978553, 23098619";"Johar Education Society Pakistan";Yes;Yes;0,334;Q3;27;30;105;2119;234;105;1,95;70,63;26,92;0;Pakistan;Asiatic Region;"Johar Education Society Pakistan";"2018-2025";"Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +16074;21101262966;"Revista Brasileira de Saude Ocupacional";journal;"23176369, 03037657";"";Yes;Yes;0,334;Q3;10;53;110;1759;93;92;0,86;33,19;66,89;0;Brazil;Latin America;"";"2020-2025";"Epidemiology (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +16075;14619;"Revue de Micropaleontologie";journal;"00351598";"Elsevier Masson s.r.l.";No;No;0,334;Q3;37;31;53;2494;68;52;1,33;80,45;32,94;0;France;Western Europe;"Elsevier Masson s.r.l.";"1979, 1988-2026";"Paleontology (Q3)";"Earth and Planetary Sciences" +16076;60455;"Acoustics Australia";journal;"18392571, 08146039";"Australian Acoustical Society";No;No;0,333;Q2;33;34;77;1314;183;77;1,57;38,65;23,01;1;Australia;Pacific Region;"Australian Acoustical Society";"1986-1991, 1996-2026";"Acoustics and Ultrasonics (Q2)";"Physics and Astronomy" +16077;17726;"Canadian Journal of Veterinary Research";journal;"19289022, 08309000";"Canadian Veterinary Medical Association";No;No;0,333;Q2;59;19;103;486;134;102;1,37;25,58;40,00;0;Canada;Northern America;"Canadian Veterinary Medical Association";"1986-2026";"Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +16078;21100199108;"Contemporary Economics";journal;"23008814, 20840845";"VIZJA University";Yes;No;0,333;Q2;27;28;86;1675;172;86;2,07;59,82;45,07;0;Poland;Eastern Europe;"VIZJA University";"2011-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Accounting (Q3); Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +16079;21101294616;"Countries Studies";journal;"29809193";"University of Tehran";No;No;0,333;Q2;3;27;50;957;29;48;0,58;35,44;31,25;0;Iran;Middle East;"University of Tehran";"2023-2026";"Sociology and Political Science (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +16080;100147348;"Howard Journal of Communications";journal;"10964649, 10646175";"Taylor and Francis Ltd.";No;No;0,333;Q2;44;97;99;5608;131;97;1,26;57,81;50,93;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Communication (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +16081;21100855506;"International Journal of E-Planning Research";journal;"21609926, 21609918";"IGI Global Publishing";No;No;0,333;Q2;18;10;23;698;38;23;2,07;69,80;50,00;0;United States;Northern America;"IGI Global Publishing";"2017-2025";"Urban Studies (Q2); Computer Science Applications (Q3); Geography, Planning and Development (Q3)";"Computer Science; Social Sciences" +16082;18304;"Journal of Veterinary Dentistry";journal;"24704083, 08987564";"SAGE Publications Inc.";No;No;0,333;Q2;36;67;135;1882;166;122;1,09;28,09;48,95;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1988-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +16083;21101115664;"SCHOLE: A Journal of Leisure Studies and Recreation Education";journal;"1937156X, 21624097";"Taylor and Francis Ltd.";No;No;0,333;Q2;13;8;79;325;69;78;0,66;40,63;44,44;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Sociology and Political Science (Q2); Education (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +16084;24027;"American Journal of Dance Therapy";journal;"15733262, 01463721";"Springer New York";No;No;0,333;Q3;26;12;41;491;41;29;1,04;40,92;66,67;0;United States;Northern America;"Springer New York";"1977-1987, 1989-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +16085;6600153107;"Applied Geophysics";journal;"19930658, 16727975";"Chinese Geophysical Society";No;No;0,333;Q3;38;238;186;7980;299;186;1,61;33,53;28,56;0;China;Asiatic Region;"Chinese Geophysical Society";"2006-2026";"Geophysics (Q3)";"Earth and Planetary Sciences" +16086;5800173397;"Body, Movement and Dance in Psychotherapy";journal;"17432987, 17432979";"Taylor and Francis Ltd.";No;No;0,333;Q3;20;35;76;1162;69;62;0,94;33,20;80,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +16087;19900191860;"Bulletin of Chemical Reaction Engineering and Catalysis";journal;"19782993";"Masyarakat Katalis Indonesia - Indonesian Catalyst Society (MKICS)";Yes;No;0,333;Q3;32;61;190;2556;355;190;1,78;41,90;40,28;0;Indonesia;Asiatic Region;"Masyarakat Katalis Indonesia - Indonesian Catalyst Society (MKICS)";"2009-2025";"Catalysis (Q3); Chemical Engineering (miscellaneous) (Q3); Process Chemistry and Technology (Q3)";"Chemical Engineering" +16088;21100869886;"Current Chemistry Letters";journal;"1927730X, 19277296";"Growing Science";Yes;No;0,333;Q3;27;69;189;3457;493;189;2,63;50,10;40,81;0;Canada;Northern America;"Growing Science";"2017-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +16089;21101131495;"Edutec";journal;"11359250";"GTE-Educational Technology Group, University of the Balearic Islands";Yes;Yes;0,333;Q3;12;76;148;2908;243;137;1,87;38,26;57,29;0;Spain;Western Europe;"GTE-Educational Technology Group, University of the Balearic Islands";"2019-2025";"Computer Science Applications (Q3); Education (Q3)";"Computer Science; Social Sciences" +16090;21100210918;"Egyptian Liver Journal";journal;"20906226, 20906218";"Lippincott Williams and Wilkins Ltd.";Yes;Yes;0,333;Q3;13;78;229;3538;306;229;1,46;45,36;43,69;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2012-2026";"Hepatology (Q3)";"Medicine" +16091;19700201403;"Global Journal of Engineering Education";journal;"13283154";"World Institute for Engineering and Technology Education";No;No;0,333;Q3;20;10;94;177;72;85;0,73;17,70;52,63;0;Australia;Pacific Region;"World Institute for Engineering and Technology Education";"2010-2025";"Computer Science (miscellaneous) (Q3); Education (Q3)";"Computer Science; Social Sciences" +16092;17600155120;"Inland Water Biology";journal;"19950837, 19950829";"Pleiades Publishing";No;No;0,333;Q3;19;152;367;6254;360;367;0,98;41,14;55,05;0;United States;Northern America;"Pleiades Publishing";"2009-2025";"Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +16093;24138;"Isotopes in Environmental and Health Studies";journal;"10256016, 14772639";"Taylor and Francis Ltd.";No;No;0,333;Q3;50;63;95;3476;147;92;1,61;55,17;36,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Environmental Chemistry (Q3); Environmental Science (miscellaneous) (Q3); Inorganic Chemistry (Q3)";"Chemistry; Environmental Science" +16094;39098;"Journal of Dairy Research";journal;"00220299, 14697629";"Cambridge University Press";No;No;0,333;Q3;94;90;229;3616;348;219;1,36;40,18;42,89;0;United Kingdom;Western Europe;"Cambridge University Press";"1929-2026";"Animal Science and Zoology (Q3); Food Science (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Medicine" +16095;21100937445;"Journal of Education and e-Learning Research";journal;"25180169, 24109991";"Asian Online Journal Publishing Group";Yes;No;0,333;Q3;19;74;207;3447;419;207;1,97;46,58;48,81;0;United States;Northern America;"Asian Online Journal Publishing Group";"2019-2026";"Computer Science Applications (Q3); Developmental and Educational Psychology (Q3); Education (Q3)";"Computer Science; Psychology; Social Sciences" +16096;21100823999;"Jurnal Pendidikan IPA Indonesia";journal;"20894392, 23391286";"Universitas Negeri Semarang";Yes;No;0,333;Q3;33;60;181;4180;393;181;1,80;69,67;49,68;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2012-2025";"Education (Q3)";"Social Sciences" +16097;21100316021;"Obstetric Medicine";journal;"1753495X, 17534968";"SAGE Publications Ltd";No;No;0,333;Q3;30;95;162;2298;187;148;0,84;24,19;66,39;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2012-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +16098;21100198423;"Oman Medical Journal";journal;"20705204, 1999768X";"Oman Medical Specialty Board";Yes;Yes;0,333;Q3;52;70;372;1358;352;292;0,65;19,40;47,15;0;Oman;Middle East;"Oman Medical Specialty Board";"2007-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +16099;9300153116;"Stem Cell Research";journal;"18735061, 18767753";"Elsevier B.V.";Yes;No;0,333;Q3;86;252;973;1462;593;973;0,63;5,80;53,16;0;Netherlands;Western Europe;"Elsevier B.V.";"2007-2026";"Medicine (miscellaneous) (Q3); Cell Biology (Q4); Developmental Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16100;19700201171;"Surgical Neurology International";journal;"22295097, 21527806";"Scientific Scholar";Yes;No;0,333;Q3;52;298;1495;5903;1375;1427;0,89;19,81;22,67;0;India;Asiatic Region;"Scientific Scholar";"2011-2026";"Neurology (clinical) (Q3); Surgery (Q3)";"Medicine" +16101;21101131201;"Proceedings of the IEEE Radar Conference";conference and proceedings;"10975764, 23755318";"Institute of Electrical and Electronics Engineers";No;No;0,333;-;62;417;1088;7633;1274;1077;1,12;18,30;18,40;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2021-2025";"Computer Networks and Communications; Instrumentation; Signal Processing";"Computer Science; Physics and Astronomy" +16102;26731;"History of the Family";journal;"1081602X";"Taylor and Francis Ltd.";No;No;0,332;Q1;33;50;97;3305;111;88;1,00;66,10;47,76;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"History (Q1); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +16103;23045;"Isis";journal;"00211753, 15456994";"University of Chicago Press";No;No;0,332;Q1;58;46;159;1228;149;139;0,75;26,70;51,06;0;United States;Northern America;"University of Chicago Press";"1945-1963, 1965-2026";"History (Q1); History and Philosophy of Science (Q2); Earth and Planetary Sciences (miscellaneous) (Q3)";"Arts and Humanities; Earth and Planetary Sciences" +16104;21100975561;"Journal of Visual Literacy";journal;"1051144X, 23796529";"Taylor and Francis Ltd.";No;No;0,332;Q1;23;22;49;913;70;47;1,42;41,50;57,14;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Visual Arts and Performing Arts (Q1); Communication (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +16105;5700164130;"Latino Studies";journal;"14763443, 14763435";"Palgrave Macmillan Ltd.";No;No;0,332;Q1;31;35;102;1735;62;82;0,49;49,57;63,64;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2006-2025";"Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +16106;21101033505;"Revista del Museo de Antropologia";journal;"18524826, 1852060X";"Universidad Nacional de Cordoba, Facultad de Filosofia y Humanidades";Yes;Yes;0,332;Q1;8;73;233;3701;100;225;0,37;50,70;73,03;0;Argentina;Latin America;"Universidad Nacional de Cordoba, Facultad de Filosofia y Humanidades";"2019-2025";"Archeology (arts and humanities) (Q1); Museology (Q1); Anthropology (Q2); Archeology (Q2)";"Arts and Humanities; Social Sciences" +16107;21101046171;"Agraris";journal;"25279238, 2407814X";"Department of Agribusiness, Universitas Muhammadiyah Yogyakarta";Yes;No;0,332;Q2;10;19;51;1051;89;51;1,76;55,32;40,00;0;Indonesia;Asiatic Region;"Department of Agribusiness, Universitas Muhammadiyah Yogyakarta";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Social Sciences" +16108;21101030208;"Biolinguistics";journal;"14503417";"PsychOpen";Yes;Yes;0,332;Q2;5;5;27;135;38;25;1,55;27,00;30,00;0;Cyprus;Western Europe;"PsychOpen";"2008, 2010, 2013, 2015, 2017, 2019-2025";"Linguistics and Language (Q2); Experimental and Cognitive Psychology (Q4)";"Psychology; Social Sciences" +16109;4700152616;"Chungara";journal;"07177356, 07161182";"Universidad de Tarapaca";Yes;Yes;0,332;Q2;33;0;109;0;71;108;0,39;0,00;0,00;0;Chile;Latin America;"Universidad de Tarapaca";"2000-2002, 2004, 2006-2024";"Anthropology (Q2); Archeology (Q2)";"Social Sciences" +16110;21100865932;"European Public Law";journal;"13543725, 18758207";"Kluwer Law International";No;No;0,332;Q2;12;27;62;2494;52;62;0,64;92,37;48,78;0;Netherlands;Western Europe;"Kluwer Law International";"2018-2025";"Law (Q2)";"Social Sciences" +16111;21100197173;"International Journal of Energy for a Clean Environment";journal;"2150363X, 21503621";"Begell House Inc.";No;No;0,332;Q2;22;50;178;1776;276;167;1,47;35,52;21,62;0;United States;Northern America;"Begell House Inc.";"2008-2025";"Automotive Engineering (Q2); Energy Engineering and Power Technology (Q3); Pollution (Q3)";"Energy; Engineering; Environmental Science" +16112;27061;"American Journal of Medical Quality";journal;"1555824X, 10628606";"Wolters Kluwer Health";No;No;0,332;Q3;65;59;216;203;183;181;0,80;3,44;49,84;0;United States;Northern America;"Wolters Kluwer Health";"1992-2026";"Health Policy (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +16113;21100899617;"Canadian Journal of Learning and Technology";journal;"14996685";"Canadian Network for Innovation in Education";Yes;Yes;0,332;Q3;14;19;92;705;132;79;1,24;37,11;38,10;0;Canada;Northern America;"Canadian Network for Innovation in Education";"2018-2025";"Computer Science Applications (Q3); Education (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Computer Science; Social Sciences" +16114;13089;"International Journal of Polymer Analysis and Characterization";journal;"15635341, 1023666X";"Taylor and Francis Ltd.";No;No;0,332;Q3;60;84;137;3971;301;137;2,27;47,27;35,31;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Analytical Chemistry (Q3); Chemical Engineering (miscellaneous) (Q3); Polymers and Plastics (Q3)";"Chemical Engineering; Chemistry; Materials Science" +16115;20000195008;"International Journal of Technological Learning, Innovation and Development";journal;"17531942, 17531950";"Inderscience Enterprises Ltd";No;No;0,332;Q3;30;20;38;1395;81;38;2,35;69,75;41,86;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2025";"Computer Science Applications (Q3); Education (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Computer Science; Social Sciences" +16116;21100970264;"Journal of Algebra and Related Topics";journal;"23829877, 23453931";"University of Guilan";Yes;Yes;0,332;Q3;5;45;60;729;33;60;0,44;16,20;29,76;0;Iran;Middle East;"University of Guilan";"2019-2025";"Algebra and Number Theory (Q3); Applied Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3)";"Mathematics" +16117;51064;"Journal of Inclusion Phenomena and Macrocyclic Chemistry";journal;"15731111, 13883127";"Springer";No;No;0,332;Q3;71;55;155;2479;293;154;1,54;45,07;34,58;0;Netherlands;Western Europe;"Springer";"1999-2026";"Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Chemistry; Physics and Astronomy" +16118;12720;"Journal of Nutritional Science and Vitaminology";journal;"18817742, 03014800";"Center for Academic Publications Japan";No;No;0,332;Q3;74;68;255;2334;315;231;1,06;34,32;45,40;0;Japan;Asiatic Region;"Center for Academic Publications Japan";"1973-2025";"Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +16119;21100241623;"Journal of Ship Production and Design";journal;"21582874, 21582866";"Society of Naval Architects and Marine Engineers";No;No;0,332;Q3;29;8;55;171;77;55;1,43;21,38;25,64;0;United States;Northern America;"Society of Naval Architects and Marine Engineers";"2013-2025";"Mechanical Engineering (Q3); Ocean Engineering (Q3)";"Engineering" +16120;21100228140;"Leukemia Research Reports";journal;"22130489";"Elsevier Ltd";Yes;No;0,332;Q3;18;60;157;1439;148;148;0,84;23,98;44,78;0;United Kingdom;Western Europe;"Elsevier Ltd";"2012-2026";"Hematology (Q3); Oncology (Q3)";"Medicine" +16121;21100239248;"Modern Tunnelling Technology";journal;"10096582";"Editorial By Modern Tunnelling Technology";No;No;0,332;Q3;22;170;530;4000;612;530;1,16;23,53;26,91;0;China;Asiatic Region;"Editorial By Modern Tunnelling Technology";"2013-2025";"Civil and Structural Engineering (Q3)";"Engineering" +16122;21100810658;"Paladyn";journal;"20814836";"Walter de Gruyter GmbH";Yes;No;0,332;Q3;34;11;45;292;110;45;2,11;26,55;21,05;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2010-2025";"Artificial Intelligence (Q3); Human-Computer Interaction (Q3); Behavioral Neuroscience (Q4); Cognitive Neuroscience (Q4); Developmental Neuroscience (Q4)";"Computer Science; Neuroscience" +16123;19700173018;"Physics of Wave Phenomena";journal;"1934807X, 1541308X";"Pleiades Publishing";No;No;0,332;Q3;25;60;157;1576;220;157;1,39;26,27;26,85;0;United States;Northern America;"Pleiades Publishing";"2008-2025";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +16124;21100797241;"Primary Care Companion for CNS Disorders";journal;"21557780";"Physicians Postgraduate Press Inc.";No;No;0,332;Q3;67;172;562;3042;427;355;0,75;17,69;50,00;0;United States;Northern America;"Physicians Postgraduate Press Inc.";"2003, 2006, 2015-2026";"Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +16125;101730;"Rudarsko Geolosko Naftni Zbornik";journal;"03534529, 18490409";"Faculty of Mining, Geology and Petroleum Engineering University of Zagreb";Yes;Yes;0,332;Q3;23;66;190;3079;291;190;1,67;46,65;25,00;0;Croatia;Eastern Europe;"Faculty of Mining, Geology and Petroleum Engineering University of Zagreb";"1994-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Energy (miscellaneous) (Q3); Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Energy; Environmental Science" +16126;21100332432;"South American Journal of Herpetology";journal;"1982355X, 18089798";"Sociedade Brasileira de Herpetologia";No;No;0,332;Q3;19;15;65;1140;67;65;1,26;76,00;36,47;0;Brazil;Latin America;"Sociedade Brasileira de Herpetologia";"2014-2025";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +16127;25331;"Wuji Cailiao Xuebao/Journal of Inorganic Materials";journal;"1000324X";"Science Press";No;No;0,332;Q3;33;154;474;7187;803;467;1,76;46,67;36,74;0;China;Asiatic Region;"Science Press";"1993-2026";"Inorganic Chemistry (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Materials Science" +16128;14691;"Environment and History";journal;"09673407, 17527023";"White Horse Press";No;No;0,331;Q1;38;36;120;2114;67;93;0,50;58,72;42,86;0;United Kingdom;Western Europe;"White Horse Press";"1995-2026";"History (Q1); Arts and Humanities (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Arts and Humanities; Environmental Science; Social Sciences" +16129;6000159531;"International Journal of Cultural Property";journal;"14657317, 09407391";"Cambridge University Press";No;No;0,331;Q1;33;17;75;1031;103;72;0,87;60,65;50,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1992-2002, 2005-2026";"Conservation (Q1); Cultural Studies (Q1); History (Q1); Museology (Q1); Anthropology (Q2); Law (Q2)";"Arts and Humanities; Social Sciences" +16130;23620;"Studies in Conservation";journal;"00393630, 20470584";"Maney Publishing";No;No;0,331;Q1;50;87;247;3711;294;243;1,17;42,66;55,78;2;United Kingdom;Western Europe;"Maney Publishing";"1952-2026";"Conservation (Q1)";"Arts and Humanities" +16131;12256;"Cambridge Law Journal";journal;"14692139, 00081973";"Cambridge University Press";Yes;No;0,331;Q2;37;38;120;3029;165;91;0,87;79,71;20,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1921-1939, 1941-1998, 2000-2026";"Law (Q2)";"Social Sciences" +16132;12840;"Child and Family Behavior Therapy";journal;"1545228X, 07317107";"Taylor and Francis Ltd.";No;No;0,331;Q2;38;24;53;1742;57;53;1,14;72,58;68,60;0;United States;Northern America;"Taylor and Francis Ltd.";"1983-2026";"Social Sciences (miscellaneous) (Q2); Clinical Psychology (Q3)";"Psychology; Social Sciences" +16133;21100244605;"Cuestiones Constitucionales";journal;"24484881, 14059193";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,331;Q2;8;55;131;2561;46;130;0,14;46,56;27,42;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2013-2026";"Law (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16134;21101122725;"ECONOMICS - Innovative and Economics Research Journal";journal;"23035005, 23035013";"Sciendo";Yes;No;0,331;Q2;16;103;109;5981;298;109;2,76;58,07;42,13;0;Poland;Eastern Europe;"Sciendo";"2015-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business and International Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +16135;21100834323;"Emission Control Science and Technology";journal;"21993629, 21993637";"Springer International Publishing AG";Yes;No;0,331;Q2;27;29;47;1305;86;47;1,91;45,00;24,30;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Automotive Engineering (Q2); Health, Toxicology and Mutagenesis (Q3); Management, Monitoring, Policy and Law (Q3); Pollution (Q3)";"Engineering; Environmental Science" +16136;4700153002;"International Journal of Law, Policy and the Family";journal;"13609939, 14643707";"Oxford University Press";No;No;0,331;Q2;31;36;65;3817;83;65;1,14;106,03;72,41;1;United Kingdom;Western Europe;"Oxford University Press";"1996-1997, 2002, 2004-2026";"Law (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16137;5400152634;"Asia-Pacific Journal of Chemical Engineering";journal;"19322143, 19322135";"John Wiley and Sons Ltd";No;No;0,331;Q3;51;209;418;10601;773;415;1,90;50,72;33,06;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2006-2026";"Chemical Engineering (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q3); Waste Management and Disposal (Q3)";"Chemical Engineering; Energy; Environmental Science" +16138;19700173015;"Astrophysical Bulletin";journal;"19903421, 19903413";"Pleiades Publishing";No;No;0,331;Q3;27;59;152;2293;152;151;1,08;38,86;40,00;0;United States;Northern America;"Pleiades Publishing";"2007, 2009-2025";"Astronomy and Astrophysics (Q3); Instrumentation (Q3)";"Physics and Astronomy" +16139;12100157247;"Australian Journal of Structural Engineering";journal;"13287982";"Taylor and Francis Ltd.";No;No;0,331;Q3;29;48;77;1794;118;76;1,73;37,38;26,98;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Civil and Structural Engineering (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +16140;22531;"Cardiology in the Young";journal;"10479511, 14671107";"Cambridge University Press";No;No;0,331;Q3;70;462;1350;9682;1208;1328;0,83;20,96;47,21;0;United Kingdom;Western Europe;"Cambridge University Press";"1991-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +16141;4800156305;"Crop Breeding and Applied Biotechnology";journal;"19847033, 15187853";"Brazilian Society of Plant Breeding";Yes;Yes;0,331;Q3;35;58;156;1537;194;153;1,09;26,50;33,58;0;Brazil;Latin America;"Brazilian Society of Plant Breeding";"2006-2026";"Agronomy and Crop Science (Q3); Biotechnology (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +16142;26467;"Fibonacci Quarterly";journal;"00150517";"Fibonacci Association";No;No;0,331;Q3;33;47;133;602;44;128;0,22;12,81;15,38;0;United States;Northern America;"Fibonacci Association";"1969-1970, 1972, 1974, 1983-1984, 1996-2008, 2010-2025";"Algebra and Number Theory (Q3)";"Mathematics" +16143;21101113590;"Foundations of Data Science";journal;"26398001";"American Institute of Mathematical Sciences";No;No;0,331;Q3;15;38;62;2368;104;59;1,85;62,32;19,05;0;United States;Northern America;"American Institute of Mathematical Sciences";"2019-2026";"Analysis (Q3); Applied Mathematics (Q3); Computational Theory and Mathematics (Q3); Statistics and Probability (Q3)";"Computer Science; Mathematics" +16144;20300195002;"IEEE International Conference on Rehabilitation Robotics";journal;"19457901, 19457898";"IEEE Computer Society";No;No;0,331;Q3;52;292;237;7729;360;235;1,60;26,47;35,00;0;United States;Northern America;"IEEE Computer Society";"2011, 2013, 2015, 2017, 2019, 2022-2023, 2025";"Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Rehabilitation (Q3)";"Engineering; Medicine" +16145;17963;"International Journal of Circuit Theory and Applications";journal;"1097007X, 00989886";"John Wiley and Sons Ltd";No;No;0,331;Q3;60;658;915;20550;1895;900;2,12;31,23;26,55;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1973-2026";"Applied Mathematics (Q3); Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Computer Science; Engineering; Materials Science; Mathematics" +16146;7000153218;"International Journal of Speleology";journal;"1827806X, 03926672";"Societa Speleologica Italiana";Yes;Yes;0,331;Q3;45;19;50;1253;63;49;1,26;65,95;27,55;0;Italy;Western Europe;"Societa Speleologica Italiana";"2007-2026";"Earth-Surface Processes (Q3); Geology (Q3)";"Earth and Planetary Sciences" +16147;21100461902;"International Journal of Women's Health and Reproduction Sciences";journal;"23304456";"Aras Part Medical International Press";No;No;0,331;Q3;20;25;118;819;112;104;0,74;32,76;67,47;0;United States;Northern America;"Aras Part Medical International Press";"2013-2026";"Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine" +16148;18041;"Journal of Electrostatics";journal;"03043886";"Elsevier B.V.";No;No;0,331;Q3;95;163;201;7636;507;201;2,55;46,85;24,50;0;Netherlands;Western Europe;"Elsevier B.V.";"1975-2026";"Biotechnology (Q3); Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Surfaces, Coatings and Films (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science; Physics and Astronomy" +16149;19226;"Journal of Phytopathology";journal;"09311785, 14390434";"Wiley-Blackwell Publishing Ltd";No;No;0,331;Q3;77;201;370;7666;547;370;1,34;38,14;35,36;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1958-2026";"Agronomy and Crop Science (Q3); Plant Science (Q3); Genetics (Q4); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +16150;14303;"Otolaryngologia Polska";journal;"23008423, 00306657";"Index Copernicus International";Yes;No;0,331;Q3;22;35;120;816;128;120;0,89;23,31;48,12;0;Poland;Eastern Europe;"Index Copernicus International";"1954-2026";"Otorhinolaryngology (Q3)";"Medicine" +16151;5800179589;"Plant Protection Science";journal;"18059341, 12122580";"Czech Academy of Agricultural Sciences";Yes;No;0,331;Q3;34;28;102;1829;177;102;1,09;65,32;34,48;0;Czech Republic;Eastern Europe;"Czech Academy of Agricultural Sciences";"2007-2026";"Agronomy and Crop Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +16152;20409;"Proceedings of the Institution of Mechanical Engineers. Part I: Journal of Systems and Control Engineering";journal;"09596518, 20413041";"SAGE Publications Ltd";No;No;0,331;Q3;56;142;411;5592;844;411;2,01;39,38;30,80;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991, 1993-2026";"Control and Systems Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +16153;26829;"Studies on Russian Economic Development";journal;"10757007, 15318664";"Pleiades Publishing";No;No;0,331;Q3;20;95;270;2424;212;270;0,86;25,52;51,11;0;United States;Northern America;"Pleiades Publishing";"1993, 1995, 2006-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +16154;22122;"Gene Expression Patterns";journal;"1567133X, 18727298";"Elsevier B.V.";No;No;0,331;Q4;72;17;77;730;118;75;1,43;42,94;56,79;0;Netherlands;Western Europe;"Elsevier B.V.";"2001-2026";"Developmental Biology (Q4); Genetics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +16155;94992;"IEEE International Conference on Multisensor Fusion and Integration for Intelligent Systems";conference and proceedings;"2835947X, 27679357";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,331;-;35;26;111;565;125;108;0,94;21,73;13,11;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1996, 1999, 2001, 2003, 2006, 2008, 2010, 2012, 2015-2017, 2020-2025";"Computer Science Applications; Control and Systems Engineering; Software";"Computer Science; Engineering" +16156;21100238615;"Estudios Eclesiasticos";journal;"02101610";"Universidad Pontificia Comillas de Madrid";Yes;Yes;0,330;Q1;9;18;92;910;39;88;0,31;50,56;29,41;0;Spain;Western Europe;"Universidad Pontificia Comillas de Madrid";"2011-2025";"Religious Studies (Q1)";"Arts and Humanities" +16157;16300154701;"PMLA";journal;"19381530, 00308129";"Cambridge University Press";No;No;0,330;Q1;52;70;239;2840;156;222;0,64;40,57;56,76;0;United Kingdom;Western Europe;"Cambridge University Press";"1932, 1936, 1946, 1948-1953, 1955, 1957, 1960, 1964-1970, 1972-1975, 1990, 1992, 1996, 1999-2000, 2002-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +16158;21100854647;"Applied In Vitro Toxicology";journal;"23321512, 23321539";"Mary Ann Liebert Inc.";No;No;0,330;Q2;18;9;43;368;62;37;1,32;40,89;43,59;0;United States;Northern America;"Mary Ann Liebert Inc.";"2015-2025";"Medical Laboratory Technology (Q2); Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)";"Environmental Science; Health Professions; Pharmacology, Toxicology and Pharmaceutics" +16159;17700154906;"Archeologicke Rozhledy";journal;"03231267, 25709151";"Czech Academy of Sciences";Yes;Yes;0,330;Q2;16;15;55;900;24;48;0,47;60,00;36,84;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"2001-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +16160;21100832753;"European Business Law Review";journal;"1875841X, 09596941";"Kluwer Law International";No;No;0,330;Q2;13;50;147;4436;135;143;0,75;88,72;44,64;1;Netherlands;Western Europe;"Kluwer Law International";"2017-2025";"Law (Q2)";"Social Sciences" +16161;22338;"Hospital Pharmacy";journal;"19451253, 00185787";"Thomas Land Publishers Inc.";No;No;0,330;Q2;33;123;314;2537;317;282;0,98;20,63;51,70;0;United States;Northern America;"Thomas Land Publishers Inc.";"1973-2026";"Pharmacy (Q2); Pharmacology (Q3); Pharmacology (medical) (Q3)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +16162;17600155044;"International Journal of Digital Multimedia Broadcasting";journal;"16877586, 16877578";"John Wiley and Sons Ltd";Yes;No;0,330;Q2;19;4;23;129;51;23;2,90;32,25;40,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Communication (Q2); Media Technology (Q2); Electrical and Electronic Engineering (Q3)";"Engineering; Social Sciences" +16163;19700174724;"International Journal of Migration, Health and Social Care";journal;"20428650, 17479894";"Emerald Publishing";No;No;0,330;Q2;24;47;95;2782;122;95;1,15;59,19;61,71;0;United Kingdom;Western Europe;"Emerald Publishing";"2005-2026";"Law (Q2); Sociology and Political Science (Q2); Health (social science) (Q3)";"Social Sciences" +16164;21101041704;"Journal of Digital Media and Policy";journal;"25163523, 25163531";"Intellect Ltd.";No;No;0,330;Q2;16;26;67;1316;99;56;1,28;50,62;45,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2026";"Communication (Q2); Media Technology (Q2); Sociology and Political Science (Q2)";"Engineering; Social Sciences" +16165;12485;"Journal of Engineering Mathematics";journal;"15732703, 00220833";"Springer Netherlands";No;No;0,330;Q2;65;85;219;3565;372;219;1,95;41,94;20,31;0;Netherlands;Western Europe;"Springer Netherlands";"1967-2026";"Engineering (miscellaneous) (Q2); Mathematics (miscellaneous) (Q3)";"Engineering; Mathematics" +16166;21100943826;"Journal of Transport and Supply Chain Management";journal;"19955235, 23108789";"AOSIS (Pty) Ltd";Yes;No;0,330;Q2;14;25;95;1507;193;90;1,75;60,28;36,84;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2018-2026";"Industrial and Manufacturing Engineering (Q2); Information Systems and Management (Q2); Management Information Systems (Q3); Management Science and Operations Research (Q3); Transportation (Q3)";"Business, Management and Accounting; Decision Sciences; Engineering; Social Sciences" +16167;21100794007;"New York University Journal of Law and Liberty";journal;"19305044, 19324421";"New York University School of Law";No;No;0,330;Q2;6;6;46;591;9;46;0,33;98,50;0,00;0;United States;Northern America;"New York University School of Law";"2016-2025";"Law (Q2)";"Social Sciences" +16168;10600153342;"Society and Economy";journal;"1588970X, 15889726";"Akademiai Kiado";Yes;No;0,330;Q2;21;24;77;1351;136;74;1,76;56,29;46,81;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2); Business and International Management (Q3); Industrial Relations (Q3); Public Administration (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +16169;19458;"Eastern European Economics";journal;"15579298, 00128775";"Taylor and Francis Ltd.";No;No;0,330;Q3;31;65;89;4356;168;88;2,02;67,02;44,51;0;United States;Northern America;"Taylor and Francis Ltd.";"1977, 1982, 1996-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +16170;21100220389;"Geographica Pannonica";journal;"03548724, 18207138";"Department of Geography, Tourism and Hotel Management";Yes;Yes;0,330;Q3;23;11;74;510;119;74;1,82;46,36;28,13;0;Serbia;Eastern Europe;"Department of Geography, Tourism and Hotel Management";"2010, 2012-2026";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3); Geology (Q3); Tourism, Leisure and Hospitality Management (Q3); Atmospheric Science (Q4)";"Business, Management and Accounting; Earth and Planetary Sciences; Social Sciences" +16171;18300156715;"International Journal of Business Science and Applied Management";journal;"17530296";"International Journal of Business Science and Applied Management";Yes;Yes;0,330;Q3;23;8;33;776;91;33;3,30;97,00;47,62;0;United Kingdom;Western Europe;"International Journal of Business Science and Applied Management";"2009-2025";"Business and International Management (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +16172;14500154706;"International Journal of Computational Intelligence and Applications";journal;"14690268, 17575885";"World Scientific Publishing Co., Inc.";No;No;0,330;Q3;28;43;95;1531;245;94;2,94;35,60;41,90;0;Singapore;Asiatic Region;"World Scientific Publishing Co., Inc.";"2008-2026";"Computer Science Applications (Q3); Software (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +16173;21189;"Journal of Strain Analysis for Engineering Design";journal;"03093247, 20413130";"SAGE Publications Ltd";No;No;0,330;Q3;61;45;150;1900;280;150;2,10;42,22;27,15;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1965-2026";"Applied Mathematics (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3)";"Engineering; Mathematics" +16174;21100914244;"Korean Journal of Plant Taxonomy";journal;"24661546, 12258318";"Korean Society of Plant Taxonomists";Yes;No;0,330;Q3;11;36;105;1027;95;105;1,03;28,53;39,50;0;South Korea;Asiatic Region;"Korean Society of Plant Taxonomists";"2018-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +16175;21100889407;"Mathematics in Engineering, Science and Aerospace";journal;"20413173, 20413165";"Cambridge Scientific Publishers";No;No;0,330;Q3;15;96;256;2375;249;256;0,98;24,74;28,13;0;United States;Northern America;"Cambridge Scientific Publishers";"2018-2025";"Aerospace Engineering (Q3); Applied Mathematics (Q3); Modeling and Simulation (Q3)";"Engineering; Mathematics" +16176;21101132926;"Proceedings of the Institution of Civil Engineers: Smart Infrastructure and Construction";journal;"23978759";"ICE Publishing";No;No;0,330;Q3;15;8;78;182;127;70;1,43;22,75;50,00;0;United Kingdom;Western Europe;"ICE Publishing";"2017-2025";"Civil and Structural Engineering (Q3); Computer Graphics and Computer-Aided Design (Q3); Computer Science Applications (Q3); Information Systems (Q3)";"Computer Science; Engineering" +16177;16912;"Quarterly Journal of Engineering Geology and Hydrogeology";journal;"14709236";"Geological Society of London";No;No;0,330;Q3;55;58;204;2545;261;193;1,17;43,88;30,93;0;United Kingdom;Western Europe;"Geological Society of London";"2001-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +16178;21101170210;"Research in Community and Public Health Nursing";journal;"29830648";"Korean Academy of Community Health Nursing";No;No;0,330;Q3;12;37;106;1413;99;106;1,02;38,19;67,42;0;South Korea;Asiatic Region;"Korean Academy of Community Health Nursing";"2023-2025";"Community and Home Care (Q3); Health (social science) (Q3); Nursing (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing; Social Sciences" +16179;21101128450;"Science Education International";journal;"20772327, 1450104X";"International Council of Associations for Science Education (ICASE)";Yes;Yes;0,330;Q3;13;29;131;1375;180;122;1,39;47,41;56,60;0;Ireland;Western Europe;"International Council of Associations for Science Education (ICASE)";"2019-2025";"Education (Q3)";"Social Sciences" +16180;4700152451;"SDHM Structural Durability and Health Monitoring";journal;"19302991, 19302983";"Tech Science Press";No;No;0,330;Q3;21;81;93;3435;202;93;2,15;42,41;25,86;0;United States;Northern America;"Tech Science Press";"2006-2015, 2017-2026";"Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +16181;17893;"Seminars in Musculoskeletal Radiology";journal;"1098898X, 10897860";"Thieme Medical Publishers, Inc.";No;No;0,330;Q3;60;89;224;4216;262;205;1,10;47,37;31,25;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1999-2026";"Orthopedics and Sports Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +16182;17473;"Survey Review";journal;"17522706, 00396265";"Taylor and Francis Ltd.";No;No;0,330;Q3;37;63;140;2762;225;140;1,68;43,84;32,16;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1963-2026";"Civil and Structural Engineering (Q3); Computers in Earth Sciences (Q3); Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences; Engineering" +16183;62420;"Turkish Neurosurgery";journal;"26515032, 10195149";"Turkish Neurosurgical Society";No;No;0,330;Q3;39;121;454;3407;427;441;0,89;28,16;23,05;0;Turkey;Middle East;"Turkish Neurosurgical Society";"1990-2026";"Neurology (clinical) (Q3); Surgery (Q3)";"Medicine" +16184;18200156702;"World Mycotoxin Journal";journal;"18750710, 18750796";"Wageningen Academic Publishers";No;No;0,330;Q3;53;14;77;700;157;74;2,07;50,00;39,06;0;Netherlands;Western Europe;"Wageningen Academic Publishers";"2009-2025";"Food Science (Q3); Public Health, Environmental and Occupational Health (Q3); Toxicology (Q3)";"Agricultural and Biological Sciences; Medicine; Pharmacology, Toxicology and Pharmaceutics" +16185;145419;"Proceedings - IEEE International Conference on Cluster Computing, ICCC";conference and proceedings;"15525244";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,330;-;53;43;176;1568;265;159;1,36;36,47;22,91;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2000-2011, 2013, 2015-2025";"Engineering (miscellaneous); Hardware and Architecture; Signal Processing; Software";"Computer Science; Engineering" +16186;21100205716;"Proceedings - International Symposium on Quality Electronic Design, ISQED";conference and proceedings;"19483287, 19483295";"IEEE Computer Society";No;No;0,330;-;40;119;311;2700;440;305;1,50;22,69;23,26;0;United States;Northern America;"IEEE Computer Society";"2000-2003, 2005-2006, 2012-2025";"Electrical and Electronic Engineering; Hardware and Architecture; Safety, Risk, Reliability and Quality";"Computer Science; Engineering" +16187;21101070212;"Index.comunicacion";journal;"21741859, 24443239";"Rey Juan Carlos University";Yes;Yes;0,329;Q1;11;26;78;1301;94;78;1,25;50,04;64,91;0;Spain;Western Europe;"Rey Juan Carlos University";"2019-2026";"Visual Arts and Performing Arts (Q1); Communication (Q2)";"Arts and Humanities; Social Sciences" +16188;5600153477;"Journal of Contemporary Religion";journal;"14699419, 13537903";"Routledge";No;No;0,329;Q1;42;24;86;1246;72;72;0,61;51,92;41,86;0;United Kingdom;Western Europe;"Routledge";"1995-2025";"Cultural Studies (Q1); Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +16189;21100780796;"Journal of Indonesian Islam";journal;"23556994, 19786301";"State Islamic University of Sunan Ampel";Yes;Yes;0,329;Q1;18;17;70;851;86;70;0,90;50,06;33,33;0;Indonesia;Asiatic Region;"State Islamic University of Sunan Ampel";"2007-2025";"Cultural Studies (Q1); History (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +16190;17100154721;"Journal of Philosophical Research";journal;"10538364";"Philosophy Documentation Center";No;No;0,329;Q1;20;13;51;660;30;50;0,57;50,77;38,46;0;United States;Northern America;"Philosophy Documentation Center";"2002-2022, 2024";"Philosophy (Q1)";"Arts and Humanities" +16191;5800170538;"Journal of the History of International Law";journal;"1388199X, 15718050";"Martinus Nijhoff Publishers";No;No;0,329;Q1;18;16;51;1350;32;49;0,54;84,38;25,00;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"2007-2026";"History (Q1); Law (Q2); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +16192;21100378584;"Monumenta Serica";journal;"02549948, 20571690";"Routledge";No;No;0,329;Q1;13;22;49;1293;19;49;0,34;58,77;35,29;0;United Kingdom;Western Europe;"Routledge";"1948-1949, 1956-1964, 1968-1969, 1972, 1974, 1976, 1979, 1981, 1984, 1986, 1988, 1990, 1992-2004, 2013-2025";"Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +16193;21101190201;"TalTech Journal of European Studies";journal;"26744619, 26744600";"Sciendo";Yes;Yes;0,329;Q1;15;40;62;1850;89;62;1,13;46,25;36,76;0;Poland;Eastern Europe;"Sciendo";"2020-2025";"History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2); Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +16194;21101121668;"Applied Mechanics";journal;"26733161";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,329;Q2;15;91;197;4223;403;196;1,92;46,41;21,78;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Engineering (miscellaneous) (Q2)";"Engineering" +16195;14784;"Historia, Ciencias, Saude - Manguinhos";journal;"16784758, 01045970";"Fundacao Oswaldo Cruz";Yes;Yes;0,329;Q2;26;57;199;2449;85;179;0,43;42,96;50,55;0;Brazil;Latin America;"Fundacao Oswaldo Cruz";"1994-2026";"History and Philosophy of Science (Q2); Medicine (miscellaneous) (Q3)";"Arts and Humanities; Medicine" +16196;21101248979;"Information studies: Theory and Application";journal;"10007490";"";No;No;0,329;Q2;12;138;843;4863;719;843;0,98;35,24;41,18;0;China;Asiatic Region;"";"2020-2025";"Library and Information Sciences (Q2)";"Social Sciences" +16197;19700201800;"Journal of Integrated Care";journal;"14769018, 20428685";"Emerald Group Publishing Ltd.";No;No;0,329;Q2;26;40;135;1589;128;124;0,85;39,73;59,73;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1996-2025";"Sociology and Political Science (Q2); Health (social science) (Q3); Public Administration (Q3)";"Social Sciences" +16198;15517;"Maastricht Journal of European and Comparative Law";journal;"1023263X, 23995548";"SAGE Publications Ltd";No;No;0,329;Q2;31;43;131;2961;162;110;1,24;68,86;50,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994-2026";"Law (Q2); Political Science and International Relations (Q2)";"Social Sciences" +16199;11500153514;"Revista Espanola de Documentacion Cientifica";journal;"02100614, 19884621";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,329;Q2;24;29;92;1135;93;91;1,03;39,14;46,48;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1984, 2008-2025";"Library and Information Sciences (Q2)";"Social Sciences" +16200;15900154750;"South African Journal of Economic and Management Sciences";journal;"22223436, 10158812";"AOSIS (Pty) Ltd";Yes;No;0,329;Q2;32;52;106;3114;209;104;1,42;59,88;38,10;0;South Africa;Africa;"AOSIS (Pty) Ltd";"1998-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +16201;21101183651;"Tikrit Journal for Agricultural Sciences";journal;"26640597, 18131646";"Tikrit University";Yes;No;0,329;Q2;9;85;166;2946;239;166;1,44;34,66;33,68;0;Iraq;Middle East;"Tikrit University";"2023-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +16202;21101170291;"Turkish Journal of Engineering";journal;"25871366";"";No;No;0,329;Q2;12;75;140;3308;326;140;2,62;44,11;25,17;0;Iran;Middle East;"";"2019-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +16203;21100264819;"Vniversitas";journal;"00419060, 20111711";"Pontificia Universidad Javeriana";Yes;Yes;0,329;Q2;7;25;62;2172;22;61;0,22;86,88;33,33;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2012-2025";"Law (Q2)";"Social Sciences" +16204;19700180901;"Acta Scientiarum Mathematicarum";journal;"00016969";"Springer International Publishing";No;No;0,329;Q3;16;75;110;1540;70;107;0,67;20,53;18,70;0;Switzerland;Western Europe;"Springer International Publishing";"2006, 2009-2026";"Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +16205;19144;"Aquatic Insects";journal;"01650424, 17444152";"Taylor and Francis Ltd.";No;No;0,329;Q3;27;38;77;1917;64;77;0,84;50,45;39,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2014, 2016-2026";"Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +16206;21101085281;"Art, Science, and Engineering of Programming";journal;"24737321";"";No;No;0,329;Q3;12;25;47;1167;52;47;1,15;46,68;15,00;0;United States;Northern America;"";"2017-2025";"Artificial Intelligence (Q3); Computational Theory and Mathematics (Q3); Modeling and Simulation (Q3); Software (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +16207;17700156218;"Biodiversity";journal;"14888386, 21600651";"Taylor and Francis Ltd.";No;No;0,329;Q3;35;35;88;1627;113;59;1,29;46,49;38,32;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Ecology (Q3); Nature and Landscape Conservation (Q3); Global and Planetary Change (Q4)";"Environmental Science" +16208;21101185617;"Biomechanics (Switzerland)";journal;"26737078";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,329;Q3;13;106;152;4868;222;151;1,53;45,92;27,23;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Biomedical Engineering (Q3); Orthopedics and Sports Medicine (Q3); Rehabilitation (Q3)";"Engineering; Medicine" +16209;17374;"Bryologist";journal;"00072745";"American Bryological and Lichenological Society Inc.";No;No;0,329;Q3;57;15;93;2716;116;91;1,30;181,07;37,04;0;United States;Northern America;"American Bryological and Lichenological Society Inc.";"1981-1985, 1990-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +16210;19414;"Canadian Journal of Urology";journal;"14885581, 11959479";"Tech Science Press";No;No;0,329;Q3;51;85;211;1921;184;181;0,82;22,60;25,30;0;United States;Northern America;"Tech Science Press";"2000-2026";"Medicine (miscellaneous) (Q3); Urology (Q3)";"Medicine" +16211;21100820182;"Chinese Journal of Rice Science";journal;"10017216";"China National Rice Research Institute";No;No;0,329;Q3;18;64;178;3404;245;178;1,44;53,19;36,66;0;China;Asiatic Region;"China National Rice Research Institute";"2016-2026";"Agronomy and Crop Science (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +16212;130028;"Clinical Case Studies";journal;"15346501, 15523802";"SAGE Publications Inc.";No;No;0,329;Q3;29;26;93;1044;96;93;0,97;40,15;65,93;0;United States;Northern America;"SAGE Publications Inc.";"2002-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +16213;21100199542;"Colloquium Mathematicum";journal;"00101354, 17306302";"Institute of Mathematics. Polish Academy of Sciences";No;No;0,329;Q3;31;40;195;749;84;195;0,28;18,73;25,71;0;Poland;Eastern Europe;"Institute of Mathematics. Polish Academy of Sciences";"2001-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16214;21101058284;"Current Journal of Neurology";journal;"2717011X";"Tehran University of Medical Sciences";Yes;Yes;0,329;Q3;11;20;120;730;113;96;0,68;36,50;45,69;0;Iran;Middle East;"Tehran University of Medical Sciences";"2020-2025";"Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +16215;20001;"Economic Notes";journal;"14680300, 03915026";"Wiley-Blackwell Publishing Ltd";No;No;0,329;Q3;28;13;48;678;77;48;1,87;52,15;35,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2001-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +16216;21101240759;"ECS Advances";journal;"27542734";"Institute of Physics";Yes;No;0,329;Q3;10;23;137;1069;235;135;1,77;46,48;23,23;0;United Kingdom;Western Europe;"Institute of Physics";"2022-2026";"Electrochemistry (Q3); Energy (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Energy; Materials Science" +16217;27048;"Explosion and Shock Waves";journal;"10011455";"Science Press";Yes;No;0,329;Q3;36;145;485;4866;697;483;1,40;33,56;25,87;0;China;Asiatic Region;"Science Press";"1996-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +16218;21101378323;"Food Science of Animal Products";journal;"29583780, 29584124";"Tsinghua University Press";Yes;No;0,329;Q3;6;48;90;2655;136;90;1,51;55,31;47,75;0;China;Asiatic Region;"Tsinghua University Press";"2023-2026";"Food Science (Q3)";"Agricultural and Biological Sciences" +16219;25866;"Geo-Marine Letters";journal;"02760460, 14321157";"Springer Verlag";No;No;0,329;Q3;68;43;63;2683;81;59;1,37;62,40;30,53;0;Germany;Western Europe;"Springer Verlag";"1981-1982, 1984-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Geotechnical Engineering and Engineering Geology (Q3); Oceanography (Q3)";"Earth and Planetary Sciences; Environmental Science" +16220;62608;"Indian Journal of Urology";journal;"09701591";"Wolters Kluwer Medknow Publications";Yes;Yes;0,329;Q3;47;67;233;1004;163;156;0,70;14,99;17,20;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1984-1999, 2002-2003, 2006-2026";"Urology (Q3)";"Medicine" +16221;17700155804;"Journal of E-Learning and Knowledge Society";journal;"18266223, 19718829";"Italian e-Learning Association";Yes;Yes;0,329;Q3;28;33;103;1572;171;99;1,52;47,64;60,00;0;Italy;Western Europe;"Italian e-Learning Association";"2006, 2009-2025";"Computer Science Applications (Q3); Education (Q3); E-learning (Q3)";"Computer Science; Social Sciences" +16222;17600154901;"Journal of Superhard Materials";journal;"19349408, 10634576";"Allerton Press Inc.";No;No;0,329;Q3;30;57;159;1384;216;145;1,40;24,28;36,04;0;United States;Northern America;"Allerton Press Inc.";"2007-2025";"Inorganic Chemistry (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Materials Science" +16223;21101255056;"Memoires de la Societe Mathematique de France";journal;"0249633X, 22753230";"Societe Mathematique de France";No;No;0,329;Q3;4;4;8;186;6;8;0,75;46,50;0,00;0;France;Western Europe;"Societe Mathematique de France";"2020-2021, 2023-2025";"Algebra and Number Theory (Q3); Analysis (Q3); Geometry and Topology (Q3); Statistics and Probability (Q3)";"Mathematics" +16224;21101197355;"Mining Safety and Environmental Protection";journal;"10084495";"";Yes;No;0,329;Q3;11;117;436;3088;519;436;1,18;26,39;28,23;0;China;Asiatic Region;"";"2019-2025";"Ecology (Q3); Environmental Science (miscellaneous) (Q3); Geochemistry and Petrology (Q3); Geology (Q3); Nature and Landscape Conservation (Q3)";"Earth and Planetary Sciences; Environmental Science" +16225;21100201912;"Open Transportation Journal";journal;"18744478, 26671212";"Bentham Science Publishers";Yes;No;0,329;Q3;17;16;76;852;154;76;2,12;53,25;35,14;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2008, 2012-2025";"Modeling and Simulation (Q3); Transportation (Q3)";"Mathematics; Social Sciences" +16226;19200157116;"Ornitologia Colombiana";journal;"17940915";"Asociacion Colombiana de Ornitologia";No;No;0,329;Q3;12;6;44;125;33;37;0,53;20,83;5,88;0;Colombia;Latin America;"Asociacion Colombiana de Ornitologia";"2009-2013, 2015-2017, 2019-2025";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +16227;19700180845;"Pachyderm";journal;"10262881, 16835018";"IUCN - International Union for the Conservation of Nature";Yes;Yes;0,329;Q3;17;18;52;467;30;34;0,52;25,94;25,00;0;Switzerland;Western Europe;"IUCN - International Union for the Conservation of Nature";"2008-2015, 2017-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +16228;19300157017;"Revista de Educacion";journal;"1988592X, 00348082";"Ministry Education and Science";No;Yes;0,329;Q3;42;59;140;2512;182;133;1,20;42,58;46,46;0;Spain;Western Europe;"Ministry Education and Science";"2008-2026";"Education (Q3)";"Social Sciences" +16229;5700160328;"Saude e Sociedade";journal;"01041290";"University of Sao Paolo";Yes;Yes;0,329;Q3;29;86;368;2649;274;355;0,73;30,80;56,74;0;Brazil;Latin America;"University of Sao Paolo";"2008-2025";"Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +16230;21100913561;"Swiss Journal of Economics and Statistics";journal;"22356282";"Springer Nature";Yes;Yes;0,329;Q3;20;14;50;677;81;47;1,77;48,36;18,52;1;Switzerland;Western Europe;"Springer Nature";"2007-2026";"Economics and Econometrics (Q3); Statistics and Probability (Q3)";"Economics, Econometrics and Finance; Mathematics" +16231;21101049096;"Water Waves";journal;"25233688, 2523367X";"Springer International Publishing";No;No;0,329;Q3;11;28;47;949;36;45;0,75;33,89;9,26;0;Switzerland;Western Europe;"Springer International Publishing";"2019-2026";"Analysis (Q3); Applied Mathematics (Q3); Computational Mathematics (Q3); Modeling and Simulation (Q3)";"Mathematics" +16232;4700152717;"World Rabbit Science";journal;"19898886, 12575011";"Universidad Politecnica de Valencia";Yes;Yes;0,329;Q3;33;22;70;1219;98;70;1,23;55,41;39,81;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2005-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +16233;15597;"Yi Qi Yi Biao Xue Bao/Chinese Journal of Scientific Instrument";journal;"02543087";"";No;No;0,329;Q3;44;256;1094;7378;1737;1094;1,56;28,82;34,36;0;China;Asiatic Region;"";"1998, 2001-2025";"Instrumentation (Q3)";"Physics and Astronomy" +16234;18504;"Current Topics in Membranes";book series;"10635823";"Academic Press Inc.";No;No;0,329;Q4;56;25;54;2809;107;1;1,82;112,36;50,00;0;United States;Northern America;"Academic Press Inc.";"1991, 1994, 2000-2003, 2005-2026";"Cell Biology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +16235;21100843344;"Analisi";journal;"23405236, 02112175";"Universitat Autonoma de Barcelona";Yes;Yes;0,328;Q1;10;18;54;845;75;54;1,43;46,94;57,50;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2017-2025";"Cultural Studies (Q1); Communication (Q2)";"Social Sciences" +16236;21100897166;"Journal of Global Buddhism";journal;"15276457";"University of Lucerne";Yes;Yes;0,328;Q1;9;3;28;171;21;27;0,81;57,00;33,33;0;United States;Northern America;"University of Lucerne";"2018-2025";"Cultural Studies (Q1); History (Q1); Religious Studies (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +16237;5700153385;"Journal of Human Values";journal;"09730737, 09716858";"Sage Publications India Pvt. Ltd";No;No;0,328;Q1;23;41;67;2197;108;58;1,77;53,59;40,00;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1995-2026";"Cultural Studies (Q1); Philosophy (Q1); Sociology and Political Science (Q2); Organizational Behavior and Human Resource Management (Q3); Social Psychology (Q3)";"Arts and Humanities; Business, Management and Accounting; Psychology; Social Sciences" +16238;5800169452;"Journal of Slavic Military Studies";journal;"13518046, 15563006";"Taylor and Francis Ltd.";No;No;0,328;Q1;15;24;56;356;41;52;0,70;14,83;30,00;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-1996, 1998-1999, 2003, 2005, 2009-2026";"History (Q1); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +16239;21101288926;"Addiction and Health";journal;"20084633, 20088469";"Kerman University of Medical Sciences";Yes;No;0,328;Q2;8;43;118;1653;161;113;1,30;38,44;44,19;0;Iran;Middle East;"Kerman University of Medical Sciences";"2021-2025";"Health Professions (miscellaneous) (Q2); Psychiatry and Mental Health (Q3)";"Health Professions; Medicine" +16240;11300153310;"Austrian Journal of Earth Sciences";journal;"02517493, 20727151";"Sciendo";Yes;No;0,328;Q2;30;17;34;1210;41;34;1,25;71,18;21,21;0;Austria;Western Europe;"Sciendo";"2007-2025";"Stratigraphy (Q2); Geology (Q3); Paleontology (Q3)";"Earth and Planetary Sciences" +16241;21100852964;"Journal of Research in Applied Linguistics";journal;"23453303, 25883887";"Shahid Chamran University of Ahvaz";Yes;No;0,328;Q2;13;25;161;1445;149;161;0,87;57,80;55,81;0;Iran;Middle East;"Shahid Chamran University of Ahvaz";"2017-2025";"Linguistics and Language (Q2)";"Social Sciences" +16242;23067;"Media Asia";journal;"23776277, 01296612";"Routledge";No;No;0,328;Q2;17;88;135;3357;142;108;1,04;38,15;52,81;0;United Kingdom;Western Europe;"Routledge";"1974-2026";"Communication (Q2); Linguistics and Language (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +16243;21100972442;"Middle East Development Journal";journal;"17938120, 17938171";"Routledge";No;No;0,328;Q2;16;12;42;558;58;42;1,54;46,50;20,00;0;United Kingdom;Western Europe;"Routledge";"2012-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2); Development (Q3)";"Economics, Econometrics and Finance; Social Sciences" +16244;26918;"Negotiation Journal";journal;"15719979, 07484526";"MIT Press";No;No;0,328;Q2;42;18;62;587;74;48;1,48;32,61;45,00;0;United States;Northern America;"MIT Press";"1985-2025";"Social Sciences (miscellaneous) (Q2); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +16245;21100901047;"Pedagogia Social";journal;"19899742, 11391723";"Sociedad Iberoamericana de Pedagogía Social";Yes;Yes;0,328;Q2;9;33;81;1386;82;78;1,02;42,00;68,60;0;Spain;Western Europe;"Sociedad Iberoamericana de Pedagogía Social";"2018-2025";"Sociology and Political Science (Q2); Education (Q3)";"Social Sciences" +16246;16909;"Promet - Traffic and Transportation";journal;"03535320";"Faculty of Transport and Traffic Engineering";Yes;No;0,328;Q2;29;91;213;4126;365;211;1,73;45,34;33,00;0;Croatia;Eastern Europe;"Faculty of Transport and Traffic Engineering";"2001-2026";"Automotive Engineering (Q2); Engineering (miscellaneous) (Q2); Urban Studies (Q2); Aerospace Engineering (Q3); Civil and Structural Engineering (Q3); Ocean Engineering (Q3); Safety, Risk, Reliability and Quality (Q3); Transportation (Q3)";"Engineering; Social Sciences" +16247;21100940325;"Reading and Writing (South Africa)";journal;"20798245, 23081422";"AOSIS (Pty) Ltd";Yes;No;0,328;Q2;9;25;51;1236;77;45;1,68;49,44;73,17;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2019-2026";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +16248;21101021756;"rEFLections";journal;"15135934, 26511479";"School of Liberal Arts, King Mongkut's University of Technology Thonburi";No;No;0,328;Q2;12;82;146;4218;221;144;1,30;51,44;54,47;0;Thailand;Asiatic Region;"School of Liberal Arts, King Mongkut's University of Technology Thonburi";"2019-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +16249;21101147341;"Surgeries (Switzerland)";journal;"26734095";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,328;Q2;12;112;194;5252;301;191;1,65;46,89;32,43;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Oral Surgery (Q2); Surgery (Q3)";"Dentistry; Medicine" +16250;15125;"Archivos de la Sociedad Espanola de Oftalmologia";journal;"03656691, 19897286";"Elsevier Ltd";No;No;0,328;Q3;30;146;369;2515;280;315;0,77;17,23;47,39;0;Spain;Western Europe;"Elsevier Ltd";"1973-1986, 1989-1997, 2000-2026";"Ophthalmology (Q3)";"Medicine" +16251;21101340506;"Combinatorics and Number Theory";journal;"2996220X, 29962196";"Mathematical Sciences Publishers";No;No;0,328;Q3;13;14;63;256;22;63;0,26;18,29;4,76;0;United States;Northern America;"Mathematical Sciences Publishers";"2024-2025";"Algebra and Number Theory (Q3); Discrete Mathematics and Combinatorics (Q3)";"Mathematics" +16252;19400158520;"Conservation Genetics Resources";journal;"18777252, 18777260";"Springer Science and Business Media B.V.";No;No;0,328;Q3;32;33;131;1184;152;130;1,09;35,88;33,33;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2009-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +16253;19700175607;"Estudios de Psicologia";journal;"02109395, 15793699";"SAGE Publications Inc.";No;No;0,328;Q3;24;0;63;0;70;60;0,94;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1980-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +16254;21100811729;"Ethics, Medicine and Public Health";journal;"23525533, 23525525";"Elsevier Masson s.r.l.";No;No;0,328;Q3;21;186;235;4525;207;138;0,73;24,33;48,95;0;France;Western Europe;"Elsevier Masson s.r.l.";"2015-2026";"Health Policy (Q3)";"Medicine" +16255;25520;"Giornale Italiano di Endodonzia";journal;"19711425, 11214171";"Ariesdue Srl";Yes;Yes;0,328;Q3;18;18;87;500;76;81;1,06;27,78;41,46;0;Italy;Western Europe;"Ariesdue Srl";"1990-1991, 2011-2025";"Dentistry (miscellaneous) (Q3)";"Dentistry" +16256;17700156749;"Intangible Capital";journal;"20143214, 16979818";"OmniaScience";Yes;No;0,328;Q3;27;23;81;1680;177;81;2,32;73,04;50,82;0;Spain;Western Europe;"OmniaScience";"2009-2025";"Accounting (Q3); Business and International Management (Q3); Education (Q3); Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +16257;21101346360;"Italian Journal of Educational Technology";journal;"25327720, 25324632";"Firenze University Press";No;No;0,328;Q3;9;9;55;388;58;46;0,97;43,11;69,23;0;Italy;Western Europe;"Firenze University Press";"2021-2025";"Computer Science Applications (Q3); Education (Q3)";"Computer Science; Social Sciences" +16258;144606;"Journal of Central South University (Medical Sciences)";journal;"16727347";"";No;No;0,328;Q3;23;222;645;9634;768;645;1,12;43,40;50,19;0;China;Asiatic Region;"";"2004-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +16259;28931;"Journal of Computer Security";journal;"0926227X, 18758924";"SAGE Publications Ltd";No;No;0,328;Q3;60;0;66;0;127;61;1,56;0,00;0,00;0;Netherlands;Western Europe;"SAGE Publications Ltd";"1992-1993, 1995-2024";"Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Safety, Risk, Reliability and Quality (Q3); Software (Q3)";"Computer Science; Engineering" +16260;21101162692;"Journal of Education and Learning";journal;"20899823, 23029277";"Intelektual Pustaka Media Utama";No;No;0,328;Q3;11;240;240;11348;491;240;2,05;47,28;45,82;0;Indonesia;Asiatic Region;"Intelektual Pustaka Media Utama";"2023-2026";"Development (Q3); Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +16261;21100979257;"Journal of Energy Systems";journal;"26022052";"Erol Kurt";Yes;No;0,328;Q3;11;26;81;847;126;81;1,30;32,58;18,84;0;Turkey;Middle East;"Erol Kurt";"2018-2025";"Energy Engineering and Power Technology (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science" +16262;21101030478;"Journal of Psychosocial Rehabilitation and Mental Health";journal;"2198963X, 21989834";"Springer";No;No;0,328;Q3;17;100;172;3632;184;140;1,03;36,32;53,36;1;India;Asiatic Region;"Springer";"2014-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3); Rehabilitation (Q3)";"Medicine; Psychology" +16263;12209;"Laser and Particle Beams";journal;"1469803X, 02630346";"Cambridge University Press";Yes;No;0,328;Q3;56;6;40;248;60;39;2,00;41,33;20,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1983-2023, 2025";"Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3)";"Engineering; Physics and Astronomy" +16264;11600153409;"Malaysian Family Physician";journal;"1985207X, 19852274";"Academy of Family Physicians of Malaysia";Yes;Yes;0,328;Q3;24;77;202;1516;202;154;0,85;19,69;56,59;0;Malaysia;Asiatic Region;"Academy of Family Physicians of Malaysia";"2007-2026";"Community and Home Care (Q3); Family Practice (Q3)";"Medicine; Nursing" +16265;21101180045;"Montes Taurus Journal of Pure and Applied Mathematics";journal;"26874814";"";No;No;0,328;Q3;12;19;145;477;98;144;0,65;25,11;19,35;0;Turkey;Middle East;"";"2019-2025";"Algebra and Number Theory (Q3); Analysis (Q3); Applied Mathematics (Q3); Computational Mathematics (Q3)";"Mathematics" +16266;4000151910;"Ocean Science Journal";journal;"20057172, 17385261";"Korea Ocean Research and Development Institute";No;No;0,328;Q3;34;53;149;3155;201;144;1,34;59,53;31,48;0;South Korea;Asiatic Region;"Korea Ocean Research and Development Institute";"2006-2026";"Oceanography (Q3)";"Earth and Planetary Sciences" +16267;21100209313;"Open Agriculture Journal";journal;"18743315";"Bentham Science Publishers";Yes;No;0,328;Q3;22;11;97;555;203;92;2,29;50,45;36,84;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2012-2026";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +16268;22635;"Ostrich";journal;"00306525, 1727947X";"Taylor and Francis Ltd.";No;No;0,328;Q3;33;30;97;1477;92;90;0,81;49,23;30,09;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1930-2026";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +16269;25644;"Presence: Teleoperators and Virtual Environments";journal;"15313263, 10547460";"MIT Press";No;No;0,328;Q3;109;14;73;138;129;70;1,21;9,86;31,82;0;United States;Northern America;"MIT Press";"1992-2026";"Computer Vision and Pattern Recognition (Q3); Control and Systems Engineering (Q3); Human-Computer Interaction (Q3); Software (Q3)";"Computer Science; Engineering" +16270;19400157013;"Problemy Ekorozwoju";journal;"18956912, 20801971";"Politechnika Lubelska";Yes;Yes;0,328;Q3;26;42;155;2449;293;155;1,89;58,31;43,86;1;Poland;Eastern Europe;"Politechnika Lubelska";"2008-2026";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science; Social Sciences" +16271;19900193829;"Revista Espanola de Sanidad Penitenciaria";journal;"15750620, 20136463";"Sociedad Espanola de Sanidad Penitenciaria";Yes;Yes;0,328;Q3;14;17;56;494;58;38;0,56;29,06;50,00;0;Spain;Western Europe;"Sociedad Espanola de Sanidad Penitenciaria";"2011-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +16272;27317;"Ship Technology Research";journal;"09377255, 20567111";"Taylor and Francis Ltd.";No;No;0,328;Q3;26;18;51;504;66;50;1,05;28,00;17,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-1999, 2010-2026";"Ocean Engineering (Q3)";"Engineering" +16273;21101343400;"Proceedings - International Conference on Computational Linguistics, COLING";conference and proceedings;"29512093";"Association for Computational Linguistics (ACL)";No;No;0,328;-;10;0;249;0;497;248;2,00;0,00;0,00;0;Australia;Pacific Region;"Association for Computational Linguistics (ACL)";"2024";"Computational Theory and Mathematics; Computer Science Applications; Theoretical Computer Science";"Computer Science; Mathematics" +16274;6500153160;"Asian Philosophy";journal;"09552367, 14692961";"Routledge";No;No;0,327;Q1;22;45;76;1528;40;76;0,49;33,96;30,43;0;United Kingdom;Western Europe;"Routledge";"1991-2026";"Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities" +16275;19900195002;"Estudios Sobre el Mensaje Periodistico";journal;"19882696, 11341629";"Universidad Complutense Madrid";Yes;Yes;0,327;Q1;22;78;229;3771;247;225;1,10;48,35;52,94;0;Spain;Western Europe;"Universidad Complutense Madrid";"2010-2026";"Cultural Studies (Q1); Communication (Q2)";"Social Sciences" +16276;21100942909;"International Journal of English Language and Literature Studies";journal;"23060646, 23069910";"Asian Economic and Social Society";No;No;0,327;Q1;11;38;86;1278;111;86;1,43;33,63;46,91;0;Pakistan;Asiatic Region;"Asian Economic and Social Society";"2019-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +16277;4700152743;"Journal of Religion, Spirituality and Aging";journal;"15528030, 15528049";"Routledge";No;No;0,327;Q1;25;29;84;1214;76;70;0,90;41,86;52,31;0;United States;Northern America;"Routledge";"2005-2026";"Religious Studies (Q1); Life-span and Life-course Studies (Q4)";"Arts and Humanities; Social Sciences" +16278;17600155208;"Journal of South Asian Development";journal;"09731741, 09731733";"Sage Publications India Pvt. Ltd";No;No;0,327;Q1;22;15;50;1034;93;49;2,00;68,93;26,09;1;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2006-2007, 2009-2026";"History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Business and International Management (Q3); Development (Q3)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +16279;21100202922;"Nordic Journal of Religion and Society";journal;"18907008, 08097291";"Akademika Forlag";No;No;0,327;Q1;17;7;25;342;33;25;1,71;48,86;27,27;0;Norway;Western Europe;"Akademika Forlag";"2011-2025";"Religious Studies (Q1)";"Arts and Humanities" +16280;27371;"Population and Societies";journal;"01847783";"Institut National d'Etudes Demographiques";No;No;0,327;Q1;18;11;32;61;40;32;1,14;5,55;42,86;1;France;Western Europe;"Institut National d'Etudes Demographiques";"1998-2003, 2009-2026";"Cultural Studies (Q1); Demography (Q2); Health (social science) (Q3)";"Social Sciences" +16281;17600154907;"Advances in Engineering Education";journal;"19411766";"American Society for Engineering Education";No;No;0,327;Q2;31;15;42;585;68;41;1,67;39,00;50,00;0;United States;Northern America;"American Society for Engineering Education";"2009-2025";"Engineering (miscellaneous) (Q2); Education (Q3)";"Engineering; Social Sciences" +16282;21101079130;"Advances in Laboratory Medicine";journal;"2628491X";"Walter de Gruyter GmbH";Yes;Yes;0,327;Q2;13;85;201;2386;251;171;0,97;28,07;61,54;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2020-2026";"Medical Laboratory Technology (Q2); Education (Q3); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine; Social Sciences" +16283;21101153206;"Bulletin of Atmospheric Science and Technology";journal;"26621509, 26621495";"Springer Nature";No;No;0,327;Q2;11;28;43;1180;52;42;1,24;42,14;39,78;0;Switzerland;Western Europe;"Springer Nature";"2020-2026";"Engineering (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Atmospheric Science (Q4)";"Earth and Planetary Sciences; Engineering" +16284;21101017727;"Communications in Science and Technology";journal;"25029266, 25029258";"Komunitas Ilmuwan dan Profesional Muslim Indonesia";Yes;Yes;0,327;Q2;15;49;104;2191;241;104;2,05;44,71;41,53;0;Indonesia;Asiatic Region;"Komunitas Ilmuwan dan Profesional Muslim Indonesia";"2016-2025";"Engineering (miscellaneous) (Q2); Chemical Engineering (miscellaneous) (Q3)";"Chemical Engineering; Engineering" +16285;21101174182;"Critical Gambling Studies";journal;"2563190X";"University of Alberta Library";Yes;Yes;0,327;Q2;6;5;52;214;37;36;0,69;42,80;62,50;0;Canada;Northern America;"University of Alberta Library";"2020-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +16286;27979;"Round Table";journal;"00358533, 1474029X";"Routledge";No;No;0,327;Q2;34;130;239;2773;117;115;0,50;21,33;27,91;1;United Kingdom;Western Europe;"Routledge";"1910-1981, 1983-2026";"Political Science and International Relations (Q2); Geography, Planning and Development (Q3)";"Social Sciences" +16287;21101055126;"Acque Sotterranee - Italian Journal of Groundwater";journal;"1828454X, 22806458";"Page Press Publications";Yes;Yes;0,327;Q3;12;25;76;1287;83;63;1,23;51,48;36,36;0;Italy;Western Europe;"Page Press Publications";"2012-2025";"Environmental Engineering (Q3); Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3); Water Science and Technology (Q3); Environmental Chemistry (Q4)";"Earth and Planetary Sciences; Environmental Science" +16288;100147006;"Analysis in Theory and Applications";journal;"15738175, 16724070";"Global Science Press";No;No;0,327;Q3;13;18;64;617;27;64;0,42;34,28;36,11;0;Netherlands;Western Europe;"Global Science Press";"2004-2011, 2020-2025";"Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +16289;19984;"Assay and Drug Development Technologies";journal;"1540658X, 15578127";"Mary Ann Liebert Inc.";No;No;0,327;Q3;68;44;98;2854;202;90;2,30;64,86;38,67;0;United States;Northern America;"Mary Ann Liebert Inc.";"2002-2026";"Drug Discovery (Q3); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +16290;14907;"Cognitive and Behavioral Neurology";journal;"15433633, 15433641";"Lippincott Williams and Wilkins";No;No;0,327;Q3;76;31;87;913;112;84;1,05;29,45;29,41;0;United States;Northern America;"Lippincott Williams and Wilkins";"2003-2026";"Medicine (miscellaneous) (Q3); Neuropsychology and Physiological Psychology (Q3); Psychiatry and Mental Health (Q3); Cognitive Neuroscience (Q4)";"Medicine; Neuroscience; Psychology" +16291;18527;"Diagnostic Cytopathology";journal;"10970339, 87551039";"John Wiley and Sons Inc";No;No;0,327;Q3;78;129;491;2789;466;446;0,92;21,62;51,41;0;United States;Northern America;"John Wiley and Sons Inc";"1985-2026";"Histology (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)";"Medicine" +16292;27906;"First Break";journal;"02635046, 13652397";"EAGE Publishing BV";No;No;0,327;Q3;51;95;319;1251;251;319;0,74;13,17;25,00;0;Netherlands;Western Europe;"EAGE Publishing BV";"1989-2026";"Geophysics (Q3)";"Earth and Planetary Sciences" +16293;19700175202;"GEM - International Journal on Geomathematics";journal;"18692672, 18692680";"Springer Verlag";No;No;0,327;Q3;25;20;64;771;106;64;1,70;38,55;32,65;0;Germany;Western Europe;"Springer Verlag";"2010-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Modeling and Simulation (Q3)";"Earth and Planetary Sciences; Mathematics" +16294;21100867241;"International Journal of Advanced Computer Science and Applications";journal;"21565570, 2158107X";"Science and Information Organization";No;No;0,327;Q3;68;1341;4270;47777;9007;4270;2,13;35,63;37,96;0;United Kingdom;Western Europe;"Science and Information Organization";"2014, 2017-2026";"Computer Science (miscellaneous) (Q3)";"Computer Science" +16295;21101017116;"Journal of Advances in Information Technology";journal;"17982340";"Engineering and Technology Publishing";Yes;No;0,327;Q3;31;153;390;5476;1134;390;2,79;35,79;30,84;0;United States;Northern America;"Engineering and Technology Publishing";"2019-2026";"Artificial Intelligence (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Information Systems (Q3); Software (Q3)";"Computer Science" +16296;23403;"Journal of Homeland Security and Emergency Management";journal;"21946361, 15477355";"Walter de Gruyter GmbH";No;No;0,327;Q3;34;17;48;815;70;44;1,64;47,94;44,74;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2004-2026";"Business, Management and Accounting (miscellaneous) (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3)";"Business, Management and Accounting; Engineering; Social Sciences" +16297;21100216323;"Journal of Neurological Surgery, Part A: Central European Neurosurgery";journal;"21936323, 21936315";"Georg Thieme Verlag";No;No;0,327;Q3;42;78;276;2265;255;273;0,89;29,04;20,41;0;Germany;Western Europe;"Georg Thieme Verlag";"2012-2026";"Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3); Surgery (Q3)";"Medicine" +16298;21101027631;"Journal of Privacy and Confidentiality";journal;"25758527";"Cornell University";Yes;Yes;0,327;Q3;14;12;36;517;59;35;1,15;43,08;24,44;0;United States;Northern America;"Cornell University";"2019-2025";"Computer Science Applications (Q3); Computer Science (miscellaneous) (Q3); Statistics and Probability (Q3)";"Computer Science; Mathematics" +16299;21101079608;"Journal of Reliability and Statistical Studies";journal;"09748024, 22295666";"";No;No;0,327;Q3;11;20;62;613;113;61;1,44;30,65;32,00;0;Denmark;Western Europe;"";"2019-2025";"Analysis (Q3); Numerical Analysis (Q3); Statistics and Probability (Q3)";"Mathematics" +16300;21100872779;"Management Systems in Production Engineering";journal;"22990461, 24505781";"Sciendo";Yes;No;0,327;Q3;21;60;156;2398;376;156;2,44;39,97;31,48;0;Germany;Western Europe;"Sciendo";"2018-2026";"Industrial and Manufacturing Engineering (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Engineering" +16301;17459;"Neuro-Ophthalmology";journal;"01658107, 1744506X";"Taylor and Francis Ltd.";No;No;0,327;Q3;32;113;169;2255;161;155;0,83;19,96;43,16;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2002, 2004-2026";"Neurology (clinical) (Q3); Ophthalmology (Q3)";"Medicine" +16302;28852;"Nursing Management";journal;"15388670, 07446314";"Lippincott Williams and Wilkins";No;No;0,327;Q3;30;116;367;1443;266;275;0,68;12,44;86,29;0;United States;Northern America;"Lippincott Williams and Wilkins";"1970-2026";"Leadership and Management (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Nursing" +16303;21100215102;"Psychodynamic Psychiatry";journal;"21622590, 21622604";"Guilford Publications";No;No;0,327;Q3;35;39;149;1007;110;145;1,01;25,82;46,05;0;United States;Northern America;"Guilford Publications";"2012-2025";"Clinical Psychology (Q3); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +16304;26181;"Trimestre Economico";journal;"2448718X, 00413011";"Fondo de Cultura Economica";Yes;Yes;0,327;Q3;18;31;102;1310;67;98;0,34;42,26;20,45;1;Mexico;Latin America;"Fondo de Cultura Economica";"1979, 1981, 1989, 1996-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +16305;144673;"Performance Measurement and Metrics";journal;"14678047";"Emerald Group Publishing Ltd.";No;No;0,326;Q1;27;32;33;1214;55;33;1,79;37,94;40,32;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2026";"Literature and Literary Theory (Q1); Library and Information Sciences (Q2)";"Arts and Humanities; Social Sciences" +16306;21100459562;"Studia in Veteris Testamenti Pseudepigrapha";book series;"01698125";"Brill Academic Publishers";No;No;0,326;Q1;5;0;19;0;4;1;0,21;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009, 2013-2014, 2018, 2023-2024";"Religious Studies (Q1)";"Arts and Humanities" +16307;21101050918;"International Journal of Legal Discourse";journal;"23648821, 2364883X";"De Gruyter Mouton";No;No;0,326;Q2;14;19;45;990;114;45;3,00;52,11;37,93;0;Germany;Western Europe;"De Gruyter Mouton";"2016-2025";"Law (Q2); Linguistics and Language (Q2)";"Social Sciences" +16308;18700156728;"International Journal of Vehicle Information and Communication Systems";journal;"17418208, 14710242";"Inderscience Enterprises Ltd";No;No;0,326;Q2;12;22;71;713;129;71;2,66;32,41;42,22;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005, 2008-2009, 2011, 2013, 2017-2026";"Automotive Engineering (Q2); Computer Science Applications (Q3); Control and Systems Engineering (Q3)";"Computer Science; Engineering" +16309;21101126454;"International Studies of Economics";journal;"28313224";"John Wiley and Sons Inc";Yes;No;0,326;Q2;7;43;75;1996;91;72;1,22;46,42;37,65;0;United States;Northern America;"John Wiley and Sons Inc";"2022-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +16310;17700155034;"Natural Product Communications";journal;"15559475, 1934578X";"SAGE Publications Inc.";Yes;No;0,326;Q2;75;327;809;20526;1441;788;1,63;62,77;41,36;0;United States;Northern America;"SAGE Publications Inc.";"2006-2026";"Complementary and Alternative Medicine (Q2); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Medicine; Pharmacology, Toxicology and Pharmaceutics" +16311;23531;"Sadhana - Academy Proceedings in Engineering Sciences";journal;"09737677, 02562499";"Springer India";Yes;No;0,326;Q2;66;345;874;14182;1752;873;1,97;41,11;21,16;0;India;Asiatic Region;"Springer India";"1984-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +16312;21101039805;"Sriwijaya Law Review";journal;"25416464, 25415298";"Sriwijaya University";Yes;Yes;0,326;Q2;11;21;67;1223;109;67;1,69;58,24;38,46;0;Indonesia;Asiatic Region;"Sriwijaya University";"2017-2025";"Law (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16313;83734;"Xiyou Jinshu/Chinese Journal of Rare Metals";journal;"02587076";"Editorial Office of Chinese Journal of Rare Metals";No;No;0,326;Q2;25;114;496;4220;801;496;1,84;37,02;38,50;0;China;Asiatic Region;"Editorial Office of Chinese Journal of Rare Metals";"1987-1988, 2008-2025";"Metals and Alloys (Q2)";"Materials Science" +16314;21100826382;"Bulletin of Electrical Engineering and Informatics";journal;"20893191, 23029285";"Institute of Advanced Engineering and Science";No;No;0,326;Q3;37;446;1228;14573;2703;1228;2,33;32,67;34,95;0;Indonesia;Asiatic Region;"Institute of Advanced Engineering and Science";"2017-2026";"Computer Networks and Communications (Q3); Computer Science (miscellaneous) (Q3); Control and Optimization (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3); Information Systems (Q3); Instrumentation (Q3)";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +16315;29604;"Clinics in Podiatric Medicine and Surgery";journal;"15582302, 08918422";"W.B. Saunders";No;No;0,326;Q3;43;68;197;2001;191;161;0,86;29,43;23,48;0;United States;Northern America;"W.B. Saunders";"1986-2026";"Orthopedics and Sports Medicine (Q3); Surgery (Q3)";"Medicine" +16316;21101155423;"Combustion Engines";journal;"26581442, 23009896";"Polish Scientific Society of Combustion Engines";Yes;No;0,326;Q3;10;72;196;2466;301;196;1,57;34,25;16,98;0;Poland;Eastern Europe;"Polish Scientific Society of Combustion Engines";"2022-2026";"Mechanical Engineering (Q3); Pollution (Q3)";"Engineering; Environmental Science" +16317;21128;"European Journal of Plastic Surgery";journal;"0930343X, 14350130";"Springer Science and Business Media Deutschland GmbH";No;No;0,326;Q3;32;115;397;3357;351;385;0,99;29,19;33,26;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1986-2026";"Surgery (Q3)";"Medicine" +16318;21967;"Fish Pathology";journal;"18817335, 0388788X";"Japanese Society of Fish Pathology";No;No;0,326;Q3;49;26;53;484;38;53;0,70;18,62;15,07;0;Japan;Asiatic Region;"Japanese Society of Fish Pathology";"1967-2025";"Animal Science and Zoology (Q3); Aquatic Science (Q3)";"Agricultural and Biological Sciences" +16319;21100983143;"Functional Foods in Health and Disease";journal;"23787007, 21603855";"Functional Food Institute";Yes;No;0,326;Q3;33;63;179;2816;410;179;2,53;44,70;51,52;0;United States;Northern America;"Functional Food Institute";"2011-2026";"Food Science (Q3); Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3); Biochemistry (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +16320;21100871803;"Jordan Journal of Mathematics and Statistics";journal;"20757905, 22275487";"Yarmouk University";No;No;0,326;Q3;11;52;161;1302;120;161;0,77;25,04;22,73;0;Jordan;Middle East;"Yarmouk University";"2018-2025";"Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3); Statistics and Probability (Q3)";"Mathematics" +16321;14205;"Nucleosides, Nucleotides and Nucleic Acids";journal;"15257770, 15322335";"Taylor and Francis Ltd.";No;No;0,326;Q3;55;127;251;5894;313;248;1,16;46,41;48,00;0;United States;Northern America;"Taylor and Francis Ltd.";"2000-2026";"Medicine (miscellaneous) (Q3); Biochemistry (Q4); Genetics (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16322;18670;"Psychiatria Danubina";journal;"03535053";"Medicinska Naklada Zagreb";Yes;No;0,326;Q3;55;160;640;4300;558;588;0,93;26,88;56,37;0;Croatia;Eastern Europe;"Medicinska Naklada Zagreb";"1989-2025";"Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +16323;24206;"Review of Financial Economics";journal;"10583300, 18735924";"John Wiley and Sons Inc";No;No;0,326;Q3;49;29;68;1544;125;66;1,80;53,24;25,00;0;United States;Northern America;"John Wiley and Sons Inc";"1994-2026";"Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +16324;19644;"Technology and Health Care";journal;"18787401, 09287329";"SAGE Publications Ltd";No;No;0,326;Q3;56;224;903;7518;1428;890;1,52;33,56;44,01;3;United Kingdom;Western Europe;"SAGE Publications Ltd";"1993-2026";"Biomedical Engineering (Q3); Biophysics (Q3); Health Informatics (Q3); Information Systems (Q3); Medicine (miscellaneous) (Q3); Bioengineering (Q4); Biomaterials (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Computer Science; Engineering; Materials Science; Medicine" +16325;19900191943;"Topology Proceedings";journal;"01464124, 23311290";"Auburn University";No;No;0,326;Q3;14;21;100;351;34;100;0,40;16,71;11,76;0;United States;Northern America;"Auburn University";"2011-2026";"Geometry and Topology (Q3)";"Mathematics" +16326;16222;"Turkish Journal of Pediatrics";journal;"00414301, 27916421";"Turkish National Pediatric Society";Yes;Yes;0,326;Q3;42;105;354;2677;350;340;0,91;25,50;62,26;0;Turkey;Middle East;"Turkish National Pediatric Society";"1963-2025";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +16327;15909;"Zeitschrift fur Arbeits- und Organisationspsychologie";journal;"09324089, 21906270";"Hogrefe Publishing";No;No;0,326;Q3;22;16;50;768;43;49;0,68;48,00;51,16;0;Germany;Western Europe;"Hogrefe Publishing";"2002-2025";"Applied Psychology (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Psychology" +16328;21101055468;"Philosophies";journal;"24099287";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,325;Q1;18;137;448;5911;511;437;0,99;43,15;26,47;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2016-2025";"Philosophy (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities" +16329;21100890390;"Australian Journal of Maritime and Ocean Affairs";journal;"23336498, 18366503";"Routledge";No;No;0,325;Q2;18;78;85;4373;165;84;1,81;56,06;31,38;1;United Kingdom;Western Europe;"Routledge";"2009-2026";"Political Science and International Relations (Q2); Management, Monitoring, Policy and Law (Q3); Ocean Engineering (Q3); Safety Research (Q3); Transportation (Q3); Water Science and Technology (Q3)";"Engineering; Environmental Science; Social Sciences" +16330;21101185807;"Central European Public Administration Review";journal;"25912259, 25912240";"University of Ljubljana Faculty of Public Administration";Yes;Yes;0,325;Q2;10;20;44;1128;76;44;1,40;56,40;58,82;0;Slovenia;Eastern Europe;"University of Ljubljana Faculty of Public Administration";"2019-2025";"Law (Q2); Public Administration (Q3)";"Social Sciences" +16331;7100153136;"Hague Journal of Diplomacy";journal;"1871191X, 18711901";"Brill Nijhoff";No;No;0,325;Q2;35;26;80;1855;123;77;1,36;71,35;39,39;0;Netherlands;Western Europe;"Brill Nijhoff";"2007-2026";"Political Science and International Relations (Q2)";"Social Sciences" +16332;12749;"International Information and Library Review";journal;"10959297, 10572317";"Taylor and Francis Ltd.";No;No;0,325;Q2;34;33;104;1147;137;103;1,02;34,76;33,93;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Library and Information Sciences (Q2); E-learning (Q3)";"Social Sciences" +16333;21100820896;"Journal of Advanced Pharmacy Education and Research";journal;"22493379";"SPER Publications";No;No;0,325;Q2;19;85;229;3679;388;229;1,64;43,28;49,08;0;India;Asiatic Region;"SPER Publications";"2015, 2017-2026";"Pharmacy (Q2); Education (Q3); Pharmaceutical Science (Q3)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +16334;21100236605;"Journal of Applied Pharmaceutical Science";journal;"22313354";"Open Science Publishers LLP Inc.";Yes;No;0,325;Q2;64;254;830;13390;1655;828;1,98;52,72;45,80;0;India;Asiatic Region;"Open Science Publishers LLP Inc.";"2011-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Pharmacy (Q2); Medicine (miscellaneous) (Q3); Pharmacology (medical) (Q3)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +16335;21100223521;"Journal of Architecture and Urbanism";journal;"20297947, 20297955";"Vilnius Gediminas Technical University";Yes;Yes;0,325;Q2;15;15;50;676;76;50;1,39;45,07;33,33;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2012-2026";"Architecture (Q2); Urban Studies (Q2); Geography, Planning and Development (Q3)";"Engineering; Social Sciences" +16336;21100200811;"Journal of Indian Society of Periodontology";journal;"09751580, 0972124X";"Wolters Kluwer Medknow Publications";Yes;Yes;0,325;Q2;48;111;324;2315;342;271;0,93;20,86;53,31;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2010-2025";"Periodontics (Q2)";"Dentistry" +16337;21101021142;"Journal of Sport for Development";journal;"23300574";"Journal of Sport for Development";No;No;0,325;Q2;10;4;32;256;54;28;1,26;64,00;47,83;0;United States;Northern America;"Journal of Sport for Development";"2019-2025";"Sociology and Political Science (Q2); Development (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +16338;21100932524;"Journal of Technology and Chinese Language Teaching";journal;"1949260X";"Technology and Chinese Language Teaching Association";No;No;0,325;Q2;7;7;27;274;22;26;0,95;39,14;66,67;0;United States;Northern America;"Technology and Chinese Language Teaching Association";"2019-2025";"Linguistics and Language (Q2); Computer Science Applications (Q3); Education (Q3)";"Computer Science; Social Sciences" +16339;21100793925;"Nordic Journal of Human Rights";journal;"1891814X, 18918131";"Taylor and Francis Ltd.";No;No;0,325;Q2;18;21;82;405;140;76;1,72;19,29;67,86;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16340;35693;"Science of Sintering";journal;"0350820X";"International Institute for the Science of Sintering (IISS)";Yes;Yes;0,325;Q2;32;30;119;1247;162;119;1,19;41,57;46,10;0;Serbia;Eastern Europe;"International Institute for the Science of Sintering (IISS)";"1974-1976, 1978-1989, 2002-2025";"Metals and Alloys (Q2); Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Materials Chemistry (Q3)";"Materials Science; Physics and Astronomy" +16341;16000154755;"South African Archaeological Bulletin";journal;"00381969";"South African Archaeological Society";No;No;0,325;Q2;33;14;41;839;22;33;0,52;59,93;35,71;0;South Africa;Africa;"South African Archaeological Society";"2002-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +16342;21100455546;"Structural Integrity and Life";journal;"14513749, 18207863";"Society for Structural Integrity and Life (DIVK)";Yes;Yes;0,325;Q2;19;86;181;2034;218;180;1,32;23,65;28,69;0;Serbia;Eastern Europe;"Society for Structural Integrity and Life (DIVK)";"2010-2012, 2015-2025";"Metals and Alloys (Q2); Civil and Structural Engineering (Q3); Mechanics of Materials (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering; Materials Science" +16343;28899;"Transition Metal Chemistry";journal;"1572901X, 03404285";"Springer Netherlands";No;No;0,325;Q2;65;87;112;5002;233;112;2,61;57,49;37,16;0;Netherlands;Western Europe;"Springer Netherlands";"1975-2026";"Metals and Alloys (Q2); Inorganic Chemistry (Q3); Materials Chemistry (Q3)";"Chemistry; Materials Science" +16344;21100841715;"AIMS Materials Science";journal;"23720484, 23720468";"AIMS Press";Yes;No;0,325;Q3;37;48;167;2559;378;163;2,44;53,31;26,63;0;United States;Northern America;"AIMS Press";"2014-2025";"Materials Science (miscellaneous) (Q3)";"Materials Science" +16345;21101038724;"AORTA";journal;"23254637";"Thieme Medical Publishers, Inc.";No;No;0,325;Q3;22;32;97;633;83;94;0,61;19,78;28,00;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"2013-2025";"Cardiology and Cardiovascular Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Surgery (Q3)";"Medicine" +16346;21101017706;"Aquatic Sciences and Engineering";journal;"2602473X";"Istanbul University Faculty of Aquatic Sciences";Yes;Yes;0,325;Q3;11;22;90;1092;127;90;1,40;49,64;46,15;0;Turkey;Middle East;"Istanbul University Faculty of Aquatic Sciences";"2018-2025";"Aquatic Science (Q3); Ocean Engineering (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Engineering; Environmental Science" +16347;21101017026;"Athens Journal of Education";journal;"22417958";"Athens Institute for Education and Research";Yes;Yes;0,325;Q3;10;41;102;1938;145;100;1,58;47,27;63,77;0;Greece;Western Europe;"Athens Institute for Education and Research";"2019-2025";"Education (Q3)";"Social Sciences" +16348;21101083189;"CCF Transactions on High Performance Computing";journal;"25244930, 25244922";"Springer International Publishing";No;No;0,325;Q3;14;52;111;1843;258;103;1,42;35,44;24,52;0;Switzerland;Western Europe;"Springer International Publishing";"2019-2026";"Computer Science Applications (Q3); Computer Science (miscellaneous) (Q3); Hardware and Architecture (Q3); Information Systems (Q3)";"Computer Science" +16349;21100199568;"Dissertationes Mathematicae";journal;"17306310, 00123862";"Institute of Mathematics. Polish Academy of Sciences";No;No;0,325;Q3;28;6;28;384;17;28;0,69;64,00;0,00;0;Poland;Eastern Europe;"Institute of Mathematics. Polish Academy of Sciences";"2000-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16350;28758;"Geography";journal;"20436564, 00167487";"";No;No;0,325;Q3;33;24;64;732;69;54;1,25;30,50;38,24;0;United Kingdom;Western Europe;"";"1979-2026";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +16351;14391;"High Pressure Research";journal;"14772299, 08957959";"Taylor and Francis Ltd.";No;No;0,325;Q3;53;26;75;901;95;74;1,36;34,65;17,39;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2026";"Condensed Matter Physics (Q3)";"Physics and Astronomy" +16352;21100909467;"Journal of Computational Geometry";journal;"1920180X";"Carleton University";Yes;Yes;0,325;Q3;9;32;56;1042;43;56;0,86;32,56;12,36;0;Canada;Northern America;"Carleton University";"2018-2025";"Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Geometry and Topology (Q3)";"Computer Science; Mathematics" +16353;21100319042;"Journal of Electrical Bioimpedance";journal;"18915469";"Sciendo";Yes;No;0,325;Q3;24;19;48;603;82;45;1,83;31,74;31,34;0;Poland;Eastern Europe;"Sciendo";"2010-2026";"Biomedical Engineering (Q3); Biophysics (Q3)";"Biochemistry, Genetics and Molecular Biology; Engineering" +16354;21100933829;"Journal of Maxillofacial and Oral Surgery";journal;"0974942X, 09728279";"Springer India";No;No;0,325;Q3;39;534;776;11087;766;761;0,88;20,76;38,37;0;India;Asiatic Region;"Springer India";"2009-2026";"Oral Surgery (Q3); Otorhinolaryngology (Q3); Surgery (Q3)";"Dentistry; Medicine" +16355;21101030760;"Journal of Participatory Medicine";journal;"21527202";"JMIR Publications Inc.";Yes;No;0,325;Q3;14;45;40;1865;73;40;1,41;41,44;62,41;1;Canada;Northern America;"JMIR Publications Inc.";"2017-2026";"Biomedical Engineering (Q3); Health Informatics (Q3); Medicine (miscellaneous) (Q3)";"Engineering; Medicine" +16356;19700176234;"Kodai Mathematical Journal";journal;"18815472, 03865991";"Tokyo Institute of Technology";No;No;0,325;Q3;29;17;62;353;23;62;0,23;20,76;17,86;0;Japan;Asiatic Region;"Tokyo Institute of Technology";"1949-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16357;6000195387;"Mljekarstvo";journal;"0026704X, 18464025";"Hrvatska Mljekarska Udruga";Yes;Yes;0,325;Q3;27;21;73;1045;111;73;1,64;49,76;51,52;0;Croatia;Eastern Europe;"Hrvatska Mljekarska Udruga";"2007-2026";"Animal Science and Zoology (Q3); Food Science (Q3)";"Agricultural and Biological Sciences" +16358;21101023897;"Palestine Journal of Mathematics";journal;"22195688";"Palestine Polytechnic University";No;No;0,325;Q3;13;453;919;10695;857;891;0,85;23,61;26,57;0;Palestine;Middle East;"Palestine Polytechnic University";"2019-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16359;5800173387;"Reviews on Recent Clinical Trials";journal;"18761038, 15748871";"Bentham Science Publishers";No;No;0,325;Q3;39;64;112;4564;145;102;1,50;71,31;52,99;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2025";"Medicine (miscellaneous) (Q3); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +16360;21100901905;"Revista de Psicologia Clinica con Ninos y Adolescentes";journal;"23408340";"Aitana Research Group";Yes;Yes;0,325;Q3;15;24;75;1156;88;74;1,06;48,17;53,41;0;Spain;Western Europe;"Aitana Research Group";"2018-2025";"Clinical Psychology (Q3); Developmental and Educational Psychology (Q3); Pediatrics, Perinatology and Child Health (Q3); Psychiatry and Mental Health (Q3); Experimental and Cognitive Psychology (Q4)";"Medicine; Psychology" +16361;12100154802;"Soils and Rocks";journal;"19809743, 26755475";"Associacao Brasileira de Mecanica dos Solos";Yes;Yes;0,325;Q3;18;61;203;2913;259;195;1,21;47,75;17,86;0;Brazil;Latin America;"Associacao Brasileira de Mecanica dos Solos";"2007-2026";"Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +16362;21101128334;"Transplantology";journal;"26733943";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,325;Q3;9;38;80;1736;78;76;1,10;45,68;45,59;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Transplantation (Q3)";"Medicine" +16363;21100810707;"VideoGIE";journal;"24684481";"Elsevier Inc.";Yes;No;0,325;Q3;22;140;444;1239;319;441;0,64;8,85;21,21;0;United States;Northern America;"Elsevier Inc.";"2016-2026";"Gastroenterology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +16364;21100781512;"Meteorologica";journal;"1850468X, 0325187X";"Centro Argentino de Meteorologos";Yes;Yes;0,325;Q4;7;8;24;417;24;24;1,13;52,13;51,85;0;Argentina;Latin America;"Centro Argentino de Meteorologos";"2016-2025";"Atmospheric Science (Q4)";"Earth and Planetary Sciences" +16365;25354;"Canadian Journal of African Studies";journal;"19233051, 00083968";"Taylor and Francis Ltd.";No;No;0,324;Q1;20;31;91;1628;109;88;1,21;52,52;31,43;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976, 1980, 1982-1996, 1999, 2001, 2011-2012, 2014-2026";"Cultural Studies (Q1); History (Q1); Anthropology (Q2); Demography (Q2); Sociology and Political Science (Q2); Development (Q3); Geography, Planning and Development (Q3)";"Arts and Humanities; Social Sciences" +16366;21101032142;"International Journal of Language Education";journal;"25488457, 25488465";"Universitas Negeri Makassar- Faculty of Languages and Literature";No;No;0,324;Q1;18;56;139;2958;280;139;1,63;52,82;48,61;0;Indonesia;Asiatic Region;"Universitas Negeri Makassar- Faculty of Languages and Literature";"2017-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +16367;15341;"International Journal of the History of Sport";journal;"09523367, 17439035";"Routledge";No;No;0,324;Q1;33;102;249;4773;148;239;0,45;46,79;32,24;0;United Kingdom;Western Europe;"Routledge";"1984-1995, 2000-2002, 2010-2026";"History (Q1); Social Sciences (miscellaneous) (Q2); Sports Science (Q4)";"Arts and Humanities; Health Professions; Social Sciences" +16368;21100898602;"Vysshee Obrazovanie v Rossii";journal;"08693617, 20720459";"Moscow Polytechnic University";Yes;Yes;0,324;Q1;18;84;290;2918;365;289;1,47;34,74;59,28;0;Russian Federation;Eastern Europe;"Moscow Polytechnic University";"2018-2025";"Philosophy (Q1); Sociology and Political Science (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +16369;21100432868;"Anatomy and Cell Biology";journal;"20933673, 20933665";"Korean Association of Anatomists";Yes;No;0,324;Q2;31;80;219;2539;262;219;1,11;31,74;41,87;0;South Korea;Asiatic Region;"Korean Association of Anatomists";"2014-2025";"Anatomy (Q2); Histology (Q3); Cell Biology (Q4); Cellular and Molecular Neuroscience (Q4); Developmental Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +16370;21100893575;"Asian Journal of Business Research";journal;"24634522, 11788933";"Asia Business Research Corporation";No;No;0,324;Q2;18;18;69;1118;132;66;1,57;62,11;52,38;0;New Zealand;Pacific Region;"Asia Business Research Corporation";"2018-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2); Business and International Management (Q3); Marketing (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +16371;21101329143;"Contributions to Entomology";journal;"0005805X, 25116428";"Senckenberg Society for Natural Research, Senckenberg German Entomological Institute";Yes;No;0,324;Q2;5;23;60;1097;45;60;0,81;47,70;21,15;0;Germany;Western Europe;"Senckenberg Society for Natural Research, Senckenberg German Entomological Institute";"2021-2026";"History and Philosophy of Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences; Arts and Humanities" +16372;99148;"Geological Review";journal;"03715736";"Geological Society of China";No;No;0,324;Q2;20;98;803;5646;703;803;0,70;57,61;30,97;0;China;Asiatic Region;"Geological Society of China";"1996, 2020-2025";"Stratigraphy (Q2); Geochemistry and Petrology (Q3); Geology (Q3); Geophysics (Q3)";"Earth and Planetary Sciences" +16373;14000156195;"Journal of Applied Social Science";journal;"19370245, 19367244";"SAGE Publications Inc.";No;No;0,324;Q2;18;29;83;1662;113;83;1,60;57,31;45,31;0;United States;Northern America;"SAGE Publications Inc.";"2003-2026";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +16374;21100927390;"Journal of Sustainable Architecture and Civil Engineering";journal;"20299990, 23352000";"Kauno Technologijos Universitetas";Yes;Yes;0,324;Q2;11;22;85;988;137;83;1,58;44,91;40,30;0;Lithuania;Eastern Europe;"Kauno Technologijos Universitetas";"2019-2026";"Architecture (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering" +16375;28257;"Journal of Vascular Nursing";journal;"15326578, 10620303";"Elsevier Inc.";No;No;0,324;Q2;29;44;135;1175;142;114;0,72;26,70;60,33;1;United States;Northern America;"Elsevier Inc.";"1990-2026";"Medical and Surgical Nursing (Q2)";"Nursing" +16376;21100830439;"Language Learning in Higher Education";journal;"2191611X, 21916128";"De Gruyter Mouton";No;No;0,324;Q2;15;29;93;891;132;88;1,33;30,72;70,00;0;Germany;Western Europe;"De Gruyter Mouton";"2017-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +16377;21101339889;"Library and Information Service";journal;"02523116";"LIS Press Co., Ltd";No;No;0,324;Q2;11;301;932;13450;806;931;0,89;44,68;47,75;0;China;Asiatic Region;"LIS Press Co., Ltd";"2021-2025";"Library and Information Sciences (Q2)";"Social Sciences" +16378;21100198555;"Medizinische Klinik - Intensivmedizin und Notfallmedizin";journal;"21936218, 21936226";"Springer Medizin";No;No;0,324;Q2;24;163;323;4953;445;264;1,47;30,39;34,63;0;Germany;Western Europe;"Springer Medizin";"1997, 2002, 2011-2026";"Emergency Medicine (Q2); Emergency Nursing (Q2); Critical Care and Intensive Care Medicine (Q3); Internal Medicine (Q3)";"Medicine; Nursing" +16379;21100276221;"Review of Economic Perspectives";journal;"12132446, 18041663";"De Gruyter Open Ltd";Yes;Yes;0,324;Q2;17;5;35;396;50;35;0,80;79,20;20,00;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2009-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +16380;21100840720;"Transactions on Maritime Science";journal;"18483305, 18483313";"Faculty of Maritime Studies";Yes;No;0,324;Q2;15;66;138;2328;250;131;1,82;35,27;23,50;0;Croatia;Eastern Europe;"Faculty of Maritime Studies";"2017-2026";"Law (Q2); Automotive Engineering (Q3); Ocean Engineering (Q3); Transportation (Q3); Water Science and Technology (Q3)";"Engineering; Environmental Science; Social Sciences" +16381;24682;"Australian Journal of Zoology";journal;"14465698, 0004959X";"CSIRO Publishing";No;No;0,324;Q3;53;21;53;1056;62;53;1,30;50,29;50,00;0;Australia;Pacific Region;"CSIRO Publishing";"1952-1966, 1968-2026";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +16382;19900192709;"Brazilian Journal of Nephrology";journal;"01012800, 21758239";"";Yes;Yes;0,324;Q3;38;113;362;2610;310;281;0,75;23,10;49,73;0;Brazil;Latin America;"";"2010-2026";"Nephrology (Q3)";"Medicine" +16383;20077;"De Economist";journal;"15729982, 0013063X";"Springer";No;No;0,324;Q3;38;23;42;1408;58;41;1,00;61,22;28,07;5;United States;Northern America;"Springer";"1852-1944, 1946-1950, 1952-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +16384;21101066573;"Electronic Research Archive";journal;"26881594";"American Mathematical Society";Yes;No;0,324;Q3;29;332;916;11373;1356;915;1,51;34,26;38,64;0;United States;Northern America;"American Mathematical Society";"2019-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16385;23993;"European Journal of Mass Spectrometry";journal;"17516838, 14690667";"I M Publications";No;No;0,324;Q3;49;21;74;674;83;70;0,95;32,10;36,71;0;United Kingdom;Western Europe;"I M Publications";"1996-2026";"Atomic and Molecular Physics, and Optics (Q3); Medicine (miscellaneous) (Q3); Spectroscopy (Q3)";"Chemistry; Medicine; Physics and Astronomy" +16386;17260;"IEEE Industry Applications Magazine";journal;"15580598, 10772618";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,324;Q3;64;62;214;1036;166;164;0,94;16,71;13,39;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1995-2026";"Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Industrial and Manufacturing Engineering (Q3)";"Energy; Engineering" +16387;19700186823;"International Journal of Microwave and Wireless Technologies";journal;"17590795, 17590787";"Cambridge University Press";No;No;0,324;Q3;40;163;508;4344;884;499;1,69;26,65;18,17;0;United Kingdom;Western Europe;"Cambridge University Press";"2009-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +16388;22584;"Journal of Molluscan Studies";journal;"14643766, 02601230";"Oxford University Press";No;No;0,324;Q3;57;35;120;1982;129;118;0,95;56,63;30,16;0;United Kingdom;Western Europe;"Oxford University Press";"1899, 1903, 1928, 1935-1940, 1942-1969, 1971-1974, 1976-1978, 1981-1984, 1986-2026";"Animal Science and Zoology (Q3); Aquatic Science (Q3)";"Agricultural and Biological Sciences" +16389;19600157369;"Journal of Physician Assistant Education";journal;"19419449, 19419430";"Lippincott Williams and Wilkins Ltd.";No;No;0,324;Q3;21;97;218;1504;176;203;0,68;15,51;65,51;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1999, 2002-2003, 2009-2026";"Medical Assisting and Transcription; Education (Q3); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine; Social Sciences" +16390;21100466809;"Journal of Technical Education and Training";journal;"22298932";"Penerbit UTHM";Yes;No;0,324;Q3;19;76;187;3485;388;183;1,88;45,86;45,00;0;Malaysia;Asiatic Region;"Penerbit UTHM";"2016-2025";"Education (Q3)";"Social Sciences" +16391;21100933994;"Mathematics Teaching-Research Journal";journal;"25734377";"City University of New York";Yes;No;0,324;Q3;11;80;202;3385;271;188;1,35;42,31;43,17;0;United States;Northern America;"City University of New York";"2006-2025";"Education (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics; Social Sciences" +16392;21100284251;"Muscles, Ligaments and Tendons Journal";journal;"22404554";"EDRA S.p.A";No;No;0,324;Q3;56;52;218;2093;214;211;1,13;40,25;35,57;0;Italy;Western Europe;"EDRA S.p.A";"2011-2025";"Orthopedics and Sports Medicine (Q3)";"Medicine" +16393;17719;"North American Journal of Aquaculture";journal;"15222055, 15488454";"Oxford University Press";No;No;0,324;Q3;53;31;138;1676;198;137;1,26;54,06;41,67;0;United States;Northern America;"Oxford University Press";"1997-2026";"Aquatic Science (Q3)";"Agricultural and Biological Sciences" +16394;4700152488;"Proceedings of the Steklov Institute of Mathematics";journal;"00815438, 15318605";"Pleiades Publishing";No;No;0,324;Q3;29;40;334;1148;170;330;0,58;28,70;20,00;0;United States;Northern America;"Pleiades Publishing";"2006-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16395;18414;"Biocell";journal;"16675746, 03279545";"Tech Science Press";Yes;No;0,324;Q4;32;108;630;10049;942;630;1,77;93,05;47,96;0;Argentina;Latin America;"Tech Science Press";"1995-2013, 2015-2025";"Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +16396;15500154711;"Chemosensory Perception";journal;"19365810, 19365802";"Springer New York";No;No;0,324;Q4;41;0;19;0;36;19;0,00;0,00;0,00;0;United States;Northern America;"Springer New York";"2008-2022";"Cellular and Molecular Neuroscience (Q4); Sensory Systems (Q4)";"Neuroscience" +16397;22120;"Gene Expression";journal;"15553884, 10522166";"";No;No;0,324;Q4;56;31;71;1992;119;68;1,51;64,26;48,84;0;United States;Northern America;"";"1991-2025";"Genetics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +16398;21100445644;"Gene Reports";journal;"24520144";"Elsevier Inc.";No;No;0,324;Q4;30;285;648;15669;774;642;1,24;54,98;44,74;0;United States;Northern America;"Elsevier Inc.";"2015-2026";"Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology" +16399;21100456158;"IFAC-PapersOnLine";conference and proceedings;"24058963, 24058971";"Elsevier B.V.";Yes;No;0,324;-;105;3032;7834;55161;9941;7684;1,10;18,19;24,03;0;Netherlands;Western Europe;"Elsevier B.V.";"1973, 1975, 1977-1980, 1982, 1984, 1986-1987, 1989, 1991-2025";"Control and Systems Engineering";"Engineering" +16400;27328;"Journal of Pastoral Care and Counseling";journal;"15423050, 2167776X";"SAGE Publications Ltd";No;No;0,323;Q1;27;13;98;180;62;83;0,41;13,85;71,43;0;United States;Northern America;"SAGE Publications Ltd";"2002-2026";"Religious Studies (Q1)";"Arts and Humanities" +16401;4500151513;"Narrative Inquiry";journal;"15699935, 13876740";"John Benjamins Publishing Company";No;No;0,323;Q1;57;20;58;1002;67;55;1,39;50,10;62,50;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1998-2026";"History (Q1); Literature and Literary Theory (Q1); Social Sciences (miscellaneous) (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +16402;16000154708;"Southern Journal of Philosophy";journal;"20416962, 00384283";"John Wiley and Sons Inc";No;No;0,323;Q1;34;65;125;2541;128;113;0,78;39,09;20,29;0;United States;Northern America;"John Wiley and Sons Inc";"1963-2026";"Philosophy (Q1)";"Arts and Humanities" +16403;21101023156;"Engineering Research Express";journal;"26318695";"IOP Publishing Ltd.";No;No;0,323;Q2;31;1758;1614;69781;3676;1610;2,27;39,69;28,49;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2019-2026";"Engineering (miscellaneous) (Q2)";"Engineering" +16404;21100902532;"Global Social Welfare";journal;"21968799";"Springer International Publishing";No;No;0,323;Q2;23;75;127;3874;204;125;1,58;51,65;51,43;2;Switzerland;Western Europe;"Springer International Publishing";"2014-2026";"Sociology and Political Science (Q2)";"Social Sciences" +16405;4700151736;"International Journal for Multiscale Computational Engineering";journal;"15431649";"Begell House Inc.";No;No;0,323;Q2;37;28;98;1297;152;89;1,35;46,32;24,71;0;United States;Northern America;"Begell House Inc.";"2003, 2006-2026";"Computational Mechanics (Q2); Computer Networks and Communications (Q3); Control and Systems Engineering (Q3)";"Computer Science; Engineering" +16406;21100220476;"International Journal of Work Innovation";journal;"20439032, 20439040";"Inderscience";No;No;0,323;Q2;12;20;61;1458;149;61;2,50;72,90;44,00;0;United Kingdom;Western Europe;"Inderscience";"2012, 2015-2017, 2020, 2022-2025";"Communication (Q2); Computer Networks and Communications (Q3); Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Computer Science; Social Sciences" +16407;19700188347;"Journal of Aerospace Technology and Management";journal;"21759146, 19849648";"Departamento de Ciencia e Tecnologia Aeroespacial";Yes;Yes;0,323;Q2;31;43;100;1352;164;98;1,44;31,44;28,71;0;Brazil;Latin America;"Departamento de Ciencia e Tecnologia Aeroespacial";"2009-2026";"Computational Mechanics (Q2); Aerospace Engineering (Q3)";"Engineering" +16408;21101261366;"JSFA reports";journal;"25735098";"John Wiley and Sons Ltd";No;No;0,323;Q2;9;33;152;1759;293;151;2,05;53,30;51,41;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Horticulture (Q2); Agronomy and Crop Science (Q3); Food Science (Q3)";"Agricultural and Biological Sciences" +16409;21100202753;"Pragmalinguistica";journal;"1133682X";"Universidad de Cadiz";Yes;Yes;0,323;Q2;10;20;82;623;29;82;0,35;31,15;72,22;0;Spain;Western Europe;"Universidad de Cadiz";"2011-2025";"Linguistics and Language (Q2)";"Social Sciences" +16410;21517;"South East Asia Research";journal;"0967828X";"Taylor and Francis Ltd.";No;No;0,323;Q2;31;21;74;1127;79;67;1,02;53,67;25,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Political Science and International Relations (Q2); Development (Q3); Geography, Planning and Development (Q3)";"Social Sciences" +16411;21101232819;"World Food Policy";journal;"23728639";"John Wiley and Sons Inc";No;No;0,323;Q2;10;16;37;822;74;35;2,30;51,38;37,14;0;United States;Northern America;"John Wiley and Sons Inc";"2014-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Food Science (Q3)";"Agricultural and Biological Sciences; Social Sciences" +16412;23670;"Annals of Mathematics and Artificial Intelligence";journal;"15737470, 10122443";"Springer Netherlands";No;No;0,323;Q3;64;55;164;1896;236;152;1,42;34,47;21,26;0;Netherlands;Western Europe;"Springer Netherlands";"1990-2026";"Applied Mathematics (Q3); Artificial Intelligence (Q3)";"Computer Science; Mathematics" +16413;17700156743;"Arab Journal of Gastroenterology";journal;"20902387, 16871979";"Elsevier Ltd";No;No;0,323;Q3;28;97;162;3227;181;157;1,18;33,27;38,81;0;United Kingdom;Western Europe;"Elsevier Ltd";"2009-2026";"Gastroenterology (Q3)";"Medicine" +16414;8600153103;"Baylor University Medical Center Proceedings";journal;"08998280, 15253252";"Taylor and Francis Ltd.";No;No;0,323;Q3;25;222;696;3561;631;600;0,87;16,04;36,50;2;United States;Northern America;"Taylor and Francis Ltd.";"1991, 2000, 2007, 2010, 2014-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +16415;21100775937;"Botany Letters";journal;"23818107, 23818115";"Taylor and Francis Ltd.";No;No;0,323;Q3;31;53;149;2733;183;144;1,21;51,57;36,23;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Plant Science (Q3)";"Agricultural and Biological Sciences" +16416;145171;"Canadian Journal of Rural Medicine";journal;"1488237X, 12037796";"Wolters Kluwer";Yes;No;0,323;Q3;26;39;115;471;57;66;0,41;12,08;56,82;0;Netherlands;Western Europe;"Wolters Kluwer";"2004-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +16417;21100786327;"Economics of Energy and Environmental Policy";journal;"21605890, 21605882";"International Association for Energy Economics";No;No;0,323;Q3;35;7;55;369;64;52;1,10;52,71;29,41;0;United States;Northern America;"International Association for Energy Economics";"2012-2025";"Economics and Econometrics (Q3); Energy (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3)";"Economics, Econometrics and Finance; Energy; Environmental Science" +16418;21981;"Helminthologia";journal;"04406605, 13369083";"De Gruyter Open Ltd";Yes;No;0,323;Q3;34;37;122;1546;174;121;1,18;41,78;40,67;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"1979-1980, 1996-2025";"Animal Science and Zoology (Q3); Parasitology (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology" +16419;21100855883;"International Journal of Electrical and Computer Engineering Systems";journal;"18477003, 18476996";"J.J. Strossmayer University of Osijek , Faculty of Electrical Engineering, Computer Science and Information Technology";Yes;No;0,323;Q3;15;65;295;2246;571;295;2,22;34,55;33,71;0;Croatia;Eastern Europe;"J.J. Strossmayer University of Osijek , Faculty of Electrical Engineering, Computer Science and Information Technology";"2016-2026";"Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3)";"Computer Science; Engineering" +16420;21100313911;"International Journal of Esthetic Dentistry";journal;"2198591X";"Quintessenz Verlags-GmbH";No;No;0,323;Q3;39;42;130;721;109;121;0,72;17,17;34,62;0;Germany;Western Europe;"Quintessenz Verlags-GmbH";"2014-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +16421;20948;"Jixie Gongcheng Xuebao/Journal of Mechanical Engineering";journal;"05776686";"Chinese Mechanical Engineering Society";No;No;0,323;Q3;69;547;2236;20902;3728;2232;1,56;38,21;26,46;0;China;Asiatic Region;"Chinese Mechanical Engineering Society";"1981-1989, 1996-2025";"Applied Mathematics (Q3); Computer Science Applications (Q3); Mechanical Engineering (Q3)";"Computer Science; Engineering; Mathematics" +16422;29554;"Journal of Bioeconomics";journal;"13876996, 15736989";"Springer";No;No;0,323;Q3;34;0;21;0;27;14;1,42;0,00;0,00;0;United States;Northern America;"Springer";"1999-2023";"Economics and Econometrics (Q3); Geography, Planning and Development (Q3)";"Economics, Econometrics and Finance; Social Sciences" +16423;21100818750;"Journal of EMDR Practice and Research";journal;"1933320X, 19333196";"Springer Publishing Company";Yes;No;0,323;Q3;24;10;60;548;52;55;0,73;54,80;51,72;0;United States;Northern America;"Springer Publishing Company";"2010-2025";"Neuropsychology and Physiological Psychology (Q3); Psychiatry and Mental Health (Q3); Biological Psychiatry (Q4); Cognitive Neuroscience (Q4); Experimental and Cognitive Psychology (Q4)";"Medicine; Neuroscience; Psychology" +16424;21101050913;"Journal of Image and Graphics (United Kingdom)";journal;"23013699";"University of Portsmouth";No;No;0,323;Q3;16;65;121;2406;298;121;2,49;37,02;33,17;0;United Kingdom;Western Europe;"University of Portsmouth";"2021-2026";"Computer Graphics and Computer-Aided Design (Q3); Computer Science Applications (Q3); Computer Vision and Pattern Recognition (Q3)";"Computer Science" +16425;21100920051;"Journal of Research Administration";journal;"25737104, 15391590";"Society of Research Administrators International";No;No;0,323;Q3;7;17;45;429;47;40;0,61;25,24;58,00;0;United States;Northern America;"Society of Research Administrators International";"2019-2025";"Education (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +16426;16818;"Journal of Sensory Studies";journal;"1745459X, 08878250";"Wiley-Blackwell";No;No;0,323;Q3;69;91;210;4204;368;210;1,73;46,20;56,62;0;United States;Northern America;"Wiley-Blackwell";"1986-2026";"Food Science (Q3); Sensory Systems (Q4)";"Agricultural and Biological Sciences; Neuroscience" +16427;25944;"Macromolecular Theory and Simulations";journal;"15213919, 10221344";"Wiley-VCH Verlag";No;No;0,323;Q3;62;41;109;1797;197;109;2,12;43,83;19,44;0;Germany;Western Europe;"Wiley-VCH Verlag";"1992-2026";"Condensed Matter Physics (Q3); Inorganic Chemistry (Q3); Materials Chemistry (Q3); Organic Chemistry (Q3); Polymers and Plastics (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +16428;13614;"Mechanics of Composite Materials";journal;"15738922, 01915665";"Springer New York";No;No;0,323;Q3;41;84;227;2941;387;227;1,80;35,01;27,11;0;United States;Northern America;"Springer New York";"1979-2026";"Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Mathematics (miscellaneous) (Q3); Mechanics of Materials (Q3); Polymers and Plastics (Q3); Biomaterials (Q4)";"Engineering; Materials Science; Mathematics; Physics and Astronomy" +16429;72260;"Nigerian Postgraduate Medical Journal";journal;"11171936, 24686875";"Wolters Kluwer Medknow Publications";Yes;No;0,323;Q3;27;70;143;1955;185;139;1,37;27,93;34,33;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2000-2014, 2016-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +16430;21100940940;"Physical Sciences Reviews";journal;"2365659X";"Walter de Gruyter GmbH";No;No;0,323;Q3;36;35;468;2250;939;467;2,17;64,29;32,04;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2016-2026";"Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +16431;21101087105;"Public Administration Quarterly";journal;"23274433, 07349149";"SAGE Publications Ltd";No;No;0,323;Q3;11;22;59;1603;86;58;1,13;72,86;46,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2004, 2019-2026";"Public Administration (Q3)";"Social Sciences" +16432;35694;"Revista Colombiana de Psiquiatria";journal;"00347450";"Asociacion Colombiana de Psiquiatria";Yes;No;0,323;Q3;27;133;229;4804;213;197;0,95;36,12;50,95;1;Spain;Western Europe;"Asociacion Colombiana de Psiquiatria";"1974-1978, 2013-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +16433;84222;"Science and Engineering of Composite Materials";journal;"21910359, 07921233";"Walter de Gruyter GmbH";Yes;No;0,323;Q3;36;23;160;1027;310;160;1,88;44,65;34,74;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1988-1989, 1991-2000, 2002, 2004-2026";"Ceramics and Composites (Q3); Materials Chemistry (Q3)";"Materials Science" +16434;19700187616;"Christian Higher Education";journal;"15363759, 15394107";"Taylor and Francis Ltd.";No;No;0,322;Q1;18;29;64;1185;34;53;0,48;40,86;50,85;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002-2026";"Religious Studies (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +16435;21101260416;"Journal of Historical Political Economy";journal;"26939290, 26939304";"Now Publishers Inc";No;No;0,322;Q1;7;23;58;1042;30;58;0,34;45,30;28,21;0;United States;Northern America;"Now Publishers Inc";"2021-2025";"History (Q1); Political Science and International Relations (Q2); Economics and Econometrics (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +16436;145406;"Art Therapy";journal;"07421656";"Taylor and Francis Ltd.";No;No;0,322;Q2;49;59;97;2081;142;73;1,13;35,27;75,86;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2026";"Complementary and Manual Therapy (Q2); Clinical Psychology (Q3)";"Health Professions; Psychology" +16437;21101298940;"Culture, Practice and Europeanization";journal;"25667742";"Nomos Verlagsgesellschaft mbH und Co KG";Yes;No;0,322;Q2;9;16;45;894;64;36;0,70;55,88;47,83;0;Germany;Western Europe;"Nomos Verlagsgesellschaft mbH und Co KG";"2017-2025";"Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16438;21100389517;"Drug Metabolism and Personalized Therapy";journal;"23638907, 23638915";"Walter de Gruyter GmbH";No;No;0,322;Q2;41;28;113;1088;168;104;1,74;38,86;44,17;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2015-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +16439;21101049095;"Ecology, Economy and Society";journal;"25816101, 25816152";"Indian Society for Ecological Economics (INSEE)";Yes;Yes;0,322;Q2;9;12;62;486;78;45;1,15;40,50;31,25;0;India;Asiatic Region;"Indian Society for Ecological Economics (INSEE)";"2019-2026";"Forestry (Q2); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Economics and Econometrics (Q3); Nature and Landscape Conservation (Q3); Global and Planetary Change (Q4)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Environmental Science" +16440;21100898028;"Educar";journal;"0211819X, 20148801";"Universitat Autonoma de Barcelona";Yes;Yes;0,322;Q2;16;31;97;964;131;96;1,40;31,10;65,28;1;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2018-2025";"Communication (Q2); Education (Q3); Human-Computer Interaction (Q3)";"Computer Science; Social Sciences" +16441;21101071951;"International Journal of Horticultural Science and Technology";journal;"25883143, 23221461";"University of Tehran, College of Aburaihan";Yes;No;0,322;Q2;17;91;130;4169;235;130;1,81;45,81;38,11;0;Iran;Middle East;"University of Tehran, College of Aburaihan";"2019-2026";"Horticulture (Q2)";"Agricultural and Biological Sciences" +16442;21100896466;"International Journal of Service Science, Management, Engineering, and Technology";journal;"19479603, 1947959X";"IGI Global Publishing";No;No;0,322;Q2;22;12;69;1102;161;69;2,74;91,83;23,08;0;United States;Northern America;"IGI Global Publishing";"2012, 2014-2015, 2017-2026";"Engineering (miscellaneous) (Q2); Multidisciplinary (Q2); Business, Management and Accounting (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3)";"Business, Management and Accounting; Computer Science; Engineering; Multidisciplinary" +16443;4000152140;"Journal of Complementary and Integrative Medicine";journal;"21946329, 15533840";"Walter de Gruyter GmbH";No;No;0,322;Q2;39;88;261;4492;416;259;1,40;51,05;49,73;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2004, 2006-2026";"Complementary and Alternative Medicine (Q2); Medicine (miscellaneous) (Q3)";"Medicine" +16444;21100909460;"Turkish Journal of Anaesthesiology and Reanimation";journal;"26676370, 2667677X";"Galenos Publishing House";Yes;No;0,322;Q2;21;53;224;1239;230;199;1,17;23,38;49,05;0;Turkey;Middle East;"Galenos Publishing House";"2019-2026";"Emergency Medicine (Q2); Anesthesiology and Pain Medicine (Q3)";"Medicine" +16445;21101046369;"Brazilian Journal of Operations and Production Management";journal;"16798171, 22378960";"Associacao Brasileira de Engenharia de Producao";Yes;Yes;0,322;Q3;19;27;95;1418;195;94;2,43;52,52;33,33;0;Brazil;Latin America;"Associacao Brasileira de Engenharia de Producao";"2019-2025";"Computer Science Applications (Q3); Industrial and Manufacturing Engineering (Q3); Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering" +16446;21101149540;"Catrina -The International Journal of Environmental Sciences";journal;"20902786, 16875052";"";No;No;0,322;Q3;8;15;76;854;131;76;1,95;56,93;53,33;0;Egypt;Africa/Middle East;"";"2006-2025";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +16447;21101180710;"Continence";journal;"27729737";"Elsevier B.V.";Yes;No;0,322;Q3;7;83;179;2492;178;167;1,04;30,02;44,04;0;Netherlands;Western Europe;"Elsevier B.V.";"2008-2009, 2022-2026";"Urology (Q3); Immunology and Allergy (Q4)";"Medicine" +16448;19900193667;"Current Issues in Auditing";journal;"19361270";"American Accounting Association";No;No;0,322;Q3;22;17;50;438;59;41;1,06;25,76;53,85;0;United States;Northern America;"American Accounting Association";"2009-2025";"Accounting (Q3)";"Business, Management and Accounting" +16449;21100813768;"Ecological Questions";journal;"16447298, 20835469";"";No;No;0,322;Q3;18;44;139;2054;219;139;1,67;46,68;40,24;0;Germany;Western Europe;"";"2002-2004, 2008-2025";"Ecological Modeling (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Geography, Planning and Development (Q3)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +16450;21100976731;"Forensic Imaging";journal;"26662256, 26662264";"Elsevier Ltd";Yes;No;0,322;Q3;26;36;124;1217;134;121;1,09;33,81;47,02;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Pathology and Forensic Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +16451;36043;"Gonglu Jiaotong Keji/Journal of Highway and Transportation Research and Development";journal;"10020268";"";No;No;0,322;Q3;15;266;823;7154;886;823;1,15;26,89;31,41;0;China;Asiatic Region;"";"1994, 2001-2003, 2020-2026";"Civil and Structural Engineering (Q3); Transportation (Q3)";"Engineering; Social Sciences" +16452;145445;"HIV and AIDS Review";journal;"17301270, 17322707";"Termedia Publishing House Ltd.";Yes;No;0,322;Q3;11;51;148;1551;105;146;0,59;30,41;54,81;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2005-2025";"Epidemiology (Q3); Infectious Diseases (Q3)";"Medicine" +16453;21101053113;"Ichthyology and Herpetology";journal;"27661512, 27661520";"American Society of Ichthyologists and Herpetologists";No;No;0,322;Q3;80;47;157;2544;143;149;0,66;54,13;29,07;0;United States;Northern America;"American Society of Ichthyologists and Herpetologists";"2021-2025";"Animal Science and Zoology (Q3); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +16454;20452;"International Journal of Offshore and Polar Engineering";journal;"10535381";"International Society of Offshore and Polar Engineers";No;No;0,322;Q3;49;50;156;1172;157;156;0,95;23,44;12,90;0;United States;Northern America;"International Society of Offshore and Polar Engineers";"1991-2025";"Civil and Structural Engineering (Q3); Mechanical Engineering (Q3); Ocean Engineering (Q3)";"Engineering" +16455;28115;"JETP Letters";journal;"10906487, 00213640";"Pleiades Publishing";No;No;0,322;Q3;86;265;838;8635;927;833;1,14;32,58;23,51;0;United States;Northern America;"Pleiades Publishing";"1969-1971, 1980, 1988, 1996-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +16456;5100154501;"Journal of Superconductivity and Novel Magnetism";journal;"15571947, 15571939";"Springer New York";No;No;0,322;Q3;69;257;793;12036;1497;786;1,96;46,83;28,05;0;United States;Northern America;"Springer New York";"1996, 1998-2026";"Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science; Physics and Astronomy" +16457;21101176033;"Mechanical Engineering for Society and Industry";journal;"27985245";"Universitas Muhammadiyah Magelang";No;No;0,322;Q3;11;25;65;1048;148;60;2,21;41,92;19,75;0;Indonesia;Asiatic Region;"Universitas Muhammadiyah Magelang";"2021-2025";"Automotive Engineering (Q3); Fuel Technology (Q3); Mechanical Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering" +16458;29052;"Modern Physics Letters A";journal;"02177323, 17936632";"World Scientific Publishing Co. Pte Ltd";No;No;0,322;Q3;92;283;698;14044;999;696;1,40;49,63;22,53;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1986, 1991-2026";"Astronomy and Astrophysics (Q3); Nuclear and High Energy Physics (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +16459;21101163292;"Northern Clinics of Istanbul";journal;"21484902, 25364553";"Kare Publishing";Yes;Yes;0,322;Q3;9;100;305;2755;341;295;0,99;27,55;45,93;0;Turkey;Middle East;"Kare Publishing";"2022-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +16460;21101180705;"Physical Sciences and Technology";journal;"24096121, 25221361";"al-Farabi Kazakh State National University";Yes;Yes;0,322;Q3;7;14;59;473;80;59;1,63;33,79;40,58;0;Kazakhstan;Asiatic Region;"al-Farabi Kazakh State National University";"2015-2016, 2019-2025";"Condensed Matter Physics (Q3); Nuclear and High Energy Physics (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +16461;12700154703;"Proceedings of Institution of Civil Engineers: Energy";journal;"17514231, 17514223";"ICE Publishing";No;No;0,322;Q3;29;14;72;517;106;59;1,10;36,93;27,91;0;United Kingdom;Western Europe;"ICE Publishing";"2008-2025";"Energy Engineering and Power Technology (Q3); Energy (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy" +16462;29381;"Research and Theory for Nursing Practice";journal;"15416577";"Springer Publishing Company";No;No;0,322;Q3;48;34;80;1432;82;78;1,07;42,12;64,58;0;United States;Northern America;"Springer Publishing Company";"2002-2025";"Medicine (miscellaneous) (Q3); Research and Theory (Q3)";"Medicine; Nursing" +16463;21101033829;"Results in Nonlinear Analysis";journal;"26367556";"Erdal Karapinar";Yes;Yes;0,322;Q3;13;62;161;1561;262;161;1,54;25,18;29,29;0;Turkey;Middle East;"Erdal Karapinar";"2019-2025";"Analysis (Q3); Applied Mathematics (Q3); Geometry and Topology (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics" +16464;21100326894;"Revista Eureka";journal;"1697011X";"Universidad de Cadiz";Yes;Yes;0,322;Q3;19;38;123;1983;127;121;0,99;52,18;51,06;0;Spain;Western Europe;"Universidad de Cadiz";"2014-2025";"Education (Q3)";"Social Sciences" +16465;21101118628;"Tikrit Journal of Engineering Sciences";journal;"1813162X, 23127589";"Tikrit University";Yes;No;0,322;Q3;14;187;194;6620;464;194;2,45;35,40;25,17;1;Iraq;Middle East;"Tikrit University";"2019-2025";"Chemical Engineering (miscellaneous) (Q3); Civil and Structural Engineering (Q3); Electrical and Electronic Engineering (Q3); Environmental Engineering (Q3); Environmental Science (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Chemical Engineering; Engineering; Environmental Science" +16466;21100886539;"Tourism Review International";journal;"15442721, 19434421";"Cognizant Communication Corporation";No;No;0,322;Q3;21;15;61;1246;119;61;1,82;83,07;44,74;0;United States;Northern America;"Cognizant Communication Corporation";"2016-2025";"Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting" +16467;5700168391;"Journal of Global Ethics";journal;"17449626, 17449634";"Routledge";No;No;0,321;Q1;32;29;93;1016;121;85;0,88;35,03;26,67;0;United Kingdom;Western Europe;"Routledge";"2005-2026";"Philosophy (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +16468;26994;"Air Medical Journal";journal;"15326497, 1067991X";"Elsevier Inc.";No;No;0,321;Q2;32;118;321;2353;286;310;0,81;19,94;34,38;0;United States;Northern America;"Elsevier Inc.";"1993-2026";"Emergency Medicine (Q2); Emergency Nursing (Q3)";"Medicine; Nursing" +16469;20060;"Economics of Governance";journal;"14356104, 14358131";"Springer Verlag";No;No;0,321;Q2;34;21;55;1199;76;53;1,41;57,10;32,50;0;Germany;Western Europe;"Springer Verlag";"2001, 2003-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business and International Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +16470;17300154952;"European Journal of Integrative Medicine";journal;"18763820, 18763839";"Elsevier GmbH";No;No;0,321;Q2;49;122;298;6478;548;293;1,50;53,10;51,48;0;Germany;Western Europe;"Elsevier GmbH";"2009-2026";"Complementary and Alternative Medicine (Q2)";"Medicine" +16471;25962;"Imaging Science Journal";journal;"13682199, 1743131X";"Maney Publishing";No;No;0,321;Q2;32;74;160;3374;336;160;2,32;45,59;37,43;0;United Kingdom;Western Europe;"Maney Publishing";"1997-2026";"Media Technology (Q2); Computer Vision and Pattern Recognition (Q3)";"Computer Science; Engineering" +16472;21101361220;"Journal of Awareness-Based Systems Change";journal;"27676013, 27676021";"Presencing Institute";Yes;No;0,321;Q2;9;16;58;763;69;52;0,98;47,69;69,57;0;United States;Northern America;"Presencing Institute";"2021-2025";"Social Sciences (miscellaneous) (Q2); Education (Q3)";"Social Sciences" +16473;21100870603;"Journal of Community Archaeology and Heritage";journal;"2051820X, 20518196";"Taylor and Francis Ltd.";No;No;0,321;Q2;18;8;52;359;48;41;0,83;44,88;77,27;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +16474;19700183041;"Journal of Emergencies, Trauma and Shock";journal;"09742700, 0974519X";"Wolters Kluwer Medknow Publications";Yes;No;0,321;Q2;46;48;158;940;100;102;0,64;19,58;34,65;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2009-2025";"Emergency Medicine (Q2)";"Medicine" +16475;18331;"Journal of Zoo and Wildlife Medicine";journal;"10427260";"American Association of Zoo Veterinarians";No;No;0,321;Q2;59;82;336;2704;240;336;0,60;32,98;56,46;0;United States;Northern America;"American Association of Zoo Veterinarians";"1993-1994, 1996-2025";"Veterinary (miscellaneous) (Q2); Animal Science and Zoology (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Medicine; Veterinary" +16476;16100154756;"Lexikos";journal;"16844904, 22240039";"Bureau of the WAT";Yes;No;0,321;Q2;22;23;97;843;72;97;0,75;36,65;64,29;0;South Africa;Africa;"Bureau of the WAT";"2002-2025";"Linguistics and Language (Q2)";"Social Sciences" +16477;21100858126;"Tropical Animal Science Journal";journal;"2615790X, 2615787X";"Bogor Agricultural University";Yes;No;0,321;Q2;24;60;179;2773;307;179;1,68;46,22;28,89;1;Indonesia;Asiatic Region;"Bogor Agricultural University";"2018-2026";"Veterinary (miscellaneous) (Q2); Animal Science and Zoology (Q3); Food Animals (Q3)";"Agricultural and Biological Sciences; Veterinary" +16478;21101221510;"Asian Pacific Journal of Cancer Biology";journal;"25384635";"West Asia Organization for Cancer Prevention";Yes;No;0,321;Q3;12;67;122;2875;194;121;1,93;42,91;43,98;0;Iran;Middle East;"West Asia Organization for Cancer Prevention";"2020-2026";"Oncology (Q3); Cancer Research (Q4); Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16479;19700169713;"Asian Pacific Journal of Tropical Medicine";journal;"23524146, 19957645";"Wolters Kluwer Medknow Publications";Yes;Yes;0,321;Q3;80;85;258;2298;259;220;1,16;27,04;46,39;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2010-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +16480;21100432467;"Brazilian Journal of Food Technology";journal;"15167275, 19816723";"Instituto de Tecnologia de Alimentos - ITAL";Yes;No;0,321;Q3;27;45;143;1990;273;143;2,14;44,22;54,79;0;Brazil;Latin America;"Instituto de Tecnologia de Alimentos - ITAL";"2015-2026";"Food Science (Q3)";"Agricultural and Biological Sciences" +16481;4400151415;"Current Medicinal Chemistry: Cardiovascular and Hematological Agents";journal;"18756174, 18715257";"Bentham Science Publishers";No;No;0,321;Q3;45;27;99;1821;141;93;1,47;67,44;42,98;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Cardiology and Cardiovascular Medicine (Q3); Hematology (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Clinical Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +16482;5800179596;"Entomological Research";journal;"17382297, 17485967";"Wiley-Blackwell Publishing Ltd";No;No;0,321;Q3;33;71;181;3514;277;181;1,20;49,49;29,41;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2007-2026";"Insect Science (Q3)";"Agricultural and Biological Sciences" +16483;5300152212;"IEEJ Transactions on Electrical and Electronic Engineering";journal;"19314981, 19314973";"John Wiley and Sons Inc";No;No;0,321;Q3;43;280;654;7053;1008;584;1,42;25,19;25,42;0;United States;Northern America;"John Wiley and Sons Inc";"2007-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +16484;21100792737;"International Journal of Cognitive Research in Science, Engineering and Education";journal;"2334847X, 23348496";"Association for the Development of Science, Engineering and Education";Yes;No;0,321;Q3;20;59;150;2643;233;145;1,68;44,80;61,70;0;Serbia;Eastern Europe;"Association for the Development of Science, Engineering and Education";"2013-2025";"Education (Q3); Cognitive Neuroscience (Q4); Experimental and Cognitive Psychology (Q4)";"Neuroscience; Psychology; Social Sciences" +16485;110000;"International Journal of Environmental Studies";journal;"00207233, 10290400";"Taylor and Francis Ltd.";No;No;0,321;Q3;49;129;405;6377;694;392;1,82;49,43;42,37;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1970-2026";"Computers in Earth Sciences (Q3); Ecology (Q3); Geography, Planning and Development (Q3); Pollution (Q3); Waste Management and Disposal (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +16486;21100215167;"International Journal of Geophysics";journal;"16878868, 1687885X";"John Wiley and Sons Ltd";Yes;No;0,321;Q3;30;15;32;784;49;32;1,16;52,27;22,22;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2025";"Geophysics (Q3); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science" +16487;4700152645;"International Journal on Artificial Intelligence Tools";journal;"02182130, 17936349";"World Scientific";No;No;0,321;Q3;43;29;222;1066;373;211;1,65;36,76;28,36;0;Singapore;Asiatic Region;"World Scientific";"1995, 2005-2026";"Artificial Intelligence (Q3)";"Computer Science" +16488;21100775627;"IZA Journal of Labor Policy";journal;"21939004";"Laborwide";Yes;No;0,321;Q3;29;0;27;0;34;27;0,67;0,00;0,00;0;Germany;Western Europe;"Laborwide";"2012-2024";"Economics and Econometrics (Q3); Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +16489;145494;"Jornal Vascular Brasileiro";journal;"16775449, 16777301";"Sociedade Brasileira de Angiologia e Cirurgia Vascular";Yes;Yes;0,321;Q3;25;83;184;1881;167;166;0,82;22,66;31,38;0;Brazil;Latin America;"Sociedade Brasileira de Angiologia e Cirurgia Vascular";"2005-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +16490;22544;"Journal of Ethology";journal;"02890771, 14395444";"Springer";No;No;0,321;Q3;43;35;87;1306;85;86;1,16;37,31;35,14;0;Japan;Asiatic Region;"Springer";"1983-2026";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +16491;17900156714;"Journal of Investigative Psychology and Offender Profiling";journal;"15444759, 15444767";"John Wiley and Sons Ltd";No;No;0,321;Q3;33;14;51;715;70;50;1,39;51,07;65,85;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Applied Psychology (Q3); Social Psychology (Q3)";"Psychology" +16492;20000195014;"Journal of Oral and Maxillofacial Pathology";journal;"1998393X, 0973029X";"Wolters Kluwer Medknow Publications";Yes;No;0,321;Q3;49;117;504;2630;552;468;0,96;22,48;53,95;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2011-2025";"Dentistry (miscellaneous) (Q3); Otorhinolaryngology (Q3); Pathology and Forensic Medicine (Q3)";"Dentistry; Medicine" +16493;21101369104;"Journal of Responsible Production and Consumption";journal;"29770114";"Emerald Publishing";Yes;No;0,321;Q3;4;23;11;2576;30;11;2,73;112,00;36,21;0;United Kingdom;Western Europe;"Emerald Publishing";"2024-2026";"Business, Management and Accounting (miscellaneous) (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +16494;21100835668;"Journal of Thermal Engineering";journal;"21487847";"Yildiz Technical University";Yes;Yes;0,321;Q3;26;106;294;5357;588;294;2,02;50,54;16,36;0;Turkey;Middle East;"Yildiz Technical University";"2015-2026";"Building and Construction (Q3); Energy Engineering and Power Technology (Q3); Fluid Flow and Transfer Processes (Q3)";"Chemical Engineering; Energy; Engineering" +16495;22313;"Performance Evaluation";journal;"01665316";"Elsevier B.V.";No;No;0,321;Q3;73;51;85;1812;146;82;1,85;35,53;21,09;0;Netherlands;Western Europe;"Elsevier B.V.";"1981-2026";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Hardware and Architecture (Q3); Modeling and Simulation (Q3); Software (Q3)";"Computer Science; Mathematics" +16496;21101068596;"Population Medicine";journal;"26541459";"European Publishing";Yes;No;0,321;Q3;11;23;107;665;133;102;1,36;28,91;35,62;0;Greece;Western Europe;"European Publishing";"2019-2025";"Epidemiology (Q3); Health Informatics (Q3); Health Policy (Q3); Health (social science) (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +16497;13997;"Psychologische Rundschau";journal;"00333042, 21906238";"Hogrefe Verlag GmbH & Co. KG";No;No;0,321;Q3;26;20;79;479;46;45;0,78;23,95;47,73;0;Germany;Western Europe;"Hogrefe Verlag GmbH & Co. KG";"1973-1975, 1980, 1996-1997, 2002-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +16498;4300151406;"Revista Brasileira de Entomologia";journal;"00855626, 18069665";"Sociedade Brasileira De Entomologia";Yes;No;0,321;Q3;40;44;136;2051;129;136;0,94;46,61;34,57;0;Brazil;Latin America;"Sociedade Brasileira De Entomologia";"2003, 2005-2026";"Insect Science (Q3)";"Agricultural and Biological Sciences" +16499;19246;"Techniques in Hand and Upper Extremity Surgery";journal;"10893393, 15316572";"Lippincott Williams and Wilkins Ltd.";No;No;0,321;Q3;37;45;147;175;99;136;0,54;3,89;31,79;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1997, 2001-2026";"Orthopedics and Sports Medicine (Q3); Surgery (Q3)";"Medicine" +16500;21100948914;"EPiC Series in Computing";conference and proceedings;"23987340";"EasyChair";No;No;0,321;-;19;83;390;1366;337;367;0,92;16,46;28,52;1;United Kingdom;Western Europe;"EasyChair";"2018-2025";"Computer Science (miscellaneous)";"Computer Science" +16501;21100898756;"Physics Education Research Conference Proceedings";conference and proceedings;"15399028, 23772379";"American Association of Physics Teachers";No;No;0,321;-;12;76;231;1896;114;227;0,52;24,95;52,20;0;United States;Northern America;"American Association of Physics Teachers";"2018-2025";"Education; Physics and Astronomy (miscellaneous)";"Physics and Astronomy; Social Sciences" +16502;21100286463;"Geojournal of Tourism and Geosites";journal;"20651198, 20650817";"Editura Universitatii din Oradea";Yes;No;0,320;Q1;32;258;585;13602;1338;585;2,42;52,72;43,58;0;Romania;Eastern Europe;"Editura Universitatii din Oradea";"2013-2026";"Conservation (Q1); Cultural Studies (Q1); Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Arts and Humanities; Business, Management and Accounting; Earth and Planetary Sciences; Social Sciences" +16503;19095;"Journal of African History";journal;"14695138, 00218537";"Cambridge University Press";No;No;0,320;Q1;50;20;81;2179;67;71;0,71;108,95;33,33;0;United Kingdom;Western Europe;"Cambridge University Press";"1960-2026";"History (Q1)";"Arts and Humanities" +16504;6000159310;"Senses and Society";journal;"17458927, 17458935";"Taylor and Francis Ltd.";No;No;0,320;Q1;27;41;85;1359;119;77;1,15;33,15;63,04;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Cultural Studies (Q1); Communication (Q2)";"Social Sciences" +16505;29044;"Canadian Metallurgical Quarterly";journal;"18791395, 00084433";"Taylor and Francis Ltd.";No;No;0,320;Q2;47;327;251;15021;512;246;2,01;45,94;25,39;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1962-1977, 1979-2026";"Metals and Alloys (Q2); Industrial and Manufacturing Engineering (Q3)";"Engineering; Materials Science" +16506;4700152770;"Cataloging and Classification Quarterly";journal;"15444554, 01639374";"Routledge";No;No;0,320;Q2;31;34;109;1375;106;100;1,00;40,44;58,93;0;United States;Northern America;"Routledge";"1981-2026";"Library and Information Sciences (Q2)";"Social Sciences" +16507;5800169166;"Congress and the Presidency";journal;"07343469, 19441053";"Routledge";No;No;0,320;Q2;20;12;37;881;23;36;0,60;73,42;36,84;1;United Kingdom;Western Europe;"Routledge";"1981-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16508;21100895622;"EconomiA";journal;"23582820, 15177580";"Emerald Publishing";Yes;Yes;0,320;Q2;20;37;41;1500;105;40;2,91;40,54;25,37;0;United Kingdom;Western Europe;"Emerald Publishing";"2013-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +16509;27984;"Fukushima Journal of Medical Sciences";journal;"00162590, 21854610";"Fukushima Society of Medical Science";No;No;0,320;Q2;23;32;77;846;90;77;1,14;26,44;21,03;0;Japan;Asiatic Region;"Fukushima Society of Medical Science";"1964-2026";"Anthropology (Q2); Library and Information Sciences (Q2); Dentistry (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Pharmaceutical Science (Q3)";"Dentistry; Mathematics; Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +16510;21100840951;"Geography, Environment, Sustainability";journal;"25421565, 20719388";"Lomonosov Moscow State University, Faculty of Geography";Yes;Yes;0,320;Q2;22;55;177;2594;245;175;1,22;47,16;39,15;0;Russian Federation;Eastern Europe;"Lomonosov Moscow State University, Faculty of Geography";"2015-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +16511;23104;"Journal of Pharmacy Practice and Research";journal;"1445937X";"Wiley-Blackwell";No;No;0,320;Q2;27;64;153;1584;130;127;0,81;24,75;58,33;0;United States;Northern America;"Wiley-Blackwell";"2002-2026";"Pharmacy (Q2); Pharmacology (medical) (Q3)";"Health Professions; Medicine" +16512;17400154833;"Journal of Transportation Security";journal;"19387741, 1938775X";"Springer New York";No;No;0,320;Q2;23;31;47;1418;112;47;2,29;45,74;29,09;0;United States;Northern America;"Springer New York";"2008-2026";"Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2); Management Science and Operations Research (Q3); Safety Research (Q3); Transportation (Q3)";"Decision Sciences; Social Sciences" +16513;21101071123;"Knowledge and Performance Management";journal;"26163829, 25435507";"LLC CPC Business Perspectives";Yes;No;0,320;Q2;10;30;43;1402;128;43;2,76;46,73;51,72;0;Ukraine;Eastern Europe;"LLC CPC Business Perspectives";"2019-2026";"Information Systems and Management (Q2); Law (Q2); Social Sciences (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Management of Technology and Innovation (Q3); Marketing (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Social Sciences" +16514;34667;"Microgravity Science and Technology";journal;"09380108, 18750494";"Springer Science and Business Media B.V.";No;No;0,320;Q2;46;65;233;2527;347;232;1,57;38,88;30,00;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1990-1999, 2001-2026";"Engineering (miscellaneous) (Q2); Applied Mathematics (Q3); Modeling and Simulation (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Engineering; Mathematics; Physics and Astronomy" +16515;19141;"Applied Entomology and Zoology";journal;"00036862, 1347605X";"Springer";No;No;0,320;Q3;60;45;122;1862;155;122;1,09;41,38;19,54;0;Japan;Asiatic Region;"Springer";"1966-2026";"Insect Science (Q3)";"Agricultural and Biological Sciences" +16516;18951;"Archives of Mining Sciences";journal;"08607001, 16890469";"Polska Akademia Nauk";No;No;0,320;Q3;30;35;122;1216;177;122;1,63;34,74;19,05;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1991, 2008-2025";"Geochemistry and Petrology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +16517;21101226638;"Matematica";journal;"27309657";"Springer";No;No;0,320;Q3;6;33;131;1308;87;131;0,49;39,64;38,04;0;United States;Northern America;"Springer";"2022-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16518;21101310064;"Onco";journal;"26737523";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,320;Q3;7;38;65;3041;100;60;1,85;80,03;48,47;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Food Science (Q3); Nutrition and Dietetics (Q3); Oncology (Q3)";"Agricultural and Biological Sciences; Medicine; Nursing" +16519;21101053500;"Pediatric Medicine";journal;"26175428";"AME Publishing Company";No;No;0,320;Q3;14;28;105;1459;107;96;0,68;52,11;48,09;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2018-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +16520;11300153405;"Phytochemistry Letters";journal;"18767486, 18743900";"Elsevier Ltd";No;No;0,320;Q3;59;167;493;4840;922;491;1,92;28,98;39,50;0;United Kingdom;Western Europe;"Elsevier Ltd";"2008-2026";"Agronomy and Crop Science (Q3); Biotechnology (Q3); Plant Science (Q3); Biochemistry (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +16521;21101175507;"Safety and Reliability";journal;"24694126, 09617353";"Taylor and Francis Ltd.";No;No;0,320;Q3;9;26;37;1082;55;26;1,21;41,62;25,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2020-2026";"Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering; Social Sciences" +16522;12918;"Zhongguo Jiguang/Chinese Journal of Lasers";journal;"02587025";"Chinese Laser Press";No;No;0,320;Q3;40;590;1716;23678;3114;1699;2,05;40,13;33,66;0;China;Asiatic Region;"Chinese Laser Press";"1991-2026";"Atomic and Molecular Physics, and Optics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +16523;13706;"Data Compression Conference Proceedings";conference and proceedings;"23750359, 10680314";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,320;-;58;73;264;679;306;261;1,23;9,30;27,56;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1991-2025";"Computer Networks and Communications";"Computer Science" +16524;26694;"Proceedings of The International Symposium on Multiple-Valued Logic";conference and proceedings;"0195623X";"IEEE Computer Society";No;No;0,320;-;31;44;104;835;74;97;0,66;18,98;16,13;0;United States;Northern America;"IEEE Computer Society";"1976-1983, 1986-2010, 2012-2025";"Computer Science (miscellaneous); Mathematics (miscellaneous)";"Computer Science; Mathematics" +16525;16100154794;"Archiv fur Geschichte der Philosophie";journal;"00039101, 16130650";"Walter de Gruyter GmbH";No;No;0,319;Q1;28;46;81;2394;55;81;0,65;52,04;23,91;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1888-1918, 1920-1924, 1926, 1928, 1931, 1933, 1960-2026";"Philosophy (Q1)";"Arts and Humanities" +16526;16200154723;"International Journal of Practical Theology";journal;"16129768, 14306921";"Walter de Gruyter GmbH";No;No;0,319;Q1;17;20;59;1010;33;52;0,46;50,50;47,06;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1997-2025";"Religious Studies (Q1)";"Arts and Humanities" +16527;21101267701;"Journal of Sistan and Baluchistan Studies";journal;"28210808";"University of Zabol";No;No;0,319;Q1;5;12;36;620;32;36;0,83;51,67;28,57;0;Iran;Middle East;"University of Zabol";"2021-2026";"Cultural Studies (Q1); History (Q1); Linguistics and Language (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +16528;21101190432;"Youth and Globalization";journal;"25895745, 25895737";"Brill Academic Publishers";No;No;0,319;Q1;9;11;50;650;56;43;0,88;59,09;47,83;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2026";"History (Q1)";"Arts and Humanities" +16529;21101023625;"Chinese Journal of Urban and Environmental Studies";journal;"2345752X, 23457481";"World Scientific";Yes;Yes;0,319;Q2;12;24;76;1221;126;76;1,63;50,88;38,36;0;United States;Northern America;"World Scientific";"2019-2025";"Urban Studies (Q2); Economics and Econometrics (Q3); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Global and Planetary Change (Q4)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +16530;145539;"International Journal for the Semiotics of Law";journal;"15728722, 09528059";"Springer Science and Business Media B.V.";No;No;0,319;Q2;24;186;332;9632;483;320;1,46;51,78;42,62;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1988-2002, 2004-2026";"Law (Q2); Linguistics and Language (Q2)";"Social Sciences" +16531;21100872764;"International Journal of Sustainable Agricultural Management and Informatics";journal;"20545827, 20545819";"Inderscience Enterprises Ltd";No;No;0,319;Q2;16;25;63;1511;141;62;1,73;60,44;35,71;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2015-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3)";"Agricultural and Biological Sciences; Business, Management and Accounting; Economics, Econometrics and Finance" +16532;7500153109;"Journal of Chiropractic Medicine";journal;"15563715, 15563707";"Elsevier Inc.";No;No;0,319;Q2;35;57;101;2093;132;101;1,47;36,72;36,92;0;United States;Northern America;"Elsevier Inc.";"2002-2025";"Chiropractics (Q2)";"Health Professions" +16533;21101071183;"Journal of Entrepreneurship and Innovation in Emerging Economies";journal;"23939575, 23949945";"Sage Publications India Pvt. Ltd";No;No;0,319;Q2;17;18;61;1389;105;51;1,50;77,17;26,47;1;Singapore;Asiatic Region;"Sage Publications India Pvt. Ltd";"2015-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Development (Q3); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +16534;21101045770;"Nordic Journal of Studies in Policing";journal;"27037045";"Scandinavian University Press";Yes;Yes;0,319;Q2;6;12;29;674;34;29;1,25;56,17;72,73;0;Norway;Western Europe;"Scandinavian University Press";"2020-2025";"Law (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Education (Q3)";"Social Sciences" +16535;21101244199;"Rhetoric of Health and Medicine";journal;"25735063, 25735055";"University of Florida Press";No;No;0,319;Q2;7;22;61;831;50;49;0,59;37,77;73,68;0;United States;Northern America;"University of Florida Press";"2020-2025";"Linguistics and Language (Q2); Health (social science) (Q3)";"Social Sciences" +16536;11800154588;"Security and Human Rights";journal;"18747337, 18750230";"";No;No;0,319;Q2;13;1;20;32;17;19;0,33;32,00;50,00;0;Netherlands;Western Europe;"";"2008-2017, 2020-2025";"Law (Q2); Political Science and International Relations (Q2)";"Social Sciences" +16537;15826;"Zhongguo Zaozhi Xuebao/Transactions of China Pulp and Paper";journal;"10006842";"China Technical Association of Paper Industry";No;No;0,319;Q2;14;79;162;3066;180;162;1,33;38,81;44,02;0;China;Asiatic Region;"China Technical Association of Paper Industry";"1997-1998, 2002-2025";"Media Technology (Q2); Chemical Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Chemical Engineering; Engineering; Materials Science" +16538;15012;"Acta Informatica";journal;"14320525, 00015903";"Springer New York";No;No;0,319;Q3;46;41;64;1144;64;61;1,16;27,90;17,14;0;Germany;Western Europe;"Springer New York";"1971-2026";"Computer Networks and Communications (Q3); Information Systems (Q3); Software (Q3)";"Computer Science" +16539;14863;"Biorheology";journal;"18785034, 0006355X";"SAGE Publications Ltd";No;No;0,319;Q3;76;7;7;0;16;6;2,29;0,00;52,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1965-2021, 2023-2025";"Physiology (medical) (Q3); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16540;21101007457;"Chinese Journal of Ship Research";journal;"16733185";"Editorial Department of Chinese Journal of Ship Research";Yes;No;0,319;Q3;18;136;515;3235;604;514;1,07;23,79;28,41;0;China;Asiatic Region;"Editorial Department of Chinese Journal of Ship Research";"2019-2025";"Mechanical Engineering (Q3); Ocean Engineering (Q3)";"Engineering" +16541;71244;"Communications - Scientific Letters of the University of Zilina";journal;"13354205, 25857878";"University of Zilina";Yes;Yes;0,319;Q3;27;53;221;1573;317;221;1,44;29,68;25,27;0;Slovakia;Eastern Europe;"University of Zilina";"2003-2026";"Automotive Engineering (Q3); Civil and Structural Engineering (Q3); Computer Networks and Communications (Q3); Economics and Econometrics (Q3); Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3); Transportation (Q3)";"Computer Science; Economics, Econometrics and Finance; Engineering; Social Sciences" +16542;23114;"Critical Pathways in Cardiology";journal;"15352811, 1535282X";"Lippincott Williams and Wilkins";No;No;0,319;Q3;30;35;97;916;93;96;0,92;26,17;26,39;0;United States;Northern America;"Lippincott Williams and Wilkins";"2002-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +16543;21100223134;"Cuaternario y Geomorfologia";journal;"02141744";"Asociacion Espanola para el Estudio del Cuaternario (AEQUA)";Yes;No;0,319;Q3;13;9;46;417;27;43;0,75;46,33;29,41;0;Spain;Western Europe;"Asociacion Espanola para el Estudio del Cuaternario (AEQUA)";"2012-2025";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3); Geology (Q3); Paleontology (Q3)";"Earth and Planetary Sciences; Social Sciences" +16544;4700152609;"Current Computer-Aided Drug Design";journal;"18756697, 15734099";"Bentham Science Publishers";No;No;0,319;Q3;37;118;166;6992;316;163;1,95;59,25;38,81;1;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +16545;110201;"Education for Health: Change in Learning and Practice";journal;"14695804, 13576283";"Wolters Kluwer Medknow Publications";No;No;0,319;Q3;44;0;55;0;49;35;0,48;0,00;0,00;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1997-2024";"Education (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +16546;16980;"Hydrologie und Wasserbewirtschaftung";journal;"14391783, 2749859X";"Bundesanstalt fur Gewasserkunde";Yes;Yes;0,319;Q3;16;39;89;599;35;36;0,18;15,36;27,59;0;Germany;Western Europe;"Bundesanstalt fur Gewasserkunde";"1999-2026";"Water Science and Technology (Q3)";"Environmental Science" +16547;12755;"International Journal of Clothing Science and Technology";journal;"09556222, 17585953";"Emerald Group Publishing Ltd.";No;No;0,319;Q3;48;74;203;2928;366;203;1,87;39,57;53,23;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1989-2026";"Business, Management and Accounting (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Polymers and Plastics (Q3)";"Business, Management and Accounting; Materials Science" +16548;21100228138;"International Journal of Corrosion";journal;"16879333, 16879325";"John Wiley and Sons Ltd";Yes;No;0,319;Q3;36;0;17;0;41;17;3,00;0,00;0,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2024";"Materials Science (miscellaneous) (Q3); Process Chemistry and Technology (Q3)";"Chemical Engineering; Materials Science" +16549;21100396656;"Iranian Journal of Blood and Cancer";journal;"20084609, 20084595";"Iranian Pediatric Hematology and Oncology Society";Yes;Yes;0,319;Q3;11;40;108;2432;131;105;1,59;60,80;50,99;0;Iran;Middle East;"Iranian Pediatric Hematology and Oncology Society";"2014-2025";"Hematology (Q3); Oncology (Q3)";"Medicine" +16550;144917;"Journal of Applied Mathematics";journal;"16870042, 1110757X";"John Wiley and Sons Ltd";Yes;No;0,319;Q3;62;94;203;3349;371;203;1,89;35,63;21,84;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2001-2026";"Applied Mathematics (Q3)";"Mathematics" +16551;21100935071;"Journal of Internet Services and Information Security";journal;"21822077, 21822069";"Innovative Information Science and Technology Research Group";Yes;No;0,319;Q3;24;187;185;5860;927;184;5,36;31,34;39,70;0;South Korea;Asiatic Region;"Innovative Information Science and Technology Research Group";"2019-2026";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Information Systems (Q3); Software (Q3)";"Computer Science; Engineering" +16552;21100831436;"Journal of The Institution of Engineers (India): Series B";journal;"22502114, 22502106";"Springer";No;No;0,319;Q3;33;183;431;6418;909;431;2,27;35,07;33,16;0;India;Asiatic Region;"Springer";"2012-2026";"Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +16553;21101304251;"JVS-Vascular Insights";journal;"29499127";"Elsevier B.V.";Yes;No;0,319;Q3;6;150;142;4563;138;133;0,97;30,42;34,38;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Cardiology and Cardiovascular Medicine (Q3); Internal Medicine (Q3); Surgery (Q3)";"Medicine" +16554;57240;"Kuangwu Yanshi";journal;"10016872";"Kuangwu Yanshi";No;No;0,319;Q3;30;43;159;1237;136;159;0,94;28,77;37,95;0;China;Asiatic Region;"Kuangwu Yanshi";"1994-2025";"Geology (Q3)";"Earth and Planetary Sciences" +16555;16166;"Proceedings of the Institution of Civil Engineers: Transport";journal;"17517710, 0965092X";"ICE Publishing";No;No;0,319;Q3;31;46;130;1947;179;109;1,54;42,33;33,99;0;United Kingdom;Western Europe;"ICE Publishing";"1992-2025";"Civil and Structural Engineering (Q3); Transportation (Q3)";"Engineering; Social Sciences" +16556;21100823383;"Research on Biomedical Engineering";journal;"24464732, 24464740";"Sociedade Brasileira de Engenharia Biomedica";Yes;No;0,319;Q3;29;63;211;2977;431;211;2,02;47,25;31,71;0;Brazil;Latin America;"Sociedade Brasileira de Engenharia Biomedica";"2015-2026";"Biomedical Engineering (Q3)";"Engineering" +16557;18852;"Revista Brasileira de Zootecnia";journal;"18069290, 15163598";"Sociedade Brasileira de Zootecnia";Yes;No;0,319;Q3;67;53;165;2289;209;165;1,31;43,19;43,09;0;Brazil;Latin America;"Sociedade Brasileira de Zootecnia";"1996-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +16558;21100238651;"IEEE Radio and Wireless Symposium, RWS";conference and proceedings;"21642974, 21642958";"IEEE Computer Society";No;No;0,319;-;24;37;151;299;144;143;0,91;8,08;11,43;0;United States;Northern America;"IEEE Computer Society";"2013-2025";"Communication; Computer Networks and Communications; Computer Science Applications; Electrical and Electronic Engineering";"Computer Science; Engineering; Social Sciences" +16559;26540;"Computer Music Journal";journal;"01489267, 15315169";"MIT Press";No;No;0,318;Q1;51;0;58;0;54;48;0,57;0,00;0,00;0;United States;Northern America;"MIT Press";"1982-1991, 1993-2024";"Music (Q1); Media Technology (Q2); Computer Science Applications (Q3)";"Arts and Humanities; Computer Science; Engineering" +16560;21101192899;"Dileme: Razprave o Vprasanjih Sodobne slovenske Zgodovine";journal;"25911201";"Study Centre for National Reconciliation (SCNR)";Yes;Yes;0,318;Q1;2;12;40;330;12;38;0,32;27,50;21,43;0;Slovenia;Eastern Europe;"Study Centre for National Reconciliation (SCNR)";"2020-2025";"History (Q1)";"Arts and Humanities" +16561;21100235624;"Faith and Philosophy";journal;"07397046, 21533393";"Society of Christian Philosophers";No;No;0,318;Q1;31;18;51;843;23;51;0,38;46,83;11,11;0;United States;Northern America;"Society of Christian Philosophers";"1995-2023, 2025";"Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities" +16562;15166;"History and Philosophy of the Life Sciences";journal;"03919714, 17426316";"Springer International Publishing AG";No;No;0,318;Q1;35;46;126;3443;153;120;1,04;74,85;50,00;0;Switzerland;Western Europe;"Springer International Publishing AG";"1979-1980, 1982-2026";"History (Q1); Arts and Humanities (miscellaneous) (Q2); History and Philosophy of Science (Q2)";"Arts and Humanities" +16563;21100935790;"Journal of Holocaust Research";journal;"25785656";"Taylor and Francis Inc.";No;No;0,318;Q1;8;15;77;1217;75;71;0,96;81,13;29,41;0;United States;Northern America;"Taylor and Francis Inc.";"2019-2026";"History (Q1); Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +16564;21101215212;"Jurisdictie: Jurnal Hukum dan Syariah";journal;"20867549, 25283383";"Maulana Malik Ibrahim State Islamic University of Malang";No;No;0,318;Q1;7;17;43;805;91;43;2,03;47,35;37,50;0;Indonesia;Asiatic Region;"Maulana Malik Ibrahim State Islamic University of Malang";"2020-2025";"Religious Studies (Q1); Law (Q2)";"Arts and Humanities; Social Sciences" +16565;21101168863;"Malaysian Journal of Syariah and Law";journal;"19857454, 25904396";"Faculty of Syariah and Law, Islamic Science University of Malaysia (USIM)";Yes;No;0,318;Q1;8;47;109;2567;160;103;1,63;54,62;39,34;0;Malaysia;Asiatic Region;"Faculty of Syariah and Law, Islamic Science University of Malaysia (USIM)";"2019-2025";"Religious Studies (Q1); Law (Q2); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +16566;21100455533;"Modern History of Russia";journal;"23097973, 22199659";"Saint Petersburg State University";No;No;0,318;Q1;7;62;212;1840;41;212;0,20;29,68;35,82;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2015-2025";"History (Q1)";"Arts and Humanities" +16567;21100913505;"Pasavento";journal;"22554505";"Universidad de Alcala";Yes;Yes;0,318;Q1;5;30;112;1156;36;107;0,09;38,53;64,00;0;Spain;Western Europe;"Universidad de Alcala";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +16568;25237;"Philosophy of the Social Sciences";journal;"15527441, 00483931";"SAGE Publications Inc.";No;No;0,318;Q1;45;30;77;1445;65;76;0,90;48,17;22,22;0;United States;Northern America;"SAGE Publications Inc.";"1971-2026";"Philosophy (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +16569;25578;"Australian Forestry";journal;"00049158";"Taylor and Francis Ltd.";No;No;0,318;Q2;42;16;55;741;73;47;1,34;46,31;22,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1936-1941, 1943-1972, 1974-2026";"Forestry (Q2)";"Agricultural and Biological Sciences" +16570;22203;"Forest Pathology";journal;"14390329, 14374781";"Wiley-Blackwell Publishing Ltd";No;No;0,318;Q2;61;47;156;2173;193;156;1,24;46,23;39,34;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2000-2026";"Forestry (Q2); Ecology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +16571;7200153157;"International Journal of Children's Rights";journal;"15718182, 09275568";"Martinus Nijhoff Publishers";No;No;0,318;Q2;47;38;111;2082;133;103;0,91;54,79;65,63;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"1993-2025";"Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16572;15600154710;"Journal of Creative Communications";journal;"09732594, 09732586";"SAGE Publications Ltd";No;No;0,318;Q2;22;35;90;2540;171;89;2,00;72,57;49,37;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2006-2026";"Communication (Q2)";"Social Sciences" +16573;5800207691;"Journal of Historical Pragmatics";journal;"15665852, 15699854";"John Benjamins Publishing Company";No;No;0,318;Q2;29;15;45;821;34;43;0,76;54,73;40,91;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2000-2025";"Linguistics and Language (Q2)";"Social Sciences" +16574;4700152763;"Public Services Quarterly";journal;"15229114, 15228959";"Routledge";No;No;0,318;Q2;21;36;95;751;126;70;1,43;20,86;61,54;0;United States;Northern America;"Routledge";"2002-2003, 2006-2026";"Library and Information Sciences (Q2); Accounting (Q3); Public Administration (Q3)";"Business, Management and Accounting; Social Sciences" +16575;21100902663;"Revista Brasileira de Direito Processual Penal";journal;"23593881, 2525510X";"Instituto Brasileiro de Direito Processual Penal";Yes;Yes;0,318;Q2;8;44;115;2046;61;115;0,63;46,50;34,88;0;Brazil;Latin America;"Instituto Brasileiro de Direito Processual Penal";"2018-2025";"Anthropology (Q2); Law (Q2); Sociology and Political Science (Q2); Psychiatry and Mental Health (Q3); Safety Research (Q3)";"Medicine; Social Sciences" +16576;98899;"African Journal of Reproductive Health";journal;"21413606, 11184841";"Women's Health and Action Research Centre";No;No;0,318;Q3;53;285;616;7564;602;566;0,84;26,54;54,27;2;Nigeria;Africa;"Women's Health and Action Research Centre";"1997-1998, 2000-2026";"Obstetrics and Gynecology (Q3); Public Health, Environmental and Occupational Health (Q3); Reproductive Medicine (Q3)";"Medicine" +16577;22769;"Chemical and Pharmaceutical Bulletin";journal;"00092363, 13475223";"Pharmaceutical Society of Japan";No;No;0,318;Q3;109;150;424;5366;626;406;1,47;35,77;26,77;0;Japan;Asiatic Region;"Pharmaceutical Society of Japan";"1958-2026";"Chemistry (miscellaneous) (Q3); Drug Discovery (Q3); Medicine (miscellaneous) (Q3)";"Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +16578;19900191857;"Education and Training in Autism and Developmental Disabilities";journal;"21541647";"SAGE Publications Ltd";No;No;0,318;Q3;61;25;94;1074;106;93;0,98;42,96;73,08;0;United States;Northern America;"SAGE Publications Ltd";"2010-2026";"Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +16579;27549;"European Physical Journal D";journal;"14346079, 14346060";"Springer Science and Business Media Deutschland GmbH";No;No;0,318;Q3;104;158;602;7715;894;584;1,64;48,83;28,55;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1998-2026";"Atomic and Molecular Physics, and Optics (Q3)";"Physics and Astronomy" +16580;21100788796;"Fragmenta Entomologica";journal;"22844880, 0429288X";"Sapienza Universita Editrice";Yes;Yes;0,318;Q3;12;35;94;881;67;93;0,84;25,17;28,89;0;Italy;Western Europe;"Sapienza Universita Editrice";"2016-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +16581;19700201401;"International Journal of Jungian Studies";journal;"19409060, 19409052";"Brill Academic Publishers";No;No;0,318;Q3;8;17;19;787;8;18;0,60;46,29;21,05;0;United Kingdom;Western Europe;"Brill Academic Publishers";"2010-2026";"Applied Psychology (Q3)";"Psychology" +16582;21100329537;"International Journal of Sustainable Building Technology and Urban Development";journal;"20937628, 2093761X";"Sustainable Building Research Center";No;No;0,318;Q3;24;32;110;1534;161;110;1,36;47,94;38,04;0;United Kingdom;Western Europe;"Sustainable Building Research Center";"2010-2025";"Building and Construction (Q3)";"Engineering" +16583;11400153337;"International Journal of Vegetable Science";journal;"19315279, 19315260";"Taylor and Francis Ltd.";No;No;0,318;Q3;31;49;141;2990;213;124;1,49;61,02;30,77;0;United States;Northern America;"Taylor and Francis Ltd.";"2007-2026";"Agronomy and Crop Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +16584;21100867262;"Italian Botanist";journal;"25314033";"Pensoft Publishers";Yes;No;0,318;Q3;23;25;60;1221;80;60;1,41;48,84;34,20;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"1999-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +16585;21101021577;"JACC: Case Reports";journal;"26660849";"Elsevier Inc.";Yes;No;0,318;Q3;18;1626;1299;12954;951;1153;0,68;7,97;28,78;0;United States;Northern America;"Elsevier Inc.";"2019-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +16586;55289;"Journal of Developing Societies";journal;"0169796X, 17452546";"SAGE Publications Ltd";No;No;0,318;Q3;35;23;69;1375;119;63;1,23;59,78;34,38;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1985-2026";"Development (Q3); Geography, Planning and Development (Q3)";"Social Sciences" +16587;12100155517;"Journal of Medical Imaging and Radiation Sciences";journal;"18767982, 19398654";"Elsevier Inc.";No;No;0,318;Q3;32;162;448;4522;643;337;1,62;27,91;51,11;1;United States;Northern America;"Elsevier Inc.";"2008-2026";"Assessment and Diagnosis (Q3); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Research and Theory (Q3)";"Health Professions; Medicine; Nursing" +16588;17700155308;"Journal of Plant Registrations";journal;"19365209, 19403496";"John Wiley & Sons Inc.";No;No;0,318;Q3;30;63;206;1743;169;205;0,97;27,67;30,37;0;United States;Northern America;"John Wiley & Sons Inc.";"2009-2026";"Agronomy and Crop Science (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +16589;21101293007;"Journal of Psychosexual Health";journal;"26318318, 26318326";"SAGE Publications Ltd";Yes;No;0,318;Q3;11;69;130;2067;179;104;0,99;29,96;48,85;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2021-2026";"Clinical Psychology (Q3); Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3); Urology (Q3)";"Medicine; Psychology" +16590;19312;"Lichenologist";journal;"00242829, 10961135";"Cambridge University Press";No;No;0,318;Q3;55;25;110;1246;130;105;1,19;49,84;36,28;0;United Kingdom;Western Europe;"Cambridge University Press";"1958-2025";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +16591;20931;"Microscopy and Microanalysis";journal;"14319276, 14358115";"Oxford University Press";No;No;0,318;Q3;85;162;1779;7486;1315;1769;0,58;46,21;37,99;0;United Kingdom;Western Europe;"Oxford University Press";"1995-2026";"Instrumentation (Q3)";"Physics and Astronomy" +16592;19900193615;"Open Nursing Journal";journal;"18744346";"Bentham Science Publishers";Yes;No;0,318;Q3;25;40;163;1465;179;162;1,06;36,63;57,89;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2011-2025";"Nursing (miscellaneous) (Q3)";"Nursing" +16593;21100967806;"Proceedings of the International Geometry Center";journal;"24098906, 20729812";"Odesa National University of Technology";Yes;Yes;0,318;Q3;6;17;53;338;27;53;0,61;19,88;42,42;0;Ukraine;Eastern Europe;"Odesa National University of Technology";"2019-2025";"Analysis (Q3); Applied Mathematics (Q3); Geometry and Topology (Q3)";"Mathematics" +16594;21101178246;"Research in Mathematics";journal;"27684830";"Informa UK Ltd";No;No;0,318;Q3;10;72;119;2321;199;119;1,86;32,24;22,16;0;United Kingdom;Western Europe;"Informa UK Ltd";"2016, 2022-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16595;19400156818;"Revista Peruana de Medicina Experimental y Salud Publica";journal;"17264634, 17264642";"Instituto Nacional de Salud";Yes;Yes;0,318;Q3;34;61;201;1526;247;159;1,05;25,02;47,01;0;Peru;Latin America;"Instituto Nacional de Salud";"2009-2026";"Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +16596;22060;"Strojniski Vestnik/Journal of Mechanical Engineering";journal;"00392480";"Assoc. of Mechanical Eng. and Technicians of Slovenia";No;No;0,318;Q3;43;46;155;1525;261;155;1,76;33,15;19,28;0;Slovenia;Eastern Europe;"Assoc. of Mechanical Eng. and Technicians of Slovenia";"1974-1994, 1996-2025";"Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +16597;17190;"Magnesium Research";journal;"19524021, 09531424";"John Libbey";No;No;0,318;Q4;56;10;46;442;48;42;1,23;44,20;33,33;0;France;Western Europe;"John Libbey";"1988-2025";"Biochemistry (Q4); Clinical Biochemistry (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +16598;110368;"AIAA/IEEE Digital Avionics Systems Conference - Proceedings";conference and proceedings;"21557209, 21557195";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,318;-;44;237;650;5676;787;643;1,19;23,95;17,88;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992, 1995-2025";"Aerospace Engineering; Electrical and Electronic Engineering";"Engineering" +16599;16100154742;"Annual of the British School at Athens";journal;"00682454, 20452403";"Cambridge University Press";No;No;0,317;Q1;29;14;41;1572;20;41;0,41;112,29;50,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1894, 1896-1914, 1916, 1918-1921, 1923, 1925-1928, 1930-1940, 1945, 1947-1957, 1959-2026";"Classics (Q1); History (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +16600;19900191730;"Arte, Individuo y Sociedad";journal;"19882408, 11315598";"Universidad Complutense Madrid";Yes;Yes;0,317;Q1;14;59;217;2216;120;209;0,66;37,56;54,55;0;Spain;Western Europe;"Universidad Complutense Madrid";"2010-2026";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +16601;5600155088;"Contemporary British History";journal;"13619462, 17437997";"Routledge";No;No;0,317;Q1;24;24;77;1946;85;75;1,02;81,08;25,00;0;United Kingdom;Western Europe;"Routledge";"1998, 2001, 2007-2026";"Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Development (Q3); Safety Research (Q3)";"Arts and Humanities; Social Sciences" +16602;147203;"Design Journal";journal;"14606925";"Taylor and Francis Ltd.";No;No;0,317;Q1;38;82;189;3293;295;163;1,57;40,16;47,37;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Visual Arts and Performing Arts (Q1); Architecture (Q2); Arts and Humanities (miscellaneous) (Q2); Computer Graphics and Computer-Aided Design (Q3)";"Arts and Humanities; Computer Science; Engineering" +16603;21101331266;"Jerusalem Journal of Archaeology";journal;"27888819";"Hebrew University of Jerusalem The Institute of Archaeology";No;No;0,317;Q1;7;8;42;428;14;39;0,48;53,50;29,17;0;Israel;Middle East;"Hebrew University of Jerusalem The Institute of Archaeology";"2021-2026";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +16604;5800207819;"Milli Folklor";journal;"13003984";"Milli Folklor Dergisi";No;No;0,317;Q1;13;48;187;1510;45;171;0,25;31,46;55,32;0;Turkey;Middle East;"Milli Folklor Dergisi";"2002-2025";"Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +16605;21100934924;"ACM Transactions on Modeling and Performance Evaluation of Computing Systems";journal;"23763647, 23763639";"Association for Computing Machinery";No;No;0,317;Q2;17;17;34;664;62;34;1,93;39,06;15,56;0;United States;Northern America;"Association for Computing Machinery";"2016-2025";"Media Technology (Q2); Computer Networks and Communications (Q3); Computer Science (miscellaneous) (Q3); Hardware and Architecture (Q3); Information Systems (Q3); Safety, Risk, Reliability and Quality (Q3); Software (Q3)";"Computer Science; Engineering" +16606;18659;"Anais da Academia Brasileira de Ciencias";journal;"00013765, 16782690";"Academia Brasileira de Ciencias";Yes;Yes;0,317;Q2;81;358;1215;17913;1678;1171;1,22;50,04;45,74;1;Brazil;Latin America;"Academia Brasileira de Ciencias";"1945-1946, 1949, 1970-1992, 1994-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +16607;26785;"Annals of Clinical and Laboratory Science";journal;"00917370, 15508080";"Association of Clinical Scientists";No;No;0,317;Q2;65;126;355;3050;368;343;0,87;24,21;40,55;0;United States;Northern America;"Association of Clinical Scientists";"1971-2026";"Medical Laboratory Technology (Q2); Hematology (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Clinical Biochemistry (Q4); Immunology (Q4); Immunology and Allergy (Q4); Microbiology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Immunology and Microbiology; Medicine" +16608;21100203315;"Anuario Iberoamericano de Justicia Constitucional";journal;"19895585, 11384824";"Centro de Estudios Politicos y Constitucionales";No;Yes;0,317;Q2;7;21;67;744;22;59;0,34;35,43;29,41;0;Spain;Western Europe;"Centro de Estudios Politicos y Constitucionales";"2011-2026";"Law (Q2)";"Social Sciences" +16609;7200153135;"Forensische Psychiatrie, Psychologie, Kriminologie";journal;"18627072, 18627080";"";No;No;0,317;Q2;18;47;132;1567;93;109;0,84;33,34;50,56;0;Germany;Western Europe;"";"2007-2026";"Law (Q2); Applied Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology; Social Sciences" +16610;4700152755;"Journal of Poverty";journal;"10875549, 15407608";"Routledge";No;No;0,317;Q2;33;62;117;2701;165;117;1,32;43,56;56,56;2;United States;Northern America;"Routledge";"1997-2026";"Demography (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16611;17124;"Journal of Veterinary Medicine Series C: Anatomia Histologia Embryologia";journal;"14390264, 03402096";"Wiley-Blackwell Publishing Ltd";No;No;0,317;Q2;46;62;335;2450;393;333;1,11;39,52;44,90;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1972-2026";"Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +16612;21101142685;"Research in Corpus Linguistics";journal;"22434712";"Spanish Association for Corpus Linguistics";Yes;Yes;0,317;Q2;9;17;43;997;49;43;1,14;58,65;64,29;0;Spain;Western Europe;"Spanish Association for Corpus Linguistics";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +16613;21101087357;"University of Pennsylvania Journal of Constitutional Law";journal;"19428561, 15212823";"University of Pennsylvania Law School";No;No;0,317;Q2;6;16;98;1680;41;73;0,41;105,00;43,75;0;United States;Northern America;"University of Pennsylvania Law School";"2019-2025";"Law (Q2)";"Social Sciences" +16614;24523;"Acta Geologica Polonica";journal;"23001887, 00015709";"Polska Akademia Nauk";Yes;No;0,317;Q3;45;32;91;2539;94;88;1,05;79,34;28,57;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1981, 1984-1988, 1990-2025";"Geology (Q3)";"Earth and Planetary Sciences" +16615;144829;"Acta Mathematicae Applicatae Sinica";journal;"01689673, 16183932";"Springer Verlag";No;No;0,317;Q3;36;126;207;3540;178;206;0,87;28,10;38,36;0;Germany;Western Europe;"Springer Verlag";"1984-1985, 1987-2026";"Applied Mathematics (Q3)";"Mathematics" +16616;21100889417;"Advances in Hospitality and Tourism Research";journal;"21479100";"Akdeniz University Publishing House";Yes;No;0,317;Q3;15;19;69;1468;140;69;2,13;77,26;50,98;0;Turkey;Middle East;"Akdeniz University Publishing House";"2018-2025";"Development (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +16617;21100858173;"Electronic Journal of General Medicine";journal;"25163507";"Modestum LTD";Yes;No;0,317;Q3;29;88;280;3240;347;277;1,36;36,82;49,73;0;United Kingdom;Western Europe;"Modestum LTD";"2018-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +16618;27542;"European Physical Journal B";journal;"14346028, 14346036";"Springer New York";No;No;0,317;Q3;145;256;565;12965;1002;561;1,79;50,64;27,31;0;Germany;Western Europe;"Springer New York";"1998-2026";"Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science; Physics and Astronomy" +16619;21101045208;"Indian Journal of Sexually Transmitted Diseases and AIDS";journal;"25890565, 25890557";"Wolters Kluwer Medknow Publications";No;No;0,317;Q3;24;78;205;845;130;132;0,56;10,83;56,93;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2018-2025";"Dermatology (Q3); Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +16620;21100202502;"International Journal of Mathematics in Operational Research";journal;"17575850, 17575869";"Inderscience";Yes;No;0,317;Q3;33;60;220;2183;324;220;1,53;36,38;31,87;0;Switzerland;Western Europe;"Inderscience";"2009-2026";"Decision Sciences (miscellaneous) (Q3); Modeling and Simulation (Q3)";"Decision Sciences; Mathematics" +16621;17700155304;"International Journal of Mechatronics and Manufacturing Systems";journal;"17531039, 17531047";"Inderscience Enterprises Ltd";No;No;0,317;Q3;21;10;60;297;82;60;1,26;29,70;20,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2008-2025";"Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +16622;145664;"International Journal of Strategic Property Management";journal;"1648715X, 16489179";"Vilnius Gediminas Technical University";Yes;No;0,317;Q3;42;28;89;1819;155;89;1,32;64,96;38,95;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2004-2026";"Strategy and Management (Q3)";"Business, Management and Accounting" +16623;21100945960;"Journal of New Zealand Grasslands";journal;"24632872, 24632880";"New Zealand Grassland Association";No;No;0,317;Q3;11;38;91;1062;93;90;1,00;27,95;38,21;0;New Zealand;Pacific Region;"New Zealand Grassland Association";"2019-2025";"Agronomy and Crop Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Nature and Landscape Conservation (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +16624;19400158455;"Mapan - Journal of Metrology Society of India";journal;"09703950, 09749853";"Springer";No;No;0,317;Q3;26;92;277;3452;499;273;1,86;37,52;28,85;1;India;Asiatic Region;"Springer";"2009-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +16625;21101030342;"Ornithology Research";journal;"2662673X";"Springer Nature";No;No;0,317;Q3;9;60;123;3446;121;120;0,88;57,43;31,68;1;Switzerland;Western Europe;"Springer Nature";"2020-2026";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +16626;15300154849;"Philosophical Magazine";journal;"14786443, 14786435";"Taylor and Francis Ltd.";No;No;0,317;Q3;136;111;302;5189;425;300;1,24;46,75;25,86;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Condensed Matter Physics (Q3)";"Physics and Astronomy" +16627;19900191818;"Revista de la Union Matematica Argentina";journal;"16699637, 00416932";"Union Matematica Argentina";Yes;Yes;0,317;Q3;17;42;135;826;69;135;0,48;19,67;27,85;0;Argentina;Latin America;"Union Matematica Argentina";"2010-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16628;29560;"Soldering and Surface Mount Technology";journal;"09540911, 17586836";"Emerald Publishing";No;No;0,317;Q3;39;49;97;1620;204;97;2,37;33,06;30,66;0;United Kingdom;Western Europe;"Emerald Publishing";"1989-2026";"Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science; Physics and Astronomy" +16629;21100370880;"Therapeutic Hypothermia and Temperature Management";journal;"21537933, 21537658";"Mary Ann Liebert Inc.";No;No;0,317;Q3;20;45;109;1300;124;102;1,07;28,89;40,00;0;United States;Northern America;"Mary Ann Liebert Inc.";"2013-2025";"Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)";"Medicine" +16630;58622;"Biochemistry and Molecular Biology Education";journal;"15393429, 14708175";"Wiley-Blackwell";No;No;0,317;Q4;54;71;251;2000;307;235;1,15;28,17;53,66;0;United States;Northern America;"Wiley-Blackwell";"1990, 1996-2026";"Biochemistry (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +16631;21100218321;"Ayer";journal;"11342277";"Marcial Pons";No;No;0,316;Q1;14;46;145;741;55;135;0,29;16,11;26,42;0;Spain;Western Europe;"Marcial Pons";"2012-2014, 2017-2025";"Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +16632;83082;"Historia Agraria";journal;"11391472, 23403659";"Universidad de Murcia";Yes;Yes;0,316;Q1;23;21;75;1563;65;74;0,77;74,43;41,67;0;Spain;Western Europe;"Universidad de Murcia";"1998-2025";"History (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2); Arts and Humanities (miscellaneous) (Q2); Multidisciplinary (Q2); Geography, Planning and Development (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Multidisciplinary; Social Sciences" +16633;21100200624;"International Journal of Performance Arts and Digital Media";journal;"20400934, 14794713";"Taylor and Francis Ltd.";No;No;0,316;Q1;17;39;88;1167;112;81;0,82;29,92;51,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Visual Arts and Performing Arts (Q1); Communication (Q2)";"Arts and Humanities; Social Sciences" +16634;19500157012;"Journal of Theoretical and Philosophical Psychology";journal;"21513341, 10688471";"American Psychological Association";No;No;0,316;Q1;32;30;94;1820;95;92;0,92;60,67;25,00;0;United States;Northern America;"American Psychological Association";"1986-2025";"Philosophy (Q1); Psychology (miscellaneous) (Q3)";"Arts and Humanities; Psychology" +16635;21100925824;"String Research Journal";journal;"21640661, 19484992";"SAGE Publications Ltd";No;No;0,316;Q1;8;10;14;403;14;14;1,00;40,30;45,45;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002, 2006, 2009-2016, 2018-2025";"History (Q1); Music (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +16636;12085;"American Archivist";journal;"03609081";"Society of American Archivists";No;No;0,316;Q2;37;24;66;1042;32;56;0,43;43,42;72,50;0;United States;Northern America;"Society of American Archivists";"1938-2025";"Arts and Humanities (miscellaneous) (Q2); Library and Information Sciences (Q2)";"Arts and Humanities; Social Sciences" +16637;22492;"Blood Pressure Monitoring";journal;"14735725, 13595237";"Lippincott Williams and Wilkins";No;No;0,316;Q2;70;54;197;1060;194;194;1,06;19,63;33,20;0;United States;Northern America;"Lippincott Williams and Wilkins";"1996-2026";"Advanced and Specialized Nursing (Q2); Assessment and Diagnosis (Q3); Cardiology and Cardiovascular Medicine (Q3); Internal Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +16638;21100788736;"Cambridge Yearbook of European Legal Studies";journal;"20497636, 15288870";"Cambridge University Press";No;No;0,316;Q2;23;0;39;0;38;37;0,58;0,00;0,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1998, 2000, 2008-2010, 2012-2024, 2026";"Law (Q2)";"Social Sciences" +16639;21100901168;"Dialogic Pedagogy";journal;"23253290";"University Library System, University of Pittsburgh";Yes;Yes;0,316;Q2;10;4;42;200;55;42;1,30;50,00;28,57;0;United States;Northern America;"University Library System, University of Pittsburgh";"2018-2026";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +16640;21100933893;"Family Court Review";journal;"15312445, 17441617";"John Wiley & Sons Inc.";No;No;0,316;Q2;55;59;202;3998;155;166;0,79;67,76;65,85;0;United States;Northern America;"John Wiley & Sons Inc.";"1977, 1996-2026";"Law (Q2)";"Social Sciences" +16641;12345;"International Journal of Engineering Education";journal;"0949149X";"Tempus Publications";No;No;0,316;Q2;66;133;410;6066;392;381;1,04;45,61;41,52;0;Ireland;Western Europe;"Tempus Publications";"1996-2026";"Engineering (miscellaneous) (Q2); Education (Q3)";"Engineering; Social Sciences" +16642;21101196744;"Journal of Advanced Periodontology and Implant Dentistry";journal;"26455390";"Tabriz University of Medical Sciences";Yes;Yes;0,316;Q2;10;34;68;1223;87;63;0,98;35,97;40,77;0;Iran;Middle East;"Tabriz University of Medical Sciences";"2019-2026";"Periodontics (Q2)";"Dentistry" +16643;21101210408;"Journal of VLSI Circuits and Systems";journal;"25821458";"Society for Communication and Computer Technologies";No;No;0,316;Q2;16;39;59;1005;316;59;5,18;25,77;34,00;0;India;Asiatic Region;"Society for Communication and Computer Technologies";"2020-2025";"Engineering (miscellaneous) (Q2); Information Systems (Q3); Signal Processing (Q3)";"Computer Science; Engineering" +16644;21101083580;"Language Teaching for Young Learners";journal;"2589207X, 25892053";"John Benjamins Publishing Company";No;No;0,316;Q2;13;19;37;1043;48;32;1,04;54,89;64,71;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +16645;21101037295;"Studia Iuridica Lublinensia";journal;"17316375, 24498289";"Wydawnictwo Uniwersytetu Marii Curie-Sklodowskiej w Lublinie";Yes;Yes;0,316;Q2;12;76;242;3042;127;237;0,58;40,03;45,61;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Marii Curie-Sklodowskiej w Lublinie";"2019-2026";"Law (Q2); Public Administration (Q3)";"Social Sciences" +16646;21100853526;"ACM Transactions on Economics and Computation";journal;"21678375, 21678383";"Association for Computing Machinery";No;No;0,316;Q3;27;17;41;759;48;39;1,19;44,65;21,05;0;United States;Northern America;"Association for Computing Machinery";"2013-2025";"Computational Mathematics (Q3); Computer Science (miscellaneous) (Q3); Economics and Econometrics (Q3); Marketing (Q3); Statistics and Probability (Q3)";"Business, Management and Accounting; Computer Science; Economics, Econometrics and Finance; Mathematics" +16647;21101198529;"Acta Petrologica et Mineralogica";journal;"10006524";"Science China Press";No;No;0,316;Q3;14;32;225;2245;213;225;0,76;70,16;37,43;0;China;Asiatic Region;"Science China Press";"2019-2025";"Geochemistry and Petrology (Q3); Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +16648;5800228216;"Advances in Rehabilitation";journal;"17344948, 08606161";"Termedia Publishing House Ltd.";Yes;Yes;0,316;Q3;11;24;72;983;87;72;0,98;40,96;42,45;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2006-2025";"Rehabilitation (Q3)";"Medicine" +16649;23932;"Analytical Letters";journal;"1532236X, 00032719";"Taylor and Francis Ltd.";No;No;0,316;Q3;72;278;655;11960;1326;655;2,08;43,02;41,76;2;United States;Northern America;"Taylor and Francis Ltd.";"1967-2026";"Analytical Chemistry (Q3); Biochemistry (medical) (Q3); Spectroscopy (Q3); Biochemistry (Q4); Clinical Biochemistry (Q4); Electrochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine" +16650;21101223874;"Atlantic Geoscience";journal;"25642987";"Atlantic Geoscience Society";No;No;0,316;Q3;24;23;34;2165;44;32;1,18;94,13;28,81;0;Canada;Northern America;"Atlantic Geoscience Society";"2022, 2024-2026";"Geology (Q3)";"Earth and Planetary Sciences" +16651;21101152529;"Beyoglu Eye Journal";journal;"24591777, 25870394";"Kare Publishing";Yes;Yes;0,316;Q3;5;19;88;478;77;86;0,88;25,16;45,95;0;Turkey;Middle East;"Kare Publishing";"2023-2025";"Ophthalmology (Q3)";"Medicine" +16652;21100925728;"Biosystems Diversity";journal;"25202529, 25198513";"Oles Honchar Dnipro National University";Yes;No;0,316;Q3;20;51;165;2707;287;165;1,76;53,08;47,09;0;Ukraine;Eastern Europe;"Oles Honchar Dnipro National University";"2017-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +16653;17349;"Brittonia";journal;"1938436X, 0007196X";"Springer";Yes;No;0,316;Q3;34;45;125;1500;91;124;0,63;33,33;23,77;0;United States;Northern America;"Springer";"1931-1938, 1940-1952, 1954-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +16654;11500153404;"Chinese Physics B";journal;"16741056, 20583834";"Institute of Physics";No;No;0,316;Q3;78;686;3121;32263;4650;3055;1,54;47,03;33,79;0;United Kingdom;Western Europe;"Institute of Physics";"2008-2025";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +16655;21153;"Discrete Dynamics in Nature and Society";journal;"10260226, 1607887X";"John Wiley and Sons Ltd";Yes;No;0,316;Q3;57;61;753;2780;1353;752;1,57;45,57;35,88;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2002, 2004-2026";"Modeling and Simulation (Q3)";"Mathematics" +16656;19712;"Gornyi Zhurnal";journal;"00172278";"Izdatel'stvo Ruda i Metally";No;No;0,316;Q3;22;175;514;4119;343;513;0,75;23,54;29,62;0;Russian Federation;Eastern Europe;"Izdatel'stvo Ruda i Metally";"1971, 1973-1977, 2001-2005, 2013-2026";"Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +16657;23761;"International Journal of Angiology";journal;"10611711, 16155939";"Thieme Medical Publishers, Inc.";No;No;0,316;Q3;39;70;175;2064;193;169;0,87;29,49;26,55;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1992-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +16658;21101295545;"International Journal of Drug Discovery and Pharmacology";journal;"26536234";"Scilight Press Pty. Ltd";Yes;No;0,316;Q3;8;24;60;1737;90;58;1,49;72,38;45,13;0;Australia;Pacific Region;"Scilight Press Pty. Ltd";"2022-2025";"Drug Discovery (Q3); Pharmacology (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +16659;28776;"International Journal of Health Promotion and Education";journal;"14635240, 21649545";"Routledge";No;No;0,316;Q3;25;53;169;1793;151;134;0,83;33,83;62,03;1;United Kingdom;Western Europe;"Routledge";"1999-2026";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +16660;23449;"Journal of the Chinese Chemical Society";journal;"00094536, 21926549";"John Wiley and Sons Inc";No;No;0,316;Q3;56;124;507;7239;872;496;1,68;58,38;37,64;0;United States;Northern America;"John Wiley and Sons Inc";"1954-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +16661;19500157307;"Journal of the Saudi Heart Association";journal;"22125043, 10167315";"Saudi Heart Association";Yes;Yes;0,316;Q3;28;52;116;1802;137;108;1,29;34,65;26,36;0;Saudi Arabia;Middle East;"Saudi Heart Association";"2009-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +16662;21100826260;"Journal of Water and Environment Technology";journal;"13482165";"Japan Society on Water Environment";Yes;Yes;0,316;Q3;16;26;75;913;93;75;1,46;35,12;21,28;0;Japan;Asiatic Region;"Japan Society on Water Environment";"2017-2026";"Ecological Modeling (Q3); Environmental Engineering (Q3); Health, Toxicology and Mutagenesis (Q3); Pollution (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3)";"Environmental Science" +16663;21101292646;"Kompleksnoe Ispolzovanie Mineralnogo Syra";journal;"22245243, 26166445";"Institute of Metallurgy and Ore Beneficiation JSC";No;No;0,316;Q3;7;45;90;1238;189;90;2,10;27,51;51,23;0;Kazakhstan;Asiatic Region;"Institute of Metallurgy and Ore Beneficiation JSC";"2023-2027";"Earth-Surface Processes (Q3)";"Earth and Planetary Sciences" +16664;21101195781;"Nuclear Energy and Technology";journal;"24523038";"Pensoft Publishers";Yes;Yes;0,316;Q3;7;34;119;886;102;119;0,99;26,06;22,12;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2019-2025";"Nuclear and High Energy Physics (Q3); Nuclear Energy and Engineering (Q3)";"Energy; Physics and Astronomy" +16665;21101058165;"Nutrire";journal;"23167874, 15198928";"Springer Nature";No;No;0,316;Q3;19;100;148;5631;263;148;1,91;56,31;50,32;0;United States;Northern America;"Springer Nature";"2016-2026";"Endocrinology, Diabetes and Metabolism (Q3); Food Science (Q3); Nutrition and Dietetics (Q3); Public Health, Environmental and Occupational Health (Q3); Biochemistry (Q4); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +16666;15705;"Pediatric Annals";journal;"00904481, 19382359";"Slack Incorporated";No;No;0,316;Q3;47;97;307;2019;246;230;0,76;20,81;72,46;0;United States;Northern America;"Slack Incorporated";"1974-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +16667;14397;"Plastics, Rubber and Composites";journal;"17432898, 14658011";"SAGE Publications Ltd";No;No;0,316;Q3;49;30;114;1238;234;113;1,73;41,27;29,20;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Ceramics and Composites (Q3); Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)";"Chemical Engineering; Materials Science" +16668;17500155111;"Salud Colectiva";journal;"16692381, 18518265";"Universidad Nacional de Lanos";Yes;Yes;0,316;Q3;20;33;117;1527;100;111;0,83;46,27;82,05;0;Argentina;Latin America;"Universidad Nacional de Lanos";"2008-2026";"Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +16669;21100899527;"Australian Feminist Law Journal";journal;"22040064, 13200968";"Routledge";No;No;0,315;Q1;10;11;42;269;54;37;0,96;24,45;68,75;0;Australia;Pacific Region;"Routledge";"2018-2026";"Literature and Literary Theory (Q1); Gender Studies (Q2); Law (Q2); Sociology and Political Science (Q2); Psychology (miscellaneous) (Q3)";"Arts and Humanities; Psychology; Social Sciences" +16670;20197;"Journal of Medieval History";journal;"03044181";"Taylor and Francis Ltd.";No;No;0,315;Q1;30;43;102;2734;52;99;0,51;63,58;38,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1975-2026";"History (Q1)";"Arts and Humanities" +16671;21100853920;"Zolotoordynskoe Obozrenie";journal;"23136197, 2308152X";"Shigabutdin Marjani Institute of History of Academy of Sciences";Yes;Yes;0,315;Q1;6;61;173;1919;38;173;0,21;31,46;26,67;0;Russian Federation;Eastern Europe;"Shigabutdin Marjani Institute of History of Academy of Sciences";"2017-2025";"History (Q1)";"Arts and Humanities" +16672;21101022444;"Aerospace Systems";journal;"25233955";"";No;No;0,315;Q2;15;132;188;4579;349;187;1,90;34,69;27,76;0;Singapore;Asiatic Region;"";"2018-2026";"Social Sciences (miscellaneous) (Q2); Aerospace Engineering (Q3); Computers in Earth Sciences (Q3); Control and Systems Engineering (Q3); Mechanical Engineering (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Engineering; Social Sciences" +16673;21100869506;"International Journal of One Health";journal;"24555673, 24558931";"Veterinary World";Yes;No;0,315;Q2;14;17;65;872;123;65;1,73;51,29;50,67;0;India;Asiatic Region;"Veterinary World";"2015-2025";"Veterinary (miscellaneous) (Q2); Health Policy (Q3); Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Veterinary" +16674;21100894851;"International Journal of Supply and Operations Management";journal;"23831359, 23832525";"Kharazmi University";Yes;No;0,315;Q2;16;21;84;1309;177;84;1,95;62,33;20,37;0;Iran;Middle East;"Kharazmi University";"2018-2025";"Information Systems and Management (Q2); Civil and Structural Engineering (Q3); Management Information Systems (Q3); Management Science and Operations Research (Q3); Transportation (Q3)";"Business, Management and Accounting; Decision Sciences; Engineering; Social Sciences" +16675;23129;"Journal of Veterinary Pharmacology and Therapeutics";journal;"01407783, 13652885";"Wiley-Blackwell Publishing Ltd";No;No;0,315;Q2;73;67;182;2545;306;171;1,38;37,99;50,85;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1978-2026";"Veterinary (miscellaneous) (Q2); Pharmacology (Q3)";"Pharmacology, Toxicology and Pharmaceutics; Veterinary" +16676;21100461324;"NORMA";journal;"18902146, 18902138";"Taylor and Francis Ltd.";No;No;0,315;Q2;25;34;61;2087;114;49;1,76;61,38;56,86;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Gender Studies (Q2)";"Social Sciences" +16677;17192;"Seed Science and Technology";journal;"02510952";"International Seed Testing Association";No;No;0,315;Q2;54;0;9;0;20;8;0,00;0,00;0,00;0;Switzerland;Western Europe;"International Seed Testing Association";"1977, 1993-1994, 1996-2024";"Horticulture (Q2); Agronomy and Crop Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +16678;21100897169;"Studies in the Education of Adults";journal;"02660830, 14789833";"Taylor and Francis Ltd.";No;No;0,315;Q2;35;56;69;2666;91;63;1,39;47,61;62,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Sociology and Political Science (Q2); Education (Q3)";"Social Sciences" +16679;21100407601;"Acta IMEKO";journal;"2221870X, 0237028X";"International Measurement Confederation (IMEKO)";Yes;Yes;0,315;Q3;22;89;383;2317;389;347;1,09;26,03;28,84;0;Hungary;Eastern Europe;"International Measurement Confederation (IMEKO)";"2012-2026";"Electrical and Electronic Engineering (Q3); Instrumentation (Q3); Mechanical Engineering (Q3)";"Engineering; Physics and Astronomy" +16680;11700154612;"Cold Spring Harbor Protocols";journal;"19403402, 15596095";"Cold Spring Harbor Laboratory Press";No;No;0,315;Q3;73;85;364;2266;207;361;0,63;26,66;46,32;0;United States;Northern America;"Cold Spring Harbor Laboratory Press";"2008-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology" +16681;24980;"Formal Aspects of Computing";journal;"09345043, 1433299X";"Association for Computing Machinery";No;No;0,315;Q3;46;23;67;805;97;61;1,20;35,00;23,73;0;United States;Northern America;"Association for Computing Machinery";"1989-2025";"Software (Q3); Theoretical Computer Science (Q3)";"Computer Science; Mathematics" +16682;21101055119;"International Journal of Public Leadership";journal;"20564937, 20564929";"Emerald Group Publishing Ltd.";No;No;0,315;Q3;14;40;67;2501;143;63;2,53;62,53;32,86;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2019-2026";"Public Administration (Q3)";"Social Sciences" +16683;25663;"Journal of Ship Research";journal;"15420604, 00224502";"Society of Naval Architects and Marine Engineers";No;No;0,315;Q3;54;0;56;0;60;56;0,97;0,00;0,00;0;United States;Northern America;"Society of Naval Architects and Marine Engineers";"1969-1975, 1977-2024";"Applied Mathematics (Q3); Civil and Structural Engineering (Q3); Mechanical Engineering (Q3); Numerical Analysis (Q3); Ocean Engineering (Q3)";"Engineering; Mathematics" +16684;15794;"Nagoya Journal of Medical Science";journal;"00277622, 21863326";"Nagoya University";Yes;No;0,315;Q3;37;73;254;2105;257;252;0,81;28,84;20,87;0;Japan;Asiatic Region;"Nagoya University";"1961-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +16685;21101264260;"Proceedings of the International Symposium on Electromagnetic Compatibility, EMC Europe";journal;"23250356, 23250364";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,315;Q3;4;243;215;3367;163;213;0,76;13,86;13,56;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Instrumentation (Q3); Radiation (Q3)";"Energy; Engineering; Physics and Astronomy" +16686;21101196036;"Southern Energy Construction";journal;"20958676";"";Yes;Yes;0,315;Q3;10;75;347;2146;421;347;1,60;28,61;36,04;0;China;Asiatic Region;"";"2022-2025";"Building and Construction (Q3); Energy Engineering and Power Technology (Q3)";"Energy; Engineering" +16687;21970;"Theoretical Chemistry Accounts";journal;"1432881X, 14322234";"Springer New York";Yes;No;0,315;Q3;124;95;293;5245;484;281;1,71;55,21;33,65;0;United States;Northern America;"Springer New York";"1977, 1996-2026";"Physical and Theoretical Chemistry (Q3)";"Chemistry" +16688;21101194134;"The International Symposium on Combinatorial Search";conference and proceedings;"28329171, 28329163";"Association for the Advancement of Artificial Intelligence";No;No;0,315;-;6;48;103;862;112;100;1,09;17,96;18,33;0;United States;Northern America;"Association for the Advancement of Artificial Intelligence";"2023-2025";"Computer Networks and Communications";"Computer Science" +16689;21100945168;"Contemporary Review of the Middle East";journal;"23490055, 23477989";"SAGE Publications Ltd";No;No;0,314;Q1;14;28;76;1536;77;62;1,00;54,86;16,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2014-2026";"Cultural Studies (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +16690;27661;"Journal of Black Studies";journal;"15524566, 00219347";"SAGE Publications Inc.";No;No;0,314;Q1;62;39;105;2104;150;104;1,25;53,95;59,02;0;United States;Northern America;"SAGE Publications Inc.";"1970-2026";"Cultural Studies (Q1); Anthropology (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16691;21101193859;"Literary Fact";journal;"25422421, 25418297";"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";Yes;Yes;0,314;Q1;4;72;160;1046;13;159;0,08;14,53;55,56;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";"2019-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +16692;21101019622;"Studies in English Language and Education";journal;"24610275, 23552794";"Syiah Kuala University";Yes;No;0,314;Q1;19;99;263;5213;431;263;1,49;52,66;50,93;0;Indonesia;Asiatic Region;"Syiah Kuala University";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +16693;21101028371;"Voice and Speech Review";journal;"23268271, 23268263";"Bellwether Publishing, Ltd.";No;No;0,314;Q1;12;41;96;1196;54;49;0,48;29,17;68,57;0;United States;Northern America;"Bellwether Publishing, Ltd.";"2000-2001, 2003, 2005, 2007, 2009, 2011, 2014-2026";"Music (Q1); Visual Arts and Performing Arts (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +16694;5700168544;"Adoption and Fostering";journal;"1740469X, 03085759";"SAGE Publications Ltd";No;No;0,314;Q2;37;33;101;1359;81;69;0,68;41,18;76,39;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2026";"Law (Q2); Sociology and Political Science (Q2); Health (social science) (Q3); Human Factors and Ergonomics (Q3); Social Psychology (Q3)";"Psychology; Social Sciences" +16695;21100967510;"East European Journal of Psycholinguistics";journal;"23123265, 23132116";"Lesya Ukrainka Volyn National University";Yes;No;0,314;Q2;8;34;82;1286;90;81;0,82;37,82;64,86;0;Ukraine;Eastern Europe;"Lesya Ukrainka Volyn National University";"2019-2025";"Linguistics and Language (Q2); Experimental and Cognitive Psychology (Q4)";"Psychology; Social Sciences" +16696;5800207639;"Emakeele Seltsi Aastaraamat";book series;"22281215, 02063735";"";Yes;No;0,314;Q2;7;10;35;375;13;35;0,77;37,50;66,67;0;Estonia;Eastern Europe;"";"2011-2017, 2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +16697;30006;"Global Social Policy";journal;"17412803, 14680181";"SAGE Publications Ltd";No;No;0,314;Q2;46;56;116;2129;154;95;1,12;38,02;60,00;8;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2026";"Sociology and Political Science (Q2); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +16698;5600152899;"Revista de Ciencias Sociales";journal;"13159518";"Universidad del Zulia";Yes;Yes;0,314;Q2;29;234;610;10126;998;595;1,42;43,27;44,46;0;Venezuela;Latin America;"Universidad del Zulia";"2007-2025";"Social Sciences (miscellaneous) (Q2); Public Administration (Q3)";"Social Sciences" +16699;21100786911;"Scientific Annals of Economics and Business";journal;"25013165, 25011960";"Alexandru Ioan Cuza University of Iasi";Yes;Yes;0,314;Q2;18;37;99;2019;166;99;1,76;54,57;47,31;0;Romania;Eastern Europe;"Alexandru Ioan Cuza University of Iasi";"2016-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +16700;5700153969;"University of Toronto Law Journal";journal;"00420220, 17101174";"University of Toronto Press";No;No;0,314;Q2;27;28;68;2974;52;65;0,72;106,21;27,59;0;Canada;Northern America;"University of Toronto Press";"1974-1975, 1977, 1981, 1989, 1991-1993, 2008-2026";"Law (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16701;21100776059;"AATCC Journal of Research";journal;"24723444, 23305517";"SAGE Publications Inc.";No;No;0,314;Q3;18;42;121;1675;219;119;1,86;39,88;36,72;0;United States;Northern America;"SAGE Publications Inc.";"2014-2025";"Materials Chemistry (Q3); Polymers and Plastics (Q3); Process Chemistry and Technology (Q3)";"Chemical Engineering; Materials Science" +16702;21101066400;"Bioactive Compounds in Health and Disease";journal;"25740334, 27692426";"Functional Food Institute";No;No;0,314;Q3;15;46;98;2274;258;97;2,85;49,43;53,21;0;United States;Northern America;"Functional Food Institute";"2018-2026";"Food Science (Q3)";"Agricultural and Biological Sciences" +16703;7000153259;"Carnets de Geologie";journal;"17652553, 16340744";"Carnets de Geologie";Yes;Yes;0,314;Q3;23;13;45;637;55;44;0,87;49,00;8,00;0;France;Western Europe;"Carnets de Geologie";"2007-2025";"Geology (Q3); Paleontology (Q3); Stratigraphy (Q3)";"Earth and Planetary Sciences" +16704;21101247454;"Chinese Journal of Grassland";journal;"16735021";"Editorial Department of Chinese Journal of Grassland";No;No;0,314;Q3;14;111;492;4664;610;492;1,31;42,02;43,99;0;China;Asiatic Region;"Editorial Department of Chinese Journal of Grassland";"2020-2025";"Plant Science (Q3)";"Agricultural and Biological Sciences" +16705;26806;"Ciencias Marinas";journal;"23959053, 01853880";"Universidad Autonoma de Baja California";Yes;Yes;0,314;Q3;38;16;62;1018;60;60;0,87;63,63;45,83;0;Mexico;Latin America;"Universidad Autonoma de Baja California";"1975, 1992-2025";"Aquatic Science (Q3)";"Agricultural and Biological Sciences" +16706;21101058740;"Euroasian Entomological Journal";journal;"16844866";"KMK Scientific Press";No;No;0,314;Q3;6;72;191;1675;99;191;0,56;23,26;38,89;0;Russian Federation;Eastern Europe;"KMK Scientific Press";"2019-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +16707;11900154333;"Expert Review of Ophthalmology";journal;"17469899, 17469902";"Taylor and Francis Ltd.";No;No;0,314;Q3;34;50;137;3348;147;109;1,10;66,96;35,51;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Biomedical Engineering (Q3); Ophthalmology (Q3); Optometry (Q3)";"Engineering; Health Professions; Medicine" +16708;18200;"International Journal of Numerical Modelling: Electronic Networks, Devices and Fields";journal;"08943370, 10991204";"John Wiley and Sons Ltd";No;No;0,314;Q3;41;126;381;4379;839;374;2,11;34,75;29,14;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1988-2026";"Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Modeling and Simulation (Q3)";"Computer Science; Engineering; Mathematics" +16709;21101045041;"Journal of Education (South Africa)";journal;"0259479X, 25209868";"University of KwaZulu-Natal";Yes;No;0,314;Q3;11;0;104;0;134;94;1,28;0,00;0,00;0;South Africa;Africa;"University of KwaZulu-Natal";"2019-2024";"Education (Q3)";"Social Sciences" +16710;19700186863;"Nature Environment and Pollution Technology";journal;"23953454, 09726268";"Technoscience Publications";Yes;No;0,314;Q3;25;268;683;13050;1150;683;1,90;48,69;40,40;0;India;Asiatic Region;"Technoscience Publications";"2007, 2009-2025";"Environmental Science (miscellaneous) (Q3); Pollution (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science" +16711;29642;"Pramana - Journal of Physics";journal;"03044289, 09737111";"Springer India";No;No;0,314;Q3;66;176;597;7647;1200;597;2,46;43,45;23,25;0;India;Asiatic Region;"Springer India";"1973-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +16712;21100977379;"Proceedings of the Zoological Society";journal;"03735893, 09746919";"Springer India";No;No;0,314;Q3;22;48;146;2654;177;145;0,95;55,29;32,37;0;India;Asiatic Region;"Springer India";"2009-2026";"Animal Science and Zoology (Q3); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3); Cell Biology (Q4); Endocrinology (Q4); Genetics (Q4); Immunology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +16713;17169;"Russian Journal of Plant Physiology";journal;"16083407, 10214437";"Pleiades Publishing";No;No;0,314;Q3;67;260;617;12602;880;616;1,45;48,47;44,38;0;United States;Northern America;"Pleiades Publishing";"1996-2026";"Plant Science (Q3)";"Agricultural and Biological Sciences" +16714;12100156755;"Tribology - Materials, Surfaces and Interfaces";journal;"1751584X, 17515831";"SAGE Publications Ltd";No;No;0,314;Q3;29;22;84;1148;171;79;2,46;52,18;24,49;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2026";"Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Engineering; Materials Science" +16715;21100241204;"Tribology Online";journal;"18812198, 1881218X";"Japanese Society of Tribologists";Yes;Yes;0,314;Q3;25;22;155;783;193;148;1,34;35,59;15,56;0;Japan;Asiatic Region;"Japanese Society of Tribologists";"2013-2026";"Surfaces, Coatings and Films (Q3)";"Materials Science" +16716;6500153137;"Rethinking History";journal;"13642529";"Taylor and Francis Ltd.";No;No;0,313;Q1;33;65;86;3540;90;83;0,90;54,46;44,19;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"History (Q1)";"Arts and Humanities" +16717;21100314715;"Theory and Practice in Language Studies";journal;"20530692, 17992591";"Academy Publication";No;No;0,313;Q1;34;425;1120;15090;1470;1120;1,30;35,51;52,96;0;United Kingdom;Western Europe;"Academy Publication";"2011-2014, 2017-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +16718;21100274755;"Advances in Integrative Medicine";journal;"22129588, 22129596";"Elsevier Australia";No;No;0,313;Q2;21;141;111;5671;159;98;1,30;40,22;47,85;1;Australia;Pacific Region;"Elsevier Australia";"2014-2026";"Complementary and Alternative Medicine (Q2)";"Medicine" +16719;21101070987;"Advances in Science and Technology Research Journal";journal;"22998624";"Politechnika Lubelska";Yes;No;0,313;Q2;21;416;639;14958;1191;639;1,87;35,96;25,24;0;Poland;Eastern Europe;"Politechnika Lubelska";"2019-2026";"Engineering (miscellaneous) (Q2); Computer Science (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Computer Science; Engineering; Environmental Science; Materials Science" +16720;19700171104;"Ciencia e Tecnica Vitivinicola";journal;"24163953, 02540223";"Instituto Nacional de Investigacao Agraria e das Pescas";Yes;Yes;0,313;Q2;19;9;37;620;67;37;1,48;68,89;34,38;0;Portugal;Western Europe;"Instituto Nacional de Investigacao Agraria e das Pescas";"2008-2025";"Horticulture (Q2); Food Science (Q3)";"Agricultural and Biological Sciences" +16721;21101039252;"Comechingonia";journal;"03267911, 22507728";"Instituto de Estudios Historicos";Yes;Yes;0,313;Q2;7;31;101;1876;47;99;0,37;60,52;49,35;0;Spain;Western Europe;"Instituto de Estudios Historicos";"2019-2025";"Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +16722;21100929312;"Criminology, Criminal Justice, Law and Society";journal;"2332886X";"Western Society of Criminology";Yes;Yes;0,313;Q2;32;5;27;334;33;27;0,53;66,80;60,00;0;United States;Northern America;"Western Society of Criminology";"2014-2025";"Sociology and Political Science (Q2)";"Social Sciences" +16723;36510;"Erwerbs-Obstbau";journal;"00140309, 14390302";"Springer Science and Business Media Deutschland GmbH";No;No;0,313;Q2;27;0;395;0;777;395;1,93;0,00;0,00;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1983, 1996-2023";"Horticulture (Q2)";"Agricultural and Biological Sciences" +16724;21101248940;"European Burn Journal";journal;"26731991";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,313;Q2;9;59;123;2592;166;115;1,13;43,93;43,23;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Health Professions (miscellaneous) (Q2); Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)";"Health Professions; Medicine; Nursing" +16725;21101317179;"Humans";journal;"26739461";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,313;Q2;7;34;68;2467;113;65;1,80;72,56;50,60;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +16726;22563;"Journal of Ichthyology";journal;"00329452, 15556425";"";No;No;0,313;Q2;25;121;369;5276;305;368;0,75;43,60;40,74;0;Russian Federation;Eastern Europe;"";"1976-1977, 1979-1984, 1987, 1990-1995, 2006-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Aquatic Science (Q3)";"Agricultural and Biological Sciences" +16727;21101028383;"Language Value";journal;"19897103";"Universitat Jaume I";Yes;Yes;0,313;Q2;5;11;28;508;37;28;1,25;46,18;72,22;0;Spain;Western Europe;"Universitat Jaume I";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +16728;21100448012;"Partecipazione e Conflitto";journal;"19727623, 20356609";"University of Salento";Yes;Yes;0,313;Q2;24;41;129;2455;158;124;1,19;59,88;50,00;0;Italy;Western Europe;"University of Salento";"2015-2025";"Sociology and Political Science (Q2)";"Social Sciences" +16729;21101318721;"Proceedings of the International Technical Meeting of the Satellite Division of The Institute of Navigation, ION GNSS+";journal;"23315954";"Institute of Navigation";No;No;0,313;Q2;8;259;274;4673;310;273;1,13;18,04;19,70;0;United States;Northern America;"Institute of Navigation";"2024-2025";"Communication (Q2); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Information Systems (Q3); Software (Q3)";"Computer Science; Engineering; Social Sciences" +16730;19494;"Veterinarni Medicina";journal;"18059392, 03758427";"Czech Academy of Agricultural Sciences";Yes;No;0,313;Q2;63;48;178;1744;219;177;1,28;36,33;40,17;0;Czech Republic;Eastern Europe;"Czech Academy of Agricultural Sciences";"1971-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +16731;21101037324;"World of Media";journal;"26868016, 23071605";"Lomonosov Moscow State University, Faculty of Journalism";Yes;Yes;0,313;Q2;11;15;58;883;60;57;0,89;58,87;65,52;0;Russian Federation;Eastern Europe;"Lomonosov Moscow State University, Faculty of Journalism";"2019-2025";"Communication (Q2); Linguistics and Language (Q2)";"Social Sciences" +16732;21101087776;"Acoustics";journal;"2624599X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,313;Q3;25;80;191;3484;366;190;1,91;43,55;23,95;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Acoustics and Ultrasonics (Q3)";"Physics and Astronomy" +16733;19500157320;"Acta Scientiarum - Agronomy";journal;"18078621, 16799275";"Universidade Estadual de Maringa";Yes;Yes;0,313;Q3;37;60;177;2072;241;177;1,20;34,53;33,45;0;Brazil;Latin America;"Universidade Estadual de Maringa";"2008-2026";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +16734;21100469366;"Agricultural Research";journal;"22497218, 2249720X";"Springer International Publishing AG";No;No;0,313;Q3;47;144;223;7287;385;223;1,74;50,60;30,18;0;Switzerland;Western Europe;"Springer International Publishing AG";"2012-2026";"Agronomy and Crop Science (Q3); Food Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +16735;21100456858;"Aula Abierta";journal;"02102773, 23412313";"Universidad de Oviedo";Yes;Yes;0,313;Q3;23;41;113;1711;122;111;1,01;41,73;51,24;0;Spain;Western Europe;"Universidad de Oviedo";"2014-2025";"Education (Q3)";"Social Sciences" +16736;52416;"Bulletin of the New Zealand Society for Earthquake Engineering";journal;"11749857";"New Zealand Society for Earthquake Engineering";No;No;0,313;Q3;47;22;51;974;48;51;0,82;44,27;28,57;0;New Zealand;Pacific Region;"New Zealand Society for Earthquake Engineering";"1970-1977, 1990-1992, 1997, 1999-2025";"Civil and Structural Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences; Engineering" +16737;6200180184;"Dianji yu Kongzhi Xuebao/Electric Machines and Control";journal;"1007449X";"Editorial Department of Electric Machines and Control";No;No;0,313;Q3;28;192;604;4452;925;604;1,54;23,19;32,30;0;China;Asiatic Region;"Editorial Department of Electric Machines and Control";"2007-2025";"Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)";"Computer Science; Energy; Engineering" +16738;21101271729;"European Journal of Sustainable Development Research";journal;"25424742";"Modestum";No;No;0,313;Q3;9;60;102;2524;192;100;1,97;42,07;30,71;0;Serbia;Eastern Europe;"Modestum";"2022-2026";"Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Pollution (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science; Social Sciences" +16739;15630;"Food Biotechnology";journal;"08905436, 15324249";"Taylor and Francis Ltd.";No;No;0,313;Q3;44;20;59;1244;113;59;1,87;62,20;51,20;0;United States;Northern America;"Taylor and Francis Ltd.";"1987-2026";"Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +16740;21100945773;"Irish Journal of Occupational Therapy";journal;"23988819, 07918437";"Emerald Publishing";Yes;Yes;0,313;Q3;11;15;34;479;37;24;0,48;31,93;84,62;0;United Kingdom;Western Europe;"Emerald Publishing";"2017-2026";"Occupational Therapy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Health Professions; Medicine" +16741;22536;"Journal of Applied Ichthyology";journal;"14390426, 01758659";"Wiley-VCH Verlag";No;No;0,313;Q3;77;53;161;2687;225;160;1,80;50,70;30,29;1;Germany;Western Europe;"Wiley-VCH Verlag";"1985-2026";"Aquatic Science (Q3)";"Agricultural and Biological Sciences" +16742;24354;"Journal of Automated Reasoning";journal;"15730670, 01687433";"Springer Netherlands";No;No;0,313;Q3;66;32;98;1294;107;96;0,95;40,44;16,49;0;Netherlands;Western Europe;"Springer Netherlands";"1985-2026";"Artificial Intelligence (Q3); Computational Theory and Mathematics (Q3); Software (Q3)";"Computer Science" +16743;18625;"Koedoe";journal;"20710771, 00756458";"AOSIS (Pty) Ltd";Yes;No;0,313;Q3;37;14;49;683;50;44;0,92;48,79;37,78;0;South Africa;Africa;"AOSIS (Pty) Ltd";"1980-1984, 1987-2006, 2008-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +16744;14786;"Nutricion Hospitalaria";journal;"16995198, 02121611";"ARAN Ediciones S.A.";Yes;Yes;0,313;Q3;71;224;661;5615;709;551;0,93;25,07;57,59;1;Spain;Western Europe;"ARAN Ediciones S.A.";"1989-2026";"Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +16745;21100871307;"Open Computer Science";journal;"22991093";"Walter de Gruyter GmbH";Yes;No;0,313;Q3;28;28;84;964;190;84;1,96;34,43;33,72;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2011-2025";"Computer Science (miscellaneous) (Q3)";"Computer Science" +16746;21101060931;"Open Respiratory Archives";journal;"26596636";"Elsevier Espana S.L.U";Yes;No;0,313;Q3;11;107;223;2630;274;175;1,32;24,58;47,52;1;Spain;Western Europe;"Elsevier Espana S.L.U";"2019-2026";"Pulmonary and Respiratory Medicine (Q3)";"Medicine" +16747;18000156706;"PRIMUS";journal;"19354053, 10511970";"Taylor and Francis Ltd.";No;No;0,313;Q3;28;77;207;1810;114;202;0,53;23,51;56,92;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-2026";"Education (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics; Social Sciences" +16748;21100871775;"Progress in Fractional Differentiation and Applications";journal;"23569336, 23569344";"Natural Sciences Publishing";No;No;0,313;Q3;27;53;152;1916;226;152;1,54;36,15;25,38;0;United States;Northern America;"Natural Sciences Publishing";"2015-2025";"Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +16749;19508;"Southern Medical Journal";journal;"00384348, 15418243";"Lippincott Williams and Wilkins";No;No;0,313;Q3;89;140;427;2972;327;370;0,69;21,23;52,67;0;United States;Northern America;"Lippincott Williams and Wilkins";"1908-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +16750;19500157214;"Special Paper of the Geological Society of America";book series;"00721077, 2331219X";"Geological Society of America";No;No;0,313;Q3;122;29;125;2322;113;9;0,83;80,07;20,00;0;United States;Northern America;"Geological Society of America";"1934-1945, 1955, 1957-1958, 1962-2025";"Geology (Q3)";"Earth and Planetary Sciences" +16751;21100393648;"Surface Innovations";journal;"20506260, 20506252";"ICE Publishing";No;No;0,313;Q3;34;29;122;1206;234;108;1,72;41,59;37,01;0;United Kingdom;Western Europe;"ICE Publishing";"2013-2025";"Materials Chemistry (Q3); Process Chemistry and Technology (Q3); Surfaces, Coatings and Films (Q3)";"Chemical Engineering; Materials Science" +16752;5600155405;"Asian Ethnicity";journal;"14692953, 14631369";"Routledge";No;No;0,312;Q1;28;57;107;3163;148;105;1,10;55,49;31,25;0;United Kingdom;Western Europe;"Routledge";"2008-2026";"Cultural Studies (Q1); Sociology and Political Science (Q2)";"Social Sciences" +16753;23474;"Environmental Ethics";journal;"01634275";"Environmental Philosophy Inc";No;No;0,312;Q1;39;12;64;586;44;48;0,56;48,83;40,00;0;United States;Northern America;"Environmental Philosophy Inc";"1979-1981, 1984, 1988, 1990, 1996-2025";"Philosophy (Q1); Environmental Science (miscellaneous) (Q3)";"Arts and Humanities; Environmental Science" +16754;21100223135;"History of Education Review";journal;"08198691, 20545649";"Emerald Publishing";No;No;0,312;Q1;11;13;39;594;31;39;0,88;45,69;63,16;0;United Kingdom;Western Europe;"Emerald Publishing";"1980, 1982, 2012-2026";"History (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +16755;21100773342;"Siberian Historical Research";journal;"23124628, 2312461X";"Tomsk State University";Yes;Yes;0,312;Q1;8;48;150;2876;46;147;0,39;59,92;62,50;0;Russian Federation;Eastern Europe;"Tomsk State University";"2013-2025";"History (Q1); Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +16756;23452;"Voprosy Ekonomiki";journal;"00428736";"Russian Presidential Academy of National Economy and Public Administration";No;No;0,312;Q1;23;83;271;3489;230;269;0,94;42,04;44,85;0;Russian Federation;Eastern Europe;"Russian Presidential Academy of National Economy and Public Administration";"1978-1982, 1984-1985, 1996, 1998, 2003-2026";"History (Q1); Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance" +16757;21100898016;"Digital Humanities Quarterly";journal;"19384122";"Alliance of Digital Humanities Organisations";Yes;Yes;0,312;Q2;15;37;188;1751;134;184;0,52;47,32;40,51;0;United States;Northern America;"Alliance of Digital Humanities Organisations";"2018-2025";"Arts and Humanities (miscellaneous) (Q2); Communication (Q2); Library and Information Sciences (Q2); Computer Networks and Communications (Q3)";"Arts and Humanities; Computer Science; Social Sciences" +16758;21499;"Environmental Policy and Law";journal;"0378777X";"SAGE Publications Ltd";No;No;0,312;Q2;18;29;105;2638;134;94;1,63;90,97;32,14;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1975-2026";"Law (Q2); Environmental Science (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +16759;5800207812;"Functions of Language";journal;"15699765, 0929998X";"John Benjamins Publishing Company";No;No;0,312;Q2;30;10;40;469;28;37;0,62;46,90;45,45;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1994-2026";"Linguistics and Language (Q2)";"Social Sciences" +16760;21100390107;"HAU: Journal of Ethnographic Theory";journal;"20491115, 25751433";"University of Chicago Press";Yes;No;0,312;Q2;54;74;200;2465;139;175;0,73;33,31;42,67;0;United Kingdom;Western Europe;"University of Chicago Press";"2011-2025";"Anthropology (Q2)";"Social Sciences" +16761;21101120602;"HBRC Journal";journal;"16874048, 20909934";"Taylor and Francis Ltd.";Yes;No;0,312;Q2;50;19;83;606;137;83;1,70;31,89;30,19;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2025";"Architecture (Q2); Urban Studies (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Environmental Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3); Materials Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Engineering; Environmental Science; Materials Science; Social Sciences" +16762;18295;"Journal of Avian Medicine and Surgery";journal;"10826742";"Association of Avian Veterinarians";No;No;0,312;Q2;41;36;121;994;94;116;0,75;27,61;50,72;0;United States;Northern America;"Association of Avian Veterinarians";"1996-2025";"Small Animals (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Veterinary" +16763;5800207564;"Journal of French Language Studies";journal;"14740079, 09592695";"Cambridge University Press";No;No;0,312;Q2;28;14;53;727;42;52;1,00;51,93;45,83;0;United Kingdom;Western Europe;"Cambridge University Press";"1991-2026";"Linguistics and Language (Q2)";"Social Sciences" +16764;21100794697;"Journal of Spanish Language Teaching";journal;"23247800, 23247797";"Taylor and Francis Ltd.";No;No;0,312;Q2;19;17;38;865;47;35;1,38;50,88;70,37;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +16765;21100912225;"Journal of the Geographical Institute Jovan Cvijic SASA";journal;"03507599, 18212808";"Geographical Institute "Jovan Cviji" of the Serbian Academy of Sciences and Arts";Yes;Yes;0,312;Q2;13;29;80;1425;143;79;1,79;49,14;51,06;0;Serbia;Eastern Europe;"Geographical Institute "Jovan Cviji" of the Serbian Academy of Sciences and Arts";"2019-2026";"Demography (Q2); Earth-Surface Processes (Q3); Geography, Planning and Development (Q3); Geology (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Earth and Planetary Sciences; Social Sciences" +16766;19700181006;"Revista Caatinga";journal;"0100316X, 19832125";"Universidade Federal Rural do Semi-Arid";Yes;No;0,312;Q2;29;101;300;2843;372;300;1,09;28,15;36,42;0;Brazil;Latin America;"Universidade Federal Rural do Semi-Arid";"2010-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +16767;25225;"Alcoholism Treatment Quarterly";journal;"15444538, 07347324";"Routledge";No;No;0,312;Q3;38;60;123;2745;122;109;1,11;45,75;47,34;0;United States;Northern America;"Routledge";"1984-2026";"Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)";"Medicine" +16768;21101097212;"Anaesthesia Reports";journal;"26373726";"John Wiley and Sons Inc";No;No;0,312;Q3;11;46;192;445;175;142;0,93;9,67;31,25;0;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Anesthesiology and Pain Medicine (Q3)";"Medicine" +16769;21100264506;"Biotribology";journal;"23525738";"Elsevier Ltd";No;No;0,312;Q3;27;0;47;0;104;46;1,97;0,00;0,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2023";"Surfaces, Coatings and Films (Q3); Biomaterials (Q4)";"Materials Science" +16770;27170;"British Journal of Nursing";journal;"09660461, 20522819";"MA Healthcare Ltd";No;No;0,312;Q3;64;339;1142;6054;871;769;0,70;17,86;68,62;4;United Kingdom;Western Europe;"MA Healthcare Ltd";"1992-2026";"Nursing (miscellaneous) (Q3)";"Nursing" +16771;14876;"Electromagnetic Biology and Medicine";journal;"15368386, 15368378";"Informa Healthcare";No;No;0,312;Q3;52;43;86;2426;140;85;1,64;56,42;42,21;0;United Kingdom;Western Europe;"Informa Healthcare";"1982-2026";"Biophysics (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16772;21100812868;"Evergreen";journal;"24325953, 21890420";"";Yes;No;0,312;Q3;36;168;748;9764;1361;736;1,79;58,12;28,98;0;Japan;Asiatic Region;"";"2014-2025";"Ceramics and Composites (Q3); Electronic, Optical and Magnetic Materials (Q3); Engineering (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Surfaces, Coatings and Films (Q3)";"Engineering; Environmental Science; Materials Science" +16773;85440;"Flora Mediterranea";journal;"22404538, 11204052";"Foundation Pro Herbario Mediterraneo";Yes;No;0,312;Q3;18;9;90;402;53;89;0,72;44,67;27,91;0;Italy;Western Europe;"Foundation Pro Herbario Mediterraneo";"1991-1994, 2012-2025";"Plant Science (Q3)";"Agricultural and Biological Sciences" +16774;38762;"Ghana Medical Journal";journal;"2616163X, 00169560";"Ghana Medical Association";Yes;Yes;0,312;Q3;34;36;156;903;169;145;0,75;25,08;34,42;0;Ghana;Africa;"Ghana Medical Association";"1962-1963, 1971, 1973-1980, 2011-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +16775;37473;"Gold Bulletin";journal;"00171557, 21907579";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,312;Q3;72;16;50;721;105;50;1,90;45,06;31,25;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1971-2025";"Inorganic Chemistry (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Materials Science" +16776;21419;"Indian Journal of Public Health";journal;"0019557X, 22297693";"Wolters Kluwer Medknow Publications";Yes;No;0,312;Q3;40;147;423;2628;394;351;0,86;17,88;43,54;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1961-2026";"Epidemiology (Q3); Health Policy (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +16777;5200153101;"International Journal of Sustainable Development and Planning";journal;"1743761X, 17437601";"International Information and Engineering Technology Association";No;No;0,312;Q3;31;467;1156;22244;2487;1156;2,18;47,63;39,86;0;United Kingdom;Western Europe;"International Information and Engineering Technology Association";"2006-2025";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science; Social Sciences" +16778;24326;"International Journal of Uncertainty, Fuzziness and Knowledge-Based Systems";journal;"02184885, 17936411";"World Scientific";No;No;0,312;Q3;69;51;182;1645;240;172;1,42;32,25;29,41;0;Singapore;Asiatic Region;"World Scientific";"1996-2026";"Applied Mathematics (Q3); Artificial Intelligence (Q3); Control and Systems Engineering (Q3); Information Systems (Q3); Software (Q3); Theoretical Computer Science (Q3)";"Computer Science; Engineering; Mathematics" +16779;21101185265;"Journal of Environmental Engineering Technology";journal;"1674991X";"";No;No;0,312;Q3;17;110;719;4409;920;719;1,40;40,08;39,35;0;China;Asiatic Region;"";"2019-2025";"Environmental Engineering (Q3); Nature and Landscape Conservation (Q3); Pollution (Q3); Waste Management and Disposal (Q3)";"Environmental Science" +16780;21156;"Journal of Fire Sciences";journal;"07349041, 15308049";"SAGE Publications Ltd";No;No;0,312;Q3;53;18;62;843;111;61;1,40;46,83;20,69;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1983-2026";"Mechanical Engineering (Q3); Mechanics of Materials (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering" +16781;21100904742;"Journal of Health Research";journal;"2586940X, 08574421";"College of Public Health Sciences, Chulalongkorn University";Yes;No;0,312;Q3;20;59;265;2309;274;264;0,50;39,14;64,47;0;Thailand;Asiatic Region;"College of Public Health Sciences, Chulalongkorn University";"2018-2026";"Health Policy (Q3); Nursing (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing" +16782;15952;"Journal of Medical Engineering and Technology";journal;"1464522X, 03091902";"Taylor and Francis Ltd.";No;No;0,312;Q3;58;37;125;1482;212;117;1,73;40,05;30,61;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-2026";"Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)";"Engineering; Medicine" +16783;21100803622;"Korean Journal of Medical Education";journal;"2005727X, 20057288";"Korean Society of Medical Education";Yes;No;0,312;Q3;24;44;100;1171;135;97;1,23;26,61;53,33;0;South Korea;Asiatic Region;"Korean Society of Medical Education";"2015-2025";"Education (Q3)";"Social Sciences" +16784;21100861875;"Microbiology Australia";journal;"13244272, 22019189";"CSIRO Publishing";Yes;Yes;0,312;Q3;13;44;146;880;202;122;1,33;20,00;48,72;0;Australia;Pacific Region;"CSIRO Publishing";"2018-2025";"Applied Microbiology and Biotechnology (Q3); Microbiology (medical) (Q3); Public Health, Environmental and Occupational Health (Q3); Microbiology (Q4)";"Immunology and Microbiology; Medicine" +16785;21100804545;"Progress in Color, Colorants and Coatings";journal;"20082134, 23831790";"Institute for Color Science and Technology";Yes;Yes;0,312;Q3;25;28;79;1329;198;79;2,65;47,46;28,21;0;Iran;Middle East;"Institute for Color Science and Technology";"2016-2026";"Process Chemistry and Technology (Q3); Surfaces, Coatings and Films (Q3)";"Chemical Engineering; Materials Science" +16786;21100780677;"Tropical Parasitology";journal;"22297758, 22295070";"Wolters Kluwer Medknow Publications";Yes;No;0,312;Q3;20;26;75;637;89;61;1,28;24,50;49,33;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2016-2025";"Infectious Diseases (Q3); Parasitology (Q3); Microbiology (Q4)";"Immunology and Microbiology; Medicine" +16787;21100857530;"WHO South-East Asia journal of public health";journal;"22243151, 23045272";"Wolters Kluwer Medknow Publications";No;No;0,312;Q3;26;14;55;0;62;45;1,11;0,00;42,11;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2016-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +16788;21100902676;"Istoriya";journal;"20798784";"Ltd "Integration: Education and Science"";No;No;0,311;Q1;8;456;1190;13929;343;1190;0,32;30,55;45,52;0;Russian Federation;Eastern Europe;"Ltd "Integration: Education and Science"";"2018-2025";"History (Q1); Visual Arts and Performing Arts (Q1); History and Philosophy of Science (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +16789;21100939681;"eJournal of eDemocracy and Open Government";journal;"20759517";"Department for E-Governance and Administration";Yes;Yes;0,311;Q2;24;23;58;1316;85;51;1,13;57,22;20,59;0;Austria;Western Europe;"Department for E-Governance and Administration";"2009-2025";"Sociology and Political Science (Q2); Computer Science Applications (Q3)";"Computer Science; Social Sciences" +16790;21100924767;"Fudan Journal of the Humanities and Social Sciences";journal;"16740750, 21982600";"Springer Verlag";No;No;0,311;Q2;21;43;79;3042;145;79;1,69;70,74;32,91;0;Germany;Western Europe;"Springer Verlag";"2014-2026";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +16791;21101039844;"International Journal of Men's Social and Community Health";journal;"25619179";"University of Toronto Press";Yes;No;0,311;Q2;10;10;21;547;28;19;0,86;54,70;41,46;0;Canada;Northern America;"University of Toronto Press";"2018-2025";"Gender Studies (Q2); Social Sciences (miscellaneous) (Q2); Health (social science) (Q3)";"Social Sciences" +16792;21101074753;"Journal of Monolingual and Bilingual Speech";journal;"26318407, 26318415";"Equinox Publishing Ltd";No;No;0,311;Q2;6;0;40;0;27;39;0,46;0,00;0,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2019-2024";"Linguistics and Language (Q2)";"Social Sciences" +16793;21100874338;"Journal of Public and Nonprofit Affairs";journal;"23813717";"Midwest Public Affairs Conference";Yes;Yes;0,311;Q2;15;12;58;695;74;54;0,94;57,92;44,44;0;United States;Northern America;"Midwest Public Affairs Conference";"2015-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2); Business and International Management (Q3); Organizational Behavior and Human Resource Management (Q3); Public Administration (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +16794;69336;"Names";journal;"00277738, 17562279";"University Library System, University of Pittsburgh";Yes;Yes;0,311;Q2;19;22;57;1065;67;55;0,78;48,41;51,85;0;United Kingdom;Western Europe;"University Library System, University of Pittsburgh";"1953-2025";"Demography (Q2); Linguistics and Language (Q2)";"Social Sciences" +16795;21100254429;"Obogashchenie Rud";journal;"02023776, 24140074";"Ore and Metals Publishing house";No;No;0,311;Q2;16;51;155;1300;119;155;0,83;25,49;43,33;0;Russian Federation;Eastern Europe;"Ore and Metals Publishing house";"2013-2025";"Metals and Alloys (Q2); Materials Chemistry (Q3)";"Materials Science" +16796;19700167012;"Pamatky Archeologicke";journal;"00310506, 25709496";"Czech Academy of Sciences";Yes;No;0,311;Q2;14;2;21;310;13;20;0,50;155,00;44,00;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"2009-2013, 2015-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +16797;21100896938;"Revista Fuentes";journal;"21727775";"Facultad de Ciencias de la Educacion";Yes;Yes;0,311;Q2;10;16;90;901;90;90;1,12;56,31;51,06;0;Spain;Western Europe;"Facultad de Ciencias de la Educacion";"2018-2025";"Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +16798;13153;"Wounds";journal;"19432704, 10447946";"Cliggott Publishing Co.";No;No;0,311;Q2;54;67;276;1676;259;251;0,90;25,01;46,26;0;United States;Northern America;"Cliggott Publishing Co.";"1996-2025";"Medical and Surgical Nursing (Q2); Medicine (miscellaneous) (Q3); Surgery (Q3)";"Medicine; Nursing" +16799;21100199843;"Acta Mathematica Vietnamica";journal;"02514184, 23154144";"Springer";No;No;0,311;Q3;18;26;122;620;61;119;0,48;23,85;26,92;0;Singapore;Asiatic Region;"Springer";"2011-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16800;16706;"Annales Botanici Fennici";journal;"00033847";"Finnish Zoological and Botanical Publishing Board";No;No;0,311;Q3;42;44;103;865;68;103;0,73;19,66;19,51;0;Finland;Western Europe;"Finnish Zoological and Botanical Publishing Board";"1973, 1975, 1977-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +16801;21101277887;"ARO-The Scientific Journal of Koya University";journal;"24109355, 2307549X";"Koya University";Yes;Yes;0,311;Q3;12;65;134;2773;275;134;1,70;42,66;22,48;0;Iraq;Middle East;"Koya University";"2021-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Chemical Engineering (miscellaneous) (Q3); Bioengineering (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +16802;19400157248;"Artificial Satellites";journal;"20836104, 0208841X";"Wydawnictwo Centrum Badan Kosmicznych";No;No;0,311;Q3;14;9;45;314;46;45;0,76;34,89;17,86;0;Poland;Eastern Europe;"Wydawnictwo Centrum Badan Kosmicznych";"2009-2025";"Space and Planetary Science (Q3)";"Earth and Planetary Sciences" +16803;21100821126;"Biomedical Human Kinetics";journal;"20802234";"De Gruyter Open Ltd";Yes;No;0,311;Q3;14;33;106;1321;126;105;1,38;40,03;35,81;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2016-2026";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine" +16804;21101019621;"Cubo";journal;"07167776, 07190646";"Universidad de la Frontera";Yes;Yes;0,311;Q3;9;33;90;747;77;90;0,73;22,64;19,05;0;Chile;Latin America;"Universidad de la Frontera";"2012, 2019-2025";"Algebra and Number Theory (Q3); Analysis (Q3); Geometry and Topology (Q3); Logic (Q3)";"Mathematics" +16805;29717;"Guangxue Xuebao/Acta Optica Sinica";journal;"02532239";"";No;No;0,311;Q3;46;757;2242;29315;3671;2239;1,91;38,73;34,60;0;China;Asiatic Region;"";"1984-1989, 1992-2026";"Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science; Physics and Astronomy" +16806;25986;"Hemoglobin";journal;"03630269, 1532432X";"Taylor and Francis Ltd.";No;No;0,311;Q3;48;74;181;1899;218;173;0,93;25,66;46,01;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976-2026";"Biochemistry (medical) (Q3); Hematology (Q3); Clinical Biochemistry (Q4); Genetics (clinical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16807;21100874164;"Interpretation";journal;"23248858, 23248866";"Society of Exploration Geophysicists";No;No;0,311;Q3;51;81;214;3657;237;197;0,99;45,15;22,51;0;United States;Northern America;"Society of Exploration Geophysicists";"2013-2026";"Geology (Q3); Geophysics (Q3)";"Earth and Planetary Sciences" +16808;15920;"Journal of Health Management";journal;"09720634, 09730729";"Sage Publications India Pvt. Ltd";No;No;0,311;Q3;30;98;281;3859;285;275;0,94;39,38;46,82;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1994, 1999-2026";"Health Policy (Q3)";"Medicine" +16809;21101030203;"Journal of Insect Biodiversity";journal;"21477612, 25381318";"Magnolia Press";No;No;0,311;Q3;9;69;138;2604;83;137;0,61;37,74;34,90;0;New Zealand;Pacific Region;"Magnolia Press";"2019-2026";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3); Paleontology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +16810;21101029435;"Journal of Irrigation and Drainage";journal;"16723317";"Office of Journal of Irrigation and Drainage, Farmland Irrigation Research Institute, Chinese Academy of Agricultural Sciences";Yes;No;0,311;Q3;14;170;609;5703;722;609;1,23;33,55;40,34;0;China;Asiatic Region;"Office of Journal of Irrigation and Drainage, Farmland Irrigation Research Institute, Chinese Academy of Agricultural Sciences";"2019-2026";"Agronomy and Crop Science (Q3); Ecology (Q3); Environmental Engineering (Q3); Soil Science (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +16811;12183;"Journal of Nonlinear Optical Physics and Materials";journal;"17936624, 02188635";"World Scientific";No;No;0,311;Q3;38;104;116;4743;232;115;2,08;45,61;30,92;0;Singapore;Asiatic Region;"World Scientific";"1992-1993, 1995-2026";"Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Materials Science; Physics and Astronomy" +16812;21101166844;"Journal of Software for Algebra and Geometry";journal;"19487916";"Mathematical Sciences Publishers";No;No;0,311;Q3;7;8;26;109;17;26;0,50;13,63;33,33;0;United States;Northern America;"Mathematical Sciences Publishers";"2019-2025";"Algebra and Number Theory (Q3); Computational Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3); Geometry and Topology (Q3)";"Mathematics" +16813;22042;"Journal of the Ceramic Society of Japan";journal;"18820743, 13486535";"Ceramic Society of Japan";No;No;0,311;Q3;69;119;411;4418;507;399;1,10;37,13;18,34;0;Japan;Asiatic Region;"Ceramic Society of Japan";"1988-2026";"Ceramics and Composites (Q3); Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3); Materials Chemistry (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +16814;19700188161;"Leisure/ Loisir";journal;"14927713, 21512221";"Routledge";No;No;0,311;Q3;33;71;115;4829;190;114;1,47;68,01;56,25;2;United States;Northern America;"Routledge";"1999-2003, 2005-2026";"Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +16815;19400158510;"Logistics Research";journal;"18650368, 1865035X";"Emerald Publishing";Yes;Yes;0,311;Q3;31;5;30;283;56;30;1,95;56,60;22,22;0;Germany;Western Europe;"Emerald Publishing";"2009-2025";"Computer Science Applications (Q3); Control and Systems Engineering (Q3); Information Systems (Q3); Management Information Systems (Q3); Management Science and Operations Research (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering" +16816;17804;"Materials Science";journal;"1068820X, 1573885X";"Springer International Publishing AG";No;No;0,311;Q3;32;110;333;2344;403;333;1,35;21,31;39,13;0;United States;Northern America;"Springer International Publishing AG";"1993-2026";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +16817;6400153166;"Optoelectronics Letters";journal;"16731905, 19935013";"Springer Verlag";No;No;0,311;Q3;25;112;371;2705;573;371;1,78;24,15;32,49;0;Germany;Western Europe;"Springer Verlag";"2006-2026";"Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +16818;3900148512;"Palaeontographica, Abteilung A: Palaozoologie - Stratigraphie";book series;"25098373, 03750442";"Schweizerbart Science Publishers";No;No;0,311;Q3;43;15;48;1208;72;47;1,60;80,53;27,78;0;Germany;Western Europe;"Schweizerbart Science Publishers";"1996-2025";"Paleontology (Q3); Stratigraphy (Q3)";"Earth and Planetary Sciences" +16819;13251;"Pigment and Resin Technology";journal;"03699420";"Emerald Group Publishing Ltd.";No;No;0,311;Q3;43;148;267;6027;509;266;1,95;40,72;40,78;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1972-2026";"Materials Chemistry (Q3); Surfaces, Coatings and Films (Q3)";"Materials Science" +16820;12700154733;"Postepy w Kardiologii Interwencyjnej";journal;"18974295, 17349338";"Termedia Publishing House Ltd.";Yes;No;0,311;Q3;23;116;241;2052;274;211;1,13;17,69;31,13;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2008-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +16821;16163;"Proceedings of the Institution of Civil Engineers: Structures and Buildings";journal;"09650911, 17517702";"ICE Publishing";No;No;0,311;Q3;55;26;231;949;250;192;1,01;36,50;20,00;0;United Kingdom;Western Europe;"ICE Publishing";"1992-2025";"Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +16822;21100269622;"IEEE International Conference on High Performance Switching and Routing, HPSR";conference and proceedings;"23255609, 23255595";"IEEE Computer Society";No;No;0,311;-;22;47;125;754;168;119;1,58;16,04;17,47;0;United States;Northern America;"IEEE Computer Society";"2000, 2002-2003, 2013, 2016-2025";"Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering" +16823;21100201755;"Bogoslovni Vestnik";journal;"15812987, 00065722";"Univerza v Ljubljani";Yes;Yes;0,310;Q1;16;41;209;1479;93;205;0,51;36,07;47,92;0;Slovenia;Eastern Europe;"Univerza v Ljubljani";"2011-2025";"Religious Studies (Q1)";"Arts and Humanities" +16824;11700154305;"Management and Organizational History";journal;"17449359, 17449367";"Taylor and Francis Ltd.";No;No;0,310;Q1;31;31;39;2157;75;38;1,71;69,58;31,67;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"History (Q1); Business and International Management (Q3); Strategy and Management (Q3)";"Arts and Humanities; Business, Management and Accounting" +16825;17018;"New Perspectives on Turkey";journal;"08966346, 13053299";"Cambridge University Press";No;No;0,310;Q1;26;25;52;1503;70;42;0,89;60,12;47,06;0;United Kingdom;Western Europe;"Cambridge University Press";"1993, 1995, 1999-2002, 2008-2026";"Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2); Economics and Econometrics (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +16826;21101021171;"Rubrica Contemporanea";journal;"20145748";"Universitat Autonoma de Barcelona";Yes;Yes;0,310;Q1;4;34;98;1990;32;90;0,31;58,53;41,03;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2019-2025";"History (Q1)";"Arts and Humanities" +16827;21100836179;"Asia and the Pacific Policy Studies";journal;"20502680";"John Wiley and Sons Ltd";Yes;No;0,310;Q2;36;48;49;2423;81;49;1,74;50,48;42,48;2;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2014-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2); Public Administration (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +16828;19900192027;"Horticultural Science and Technology";journal;"24658588, 12268763";"Korean Society for Horticultural Science";Yes;No;0,310;Q2;23;61;182;2462;239;182;1,45;40,36;32,37;0;South Korea;Asiatic Region;"Korean Society for Horticultural Science";"2008, 2012-2025";"Horticulture (Q2)";"Agricultural and Biological Sciences" +16829;3300147702;"Journal of Progressive Human Services";journal;"10428232, 15407616";"Routledge";No;No;0,310;Q2;30;55;50;1985;63;40;0,92;36,09;63,86;0;United States;Northern America;"Routledge";"1987, 1990-2026";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16830;16730;"Aquatic Ecosystem Health and Management";journal;"15394077, 14634988";"Michigan State University Press";No;No;0,310;Q3;53;22;132;1229;122;116;0,80;55,86;47,22;0;United States;Northern America;"Michigan State University Press";"1998-2025";"Aquatic Science (Q3); Ecology (Q3); Management, Monitoring, Policy and Law (Q3)";"Agricultural and Biological Sciences; Environmental Science" +16831;19900192736;"Brazilian Journal of Probability and Statistics";journal;"01030752";"Associacao Brasileira de Estatistica";Yes;No;0,310;Q3;26;20;108;648;74;107;0,66;32,40;20,00;0;Brazil;Latin America;"Associacao Brasileira de Estatistica";"2009-2025";"Statistics and Probability (Q3)";"Mathematics" +16832;21100888509;"Cakrawala Pendidikan";journal;"24428620, 02161370";"Universitas Negeri Yogyakarta (Yogyakarta State University)";Yes;No;0,310;Q3;19;66;197;2660;332;197;1,56;40,30;38,46;0;Indonesia;Asiatic Region;"Universitas Negeri Yogyakarta (Yogyakarta State University)";"2018-2025";"Education (Q3)";"Social Sciences" +16833;21100901222;"Concussion";journal;"20563299";"Future Medicine Ltd.";Yes;No;0,310;Q3;15;0;19;0;22;17;0,91;0,00;0,00;0;United Kingdom;Western Europe;"Future Medicine Ltd.";"2016-2023";"Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +16834;21101184660;"EAI Endorsed Transactions on Internet of Things";journal;"24141399";"European Alliance for Innovation";Yes;Yes;0,310;Q3;13;64;167;2499;492;167;2,95;39,05;30,07;0;Belgium;Western Europe;"European Alliance for Innovation";"2023-2025";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Engineering (miscellaneous) (Q3); Hardware and Architecture (Q3); Information Systems (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Computer Science; Engineering" +16835;19700201647;"Egyptian Rheumatologist";journal;"11101164, 20902433";"Egyptian Society for Joint Diseases and Arthritis";Yes;No;0,310;Q3;24;46;177;1769;190;174;0,91;38,46;64,33;0;Egypt;Africa/Middle East;"Egyptian Society for Joint Diseases and Arthritis";"2011-2026";"Rheumatology (Q3)";"Medicine" +16836;21100219310;"Einstein (Sao Paulo, Brazil)";journal;"16794508, 23176385";"Instituto de Ensino e Pesquisa Albert Einstein";Yes;Yes;0,310;Q3;38;161;376;0;364;337;0,91;0,00;45,33;0;Brazil;Latin America;"Instituto de Ensino e Pesquisa Albert Einstein";"2012-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +16837;21100778885;"Environmental Research, Engineering and Management";journal;"20292139, 13921649";"Kaunas University of Technology";Yes;No;0,310;Q3;19;46;133;1757;214;121;1,40;38,20;40,58;0;Lithuania;Eastern Europe;"Kaunas University of Technology";"2015-2025";"Environmental Engineering (Q3); Management, Monitoring, Policy and Law (Q3); Pollution (Q3); Renewable Energy, Sustainability and the Environment (Q3); Waste Management and Disposal (Q3)";"Energy; Environmental Science" +16838;27649;"Geografie-Sbornik CGS";journal;"12120014";"Czech Geographical Society";No;No;0,310;Q3;29;19;55;1252;67;55;1,03;65,89;34,09;0;Czech Republic;Eastern Europe;"Czech Geographical Society";"1992-2025";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +16839;21101020023;"International Journal of Cartography";journal;"23729341";"Taylor and Francis Ltd.";No;No;0,310;Q3;18;62;93;2283;133;83;1,49;36,82;36,28;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Computers in Earth Sciences (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +16840;4700152299;"Journal of Addictions Nursing";journal;"15487148, 10884602";"Wolters Kluwer Health";No;No;0,310;Q3;29;51;165;1686;146;153;0,88;33,06;73,83;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1989-2001, 2003-2025";"Psychiatry and Mental Health (Q3)";"Medicine" +16841;5000157110;"Journal of Ecology and Rural Environment";journal;"16734831";"Editorial Office of Journal of Ecology and Rural Environment";No;No;0,310;Q3;26;131;507;5510;710;507;1,33;42,06;41,39;0;China;Asiatic Region;"Editorial Office of Journal of Ecology and Rural Environment";"2006-2025";"Agronomy and Crop Science (Q3); Development (Q3)";"Agricultural and Biological Sciences; Social Sciences" +16842;24356;"Journal of Economics/ Zeitschrift fur Nationalokonomie";journal;"16177134, 09318658";"Springer";No;No;0,310;Q3;40;36;96;1409;86;96;1,03;39,14;21,54;1;Austria;Western Europe;"Springer";"1930-1939, 1941-1944, 1948-2026";"Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +16843;21101023099;"Journal of Innovations in Cardiac Rhythm Management";journal;"21563977, 21563993";"MediaSphere Medical LLC";No;No;0,310;Q3;12;60;246;1095;181;190;0,72;18,25;21,40;0;United States;Northern America;"MediaSphere Medical LLC";"2016, 2019-2026";"Cardiology and Cardiovascular Medicine (Q3); Physiology (medical) (Q3)";"Medicine" +16844;21101049606;"Journal of Renewable Energy and Environment";journal;"24237469, 24235547";"Materials and Energy Research Center";Yes;Yes;0,310;Q3;14;40;139;1768;267;139;1,90;44,20;28,57;0;Iran;Middle East;"Materials and Energy Research Center";"2019-2026";"Energy Engineering and Power Technology (Q3); Engineering (miscellaneous) (Q3); Environmental Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Engineering; Environmental Science" +16845;4700152296;"Journal of Teaching in International Business";journal;"08975930, 15286991";"Routledge";No;No;0,310;Q3;30;15;32;585;57;26;1,47;39,00;68,00;0;United States;Northern America;"Routledge";"1989-2025";"Business, Management and Accounting (miscellaneous) (Q3); Education (Q3)";"Business, Management and Accounting; Social Sciences" +16846;20536;"Materials Research Innovations";journal;"1433075X, 14328917";"Maney Publishing";No;No;0,310;Q3;59;71;170;3203;341;170;2,08;45,11;29,35;0;United Kingdom;Western Europe;"Maney Publishing";"1997-2026";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +16847;4800154001;"Nursing Management";journal;"20478976, 13545760";"RCN Publishing Company Ltd.";No;No;0,310;Q3;25;39;128;650;112;116;0,68;16,67;74,07;0;United Kingdom;Western Europe;"RCN Publishing Company Ltd.";"1994-2026";"Leadership and Management (Q3)";"Nursing" +16848;17080;"Oil Shale";journal;"0208189X, 17367492";"Estonian Academy Publishers";Yes;No;0,310;Q3;35;18;52;955;77;52;1,71;53,06;32,94;0;Estonia;Eastern Europe;"Estonian Academy Publishers";"1996-2004, 2006-2026";"Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences; Energy" +16849;21100820130;"Physical Chemistry Research";journal;"23452625, 23225521";"Iranian Chemical Society";No;No;0,310;Q3;24;46;193;2210;422;193;2,21;48,04;34,35;0;Iran;Middle East;"Iranian Chemical Society";"2013-2026";"Fluid Flow and Transfer Processes (Q3); Physical and Theoretical Chemistry (Q3); Statistical and Nonlinear Physics (Q3)";"Chemical Engineering; Chemistry; Physics and Astronomy" +16850;21100201511;"Plasma and Fusion Research";journal;"18806821";"Japan Society of Plasma Science and Nuclear Fusion Research";No;No;0,310;Q3;24;52;225;833;127;225;0,45;16,02;15,00;0;Japan;Asiatic Region;"Japan Society of Plasma Science and Nuclear Fusion Research";"2006-2026";"Condensed Matter Physics (Q3)";"Physics and Astronomy" +16851;21100417501;"Prabandhan: Indian Journal of Management";journal;"09752854";"Associated Management Consultants Pvt. Ltd.";No;No;0,310;Q3;19;49;133;2563;304;133;2,48;52,31;41,35;0;India;Asiatic Region;"Associated Management Consultants Pvt. Ltd.";"2010-2025";"Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting" +16852;25922;"Qiche Gongcheng/Automotive Engineering";journal;"1000680X";"SAE-China";No;No;0,310;Q3;28;229;661;5823;1016;661;1,38;25,43;27,88;0;China;Asiatic Region;"SAE-China";"2001-2003, 2010-2026";"Automotive Engineering (Q3)";"Engineering" +16853;19582;"Studies in Health Technology and Informatics";book series;"09269630, 18798365";"IOS Press BV";No;No;0,310;Q3;76;1528;3350;13309;3248;3276;0,94;8,71;44,32;0;Netherlands;Western Europe;"IOS Press BV";"1991, 1993-2026";"Biomedical Engineering (Q3); Health Information Management (Q3); Health Informatics (Q4)";"Engineering; Health Professions; Medicine" +16854;17768;"Ugol";journal;"24128333, 00415790";"Ugol'";No;No;0,310;Q3;19;231;555;3279;363;555;0,68;14,19;52,34;0;Russian Federation;Eastern Europe;"Ugol'";"1970, 1974, 1976-1988, 2001-2005, 2017-2026";"Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Geochemistry and Petrology (Q3); Geotechnical Engineering and Engineering Geology (Q3); Mechanical Engineering (Q3)";"Earth and Planetary Sciences; Energy; Engineering" +16855;19792;"Zeitschrift fur Rheumatologie";journal;"14351250, 03401855";"Springer Medizin";No;No;0,310;Q3;45;157;414;4324;402;327;1,13;27,54;38,85;0;Germany;Western Europe;"Springer Medizin";"1974-2026";"Rheumatology (Q3)";"Medicine" +16856;21100204301;"European Signal Processing Conference";conference and proceedings;"22195491";"European Signal Processing Conference, EUSIPCO";No;No;0,310;-;61;553;1408;12047;1519;1405;0,96;21,78;21,83;0;Poland;Eastern Europe;"European Signal Processing Conference, EUSIPCO";"1996, 1998, 2000, 2002, 2004, 2006-2016, 2018-2025";"Electrical and Electronic Engineering; Signal Processing";"Computer Science; Engineering" +16857;18336;"Counseling and Values";journal;"01607960, 2161007X";"Brill Academic Publishers";No;No;0,309;Q1;41;13;31;764;26;31;0,54;58,77;77,42;0;United States;Northern America;"Brill Academic Publishers";"1973-2025";"Religious Studies (Q1); Clinical Psychology (Q3); Social Psychology (Q3)";"Arts and Humanities; Psychology" +16858;16300154716;"Journal for the Study of Religions and Ideologies";journal;"15830039";"Universitatea Babes-Bolyai, Catedra de Filosofie Sistematica";Yes;No;0,309;Q1;16;15;79;657;46;79;0,67;43,80;27,78;0;Romania;Eastern Europe;"Universitatea Babes-Bolyai, Catedra de Filosofie Sistematica";"2002-2025";"Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities" +16859;21101209979;"Journal of Law and Legal Reform";journal;"27150968, 27150941";"Universitas Negeri Semarang";Yes;Yes;0,309;Q1;7;63;99;3210;140;99;1,41;50,95;38,52;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2023-2026";"History (Q1); Law (Q2); Sociology and Political Science (Q2); Public Administration (Q3)";"Arts and Humanities; Social Sciences" +16860;30015;"Journal of Multicultural Counseling and Development";journal;"21611912, 08838534";"John Wiley and Sons Inc";No;No;0,309;Q1;54;27;69;1049;84;68;1,26;38,85;59,65;0;United States;Northern America;"John Wiley and Sons Inc";"1985-2026";"Cultural Studies (Q1); Applied Psychology (Q3)";"Psychology; Social Sciences" +16861;29461;"Scandinavian Economic History Review";journal;"03585522, 17502837";"Taylor and Francis Ltd.";No;No;0,309;Q1;21;18;45;1273;49;44;1,24;70,72;28,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1953-2026";"History (Q1); Arts and Humanities (miscellaneous) (Q2); Aerospace Engineering (Q3); Geography, Planning and Development (Q3)";"Arts and Humanities; Engineering; Social Sciences" +16862;21100798107;"Slavia Centralis";journal;"23858753, 18556302";"University of Maribor";Yes;Yes;0,309;Q1;6;9;114;370;16;113;0,15;41,11;50,00;0;Slovenia;Eastern Europe;"University of Maribor";"2016-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +16863;21101193869;"Studia Hegeliana";journal;"2792176X, 24440809";"Universidad de Malaga";Yes;Yes;0,309;Q1;5;11;25;294;38;25;2,08;26,73;36,36;0;Spain;Western Europe;"Universidad de Malaga";"2019-2025";"Philosophy (Q1)";"Arts and Humanities" +16864;21100395926;"Asian Journal of Law and Society";journal;"20529023, 20529015";"Cambridge University Press";No;No;0,309;Q2;20;40;71;2874;85;68;1,02;71,85;36,36;0;United Kingdom;Western Europe;"Cambridge University Press";"2014-2026";"Law (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16865;21100310006;"Boletin de la Asociacion Internacional de Derecho Cooperativo";journal;"1134993X, 23864893";"University of Deusto";Yes;Yes;0,309;Q2;9;16;52;791;47;52;1,00;49,44;52,63;0;Spain;Western Europe;"University of Deusto";"2013-2025";"Law (Q2)";"Social Sciences" +16866;5800169372;"Brazilian Journal of Political Economy";journal;"18094538, 01013157";"Universidade de Sao Paulo. Museu de Zoologia";Yes;Yes;0,309;Q2;26;26;151;993;130;150;0,70;38,19;22,50;0;Brazil;Latin America;"Universidade de Sao Paulo. Museu de Zoologia";"2000, 2005, 2007-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Economics, Econometrics and Finance; Social Sciences" +16867;6500153126;"History and Technology";journal;"07341512, 14772620";"Routledge";No;No;0,309;Q2;33;15;55;835;39;51;0,56;55,67;63,16;0;United Kingdom;Western Europe;"Routledge";"1983-1988, 1990-2026";"History and Philosophy of Science (Q2)";"Arts and Humanities" +16868;21101041417;"Indian Economic Review";journal;"00194670, 25201778";"Editorial Office, Indian Economic Review";No;No;0,309;Q2;11;10;97;476;88;93;0,74;47,60;34,78;0;India;Asiatic Region;"Editorial Office, Indian Economic Review";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +16869;21100899296;"Innovative Marketing";journal;"18142427, 18166326";"LLC CPC Business Perspectives";Yes;No;0,309;Q2;28;95;246;4708;594;246;2,43;49,56;33,78;0;Ukraine;Eastern Europe;"LLC CPC Business Perspectives";"2005-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Law (Q2); Management of Technology and Innovation (Q3); Marketing (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +16870;27217;"International Social Science Journal";journal;"00208701, 14682451";"Wiley-Blackwell Publishing Ltd";No;No;0,309;Q2;59;76;198;5226;359;196;1,67;68,76;36,84;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1973-1975, 1978-2006, 2008-2014, 2016-2026";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +16871;21100894552;"Journal of Advertising Education";journal;"10980482, 25161873";"SAGE Publications Ltd";No;No;0,309;Q2;10;15;33;284;32;25;1,19;18,93;65,00;0;United States;Northern America;"SAGE Publications Ltd";"2015-2026";"Communication (Q2); Education (Q3); Marketing (Q3)";"Business, Management and Accounting; Social Sciences" +16872;4700152829;"Journal of Library and Information Services in Distance Learning";journal;"15332918, 1533290X";"Routledge";No;No;0,309;Q2;19;12;40;424;31;35;1,07;35,33;39,29;0;United States;Northern America;"Routledge";"2004-2007, 2009-2025";"Library and Information Sciences (Q2); E-learning (Q3)";"Social Sciences" +16873;5800207749;"Nordic Journal of Linguistics";journal;"03325865, 15024717";"Cambridge University Press";No;No;0,309;Q2;21;24;59;1256;49;51;0,76;52,33;72,92;0;United Kingdom;Western Europe;"Cambridge University Press";"1978-2026";"Linguistics and Language (Q2)";"Social Sciences" +16874;21100900267;"Teflin Journal";journal;"23562641, 0215773X";"Association for the teaching of English as a Foreign Language in Indonesia";Yes;Yes;0,309;Q2;15;17;57;903;95;57;1,26;53,12;46,34;0;Indonesia;Asiatic Region;"Association for the teaching of English as a Foreign Language in Indonesia";"2018-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +16875;87487;"Zhen Ci Yan Jiu";journal;"10000607";"";No;No;0,309;Q2;19;175;470;0;606;470;1,32;0,00;47,67;0;China;Asiatic Region;"";"1985-1996, 2007-2026";"Complementary and Alternative Medicine (Q2)";"Medicine" +16876;11300153723;"Bollettino dell'Unione Matematica Italiana";journal;"21982759, 19726724";"Springer International Publishing AG";No;No;0,309;Q3;31;105;120;3817;89;118;0,69;36,35;26,47;0;Switzerland;Western Europe;"Springer International Publishing AG";"2008-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16877;16378;"Chemical and Biochemical Engineering Quarterly";journal;"18465153, 03529568";"Assoc. of Chemists and Chemical Engineers of Croatia";Yes;Yes;0,309;Q3;56;13;81;660;116;81;1,29;50,77;46,34;0;Croatia;Eastern Europe;"Assoc. of Chemists and Chemical Engineers of Croatia";"1987, 1996-2026";"Chemistry (miscellaneous) (Q3); Process Chemistry and Technology (Q3); Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry" +16878;21100824878;"Clinical Practice in Pediatric Psychology";journal;"21694826, 21694834";"SAGE Publications Ltd";No;No;0,309;Q3;27;0;127;0;145;125;1,12;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2013-2025";"Applied Psychology (Q3); Clinical Psychology (Q3); Developmental and Educational Psychology (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine; Psychology" +16879;28454;"COMPEL - The International Journal for Computation and Mathematics in Electrical and Electronic Engineering";journal;"03321649";"Emerald Group Publishing Ltd.";No;No;0,309;Q3;39;80;342;1927;412;332;1,17;24,09;17,92;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1982-2026";"Applied Mathematics (Q3); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering; Mathematics" +16880;21964;"Czech Journal of Food Sciences";journal;"12121800, 18059317";"Czech Academy of Agricultural Sciences";Yes;No;0,309;Q3;61;47;150;1566;251;150;1,54;33,32;50,53;0;Czech Republic;Eastern Europe;"Czech Academy of Agricultural Sciences";"1999-2025";"Food Science (Q3)";"Agricultural and Biological Sciences" +16881;19700171106;"Dongli Gongcheng Xuebao/Journal of Chinese Society of Power Engineering";journal;"16747607";"Shanghai Power Equipment Research Institute";No;No;0,309;Q3;24;239;591;5840;872;591;1,42;24,44;29,89;0;China;Asiatic Region;"Shanghai Power Equipment Research Institute";"2010-2025";"Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)";"Energy; Engineering" +16882;25022;"IEEE Pervasive Computing";journal;"15361268, 15582590";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,309;Q3;112;39;126;721;273;111;2,00;18,49;29,55;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2002-2026";"Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Software (Q3)";"Computer Science" +16883;18100156705;"Innovation Journal";journal;"17153816";"Innovation Journal";No;No;0,309;Q3;23;6;33;257;36;32;1,37;42,83;54,55;0;Canada;Northern America;"Innovation Journal";"2009-2025";"Public Administration (Q3)";"Social Sciences" +16884;4800152406;"Iranian Journal of Immunology";journal;"17351383, 1735367X";"Shiraz University of Medical Sciences";Yes;No;0,309;Q3;30;33;120;1255;135;115;1,12;38,03;41,10;0;Iran;Middle East;"Shiraz University of Medical Sciences";"2006-2025";"Medicine (miscellaneous) (Q3); Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +16885;20576;"Journal of Aquatic Food Product Technology";journal;"15470636, 10498850";"Taylor and Francis Ltd.";No;No;0,309;Q3;48;46;198;2502;308;194;1,32;54,39;40,09;0;United States;Northern America;"Taylor and Francis Ltd.";"1992-2026";"Aquatic Science (Q3); Food Science (Q3)";"Agricultural and Biological Sciences" +16886;21101219666;"Journal of Data Science";journal;"1680743X, 16838602";"Center for Applied Statistics, School of Statistics, Renmin University of China";Yes;Yes;0,309;Q3;11;47;120;1347;111;115;0,70;28,66;38,14;0;China;Asiatic Region;"Center for Applied Statistics, School of Statistics, Renmin University of China";"2020-2025";"Computer Science Applications (Q3); Statistics and Probability (Q3)";"Computer Science; Mathematics" +16887;21101274777;"Journal of Interpretation Research";journal;"10925872, 26929376";"SAGE Publications Inc.";No;No;0,309;Q3;4;11;24;591;28;18;1,50;53,73;58,33;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2021-2025";"Education (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +16888;21100798103;"Journal of Mathematics";journal;"23144785, 23144629";"John Wiley and Sons Ltd";Yes;No;0,309;Q3;36;250;1136;7579;1731;1136;1,36;30,32;30,33;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16889;29808;"Journal of the College of Physicians and Surgeons Pakistan";journal;"16817168, 1022386X";"College of Physicians and Surgeons Pakistan";Yes;No;0,309;Q3;45;519;1263;8171;1065;1017;0,77;15,74;44,10;0;Pakistan;Asiatic Region;"College of Physicians and Surgeons Pakistan";"1996-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +16890;17600155207;"Mediterranean Journal of Nutrition and Metabolism";journal;"19737998, 1973798X";"SAGE Publications Ltd";No;No;0,309;Q3;27;27;98;1310;126;97;1,75;48,52;54,49;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Endocrinology, Diabetes and Metabolism (Q3); Food Science (Q3); Nutrition and Dietetics (Q3)";"Agricultural and Biological Sciences; Medicine; Nursing" +16891;21101278665;"Onco Therapeutics";journal;"26944642, 26944650";"Begell House Inc.";No;No;0,309;Q3;3;0;14;0;18;12;0,00;0,00;0,00;0;United States;Northern America;"Begell House Inc.";"2021-2022";"Biotechnology (Q3); Biochemistry (Q4); Genetics (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology" +16892;7100153120;"Pollack Periodica";journal;"17881994, 17883911";"Akademiai Kiado ZRt.";No;No;0,309;Q3;18;103;248;2389;287;248;1,10;23,19;31,54;0;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"2007-2026";"Civil and Structural Engineering (Q3); Computer Science Applications (Q3); Materials Science (miscellaneous) (Q3); Modeling and Simulation (Q3); Software (Q3)";"Computer Science; Engineering; Materials Science; Mathematics" +16893;5700168589;"Public Budgeting and Finance";journal;"02751100, 15405850";"John Wiley and Sons Inc";No;No;0,309;Q3;42;33;56;1876;61;56;0,74;56,85;34,33;2;United States;Northern America;"John Wiley and Sons Inc";"1981-2026";"Economics and Econometrics (Q3); Finance (Q3); Public Administration (Q3)";"Economics, Econometrics and Finance; Social Sciences" +16894;21101233956;"Qualitative Research in Medicine and Healthcare";journal;"25322044";"KeAi Communications Co.";Yes;Yes;0,309;Q3;7;15;52;548;55;42;1,18;36,53;75,00;0;Netherlands;Western Europe;"KeAi Communications Co.";"2018, 2020-2025";"Health Policy (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +16895;21100910622;"Reproductive and Developmental Medicine";journal;"20962924, 25898728";"Lippincott Williams and Wilkins";Yes;Yes;0,309;Q3;12;41;112;1741;129;105;1,17;42,46;43,98;0;India;Asiatic Region;"Lippincott Williams and Wilkins";"2017-2026";"Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine" +16896;5000159706;"Revista Electronica de Investigacion Educativa";journal;"16074041";"Universidad Autonoma de Baja California";Yes;Yes;0,309;Q3;24;15;87;600;106;87;1,17;40,00;57,14;0;Mexico;Latin America;"Universidad Autonoma de Baja California";"2006-2026";"Education (Q3)";"Social Sciences" +16897;21100305241;"World Journal of Engineering";journal;"17085284";"Emerald Group Publishing Ltd.";No;No;0,309;Q3;30;192;265;8913;570;262;2,15;46,42;20,34;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2014-2026";"Civil and Structural Engineering (Q3); Electrical and Electronic Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Earth and Planetary Sciences; Engineering" +16898;21101076301;"University Library at a New Stage of Social Communications Development. Conference Proceedings";conference and proceedings;"27070476";"Dnipro National University of Railway Transport named after Academician V. Lazaryan";Yes;No;0,309;-;7;34;87;560;52;82;0,53;16,47;76,92;0;Ukraine;Eastern Europe;"Dnipro National University of Railway Transport named after Academician V. Lazaryan";"2019-2024";"Library and Information Sciences";"Social Sciences" +16899;21100945763;"International Journal of Education and the Arts";journal;"15298094";"Pennsylvania State University Libraries";Yes;Yes;0,308;Q1;26;15;74;667;88;72;1,19;44,47;72,22;0;United States;Northern America;"Pennsylvania State University Libraries";"2004-2025";"Literature and Literary Theory (Q1); Music (Q1); Visual Arts and Performing Arts (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +16900;21100876251;"Vestnik Sankt-Peterburgskogo Universiteta, Filosofiia i Konfliktologiia";journal;"25422278, 25419382";"Saint Petersburg State University";Yes;No;0,308;Q1;7;37;171;807;44;171;0,22;21,81;41,82;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2017-2025";"Cultural Studies (Q1); Philosophy (Q1); Religious Studies (Q1); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +16901;21101236065;"Aging Pathobiology and Therapeutics";journal;"26901803";"Ant Publishing Corporation";No;No;0,308;Q2;10;37;86;1861;95;65;1,19;50,30;39,81;0;United States;Northern America;"Ant Publishing Corporation";"2019-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Drug Discovery (Q3); Cellular and Molecular Neuroscience (Q4); Geriatrics and Gerontology (Q4)";"Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +16902;21101230586;"Applied Fruit Science";journal;"29482631, 29482623";"Springer Science and Business Media Deutschland GmbH";No;No;0,308;Q2;8;471;199;22209;377;199;1,89;47,15;31,41;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2024-2026";"Horticulture (Q2)";"Agricultural and Biological Sciences" +16903;12690;"Information Research";journal;"13681613";"University of Boras";Yes;Yes;0,308;Q2;61;200;208;7430;283;197;1,41;37,15;55,39;0;Sweden;Western Europe;"University of Boras";"1996-2026";"Library and Information Sciences (Q2)";"Social Sciences" +16904;144918;"International Journal of Osteopathic Medicine";journal;"17460689, 18780164";"Elsevier Ltd";No;No;0,308;Q2;32;57;123;2577;154;102;1,25;45,21;36,55;0;United Kingdom;Western Europe;"Elsevier Ltd";"2005-2026";"Complementary and Alternative Medicine (Q2)";"Medicine" +16905;5600152911;"Irish Journal of Sociology";journal;"20505280, 07916035";"SAGE Publications Ltd";No;No;0,308;Q2;25;21;62;1018;94;55;1,72;48,48;83,78;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1996-2007, 2009-2026";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +16906;21100830426;"Journal of Criminological Research, Policy and Practice";journal;"2056385X, 20563841";"Emerald Group Publishing Ltd.";No;No;0,308;Q2;17;30;50;1806;64;48;1,45;60,20;58,02;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2015-2025";"Law (Q2); Sociology and Political Science (Q2); Health (social science) (Q3); Public Administration (Q3); Social Psychology (Q3)";"Psychology; Social Sciences" +16907;21100448566;"Journal of Information Technology Teaching Cases";journal;"20438869";"Springer International Publishing AG";No;No;0,308;Q2;15;142;128;2819;225;125;1,89;19,85;31,71;1;Switzerland;Western Europe;"Springer International Publishing AG";"2014-2026";"Library and Information Sciences (Q2); Education (Q3)";"Social Sciences" +16908;21101136256;"L2 Journal";journal;"19450222";"eScholarship Publishing";Yes;Yes;0,308;Q2;6;25;32;941;47;31;1,47;37,64;67,86;0;United States;Northern America;"eScholarship Publishing";"2011-2012, 2014, 2016, 2018, 2020, 2022-2025";"Linguistics and Language (Q2)";"Social Sciences" +16909;17874;"Medical Problems of Performing Artists";journal;"19382766, 08851158";"Science and Medicine Inc.";No;No;0,308;Q2;46;17;82;538;65;80;0,87;31,65;53,33;0;United States;Northern America;"Science and Medicine Inc.";"1986, 1996-2025";"History and Philosophy of Science (Q2); Medicine (miscellaneous) (Q3)";"Arts and Humanities; Medicine" +16910;5800169158;"Public Works Management and Policy";journal;"1087724X, 15527549";"SAGE Publications Inc.";No;No;0,308;Q2;33;25;79;1479;123;59;1,53;59,16;30,61;0;United States;Northern America;"SAGE Publications Inc.";"1996-2026";"Sociology and Political Science (Q2); Business, Management and Accounting (miscellaneous) (Q3); Public Administration (Q3)";"Business, Management and Accounting; Social Sciences" +16911;21101173092;"Vestnik Volgogradskogo Gosudarstvennogo Universiteta. Seriya 2. Yazykoznanie";journal;"24091979, 19989911";"Volgograd State University";Yes;Yes;0,308;Q2;5;58;251;1689;75;251;0,38;29,12;71,58;0;Russian Federation;Eastern Europe;"Volgograd State University";"2022-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +16912;21100244622;"Botanical Sciences";journal;"20074298, 20074476";"Sociedad Botanica de Mexico, A.C";Yes;No;0,308;Q3;29;64;209;4533;275;208;1,27;70,83;39,13;0;Mexico;Latin America;"Sociedad Botanica de Mexico, A.C";"1999-2000, 2012-2026";"Plant Science (Q3)";"Agricultural and Biological Sciences" +16913;19700182036;"Case Reports in Dermatology";journal;"16626567";"S. Karger AG";Yes;No;0,308;Q3;26;93;143;1314;136;143;0,74;14,13;49,31;0;Switzerland;Western Europe;"S. Karger AG";"2010-2026";"Dermatology (Q3)";"Medicine" +16914;16090;"History of Psychiatry";journal;"0957154X, 17402360";"SAGE Publications Ltd";No;No;0,308;Q3;34;21;96;1112;63;93;0,64;52,95;30,95;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1990-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +16915;4600151527;"Infectious Disorders - Drug Targets";journal;"22123989, 18715265";"Bentham Science Publishers";No;No;0,308;Q3;64;91;263;4896;356;226;1,52;53,80;46,59;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2025";"Medicine (miscellaneous) (Q3); Microbiology (medical) (Q3); Pharmacology (Q3); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +16916;21101111532;"Innovative Biosystems and Bioengineering";journal;"2616177X";"National Technical University of Ukraine Igor Sikorsky Kyiv Polytechnic Institute";Yes;No;0,308;Q3;8;21;56;871;56;56;0,98;41,48;49,35;0;Ukraine;Eastern Europe;"National Technical University of Ukraine Igor Sikorsky Kyiv Polytechnic Institute";"2019-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biomedical Engineering (Q3); Biotechnology (Q3); Computer Science Applications (Q3); Biochemistry (Q4); Bioengineering (Q4); Biomaterials (Q4); Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Computer Science; Engineering; Materials Science" +16917;21100223336;"International Journal of Human Capital and Information Technology Professionals";journal;"19473486, 19473478";"IGI Publishing";No;No;0,308;Q3;19;7;30;500;70;30;0,33;71,43;46,15;0;United States;Northern America;"IGI Publishing";"2010-2025";"Computer Science (miscellaneous) (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Computer Science" +16918;21100992407;"International Journal of Modern Education and Computer Science";journal;"2075017X, 20750161";"Modern Education and Computer Science Press";Yes;No;0,308;Q3;22;59;116;2319;314;116;3,23;39,31;33,93;1;China;Asiatic Region;"Modern Education and Computer Science Press";"2019-2026";"Computer Science Applications (Q3); Education (Q3)";"Computer Science; Social Sciences" +16919;21100828753;"Journal of Business Cycle Research";journal;"25097970, 25097962";"Springer International Publishing AG";No;No;0,308;Q3;11;13;44;470;57;43;1,37;36,15;30,43;0;Switzerland;Western Europe;"Springer International Publishing AG";"2016-2026";"Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Statistics, Probability and Uncertainty (Q3)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +16920;19700186892;"Journal of Discrete Mathematical Sciences and Cryptography";journal;"09720529";"Taru Publications";No;No;0,308;Q3;35;280;594;4971;867;581;1,44;17,75;39,50;0;India;Asiatic Region;"Taru Publications";"1998-2026";"Algebra and Number Theory (Q3); Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +16921;21100890669;"Journal of Engineering Education Transformations";journal;"23941707, 23492473";"Rajarambapu Institute Of Technology";No;No;0,308;Q3;18;174;576;5112;709;567;1,18;29,38;40,22;0;India;Asiatic Region;"Rajarambapu Institute Of Technology";"2018-2026";"Development (Q3); Education (Q3); Engineering (miscellaneous) (Q3)";"Engineering; Social Sciences" +16922;145537;"Journal of Universal Computer Science";journal;"0948695X, 09486968";"Technische Universitat Graz from Austria";Yes;Yes;0,308;Q3;61;82;220;2996;335;188;1,37;36,54;26,98;0;Austria;Western Europe;"Technische Universitat Graz from Austria";"1996-2025";"Computer Science (miscellaneous) (Q3); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +16923;28598;"Journal of X-Ray Science and Technology";journal;"08953996, 10959114";"SAGE Publications Ltd";No;No;0,308;Q3;44;77;262;0;464;262;1,76;0,00;36,25;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1989-1998, 2001-2026";"Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Instrumentation (Q3); Radiation (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Engineering; Medicine; Physics and Astronomy" +16924;20269;"Microbiology (Russian Federation)";journal;"16083237, 00262617";"Pleiades Publishing";No;No;0,308;Q3;54;138;350;5011;451;349;1,06;36,31;59,64;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Applied Microbiology and Biotechnology (Q3); Microbiology (Q4)";"Immunology and Microbiology" +16925;21100228108;"Minimally Invasive Surgery";journal;"20901453, 20901445";"John Wiley and Sons Ltd";Yes;No;0,308;Q3;29;0;14;0;23;14;1,50;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2010-2024";"Surgery (Q3)";"Medicine" +16926;4900152609;"New Solutions";journal;"10482911, 15413772";"SAGE Publications Ltd";No;No;0,308;Q3;34;44;89;1805;92;72;0,95;41,02;66,67;2;United States;Northern America;"SAGE Publications Ltd";"1996-2026";"Health, Toxicology and Mutagenesis (Q3); Public Health, Environmental and Occupational Health (Q3)";"Environmental Science; Medicine" +16927;144654;"Nutrition and Food Science";journal;"17586917, 00346659";"Emerald Publishing";No;No;0,308;Q3;48;106;293;5281;501;291;1,84;49,82;60,27;0;United Kingdom;Western Europe;"Emerald Publishing";"1971-2026";"Food Science (Q3); Nutrition and Dietetics (Q3)";"Agricultural and Biological Sciences; Nursing" +16928;21101364775;"Proceedings of the International Conference on Educational Data Mining";book series;"29602866";"International Educational Data Mining Society";No;No;0,308;Q3;10;89;331;2967;433;328;1,93;33,34;31,49;0;United States;Northern America;"International Educational Data Mining Society";"2021-2025";"Artificial Intelligence (Q3); Computer Science Applications (Q3); Human-Computer Interaction (Q3); Information Systems (Q3)";"Computer Science" +16929;21101020025;"US Geological Survey Open-File Report";journal;"01961497, 23311258";"US Geological Survey";No;No;0,308;Q3;9;62;224;2307;140;220;0,69;37,21;42,71;52;United States;Northern America;"US Geological Survey";"2019-2026";"Geology (Q3)";"Earth and Planetary Sciences" +16930;21101060452;"Vietnam Journal of Computer Science";journal;"21968896";"World Scientific";Yes;Yes;0,308;Q3;13;48;78;1869;155;78;2,23;38,94;26,67;0;Singapore;Asiatic Region;"World Scientific";"2019-2026";"Artificial Intelligence (Q3); Computational Theory and Mathematics (Q3); Computer Science (miscellaneous) (Q3); Computer Vision and Pattern Recognition (Q3); Information Systems (Q3); Software (Q3)";"Computer Science" +16931;21100788883;"Journal of Cellular Neuroscience and Oxidative Stress";journal;"21497222";"Suleyman Demirel University";No;No;0,308;Q4;8;4;18;135;23;18;1,08;33,75;35,71;0;Turkey;Middle East;"Suleyman Demirel University";"2015-2025";"Biochemistry (Q4); Biophysics (Q4); Cell Biology (Q4); Cellular and Molecular Neuroscience (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +16932;21100448300;"Transportation Research Procedia";conference and proceedings;"23521457, 23521465";"Elsevier B.V.";No;No;0,308;-;81;998;2367;24660;3491;2326;1,38;24,71;29,89;6;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Transportation";"Social Sciences" +16933;21100836293;"International Journal of Religious Tourism and Pilgrimage";journal;"20097379";"Dublin Institute of Technology";Yes;Yes;0,307;Q1;20;23;142;1161;162;138;0,92;50,48;43,18;0;Ireland;Western Europe;"Dublin Institute of Technology";"2017-2025";"Religious Studies (Q1); Tourism, Leisure and Hospitality Management (Q3)";"Arts and Humanities; Business, Management and Accounting" +16934;5900152868;"Journal of Interior Design";journal;"10717641, 19391668";"SAGE Publications Inc.";No;No;0,307;Q1;22;4;46;306;76;44;1,14;76,50;44,44;0;United States;Northern America;"SAGE Publications Inc.";"1975-1991, 1993-2025";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +16935;21101169874;"Jurnal Hukum Unissula";journal;"14122723, 27236668";"Islamic University of Sultan Agung Faculty of Law";No;No;0,307;Q1;7;50;69;2693;103;69;1,49;53,86;29,79;0;Indonesia;Asiatic Region;"Islamic University of Sultan Agung Faculty of Law";"2019-2026";"Religious Studies (Q1); Law (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +16936;19700182211;"Rock Art Research";journal;"08130426";"Australian Rock Art Research Association";No;No;0,307;Q1;18;22;40;1006;21;37;0,48;45,73;42,86;0;Australia;Pacific Region;"Australian Rock Art Research Association";"2009-2014, 2016-2026";"Visual Arts and Performing Arts (Q1); Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +16937;21101162976;"Theory and Event";journal;"25726633, 1092311X";"Johns Hopkins University Press";No;No;0,307;Q1;14;35;100;2018;58;88;0,45;57,66;31,03;0;United States;Northern America;"Johns Hopkins University Press";"2019-2026";"Philosophy (Q1); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +16938;21100253392;"Asian Journal of International Law";journal;"20442521, 20442513";"Cambridge University Press";No;No;0,307;Q2;19;22;50;3558;62;49;1,03;161,73;30,77;0;United Kingdom;Western Europe;"Cambridge University Press";"2011-2026";"Law (Q2)";"Social Sciences" +16939;21101037316;"European Journal of Human Movement";journal;"23864095";"Miguel Hernandez University";Yes;Yes;0,307;Q2;10;0;64;0;79;58;1,00;0,00;0,00;0;Spain;Western Europe;"Miguel Hernandez University";"2019-2024";"Social Sciences (miscellaneous) (Q2); Health (social science) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Social Sciences" +16940;21101087142;"Japan Architectural Review";journal;"24758876";"John Wiley and Sons Inc";Yes;No;0,307;Q2;17;55;218;1550;171;214;0,58;28,18;23,03;0;United States;Northern America;"John Wiley and Sons Inc";"2018-2026";"Architecture (Q2); Environmental Engineering (Q3); Modeling and Simulation (Q3)";"Engineering; Environmental Science; Mathematics" +16941;20357;"Journal of Criminal Law and Criminology";journal;"00914169";"Northwestern University";No;No;0,307;Q2;58;16;64;4154;44;58;0,56;259,63;44,44;0;United States;Northern America;"Northwestern University";"1973-1985, 1987, 1991, 1996-2026";"Law (Q2)";"Social Sciences" +16942;4700152402;"Journal of Family Social Work";journal;"15404072, 10522158";"Routledge";No;No;0,307;Q2;33;17;31;648;31;23;0,82;38,12;60,00;0;United States;Northern America;"Routledge";"1994-2025";"Sociology and Political Science (Q2); Development (Q3); Social Work (Q4)";"Social Sciences" +16943;21101075726;"Journal of Financial Management, Markets and Institutions";journal;"2282717X";"World Scientific";Yes;Yes;0,307;Q2;9;12;36;719;49;30;1,58;59,92;50,00;0;Singapore;Asiatic Region;"World Scientific";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +16944;21101388871;"Law, Ethics and Technology";journal;"29593077, 29593085";"ELSP";No;No;0,307;Q2;3;9;12;554;24;11;2,00;61,56;57,14;0;Hong Kong;Asiatic Region;"ELSP";"2024-2026";"Arts and Humanities (miscellaneous) (Q2); Law (Q2); Artificial Intelligence (Q3); Biomedical Engineering (Q3); Computer Science (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Nuclear Energy and Engineering (Q3)";"Arts and Humanities; Computer Science; Energy; Engineering; Environmental Science; Social Sciences" +16945;21101266481;"Substantive Justice International Journal of Law";journal;"25990462";"Faculty of Law, Universitas Islam Indonesia";Yes;No;0,307;Q2;5;6;34;145;40;34;1,43;24,17;31,82;0;Indonesia;Asiatic Region;"Faculty of Law, Universitas Islam Indonesia";"2020-2025";"Law (Q2)";"Social Sciences" +16946;21100838400;"Acta Agronomica Sinica (China)";journal;"04963490";"Institute of Crop Sciences";Yes;No;0,307;Q3;32;165;790;7214;1024;790;1,31;43,72;39,95;0;China;Asiatic Region;"Institute of Crop Sciences";"2012-2025";"Agronomy and Crop Science (Q3); Biotechnology (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +16947;27880;"Acta Seismologica Sinica";journal;"02533782";"";No;No;0,307;Q3;34;43;227;2179;231;226;0,96;50,67;33,33;0;China;Asiatic Region;"";"1979-1981, 1986-1988, 1996, 2000-2025";"Geophysics (Q3)";"Earth and Planetary Sciences" +16948;21101279760;"Cardiogenetics";journal;"20358148, 20358253";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,307;Q3;7;32;58;1663;52;55;1,03;51,97;50,16;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Cardiology and Cardiovascular Medicine (Q3); Genetics (Q4); Genetics (clinical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16949;19119;"Chinese Journal of Lung Cancer";journal;"10093419, 19996187";"Chinese Journal of Lung Cancer";Yes;No;0,307;Q3;24;109;339;4632;382;339;1,14;42,50;45,23;0;China;Asiatic Region;"Chinese Journal of Lung Cancer";"2002-2025";"Oncology (Q3); Pulmonary and Respiratory Medicine (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16950;21101040667;"Computational and Mathematical Biophysics";journal;"25447297";"Walter de Gruyter GmbH";Yes;No;0,307;Q3;16;14;66;436;110;65;1,52;31,14;40,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2012-2026";"Applied Mathematics (Q3); Computational Mathematics (Q3); Mathematical Physics (Q3); Biophysics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Mathematics" +16951;29679;"Fiber and Integrated Optics";journal;"10964681, 01468030";"Taylor and Francis Ltd.";No;No;0,307;Q3;32;32;36;1032;66;36;1,93;32,25;24,30;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-2026";"Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science; Physics and Astronomy" +16952;19688;"Geology of Ore Deposits";journal;"10757015, 15556476";"Pleiades Publishing";No;No;0,307;Q3;33;72;197;3764;157;197;0,82;52,28;40,95;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Economic Geology (Q3); Geochemistry and Petrology (Q3); Geology (Q3)";"Earth and Planetary Sciences" +16953;21100940509;"Geomatics and Environmental Engineering";journal;"23007095, 18981135";"AGH University of Science and Technology Press";Yes;Yes;0,307;Q3;13;30;99;1551;159;99;1,59;51,70;30,68;0;Poland;Eastern Europe;"AGH University of Science and Technology Press";"2019-2026";"Computer Science (miscellaneous) (Q3); Computers in Earth Sciences (Q3); Earth-Surface Processes (Q3); Environmental Engineering (Q3); Geography, Planning and Development (Q3)";"Computer Science; Earth and Planetary Sciences; Environmental Science; Social Sciences" +16954;4700151613;"Information Visualization";journal;"14738724, 14738716";"SAGE Publications Inc.";No;No;0,307;Q3;57;25;63;1194;166;62;2,61;47,76;31,87;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1997, 2002-2026";"Computer Vision and Pattern Recognition (Q3)";"Computer Science" +16955;19700190321;"International Journal of Hematology-Oncology and Stem Cell Research";journal;"17351243, 20082207";"Tehran University of Medical Sciences";Yes;Yes;0,307;Q3;26;48;118;1606;109;113;0,84;33,46;46,03;0;Iran;Middle East;"Tehran University of Medical Sciences";"2009-2025";"Hematology (Q3); Oncology (Q3); Transplantation (Q3)";"Medicine" +16956;21101389408;"International Journal of Technology in Education and Science";journal;"26515369";"Ayse Sahin Ozturk";No;No;0,307;Q3;5;32;38;1704;75;38;1,97;53,25;35,94;0;Turkey;Middle East;"Ayse Sahin Ozturk";"2024-2026";"Computer Science Applications (Q3); Developmental and Educational Psychology (Q3); Education (Q3)";"Computer Science; Psychology; Social Sciences" +16957;16947;"International Journal of Web Services Research";journal;"15465004, 15457362";"IGI Publishing";No;No;0,307;Q3;30;7;22;277;50;22;2,50;39,57;48,00;0;United States;Northern America;"IGI Publishing";"2004-2025";"Computer Networks and Communications (Q3); Information Systems (Q3); Software (Q3)";"Computer Science" +16958;13655;"International Polymer Processing";journal;"21958602, 0930777X";"Walter de Gruyter GmbH";No;No;0,307;Q3;44;64;165;2627;347;163;2,39;41,05;25,45;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1988-1990, 1996-2026";"Chemical Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)";"Chemical Engineering; Engineering; Materials Science" +16959;21100274232;"ISH Journal of Hydraulic Engineering";journal;"09715010, 21643040";"Taylor and Francis Ltd.";No;No;0,307;Q3;33;70;279;3008;422;271;1,42;42,97;21,35;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Civil and Structural Engineering (Q3); Environmental Engineering (Q3); Fluid Flow and Transfer Processes (Q3); Water Science and Technology (Q3)";"Chemical Engineering; Engineering; Environmental Science" +16960;21100828655;"Journal of Financial Therapy";journal;"19449771, 19457774";"Revista Civilistica";Yes;Yes;0,307;Q3;13;11;37;575;41;33;0,79;52,27;58,33;0;United States;Northern America;"Revista Civilistica";"2017-2025";"Applied Psychology (Q3); Finance (Q3); Health (social science) (Q3); Social Psychology (Q3)";"Economics, Econometrics and Finance; Psychology; Social Sciences" +16961;17604;"Journal of Internet Technology";journal;"20794029, 16079264";"";No;No;0,307;Q3;38;86;407;2722;731;394;1,70;31,65;38,49;0;Taiwan;Asiatic Region;"";"2004-2026";"Computer Networks and Communications (Q3); Software (Q3)";"Computer Science" +16962;21100403130;"Journal of Logical and Algebraic Methods in Programming";journal;"23522208, 23522216";"Elsevier Inc.";No;No;0,307;Q3;55;33;142;1353;163;137;1,34;41,00;17,86;0;United States;Northern America;"Elsevier Inc.";"2014-2026";"Computational Theory and Mathematics (Q3); Logic (Q3); Software (Q3); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +16963;21100860043;"Proceedings of Symposia in Pure Mathematics";book series;"00820717, 2324707X";"American Mathematical Society";No;No;0,307;Q3;17;0;99;0;80;90;0,81;0,00;0,00;0;United States;Northern America;"American Mathematical Society";"2017-2019, 2021, 2023-2024";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16964;12465;"Quaestiones Geographicae";journal;"20816383, 0137477X";"Adam Mickiewicz University";Yes;Yes;0,307;Q3;32;50;130;2792;174;129;1,23;55,84;48,99;0;Poland;Eastern Europe;"Adam Mickiewicz University";"1979-1985, 1987, 1989, 1992, 1995-1998, 2001-2002, 2004-2026";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +16965;21101042316;"Quantum Beam Science";journal;"2412382X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,307;Q3;20;36;100;1704;178;99;1,53;47,33;25,68;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2025";"Atomic and Molecular Physics, and Optics (Q3); Nuclear and High Energy Physics (Q3)";"Physics and Astronomy" +16966;21100264566;"South Asian Journal of Cancer";journal;"22784306, 2278330X";"Georg Thieme Verlag";Yes;Yes;0,307;Q3;30;142;175;3359;166;152;0,93;23,65;37,65;0;Germany;Western Europe;"Georg Thieme Verlag";"2012-2025";"Oncology (Q3); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +16967;19600157003;"Tarim Bilimleri Dergisi";journal;"21489297, 13007580";"Ankara University";Yes;No;0,307;Q3;26;70;228;4245;381;228;1,83;60,64;32,58;0;Turkey;Middle East;"Ankara University";"2009-2026";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +16968;21100928218;"Vestnik Samarskogo Gosudarstvennogo Tekhnicheskogo Universiteta, Seriya Fiziko-Matematicheskie Nauki";journal;"23107081, 19918615";"Samara State Technical University";Yes;Yes;0,307;Q3;11;38;124;841;72;124;0,46;22,13;19,48;0;Russian Federation;Eastern Europe;"Samara State Technical University";"2019-2025";"Analysis (Q3); Applied Mathematics (Q3); Condensed Matter Physics (Q3); Mathematical Physics (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3); Software (Q3)";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +16969;24587;"Zoology in the Middle East";journal;"09397140";"Taylor and Francis Ltd.";No;No;0,307;Q3;28;47;131;1417;97;125;0,64;30,15;23,39;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986, 1988-2026";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +16970;20208;"Business History Review";journal;"00076805, 2044768X";"Cambridge University Press";No;No;0,306;Q1;44;17;97;1945;121;81;1,12;114,41;33,33;0;United Kingdom;Western Europe;"Cambridge University Press";"1926-2025";"History (Q1); Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3)";"Arts and Humanities; Business, Management and Accounting" +16971;21101072213;"Diplomatica";journal;"25891774, 25891766";"Brill Academic Publishers";No;No;0,306;Q1;10;20;41;1367;55;37;1,32;68,35;55,17;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2025";"History (Q1); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +16972;21100975882;"Doxa. Cuadernos de Filosofia del Derecho";journal;"02148676, 23864702";"Universidad de Alicante";Yes;Yes;0,306;Q1;8;33;94;1318;44;92;0,49;39,94;25,00;0;Spain;Western Europe;"Universidad de Alicante";"2019-2025";"Philosophy (Q1); Law (Q2)";"Arts and Humanities; Social Sciences" +16973;21100244228;"International Area Studies Review";journal;"20491123, 22338659";"";No;No;0,306;Q2;23;22;75;1056;102;75;1,18;48,00;30,56;0;South Korea;Asiatic Region;"";"1997-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16974;19600157915;"Journal of Applied Security Research";journal;"19361629, 19361610";"Routledge";No;No;0,306;Q2;23;27;101;1886;217;98;2,37;69,85;33,33;0;United Kingdom;Western Europe;"Routledge";"2008-2026";"Law (Q2); Education (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering; Social Sciences" +16975;19700170105;"Problems and Perspectives in Management";journal;"17277051, 18105467";"LLC CPC Business Perspectives";Yes;No;0,306;Q2;40;225;637;11352;1428;637;2,42;50,45;50,15;0;Ukraine;Eastern Europe;"LLC CPC Business Perspectives";"2003-2026";"Information Systems and Management (Q2); Law (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Public Administration (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +16976;144979;"Records Management Journal";journal;"09565698";"Emerald Group Publishing Ltd.";No;No;0,306;Q2;30;27;44;1074;94;43;1,96;39,78;46,67;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1989-1991, 1994-2026";"Library and Information Sciences (Q2); Management Information Systems (Q3)";"Business, Management and Accounting; Social Sciences" +16977;87222;"Review of Politics";journal;"17486858, 00346705";"Cambridge University Press";No;No;0,306;Q2;30;44;100;1321;49;87;0,38;30,02;25,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1939-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +16978;17232;"Silvae Genetica";journal;"00375349";"J.D. Sauerlander Verlag";Yes;No;0,306;Q2;46;16;55;820;63;55;1,03;51,25;29,41;0;Germany;Western Europe;"J.D. Sauerlander Verlag";"1991, 1993-1994, 1996-2025";"Forestry (Q2); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +16979;6500153239;"Vulnerable Children and Youth Studies";journal;"17450136, 17450128";"Routledge";No;No;0,306;Q2;32;72;136;3443;140;136;1,03;47,82;58,42;1;United Kingdom;Western Europe;"Routledge";"2006-2026";"Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3); Health (social science) (Q3)";"Psychology; Social Sciences" +16980;26748;"Astronomische Nachrichten";journal;"00046337, 15213994";"Wiley-VCH Verlag";No;No;0,306;Q3;67;121;318;4618;255;310;0,77;38,17;25,89;0;Germany;Western Europe;"Wiley-VCH Verlag";"1823-1829, 1831, 1833-1943, 1947-1952, 1955-1957, 1959-1963, 1965-1968, 1970-1972, 1974-2026";"Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Physics and Astronomy" +16981;4000148822;"Bulletin of the Korean Mathematical Society";journal;"22343016, 10158634";"Korean Mathematical Society";No;No;0,306;Q3;37;109;321;2183;168;321;0,43;20,03;30,53;0;South Korea;Asiatic Region;"Korean Mathematical Society";"2003, 2006-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +16982;21100871796;"Central European Business Review";journal;"18054854, 18054862";"";Yes;No;0,306;Q3;18;30;93;1726;170;93;1,90;57,53;41,10;0;Czech Republic;Eastern Europe;"";"2017-2025";"Business and International Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +16983;21101307599;"Dermato";journal;"26736179";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,306;Q3;6;24;49;916;80;44;1,66;38,17;67,71;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Dermatology (Q3)";"Medicine" +16984;21100853015;"Endocrinology, Diabetes and Metabolism Case Reports";journal;"20520573";"BioScientifica Ltd.";Yes;No;0,306;Q3;19;84;249;992;246;249;1,04;11,81;44,95;0;United Kingdom;Western Europe;"BioScientifica Ltd.";"2014-2016, 2018-2026";"Internal Medicine (Q3); Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +16985;21100809811;"Eurasian Journal of Mathematical and Computer Applications";journal;"23066172, 23089822";"L.N. Gumilyov Eurasian National University";Yes;No;0,306;Q3;14;46;103;1269;88;103;0,95;27,59;24,04;0;Kazakhstan;Asiatic Region;"L.N. Gumilyov Eurasian National University";"2013-2025";"Applied Mathematics (Q3); Computational Mathematics (Q3); Computer Science Applications (Q3); Information Systems (Q3); Mathematical Physics (Q3); Modeling and Simulation (Q3)";"Computer Science; Mathematics" +16986;21100403168;"HeartRhythm Case Reports";journal;"22140271";"Elsevier Inc.";Yes;No;0,306;Q3;23;314;709;3136;457;623;0,61;9,99;19,52;0;United States;Northern America;"Elsevier Inc.";"2015-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +16987;29865;"Indian Journal of Cancer";journal;"19984774, 0019509X";"Wolters Kluwer Medknow Publications";Yes;No;0,306;Q3;50;96;354;1846;336;321;0,70;19,23;38,88;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1965-2025";"Oncology (Q3)";"Medicine" +16988;71748;"Indian Journal of Radiology and Imaging";journal;"19983808, 09713026";"Thieme Medical Publishers, Inc.";Yes;Yes;0,306;Q3;43;90;429;2064;479;365;1,07;22,93;35,32;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"1984-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +16989;21101274775;"International Journal Of Advances In Signal And Image Sciences";journal;"24570370";"";Yes;Yes;0,306;Q3;15;14;31;337;169;31;7,19;24,07;50,00;0;India;Asiatic Region;"";"2021-2025";"Biomedical Engineering (Q3); Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Signal Processing (Q3)";"Computer Science; Engineering" +16990;26925;"International Journal of Chemical Kinetics";journal;"10974601, 05388066";"John Wiley & Sons Inc.";No;No;0,306;Q3;81;57;182;2975;297;181;1,79;52,19;28,24;0;United States;Northern America;"John Wiley & Sons Inc.";"1969-2026";"Inorganic Chemistry (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3); Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +16991;19700188445;"International Journal of Optics";journal;"16879392, 16879384";"John Wiley and Sons Inc";Yes;No;0,306;Q3;28;20;60;763;136;60;1,76;38,15;28,95;0;United States;Northern America;"John Wiley and Sons Inc";"2010-2026";"Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science; Physics and Astronomy" +16992;21101291391;"Journal of Applied Science and Technology Trends";journal;"27080757";"Interdisciplinary Publishing Academia";No;No;0,306;Q3;15;50;35;1734;81;35;2,89;34,68;20,16;0;Iraq;Middle East;"Interdisciplinary Publishing Academia";"2021-2026";"Artificial Intelligence (Q3); Computer Science (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3)";"Computer Science; Earth and Planetary Sciences" +16993;23917;"Journal of Intelligent and Fuzzy Systems";journal;"18758967, 10641246";"SAGE Publications Ltd";No;No;0,306;Q3;92;805;2259;9246;3688;2257;1,53;11,49;33,14;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1993-2026";"Artificial Intelligence (Q3); Engineering (miscellaneous) (Q3); Statistics and Probability (Q3)";"Computer Science; Engineering; Mathematics" +16994;21100890306;"Journal of Physical Education, Recreation and Dance";journal;"07303084, 21683816";"Taylor and Francis Ltd.";No;No;0,306;Q3;21;102;305;1932;247;210;0,84;18,94;45,39;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-1988, 1990, 1992-1993, 1995-1996, 2002-2003, 2008, 2013, 2018-2026";"Education (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine; Social Sciences" +16995;130031;"Journal of Toxicologic Pathology";journal;"09149198";"Japanese Society of Toxicologic Pathology";No;No;0,306;Q3;40;28;82;804;107;82;1,39;28,71;36,59;0;Japan;Asiatic Region;"Japanese Society of Toxicologic Pathology";"1988-1990, 1992-2026";"Pathology and Forensic Medicine (Q3); Toxicology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +16996;24774;"Knowledge Engineering Review";journal;"14698005, 02698889";"Maximum Academic Press";No;No;0,306;Q3;78;11;29;840;55;28;1,65;76,36;36,84;0;United States;Northern America;"Maximum Academic Press";"1984, 1987-2025";"Artificial Intelligence (Q3); Software (Q3)";"Computer Science" +16997;21100857775;"PNA";journal;"18873987";"Universidad de Granada, Grupo de Investigacion Didactica de la Matematica";Yes;Yes;0,306;Q3;9;20;52;747;41;52;0,67;37,35;60,98;0;Spain;Western Europe;"Universidad de Granada, Grupo de Investigacion Didactica de la Matematica";"2017-2026";"Education (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics; Social Sciences" +16998;13049;"Polish Journal of Pathology";journal;"20849869, 12339687";"Termedia Publishing House Ltd.";Yes;No;0,306;Q3;30;45;146;1085;128;137;0,75;24,11;50,62;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"1994-2025";"Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)";"Medicine" +16999;21100792082;"Vestnik Udmurtskogo Universiteta: Matematika, Mekhanika, Komp'yuternye Nauki";journal;"20765959, 19949197";"Udmurt State University";Yes;No;0,306;Q3;13;30;97;636;60;96;0,67;21,20;24,07;0;Russian Federation;Eastern Europe;"Udmurt State University";"2016-2025";"Computer Science (miscellaneous) (Q3); Fluid Flow and Transfer Processes (Q3); Mathematics (miscellaneous) (Q3)";"Chemical Engineering; Computer Science; Mathematics" +17000;21100275520;"IEEE International Conference on Emerging Technologies and Factory Automation, ETFA";conference and proceedings;"19460759, 19460740";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,306;-;57;286;836;6262;1124;832;1,36;21,90;15,20;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992-1993, 1996-1997, 1999, 2001, 2003, 2005-2008, 2011-2013, 2015-2025";"Computer Science Applications; Control and Systems Engineering; Electrical and Electronic Engineering; Engineering (miscellaneous); Industrial and Manufacturing Engineering";"Computer Science; Engineering" +17001;21100226416;"Cauriensia";journal;"23404256, 18864945";"Universidad de Extremadura";Yes;Yes;0,305;Q1;9;59;166;2163;56;165;0,32;36,66;30,77;0;Spain;Western Europe;"Universidad de Extremadura";"2012-2025";"Philosophy (Q1); Religious Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +17002;21100211359;"Purushartha";journal;"24561371, 0975024X";"School of Management Sciences";Yes;No;0,305;Q1;8;7;57;440;60;57;0,69;62,86;29,41;0;India;Asiatic Region;"School of Management Sciences";"2011-2013, 2015-2025";"Philosophy (Q1); Strategy and Management (Q3)";"Arts and Humanities; Business, Management and Accounting" +17003;4700152701;"Pharmacy Practice";journal;"1885642X, 18863655";"Centro de Investigaciones y Publicaciones Farmaceuticas";Yes;No;0,305;Q2;42;136;259;5980;293;259;0,73;43,97;58,14;0;Spain;Western Europe;"Centro de Investigaciones y Publicaciones Farmaceuticas";"2006-2025";"Pharmacy (Q2); Pharmaceutical Science (Q3)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +17004;19700174682;"Safer Communities";journal;"17578043";"Emerald Publishing";No;No;0,305;Q2;19;36;73;2193;115;69;1,61;60,92;44,30;0;United Kingdom;Western Europe;"Emerald Publishing";"2002-2025";"Law (Q2); Community and Home Care (Q3); Public Health, Environmental and Occupational Health (Q3); Safety Research (Q3)";"Medicine; Nursing; Social Sciences" +17005;7100153106;"Welding International";journal;"17542138, 09507116";"Taylor and Francis Ltd.";No;No;0,305;Q2;31;107;200;3994;368;198;2,29;37,33;15,07;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Metals and Alloys (Q2); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science" +17006;12922;"Acoustical Physics";journal;"15626865, 10637710";"Pleiades Publishing";No;No;0,305;Q3;39;62;284;1724;263;283;0,86;27,81;24,44;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Acoustics and Ultrasonics (Q3)";"Physics and Astronomy" +17007;29731;"Acta Adriatica";journal;"00015113, 18460453";"Institute of Oceanography and Fisheries";Yes;No;0,305;Q3;28;16;59;955;74;58;1,65;59,69;57,35;0;Croatia;Eastern Europe;"Institute of Oceanography and Fisheries";"1973, 1980, 1982-1983, 1985, 2000-2002, 2005-2025";"Oceanography (Q3)";"Earth and Planetary Sciences" +17008;19700201168;"Action Learning: Research and Practice";journal;"14767341, 14767333";"Taylor and Francis Ltd.";No;No;0,305;Q3;16;42;90;1193;106;59;1,36;28,40;57,81;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Business, Management and Accounting (miscellaneous) (Q3); Education (Q3)";"Business, Management and Accounting; Social Sciences" +17009;21101197187;"Canadian Journal of Applied Linguistics";journal;"19201818";"Carleton University";Yes;Yes;0,305;Q3;9;9;58;287;45;48;0,42;31,89;50,00;0;Canada;Northern America;"Carleton University";"2020-2025";"Education (Q3)";"Social Sciences" +17010;4700152613;"Current Organic Synthesis";journal;"18756271, 15701794";"Bentham Science Publishers";No;No;0,305;Q3;60;89;176;5394;463;161;2,83;60,61;41,37;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2005-2026";"Organic Chemistry (Q3); Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +17011;21101244204;"Discover Life";journal;"29482976";"Springer Science and Business Media B.V.";Yes;No;0,305;Q3;76;40;53;2919;73;51;1,59;72,98;22,62;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2024-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Space and Planetary Science (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +17012;25924;"Doklady Mathematics";journal;"15318362, 10645624";"Pleiades Publishing";No;No;0,305;Q3;32;54;429;886;355;424;0,76;16,41;31,11;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17013;78942;"Geofizika";journal;"18466346, 03523659";"Andrija Mohorovicic Geophysical Institute Faculty of Science, University of Zagreb";Yes;Yes;0,305;Q3;23;5;32;239;37;32;1,00;47,80;21,88;0;Croatia;Eastern Europe;"Andrija Mohorovicic Geophysical Institute Faculty of Science, University of Zagreb";"1989-1999, 2001, 2003-2025";"Geophysics (Q3)";"Earth and Planetary Sciences" +17014;26894;"Geologija";journal;"00167789, 1854620X";"Geological Survey of Slovenia";Yes;Yes;0,305;Q3;12;16;45;694;35;45;0,68;43,38;47,06;0;Slovenia;Eastern Europe;"Geological Survey of Slovenia";"1981-1982, 2010, 2014-2025";"Geology (Q3); Geophysics (Q3); Paleontology (Q3)";"Earth and Planetary Sciences" +17015;17700156514;"Hipertension y Riesgo Vascular";journal;"18891837, 19894805";"Ediciones Doyma, S.L.";No;No;0,305;Q3;17;41;101;1401;103;92;1,01;34,17;39,16;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2009-2025";"Cardiology and Cardiovascular Medicine (Q3); Internal Medicine (Q3)";"Medicine" +17016;29867;"Indian Journal of Hematology and Blood Transfusion";journal;"09714502, 09740449";"Springer";No;No;0,305;Q3;26;440;350;8708;289;284;0,83;19,79;46,51;0;India;Asiatic Region;"Springer";"2000-2003, 2007-2026";"Hematology (Q3)";"Medicine" +17017;21100242605;"International Journal of Pervasive Computing and Communications";journal;"1742738X, 17427371";"Emerald Group Publishing Ltd.";No;No;0,305;Q3;27;17;100;555;189;98;1,74;32,65;30,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005, 2007-2026";"Computer Science (miscellaneous) (Q3); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +17018;13943;"International Ophthalmology Clinics";journal;"15369617, 00208167";"Lippincott Williams and Wilkins";No;No;0,305;Q3;52;54;150;3163;135;145;0,92;58,57;43,56;0;United States;Northern America;"Lippincott Williams and Wilkins";"1961-2026";"Ophthalmology (Q3)";"Medicine" +17019;24855;"Journal of Cosmetic and Laser Therapy";journal;"14764172, 14764180";"Informa Healthcare";No;No;0,305;Q3;63;29;60;798;78;59;1,03;27,52;42,22;0;United Kingdom;Western Europe;"Informa Healthcare";"1999-2026";"Dermatology (Q3); Medicine (miscellaneous) (Q3); Surgery (Q3)";"Medicine" +17020;73453;"Journal of Crop Improvement";journal;"15427528, 15427536";"Taylor and Francis Ltd.";No;No;0,305;Q3;52;25;132;1495;206;131;1,48;59,80;36,44;1;United States;Northern America;"Taylor and Francis Ltd.";"2004-2026";"Agronomy and Crop Science (Q3); Plant Science (Q3); Soil Science (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +17021;21100781741;"Journal of Cyber Security and Mobility";journal;"22454578, 22451439";"";No;No;0,305;Q3;21;49;129;1423;250;128;1,69;29,04;33,33;0;Denmark;Western Europe;"";"2012-2025";"Computer Networks and Communications (Q3); Hardware and Architecture (Q3)";"Computer Science" +17022;87849;"Journal of Environmental Engineering and Landscape Management";journal;"18224199, 16486897";"Vilnius Gediminas Technical University";Yes;No;0,305;Q3;36;30;105;1448;144;105;1,28;48,27;41,30;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2004-2026";"Environmental Engineering (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3)";"Environmental Science" +17023;21100207615;"Journal of Integral Equations and Applications";journal;"08973962";"Rocky Mountain Mathematics Consortium";No;No;0,305;Q3;34;25;83;387;75;83;1,12;15,48;12,50;0;United States;Northern America;"Rocky Mountain Mathematics Consortium";"1988-2025";"Applied Mathematics (Q3); Numerical Analysis (Q3)";"Mathematics" +17024;19600166312;"Journal of Special Operations Medicine";journal;"15539768";"";No;No;0,305;Q3;34;73;232;1169;183;218;0,87;16,01;23,42;0;United States;Northern America;"";"2009-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +17025;21101122914;"Patient Experience Journal";journal;"23720247";"";Yes;Yes;0,305;Q3;13;67;174;1849;174;173;0,98;27,60;68,24;0;United States;Northern America;"";"2015-2016, 2019-2025";"Health Information Management (Q3); Health Policy (Q3); Health (social science) (Q3); Leadership and Management (Q3)";"Health Professions; Medicine; Nursing; Social Sciences" +17026;144875;"Proceedings of the Institution of Civil Engineers: Bridge Engineering";journal;"17517664, 14784637";"ICE Publishing";No;No;0,305;Q3;28;32;98;1239;130;86;0,51;38,72;13,64;0;United Kingdom;Western Europe;"ICE Publishing";"2004-2025";"Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +17027;21100200812;"Revista de Psicopatologia y Psicologia Clinica";journal;"11365420, 22546057";"Asoc. Espanola de Psicologia Clinica y Psicopatologia";Yes;No;0,305;Q3;23;21;60;1043;66;60;1,29;49,67;65,75;0;Spain;Western Europe;"Asoc. Espanola de Psicologia Clinica y Psicopatologia";"2011-2025";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +17028;19700201532;"Revista Iberoamericana de Tecnologias del Aprendizaje";journal;"19328540";"Education Society of IEEE (Spanish Chapter)";No;No;0,305;Q3;28;48;137;2080;237;137;1,27;43,33;31,14;0;Spain;Western Europe;"Education Society of IEEE (Spanish Chapter)";"2006-2026";"Education (Q3); E-learning (Q3); Engineering (miscellaneous) (Q3)";"Engineering; Social Sciences" +17029;23605;"Science and Global Security";journal;"15477800, 08929882";"Taylor and Francis Ltd.";No;No;0,305;Q3;20;7;26;157;25;18;0,69;22,43;25,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-1996, 2000, 2008-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +17030;17291;"Systematic Botany";journal;"15482324, 03636445";"American Society of Plant Taxonomists Inc.";No;No;0,305;Q3;87;8;151;286;144;151;0,79;35,75;33,33;0;United States;Northern America;"American Society of Plant Taxonomists Inc.";"1994-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +17031;5700154419;"Text and Performance Quarterly";journal;"10462937, 14795760";"Routledge";No;No;0,304;Q1;40;43;80;994;54;77;0,44;23,12;48,57;0;United Kingdom;Western Europe;"Routledge";"1989-2026";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Communication (Q2)";"Arts and Humanities; Social Sciences" +17032;13336;"Acta Palaeobotanica";journal;"00016594, 20820259";"W. Szafer Institute of Botany, Polish Academy of Sciences";Yes;Yes;0,304;Q2;32;11;42;962;39;42;0,69;87,45;54,05;0;Poland;Eastern Europe;"W. Szafer Institute of Botany, Polish Academy of Sciences";"1978-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +17033;21100852968;"Economic Papers";journal;"17593441, 08120439";"John Wiley and Sons Inc";No;No;0,304;Q2;28;23;71;853;79;66;1,20;37,09;22,50;1;United States;Northern America;"John Wiley and Sons Inc";"1982-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2)";"Economics, Econometrics and Finance" +17034;21100775412;"Foresight and STI Governance";journal;"23129972, 25002597";"National Research University Higher School of Economics (HSE University)";Yes;Yes;0,304;Q2;31;30;87;1677;142;86;1,63;55,90;33,78;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2015-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); History and Philosophy of Science (Q2); Social Sciences (miscellaneous) (Q2); Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q3); Development (Q3); Management of Technology and Innovation (Q3); Statistics, Probability and Uncertainty (Q3); Strategy and Management (Q3)";"Arts and Humanities; Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Social Sciences" +17035;21100896465;"International Journal of Customer Relationship Marketing and Management";journal;"19479247, 19479255";"IGI Global Publishing";No;No;0,304;Q2;11;16;27;1090;56;27;1,93;68,13;50,00;0;United States;Northern America;"IGI Global Publishing";"2018-2025";"Information Systems and Management (Q2); Business and International Management (Q3); Information Systems (Q3); Management Information Systems (Q3); Marketing (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +17036;21101271529;"Journal of Disaster Prevention and Mitigation Engineering";journal;"16722132";"";Yes;No;0,304;Q2;11;142;452;4069;433;452;0,91;28,65;28,17;0;China;Asiatic Region;"";"2020-2025";"Computational Mechanics (Q2); Civil and Structural Engineering (Q3); Ocean Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering" +17037;18568;"Journal of Histotechnology";journal;"01478885, 20460236";"Taylor and Francis Ltd.";No;No;0,304;Q2;28;28;74;727;104;57;1,67;25,96;45,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-2026";"Medical Laboratory Technology (Q2); Anatomy (Q3); Histology (Q3)";"Health Professions; Medicine" +17038;21101314569;"Journal of Law, Environmental and Justice";journal;"30317215, 30317045";"lus et Ambientis";No;No;0,304;Q2;8;21;30;1444;106;30;3,53;68,76;22,00;0;Indonesia;Asiatic Region;"lus et Ambientis";"2023-2025";"Law (Q2); Development (Q3); Ecology (Q3); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +17039;21100913325;"Logforum";journal;"1734459X, 18952038";"Poznan School of Logistics";Yes;No;0,304;Q2;20;42;123;1980;233;123;1,84;47,14;41,67;0;Poland;Eastern Europe;"Poznan School of Logistics";"2019-2026";"Information Systems and Management (Q2); Management Information Systems (Q3); Management Science and Operations Research (Q3)";"Business, Management and Accounting; Decision Sciences" +17040;21101088438;"Padjadjaran Jurnal Ilmu Hukum";journal;"24601543, 24429325";"Padjadjaran University";Yes;No;0,304;Q2;9;7;63;417;78;63;1,19;59,57;46,15;0;Indonesia;Asiatic Region;"Padjadjaran University";"2019-2025";"Law (Q2)";"Social Sciences" +17041;21100892908;"PSL Quarterly Review";journal;"20373643, 20373635";"Economia Civile";Yes;Yes;0,304;Q2;11;21;64;1120;64;64;0,96;53,33;13,51;1;Italy;Western Europe;"Economia Civile";"2018-2025";"Law (Q2); Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +17042;21100239247;"Tobacco Science and Technology";journal;"10020861";"Editorial Office of Tobacco Science and Technology";No;No;0,304;Q2;19;145;478;3826;404;478;0,81;26,39;33,65;0;China;Asiatic Region;"Editorial Office of Tobacco Science and Technology";"2013-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +17043;60241;"Advances in Electrical and Electronic Engineering";journal;"18043119, 13361376";"VSB-Technical University of Ostrava";Yes;Yes;0,304;Q3;25;31;115;1020;197;115;1,60;32,90;23,91;0;Czech Republic;Eastern Europe;"VSB-Technical University of Ostrava";"2011-2025";"Electrical and Electronic Engineering (Q3)";"Engineering" +17044;27115;"American Journal of Nursing";journal;"0002936X, 15387488";"Lippincott Williams and Wilkins Ltd.";No;No;0,304;Q3;70;368;979;2299;547;588;0,60;6,25;78,08;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1902, 1904, 1906, 1908, 1910, 1912, 1914, 1917, 1920, 1924, 1926, 1936, 1941, 1945-2026";"Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)";"Medicine; Nursing" +17045;21101018929;"East European Journal of Physics";journal;"23124334, 23124539";"V N Karazin Kharkiv National University";Yes;No;0,304;Q3;17;241;516;7502;949;516;1,95;31,13;22,96;0;Ukraine;Eastern Europe;"V N Karazin Kharkiv National University";"2019-2025";"Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Materials Science; Physics and Astronomy" +17046;19700201332;"Fisheries and Aquatic Sciences";journal;"22341749, 22341757";"Korean Society of Fisheries and Aquatic Sciences";Yes;No;0,304;Q3;31;71;202;2931;314;200;1,43;41,28;30,65;0;South Korea;Asiatic Region;"Korean Society of Fisheries and Aquatic Sciences";"2008-2026";"Aquatic Science (Q3); Oceanography (Q3); Biochemistry (Q4); Molecular Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Earth and Planetary Sciences" +17047;12786;"Fisheries Science";journal;"09199268, 14442906";"Springer";No;No;0,304;Q3;79;103;238;5304;327;238;1,36;51,50;21,84;2;Japan;Asiatic Region;"Springer";"1994-2026";"Aquatic Science (Q3)";"Agricultural and Biological Sciences" +17048;21100806973;"Gynecologie Obstetrique Fertilite et Senologie";journal;"24687197, 24687189";"Elsevier Masson s.r.l.";No;No;0,304;Q3;39;110;302;3166;190;231;0,62;28,78;61,89;2;France;Western Europe;"Elsevier Masson s.r.l.";"2017-2026";"Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine" +17049;21100202930;"Hand Therapy";journal;"17589983, 17589991";"SAGE Publications Inc.";No;No;0,304;Q3;20;70;42;2320;64;42;1,76;33,14;35,37;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1996, 1998-2000, 2009-2026";"Orthopedics and Sports Medicine (Q3)";"Medicine" +17050;21100826271;"Inorganic and Nano-Metal Chemistry";journal;"24701556, 24701564";"Taylor and Francis Ltd.";No;No;0,304;Q3;58;99;422;5994;760;421;1,76;60,55;42,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Inorganic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry" +17051;21101021790;"International Journal of Kinesiology and Sports Science";journal;"2202946X";"Australian International Academic Centre PTY LTD";Yes;No;0,304;Q3;12;35;80;1442;99;80;0,90;41,20;28,15;0;Australia;Pacific Region;"Australian International Academic Centre PTY LTD";"2017, 2019-2025";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Physiology (medical) (Q3)";"Health Professions; Medicine" +17052;19700187506;"International Journal of Shipping and Transport Logistics";journal;"17566517, 17566525";"Inderscience Enterprises Ltd";No;No;0,304;Q3;33;41;123;2296;208;122;1,70;56,00;33,87;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2009-2026";"Business and International Management (Q3); Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3); Transportation (Q3)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +17053;23031;"Iraqi Journal of Science";journal;"00672904, 23121637";"University of Baghdad-College of Science";Yes;No;0,304;Q3;27;432;1577;14504;2499;1577;1,48;33,57;46,51;0;Iraq;Middle East;"University of Baghdad-College of Science";"1979-1986, 2018-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biotechnology (Q3); Chemistry (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Geology (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Computer Science; Earth and Planetary Sciences" +17054;21101041559;"JA Clinical Reports";journal;"23639024";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,304;Q3;16;70;264;1019;234;209;0,86;14,56;31,95;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2018-2026";"Anesthesiology and Pain Medicine (Q3)";"Medicine" +17055;11700154320;"Journal of Developmental Entrepreneurship";journal;"1793706X, 10849467";"World Scientific";No;No;0,304;Q3;38;32;96;2556;147;84;1,42;79,88;32,35;0;Singapore;Asiatic Region;"World Scientific";"2007-2026";"Business and International Management (Q3); Economics and Econometrics (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +17056;21100217629;"Journal of Mediterranean Earth Sciences";journal;"20372272, 22806148";"Universita' degli Studi di Roma 'La Sapienza'";No;No;0,304;Q3;23;5;44;420;31;44;0,72;84,00;0,00;0;Italy;Western Europe;"Universita' degli Studi di Roma 'La Sapienza'";"2009-2025";"Geology (Q3); Stratigraphy (Q3)";"Earth and Planetary Sciences" +17057;10700153305;"Journal of Power Electronics";journal;"20934718, 15982092";"Springer";No;No;0,304;Q3;46;301;547;7567;940;547;1,84;25,14;29,35;0;Singapore;Asiatic Region;"Springer";"2008-2026";"Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)";"Engineering" +17058;20986;"Journal of Pressure Vessel Technology";journal;"00949930, 15288978";"American Society of Mechanical Engineers (ASME)";No;No;0,304;Q3;63;79;278;2335;367;277;1,61;29,56;20,16;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1974-2026";"Mechanical Engineering (Q3); Mechanics of Materials (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering" +17059;24801;"Molecular Simulation";journal;"08927022, 10290435";"Taylor and Francis Ltd.";No;No;0,304;Q3;79;89;417;4619;921;415;2,53;51,90;28,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3); Information Systems (Q3); Materials Science (miscellaneous) (Q3); Modeling and Simulation (Q3)";"Chemical Engineering; Chemistry; Computer Science; Materials Science; Mathematics; Physics and Astronomy" +17060;22188;"Polski Przeglad Chirurgiczny/ Polish Journal of Surgery";journal;"22992847, 0032373X";"Index Copernicus International";Yes;No;0,304;Q3;24;65;197;1916;207;197;1,02;29,48;34,85;0;Poland;Eastern Europe;"Index Copernicus International";"1952-1980, 2002-2026";"Medicine (miscellaneous) (Q3); Surgery (Q3)";"Medicine" +17061;21101055117;"Recent Advances in Anti-Infective Drug Discovery";journal;"27724352, 27724344";"Bentham Science Publishers";No;No;0,304;Q3;40;23;65;1437;94;62;1,67;62,48;46,91;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2021-2026";"Drug Discovery (Q3); Infectious Diseases (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +17062;24196;"Scientia Iranica";journal;"23453605, 10263098";"Sharif University of Technology";Yes;No;0,304;Q3;72;86;558;3391;857;558;1,52;39,43;19,84;0;Iran;Middle East;"Sharif University of Technology";"1999-2025";"Chemistry (miscellaneous) (Q3); Civil and Structural Engineering (Q3); Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Chemistry; Computer Science; Engineering; Materials Science; Physics and Astronomy" +17063;21100898309;"Tuning Journal for Higher Education";journal;"23863137, 23408170";"University of Deusto";Yes;Yes;0,304;Q3;9;10;64;333;58;55;0,76;33,30;44,44;0;Spain;Western Europe;"University of Deusto";"2018-2025";"Education (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Social Sciences" +17064;76112;"IEEE Workshop on Statistical Signal Processing Proceedings";conference and proceedings;"23730803, 26933551";"IEEE Computer Society";No;No;0,304;-;35;93;151;2347;180;146;1,19;25,24;19,20;0;United States;Northern America;"IEEE Computer Society";"2001, 2003, 2005, 2007, 2009, 2011, 2014, 2016, 2021, 2023, 2025";"Applied Mathematics; Computer Science Applications; Electrical and Electronic Engineering; Signal Processing";"Computer Science; Engineering; Mathematics" +17065;21101207001;"Proceedings - International Conference on Field-Programmable Technology, ICFPT";conference and proceedings;"28370430, 28370449";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,304;-;7;0;90;0;130;86;1,44;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2010, 2023-2024";"Computer Science Applications; Control and Optimization; Hardware and Architecture; Software";"Computer Science; Mathematics" +17066;21101287730;"Almanack";journal;"22364633";"Federal University of Sao Paulo";Yes;No;0,303;Q1;3;37;101;1831;17;92;0,16;49,49;45,71;0;Brazil;Latin America;"Federal University of Sao Paulo";"2019, 2021-2025";"History (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +17067;21100933830;"Estudios Fronterizos";journal;"23959134";"Universidad Autonoma de Baja California";Yes;Yes;0,303;Q1;10;17;76;1028;70;74;0,90;60,47;36,67;0;Mexico;Latin America;"Universidad Autonoma de Baja California";"2019-2025";"History (Q1); Anthropology (Q2); Demography (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +17068;27956;"Foundations of Physics";journal;"15729516, 00159018";"Springer Netherlands";No;No;0,303;Q1;65;84;287;3410;316;284;1,11;40,60;12,73;0;United States;Northern America;"Springer Netherlands";"1970-2026";"Philosophy (Q1); History and Philosophy of Science (Q2); Physics and Astronomy (miscellaneous) (Q3)";"Arts and Humanities; Physics and Astronomy" +17069;21101308316;"History Education Research Journal";journal;"26319713";"UCL Press";Yes;No;0,303;Q1;6;28;35;1996;45;35;1,33;71,29;47,62;0;United Kingdom;Western Europe;"UCL Press";"2021-2026";"History (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +17070;16400154764;"Near Eastern Archaeology";journal;"10942076, 23255404";"University of Chicago Press";No;No;0,303;Q1;31;34;99;932;49;89;0,53;27,41;34,88;0;United States;Northern America;"University of Chicago Press";"2002-2025";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +17071;5800170390;"William and Mary Quarterly";journal;"19337698, 00435597";"Omohundro Institute of Early American History and Culture";No;No;0,303;Q1;46;22;87;1808;49;82;0,46;82,18;43,48;0;United States;Northern America;"Omohundro Institute of Early American History and Culture";"1936, 1956, 1971-1972, 1975-1978, 1981-1982, 1984-1987, 1999-2025";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +17072;21101289967;"Big Data and Computing Visions";journal;"2821014X, 27834956";"Research Expansion Alliance (REA)";No;No;0,303;Q2;9;25;71;933;142;71;2,50;37,32;29,09;0;Serbia;Eastern Europe;"Research Expansion Alliance (REA)";"2021-2025";"Information Systems and Management (Q2); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Management Information Systems (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +17073;21101050920;"Business, Management and Economics Engineering";journal;"2669249X, 26692481";"Vilnius Gediminas Technical University";Yes;No;0,303;Q2;14;21;57;1229;117;57;2,08;58,52;54,39;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2021-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business and International Management (Q3); Development (Q3); Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Social Sciences" +17074;19200157040;"Ciencia e Agrotecnologia";journal;"14137054, 19811829";"Federal University of Lavras";Yes;No;0,303;Q2;44;50;146;2426;219;146;1,43;48,52;46,70;0;Brazil;Latin America;"Federal University of Lavras";"2007-2026";"Veterinary (miscellaneous) (Q2); Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Food Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences; Veterinary" +17075;25650;"Columbia Journal of Transnational Law";journal;"00101931";"Columbia Law Review Association";No;No;0,303;Q2;41;14;40;3829;35;40;0,80;273,50;72,22;0;United States;Northern America;"Columbia Law Review Association";"1996-2025";"Law (Q2); Political Science and International Relations (Q2)";"Social Sciences" +17076;21100200404;"International Journal of Yoga Therapy";journal;"15312054, 21685835";"";No;No;0,303;Q2;22;11;61;417;54;60;0,83;37,91;76,19;0;United States;Northern America;"";"2011-2014, 2016-2026";"Complementary and Manual Therapy (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions" +17077;21100926532;"Nursing and Midwifery Studies";journal;"23221674, 23221488";"Kashan University of Medical Sciences";Yes;No;0,303;Q2;12;37;110;1366;131;109;1,12;36,92;57,58;0;Iran;Middle East;"Kashan University of Medical Sciences";"2019-2025";"Advanced and Specialized Nursing (Q2); Maternity and Midwifery (Q2)";"Nursing" +17078;21101220946;"Osgoode Hall Law Journal";journal;"28175069";"York University Osgoode Hall Law School";Yes;Yes;0,303;Q2;29;15;51;646;38;50;0,58;43,07;23,81;0;Canada;Northern America;"York University Osgoode Hall Law School";"1996-2025";"Law (Q2)";"Social Sciences" +17079;21101056927;"Spatial Economics";journal;"25875957, 18159834";"Economic Research Institute, Far Eastern Branch, Russian Academy of Sciences";Yes;Yes;0,303;Q2;8;33;101;878;56;101;0,55;26,61;59,09;0;Russian Federation;Eastern Europe;"Economic Research Institute, Far Eastern Branch, Russian Academy of Sciences";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Business and International Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +17080;21100247024;"Advances in Dual Diagnosis";journal;"17570972, 20428324";"Emerald Group Publishing Ltd.";No;No;0,303;Q3;19;21;53;834;67;47;1,00;39,71;51,58;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2025";"Psychiatry and Mental Health (Q3)";"Medicine" +17081;19700175088;"Annals of Pediatric Cardiology";journal;"09742069, 09745149";"Wolters Kluwer Medknow Publications";Yes;Yes;0,303;Q3;32;105;310;1604;255;272;0,67;15,28;31,68;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2009-2025";"Cardiology and Cardiovascular Medicine (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +17082;21101099585;"Calcutta Statistical Association Bulletin";journal;"00080683, 24566462";"Sage Publications India Pvt. Ltd";No;No;0,303;Q3;14;17;42;434;28;32;0,73;25,53;32,14;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1947-1973, 1975-1976, 1978-1981, 1983, 1985-1991, 1994-2026";"Statistics and Probability (Q3)";"Mathematics" +17083;21101021771;"Current Nanomaterials";journal;"24054623, 24054615";"Bentham Science Publishers";No;No;0,303;Q3;14;53;83;4974;169;80;2,25;93,85;37,16;0;Netherlands;Western Europe;"Bentham Science Publishers";"2019-2026";"Ceramics and Composites (Q3); Materials Science (miscellaneous) (Q3); Biomaterials (Q4)";"Materials Science" +17084;27003;"Geoscience Canada";journal;"19114850, 03150941";"Geological Association of Canada";No;No;0,303;Q3;40;5;22;266;24;19;1,19;53,20;29,63;0;Canada;Northern America;"Geological Association of Canada";"1979-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +17085;25860;"Grasas y Aceites";journal;"00173495, 19884214";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,303;Q3;60;3;140;94;222;140;1,32;31,33;63,64;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1991-2025";"Food Science (Q3); Organic Chemistry (Q3)";"Agricultural and Biological Sciences; Chemistry" +17086;18700156715;"Grassland Science";journal;"1744697X, 17446961";"Wiley-Blackwell Publishing Ltd";No;No;0,303;Q3;29;24;82;1179;105;82;1,30;49,13;40,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2009-2026";"Agronomy and Crop Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17087;26608;"Hanneng Cailiao/Chinese Journal of Energetic Materials";journal;"10069941";"Institute of Chemical Materials, China Academy of Engineering Physics";No;No;0,303;Q3;29;122;408;4576;546;408;1,40;37,51;34,10;0;China;Asiatic Region;"Institute of Chemical Materials, China Academy of Engineering Physics";"1996-2025";"Chemistry (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Chemistry; Engineering; Materials Science" +17088;59917;"HNO";journal;"00176192, 14330458";"Springer Verlag";No;No;0,303;Q3;43;166;405;4286;321;346;0,79;25,82;34,77;0;Germany;Western Europe;"Springer Verlag";"1948, 1953-2026";"Otorhinolaryngology (Q3)";"Medicine" +17089;19700175056;"Jordan Journal of Pharmaceutical Sciences";journal;"19957157";"University of Jordan,Deanship of Scientific Research";No;No;0,303;Q3;16;80;196;3844;338;196;1,74;48,05;49,15;0;Jordan;Middle East;"University of Jordan,Deanship of Scientific Research";"2009-2025";"Pharmaceutical Science (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +17090;17226;"Journal of Medical Ultrasound";journal;"09296441, 22121552";"Wolters Kluwer Medknow Publications";Yes;Yes;0,303;Q3;26;85;249;1564;236;197;0,91;18,40;43,65;0;Singapore;Asiatic Region;"Wolters Kluwer Medknow Publications";"1994-2025";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +17091;21101079222;"Journal of Patient Safety and Risk Management";journal;"25160435, 25160443";"SAGE Publications Ltd";No;No;0,303;Q3;21;49;121;1388;105;89;0,88;28,33;51,14;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2026";"Health Policy (Q3); Health (social science) (Q3); Leadership and Management (Q4)";"Medicine; Nursing; Social Sciences" +17092;21100197345;"Journal of Robotics and Mechatronics";journal;"18838049, 09153942";"Fuji Technology Press";Yes;No;0,303;Q3;42;153;476;3902;531;430;1,13;25,50;10,40;0;Japan;Asiatic Region;"Fuji Technology Press";"1989-2026";"Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +17093;13082;"Mathematical Problems in Engineering";journal;"1024123X, 15635147";"John Wiley and Sons Ltd";Yes;No;0,303;Q3;105;0;2920;0;5414;2913;1,94;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"1992, 1995-2024";"Engineering (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3)";"Engineering; Mathematics" +17094;21100255064;"Mendel";journal;"25713701, 18033814";"Brno University of Technology";Yes;No;0,303;Q3;16;0;59;0;101;59;1,28;0,00;0,00;0;Czech Republic;Eastern Europe;"Brno University of Technology";"2005-2007, 2009-2024";"Artificial Intelligence (Q3); Computational Mathematics (Q3); Computer Science (miscellaneous) (Q3); Control and Systems Engineering (Q3); Decision Sciences (miscellaneous) (Q3); Theoretical Computer Science (Q4)";"Computer Science; Decision Sciences; Engineering; Mathematics" +17095;12838;"Metron";journal;"00261424, 2281695X";"Springer-Verlag Italia s.r.l.";No;No;0,303;Q3;29;23;60;640;54;56;0,83;27,83;36,59;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1973-1974, 1999-2026";"Statistics and Probability (Q3)";"Mathematics" +17096;21175;"Natura Croatica";journal;"13300520";"Croatian Natural History Museum";Yes;Yes;0,303;Q3;25;32;100;1144;75;100;0,71;35,75;45,45;0;Croatia;Eastern Europe;"Croatian Natural History Museum";"1992-2026";"Animal Science and Zoology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17097;7200153142;"Revista Internacional de Andrologia";journal;"1698031X, 16980409";"MRE Press";No;No;0,303;Q3;16;24;116;858;140;114;1,41;35,75;24,55;0;Singapore;Asiatic Region;"MRE Press";"2005-2025";"Reproductive Medicine (Q3); Urology (Q3)";"Medicine" +17098;6600153106;"Russian Journal of Pacific Geology";journal;"18197159, 18197140";"Pleiades Publishing";No;No;0,303;Q3;20;72;175;2754;100;174;0,61;38,25;52,98;0;United States;Northern America;"Pleiades Publishing";"2007-2026";"Geochemistry and Petrology (Q3); Geology (Q3); Geophysics (Q3); Oceanography (Q3); Paleontology (Q3); Stratigraphy (Q3)";"Earth and Planetary Sciences" +17099;17308;"Telopea";journal;"03129764, 22004025";"Royal Botanic Gardens";No;No;0,303;Q3;21;20;59;525;33;59;0,47;26,25;12,82;0;Australia;Pacific Region;"Royal Botanic Gardens";"1984, 1986, 1988-1997, 2006-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17100;21101043786;"Vietnam Journal of Chemistry";journal;"25728288";"John Wiley and Sons Inc";No;No;0,303;Q3;22;134;352;6453;648;352;2,09;48,16;26,77;0;United States;Northern America;"John Wiley and Sons Inc";"2018-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +17101;40637;"Zeitschrift fur Gerontologie und Geriatrie";journal;"09486704, 14351269";"Springer Medizin";No;No;0,303;Q3;51;137;328;2398;278;253;0,77;17,50;53,48;4;Germany;Western Europe;"Springer Medizin";"1995-2026";"Gerontology (Q3); Health (social science) (Q3); Issues, Ethics and Legal Aspects (Q3); Geriatrics and Gerontology (Q4)";"Medicine; Nursing; Social Sciences" +17102;22618;"Zhongguo Huanjing Kexue/China Environmental Science";journal;"10006923";"Chinese Society for Environmental Sciences";No;No;0,303;Q3;45;648;2024;30564;3189;2024;1,65;47,17;40,41;0;China;Asiatic Region;"Chinese Society for Environmental Sciences";"2001-2026";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +17103;5600155211;"Historia Critica";journal;"19006152, 01211617";"Universidad de los Andes, Colombia";Yes;Yes;0,302;Q1;15;23;67;1057;32;67;0,62;45,96;46,67;0;Colombia;Latin America;"Universidad de los Andes, Colombia";"2002-2025";"Cultural Studies (Q1); History (Q1); Social Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q3)";"Arts and Humanities; Social Sciences" +17104;21101075508;"Journal of Applied Youth Studies";journal;"22049207, 22049193";"Springer Nature";No;No;0,302;Q1;14;53;67;2988;108;57;1,60;56,38;61,29;1;Singapore;Asiatic Region;"Springer Nature";"2020-2026";"Cultural Studies (Q1); Anthropology (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Education (Q3)";"Social Sciences" +17105;21100777279;"Kant Yearbook";journal;"18684599, 18684602";"Walter de Gruyter GmbH";No;No;0,302;Q1;6;3;18;73;9;18;0,38;24,33;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2016-2025";"Philosophy (Q1)";"Arts and Humanities" +17106;6000152793;"Museum Anthropology";journal;"08928339, 15481379";"Wiley-Blackwell";No;No;0,302;Q1;21;18;43;771;37;34;0,69;42,83;86,36;0;United States;Northern America;"Wiley-Blackwell";"1986-2026";"Museology (Q1); Anthropology (Q2)";"Arts and Humanities; Social Sciences" +17107;26029;"Philosophia (United States)";journal;"00483893, 15749274";"Springer Netherlands";No;No;0,302;Q1;31;124;415;3769;248;409;0,52;30,40;19,20;0;Netherlands;Western Europe;"Springer Netherlands";"1971-1995, 1997-1999, 2001-2026";"Philosophy (Q1)";"Arts and Humanities" +17108;21100921071;"Religion Compass";journal;"17498171";"John Wiley & Sons Inc.";No;No;0,302;Q1;25;22;61;1288;46;61;0,78;58,55;55,00;0;United States;Northern America;"John Wiley & Sons Inc.";"2007-2026";"Religious Studies (Q1)";"Arts and Humanities" +17109;21100983148;"Social Text";journal;"01642472, 15271951";"Duke University Press";No;No;0,302;Q1;16;19;62;1133;63;56;0,93;59,63;23,81;0;United States;Northern America;"Duke University Press";"2019-2025";"Cultural Studies (Q1); Anthropology (Q2); Gender Studies (Q2)";"Social Sciences" +17110;8300153115;"Advances in Environmental Accounting and Management";book series;"14793598";"Emerald Group Publishing Ltd.";No;No;0,302;Q2;17;12;14;666;38;7;2,14;55,50;38,46;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000, 2003, 2006, 2009, 2014, 2017-2020, 2022, 2024-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Accounting (Q3); Management, Monitoring, Policy and Law (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science" +17111;21101131056;"Animal Sentience";journal;"23777478";"WellBeing International";Yes;Yes;0,302;Q2;15;3;101;221;106;101;0,71;73,67;33,33;0;United States;Northern America;"WellBeing International";"2016-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Neuroscience" +17112;21101021169;"Applied Computer Science";journal;"18953735, 23536977";"Polish Association for Knowledge Promotion";Yes;No;0,302;Q2;14;48;119;1925;236;119;2,16;40,10;35,59;0;Poland;Eastern Europe;"Polish Association for Knowledge Promotion";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Artificial Intelligence (Q3); Biomedical Engineering (Q3); Computer Science Applications (Q3); Control and Systems Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Information Systems (Q3); Mechanical Engineering (Q3)";"Computer Science; Economics, Econometrics and Finance; Engineering" +17113;21101095938;"International Journal of Economic Policy Studies";journal;"25244892, 18814387";"Springer Japan";No;No;0,302;Q2;11;18;68;934;100;67;1,43;51,89;27,78;1;Japan;Asiatic Region;"Springer Japan";"2019-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +17114;21101206092;"Journal of Applied Research on Industrial Engineering";journal;"26766167, 25385100";"Research Expansion Alliance (REA)";Yes;Yes;0,302;Q2;13;40;120;1865;230;120;2,13;46,63;24,72;0;Serbia;Eastern Europe;"Research Expansion Alliance (REA)";"2021-2025";"Information Systems and Management (Q2); Control and Systems Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Management Science and Operations Research (Q3)";"Decision Sciences; Engineering" +17115;21100831411;"Journal of The Institution of Engineers (India): Series A";journal;"22502157, 22502149";"Springer";No;No;0,302;Q2;33;96;261;3833;488;261;1,85;39,93;22,12;0;India;Asiatic Region;"Springer";"2012-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Architecture (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Mechanical Engineering (Q3)";"Agricultural and Biological Sciences; Engineering" +17116;14594;"Social Work/Maatskaplike Werk";journal;"23127198, 00378054";"University of Stellenbosch";Yes;No;0,302;Q2;22;44;116;2736;115;104;0,84;62,18;59,02;0;South Africa;Africa;"University of Stellenbosch";"1973-1974, 1977, 1994-2025";"Sociology and Political Science (Q2); Social Work (Q4)";"Social Sciences" +17117;21100802910;"Arterial Hypertension (Poland)";journal;"24496170, 24496162";"Via Medica";Yes;Yes;0,302;Q3;14;16;65;551;64;63;0,74;34,44;62,50;0;Poland;Eastern Europe;"Via Medica";"2015-2025";"Cardiology and Cardiovascular Medicine (Q3); Internal Medicine (Q3); Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +17118;19700182045;"Case Reports in Oncology";journal;"16626575";"S. Karger AG";Yes;No;0,302;Q3;30;197;584;3355;456;584;0,74;17,03;35,44;0;Switzerland;Western Europe;"S. Karger AG";"2010-2026";"Oncology (Q3)";"Medicine" +17119;4600151503;"Chelonian Conservation and Biology";journal;"10718443";"Chelonian Research Foundation";No;No;0,302;Q3;40;40;75;2336;76;73;0,88;58,40;38,46;0;United States;Northern America;"Chelonian Research Foundation";"2006-2025";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +17120;19900193676;"Drinking Water Engineering and Science";journal;"19969465, 19969457";"Copernicus Publications";Yes;Yes;0,302;Q3;28;0;3;0;5;3;0,00;0,00;0,00;0;Germany;Western Europe;"Copernicus Publications";"2008-2022";"Civil and Structural Engineering (Q3); Pollution (Q3); Water Science and Technology (Q3)";"Engineering; Environmental Science" +17121;8000153130;"Ensaio";journal;"18094465, 01044036";"Fundacao Cesgranrio";Yes;Yes;0,302;Q3;18;53;171;1720;114;164;0,65;32,45;54,55;0;Brazil;Latin America;"Fundacao Cesgranrio";"2007-2026";"Education (Q3)";"Social Sciences" +17122;19300156812;"Folia Cryptogamica Estonica";journal;"17367786, 14062070";"University of Tartu Press";Yes;No;0,302;Q3;20;6;36;189;23;34;0,87;31,50;60,87;0;Estonia;Eastern Europe;"University of Tartu Press";"2009-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17123;17700156201;"Genetic Testing and Molecular Biomarkers";journal;"19450265, 19450257";"Mary Ann Liebert Inc.";No;No;0,302;Q3;56;42;191;1498;186;184;0,96;35,67;50,87;0;United States;Northern America;"Mary Ann Liebert Inc.";"2009-2025";"Medicine (miscellaneous) (Q3); Genetics (clinical) (Q4)";"Medicine" +17124;21100847525;"Geoloski Anali Balkanskoga Poluostrva";journal;"24060747, 03500608";"University of Belgrade";Yes;Yes;0,302;Q3;8;12;35;680;31;33;0,93;56,67;21,74;0;Serbia;Eastern Europe;"University of Belgrade";"1979, 2019, 2021-2025";"Economic Geology (Q3); Geochemistry and Petrology (Q3); Geology (Q3); Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3); Paleontology (Q3); Stratigraphy (Q3)";"Earth and Planetary Sciences" +17125;19300156905;"Hiroshima Mathematical Journal";journal;"00182079";"Hiroshima University";No;No;0,302;Q3;16;17;54;321;24;54;0,50;18,88;16,22;0;Japan;Asiatic Region;"Hiroshima University";"1959, 1961-1995, 2008-2025";"Algebra and Number Theory (Q3); Analysis (Q3); Geometry and Topology (Q3)";"Mathematics" +17126;24258;"Inteligencia Artificial";journal;"11373601, 19883064";"Asociacion Espanola de Inteligencia Artificial";Yes;Yes;0,302;Q3;19;32;71;1281;150;70;2,18;40,03;30,68;0;Spain;Western Europe;"Asociacion Espanola de Inteligencia Artificial";"2004-2010, 2012-2026";"Artificial Intelligence (Q3); Software (Q3)";"Computer Science" +17127;21100205986;"International Journal of Global Warming";journal;"17582091, 17582083";"Inderscience";No;No;0,302;Q3;32;71;228;1954;348;228;1,11;27,52;37,04;0;Switzerland;Western Europe;"Inderscience";"2009-2026";"Management, Monitoring, Policy and Law (Q3); Atmospheric Science (Q4); Global and Planetary Change (Q4)";"Earth and Planetary Sciences; Environmental Science" +17128;21100854726;"International Journal of Mathematics and Computer Science";journal;"18140432, 18140424";"";No;No;0,302;Q3;21;161;441;1493;545;441;1,50;9,27;44,51;0;United States;Northern America;"";"2017-2025";"Algebra and Number Theory (Q3); Applied Mathematics (Q3); Computational Mathematics (Q3); Computer Science (miscellaneous) (Q3); Discrete Mathematics and Combinatorics (Q3); Modeling and Simulation (Q3); Numerical Analysis (Q3); Statistics and Probability (Q3)";"Computer Science; Mathematics" +17129;21100836593;"International Journal of Sustainable Economy";journal;"17565812, 17565804";"Inderscience Enterprises Ltd";No;No;0,302;Q3;15;20;68;1549;121;68;1,74;77,45;47,37;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2017-2026";"Business and International Management (Q3); Development (Q3); Economics and Econometrics (Q3); Finance (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +17130;14475;"Journal Francais d'Ophtalmologie";journal;"17730597, 01815512";"Elsevier Masson s.r.l.";Yes;No;0,302;Q3;39;297;1005;4961;512;569;0,50;16,70;41,30;0;France;Western Europe;"Elsevier Masson s.r.l.";"1978-2026";"Ophthalmology (Q3)";"Medicine" +17131;15374;"Journal of Analytical Psychology";journal;"14685922, 00218774";"Wiley-Blackwell Publishing Ltd";No;No;0,302;Q3;33;57;237;1314;115;180;0,46;23,05;50,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1955-2026";"Clinical Psychology (Q3)";"Psychology" +17132;21100455208;"Journal of Cutaneous and Aesthetic Surgery";journal;"09745157, 09742077";"Scientific Scholar LLC";Yes;No;0,302;Q3;33;70;224;999;229;195;1,04;14,27;54,29;0;United States;Northern America;"Scientific Scholar LLC";"2008-2026";"Dermatology (Q3); Surgery (Q3)";"Medicine" +17133;7700153114;"Journal of Engineering Thermophysics";journal;"18102328, 19905432";"Pleiades Publishing";No;No;0,302;Q3;31;51;184;1502;247;184;1,43;29,45;24,37;0;United States;Northern America;"Pleiades Publishing";"2007-2025";"Condensed Matter Physics (Q3); Energy Engineering and Power Technology (Q3); Environmental Engineering (Q3); Modeling and Simulation (Q3)";"Energy; Environmental Science; Mathematics; Physics and Astronomy" +17134;21100867681;"Journal of Hand Surgery Asian-Pacific Volume";journal;"24248363, 24248355";"World Scientific";No;No;0,302;Q3;35;102;367;1898;240;351;0,55;18,61;22,01;0;Singapore;Asiatic Region;"World Scientific";"2016-2026";"Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3)";"Medicine" +17135;21101039057;"Journal of Korean Society for Atmospheric Environment";journal;"15987132, 23835346";"Korean Society for Atmospheric Environment";No;No;0,302;Q3;15;58;175;2846;195;175;1,26;49,07;33,17;0;South Korea;Asiatic Region;"Korean Society for Atmospheric Environment";"2019-2025";"Environmental Engineering (Q3); Environmental Science (miscellaneous) (Q3); Pollution (Q3); Environmental Chemistry (Q4)";"Environmental Science" +17136;29405;"Journal of Visual Impairment and Blindness";journal;"15591476, 0145482X";"AFB Press";No;No;0,302;Q3;55;47;208;1230;296;149;1,37;26,17;60,17;0;United States;Northern America;"AFB Press";"1958, 1968, 1977-2026";"Ophthalmology (Q3); Rehabilitation (Q3)";"Medicine" +17137;21101045277;"LOGI - Scientific Journal on Transport and Logistics";journal;"23363037";"";Yes;No;0,302;Q3;10;18;70;477;108;70;1,54;26,50;34,88;0;Poland;Eastern Europe;"";"2019-2026";"Automotive Engineering (Q3); Business and International Management (Q3); Civil and Structural Engineering (Q3); Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3); Transportation (Q3)";"Business, Management and Accounting; Decision Sciences; Engineering; Social Sciences" +17138;21100933835;"Middle East Journal of Digestive Diseases";journal;"20085249, 20085230";"Iranian Association of Gastroenterology and Hepatology";Yes;Yes;0,302;Q3;13;45;151;1346;144;145;0,83;29,91;40,51;0;Iran;Middle East;"Iranian Association of Gastroenterology and Hepatology";"2015-2025";"Gastroenterology (Q3); Hepatology (Q4)";"Medicine" +17139;21101041546;"National Journal of Maxillofacial Surgery";journal;"09755950, 22293418";"Wolters Kluwer Medknow Publications";No;No;0,302;Q3;15;95;254;2225;267;246;0,96;23,42;47,23;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2025";"Oral Surgery (Q3); Surgery (Q3)";"Dentistry; Medicine" +17140;21100832766;"Parks";journal;"24112119, 0960233X";"IUCN - International Union for the Conservation of Nature";Yes;Yes;0,302;Q3;28;19;50;762;51;48;0,83;40,11;38,28;0;Switzerland;Western Europe;"IUCN - International Union for the Conservation of Nature";"2012-2025";"Nature and Landscape Conservation (Q3)";"Environmental Science" +17141;5000156908;"Revista Brasileira de Ciencia Avicola / Brazilian Journal of Poultry Science";journal;"18069061, 1516635X";"Fundacao APINCO de Ciencia e Tecnologia Avicolas";Yes;No;0,302;Q3;43;82;235;3673;315;233;1,32;44,79;35,45;0;Brazil;Latin America;"Fundacao APINCO de Ciencia e Tecnologia Avicolas";"2002, 2006-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +17142;19700174712;"SAE International Journal of Fuels and Lubricants";journal;"19463960, 19463952";"SAE International";No;No;0,302;Q3;58;17;59;599;66;57;1,27;35,24;15,38;0;United States;Northern America;"SAE International";"2009-2025";"Fuel Technology (Q3); Pollution (Q3)";"Energy; Environmental Science" +17143;14248;"Sociobiology";journal;"03616525";"Universidade Estadual de Feira de Santana";Yes;Yes;0,302;Q3;45;56;137;2823;151;137;1,02;50,41;31,90;1;Brazil;Latin America;"Universidade Estadual de Feira de Santana";"1988, 1993-1994, 1996-2025";"Insect Science (Q3)";"Agricultural and Biological Sciences" +17144;21100847471;"South Asian Journal of Business and Management Cases";journal;"23210303, 22779779";"SAGE Publications Ltd";No;No;0,302;Q3;15;17;59;910;135;50;1,93;53,53;56,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2012, 2015-2025";"Business and International Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +17145;21100209308;"Theory of Probability and Mathematical Statistics";journal;"00949000, 15477363";"American Mathematical Society";No;No;0,302;Q3;16;25;62;553;34;58;0,58;22,12;15,38;0;United States;Northern America;"American Mathematical Society";"2004-2025";"Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +17146;17400154809;"Biomolecular NMR Assignments";journal;"1874270X, 18742718";"Springer Science and Business Media B.V.";No;No;0,302;Q4;20;39;156;1050;85;156;0,51;26,92;34,41;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2007-2026";"Biochemistry (Q4); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +17147;21100199555;"eCrime Researchers Summit, eCrime";conference and proceedings;"21591245, 21591237";"IEEE Computer Society";No;No;0,302;-;23;0;39;0;55;35;1,07;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2011-2024";"Computer Networks and Communications; Computer Science Applications; Information Systems; Information Systems and Management";"Computer Science; Decision Sciences" +17148;21100941616;"Afkar";journal;"25501755, 15118819";"University of Malaya";No;No;0,301;Q1;7;29;102;1465;89;102;0,95;50,52;33,33;0;Malaysia;Asiatic Region;"University of Malaya";"2019-2025";"Philosophy (Q1); Religious Studies (Q1)";"Arts and Humanities" +17149;4700152837;"History and Philosophy of Logic";journal;"14645149, 01445340";"Taylor and Francis Ltd.";No;No;0,301;Q1;24;50;86;1764;42;83;0,47;35,28;20,34;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2026";"History (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities" +17150;19700187808;"Journal of Medical Ethics and History of Medicine";journal;"20080387";"Tehran University of Medical Sciences";Yes;No;0,301;Q1;28;20;54;673;70;46;1,18;33,65;44,44;0;Iran;Middle East;"Tehran University of Medical Sciences";"2008-2025";"History (Q1); Law (Q2); Computer Science (miscellaneous) (Q3)";"Arts and Humanities; Computer Science; Social Sciences" +17151;21101047374;"Journal of Religion, Media and Digital Culture";journal;"21659214, 25888099";"Brill Academic Publishers";No;No;0,301;Q1;11;20;52;993;33;51;0,61;49,65;36,36;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2025";"Religious Studies (Q1)";"Arts and Humanities" +17152;21100801744;"Violence and Gender";journal;"23267852, 23267836";"Mary Ann Liebert Inc.";No;No;0,301;Q1;26;16;79;662;78;75;1,09;41,38;61,40;0;United States;Northern America;"Mary Ann Liebert Inc.";"2014-2025";"Cultural Studies (Q1); Gender Studies (Q2); Health (social science) (Q3); Psychiatry and Mental Health (Q3); Social Psychology (Q3)";"Medicine; Psychology; Social Sciences" +17153;21100224404;"World Literature Studies";journal;"13379275, 13379690";"Slovak academy of Sciences, Institute of World literature";No;No;0,301;Q1;7;46;116;1338;41;99;0,25;29,09;72,55;0;Slovakia;Eastern Europe;"Slovak academy of Sciences, Institute of World literature";"2009-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +17154;8300153214;"B.E. Journal of Economic Analysis and Policy";journal;"19351682";"Walter de Gruyter GmbH";No;No;0,301;Q2;62;46;136;1662;124;135;0,68;36,13;38,18;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2001, 2005-2026";"Economics, Econometrics and Finance (miscellaneous) (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +17155;21101164609;"European Labour Law Journal";journal;"23995556, 20319525";"SAGE Publications Ltd";No;No;0,301;Q2;16;46;142;1389;224;99;1,22;30,20;57,41;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2010-2026";"Law (Q2); Sociology and Political Science (Q2)";"Social Sciences" +17156;21101044834;"Iconos";journal;"13901249, 13908065";"FLACSO Ecuador";Yes;Yes;0,301;Q2;9;33;99;1415;74;93;0,50;42,88;58,33;0;Ecuador;Latin America;"FLACSO Ecuador";"2019-2026";"Anthropology (Q2); Gender Studies (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Social Sciences" +17157;21101316723;"International Journal of Sport Studies for Health";journal;"25885782";"KMAN Publication Inc.";No;No;0,301;Q2;8;40;70;1548;93;68;1,54;38,70;41,94;0;Canada;Northern America;"KMAN Publication Inc.";"2021-2026";"Social Sciences (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine; Social Sciences" +17158;21101101209;"Journal of Social Computing";journal;"26885255";"Tsinghua University Press";Yes;Yes;0,301;Q2;14;28;84;1415;140;73;1,67;50,54;39,13;0;China;Asiatic Region;"Tsinghua University Press";"2020-2025";"Communication (Q2); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Information Systems (Q3)";"Computer Science; Social Sciences" +17159;19200156959;"Kafkas Universitesi Veteriner Fakultesi Dergisi";journal;"13006045, 13092251";"Kafkas University";Yes;Yes;0,301;Q2;31;88;283;4070;514;280;2,05;46,25;41,49;0;Turkey;Middle East;"Kafkas University";"2008-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +17160;21101123414;"Town and Regional Planning";journal;"1012280X, 24150495";"University of the Free State";Yes;Yes;0,301;Q2;9;23;53;1413;57;44;1,00;61,43;43,59;0;South Africa;Africa;"University of the Free State";"2019-2025";"Urban Studies (Q2); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +17161;21101312190;"Weizenbaum Journal of the Digital Society";journal;"27485625";"Weizenbaum Institute";No;No;0,301;Q2;6;22;57;1577;90;49;1,69;71,68;51,52;1;Germany;Western Europe;"Weizenbaum Institute";"2021-2025";"Communication (Q2); Sociology and Political Science (Q2); Human-Computer Interaction (Q3); Information Systems (Q3)";"Computer Science; Social Sciences" +17162;21100787098;"World Economy and International Relations";journal;"01312227";"";No;No;0,301;Q2;15;138;442;4187;191;438;0,47;30,34;41,36;3;Russian Federation;Eastern Europe;"";"2015-2026";"Political Science and International Relations (Q2); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +17163;100147320;"Archives of Phytopathology and Plant Protection";journal;"03235408, 14772906";"Taylor and Francis Ltd.";No;No;0,301;Q3;38;64;280;3247;457;278;1,51;50,73;37,39;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974-2026";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +17164;21100202725;"Chemistry and Chemical Technology";journal;"19964196";"Lviv Polytechnic National University";No;No;0,301;Q3;26;75;244;3034;379;244;1,66;40,45;46,34;0;Ukraine;Eastern Europe;"Lviv Polytechnic National University";"2012-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +17165;22561;"Doklady Earth Sciences";journal;"1028334X, 15318354";"Pleiades Publishing";No;No;0,301;Q3;44;297;836;6477;543;835;0,65;21,81;37,10;0;United States;Northern America;"Pleiades Publishing";"1998-2026";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +17166;12802;"Fishery Bulletin";journal;"00900656, 19374518";"National Marine Fisheries Service";Yes;Yes;0,301;Q3;78;16;53;716;54;53;0,81;44,75;36,23;0;United States;Northern America;"National Marine Fisheries Service";"1979-1986, 1988-2025";"Aquatic Science (Q3)";"Agricultural and Biological Sciences" +17167;21100790799;"Fossil Imprint";journal;"25334050, 25334069";"National Museum Prague";Yes;No;0,301;Q3;17;14;61;1026;45;59;0,41;73,29;34,29;0;Czech Republic;Eastern Europe;"National Museum Prague";"2016-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Geology (Q3); Paleontology (Q3); Stratigraphy (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +17168;13225;"Gaoya Dianqi/High Voltage Apparatus";journal;"10011609";"Xi'an High Voltage Apparatus Research Institute";No;No;0,301;Q3;37;319;876;9422;1313;876;1,65;29,54;28,68;0;China;Asiatic Region;"Xi'an High Voltage Apparatus Research Institute";"2001-2026";"Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)";"Energy; Engineering" +17169;21101205765;"Gastroenterology and Endoscopy";journal;"29497523";"KeAi Communications Co.";Yes;No;0,301;Q3;7;37;55;1694;101;52;1,84;45,78;40,82;0;China;Asiatic Region;"KeAi Communications Co.";"2023-2026";"Gastroenterology (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Hepatology (Q4)";"Medicine" +17170;29004;"Hangkong Dongli Xuebao/Journal of Aerospace Power";journal;"10008055";"BUAA Press";No;No;0,301;Q3;32;521;979;13988;1069;979;0,95;26,85;29,11;0;China;Asiatic Region;"BUAA Press";"1990-1992, 2001-2026";"Aerospace Engineering (Q3); Applied Mathematics (Q3)";"Engineering; Mathematics" +17171;21100863634;"Indian Journal of Corporate Governance";journal;"09746862, 24542482";"SAGE Publications Ltd";No;No;0,301;Q3;18;16;48;1434;90;41;1,56;89,63;54,84;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2025";"Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +17172;21100406800;"International Journal of Engineering and Technology Innovation";journal;"2226809X, 22235329";"Taiwan Association of Engineering and Technology Innovation";Yes;No;0,301;Q3;18;32;80;951;155;80;1,86;29,72;34,38;0;Taiwan;Asiatic Region;"Taiwan Association of Engineering and Technology Innovation";"2015-2026";"Civil and Structural Engineering (Q3); Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +17173;21100810718;"International Journal of Surgery Protocols";journal;"24683574";"Wolters Kluwer Health";Yes;No;0,301;Q3;11;4;40;111;26;40;0,50;27,75;39,13;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2016-2025";"Surgery (Q3)";"Medicine" +17174;22505;"Invertebrate Biology";journal;"10778306, 17447410";"American Microscopical Society";No;No;0,301;Q3;49;0;79;0;96;79;0,94;0,00;0,00;0;United States;Northern America;"American Microscopical Society";"1995-2024";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +17175;21100409406;"Journal of International Commerce, Economics and Policy";journal;"17939933, 17939941";"World Scientific";No;No;0,301;Q3;21;27;71;1916;169;70;2,33;70,96;30,00;0;Singapore;Asiatic Region;"World Scientific";"2010-2026";"Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +17176;19700175455;"Journal of Obstetrics and Gynecology of India";journal;"09719202, 09756434";"Springer";No;No;0,301;Q3;33;349;435;4985;377;389;0,75;14,28;61,64;1;India;Asiatic Region;"Springer";"2010-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +17177;21100201057;"Korean Journal of Adult Nursing";journal;"2288338X, 12254886";"Korean Society of Adult Nursing";No;No;0,301;Q3;18;43;116;1411;102;116;0,98;32,81;79,35;0;South Korea;Asiatic Region;"Korean Society of Adult Nursing";"2012-2025";"Nursing (miscellaneous) (Q3)";"Nursing" +17178;130038;"Letters in Drug Design and Discovery";journal;"1875628X, 15701808";"KeAi Communications Co.";No;No;0,301;Q3;41;172;636;9610;1129;615;1,71;55,87;42,88;0;China;Asiatic Region;"KeAi Communications Co.";"2005-2026";"Drug Discovery (Q3); Pharmaceutical Science (Q3); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +17179;21100937016;"Mass Spectrometry";journal;"21865116, 2187137X";"Mass Spectrometry Society of Japan";Yes;Yes;0,301;Q3;10;18;67;574;83;66;1,02;31,89;25,00;0;Japan;Asiatic Region;"Mass Spectrometry Society of Japan";"1994, 2019-2025";"Atomic and Molecular Physics, and Optics (Q3); Instrumentation (Q3); Spectroscopy (Q3)";"Chemistry; Physics and Astronomy" +17180;21100255571;"Medical Science Monitor Basic Research";journal;"23254394, 23254416";"International Scientific Information, Inc.";No;No;0,301;Q3;31;3;26;0;36;26;0,73;0,00;50,00;0;United States;Northern America;"International Scientific Information, Inc.";"2013-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +17181;12316;"Optical Engineering";journal;"15602303, 00913286";"SPIE";No;No;0,301;Q3;127;334;1247;10169;1740;1227;1,29;30,45;27,38;0;United States;Northern America;"SPIE";"1972-2026";"Atomic and Molecular Physics, and Optics (Q3); Engineering (miscellaneous) (Q3)";"Engineering; Physics and Astronomy" +17182;21101266458;"Railway Standard Design";journal;"10042954";"";Yes;No;0,301;Q3;11;351;1049;8996;787;1049;0,80;25,63;28,48;0;China;Asiatic Region;"";"2020-2026";"Building and Construction (Q3); Civil and Structural Engineering (Q3); Engineering (miscellaneous) (Q3)";"Engineering" +17183;21100810419;"Revista Brasileira de Recursos Hidricos";journal;"23180331";"Brazilian Journal of Water Resources";Yes;Yes;0,301;Q3;20;49;140;2395;159;140;1,11;48,88;30,99;0;Brazil;Latin America;"Brazilian Journal of Water Resources";"2016-2025";"Aquatic Science (Q3); Earth-Surface Processes (Q3); Oceanography (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +17184;25353;"Revista de Gastroenterologia de Mexico";journal;"03750906";"Asociacion Mexicana de Gastroenterologia";Yes;No;0,301;Q3;28;149;263;3665;270;218;1,11;24,60;36,31;0;Mexico;Latin America;"Asociacion Mexicana de Gastroenterologia";"1947-1949, 1961, 1974-2026";"Gastroenterology (Q3)";"Medicine" +17185;21100967531;"Scientia Agropecuaria";journal;"20779917, 23066741";"Universidad Nacional de Trujillo";Yes;No;0,301;Q3;16;66;131;4222;206;131;1,42;63,97;33,22;0;Peru;Latin America;"Universidad Nacional de Trujillo";"2019-2026";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +17186;21100220409;"Proceedings of IEEE Workshop on Advanced Robotics and its Social Impacts, ARSO";conference and proceedings;"21627576, 21627568";"IEEE Computer Society";No;No;0,301;-;23;62;102;1492;138;98;1,51;24,06;22,87;0;United States;Northern America;"IEEE Computer Society";"2007-2013, 2015-2019, 2021-2025";"Artificial Intelligence; Computer Science Applications; Computer Vision and Pattern Recognition; Electrical and Electronic Engineering; Human-Computer Interaction; Social Sciences (miscellaneous)";"Computer Science; Engineering; Social Sciences" +17187;25059;"Contemporary Jewry";journal;"01471694, 18765165";"Springer Science and Business Media B.V.";No;No;0,300;Q1;20;22;134;914;63;121;0,44;41,55;57,69;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1976-1978, 1980, 1982-1983, 1986-2003, 2005-2026";"Cultural Studies (Q1); History (Q1); Religious Studies (Q1); Anthropology (Q2)";"Arts and Humanities; Social Sciences" +17188;21100861710;"Interdisciplinary Studies of Literature";journal;"25204920";"Knowledge Hub Publishing Company Limited (Hong Kong)";No;No;0,300;Q1;4;54;183;1152;29;183;0,06;21,33;43,48;0;China;Asiatic Region;"Knowledge Hub Publishing Company Limited (Hong Kong)";"2017-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +17189;21101173095;"Journal of Environmental Media";journal;"26322471, 26322463";"Intellect Ltd.";No;No;0,300;Q1;10;22;55;670;32;50;0,42;30,45;52,38;0;United Kingdom;Western Europe;"Intellect Ltd.";"2020-2026";"Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2); Communication (Q2); Environmental Science (miscellaneous) (Q3)";"Arts and Humanities; Environmental Science; Social Sciences" +17190;21101089566;"Sexuality, Gender and Policy";journal;"26395355";"John Wiley and Sons Inc";No;No;0,300;Q1;7;39;57;1553;61;48;0,96;39,82;36,67;0;United States;Northern America;"John Wiley and Sons Inc";"2017, 2019-2026";"Cultural Studies (Q1); Gender Studies (Q2); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +17191;21101121582;"Caraka Tani: Journal of Sustainable Agriculture";journal;"25992570, 26139456";"Sebelas Maret University";Yes;No;0,300;Q2;13;40;99;2331;192;99;2,17;58,28;45,60;0;Indonesia;Asiatic Region;"Sebelas Maret University";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Agronomy and Crop Science (Q3); Environmental Science (miscellaneous) (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17192;145657;"Conflict Resolution Quarterly";journal;"15365581, 15411508";"Wiley-Liss Inc.";No;No;0,300;Q2;29;61;101;2943;155;85;1,58;48,25;49,49;0;United States;Northern America;"Wiley-Liss Inc.";"2002, 2005-2026";"Law (Q2); Psychology (miscellaneous) (Q3)";"Psychology; Social Sciences" +17193;20062;"Economie et Statistique";journal;"17775574, 03361454";"Institut National de la Statistique et des Etudes Economiques";No;No;0,300;Q2;18;11;65;261;26;62;0,28;23,73;29,17;2;France;Western Europe;"Institut National de la Statistique et des Etudes Economiques";"1977-1998, 2007-2025";"Sociology and Political Science (Q2); Economics and Econometrics (Q3); Statistics and Probability (Q3)";"Economics, Econometrics and Finance; Mathematics; Social Sciences" +17194;21100258386;"Institutions and Economies";journal;"22321640, 22321349";"Faculty of Economics and Administration";No;No;0,300;Q2;17;20;62;1104;92;60;1,55;55,20;44,23;0;Malaysia;Asiatic Region;"Faculty of Economics and Administration";"2012-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +17195;19900192130;"International Wood Products Journal";journal;"20426445, 20426453";"SAGE Publications Ltd";No;No;0,300;Q2;24;37;57;1274;88;55;1,28;34,43;29,06;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2010-2025";"Forestry (Q2); Materials Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Materials Science" +17196;21100322898;"Journal of Urban and Regional Analysis";journal;"20674082, 20689969";"Bucharest University Press";Yes;Yes;0,300;Q2;15;12;38;1017;60;38;1,63;84,75;40,48;0;Romania;Eastern Europe;"Bucharest University Press";"2009-2025";"Urban Studies (Q2)";"Social Sciences" +17197;21101292826;"AIMS Bioengineering";journal;"23751495";"American Institute of Mathematical Sciences";Yes;No;0,300;Q3;7;27;54;1941;98;51;1,81;71,89;35,16;0;United States;Northern America;"American Institute of Mathematical Sciences";"2023-2026";"Biomedical Engineering (Q3); Biotechnology (Q3); Engineering (miscellaneous) (Q3); Bioengineering (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering" +17198;4700152498;"Archives of Thermodynamics";journal;"20836023, 12310956";"Polish Academy of Sciences, Committee on Thermodynamics and Combustion";Yes;No;0,300;Q3;23;79;186;2670;265;185;1,37;33,80;19,40;0;Poland;Eastern Europe;"Polish Academy of Sciences, Committee on Thermodynamics and Combustion";"2003-2025";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +17199;100147334;"Canadian Journal of Education";journal;"03802361";"Canadian Society for the Study of Education (CSSE)";Yes;Yes;0,300;Q3;49;43;128;2134;104;108;0,71;49,63;71,28;0;Canada;Northern America;"Canadian Society for the Study of Education (CSSE)";"1996-1997, 1999-2002, 2005-2025";"Education (Q3)";"Social Sciences" +17200;5000160401;"Earth's Cryosphere";journal;"15607496";"Publishing House of Siberian Branch of the Russian Academy of Sciences";No;No;0,300;Q3;22;24;103;697;54;103;0,48;29,04;44,74;0;Russian Federation;Eastern Europe;"Publishing House of Siberian Branch of the Russian Academy of Sciences";"2003-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Earth-Surface Processes (Q3); Geotechnical Engineering and Engineering Geology (Q3); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science" +17201;4500151552;"High Energy Density Physics";journal;"15741818";"Elsevier B.V.";No;No;0,300;Q3;43;54;83;2971;107;82;1,37;55,02;21,76;0;Netherlands;Western Europe;"Elsevier B.V.";"2005-2026";"Nuclear and High Energy Physics (Q3); Radiation (Q3)";"Physics and Astronomy" +17202;5400152632;"Horticultural Science";journal;"0862867X";"Czech Academy of Agricultural Sciences";Yes;No;0,300;Q3;34;32;91;1370;127;91;1,14;42,81;36,53;0;Czech Republic;Eastern Europe;"Czech Academy of Agricultural Sciences";"2002-2025";"Horticulture (Q3)";"Agricultural and Biological Sciences" +17203;21101244202;"iGIE";journal;"29497086";"Elsevier B.V.";Yes;No;0,300;Q3;6;80;190;990;144;184;0,78;12,38;29,34;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Gastroenterology (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +17204;24023;"Journal of Chromatographic Science";journal;"00219665, 1945239X";"Oxford University Press";No;No;0,300;Q3;69;97;333;2736;637;333;1,98;28,21;44,70;0;United States;Northern America;"Oxford University Press";"1963-2026";"Analytical Chemistry (Q3); Medicine (miscellaneous) (Q3)";"Chemistry; Medicine" +17205;21101268974;"Journal of Disaster and Risk";journal;"26368390";"Ankara University";No;No;0,300;Q3;9;87;188;3992;219;188;1,17;45,89;56,65;0;Turkey;Middle East;"Ankara University";"2020-2026";"Environmental Engineering (Q3); Geography, Planning and Development (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering; Environmental Science; Social Sciences" +17206;17500155123;"Journal of Imagery Research in Sport and Physical Activity";journal;"19320191";"Walter de Gruyter GmbH";No;No;0,300;Q3;17;8;37;395;38;36;1,06;49,38;66,67;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2009-2025";"Applied Psychology (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)";"Health Professions; Psychology" +17207;21100227408;"Journal of Micro and Bio Robotics";journal;"21946426, 21946418";"Springer Science and Business Media Deutschland GmbH";No;No;0,300;Q3;25;16;28;608;48;28;1,79;38,00;29,17;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2013-2026";"Biotechnology (Q3); Electrical and Electronic Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Biomedical Engineering (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +17208;21100942842;"Physical Education Theory and Methodology";journal;"19937997, 19937989";"OVS LLC";Yes;No;0,300;Q3;18;159;339;6305;498;339;1,56;39,65;33,12;0;Ukraine;Eastern Europe;"OVS LLC";"2019-2025";"Education (Q3); Health (social science) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Public Health, Environmental and Occupational Health (Q3)";"Health Professions; Medicine; Social Sciences" +17209;5800173388;"Plankton and Benthos Research";journal;"18808247, 1882627X";"Plankton Society of Japan";No;No;0,300;Q3;27;56;93;2301;95;85;0,77;41,09;29,45;0;Japan;Asiatic Region;"Plankton Society of Japan";"2006-2025";"Aquatic Science (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Oceanography (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +17210;21100927979;"Pollution";journal;"23834501, 2383451X";"University of Tehran";Yes;Yes;0,300;Q3;22;86;340;3939;499;340;1,41;45,80;36,93;0;Iran;Middle East;"University of Tehran";"2019-2025";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +17211;21101301192;"SAIEE Africa Research Journal";journal;"19911696";"South African Institute of Electrical Engineers";Yes;No;0,300;Q3;11;0;25;0;66;25;2,83;0,00;0,00;0;South Africa;Africa;"South African Institute of Electrical Engineers";"2014, 2017-2024";"Electrical and Electronic Engineering (Q3)";"Engineering" +17212;21100226998;"Sovremennye Tehnologii v Medicine";journal;"2309995X, 20764243";"Privolzhsky Research Medical University";Yes;No;0,300;Q3;20;46;131;2128;213;130;1,53;46,26;53,88;0;Russian Federation;Eastern Europe;"Privolzhsky Research Medical University";"2009-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +17213;21101119534;"Stats";journal;"2571905X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,300;Q3;16;119;250;4399;314;250;1,31;36,97;24,72;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Statistics and Probability (Q3)";"Mathematics" +17214;21100469599;"Therya";journal;"20073364";"Asociacion Mexicana de Mastozoologia";Yes;Yes;0,300;Q3;17;33;98;2048;78;89;0,73;62,06;41,91;0;Mexico;Latin America;"Asociacion Mexicana de Mastozoologia";"2011, 2013, 2015-2026";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +17215;12079;"Atmosfera";journal;"01876236, 23958812";"Universidad Nacional Autonoma de Mexico";Yes;No;0,300;Q4;42;25;139;1204;151;139;1,06;48,16;36,47;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1988-2025";"Atmospheric Science (Q4)";"Earth and Planetary Sciences" +17216;56321;"European Journal of Inflammation";journal;"20587392, 1721727X";"SAGE Publications Inc.";Yes;No;0,300;Q4;27;16;205;682;243;200;1,16;42,63;36,76;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2004-2026";"Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +17217;145205;"Proceedings - International Conference on Computer Communications and Networks, ICCCN";conference and proceedings;"10952055, 26379430";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,300;-;55;185;296;4171;366;281;1,22;22,55;25,91;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2000-2011, 2013-2015, 2018-2025";"Computer Networks and Communications; Computer Science (miscellaneous); Hardware and Architecture; Software";"Computer Science" +17218;12456;"Acta Biotheoretica";journal;"00015342, 15728358";"Springer Science and Business Media B.V.";No;No;0,299;Q1;42;18;61;1149;98;61;1,51;63,83;13,04;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1935-1943, 1946-1949, 1951-1953, 1955-1965, 1967-1988, 1990-2026";"Philosophy (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2); Applied Mathematics (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Biochemistry, Genetics and Molecular Biology; Environmental Science; Mathematics; Medicine" +17219;5800207412;"Journal of Intercultural Communication";journal;"14041634";"Immigrant Institutet";No;No;0,299;Q1;14;56;137;3084;222;137;1,66;55,07;53,78;0;Sweden;Western Europe;"Immigrant Institutet";"2011-2026";"Cultural Studies (Q1); Communication (Q2); Gender Studies (Q2); Linguistics and Language (Q2); Education (Q3); Public Administration (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +17220;5800208402;"Citizenship, Social and Economics Education";journal;"20471734";"SAGE Publications Inc.";No;No;0,299;Q2;18;24;36;1475;57;35;1,29;61,46;41,46;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2011-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2); Education (Q3)";"Economics, Econometrics and Finance; Social Sciences" +17221;12428;"Comptes Rendus - Biologies";journal;"17683238, 16310691";"Academie des sciences";Yes;Yes;0,299;Q2;103;20;97;1483;83;95;0,71;74,15;38,89;0;France;Western Europe;"Academie des sciences";"1959, 2002-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +17222;19700201511;"Interdisciplinary Journal of Information, Knowledge, and Management";journal;"15551237, 15551229";"Informing Science Institute";Yes;No;0,299;Q2;34;38;96;2227;209;96;2,28;58,61;48,75;0;United States;Northern America;"Informing Science Institute";"2006-2025";"Information Systems and Management (Q2); Computer Science (miscellaneous) (Q3)";"Computer Science; Decision Sciences" +17223;21101214489;"Modern Economic Science";journal;"10022848";"";No;No;0,299;Q2;9;57;179;1754;148;179;0,96;30,77;36,84;0;China;Asiatic Region;"";"2020-2025";"Economics, Econometrics and Finance (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Economics, Econometrics and Finance; Social Sciences" +17224;21100218509;"Poradnik Jezykowy";journal;"05515343";"Towarzystwo Kultury Jezyka";Yes;Yes;0,299;Q2;7;77;235;1833;23;231;0,10;23,81;60,94;0;Poland;Eastern Europe;"Towarzystwo Kultury Jezyka";"2011-2025";"Linguistics and Language (Q2)";"Social Sciences" +17225;21101039225;"Vitruvio";journal;"24449091";"Universidad Politecnica de Valencia";Yes;Yes;0,299;Q2;9;11;72;361;108;67;1,58;32,82;47,37;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2019-2025";"Architecture (Q2); Building and Construction (Q3)";"Engineering" +17226;21101043308;"Acta Hydrobiologica Sinica";journal;"10003207";"Science Press";No;No;0,299;Q3;16;214;630;11430;743;624;1,16;53,41;35,50;0;China;Asiatic Region;"Science Press";"2019-2026";"Aquatic Science (Q3); Ecology (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17227;25569;"Analog Integrated Circuits and Signal Processing";journal;"09251030, 15731979";"Springer Netherlands";No;No;0,299;Q3;60;223;355;8004;743;343;2,48;35,89;28,92;0;Netherlands;Western Europe;"Springer Netherlands";"1991-2026";"Hardware and Architecture (Q3); Signal Processing (Q3); Surfaces, Coatings and Films (Q3)";"Computer Science; Materials Science" +17228;21101079804;"Applied Microscopy";journal;"22875123, 22874445";"Springer Nature";Yes;No;0,299;Q3;14;15;35;840;61;35;1,91;56,00;35,42;0;Singapore;Asiatic Region;"Springer Nature";"2019-2026";"Applied Microbiology and Biotechnology (Q3); Microbiology (Q4)";"Immunology and Microbiology" +17229;14502;"Archives of Civil Engineering";journal;"23003103, 12302945";"Polska Akademia Nauk";Yes;No;0,299;Q3;24;159;475;4535;521;474;1,02;28,52;31,37;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1996-2025";"Civil and Structural Engineering (Q3)";"Engineering" +17230;21101049614;"Bioelectricity";journal;"25763105, 25763113";"Mary Ann Liebert Inc.";No;No;0,299;Q3;19;38;99;2306;115;82;1,22;60,68;44,38;0;United States;Northern America;"Mary Ann Liebert Inc.";"2019-2025";"Electrical and Electronic Engineering (Q3); Medicine (miscellaneous) (Q3); Transplantation (Q3); Biomedical Engineering (Q4)";"Engineering; Medicine" +17231;19200156904;"Chalcogenide Letters";journal;"15848663";"S.C. Virtual Company of Physics S.R.L";Yes;No;0,299;Q3;38;83;276;2776;457;271;1,75;33,45;36,18;0;Romania;Eastern Europe;"S.C. Virtual Company of Physics S.R.L";"2006-2025";"Chemistry (miscellaneous) (Q3); Electronic, Optical and Magnetic Materials (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +17232;21101150732;"Clinical Epileptology";journal;"29481058, 2948104X";"Springer Medizin";No;No;0,299;Q3;7;60;113;2122;108;95;0,96;35,37;45,51;0;Germany;Western Europe;"Springer Medizin";"2023-2026";"Neurology (clinical) (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +17233;21101164996;"Geology and Exploration";journal;"04955331";"";Yes;No;0,299;Q3;14;95;334;4298;305;333;0,92;45,24;32,03;0;China;Asiatic Region;"";"2019-2025";"Economic Geology (Q3); Geochemistry and Petrology (Q3); Geology (Q3); Geophysics (Q3)";"Earth and Planetary Sciences" +17234;13000154721;"International Food Research Journal";journal;"22317546, 19854668";"Universiti Putra Malaysia";Yes;No;0,299;Q3;79;57;404;2987;620;404;1,31;52,40;50,30;0;Malaysia;Asiatic Region;"Universiti Putra Malaysia";"2007-2025, 2027";"Food Science (Q3)";"Agricultural and Biological Sciences" +17235;19700186841;"International Journal of RF Technologies: Research and Applications";journal;"17545749, 17545730";"SAGE Publications Ltd";No;No;0,299;Q3;19;8;17;323;33;17;2,29;40,38;26,32;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2009-2025";"Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Engineering" +17236;6700153282;"International Journal of Web and Grid Services";journal;"17411106, 17411114";"Inderscience Enterprises Ltd";No;No;0,299;Q3;29;20;61;699;93;61;1,46;34,95;25,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2025";"Computer Networks and Communications (Q3); Software (Q3)";"Computer Science" +17237;13750;"JBIS - Journal of the British Interplanetary Society";journal;"0007084X";"British Interplanetary Society";No;No;0,299;Q3;30;43;150;1350;63;146;0,46;31,40;4,55;0;United Kingdom;Western Europe;"British Interplanetary Society";"1968-1971, 1974-1990, 1992-1993, 1995-2025";"Aerospace Engineering (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Engineering" +17238;16478;"Keio Journal of Medicine";journal;"18801293, 00229717";"Keio University School of Medicine";No;No;0,299;Q3;50;28;37;813;36;37;0,64;29,04;36,72;0;Japan;Asiatic Region;"Keio University School of Medicine";"1952-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +17239;7600153103;"Malaysian Journal of Computer Science";journal;"01279084";"Faculty of Computer Science and Information Technology";No;No;0,299;Q3;24;0;80;0;190;80;1,63;0,00;0,00;0;Malaysia;Asiatic Region;"Faculty of Computer Science and Information Technology";"1996-2024";"Computer Science (miscellaneous) (Q3)";"Computer Science" +17240;19700182119;"Pediatric, Allergy, Immunology, and Pulmonology";journal;"2151321X, 21513228";"Mary Ann Liebert Inc.";No;No;0,299;Q3;30;29;74;656;76;71;1,11;22,62;65,67;0;United States;Northern America;"Mary Ann Liebert Inc.";"2010-2025";"Pediatrics, Perinatology and Child Health (Q3); Pulmonary and Respiratory Medicine (Q3); Immunology and Allergy (Q4)";"Medicine" +17241;21100913567;"Publicacion Electronica de la Asociacion Paleontologica Argentina";journal;"24690228";"Asociacion Paleontologica Argentina";Yes;Yes;0,299;Q3;12;6;90;468;81;90;1,31;78,00;39,13;0;Argentina;Latin America;"Asociacion Paleontologica Argentina";"2019-2025";"Paleontology (Q3)";"Earth and Planetary Sciences" +17242;21101250475;"Pure and Applied Functional Analysis";journal;"21893756, 21893764";"Yokohama Publications";No;No;0,299;Q3;9;70;262;1760;114;245;0,43;25,14;16,98;0;Japan;Asiatic Region;"Yokohama Publications";"2020-2025";"Analysis (Q3); Applied Mathematics (Q3); Control and Optimization (Q3)";"Mathematics" +17243;21101043793;"Quantum Reports";journal;"2624960X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,299;Q3;16;64;128;4469;226;127;1,99;69,83;17,90;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Astronomy and Astrophysics (Q3); Atomic and Molecular Physics, and Optics (Q3); Physics and Astronomy (miscellaneous) (Q3); Statistical and Nonlinear Physics (Q3)";"Physics and Astronomy" +17244;18796;"Water Resources";journal;"00978078, 1608344X";"";No;No;0,299;Q3;32;117;379;4562;370;379;0,89;38,99;49,04;0;Russian Federation;Eastern Europe;"";"1976, 1978-1992, 1994, 1996-2026";"Water Science and Technology (Q3)";"Environmental Science" +17245;21100206205;"IEEE Global Engineering Education Conference, EDUCON";conference and proceedings;"21659559, 21659567";"IEEE Computer Society";No;No;0,299;-;42;367;868;9445;1367;862;1,84;25,74;38,86;0;United States;Northern America;"IEEE Computer Society";"2012-2025";"Education; Engineering (miscellaneous); Information Systems and Management";"Decision Sciences; Engineering; Social Sciences" +17246;21101063015;"Agua y Territorio";journal;"23408472, 23407743";"Universidad de Jaen Campus Las Lagunillas";No;No;0,298;Q1;7;87;69;3680;82;69;1,05;42,30;42,38;0;Spain;Western Europe;"Universidad de Jaen Campus Las Lagunillas";"2019-2026";"History (Q1); Arts and Humanities (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +17247;21100258637;"Administratie si Management Public";journal;"15839583, 25596489";"Academy of Economic Studies from Bucharest";Yes;No;0,298;Q2;24;20;65;773;139;65;2,83;38,65;52,94;0;Romania;Eastern Europe;"Academy of Economic Studies from Bucharest";"2013-2025";"Sociology and Political Science (Q2); Public Administration (Q3)";"Social Sciences" +17248;5700169047;"Anthropology of Work Review";journal;"15481417, 0883024X";"John Wiley and Sons Inc";No;No;0,298;Q2;21;17;39;795;37;29;0,74;46,76;72,73;0;United States;Northern America;"John Wiley and Sons Inc";"1980-2025";"Anthropology (Q2)";"Social Sciences" +17249;21100201064;"Forest Systems";journal;"21719845, 21715068";"Instituto Nacional de Investigación y Tecnología Agraria y Alimentaria (CSIC-INIA)";Yes;Yes;0,298;Q2;36;25;74;1187;82;74;1,35;47,48;44,25;0;Spain;Western Europe;"Instituto Nacional de Investigación y Tecnología Agraria y Alimentaria (CSIC-INIA)";"2010-2025";"Forestry (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +17250;12204;"International Journal of Cast Metals Research";journal;"17431336, 13640461";"Maney Publishing";No;No;0,298;Q2;47;15;66;765;287;66;6,09;51,00;16,39;0;United Kingdom;Western Europe;"Maney Publishing";"1996-2025";"Metals and Alloys (Q2); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science" +17251;21100900142;"Theory and Practice of Second Language Acquisition";journal;"24505455, 24512125";"Wydawnictwo Uniwersytetu Slaskiego";Yes;Yes;0,298;Q2;8;14;70;610;63;63;0,62;43,57;46,15;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Slaskiego";"2018-2025";"Linguistics and Language (Q2); Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +17252;25698;"World Affairs";journal;"19401582, 00438200";"John Wiley and Sons Inc";No;No;0,298;Q2;22;65;118;3875;128;96;1,17;59,62;25,00;0;United States;Northern America;"John Wiley and Sons Inc";"1988-1990, 1992-2026";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +17253;21101070920;"Analytical Methods in Environmental Chemistry Journal";journal;"26455552, 26455382";"AMEC Publisher";No;No;0,298;Q3;16;37;86;1783;174;86;1,59;48,19;42,86;0;Iran;Middle East;"AMEC Publisher";"2018-2025";"Analytical Chemistry (Q3); Chemistry (miscellaneous) (Q3); Spectroscopy (Q3); Electrochemistry (Q4)";"Chemistry" +17254;21100808409;"Arid Ecosystems";journal;"20790961, 20790988";"Pleiades Publishing";No;No;0,298;Q3;18;49;183;1510;145;183;0,81;30,82;55,56;0;United States;Northern America;"Pleiades Publishing";"2011-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Soil Science (Q3); Global and Planetary Change (Q4)";"Agricultural and Biological Sciences; Environmental Science" +17255;21100431105;"Atmospheric and Oceanic Optics";journal;"10248560, 20700393";"Pleiades Publishing";No;No;0,298;Q3;28;94;383;2427;247;382;0,61;25,82;27,87;0;United States;Northern America;"Pleiades Publishing";"2009-2026";"Atomic and Molecular Physics, and Optics (Q3); Earth-Surface Processes (Q3); Ecological Modeling (Q3); Environmental Science (miscellaneous) (Q3); Instrumentation (Q3); Oceanography (Q3); Pollution (Q3); Atmospheric Science (Q4)";"Earth and Planetary Sciences; Environmental Science; Physics and Astronomy" +17256;19418;"Clinical Nephrology";journal;"03010430";"Dustri-Verlag Dr. Karl Feistle";No;No;0,298;Q3;85;118;269;3037;212;230;0,70;25,74;45,14;0;Germany;Western Europe;"Dustri-Verlag Dr. Karl Feistle";"1973-2026";"Medicine (miscellaneous) (Q3); Nephrology (Q3)";"Medicine" +17257;21100904261;"Computer Assisted Methods in Engineering and Science";journal;"22993649, 29565839";"Institute of Fundamental Technological Research, Polish Academy of Sciences";Yes;Yes;0,298;Q3;15;17;76;474;109;71;1,37;27,88;22,22;0;Poland;Eastern Europe;"Institute of Fundamental Technological Research, Polish Academy of Sciences";"2012-2025";"Computational Mechanics (Q3); Computer Science Applications (Q3); Mechanical Engineering (Q3)";"Computer Science; Engineering" +17258;27877;"Dizhen Dizhi";journal;"02534967";"";No;No;0,298;Q3;46;92;239;4233;201;239;0,62;46,01;32,25;0;China;Asiatic Region;"";"1983-1984, 1986-2025";"Geology (Q3)";"Earth and Planetary Sciences" +17259;21100914897;"Egyptian Journal of Botany";journal;"23570350, 03759237";"";No;No;0,298;Q3;18;133;236;7829;435;236;1,85;58,86;47,08;0;Egypt;Africa/Middle East;"";"2014-2026";"Agronomy and Crop Science (Q3); Biotechnology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3); Cell Biology (Q4); Genetics (Q4); Molecular Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +17260;21100933833;"International Journal on Magnetic Particle Imaging";journal;"23659033";"Infinite Science Publishing";No;No;0,298;Q3;10;75;223;418;158;223;0,72;5,57;31,39;0;Germany;Western Europe;"Infinite Science Publishing";"2019-2025";"Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Signal Processing (Q3)";"Computer Science; Engineering; Materials Science; Medicine" +17261;19700201137;"Journal of Advanced Pharmaceutical Technology and Research";journal;"09762094, 22314040";"Wolters Kluwer Medknow Publications";Yes;No;0,298;Q3;52;36;298;919;463;296;1,40;25,53;48,74;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2010-2026";"Pharmaceutical Science (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +17262;21100925611;"Journal of Applied Logics";journal;"26319829, 26319810";"College Publications";Yes;No;0,298;Q3;12;71;96;3039;48;89;0,59;42,80;19,35;0;United Kingdom;Western Europe;"College Publications";"2018-2026";"Applied Mathematics (Q3); Logic (Q3)";"Mathematics" +17263;21101067611;"Journal of Deep Space Exploration";journal;"20969287";"Beijing Institute of Technology";No;No;0,298;Q3;15;60;205;2092;317;205;1,57;34,87;25,96;0;China;Asiatic Region;"Beijing Institute of Technology";"2020-2025";"Aerospace Engineering (Q3); Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Engineering; Physics and Astronomy" +17264;21101142420;"Journal of the Indian Society for Probability and Statistics";journal;"23649569";"Springer";No;No;0,298;Q3;12;59;98;1725;107;98;1,06;29,24;27,56;0;India;Asiatic Region;"Springer";"2016-2026";"Statistics and Probability (Q3)";"Mathematics" +17265;19941;"Northeastern Naturalist";journal;"10926194";"Humboldt Field Research Institute";No;No;0,298;Q3;40;54;159;2681;115;159;0,84;49,65;34,33;0;United States;Northern America;"Humboldt Field Research Institute";"1999-2025";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +17266;19900193614;"Open Psychology Journal";journal;"18743501";"Bentham Science Publishers";Yes;No;0,298;Q3;20;42;127;2589;171;123;1,29;61,64;50,94;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2011-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +17267;22798;"Qinghua Daxue Xuebao/Journal of Tsinghua University";journal;"10000054";"Tsinghua University";No;No;0,298;Q3;43;222;620;7847;941;619;1,39;35,35;31,74;0;China;Asiatic Region;"Tsinghua University";"1993-2026";"Applied Mathematics (Q3); Computer Science Applications (Q3); Engineering (miscellaneous) (Q3)";"Computer Science; Engineering; Mathematics" +17268;13012;"RAIRO - Theoretical Informatics and Applications";journal;"1290385X, 09883754";"EDP Sciences";No;No;0,298;Q3;34;21;40;425;29;39;0,87;20,24;20,00;0;France;Western Europe;"EDP Sciences";"1995-2026";"Computer Science Applications (Q3); Mathematics (miscellaneous) (Q3); Software (Q3)";"Computer Science; Mathematics" +17269;17903;"Russian Journal of Nondestructive Testing";journal;"16083385, 10618309";"Pleiades Publishing";No;No;0,298;Q3;27;115;343;3168;436;343;1,35;27,55;30,09;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +17270;22092;"Thermal Engineering";journal;"00406015, 15556301";"Pleiades Publishing";No;No;0,298;Q3;27;103;312;3005;329;311;1,10;29,17;26,12;0;United States;Northern America;"Pleiades Publishing";"1970-1974, 1976-1991, 1995-2025";"Energy Engineering and Power Technology (Q3); Nuclear Energy and Engineering (Q3)";"Energy" +17271;18200156704;"Working with Older People";journal;"13663666, 20428790";"Emerald Group Publishing Ltd.";No;No;0,298;Q3;19;54;119;1771;121;119;1,03;32,80;53,70;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2026";"Community and Home Care (Q3); Gerontology (Q3)";"Nursing" +17272;25168;"Electrochemical Society Interface";journal;"19448783, 10648208";"Institute of Physics";Yes;No;0,298;Q4;56;41;122;671;110;95;0,82;16,37;21,82;0;United States;Northern America;"Institute of Physics";"1992-2025";"Electrochemistry (Q4)";"Chemistry" +17273;21101205801;"IEEE International Workshop on Robot and Human Communication, RO-MAN";conference and proceedings;"19449445, 19449437";"IEEE Computer Society";No;No;0,298;-;22;348;671;10921;850;668;1,27;31,38;37,06;0;United States;Northern America;"IEEE Computer Society";"1995-1997, 1999-2001, 2010, 2023-2025";"Artificial Intelligence; Computer Vision and Pattern Recognition; Human-Computer Interaction; Software";"Computer Science" +17274;21101131208;"International Winter Conference on Brain-Computer Interface, BCI";conference and proceedings;"25727672";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,298;-;8;53;166;1213;195;159;0,97;22,89;30,28;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2022-2025";"Artificial Intelligence; Human-Computer Interaction; Signal Processing";"Computer Science" +17275;21101220023;"Proceedings - IEEE International Conference on Semantic Computing, ICSC";conference and proceedings;"23256516, 24729671";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,298;-;7;50;61;1178;108;58;1,77;23,56;23,20;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Artificial Intelligence; Computer Networks and Communications; Human-Computer Interaction; Information Systems and Management";"Computer Science; Decision Sciences" +17276;19700169822;"Ikala";journal;"01233432";"Universidad de Antioquia";Yes;Yes;0,297;Q1;15;37;116;1871;113;115;0,72;50,57;60,29;0;Colombia;Latin America;"Universidad de Antioquia";"2013-2025";"Cultural Studies (Q1); Literature and Literary Theory (Q1); Linguistics and Language (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +17277;5400152616;"Cerne";journal;"01047760";"Federal University of Lavras";Yes;Yes;0,297;Q2;30;24;91;1123;133;91;1,64;46,79;34,31;0;Brazil;Latin America;"Federal University of Lavras";"2007-2025";"Forestry (Q2)";"Agricultural and Biological Sciences" +17278;21100903424;"Critical Studies in Teaching and Learning";journal;"23107103";"University of the Western Cape";Yes;No;0,297;Q2;13;40;82;1783;97;70;1,22;44,58;70,18;0;South Africa;Africa;"University of the Western Cape";"2018-2025";"Sociology and Political Science (Q2); Education (Q3)";"Social Sciences" +17279;21100901465;"Generos";journal;"20143613";"Hipatia Editorial";Yes;Yes;0,297;Q2;9;12;36;543;46;36;0,96;45,25;73,17;0;Spain;Western Europe;"Hipatia Editorial";"2018-2025";"Gender Studies (Q2); Education (Q3)";"Social Sciences" +17280;10300153321;"HOMO- Journal of Comparative Human Biology";journal;"16181301, 0018442X";"Elsevier B.V.";Yes;No;0,297;Q2;42;4;16;268;19;16;1,11;67,00;50,00;0;Germany;Western Europe;"Elsevier B.V.";"1950-1951, 1996-2025";"Anthropology (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +17281;19400156823;"Issues in Science and Technology Librarianship";journal;"10921206";"Association of College and Research Libraries";Yes;Yes;0,297;Q2;24;11;41;299;63;38;1,31;27,18;58,33;0;United States;Northern America;"Association of College and Research Libraries";"1996-2026";"Library and Information Sciences (Q2); Engineering (miscellaneous) (Q3)";"Engineering; Social Sciences" +17282;21101079124;"Journal of Integrated Disaster Risk Management";journal;"21858322";"IDRiM Society";No;No;0,297;Q2;7;28;53;1656;85;52;1,67;59,14;50,00;0;Japan;Asiatic Region;"IDRiM Society";"2019-2026";"Emergency Medicine (Q2); Urban Studies (Q2); Business, Management and Accounting (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Management Science and Operations Research (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3); Social Psychology (Q3); Global and Planetary Change (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering; Environmental Science; Medicine; Psychology; Social Sciences" +17283;23149;"Language Problems and Language Planning";journal;"15699889, 02722690";"John Benjamins Publishing Company";No;No;0,297;Q2;29;8;34;485;39;34;1,09;60,63;62,50;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1977-2025";"Communication (Q2); Linguistics and Language (Q2); Sociology and Political Science (Q2)";"Social Sciences" +17284;22931;"Russian Linguistics";journal;"15728714, 03043487";"Springer Netherlands";No;No;0,297;Q2;18;17;56;839;49;54;0,65;49,35;60,00;0;Netherlands;Western Europe;"Springer Netherlands";"1974-1976, 1978-2003, 2005-2026";"Linguistics and Language (Q2); Developmental and Educational Psychology (Q3)";"Psychology; Social Sciences" +17285;7100153137;"Transformations in Business and Economics";journal;"16484460";"Vilnius University Press";Yes;No;0,297;Q2;32;80;298;4673;426;286;1,49;58,41;51,03;0;Lithuania;Eastern Europe;"Vilnius University Press";"2006-2025";"Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Business and International Management (Q3); Economics and Econometrics (Q3); Marketing (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +17286;19700201155;"Advances in High Energy Physics";journal;"16877365, 16877357";"John Wiley and Sons Ltd";Yes;No;0,297;Q3;53;12;92;601;74;92;0,76;50,08;7,41;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2025";"Nuclear and High Energy Physics (Q3)";"Physics and Astronomy" +17287;21100939572;"Applied Science and Engineering Progress";journal;"26730421, 26729156";"Academic Enhancement Department, King Mongkut's University of Technology North Bangkok";No;No;0,297;Q3;27;89;236;5478;527;226;2,20;61,55;41,18;0;Thailand;Asiatic Region;"Academic Enhancement Department, King Mongkut's University of Technology North Bangkok";"2019-2026";"Chemical Engineering (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)";"Chemical Engineering; Computer Science; Engineering" +17288;21100979269;"Australasian Journal of Ultrasound in Medicine";journal;"22050140, 18366864";"Australasian Society for Ultrasound in Medicine";No;No;0,297;Q3;19;42;110;1008;123;97;1,07;24,00;45,18;0;Australia;Pacific Region;"Australasian Society for Ultrasound in Medicine";"2009-2016, 2018-2026";"Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Health Professions; Medicine" +17289;28426;"Australian and New Zealand Journal of Statistics";journal;"1467842X, 13691473";"Wiley-Blackwell Publishing Ltd";No;No;0,297;Q3;49;29;63;1180;48;63;0,41;40,69;34,85;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1998-2026";"Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +17290;21101017157;"Canadian Journal of Higher Education";journal;"22936602";"Canadian Society for Studies in Higher Education";Yes;Yes;0,297;Q3;15;23;55;1194;65;51;1,17;51,91;71,23;0;Canada;Northern America;"Canadian Society for Studies in Higher Education";"1995, 2000, 2019-2025";"Education (Q3)";"Social Sciences" +17291;17400154817;"Clinical Journal of Gastroenterology";journal;"18657257, 18657265";"Springer";No;No;0,297;Q3;29;178;511;3687;449;505;0,80;20,71;15,79;0;Japan;Asiatic Region;"Springer";"2008-2026";"Gastroenterology (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +17292;21101038731;"Geologiya i Geofizika Yuga Rossii";journal;"22213198, 26867486";"Geophysical Institute of the Vladikavkaz Scientific Centre of the Russian Academy of Sciences";Yes;Yes;0,297;Q3;11;74;170;1755;189;170;1,22;23,72;46,00;0;Russian Federation;Eastern Europe;"Geophysical Institute of the Vladikavkaz Scientific Centre of the Russian Academy of Sciences";"2019-2025";"Ecology (Q3); Geology (Q3); Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences; Environmental Science" +17293;21101277756;"Health Care Transitions";journal;"29499232";"Elsevier B.V.";Yes;No;0,297;Q3;5;41;79;1460;89;77;1,13;35,61;74,59;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)";"Medicine; Nursing" +17294;21100824667;"Image Processing On Line";journal;"21051232";"Image Processing on Line";Yes;Yes;0,297;Q3;17;8;62;155;84;62;1,36;19,38;13,64;0;France;Western Europe;"Image Processing on Line";"2017-2026";"Signal Processing (Q3); Software (Q3)";"Computer Science" +17295;21100787102;"International Biomechanics";journal;"23335432";"Taylor and Francis Ltd.";Yes;No;0,297;Q3;14;9;13;303;13;13;1,25;33,67;53,85;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Computer Science Applications (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3); Biomedical Engineering (Q4)";"Computer Science; Engineering; Health Professions; Medicine" +17296;4700152901;"International Journal of Diabetes in Developing Countries";journal;"19983832, 09733930";"Springer";No;No;0,297;Q3;37;264;364;8664;335;337;0,91;32,82;47,24;0;India;Asiatic Region;"Springer";"2001-2002, 2006-2026";"Internal Medicine (Q3); Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +17297;28077;"International Journal of Modern Physics C";journal;"01291831, 17936586";"World Scientific Publishing Co. Pte Ltd";No;No;0,297;Q3;73;280;507;11179;851;507;1,71;39,93;30,91;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1994, 1996-2026";"Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Mathematical Physics (Q3); Physics and Astronomy (miscellaneous) (Q3); Statistical and Nonlinear Physics (Q4)";"Computer Science; Mathematics; Physics and Astronomy" +17298;11700154616;"Journal of Medical Case Reports";journal;"17521947";"BioMed Central Ltd";Yes;No;0,297;Q3;44;657;1680;12838;1476;1673;0,84;19,54;38,34;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2007-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +17299;21101370215;"Journal of Medical Extended Reality";journal;"29941520";"Mary Ann Liebert Inc.";No;No;0,297;Q3;4;33;29;1472;62;25;2,14;44,61;47,06;0;United States;Northern America;"Mary Ann Liebert Inc.";"2024-2026";"Artificial Intelligence (Q3); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3); Rehabilitation (Q3)";"Computer Science; Medicine" +17300;11700154322;"Journal of Pure and Applied Microbiology";journal;"09737510, 2581690X";"Journal of Pure and Applied Microbiology";Yes;No;0,297;Q3;34;253;806;12236;1171;804;1,38;48,36;45,04;0;India;Asiatic Region;"Journal of Pure and Applied Microbiology";"2007-2025";"Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3); Microbiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +17301;145254;"Journal of the Korean Mathematical Society";journal;"22343008, 03049914";"Korean Mathematical Society";No;No;0,297;Q3;40;66;169;1690;93;169;0,46;25,61;31,20;0;South Korea;Asiatic Region;"Korean Mathematical Society";"1997-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17302;19200156953;"Malaysian Journal of Mathematical Sciences";journal;"18238343";"Universiti Putra Malaysia";No;No;0,297;Q3;22;77;148;2538;213;148;1,74;32,96;31,29;0;Malaysia;Asiatic Region;"Universiti Putra Malaysia";"2007-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17303;26990;"Molecular Physics";journal;"00268976, 13623028";"Taylor and Francis Ltd.";No;No;0,297;Q3;125;361;853;20213;1292;838;1,68;55,99;30,22;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1958-2026";"Condensed Matter Physics (Q3); Physical and Theoretical Chemistry (Q3); Biophysics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Physics and Astronomy" +17304;21100206263;"New Mathematics and Natural Computation";journal;"17937027, 17930057";"World Scientific";No;No;0,297;Q3;21;124;137;4517;214;137;1,80;36,43;32,97;0;Singapore;Asiatic Region;"World Scientific";"2012-2026";"Applied Mathematics (Q3); Computational Mathematics (Q3); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Human-Computer Interaction (Q3)";"Computer Science; Mathematics" +17305;21101040604;"Pedagogy of Physical Culture and Sports";journal;"26649837";"Iermakov Sergii Sidorovich";Yes;No;0,297;Q3;14;56;167;2230;259;167;1,69;39,82;27,69;0;Ukraine;Eastern Europe;"Iermakov Sergii Sidorovich";"2020-2025";"Education (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine; Social Sciences" +17306;17690;"Rocks and Minerals";journal;"19401191, 00357529";"Routledge";No;No;0,297;Q3;11;78;224;719;46;173;0,27;9,22;17,65;0;United States;Northern America;"Routledge";"1981-1997, 1999, 2004, 2007-2026";"Economic Geology (Q3); Geology (Q3); Stratigraphy (Q3)";"Earth and Planetary Sciences" +17307;19279;"Transplantation Proceedings";journal;"00411345, 18732623";"Elsevier Inc.";No;No;0,297;Q3;94;322;1399;7051;1188;1368;0,89;21,90;35,95;0;United States;Northern America;"Elsevier Inc.";"1969-2026";"Surgery (Q3); Transplantation (Q3)";"Medicine" +17308;23830;"Vikalpa";journal;"23953799, 02560909";"SAGE Publications Ltd";Yes;Yes;0,297;Q3;39;26;63;1571;97;49;1,56;60,42;65,85;0;India;Asiatic Region;"SAGE Publications Ltd";"1981-1982, 1984, 1986, 1994, 1996-2026";"Business, Management and Accounting (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q3)";"Business, Management and Accounting; Decision Sciences" +17309;19985;"Zeitschrift fur Kinder- und Jugendpsychiatrie und Psychotherapie";journal;"16642880, 14224917";"Hogrefe Publishing";No;No;0,297;Q3;30;49;154;1437;108;124;0,63;29,33;53,79;2;Switzerland;Western Europe;"Hogrefe Publishing";"1996-2026";"Clinical Psychology (Q3); Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +17310;21100925880;"Art Education";journal;"23255161, 00043125";"Routledge";No;No;0,296;Q1;34;50;171;1088;126;145;0,94;21,76;73,58;0;United Kingdom;Western Europe;"Routledge";"1996-2025";"Visual Arts and Performing Arts (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +17311;21101039228;"European Journal of Applied Linguistics";journal;"21929521, 2192953X";"De Gruyter Mouton";No;No;0,296;Q1;19;20;59;1156;85;59;1,79;57,80;76,74;0;Germany;Western Europe;"De Gruyter Mouton";"2013-2026";"Cultural Studies (Q1); Communication (Q2); Linguistics and Language (Q2)";"Social Sciences" +17312;21101254987;"Jurnal Ilmiah Al-Syir'ah";journal;"16934202, 25280368";"";No;No;0,296;Q1;7;20;56;1069;63;56;1,25;53,45;24,14;0;Indonesia;Asiatic Region;"";"2020-2025";"Cultural Studies (Q1); Religious Studies (Q1); Law (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +17313;5600155285;"Parameters";journal;"00311723, 21582106";"United States Army War College";No;No;0,296;Q1;7;37;130;1126;88;112;0,62;30,43;11,32;2;United States;Northern America;"United States Army War College";"1982, 2019-2025";"Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Safety Research (Q3)";"Arts and Humanities; Social Sciences" +17314;21100927369;"Apuntes";journal;"22231757, 02521865";"Universidad del Pacifico Press";Yes;Yes;0,296;Q2;7;17;58;1035;53;55;0,79;60,88;43,75;0;Peru;Latin America;"Universidad del Pacifico Press";"2019-2026";"Social Sciences (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance; Social Sciences" +17315;17681;"Contemporary Sociology";journal;"19398638, 00943061";"American Sociological Association";No;No;0,296;Q2;32;46;19;153;11;10;0,00;3,33;48,72;0;United States;Northern America;"American Sociological Association";"1979, 1995-1998, 2000, 2002, 2004-2025";"Sociology and Political Science (Q2)";"Social Sciences" +17316;21100274341;"Environment and Urbanization ASIA";journal;"09763546, 09754253";"SAGE Publications Inc.";No;No;0,296;Q2;28;18;70;653;93;64;1,16;36,28;41,67;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2010-2025";"Urban Studies (Q2)";"Social Sciences" +17317;17700156010;"Ethics and Global Politics";journal;"16546369, 16544951";"Taylor and Francis Ltd.";Yes;Yes;0,296;Q2;19;13;33;341;30;31;0,78;26,23;42,86;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +17318;19800188061;"History of Geo- and Space Sciences";journal;"21905010, 21905029";"Copernicus Publications";Yes;Yes;0,296;Q2;11;5;27;255;24;27;0,59;51,00;25,00;0;Germany;Western Europe;"Copernicus Publications";"2010-2026";"History and Philosophy of Science (Q2); Earth and Planetary Sciences (miscellaneous) (Q3)";"Arts and Humanities; Earth and Planetary Sciences" +17319;21100834354;"International Journal of Human Rights in Healthcare";journal;"20564902, 20564910";"Emerald Group Publishing Ltd.";No;No;0,296;Q2;24;23;124;1190;140;116;1,14;51,74;46,30;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2015-2026";"Sociology and Political Science (Q2); Health Policy (Q3); Health (social science) (Q3); Public Administration (Q3); Social Psychology (Q3)";"Medicine; Psychology; Social Sciences" +17320;21101215777;"Justicia (Barranquilla)";journal;"25904566, 01247441";"Simon Bolivar University (Barranquilla)";Yes;Yes;0,296;Q2;5;27;98;1134;41;96;0,48;42,00;37,78;0;Colombia;Latin America;"Simon Bolivar University (Barranquilla)";"2020-2025";"Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Social Sciences" +17321;14038;"Shanghai Jiaotong Daxue Xuebao/Journal of Shanghai Jiaotong University";journal;"10062467";"Shanghai Jiaotong University";Yes;No;0,296;Q2;27;177;554;4376;787;554;1,39;24,72;30,35;0;China;Asiatic Region;"Shanghai Jiaotong University";"1988, 1998-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +17322;18162;"Sotsiologicheskie Issledovaniya";journal;"01321625";"Russian Academy of Sciences";No;No;0,296;Q2;17;164;565;3294;231;494;0,48;20,09;64,95;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"1981-1982, 1984-1986, 2002-2025";"Sociology and Political Science (Q2)";"Social Sciences" +17323;21101224039;"Traditional Medicine Research";journal;"24133973";"TMR Publishing Group";No;No;0,296;Q2;14;52;199;3734;302;193;1,32;71,81;42,23;0;New Zealand;Pacific Region;"TMR Publishing Group";"2020-2026";"Complementary and Alternative Medicine (Q2)";"Medicine" +17324;21100348516;"AJP Reports";journal;"21577005, 21576998";"Thieme Medical Publishers, Inc.";Yes;No;0,296;Q3;18;31;100;629;102;100;0,79;20,29;56,73;0;United States;Northern America;"Thieme Medical Publishers, Inc.";"2014-2026";"Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +17325;144635;"Algebra and Logic";journal;"15738302, 00025232";"Springer";No;No;0,296;Q3;31;17;123;201;53;121;0,33;11,82;25,00;0;United States;Northern America;"Springer";"1968-2025";"Algebra and Number Theory (Q3); Analysis (Q3); Logic (Q3)";"Mathematics" +17326;4000151702;"Current Analytical Chemistry";journal;"15734110, 18756727";"Bentham Science Publishers";No;No;0,296;Q3;42;172;226;11523;419;213;1,93;66,99;38,08;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Analytical Chemistry (Q3)";"Chemistry" +17327;25836;"Current Organic Chemistry";journal;"13852728, 18755348";"Bentham Science Publishers";No;No;0,296;Q3;117;128;384;12081;1057;357;2,59;94,38;37,65;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"1997-2026";"Organic Chemistry (Q3)";"Chemistry" +17328;26401;"Electronic Journal of Qualitative Theory of Differential Equations";journal;"14173875";"University of Szeged";Yes;Yes;0,296;Q3;43;80;205;2248;110;203;0,50;28,10;32,30;0;Hungary;Eastern Europe;"University of Szeged";"2000-2026";"Applied Mathematics (Q3)";"Mathematics" +17329;21100834771;"Flebologiya";journal;"19976976, 23095601";"Media Sphera Publishing Group";No;No;0,296;Q3;11;34;93;1202;101;89;1,11;35,35;38,84;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2017-2025";"Cardiology and Cardiovascular Medicine (Q3); Hematology (Q3); Surgery (Q3)";"Medicine" +17330;21100241739;"Geosystem Engineering";journal;"21663394, 12269328";"Taylor and Francis Ltd.";No;No;0,296;Q3;31;94;82;3796;112;79;1,09;40,38;24,03;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Environmental Engineering (Q3); Pollution (Q3); Waste Management and Disposal (Q3)";"Environmental Science" +17331;16754;"Guangdian Gongcheng/Opto-Electronic Engineering";journal;"1003501X";"Chinese Academy of Sciences";No;No;0,296;Q3;27;128;290;5325;631;286;2,46;41,60;31,79;0;China;Asiatic Region;"Chinese Academy of Sciences";"1993-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +17332;21100286921;"IDCases";journal;"22142509";"Elsevier Ltd";Yes;No;0,296;Q3;29;319;751;5306;692;748;0,88;16,63;40,94;0;United Kingdom;Western Europe;"Elsevier Ltd";"2014-2026";"Infectious Diseases (Q3)";"Medicine" +17333;21100890645;"International Journal of Advances in Intelligent Informatics";journal;"25483161, 24426571";"Universitas Ahmad Dahlan";Yes;No;0,296;Q3;20;46;104;2043;212;104;2,23;44,41;29,66;0;Indonesia;Asiatic Region;"Universitas Ahmad Dahlan";"2015-2025";"Artificial Intelligence (Q3); Computer Vision and Pattern Recognition (Q3); Human-Computer Interaction (Q4)";"Computer Science" +17334;3900148213;"International Journal of Entrepreneurship and Small Business";journal;"14761297, 17418054";"Inderscience Enterprises Ltd";No;No;0,296;Q3;52;78;225;6242;366;225;1,71;80,03;42,70;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2026";"Business and International Management (Q3); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +17335;12387;"International Journal of Mechanical Engineering Education";journal;"03064190, 20504586";"SAGE Publications Inc.";No;No;0,296;Q3;21;110;105;3777;164;103;1,18;34,34;25,44;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1981, 1983-1991, 2000, 2002-2026";"Education (Q3); Mechanical Engineering (Q3)";"Engineering; Social Sciences" +17336;21101049616;"Japanese Journal of Statistics and Data Science";journal;"25208764";"Springer Science and Business Media B.V.";No;No;0,296;Q3;13;60;119;1979;106;113;0,81;32,98;13,64;0;Germany;Western Europe;"Springer Science and Business Media B.V.";"2018-2026";"Computational Theory and Mathematics (Q3); Statistics and Probability (Q3)";"Computer Science; Mathematics" +17337;21101134426;"Journal of Liver Transplantation";journal;"26669676";"Elsevier Masson s.r.l.";Yes;No;0,296;Q3;7;42;139;1379;84;97;0,76;32,83;43,23;0;France;Western Europe;"Elsevier Masson s.r.l.";"2021-2026";"Gastroenterology (Q3); Internal Medicine (Q3); Transplantation (Q3); Hepatology (Q4)";"Medicine" +17338;22729;"Journal of the Brazilian Chemical Society";journal;"01035053, 16784790";"Sociedade Brasileira de Quimica";Yes;No;0,296;Q3;88;269;504;14792;777;496;1,45;54,99;46,85;0;Brazil;Latin America;"Sociedade Brasileira de Quimica";"1990, 1996-2025";"Chemistry (miscellaneous) (Q3)";"Chemistry" +17339;30862;"Journal of the Torrey Botanical Society";journal;"10955674";"Torrey Botanical Society";No;No;0,296;Q3;54;16;68;796;42;67;0,53;49,75;40,74;0;United States;Northern America;"Torrey Botanical Society";"1996-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17340;26247;"Resource Geology";journal;"17513928, 13441698";"John Wiley and Sons Inc";No;No;0,296;Q3;58;23;59;1288;48;59;0,73;56,00;34,19;0;United States;Northern America;"John Wiley and Sons Inc";"1996-2026";"Geochemistry and Petrology (Q3); Geology (Q3)";"Earth and Planetary Sciences" +17341;19800188010;"Sabrao Journal of Breeding and Genetics";journal;"10297073";"Society for the Advancement of Breeding Researches in Asia and Oceania (SABRAO)";No;No;0,296;Q3;25;263;547;8218;849;547;1,63;31,25;44,25;0;Japan;Asiatic Region;"Society for the Advancement of Breeding Researches in Asia and Oceania (SABRAO)";"2008-2025";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Biotechnology (Q3); Horticulture (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +17342;96519;"Southern African Journal of Critical Care";journal;"2078676X, 15628264";"South African Medical Association";Yes;Yes;0,296;Q3;14;7;51;233;48;47;0,85;33,29;54,55;0;South Africa;Africa;"South African Medical Association";"2001-2025";"Critical Care and Intensive Care Medicine (Q3)";"Medicine" +17343;21101011861;"Contention";journal;"25727184, 23301392";"Berghahn Journals";No;No;0,295;Q1;7;0;29;0;29;25;1,31;0,00;0,00;0;United States;Northern America;"Berghahn Journals";"2019-2024";"Cultural Studies (Q1); Sociology and Political Science (Q2)";"Social Sciences" +17344;21100200618;"Journal of Chinese Cinemas";journal;"1750807X, 17508061";"Taylor and Francis Ltd.";No;No;0,295;Q1;15;23;63;1034;27;55;0,39;44,96;47,37;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Visual Arts and Performing Arts (Q1); Communication (Q2)";"Arts and Humanities; Social Sciences" +17345;21100201988;"Journal of Tourism History";journal;"17551838, 1755182X";"Taylor and Francis Ltd.";No;No;0,295;Q1;16;23;46;1045;35;43;0,79;45,43;26,92;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Cultural Studies (Q1); History (Q1); Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q3); Transportation (Q3)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +17346;19700188158;"Research in Drama Education";journal;"1470112X, 13569783";"Routledge";No;No;0,295;Q1;24;37;135;1302;104;119;0,68;35,19;71,43;0;United States;Northern America;"Routledge";"1998, 2010-2026";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +17347;19700171003;"China: An International Journal";journal;"02197472";"Centre for Medical Education (CenMed) Yong Loo Lin School of Medicine National University of Singapore";No;No;0,295;Q2;21;34;115;2027;97;105;0,74;59,62;52,38;0;Singapore;Asiatic Region;"Centre for Medical Education (CenMed) Yong Loo Lin School of Medicine National University of Singapore";"2008-2025";"Social Sciences (miscellaneous) (Q2); Business and International Management (Q3); Economics and Econometrics (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +17348;5700163881;"Contemporary Justice Review: Issues in Criminal, Social, and Restorative Justice";journal;"10282580, 14772248";"Routledge";No;No;0,295;Q2;26;29;59;1815;65;56;1,32;62,59;46,67;0;United Kingdom;Western Europe;"Routledge";"2008-2026";"Law (Q2)";"Social Sciences" +17349;21100828738;"Critical Housing Analysis";journal;"23362839";"Academy of Sciences of the Czech Republic, Institute of Sociology";Yes;Yes;0,295;Q2;19;11;46;374;52;44;1,27;34,00;42,11;0;Czech Republic;Eastern Europe;"Academy of Sciences of the Czech Republic, Institute of Sociology";"2014-2025";"Sociology and Political Science (Q2); Urban Studies (Q2); Geography, Planning and Development (Q3)";"Social Sciences" +17350;20600195510;"Journal of Aggression, Conflict and Peace Research";journal;"20428715, 17596599";"Emerald Group Publishing Ltd.";No;No;0,295;Q2;26;25;92;1288;120;86;1,29;51,52;58,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2026";"Law (Q2); Sociology and Political Science (Q2); Health (social science) (Q3); Social Psychology (Q4)";"Psychology; Social Sciences" +17351;21100837406;"Arnold Mathematical Journal";journal;"21996806, 21996792";"Springer International Publishing AG";No;No;0,295;Q3;13;0;66;0;36;66;0,43;0,00;0,00;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2024";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17352;11700154384;"Australian Journal of Mathematical Analysis and Applications";journal;"14495910";"Austral Internet Publishing";No;No;0,295;Q3;15;27;98;470;54;98;0,47;17,41;23,40;0;Australia;Pacific Region;"Austral Internet Publishing";"2008-2025";"Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +17353;17155;"Binggong Xuebao/Acta Armamentarii";journal;"10001093";"China Ordnance Industry Corporation";No;No;0,295;Q3;31;266;1237;7682;1468;1237;1,19;28,88;27,24;0;China;Asiatic Region;"China Ordnance Industry Corporation";"1982, 1986-1988, 2001-2025";"Aerospace Engineering (Q3); Automotive Engineering (Q3); Computational Mechanics (Q3); Control and Systems Engineering (Q3); Mechanical Engineering (Q3); Ocean Engineering (Q3)";"Engineering" +17354;21100832768;"Confluentes Mathematici";journal;"17937442, 17937434";"Institut Camille Jordan";No;No;0,295;Q3;7;4;18;68;10;18;0,29;17,00;14,29;0;France;Western Europe;"Institut Camille Jordan";"2017-2025";"Applied Mathematics (Q3); Mathematical Physics (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics" +17355;4700152433;"Current Nutrition and Food Science";journal;"22123881, 15734013";"Bentham Science Publishers";No;No;0,295;Q3;36;137;306;8716;532;296;1,84;63,62;48,75;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Food Science (Q3); Nutrition and Dietetics (Q3); Public Health, Environmental and Occupational Health (Q3)";"Agricultural and Biological Sciences; Medicine; Nursing" +17356;21100199819;"Epilepsy Currents";journal;"15357511, 15357597";"American Epilepsy Society";Yes;No;0,295;Q3;38;130;340;2411;249;175;0,68;18,55;51,43;0;United States;Northern America;"American Epilepsy Society";"2002-2026";"Neurology (clinical) (Q3)";"Medicine" +17357;5700156119;"Global Business and Finance Review";journal;"23841648, 10886931";"People and Global Business Association";Yes;No;0,295;Q3;17;149;247;7622;581;247;2,43;51,15;45,83;0;South Korea;Asiatic Region;"People and Global Business Association";"2014-2026";"Business and International Management (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +17358;21100890383;"International Journal of Computing and Digital Systems";journal;"2210142X";"University of Bahrain";Yes;Yes;0,295;Q3;24;259;727;10474;1465;727;2,28;40,44;32,81;0;Bahrain;Middle East;"University of Bahrain";"2012-2026";"Artificial Intelligence (Q3); Computer Graphics and Computer-Aided Design (Q3); Computer Networks and Communications (Q3); Information Systems (Q3); Management of Technology and Innovation (Q3); Human-Computer Interaction (Q4)";"Business, Management and Accounting; Computer Science" +17359;11300153718;"International Journal of Economics and Management";journal;"1823836X";"Universiti Putra Malaysia";No;No;0,295;Q3;30;27;89;1684;99;88;1,13;62,37;32,00;0;Malaysia;Asiatic Region;"Universiti Putra Malaysia";"2006-2025";"Business and International Management (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +17360;19900192152;"Iranian Journal of Pathology";journal;"23453656, 17355303";"Iranian Society of Pathology";Yes;No;0,295;Q3;26;63;184;2105;181;177;0,74;33,41;57,79;0;Iran;Middle East;"Iranian Society of Pathology";"2011-2026";"Pathology and Forensic Medicine (Q3)";"Medicine" +17361;21100855907;"Journal of Fluid Science and Technology";journal;"18805558";"Japan Society of Mechanical Engineers";Yes;No;0,295;Q3;11;12;76;314;62;76;0,92;26,17;7,32;0;Japan;Asiatic Region;"Japan Society of Mechanical Engineers";"2017-2025";"Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3)";"Chemical Engineering; Engineering" +17362;145690;"Journal of Geometry";journal;"00472468, 14208997";"Springer International Publishing";No;No;0,295;Q3;26;42;117;949;66;117;0,57;22,60;20,29;0;Switzerland;Western Europe;"Springer International Publishing";"1971-2026";"Geometry and Topology (Q3)";"Mathematics" +17363;19700186891;"Journal of Interdisciplinary Mathematics";journal;"09720502";"Taru Publications";No;No;0,295;Q3;30;262;553;4813;682;539;1,27;18,37;37,55;0;India;Asiatic Region;"Taru Publications";"1998-2026";"Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +17364;21101272059;"Journal of Power Supply";journal;"20952805";"";No;No;0,295;Q3;8;275;394;5551;540;394;1,37;20,19;30,17;0;China;Asiatic Region;"";"2023-2025";"Electrical and Electronic Engineering (Q3)";"Engineering" +17365;21205;"Journal of Testing and Evaluation";journal;"19457553, 00903973";"ASTM International";No;No;0,295;Q3;53;76;752;3105;1007;746;1,40;40,86;28,87;0;United States;Northern America;"ASTM International";"1973-2026";"Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science" +17366;38299;"Journal of Wine Research";journal;"09571264, 14699672";"Routledge";No;No;0,295;Q3;44;16;51;1040;99;49;2,03;65,00;56,10;0;United Kingdom;Western Europe;"Routledge";"1990-1997, 2000-2026";"Food Science (Q3); Horticulture (Q3)";"Agricultural and Biological Sciences" +17367;22474;"Leprosy Review";journal;"21628807, 03057518";"Lepra";Yes;Yes;0,295;Q3;53;58;154;1310;121;112;0,69;22,59;50,70;0;United Kingdom;Western Europe;"Lepra";"1945-1948, 1950-2026";"Dermatology (Q3); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +17368;24125;"Natural Areas Journal";journal;"08858608";"Natural Areas Association";No;No;0,295;Q3;51;26;97;1125;75;80;0,67;43,27;51,72;0;United States;Northern America;"Natural Areas Association";"1993-2026";"Ecology (Q3); Nature and Landscape Conservation (Q3)";"Environmental Science" +17369;19200157111;"Nuclear Technology and Radiation Protection";journal;"14513994";"Vinca Inst Nuclear Sci";Yes;No;0,295;Q3;22;30;113;804;113;110;1,08;26,80;29,81;0;Serbia;Eastern Europe;"Vinca Inst Nuclear Sci";"2008-2025";"Nuclear Energy and Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)";"Energy; Engineering" +17370;20573;"Theory of Computing Systems";journal;"14330490, 14324350";"Springer New York";No;No;0,295;Q3;52;39;147;1207;100;140;0,62;30,95;21,71;0;United States;Northern America;"Springer New York";"1996-2026";"Computational Theory and Mathematics (Q3); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +17371;145189;"Tuberkuloz ve Toraks";journal;"04941373";"Ankara University";No;No;0,295;Q3;24;39;151;925;129;127;0,91;23,72;56,71;0;Turkey;Middle East;"Ankara University";"2003-2025";"Critical Care and Intensive Care Medicine (Q3); Pulmonary and Respiratory Medicine (Q3); Surgery (Q3)";"Medicine" +17372;9500154131;"Archaeologiai Ertesito";journal;"00038032, 1589486X";"Akademiai Kiado";No;No;0,294;Q1;10;23;47;1480;23;46;0,49;64,35;33,33;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2021, 2023-2025";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +17373;5000154001;"Bijdragen tot de Taal-, Land- en Volkenkunde";journal;"22134379, 00062294";"Brill Academic Publishers";Yes;Yes;0,294;Q1;21;19;37;431;44;35;1,14;22,68;46,15;0;Netherlands;Western Europe;"Brill Academic Publishers";"1993, 2005-2025";"Cultural Studies (Q1); Anthropology (Q2); Linguistics and Language (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +17374;20625;"English Studies";journal;"17444217, 0013838X";"Taylor and Francis Ltd.";No;No;0,294;Q1;24;84;205;3512;95;195;0,35;41,81;53,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1919-1944, 1946-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +17375;18300156714;"GEMA Online Journal of Language Studies";journal;"16758021, 25502131";"Penerbit Universiti Kebangsaan Malaysia";Yes;No;0,294;Q1;22;55;171;2630;164;171;0,95;47,82;50,00;0;Malaysia;Asiatic Region;"Penerbit Universiti Kebangsaan Malaysia";"2009-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +17376;21100903469;"Russia in Global Affairs";journal;"18106374, 26189844";"Foreign Policy Research Foundation";No;No;0,294;Q1;10;57;147;1355;73;119;0,48;23,77;22,58;0;Russian Federation;Eastern Europe;"Foreign Policy Research Foundation";"2018-2026";"Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +17377;21100220154;"SEARCH Journal of Media and Communication Research";journal;"26727080";"Taylor's University Lakeside Campus";No;No;0,294;Q1;14;48;107;2293;141;106;1,41;47,77;47,19;0;Malaysia;Asiatic Region;"Taylor's University Lakeside Campus";"2012-2025";"Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Communication (Q2)";"Arts and Humanities; Social Sciences" +17378;21101121669;"Clinical and Investigative Orthodontics";journal;"2770579X, 27705781";"Taylor and Francis Ltd.";Yes;Yes;0,294;Q2;17;31;76;942;67;76;0,98;30,39;42,54;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2022-2026";"Orthodontics (Q2)";"Dentistry" +17379;145292;"Development and Learning in Organizations";journal;"14777282";"Emerald Group Publishing Ltd.";No;No;0,294;Q2;26;150;254;548;389;233;1,92;3,65;45,71;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003-2026";"Library and Information Sciences (Q2); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Social Sciences" +17380;21100370222;"Griffith Law Review";journal;"18394205, 10383441";"Taylor and Francis Ltd.";No;No;0,294;Q2;26;24;69;1254;98;66;1,48;52,25;55,17;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2006, 2008-2026";"Law (Q2)";"Social Sciences" +17381;5800207760;"Indogermanische Forschungen";journal;"00197262, 16130405";"Walter de Gruyter GmbH";No;No;0,294;Q2;15;14;41;1167;25;41;0,68;83,36;26,32;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1892-1900, 1903-1906, 1908-1917, 1921, 1923-1924, 1932, 1934, 1938, 1940, 1942, 1944, 1952, 1954, 1956-1957, 1959-1969, 1971, 1973-1988, 1990-2025";"Linguistics and Language (Q2)";"Social Sciences" +17382;34545;"Journal of Asian Natural Products Research";journal;"10286020, 14772213";"Taylor and Francis Ltd.";No;No;0,294;Q2;56;200;403;7828;641;380;1,53;39,14;44,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Complementary and Alternative Medicine (Q2); Analytical Chemistry (Q3); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Organic Chemistry (Q3); Pharmaceutical Science (Q3); Pharmacology (Q3); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +17383;5800208320;"Journal of Ethnobiology";journal;"02780771, 21624496";"Sage Publications";Yes;No;0,294;Q2;42;29;99;2510;146;93;1,60;86,55;39,05;0;United States;Northern America;"Sage Publications";"2005-2026";"Anthropology (Q2); Animal Science and Zoology (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Social Sciences" +17384;20835;"Technical Communication";journal;"00493155";"Society for Technical Communication";No;No;0,294;Q2;41;0;72;0;121;57;1,15;0,00;0,00;0;United States;Northern America;"Society for Technical Communication";"1973-1985, 1987-1988, 1996-2024";"Communication (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +17385;19200157114;"African Invertebrates";journal;"23052562, 16815556";"Pensoft Publishers";Yes;No;0,294;Q3;21;11;38;359;29;36;0,81;32,64;22,58;0;South Africa;Africa;"Pensoft Publishers";"2008-2025";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3); Paleontology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +17386;20900195109;"Annales Polonici Mathematici";journal;"17306272, 00662216";"Institute of Mathematics. Polish Academy of Sciences";No;No;0,294;Q3;23;9;79;131;45;79;0,29;14,56;22,22;0;Poland;Eastern Europe;"Institute of Mathematics. Polish Academy of Sciences";"2008-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17387;21100398002;"Case Reports in Dentistry";journal;"20906455, 20906447";"John Wiley and Sons Ltd";Yes;No;0,294;Q3;23;163;279;4103;311;279;1,04;25,17;40,22;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +17388;19650;"Clinical Microbiology Newsletter";journal;"01964399, 18734391";"Elsevier Inc.";No;No;0,294;Q3;29;39;61;1247;70;60;1,03;31,97;47,10;0;United States;Northern America;"Elsevier Inc.";"1979-2026";"Infectious Diseases (Q3); Microbiology (medical) (Q3)";"Medicine" +17389;21100838018;"Complex Manifolds";journal;"23007443";"Walter de Gruyter GmbH";Yes;No;0,294;Q3;10;11;35;327;23;35;0,65;29,73;17,65;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2014-2025";"Geometry and Topology (Q3)";"Mathematics" +17390;21101162551;"Enterprise Modelling and Information Systems Architectures";journal;"18663621";"Gesellschaft fur Informatik (GI)";Yes;Yes;0,294;Q3;10;3;28;221;76;23;3,72;73,67;11,11;0;Germany;Western Europe;"Gesellschaft fur Informatik (GI)";"2019-2025";"Information Systems (Q3)";"Computer Science" +17391;15882;"Fibres and Textiles in Eastern Europe";journal;"23007354, 12303666";"Sciendo";No;No;0,294;Q3;50;11;160;345;226;160;1,24;31,36;57,14;0;Poland;Eastern Europe;"Sciendo";"1993, 1995-2025";"Business and International Management (Q3); Environmental Science (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Business, Management and Accounting; Engineering; Environmental Science; Materials Science" +17392;21101289902;"Frontiers in Anesthesiology";journal;"2813480X";"Frontiers Media SA";Yes;No;0,294;Q3;4;20;62;667;53;60;1,00;33,35;38,16;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3); Pharmacology (medical) (Q3); Surgery (Q3)";"Medicine" +17393;25865;"High Performance Polymers";journal;"09540083, 13616412";"SAGE Publications Ltd";No;No;0,294;Q3;51;44;232;2208;427;229;1,89;50,18;32,20;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1989-2026";"Materials Chemistry (Q3); Organic Chemistry (Q3); Polymers and Plastics (Q3)";"Chemistry; Materials Science" +17394;25996;"Immunohematology";journal;"19303955, 0894203X";"American Red Cross";No;No;0,294;Q3;32;18;62;551;55;55;1,18;30,61;73,68;0;United States;Northern America;"American Red Cross";"1987-2025";"Hematology (Q3); Medicine (miscellaneous) (Q3); Immunology and Allergy (Q4)";"Medicine" +17395;21100204904;"Indian Journal of Surgical Oncology";journal;"09757651, 09766952";"Springer";No;No;0,294;Q3;30;419;609;10533;566;547;0,76;25,14;36,26;0;India;Asiatic Region;"Springer";"2010-2026";"Oncology (Q3); Surgery (Q3)";"Medicine" +17396;18535;"International Journal of Fluid Power";journal;"14399776";"";No;No;0,294;Q3;34;21;74;731;101;70;1,38;34,81;12,50;0;Germany;Western Europe;"";"2000-2025";"Mechanical Engineering (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Engineering; Physics and Astronomy" +17397;21101358082;"International Journal of Islamic Finance and Sustainable Development";journal;"30306442";"ISRA Institute";No;No;0,294;Q3;30;33;103;1489;281;92;1,96;45,12;43,28;0;Malaysia;Asiatic Region;"ISRA Institute";"2024-2025";"Business, Management and Accounting (miscellaneous) (Q3); Development (Q3); Economics and Econometrics (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +17398;21101023651;"Iranian Journal of Numerical Analysis and Optimization";journal;"24236969, 24236977";"Ferdowsi University of Mashhad";Yes;Yes;0,294;Q3;8;31;122;995;123;122;0,93;32,10;25,93;0;Iran;Middle East;"Ferdowsi University of Mashhad";"2019-2026";"Computational Mathematics (Q3); Control and Optimization (Q3); Modeling and Simulation (Q3); Numerical Analysis (Q3)";"Mathematics" +17399;21101171788;"Journal of Educational Technology Development and Exchange";journal;"19418035, 19418027";"University of Southern MIssissippi";Yes;Yes;0,294;Q3;9;44;65;2230;122;62;2,11;50,68;44,74;0;United States;Northern America;"University of Southern MIssissippi";"2019-2025";"Education (Q3)";"Social Sciences" +17400;21101047122;"Journal of Nanjing Forestry University (Natural Sciences Edition)";journal;"10002006";"Nanjing Forestry University";No;No;0,294;Q3;14;192;559;6552;671;559;1,11;34,13;41,35;0;China;Asiatic Region;"Nanjing Forestry University";"1988, 2019-2026";"Food Science (Q3); Nature and Landscape Conservation (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17401;14519;"Klinische Monatsblatter fur Augenheilkunde";journal;"00232165, 14393999";"Georg Thieme Verlag";Yes;No;0,294;Q3;43;234;710;4526;428;569;0,57;19,34;40,78;0;Germany;Western Europe;"Georg Thieme Verlag";"1963-2026";"Medicine (miscellaneous) (Q3); Ophthalmology (Q3)";"Medicine" +17402;21100782674;"Soil Science Annual";journal;"23004975";"Soil Science Society of Poland";Yes;No;0,294;Q3;24;22;111;1431;145;111;1,49;65,05;37,36;0;Poland;Eastern Europe;"Soil Science Society of Poland";"2012-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +17403;56053;"Thoracic and Cardiovascular Surgeon, Supplement";journal;"09464778";"Georg Thieme Verlag";No;No;0,294;Q3;14;10;9;440;13;9;1,75;44,00;21,43;0;Germany;Western Europe;"Georg Thieme Verlag";"1990, 1999, 2007, 2010, 2012, 2015, 2017, 2019-2026";"Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3); Surgery (Q3)";"Medicine" +17404;21101374362;"Transactions on Aerospace Research";journal;"25452835";"";Yes;No;0,294;Q3;7;15;72;481;75;72;0,83;32,07;12,00;0;Germany;Western Europe;"";"2021-2025";"Aerospace Engineering (Q3); Astronomy and Astrophysics (Q3); Materials Science (miscellaneous) (Q3); Atmospheric Science (Q4)";"Earth and Planetary Sciences; Engineering; Materials Science; Physics and Astronomy" +17405;21101100274;"Turk Deprem Arastirma Dergisi";journal;"2687301X";"Afet ve Acil Durum Yonetimi Baskanligi (AFAD)";No;No;0,294;Q3;6;62;67;2191;79;67;1,33;35,34;44,09;0;Turkey;Middle East;"Afet ve Acil Durum Yonetimi Baskanligi (AFAD)";"2019-2025";"Computers in Earth Sciences (Q3); Earth-Surface Processes (Q3); Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +17406;14981;"Zoomorphology";journal;"1432234X, 0720213X";"Springer Science and Business Media Deutschland GmbH";No;No;0,294;Q3;48;68;134;3682;139;133;0,93;54,15;41,77;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1980-2026";"Animal Science and Zoology (Q3); Developmental Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +17407;5600152867;"Historical Social Research";journal;"01726404";"GESIS - Leibniz Institute for the Social Sciences";No;No;0,293;Q1;38;49;147;3360;140;147;0,70;68,57;41,94;0;Germany;Western Europe;"GESIS - Leibniz Institute for the Social Sciences";"2006-2025";"History (Q1); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)";"Arts and Humanities; Social Sciences" +17408;19900188001;"Poverty and Public Policy";journal;"21946027, 19442858";"John Wiley and Sons Inc";No;No;0,293;Q1;20;33;70;2126;81;58;1,22;64,42;35,48;1;United States;Northern America;"John Wiley and Sons Inc";"2009-2026";"Cultural Studies (Q1); Sociology and Political Science (Q3)";"Social Sciences" +17409;5800172619;"Transformation";journal;"17598931, 02653788";"SAGE Publications Ltd";No;No;0,293;Q1;13;32;82;1155;39;79;0,60;36,09;8,57;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1984-2026";"Religious Studies (Q1)";"Arts and Humanities" +17410;21101094911;"Emergency and Critical Care Medicine";journal;"2693860X, 20970617";"Lippincott Williams and Wilkins";Yes;Yes;0,293;Q2;7;36;106;1136;105;102;0,83;31,56;35,40;0;United States;Northern America;"Lippincott Williams and Wilkins";"2021-2025";"Emergency Medicine (Q2); Critical Care and Intensive Care Medicine (Q3)";"Medicine" +17411;24976;"Forest Products Journal";journal;"00157473";"Forest Products Society";No;No;0,293;Q2;63;46;128;1778;208;128;1,70;38,65;30,26;0;United States;Northern America;"Forest Products Society";"1968-1989, 1993, 1995-2026";"Forestry (Q2); Materials Science (miscellaneous) (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Materials Science" +17412;21100846015;"Indian Journal of Extension Education";journal;"05371996, 2454552X";"Indian Society of Extension Education";No;No;0,293;Q2;9;114;238;2545;381;224;1,60;22,32;33,75;0;India;Asiatic Region;"Indian Society of Extension Education";"1981-1982, 2023-2026";"Communication (Q2); Social Sciences (miscellaneous) (Q2); Development (Q3)";"Social Sciences" +17413;21100886220;"Journal for International Business and Entrepreneurship Development";journal;"17476763, 15499324";"Inderscience Enterprises Ltd";No;No;0,293;Q2;16;19;73;1582;116;72;1,79;83,26;38,00;0;Switzerland;Western Europe;"Inderscience Enterprises Ltd";"2018-2025";"Political Science and International Relations (Q2); Business, Management and Accounting (miscellaneous) (Q3); Development (Q3)";"Business, Management and Accounting; Social Sciences" +17414;19700174747;"Journal of Green Building";journal;"19434618, 15526100";"College Publishing";No;No;0,293;Q2;35;63;143;3428;215;143;1,39;54,41;40,00;0;United States;Northern America;"College Publishing";"2006-2026";"Architecture (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Environmental Engineering (Q3); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Public Health, Environmental and Occupational Health (Q3)";"Engineering; Environmental Science; Medicine; Social Sciences" +17415;21101288927;"Journal of Sustainable Development and Regulatory Issues";journal;"29878071, 29878063";"Lembaga Contrarius Indonesia";No;No;0,293;Q2;8;28;32;1998;74;32;2,31;71,36;30,61;0;Indonesia;Asiatic Region;"Lembaga Contrarius Indonesia";"2023-2026";"Law (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +17416;21100823138;"Malaysian Orthopaedic Journal";journal;"2232111X, 19852533";"Malaysian Orthopaedic Association";Yes;No;0,293;Q2;20;60;180;1101;167;164;0,91;18,35;14,39;0;Malaysia;Asiatic Region;"Malaysian Orthopaedic Association";"2015-2025";"Emergency Medicine (Q2); Orthopedics and Sports Medicine (Q3); Surgery (Q3)";"Medicine" +17417;21100444326;"Masculinities and Social Change";journal;"20143605";"Hipatia Editorial";Yes;Yes;0,293;Q2;18;15;36;871;44;36;1,46;58,07;50,00;0;Spain;Western Europe;"Hipatia Editorial";"2012-2025";"Gender Studies (Q2)";"Social Sciences" +17418;21100855893;"Revista Brasileira de Medicina Veterinaria";journal;"01002430, 25272179";"Society of Veterinary Medicine of the State of Rio de Janeiro";Yes;No;0,293;Q2;12;40;120;1201;126;120;0,79;30,03;46,15;0;Brazil;Latin America;"Society of Veterinary Medicine of the State of Rio de Janeiro";"2010-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +17419;21101040666;"Science and Technology Indonesia";journal;"25804391, 25804405";"Magister Program of Material Sciences, Graduate School of Sriwijaya University";Yes;No;0,293;Q2;14;120;258;5205;466;258;1,83;43,38;51,07;0;Indonesia;Asiatic Region;"Magister Program of Material Sciences, Graduate School of Sriwijaya University";"2019-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Chemistry; Mathematics; Pharmacology, Toxicology and Pharmaceutics; Physics and Astronomy" +17420;145055;"Xi'an Shiyou Daxue Xuebao (Ziran Kexue Ban)/Journal of Xi'an Shiyou University, Natural Sciences Edition";journal;"1673064X";"Xi'an Petroleum Institute";No;No;0,293;Q2;20;1;312;33;246;312;0,85;33,00;14,29;0;China;Asiatic Region;"Xi'an Petroleum Institute";"2005-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +17421;144653;"Artificial Life and Robotics";journal;"14335298, 16147456";"Springer";No;No;0,293;Q3;27;119;264;2509;321;264;1,25;21,08;15,95;0;Japan;Asiatic Region;"Springer";"1997-1998, 2000, 2005-2026";"Artificial Intelligence (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science" +17422;21101170609;"Complex Systems Informatics and Modeling Quarterly";journal;"22559922";"Riga Technical University";Yes;Yes;0,293;Q3;13;26;61;1069;113;51;1,43;41,12;39,66;0;Latvia;Eastern Europe;"Riga Technical University";"2019-2025";"Artificial Intelligence (Q3); Business, Management and Accounting (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Information Systems (Q3)";"Business, Management and Accounting; Computer Science; Engineering" +17423;24162;"Computing and Informatics";journal;"25858807, 13359150";"Slovak Academy of Sciences";Yes;No;0,293;Q3;34;48;198;1738;275;197;1,30;36,21;28,57;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences";"2000-2025";"Computational Theory and Mathematics (Q3); Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Software (Q3)";"Computer Science" +17424;12933;"Cybernetics and Systems Analysis";journal;"15738337, 10600396";"Springer New York";No;No;0,293;Q3;31;100;307;2338;338;307;1,25;23,38;26,81;0;United States;Northern America;"Springer New York";"1991-2001, 2003, 2005-2026";"Computer Science (miscellaneous) (Q3)";"Computer Science" +17425;21101039761;"Ecological Engineering and Environmental Technology";journal;"27197050";"Polskie Towarzystwo Inzynierii Ekologicznej";Yes;No;0,293;Q3;19;363;792;14695;1232;792;1,61;40,48;41,33;1;Poland;Eastern Europe;"Polskie Towarzystwo Inzynierii Ekologicznej";"2021-2026";"Ecology (Q3); Environmental Engineering (Q3); Environmental Science (miscellaneous) (Q3)";"Environmental Science" +17426;12100155623;"Forum for Social Economics";journal;"18746381, 07360932";"Routledge";No;No;0,293;Q3;18;61;106;4376;129;99;1,41;71,74;31,71;2;United Kingdom;Western Europe;"Routledge";"1971, 1975-1998, 2004, 2008, 2011-2026";"Economics and Econometrics (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +17427;19700174610;"Global Nest Journal";journal;"17907632, 2241777X";"Global NEST";No;No;0,293;Q3;44;286;552;13347;1086;551;2,10;46,67;38,54;0;Greece;Western Europe;"Global NEST";"2000-2026";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +17428;21100913762;"International Journal of Nanoscience and Nanotechnology";journal;"24235911, 17357004";"Iranian Nano Society";Yes;No;0,293;Q3;15;6;72;232;86;72;1,10;38,67;16,67;0;Iran;Middle East;"Iranian Nano Society";"2018-2025";"Atomic and Molecular Physics, and Optics (Q3); Chemistry (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Bioengineering (Q4)";"Chemical Engineering; Chemistry; Engineering; Materials Science; Physics and Astronomy" +17429;11900154401;"International Journal of Technology and Human Interaction";journal;"15483916, 15483908";"IGI Publishing";No;No;0,293;Q3;26;9;79;718;165;79;3,93;79,78;42,11;0;United States;Northern America;"IGI Publishing";"2005-2025";"Information Systems (Q3); Human-Computer Interaction (Q4)";"Computer Science" +17430;19700174989;"Iranian Journal of Child Neurology";journal;"20080700, 17354668";"Iranian Child Neurology Society";Yes;No;0,293;Q3;25;51;158;1340;167;158;1,04;26,27;53,62;0;Iran;Middle East;"Iranian Child Neurology Society";"2009-2026";"Neurology (Q3); Neurology (clinical) (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine; Neuroscience" +17431;21101027626;"Journal of Korean Academic Society of Nursing Education";journal;"20937814, 12259578";"Korean Academic Society of Nursing Education";No;No;0,293;Q3;12;46;111;1348;101;111;0,85;29,30;80,77;0;South Korea;Asiatic Region;"Korean Academic Society of Nursing Education";"2019-2025";"Education (Q3); Nursing (miscellaneous) (Q3); Research and Theory (Q3); Leadership and Management (Q4)";"Nursing; Social Sciences" +17432;24043;"Journal of Labelled Compounds and Radiopharmaceuticals";journal;"03624803, 10991344";"John Wiley and Sons Ltd";No;No;0,293;Q3;58;44;128;1487;151;121;1,29;33,80;28,57;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1976-2026";"Analytical Chemistry (Q3); Drug Discovery (Q3); Organic Chemistry (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Spectroscopy (Q3); Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +17433;21101041811;"Journal of Teaching and Learning";journal;"14921154, 19118279";"University of Windsor";Yes;Yes;0,293;Q3;10;69;52;3469;70;48;0,96;50,28;52,32;0;Canada;Northern America;"University of Windsor";"2019-2026";"Education (Q3)";"Social Sciences" +17434;21101073718;"Learning Disabilities";journal;"19376928, 19376936";"Learning Disabilities Worldwide (LDW)";No;No;0,293;Q3;13;5;30;189;33;30;0,55;37,80;80,00;0;United States;Northern America;"Learning Disabilities Worldwide (LDW)";"2018-2025";"Developmental and Educational Psychology (Q3); Education (Q3); Health (social science) (Q3)";"Psychology; Social Sciences" +17435;21100410200;"Moscow University Mathematics Bulletin";journal;"19348444, 00271322";"Pleiades Publishing";No;No;0,293;Q3;11;45;122;947;53;122;0,53;21,04;27,63;0;United States;Northern America;"Pleiades Publishing";"2007-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17436;35404;"Operative Techniques in Sports Medicine";journal;"15579794, 10601872";"W.B. Saunders";No;No;0,293;Q3;39;15;121;914;116;109;0,68;60,93;26,42;0;United States;Northern America;"W.B. Saunders";"1993-2025";"Orthopedics and Sports Medicine (Q3); Surgery (Q3); Sports Science (Q4)";"Health Professions; Medicine" +17437;19400158901;"Perfiles Educativos";journal;"24486167, 01852698";"Universidad Nacional Autonoma de Mexico";Yes;No;0,293;Q3;21;9;165;259;126;153;0,71;28,78;29,41;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2004-2005, 2009-2025";"Education (Q3)";"Social Sciences" +17438;21101016911;"Review of Economics";journal;"09485139, 2366035X";"De Gruyter Oldenbourg";Yes;No;0,293;Q3;10;8;34;333;42;34;1,54;41,63;29,41;0;Germany;Western Europe;"De Gruyter Oldenbourg";"2016-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +17439;21100897721;"Revista Colombiana de Educacion";journal;"23230134, 01203916";"Research Center of Universidad Pedagogica Nacional";Yes;Yes;0,293;Q3;9;64;170;3034;128;169;0,66;47,41;48,94;0;Colombia;Latin America;"Research Center of Universidad Pedagogica Nacional";"2018-2026";"Education (Q3)";"Social Sciences" +17440;21100901061;"Sao Paulo Journal of Mathematical Sciences";journal;"19826907, 23169028";"Springer Nature";Yes;Yes;0,293;Q3;13;42;233;1146;156;229;0,71;27,29;21,95;0;Switzerland;Western Europe;"Springer Nature";"2015-2026";"Computational Theory and Mathematics (Q3); Mathematics (miscellaneous) (Q3); Statistics, Probability and Uncertainty (Q3)";"Computer Science; Decision Sciences; Mathematics" +17441;21101038527;"SOTL in the South";journal;"25231154";"University of Johannesburg";Yes;Yes;0,293;Q3;8;7;82;260;96;80;1,38;37,14;80,00;0;South Africa;Africa;"University of Johannesburg";"2017-2025";"Education (Q3)";"Social Sciences" +17442;144660;"Strategy and Leadership";journal;"10878572";"Emerald Group Publishing Ltd.";No;No;0,293;Q3;58;79;111;6379;162;76;2,03;80,75;34,74;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1996-2026";"Strategy and Management (Q3)";"Business, Management and Accounting" +17443;21101060318;"Textile and Leather Review";journal;"26236281, 26236257";"idd3";Yes;No;0,293;Q3;15;57;150;1736;281;150;1,70;30,46;45,54;0;Croatia;Eastern Europe;"idd3";"2018-2026";"Chemistry (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Waste Management and Disposal (Q3)";"Chemistry; Engineering; Environmental Science; Materials Science" +17444;65854;"Fornvannen";journal;"14049430, 00157813";"Royal Swedish Academy of Letters, History and Antiquities";No;No;0,292;Q1;8;33;78;1137;23;77;0,32;34,45;34,78;0;Sweden;Western Europe;"Royal Swedish Academy of Letters, History and Antiquities";"1978, 2011-2025";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +17445;16902;"Labour";journal;"11217081, 14679914";"John Wiley and Sons Inc";No;No;0,292;Q1;43;16;60;762;57;60;1,00;47,63;40,54;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1987-2026";"History (Q1); Demography (Q2); Geography, Planning and Development (Q3); Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q3)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +17446;21100942113;"Nordic Journal of Educational History";journal;"20019076, 20017766";"University of UMEA";Yes;Yes;0,292;Q1;6;12;47;784;19;41;0,42;65,33;43,75;0;Sweden;Western Europe;"University of UMEA";"2019-2025";"History (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +17447;21101192893;"Two Centuries of the Russian Classics";journal;"26867494";"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";Yes;Yes;0,292;Q1;5;53;136;1330;27;136;0,25;25,09;65,45;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";"2019-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +17448;21101162625;"Agathon - International Journal of Architecture, Art and Design";journal;"2532683X, 24649309";"LetteraVentidue Edizioni S.r.l.";Yes;No;0,292;Q2;10;55;115;2511;253;111;2,20;45,65;63,46;0;Italy;Western Europe;"LetteraVentidue Edizioni S.r.l.";"2023-2025";"Architecture (Q2); Urban Studies (Q2); Building and Construction (Q3)";"Engineering; Social Sciences" +17449;4700152739;"Child and Youth Services";journal;"15452298, 0145935X";"Routledge";No;No;0,292;Q2;26;84;89;5445;123;85;1,33;64,82;70,50;0;United States;Northern America;"Routledge";"1977-1983, 1985-1991, 1993-1994, 1997-1999, 2001, 2004-2026";"Social Sciences (miscellaneous) (Q2); Health (social science) (Q3)";"Social Sciences" +17450;14239;"College and Research Libraries News";journal;"21506698, 00990086";"Association of College and Research Libraries";No;No;0,292;Q2;30;78;226;562;173;152;1,03;7,21;74,04;0;United States;Northern America;"Association of College and Research Libraries";"1986-1988, 1990-2026";"Library and Information Sciences (Q2); Education (Q3)";"Social Sciences" +17451;15162;"Eure";journal;"07176236, 02507161";"Revista de Geografia Norte Grande";Yes;Yes;0,292;Q2;41;11;118;618;132;118;0,99;56,18;34,78;0;Chile;Latin America;"Revista de Geografia Norte Grande";"1979, 1982, 1996-1998, 2001-2025";"Urban Studies (Q2)";"Social Sciences" +17452;21810;"Farmacia";journal;"00148237";"Romanian Society for Pharmaceutical Sciences";No;No;0,292;Q2;34;150;449;7137;635;449;1,74;47,58;61,10;0;Romania;Eastern Europe;"Romanian Society for Pharmaceutical Sciences";"1945-1946, 1973-1987, 2003, 2008-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)";"Pharmacology, Toxicology and Pharmaceutics" +17453;3300148002;"Journal for Nurse Practitioners";journal;"15554155";"Elsevier Inc.";No;No;0,292;Q2;35;271;815;5338;644;723;0,72;19,70;75,20;1;United States;Northern America;"Elsevier Inc.";"2005-2026";"Advanced and Specialized Nursing (Q2); Fundamentals and Skills (Q3); LPN and LVN (Q3)";"Nursing" +17454;23703;"Journal of Feminist Family Therapy";journal;"15404099, 08952833";"Routledge";No;No;0,292;Q2;25;11;44;539;63;41;0,86;49,00;75,00;0;United States;Northern America;"Routledge";"1989-2026";"Gender Studies (Q2); Applied Psychology (Q3)";"Psychology; Social Sciences" +17455;21100255350;"Journal of Forensic Practice";journal;"20508808, 20508794";"Emerald Publishing";No;No;0,292;Q2;25;52;82;2648;85;82;0,76;50,92;68,33;0;United Kingdom;Western Europe;"Emerald Publishing";"2013-2026";"Law (Q2); Applied Psychology (Q3); Pathology and Forensic Medicine (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology; Social Sciences" +17456;23585;"Journal of Real Estate Portfolio Management";journal;"10835547";"Taylor and Francis Ltd.";No;No;0,292;Q2;24;14;19;834;18;18;0,86;59,57;10,71;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000, 2003-2021, 2023-2026";"Urban Studies (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Finance (Q3); Management Information Systems (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +17457;40309;"Population";journal;"19589190, 16342941";"Institut National d'Etudes Demographiques";Yes;Yes;0,292;Q2;40;0;17;0;18;17;0,00;0,00;0,00;0;France;Western Europe;"Institut National d'Etudes Demographiques";"1946-1947, 1973-2022";"Demography (Q2)";"Social Sciences" +17458;21100793178;"Psicoperspectivas";journal;"07186924";"Pontificia Universidad Catolica de Valparaiso";Yes;Yes;0,292;Q2;27;21;100;891;84;90;0,65;42,43;47,37;0;Chile;Latin America;"Pontificia Universidad Catolica de Valparaiso";"2006-2025";"Social Sciences (miscellaneous) (Q2); Psychology (miscellaneous) (Q3)";"Psychology; Social Sciences" +17459;21101107533;"Reading in a Foreign Language";journal;"15390578";"University of Hawaii Press";No;No;0,292;Q2;13;38;63;2017;84;56;1,46;53,08;44,00;0;United States;Northern America;"University of Hawaii Press";"2019-2026";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +17460;83385;"Veterinaria Italiana";journal;"0505401X, 18281427";"Istituto Zooprofilattico dell'Abruzzo e del Molise";Yes;Yes;0,292;Q2;32;48;141;1729;162;137;0,99;36,02;42,19;0;Italy;Western Europe;"Istituto Zooprofilattico dell'Abruzzo e del Molise";"1975, 2010-2026";"Veterinary (miscellaneous) (Q2)";"Veterinary" +17461;21100199106;"ARYA Atherosclerosis";journal;"22516638, 17353955";"Isfahan University of Medical Sciences(IUMS)";Yes;No;0,292;Q3;33;44;146;1496;150;140;0,74;34,00;40,00;0;Iran;Middle East;"Isfahan University of Medical Sciences(IUMS)";"2007, 2011-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +17462;18881;"Australian Economic Review";journal;"00049018, 14678462";"Wiley-Blackwell Publishing Ltd";No;No;0,292;Q3;37;45;119;1207;121;99;0,79;26,82;31,82;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1968-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +17463;11400153329;"Earth and Environmental Science Transactions of the Royal Society of Edinburgh";journal;"17556910, 17556929";"Cambridge University Press";No;No;0,292;Q3;73;5;57;355;57;56;1,06;71,00;26,09;0;United Kingdom;Western Europe;"Cambridge University Press";"2007-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science" +17464;27876;"Earthquake";journal;"10003274";"Science Press";No;No;0,292;Q3;17;28;153;1182;135;153;1,24;42,21;37,84;0;China;Asiatic Region;"Science Press";"1968-1969, 1973, 1980, 1986-2025";"Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +17465;19700182723;"GeroPsych: The Journal of Gerontopsychology and Geriatric Psychiatry";journal;"16629647, 1662971X";"Hogrefe Publishing";No;No;0,292;Q3;29;14;68;691;92;65;1,48;49,36;45,10;0;United States;Northern America;"Hogrefe Publishing";"2010-2026";"Gerontology (Q3); Geriatrics and Gerontology (Q4)";"Medicine; Nursing" +17466;21100805730;"Gongcheng Kexue Yu Jishu/Advanced Engineering Sciences";journal;"20963246";"Sichuan University";Yes;No;0,292;Q3;30;187;478;6108;680;474;1,15;32,66;32,47;0;China;Asiatic Region;"Sichuan University";"2017-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +17467;21101179293;"Hemato";journal;"26736357";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,292;Q3;10;44;115;2842;123;112;0,72;64,59;56,81;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Hematology (Q3)";"Medicine" +17468;21894;"International Anesthesiology Clinics";journal;"00205907, 15371913";"Lippincott Williams and Wilkins";No;No;0,292;Q3;38;44;127;2668;150;127;1,33;60,64;51,09;0;United States;Northern America;"Lippincott Williams and Wilkins";"1962-2026";"Anesthesiology and Pain Medicine (Q3)";"Medicine" +17469;19700186851;"International Journal of Automation and Control";journal;"17407516, 17407524";"Inderscience Enterprises Ltd";No;No;0,292;Q3;26;31;98;1460;163;96;1,78;47,10;21,05;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2026";"Control and Systems Engineering (Q3); Hardware and Architecture (Q3); Industrial and Manufacturing Engineering (Q3); Software (Q3)";"Computer Science; Engineering" +17470;21100869464;"International Journal of Image and Graphics";journal;"02194678, 17936756";"World Scientific";No;No;0,292;Q3;28;131;236;5810;365;236;1,71;44,35;37,07;0;Singapore;Asiatic Region;"World Scientific";"2001-2026";"Computer Graphics and Computer-Aided Design (Q3); Computer Science Applications (Q3); Computer Vision and Pattern Recognition (Q3)";"Computer Science" +17471;21100199790;"International Journal of Intelligent Engineering and Systems";journal;"21853118, 2185310X";"Intelligent Network and Systems Society";No;No;0,292;Q3;40;692;1145;22559;2416;1145;2,19;32,60;33,88;0;Japan;Asiatic Region;"Intelligent Network and Systems Society";"2008-2026";"Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)";"Computer Science; Engineering" +17472;21101348169;"InterPore Journal";journal;"31056369, 3007410X";"International Society for Porous Media";No;No;0,292;Q3;3;28;22;1446;29;16;1,32;51,64;24,27;0;Netherlands;Western Europe;"International Society for Porous Media";"2024-2025";"Artificial Intelligence (Q3); Energy Engineering and Power Technology (Q3); Fluid Flow and Transfer Processes (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Chemical Engineering; Computer Science; Energy" +17473;21100818702;"Journal of International Oral Health";journal;"09767428, 09761799";"Wolters Kluwer Medknow Publications";Yes;No;0,292;Q3;17;60;229;2033;250;226;1,31;33,88;51,93;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2016-2025";"Dentistry (miscellaneous) (Q3)";"Dentistry" +17474;21101183615;"Journal of Mining Science";journal;"10627391, 15738736";"Pleiades Publishing";No;No;0,292;Q3;40;85;259;2229;228;259;0,83;26,22;33,90;0;United States;Northern America;"Pleiades Publishing";"1976, 1991-2025";"Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +17475;19700175158;"Journal of Pediatric Rehabilitation Medicine";journal;"18745393, 18758894";"SAGE Publications Ltd";Yes;No;0,292;Q3;36;35;204;0;197;190;0,91;0,00;61,90;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2026";"Pediatrics, Perinatology and Child Health (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)";"Health Professions; Medicine" +17476;79015;"Kongzhi yu Juece/Control and Decision";journal;"10010920";"Northeast University";No;No;0,292;Q3;58;377;1174;11321;2133;1172;1,85;30,03;31,78;0;China;Asiatic Region;"Northeast University";"1997-2026";"Artificial Intelligence (Q3); Control and Optimization (Q3); Control and Systems Engineering (Q3); Software (Q3)";"Computer Science; Engineering; Mathematics" +17477;27862;"Marine Technology Society Journal";journal;"19481209, 00253324";"Marine Technology Society Inc.";No;No;0,292;Q3;54;17;135;427;121;94;0,83;25,12;50,00;0;United States;Northern America;"Marine Technology Society Inc.";"1969-1987, 1993-2025";"Ocean Engineering (Q3); Oceanography (Q3)";"Earth and Planetary Sciences; Engineering" +17478;100147322;"Materials Research";journal;"19805373, 15161439";"Universidade Federal de Sao Carlos";Yes;Yes;0,292;Q3;79;242;590;10021;930;586;1,40;41,41;32,51;0;Brazil;Latin America;"Universidade Federal de Sao Carlos";"1999, 2005-2026";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +17479;21100894554;"Multidisciplinary Journal of Educational Research";journal;"20142862";"Hipatia Editorial";Yes;No;0,292;Q3;11;12;44;593;64;44;1,52;49,42;39,02;0;Spain;Western Europe;"Hipatia Editorial";"2018-2025";"Developmental and Educational Psychology (Q3); Education (Q3); Sociology and Political Science (Q3)";"Psychology; Social Sciences" +17480;18794;"Petrophysics";journal;"15299074";"Society of Well Log Analystists Inc.";No;No;0,292;Q3;42;0;113;0;150;104;1,48;0,00;0,00;0;United States;Northern America;"Society of Well Log Analystists Inc.";"2000-2012, 2016-2023";"Energy (miscellaneous) (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences; Energy" +17481;21101238420;"Pharmaceutical Fronts";journal;"26285096, 26285088";"Georg Thieme Verlag";Yes;Yes;0,292;Q3;9;31;94;1734;189;93;2,15;55,94;43,54;0;Germany;Western Europe;"Georg Thieme Verlag";"2020-2026";"Pharmaceutical Science (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +17482;23052;"Politicka Ekonomie";journal;"23368225, 00323233";"Prague University of Economics and Business";No;No;0,292;Q3;18;25;98;1686;131;98;1,66;67,44;33,87;0;Czech Republic;Eastern Europe;"Prague University of Economics and Business";"1980, 1982, 1986-1987, 1993, 1996-2025";"Economics and Econometrics (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +17483;13757;"Process Safety Progress";journal;"15475913, 10668527";"John Wiley and Sons Inc";No;No;0,292;Q3;50;70;324;1595;417;291;1,31;22,79;24,11;0;United States;Northern America;"John Wiley and Sons Inc";"1993-2026";"Chemical Engineering (miscellaneous) (Q3); Safety, Risk, Reliability and Quality (Q3)";"Chemical Engineering; Engineering" +17484;16900154709;"Revista Ciencia Agronomica";journal;"00456888, 18066690";"Universidade Federal do Ceara";Yes;No;0,292;Q3;37;72;176;2478;195;176;1,00;34,42;35,35;0;Brazil;Latin America;"Universidade Federal do Ceara";"2008-2026";"Agronomy and Crop Science (Q3); Horticulture (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +17485;19222;"Surgical Technology International";journal;"10903941";"Universal Medical Press";No;No;0,292;Q3;41;0;243;0;248;243;0,78;0,00;0,00;0;United States;Northern America;"Universal Medical Press";"2002-2010, 2012-2025";"Surgery (Q3)";"Medicine" +17486;19900192002;"Zeitschrift der Deutschen Gesellschaft fur Geowissenschaften";journal;"18601804, 18614094";"Schweizerbart Science Publishers";No;No;0,292;Q3;27;37;95;3948;75;92;0,62;106,70;18,92;0;Germany;Western Europe;"Schweizerbart Science Publishers";"2008-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +17487;18924;"Journal of Genetics";journal;"09737731, 00221333";"Springer";Yes;No;0,292;Q4;52;31;143;957;168;139;0,94;30,87;39,47;0;India;Asiatic Region;"Springer";"1910-1960, 1962-1966, 1968, 1970-1972, 1974-1977, 1985-2026";"Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology" +17488;21100935075;"Approaching Religion";journal;"17993121";"Donner Institute for Research in Religious and Cultural History";Yes;Yes;0,291;Q1;5;17;87;869;58;76;0,70;51,12;88,89;0;Finland;Western Europe;"Donner Institute for Research in Religious and Cultural History";"2019-2025";"History (Q1); Religious Studies (Q1)";"Arts and Humanities" +17489;21101039620;"Archivos de Historia del Movimiento Obrero y la Izquierda";journal;"26839601, 23139749";"Centro de Estudios Historicos de los Trabajadores y las Izquierdas";Yes;Yes;0,291;Q1;4;11;63;318;13;50;0,21;28,91;22,22;0;Argentina;Latin America;"Centro de Estudios Historicos de los Trabajadores y las Izquierdas";"2019-2025";"History (Q1); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +17490;19400158916;"Zeitschrift des Deutschen Palastina-Vereins";journal;"00121169";"Otto Harassowitz";No;No;0,291;Q1;12;0;29;0;11;26;0,41;0,00;0,00;0;Germany;Western Europe;"Otto Harassowitz";"2009-2024";"Cultural Studies (Q1); History (Q1); Religious Studies (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +17491;21101053575;"APOS Trends in Orthodontics";journal;"23214600, 23211407";"Scientific Scholar LLC";No;No;0,291;Q2;13;48;118;1254;104;111;0,81;26,13;41,89;0;United States;Northern America;"Scientific Scholar LLC";"2013-2026";"Orthodontics (Q2)";"Dentistry" +17492;5800207877;"Cahiers de Linguistique Asie Orientale";journal;"01533320, 19606028";"Brill Academic Publishers";No;No;0,291;Q2;12;10;22;665;11;22;0,36;66,50;46,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"1996, 2001-2026";"Linguistics and Language (Q2)";"Social Sciences" +17493;21100264483;"Cuadernos.info";journal;"0719367X, 07193661";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,291;Q2;20;49;146;2260;151;137;0,97;46,12;50,91;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2013-2025";"Communication (Q2); Library and Information Sciences (Q2)";"Social Sciences" +17494;5000153401;"Journal of Maritime Archaeology";journal;"15572293, 15572285";"Springer New York";No;No;0,291;Q2;23;47;76;3073;71;74;1,02;65,38;30,39;0;United States;Northern America;"Springer New York";"2006-2026";"Archeology (arts and humanities) (Q2)";"Arts and Humanities" +17495;21101133330;"Pan African Medical Journal One Health";journal;"27072800";"Pan African Medical Journal";Yes;No;0,291;Q2;8;49;170;1459;152;156;0,91;29,78;27,33;0;Kenya;Africa;"Pan African Medical Journal";"2020-2025";"Veterinary (miscellaneous) (Q2); Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Veterinary" +17496;23032;"Transactions of the Royal Society of South Australia";journal;"22040293, 03721426";"Taylor and Francis";No;No;0,291;Q2;20;14;43;794;37;42;0,61;56,71;22,22;0;Australia;Pacific Region;"Taylor and Francis";"1979-1981, 1996-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Anthropology (Q2); Environmental Science (miscellaneous) (Q3); Paleontology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science; Social Sciences" +17497;16645;"Acta Phytopathologica et Entomologica Hungarica";journal;"02381249, 15882691";"Akademiai Kiado";No;No;0,291;Q3;26;27;41;821;38;41;1,08;30,41;37,68;0;Hungary;Eastern Europe;"Akademiai Kiado";"1996-2025";"Insect Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17498;19700175586;"Analele Stiintifice ale Universitatii Ovidius Constanta, Seria Matematica";journal;"12241784, 18440835";"Ovidius University";Yes;Yes;0,291;Q3;27;35;117;832;80;117;0,45;23,77;40,28;0;Romania;Eastern Europe;"Ovidius University";"2009-2025";"Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +17499;7000153270;"Annali dell'Universita di Ferrara";journal;"18271510, 04303202";"Springer-Verlag Italia s.r.l.";No;No;0,291;Q3;27;67;158;1750;176;156;1,06;26,12;20,66;0;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1950, 1952-1959, 1961-1962, 1967-1973, 1975-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17500;26381;"Bautechnik";trade journal;"09328351, 14370999";"Wiley-Blackwell";No;No;0,291;Q3;24;93;308;1448;198;262;0,62;15,57;21,75;0;Germany;Western Europe;"Wiley-Blackwell";"1969, 1972-1973, 1975-1978, 1984-1990, 1994-2026";"Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +17501;15393;"Biocatalysis and Biotransformation";journal;"10292446, 10242422";"Taylor and Francis Ltd.";No;No;0,291;Q3;56;51;150;3019;268;150;1,89;59,20;45,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Biotechnology (Q3); Biochemistry (Q4); Catalysis (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +17502;21101042191;"Case Studies in the Environment";journal;"24739510";"University of California Press";No;No;0,291;Q3;12;20;62;927;64;62;1,27;46,35;39,39;0;United States;Northern America;"University of California Press";"2017-2025";"Education (Q3); Environmental Science (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science; Social Sciences" +17503;21101257078;"Creative Mathematics and Informatics";journal;"1843441X, 1584286X";"SINUS Association";No;No;0,291;Q3;6;39;74;1026;51;74;0,84;26,31;33,33;0;Romania;Eastern Europe;"SINUS Association";"2020-2025";"Computational Mathematics (Q3); Computer Science Applications (Q3)";"Computer Science; Mathematics" +17504;4700152602;"Current Hypertension Reviews";journal;"18756506, 15734021";"Bentham Science Publishers";No;No;0,291;Q3;30;27;60;1676;74;56;1,43;62,07;44,14;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Internal Medicine (Q3)";"Medicine" +17505;19700174991;"Indian Journal of Nephrology";journal;"09714065, 19983662";"Scientific Scholar LLC";Yes;No;0,291;Q3;38;198;421;3830;313;298;0,66;19,34;35,84;0;United States;Northern America;"Scientific Scholar LLC";"2009-2026";"Nephrology (Q3)";"Medicine" +17506;21100828652;"International Journal for Simulation and Multidisciplinary Design Optimization";journal;"17796288";"EDP Sciences";Yes;No;0,291;Q3;12;28;75;832;150;75;1,71;29,71;29,33;0;France;Western Europe;"EDP Sciences";"2017-2026";"Control and Optimization (Q3); Modeling and Simulation (Q3)";"Mathematics" +17507;29142;"International Journal of Turbo and Jet Engines";journal;"03340082, 21910332";"Walter de Gruyter GmbH";No;No;0,291;Q3;29;89;250;2682;323;249;1,30;30,13;25,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1985-2026";"Aerospace Engineering (Q3)";"Engineering" +17508;25630;"International Shipbuilding Progress";journal;"15662829, 0020868X";"SAGE Publications Ltd";No;No;0,291;Q3;33;2;21;23;17;16;0,83;11,50;0,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1969-1992, 1994-2025";"Mechanical Engineering (Q3); Ocean Engineering (Q3)";"Engineering" +17509;20300195075;"Landscape Online";journal;"18651542";"International Association for Landscape Ecology Chapter Germany";Yes;No;0,291;Q3;22;14;35;1057;39;33;1,00;75,50;51,28;0;Germany;Western Europe;"International Association for Landscape Ecology Chapter Germany";"2007-2026";"Ecology (Q3); Nature and Landscape Conservation (Q3)";"Environmental Science" +17510;17700156763;"Measurement Science Review";journal;"13358871";"Sciendo";Yes;No;0,291;Q3;35;44;108;1305;194;108;1,73;29,66;28,79;0;Germany;Western Europe;"Sciendo";"2008-2026";"Control and Systems Engineering (Q3); Instrumentation (Q3); Biomedical Engineering (Q4)";"Engineering; Physics and Astronomy" +17511;75153;"Physis";journal;"18094481, 01037331";"Institute de Medicina Social da UERJ";Yes;Yes;0,291;Q3;23;137;286;4886;150;273;0,51;35,66;62,62;0;Brazil;Latin America;"Institute de Medicina Social da UERJ";"1969-1984, 2008-2025";"Health Policy (Q3); Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +17512;19700182133;"South African Journal of Education";journal;"20763433, 02560100";"Foundation for Education Science and Technology";Yes;No;0,291;Q3;46;90;241;4830;292;237;1,06;53,67;45,19;0;South Africa;Africa;"Foundation for Education Science and Technology";"2003, 2008-2025";"Education (Q3)";"Social Sciences" +17513;21101021439;"Southern African Journal of Entrepreneurship and Small Business Management";journal;"25227343, 20713185";"AOSIS (Pty) Ltd";Yes;No;0,291;Q3;12;36;63;2472;122;61;1,74;68,67;37,50;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2019-2026";"Business and International Management (Q3); Development (Q3); Economics and Econometrics (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +17514;27414;"Tohoku Mathematical Journal";journal;"00408735";"Tohoku University, Mathematical Institute";No;No;0,291;Q3;37;26;77;552;44;77;0,66;21,23;21,62;0;Japan;Asiatic Region;"Tohoku University, Mathematical Institute";"1949-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17515;12400154710;"Transport and Telecommunication";journal;"14076179, 14076160";"Transport and Telecommunication Institute";Yes;No;0,291;Q3;25;30;102;931;163;102;1,85;31,03;25,58;0;Latvia;Eastern Europe;"Transport and Telecommunication Institute";"2008-2025";"Computer Science Applications (Q3); Engineering (miscellaneous) (Q3)";"Computer Science; Engineering" +17516;57242;"Idojaras";journal;"03246329";"Hungarian Meteorological Service";Yes;No;0,291;Q4;24;24;79;1022;83;79;1,02;42,58;39,76;0;Hungary;Eastern Europe;"Hungarian Meteorological Service";"1980, 2008-2025";"Atmospheric Science (Q4)";"Earth and Planetary Sciences" +17517;21101226891;"IEEE International Workshop on Factory Communication Systems - Proceedings, WFCS";conference and proceedings;"28358414, 28358511";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,291;-;5;54;33;951;59;31;1,84;17,61;12,38;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2000, 2006, 2022, 2024-2025";"Electrical and Electronic Engineering; Industrial and Manufacturing Engineering";"Engineering" +17518;16300154791;"Aramaic Studies";journal;"17455227, 14778351";"Brill Academic Publishers";No;No;0,290;Q1;13;7;29;492;12;28;0,44;70,29;37,50;0;Netherlands;Western Europe;"Brill Academic Publishers";"2003-2025";"Religious Studies (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +17519;29272;"Journal of Cultural Geography";journal;"08873631";"Taylor and Francis Ltd.";No;No;0,290;Q1;31;13;41;804;49;41;0,78;61,85;52,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-1999, 2001-2026";"Cultural Studies (Q1); Geography, Planning and Development (Q3)";"Social Sciences" +17520;21101264428;"Journal of Culture and Values in Education";journal;"2590342X";"OpenED Network";Yes;No;0,290;Q1;9;36;109;1925;186;108;1,81;53,47;61,36;0;Turkey;Middle East;"OpenED Network";"2020, 2022-2025";"Cultural Studies (Q1); Linguistics and Language (Q2); Social Sciences (miscellaneous) (Q2); Education (Q3)";"Social Sciences" +17521;21100902606;"Media e Jornalismo";journal;"16455681, 21835462";"Instituto de Comunicacao da NOVA";Yes;Yes;0,290;Q1;7;9;72;482;44;70;0,48;53,56;53,33;0;Portugal;Western Europe;"Instituto de Comunicacao da NOVA";"2018-2025";"Cultural Studies (Q1); Communication (Q2)";"Social Sciences" +17522;16000154742;"Orbis Litterarum";journal;"16000730, 01057510";"Wiley-Blackwell Publishing Ltd";No;No;0,290;Q1;13;60;101;2313;46;100;0,43;38,55;55,56;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1943-1950, 1954-2026";"Literature and Literary Theory (Q1)";"Arts and Humanities" +17523;13000154718;"Revista Signos";journal;"00350451, 07180934";"Ediciones Universitarias de Valparaiso";Yes;Yes;0,290;Q1;23;16;110;828;61;110;0,46;51,75;62,96;0;Chile;Latin America;"Ediciones Universitarias de Valparaiso";"2007-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +17524;21101361208;"Allergies";journal;"23135786";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,290;Q2;7;34;45;2243;71;44;1,97;65,97;50,66;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q3); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +17525;12045;"Interface: Communication, Health, Education";journal;"18075762, 14143283";"Fundacao UNI Botucatu/UNESP";Yes;No;0,290;Q2;30;119;331;3636;165;283;0,49;30,55;64,49;0;Brazil;Latin America;"Fundacao UNI Botucatu/UNESP";"1980, 2004, 2007-2026";"Communication (Q2); Education (Q3); Health (social science) (Q3)";"Social Sciences" +17526;12100157016;"International Journal of Law, Crime and Justice";journal;"17560616";"Academic Press";No;No;0,290;Q2;40;72;109;4832;290;109;2,62;67,11;53,61;0;United States;Northern America;"Academic Press";"2008-2026";"Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q3)";"Social Sciences" +17527;11800154543;"Iranian Journal of Veterinary Research";journal;"17281997";"Shiraz University";No;No;0,290;Q2;31;17;128;717;152;124;0,91;42,18;32,31;0;Iran;Middle East;"Shiraz University";"2008-2025";"Veterinary (miscellaneous) (Q2); Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences; Veterinary" +17528;21100926588;"Journal of Agricultural Resources and Environment";journal;"20956819";"Editorial Board of Journal of Agro-Environment Science";Yes;No;0,290;Q2;17;157;417;6032;574;417;1,47;38,42;40,82;0;China;Asiatic Region;"Editorial Board of Journal of Agro-Environment Science";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17529;21101232728;"Journal of Fungal Research";journal;"16723538";"";No;No;0,290;Q2;10;46;104;2430;128;104;1,10;52,83;44,81;0;China;Asiatic Region;"";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Horticulture (Q3); Microbiology (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology" +17530;21101100205;"Journal of Sustainability Research";journal;"26326582";"";No;No;0,290;Q2;17;80;109;5566;198;107;1,72;69,58;41,53;1;United Kingdom;Western Europe;"";"2019-2026";"Urban Studies (Q2); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3); Renewable Energy, Sustainability and the Environment (Q3)";"Energy; Environmental Science; Social Sciences" +17531;19600162167;"Journal of Water and Land Development";journal;"14297426, 20834535";"Institute of Technology and Life Sciences - National Research Institute";Yes;No;0,290;Q2;30;81;365;3787;463;365;1,23;46,75;37,46;0;Poland;Eastern Europe;"Institute of Technology and Life Sciences - National Research Institute";"2006-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Development (Q3); Environmental Engineering (Q3); Geography, Planning and Development (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +17532;21100264820;"Prisma Social";journal;"19893469";"Fundacion para la Investigacion Social Avanzada";Yes;No;0,290;Q2;17;65;163;2805;146;152;0,78;43,15;51,56;0;Spain;Western Europe;"Fundacion para la Investigacion Social Avanzada";"2013-2026";"Communication (Q2); Social Sciences (miscellaneous) (Q2); Education (Q3)";"Social Sciences" +17533;28831;"Public Culture";journal;"15278018, 08992363";"Duke University Press";No;No;0,290;Q2;93;11;86;531;69;73;0,62;48,27;58,33;0;United States;Northern America;"Duke University Press";"1996-2025";"Arts and Humanities (miscellaneous) (Q2); Communication (Q2); Social Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +17534;21101036140;"Tobacco Prevention and Cessation";journal;"24593087";"European Publishing";Yes;No;0,290;Q2;21;57;337;1464;253;311;0,62;25,68;64,31;0;Greece;Western Europe;"European Publishing";"2015-2026";"Health Professions (miscellaneous) (Q2); Epidemiology (Q3); Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Health Professions; Medicine; Social Sciences" +17535;15600154709;"Advances in Urology";journal;"16876377, 16876369";"John Wiley and Sons Ltd";Yes;No;0,290;Q3;42;10;30;322;39;30;0,47;32,20;17,19;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2026";"Obstetrics and Gynecology (Q3); Urology (Q3)";"Medicine" +17536;21100853388;"Aerotecnica Missili and Spazio";journal;"25246968, 03657442";"Springer International Publishing";No;No;0,290;Q3;4;44;38;1352;53;30;1,39;30,73;19,33;0;Switzerland;Western Europe;"Springer International Publishing";"1977, 2024-2025";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +17537;24132;"American Malacological Bulletin";journal;"07402783";"American Malacological Society";No;No;0,290;Q3;39;8;21;601;20;20;0,67;75,13;52,38;0;United States;Northern America;"American Malacological Society";"1988, 1993-1994, 1996-2025";"Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +17538;16900154702;"Avian Biology Research";journal;"17581567, 17581559";"Science and Technology Letters";No;No;0,290;Q3;45;16;47;933;51;47;1,00;58,31;34,29;0;United Kingdom;Western Europe;"Science and Technology Letters";"2008-2026";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +17539;12100154910;"Chemical Industry and Chemical Engineering Quarterly";journal;"14519372, 22177434";"";Yes;No;0,290;Q3;37;32;98;1133;149;98;1,70;35,41;38,02;0;Serbia;Eastern Europe;"";"2000-2026";"Chemical Engineering (miscellaneous) (Q3)";"Chemical Engineering" +17540;23963;"Chromatographia";journal;"00095893, 16121112";"";No;No;0,290;Q3;77;80;230;2739;395;227;1,67;34,24;37,31;0;Germany;Western Europe;"";"1968-2026";"Analytical Chemistry (Q3); Organic Chemistry (Q3); Biochemistry (Q4); Clinical Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +17541;21101290592;"Comprehensive Plant Biology";journal;"30423201";"Institute of Botany and Botanical Garden "Jevremovac", University of Belgrade";Yes;No;0,290;Q3;17;26;99;1248;114;99;1,09;48,00;57,42;0;Serbia;Eastern Europe;"Institute of Botany and Botanical Garden "Jevremovac", University of Belgrade";"2025";"Plant Science (Q3)";"Agricultural and Biological Sciences" +17542;21100981275;"EJVES Vascular Forum";journal;"2666688X";"Elsevier Ltd";Yes;No;0,290;Q3;14;59;159;895;174;113;1,13;15,17;32,72;0;United Kingdom;Western Europe;"Elsevier Ltd";"2020-2026";"Cardiology and Cardiovascular Medicine (Q3); Surgery (Q3)";"Medicine" +17543;12262;"Formal Methods in System Design";journal;"15728102, 09259856";"Springer Netherlands";No;No;0,290;Q3;59;36;56;1587;78;51;1,32;44,08;19,82;1;Netherlands;Western Europe;"Springer Netherlands";"1992-2022, 2024-2026";"Hardware and Architecture (Q3); Software (Q3); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +17544;5900153308;"Future Virology";journal;"17460794, 17460808";"Taylor and Francis Ltd.";No;No;0,290;Q3;51;55;244;4208;233;224;0,87;76,51;48,28;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Virology (Q3)";"Immunology and Microbiology" +17545;6000194782;"Games";journal;"20734336";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,290;Q3;27;66;202;2295;153;195;0,87;34,77;25,34;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2010-2025";"Applied Mathematics (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +17546;13732;"Indian Journal of Otolaryngology and Head and Neck Surgery";journal;"22313796, 09737707";"Springer";No;No;0,290;Q3;37;980;3109;17880;2263;3090;0,57;18,24;40,06;0;India;Asiatic Region;"Springer";"1993-2026";"Otorhinolaryngology (Q3); Surgery (Q3)";"Medicine" +17547;4400151409;"Industrial Biotechnology";journal;"15509087";"Mary Ann Liebert Inc.";No;No;0,290;Q3;47;53;119;3082;147;97;1,22;58,15;46,38;0;United States;Northern America;"Mary Ann Liebert Inc.";"2006-2026";"Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology" +17548;21101134674;"International Journal of Automotive Science and Technology";journal;"25870963";"Society of Automotive Engineers Turkey";Yes;Yes;0,290;Q3;9;71;147;2403;256;147;1,99;33,85;15,11;0;Turkey;Middle East;"Society of Automotive Engineers Turkey";"2022-2025";"Automotive Engineering (Q3); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Transportation (Q4)";"Energy; Engineering; Social Sciences" +17549;21100781875;"International Journal of Food Studies";journal;"21821054";"ISEKI Food Association";Yes;No;0,290;Q3;22;5;54;304;98;54;1,21;60,80;33,33;0;Austria;Western Europe;"ISEKI Food Association";"2013-2026";"Food Science (Q3)";"Agricultural and Biological Sciences" +17550;22679;"Jisuanji Jicheng Zhizao Xitong/Computer Integrated Manufacturing Systems, CIMS";journal;"10065911";"Computer Integrated Manufacturing Systems";No;No;0,290;Q3;46;359;1045;10943;1596;1045;1,49;30,48;33,46;0;China;Asiatic Region;"Computer Integrated Manufacturing Systems";"1996-2025";"Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Software (Q3)";"Computer Science; Engineering" +17551;21101176022;"Journal of Applied Data Sciences";journal;"27236471";"";No;No;0,290;Q3;17;227;231;8111;688;231;3,21;35,73;36,75;0;Indonesia;Asiatic Region;"";"2020-2026";"Artificial Intelligence (Q3); Computer Science Applications (Q3); Computer Science (miscellaneous) (Q3); Information Systems (Q3)";"Computer Science" +17552;5800179587;"Journal of Brachial Plexus and Peripheral Nerve Injury";journal;"17497221";"Georg Thieme Verlag";Yes;No;0,290;Q3;27;14;17;393;18;16;1,08;28,07;33,33;0;Germany;Western Europe;"Georg Thieme Verlag";"2006-2025";"Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +17553;21100247059;"Journal of Ecology and Environment";journal;"22881220, 22878327";"Ecological Society of Korea";Yes;No;0,290;Q3;27;28;110;1615;133;107;1,00;57,68;37,00;0;United Kingdom;Western Europe;"Ecological Society of Korea";"2013-2026";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17554;28345;"Journal of Functional Programming";journal;"14697653, 09567968";"Cambridge University Press";No;No;0,290;Q3;57;22;38;868;34;37;0,92;39,45;9,76;0;United Kingdom;Western Europe;"Cambridge University Press";"1991-2026";"Software (Q3)";"Computer Science" +17555;21100239225;"Journal of Spectroscopy";journal;"23144939, 23144920";"John Wiley and Sons Ltd";Yes;No;0,290;Q3;40;18;80;700;183;80;1,95;38,89;36,78;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2026";"Analytical Chemistry (Q3); Atomic and Molecular Physics, and Optics (Q3); Spectroscopy (Q4)";"Chemistry; Physics and Astronomy" +17556;24655;"Journal of Sulfur Chemistry";journal;"17415993, 17416000";"Taylor and Francis Ltd.";No;No;0,290;Q3;41;66;155;3232;304;155;2,17;48,97;38,40;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +17557;21101197309;"Modern Electric Power";journal;"10072322";"";No;No;0,290;Q3;15;65;329;1441;388;329;1,13;22,17;34,67;0;China;Asiatic Region;"";"2020-2025";"Energy Engineering and Power Technology (Q3)";"Energy" +17558;4000148305;"Nigerian Journal of Clinical Practice";journal;"11193077";"Wolters Kluwer Medknow Publications";No;No;0,290;Q3;42;206;827;5918;834;819;1,01;28,73;33,83;0;Nigeria;Africa;"Wolters Kluwer Medknow Publications";"2005-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +17559;21064;"Oriental Insects";journal;"21578745, 00305316";"Taylor and Francis Ltd.";No;No;0,290;Q3;20;48;110;1784;99;110;0,91;37,17;40,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1967-1985, 1991-2026";"Insect Science (Q3)";"Agricultural and Biological Sciences" +17560;16884;"Periodica Polytechnica Transportation Engineering";journal;"03037800, 15873811";"Budapest University of Technology and Economics";Yes;No;0,290;Q3;24;48;144;1402;206;144;1,42;29,21;26,67;0;Hungary;Eastern Europe;"Budapest University of Technology and Economics";"1973, 1976, 1979-1982, 1987-1988, 1996-2026";"Aerospace Engineering (Q3); Automotive Engineering (Q3); Mechanical Engineering (Q3); Modeling and Simulation (Q3)";"Engineering; Mathematics" +17561;15403;"Perspectives in Education";journal;"2519593X, 02582236";"University of the Free State";Yes;No;0,290;Q3;33;57;185;2349;242;174;1,14;41,21;57,14;0;South Africa;Africa;"University of the Free State";"2004-2025";"Education (Q3)";"Social Sciences" +17562;19700182009;"Pesquisa Agropecuaria Tropical";journal;"15176398, 19834063";"Universidade Federal De Goias (UFG)";Yes;Yes;0,290;Q3;29;50;155;1783;184;152;1,18;35,66;35,57;0;Brazil;Latin America;"Universidade Federal De Goias (UFG)";"2010-2026";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +17563;15990;"Psychologie in Erziehung und Unterricht";journal;"0342183X";"Ernst Reinhardt Verlag";No;No;0,290;Q3;23;21;44;1019;35;36;1,00;48,52;76,92;0;Germany;Western Europe;"Ernst Reinhardt Verlag";"1996-2025";"Developmental and Educational Psychology (Q3)";"Psychology" +17564;21101056009;"REC: Interventional Cardiology";journal;"26047322, 26047306";"Sociedad Espanola de Cardiologia";Yes;Yes;0,290;Q3;9;66;231;917;112;123;0,55;13,89;28,87;0;Spain;Western Europe;"Sociedad Espanola de Cardiologia";"2019-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +17565;21101041863;"Scientific Journal of Silesian University of Technology. Series Transport";journal;"24501549, 02093324";"Faculty of Transport and Aviation Engineering, Silesian University of Technology";Yes;Yes;0,290;Q3;15;68;204;2287;339;204;1,67;33,63;31,28;0;Poland;Eastern Europe;"Faculty of Transport and Aviation Engineering, Silesian University of Technology";"2019-2025";"Aerospace Engineering (Q3); Automotive Engineering (Q3); Civil and Structural Engineering (Q3); Mechanical Engineering (Q3); Transportation (Q3)";"Engineering; Social Sciences" +17566;21100901213;"Waikato Journal of Education";journal;"23820373, 11736135";"Wilf Malcolm Institute of Educational Research";Yes;Yes;0,290;Q3;11;10;53;425;64;47;1,50;42,50;68,75;0;New Zealand;Pacific Region;"Wilf Malcolm Institute of Educational Research";"2018-2023, 2025";"Education (Q3)";"Social Sciences" +17567;14618;"Zhendong yu Chongji/Journal of Vibration and Shock";journal;"10003835";"Chinese Vibration Engineering Society";No;No;0,290;Q3;41;810;2686;20137;3231;2686;1,17;24,86;29,14;0;China;Asiatic Region;"Chinese Vibration Engineering Society";"2001-2026";"Acoustics and Ultrasonics (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Physics and Astronomy" +17568;21100811140;"AIMS Biophysics";journal;"23779098";"American Institute of Mathematical Sciences";Yes;No;0,290;Q4;21;23;79;1654;130;74;1,74;71,91;36,71;0;United States;Northern America;"American Institute of Mathematical Sciences";"2014-2026";"Biochemistry (Q4); Biophysics (Q4); Molecular Biology (Q4); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +17569;27318;"Network: Computation in Neural Systems";journal;"0954898X, 13616536";"Taylor and Francis Ltd.";No;No;0,290;Q4;63;110;49;4572;101;48;2,00;41,56;32,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2026";"Neuroscience (miscellaneous) (Q4)";"Neuroscience" +17570;21100202722;"Annals of Anthropological Practice";book series;"21539588, 2153957X";"John Wiley and Sons Ltd";No;No;0,289;Q2;25;41;50;1691;53;50;0,68;41,24;47,22;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2025";"Anthropology (Q2)";"Social Sciences" +17571;21101038721;"Data Analysis and Knowledge Discovery";journal;"20963467";"Chinese Academy of Sciences";No;No;0,289;Q2;17;132;463;5083;537;463;1,34;38,51;40,75;0;China;Asiatic Region;"Chinese Academy of Sciences";"2019-2025";"Library and Information Sciences (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3); Information Systems (Q3)";"Computer Science; Social Sciences" +17572;21100870392;"Mechanics of Advanced Composite Structures";journal;"24234826, 24237043";"Semnan University, Faculty of Mechanical Engineering";Yes;Yes;0,289;Q2;11;49;108;1968;208;108;1,93;40,16;14,81;0;Iran;Middle East;"Semnan University, Faculty of Mechanical Engineering";"2018-2026";"Metals and Alloys (Q2); Ceramics and Composites (Q3); Mechanics of Materials (Q3); Polymers and Plastics (Q3); Biomaterials (Q4)";"Engineering; Materials Science" +17573;14000155883;"Revista Espanola de Linguistica Aplicada";journal;"22546774, 02132028";"John Benjamins Publishing Company";Yes;No;0,289;Q2;10;25;73;1377;59;73;0,84;55,08;68,29;0;Spain;Western Europe;"John Benjamins Publishing Company";"2009, 2014-2016, 2018-2025";"Linguistics and Language (Q2); Education (Q3); E-learning (Q3)";"Social Sciences" +17574;21100822804;"Scientia Agricultura Sinica";journal;"05781752";"Editorial Department of Scientia Agricultura Sinica";Yes;No;0,289;Q2;34;374;1144;16493;1527;1139;1,36;44,10;41,45;0;China;Asiatic Region;"Editorial Department of Scientia Agricultura Sinica";"2011, 2017-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2)";"Agricultural and Biological Sciences" +17575;21100818506;"Sprawozdania Archeologiczne";journal;"00813834";"Instytut Archeologii i Etnologii";Yes;Yes;0,289;Q2;10;40;119;2277;44;112;0,36;56,93;43,97;0;Poland;Eastern Europe;"Instytut Archeologii i Etnologii";"2016-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +17576;20860;"Acta Alimentaria";journal;"01393006, 15882535";"Akademiai Kiado";No;No;0,289;Q3;38;61;155;1577;278;154;2,24;25,85;46,01;0;Hungary;Eastern Europe;"Akademiai Kiado";"1973-1975, 1996-2026";"Food Science (Q3)";"Agricultural and Biological Sciences" +17577;13837;"Advances in Applied Mechanics";book series;"00652156";"Academic Press Inc.";No;No;0,289;Q3;43;22;31;1624;78;16;2,38;73,82;0,00;0;United States;Northern America;"Academic Press Inc.";"1948, 1951, 1953, 1956, 1958, 1960, 1962, 1964, 1966, 1971-1984, 1987-1989, 1991, 1993-1994, 1996-1998, 2001-2004, 2007, 2009-2010, 2012-2025";"Computational Mechanics (Q3); Mechanical Engineering (Q3)";"Engineering" +17578;21101342513;"Advances in Environmental and Engineering Research";journal;"27666190";"LIDSEN Publishing Inc";No;No;0,289;Q3;11;34;140;2040;224;137;2,11;60,00;33,82;0;United States;Northern America;"LIDSEN Publishing Inc";"2021-2026";"Ecology (Q3); Engineering (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3)";"Engineering; Environmental Science" +17579;19600161813;"Advances in Tribology";journal;"16875915, 16875923";"John Wiley and Sons Ltd";Yes;No;0,289;Q3;26;0;12;0;24;12;2,00;0,00;0,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2008-2021, 2023-2024";"Mechanical Engineering (Q3); Surfaces, Coatings and Films (Q3)";"Engineering; Materials Science" +17580;17616;"Agri";journal;"13000012, 24589446";"Turkish Society of Algology";Yes;No;0,289;Q3;28;45;145;726;132;121;0,78;16,13;45,75;0;Turkey;Middle East;"Turkish Society of Algology";"1993-2026";"Anesthesiology and Pain Medicine (Q3)";"Medicine" +17581;21101126637;"Anaesthesiologie";journal;"27316858, 27316866";"Springer Medizin";No;No;0,289;Q3;49;121;434;3576;351;315;0,84;29,55;31,45;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Anesthesiology and Pain Medicine (Q3)";"Medicine" +17582;21100932720;"Applied Environmental Research";journal;"22870741, 2287075X";"Environmental Research Institute, Chulalongkorn University";Yes;Yes;0,289;Q3;13;40;113;1848;148;113;1,22;46,20;31,18;0;Thailand;Asiatic Region;"Environmental Research Institute, Chulalongkorn University";"2019-2026";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +17583;34848;"Boletin Medico del Hospital Infantil de Mexico";journal;"16651146, 05396115";"Permanyer Publications";Yes;Yes;0,289;Q3;21;74;169;2740;151;160;0,74;37,03;48,79;0;Mexico;Latin America;"Permanyer Publications";"1946-1965, 1974-1998, 2005, 2010-2025";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +17584;21101329149;"BRICS Journal of Economics";journal;"27127702, 27127508";"Lomonosov Moscow State University";Yes;No;0,289;Q3;7;31;54;1525;87;53;1,61;49,19;30,91;1;Russian Federation;Eastern Europe;"Lomonosov Moscow State University";"2023-2025";"Economics and Econometrics (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +17585;29227;"Chinese Medical Sciences Journal";journal;"10019294";"Elsevier Ltd";No;No;0,289;Q3;28;33;120;1136;153;120;1,18;34,42;46,15;0;United Kingdom;Western Europe;"Elsevier Ltd";"1991-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +17586;21100814516;"Complementary Medicine Research";journal;"25042106, 25042092";"S. Karger AG";No;No;0,289;Q3;51;53;170;1856;204;158;1,11;35,02;48,41;0;Switzerland;Western Europe;"S. Karger AG";"2015, 2017-2026";"Complementary and Alternative Medicine (Q3)";"Medicine" +17587;21100899307;"Cyber-Physical Systems";journal;"23335785";"Taylor and Francis Ltd.";No;No;0,289;Q3;18;29;49;1040;85;49;2,06;35,86;25,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Computational Mechanics (Q3); Computer Graphics and Computer-Aided Design (Q3); Computer Networks and Communications (Q3); Computer Vision and Pattern Recognition (Q3); Control and Systems Engineering (Q3); Hardware and Architecture (Q3); Information Systems (Q3)";"Computer Science; Engineering" +17588;19700188258;"Earthquake and Structures";journal;"20927614, 20927622";"Techno-Press";No;No;0,289;Q3;49;68;233;2872;278;233;1,17;42,24;21,50;0;South Korea;Asiatic Region;"Techno-Press";"2010-2026";"Civil and Structural Engineering (Q3)";"Engineering" +17589;21100867459;"Educacion Matematica";journal;"24488089, 01878298";"Mexican Society for Research and Dissemination of Mathematics Education";No;Yes;0,289;Q3;8;24;118;636;63;108;0,49;26,50;62,00;0;Mexico;Latin America;"Mexican Society for Research and Dissemination of Mathematics Education";"2018-2025";"Education (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics; Social Sciences" +17590;21101126145;"Environmental Research and Technology";journal;"26368498";"Yildiz Technical University";No;No;0,289;Q3;9;85;134;4425;191;132;1,52;52,06;37,50;0;Turkey;Middle East;"Yildiz Technical University";"2018-2025";"Environmental Engineering (Q3); Pollution (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3)";"Environmental Science" +17591;21101061700;"Global Cardiology Science and Practice";journal;"23057823";"HBKU Press";Yes;Yes;0,289;Q3;30;56;99;1762;98;94;1,04;31,46;35,35;0;Qatar;Middle East;"HBKU Press";"2013-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +17592;19700175587;"Interdisciplinaria";journal;"03258203, 16687027";"Centro Interamericano de Investigaciones Psicologicas y Ciencias Afines";Yes;Yes;0,289;Q3;18;65;202;3777;163;202;0,61;58,11;50,27;0;Argentina;Latin America;"Centro Interamericano de Investigaciones Psicologicas y Ciencias Afines";"2009-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +17593;20000195025;"Jordan Journal of Mechanical and Industrial Engineering";journal;"19956665";"Hashemite University";Yes;No;0,289;Q3;29;65;204;3092;497;203;2,64;47,57;21,51;0;Jordan;Middle East;"Hashemite University";"2009-2025";"Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +17594;21100855906;"Journal of Membrane Science and Research";journal;"24765406";"Amirkabir University of Technology - Membrane Processes Research Laboratory";Yes;Yes;0,289;Q3;28;23;84;1759;128;82;1,48;76,48;38,89;0;Iran;Middle East;"Amirkabir University of Technology - Membrane Processes Research Laboratory";"2015-2025";"Materials Science (miscellaneous) (Q3); Surfaces, Coatings and Films (Q3); Filtration and Separation (Q4)";"Chemical Engineering; Materials Science" +17595;19316;"Lindbergia";journal;"01050761";"";Yes;No;0,289;Q3;21;12;34;1930;29;28;0,88;160,83;27,03;0;Norway;Western Europe;"";"1979, 1984, 1993-2008, 2010-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17596;21100899297;"Middle School Journal";journal;"00940771, 23276223";"Taylor and Francis Ltd.";No;No;0,289;Q3;25;24;80;567;72;62;0,93;23,63;66,00;0;United States;Northern America;"Taylor and Francis Ltd.";"1986, 1996-2026";"Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +17597;21101039062;"Organization, Technology and Management in Construction";journal;"18476228";"De Gruyter Open Ltd";Yes;No;0,289;Q3;13;16;51;1111;94;51;1,64;69,44;15,38;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2014, 2019-2025";"Building and Construction (Q3); Civil and Structural Engineering (Q3); Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Engineering" +17598;19700170815;"Paiguan Jixie Gongcheng Xuebao/Journal of Drainage and Irrigation Machinery Engineering";journal;"16748530";"Editorial Department of Journal of Drainage and Irrigation Machinery Engineering";No;No;0,289;Q3;26;160;501;3281;603;501;1,20;20,51;29,28;0;China;Asiatic Region;"Editorial Department of Journal of Drainage and Irrigation Machinery Engineering";"2010-2026";"Mechanical Engineering (Q3)";"Engineering" +17599;21101363746;"Pedagogical Research";journal;"24684929";"Modestum";No;No;0,289;Q3;5;27;85;1218;107;85;1,26;45,11;62,26;0;Serbia;Eastern Europe;"Modestum";"2023-2025";"Education (Q3)";"Social Sciences" +17600;21100838194;"Proceedings of the Institute of Mathematics and Mechanics";journal;"24094994, 24094986";"Institute of Mathematics and Mechanics, National Academy of Sciences of Azerbaijan";No;No;0,289;Q3;14;26;90;719;69;90;0,64;27,65;20,41;0;Azerbaijan;Eastern Europe;"Institute of Mathematics and Mechanics, National Academy of Sciences of Azerbaijan";"2017-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17601;21100220434;"Science of Gymnastics Journal";journal;"22322639, 18557171";"University of Ljubljana Press";Yes;Yes;0,289;Q3;16;35;114;1298;82;97;0,72;37,09;40,00;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2012-2025";"Education (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine; Social Sciences" +17602;26317;"Scottish Journal of Geology";journal;"00369276, 20414951";"Geological Society of London";No;No;0,289;Q3;27;5;32;266;27;32;0,91;53,20;0,00;0;United Kingdom;Western Europe;"Geological Society of London";"1965-2026";"Geology (Q3)";"Earth and Planetary Sciences" +17603;21100888810;"Studies in Business and Economics";journal;"23445416, 18424120";"De Gruyter Open Ltd.";Yes;Yes;0,289;Q3;18;60;182;2982;329;182;1,89;49,70;56,30;0;Poland;Eastern Europe;"De Gruyter Open Ltd.";"2018-2025";"Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Social Psychology (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Psychology" +17604;21101064905;"Vessel Plus";journal;"25741209";"OAE Publishing Inc.";No;No;0,289;Q3;17;25;141;2367;139;137;1,28;94,68;33,80;0;United States;Northern America;"OAE Publishing Inc.";"2017-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +17605;50120;"Waterbirds";journal;"15244695";"The Waterbird Society";No;No;0,289;Q3;55;32;107;1403;78;102;0,65;43,84;36,42;0;United States;Northern America;"The Waterbird Society";"1996-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +17606;21101274745;"Biomedical Engineering Communications";journal;"28159063";"TMR Publishing Group";No;No;0,289;Q4;5;27;48;1652;69;36;1,48;61,19;40,23;0;New Zealand;Pacific Region;"TMR Publishing Group";"2022-2026";"Biomedical Engineering (Q4)";"Engineering" +17607;21101150730;"Hospital Practice";journal;"21548331, 23771003";"Informa UK Ltd";No;No;0,289;Q4;33;44;120;1608;133;112;1,14;36,55;34,58;0;United Kingdom;Western Europe;"Informa UK Ltd";"1967, 1970, 1979-1980, 1982-1985, 1989, 1993, 1995-2000, 2009-2025";"Clinical Biochemistry (Q4); Health Information Management (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions" +17608;145061;"Healthcare Quarterly";journal;"17102774";"Longwoods Publishing Corp.";No;No;0,288;Q1;43;59;168;1226;105;146;0,47;20,78;69,57;0;Canada;Northern America;"Longwoods Publishing Corp.";"2004-2025";"Emergency Medical Services (Q1); Health Policy (Q3)";"Health Professions; Medicine" +17609;5700165149;"Journal of Architectural Conservation";journal;"23266384, 13556207";"Taylor and Francis Ltd.";No;No;0,288;Q1;24;7;39;273;52;37;1,42;39,00;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Conservation (Q1); Building and Construction (Q3)";"Arts and Humanities; Engineering" +17610;5700153989;"Semiotica";journal;"00371998, 16133692";"De Gruyter Mouton";Yes;Yes;0,288;Q1;47;57;180;2801;230;179;1,58;49,14;40,58;0;Germany;Western Europe;"De Gruyter Mouton";"1969-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +17611;21100857559;"BRICS Law Journal";journal;"24122343, 24099058";"University of Tyumen";Yes;Yes;0,288;Q2;10;21;88;389;59;85;0,71;18,52;45,00;0;Russian Federation;Eastern Europe;"University of Tyumen";"2017-2025";"Law (Q2)";"Social Sciences" +17612;21100381612;"Ciudad y Territorio Estudios Territoriales";journal;"11334762, 26593254";"Ministerio de Fomento";Yes;No;0,288;Q2;13;87;203;3157;138;194;0,68;36,29;38,24;0;Spain;Western Europe;"Ministerio de Fomento";"2014-2025";"Urban Studies (Q2); Geography, Planning and Development (Q3)";"Social Sciences" +17613;21100871688;"Contemporary Chinese Political Economy and Strategic Relations";journal;"24109681";"Institute of China and Asia-Pacific Studies - National Sun Yat-sen University";Yes;Yes;0,288;Q2;9;2;43;100;16;40;0,29;50,00;83,33;0;Taiwan;Asiatic Region;"Institute of China and Asia-Pacific Studies - National Sun Yat-sen University";"2015-2025";"Political Science and International Relations (Q2); Economics and Econometrics (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +17614;21101154816;"Cuadernos de Derecho Local";journal;"16960955";"Fundacion Democracia y Gobierno Local";No;No;0,288;Q2;5;40;114;1180;29;94;0,28;29,50;38,10;0;Spain;Western Europe;"Fundacion Democracia y Gobierno Local";"2019-2025";"Law (Q2); Public Administration (Q3)";"Social Sciences" +17615;15561;"Demokratizatsiya";journal;"10746846";"Institute for European Russian and Eurasian Studies, The George Washington University";No;No;0,288;Q2;34;5;66;445;59;63;0,74;89,00;11,11;0;United States;Northern America;"Institute for European Russian and Eurasian Studies, The George Washington University";"1996-2025";"Political Science and International Relations (Q2); Geography, Planning and Development (Q3)";"Social Sciences" +17616;21100856607;"Diritto Pubblico Comparato ed Europeo";journal;"17204313, 26122219";"Societa Editrice Il Mulino";No;No;0,288;Q2;6;18;119;1253;28;109;0,25;69,61;35,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2017-2025";"Law (Q2)";"Social Sciences" +17617;21100790079;"Journal of Agricultural Extension";journal;"24086851, 1119944X";"Agricultural Extension Society of Nigeria";Yes;No;0,288;Q2;14;44;141;1076;191;141;1,30;24,45;37,08;0;Nigeria;Africa;"Agricultural Extension Society of Nigeria";"2016-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Development (Q3); Education (Q3)";"Agricultural and Biological Sciences; Social Sciences" +17618;21101090700;"Journal of Higher Education Policy and Leadership Studies";journal;"27171426";"";Yes;Yes;0,288;Q2;11;45;134;1893;143;110;0,78;42,07;58,43;0;Iran;Middle East;"";"2020-2025";"Social Sciences (miscellaneous) (Q2); Education (Q3); Public Administration (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +17619;13355;"Journal of Technical Writing and Communication";journal;"15413780, 00472816";"SAGE Publications Inc.";No;No;0,288;Q2;32;22;59;1396;107;56;1,60;63,45;50,00;0;United States;Northern America;"SAGE Publications Inc.";"1971-1986, 1989, 1996-2026";"Communication (Q2); Education (Q3)";"Social Sciences" +17620;26800;"Pomorstvo";journal;"13320718";"University of Rijeka, Faculty of Maritime Studies Rijeka";Yes;Yes;0,288;Q2;18;25;90;1231;145;90;1,51;49,24;17,39;1;Croatia;Eastern Europe;"University of Rijeka, Faculty of Maritime Studies Rijeka";"2001-2026";"Social Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q3); Geography, Planning and Development (Q3); Ocean Engineering (Q3)";"Engineering; Social Sciences" +17621;18300156724;"Psychology of Language and Communication";journal;"12342238";"University of Warsaw, Faculty of Psychology";Yes;Yes;0,288;Q2;18;0;51;0;67;50;1,37;0,00;0,00;0;Poland;Eastern Europe;"University of Warsaw, Faculty of Psychology";"2008-2024";"Communication (Q2); Linguistics and Language (Q2); Developmental and Educational Psychology (Q3); Experimental and Cognitive Psychology (Q4)";"Psychology; Social Sciences" +17622;28950;"Contributions to Geophysics and Geodesy";journal;"13380540, 13352806";"Slovak Academy of Sciences";Yes;Yes;0,288;Q3;22;25;66;1176;113;66;1,86;47,04;23,44;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences";"1992, 2000-2025";"Geophysics (Q3)";"Earth and Planetary Sciences" +17623;19700190353;"Dermatology Reports";journal;"20367392, 20367406";"Page Press Publications";Yes;No;0,288;Q3;21;100;247;1746;217;208;0,79;17,46;51,29;0;Italy;Western Europe;"Page Press Publications";"2010-2026";"Dermatology (Q3)";"Medicine" +17624;13504;"Diagnostica";journal;"2190622X, 00121924";"Hogrefe Verlag GmbH & Co. KG";No;No;0,288;Q3;63;14;56;652;52;54;0,75;46,57;68,42;0;Germany;Western Europe;"Hogrefe Verlag GmbH & Co. KG";"1996-2025";"Clinical Psychology (Q3)";"Psychology" +17625;16406;"Geologiya Nefti i Gaza";journal;"00167894, 25878263";"All-Russian Research Geological Oil Institute (VNIGNI)";No;No;0,288;Q3;10;41;130;828;63;130;0,63;20,20;39,72;0;Russian Federation;Eastern Europe;"All-Russian Research Geological Oil Institute (VNIGNI)";"1968, 1976-1987, 2005-2007, 2020-2025";"Ecology (Q3); Geochemistry and Petrology (Q3); Geology (Q3); Geophysics (Q3)";"Earth and Planetary Sciences; Environmental Science" +17626;19919;"Giornale Italiano di Nefrologia";journal;"03935590, 17245990";"Italian Society of Nephrology";No;No;0,288;Q3;17;71;290;1691;235;254;0,30;23,82;53,27;0;Italy;Western Europe;"Italian Society of Nephrology";"1988-1999, 2002-2025";"Medicine (miscellaneous) (Q3); Nephrology (Q3)";"Medicine" +17627;19700174752;"Gospodarka Surowcami Mineralnymi / Mineral Resources Management";journal;"08600953";"Polish Academy of Sciences, Institute for Mineral Resources and Energy";No;No;0,288;Q3;26;40;126;1864;156;126;1,07;46,60;34,48;0;Poland;Eastern Europe;"Polish Academy of Sciences, Institute for Mineral Resources and Energy";"2008-2025";"Economic Geology (Q3)";"Earth and Planetary Sciences" +17628;100766;"Indian Phytopathology";journal;"0367973X, 22489800";"Springer";No;No;0,288;Q3;24;111;383;3893;424;375;1,16;35,07;35,69;0;India;Asiatic Region;"Springer";"1987-1988, 2016-2026";"Agronomy and Crop Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17629;19700201527;"IPSJ Transactions on Bioinformatics";journal;"18826679";"Information Processing Society of Japan";No;No;0,288;Q3;5;6;17;300;6;17;0,46;50,00;31,58;0;Japan;Asiatic Region;"Information Processing Society of Japan";"2008-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Computer Science Applications (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science" +17630;27765;"Journal of Forensic Identification";journal;"0895173X";"International Association for Identification";No;No;0,288;Q3;34;23;61;207;23;56;0,36;9,00;43,59;0;United States;Northern America;"International Association for Identification";"1996-2025";"Pathology and Forensic Medicine (Q3)";"Medicine" +17631;21101136421;"Journal of the International Council for Small Business";journal;"26437015, 26437023";"Routledge";No;No;0,288;Q3;15;140;102;7929;271;101;3,42;56,64;36,18;2;United Kingdom;Western Europe;"Routledge";"2020-2026";"Accounting (Q3); Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting" +17632;12600154731;"Macromolecular Reaction Engineering";journal;"18628338, 1862832X";"Wiley-VCH Verlag";No;No;0,288;Q3;41;35;111;1329;190;108;1,49;37,97;33,63;0;Germany;Western Europe;"Wiley-VCH Verlag";"2008-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Polymers and Plastics (Q3)";"Chemical Engineering; Chemistry; Materials Science" +17633;21100857165;"Margin";journal;"09738029, 00252921";"SAGE Publications Ltd";No;No;0,288;Q3;23;10;39;265;26;38;0,64;26,50;30,43;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2025";"Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance; Social Sciences" +17634;17969;"Neurology India";journal;"19984022, 00283886";"Wolters Kluwer Medknow Publications";Yes;No;0,288;Q3;61;315;1431;4645;773;902;0,41;14,75;31,50;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1965-1979, 1981-1984, 1986-1988, 1994-2026";"Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +17635;19700175072;"Open Biomedical Engineering Journal";journal;"18741207";"Bentham Science Publishers";Yes;No;0,288;Q3;29;6;36;389;81;34;2,42;64,83;40,74;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2009-2025";"Medicine (miscellaneous) (Q3); Bioengineering (Q4); Biomedical Engineering (Q4)";"Chemical Engineering; Engineering; Medicine" +17636;21101141440;"Psychotherapie";journal;"27317161, 2731717X";"Springer Medizin";No;No;0,288;Q3;26;61;183;1887;148;162;0,70;30,93;59,83;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Clinical Psychology (Q3)";"Psychology" +17637;26287;"Publicationes Mathematicae Debrecen";journal;"00333883, 20642849";"Institute of Mathematics, University of Debrecen";No;No;0,288;Q3;43;45;185;887;88;184;0,50;19,71;32,43;0;Hungary;Eastern Europe;"Institute of Mathematics, University of Debrecen";"1954, 1997-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17638;21101038702;"Radioelectronic and Computer Systems";journal;"26632012, 18144225";"National Aerospace University Kharkiv Aviation Institute";Yes;No;0,288;Q3;16;73;198;2343;292;198;1,65;32,10;25,11;0;Ukraine;Eastern Europe;"National Aerospace University Kharkiv Aviation Institute";"2019-2025";"Computer Graphics and Computer-Aided Design (Q3); Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3); Information Systems (Q3); Software (Q3)";"Computer Science; Engineering" +17639;21100856516;"Region";journal;"24095370";"European Regional Science Association";Yes;Yes;0,288;Q3;16;7;52;306;62;50;1,21;43,71;41,67;0;Belgium;Western Europe;"European Regional Science Association";"2014-2025";"Economics and Econometrics (Q3); Geography, Planning and Development (Q3)";"Economics, Econometrics and Finance; Social Sciences" +17640;21100464776;"Statistics, Optimization and Information Computing";journal;"23105070, 2311004X";"International Academic Press";Yes;No;0,288;Q3;24;396;269;14698;450;269;1,63;37,12;31,33;0;Hong Kong;Asiatic Region;"International Academic Press";"2013-2026";"Artificial Intelligence (Q3); Computer Vision and Pattern Recognition (Q3); Control and Optimization (Q3); Information Systems (Q3); Signal Processing (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Computer Science; Decision Sciences; Mathematics" +17641;21100386483;"Ufa Mathematical Journal";journal;"23040122";"Institute of Mathematics with Computing Centre";No;No;0,288;Q3;12;17;114;424;65;114;0,68;24,94;16,67;0;Russian Federation;Eastern Europe;"Institute of Mathematics with Computing Centre";"2014-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17642;19942;"Verhaltenstherapie";journal;"14230402, 10166262";"S. Karger AG";No;No;0,288;Q3;29;32;69;1444;81;60;0,42;45,13;53,95;0;Switzerland;Western Europe;"S. Karger AG";"1991-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +17643;21100785520;"Zhournal Novoi Ekonomicheskoi Associacii /Journal of the New Economic Association";journal;"22212264";"New Economic Association";No;No;0,288;Q3;14;65;181;2116;144;181;0,84;32,55;45,36;1;Russian Federation;Eastern Europe;"New Economic Association";"2016-2025";"Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +17644;5100155028;"Acta Endocrinologica";journal;"1843066X, 18410987";"Acta Endocrinologica Foundation";Yes;No;0,288;Q4;24;6;262;132;217;226;0,61;22,00;41,18;0;Romania;Eastern Europe;"Acta Endocrinologica Foundation";"2005, 2008-2025";"Endocrine and Autonomic Systems (Q4); Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +17645;21100242263;"Revista Brasileira de Meteorologia";journal;"19824351, 01027786";"Sociedade Brasileira de Meteorologia";Yes;No;0,288;Q4;23;17;81;798;100;81;1,20;46,94;31,58;1;Brazil;Latin America;"Sociedade Brasileira de Meteorologia";"2013-2025";"Atmospheric Science (Q4)";"Earth and Planetary Sciences" +17646;21100201053;"Clinical Ethics";journal;"1758101X, 14777509";"SAGE Publications Ltd";No;No;0,287;Q1;25;31;174;1272;210;153;1,23;41,03;50,00;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2006-2025";"Philosophy (Q1); Issues, Ethics and Legal Aspects (Q3); Medicine (miscellaneous) (Q3)";"Arts and Humanities; Medicine; Nursing" +17647;21100792726;"Dialogo Andino";journal;"07192681, 07162278";"Universidad de Tarapaca";Yes;Yes;0,287;Q1;15;14;181;741;98;173;0,39;52,93;25,00;0;Chile;Latin America;"Universidad de Tarapaca";"2016-2025";"Cultural Studies (Q1); History (Q1); Anthropology (Q2)";"Arts and Humanities; Social Sciences" +17648;21101017385;"International Journal of Latin American Religions";journal;"25099965";"Springer Nature";No;No;0,287;Q1;10;45;94;2133;55;89;0,61;47,40;35,48;1;United States;Northern America;"Springer Nature";"2017-2026";"History (Q1); Religious Studies (Q1); Anthropology (Q2); Social Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +17649;21100258752;"International Journal of Organizational Diversity";journal;"23286261, 23286229";"Common Ground Research Networks";No;No;0,287;Q1;6;12;34;638;44;34;1,48;53,17;47,83;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Cultural Studies (Q1); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Social Sciences" +17650;21100455415;"Regional Statistics";journal;"20648243, 20639538";"Hungarian Central Statistical Office";No;No;0,287;Q1;22;44;128;2319;194;128;1,36;52,70;33,61;0;Hungary;Eastern Europe;"Hungarian Central Statistical Office";"2015-2026";"Cultural Studies (Q1); Economics and Econometrics (Q3); Geography, Planning and Development (Q3); Public Administration (Q3); Statistics and Probability (Q3)";"Economics, Econometrics and Finance; Mathematics; Social Sciences" +17651;5600154142;"Asian Journal of Political Science";journal;"02185377, 17507812";"Routledge";No;No;0,287;Q2;25;50;55;3151;85;53;1,25;63,02;40,78;1;United Kingdom;Western Europe;"Routledge";"1993-2026";"Political Science and International Relations (Q2); Sociology and Political Science (Q3)";"Social Sciences" +17652;21101151825;"Iranian Journal of Science";journal;"27318095, 27318109";"Springer Science and Business Media Deutschland GmbH";No;No;0,287;Q2;13;204;305;7730;504;305;1,65;37,89;28,03;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2023-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Chemistry; Earth and Planetary Sciences; Mathematics; Physics and Astronomy" +17653;4700152223;"Journal of Agriculture and Rural Development in the Tropics and Subtropics";journal;"16129830";"Kassel University Press GmbH";Yes;Yes;0,287;Q2;26;15;43;703;61;43;0,82;46,87;45,28;0;Germany;Western Europe;"Kassel University Press GmbH";"2002-2026";"Forestry (Q2); Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Development (Q3); Geography, Planning and Development (Q3)";"Agricultural and Biological Sciences; Social Sciences" +17654;21101125144;"Journal of Chinese Agricultural Mechanization";journal;"20955553";"Journal of Chinese Agricultural Mechanization Editorial Office";No;No;0,287;Q2;18;546;1371;10573;1527;1371;1,13;19,36;33,32;0;China;Asiatic Region;"Journal of Chinese Agricultural Mechanization Editorial Office";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Mechanical Engineering (Q3)";"Agricultural and Biological Sciences; Engineering" +17655;21100868095;"Journal of Content, Community and Communication";journal;"23957514, 24569011";"Amity University Haryana";No;No;0,287;Q2;21;23;100;1125;199;96;1,40;48,91;57,45;0;India;Asiatic Region;"Amity University Haryana";"2015-2025";"Communication (Q2)";"Social Sciences" +17656;21100448060;"Journal of Wetland Archaeology";journal;"14732971, 20516231";"Taylor and Francis Ltd.";No;No;0,287;Q2;9;3;12;203;18;11;0,25;67,67;25,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013, 2015-2023, 2025-2026";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +17657;19900193617;"Proceedings of the National Academy of Sciences India Section B - Biological Sciences";journal;"03698211, 22501746";"Springer";No;No;0,287;Q2;39;124;322;3392;474;322;1,34;27,35;37,85;0;India;Asiatic Region;"Springer";"2008-2026";"Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17658;21100887616;"Science and Technology of Archaeological Research";journal;"20548923";"Routledge";Yes;No;0,287;Q2;21;8;13;451;15;13;1,36;56,38;47,83;0;United Kingdom;Western Europe;"Routledge";"2015-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +17659;19200156903;"Acta Botanica Mexicana";journal;"24487589, 01877151";"Instituto de Ecologia, A.C.";Yes;Yes;0,287;Q3;22;52;168;2906;160;166;0,94;55,88;30,99;0;Mexico;Latin America;"Instituto de Ecologia, A.C.";"2008-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17660;26937;"Acta Physica Polonica B";journal;"15095770, 05874254";"Jagiellonian University";Yes;No;0,287;Q3;69;120;132;3883;99;131;0,67;32,36;35,19;0;Poland;Eastern Europe;"Jagiellonian University";"1980, 1988, 1995-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +17661;16190;"Applied Engineering in Agriculture";journal;"19437838, 08838542";"American Society of Agricultural and Biological Engineers";No;No;0,287;Q3;69;66;215;2181;312;215;1,44;33,05;23,84;0;United States;Northern America;"American Society of Agricultural and Biological Engineers";"1985-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +17662;21100945774;"Basrah Journal of Agricultural Sciences";journal;"18145868, 25200860";"University of Basrah, College of Agriculture";Yes;No;0,287;Q3;12;106;144;3694;283;144;2,14;34,85;37,61;0;Iraq;Middle East;"University of Basrah, College of Agriculture";"2019-2025";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Horticulture (Q3); Pollution (Q3); Biochemistry (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +17663;16311;"Critical Reviews in Biomedical Engineering";journal;"0278940X, 1943619X";"Begell House Inc.";No;No;0,287;Q3;61;32;64;1446;107;62;1,38;45,19;30,85;0;United States;Northern America;"Begell House Inc.";"1981-2025";"Medicine (miscellaneous) (Q3); Biomedical Engineering (Q4)";"Engineering; Medicine" +17664;19900192340;"Cuadernos de Psicologia del Deporte";journal;"15788423, 19895879";"Universidad de Murcia Servicio de Publicaciones";Yes;No;0,287;Q3;29;35;181;1783;173;180;0,88;50,94;29,69;0;Spain;Western Europe;"Universidad de Murcia Servicio de Publicaciones";"2011-2025";"Applied Psychology (Q3)";"Psychology" +17665;22886;"Developing World Bioethics";journal;"14718731, 14718847";"Wiley-Blackwell Publishing Ltd";No;No;0,287;Q3;38;49;120;1143;126;98;1,10;23,33;49,47;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2001-2026";"Health Policy (Q3); Health (social science) (Q3); Issues, Ethics and Legal Aspects (Q3)";"Medicine; Nursing; Social Sciences" +17666;22624;"Geochemistry International";journal;"00167029, 15561968";"Pleiades Publishing";No;No;0,287;Q3;39;77;290;4180;239;290;0,84;54,29;41,73;0;United States;Northern America;"Pleiades Publishing";"1977-1978, 1980-2026";"Geochemistry and Petrology (Q3); Geophysics (Q3)";"Earth and Planetary Sciences" +17667;12889;"Huozhayao Xuebao/Chinese Journal of Explosives and Propellants";journal;"10077812";"China Ordnance Industry Corporation";No;No;0,287;Q3;28;125;349;4144;437;348;1,24;33,15;29,62;0;China;Asiatic Region;"China Ordnance Industry Corporation";"2001-2005, 2008-2025";"Chemical Engineering (miscellaneous) (Q3); Fuel Technology (Q3)";"Chemical Engineering; Energy" +17668;21101042014;"Ilmu Kelautan: Indonesian Journal of Marine Sciences";journal;"24067598, 08537291";"Diponegoro University";Yes;No;0,287;Q3;11;30;126;1499;199;126;1,65;49,97;33,62;0;Indonesia;Asiatic Region;"Diponegoro University";"2019-2025";"Aquatic Science (Q3); Ecology (Q3); Oceanography (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +17669;21100223536;"Indonesian Journal of Chemistry";journal;"14119420, 24601578";"Gadjah Mada University";Yes;No;0,287;Q3;31;144;443;6590;783;440;1,59;45,76;43,64;0;Indonesia;Asiatic Region;"Gadjah Mada University";"2010, 2012-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +17670;21101321963;"International Journal for Global Academic and Scientific Research";journal;"25833081";"International Consortium of Academic Professionals for Scientific Research";No;No;0,287;Q3;19;17;55;630;254;55;4,69;37,06;46,67;0;India;Asiatic Region;"International Consortium of Academic Professionals for Scientific Research";"2022-2025";"Artificial Intelligence (Q3); Computational Theory and Mathematics (Q3); Mathematics (miscellaneous) (Q3)";"Computer Science; Mathematics" +17671;22434;"International Journal of Clinical Pharmacology and Therapeutics";journal;"09461965";"Dustri-Verlag Dr. Karl Feistle";No;No;0,287;Q3;76;80;219;1967;192;202;0,89;24,59;46,78;0;Germany;Western Europe;"Dustri-Verlag Dr. Karl Feistle";"1994-2026";"Pharmacology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +17672;21100903414;"International Journal of Energy Production and Management";journal;"20563280, 20563272";"International Information and Engineering Technology Association";Yes;No;0,287;Q3;16;30;88;1373;151;88;2,02;45,77;33,33;0;Canada;Northern America;"International Information and Engineering Technology Association";"2016-2025";"Energy Engineering and Power Technology (Q3); Sociology and Political Science (Q3); Global and Planetary Change (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Environmental Science; Social Sciences" +17673;18000156701;"International Journal of Pharmaceutical and Healthcare Marketing";journal;"17506123";"Emerald Group Publishing Ltd.";No;No;0,287;Q3;33;113;99;9492;251;99;2,52;84,00;37,05;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007-2026";"Health Policy (Q3); Marketing (Q3)";"Business, Management and Accounting; Medicine" +17674;19700176038;"Iranian Journal of Psychiatry and Behavioral Sciences";journal;"17358639, 17359287";"Brieflands";No;No;0,287;Q3;30;91;238;2937;219;225;0,89;32,27;56,34;0;Netherlands;Western Europe;"Brieflands";"2007-2026";"Psychiatry and Mental Health (Q3); Behavioral Neuroscience (Q4); Biological Psychiatry (Q4)";"Medicine; Neuroscience" +17675;21101277888;"Jambura Journal of Biomathematics";journal;"27230317";"Universitas Negeri Gorontalo";No;No;0,287;Q3;7;34;44;1206;81;44;2,18;35,47;37,66;0;Indonesia;Asiatic Region;"Universitas Negeri Gorontalo";"2020-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Computational Mathematics (Q3); Mathematics (miscellaneous) (Q3); Health Informatics (Q4)";"Biochemistry, Genetics and Molecular Biology; Mathematics; Medicine" +17676;28972;"Journal of East-West Business";journal;"10669868, 15286959";"Routledge";No;No;0,287;Q3;24;21;52;1830;88;52;1,63;87,14;45,83;0;United States;Northern America;"Routledge";"1994-2026";"Business and International Management (Q3); Development (Q3); Geography, Planning and Development (Q3)";"Business, Management and Accounting; Social Sciences" +17677;21101250391;"Mathematical Sciences and Applications E-Notes";journal;"21476268";"";No;No;0,287;Q3;8;20;60;472;48;60;0,90;23,60;38,71;0;Turkey;Middle East;"";"2020-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17678;29675;"Meditsina Truda I Promyshlennaya Ekologiya";journal;"26188945, 10269428";"Izmerov Research Institute of Occupational Medicine";No;No;0,287;Q3;14;98;290;2544;192;288;0,59;25,96;65,59;0;Russian Federation;Eastern Europe;"Izmerov Research Institute of Occupational Medicine";"1965-2016, 2019-2026";"Chemical Health and Safety (Q3); Industrial and Manufacturing Engineering (Q3); Public Health, Environmental and Occupational Health (Q3); Safety, Risk, Reliability and Quality (Q3)";"Chemical Engineering; Engineering; Medicine" +17679;21781;"Metroeconomica";journal;"00261386, 1467999X";"John Wiley & Sons Inc.";No;No;0,287;Q3;40;45;107;2184;109;105;0,94;48,53;14,10;1;United States;Northern America;"John Wiley & Sons Inc.";"1949-1986, 1988-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +17680;29879;"New Zealand Geographer";journal;"17457939, 00288144";"Wiley-Blackwell";No;No;0,287;Q3;33;13;62;497;88;46;1,49;38,23;47,83;0;United States;Northern America;"Wiley-Blackwell";"1945-1967, 1969-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +17681;18706;"Psychiatrische Praxis";journal;"03034259, 14390876";"Georg Thieme Verlag";No;No;0,287;Q3;38;59;305;871;182;220;0,61;14,76;57,74;0;Germany;Western Europe;"Georg Thieme Verlag";"1974-2026";"Psychiatry and Mental Health (Q3)";"Medicine" +17682;17701;"Qatar Medical Journal";journal;"22270426, 02538253";"HBKU Press";Yes;Yes;0,287;Q3;19;124;175;3626;153;167;0,88;29,24;36,30;0;Qatar;Middle East;"HBKU Press";"2000-2017, 2019-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +17683;21100979315;"Recent Advances in Computer Science and Communications";journal;"26662558, 26662566";"Bentham Science Publishers";No;No;0,287;Q3;23;69;251;3693;427;235;2,31;53,52;32,34;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2020-2026";"Computer Science (miscellaneous) (Q3)";"Computer Science" +17684;16159;"Review of Derivatives Research";journal;"13806645, 15737144";"Springer New York";No;No;0,287;Q3;30;14;27;513;32;27;1,33;36,64;31,03;0;United States;Northern America;"Springer New York";"1996, 1998-2000, 2002-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +17685;19700182346;"Revista Brasileira de Paleontologia";journal;"15197530, 22361715";"Sociedade Brasileira de Paleontologia";Yes;No;0,287;Q3;25;14;69;879;46;69;0,64;62,79;46,15;0;Brazil;Latin America;"Sociedade Brasileira de Paleontologia";"2010-2025";"Paleontology (Q3)";"Earth and Planetary Sciences" +17686;17288;"Sydowia";journal;"00820598";"Verlag Ferdinand Berger und Sohne GmbH";No;No;0,287;Q3;37;0;71;0;91;71;1,11;0,00;0,00;0;Austria;Western Europe;"Verlag Ferdinand Berger und Sohne GmbH";"1996-2024";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17687;21101134738;"Clinical Immunology Communications";journal;"27726134";"Elsevier Inc.";Yes;No;0,287;Q4;7;26;72;1901;68;71;0,90;73,12;47,29;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +17688;4700152718;"Adoption Quarterly";journal;"10926755, 1544452X";"Routledge";No;No;0,286;Q2;40;48;59;2888;65;58;1,14;60,17;77,04;1;United States;Northern America;"Routledge";"1997-2026";"Demography (Q2); Law (Q2); Sociology and Political Science (Q3)";"Social Sciences" +17689;4700152782;"College and Undergraduate Libraries";journal;"10691316, 15452530";"Routledge";No;No;0,286;Q2;26;5;30;187;33;29;1,36;37,40;50,00;0;United States;Northern America;"Routledge";"1994-2004, 2006-2026";"Library and Information Sciences (Q2); Education (Q3); E-learning (Q3)";"Social Sciences" +17690;28348;"Gastroenterology Nursing";journal;"1042895X, 15389766";"Lippincott Williams and Wilkins Ltd.";No;No;0,286;Q2;40;68;201;1262;168;186;0,75;18,56;66,35;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1989-2026";"Advanced and Specialized Nursing (Q2); Gastroenterology (Q3); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +17691;21100897522;"i-com";journal;"21966826, 1618162X";"De Gruyter Oldenbourg";Yes;No;0,286;Q2;18;38;76;2690;154;66;2,00;70,79;29,13;0;Germany;Western Europe;"De Gruyter Oldenbourg";"2001-2026";"Communication (Q2); Business, Management and Accounting (miscellaneous) (Q3); Computer Networks and Communications (Q3); Information Systems (Q3); Human-Computer Interaction (Q4); Social Psychology (Q4)";"Business, Management and Accounting; Computer Science; Psychology; Social Sciences" +17692;21101081508;"Przeglad Socjologii Jakosciowej";journal;"17338069";"Lodz University Press";Yes;Yes;0,286;Q2;6;28;101;1193;52;98;0,51;42,61;57,14;0;Poland;Eastern Europe;"Lodz University Press";"2019-2025";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +17693;145628;"Word";journal;"00437956, 23735112";"Taylor and Francis Ltd.";No;No;0,286;Q2;14;12;43;511;42;42;1,04;42,58;56,00;0;United States;Northern America;"Taylor and Francis Ltd.";"1956, 1985, 1989, 1992-1994, 1998-2009, 2015-2025";"Linguistics and Language (Q2)";"Social Sciences" +17694;21100198457;"ACM Communications in Computer Algebra";journal;"19322232, 19322240";"Association for Computing Machinery";No;No;0,286;Q3;13;25;29;291;13;29;0,45;11,64;6,67;0;United States;Northern America;"Association for Computing Machinery";"2011-2025";"Computational Mathematics (Q3); Computational Theory and Mathematics (Q3)";"Computer Science; Mathematics" +17695;12213;"ACM Transactions on Computer Systems";journal;"07342071, 15577333";"Association for Computing Machinery";No;No;0,286;Q3;79;15;16;1260;31;15;2,21;84,00;19,12;0;United States;Northern America;"Association for Computing Machinery";"1983-2025";"Computer Science (miscellaneous) (Q3)";"Computer Science" +17696;21101249909;"Annals of Mathematical Sciences and Applications";journal;"23802898, 2380288X";"International Press, Inc.";No;No;0,286;Q3;6;28;57;709;31;56;0,53;25,32;26,79;0;United States;Northern America;"International Press, Inc.";"2020-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17697;21101021988;"Applied Science and Convergence Technology";journal;"22886559";"Korean Vacuum Society";No;No;0,286;Q3;14;39;120;1237;157;120;1,29;31,72;26,17;0;South Korea;Asiatic Region;"Korean Vacuum Society";"2019-2026";"Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Materials Science (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +17698;21101181857;"Drug Metabolism and Bioanalysis Letters";journal;"29496810, 29496829";"Bentham Science Publishers";No;No;0,286;Q3;36;24;46;1973;69;42;1,37;82,21;36,90;0;Netherlands;Western Europe;"Bentham Science Publishers";"2022-2025";"Biochemistry (medical) (Q3); Pharmaceutical Science (Q3); Pharmacology (medical) (Q3); Clinical Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +17699;21100224449;"Eco.mont";journal;"20731558, 2073106X";"Verlag der Oesterreichischen Akademie der Wissenschaften";Yes;No;0,286;Q3;15;12;47;430;44;42;0,91;35,83;28,95;0;Austria;Western Europe;"Verlag der Oesterreichischen Akademie der Wissenschaften";"2009-2025";"Ecology (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3)";"Environmental Science" +17700;19700201415;"Environmental Control in Biology";journal;"18830986, 1880554X";"Japanese Society of Agricultural, Biological and Environmental Engineers and Scientists (JASBEES)";No;No;0,286;Q3;25;12;51;328;47;50;0,84;27,33;25,64;0;Japan;Asiatic Region;"Japanese Society of Agricultural, Biological and Environmental Engineers and Scientists (JASBEES)";"2005-2025";"Agronomy and Crop Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17701;21100851236;"Green Materials";journal;"20491220, 20491239";"ICE Publishing";No;No;0,286;Q3;28;42;97;2087;148;86;1,55;49,69;33,33;0;United Kingdom;Western Europe;"ICE Publishing";"2013-2025";"Materials Chemistry (Q3); Pollution (Q3); Polymers and Plastics (Q3)";"Environmental Science; Materials Science" +17702;21100985663;"International Journal of Computer Network and Information Security";journal;"20749104, 20749090";"Modern Education and Computer Science Press";Yes;No;0,286;Q3;22;36;147;1125;259;147;1,38;31,25;36,00;0;China;Asiatic Region;"Modern Education and Computer Science Press";"2019-2026";"Applied Mathematics (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Information Systems (Q3); Safety Research (Q3); Software (Q3)";"Computer Science; Mathematics; Social Sciences" +17703;21100464917;"Journal of Computational Finance";journal;"14601559, 17552850";"Incisive Media Ltd.";No;No;0,286;Q3;17;6;40;213;21;40;0,62;35,50;11,76;0;United Kingdom;Western Europe;"Incisive Media Ltd.";"2011-2025";"Applied Mathematics (Q3); Computer Science Applications (Q3); Finance (Q3)";"Computer Science; Economics, Econometrics and Finance; Mathematics" +17704;21100979353;"Journal of Degraded and Mining Lands Management";journal;"25022458, 2339076X";"Brawijaya University";Yes;No;0,286;Q3;14;136;321;6078;443;321;1,42;44,69;35,04;0;Indonesia;Asiatic Region;"Brawijaya University";"2019-2026";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Pollution (Q3)";"Environmental Science; Social Sciences" +17705;21101166946;"Journal of Engineering and Sustainable Development";journal;"25200917, 25200925";"Mustansiriyah University College of Engineering";Yes;No;0,286;Q3;11;90;192;3183;348;192;1,97;35,37;29,46;0;Iraq;Middle East;"Mustansiriyah University College of Engineering";"2019-2026";"Civil and Structural Engineering (Q3); Electrical and Electronic Engineering (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Engineering" +17706;21100787088;"Journal of Fisheries of China";journal;"10000615";"Shanghai Ocean University";Yes;No;0,286;Q3;19;182;617;8933;689;617;1,16;49,08;35,83;0;China;Asiatic Region;"Shanghai Ocean University";"2016-2026";"Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Management, Monitoring, Policy and Law (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17707;21100871297;"Journal of Theoretical and Computational Acoustics";journal;"25917811, 25917285";"World Scientific";No;No;0,286;Q3;46;30;93;1107;114;91;0,98;36,90;16,47;0;Singapore;Asiatic Region;"World Scientific";"2018-2026";"Acoustics and Ultrasonics (Q3); Applied Mathematics (Q3); Computer Science Applications (Q3)";"Computer Science; Mathematics; Physics and Astronomy" +17708;73382;"Landbauforschung";journal;"21943605, 27008711";"Julius Kuhn-Institut Federal Research Center for Cultivated Plants";Yes;Yes;0,286;Q3;28;4;8;129;8;7;1,00;32,25;33,33;0;Germany;Western Europe;"Julius Kuhn-Institut Federal Research Center for Cultivated Plants";"1977-1978, 1980-1982, 1987, 1989, 1996-2021, 2023, 2025";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +17709;13900154710;"Latin American Journal of Solids and Structures";journal;"16797825, 16797817";"";Yes;No;0,286;Q3;48;45;153;1688;209;153;1,20;37,51;18,52;0;Brazil;Latin America;"";"2003-2026";"Aerospace Engineering (Q3); Automotive Engineering (Q3); Civil and Structural Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Ocean Engineering (Q3)";"Engineering; Materials Science" +17710;18300156725;"Mathematica";journal;"12229016, 2601744X";"Publishing House of the Romanian Academy";No;No;0,286;Q3;12;11;80;262;84;79;1,12;23,82;13,64;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2009-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17711;21101183661;"NAMMCO Scientific Publications";journal;"15602206, 23092491";"Septentrio Academic Publishing";Yes;Yes;0,286;Q3;9;5;18;298;13;14;0,50;59,60;62,50;0;Norway;Western Europe;"Septentrio Academic Publishing";"2019, 2022, 2024-2025";"Animal Science and Zoology (Q3); Aquatic Science (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17712;21100812137;"New Space";journal;"21680264, 21680256";"Mary Ann Liebert Inc.";No;No;0,286;Q3;20;23;85;728;98;72;1,09;31,65;36,84;0;United States;Northern America;"Mary Ann Liebert Inc.";"2013-2026";"Aerospace Engineering (Q3); Astronomy and Astrophysics (Q3); Energy Engineering and Power Technology (Q3); Safety, Risk, Reliability and Quality (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Energy; Engineering; Physics and Astronomy" +17713;21100389312;"P-Adic Numbers, Ultrametric Analysis, and Applications";journal;"20700474, 20700466";"Pleiades Publishing";No;No;0,286;Q3;19;29;73;657;42;73;0,82;22,66;18,60;0;United States;Northern America;"Pleiades Publishing";"2009-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17714;21101133222;"Queueing Models and Service Management";journal;"26162687, 26162679";"Kaoyian Press";No;No;0,286;Q3;7;9;19;382;16;19;1,17;42,44;28,57;0;Taiwan;Asiatic Region;"Kaoyian Press";"2018-2025";"Applied Mathematics (Q3); Management Science and Operations Research (Q3); Modeling and Simulation (Q3); Statistics, Probability and Uncertainty (Q3)";"Decision Sciences; Mathematics" +17715;27036;"Radiochemistry";journal;"16083288, 10663622";"";No;No;0,286;Q3;33;112;296;2878;288;295;0,94;25,70;41,81;0;Russian Federation;Eastern Europe;"";"2001-2025";"Physical and Theoretical Chemistry (Q3)";"Chemistry" +17716;21101089565;"Review of Integrative Business and Economics Research";journal;"24146722, 23041013";"GMP Press & Printing Co.,";No;No;0,286;Q3;13;194;226;7937;460;226;1,93;40,91;47,70;0;Hong Kong;Asiatic Region;"GMP Press & Printing Co.,";"2019-2026";"Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +17717;19600161819;"Revista de la Facultad de Ciencias Agrarias";journal;"03704661, 18538665";"Universidad Nacional de Cuyo";Yes;No;0,286;Q3;17;39;86;1489;96;86;1,16;38,18;47,59;0;Argentina;Latin America;"Universidad Nacional de Cuyo";"2008-2025";"Agronomy and Crop Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17718;52092;"Seminars in Cardiothoracic and Vascular Anesthesia";journal;"10892532, 19405596";"SAGE Publications Inc.";No;No;0,286;Q3;43;31;95;1198;85;85;1,00;38,65;22,69;0;United States;Northern America;"SAGE Publications Inc.";"1997-2026";"Anesthesiology and Pain Medicine (Q3); Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +17719;21100820898;"Tropical Grasslands-Forrajes Tropicales";journal;"23463775";"Centro Internacional de Agricultura Tropical (CIAT)";Yes;Yes;0,286;Q3;32;8;69;291;82;69;1,11;36,38;31,82;0;Colombia;Latin America;"Centro Internacional de Agricultura Tropical (CIAT)";"2013-2025";"Agronomy and Crop Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17720;7600153107;"Turkiye Parazitoloji Dergisi";journal;"13006320, 21463077";"Galenos Publishing House";Yes;Yes;0,286;Q3;25;34;167;850;166;147;1,11;25,00;48,91;0;Turkey;Middle East;"Galenos Publishing House";"2006-2026";"Immunology and Microbiology (miscellaneous) (Q3); Parasitology (Q3)";"Immunology and Microbiology" +17721;19284;"Vascular and Endovascular Surgery";journal;"19389116, 15385744";"SAGE Publications Inc.";No;No;0,286;Q3;59;136;419;3062;341;414;0,90;22,51;25,28;1;United States;Northern America;"SAGE Publications Inc.";"1967-1973, 1975-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Surgery (Q3)";"Medicine" +17722;32211;"Proceedings of the International Conference on Application-Specific Systems, Architectures and Processors";conference and proceedings;"2160052X, 21600511";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,286;-;40;36;109;667;138;101;0,89;18,53;16,81;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1993-1997, 2000, 2002-2025";"Computer Networks and Communications; Computer Science (miscellaneous); Hardware and Architecture";"Computer Science" +17723;21100887621;"Contemporary Japan";journal;"18692737, 18692729";"Taylor and Francis Ltd.";No;No;0,285;Q1;15;25;49;1475;37;38;0,67;59,00;54,55;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Cultural Studies (Q1); History (Q1); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +17724;29366;"GLQ";journal;"15279375, 10642684";"Duke University Press";No;No;0,285;Q1;55;23;84;1054;78;76;0,88;45,83;33,33;0;United States;Northern America;"Duke University Press";"1996, 1998-2001, 2003-2026";"Cultural Studies (Q1); Gender Studies (Q2)";"Social Sciences" +17725;5000154201;"History Workshop Journal";journal;"14774569, 13633554";"Oxford University Press";No;No;0,285;Q1;44;31;73;1960;72;67;0,78;63,23;72,50;0;United States;Northern America;"Oxford University Press";"1976-2025";"History (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities" +17726;24136;"Indo-Iranian Journal";journal;"15728536, 00197246";"Brill Academic Publishers";No;No;0,285;Q1;16;11;27;469;15;27;0,75;42,64;10,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1957-2026";"Philosophy (Q1); Linguistics and Language (Q2); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +17727;21101047144;"Islamic Guidance and Counseling Journal";journal;"26855909, 26141566";"Institut Agama Islam Ma'arif NU (IAIMNU) Metro Lampung";Yes;No;0,285;Q1;8;30;80;1654;94;80;1,04;55,13;49,38;0;Indonesia;Asiatic Region;"Institut Agama Islam Ma'arif NU (IAIMNU) Metro Lampung";"2018-2026";"Religious Studies (Q1); Psychology (miscellaneous) (Q3)";"Arts and Humanities; Psychology" +17728;5900153309;"Journal of Muslim Mental Health";journal;"15564908, 15565009";"Michigan Publishing";Yes;Yes;0,285;Q1;30;10;29;473;37;28;0,88;47,30;83,33;0;United States;Northern America;"Michigan Publishing";"2007-2025";"Religious Studies (Q1); Clinical Psychology (Q3); Health (social science) (Q3); Psychiatry and Mental Health (Q3)";"Arts and Humanities; Medicine; Psychology; Social Sciences" +17729;21101185496;"Occasional Papers on Religion in Eastern Europe";journal;"26932229";"George Fox University Murdock Learning Resource Center";No;No;0,285;Q1;6;87;195;2808;86;181;0,38;32,28;32,56;0;United States;Northern America;"George Fox University Murdock Learning Resource Center";"2019-2026";"Religious Studies (Q1); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +17730;21100782420;"Ural'skij Istoriceskij Vestnik";journal;"17289718";"Institute of History and Archeology of the Ural Branch of RAS";No;No;0,285;Q1;10;61;245;823;43;245;0,21;13,49;37,66;0;Russian Federation;Eastern Europe;"Institute of History and Archeology of the Ural Branch of RAS";"2016-2025";"History (Q1)";"Arts and Humanities" +17731;17060;"Acta Veterinaria";journal;"05678315, 18207448";"";Yes;No;0,285;Q2;27;40;120;1257;117;120;0,95;31,43;48,50;0;Serbia;Eastern Europe;"";"1973, 1981-1983, 1985, 1996-2025";"Veterinary (miscellaneous) (Q2)";"Veterinary" +17732;23776;"Archivaria";journal;"03186954";"Association of Canadian Archivists";No;No;0,285;Q2;35;17;39;323;34;35;0,73;19,00;52,63;0;Canada;Northern America;"Association of Canadian Archivists";"1980, 1989-1990, 1996-2025";"Library and Information Sciences (Q2)";"Social Sciences" +17733;21101058047;"BioProducts Business";journal;"23781394";"Society of Wood Science and Technology";Yes;No;0,285;Q2;7;3;6;171;9;6;2,25;57,00;0,00;0;United States;Northern America;"Society of Wood Science and Technology";"2019-2025";"Forestry (Q2); Management of Technology and Innovation (Q3); Marketing (Q3); Strategy and Management (Q3)";"Agricultural and Biological Sciences; Business, Management and Accounting" +17734;21100309828;"CODAS";journal;"23171782";"Revista Pro-Fono";Yes;No;0,285;Q2;35;128;360;3896;328;357;0,70;30,44;76,70;0;Brazil;Latin America;"Revista Pro-Fono";"2013-2026";"Linguistics and Language (Q2); Otorhinolaryngology (Q3); Speech and Hearing (Q3)";"Health Professions; Medicine; Social Sciences" +17735;9500154102;"Iranian Journal of Science and Technology, Transaction A: Science";journal;"23641819, 10286276";"Springer Science and Business Media Deutschland GmbH";No;No;0,285;Q2;38;0;162;0;256;162;0,00;0,00;0,00;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2006-2022";"Agricultural and Biological Sciences (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Chemistry; Earth and Planetary Sciences; Engineering; Mathematics; Physics and Astronomy" +17736;21101016919;"Onati Socio-Legal Series";journal;"20795971";"Onati International Institute for the Sociology of Law";Yes;Yes;0,285;Q2;13;82;264;4604;153;244;0,56;56,15;48,19;0;Spain;Western Europe;"Onati International Institute for the Sociology of Law";"2019-2026";"Law (Q2); Social Sciences (miscellaneous) (Q2)";"Social Sciences" +17737;21101164843;"Research on World Agricultural Economy";journal;"27374785, 27374777";"Nan Yang Academy of Sciences Pte. Ltd";No;No;0,285;Q2;11;194;126;9464;228;124;1,89;48,78;39,19;1;Singapore;Asiatic Region;"Nan Yang Academy of Sciences Pte. Ltd";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +17738;19400157238;"Texto e Contexto Enfermagem";journal;"01040707, 1980265X";"Universidade Federal de Santa Catarina";Yes;No;0,285;Q2;31;74;365;2369;288;353;0,69;32,01;84,35;0;Brazil;Latin America;"Universidade Federal de Santa Catarina";"2009-2025";"Advanced and Specialized Nursing (Q2); Law (Q2); Maternity and Midwifery (Q2); Community and Home Care (Q3); Nursing (miscellaneous) (Q3)";"Nursing; Social Sciences" +17739;59726;"Trauma (United Kingdom)";journal;"14770350, 14604086";"SAGE Publications Ltd";No;No;0,285;Q2;23;38;175;964;127;153;0,67;25,37;32,11;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1999-2026";"Emergency Medicine (Q2); Critical Care and Intensive Care Medicine (Q3); Surgery (Q3)";"Medicine" +17740;28901;"Tsvetnye Metally";journal;"24140090, 03722929";"Ore and Metals Publishing house";No;No;0,285;Q2;18;132;409;3196;252;407;0,73;24,21;40,33;0;Russian Federation;Eastern Europe;"Ore and Metals Publishing house";"1970-1971, 1975-1988, 2001-2005, 2013-2026";"Metals and Alloys (Q2); Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Materials Chemistry (Q3); Physical and Theoretical Chemistry (Q3); Surfaces, Coatings and Films (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +17741;21101071954;"Advances in Bioenergy";book series;"24680125";"Elsevier Inc.";No;No;0,285;Q3;20;6;22;780;69;6;3,15;130,00;28,00;0;United States;Northern America;"Elsevier Inc.";"2016-2025";"Waste Management and Disposal (Q3); Bioengineering (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Chemical Engineering; Energy; Environmental Science" +17742;145673;"Annals of African Medicine";journal;"15963519, 09755764";"Wolters Kluwer Medknow Publications";No;No;0,285;Q3;37;156;294;3326;311;291;1,04;21,32;43,51;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2005-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +17743;24932;"At-Automatisierungstechnik";journal;"01782312, 2196677X";"De Gruyter Oldenbourg";No;No;0,285;Q3;33;83;309;2441;369;279;1,17;29,41;15,61;0;Germany;Western Europe;"De Gruyter Oldenbourg";"1964-1968, 1970-1973, 1975-2026";"Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +17744;21101093543;"Chinese Journal of Nursing Education";journal;"16729234";"Chinese Nursing Journals Publishing House";No;No;0,285;Q3;9;233;711;4460;511;711;0,78;19,14;62,42;0;China;Asiatic Region;"Chinese Nursing Journals Publishing House";"2019-2026";"Education (Q3); Nursing (miscellaneous) (Q3)";"Nursing; Social Sciences" +17745;5800173386;"Current Drug Safety";journal;"22123911, 15748863";"Bentham Science Publishers";No;No;0,285;Q3;46;100;209;5766;255;204;1,34;57,66;46,85;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2025";"Pharmacology (Q3); Pharmacology (medical) (Q3); Toxicology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +17746;21101016917;"Detritus";journal;"26114127, 26114135";"";Yes;No;0,285;Q3;23;58;169;1906;171;134;0,78;32,86;47,16;0;Italy;Western Europe;"";"2018-2025";"Environmental Engineering (Q3); Waste Management and Disposal (Q3); Environmental Chemistry (Q4)";"Environmental Science" +17747;24927;"Dynamical Systems";journal;"14689367, 14689375";"Taylor and Francis Ltd.";No;No;0,285;Q3;37;40;112;1090;60;112;0,47;27,25;31,51;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Computer Science Applications (Q3); Mathematics (miscellaneous) (Q3)";"Computer Science; Mathematics" +17748;21101226892;"Egyptian Rheumatology and Rehabilitation";journal;"1110161X, 20903235";"Springer";Yes;Yes;0,285;Q3;9;72;186;2746;176;181;1,02;38,14;69,52;0;United Arab Emirates;Middle East;"Springer";"2020-2026";"Rehabilitation (Q3); Rheumatology (Q3)";"Medicine" +17749;7200153124;"Eurasian Chemico-Technological Journal";journal;"15623920";"Institute of Combustion Problems, al-Farabi Kazakh State National University";Yes;No;0,285;Q3;19;29;92;1130;144;92;1,98;38,97;42,97;0;Kazakhstan;Asiatic Region;"Institute of Combustion Problems, al-Farabi Kazakh State National University";"2003-2004, 2007-2025";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)";"Chemical Engineering; Chemistry; Materials Science; Physics and Astronomy" +17750;21100826286;"Fuzzy Information and Engineering";journal;"16168658, 16168666";"Tsinghua University Press";Yes;Yes;0,285;Q3;29;23;70;935;117;70;1,30;40,65;20,37;0;United Kingdom;Western Europe;"Tsinghua University Press";"2011, 2014-2025";"Applied Mathematics (Q3); Artificial Intelligence (Q3); Control and Systems Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Information Systems (Q3); Logic (Q3); Management Science and Operations Research (Q3); Theoretical Computer Science (Q4)";"Computer Science; Decision Sciences; Engineering; Mathematics" +17751;19900191745;"Indian Growth and Development Review";journal;"17538254, 17538262";"Emerald Group Publishing Ltd.";No;No;0,285;Q3;19;20;44;1131;67;43;1,68;56,55;38,46;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2026";"Business and International Management (Q3); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +17752;21101082066;"International Journal of Abdominal Wall and Hernia Surgery";journal;"25898078, 25898736";"Wolters Kluwer Medknow Publications";Yes;Yes;0,285;Q3;8;50;113;849;107;104;0,92;16,98;25,00;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2025";"Surgery (Q3)";"Medicine" +17753;21100205904;"International Journal of Plasma Environmental Science and Technology";journal;"24350125, 18818692";"Institute of Electrostatics";No;No;0,285;Q3;18;50;49;1209;72;49;1,13;24,18;17,58;0;Japan;Asiatic Region;"Institute of Electrostatics";"2011-2026";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +17754;21101061990;"Journal of Applied Structural Equation Modeling";journal;"25904221";"Sarawak Research Society";Yes;Yes;0,285;Q3;16;10;30;931;81;29;3,55;93,10;26,32;0;Malaysia;Asiatic Region;"Sarawak Research Society";"2017-2025";"Business, Management and Accounting (miscellaneous) (Q3); Management Science and Operations Research (Q3); Statistics, Probability and Uncertainty (Q3)";"Business, Management and Accounting; Decision Sciences" +17755;21100265745;"Journal of Fish and Wildlife Management";journal;"1944687X";"U.S. Fish and Wildlife Service";No;No;0,285;Q3;30;0;130;0;100;128;0,68;0,00;0,00;0;United States;Northern America;"U.S. Fish and Wildlife Service";"2010-2024";"Animal Science and Zoology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Nature and Landscape Conservation (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17756;74535;"Journal of Gemmology";journal;"26321718, 13554565";"Gem-A, The Gemmological Association of Great Britain";No;No;0,285;Q3;13;68;203;605;50;173;0,22;8,90;34,74;0;United Kingdom;Western Europe;"Gem-A, The Gemmological Association of Great Britain";"1981-1988, 2015-2025";"Geochemistry and Petrology (Q3)";"Earth and Planetary Sciences" +17757;21101152613;"Journal of Neurosurgery: Case Lessons";journal;"26941902";"American Association of Neurological Surgeons";No;No;0,285;Q3;10;429;971;9750;722;956;0,71;22,73;23,91;0;United States;Northern America;"American Association of Neurological Surgeons";"2021-2026";"Neurology (clinical) (Q3); Surgery (Q3)";"Medicine" +17758;21100298206;"Journal of Plant Biotechnology";journal;"12292818";"Korean Society of Plant Biotechnology";Yes;No;0,285;Q3;16;34;109;1243;120;109;1,30;36,56;44,29;0;South Korea;Asiatic Region;"Korean Society of Plant Biotechnology";"2012-2025";"Agronomy and Crop Science (Q3); Biotechnology (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +17759;21101039080;"Journal of Radiation Protection and Research";journal;"25081888, 24662461";"Korean Association for Radiation Protection";No;No;0,285;Q3;8;35;70;889;75;69;1,04;25,40;30,15;0;South Korea;Asiatic Region;"Korean Association for Radiation Protection";"2020-2025";"Public Health, Environmental and Occupational Health (Q3); Radiation (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Health, Toxicology and Mutagenesis (Q4)";"Environmental Science; Medicine; Physics and Astronomy" +17760;12400154701;"Latin American Journal of Aquatic Research";journal;"0718560X";"Escuela de Ciencias del Mar";Yes;No;0,285;Q3;41;28;198;1648;233;198;1,00;58,86;28,21;0;Chile;Latin America;"Escuela de Ciencias del Mar";"2008-2025";"Aquatic Science (Q3); Oceanography (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +17761;17200;"Malaysian Journal of Pathology";journal;"01268635";"Malaysian Society of Pathologists";No;No;0,285;Q3;29;45;147;1306;138;132;1,00;29,02;59,66;0;Malaysia;Asiatic Region;"Malaysian Society of Pathologists";"1979-1983, 1985-2025";"Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Cell Biology (Q4); Histology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +17762;17836;"Medical Journal Armed Forces India";journal;"03771237, 22134743";"Elsevier B.V.";No;No;0,285;Q3;44;267;578;4909;518;470;0,82;18,39;33,54;0;Netherlands;Western Europe;"Elsevier B.V.";"1975-1978, 2001-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +17763;4000151816;"National Academy Science Letters";journal;"0250541X";"Springer India";Yes;No;0,285;Q3;33;437;395;7630;690;370;1,80;17,46;28,85;1;India;Asiatic Region;"Springer India";"2005-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +17764;21100847074;"Revista Brasileira de Geomorfologia";journal;"15191540, 22365664";"Uniao da Geomorfologia Brasileira";Yes;Yes;0,285;Q3;12;43;180;2562;153;178;0,82;59,58;27,87;0;Brazil;Latin America;"Uniao da Geomorfologia Brasileira";"2017-2026";"Earth-Surface Processes (Q3)";"Earth and Planetary Sciences" +17765;15600154704;"Revista Espanola de Cirugia Ortopedica y Traumatologia";journal;"18884415, 19888856";"Ediciones Doyma, S.L.";Yes;No;0,285;Q3;22;120;263;2723;191;215;0,87;22,69;25,53;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2008-2026";"Orthopedics and Sports Medicine (Q3); Surgery (Q3)";"Medicine" +17766;21101373393;"Science, Engineering and Technology";journal;"27442527, 28311043";"O.D. IMS Vogosca";Yes;No;0,285;Q3;5;33;21;1691;56;21;2,67;51,24;12,16;0;Bosnia and Herzegovina;Eastern Europe;"O.D. IMS Vogosca";"2024-2025";"Civil and Structural Engineering (Q3); Electrical and Electronic Engineering (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Engineering" +17767;24982;"Singapore Economic Review";journal;"17936837, 02175908";"World Scientific Publishing Co. Pte Ltd";No;No;0,285;Q3;34;192;423;10195;640;417;1,49;53,10;37,00;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1983-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +17768;26514;"Tetrahedron Letters";journal;"00404039, 18733581";"Elsevier Ltd";No;No;0,285;Q3;190;312;1231;12560;1764;1229;1,43;40,26;35,07;0;United Kingdom;Western Europe;"Elsevier Ltd";"1959-2026";"Organic Chemistry (Q3); Biochemistry (Q4); Drug Discovery (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +17769;21101046250;"World Academy of Sciences Journal";journal;"26322919, 26322900";"Spandidos Publications";No;No;0,285;Q3;15;129;149;7063;206;149;1,48;54,75;52,37;0;United Kingdom;Western Europe;"Spandidos Publications";"2019-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +17770;21101232809;"Annual ACM Symposium on Parallelism in Algorithms and Architectures";conference and proceedings;"15486109";"Association for Computing Machinery";No;No;0,285;-;5;57;56;2326;75;54;1,34;40,81;15,06;0;United States;Northern America;"Association for Computing Machinery";"2012, 2021, 2024-2025";"Hardware and Architecture; Software; Theoretical Computer Science";"Computer Science; Mathematics" +17771;96562;"Electrical Contacts, Proceedings of the Annual Holm Conference on Electrical Contacts";conference and proceedings;"03614395";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,285;-;28;44;160;703;108;154;0,71;15,98;17,46;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1979-1983, 1988-1990, 1992-2003, 2005-2012, 2015-2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Engineering; Materials Science" +17772;21100904201;"Procedia Structural Integrity";conference and proceedings;"24523216";"Elsevier B.V.";No;No;0,285;-;50;631;2215;11088;2479;2166;1,06;17,57;22,16;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Civil and Structural Engineering; Materials Science (miscellaneous); Mechanical Engineering; Mechanics of Materials";"Engineering; Materials Science" +17773;87683;"Proceedings - IEEE Military Communications Conference MILCOM";conference and proceedings;"21557586, 21557578";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,285;-;76;290;392;5317;483;388;1,24;18,33;17,29;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1983-2019, 2021-2022, 2024";"Electrical and Electronic Engineering";"Engineering" +17774;21100463090;"AlBayan";journal;"22321969, 22321950";"Brill Academic Publishers";No;No;0,284;Q1;9;22;57;873;36;57;0,64;39,68;22,22;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2025";"Cultural Studies (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +17775;5600152894;"Canadian Ethnic Studies";journal;"19138253, 00083496";"Canadian Ethnic Studies Association";No;No;0,284;Q1;12;10;66;591;68;61;0,66;59,10;70,83;0;Canada;Northern America;"Canadian Ethnic Studies Association";"1986, 2008, 2019-2025";"History (Q1); Anthropology (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +17776;21101043444;"European Journal of Analytic Philosophy";journal;"18490514, 18458475";"University of Rijeka, Faculty of Humanities and Social Sciences";Yes;Yes;0,284;Q1;8;12;49;277;32;47;0,58;23,08;58,33;0;Croatia;Eastern Europe;"University of Rijeka, Faculty of Humanities and Social Sciences";"2019-2025";"Philosophy (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities" +17777;21100404539;"Journal of Muslims in Europe";journal;"2211792X, 22117954";"Brill Academic Publishers";No;No;0,284;Q1;16;20;59;981;32;53;0,40;49,05;52,38;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2026";"Cultural Studies (Q1); History (Q1); Religious Studies (Q1); Anthropology (Q2)";"Arts and Humanities; Social Sciences" +17778;21101086720;"Oriental Anthropologist";journal;"0972558X, 09763430";"Sage Publications India Pvt. Ltd";No;No;0,284;Q1;8;22;66;1031;62;61;0,81;46,86;41,18;0;Singapore;Asiatic Region;"Sage Publications India Pvt. Ltd";"2001-2025";"Cultural Studies (Q1); Anthropology (Q2); Sociology and Political Science (Q3)";"Social Sciences" +17779;21100933832;"Panta Rei";journal;"23868864, 11362464";"Centro de Estudios del Proximo Oriente y la Antiguedad Tardia";Yes;Yes;0,284;Q1;7;14;36;912;31;36;0,79;65,14;41,94;0;Spain;Western Europe;"Centro de Estudios del Proximo Oriente y la Antiguedad Tardia";"2019-2025";"History (Q1); Anthropology (Q2); Archeology (arts and humanities) (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +17780;21101168865;"Revista de Arqueologia";journal;"19821999, 01020420";"Sociedade de Arqueologia Brasileira";Yes;Yes;0,284;Q1;7;38;139;2231;56;122;0,45;58,71;38,24;0;Brazil;Latin America;"Sociedade de Arqueologia Brasileira";"2019-2026";"History (Q1); Museology (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +17781;29335;"Education for Information";journal;"18758649, 01678329";"SAGE Publications Ltd";No;No;0,284;Q2;24;9;67;393;89;64;0,96;43,67;63,16;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1983-2025";"Library and Information Sciences (Q2); Education (Q3); Information Systems (Q3)";"Computer Science; Social Sciences" +17782;21101090090;"InDret";journal;"1698739X";"Universidad Pompeu Fabra";Yes;Yes;0,284;Q2;7;57;177;4037;60;158;0,36;70,82;48,00;0;Spain;Western Europe;"Universidad Pompeu Fabra";"2019-2025";"Law (Q2)";"Social Sciences" +17783;5300152608;"Journal of Agriculture and Rural Development in the Tropics and Subtropics, Supplement";journal;"16138422, 23636033";"Journal of Agriculture and Rural Development in the Tropics and Subtropics (JARTS)";No;No;0,284;Q2;6;12;25;462;38;25;1,59;38,50;30,56;0;Germany;Western Europe;"Journal of Agriculture and Rural Development in the Tropics and Subtropics (JARTS)";"2003-2006, 2021-2025";"Forestry (Q2); Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Development (Q3); Geography, Planning and Development (Q3)";"Agricultural and Biological Sciences; Social Sciences" +17784;147218;"Journal of Conflict and Security Law";journal;"14677962, 14677954";"Oxford University Press";No;No;0,284;Q2;34;18;55;2904;71;53;1,18;161,33;21,05;1;United Kingdom;Western Europe;"Oxford University Press";"2005-2025";"Law (Q2); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering; Social Sciences" +17785;21100346214;"Yearbook of International Humanitarian Law";journal;"1574096X, 13891359";"Springer Nature";No;No;0,284;Q2;21;6;18;797;10;15;0,20;132,83;33,33;0;United Kingdom;Western Europe;"Springer Nature";"1998-2013, 2015-2016, 2018-2025";"Law (Q2)";"Social Sciences" +17786;10600153356;"Acta Colombiana de Psicologia";journal;"19099711, 01239155";"Universidad Catolica de Colombia";Yes;Yes;0,284;Q3;19;20;85;1304;91;78;0,98;65,20;47,14;0;Colombia;Latin America;"Universidad Catolica de Colombia";"2007-2025";"Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3)";"Medicine; Psychology" +17787;29473;"American Journal of Psychoanalysis";journal;"00029548, 15736741";"Palgrave Macmillan Ltd.";No;No;0,284;Q3;24;30;95;1557;50;91;0,45;51,90;33,33;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1942-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +17788;21100924992;"Arabian Journal of Mathematics";journal;"21935351, 21935343";"Springer Heidelberg";Yes;Yes;0,284;Q3;21;107;142;3178;125;142;0,90;29,70;30,41;0;Germany;Western Europe;"Springer Heidelberg";"2012-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17789;21101041816;"Canadian Prosthetics and Orthotics Journal";journal;"2561987X";"Canadian Online Publication Group";Yes;No;0,284;Q3;9;16;46;762;57;46;1,21;47,63;52,38;0;Canada;Northern America;"Canadian Online Publication Group";"2018-2026";"Rehabilitation (Q3)";"Medicine" +17790;25894;"Discrete Mathematics and Applications";journal;"15693929, 09249265";"Walter de Gruyter GmbH";No;No;0,284;Q3;16;26;95;430;48;95;0,49;16,54;12,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1991-2025";"Applied Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3)";"Mathematics" +17791;4000149607;"Fixed Point Theory and Algorithms for Sciences and Engineering";journal;"16871812, 16871820";"SpringerOpen";Yes;No;0,284;Q3;82;34;65;1047;82;65;1,34;30,79;17,65;0;United Kingdom;Western Europe;"SpringerOpen";"2004-2026";"Applied Mathematics (Q3); Geometry and Topology (Q3)";"Mathematics" +17792;19700176214;"International Electronic Journal of Elementary Education";journal;"13079298";"Kura Publishing House";Yes;No;0,284;Q3;31;50;137;2638;171;135;1,08;52,76;57,02;1;Turkey;Middle East;"Kura Publishing House";"2009-2025";"Education (Q3)";"Social Sciences" +17793;12415;"International Journal of Reliability, Quality and Safety Engineering";journal;"02185393, 17936446";"World Scientific";No;No;0,284;Q3;35;70;137;2414;239;136;1,80;34,49;30,00;0;Singapore;Asiatic Region;"World Scientific";"1994, 1996-2026";"Aerospace Engineering (Q3); Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Industrial and Manufacturing Engineering (Q3); Nuclear Energy and Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)";"Computer Science; Energy; Engineering" +17794;21101020139;"Involve";journal;"19444176, 19444184";"Mathematical Sciences Publishers";No;No;0,284;Q3;13;56;160;742;40;160;0,17;13,25;37,29;0;United States;Northern America;"Mathematical Sciences Publishers";"2008-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17795;34765;"Irish Journal of Agricultural and Food Research";journal;"07916833";"Compuscript Ltd";Yes;Yes;0,284;Q3;38;8;38;401;54;37;1,19;50,13;38,46;0;Ireland;Western Europe;"Compuscript Ltd";"1993-2025";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Ecology (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17796;19900193618;"Journal of Advanced Mechanical Design, Systems and Manufacturing";journal;"18813054";"Japan Society of Mechanical Engineers";Yes;No;0,284;Q3;28;48;249;1145;296;242;1,10;23,85;21,64;0;Japan;Asiatic Region;"Japan Society of Mechanical Engineers";"2010-2026";"Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +17797;21100898630;"Journal of Special Education Leadership";journal;"15251810";"Council of Administrators of Special Education";No;No;0,284;Q3;8;12;31;343;18;19;0,56;28,58;70,83;0;United States;Northern America;"Council of Administrators of Special Education";"2018-2025";"Developmental and Educational Psychology (Q3); Education (Q3); Public Administration (Q3)";"Psychology; Social Sciences" +17798;21100831407;"Journal of The Institution of Engineers (India): Series E";journal;"22502483, 22502491";"Springer";No;No;0,284;Q3;22;25;85;1032;165;84;1,66;41,28;32,47;0;India;Asiatic Region;"Springer";"2012-2026";"Chemical Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Chemical Engineering; Engineering; Materials Science" +17799;14796;"Journal Wuhan University of Technology, Materials Science Edition";journal;"19930437, 10002413";"Springer Verlag";No;No;0,284;Q3;53;184;539;6657;736;539;1,42;36,18;35,41;0;China;Asiatic Region;"Springer Verlag";"1994-2026";"Materials Science (miscellaneous) (Q3)";"Materials Science" +17800;21100846307;"Matematiche";journal;"03733505, 20375298";"Universita di Catania";Yes;Yes;0,284;Q3;9;33;70;752;39;70;0,44;22,79;37,88;0;Italy;Western Europe;"Universita di Catania";"2017-2025";"Applied Mathematics (Q3); Information Systems (Q3); Mathematics (miscellaneous) (Q3)";"Computer Science; Mathematics" +17801;17500154715;"North-Western Journal of Zoology";journal;"18435629, 15849074";"Editura Universitatii din Oradea";Yes;No;0,284;Q3;26;15;115;648;82;113;0,67;43,20;16,00;0;Romania;Eastern Europe;"Editura Universitatii din Oradea";"2008-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +17802;21100794591;"Norwegian Journal of Entomology";journal;"15018415";"Norwegian University of Science and Technology";No;No;0,284;Q3;12;0;56;0;23;56;0,49;0,00;0,00;0;Norway;Western Europe;"Norwegian University of Science and Technology";"2009-2024";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +17803;19700201625;"Open Public Health Journal";journal;"18749445";"Bentham Science Publishers";Yes;No;0,284;Q3;19;154;498;6528;506;481;0,98;42,39;50,21;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2011-2026";"Community and Home Care (Q3); Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing; Social Sciences" +17804;14023;"Paleontological Research";journal;"13428144";"Palaeontological Society of Japan";No;No;0,284;Q3;32;13;99;975;55;99;0,62;75,00;16,67;0;Japan;Asiatic Region;"Palaeontological Society of Japan";"1997-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Paleontology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +17805;16800154725;"Progress in Electromagnetics Research B";journal;"19376472";"Electromagnetics Academy";No;No;0,284;Q3;58;53;139;1934;226;139;1,69;36,49;29,75;0;United States;Northern America;"Electromagnetics Academy";"2008-2026";"Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +17806;29676;"Quantum Information and Computation";journal;"15337146";"Sciendo";No;No;0,284;Q3;82;30;98;1730;135;98;1,83;57,67;26,37;0;United States;Northern America;"Sciendo";"2001-2025";"Computational Theory and Mathematics (Q3); Mathematical Physics (Q3); Nuclear and High Energy Physics (Q3); Physics and Astronomy (miscellaneous) (Q3); Statistical and Nonlinear Physics (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics; Physics and Astronomy" +17807;12400154709;"Terapia Psicologica";journal;"07166184, 07184808";"Sociedad Chilena de Psicologia Clinica";Yes;Yes;0,284;Q3;33;14;57;679;55;57;0,72;48,50;60,94;0;Chile;Latin America;"Sociedad Chilena de Psicologia Clinica";"2008-2025";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +17808;21101266842;"Visnyk of V. N. Karazin Kharkiv National University, series 'Geology. Geography. Ecology'";journal;"24113913, 24107360";"V N Karazin Kharkiv National University";Yes;Yes;0,284;Q3;5;81;162;2573;160;162;0,98;31,77;50,70;0;Ukraine;Eastern Europe;"V N Karazin Kharkiv National University";"2021-2025";"Ecology (Q3); Geochemistry and Petrology (Q3); Geography, Planning and Development (Q3); Geology (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +17809;21100842862;"World's Veterinary Journal";journal;"23224568";"Scienceline Publication";No;No;0,284;Q3;13;98;195;4353;274;195;1,36;44,42;43,75;0;Turkey;Middle East;"Scienceline Publication";"2017-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +17810;21101101860;"Eminak";journal;"27080226, 19984634";"Scientific Research Centre "Lukomorie"";Yes;No;0,283;Q1;6;56;182;1358;61;179;0,29;24,25;31,17;0;Ukraine;Eastern Europe;"Scientific Research Centre "Lukomorie"";"2019-2026";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2); Political Science and International Relations (Q2)";"Arts and Humanities; Social Sciences" +17811;16000154787;"Kant-Studien";journal;"00228877, 16131134";"Walter de Gruyter GmbH";No;No;0,283;Q1;24;29;77;1551;31;74;0,31;53,48;11,11;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1897, 1899-1902, 1904, 1906-1907, 1909, 1912-1915, 1918-1919, 1921-1922, 1924-1931, 1933-1936, 1943, 1954-1974, 1976-2025";"Philosophy (Q1)";"Arts and Humanities" +17812;21597;"National Identities";journal;"14608944, 14699907";"Routledge";No;No;0,283;Q1;28;64;90;3799;110;88;0,90;59,36;44,32;0;United Kingdom;Western Europe;"Routledge";"2003-2026";"History (Q1); Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)";"Arts and Humanities; Earth and Planetary Sciences; Environmental Science" +17813;27327;"Studies in Religion-Sciences Religieuses";journal;"00084298, 20420587";"SAGE Publications Inc.";No;No;0,283;Q1;18;30;88;1377;38;85;0,48;45,90;40,00;0;United States;Northern America;"SAGE Publications Inc.";"1971-2025";"Religious Studies (Q1)";"Arts and Humanities" +17814;21100407655;"Banks and Bank Systems";journal;"19917074, 18167403";"LLC CPC Business Perspectives";Yes;No;0,283;Q2;27;84;225;3891;565;225;2,47;46,32;47,51;0;Ukraine;Eastern Europe;"LLC CPC Business Perspectives";"2006-2026";"Law (Q2); Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Finance (Q3); Management of Technology and Innovation (Q3); Marketing (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +17815;21101182051;"Critical Times";journal;"26410478";"Duke University Press";Yes;Yes;0,283;Q2;11;15;103;1481;98;97;0,55;98,73;73,33;0;United States;Northern America;"Duke University Press";"2019-2025";"Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +17816;17400154822;"East Asian Science, Technology and Society";journal;"18752152, 18752160";"Routledge";No;No;0,283;Q2;23;36;93;1919;92;59;1,00;53,31;38,46;0;United States;Northern America;"Routledge";"2008-2026";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +17817;21100829944;"Journal of Education for Library and Information Science";journal;"07485786, 23282967";"University of Toronto Press";No;No;0,283;Q2;16;22;83;916;84;82;0,93;41,64;70,91;0;Canada;Northern America;"University of Toronto Press";"2011, 2017-2026";"Library and Information Sciences (Q2); Education (Q3)";"Social Sciences" +17818;27696;"Journal of Southern African Studies";journal;"03057070, 14653893";"Routledge";No;No;0,283;Q2;64;33;172;1174;167;153;0,88;35,58;25,71;0;United Kingdom;Western Europe;"Routledge";"1974-2026";"Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +17819;17500155101;"Lecture Notes in Business Information Processing";book series;"18651356, 18651348";"Springer Science and Business Media Deutschland GmbH";No;No;0,283;Q2;69;698;2000;18517;2415;1726;1,09;26,53;35,89;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2008-2026";"Information Systems and Management (Q2); Business and International Management (Q3); Control and Systems Engineering (Q3); Information Systems (Q3); Management Information Systems (Q3); Modeling and Simulation (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering; Mathematics" +17820;21101036615;"Relacoes Internacionais no Mundo Atual";journal;"23162880";"Centro Universitario Curitiba - UNICURITIBA";No;No;0,283;Q2;9;48;436;1468;179;435;0,47;30,58;52,38;0;Brazil;Latin America;"Centro Universitario Curitiba - UNICURITIBA";"2019-2026";"Law (Q2); Political Science and International Relations (Q2); Public Administration (Q3); Sociology and Political Science (Q3)";"Social Sciences" +17821;21100923617;"Revista Pedagogia Universitaria y Didactica del Derecho";journal;"07195885";"Universidad de Chile";Yes;Yes;0,283;Q2;9;17;95;539;44;93;0,42;31,71;53,33;0;Chile;Latin America;"Universidad de Chile";"2019-2025";"Law (Q2); Education (Q3)";"Social Sciences" +17822;21101339542;"Southeast Asia: A Multidisciplinary Journal";journal;"29480426, 18195091";"Emerald Publishing";Yes;No;0,283;Q2;7;24;50;779;99;50;2,41;32,46;41,94;0;United Kingdom;Western Europe;"Emerald Publishing";"2020-2025";"Communication (Q2); Linguistics and Language (Q2); Geography, Planning and Development (Q3)";"Social Sciences" +17823;26591;"Acta Medica Portuguesa";journal;"0870399X, 16460758";"CELOM";Yes;Yes;0,283;Q3;35;177;558;2478;329;326;0,61;14,00;63,28;1;Portugal;Western Europe;"CELOM";"1979-1981, 1983-1986, 1988-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +17824;21100781401;"Acta Prataculturae Sinica";journal;"10045759";"Editorial Office of Acta Prataculturae Sinica";No;No;0,283;Q3;23;207;650;9573;805;650;1,26;46,25;41,63;0;China;Asiatic Region;"Editorial Office of Acta Prataculturae Sinica";"2016-2026";"Agronomy and Crop Science (Q3); Nature and Landscape Conservation (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17825;19300157021;"Acta Scientiarum Polonorum, Hortorum Cultus";journal;"16440692";"Wydawnictwo Akad Rolniczej W Lublinie";Yes;No;0,283;Q3;33;40;174;2017;208;174;1,14;50,43;51,35;0;Poland;Eastern Europe;"Wydawnictwo Akad Rolniczej W Lublinie";"2008-2025";"Horticulture (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17826;19389;"Archivos Espanoles de Urologia";journal;"15768260, 00040614";"Iniestares, S.A.";No;No;0,283;Q3;30;198;398;5385;392;378;1,15;27,20;32,16;0;Spain;Western Europe;"Iniestares, S.A.";"1945-1947, 1950-1965, 1973-2026";"Medicine (miscellaneous) (Q3); Urology (Q3)";"Medicine" +17827;19700182901;"Brazilian Journal of Pharmaceutical Sciences";journal;"19848250, 21759790";"Faculdade de Ciencias Farmaceuticas (Biblioteca)";Yes;Yes;0,283;Q3;57;81;616;3546;845;616;1,08;43,78;54,21;1;Brazil;Latin America;"Faculdade de Ciencias Farmaceuticas (Biblioteca)";"2009-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +17828;27404;"Brazilian Journal of Physics";journal;"16784448, 01039733";"Springer";Yes;No;0,283;Q3;59;282;614;14471;1046;609;1,74;51,32;26,12;0;United States;Northern America;"Springer";"1994, 1996-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +17829;25907;"Clinical Advances in Hematology and Oncology";journal;"15430790";"Millennium Medical Publishing, Inc.";No;No;0,283;Q3;47;96;321;1549;124;160;0,47;16,14;39,29;0;United States;Northern America;"Millennium Medical Publishing, Inc.";"2003-2026";"Hematology (Q3); Medicine (miscellaneous) (Q3); Oncology (Q3)";"Medicine" +17830;5400152712;"IET Circuits, Devices and Systems";journal;"1751858X, 17518598";"John Wiley and Sons Ltd";Yes;No;0,283;Q3;58;31;93;1188;164;92;2,12;38,32;34,95;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2007-2026";"Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)";"Engineering" +17831;21100244003;"Indian Journal of Finance";journal;"09738711";"Associated Management Consultants Pvt. Ltd.";No;No;0,283;Q3;19;48;138;2595;259;138;2,04;54,06;38,14;0;India;Asiatic Region;"Associated Management Consultants Pvt. Ltd.";"2010-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +17832;21101077679;"International Journal of Mathematics and Physics";journal;"24095508, 22187987";"al-Farabi Kazakh State National University";No;No;0,283;Q3;5;22;65;564;52;65;0,93;25,64;45,90;0;Kazakhstan;Asiatic Region;"al-Farabi Kazakh State National University";"2019-2025";"Computer Science Applications (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Computer Science; Mathematics; Physics and Astronomy" +17833;21101038572;"Journal of Applied Animal Nutrition";journal;"2049257X";"";Yes;No;0,283;Q3;10;9;24;326;28;24;1,00;36,22;26,09;0;Netherlands;Western Europe;"";"2019-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +17834;21139;"Journal of Applied Mechanics and Technical Physics";journal;"00218944, 15738620";"Pleiades Publishing";No;No;0,283;Q3;33;97;376;2454;252;376;0,78;25,30;24,46;0;United States;Northern America;"Pleiades Publishing";"1965-1995, 1997-1999, 2003, 2005-2025";"Condensed Matter Physics (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Physics and Astronomy" +17835;12600154715;"Journal of Cetacean Research and Management";journal;"15610713";"International Whaling Commission";Yes;Yes;0,283;Q3;32;7;60;456;60;59;0,95;65,14;42,86;1;United Kingdom;Western Europe;"International Whaling Commission";"2000, 2004, 2008-2015, 2017-2025";"Animal Science and Zoology (Q3); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +17836;21100855404;"Journal of Food Quality and Hazards Control";journal;"2345685X, 23456825";"Shahid Sadoughi University of Medical Sciences";Yes;Yes;0,283;Q3;20;17;87;594;119;81;1,37;34,94;50,00;0;Iran;Middle East;"Shahid Sadoughi University of Medical Sciences";"2014-2025";"Food Science (Q3)";"Agricultural and Biological Sciences" +17837;21101056820;"Journal of Health Literacy";journal;"24764728";"Mashhad University of Medical Sciences";Yes;Yes;0,283;Q3;13;35;96;1545;87;95;0,88;44,14;52,03;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2019-2026";"Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Social Sciences" +17838;21100945764;"Journal of Psychiatric Nursing";journal;"13093568, 2149374X";"Kare Publishing";Yes;No;0,283;Q3;12;42;154;1722;113;142;0,67;41,00;76,67;0;Turkey;Middle East;"Kare Publishing";"2019-2025";"Advanced and Specialized Nursing (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Nursing" +17839;21101254626;"Journal of Vascular Diseases";journal;"28132475";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,283;Q3;6;52;84;2635;96;82;1,21;50,67;33,43;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2022-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +17840;21100820619;"Periodica Polytechnica Electrical Engineering and Computer Science";journal;"20645279, 20645260";"Budapest University of Technology and Economics";Yes;No;0,283;Q3;21;30;120;837;200;120;1,94;27,90;20,78;0;Hungary;Eastern Europe;"Budapest University of Technology and Economics";"2012-2026";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Information Systems (Q3); Signal Processing (Q3); Software (Q3)";"Computer Science; Engineering" +17841;29380;"Rehabilitation Nursing";journal;"02784807, 20487940";"Lippincott Williams and Wilkins";No;No;0,283;Q3;47;36;122;579;91;101;0,63;16,08;71,95;0;United States;Northern America;"Lippincott Williams and Wilkins";"1975-2026";"Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)";"Health Professions; Medicine; Nursing" +17842;21101285935;"Saudi Journal of Health Systems Research";journal;"26736136";"S. Karger AG";Yes;No;0,283;Q3;9;23;64;849;68;58;0,93;36,91;50,00;0;Switzerland;Western Europe;"S. Karger AG";"2021-2025";"Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +17843;21100981751;"Scientia Sinica Informationis";journal;"20959486, 16747267";"Science Press";No;No;0,283;Q3;25;162;430;9482;749;422;1,84;58,53;29,94;0;China;Asiatic Region;"Science Press";"2019-2026";"Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)";"Computer Science; Engineering" +17844;14569;"Tehnicki Vjesnik";journal;"13303651, 18486339";"Strojarski Facultet";Yes;No;0,283;Q3;42;265;760;7813;1073;760;1,61;29,48;32,57;0;Croatia;Eastern Europe;"Strojarski Facultet";"1994-1995, 1997-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +17845;19739;"Reumatismo";journal;"22402683, 00487449";"Page Press Publications";Yes;Yes;0,283;Q4;34;43;106;1432;110;96;1,00;33,30;53,85;0;Italy;Western Europe;"Page Press Publications";"1952-1977, 1985-2025";"Rheumatology (Q4)";"Medicine" +17846;21100928677;"Conflict and Society";journal;"21644543, 21644551";"Berghahn Journals";Yes;Yes;0,282;Q1;10;11;39;727;58;39;0,91;66,09;42,11;0;United Kingdom;Western Europe;"Berghahn Journals";"2018-2025";"Cultural Studies (Q1); Anthropology (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q3)";"Social Sciences" +17847;21101201499;"Galactica Media: Journal of Media Studies";journal;"26587734";"LLC Scientific Industrial Enterprise “Genesis. Frontier. Science”";Yes;Yes;0,282;Q1;3;47;110;2136;59;110;0,54;45,45;39,34;0;Russian Federation;Eastern Europe;"LLC Scientific Industrial Enterprise “Genesis. Frontier. Science”";"2021, 2023-2025";"Cultural Studies (Q1); Anthropology (Q2); Philosophy (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +17848;21100897755;"Jordan Journal of Modern Languages and Literatures";journal;"19946953, 23048069";"Yarmouk University";No;No;0,282;Q1;9;52;198;2058;178;198;1,00;39,58;41,67;0;Jordan;Middle East;"Yarmouk University";"2018-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +17849;21101067700;"Radiation Medicine and Protection";journal;"20970439, 26665557";"Elsevier B.V.";Yes;No;0,282;Q1;14;46;114;2117;154;110;1,27;46,02;43,48;0;China;Asiatic Region;"Elsevier B.V.";"2020-2025";"Emergency Medical Services (Q1); Public Health, Environmental and Occupational Health (Q3); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Health Professions; Medicine" +17850;17100154720;"Science-Fiction Studies";journal;"00917729";"S F - T H, Inc.";No;No;0,282;Q1;25;28;74;918;31;68;0,30;32,79;39,13;0;United States;Northern America;"S F - T H, Inc.";"2002-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +17851;21100992408;"Siglo XXI, Literatura y Cultura Espanolas";journal;"21727457";"Universidad de Valladolid";Yes;Yes;0,282;Q1;3;13;70;732;18;70;0,27;56,31;30,00;0;Spain;Western Europe;"Universidad de Valladolid";"2017-2025";"Cultural Studies (Q1); Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +17852;5800170634;"Astropolitics";journal;"14777622, 15572943";"Routledge";No;No;0,282;Q2;16;15;37;755;53;31;1,41;50,33;16,67;0;United States;Northern America;"Routledge";"2005-2026";"Political Science and International Relations (Q2); Astronomy and Astrophysics (Q3)";"Physics and Astronomy; Social Sciences" +17853;20127;"Canadian Journal of Hospital Pharmacy";journal;"19202903, 00084123";"Canadian Society of Hospital Pharmacists";No;No;0,282;Q2;34;61;204;1044;146;154;0,60;17,11;62,20;0;Canada;Northern America;"Canadian Society of Hospital Pharmacists";"1973-2026";"Pharmacy (Q2); Pharmacology (medical) (Q3)";"Health Professions; Medicine" +17854;21300;"Health Marketing Quarterly";journal;"15450864, 07359683";"Routledge";No;No;0,282;Q2;35;21;75;1216;141;69;2,06;57,90;44,26;0;United States;Northern America;"Routledge";"1983-2026";"Health Professions (miscellaneous) (Q2); Marketing (Q3)";"Business, Management and Accounting; Health Professions" +17855;36664;"Human Organization";journal;"19383525, 00187259";"Taylor and Francis Ltd.";No;No;0,282;Q2;67;44;110;1845;90;100;0,93;41,93;66,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1948, 1951, 1961-1962, 1969-1970, 1974-1991, 1993-2026";"Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +17856;21100809804;"Journal of Agriculture and Environment for International Development";journal;"22402802";"Firenze University Press";Yes;Yes;0,282;Q2;14;34;40;2192;67;40;1,80;64,47;34,65;0;Italy;Western Europe;"Firenze University Press";"2016-2025";"Agricultural and Biological Sciences (miscellaneous) (Q2); Development (Q3); Environmental Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +17857;21101055962;"Journal of Park and Recreation Administration";journal;"21606862, 07351968";"Sagamore Publishing LLC";No;No;0,282;Q2;15;25;104;1263;129;98;0,88;50,52;48,81;0;United States;Northern America;"Sagamore Publishing LLC";"2019-2026";"Social Sciences (miscellaneous) (Q2); Urban Studies (Q2); Nature and Landscape Conservation (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Environmental Science; Social Sciences" +17858;21100228566;"Afrika Matematika";journal;"10129405, 21907668";"Springer Science + Business Media";Yes;No;0,282;Q3;31;177;270;4621;244;270;0,90;26,11;24,29;0;United States;Northern America;"Springer Science + Business Media";"2011-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17859;7400153102;"AMIA Annual Symposium proceedings";journal;"1942597X";"";No;No;0,282;Q3;74;0;449;0;468;449;0,88;0,00;0,00;0;United States;Northern America;"";"2003, 2005-2024";"Medicine (miscellaneous) (Q3)";"Medicine" +17860;21101302105;"Annals of Thoracic Surgery Short Reports";journal;"27729931";"Elsevier B.V.";Yes;No;0,282;Q3;5;296;215;2327;139;208;0,65;7,86;24,70;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Cardiology and Cardiovascular Medicine (Q3); Hematology (Q3); Surgery (Q3); Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +17861;5600157614;"Applied Mathematics";journal;"19930445, 10051031";"Springer Verlag";No;No;0,282;Q3;25;63;138;1983;155;138;1,08;31,48;32,21;0;Germany;Western Europe;"Springer Verlag";"1993-2025";"Applied Mathematics (Q3)";"Mathematics" +17862;12542;"Berkeley Planning Journal";journal;"10475192";"University of California, Berkeley";Yes;No;0,282;Q3;19;0;5;0;3;4;0,00;0,00;0,00;0;United States;Northern America;"University of California, Berkeley";"1992-1997, 1999-2002, 2004-2014, 2016-2018, 2020, 2022";"Geography, Planning and Development (Q3)";"Social Sciences" +17863;21101073291;"Bulletin of Geophysics and Oceanography";journal;"2785339X, 27852970";"Istituto Nazionale di Oceanografia e di Geofisica Sperimentale";Yes;Yes;0,282;Q3;11;25;107;906;131;102;1,40;36,24;30,30;0;Italy;Western Europe;"Istituto Nazionale di Oceanografia e di Geofisica Sperimentale";"2021-2025";"Computers in Earth Sciences (Q3); Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3); Oceanography (Q3)";"Earth and Planetary Sciences" +17864;13427;"Bulletin of the Polish Academy of Sciences: Technical Sciences";journal;"23001917, 02397528";"Polska Akademia Nauk";Yes;No;0,282;Q3;52;135;345;4246;483;340;1,26;31,45;25,24;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1983-1988, 2004-2026";"Artificial Intelligence (Q3); Atomic and Molecular Physics, and Optics (Q3); Computer Networks and Communications (Q3); Engineering (miscellaneous) (Q3); Information Systems (Q3)";"Computer Science; Engineering; Physics and Astronomy" +17865;21100903432;"Central Bank Review";journal;"13030701, 25241699";"Elsevier B.V.";Yes;No;0,282;Q3;21;22;40;991;70;40;1,93;45,05;30,77;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +17866;26726;"Chinese Journal of Internal Medicine";journal;"05781426";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,282;Q3;28;137;621;4819;548;616;0,66;35,18;49,09;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1957-1959, 1979-1997, 1999-2017, 2019-2026";"Internal Medicine (Q3)";"Medicine" +17867;21101052839;"Civil Engineering Infrastructures Journal";journal;"24236691, 23222093";"University of Tehran";Yes;Yes;0,282;Q3;10;17;70;551;94;70;1,40;32,41;22,86;0;Iran;Middle East;"University of Tehran";"2019-2025";"Civil and Structural Engineering (Q3)";"Engineering" +17868;145358;"Egyptian Journal of Chemistry";journal;"04492285, 23570245";"National Information and Documentation Centre";No;No;0,282;Q3;40;683;2657;37463;4189;2657;1,47;54,85;48,90;0;Egypt;Africa/Middle East;"National Information and Documentation Centre";"2001, 2004-2026";"Biochemistry (medical) (Q3); Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Materials Chemistry (Q3); Materials Science (miscellaneous) (Q3); Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Materials Science; Medicine" +17869;21100842801;"Energetika. Proceedings of CIS Higher Education Institutions and Power Engineering Associations";journal;"24140341, 10297448";"Belarusian National Technical University";Yes;Yes;0,282;Q3;11;24;116;530;61;116;0,47;22,08;36,11;0;Belarus;Eastern Europe;"Belarusian National Technical University";"2015, 2017-2025";"Energy Engineering and Power Technology (Q3); Nuclear Energy and Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +17870;21101218125;"Eurasian Journal of Business and Economics";journal;"16945972, 16945948";"Ala-Too International University";Yes;Yes;0,282;Q3;7;4;30;328;46;30;1,62;82,00;54,55;0;Kyrgyzstan;Asiatic Region;"Ala-Too International University";"2020-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +17871;21100235628;"Hearing, Balance and Communication";journal;"21695725, 21695717";"Wolters Kluwer Medknow Publications";No;No;0,282;Q3;17;4;100;87;74;97;0,67;21,75;25,00;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2013-2025";"Otorhinolaryngology (Q3); Speech and Hearing (Q3)";"Health Professions; Medicine" +17872;21100886546;"International Journal of Computer Mathematics: Computer Systems Theory";journal;"23799935, 23799927";"Taylor and Francis Ltd.";No;No;0,282;Q3;12;18;57;461;43;57;0,59;25,61;41,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Computational Mathematics (Q3); Computational Theory and Mathematics (Q3)";"Computer Science; Mathematics" +17873;11900154400;"International Journal of Information Technology and Web Engineering";journal;"15541053, 15541045";"IGI Publishing";No;No;0,282;Q3;19;3;66;76;152;66;2,33;25,33;42,86;0;United States;Northern America;"IGI Publishing";"2006-2025";"Computer Science (miscellaneous) (Q3)";"Computer Science" +17874;28117;"Japanese Journal of Applied Physics";journal;"13474065, 00214922";"Institute of Physics";No;No;0,282;Q3;187;735;2649;27331;3491;2575;1,33;37,19;17,28;0;Japan;Asiatic Region;"Institute of Physics";"1963-2025";"Engineering (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Engineering; Physics and Astronomy" +17875;15873;"Journal of Clinical Neuromuscular Disease";journal;"15371611, 15220443";"Lippincott Williams and Wilkins";No;No;0,282;Q3;37;32;132;456;86;80;0,64;14,25;54,02;0;United States;Northern America;"Lippincott Williams and Wilkins";"1999-2025";"Medicine (miscellaneous) (Q3); Neurology (Q3); Neurology (clinical) (Q3)";"Medicine; Neuroscience" +17876;18040;"Journal of Electronic Testing: Theory and Applications (JETTA)";journal;"15730727, 09238174";"Springer Netherlands";No;No;0,282;Q3;39;48;157;1414;213;135;1,25;29,46;20,00;0;Netherlands;Western Europe;"Springer Netherlands";"1990-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +17877;15964;"Journal of Prevention and Intervention in the Community";journal;"10852352, 15407330";"Routledge";No;No;0,282;Q3;41;52;83;2474;97;80;1,12;47,58;67,28;0;United States;Northern America;"Routledge";"1996-2026";"Medicine (miscellaneous) (Q3); Social Psychology (Q4)";"Medicine; Psychology" +17878;21101339540;"Journal of Psychological Science";journal;"16716981";"Chinese Psycholocial Society";No;No;0,282;Q3;10;126;535;7353;400;534;0,68;58,36;41,63;0;China;Asiatic Region;"Chinese Psycholocial Society";"2021-2026";"Applied Psychology (Q3); Clinical Psychology (Q3); Developmental and Educational Psychology (Q3); Experimental and Cognitive Psychology (Q4)";"Psychology" +17879;5400152708;"Laser Physics Letters";journal;"1612202X, 16122011";"IOP Publishing Ltd.";No;No;0,282;Q3;85;123;493;4612;649;493;1,46;37,50;30,64;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2004-2025";"Instrumentation (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +17880;19700201312;"Macroeconomics and Finance in Emerging Market Economies";journal;"17520843, 17520851";"Taylor and Francis Ltd.";No;No;0,282;Q3;17;71;96;3690;115;92;1,15;51,97;31,94;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +17881;21101042200;"Open Anesthesia Journal";journal;"25896458";"Bentham Science Publishers";No;No;0,282;Q3;10;7;34;149;33;33;0,69;21,29;34,62;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2019-2025";"Anesthesiology and Pain Medicine (Q3)";"Medicine" +17882;21100933895;"Resource Recovery and Reuse";book series;"24780510, 24780529";"International Water Management Institute";No;No;0,282;Q3;5;0;2;0;6;1;3,00;0,00;0,00;0;Sri Lanka;Asiatic Region;"International Water Management Institute";"2019-2021, 2023";"Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3); Health, Toxicology and Mutagenesis (Q4)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +17883;4700152414;"Revista Mexicana de Biodiversidad";journal;"18703453, 20078706";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,282;Q3;38;56;229;2934;195;229;0,79;52,39;31,16;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1999, 2006-2026";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +17884;20325;"Transactions of Famena";journal;"13331124, 18491391";"University of Zagreb";Yes;No;0,282;Q3;20;34;93;1099;143;93;1,71;32,32;21,50;0;Croatia;Eastern Europe;"University of Zagreb";"2002-2025";"Mechanics of Materials (Q3)";"Engineering" +17885;21100887534;"Economic History of Developing Regions";journal;"20780389, 20780397";"Taylor and Francis Ltd.";No;No;0,281;Q1;24;14;38;941;40;38;1,00;67,21;26,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"History (Q1); Development (Q3); Economics and Econometrics (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +17886;21101116672;"International Critical Thought";journal;"21598312, 21598282";"Taylor and Francis Ltd.";No;No;0,281;Q1;16;34;103;2177;99;102;0,68;64,03;22,22;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Cultural Studies (Q1); Social Sciences (miscellaneous) (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +17887;21100901574;"Istorija 20 Veka";journal;"25603647, 03523160";"Institut za savremenu istoriju";Yes;Yes;0,281;Q1;4;26;76;739;21;76;0,34;28,42;12,50;0;Serbia;Eastern Europe;"Institut za savremenu istoriju";"2018-2026";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +17888;5600155107;"Journal of Australian Studies";journal;"0314769X, 14443058";"Taylor and Francis Ltd.";No;No;0,281;Q1;26;39;120;2134;57;107;0,42;54,72;61,54;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-2026";"Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +17889;100149;"Libyan Studies";journal;"02637189, 20526148";"Cambridge University Press";No;No;0,281;Q1;11;13;39;775;20;37;0,64;59,62;48,57;0;United Kingdom;Western Europe;"Cambridge University Press";"1984-1985, 1988, 1990, 2013-2025";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +17890;21101147603;"Mazahib Jurnal Pemikiran Hukum Islam";journal;"18299067, 24606588";"Faculty of Sharia, Sultan Aji Muhammad Idris State Islamic University";Yes;Yes;0,281;Q1;7;19;45;1129;71;45;1,62;59,42;21,15;0;Indonesia;Asiatic Region;"Faculty of Sharia, Sultan Aji Muhammad Idris State Islamic University";"2019-2025";"Religious Studies (Q1); Law (Q2); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +17891;21100449131;"Pyrenae";journal;"23399171, 00798215";"Universitat de Barcelona";Yes;Yes;0,281;Q1;7;14;50;979;21;50;0,42;69,93;39,47;0;Spain;Western Europe;"Universitat de Barcelona";"2015-2025";"Classics (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +17892;21101168868;"Asian Journal of Mycology";journal;"26511339";"MRF";No;No;0,281;Q2;16;19;59;1279;73;59;1,31;67,32;32,08;0;Thailand;Asiatic Region;"MRF";"2019-2025";"Forestry (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +17893;100888;"Built Environment";journal;"02637960";"Alexandrine Press";No;No;0,281;Q2;53;31;89;1792;82;88;0,73;57,81;46,77;0;United Kingdom;Western Europe;"Alexandrine Press";"1981-2025";"Urban Studies (Q2); Geography, Planning and Development (Q3)";"Social Sciences" +17894;19891;"Canadian Journal of Linguistics";journal;"17101115, 00084131";"Cambridge University Press";No;No;0,281;Q2;25;3;72;177;42;70;0,45;59,00;66,67;0;Canada;Northern America;"Cambridge University Press";"1965, 1980-1982, 1986-2025";"Linguistics and Language (Q2)";"Social Sciences" +17895;21100259119;"Journal of International and Comparative Social Policy";journal;"21699763, 2169978X";"Cambridge University Press";No;No;0,281;Q2;28;21;55;1541;77;54;1,29;73,38;46,81;0;United Kingdom;Western Europe;"Cambridge University Press";"2013-2026";"Social Sciences (miscellaneous) (Q2); Health (social science) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +17896;21101100223;"Journal of Midwifery and Reproductive Health";journal;"23454792";"Mashhad University of Medical Sciences";Yes;Yes;0,281;Q2;12;46;152;1628;125;145;0,78;35,39;68,26;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2019-2026";"Maternity and Midwifery (Q2); Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine; Nursing" +17897;19700201423;"Journal of Pharmaceutical Health Services Research";journal;"17598885, 17598893";"Oxford University Press";No;No;0,281;Q2;23;30;143;1121;116;137;1,00;37,37;51,55;0;United Kingdom;Western Europe;"Oxford University Press";"2010-2026";"Pharmacy (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Economics, Econometrics and Finance; Health Professions; Pharmacology, Toxicology and Pharmaceutics" +17898;24834;"Journal of Value Inquiry";journal;"15730492, 00225363";"Springer Netherlands";No;No;0,281;Q2;25;66;145;2335;112;144;0,60;35,38;17,57;0;Netherlands;Western Europe;"Springer Netherlands";"1967-2026";"Law (Q2); Philosophy (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +17899;21100944646;"SiSal Journal";journal;"21853762";"Kanda University of International Studies";Yes;Yes;0,281;Q2;9;33;95;1243;91;85;1,06;37,67;53,85;0;Japan;Asiatic Region;"Kanda University of International Studies";"2019-2025";"Linguistics and Language (Q2); Computer Science Applications (Q3); Education (Q3)";"Computer Science; Social Sciences" +17900;36814;"Acta Dermatovenerologica Alpina, Pannonica et Adriatica";journal;"13184458, 15812979";"Association of Slovenian Dermatovenerologists";No;No;0,281;Q3;35;40;115;1065;111;108;0,92;26,63;65,32;0;Slovenia;Eastern Europe;"Association of Slovenian Dermatovenerologists";"1994-2026";"Dermatology (Q3); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +17901;17063;"Acta Veterinaria Hungarica";journal;"15882705, 02366290";"Akademiai Kiado ZRt.";No;No;0,281;Q3;42;38;105;1336;102;105;1,07;35,16;42,05;0;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"1983-2026";"Veterinary (miscellaneous) (Q3)";"Veterinary" +17902;26327;"Bauingenieur";trade journal;"14364867, 00056650";"VDI Fachmedien GmbH & Co. KG";No;No;0,281;Q3;22;76;280;1337;111;207;0,40;17,59;22,44;0;Germany;Western Europe;"VDI Fachmedien GmbH & Co. KG";"1969-1990, 2005-2026";"Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +17903;19900191982;"Bois et Forets des Tropiques";journal;"17775760, 0006579X";"CIRAD";Yes;No;0,281;Q3;21;7;73;326;88;66;1,36;46,57;27,78;0;France;Western Europe;"CIRAD";"2010-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Forestry (Q3)";"Agricultural and Biological Sciences; Environmental Science" +17904;21100945161;"Bulletin of Geography, Physical Geography Series";journal;"23008490, 20807686";"Sciendo";Yes;Yes;0,281;Q3;8;14;33;728;40;33;1,23;52,00;35,48;0;Poland;Eastern Europe;"Sciendo";"2019-2025";"Geography, Planning and Development (Q3); Geophysics (Q3)";"Earth and Planetary Sciences; Social Sciences" +17905;25824;"Chemistry of Heterocyclic Compounds";journal;"00093122, 15738353";"Springer";No;No;0,281;Q3;45;39;309;1691;484;304;2,03;43,36;35,29;0;United States;Northern America;"Springer";"1965-2025";"Organic Chemistry (Q3)";"Chemistry" +17906;21101058102;"European Journal of Education and Psychology";journal;"18888992, 19892209";"Universidad Autonoma de Chile";No;Yes;0,281;Q3;12;14;43;854;48;41;1,24;61,00;57,41;0;Chile;Latin America;"Universidad Autonoma de Chile";"2019-2025";"Education (Q3); Psychology (miscellaneous) (Q3)";"Psychology; Social Sciences" +17907;19600157213;"GAMM Mitteilungen";journal;"09367195, 15222608";"John Wiley and Sons Inc";No;No;0,281;Q3;28;14;47;818;66;42;1,61;58,43;21,28;0;Germany;Western Europe;"John Wiley and Sons Inc";"2009-2025";"Applied Mathematics (Q3); Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Materials Science; Mathematics; Physics and Astronomy" +17908;21101162867;"Gulf Journal of Mathematics";journal;"23094966";"Canadian University of Dubai";No;No;0,281;Q3;9;185;188;4073;165;188;0,94;22,02;27,37;0;United Arab Emirates;Middle East;"Canadian University of Dubai";"2020-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17909;8600153101;"Horticultura Brasileira";journal;"18069991, 01020536";"Sociedade de Olericultura do Brasil";Yes;No;0,281;Q3;32;14;125;471;136;124;0,94;33,64;32,26;0;Brazil;Latin America;"Sociedade de Olericultura do Brasil";"2007-2025";"Horticulture (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +17910;19270;"International Journal of Software Engineering and Knowledge Engineering";journal;"17936403, 02181940";"World Scientific Publishing Co. Pte Ltd";No;No;0,281;Q3;45;75;219;2851;281;215;1,39;38,01;33,08;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1992, 1994, 1996-2026";"Artificial Intelligence (Q3); Computer Graphics and Computer-Aided Design (Q3); Computer Networks and Communications (Q3); Software (Q3)";"Computer Science" +17911;18056;"Jiqiren/Robot";journal;"10020446";"Chinese Academy of Sciences";No;No;0,281;Q3;35;67;191;3155;376;191;1,95;47,09;26,67;0;China;Asiatic Region;"Chinese Academy of Sciences";"1998, 2001-2026";"Applied Mathematics (Q3); Artificial Intelligence (Q3); Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3); Modeling and Simulation (Q3); Software (Q3)";"Computer Science; Engineering; Mathematics" +17912;19200157026;"Journal of Apicultural Science";journal;"22994831, 16434439";"";Yes;No;0,281;Q3;31;13;42;513;60;42;1,27;39,46;38,89;0;Poland;Eastern Europe;"";"2008-2026";"Insect Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17913;11700154334;"Journal of Derivatives";journal;"10741240";"Portfolio Management Research";No;No;0,281;Q3;53;19;99;705;37;89;0,19;37,11;23,91;0;United States;Northern America;"Portfolio Management Research";"1996-2025";"Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +17914;21101167522;"Journal of Electrical Engineering (China)";journal;"20959524";"";No;No;0,281;Q3;12;125;420;4463;516;418;1,28;35,70;31,45;0;China;Asiatic Region;"";"2019-2025";"Electrical and Electronic Engineering (Q3)";"Engineering" +17915;19700174888;"Journal of Tehran University Heart Center";journal;"20082371, 17358620";"Teheran University of Medical Sciences";Yes;Yes;0,281;Q3;23;39;152;973;130;130;0,71;24,95;44,79;0;Iran;Middle East;"Teheran University of Medical Sciences";"2007-2025";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +17916;21100262490;"Journal of Wireless Mobile Networks, Ubiquitous Computing, and Dependable Applications";journal;"20935382, 20935374";"Innovative Information Science and Technology Research Group";Yes;No;0,281;Q3;33;173;190;5345;707;188;4,11;30,90;41,11;0;South Korea;Asiatic Region;"Innovative Information Science and Technology Research Group";"2010-2026";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Computer Science (miscellaneous) (Q3)";"Computer Science" +17917;21101064220;"Larhyss Journal";journal;"11123680, 25219782";"Research Laboratory in Subterranean and Surface Hydraulics, University of Biskra";No;No;0,281;Q3;18;54;147;3392;690;146;5,08;62,81;25,97;0;Algeria;Africa;"Research Laboratory in Subterranean and Surface Hydraulics, University of Biskra";"2019-2025";"Civil and Structural Engineering (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3); Water Science and Technology (Q3)";"Engineering; Environmental Science" +17918;21100824437;"Led i Sneg";journal;"20766734, 24123765";"Izdatel'stvo Nauka";Yes;Yes;0,281;Q3;15;39;134;1203;82;131;0,66;30,85;34,43;0;Russian Federation;Eastern Europe;"Izdatel'stvo Nauka";"2017-2025";"Earth-Surface Processes (Q3); Geochemistry and Petrology (Q3); Water Science and Technology (Q3); Global and Planetary Change (Q4)";"Earth and Planetary Sciences; Environmental Science" +17919;17327;"Nuclear Medicine Review";journal;"16444345, 15069680";"Via Medica";Yes;Yes;0,281;Q3;28;17;76;290;67;73;1,00;17,06;54,55;0;Poland;Eastern Europe;"Via Medica";"2002-2026";"Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +17920;21100792747;"Ornamental Horticulture";journal;"2447536X";"Brazilian Society of Floriculture and Ornamental Plants";Yes;Yes;0,281;Q3;18;35;150;1134;168;144;0,98;32,40;43,57;0;Brazil;Latin America;"Brazilian Society of Floriculture and Ornamental Plants";"2016-2026";"Horticulture (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +17921;18819;"Pesquisa Veterinaria Brasileira";journal;"0100736X, 16785150";"Colegio Brasileiro de Patologia Animal";Yes;No;0,281;Q3;44;50;192;1967;166;192;0,77;39,34;54,21;0;Brazil;Latin America;"Colegio Brasileiro de Patologia Animal";"1996-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +17922;21100199808;"Siberian Electronic Mathematical Reports";journal;"18133304";"Sobolev Institute of Mathematics";Yes;No;0,281;Q3;16;113;298;2450;130;298;0,41;21,68;25,15;0;Russian Federation;Eastern Europe;"Sobolev Institute of Mathematics";"2011-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17923;21954;"Sucht";journal;"09395911";"Hogrefe Publishing";No;No;0,281;Q3;29;39;136;1193;74;90;0,57;30,59;50,00;0;Germany;Western Europe;"Hogrefe Publishing";"1991-2026";"Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +17924;29565;"Transactions of the Japan Society for Aeronautical and Space Sciences";journal;"05493811";"Japan Society for Aeronautical and Space Sciences";No;No;0,281;Q3;25;24;84;623;74;84;0,87;25,96;16,25;0;Japan;Asiatic Region;"Japan Society for Aeronautical and Space Sciences";"1969-2026";"Aerospace Engineering (Q3); Space and Planetary Science (Q3)";"Earth and Planetary Sciences; Engineering" +17925;19700175022;"Memo - Magazine of European Medical Oncology";journal;"18655076, 18655041";"Springer";No;No;0,281;Q4;25;75;209;1738;105;166;0,59;23,17;44,59;0;Austria;Western Europe;"Springer";"2008-2026";"Hematology (Q4); Oncology (Q4)";"Medicine" +17926;21101185422;"Proceedings of the AAAI Conference on Human Computation and Crowdsourcing, HCOMP";conference and proceedings;"27691330, 27691349";"Association for the Advancement of Artificial Intelligence";No;No;0,281;-;20;0;58;0;148;55;2,43;0,00;0,00;0;United States;Northern America;"Association for the Advancement of Artificial Intelligence";"2019-2024";"Computational Theory and Mathematics; Human-Computer Interaction";"Computer Science" +17927;6500153134;"African Identities";journal;"14725843, 14725851";"Routledge";No;No;0,280;Q1;24;261;190;12633;232;187;1,13;48,40;28,10;0;United States;Northern America;"Routledge";"2010-2026";"Cultural Studies (Q1); Anthropology (Q2)";"Social Sciences" +17928;20500195081;"International Journal of Intangible Heritage";journal;"19753586, 19754019";"The National Folk Museum of Korea";Yes;No;0,280;Q1;14;15;45;516;41;39;0,68;34,40;36,84;0;South Korea;Asiatic Region;"The National Folk Museum of Korea";"2011-2025";"Conservation (Q1); Cultural Studies (Q1); Museology (Q1)";"Arts and Humanities; Social Sciences" +17929;21101264303;"Miqot: Jurnal Ilmu-ilmu Keislaman";journal;"25023616, 08520720";"Universitas Islam Negeri Sumatera Utara";Yes;No;0,280;Q1;5;23;48;1256;59;48;1,53;54,61;19,23;0;Indonesia;Asiatic Region;"Universitas Islam Negeri Sumatera Utara";"2020-2026";"Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +17930;21101046180;"Studies in Digital Heritage";journal;"25741748";"Indiana University";Yes;Yes;0,280;Q1;13;9;18;231;20;18;1,14;25,67;44,44;0;United States;Northern America;"Indiana University";"2017-2025";"Classics (Q1); History (Q1); Museology (Q1); Archeology (arts and humanities) (Q2)";"Arts and Humanities" +17931;5600153226;"Thesis Eleven";journal;"14617455, 07255136";"SAGE Publications Ltd";No;No;0,280;Q1;38;83;170;2652;108;161;0,48;31,95;25,27;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1980-1994, 1996-2026";"Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +17932;21100267789;"Acta Onomastica";journal;"12114413";"Czech Academy of Sciences";No;No;0,280;Q2;5;26;85;771;22;72;0,28;29,65;44,44;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"2011-2013, 2016-2025";"Linguistics and Language (Q2)";"Social Sciences" +17933;21100944126;"European State Aid Law Quarterly";journal;"16195272, 21908184";"Lexxion Verlagsgesellschaft mbH";No;No;0,280;Q2;6;62;181;452;34;108;0,20;7,29;44,19;0;Germany;Western Europe;"Lexxion Verlagsgesellschaft mbH";"2019-2025";"Law (Q2); Development (Q3); Public Administration (Q3)";"Social Sciences" +17934;21101021175;"Lex Portus";journal;"2617541X, 2524101X";"National University Odessa Law Academy";Yes;Yes;0,280;Q2;9;17;49;822;85;48;2,06;48,35;29,17;0;Ukraine;Eastern Europe;"National University Odessa Law Academy";"2019-2025";"Law (Q2); Management, Monitoring, Policy and Law (Q3); Political Science and International Relations (Q3); Transportation (Q4)";"Environmental Science; Social Sciences" +17935;19700189400;"Pharmaceutical Sciences";journal;"23832886, 1735403X";"Tabriz University of Medical Sciences";Yes;Yes;0,280;Q2;29;48;156;2513;265;150;1,85;52,35;45,64;0;Iran;Middle East;"Tabriz University of Medical Sciences";"2009-2025";"Pharmacy (Q2); Pharmaceutical Science (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +17936;21101074672;"Public Anthropologist";journal;"25891715, 25891707";"Brill Academic Publishers";No;No;0,280;Q2;9;17;40;852;43;35;0,69;50,12;82,35;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2025";"Anthropology (Q2)";"Social Sciences" +17937;21100400023;"Revista de Linguistica y Lenguas Aplicadas";journal;"18866298, 18862438";"Universidad Politecnica de Valencia";Yes;Yes;0,280;Q2;10;11;38;603;36;38;1,11;54,82;65,00;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2015-2025";"Linguistics and Language (Q2)";"Social Sciences" +17938;21101105301;"Women, Gender and Research";journal;"22456937";"Kobenhavns Universitet";Yes;Yes;0,280;Q2;6;18;73;861;62;59;0,81;47,83;80,77;0;Denmark;Western Europe;"Kobenhavns Universitet";"2019-2025";"Gender Studies (Q2)";"Social Sciences" +17939;19500157808;"Archives of Materials Science and Engineering";journal;"18972764";"International OCSCO World Press";Yes;No;0,280;Q3;29;21;133;855;184;132;1,48;40,71;29,79;0;Poland;Eastern Europe;"International OCSCO World Press";"2009-2025";"Materials Science (miscellaneous) (Q3)";"Materials Science" +17940;16768;"Australasian Plant Pathology";journal;"08153191, 14486032";"Springer Nature";No;No;0,280;Q3;72;62;286;2036;296;284;1,07;32,84;36,12;2;Netherlands;Western Europe;"Springer Nature";"1978-2026";"Plant Science (Q3)";"Agricultural and Biological Sciences" +17941;28771;"Bulletin du Cancer";journal;"00074551, 17696917";"John Libbey";No;No;0,280;Q3;46;238;536;7297;453;372;0,78;30,66;56,75;1;France;Western Europe;"John Libbey";"1966-2026";"Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Cancer Research (Q4); Hematology (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +17942;22745;"Canadian Journal of Chemistry";journal;"00084042, 14803291";"National Research Council of Canada";No;No;0,280;Q3;76;99;293;4975;321;285;0,98;50,25;33,58;0;Canada;Northern America;"National Research Council of Canada";"1951, 1960, 1965, 1969, 1973-2026";"Chemistry (miscellaneous) (Q3); Organic Chemistry (Q3); Catalysis (Q4)";"Chemical Engineering; Chemistry" +17943;21100203110;"Computer Optics";journal;"24126179, 01342452";"Institution of Russian Academy of Sciences";Yes;Yes;0,280;Q3;43;134;326;4456;450;326;1,35;33,25;23,66;0;Russian Federation;Eastern Europe;"Institution of Russian Academy of Sciences";"2008-2025";"Atomic and Molecular Physics, and Optics (Q3); Computer Science Applications (Q3); Computer Vision and Pattern Recognition (Q3); Electrical and Electronic Engineering (Q3); Engineering (miscellaneous) (Q3)";"Computer Science; Engineering; Physics and Astronomy" +17944;21100211373;"Formacion Universitaria";journal;"07185006";"Centro de Informacion Tecnologica";Yes;Yes;0,280;Q3;27;92;206;2955;292;205;1,38;32,12;45,31;0;Chile;Latin America;"Centro de Informacion Tecnologica";"2012-2025";"Education (Q3)";"Social Sciences" +17945;21101300989;"Formal Methods in Computer-Aided Design, FMCAD";journal;"27087824";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,280;Q3;3;0;33;0;37;31;1,12;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q3); Computer Graphics and Computer-Aided Design (Q3); Computer Science (miscellaneous) (Q3); Hardware and Architecture (Q3)";"Computer Science" +17946;19700182352;"Geologos";journal;"14268981, 20806574";"De Gruyter Open Ltd";Yes;Yes;0,280;Q3;24;16;40;865;39;38;1,00;54,06;40,00;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2009-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +17947;21100981225;"Gynecology";journal;"20795831, 20795696";"Consilium MediCum";Yes;No;0,280;Q3;10;49;221;1515;169;221;0,91;30,92;74,33;0;Russian Federation;Eastern Europe;"Consilium MediCum";"2018-2025";"Obstetrics and Gynecology (Q3)";"Medicine" +17948;14058;"Hospital Topics";journal;"00185868, 19399278";"Informa UK Ltd";No;No;0,280;Q3;28;75;100;2207;113;100;1,13;29,43;46,74;1;United States;Northern America;"Informa UK Ltd";"1946-1949, 1961, 1964-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +17949;23178;"Indian Journal of Pure and Applied Mathematics";journal;"00195588, 09757465";"Indian National Science Academy";Yes;No;0,280;Q3;44;267;483;5784;287;482;0,60;21,66;27,74;0;India;Asiatic Region;"Indian National Science Academy";"1996-2026";"Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics" +17950;19700183131;"International Journal of Innovation in Science and Mathematics Education";journal;"22004270";"";No;No;0,280;Q3;21;5;85;168;69;82;0,64;33,60;20,00;0;Australia;Pacific Region;"";"2010-2025";"Education (Q3)";"Social Sciences" +17951;21100864538;"Izvestiya Vysshikh Uchebnykh Zavedeniy. Prikladnaya Nelineynaya Dinamika";journal;"08696632, 25421905";"Saratov State University";Yes;Yes;0,280;Q3;13;55;156;1791;87;148;0,60;32,56;22,76;0;Russian Federation;Eastern Europe;"Saratov State University";"2005-2026";"Applied Mathematics (Q3); Physics and Astronomy (miscellaneous) (Q3); Statistical and Nonlinear Physics (Q4)";"Mathematics; Physics and Astronomy" +17952;145726;"Jiangsu Daxue Xuebao (Ziran Kexue Ban) / Journal of Jiangsu University (Natural Science Edition)";journal;"16717775";"Journal of Jiangsu University (Natural Science Edition)";No;No;0,280;Q3;19;94;305;1517;263;305;0,98;16,14;33,54;0;China;Asiatic Region;"Journal of Jiangsu University (Natural Science Edition)";"2005-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +17953;21100830110;"Journal of Dynamics and Control";journal;"16726553";"";No;No;0,280;Q3;9;119;301;3218;325;301;1,09;27,04;28,53;0;China;Asiatic Region;"";"2017-2025";"Computational Mechanics (Q3); Control and Optimization (Q3)";"Engineering; Mathematics" +17954;23356;"Journal of Environmental Engineering and Science";journal;"1496256X, 14962551";"ICE Publishing";No;No;0,280;Q3;50;19;58;1364;81;56;1,57;71,79;28,36;1;United Kingdom;Western Europe;"ICE Publishing";"2002-2008, 2015-2025";"Environmental Engineering (Q3); Environmental Science (miscellaneous) (Q3); Environmental Chemistry (Q4)";"Environmental Science" +17955;19600166316;"Journal of Internet Services and Applications";journal;"18674828, 18690238";"Brazilian Computing Society";Yes;Yes;0,280;Q3;36;48;61;1973;81;61;1,40;41,10;17,69;0;Brazil;Latin America;"Brazilian Computing Society";"2010-2026";"Computer Networks and Communications (Q3); Computer Science Applications (Q3)";"Computer Science" +17956;19800188017;"Journal of Orthopaedics, Trauma and Rehabilitation";journal;"22104925, 22104917";"Elsevier B.V.";Yes;No;0,280;Q3;11;72;112;1691;100;112;0,97;23,49;34,75;0;Netherlands;Western Europe;"Elsevier B.V.";"2010-2025";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)";"Health Professions; Medicine" +17957;30280;"Journal of the Kansas Entomological Society";journal;"19372353, 00228567";"Kansas Entomological Society";No;No;0,280;Q3;41;16;37;611;37;37;0,93;38,19;26,92;0;United States;Northern America;"Kansas Entomological Society";"1994-2025";"Insect Science (Q3)";"Agricultural and Biological Sciences" +17958;21101174188;"Life Cycle Reliability and Safety Engineering";journal;"25201360, 25201352";"Springer";No;No;0,280;Q3;10;88;101;3626;177;101;1,85;41,20;29,25;0;Singapore;Asiatic Region;"Springer";"2022-2026";"Applied Mathematics (Q3); Civil and Structural Engineering (Q3); Control and Systems Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering; Materials Science; Mathematics" +17959;21100236602;"Mechanics and Industry";journal;"22577777, 22577750";"EDP Sciences";Yes;No;0,280;Q3;32;39;106;1120;151;106;1,32;28,72;24,29;0;France;Western Europe;"EDP Sciences";"2012-2026";"Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Engineering; Materials Science" +17960;19500157111;"New Medit";journal;"26111128, 15945685";"Bononia University Press";Yes;Yes;0,280;Q3;27;45;119;2250;158;114;1,19;50,00;39,55;0;Italy;Western Europe;"Bononia University Press";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q3); Development (Q3); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Social Sciences" +17961;21100967079;"Transactions of the London Mathematical Society";journal;"20524986";"John Wiley & Sons Inc.";Yes;No;0,280;Q3;9;18;17;694;9;17;0,50;38,56;22,73;0;United States;Northern America;"John Wiley & Sons Inc.";"2014-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17962;19968;"Yonago Acta Medica";journal;"05135710, 13468049";"Tottori University Faculty of Medicine";No;No;0,280;Q3;27;39;148;1154;144;148;1,03;29,59;22,73;0;Japan;Asiatic Region;"Tottori University Faculty of Medicine";"1965-1977, 1986-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +17963;21100255708;"Integrated Communications, Navigation and Surveillance Conference, ICNS";conference and proceedings;"21554951, 21554943";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,280;-;18;136;183;2678;233;178;1,28;19,69;20,05;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2014, 2019-2025";"Computer Graphics and Computer-Aided Design; Computer Vision and Pattern Recognition; Human-Computer Interaction";"Computer Science" +17964;18901;"Journal of Transport History";journal;"00225266, 17593999";"SAGE Publications Inc.";No;No;0,279;Q1;23;39;82;1552;47;73;0,53;39,79;28,95;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1979, 1981-2026";"History (Q1); Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q3); Transportation (Q4)";"Arts and Humanities; Social Sciences" +17965;21101291267;"Nurani";journal;"16938437, 24609102";"Fakultas Syariah dan Hukum, Universitas Islam Negeri Raden Fatah";Yes;No;0,279;Q1;6;40;88;2067;101;88;1,40;51,68;35,56;0;Indonesia;Asiatic Region;"Fakultas Syariah dan Hukum, Universitas Islam Negeri Raden Fatah";"2021-2025";"Religious Studies (Q1); Law (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +17966;5600155076;"Revista de Estudios Sociales";journal;"19005180, 0123885X";"Universidad de los Andes, Colombia";Yes;Yes;0,279;Q1;22;36;95;1913;101;95;1,00;53,14;38,46;0;Colombia;Latin America;"Universidad de los Andes, Colombia";"2007, 2009-2026";"Cultural Studies (Q1); History (Q1); Arts and Humanities (miscellaneous) (Q2); Gender Studies (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +17967;21101033322;"International Journal on Informatics Visualization";journal;"25499904";"Politeknik Negeri Padang";Yes;Yes;0,279;Q2;24;299;620;12636;1285;620;1,91;42,26;36,48;0;Indonesia;Asiatic Region;"Politeknik Negeri Padang";"2017-2026";"Information Systems and Management (Q2); Computer Science (miscellaneous) (Q3); Statistics, Probability and Uncertainty (Q3)";"Computer Science; Decision Sciences" +17968;21100872124;"Journal of Property, Planning and Environmental Law";journal;"25149415, 25149407";"Emerald Publishing";No;No;0,279;Q2;18;23;33;1288;37;31;1,07;56,00;41,67;0;United Kingdom;Western Europe;"Emerald Publishing";"2018-2026";"Law (Q2); Urban Studies (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +17969;5000154601;"Logic Journal of the IGPL";journal;"13689894, 13670751";"Oxford University Press";No;No;0,279;Q2;33;129;188;3903;190;180;0,94;30,26;19,20;0;United Kingdom;Western Europe;"Oxford University Press";"1993-1995, 1998, 2005-2026";"Philosophy (Q2); Logic (Q3)";"Arts and Humanities; Mathematics" +17970;19231;"Oxford Journal of Legal Studies";journal;"14643820, 01436503";"Oxford University Press";No;No;0,279;Q2;46;37;125;5772;264;125;1,88;156,00;42,86;5;United Kingdom;Western Europe;"Oxford University Press";"1981-1996, 1998, 2000-2001, 2005-2025";"Law (Q2)";"Social Sciences" +17971;29940;"Advances in Food and Nutrition Research";book series;"10434526";"Academic Press Inc.";No;No;0,279;Q3;86;60;122;8939;550;19;3,80;148,98;48,94;0;United States;Northern America;"Academic Press Inc.";"1989-1993, 1995-1996, 1998, 2001-2026";"Food Science (Q3)";"Agricultural and Biological Sciences" +17972;19700202606;"Andean Geology";journal;"07187092, 07187106";"Servicio Nacional de Geologia y Mineria";Yes;Yes;0,279;Q3;49;21;62;1510;66;61;0,88;71,90;33,33;0;Chile;Latin America;"Servicio Nacional de Geologia y Mineria";"2009-2025";"Geochemistry and Petrology (Q3); Geology (Q3); Paleontology (Q3); Stratigraphy (Q3)";"Earth and Planetary Sciences" +17973;4000152121;"Annual Reports on NMR Spectroscopy";book series;"00664103";"Academic Press Inc.";No;No;0,279;Q3;48;9;26;828;22;3;1,00;92,00;0,00;0;United States;Northern America;"Academic Press Inc.";"1968-1970, 1972, 1974-2025";"Atomic and Molecular Physics, and Optics (Q3); Spectroscopy (Q4)";"Chemistry; Physics and Astronomy" +17974;16345;"Atomization and Sprays";journal;"19362684, 10445110";"Begell House Inc.";No;No;0,279;Q3;63;33;131;1415;124;127;1,00;42,88;22,56;0;United States;Northern America;"Begell House Inc.";"1996-2025";"Chemical Engineering (miscellaneous) (Q3)";"Chemical Engineering" +17975;21101215788;"COVID";journal;"26738112";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,279;Q3;15;208;392;9802;419;384;1,08;47,13;52,70;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2026";"Immunology and Microbiology (miscellaneous) (Q3); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3)";"Immunology and Microbiology; Medicine" +17976;21100784997;"Crop, Forage and Turfgrass Management";journal;"23743832";"John Wiley & Sons Inc.";No;No;0,279;Q3;19;69;173;2711;184;169;0,99;39,29;25,20;1;United States;Northern America;"John Wiley & Sons Inc.";"2015-2026";"Agronomy and Crop Science (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +17977;21100831043;"Current Optics and Photonics";journal;"25087266, 25087274";"Optical Society of Korea";Yes;No;0,279;Q3;17;67;208;1833;210;208;1,03;27,36;26,73;0;South Korea;Asiatic Region;"Optical Society of Korea";"2017-2025";"Atomic and Molecular Physics, and Optics (Q3)";"Physics and Astronomy" +17978;21100286906;"Eurasian Mining";journal;"24140120, 20720823";"Ore and Metals Publishing house";No;No;0,279;Q3;21;42;123;1135;117;123;1,12;27,02;46,28;0;Russian Federation;Eastern Europe;"Ore and Metals Publishing house";"2013-2025";"Business and International Management (Q3); Economic Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3); Industrial and Manufacturing Engineering (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Earth and Planetary Sciences; Engineering" +17979;100156;"European Surgery - Acta Chirurgica Austriaca";journal;"16824016, 16828631";"Springer Medizin";No;No;0,279;Q3;25;64;103;1966;78;83;0,73;30,72;25,33;0;Austria;Western Europe;"Springer Medizin";"1974-1975, 1998, 2001-2026";"Surgery (Q3)";"Medicine" +17980;26511;"Functional Analysis and its Applications";journal;"15738485, 00162663";"Springer";No;No;0,279;Q3;32;36;107;629;50;107;0,51;17,47;21,57;0;United States;Northern America;"Springer";"1967-2025";"Analysis (Q3); Applied Mathematics (Q3)";"Mathematics" +17981;21100824452;"Fundamental and Applied Hydrophysics";journal;"20736673, 27825221";"Russian Academy of Sciences";No;No;0,279;Q3;10;41;122;1047;66;116;0,60;25,54;30,53;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2017-2025";"Condensed Matter Physics (Q3); Geophysics (Q3); Oceanography (Q3); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science; Physics and Astronomy" +17982;25550;"Information Display";journal;"03620972, 2637496X";"John Wiley and Sons Inc";No;No;0,279;Q3;25;70;182;338;114;100;0,77;4,83;17,92;0;United States;Northern America;"John Wiley and Sons Inc";"1975-1977, 1986-1989, 1993-2026";"Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3)";"Computer Science; Engineering" +17983;21101338665;"Innovations in Acupuncture and Medicine";journal;"30594049";"BioMed Central Ltd";No;No;0,279;Q3;44;32;98;1720;143;94;1,35;53,75;33,14;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2025-2026";"Anesthesiology and Pain Medicine (Q3); Complementary and Alternative Medicine (Q3)";"Medicine" +17984;14869;"International Forum of Psychoanalysis";journal;"16512324, 0803706X";"Routledge";No;No;0,279;Q3;21;59;87;2194;58;70;0,59;37,19;42,86;0;United Kingdom;Western Europe;"Routledge";"1992-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +17985;21100826879;"International Journal of Corrosion and Scale Inhibition";journal;"23056894";"Russian Association of Corrosion Engineers";Yes;No;0,279;Q3;38;129;371;5418;653;370;1,66;42,00;42,27;0;Russian Federation;Eastern Europe;"Russian Association of Corrosion Engineers";"2017-2025";"Materials Chemistry (Q3); Metals and Alloys (Q3)";"Materials Science" +17986;130103;"International Journal of Mathematics and Mathematical Sciences";journal;"16870425, 01611712";"John Wiley and Sons Ltd";Yes;No;0,279;Q3;48;83;139;2525;228;139;1,16;30,42;24,73;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1978-2000, 2002-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +17987;21101043743;"Jordan Journal of Business Administration";journal;"18158633, 23086149";"University of Jordan,Deanship of Scientific Research";No;No;0,279;Q3;10;42;84;2487;173;84;1,80;59,21;27,91;0;Jordan;Middle East;"University of Jordan,Deanship of Scientific Research";"2019-2025";"Accounting (Q3); Business, Management and Accounting (miscellaneous) (Q3); Management Information Systems (Q3); Marketing (Q3)";"Business, Management and Accounting" +17988;21101019307;"Journal of Cutaneous Immunology and Allergy";journal;"25744593";"Frontiers Media SA";Yes;No;0,279;Q3;8;26;168;250;67;64;0,45;9,62;36,23;0;Switzerland;Western Europe;"Frontiers Media SA";"2018-2026";"Dermatology (Q3); Immunology and Allergy (Q4)";"Medicine" +17989;21101186193;"Journal of Education Human Resources";journal;"2562783X";"University of Toronto Press";No;No;0,279;Q3;9;74;159;2140;94;134;0,46;28,92;46,67;0;Canada;Northern America;"University of Toronto Press";"2020-2026";"Education (Q3)";"Social Sciences" +17990;21100853566;"Journal of Family and Reproductive Health";journal;"17358949, 17359392";"Tehran University of Medical Sciences";Yes;Yes;0,279;Q3;8;40;79;1226;73;76;0,92;30,65;63,70;0;Iran;Middle East;"Tehran University of Medical Sciences";"2015-2016, 2019, 2023-2025";"Family Practice (Q3); Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine" +17991;21101291394;"Journal of the Association for Mathematical Research";journal;"29984114";"Association for Mathematical Research";No;No;0,279;Q3;2;6;7;271;3;7;0,43;45,17;14,29;0;United States;Northern America;"Association for Mathematical Research";"2023-2025";"Algebra and Number Theory (Q3); Analysis (Q3); Discrete Mathematics and Combinatorics (Q3); Geometry and Topology (Q4)";"Mathematics" +17992;15157;"Journal of the Chinese Institute of Engineers, Transactions of the Chinese Institute of Engineers,Series A/Chung-kuo Kung Ch'eng Hsuch K'an";journal;"02533839, 21587299";"Taylor and Francis Ltd.";No;No;0,279;Q3;44;161;232;4750;387;230;1,63;29,50;33,09;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +17993;61695;"Journal of the South African Veterinary Association";journal;"10199128, 22249435";"Medpharm Publications";Yes;No;0,279;Q3;41;16;73;391;56;71;0,62;24,44;50,00;0;South Africa;Africa;"Medpharm Publications";"1945, 1948, 1961, 1971-2025";"Medicine (miscellaneous) (Q3); Veterinary (miscellaneous) (Q3)";"Medicine; Veterinary" +17994;21100970267;"Organic Farming";journal;"22976485";"Acadlore Publishing Services Limited";Yes;No;0,279;Q3;6;19;18;1015;44;17;2,63;53,42;35,42;0;Hong Kong;Asiatic Region;"Acadlore Publishing Services Limited";"2019-2025";"Agronomy and Crop Science (Q3); Food Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +17995;21100326278;"Polish Journal of Management Studies";journal;"20817452";"Czestochowa University of Technology";Yes;No;0,279;Q3;38;70;275;3247;516;275;1,95;46,39;51,12;0;Poland;Eastern Europe;"Czestochowa University of Technology";"2010-2025";"Business and International Management (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +17996;21101278664;"REDIMAT";journal;"20143621";"Hipatia Editorial";Yes;Yes;0,279;Q3;5;12;41;527;33;36;0,69;43,92;37,84;0;Spain;Western Europe;"Hipatia Editorial";"2021-2025";"Education (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics; Social Sciences" +17997;21100464981;"Transfers";journal;"20454821, 20454813";"Berghahn Journals";No;No;0,279;Q4;17;11;65;559;43;58;0,46;50,82;50,00;0;United Kingdom;Western Europe;"Berghahn Journals";"2015-2025";"Transportation (Q4)";"Social Sciences" +17998;21100879718;"IEEE Conference on Evolving and Adaptive Intelligent Systems";conference and proceedings;"23304863, 24734691";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,279;-;15;0;76;0;100;72;1,35;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017, 2020, 2022, 2024";"Artificial Intelligence; Computer Science Applications";"Computer Science" +17999;17500154725;"Acta Theologica";journal;"23099089, 10158758";"University of the Free State";Yes;No;0,278;Q1;12;12;163;486;43;148;0,27;40,50;22,22;0;South Africa;Africa;"University of the Free State";"2002-2025";"Religious Studies (Q1)";"Arts and Humanities" +18000;26926;"African Studies Review";journal;"15552462, 00020206";"Cambridge University Press";No;No;0,278;Q1;61;31;138;2039;122;124;0,77;65,77;56,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1962-1963, 1965-1980, 1982, 1984-2026";"Cultural Studies (Q1); Anthropology (Q2)";"Social Sciences" +18001;18300156709;"Asia Pacific Journal of Anthropology";journal;"17409314, 14442213";"Routledge";No;No;0,278;Q1;30;24;72;884;53;64;0,55;36,83;60,00;0;United Kingdom;Western Europe;"Routledge";"2000-2026";"Cultural Studies (Q1); Anthropology (Q2)";"Social Sciences" +18002;19900191801;"Journal of Graphic Novels and Comics";journal;"21504857, 21504865";"Routledge";No;No;0,278;Q1;18;123;203;3976;129;151;0,55;32,33;51,85;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +18003;21101103382;"Agenda";journal;"2158978X, 10130950";"Taylor and Francis Ltd.";No;No;0,278;Q2;35;12;114;522;99;90;0,90;43,50;47,83;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Gender Studies (Q2)";"Social Sciences" +18004;5700164027;"International Criminal Law Review";journal;"15718123, 1567536X";"Brill Nijhoff";No;No;0,278;Q2;29;41;75;6094;46;71;0,55;148,63;50,88;0;Netherlands;Western Europe;"Brill Nijhoff";"2001-2026";"Law (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +18005;16149;"Medical Law International";journal;"20479441, 09685332";"SAGE Publications Inc.";No;No;0,278;Q2;16;18;46;1068;86;29;2,19;59,33;53,13;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1993-2026";"Law (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +18006;21100800034;"OBETS";journal;"19891385, 25299727";"Universidad de Alicante";Yes;Yes;0,278;Q2;13;11;49;610;46;49;1,13;55,45;57,14;0;Spain;Western Europe;"Universidad de Alicante";"2014-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +18007;21101303677;"Revista Espanola de Derecho Internacional";journal;"23871253, 00349380";"Tirant lo Blanch";No;No;0,278;Q2;4;37;105;1455;51;57;0,34;39,32;40,74;0;Spain;Western Europe;"Tirant lo Blanch";"2021-2025";"Law (Q2)";"Social Sciences" +18008;21100935002;"Revista Espanola de Educacion Comparada";journal;"11378654, 21745382";"Universidad Nacional de Educacion a Distancia (UNED)";Yes;Yes;0,278;Q2;12;107;127;5116;141;124;1,14;47,81;56,35;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2019-2026";"Philosophy (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +18009;21101209161;"Sexual Offending: Theory, Research, and Prevention";journal;"26998440";"PsychOpen";Yes;Yes;0,278;Q2;8;11;23;593;27;23;0,27;53,91;67,74;0;Germany;Western Europe;"PsychOpen";"2020-2026";"Law (Q2); Clinical Psychology (Q3); Psychiatry and Mental Health (Q3); Applied Psychology (Q4)";"Medicine; Psychology; Social Sciences" +18010;21100423127;"Stability";journal;"21652627";"Department of Peace Studies and International Development, University of Bradford";Yes;No;0,278;Q2;27;2;6;126;10;6;2,00;63,00;75,00;0;United Kingdom;Western Europe;"Department of Peace Studies and International Development, University of Bradford";"2012-2020, 2022-2023, 2025";"Law (Q2); Political Science and International Relations (Q3)";"Social Sciences" +18011;16654;"Acta Societatis Botanicorum Poloniae";journal;"00016977, 20839480";"Polish Botanical Society";Yes;No;0,278;Q3;39;9;74;839;94;72;1,12;93,22;27,87;0;Poland;Eastern Europe;"Polish Botanical Society";"1960-1979, 1981-2025";"Plant Science (Q3)";"Agricultural and Biological Sciences" +18012;19461;"Annales Pharmaceutiques Francaises";journal;"00034509";"Elsevier Masson s.r.l.";No;No;0,278;Q3;36;117;293;5001;422;291;1,47;42,74;42,83;0;France;Western Europe;"Elsevier Masson s.r.l.";"1945, 1947-2026";"Pharmaceutical Science (Q3); Pharmacology (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +18013;21101348168;"Biophotonics Discovery";journal;"30054745";"SPIE";No;No;0,278;Q3;4;23;14;1210;17;13;1,21;52,61;41,96;0;United States;Northern America;"SPIE";"2024-2025";"Artificial Intelligence (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Biomedical Engineering (Q4)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Engineering; Medicine" +18014;21485;"Chinese Journal of Epidemiology";journal;"02546450";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,278;Q3;38;274;570;8205;596;567;1,06;29,95;50,65;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1982-2016, 2019-2026";"Epidemiology (Q3)";"Medicine" +18015;21101136429;"Chinese Journal of Plastic and Reconstructive Surgery";journal;"20966911, 2772686X";"KeAi Communications Co.";Yes;No;0,278;Q3;7;44;122;1383;123;121;0,85;31,43;45,76;0;China;Asiatic Region;"KeAi Communications Co.";"2020-2026";"Surgery (Q3)";"Medicine" +18016;27596;"Clinical Journal of Oncology Nursing";journal;"1538067X, 10921095";"Oncology Nursing Society";No;No;0,278;Q3;59;118;302;2331;278;261;0,73;19,75;82,84;0;United States;Northern America;"Oncology Nursing Society";"1997-2026";"Oncology (nursing) (Q3); Oncology (Q4)";"Medicine; Nursing" +18017;17200154705;"European Journal of International Management";journal;"17516757, 17516765";"Inderscience Enterprises Ltd";No;No;0,278;Q3;40;77;216;7890;242;216;1,09;102,47;37,67;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2026";"Business and International Management (Q3); Education (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Social Sciences" +18018;19900191978;"European Journal of Psychotherapy and Counselling";journal;"14695901, 13642537";"Routledge";No;No;0,278;Q3;20;31;82;1114;73;72;1,14;35,94;60,53;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +18019;17318;"IEEE Spectrum";journal;"00189235, 19399340";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,278;Q3;79;91;361;5;338;257;0,91;0,05;18,31;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1964-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +18020;11700154323;"Image Analysis and Stereology";journal;"15803139, 18545165";"Slovenian Society For Stereology And Quantitative Image Analysis";Yes;No;0,278;Q3;32;18;50;531;83;50;2,29;29,50;27,27;0;Slovenia;Eastern Europe;"Slovenian Society For Stereology And Quantitative Image Analysis";"2000-2025";"Acoustics and Ultrasonics (Q3); Biotechnology (Q3); Computer Vision and Pattern Recognition (Q3); Instrumentation (Q3); Materials Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Signal Processing (Q3)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Materials Science; Mathematics; Medicine; Physics and Astronomy" +18021;12000154489;"International Journal of Innovative Computing, Information and Control";journal;"13494198";"IJICIC Editorial Office";No;No;0,278;Q3;57;109;377;3245;495;377;1,16;29,77;27,92;0;Japan;Asiatic Region;"IJICIC Editorial Office";"2007-2026";"Computational Theory and Mathematics (Q3); Information Systems (Q3); Software (Q3); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +18022;21100785501;"International Journal of Safety and Security Engineering";journal;"2041904X, 20419031";"International Information and Engineering Technology Association";No;No;0,278;Q3;24;240;385;9026;797;385;2,24;37,61;36,50;0;United Kingdom;Western Europe;"International Information and Engineering Technology Association";"2011-2025";"Environmental Science (miscellaneous) (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering; Environmental Science" +18023;21100836592;"International Journal of Technology Marketing";journal;"17418798, 1741878X";"Inderscience";No;No;0,278;Q3;21;22;64;1782;124;63;1,57;81,00;45,28;0;Switzerland;Western Europe;"Inderscience";"2005-2026";"Computer Science Applications (Q3); Marketing (Q3)";"Business, Management and Accounting; Computer Science" +18024;21100913634;"Iraqi Journal of Pharmaceutical Sciences";journal;"16833597, 25213512";"University of Baghdad - College of Pharmacy";Yes;No;0,278;Q3;20;92;306;4091;618;306;1,75;44,47;51,95;0;Iraq;Middle East;"University of Baghdad - College of Pharmacy";"2011, 2018-2025";"Analytical Chemistry (Q3); Pharmacology (medical) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +18025;25064;"Journal of Electronic Publishing";journal;"10802711";"University of Michigan Press";Yes;Yes;0,278;Q3;20;27;46;1244;47;40;0,88;46,07;74,51;0;United States;Northern America;"University of Michigan Press";"1996-2002, 2006-2025";"Information Systems (Q3)";"Computer Science" +18026;4700152847;"Journal of Medical Physics";journal;"19983913, 09716203";"Wolters Kluwer Medknow Publications";Yes;Yes;0,278;Q3;35;100;197;2937;242;191;1,11;29,37;29,74;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2006-2025";"Radiology, Nuclear Medicine and Imaging (Q3); Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +18027;21100259127;"Journal of Nutrition and Health";journal;"22883959, 22883886";"Korean Nutrition Society";No;No;0,278;Q3;19;42;152;1591;121;151;0,67;37,88;68,33;0;South Korea;Asiatic Region;"Korean Nutrition Society";"2013-2025";"Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing" +18028;21100226806;"Journal of Osseointegration";journal;"20364121, 2036413X";"Ariesdue Srl";Yes;No;0,278;Q3;13;20;97;770;106;97;1,03;38,50;42,86;0;Italy;Western Europe;"Ariesdue Srl";"2009-2025";"Oral Surgery (Q3)";"Dentistry" +18029;21100199816;"Jundishapur Journal of Natural Pharmaceutical Products";journal;"22287876, 17357780";"Brieflands";Yes;No;0,278;Q3;35;74;162;2865;253;156;1,38;38,72;46,49;0;Netherlands;Western Europe;"Brieflands";"2011-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +18030;19200156954;"Metrology and Measurement Systems";journal;"23001941, 08608229";"Polska Akademia Nauk";Yes;Yes;0,278;Q3;38;55;153;1670;214;152;1,44;30,36;21,60;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2008-2025";"Control and Systems Engineering (Q3); Instrumentation (Q3)";"Engineering; Physics and Astronomy" +18031;21100451405;"Natural Products Journal";journal;"22103163, 22103155";"Bentham Science Publishers";No;No;0,278;Q3;22;71;204;6418;304;198;1,59;90,39;41,14;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2011-2026";"Complementary and Alternative Medicine (Q3); Drug Discovery (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +18032;19829;"Operating Systems Review (ACM)";journal;"01635980";"Association for Computing Machinery";No;No;0,278;Q3;111;8;23;294;34;23;2,31;36,75;5,88;0;United States;Northern America;"Association for Computing Machinery";"1980-1991, 1993-1994, 1996-2010, 2013-2025";"Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Information Systems (Q3)";"Computer Science" +18033;21100205103;"Rendiconti Online Societa Geologica Italiana";journal;"20358008";"Societa Geologica Italiana";No;No;0,278;Q3;23;29;122;1119;75;122;0,65;38,59;36,27;0;Italy;Western Europe;"Societa Geologica Italiana";"2008-2025";"Geology (Q3)";"Earth and Planetary Sciences" +18034;18200156706;"Rorschachiana";journal;"2151206X, 11925604";"Hogrefe Publishing";No;No;0,278;Q3;11;20;31;747;44;27;0,77;37,35;52,63;0;United States;Northern America;"Hogrefe Publishing";"2004, 2008-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)";"Medicine; Psychology" +18035;21101197199;"Sedimentary Record";journal;"15438740";"SEPM Society for Sedimentary Geology";Yes;Yes;0,278;Q3;3;6;15;295;15;13;1,00;49,17;36,36;0;United States;Northern America;"SEPM Society for Sedimentary Geology";"2023-2025";"Earth-Surface Processes (Q3); Geology (Q3); Paleontology (Q3); Stratigraphy (Q3)";"Earth and Planetary Sciences" +18036;21100432047;"Sovremennye Problemy Distantsionnogo Zondirovaniya Zemli iz Kosmosa";journal;"20707401, 24110280";"Space Research Institute of the Russian Academy of Sciences";Yes;No;0,278;Q3;21;179;459;3868;376;459;0,84;21,61;41,03;0;Russian Federation;Eastern Europe;"Space Research Institute of the Russian Academy of Sciences";"2015-2025";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Computers in Earth Sciences (Q3)";"Computer Science; Earth and Planetary Sciences" +18037;14500154708;"Statistical Journal of the IAOS";journal;"18747655";"SAGE Publications Ltd";No;No;0,278;Q3;25;105;280;3304;200;252;0,54;31,47;47,18;6;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2009, 2011-2026";"Economics and Econometrics (Q3); Management Information Systems (Q3); Statistics, Probability and Uncertainty (Q3)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +18038;21101162767;"Thoracic Research and Practice";journal;"29799139";"AVES";Yes;Yes;0,278;Q3;17;58;149;1327;142;136;0,88;22,88;65,14;0;Turkey;Middle East;"AVES";"2023-2026";"Pulmonary and Respiratory Medicine (Q3)";"Medicine" +18039;67736;"Tribology in Industry";journal;"03548996";"Masinski Fakultet - Kragujevac";Yes;Yes;0,278;Q3;35;60;180;2149;308;180;1,79;35,82;20,62;0;Serbia;Eastern Europe;"Masinski Fakultet - Kragujevac";"1997-2025";"Mechanical Engineering (Q3); Mechanics of Materials (Q3); Surfaces and Interfaces (Q3); Surfaces, Coatings and Films (Q3)";"Engineering; Materials Science; Physics and Astronomy" +18040;6800153103;"Zeitschrift fur Orthopadie und Unfallchirurgie";journal;"18646697, 18646743";"Georg Thieme Verlag";Yes;No;0,278;Q3;41;98;322;1602;195;239;0,51;16,35;25,44;0;Germany;Western Europe;"Georg Thieme Verlag";"2007-2026";"Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3)";"Medicine" +18041;19700177033;"Artnodes";journal;"16955951";"Universitat Oberta de Catalunya";Yes;Yes;0,277;Q1;11;53;117;1619;67;115;0,53;30,55;59,42;0;Spain;Western Europe;"Universitat Oberta de Catalunya";"2009-2025";"Cultural Studies (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Computer Graphics and Computer-Aided Design (Q3); Computer Science Applications (Q3)";"Arts and Humanities; Computer Science; Social Sciences" +18042;21101047819;"Cercetari Arheologice";journal;"02556812";"National Museum of Romanian History";Yes;Yes;0,277;Q1;4;35;109;2220;24;109;0,21;63,43;25,68;0;Romania;Eastern Europe;"National Museum of Romanian History";"2019-2025";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +18043;21100800617;"EGA Revista de Expresion Grafica Arquitectonica";journal;"22546103, 11336137";"Universidad Politecnica de Valencia";Yes;Yes;0,277;Q1;13;48;179;1237;58;172;0,33;25,77;32,18;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2011-2025";"Visual Arts and Performing Arts (Q1); Architecture (Q2)";"Arts and Humanities; Engineering" +18044;21100463861;"HSE Social and Education History";journal;"20143567";"Hipatia Editorial";Yes;No;0,277;Q1;10;11;36;471;40;36;1,17;42,82;62,50;0;Spain;Western Europe;"Hipatia Editorial";"2016-2025";"History (Q1); Social Sciences (miscellaneous) (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +18045;21100899504;"Journal of Iberian and Latin American Studies";journal;"14701847, 14699524";"Taylor and Francis Ltd.";No;No;0,277;Q1;6;17;72;730;27;68;0,30;42,94;29,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2025";"Cultural Studies (Q1); History (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +18046;25990;"Social Science History";journal;"01455532, 15278034";"Cambridge University Press";No;No;0,277;Q1;38;57;112;3684;98;109;0,94;64,63;26,73;0;United Kingdom;Western Europe;"Cambridge University Press";"1977-1978, 1980-1984, 1986, 1988-1989, 1996-2013, 2015-2026";"History (Q1); Social Sciences (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +18047;21100865930;"Air and Space Law";journal;"09273379, 18758339";"Kluwer Law International";No;No;0,277;Q2;10;51;114;2950;83;113;0,74;57,84;50,00;1;Netherlands;Western Europe;"Kluwer Law International";"2018-2026";"Law (Q2)";"Social Sciences" +18048;12600154786;"European Journal of Spatial Development";journal;"16509544";"Politecnico di Torino";Yes;Yes;0,277;Q2;15;15;49;1150;43;49;0,75;76,67;48,39;0;Italy;Western Europe;"Politecnico di Torino";"2008-2020, 2022-2026";"Urban Studies (Q2); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +18049;21101222660;"Mental Health: Global Challenges";journal;"26122138";"Sciendo";Yes;Yes;0,277;Q2;4;19;25;589;38;24;1,52;31,00;53,70;0;Germany;Western Europe;"Sciendo";"2022-2026";"Health Professions (miscellaneous) (Q2); Health (social science) (Q3); Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q4)";"Health Professions; Medicine; Neuroscience; Psychology; Social Sciences" +18050;21100899302;"Qualitative Research in Education";journal;"20146418";"Hipatia Editorial";Yes;No;0,277;Q2;12;12;34;573;50;34;1,22;47,75;54,84;0;Spain;Western Europe;"Hipatia Editorial";"2014-2015, 2018-2025";"Arts and Humanities (miscellaneous) (Q2); Developmental and Educational Psychology (Q3); Education (Q3)";"Arts and Humanities; Psychology; Social Sciences" +18051;19103;"African Entomology";journal;"10213589";"Academy of Science of South Africa";Yes;No;0,277;Q3;38;19;76;1014;70;76;1,02;53,37;40,68;0;South Africa;Africa;"Academy of Science of South Africa";"1994-2025";"Agronomy and Crop Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +18052;21101049545;"Infrastructure Asset Management";journal;"20530250, 20530242";"ICE Publishing";No;No;0,277;Q3;9;23;53;1006;62;43;0,78;43,74;31,91;0;United Kingdom;Western Europe;"ICE Publishing";"2016, 2018-2025";"Building and Construction (Q3); Geography, Planning and Development (Q3); Public Administration (Q3); Safety Research (Q3); Transportation (Q4)";"Engineering; Social Sciences" +18053;21100889433;"International Journal of Evidence Based Coaching and Mentoring";journal;"17418305";"Oxford Brookes University";Yes;Yes;0,277;Q3;16;56;137;2931;149;129;0,92;52,34;57,66;0;United Kingdom;Western Europe;"Oxford Brookes University";"2018-2025";"Business, Management and Accounting (miscellaneous) (Q3); Education (Q3)";"Business, Management and Accounting; Social Sciences" +18054;21101077474;"International Journal of Image, Graphics and Signal Processing";journal;"20749074, 20749082";"Modern Education and Computer Science Press";No;No;0,277;Q3;18;50;128;1669;255;128;1,98;33,38;32,79;0;Hong Kong;Asiatic Region;"Modern Education and Computer Science Press";"2019-2026";"Computer Graphics and Computer-Aided Design (Q3); Computer Vision and Pattern Recognition (Q3); Signal Processing (Q3)";"Computer Science" +18055;21101044920;"International Journal of Secondary Metabolite";journal;"21486905";"Pamukkale University";Yes;Yes;0,277;Q3;14;79;159;3036;258;159;1,55;38,43;50,00;0;Turkey;Middle East;"Pamukkale University";"2019-2025";"Biotechnology (Q3); Plant Science (Q3); Biochemistry (Q4); Biophysics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +18056;21100199308;"Journal of Applied Analysis";journal;"18696082, 14256908";"Walter de Gruyter GmbH";No;No;0,277;Q3;19;55;97;1522;84;97;0,97;27,67;21,70;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1995-2026";"Applied Mathematics (Q3); Computational Theory and Mathematics (Q3); Mathematical Physics (Q3); Statistics, Probability and Uncertainty (Q3)";"Computer Science; Decision Sciences; Mathematics" +18057;24156;"Journal of Carbohydrate Chemistry";journal;"15322327, 07328303";"Taylor and Francis Ltd.";No;No;0,277;Q3;43;16;51;1012;60;51;1,06;63,25;39,47;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1982-2025";"Organic Chemistry (Q3); Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +18058;19700175434;"Journal of Endometriosis and Pelvic Pain Disorders";journal;"22840273, 22840265";"Wichtig Publishing Srl";No;No;0,277;Q3;21;36;71;1296;69;70;1,11;36,00;53,25;0;Italy;Western Europe;"Wichtig Publishing Srl";"2013-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +18059;21101302097;"Journal of Global Health Science";journal;"26716925, 26716933";"Korean Society of Global Health";No;No;0,277;Q3;6;33;57;1015;46;43;1,00;30,76;42,73;0;South Korea;Asiatic Region;"Korean Society of Global Health";"2021-2026";"Epidemiology (Q3); Health Policy (Q3); Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +18060;21101277759;"Journal of Governmental and Nonprofit Accounting";journal;"21553815";"American Accounting Association";No;No;0,277;Q3;4;4;15;164;15;13;1,14;41,00;22,22;0;United States;Northern America;"American Accounting Association";"2017, 2021-2025";"Accounting (Q3)";"Business, Management and Accounting" +18061;11600154097;"Journal of the European Optical Society-Rapid Publications";journal;"19902573";"EDP Sciences";Yes;No;0,277;Q3;42;38;105;1464;231;102;2,11;38,53;18,18;0;France;Western Europe;"EDP Sciences";"2006-2025";"Atomic and Molecular Physics, and Optics (Q3)";"Physics and Astronomy" +18062;4400151725;"Journal of the Illuminating Engineering Institute of Japan (Shomei Gakkai Shi)";journal;"00192341, 1349838X";"The Illuminating Engineering Institute of Japan";No;No;0,277;Q3;5;4;17;100;2;17;0,22;25,00;16,67;0;Japan;Asiatic Region;"The Illuminating Engineering Institute of Japan";"1917-1934, 1936-1942, 1950-1979, 2004-2025";"Electrical and Electronic Engineering (Q3)";"Engineering" +18063;19700182259;"Journal of the Indian Academy of Wood Science";journal;"0972172X, 09768432";"Springer";No;No;0,277;Q3;21;41;66;1799;119;66;2,02;43,88;31,09;0;India;Asiatic Region;"Springer";"2010-2026";"Forestry (Q3); Plant Science (Q3); Biomaterials (Q4)";"Agricultural and Biological Sciences; Materials Science" +18064;27731;"Latin American Perspectives";journal;"0094582X, 1552678X";"SAGE Publications Ltd";No;No;0,277;Q3;55;80;298;3676;216;268;0,60;45,95;49,19;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1977, 1981, 1984, 1986-2026";"Geography, Planning and Development (Q3); Sociology and Political Science (Q3)";"Social Sciences" +18065;21100208061;"NISPAcee Journal of Public Administration and Policy";journal;"13379038, 13384309";"de Gruyter";Yes;No;0,277;Q3;19;20;60;952;91;59;1,50;47,60;58,14;0;Germany;Western Europe;"de Gruyter";"2009-2025";"Public Administration (Q3)";"Social Sciences" +18066;17328;"Nuklearmedizin - NuclearMedicine";journal;"00295566, 25676407";"Georg Thieme Verlag";No;No;0,277;Q3;44;38;137;687;113;120;0,73;18,08;34,16;0;Germany;Western Europe;"Georg Thieme Verlag";"1959-2026";"Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +18067;13799;"Problems of Information Transmission";journal;"00329460, 16083253";"Pleiades Publishing";No;No;0,277;Q3;22;17;71;456;44;71;0,81;26,82;11,43;0;United States;Northern America;"Pleiades Publishing";"1972-1991, 2005-2025";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Information Systems (Q3)";"Computer Science" +18068;24082;"Progress in Chemistry";journal;"1005281X";"Chinese Academy of Sciences";No;No;0,277;Q3;43;115;416;11961;616;416;1,66;104,01;40,33;0;China;Asiatic Region;"Chinese Academy of Sciences";"1997-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +18069;21101307730;"Rare";journal;"29500087";"Elsevier B.V.";Yes;No;0,277;Q3;3;53;34;1691;37;32;1,09;31,91;60,98;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3); Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +18070;21100203501;"Respiratory Medicine Case Reports";journal;"22130071";"W.B. Saunders Ltd";Yes;No;0,277;Q3;29;194;571;3098;440;571;0,71;15,97;31,76;0;United Kingdom;Western Europe;"W.B. Saunders Ltd";"2012-2026";"Pulmonary and Respiratory Medicine (Q3)";"Medicine" +18071;21100371996;"Trabajos de Geologia";journal;"04749588, 19885172";"Universidad de Oviedo";Yes;Yes;0,277;Q3;6;1;6;72;6;6;1,00;72,00;0,00;0;Spain;Western Europe;"Universidad de Oviedo";"2005, 2012-2016, 2023, 2025";"Geology (Q3)";"Earth and Planetary Sciences" +18072;21100810428;"Zhidkie Kristally i Ikh Prakticheskoe Ispol'zovanie";journal;"19913966, 24999644";"Ivanovo State University Publishing";Yes;No;0,277;Q3;10;37;109;894;63;109;0,61;24,16;37,50;0;Russian Federation;Eastern Europe;"Ivanovo State University Publishing";"2016-2025";"Electronic, Optical and Magnetic Materials (Q3); Materials Chemistry (Q3); Materials Science (miscellaneous) (Q3); Surfaces, Coatings and Films (Q3); Biomaterials (Q4)";"Materials Science" +18073;21100826658;"Molecular Biology Research Communications";journal;"2322181X, 23452005";"Shiraz University";No;No;0,277;Q4;19;29;65;1301;91;63;1,47;44,86;51,26;0;Iran;Middle East;"Shiraz University";"2017-2026";"Biochemistry (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +18074;16400154760;"Critique - Studies in Contemporary Fiction";journal;"00111619, 19399138";"Routledge";No;No;0,276;Q1;22;163;196;5622;96;195;0,45;34,49;53,89;0;United States;Northern America;"Routledge";"1956-2026";"Literature and Literary Theory (Q1)";"Arts and Humanities" +18075;21101146367;"Genealogy";journal;"23135778";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,276;Q1;8;152;343;8371;365;329;0,94;55,07;66,55;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2017-2019, 2021-2025";"Cultural Studies (Q1); History (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Genetics (Q4); Genetics (clinical) (Q4); Molecular Medicine (Q4)";"Arts and Humanities; Biochemistry, Genetics and Molecular Biology; Medicine; Social Sciences" +18076;21101163290;"Global Food History";journal;"20549555, 20549547";"Taylor and Francis Ltd.";No;No;0,276;Q1;6;25;53;1512;43;43;0,74;60,48;51,85;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2026";"History (Q1); Food Science (Q3)";"Agricultural and Biological Sciences; Arts and Humanities" +18077;21101302101;"Anuario Espanol de derecho Internacional";journal;"21733775, 2254660X";"Servicio de Publicaciones de la Universidad de Navarra";No;No;0,276;Q2;4;15;42;635;23;40;0,48;42,33;53,33;0;Spain;Western Europe;"Servicio de Publicaciones de la Universidad de Navarra";"2021-2025";"Law (Q2); Development (Q3); Management, Monitoring, Policy and Law (Q3); Political Science and International Relations (Q3)";"Environmental Science; Social Sciences" +18078;5600152989;"Sotsiologicheskiy Zhurnal";journal;"15622495, 16841581";"Institut Sociologii RAN";Yes;Yes;0,276;Q2;9;37;97;1068;40;97;0,40;28,86;56,60;0;Russian Federation;Eastern Europe;"Institut Sociologii RAN";"2017-2025";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q3)";"Social Sciences" +18079;19700182306;"American Journal of Case Reports";journal;"19415923";"International Scientific Information, Inc.";Yes;No;0,276;Q3;32;574;1348;12212;1119;1347;0,80;21,28;37,34;0;United States;Northern America;"International Scientific Information, Inc.";"2008-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +18080;19900191880;"Bolema - Mathematics Education Bulletin";journal;"0103636X, 19804415";"BOLEMA Departamento de Matematica";Yes;Yes;0,276;Q3;19;68;219;2428;82;219;0,34;35,71;52,76;0;Brazil;Latin America;"BOLEMA Departamento de Matematica";"2010-2025";"Education (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics; Social Sciences" +18081;26788;"Bulletin of Marine Science";journal;"15536955, 00074977";"Rosenstiel School of Marine and Atmospheric Science";No;No;0,276;Q3;92;84;124;4571;120;115;0,80;54,42;43,58;2;United States;Northern America;"Rosenstiel School of Marine and Atmospheric Science";"1973-1976, 1980-2025";"Aquatic Science (Q3); Oceanography (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +18082;13539;"ChemChemTech";journal;"05792991, 25003070";"Ivanovo State University of Chemistry and Technology";No;No;0,276;Q3;14;160;535;5367;551;535;1,09;33,54;46,51;0;Russian Federation;Eastern Europe;"Ivanovo State University of Chemistry and Technology";"1980, 1982, 2017-2025";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +18083;23418;"Chemistry Letters";journal;"03667022, 13480715";"Oxford University Press";No;No;0,276;Q3;128;245;790;8119;736;789;0,93;33,14;20,68;0;United Kingdom;Western Europe;"Oxford University Press";"1973, 1979, 1981, 1988, 1996-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +18084;25815;"Chemistry of Natural Compounds";journal;"15738388, 00093130";"Springer";No;No;0,276;Q3;51;306;952;5499;903;952;1,02;17,97;44,33;0;United States;Northern America;"Springer";"1965-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry" +18085;23891;"China Report";journal;"00094455, 0973063X";"Sage Publications India Pvt. Ltd";No;No;0,276;Q3;21;25;67;1223;75;67;1,28;48,92;35,00;2;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1971, 1979, 1989-2026";"Development (Q3); Geography, Planning and Development (Q3); Political Science and International Relations (Q3)";"Social Sciences" +18086;24315;"Cutis";journal;"00114162, 23266929";"Frontline Medical Communications Inc.";No;No;0,276;Q3;65;161;724;1895;394;439;0,52;11,77;56,96;0;United States;Northern America;"Frontline Medical Communications Inc.";"1970, 1973-2026";"Dermatology (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +18087;21100211369;"Electronic Journal of Business Research Methods";journal;"14777029";"Academic Conferences and Publishing International Limited";Yes;No;0,276;Q3;35;11;26;632;47;26;1,08;57,45;40,91;0;United Kingdom;Western Europe;"Academic Conferences and Publishing International Limited";"2002-2003, 2005-2026";"Business and International Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +18088;28105;"Erdkunde";journal;"00140015, 27025985";"Erdkunde";No;No;0,276;Q3;44;18;57;1265;62;54;0,86;70,28;45,90;0;Germany;Western Europe;"Erdkunde";"1976, 1978-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Ecology (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +18089;21101136813;"Global Security - Health, Science and Policy";journal;"23779497";"Taylor and Francis Ltd.";Yes;No;0,276;Q3;11;11;17;785;26;17;1,20;71,36;41,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2025";"Health (social science) (Q3); Political Science and International Relations (Q3)";"Social Sciences" +18090;23253;"Herzschrittmachertherapie und Elektrophysiologie";journal;"14351544, 09387412";"Springer Medizin";No;No;0,276;Q3;21;58;207;1108;176;169;0,66;19,10;23,61;0;Germany;Western Europe;"Springer Medizin";"1997-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Physiology (medical) (Q3)";"Medicine" +18091;21101274739;"Highlights of Sustainability";journal;"2696628X";"";No;No;0,276;Q3;6;19;57;1455;89;56;1,43;76,58;43,33;0;Spain;Western Europe;"";"2022-2025";"Nature and Landscape Conservation (Q3); Waste Management and Disposal (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Environmental Science" +18092;21100934092;"International Journal of Evaluation and Research in Education";journal;"26205440, 22528822";"Institute of Advanced Engineering and Science";Yes;No;0,276;Q3;32;476;922;22222;1484;922;1,57;46,68;47,64;0;Indonesia;Asiatic Region;"Institute of Advanced Engineering and Science";"2019-2026";"Education (Q3)";"Social Sciences" +18093;19800188053;"International Journal of Information Security and Privacy";journal;"19301650, 19301669";"IGI Global Publishing";No;No;0,276;Q3;23;18;109;690;194;109;2,32;38,33;17,14;0;United States;Northern America;"IGI Global Publishing";"2007-2025";"Information Systems (Q3)";"Computer Science" +18094;21101251511;"International Journal of Noncommunicable Diseases";journal;"24688827, 24688835";"Wolters Kluwer Medknow Publications";Yes;Yes;0,276;Q3;10;33;97;886;68;79;0,77;26,85;46,74;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2016-2025";"Epidemiology (Q3); Internal Medicine (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +18095;25495;"Journal Europeen des Systemes Automatises";journal;"21167087, 12696935";"International Information and Engineering Technology Association";No;No;0,276;Q3;25;240;392;7854;817;392;2,24;32,73;26,28;0;France;Western Europe;"International Information and Engineering Technology Association";"1996-2014, 2016-2025";"Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3)";"Computer Science; Engineering" +18096;21101194976;"Journal of Artificial Intelligence and Consciousness";journal;"27050793, 27050785";"World Scientific";No;No;0,276;Q3;10;5;48;228;41;47;0,79;45,60;33,33;0;Singapore;Asiatic Region;"World Scientific";"2020-2025";"Artificial Intelligence (Q3); Computer Science (miscellaneous) (Q3)";"Computer Science" +18097;29386;"Journal of Asia-Pacific Business";journal;"15286940, 10599231";"Routledge";No;No;0,276;Q3;25;0;43;0;67;34;1,23;0,00;0,00;0;United States;Northern America;"Routledge";"1994-2023";"Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting" +18098;21100984271;"Journal of Education and Community Health";journal;"2820896X";"Hamadan University of Medical Sciences";Yes;No;0,276;Q3;11;9;101;306;78;98;0,66;34,00;41,03;0;Iran;Middle East;"Hamadan University of Medical Sciences";"2019-2025";"Education (Q3); Health (social science) (Q3); Health Informatics (Q4)";"Medicine; Social Sciences" +18099;21100862736;"Journal of Healthcare Quality Research";journal;"26036479";"Elsevier Espana S.L.U";No;No;0,276;Q3;22;64;195;1413;161;149;0,82;22,08;52,41;0;Spain;Western Europe;"Elsevier Espana S.L.U";"2018-2026";"Health Policy (Q3)";"Medicine" +18100;21101188485;"Journal of Psychosocial Oncology Research and Practice";journal;"26375974";"Lippincott Williams and Wilkins";Yes;No;0,276;Q3;6;31;77;1105;76;74;0,86;35,65;69,93;0;United States;Northern America;"Lippincott Williams and Wilkins";"2021-2025";"Clinical Psychology (Q3)";"Psychology" +18101;19200157107;"Madera y Bosques";journal;"24487597, 14050471";"Instituto de Ecologia, A.C.";Yes;Yes;0,276;Q3;22;20;101;1031;90;101;0,77;51,55;37,33;0;Mexico;Latin America;"Instituto de Ecologia, A.C.";"2008-2026";"Forestry (Q3)";"Agricultural and Biological Sciences" +18102;21100201938;"Manufacturing Technology";journal;"12132489";"Jan-Evangelista-Purkyne-University";No;No;0,276;Q3;32;13;283;345;278;283;0,92;26,54;22,50;0;Czech Republic;Eastern Europe;"Jan-Evangelista-Purkyne-University";"2011-2025";"Industrial and Manufacturing Engineering (Q3)";"Engineering" +18103;18999;"Medycyna Pracy";journal;"23531339, 04655893";"Nofer Institute of Occupational Medicine";Yes;No;0,276;Q3;27;45;137;1635;165;135;1,26;36,33;62,93;0;Poland;Eastern Europe;"Nofer Institute of Occupational Medicine";"1953-1955, 1961-1963, 1965-1967, 1973-2025";"Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +18104;24773;"Mendeleev Communications";journal;"1364551X, 09599436";"";No;No;0,276;Q3;49;221;792;5978;1001;792;1,34;27,05;41,79;0;Russian Federation;Eastern Europe;"";"1991-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +18105;21100783389;"Neurohospitalist";journal;"19418744, 19418752";"SAGE Publications Inc.";No;No;0,276;Q3;32;77;322;1215;224;272;0,65;15,78;39,23;0;United States;Northern America;"SAGE Publications Inc.";"2011-2026";"Neurology (clinical) (Q3)";"Medicine" +18106;25506;"Nordic Pulp and Paper Research Journal";journal;"20000669, 02832631";"Walter de Gruyter GmbH";No;No;0,276;Q3;58;67;182;2553;241;182;1,38;38,10;35,27;0;Sweden;Western Europe;"Walter de Gruyter GmbH";"1986, 1988, 1990, 1996-2026";"Forestry (Q3); Materials Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Materials Science" +18107;5200152621;"Proceedings of the National Academy of Sciences India Section A - Physical Sciences";journal;"03698203, 22501762";"Springer India";No;No;0,276;Q3;29;64;186;2239;281;185;1,77;34,98;23,78;0;India;Asiatic Region;"Springer India";"2006-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Physics and Astronomy" +18108;21100390414;"Scientific Papers of the University of Pardubice, Series D: Faculty of Economics and Administration";journal;"18048048, 1211555X";"University of Pardubice";Yes;No;0,276;Q3;12;13;88;1237;138;88;1,71;95,15;30,30;0;Czech Republic;Eastern Europe;"University of Pardubice";"2014-2025";"Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +18109;11300153731;"Ultrasound";journal;"17431344, 1742271X";"SAGE Publications Ltd";No;No;0,276;Q3;28;51;135;1016;147;116;0,92;19,92;48,21;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1993-2026";"Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Health Professions; Medicine" +18110;144884;"WSEAS Transactions on Mathematics";journal;"11092769, 22242880";"World Scientific and Engineering Academy and Society";No;No;0,276;Q3;26;72;317;1890;345;317;0,83;26,25;31,58;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2005-2014, 2017-2026";"Algebra and Number Theory (Q3); Applied Mathematics (Q3); Computational Mathematics (Q3); Control and Optimization (Q3); Discrete Mathematics and Combinatorics (Q3); Management Science and Operations Research (Q3); Statistics and Probability (Q3); Endocrinology, Diabetes and Metabolism (Q4)";"Decision Sciences; Mathematics; Medicine" +18111;22010;"Zeitschrift fur Anorganische und Allgemeine Chemie";journal;"00442313, 15213749";"Wiley-VCH Verlag";No;No;0,276;Q3;77;138;578;6988;618;560;0,96;50,64;26,76;0;Germany;Western Europe;"Wiley-VCH Verlag";"1892-1945, 1947-2026";"Inorganic Chemistry (Q3)";"Chemistry" +18112;79567;"Journal of the Royal College of Physicians of Edinburgh";journal;"14782715, 20428189";"SAGE Publications Inc.";Yes;No;0,275;Q1;35;85;246;1203;221;158;1,02;14,15;42,86;0;United States;Northern America;"SAGE Publications Inc.";"2000-2025";"History (Q1); Education (Q3); Medicine (miscellaneous) (Q3)";"Arts and Humanities; Medicine; Social Sciences" +18113;21100977380;"Cambridge International Law Journal";journal;"23989173, 23989181";"Edward Elgar Publishing Ltd.";No;No;0,275;Q2;18;19;51;1486;33;44;0,78;78,21;50,00;0;United Kingdom;Western Europe;"Edward Elgar Publishing Ltd.";"2012-2025";"Law (Q2)";"Social Sciences" +18114;21101255350;"Chinese Journal of Underground Space and Engineering";journal;"16730836";"";No;No;0,275;Q2;13;292;719;6966;614;719;0,74;23,86;28,55;0;China;Asiatic Region;"";"2020-2025";"Architecture (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering" +18115;15158;"Inner Asia";journal;"22105018, 14648172";"Brill Academic Publishers";No;No;0,275;Q2;23;16;51;660;29;43;0,58;41,25;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1999-2025";"Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Development (Q3); Geography, Planning and Development (Q3)";"Arts and Humanities; Social Sciences" +18116;19900192412;"Journal of Mobile Multimedia";journal;"15504646, 15504654";"";No;No;0,275;Q2;22;52;209;1593;398;204;2,11;30,63;33,06;0;United States;Northern America;"";"2011-2025";"Communication (Q2); Media Technology (Q2); Industrial and Manufacturing Engineering (Q3)";"Engineering; Social Sciences" +18117;21100204107;"Journal of the Institute of Conservation";journal;"19455232, 19455224";"Routledge";No;No;0,275;Q2;17;25;59;755;53;50;0,83;30,20;62,75;0;United Kingdom;Western Europe;"Routledge";"2009-2026";"Conservation (Q2)";"Arts and Humanities" +18118;21100916745;"Tumu yu Huanjing Gongcheng Xuebao/Journal of Civil and Environmental Engineering";journal;"20966717";"Journal of Chongqing University Club";No;No;0,275;Q2;18;143;414;4555;399;414;0,91;31,85;28,41;0;China;Asiatic Region;"Journal of Chongqing University Club";"2019-2025";"Architecture (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +18119;82643;"Australian Journal of Electrical and Electronics Engineering";journal;"1448837X";"Taylor and Francis Ltd.";No;No;0,275;Q3;19;231;100;6872;178;100;2,05;29,75;35,94;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +18120;21101067073;"Botanica";journal;"25388657, 25388649";"Nature Research Centre";Yes;Yes;0,275;Q3;9;20;49;807;53;47;1,12;40,35;35,48;0;Lithuania;Eastern Europe;"Nature Research Centre";"2018-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18121;15900154727;"Carpathian Journal of Earth and Environmental Sciences";journal;"18424090, 1844489X";"";Yes;No;0,275;Q3;31;38;112;1909;127;112;1,04;50,24;41,14;0;Romania;Eastern Europe;"";"2008-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science" +18122;4700152811;"CESifo Forum";journal;"2190717X, 1615245X";"Ifo institute for Economic Research e.V.";Yes;No;0,275;Q3;18;26;197;362;136;194;0,58;13,92;22,92;0;Germany;Western Europe;"Ifo institute for Economic Research e.V.";"2006-2025";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +18123;86250;"Chang'an Daxue Xuebao (Ziran Kexue Ban)/Journal of Chang'an University (Natural Science Edition)";journal;"16718879";"Chang'an University";No;No;0,275;Q3;24;92;226;2967;259;226;1,06;32,25;28,10;0;China;Asiatic Region;"Chang'an University";"2003-2025";"Building and Construction (Q3); Mechanical Engineering (Q3)";"Engineering" +18124;19700188151;"Check List";journal;"1809127X";"Pensoft Publishers";Yes;No;0,275;Q3;33;144;361;4928;311;354;0,83;34,22;28,21;0;Brazil;Latin America;"Pensoft Publishers";"2009-2026";"Animal Science and Zoology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18125;130099;"Concepts in Magnetic Resonance Part B: Magnetic Resonance Engineering";journal;"15525031, 1552504X";"John Wiley and Sons Inc";No;No;0,275;Q3;38;0;6;0;4;6;1,33;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Inc";"2002-2018, 2021-2024";"Physical and Theoretical Chemistry (Q3); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Spectroscopy (Q4)";"Chemistry; Health Professions; Medicine" +18126;35063;"Healthcare Papers";journal;"1488917X, 19296339";"Longwoods Publishing Corp.";No;No;0,275;Q3;29;55;94;586;44;87;0,60;10,65;51,28;0;Canada;Northern America;"Longwoods Publishing Corp.";"1999-2025";"Health Policy (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +18127;21101226492;"International Journal of Information Technology and Computer Science";journal;"20749007, 20749015";"Modern Education and Computer Science Press";No;No;0,275;Q3;8;45;98;1548;188;98;2,25;34,40;30,39;0;Hong Kong;Asiatic Region;"Modern Education and Computer Science Press";"2016, 2022-2026";"Artificial Intelligence (Q3); Computational Theory and Mathematics (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Control and Systems Engineering (Q3); Information Systems (Q3)";"Computer Science; Engineering" +18128;21100395913;"International Journal of Recycling of Organic Waste in Agriculture";journal;"22517715, 21953228";"OICC Press";Yes;Yes;0,275;Q3;49;48;175;2671;226;175;1,21;55,65;48,19;0;United Kingdom;Western Europe;"OICC Press";"2012-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Waste Management and Disposal (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18129;21101052736;"Journal of Computational Biophysics and Chemistry";journal;"27374173, 27374165";"World Scientific";No;No;0,275;Q3;35;82;220;4738;456;218;2,48;57,78;30,66;0;Singapore;Asiatic Region;"World Scientific";"2021-2026";"Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Physical and Theoretical Chemistry (Q3)";"Chemistry; Computer Science" +18130;19900191475;"Journal of Globalization and Development";journal;"19481837, 21946353";"Walter de Gruyter GmbH";No;No;0,275;Q3;12;15;37;839;41;36;0,52;55,93;25,00;2;Germany;Western Europe;"Walter de Gruyter GmbH";"2016-2026";"Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Economics, Econometrics and Finance; Social Sciences" +18131;19900192131;"Journal of Leadership Studies";journal;"19352611, 1935262X";"John Wiley and Sons Ltd";No;No;0,275;Q3;30;21;109;852;129;83;0,97;40,57;55,56;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2007-2026";"Education (Q3)";"Social Sciences" +18132;27230;"Journal of Medical Investigation";journal;"13431420, 13496867";"University of Tokushima";Yes;No;0,275;Q3;56;72;196;2113;174;196;0,89;29,35;28,83;0;Japan;Asiatic Region;"University of Tokushima";"1996-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +18133;21100434604;"Journal of Skin Cancer";journal;"20902913, 20902905";"John Wiley and Sons Ltd";Yes;No;0,275;Q3;18;14;20;662;41;20;1,25;47,29;56,25;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2012, 2014-2026";"Dermatology (Q3); Oncology (Q4)";"Medicine" +18134;19700180842;"Journal of Thermal Science and Technology";journal;"18805566";"Japan Society of Mechanical Engineers";Yes;No;0,275;Q3;25;31;63;991;61;62;0,88;31,97;16,51;0;Japan;Asiatic Region;"Japan Society of Mechanical Engineers";"2009-2026";"Atomic and Molecular Physics, and Optics (Q3); Engineering (miscellaneous) (Q3); Instrumentation (Q3); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science; Physics and Astronomy" +18135;21101192901;"KazNU Bulletin. Mathematics, Mechanics, Computer Science Series";journal;"15630277, 26174871";"al-Farabi Kazakh State National University";Yes;No;0,275;Q3;6;39;127;761;94;127;0,94;19,51;29,11;0;Kazakhstan;Asiatic Region;"al-Farabi Kazakh State National University";"2019-2025";"Computer Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3)";"Computer Science; Mathematics" +18136;21100203942;"Paediatrics and Child Health (United Kingdom)";journal;"1878206X, 17517222";"Churchill Livingstone";No;No;0,275;Q3;31;66;213;667;153;202;0,57;10,11;64,75;0;United Kingdom;Western Europe;"Churchill Livingstone";"2007-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +18137;100147350;"Palaeontographica Abteilung B: Palaeophytologie";book series;"03750299, 2509839X";"Schweizerbart Science Publishers";No;No;0,275;Q3;19;0;9;0;12;9;0,43;0,00;0,00;0;Germany;Western Europe;"Schweizerbart Science Publishers";"2005-2008, 2011-2014, 2016-2019, 2021-2024";"Paleontology (Q3)";"Earth and Planetary Sciences" +18138;21101245234;"Pan-American Journal of Mathematics";journal;"28324293";"Mathyze Publishers";Yes;Yes;0,275;Q3;4;21;59;467;46;59;0,71;22,24;26,47;0;United States;Northern America;"Mathyze Publishers";"2022-2026";"Applied Mathematics (Q3); Computational Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3); Modeling and Simulation (Q3)";"Mathematics" +18139;98120;"Plant Genetic Resources: Characterisation and Utilisation";journal;"1479263X, 14792621";"Cambridge University Press";No;No;0,275;Q3;47;75;173;2844;198;173;1,29;37,92;35,10;0;United Kingdom;Western Europe;"Cambridge University Press";"2003-2026";"Agronomy and Crop Science (Q3); Plant Science (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +18140;21100220151;"Quality Innovation Prosperity";journal;"1338984X, 13351745";"Technical University of Kosice";Yes;No;0,275;Q3;24;25;81;956;154;81;1,88;38,24;37,50;0;Slovakia;Eastern Europe;"Technical University of Kosice";"2012-2025";"Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +18141;19700186817;"Queue";journal;"15427730, 15427749";"Association for Computing Machinery";No;No;0,275;Q3;52;27;124;204;150;119;0,84;7,56;12,12;0;United States;Northern America;"Association for Computing Machinery";"2003-2025";"Computer Science (miscellaneous) (Q3)";"Computer Science" +18142;15159;"Review of Regional Studies";journal;"0048749X, 15530892";"E-Journal of Geotechnical Engineering";Yes;No;0,275;Q3;24;10;43;354;56;43;1,54;35,40;26,32;0;United States;Northern America;"E-Journal of Geotechnical Engineering";"1974-1975, 1977-1982, 1984, 1987-2025";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +18143;21101156976;"Revista de Psicologia Aplicada al Deporte y al Ejercicio Fisico";journal;"25303910";"Colegio Oficial de la Psicologia de Madrid";Yes;Yes;0,275;Q3;8;18;40;943;39;32;1,03;52,39;41,30;0;Spain;Western Europe;"Colegio Oficial de la Psicologia de Madrid";"2019-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +18144;4700153108;"Tropical Biomedicine";journal;"25219855, 01275720";"Malaysian Society for Parasitology";Yes;No;0,275;Q3;48;56;213;2312;233;213;0,96;41,29;53,67;0;Malaysia;Asiatic Region;"Malaysian Society for Parasitology";"2005-2025";"Infectious Diseases (Q3); Parasitology (Q4)";"Immunology and Microbiology; Medicine" +18145;21101046627;"Tropical Geography";journal;"10015221";"Editorial Committee of Tropical Geography";Yes;No;0,275;Q3;14;130;549;6558;580;549;1,10;50,45;35,12;0;China;Asiatic Region;"Editorial Committee of Tropical Geography";"2017-2026";"Earth-Surface Processes (Q3); Economic Geology (Q3); Geography, Planning and Development (Q3); Paleontology (Q3); Atmospheric Science (Q4)";"Earth and Planetary Sciences; Social Sciences" +18146;21100870826;"Work Organisation, Labour and Globalisation";journal;"1745641X, 17456428";"Pluto Journals";Yes;Yes;0,275;Q3;21;28;48;1581;65;47;0,78;56,46;41,38;0;United Kingdom;Western Europe;"Pluto Journals";"2016-2026";"Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting" +18147;21101257983;"Oncology and Translational Medicine";journal;"29955858, 20959621";"Lippincott Williams and Wilkins";Yes;Yes;0,275;Q4;6;42;123;2271;153;123;1,69;54,07;42,86;0;United States;Northern America;"Lippincott Williams and Wilkins";"2020-2026";"Immunology (Q4); Oncology (Q4)";"Immunology and Microbiology; Medicine" +18148;21100787044;"CBMS-NSF Regional Conference Series in Applied Mathematics";conference and proceedings;"01639439";"Society for Industrial and Applied Mathematics Publications";No;No;0,275;-;11;0;4;0;1;2;0,25;0,00;0,00;0;United States;Northern America;"Society for Industrial and Applied Mathematics Publications";"2007, 2011, 2015-2020, 2023-2024";"Applied Mathematics; Safety, Risk, Reliability and Quality; Software";"Computer Science; Engineering; Mathematics" +18149;20500195424;"IEEE International Conference on Automation Science and Engineering";conference and proceedings;"21618089, 21618070";"IEEE Computer Society";No;No;0,275;-;43;434;1192;10342;1307;1184;0,98;23,83;22,31;0;United States;Northern America;"IEEE Computer Society";"2011-2025";"Control and Systems Engineering; Electrical and Electronic Engineering";"Engineering" +18150;21101083166;"Proceedings of the International Symposium on Automation and Robotics in Construction";conference and proceedings;"24135844";"International Association for Automation and Robotics in Construction (IAARC)";No;No;0,275;-;12;209;369;4466;461;363;1,25;21,37;23,30;0;Finland;Western Europe;"International Association for Automation and Robotics in Construction (IAARC)";"2021-2025";"Artificial Intelligence; Building and Construction; Civil and Structural Engineering; Computer Science Applications; Control and Systems Engineering; Safety, Risk, Reliability and Quality";"Computer Science; Engineering" +18151;5700167003;"Cultural Politics";journal;"17517435, 17432197";"Duke University Press";No;No;0,274;Q1;21;10;78;219;80;70;1,08;21,90;20,00;0;United States;Northern America;"Duke University Press";"2012-2025";"Cultural Studies (Q1); Communication (Q2); Sociology and Political Science (Q3)";"Social Sciences" +18152;21100245921;"Historia da Historiografia";journal;"19839928";"Brazilian Society for History and Theory of Historiography";Yes;Yes;0,274;Q1;11;29;100;1206;25;99;0,15;41,59;38,46;0;Brazil;Latin America;"Brazilian Society for History and Theory of Historiography";"2013-2026";"History (Q1)";"Arts and Humanities" +18153;21101043299;"Journal of Islamic Architecture";journal;"23564644, 20862636";"Maulana Malik Ibrahim State Islamic University of Malang";No;No;0,274;Q1;8;42;118;1664;107;118;0,75;39,62;30,30;0;Indonesia;Asiatic Region;"Maulana Malik Ibrahim State Islamic University of Malang";"2019-2025";"Religious Studies (Q1); Archeology (arts and humanities) (Q2); Architecture (Q2); History and Philosophy of Science (Q2); Urban Studies (Q2); Building and Construction (Q3)";"Arts and Humanities; Engineering; Social Sciences" +18154;21101123257;"Studia z Prawa Wyznaniowego";journal;"20818882, 25443003";"The John Paul II Catholic University of Lublin";Yes;Yes;0,274;Q1;4;24;69;884;26;68;0,45;36,83;33,33;0;Poland;Eastern Europe;"The John Paul II Catholic University of Lublin";"2019-2025";"Religious Studies (Q1); Law (Q2)";"Arts and Humanities; Social Sciences" +18155;21101064914;"Chinese Journal of Environmental Law";journal;"24686042, 24686034";"Brill Academic Publishers";No;No;0,274;Q2;11;14;52;1292;32;45;0,46;92,29;58,82;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2025";"Law (Q2); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +18156;21101039259;"European Journal of Interdisciplinary Studies";journal;"20673795";"Bucharest University of Economic Studies";Yes;Yes;0,274;Q2;10;19;69;1016;132;69;2,39;53,47;55,93;0;Romania;Eastern Europe;"Bucharest University of Economic Studies";"2019-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +18157;21100899301;"International Journal of Sociology of Education";journal;"20143575";"Hipatia Editorial";Yes;No;0,274;Q2;11;12;35;590;41;35;0,87;49,17;61,54;0;Spain;Western Europe;"Hipatia Editorial";"2018-2025";"Social Sciences (miscellaneous) (Q2); Education (Q3)";"Social Sciences" +18158;21101073268;"Journal of Industrial Engineering and Engineering Management";journal;"10046062";"Zhejiang University";No;No;0,274;Q2;13;118;369;5101;373;369;0,99;43,23;36,88;0;China;Asiatic Region;"Zhejiang University";"2019-2026";"Information Systems and Management (Q2); Accounting (Q3); Business and International Management (Q3); Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Decision Sciences" +18159;19700182685;"Journal of Library Metadata";journal;"19375034, 19386389";"Taylor and Francis Ltd.";No;No;0,274;Q2;19;17;34;586;42;33;1,29;34,47;52,63;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"Library and Information Sciences (Q2); E-learning (Q4)";"Social Sciences" +18160;21100829271;"African Journal of Wildlife Research";journal;"24107220, 24108200";"Southern African Wildlife Management Association";No;No;0,274;Q3;41;0;44;0;43;42;0,70;0,00;0,00;0;South Africa;Africa;"Southern African Wildlife Management Association";"2015-2024";"Animal Science and Zoology (Q3); Ecology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18161;19200156911;"Arachnologische Mitteilungen";journal;"10184171, 21997233";"Arachnologische Gesellschaft e.V.";Yes;Yes;0,274;Q3;16;14;46;334;37;46;0,96;23,86;13,64;0;Germany;Western Europe;"Arachnologische Gesellschaft e.V.";"2009-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +18162;21100198431;"Asian-European Journal of Mathematics";journal;"17937183, 17935571";"World Scientific";No;No;0,274;Q3;24;171;581;3659;377;581;0,66;21,40;24,75;0;Singapore;Asiatic Region;"World Scientific";"2008-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +18163;17693;"Berliner und Munchener Tierarztliche Wochenschrift";journal;"14390299, 00059366";"Schluetersche Verlagsgesellschaft mbH and Co.KG";Yes;No;0,274;Q3;41;12;42;1042;38;41;0,88;86,83;43,59;0;Germany;Western Europe;"Schluetersche Verlagsgesellschaft mbH and Co.KG";"1946-1949, 1961, 1965-2026";"Medicine (miscellaneous) (Q3); Veterinary (miscellaneous) (Q3)";"Medicine; Veterinary" +18164;12820;"Canadian Journal of Community Mental Health";journal;"07133936, 19297084";"Wilfrid Laurier University Press";No;No;0,274;Q3;32;21;88;813;73;87;0,64;38,71;69,03;0;Canada;Northern America;"Wilfrid Laurier University Press";"1982-2025";"Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +18165;10600153311;"Chemical Product and Process Modeling";journal;"19342659";"Walter de Gruyter GmbH";No;No;0,274;Q3;24;109;161;4453;262;159;1,61;40,85;33,82;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2006-2026";"Chemical Engineering (miscellaneous) (Q3); Modeling and Simulation (Q3)";"Chemical Engineering; Mathematics" +18166;21101083128;"Dental Journal";journal;"19783728, 24429740";"Universitas Airlangga, Faculty of Dental Medicine";Yes;No;0,274;Q3;8;59;144;1935;144;144;1,01;32,80;58,76;0;Indonesia;Asiatic Region;"Universitas Airlangga, Faculty of Dental Medicine";"2019-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +18167;21101161511;"Ecological Safety of Coastal and Shelf Zones of Sea";journal;"24135577";"Marine Hydrophysical Institute of RAS";Yes;No;0,274;Q3;8;39;112;951;63;112;0,51;24,38;45,30;0;Ukraine;Eastern Europe;"Marine Hydrophysical Institute of RAS";"2019-2025";"Aquatic Science (Q3); Ecological Modeling (Q3); Geotechnical Engineering and Engineering Geology (Q3); Pollution (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +18168;21101267108;"Frontiers in Nuclear Engineering";journal;"28133412";"Frontiers Media SA";Yes;No;0,274;Q3;9;43;127;1880;199;116;1,57;43,72;21,72;0;Switzerland;Western Europe;"Frontiers Media SA";"2022-2026";"Nuclear Energy and Engineering (Q3)";"Energy" +18169;18201;"International Journal of RF and Microwave Computer-Aided Engineering";journal;"1099047X, 10964290";"John Wiley and Sons Inc";No;No;0,274;Q3;58;43;740;1132;798;740;1,54;26,33;27,92;0;United States;Northern America;"John Wiley and Sons Inc";"1996-2026";"Computer Graphics and Computer-Aided Design (Q3); Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +18170;19700187611;"International Journal on Smart Sensing and Intelligent Systems";journal;"11785608";"Sciendo";Yes;No;0,274;Q3;35;59;80;2282;151;80;2,40;38,68;39,38;0;New Zealand;Pacific Region;"Sciendo";"2008, 2010-2026";"Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)";"Engineering" +18171;17700154922;"International Review of Electrical Engineering";journal;"25332244, 18276660";"Praise Worthy Prize";No;No;0,274;Q3;34;40;149;1560;249;149;1,80;39,00;15,05;0;Italy;Western Europe;"Praise Worthy Prize";"2008-2025";"Applied Mathematics (Q3); Automotive Engineering (Q3); Electrical and Electronic Engineering (Q3); Energy (miscellaneous) (Q3); Instrumentation (Q3)";"Energy; Engineering; Mathematics; Physics and Astronomy" +18172;26927;"International Reviews in Physical Chemistry";journal;"0144235X, 1366591X";"Taylor and Francis Ltd.";No;No;0,274;Q3;97;0;12;0;15;12;0,60;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-1983, 1985-2024";"Physical and Theoretical Chemistry (Q3)";"Chemistry" +18173;21100902935;"Journal of Biologically Active Products from Nature";journal;"22311874, 22311866";"Taylor and Francis Ltd.";No;No;0,274;Q3;23;41;113;2058;183;113;1,61;50,20;37,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Complementary and Alternative Medicine (Q3); Pharmacology (Q3); Plant Science (Q3); Drug Discovery (Q4); Toxicology (Q4)";"Agricultural and Biological Sciences; Medicine; Pharmacology, Toxicology and Pharmaceutics" +18174;21101390129;"Journal of Computers, Mechanical and Management";journal;"3009075X";"AAN Publishing";No;No;0,274;Q3;9;33;82;643;140;69;1,90;19,48;28,57;0;Malaysia;Asiatic Region;"AAN Publishing";"2022-2025";"Business, Management and Accounting (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Modeling and Simulation (Q3)";"Business, Management and Accounting; Engineering; Mathematics" +18175;28139;"Journal of Electromagnetic Waves and Applications";journal;"15693937, 09205071";"Taylor and Francis Ltd.";No;No;0,274;Q3;60;143;415;4481;534;413;1,33;31,34;29,66;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Engineering; Materials Science; Physics and Astronomy" +18176;21100265049;"Journal of Engineering and Technological Sciences";journal;"23385502, 23375779";"Institute for Research and Community Services, Institut Teknologi Bandung";Yes;No;0,274;Q3;27;58;200;2463;296;200;1,58;42,47;29,90;0;Indonesia;Asiatic Region;"Institute for Research and Community Services, Institut Teknologi Bandung";"2013-2026";"Chemical Engineering (miscellaneous) (Q3); Civil and Structural Engineering (Q3); Earth-Surface Processes (Q3); Engineering (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Chemical Engineering; Earth and Planetary Sciences; Engineering; Environmental Science; Materials Science" +18177;22869;"Journal of Forest Economics";journal;"11046899, 16181530";"Now Publishers Inc";No;No;0,274;Q3;47;17;39;1091;41;38;1,09;64,18;36,17;0;United States;Northern America;"Now Publishers Inc";"1995-2025";"Ecology (Q3); Forestry (Q3); Geography, Planning and Development (Q3)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +18178;21100873117;"Journal of Investigative Medicine High Impact Case Reports";journal;"23247096";"SAGE Publications Ltd";Yes;No;0,274;Q3;25;143;460;2719;373;460;0,73;19,01;41,82;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2013-2026";"Epidemiology (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering; Medicine; Social Sciences" +18179;21100209502;"Journal of Pharmacology and Pharmacotherapeutics";journal;"0976500X, 09765018";"Sage Publications India Pvt. Ltd";Yes;No;0,274;Q3;48;55;128;2403;167;124;1,32;43,69;51,43;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2010-2026";"Pharmacology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +18180;21100826294;"Molecular Imaging and Radionuclide Therapy";journal;"21471959, 21461414";"Galenos Publishing House";Yes;No;0,274;Q3;17;53;144;718;123;125;0,68;13,55;43,02;0;Turkey;Middle East;"Galenos Publishing House";"2017-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +18181;12408;"Notfall und Rettungsmedizin";journal;"14360578, 14346222";"Springer Medizin";No;No;0,274;Q3;27;253;381;4163;271;295;0,72;16,45;28,54;1;Germany;Western Europe;"Springer Medizin";"1999-2001, 2003-2026";"Emergency Medicine (Q3)";"Medicine" +18182;21101183653;"Quality Advancement in Nursing Education";journal;"23686669";"Canadian Association of Schools of Nursing";Yes;Yes;0,274;Q3;8;28;90;1038;74;75;0,86;37,07;81,72;0;Canada;Northern America;"Canadian Association of Schools of Nursing";"2019-2025";"Education (Q3); Nursing (miscellaneous) (Q3); Research and Theory (Q3)";"Nursing; Social Sciences" +18183;21101163025;"Renewable Energy and Sustainable Development";journal;"23568518, 23568569";"Academy Publishing Center, Arab Academy for Science, Technology and Maritime Transport";Yes;No;0,274;Q3;6;26;40;1345;91;40;2,36;51,73;25,33;0;Egypt;Africa/Middle East;"Academy Publishing Center, Arab Academy for Science, Technology and Maritime Transport";"2021-2025";"Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +18184;21100926584;"Russian Journal of Nonlinear Dynamics";journal;"26585324, 26585316";"Institute of Computer Science Izhevsk";Yes;No;0,274;Q3;12;40;147;1223;96;146;0,78;30,58;28,05;0;Russian Federation;Eastern Europe;"Institute of Computer Science Izhevsk";"2018-2025";"Applied Mathematics (Q3); Control and Systems Engineering (Q3); Mathematical Physics (Q3); Mechanical Engineering (Q3); Modeling and Simulation (Q3); Statistical and Nonlinear Physics (Q4)";"Engineering; Mathematics; Physics and Astronomy" +18185;21101053560;"Trends in Phytochemical Research";journal;"25883623, 25883631";"OICC Press";No;No;0,274;Q3;13;6;74;427;93;72;0,98;71,17;48,00;0;Iran;Middle East;"OICC Press";"2019-2025";"Organic Chemistry (Q3); Pharmacology (Q3); Plant Science (Q3); Biochemistry (Q4); Drug Discovery (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +18186;25174;"Electrochemistry";journal;"21862451, 13443542";"Electrochemical Society of Japan";Yes;No;0,274;Q4;53;192;525;6010;560;484;0,81;31,30;17,82;0;Japan;Asiatic Region;"Electrochemical Society of Japan";"1999-2026";"Electrochemistry (Q4)";"Chemistry" +18187;21101131215;"Eurographics Workshop on Visual Computing for Biomedicine";conference and proceedings;"20705786, 20705778";"Eurographics Association";No;No;0,274;-;7;9;44;137;35;41;0,71;15,22;31,43;0;Switzerland;Western Europe;"Eurographics Association";"2020-2025";"Biomedical Engineering; Computer Vision and Pattern Recognition";"Computer Science; Engineering" +18188;21100894551;"Christian Education Journal";journal;"07398913, 2378525X";"SAGE Publications Ltd";No;No;0,273;Q1;7;12;66;362;23;56;0,35;30,17;46,67;0;United States;Northern America;"SAGE Publications Ltd";"2011-2012, 2015-2025";"Religious Studies (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +18189;21100773022;"Journal for the Academic Study of Religion";journal;"2047704X, 20477058";"Equinox Publishing Ltd";No;No;0,273;Q1;11;10;49;395;46;45;0,35;39,50;36,36;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2013-2025";"Religious Studies (Q1)";"Arts and Humanities" +18190;16400154733;"Journal of Architecture";journal;"13602365, 14664410";"Routledge";No;No;0,273;Q1;28;45;167;1176;159;143;0,53;26,13;41,27;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Visual Arts and Performing Arts (Q1); Architecture (Q2)";"Arts and Humanities; Engineering" +18191;21100857529;"Journal of Silk";journal;"10017003";"China Silk Association";No;No;0,273;Q1;11;167;657;4668;464;657;0,78;27,95;50,71;0;China;Asiatic Region;"China Silk Association";"2017-2026";"Cultural Studies (Q1); History (Q1); Chemistry (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Arts and Humanities; Chemistry; Engineering; Materials Science; Social Sciences" +18192;21101157230;"Magazen";journal;"27243923";"Fondazione Universita Ca Foscari";Yes;Yes;0,273;Q1;7;11;41;374;26;38;0,62;34,00;56,52;0;Italy;Western Europe;"Fondazione Universita Ca Foscari";"2020-2025";"History (Q1); Literature and Literary Theory (Q1); Museology (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +18193;21101179106;"Millah: Journal of Religious Studies";journal;"2527922X, 14120992";"Program Studi Ilmu Agama Islam Program Magister, Universitas Islam Indonesia";Yes;No;0,273;Q1;7;32;86;1841;135;80;1,53;57,53;33,82;0;Indonesia;Asiatic Region;"Program Studi Ilmu Agama Islam Program Magister, Universitas Islam Indonesia";"2019-2025";"Religious Studies (Q1)";"Arts and Humanities" +18194;21101182773;"Economics and Culture";journal;"22557563, 22560173";"Sciendo";Yes;Yes;0,273;Q2;7;22;65;1018;106;65;1,91;46,27;52,08;0;Germany;Western Europe;"Sciendo";"2022-2025";"Law (Q2); Social Sciences (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3); Demography (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +18195;19700175832;"International Journal of Therapeutic Massage and Bodywork: Research, Education, and Practice";journal;"1916257X";"Multimed Inc.";Yes;Yes;0,273;Q2;19;29;59;985;57;45;0,60;33,97;52,17;0;Canada;Northern America;"Multimed Inc.";"2008-2010, 2012-2025";"Health Professions (miscellaneous) (Q2)";"Health Professions" +18196;25817;"Journal of Divorce and Remarriage";journal;"10502556, 15404811";"Routledge";No;No;0,273;Q2;41;0;43;0;59;42;1,00;0,00;0,00;0;United States;Northern America;"Routledge";"1990-2023";"Law (Q2); Demography (Q3)";"Social Sciences" +18197;23075;"Langages";journal;"0458726X, 19589549";"Armand Colin";No;No;0,273;Q2;20;30;89;1207;21;80;0,02;40,23;72,22;0;France;Western Europe;"Armand Colin";"1976, 2002-2025";"Linguistics and Language (Q2)";"Social Sciences" +18198;21100200414;"Legal Studies";journal;"1748121X, 02613875";"Wiley-Blackwell";No;No;0,273;Q2;37;39;120;4724;176;119;1,18;121,13;55,56;3;United States;Northern America;"Wiley-Blackwell";"1981-2026";"Law (Q2)";"Social Sciences" +18199;5600153108;"Papers";journal;"02102862, 20139004";"Universitat Autonoma de Barcelona";Yes;Yes;0,273;Q2;19;17;81;980;63;81;0,69;57,65;44,44;1;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2011-2025";"Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q3)";"Social Sciences" +18200;21100893188;"Revista de Urbanismo";journal;"07175051";"Universidad de Chile";Yes;Yes;0,273;Q2;9;20;63;1118;53;60;0,85;55,90;44,90;0;Chile;Latin America;"Universidad de Chile";"2010, 2018-2025";"Urban Studies (Q2); Geography, Planning and Development (Q3); Nature and Landscape Conservation (Q3)";"Environmental Science; Social Sciences" +18201;21100843015;"RUDN Journal of Sociology";journal;"23132272, 24088897";"RUDN University";Yes;Yes;0,273;Q2;10;75;212;2348;96;210;0,42;31,31;51,20;0;Russian Federation;Eastern Europe;"RUDN University";"2017-2025";"Social Sciences (miscellaneous) (Q2)";"Social Sciences" +18202;5800207868;"Sign Language and Linguistics (Online)";journal;"13879316, 1569996X";"John Benjamins Publishing Company";No;No;0,273;Q2;32;17;36;1130;21;35;0,68;66,47;73,53;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1998-2025";"Linguistics and Language (Q2)";"Social Sciences" +18203;21101068817;"Trends in Sciences";journal;"27740226";"Walailak University";No;No;0,273;Q2;28;369;923;21722;1537;922;1,89;58,87;50,71;0;Thailand;Asiatic Region;"Walailak University";"2021-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +18204;27713;"American Journal of Forensic Medicine and Pathology";journal;"01957910, 1533404X";"Lippincott Williams and Wilkins Ltd.";No;No;0,273;Q3;70;112;263;2635;211;246;0,71;23,53;46,86;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1980-2026";"Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)";"Medicine" +18205;16806;"Applied Biochemistry and Microbiology";journal;"16083024, 00036838";"";No;No;0,273;Q3;57;183;426;6710;540;426;1,24;36,67;53,08;0;Russian Federation;Eastern Europe;"";"1970, 1972-1980, 1987, 1996-2025";"Applied Microbiology and Biotechnology (Q3); Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +18206;21100831445;"Brazilian Dental Science";journal;"21786011";"Universidade Estadual Paulista, Institute of Science and Technology of Sao Jose dos Campo";Yes;Yes;0,273;Q3;16;74;261;2539;244;258;0,95;34,31;53,82;0;Brazil;Latin America;"Universidade Estadual Paulista, Institute of Science and Technology of Sao Jose dos Campo";"2017-2025";"Dentistry (miscellaneous) (Q3)";"Dentistry" +18207;21100854849;"CEN Case Reports";journal;"21924449";"Springer";No;No;0,273;Q3;15;138;267;2639;216;254;0,84;19,12;29,41;0;Japan;Asiatic Region;"Springer";"2018-2026";"Nephrology (Q3)";"Medicine" +18208;21101089146;"Complex Analysis and its Synergies";journal;"25247581, 2197120X";"Springer International Publishing AG";No;No;0,273;Q3;8;28;55;628;29;55;0,54;22,43;16,67;0;Switzerland;Western Europe;"Springer International Publishing AG";"2015-2026";"Analysis (Q3); Mathematics (miscellaneous) (Q3); Numerical Analysis (Q3)";"Mathematics" +18209;19731;"Comptes Rendus - Mecanique";journal;"18737234, 16310721";"Academie des sciences";Yes;Yes;0,273;Q3;71;59;163;3450;174;160;0,97;58,47;23,02;1;France;Western Europe;"Academie des sciences";"2002-2025";"Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science" +18210;28630;"Geografiska Annaler, Series A: Physical Geography";journal;"04353676, 14680459";"Taylor and Francis Ltd.";No;No;0,273;Q3;64;1;37;111;41;35;0,71;111,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1965, 1979-2026";"Geography, Planning and Development (Q3); Geology (Q3)";"Earth and Planetary Sciences; Social Sciences" +18211;5700162947;"Global Economic Review";journal;"17443873, 1226508X";"Routledge";No;No;0,273;Q3;27;21;54;879;72;54;1,51;41,86;33,33;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Business and International Management (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Political Science and International Relations (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +18212;19600162205;"Herpetology Notes";journal;"20715773";"Societas Europaea Herpetologica";No;No;0,273;Q3;25;105;487;2947;269;251;0,53;28,07;25,26;0;Belgium;Western Europe;"Societas Europaea Herpetologica";"2008-2026";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +18213;21101072124;"International Journal of Diplomacy and Economy";journal;"20490895, 20490887";"Inderscience";No;No;0,273;Q3;11;21;31;1171;51;31;1,75;55,76;35,71;0;United Kingdom;Western Europe;"Inderscience";"2012-2026";"Economics and Econometrics (Q3); Finance (Q3); Political Science and International Relations (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +18214;19900193685;"International Journal of Knowledge-Based and Intelligent Engineering Systems";journal;"13272314, 18758827";"SAGE Publications Ltd";No;No;0,273;Q3;26;29;97;1678;167;97;1,95;57,86;29,58;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2004-2025";"Artificial Intelligence (Q3); Control and Systems Engineering (Q3); Software (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)";"Computer Science; Decision Sciences; Engineering; Mathematics" +18215;21101196034;"Investigative Magnetic Resonance Imaging";journal;"23841109";"Korean Society of Magnetic Resonance in Medicine";Yes;Yes;0,273;Q3;11;25;93;902;94;93;0,55;36,08;36,56;0;South Korea;Asiatic Region;"Korean Society of Magnetic Resonance in Medicine";"2019-2025";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +18216;29698;"Journal of Iron and Steel Research";journal;"10010963";"";No;No;0,273;Q3;24;114;458;4532;523;457;1,17;39,75;29,80;0;China;Asiatic Region;"";"1996-2020, 2022-2025";"Materials Chemistry (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)";"Engineering; Materials Science" +18217;20247;"Journal of Labor Research";journal;"01953613, 19364768";"Springer New York";No;No;0,273;Q3;43;7;41;381;40;41;0,79;54,43;8,33;0;United States;Northern America;"Springer New York";"1980-2026";"Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +18218;16400154780;"Physicochemical Problems of Mineral Processing";journal;"20844735, 16431049";"Oficyna Wydawnicza Politechniki Wroclawskiej";No;No;0,273;Q3;35;87;338;3128;499;337;1,47;35,95;26,69;0;Poland;Eastern Europe;"Oficyna Wydawnicza Politechniki Wroclawskiej";"2008-2025";"Economic Geology (Q3); Geology (Q3); Materials Chemistry (Q3); Physical and Theoretical Chemistry (Q3); Process Chemistry and Technology (Q3)";"Chemical Engineering; Chemistry; Earth and Planetary Sciences; Materials Science" +18219;21100967540;"Polityka Energetyczna";journal;"14296675";"Mineral and Energy Economy Research Institute of the Polish Academy of Sciences";No;No;0,273;Q3;19;38;121;1619;172;121;1,54;42,61;34,68;0;Poland;Eastern Europe;"Mineral and Energy Economy Research Institute of the Polish Academy of Sciences";"2016-2025";"Energy (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3)";"Energy; Environmental Science" +18220;21101019624;"Polymer Crystallization";journal;"25737619";"John Wiley and Sons Inc";No;No;0,273;Q3;21;0;7;0;11;7;1,33;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Inc";"2018-2024";"Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3); Physical and Theoretical Chemistry (Q3); Polymers and Plastics (Q3)";"Chemistry; Engineering; Materials Science" +18221;21101260457;"Proceedings of the Austrian Workshop on Microelectronics, Austrochip";journal;"26898152, 26898144";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,273;Q3;2;20;24;253;15;22;0,63;12,65;6,67;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Electrical and Electronic Engineering (Q3); Software (Q3)";"Computer Science; Engineering" +18222;89284;"Professioni infermieristiche";journal;"00330205";"Pensiero Scientifico Editore srl";No;No;0,273;Q3;18;0;19;0;24;17;7,00;0,00;0,00;0;Italy;Western Europe;"Pensiero Scientifico Editore srl";"1970-2023";"Medicine (miscellaneous) (Q3)";"Medicine" +18223;21100785517;"Respirology Case Reports";journal;"20513380";"Wiley-Blackwell Publishing Ltd";Yes;No;0,273;Q3;19;331;613;2586;414;587;0,68;7,81;30,66;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2013-2026";"Pulmonary and Respiratory Medicine (Q3)";"Medicine" +18224;21100943538;"Revista Internacional de Educacion para la Justicia Social";journal;"22543139";"Universidad Autonoma de Madrid";Yes;Yes;0,273;Q3;21;42;88;2047;100;86;0,95;48,74;60,61;0;Spain;Western Europe;"Universidad Autonoma de Madrid";"2012-2025";"Education (Q3); Sociology and Political Science (Q3)";"Social Sciences" +18225;25311;"Russian Journal of Inorganic Chemistry";journal;"00360236, 15318613";"Pleiades Publishing";No;No;0,273;Q3;42;214;771;8301;994;771;1,35;38,79;46,25;0;United States;Northern America;"Pleiades Publishing";"1996-2026";"Inorganic Chemistry (Q3); Materials Science (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science" +18226;100237;"Tekstilec";trade journal;"03513386, 23503696";"University of Ljubljana Press";Yes;Yes;0,273;Q3;17;27;84;1073;131;84;1,58;39,74;42,68;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"1989-2025";"Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Polymers and Plastics (Q3)";"Business, Management and Accounting; Engineering; Materials Science" +18227;5800173391;"Tourism in Marine Environments";journal;"1544273X";"Cognizant Communication Corporation";No;No;0,273;Q3;28;41;39;2201;57;38;1,30;53,68;35,42;0;United States;Northern America;"Cognizant Communication Corporation";"2006-2008, 2010-2025";"Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +18228;21101195809;"Turkish Journal of Civil Engineering";journal;"28226836";"Turkish Chamber of Civil Engineers";No;No;0,273;Q3;14;32;149;1397;155;149;1,17;43,66;21,79;0;Turkey;Middle East;"Turkish Chamber of Civil Engineers";"2023-2026";"Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +18229;21100775663;"HLA";journal;"20592302, 20592310";"Wiley-Blackwell Publishing Ltd";No;No;0,273;Q4;110;507;1303;4620;938;1014;0,88;9,11;49,33;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2011, 2016-2026";"Genetics (Q4); Immunology (Q4); Immunology and Allergy (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +18230;21100244944;"Electronic Proceedings in Theoretical Computer Science, EPTCS";conference and proceedings;"20752180";"Open Publishing Association";Yes;Yes;0,273;-;29;315;882;7200;472;755;0,55;22,86;21,63;0;United States;Northern America;"Open Publishing Association";"2009-2025";"Software";"Computer Science" +18231;21101193862;"Dostoevsky and World Culture. Philological Journal";journal;"27128512, 26190311";"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";Yes;Yes;0,272;Q1;6;45;122;1767;58;116;0,47;39,27;69,70;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";"2019-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +18232;21100202940;"International Journal of Multicultural Education";journal;"19345267";"Eastern University";Yes;Yes;0,272;Q1;30;14;46;886;67;46;1,35;63,29;57,58;0;United States;Northern America;"Eastern University";"2007-2025";"Cultural Studies (Q1); Anthropology (Q2); Social Sciences (miscellaneous) (Q2); Education (Q3)";"Social Sciences" +18233;21100870589;"International Journal of Play";journal;"21594953";"Taylor and Francis Ltd.";No;No;0,272;Q1;26;39;143;1596;135;120;0,95;40,92;65,22;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Cultural Studies (Q1); Anthropology (Q2); Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +18234;200147137;"Islam and Christian-Muslim Relations";journal;"14699311, 09596410";"Routledge";No;No;0,272;Q1;28;9;44;756;24;44;0,59;84,00;30,00;0;United Kingdom;Western Europe;"Routledge";"1990-1997, 2000-2026";"Religious Studies (Q1); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +18235;21100205922;"ISLE Interdisciplinary Studies in Literature and Environment";journal;"10760962, 17591090";"The Association for the Study of Literature and Environment (ASLE)";No;No;0,272;Q1;19;46;165;1628;75;149;0,57;35,39;57,14;0;United States;Northern America;"The Association for the Study of Literature and Environment (ASLE)";"1993-1994, 1998-2002, 2004-2006, 2008, 2011-2025";"Literature and Literary Theory (Q1); Environmental Science (miscellaneous) (Q3)";"Arts and Humanities; Environmental Science" +18236;21101000290;"TheoLogica";journal;"25930265";"Catholic University of Louvain";Yes;Yes;0,272;Q1;7;31;73;998;38;67;0,60;32,19;6,45;0;Belgium;Western Europe;"Catholic University of Louvain";"2017-2026";"Religious Studies (Q1); Philosophy (Q2)";"Arts and Humanities" +18237;21100940341;"Anthropology and Aging";journal;"23742267";"University Library System, University of Pittsburgh";Yes;Yes;0,272;Q2;8;4;46;97;42;40;0,91;24,25;75,00;0;United States;Northern America;"University Library System, University of Pittsburgh";"2013, 2019-2025";"Anthropology (Q2); Demography (Q3); Geriatrics and Gerontology (Q4); Life-span and Life-course Studies (Q4)";"Medicine; Social Sciences" +18238;5600155499;"Canadian Journal of Program Evaluation";journal;"08341516";"Canadian Journal of Program Evaluation";No;No;0,272;Q2;24;15;114;430;51;88;0,41;28,67;75,61;0;Canada;Northern America;"Canadian Journal of Program Evaluation";"1996, 2000-2001, 2003, 2005-2010, 2012-2025";"Library and Information Sciences (Q2)";"Social Sciences" +18239;84932;"Chinese Science Bulletin";journal;"0023074X, 20959419";"Science Press";No;No;0,272;Q2;57;581;1443;32856;1950;1398;1,22;56,55;38,31;0;China;Asiatic Region;"Science Press";"1963-1964, 1980-1984, 1989, 2015-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +18240;18200156703;"Journal of International Trade Law and Policy";journal;"14770024";"Emerald Group Publishing Ltd.";No;No;0,272;Q2;15;23;37;1241;41;36;0,92;53,96;26,92;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2002-2026";"Law (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Industrial Relations (Q3); Political Science and International Relations (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +18241;5700154184;"Legal Theory";journal;"13523252, 14698048";"Cambridge University Press";No;No;0,272;Q2;41;15;39;1120;49;36;0,77;74,67;21,05;0;United Kingdom;Western Europe;"Cambridge University Press";"1995-2025";"Law (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +18242;5900152866;"Metu Journal of the Faculty of Architecture";journal;"02585316";"Middle East Technical University";No;No;0,272;Q2;18;23;62;1245;22;60;0,31;54,13;63,41;0;Turkey;Middle East;"Middle East Technical University";"2008-2025";"Architecture (Q2)";"Engineering" +18243;21100942928;"Revista de Internet, Derecho y Politica";journal;"16998154";"Universitat Oberta de Catalunya";Yes;Yes;0,272;Q2;8;21;59;789;46;57;0,80;37,57;26,92;0;Spain;Western Europe;"Universitat Oberta de Catalunya";"2019-2026";"Law (Q2); Computer Science (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Computer Science; Social Sciences" +18244;21101062822;"Revista Juridica Portucalense";journal;"21835705, 21835799";"Universidade Portucalense";Yes;Yes;0,272;Q2;6;56;174;1923;116;166;0,72;34,34;48,74;0;Portugal;Western Europe;"Universidade Portucalense";"2019-2026";"Law (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +18245;21100390180;"Voprosy Kognitivnoy Lingvistiki";journal;"18123228";"Tambov State University";No;No;0,272;Q2;10;28;129;1013;25;129;0,19;36,18;80,56;0;Russian Federation;Eastern Europe;"Tambov State University";"2014-2025";"Linguistics and Language (Q2)";"Social Sciences" +18246;25558;"Arboricultural Journal";journal;"21681074, 03071375";"Taylor and Francis Ltd.";No;No;0,272;Q3;27;32;64;1473;72;47;1,20;46,03;24,19;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974-2026";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +18247;23110;"Asia-Pacific Journal of Operational Research";journal;"02175959, 17937019";"World Scientific Publishing Co. Pte Ltd";No;No;0,272;Q3;41;97;206;3491;252;202;1,34;35,99;39,79;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1991, 1996-2026";"Management Science and Operations Research (Q3)";"Decision Sciences" +18248;21101167527;"Blasting";journal;"1001487X";"";No;No;0,272;Q3;9;69;286;1522;205;286;0,81;22,06;26,18;0;China;Asiatic Region;"";"2019-2025";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3)";"Chemical Engineering; Chemistry; Energy" +18249;19900191729;"Case Reports in Ophthalmology";journal;"16632699";"S. Karger AG";Yes;No;0,272;Q3;26;125;416;1934;307;414;0,62;15,47;42,13;0;Switzerland;Western Europe;"S. Karger AG";"2010-2026";"Ophthalmology (Q3)";"Medicine" +18250;26789;"CCAMLR Science";journal;"10234063";"Comm. for the Conserv. of Antartic Marine Living Resources";No;No;0,272;Q3;36;7;7;321;16;6;2,29;45,86;30,00;0;Australia;Pacific Region;"Comm. for the Conserv. of Antartic Marine Living Resources";"1996-1997, 1999-2016, 2023, 2025";"Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +18251;21101300614;"China Mining Magazine";journal;"10044051";"China Mining Magazine Co., Ltd";No;No;0,272;Q3;16;530;1428;13155;1549;1428;1,27;24,82;32,58;0;China;Asiatic Region;"China Mining Magazine Co., Ltd";"2021-2026";"Engineering (miscellaneous) (Q3); Geotechnical Engineering and Engineering Geology (Q3); Waste Management and Disposal (Q3)";"Earth and Planetary Sciences; Engineering; Environmental Science" +18252;21100198475;"Electronic Letters on Computer Vision and Image Analysis";journal;"15775097";"Universitat Autonoma de Barcelona";Yes;Yes;0,272;Q3;16;19;33;771;50;33;0,90;40,58;37,50;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2011-2025";"Computer Vision and Pattern Recognition (Q3); Software (Q3)";"Computer Science" +18253;21100200820;"Emirates Journal of Food and Agriculture";journal;"20790538, 2079052X";"Pensoft Publishers";Yes;No;0,272;Q3;52;36;311;1710;455;311;1,55;47,50;39,64;0;United Arab Emirates;Middle East;"Pensoft Publishers";"1996-2026";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Applied Microbiology and Biotechnology (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Immunology and Microbiology" +18254;5800228210;"FinanzArchiv";journal;"00152218, 16140974";"JCB Mohr";No;No;0,272;Q3;23;6;47;267;25;45;0,48;44,50;0,00;1;Germany;Western Europe;"JCB Mohr";"1981, 2006-2025";"Finance (Q3)";"Economics, Econometrics and Finance" +18255;21101274742;"Future Technology";journal;"28320379";"";No;No;0,272;Q3;9;65;55;2150;77;54;1,28;33,08;41,61;0;United States;Northern America;"";"2022-2026";"Artificial Intelligence (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Computer Science; Engineering" +18256;21101199459;"Geological Survey of China";journal;"20958706";"";No;No;0,272;Q3;14;72;248;2135;195;248;0,75;29,65;32,13;0;China;Asiatic Region;"";"2019-2025";"Geochemistry and Petrology (Q3); Geology (Q3); Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +18257;21101085514;"Journal of Childhood, Education and Society";journal;"2717638X";"Istanbul Kultur University";Yes;Yes;0,272;Q3;9;45;78;2808;99;76;1,33;62,40;80,39;0;Turkey;Middle East;"Istanbul Kultur University";"2020-2026";"Developmental and Educational Psychology (Q3); Education (Q3)";"Psychology; Social Sciences" +18258;21101136670;"Journal of Eta Maritime Science";journal;"21472955, 21489386";"Galenos Publishing House";Yes;Yes;0,272;Q3;10;36;97;1155;123;85;1,14;32,08;31,43;0;Turkey;Middle East;"Galenos Publishing House";"2019-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +18259;21100849700;"MRS Advances";journal;"27315894, 20598521";"Springer Nature";No;No;0,272;Q3;67;485;820;10662;983;813;1,25;21,98;29,27;0;Switzerland;Western Europe;"Springer Nature";"2012, 2015-2026";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +18260;23252;"Nematology";journal;"15685411, 13885545";"Brill Academic Publishers";No;No;0,272;Q3;68;82;221;3428;215;221;1,00;41,80;34,60;0;Netherlands;Western Europe;"Brill Academic Publishers";"1999-2026";"Agronomy and Crop Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +18261;21101251289;"Neurosurgery Practice";journal;"28344383";"Lippincott Williams and Wilkins";Yes;No;0,272;Q3;4;55;83;1459;63;83;0,76;26,53;22,10;0;United States;Northern America;"Lippincott Williams and Wilkins";"2020-2026";"Neurology (clinical) (Q3); Surgery (Q3)";"Medicine" +18262;18123;"Occupational Therapy in Mental Health";journal;"0164212X, 15413101";"Routledge";No;No;0,272;Q3;27;68;69;2715;78;67;1,14;39,93;74,86;0;United Kingdom;Western Europe;"Routledge";"1980-1993, 1995-2026";"Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3); Applied Psychology (Q4)";"Medicine; Psychology" +18263;19700171103;"Revista del Museo Argentino de Ciencias Naturales, Nueva Serie";journal;"15145158";"Museo Argentino de Ciencias Naturales Bernardino Rivadavia";Yes;Yes;0,272;Q3;21;29;51;1994;44;51;0,87;68,76;36,22;0;Argentina;Latin America;"Museo Argentino de Ciencias Naturales Bernardino Rivadavia";"2008-2025";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Paleontology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +18264;17166;"Rhodora";journal;"00354902";"Allen Press Inc.";No;No;0,272;Q3;24;25;47;1120;32;44;0,68;44,80;31,03;0;United States;Northern America;"Allen Press Inc.";"1981-1986, 1995-2025";"Horticulture (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +18265;21510;"Russian Chemical Bulletin";journal;"10665285, 15739171";"Springer New York";No;No;0,272;Q3;53;332;1045;13245;1383;1031;1,43;39,89;50,91;0;United States;Northern America;"Springer New York";"1993-2025";"Chemistry (miscellaneous) (Q3)";"Chemistry" +18266;21100792813;"Turczaninowia";journal;"15607267, 15607259";"Altai State University";Yes;Yes;0,272;Q3;14;125;214;4184;132;214;0,57;33,47;45,53;0;Russian Federation;Eastern Europe;"Altai State University";"2016-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18267;19700200907;"Design and Culture";journal;"17547083, 17547075";"Taylor and Francis Ltd.";No;No;0,271;Q1;21;18;53;741;67;44;0,79;41,17;68,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +18268;20600195073;"International Indigenous Policy Journal";journal;"19165781";"Scholarship at Western";Yes;Yes;0,271;Q1;31;10;49;781;53;49;0,82;78,10;70,59;0;United Kingdom;Western Europe;"Scholarship at Western";"2010-2025";"Cultural Studies (Q1); Anthropology (Q2); Sociology and Political Science (Q3)";"Social Sciences" +18269;21100914204;"Metal Music Studies";journal;"20523998, 20524005";"Intellect Ltd.";No;No;0,271;Q1;15;40;62;799;43;53;0,73;19,98;33,33;0;United Kingdom;Western Europe;"Intellect Ltd.";"2014-2025";"Music (Q1)";"Arts and Humanities" +18270;21100863480;"New Research of Tuva";journal;"20798482";"";Yes;No;0,271;Q1;16;93;221;3157;167;221;0,81;33,95;74,10;0;Russian Federation;Eastern Europe;"";"2016-2025";"Cultural Studies (Q1); History (Q1); Anthropology (Q2)";"Arts and Humanities; Social Sciences" +18271;21100868866;"African Journal of International and Comparative Law";journal;"09548890, 17551609";"Edinburgh University Press";No;No;0,271;Q2;15;32;92;1672;45;88;0,31;52,25;36,36;0;United Kingdom;Western Europe;"Edinburgh University Press";"2005-2025";"Law (Q2)";"Social Sciences" +18272;21100926573;"Derecho PUCP";journal;"23052546, 02513420";"Pontificia Universidad Catolica del Peru";Yes;Yes;0,271;Q2;7;18;65;1542;48;65;0,63;85,67;18,18;0;Peru;Latin America;"Pontificia Universidad Catolica del Peru";"2019-2025";"Law (Q2)";"Social Sciences" +18273;21101090832;"Heritage and Sustainable Development";journal;"27120554";"Research and Development Academy";Yes;Yes;0,271;Q2;12;85;101;3851;205;101;2,13;45,31;27,62;0;Bosnia and Herzegovina;Eastern Europe;"Research and Development Academy";"2019-2026";"Architecture (Q2); Business, Management and Accounting (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Environmental Engineering (Q3)";"Business, Management and Accounting; Engineering; Environmental Science" +18274;21101336774;"International Journal of Social Pedagogy";journal;"20515804";"UCL Press";Yes;No;0,271;Q2;6;15;42;801;59;40;1,66;53,40;68,00;0;United Kingdom;Western Europe;"UCL Press";"2021-2026";"Social Sciences (miscellaneous) (Q2); Education (Q3)";"Social Sciences" +18275;21101111520;"Journal of Road Safety";journal;"26524260, 26524252";"Australasian College of Road Safety";Yes;Yes;0,271;Q2;8;24;74;985;71;69;0,90;41,04;43,48;0;Australia;Pacific Region;"Australasian College of Road Safety";"2019-2025";"Social Sciences (miscellaneous) (Q2); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3); Transportation (Q4)";"Engineering; Social Sciences" +18276;145712;"Statute Law Review";journal;"14643863, 01443593";"Oxford University Press";No;No;0,271;Q2;16;39;114;2898;80;112;0,78;74,31;34,09;0;United Kingdom;Western Europe;"Oxford University Press";"1980-2026";"Law (Q2)";"Social Sciences" +18277;21100981747;"Urbano";journal;"07173997, 07183607";"Universidad del Bio Bio";Yes;Yes;0,271;Q2;8;22;57;674;48;51;0,87;30,64;51,92;0;Chile;Latin America;"Universidad del Bio Bio";"2016-2025";"Urban Studies (Q2)";"Social Sciences" +18278;12100156149;"Visual Anthropology Review";journal;"10587187, 15487458";"Wiley-Blackwell";No;No;0,271;Q2;25;14;68;411;40;48;0,59;29,36;11,76;0;United States;Northern America;"Wiley-Blackwell";"1991-2025";"Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +18279;16209;"Acta Botanica Hungarica";journal;"15882578, 02366495";"Akademiai Kiado";No;No;0,271;Q3;28;29;45;1308;61;45;1,66;45,10;35,29;0;Hungary;Eastern Europe;"Akademiai Kiado";"1986-1989, 2001-2004, 2007-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +18280;21101049048;"Acta Hydrologica Slovaca";journal;"26444690";"Slovak Academy of Sciences, Institute of Hydrology";No;No;0,271;Q3;7;40;100;1384;112;100;1,43;34,60;42,11;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences, Institute of Hydrology";"2019-2025";"Computers in Earth Sciences (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science" +18281;12300154717;"Ankara Universitesi Veteriner Fakultesi Dergisi";journal;"13082817, 13000861";"Ankara University";Yes;No;0,271;Q3;19;60;180;2180;170;180;0,88;36,33;35,24;0;Turkey;Middle East;"Ankara University";"2008-2026";"Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +18282;21100394092;"Bioinspired, Biomimetic and Nanobiomaterials";journal;"20459858, 20459866";"ICE Publishing";No;No;0,271;Q3;22;7;42;289;73;42;1,70;41,29;10,00;0;United Kingdom;Western Europe;"ICE Publishing";"2012-2025";"Engineering (miscellaneous) (Q3); Biomaterials (Q4)";"Engineering; Materials Science" +18283;77291;"Biomedica";journal;"01204157, 25907379";"Instituto Nacional de Salud";Yes;Yes;0,271;Q3;37;84;277;2297;240;258;0,76;27,35;51,45;0;Colombia;Latin America;"Instituto Nacional de Salud";"2001-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +18284;21100812103;"Bulletin of the Tomsk Polytechnic University, Geo Assets Engineering";journal;"24131830, 25001019";"Tomsk Polytechnic University, Publishing House";Yes;Yes;0,271;Q3;19;234;704;7545;542;704;0,82;32,24;36,01;0;Russian Federation;Eastern Europe;"Tomsk Polytechnic University, Publishing House";"2015-2026";"Economic Geology (Q3); Fuel Technology (Q3); Geotechnical Engineering and Engineering Geology (Q3); Management, Monitoring, Policy and Law (Q3); Materials Science (miscellaneous) (Q3); Waste Management and Disposal (Q3)";"Earth and Planetary Sciences; Energy; Environmental Science; Materials Science" +18285;21101101204;"Burns Open";journal;"24689122";"Elsevier B.V.";Yes;No;0,271;Q3;16;54;134;1343;135;133;0,94;24,87;41,35;0;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Critical Care and Intensive Care Medicine (Q3); Dermatology (Q3); Emergency Medicine (Q3); Surgery (Q3)";"Medicine" +18286;21100802779;"Clinical Diabetology";journal;"24508187, 24507458";"Via Medica";Yes;Yes;0,271;Q3;12;49;173;1267;118;136;0,66;25,86;45,23;0;Poland;Eastern Europe;"Via Medica";"2015-2025";"Internal Medicine (Q3); Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +18287;21100858348;"Croatian Operational Research Review";journal;"18480225, 18489931";"Croatian Operational Research Society";Yes;Yes;0,271;Q3;12;16;49;425;61;49;1,41;26,56;56,25;0;Croatia;Eastern Europe;"Croatian Operational Research Society";"2017-2026";"Applied Mathematics (Q3); Economics and Econometrics (Q3); Management Science and Operations Research (Q3); Statistics, Probability and Uncertainty (Q3); Statistics and Probability (Q4)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +18288;4700152432;"Current Medical Imaging";journal;"15734056, 18756603";"Bentham Science Publishers";No;No;0,271;Q3;31;242;909;8414;1088;904;1,18;34,77;40,70;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Internal Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +18289;4400151748;"Entomological Science";journal;"13438786, 14798298";"Wiley-Blackwell";No;No;0,271;Q3;40;26;86;885;73;86;0,70;34,04;15,38;0;United States;Northern America;"Wiley-Blackwell";"2005-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +18290;29179;"Ergonomics in Design";journal;"10648046";"SAGE Publications Inc.";No;No;0,271;Q3;29;37;77;856;89;60;1,15;23,14;34,44;1;United States;Northern America;"SAGE Publications Inc.";"1993-2026";"Engineering (miscellaneous) (Q3); Human Factors and Ergonomics (Q3)";"Engineering; Social Sciences" +18291;19700183002;"Indian Journal of Animal Research";journal;"03676722, 09760555";"Agricultural Research Communication Centre";No;No;0,271;Q3;21;341;840;10640;735;840;0,91;31,20;31,99;0;India;Asiatic Region;"Agricultural Research Communication Centre";"2008-2026";"Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +18292;145208;"Indian Journal of Physics";journal;"09731458, 09749845";"Indian Physical Society";No;No;0,271;Q3;50;605;1290;29772;2228;1287;1,76;49,21;28,12;0;India;Asiatic Region;"Indian Physical Society";"2005-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +18293;28325;"International Journal of Parallel Programming";journal;"08857458, 15737640";"Springer";No;No;0,271;Q3;43;28;56;1038;98;53;1,40;37,07;17,00;0;United States;Northern America;"Springer";"1986-1992, 1994-2025";"Information Systems (Q3); Software (Q3); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +18294;21101132923;"Internet Technology Letters";journal;"24761508";"John Wiley and Sons Inc";No;No;0,271;Q3;27;309;204;4852;361;118;1,61;15,70;35,62;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2018-2026";"Artificial Intelligence (Q3); Computer Networks and Communications (Q3); Information Systems (Q3); Software (Q3)";"Computer Science" +18295;21100246529;"IUCN/SSC Otter Specialist Group Bulletin";journal;"10239030";"IUCN Otter Specialist Group";No;No;0,271;Q3;11;22;74;666;41;74;0,55;30,27;33,82;0;Luxembourg;Western Europe;"IUCN Otter Specialist Group";"2013-2026";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +18296;20484;"Journal of Insect Behavior";journal;"08927553, 15728889";"Springer";No;No;0,271;Q3;60;30;71;1720;67;71;0,92;57,33;39,60;0;United States;Northern America;"Springer";"1988-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +18297;21100456601;"Journal of Pharmacy and Pharmacognosy Research";journal;"07194250";"Academic Association of Pharmaceutical Sciences from Antofagasta (ASOCIFA)";Yes;No;0,271;Q3;25;169;295;7287;465;294;1,40;43,12;50,43;0;Chile;Latin America;"Academic Association of Pharmaceutical Sciences from Antofagasta (ASOCIFA)";"2013-2025";"Complementary and Alternative Medicine (Q3); Pharmaceutical Science (Q3); Pharmacology (Q3); Pharmacy (Q3); Drug Discovery (Q4)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +18298;21101052760;"Journal of Public Health and Emergency";journal;"25200054";"AME Publishing Company";No;No;0,271;Q3;11;40;112;1686;105;89;1,05;42,15;47,58;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2017, 2019-2025";"Emergency Medicine (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +18299;5000153902;"Journal of Social Work Practice in the Addictions";journal;"1533256X, 15332578";"Routledge";No;No;0,271;Q3;32;31;85;1480;89;74;0,80;47,74;68,47;0;United States;Northern America;"Routledge";"2001-2026";"Health (social science) (Q3); Rehabilitation (Q3); Social Work (Q4)";"Medicine; Social Sciences" +18300;21100825365;"Journal of World's Poultry Research";journal;"2322455X";"Scienceline Publication";No;No;0,271;Q3;16;43;114;1948;148;114;1,33;45,30;36,76;0;Turkey;Middle East;"Scienceline Publication";"2017-2025";"Animal Science and Zoology (Q3); Food Animals (Q3)";"Agricultural and Biological Sciences; Veterinary" +18301;12225;"Laser Physics";journal;"1054660X, 15556611";"Institute of Physics Publishing";No;No;0,271;Q3;65;100;445;3574;508;445;1,17;35,74;32,79;0;United States;Northern America;"Institute of Physics Publishing";"1996-2025";"Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Industrial and Manufacturing Engineering (Q3); Instrumentation (Q3)";"Engineering; Physics and Astronomy" +18302;21101197364;"Mineral Resources of Ukraine";journal;"27078698, 1682721X";"Ukrainian Geological Company";Yes;Yes;0,271;Q3;6;52;88;1012;75;88;0,88;19,46;44,12;0;Ukraine;Eastern Europe;"Ukrainian Geological Company";"2019-2025";"Ecology (Q3); Economic Geology (Q3); Environmental Science (miscellaneous) (Q3); Geology (Q3)";"Earth and Planetary Sciences; Environmental Science" +18303;21100836844;"Minimax Theory and its Applications";journal;"21991413, 21991421";"Heldermann Verlag";No;No;0,271;Q3;12;12;60;369;26;60;0,37;30,75;19,05;0;Germany;Western Europe;"Heldermann Verlag";"2016-2025";"Computational Mathematics (Q3); Control and Optimization (Q3); Analysis (Q4)";"Mathematics" +18304;21100873734;"New Zealand Journal of Physiotherapy";journal;"22304886, 03037193";"Physiotherapy New Zealand";Yes;No;0,271;Q3;9;15;63;623;48;54;0,62;41,53;65,63;0;New Zealand;Pacific Region;"Physiotherapy New Zealand";"2018-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions" +18305;5200153102;"Obstetrics, Gynaecology and Reproductive Medicine";journal;"17517214, 18793622";"Churchill Livingstone";No;No;0,271;Q3;22;60;180;288;114;144;0,66;4,80;71,84;0;United Kingdom;Western Europe;"Churchill Livingstone";"1970, 2007-2026";"Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine" +18306;21100305371;"Serbian Journal of Management";journal;"14524864, 22177159";"University of Belgrade";Yes;Yes;0,271;Q3;19;26;84;1327;146;84;1,46;51,04;51,25;0;Serbia;Eastern Europe;"University of Belgrade";"2014-2025";"Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting" +18307;21100217604;"Siglo Cero";journal;"02101696, 25300350";"University of Salamanca";Yes;Yes;0,271;Q3;15;34;81;1190;66;76;0,82;35,00;63,77;0;Spain;Western Europe;"University of Salamanca";"2012, 2015-2025";"Education (Q3); Psychology (miscellaneous) (Q3); Psychiatry and Mental Health (Q4); Social Psychology (Q4); Social Work (Q4)";"Medicine; Psychology; Social Sciences" +18308;21101036624;"Techniques and Innovations in Gastrointestinal Endoscopy";journal;"25900307, 26665107";"Elsevier B.V.";No;No;0,271;Q3;22;33;158;1126;112;146;0,74;34,12;28,64;0;Netherlands;Western Europe;"Elsevier B.V.";"2020-2026";"Gastroenterology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +18309;25394;"Zeitschrift fur Gastroenterologie";journal;"00442771, 14397803";"Georg Thieme Verlag";No;No;0,271;Q3;69;273;1032;4890;474;508;0,41;17,91;29,86;0;Germany;Western Europe;"Georg Thieme Verlag";"1971-2026";"Gastroenterology (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +18310;12222;"Conference Record - Asilomar Conference on Signals, Systems and Computers";conference and proceedings;"25762303, 10586393";"IEEE Computer Society";No;No;0,271;-;91;0;938;0;713;932;0,66;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"1985, 1990, 1992-2024";"Computer Networks and Communications; Signal Processing";"Computer Science" +18311;21100219905;"IEEE International Ultrasonics Symposium, IUS";conference and proceedings;"19485727, 19485719";"IEEE Computer Society";No;No;0,271;-;66;595;1131;8114;883;1125;0,85;13,64;26,74;0;United States;Northern America;"IEEE Computer Society";"2011-2014, 2016-2023, 2025";"Acoustics and Ultrasonics";"Physics and Astronomy" +18312;21100258405;"International Association of Geodesy Symposia";conference and proceedings;"21979359, 09399585";"Springer Science and Business Media Deutschland GmbH";No;No;0,271;-;31;47;155;1122;93;146;0,60;23,87;24,38;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996, 2005-2010, 2012-2021, 2023-2025";"Computers in Earth Sciences; Geophysics";"Earth and Planetary Sciences" +18313;21100278101;"International Conference on the European Energy Market, EEM";conference and proceedings;"21654077, 21654093";"IEEE Computer Society";No;No;0,271;-;28;279;464;6100;437;461;1,00;21,86;21,62;0;United States;Northern America;"IEEE Computer Society";"2013-2020, 2022-2025";"Energy Engineering and Power Technology; Fuel Technology; Marketing";"Business, Management and Accounting; Energy" +18314;23681;"Proceedings of the IEEE Symposium on Computer-Based Medical Systems";conference and proceedings;"10637125";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,271;-;46;188;341;4052;416;335;1,18;21,55;30,07;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992-2025";"Computer Science Applications; Radiology, Nuclear Medicine and Imaging";"Computer Science; Medicine" +18315;19641;"Bijdragen en Mededelingen Betreffende de Geschiedenis der Nederlanden";journal;"01650505, 22112898";"Koninklijk Nederlands Historisch Genootschap";Yes;Yes;0,270;Q1;16;24;64;1614;26;51;0,26;67,25;44,00;0;Netherlands;Western Europe;"Koninklijk Nederlands Historisch Genootschap";"1975, 1999-2002, 2009-2025";"History (Q1)";"Arts and Humanities" +18316;21100837350;"Domes : Digest of Middle East Studies";journal;"10604367, 19493606";"John Wiley and Sons Inc";No;No;0,270;Q1;18;14;76;861;88;62;1,32;61,50;53,33;0;United States;Northern America;"John Wiley and Sons Inc";"1992-2026";"Cultural Studies (Q1); History (Q1); Religious Studies (Q1); Law (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18317;21100903778;"Film-Philosophy";journal;"14664615";"Edinburgh University Press";Yes;Yes;0,270;Q1;14;32;71;1337;56;67;0,83;41,78;27,27;0;United Kingdom;Western Europe;"Edinburgh University Press";"1998-2000, 2002-2025";"Visual Arts and Performing Arts (Q1); Communication (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +18318;22498;"Journal of Semitic Studies";journal;"14778556, 00224480";"Oxford University Press";No;No;0,270;Q1;20;26;89;2014;34;89;0,42;77,46;27,27;0;United Kingdom;Western Europe;"Oxford University Press";"1956-1975, 1977-2025";"Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Religious Studies (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +18319;24010;"Constitutional Political Economy";journal;"15729966, 10434062";"Springer New York";No;No;0,270;Q2;36;50;87;2798;98;86;1,08;55,96;21,52;2;United States;Northern America;"Springer New York";"1990-2026";"Law (Q2); Philosophy (Q2); Economics and Econometrics (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +18320;21100206278;"Estudios de Fonetica Experimental";journal;"23853573, 15755533";"Universitat de Barcelona";Yes;Yes;0,270;Q2;9;11;37;733;14;37;0,50;66,64;35,00;0;Spain;Western Europe;"Universitat de Barcelona";"2011-2025";"Linguistics and Language (Q2)";"Social Sciences" +18321;21100783636;"International Political Science Abstracts";journal;"00208345, 17519292";"SAGE Publications Inc.";No;No;0,270;Q2;3;6;22;258;32;22;1,10;43,00;66,67;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2007, 2018, 2022-2025";"Arts and Humanities (miscellaneous) (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18322;21100983214;"Journal of Scientometric Research";journal;"23200057, 23216654";"Phcog.Net";No;No;0,270;Q2;14;53;193;2969;327;192;1,83;56,02;35,51;0;India;Asiatic Region;"Phcog.Net";"2019-2025";"Library and Information Sciences (Q2); Computer Science Applications (Q3); Information Systems (Q3)";"Computer Science; Social Sciences" +18323;21100258403;"Mutatis Mutandis";journal;"2011799X";"Universidad de Antioquia";Yes;Yes;0,270;Q2;9;28;82;1481;35;75;0,36;52,89;70,45;0;Colombia;Latin America;"Universidad de Antioquia";"2013-2025";"Linguistics and Language (Q2)";"Social Sciences" +18324;17022;"Perspectives in Biology and Medicine";journal;"15298795, 00315982";"Johns Hopkins University Press";No;No;0,270;Q2;58;44;154;1327;144;146;0,83;30,16;44,87;0;United States;Northern America;"Johns Hopkins University Press";"1957-2025";"History and Philosophy of Science (Q2); Health Policy (Q3); Issues, Ethics and Legal Aspects (Q3); Medicine (miscellaneous) (Q3)";"Arts and Humanities; Medicine; Nursing" +18325;4500151524;"Acta Ortopedica Brasileira";journal;"14137852";"Sociedade Brasileira de Ortopedia e Traumatologia";Yes;No;0,270;Q3;33;93;271;2199;220;269;0,68;23,65;21,47;0;Brazil;Latin America;"Sociedade Brasileira de Ortopedia e Traumatologia";"2006-2026";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)";"Health Professions; Medicine" +18326;21101121577;"Advances in Fixed Point Theory";journal;"19276303";"SCIK Publishing Corporation";No;No;0,270;Q3;6;54;107;1237;99;107;1,01;22,91;32,47;0;United Kingdom;Western Europe;"SCIK Publishing Corporation";"2019-2026";"Computational Mathematics (Q3); Control and Optimization (Q3); Analysis (Q4); Geometry and Topology (Q4)";"Mathematics" +18327;21101247341;"Childhood Kidney Diseases";journal;"23840242, 23840250";"Korean Society of Pediatric Nephrology";Yes;Yes;0,270;Q3;5;20;59;569;40;56;0,75;28,45;61,29;0;South Korea;Asiatic Region;"Korean Society of Pediatric Nephrology";"2020-2025";"Nephrology (Q3); Pediatrics, Perinatology and Child Health (Q3); Transplantation (Q3); Urology (Q3)";"Medicine" +18328;24412;"Community Dental Health";journal;"25151746, 0265539X";"SAGE Publications Ltd";No;No;0,270;Q3;57;17;139;16;154;124;1,06;0,94;60,38;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1984-2025";"Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Dentistry; Medicine" +18329;21100928675;"Corrosion Science and Technology";journal;"15986462, 22886524";"Corrosion Science Society of Korea";Yes;No;0,270;Q3;11;51;177;1477;213;176;1,20;28,96;29,33;0;South Korea;Asiatic Region;"Corrosion Science Society of Korea";"2019-2025";"Materials Chemistry (Q3); Metals and Alloys (Q3); Surfaces, Coatings and Films (Q3); Electrochemistry (Q4)";"Chemistry; Materials Science" +18330;24918;"Electronics Letters";journal;"1350911X, 00135194";"John Wiley & Sons Inc.";Yes;No;0,270;Q3;163;384;1070;6174;1225;901;1,20;16,08;26,80;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"1965-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +18331;101441;"Engenharia Agricola";journal;"18094430, 01006916";"Sociedade Brasileira de Engenharia Agricola";Yes;No;0,270;Q3;34;54;231;1457;399;231;1,94;26,98;29,91;0;Brazil;Latin America;"Sociedade Brasileira de Engenharia Agricola";"1981, 2006-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +18332;21101162729;"Examples and Counterexamples";journal;"2666657X";"Elsevier B.V.";Yes;No;0,270;Q3;7;38;101;624;81;100;0,80;16,42;25,37;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Applied Mathematics (Q3); Computational Mathematics (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics" +18333;21101222992;"Holistic Approach to Environment";journal;"18480071";"Association for Promotion of Holistic Approach to Environment";Yes;Yes;0,270;Q3;7;16;48;521;66;48;1,38;32,56;45,95;0;Croatia;Eastern Europe;"Association for Promotion of Holistic Approach to Environment";"2020-2026";"Ecology (Q3); Environmental Science (miscellaneous) (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3)";"Environmental Science" +18334;25518;"IEEE Computer Graphics and Applications";journal;"15581756, 02721716";"IEEE Computer Society";Yes;No;0,270;Q3;107;100;235;1825;474;210;2,19;18,25;33,10;0;United States;Northern America;"IEEE Computer Society";"1981-2026";"Computer Graphics and Computer-Aided Design (Q3); Software (Q3)";"Computer Science" +18335;29186;"Indonesian Journal of Geography";journal;"00249521";"Gadjah Mada University";Yes;No;0,270;Q3;16;60;154;2552;195;154;1,10;42,53;32,52;0;Indonesia;Asiatic Region;"Gadjah Mada University";"1976-1984, 1986-1987, 1990-1992, 1994-1997, 2015-2025";"Computers in Earth Sciences (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +18336;21100836589;"International Journal of Business Environment";journal;"17400589, 17400597";"Inderscience Enterprises Ltd";No;No;0,270;Q3;13;21;61;1950;100;61;1,76;92,86;33,90;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2017-2026";"Business and International Management (Q3); Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Decision Sciences" +18337;145056;"International Journal of Distance Education Technologies";journal;"15393119, 15393100";"IGI Global";No;No;0,270;Q3;27;23;20;1279;41;20;1,60;55,61;48,53;0;United States;Northern America;"IGI Global";"2003-2026";"Computer Networks and Communications (Q3); Computer Science Applications (Q3); Education (Q3); E-learning (Q4)";"Computer Science; Social Sciences" +18338;14083;"Izvestiya, Atmospheric and Oceanic Physics";journal;"00014338, 1555628X";"Pleiades Publishing";No;No;0,270;Q3;39;95;515;4279;345;511;0,67;45,04;35,98;0;United States;Northern America;"Pleiades Publishing";"1972-1977, 1979-1987, 1992-2025";"Oceanography (Q3); Atmospheric Science (Q4)";"Earth and Planetary Sciences" +18339;21100837258;"Journal of Applied Water Engineering and Research";journal;"23249676";"Taylor and Francis Ltd.";No;No;0,270;Q3;20;29;87;1346;131;87;1,66;46,41;31,03;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Water Science and Technology (Q3)";"Environmental Science" +18340;21101284297;"Journal of Business Models";journal;"22462465";"Aalborg University press";Yes;No;0,270;Q3;13;13;55;908;71;50;1,51;69,85;38,46;0;Denmark;Western Europe;"Aalborg University press";"2020-2025";"Accounting (Q3); Business, Management and Accounting (miscellaneous) (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +18341;12509;"Journal of Integrated Design and Process Science";journal;"10920617, 18758959";"SAGE Publications Ltd";No;No;0,270;Q3;22;20;42;1107;57;41;1,50;55,35;40,82;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1999-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +18342;21101197193;"Journal of Public Health and Pharmacy";journal;"27754952";"Muhammadiyah Palu University";Yes;No;0,270;Q3;5;63;62;2590;100;62;1,72;41,11;42,22;0;Indonesia;Asiatic Region;"Muhammadiyah Palu University";"2021-2026";"Pharmaceutical Science (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +18343;7000153222;"Journal of Rubber Research";journal;"15111768, 25243993";"Springer Nature";No;No;0,270;Q3;18;55;127;2772;208;123;1,38;50,40;31,88;0;Malaysia;Asiatic Region;"Springer Nature";"2007-2017, 2020-2026";"Organic Chemistry (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Chemistry" +18344;15256;"Korean Journal of Defense Analysis";journal;"19414641, 10163271";"Korea Institute for Defense Analyses";No;No;0,270;Q3;14;6;81;542;40;81;0,51;90,33;25,00;0;South Korea;Asiatic Region;"Korea Institute for Defense Analyses";"1996-2025";"Political Science and International Relations (Q3); Safety Research (Q3); Sociology and Political Science (Q3)";"Social Sciences" +18345;13430;"Mausam";journal;"02529416";"India Meteorological Department";No;No;0,270;Q3;25;89;248;3148;266;233;1,05;35,37;25,49;0;India;Asiatic Region;"India Meteorological Department";"1979, 1981, 1983, 1985, 2008-2026";"Geophysics (Q3); Atmospheric Science (Q4)";"Earth and Planetary Sciences" +18346;11500153304;"Nonlinear Dynamics and Systems Theory";journal;"15628353, 18137385";"InforMath Publishing Group";No;No;0,270;Q3;24;49;151;935;138;151;0,91;19,08;28,10;0;Ukraine;Eastern Europe;"InforMath Publishing Group";"2007-2025";"Applied Mathematics (Q3); Mathematical Physics (Q3)";"Mathematics" +18347;12923;"Odonatologica";journal;"03750183";"Societas Internationalis Odonatologica";No;No;0,270;Q3;28;13;55;521;31;55;0,56;40,08;25,00;0;Netherlands;Western Europe;"Societas Internationalis Odonatologica";"1996-2025";"Insect Science (Q3)";"Agricultural and Biological Sciences" +18348;21101088429;"Odovtos - International Journal of Dental Sciences";journal;"22153411, 16591046";"Universidad de Costa Rica";No;Yes;0,270;Q3;10;43;155;1132;149;144;0,96;26,33;45,69;0;Costa Rica;Latin America;"Universidad de Costa Rica";"2019-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +18349;19700186833;"Open Construction and Building Technology Journal";journal;"18748368";"Bentham Science Publishers";Yes;No;0,270;Q3;30;13;40;699;64;39;1,62;53,77;19,35;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2010-2025";"Building and Construction (Q3)";"Engineering" +18350;17900156728;"Polish Journal of Chemical Technology";journal;"18994741, 15098117";"De Gruyter Open Ltd";Yes;No;0,270;Q3;35;16;121;749;170;121;1,50;46,81;42,03;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2007-2025";"Biotechnology (Q3); Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry" +18351;21101260450;"Proceedings of the IEEE International Conference on Web Services, ICWS";journal;"28363868, 28363876";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,270;Q3;6;132;177;4031;242;167;1,37;30,54;28,57;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Artificial Intelligence (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Information Systems (Q3); Information Systems and Management (Q3)";"Computer Science; Decision Sciences" +18352;29653;"Quantum Electronics";journal;"10637818, 14684799";"Turpion Ltd";No;No;0,270;Q3;57;0;94;0;87;93;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Turpion Ltd";"1984, 1988, 1993-2022";"Atomic and Molecular Physics, and Optics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Statistical and Nonlinear Physics (Q4)";"Engineering; Materials Science; Physics and Astronomy" +18353;13192;"Radioprotection";journal;"1769700X, 00338451";"EDP Sciences";No;No;0,270;Q3;23;50;127;1284;185;116;1,66;25,68;35,00;1;France;Western Europe;"EDP Sciences";"1977-1981, 1988-2025";"Nuclear Energy and Engineering (Q3); Public Health, Environmental and Occupational Health (Q3); Safety, Risk, Reliability and Quality (Q3); Waste Management and Disposal (Q3); Health, Toxicology and Mutagenesis (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering; Environmental Science; Medicine" +18354;21101041805;"Research on Engineering Structures and Materials";journal;"21494088, 21489807";"MIM RESEARCH GROUP";No;No;0,270;Q3;16;185;229;8240;418;229;1,78;44,54;22,09;0;Turkey;Middle East;"MIM RESEARCH GROUP";"2019-2025";"Civil and Structural Engineering (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +18355;19805;"Transactions of the Canadian Society for Mechanical Engineering";journal;"03158977";"Canadian Society for Mechanical Engineering";No;No;0,270;Q3;29;58;145;2044;222;143;1,52;35,24;34,39;0;Canada;Northern America;"Canadian Society for Mechanical Engineering";"1972-1973, 1975-1976, 1978, 1980-1981, 1983-2026";"Mechanical Engineering (Q3)";"Engineering" +18356;12965;"Zeitschrift fur Naturforschung - Section A Journal of Physical Sciences";journal;"09320784, 18657109";"Walter de Gruyter GmbH";No;No;0,270;Q3;56;92;277;4268;435;277;1,59;46,39;21,60;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1946-2026";"Mathematical Physics (Q3); Physics and Astronomy (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q4)";"Chemistry; Mathematics; Physics and Astronomy" +18357;26982;"Journal of Solution Chemistry";journal;"00959782, 15728927";"Springer";No;No;0,270;Q4;76;118;277;5917;406;270;1,43;50,14;35,77;0;United States;Northern America;"Springer";"1972-2026";"Biochemistry (Q4); Biophysics (Q4); Molecular Biology (Q4); Physical and Theoretical Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +18358;27037;"Radiochimica Acta";journal;"21933405, 00338230";"Walter de Gruyter GmbH";No;No;0,270;Q4;78;93;257;3844;421;255;1,63;41,33;35,19;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1962-2026";"Physical and Theoretical Chemistry (Q4)";"Chemistry" +18359;110509;"Electrical Overstress/Electrostatic Discharge Symposium Proceedings";conference and proceedings;"07395159";"ESD Association";No;No;0,270;-;32;36;96;336;56;90;0,71;9,33;11,11;0;United States;Northern America;"ESD Association";"1983-1988, 1991-2020, 2022-2025";"Condensed Matter Physics; Electrical and Electronic Engineering";"Engineering; Physics and Astronomy" +18360;21100398701;"IEEE International Conference on Data Mining Workshops, ICDMW";conference and proceedings;"23759232, 23759259";"IEEE Computer Society";No;No;0,270;-;41;0;480;0;529;468;0,89;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2014-2024";"Computer Science Applications; Software";"Computer Science" +18361;21101131203;"IEEE International Conference on Software Quality, Reliability and Security, QRS";conference and proceedings;"26939177";"Institute of Electrical and Electronics Engineers";No;No;0,270;-;13;74;253;2662;331;249;1,24;35,97;32,08;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2021-2025";"Safety, Risk, Reliability and Quality; Software";"Computer Science; Engineering" +18362;17274;"IEEE International Symposium on Electromagnetic Compatibility";conference and proceedings;"2158110X, 21581118";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,270;-;43;157;740;1619;402;732;0,52;10,31;16,98;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1979-1983, 1985-1987, 1989-1991, 1993-2019, 2022-2025";"Condensed Matter Physics; Electrical and Electronic Engineering";"Engineering; Physics and Astronomy" +18363;82000;"International Geoscience and Remote Sensing Symposium (IGARSS)";conference and proceedings;"21536996, 21537003";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,270;-;94;207;6588;2837;5130;6585;0,68;13,71;32,91;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1982-1983, 1985-2024";"Computer Science Applications; Earth and Planetary Sciences (miscellaneous)";"Computer Science; Earth and Planetary Sciences" +18364;4000148601;"Journal of Visual Communication in Medicine";journal;"17453062, 17453054";"Informa Healthcare";No;No;0,269;Q1;21;16;78;365;67;66;0,77;22,81;48,78;0;United Kingdom;Western Europe;"Informa Healthcare";"1978-2026";"Visual Arts and Performing Arts (Q1); Health Professions (miscellaneous) (Q2)";"Arts and Humanities; Health Professions" +18365;21100820204;"Manuscripta Orientalia";journal;"24153613, 12385018";"Thesa Publishers";No;No;0,269;Q1;4;20;61;567;19;61;0,35;28,35;36,00;0;Russian Federation;Eastern Europe;"Thesa Publishers";"2016-2025";"Cultural Studies (Q1); Literature and Literary Theory (Q1); Library and Information Sciences (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +18366;21100202123;"Atiqot";book series;"07928424";"Israel Antiquities Authority";No;No;0,269;Q2;13;43;199;2371;44;194;0,23;55,14;33,82;0;Israel;Middle East;"Israel Antiquities Authority";"2011-2016, 2019-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2); Conservation (Q2)";"Arts and Humanities; Social Sciences" +18367;21101193864;"CIRIEC-Espana, Revista Juridica de Economia Social y Cooperativa";journal;"19897332, 15774430";"CIRIEC";No;Yes;0,269;Q2;7;25;90;786;43;82;0,39;31,44;37,50;0;Spain;Western Europe;"CIRIEC";"2019-2025";"Law (Q2)";"Social Sciences" +18368;21101119721;"Federalismi.it";journal;"18263534";"Societa Editoriale Federalismi s.r.l.";No;No;0,269;Q2;5;314;912;9991;115;836;0,14;31,82;52,16;0;Italy;Western Europe;"Societa Editoriale Federalismi s.r.l.";"2019-2020, 2022-2026";"Law (Q2)";"Social Sciences" +18369;19700182325;"Investment Management and Financial Innovations";journal;"18104967, 18129358";"LLC CPC Business Perspectives";Yes;No;0,269;Q2;33;140;364;6674;699;364;1,95;47,67;35,44;0;Ukraine;Eastern Europe;"LLC CPC Business Perspectives";"2004-2026";"Law (Q2); Accounting (Q3); Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +18370;21101042128;"Juridical Tribune";journal;"22477195, 22480382";"Bucharest University of Economic Studies";Yes;Yes;0,269;Q2;12;0;67;0;95;67;1,51;0,00;0,00;0;Romania;Eastern Europe;"Bucharest University of Economic Studies";"2019-2023";"Law (Q2); Education (Q3); Political Science and International Relations (Q3); Public Administration (Q3)";"Social Sciences" +18371;21101073716;"Revista de Artes Marciales Asiaticas";journal;"21740747";"Universidad de Leon";Yes;Yes;0,269;Q2;10;17;37;872;44;37;1,33;51,29;8,16;0;Spain;Western Europe;"Universidad de Leon";"2019-2026";"Anthropology (Q2); Social Sciences (miscellaneous) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Health Professions; Social Sciences" +18372;21101118708;"STUF - Language Typology and Universals";journal;"18678319, 21967148";"De Gruyter Mouton";No;No;0,269;Q2;23;25;57;1231;30;55;0,57;49,24;55,88;0;Germany;Western Europe;"De Gruyter Mouton";"2008-2010, 2018, 2022-2025";"Linguistics and Language (Q2)";"Social Sciences" +18373;21100912227;"Acta Logistica";journal;"13395629";"4S go, s.r.o";Yes;No;0,269;Q3;13;70;173;2138;287;173;1,86;30,54;39,78;0;Slovakia;Eastern Europe;"4S go, s.r.o";"2019-2025";"Business and International Management (Q3); Civil and Structural Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Transportation (Q4)";"Business, Management and Accounting; Engineering; Social Sciences" +18374;21101092539;"Advances in Distributed Computing and Artificial Intelligence Journal";journal;"22552863";"University of Salamanca";Yes;Yes;0,269;Q3;11;17;85;694;164;85;1,81;40,82;26,09;0;Spain;Western Europe;"University of Salamanca";"2019-2026";"Artificial Intelligence (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Information Systems (Q3)";"Computer Science" +18375;5000152303;"British Journal of Midwifery";journal;"20524307, 09694900";"MA Healthcare Ltd";No;No;0,269;Q3;30;104;304;3092;227;238;0,70;29,73;81,64;0;United Kingdom;Western Europe;"MA Healthcare Ltd";"2006-2026";"Maternity and Midwifery (Q3)";"Nursing" +18376;29216;"Children's Health Care";journal;"15326888, 02739615";"Routledge";No;No;0,269;Q3;45;55;90;2747;84;88;0,82;49,95;75,00;0;United States;Northern America;"Routledge";"1980-2026";"Clinical Psychology (Q3); Pediatrics, Perinatology and Child Health (Q3); Developmental and Educational Psychology (Q4)";"Medicine; Psychology" +18377;21101120338;"Chinese Journal of Wood Science and Technology";journal;"20969694";"Editorial Office of Chinese Journal of Wood Science and Technology";No;No;0,269;Q3;10;60;210;1411;197;210;0,95;23,52;40,37;0;United States;Northern America;"Editorial Office of Chinese Journal of Wood Science and Technology";"2021-2025";"Civil and Structural Engineering (Q3); Engineering (miscellaneous) (Q3); Forestry (Q3); Mechanics of Materials (Q3)";"Agricultural and Biological Sciences; Engineering" +18378;21101044962;"Computational Continuum Mechanics";journal;"19996691";"Institute of Continuous Media Mechanics";No;No;0,269;Q3;8;17;121;514;73;121;0,60;30,24;15,56;0;Russian Federation;Eastern Europe;"Institute of Continuous Media Mechanics";"2019-2025";"Applied Mathematics (Q3); Computational Mechanics (Q3); Condensed Matter Physics (Q3); Mechanical Engineering (Q3)";"Engineering; Mathematics; Physics and Astronomy" +18379;21100455458;"Computational Methods in Applied Sciences";book series;"18713033";"Springer";No;No;0,269;Q3;33;0;64;0;92;41;0,60;0,00;0,00;0;Netherlands;Western Europe;"Springer";"2005, 2007-2011, 2013-2024, 2026";"Civil and Structural Engineering (Q3); Computational Mathematics (Q3); Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Fluid Flow and Transfer Processes (Q3); Modeling and Simulation (Q3); Biomedical Engineering (Q4)";"Chemical Engineering; Computer Science; Engineering; Mathematics" +18380;5600155273;"Cuadernos de Relaciones Laborales";journal;"11318635, 19882572";"Universidad Complutense Madrid";Yes;Yes;0,269;Q3;12;22;72;1155;50;69;0,52;52,50;60,71;0;Spain;Western Europe;"Universidad Complutense Madrid";"2016-2025";"Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q3); Sociology and Political Science (Q3)";"Business, Management and Accounting; Social Sciences" +18381;21100413803;"Czech Polar Reports";journal;"18050689, 18050697";"Masaryk University";Yes;No;0,269;Q3;12;21;51;1047;52;51;0,81;49,86;48,68;0;Czech Republic;Eastern Europe;"Masaryk University";"2014-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +18382;21100930159;"Economics and Environment";journal;"29570387, 29570395";"Wydawnictwo Ekonomia i Srodowisko";Yes;No;0,269;Q3;11;151;305;7671;393;304;1,27;50,80;54,14;1;Poland;Eastern Europe;"Wydawnictwo Ekonomia i Srodowisko";"2019-2025";"Ecology (Q3); Economics and Econometrics (Q3); Management, Monitoring, Policy and Law (Q3)";"Economics, Econometrics and Finance; Environmental Science" +18383;25844;"GFF";journal;"11035897, 20000863";"Taylor and Francis Ltd.";No;No;0,269;Q3;48;0;44;0;30;39;0,23;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1872-2024, 2026";"Geology (Q3); Paleontology (Q3)";"Earth and Planetary Sciences" +18384;20363;"Great Lakes Entomologist";journal;"00900222";"Michigan Entomological Society";No;No;0,269;Q3;22;15;58;609;25;58;0,47;40,60;34,21;1;United States;Northern America;"Michigan Entomological Society";"1993-2003, 2005-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +18385;18936;"IEICE Transactions on Communications";journal;"09168516, 17451345";"Maruzen Co., Ltd/Maruzen Kabushikikaisha";No;No;0,269;Q3;61;141;417;3637;418;402;1,23;25,79;17,89;0;Japan;Asiatic Region;"Maruzen Co., Ltd/Maruzen Kabushikikaisha";"1993-2026";"Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Software (Q3)";"Computer Science; Engineering" +18386;21101210635;"International Journal of Computational and Experimental Science and Engineering";journal;"21499144";"";No;No;0,269;Q3;19;126;376;4327;693;376;1,84;34,34;40,67;0;Turkey;Middle East;"";"2023-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +18387;12961;"Journal of Computer and Systems Sciences International";journal;"10642307, 15556530";"Pleiades Publishing";No;No;0,269;Q3;26;78;231;1699;157;231;0,73;21,78;26,19;0;United States;Northern America;"Pleiades Publishing";"1993-2025";"Applied Mathematics (Q3); Computer Networks and Communications (Q3); Computer Vision and Pattern Recognition (Q3); Control and Systems Engineering (Q3); Information Systems (Q3); Software (Q3); Theoretical Computer Science (Q4)";"Computer Science; Engineering; Mathematics" +18388;21101065486;"Journal of Integrated Science and Technology";journal;"23214635";"ScienceIn Publishing";No;No;0,269;Q3;15;127;219;4617;428;219;2,02;36,35;42,82;0;India;Asiatic Region;"ScienceIn Publishing";"2019-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Engineering; Environmental Science; Materials Science; Mathematics; Pharmacology, Toxicology and Pharmaceutics; Physics and Astronomy" +18389;21101041500;"Journal of Rehabilitation in Civil Engineering";journal;"23454423, 23454415";"Faculty of Civil Engineering, Semnan University";Yes;Yes;0,269;Q3;12;48;108;1933;159;108;1,72;40,27;14,29;0;Iran;Middle East;"Faculty of Civil Engineering, Semnan University";"2019-2026";"Building and Construction (Q3); Civil and Structural Engineering (Q3); Engineering (miscellaneous) (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering" +18390;80112;"Korean Journal of Gastroenterology";journal;"15989992, 22336869";"";Yes;No;0,269;Q3;32;85;285;171;214;231;0,77;2,01;37,76;0;South Korea;Asiatic Region;"";"2003-2026";"Gastroenterology (Q3)";"Medicine" +18391;17700155805;"KSII Transactions on Internet and Information Systems";journal;"19767277, 22881468";"Korean Society for Internet Information";No;No;0,269;Q3;48;215;579;8034;858;579;1,51;37,37;32,44;0;South Korea;Asiatic Region;"Korean Society for Internet Information";"2007-2026";"Computer Networks and Communications (Q3); Information Systems (Q3)";"Computer Science" +18392;19700186839;"Progress in Electromagnetics Research C";journal;"19378718";"Electromagnetics Academy";Yes;No;0,269;Q3;49;353;661;9211;904;661;1,41;26,09;32,01;0;United States;Northern America;"Electromagnetics Academy";"2008-2026";"Electronic, Optical and Magnetic Materials (Q3)";"Materials Science" +18393;19700186909;"Progress in Electromagnetics Research M";journal;"19378726";"Electromagnetics Academy";Yes;No;0,269;Q3;42;59;400;1795;574;399;1,65;30,42;29,82;0;United States;Northern America;"Electromagnetics Academy";"2008-2026";"Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science; Physics and Astronomy" +18394;21101339666;"Research in Statistics";journal;"27684520";"Taylor and Francis Ltd.";Yes;No;0,269;Q3;4;31;40;1058;59;39;1,48;34,13;23,94;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2023-2025";"Statistics, Probability and Uncertainty (Q3); Statistics and Probability (Q4)";"Decision Sciences; Mathematics" +18395;21101023096;"Revista de Investigacion en Educacion";journal;"21723427, 16975200";"Universidade de Vigo - Facultad de Ciencias de la Educacion y del Deporte";No;Yes;0,269;Q3;7;30;88;1463;95;87;0,94;48,77;61,84;0;Spain;Western Europe;"Universidade de Vigo - Facultad de Ciencias de la Educacion y del Deporte";"2019-2025";"Education (Q3)";"Social Sciences" +18396;21101375551;"Science and Technology Foresight";journal;"20970781";"Science and Technology Review Publishing House";No;No;0,269;Q3;9;48;138;1563;227;137;1,72;32,56;29,38;0;China;Asiatic Region;"Science and Technology Review Publishing House";"2022-2025";"Aerospace Engineering (Q3); Automotive Engineering (Q3); Computational Mechanics (Q3); Ocean Engineering (Q3)";"Engineering" +18397;26509;"Synthetic Communications";journal;"00397911, 15322432";"Taylor and Francis Ltd.";No;No;0,269;Q3;88;128;487;6329;918;487;2,07;49,45;35,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Organic Chemistry (Q3)";"Chemistry" +18398;29797;"Vestnik Moskovskogo Universiteta, Seriya Geografiya";journal;"05799414";"Moskovskij Universitet";Yes;No;0,269;Q3;19;37;223;1421;109;223;0,49;38,41;55,10;0;Russian Federation;Eastern Europe;"Moskovskij Universitet";"1978-1993, 1995-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Social Sciences" +18399;21100222921;"IEEE International Workshop on Machine Learning for Signal Processing, MLSP";conference and proceedings;"21610363, 21610371";"IEEE Computer Society";No;No;0,269;-;36;145;313;3331;338;308;1,00;22,97;21,85;0;United States;Northern America;"IEEE Computer Society";"2012-2025";"Human-Computer Interaction; Signal Processing";"Computer Science" +18400;29757;"Proceedings of the Human Factors and Ergonomics Society";conference and proceedings;"10711813";"SAGE Publications Inc.";No;No;0,269;-;65;439;1381;7465;1122;1378;0,82;17,00;43,64;0;United States;Northern America;"SAGE Publications Inc.";"1979, 1981-1983, 1993-2025";"Human Factors and Ergonomics; Industrial and Manufacturing Engineering";"Engineering; Social Sciences" +18401;21100861094;"Proceedings of the International Association of Hydrological Sciences";conference and proceedings;"2199899X, 21998981";"Copernicus GmbH";Yes;No;0,269;-;22;0;113;0;114;111;1,01;0,00;0,00;0;United Kingdom;Western Europe;"Copernicus GmbH";"2015-2021, 2024";"Earth and Planetary Sciences (miscellaneous)";"Earth and Planetary Sciences" +18402;21101052865;"Detskie Chtenia";journal;"26867052, 23045817";"Institute of Russian Literature (The Pushkin House), Russian Academy of Sciences";Yes;Yes;0,268;Q1;3;29;113;620;15;106;0,19;21,38;72,73;0;Russian Federation;Eastern Europe;"Institute of Russian Literature (The Pushkin House), Russian Academy of Sciences";"2019-2025";"Literature and Literary Theory (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +18403;5600153506;"Israel Affairs";journal;"17439086, 13537121";"Routledge";No;No;0,268;Q1;23;90;195;4122;148;189;0,75;45,80;41,89;0;United Kingdom;Western Europe;"Routledge";"1994-2026";"Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +18404;19900195034;"Itinerario";journal;"20412827, 01651153";"Cambridge University Press";No;No;0,268;Q1;21;36;79;3390;52;75;0,29;94,17;40,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1977-2026";"History (Q1); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +18405;21101276716;"Izvestiya Rossiiskoi Akademii Nauk. Seriya Geograficheskaya";journal;"25875566, 26586975";"Russian Academy of Sciences";No;No;0,268;Q1;16;65;230;2488;159;223;0,61;38,28;47,97;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2016-2025";"Cultural Studies (Q1); Urban Studies (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +18406;5600155552;"Journal of African Cultural Studies";journal;"13696815, 14699346";"Routledge";No;No;0,268;Q1;26;40;116;1499;88;90;0,66;37,48;32,26;0;United Kingdom;Western Europe;"Routledge";"2009-2026";"Cultural Studies (Q1); Literature and Literary Theory (Q1); Music (Q1); Visual Arts and Performing Arts (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +18407;21101306751;"Jurnal Lektur Keagamaan";journal;"2620522X, 16937139";"Ministry of Religious Affairs of the Republic of Indonesia";No;No;0,268;Q1;5;26;57;1397;47;57;0,92;53,73;25,45;0;Indonesia;Asiatic Region;"Ministry of Religious Affairs of the Republic of Indonesia";"2021-2025";"Religious Studies (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +18408;21100867938;"Open Library of Humanities";journal;"20566700";"Open Library of Humanities";Yes;Yes;0,268;Q1;16;25;82;1238;53;82;0,60;49,52;65,22;0;United Kingdom;Western Europe;"Open Library of Humanities";"2015-2025";"Cultural Studies (Q1); Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18409;21101121567;"Chinese Journal of School Health";journal;"10009817";"";No;No;0,268;Q2;14;190;1237;5318;837;1233;0,75;27,99;53,40;0;China;Asiatic Region;"";"2019-2025";"Health Professions (miscellaneous) (Q2); Health (social science) (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Health Professions; Medicine; Social Sciences" +18410;19700181256;"Constructivist Foundations";journal;"1782348X";"Vrije Universiteit Brussel";No;No;0,268;Q2;27;63;242;897;102;242;0,42;14,24;33,90;0;Belgium;Western Europe;"Vrije Universiteit Brussel";"2010-2025";"History and Philosophy of Science (Q2); Multidisciplinary (Q2); Philosophy (Q2); Artificial Intelligence (Q3); Education (Q3); Cognitive Neuroscience (Q4)";"Arts and Humanities; Computer Science; Multidisciplinary; Neuroscience; Social Sciences" +18411;24041;"Journal of Immunoassay and Immunochemistry";journal;"15321819, 15324230";"Taylor and Francis Ltd.";No;No;0,268;Q2;34;42;113;1508;116;110;0,80;35,90;53,41;0;United States;Northern America;"Taylor and Francis Ltd.";"2001-2026";"Medical Laboratory Technology (Q2); Clinical Biochemistry (Q4); Immunology (Q4); Immunology and Allergy (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Immunology and Microbiology; Medicine" +18412;21101064911;"Ocean Yearbook Online";journal;"22116001";"Brill Academic Publishers";No;No;0,268;Q2;13;22;74;2501;42;74;0,60;113,68;48,72;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2025";"Law (Q2)";"Social Sciences" +18413;21101068947;"Sophia (Ecuador)";journal;"13903861, 13908626";"Universidad Politecnica Salesiana";Yes;Yes;0,268;Q2;8;20;64;1158;56;60;0,95;57,90;37,50;0;Ecuador;Latin America;"Universidad Politecnica Salesiana";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Philosophy (Q2)";"Arts and Humanities" +18414;79955;"Southeastern Archaeology";journal;"0734578X, 21684723";"Routledge";No;No;0,268;Q2;29;15;52;1024;27;52;0,61;68,27;37,14;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Archeology (Q2)";"Social Sciences" +18415;21101168867;"Teaching English Language";journal;"2538547X, 25385488";"Teaching English Language and Literature Society of Iran (TELLSI)";Yes;No;0,268;Q2;10;29;72;1952;91;72;1,31;67,31;54,29;0;Iran;Middle East;"Teaching English Language and Literature Society of Iran (TELLSI)";"2019-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +18416;21101128671;"Acta Scientiarum Polonorum, Formatio Circumiectus";journal;"16440765";"Publishing House of the University of Agriculture in Krakow";Yes;No;0,268;Q3;6;10;66;344;65;66;1,15;34,40;34,29;0;Poland;Eastern Europe;"Publishing House of the University of Agriculture in Krakow";"2022-2025";"Ecological Modeling (Q3); Environmental Engineering (Q3); Nature and Landscape Conservation (Q3); Water Science and Technology (Q3)";"Environmental Science" +18417;21100854135;"Adolescent Psychiatry";journal;"22106766, 22106774";"Bentham Science Publishers";No;No;0,268;Q3;7;26;46;2029;45;44;0,56;78,04;36,23;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2014-2015, 2019-2026";"Pediatrics, Perinatology and Child Health (Q3); Psychiatry and Mental Health (Q4)";"Medicine" +18418;21101021433;"Advances in Polar Science";journal;"16749928";"";No;No;0,268;Q3;10;32;90;1747;64;78;0,70;54,59;42,11;0;China;Asiatic Region;"";"2019-2025";"Ecology (Q3); Geology (Q3); Oceanography (Q3); Atmospheric Science (Q4)";"Earth and Planetary Sciences; Environmental Science" +18419;21101373453;"Animal Taxonomy and Ecology";journal;"30043018";"Akademiai Kiado ZRt.";No;No;0,268;Q3;30;0;59;0;37;58;0,63;0,00;0,00;0;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"2024";"Animal Science and Zoology (Q3); Ecology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18420;21101022969;"Annual Review of Heat Transfer";book series;"10490787, 23750294";"Begell House Inc.";No;No;0,268;Q3;31;9;39;1146;74;2;1,39;127,33;0,00;0;United States;Northern America;"Begell House Inc.";"1987, 1989-1990, 1992, 1994-2000, 2002-2003, 2005, 2012-2017, 2019-2025";"Condensed Matter Physics (Q3); Energy Engineering and Power Technology (Q3); Mechanical Engineering (Q3)";"Energy; Engineering; Physics and Astronomy" +18421;13264;"Biological Rhythm Research";journal;"17444179, 09291016";"Taylor and Francis Ltd.";No;No;0,268;Q3;44;80;235;4012;268;234;1,12;50,15;44,61;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Physiology (medical) (Q3); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +18422;21101137843;"Case Reports in Plastic Surgery and Hand Surgery";journal;"23320885";"Taylor and Francis Ltd.";Yes;No;0,268;Q3;11;39;121;813;93;121;0,62;20,85;29,81;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Surgery (Q3)";"Medicine" +18423;13572;"Cellular Polymers";journal;"14782421, 02624893";"SAGE Publications Ltd";No;No;0,268;Q3;33;3;39;84;67;39;1,72;28,00;30,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1982-1987, 1989, 1991-2026";"Organic Chemistry (Q3); Polymers and Plastics (Q3)";"Chemistry; Materials Science" +18424;21100875069;"Clinical Nephrology - Case Studies";journal;"21965293";"Dustri-Verlag Dr. Karl Feistle";No;No;0,268;Q3;8;11;58;239;55;56;0,90;21,73;38,46;0;Germany;Western Europe;"Dustri-Verlag Dr. Karl Feistle";"2015-2016, 2019-2025";"Nephrology (Q3)";"Medicine" +18425;4000148901;"Congenital Heart Disease";journal;"17470803, 1747079X";"Tech Science Press";No;No;0,268;Q3;64;60;165;2047;260;157;2,15;34,12;39,25;0;United Kingdom;Western Europe;"Tech Science Press";"2006-2026";"Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Surgery (Q3)";"Medicine" +18426;18800156721;"Electronic Journal of Research in Educational Psychology";journal;"16962095, 16995880";"Universidad de Almeria";Yes;Yes;0,268;Q3;38;26;92;1575;82;90;0,67;60,58;58,06;0;Spain;Western Europe;"Universidad de Almeria";"2003-2025";"Education (Q3); Developmental and Educational Psychology (Q4)";"Psychology; Social Sciences" +18427;21100903770;"Eurasian Journal of Soil Science";journal;"21474249";"Federation of Eurasian Soil Science Societies";Yes;Yes;0,268;Q3;20;40;120;1798;187;120;1,29;44,95;44,92;0;Turkey;Middle East;"Federation of Eurasian Soil Science Societies";"2018-2026";"Agronomy and Crop Science (Q3); Environmental Science (miscellaneous) (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18428;21101056563;"Geoplanning";journal;"23556544";"Diponegoro University";Yes;Yes;0,268;Q3;6;17;40;831;66;40;1,73;48,88;33,33;0;Indonesia;Asiatic Region;"Diponegoro University";"2019-2025";"Computers in Earth Sciences (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3); Global and Planetary Change (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +18429;21101302100;"International Journal of Environment, Engineering and Education";journal;"26568039";"Three E Science Institute";No;No;0,268;Q3;7;19;47;1418;90;47;1,81;74,63;40,48;0;Indonesia;Asiatic Region;"Three E Science Institute";"2021-2025";"Education (Q3); Engineering (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)";"Engineering; Environmental Science; Social Sciences" +18430;18700156730;"International Journal of Technoentrepreneurship";journal;"17465370, 17465389";"Inderscience Enterprises Ltd";No;No;0,268;Q3;11;10;20;787;36;20;1,93;78,70;57,89;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2009, 2011, 2015-2017, 2020, 2022-2025";"Business and International Management (Q3); Economics and Econometrics (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +18431;19867;"Isokinetics and Exercise Science";journal;"18785913, 09593020";"SAGE Publications Ltd";No;No;0,268;Q3;36;19;105;723;95;105;0,80;38,05;23,19;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991-1998, 2000-2025";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Biophysics (Q4); Sports Science (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +18432;21100932470;"Jordanian Journal of Computers and Information Technology";journal;"24151076, 24139351";"Scientific Research Support Fund of Jordan";Yes;Yes;0,268;Q3;16;32;87;1535;134;86;1,39;47,97;30,10;0;Jordan;Middle East;"Scientific Research Support Fund of Jordan";"2019-2025";"Computer Science (miscellaneous) (Q3)";"Computer Science" +18433;20481;"Journal of Entomological Science";journal;"07498004";"Georgia Entomological Society Inc.";No;No;0,268;Q3;35;79;138;2909;129;134;0,94;36,82;35,08;0;United States;Northern America;"Georgia Entomological Society Inc.";"1988, 1990, 1993-2025";"Agronomy and Crop Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +18434;28522;"Journal of Macromolecular Science, Part B: Physics";journal;"1525609X, 00222348";"Taylor and Francis Ltd.";No;No;0,268;Q3;56;188;239;9453;421;239;1,97;50,28;33,05;0;United States;Northern America;"Taylor and Francis Ltd.";"1967-2026";"Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +18435;21100823448;"Journal of Microbiology, Biotechnology and Food Sciences";journal;"13385178";"Slovak University of Agriculture";Yes;No;0,268;Q3;29;175;534;9245;777;534;1,51;52,83;49,84;0;Slovakia;Eastern Europe;"Slovak University of Agriculture";"2016-2026";"Biotechnology (Q3); Food Science (Q3); Microbiology (Q4); Molecular Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +18436;21101151479;"Journal of Solar Energy Research";journal;"25883097, 25883100";"University of Tehran";No;No;0,268;Q3;7;24;64;1234;106;64;1,66;51,42;16,36;0;Iran;Middle East;"University of Tehran";"2020-2021, 2023-2025";"Mechanical Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering" +18437;21101047125;"Mechanics in Engineering";journal;"10000879";"Chinese Academy of Mechanics";No;No;0,268;Q3;12;161;502;2770;352;494;0,68;17,20;33,87;0;China;Asiatic Region;"Chinese Academy of Mechanics";"2019-2025";"Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +18438;23307;"Ofioliti";journal;"03912612";"Pitagora Editrice";No;No;0,268;Q3;44;5;28;379;23;28;0,44;75,80;40,00;0;Italy;Western Europe;"Pitagora Editrice";"1978-2026";"Geology (Q3)";"Earth and Planetary Sciences" +18439;21101140514;"Orthopadie";journal;"27317145, 27317153";"Springer International Publishing";No;No;0,268;Q3;49;144;378;4357;287;336;0,84;30,26;18,70;0;Germany;Western Europe;"Springer International Publishing";"2022-2026";"Orthopedics and Sports Medicine (Q3)";"Medicine" +18440;19700170191;"Quality in Ageing and Older Adults";journal;"20428766, 14717794";"Emerald Group Publishing Ltd.";No;No;0,268;Q3;25;8;59;368;42;48;0,76;46,00;48,15;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2025";"Care Planning (Q3); Community and Home Care (Q3); Gerontology (Q3)";"Nursing" +18441;21100200415;"Revista Colombiana de Psicologia";journal;"23448644, 01215469";"Universidad Nacional de Colombia";Yes;Yes;0,268;Q3;16;18;37;991;28;37;0,70;55,06;53,62;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2011-2025";"Psychology (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)";"Psychology; Social Sciences" +18442;21101047137;"Springer Proceedings in Advanced Robotics";book series;"25111264, 25111256";"Springer Nature";No;No;0,268;Q3;32;51;596;619;418;560;0,76;12,14;13,72;1;Switzerland;Western Europe;"Springer Nature";"2017-2026";"Applied Mathematics (Q3); Artificial Intelligence (Q3); Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Computer Science; Engineering; Mathematics" +18443;5300152701;"Stapp car crash journal";journal;"15328546";"SAE International";No;No;0,268;Q3;48;6;21;0;34;21;1,23;0,00;42,11;0;United States;Northern America;"SAE International";"2006-2022, 2024-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +18444;12000154541;"Ukrainian Journal of Physics";journal;"20710186, 20710194";"Naukova Dumka";No;No;0,268;Q3;23;89;269;2958;237;266;0,92;33,24;29,88;0;Ukraine;Eastern Europe;"Naukova Dumka";"2007-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +18445;21100901146;"Proceedings - European Workshop on Visual Information Processing, EUVIP";conference and proceedings;"24718963";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,268;-;15;38;125;823;141;119;0,81;21,66;29,41;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2018-2019, 2021-2025";"Computer Vision and Pattern Recognition; Information Systems; Signal Processing";"Computer Science" +18446;16800154753;"Journal of Conflict Archaeology";journal;"15740781, 15740773";"Maney Publishing";No;No;0,267;Q1;18;12;31;520;20;23;0,79;43,33;21,43;0;United Kingdom;Western Europe;"Maney Publishing";"2005-2009, 2011-2026";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +18447;21101218122;"Arbitration";journal;"00037877, 25142356";"Wolters Kluwer Legal & Regulatory - International Group";No;No;0,267;Q2;4;27;95;736;28;82;0,28;27,26;36,84;0;Netherlands;Western Europe;"Wolters Kluwer Legal & Regulatory - International Group";"2020-2026";"Law (Q2)";"Social Sciences" +18448;145252;"Journal of International Women's Studies";journal;"15398706";"Bridgewater State College";Yes;No;0,267;Q2;38;60;453;2410;465;447;0,88;40,17;72,15;0;United States;Northern America;"Bridgewater State College";"2002-2025";"Gender Studies (Q2)";"Social Sciences" +18449;21101033947;"Normas";journal;"21747245";"Universitat de Valencia";Yes;Yes;0,267;Q2;4;15;49;869;15;49;0,29;57,93;61,11;0;Spain;Western Europe;"Universitat de Valencia";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +18450;21100395450;"Acta Universitatis Sapientiae, Mathematica";journal;"18446094, 20667752";"Springer International Publishing";Yes;Yes;0,267;Q3;16;26;42;554;33;42;1,05;21,31;30,95;0;Switzerland;Western Europe;"Springer International Publishing";"2014-2023, 2025-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +18451;14176;"Annals of Clinical Psychiatry";journal;"10401237, 15473325";"SAGE Publications Ltd";No;No;0,267;Q3;81;0;88;0;70;64;0,62;0,00;0,00;0;United States;Northern America;"SAGE Publications Ltd";"1989-2023";"Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q4)";"Medicine" +18452;13843;"Bulletin of Experimental Biology and Medicine";journal;"00074888, 15738221";"Springer";No;No;0,267;Q3;44;247;935;4060;747;934;0,77;16,44;59,64;0;United States;Northern America;"Springer";"1956-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Medicine" +18453;21100395916;"Case Reports in Nephrology and Dialysis";journal;"22969705";"S. Karger AG";Yes;No;0,267;Q3;14;37;94;616;98;94;1,04;16,65;39,41;0;Switzerland;Western Europe;"S. Karger AG";"2013, 2015-2026";"Nephrology (Q3)";"Medicine" +18454;21384;"Comparative Parasitology";journal;"15252647";"Helminthological Society of Washington";No;No;0,267;Q3;35;14;49;487;27;49;0,51;34,79;29,41;0;United States;Northern America;"Helminthological Society of Washington";"1996-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Parasitology (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology" +18455;21834;"Current HIV Research";journal;"18734251, 1570162X";"Bentham Science Publishers";No;No;0,267;Q3;61;66;147;4648;123;141;0,83;70,42;48,96;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2003-2026";"Infectious Diseases (Q3); Virology (Q3)";"Immunology and Microbiology; Medicine" +18456;21100284506;"Functiones et Approximatio, Commentarii Mathematici";journal;"02086573, 20809433";"Adam Mickiewicz University";No;No;0,267;Q3;18;18;73;335;34;73;0,42;18,61;12,90;0;Poland;Eastern Europe;"Adam Mickiewicz University";"2006-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +18457;19900193995;"Indian Journal of Genetics and Plant Breeding";journal;"09756906, 00195200";"Springer";No;No;0,267;Q3;28;28;249;655;224;207;0,86;23,39;31,97;0;India;Asiatic Region;"Springer";"2008-2026";"Plant Science (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +18458;23441;"Indian Pacing and Electrophysiology Journal";journal;"09726292, 25901753";"Indian Pacing and Electrophysiology Group";Yes;Yes;0,267;Q3;34;113;194;1613;118;165;0,56;14,27;20,00;0;India;Asiatic Region;"Indian Pacing and Electrophysiology Group";"2001-2026";"Cardiology and Cardiovascular Medicine (Q3); Physiology (medical) (Q3)";"Medicine" +18459;4700152236;"International Journal of Globalisation and Small Business";journal;"14793059, 14793067";"Inderscience Enterprises Ltd";No;No;0,267;Q3;25;15;37;1191;54;37;1,07;79,40;69,44;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2025";"Business and International Management (Q3); Information Systems and Management (Q3); Management Science and Operations Research (Q3)";"Business, Management and Accounting; Decision Sciences" +18460;25425;"Journal of Herbs, Spices and Medicinal Plants";journal;"15403580, 10496475";"Taylor and Francis Ltd.";No;No;0,267;Q3;38;36;89;1407;126;89;1,47;39,08;46,04;0;United States;Northern America;"Taylor and Francis Ltd.";"1992-2026";"Complementary and Alternative Medicine (Q3); Pharmacology (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +18461;5900153313;"Journal of Korean Institute of Metals and Materials";journal;"17388228";"Korean Institute of Metals and Materials";Yes;No;0,267;Q3;24;100;330;3636;388;330;1,36;36,36;22,86;0;South Korea;Asiatic Region;"Korean Institute of Metals and Materials";"2007-2025";"Electronic, Optical and Magnetic Materials (Q3); Metals and Alloys (Q3); Modeling and Simulation (Q3); Surfaces, Coatings and Films (Q3)";"Materials Science; Mathematics" +18462;21100401034;"Journal of Pedagogy";journal;"13381563, 13382144";"Walter de Gruyter";Yes;No;0,267;Q3;16;7;31;357;31;31;1,05;51,00;82,35;0;Germany;Western Europe;"Walter de Gruyter";"2010-2025";"Education (Q3)";"Social Sciences" +18463;24883;"Journal of Southeast University (English Edition)";journal;"10037985";"Southeast University";No;No;0,267;Q3;20;60;150;1489;165;150;1,48;24,82;27,23;0;China;Asiatic Region;"Southeast University";"2003-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +18464;27232;"Lab Animal";journal;"15484475, 00937355";"Springer Nature";No;No;0,267;Q3;51;172;577;2176;308;279;0,66;12,65;48,62;0;United States;Northern America;"Springer Nature";"1995-2026";"Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +18465;12250;"Microwave and Optical Technology Letters";journal;"10982760, 08952477";"John Wiley & Sons Inc.";No;No;0,267;Q3;86;422;1355;10373;1721;1347;1,30;24,58;28,89;0;United States;Northern America;"John Wiley & Sons Inc.";"1988-2026";"Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +18466;130157;"Nephrologie et Therapeutique";journal;"17697255, 18729177";"John Libbey";No;No;0,267;Q3;31;51;208;0;119;198;0,55;0,00;48,15;0;France;Western Europe;"John Libbey";"2005-2026";"Nephrology (Q3)";"Medicine" +18467;21101124077;"Pathologie";journal;"27317196, 27317188";"Springer Medizin";No;No;0,267;Q3;32;74;318;1151;168;240;0,52;15,55;39,16;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Pathology and Forensic Medicine (Q3)";"Medicine" +18468;5700164067;"Prague Economic Papers";journal;"2336730X, 12100455";"Prague University of Economics and Business";Yes;No;0,267;Q3;24;10;83;545;90;83;0,98;54,50;44,00;0;Czech Republic;Eastern Europe;"Prague University of Economics and Business";"2008-2025";"Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +18469;4700152487;"Pravention und Gesundheitsforderung";journal;"18616763, 18616755";"Springer Verlag";No;No;0,267;Q3;16;168;237;5200;167;235;0,70;30,95;66,08;4;Germany;Western Europe;"Springer Verlag";"2006-2026";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +18470;29441;"Review of Economic Design";journal;"14344750, 14344742";"Springer Verlag";No;No;0,267;Q3;28;40;94;1406;46;92;0,46;35,15;15,49;1;Germany;Western Europe;"Springer Verlag";"1996-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +18471;25359;"Revista Espanola de Enfermedades Digestivas";journal;"11300108";"ARAN Ediciones S.L";Yes;Yes;0,267;Q3;47;343;997;1830;563;461;0,58;5,34;48,87;0;Spain;Western Europe;"ARAN Ediciones S.L";"1990-2026";"Gastroenterology (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +18472;26948;"Studia Scientiarum Mathematicarum Hungarica";journal;"15882896, 00816906";"Akademiai Kiado";No;No;0,267;Q3;29;19;56;512;31;56;0,44;26,95;13,89;0;Hungary;Eastern Europe;"Akademiai Kiado";"1996-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +18473;21100856760;"Studies in Microeconomics";journal;"23218398, 23210222";"SAGE Publications Ltd";No;No;0,267;Q3;10;27;61;1279;65;59;0,71;47,37;34,78;2;United Kingdom;Western Europe;"SAGE Publications Ltd";"2013-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +18474;21101259365;"Turkish Journal of Inequalities";journal;"26024187";"";No;No;0,267;Q3;7;12;32;336;20;32;0,78;28,00;27,78;0;Turkey;Middle East;"";"2020-2025";"Applied Mathematics (Q3); Computational Mathematics (Q3); Modeling and Simulation (Q3); Analysis (Q4)";"Mathematics" +18475;21101029507;"Journal of Korean Gerontological Nursing";journal;"23838086, 23841877";"Korean Gerontological Nursing Society";No;No;0,267;Q4;7;41;124;1232;106;120;0,60;30,05;73,24;0;South Korea;Asiatic Region;"Korean Gerontological Nursing Society";"2020-2025";"Gerontology (Q4)";"Nursing" +18476;7200153145;"International Journal of Hindu Studies";journal;"10224556, 15749282";"Springer Netherlands";No;No;0,266;Q1;19;21;52;989;34;51;0,43;47,10;36,84;0;Netherlands;Western Europe;"Springer Netherlands";"1997-2002, 2004-2026";"Cultural Studies (Q1); Religious Studies (Q1)";"Arts and Humanities; Social Sciences" +18477;4700152620;"Journal of Indian Philosophy";journal;"00221791, 15730395";"Springer Science and Business Media B.V.";No;No;0,266;Q1;28;31;94;1190;32;92;0,29;38,39;28,57;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1970-2026";"Cultural Studies (Q1); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +18478;21101206094;"Journal of Interdisciplinary Studies in Education";journal;"21662681, 26900408";"STAR Scholars Network";No;No;0,266;Q1;9;32;72;1696;93;72;1,02;53,00;41,94;0;United States;Northern America;"STAR Scholars Network";"2020-2025";"Cultural Studies (Q1); Education (Q3)";"Social Sciences" +18479;21100942116;"Journal of Urban Culture Research";journal;"24081213, 22288279";"Chulalongkorn University, Faculty of Fine and Applied Arts";No;No;0,266;Q1;7;37;112;1165;75;107;0,52;31,49;47,46;0;Thailand;Asiatic Region;"Chulalongkorn University, Faculty of Fine and Applied Arts";"2011, 2019-2025";"History (Q1); Music (Q1); Visual Arts and Performing Arts (Q1); Urban Studies (Q2)";"Arts and Humanities; Social Sciences" +18480;21101266016;"Jurnal Hukum Islam";journal;"25027719, 18297382";"Faculty of Sharia, Universitas Islam Negeri K.H. Abdurrahman Wahid Pekalongan";Yes;No;0,266;Q1;4;20;46;1187;45;46;1,16;59,35;24,19;0;Indonesia;Asiatic Region;"Faculty of Sharia, Universitas Islam Negeri K.H. Abdurrahman Wahid Pekalongan";"2020-2025";"Religious Studies (Q1); Law (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18481;21101022489;"OEconomia";journal;"22698450, 21135207";"Association Oeconomia";Yes;Yes;0,266;Q1;9;11;82;732;53;81;0,63;66,55;33,33;0;France;Western Europe;"Association Oeconomia";"2018-2025";"History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +18482;21100778009;"Polis. Political Studies";journal;"10269487, 16840070";"Editorial Board Polis (Political Studies)";No;No;0,266;Q1;14;71;212;2332;102;211;0,43;32,85;45,28;1;Russian Federation;Eastern Europe;"Editorial Board Polis (Political Studies)";"2015-2025";"Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18483;21101039470;"Revista Interuniversitaria de Formacion del Profesorado";journal;"25303791, 02138646";"Asociacion Universitaria de Formacion del Profesorado (AUFOP)";Yes;Yes;0,266;Q1;12;60;146;2726;124;146;0,68;45,43;52,63;0;Spain;Western Europe;"Asociacion Universitaria de Formacion del Profesorado (AUFOP)";"2019-2025";"Cultural Studies (Q1); Education (Q3)";"Social Sciences" +18484;21100197733;"Ager";journal;"23404655, 15787168";"CEDDAR";No;Yes;0,266;Q2;17;11;52;519;37;51;0,68;47,18;34,62;0;Spain;Western Europe;"CEDDAR";"2009-2025";"Anthropology (Q2); Demography (Q3); Development (Q3); Geography, Planning and Development (Q3)";"Social Sciences" +18485;15617;"Journal of Comparative Family Studies";journal;"00472328, 19299850";"University of Toronto Press";No;No;0,266;Q2;54;0;63;0;55;50;0,72;0,00;0,00;0;Canada;Northern America;"University of Toronto Press";"1973, 1976-2024";"Anthropology (Q2); Sociology and Political Science (Q3); Social Psychology (Q4)";"Psychology; Social Sciences" +18486;22451;"Journal of Scholarly Publishing";journal;"17101166, 11989742";"University of Toronto Press";No;No;0,266;Q2;23;37;65;1571;62;61;1,00;42,46;54,55;0;Canada;Northern America;"University of Toronto Press";"1994-2003, 2005-2026";"Media Technology (Q2); Education (Q3)";"Engineering; Social Sciences" +18487;21101240974;"Legal Education Review";journal;"18393713, 10332839";"Australasian Law Academics Association";Yes;Yes;0,266;Q2;3;8;29;208;29;27;1,05;26,00;62,50;0;Australia;Pacific Region;"Australasian Law Academics Association";"2020-2025";"Law (Q2)";"Social Sciences" +18488;19900194907;"Planning Malaysia";journal;"16756215, 01280945";"Malaysian Institute Of Planners";No;No;0,266;Q2;20;234;567;6834;677;567;1,12;29,21;53,56;0;Malaysia;Asiatic Region;"Malaysian Institute Of Planners";"2003-2025";"Urban Studies (Q2); Geography, Planning and Development (Q3)";"Social Sciences" +18489;21101042004;"Prawo i Wiez";journal;"27193594, 2299405X";"Spoldzielczy Instytut Naukowy";No;No;0,266;Q2;6;227;404;6212;149;401;0,38;27,37;40,93;0;Poland;Eastern Europe;"Spoldzielczy Instytut Naukowy";"2019-2026";"Law (Q2)";"Social Sciences" +18490;21100936587;"Revista de Derecho Administrativo Economico";journal;"07174888, 07195591";"Pontifica Universidad Catolica de Chile, Programa de Derecho Administrativo Economico";Yes;No;0,266;Q2;5;73;116;2354;26;113;0,22;32,25;25,86;0;Chile;Latin America;"Pontifica Universidad Catolica de Chile, Programa de Derecho Administrativo Economico";"2019-2025";"Law (Q2); Public Administration (Q3)";"Social Sciences" +18491;21100803316;"Valori e Valutazioni";journal;"20362404";"Societa Italiana di Estimo e Valutazione (SIEV)";Yes;No;0,266;Q2;17;34;67;1515;77;60;1,16;44,56;54,55;0;Italy;Western Europe;"Societa Italiana di Estimo e Valutazione (SIEV)";"2016-2025";"Law (Q2); Decision Sciences (miscellaneous) (Q3); Finance (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Social Sciences" +18492;21100887653;"African Vision and Eye Health";journal;"24101516, 24133183";"AOSIS (Pty) Ltd";Yes;No;0,266;Q3;17;39;117;1150;92;113;0,72;29,49;50,00;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2015-2026";"Ophthalmology (Q3); Optometry (Q3)";"Health Professions; Medicine" +18493;14564;"American Annals of the Deaf";journal;"15430375, 0002726X";"Gallaudet University Press";No;No;0,266;Q3;52;10;118;398;91;85;0,94;39,80;72,22;0;United States;Northern America;"Gallaudet University Press";"1946-1951, 1961, 1965-2025";"Education (Q3); Speech and Hearing (Q3); Developmental and Educational Psychology (Q4)";"Health Professions; Psychology; Social Sciences" +18494;19900191541;"Asian Politics and Policy";journal;"19430787, 19430779";"Wiley-Blackwell";No;No;0,266;Q3;23;43;104;2648;109;93;1,01;61,58;28,26;0;United States;Northern America;"Wiley-Blackwell";"2009-2026";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +18495;21100228113;"BMS Bulletin of Sociological Methodology/ Bulletin de Methodologie Sociologique";journal;"07591063, 20702779";"SAGE Publications Inc.";No;No;0,266;Q3;29;24;77;1228;49;57;0,27;51,17;45,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1983-2026";"Sociology and Political Science (Q3)";"Social Sciences" +18496;21100890652;"British Actuarial Journal";journal;"13573217, 20440456";"Cambridge University Press";No;No;0,266;Q3;9;30;56;906;33;40;0,73;30,20;25,00;0;United Kingdom;Western Europe;"Cambridge University Press";"2018-2026";"Economics and Econometrics (Q3); Statistics, Probability and Uncertainty (Q3); Statistics and Probability (Q4)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +18497;21101071243;"Canrea Journal: Food Technology, Nutritions, and Culinary Journal";journal;"26219468";"Hasanuddin University Department of Food Science and Technology";No;No;0,266;Q3;9;27;48;1235;72;48;1,17;45,74;58,59;0;Indonesia;Asiatic Region;"Hasanuddin University Department of Food Science and Technology";"2018-2025";"Food Science (Q3)";"Agricultural and Biological Sciences" +18498;21100942105;"Chelyabinsk Physical and Mathematical Journal";journal;"25000101, 26190117";"Chelyabinsk State University";No;No;0,266;Q3;8;65;145;1358;75;145;0,56;20,89;27,92;0;Russian Federation;Eastern Europe;"Chelyabinsk State University";"2018-2025";"Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Mathematics; Physics and Astronomy" +18499;12644;"Clinical and Experimental Obstetrics and Gynecology";journal;"03906663, 27090094";"IMR Press Limited";Yes;No;0,266;Q3;40;224;839;7880;679;800;0,90;35,18;57,01;0;Hong Kong;Asiatic Region;"IMR Press Limited";"1974-2026";"Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)";"Medicine" +18500;21101041971;"Energy, Environment, and Sustainability";book series;"25228374, 25228366";"Springer";No;No;0,266;Q3;35;56;467;3977;698;8;1,69;71,02;0,00;0;Germany;Western Europe;"Springer";"2018-2026";"Automotive Engineering (Q3); Environmental Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering; Environmental Science" +18501;21101034340;"English Teaching (South Korea)";journal;"26719312, 10177108";"Korea Association of Teachers of English";No;No;0,266;Q3;9;42;120;1971;119;120;0,91;46,93;57,69;0;South Korea;Asiatic Region;"Korea Association of Teachers of English";"2019-2025";"Education (Q3)";"Social Sciences" +18502;21100244810;"Family Physicians Essentials";journal;"21593000, 21619344";"American Academy of Family Physicians";No;No;0,266;Q3;19;60;158;0;119;151;0,89;0,00;50,00;0;United States;Northern America;"American Academy of Family Physicians";"2012-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +18503;75138;"Indian Journal of Agricultural Research";journal;"03678245, 0976058X";"Agricultural Research Communication Centre";No;No;0,266;Q3;19;242;441;6319;454;441;1,02;26,11;36,73;0;India;Asiatic Region;"Agricultural Research Communication Centre";"1979, 1983, 1988, 1990, 2012-2026";"Agronomy and Crop Science (Q3); Horticulture (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +18504;21101163377;"International Journal of Nutrition Sciences";journal;"25381873, 25382829";"Shiraz University of Medical Sciences";Yes;No;0,266;Q3;11;80;103;3215;214;98;2,26;40,19;47,40;0;Iran;Middle East;"Shiraz University of Medical Sciences";"2019-2025";"Food Science (Q3); Nutrition and Dietetics (Q3)";"Agricultural and Biological Sciences; Nursing" +18505;21100942421;"International Journal of Pediatrics and Adolescent Medicine";journal;"23526467";"Wolters Kluwer Medknow Publications";Yes;No;0,266;Q3;19;29;80;806;80;76;0,33;27,79;46,71;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2018-2025";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +18506;18161;"International Journal of Risk and Safety in Medicine";journal;"18786847, 09246479";"SAGE Publications Ltd";No;No;0,266;Q3;31;52;110;1496;98;99;0,85;28,77;45,41;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1990-2025";"Health Policy (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +18507;19700177401;"International Journal of Surgery Case Reports";journal;"22102612";"Elsevier Ltd";Yes;No;0,266;Q3;34;849;3891;13993;2601;3868;0,64;16,48;29,51;1;United Kingdom;Western Europe;"Elsevier Ltd";"2010-2025";"Surgery (Q3)";"Medicine" +18508;21890;"Journal of Allied Health";journal;"1945404X, 00907421";"Science and Medicine Inc.";No;No;0,266;Q3;46;74;211;2112;176;195;0,68;28,54;73,84;0;United States;Northern America;"Science and Medicine Inc.";"1975-2025";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +18509;3300147410;"Journal of Asian Pacific Communication";journal;"15699838, 09576851";"John Benjamins Publishing Company";No;No;0,266;Q3;25;11;35;586;41;33;1,25;53,27;36,36;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2000-2026";"Business, Management and Accounting (miscellaneous) (Q3); Communication (Q3); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +18510;19900193966;"Journal of Cardiovascular Echography";journal;"2347193X, 22114122";"Wolters Kluwer Medknow Publications";No;No;0,266;Q3;20;73;128;1675;131;115;0,97;22,95;46,94;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2011-2025";"Cardiology and Cardiovascular Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +18511;4700152841;"Journal of Culinary Science and Technology";journal;"15428052, 15428044";"Taylor and Francis Ltd.";No;No;0,266;Q3;31;145;169;7824;300;162;1,61;53,96;58,48;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Food Science (Q3)";"Agricultural and Biological Sciences" +18512;28234;"Journal of Nursing Measurement";journal;"19457049, 10613749";"Springer Publishing Company";No;No;0,266;Q3;45;49;168;1715;149;156;0,97;35,00;66,32;0;United States;Northern America;"Springer Publishing Company";"1993-2026";"Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)";"Medicine; Nursing" +18513;17488;"Neurocirugia";journal;"23406305, 11301473";"Neurocirugia";No;No;0,266;Q3;27;57;152;1399;122;147;0,82;24,54;26,52;0;Spain;Western Europe;"Neurocirugia";"1972-1980, 1990-1995, 1999-2026";"Neurology (clinical) (Q3); Surgery (Q3)";"Medicine" +18514;10300153302;"Poljoprivreda";journal;"13307142";"Faculty of Agriculture in Osijek";Yes;Yes;0,266;Q3;16;20;63;709;69;63;1,25;35,45;51,55;0;Croatia;Eastern Europe;"Faculty of Agriculture in Osijek";"2007-2025";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +18515;21100878050;"Portuguese Journal of Public Health";journal;"25043145";"S. Karger AG";Yes;Yes;0,266;Q3;17;15;78;640;73;67;0,80;42,67;69,57;0;Switzerland;Western Europe;"S. Karger AG";"2017-2026";"Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +18516;12100155428;"Proceedings of Institution of Civil Engineers: Management, Procurement and Law";journal;"17514312, 17514304";"ICE Publishing";No;No;0,266;Q3;23;30;67;1213;77;52;1,16;40,43;30,77;0;United Kingdom;Western Europe;"ICE Publishing";"2008-2025";"Business, Management and Accounting (miscellaneous) (Q3); Civil and Structural Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)";"Business, Management and Accounting; Engineering" +18517;19300157111;"Revista Brasileira de Gestao de Negocios";journal;"19830807, 18064892";"Fundacao Escola de Comercio Alvares Penteado";Yes;Yes;0,266;Q3;25;19;97;1301;137;97;1,44;68,47;46,81;0;Brazil;Latin America;"Fundacao Escola de Comercio Alvares Penteado";"2004-2026";"Business and International Management (Q3); Industrial Relations (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +18518;21101089574;"Revista de Administracao Contemporanea";journal;"19827849, 14156555";"Associacao Nacional de Pos-Graduacao e Pesquisa em Administracao";Yes;Yes;0,266;Q3;13;44;142;2482;172;121;0,70;56,41;38,96;0;Brazil;Latin America;"Associacao Nacional de Pos-Graduacao e Pesquisa em Administracao";"2016, 2019-2026";"Business, Management and Accounting (miscellaneous) (Q3); Management Science and Operations Research (Q3); Public Administration (Q3)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +18519;21100933704;"Sahand Communications in Mathematical Analysis";journal;"24233900, 23225807";"University of Maragheh";Yes;Yes;0,266;Q3;10;61;195;1657;129;195;0,65;27,16;29,10;0;Iran;Middle East;"University of Maragheh";"2019-2025";"Applied Mathematics (Q3); Numerical Analysis (Q3); Analysis (Q4)";"Mathematics" +18520;19332;"Salud Mental";journal;"01853325";"Instituto Nacional de Psiquiatria Ramon de la Fuente";Yes;No;0,266;Q3;33;36;115;1308;90;103;0,74;36,33;64,81;0;Mexico;Latin America;"Instituto Nacional de Psiquiatria Ramon de la Fuente";"1995-2025";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +18521;21100412095;"South African Journal of Radiology";journal;"1027202X, 20786778";"AOSIS (Pty) Ltd";Yes;Yes;0,266;Q3;13;14;103;336;107;100;0,89;24,00;63,16;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2014-2025";"Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Health Professions; Medicine" +18522;19400157218;"Thalassas";journal;"02125919";"Springer Science and Business Media Deutschland GmbH";No;No;0,266;Q3;21;256;400;15145;453;400;1,12;59,16;34,47;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005, 2008-2026";"Aquatic Science (Q3); Oceanography (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +18523;15914;"Zeitschrift fur Klinische Psychologie und Psychotherapie";journal;"21906297, 16163443";"Hogrefe-Verlag GmbH and Co. KG";No;No;0,266;Q3;37;16;55;470;35;54;0,58;29,38;73,13;0;Germany;Western Europe;"Hogrefe-Verlag GmbH and Co. KG";"1974-1983, 1996-1998, 2000-2026";"Clinical Psychology (Q3)";"Psychology" +18524;21100945248;"Innovations in Incidence Geometry";journal;"26407345, 26407337";"Mathematical Sciences Publishers";No;No;0,266;Q4;12;4;43;123;14;42;0,41;30,75;0,00;0;United States;Northern America;"Mathematical Sciences Publishers";"2005-2011, 2013, 2015, 2017-2025";"Geometry and Topology (Q4)";"Mathematics" +18525;21100220473;"International Journal of Mobile Human Computer Interaction";journal;"1942390X, 19423918";"IGI Global Publishing";No;No;0,266;Q4;24;3;3;95;3;3;1,00;31,67;11,11;0;United States;Northern America;"IGI Global Publishing";"2009-2023, 2025";"Human-Computer Interaction (Q4)";"Computer Science" +18526;26047;"Midwest Symposium on Circuits and Systems";conference and proceedings;"15483746, 15583899";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,266;-;47;238;652;4318;580;646;0,91;18,14;19,10;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1976-1977, 1983-1985, 1989-2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Engineering; Materials Science" +18527;18705;"Proceedings - IEEE Computer Society's International Computer Software and Applications Conference";conference and proceedings;"07303157";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,266;-;62;0;293;0;395;288;1,35;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1979-2019, 2023";"Computer Science Applications; Software";"Computer Science" +18528;11600153480;"Atlantic Studies : Global Currents";journal;"14788810, 17404649";"Routledge";No;No;0,265;Q1;16;34;98;2106;66;91;0,62;61,94;43,75;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +18529;21100896926;"Creativity";journal;"23540036";"Sciendo";Yes;No;0,265;Q1;12;14;39;964;38;39;0,83;68,86;57,14;0;Poland;Eastern Europe;"Sciendo";"2018-2026";"Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2); Education (Q3); Statistics, Probability and Uncertainty (Q3); Social Psychology (Q4)";"Arts and Humanities; Decision Sciences; Psychology; Social Sciences" +18530;21101044732;"E-Balonmano.com: Revista de Ciencias del Deporte";journal;"18857019";"Federacion Extremena de Balonmano, University of Extremadura";Yes;Yes;0,265;Q1;9;54;77;2581;90;77;1,40;47,80;25,37;0;Spain;Western Europe;"Federacion Extremena de Balonmano, University of Extremadura";"2019-2025";"Cultural Studies (Q1); Education (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Social Sciences (miscellaneous) (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Health Professions; Social Sciences" +18531;21101277813;"Historias Fingidas";journal;"22842667";"University of Verona, Deptarment of Foreign Languages and Literatures";Yes;Yes;0,265;Q1;3;19;58;886;17;48;0,09;46,63;62,50;0;Italy;Western Europe;"University of Verona, Deptarment of Foreign Languages and Literatures";"2022-2025";"Cultural Studies (Q1); Literature and Literary Theory (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities; Social Sciences" +18532;19700173012;"Organised Sound";journal;"13557718, 14698153";"Cambridge University Press";No;No;0,265;Q1;40;25;112;941;68;105;0,65;37,64;30,56;0;United Kingdom;Western Europe;"Cambridge University Press";"1996, 1998-2026";"Music (Q1); Computer Science Applications (Q3)";"Arts and Humanities; Computer Science" +18533;21101053436;"Sound Studies";journal;"20551940, 20551959";"Routledge";No;No;0,265;Q1;13;19;45;822;29;42;0,63;43,26;46,43;0;United States;Northern America;"Routledge";"2015-2026";"Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +18534;21101019741;"Studies in Agricultural Economics";journal;"14182106, 20630476";"";Yes;Yes;0,265;Q1;22;20;50;959;76;50;1,43;47,95;34,43;0;Hungary;Eastern Europe;"";"2011-2025";"Cultural Studies (Q1); Agricultural and Biological Sciences (miscellaneous) (Q3); Development (Q3); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Social Sciences" +18535;20196;"Journal of European Studies";journal;"00472441, 17402379";"SAGE Publications Ltd";No;No;0,265;Q2;17;25;66;1184;63;62;0,65;47,36;61,54;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1971-2026";"Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +18536;19700202605;"Law and Ethics of Human Rights";journal;"19382545, 21946531";"Walter de Gruyter GmbH";No;No;0,265;Q2;18;9;30;869;29;30;0,50;96,56;27,27;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2010-2025";"Law (Q2); Sociology and Political Science (Q3)";"Social Sciences" +18537;19600162021;"Pertanika Journal of Social Sciences and Humanities";journal;"01287702, 22318534";"Universiti Putra Malaysia";Yes;No;0,265;Q2;24;127;289;7338;373;289;1,03;57,78;46,18;0;Malaysia;Asiatic Region;"Universiti Putra Malaysia";"2009-2025";"Arts and Humanities (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +18538;16201;"Acta Botanica Croatica";journal;"03650588, 18478476";"Department of Biology, Faculty of Science, University of Zagreb";Yes;Yes;0,265;Q3;33;30;68;1456;72;67;1,07;48,53;49,00;0;Croatia;Eastern Europe;"Department of Biology, Faculty of Science, University of Zagreb";"1980-1983, 1985, 1996, 1998-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +18539;21100826247;"Advances in Concrete Construction";journal;"2287531X, 22875301";"Techno-Press";No;No;0,265;Q3;36;0;123;0;128;123;1,10;0,00;0,00;0;South Korea;Asiatic Region;"Techno-Press";"2016-2024";"Building and Construction (Q3); Civil and Structural Engineering (Q3); Mechanics of Materials (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering" +18540;19900191855;"Advances in Operations Research";journal;"16879155, 16879147";"John Wiley and Sons Ltd";Yes;No;0,265;Q3;22;0;19;0;31;19;1,63;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2009-2024";"Management Science and Operations Research (Q3)";"Decision Sciences" +18541;21101340497;"Annals of Clinical nutrition and Metabolism";journal;"27997898, 27998363";"Korean Society of Surgical nutrition and Metabolism";No;No;0,265;Q3;4;28;51;693;41;43;0,92;24,75;33,06;0;North Korea;Asiatic Region;"Korean Society of Surgical nutrition and Metabolism";"2021-2025";"Nutrition and Dietetics (Q3); Surgery (Q3)";"Medicine; Nursing" +18542;21100444451;"Austrian Journal of Statistics";journal;"27914852, 1026597X";"Austrian Statistical Society";Yes;Yes;0,265;Q3;17;42;111;1405;108;111;0,84;33,45;29,76;0;Austria;Western Europe;"Austrian Statistical Society";"2014-2026";"Applied Mathematics (Q3); Statistics, Probability and Uncertainty (Q3); Statistics and Probability (Q4)";"Decision Sciences; Mathematics" +18543;1000147123;"Business: Theory and Practice";journal;"16480627, 18224202";"Vilnius Gediminas Technical University";Yes;No;0,265;Q3;35;37;155;2210;274;155;1,68;59,73;48,00;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2005-2026";"Civil and Structural Engineering (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Engineering" +18544;21101019710;"Cephalalgia Reports";journal;"25158163";"SAGE Publications Ltd";Yes;No;0,265;Q3;10;58;57;1325;56;56;0,73;22,84;50,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2026";"Neurology (clinical) (Q3)";"Medicine" +18545;19800188063;"China Journal of Social Work";journal;"17525098, 17525101";"Routledge";No;No;0,265;Q3;17;10;59;391;47;50;0,94;39,10;27,27;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Health (social science) (Q3); Sociology and Political Science (Q3); Social Work (Q4)";"Social Sciences" +18546;28665;"Chinese Journal of Obstetrics and Gynecology";journal;"0529567X";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,265;Q3;27;77;240;2398;197;233;0,71;31,14;61,98;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1960, 1979-2016, 2019-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +18547;21027;"Cirugia Pediatrica";journal;"02141221, 24452807";"";Yes;No;0,265;Q3;16;30;93;0;72;86;0,62;0,00;50,56;0;Spain;Western Europe;"";"1988-2014, 2016-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +18548;21100326207;"Digital Journal of Ophthalmology";journal;"15428958";"Massachusetts Eye and Ear";Yes;No;0,265;Q3;13;25;94;295;55;75;0,49;11,80;34,57;0;United States;Northern America;"Massachusetts Eye and Ear";"2013-2025";"Ophthalmology (Q3)";"Medicine" +18549;17433;"Doklady Biochemistry and Biophysics";journal;"16083091, 16076729";"Pleiades Publishing";No;No;0,265;Q3;24;104;237;2166;186;237;0,83;20,83;61,28;0;United States;Northern America;"Pleiades Publishing";"2001-2026";"Chemistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Biochemistry (Q4); Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine" +18550;21100843485;"Economics and Business Letters";journal;"22544380";"Oviedo University Press";Yes;Yes;0,265;Q3;14;21;78;618;81;74;1,12;29,43;25,00;0;Spain;Western Europe;"Oviedo University Press";"2017-2025";"Business and International Management (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +18551;21100912210;"European Heart Journal - Case Reports";journal;"25142119";"Oxford University Press";Yes;No;0,265;Q3;20;670;1803;6395;1117;1576;0,61;9,54;26,35;0;United Kingdom;Western Europe;"Oxford University Press";"2017-2026";"Cardiology and Cardiovascular Medicine (Q3)";"Medicine" +18552;145259;"International Education Journal";journal;"14431475, 2202493X";"University of Sydney";No;No;0,265;Q3;44;6;52;383;52;48;1,06;63,83;44,44;0;Australia;Pacific Region;"University of Sydney";"1999-2008, 2011-2025";"Education (Q3)";"Social Sciences" +18553;21100235622;"International Journal of Automotive and Mechanical Engineering";journal;"22298649, 21801606";"Universiti Malaysia Pahang";Yes;No;0,265;Q3;36;80;195;3591;306;195;1,53;44,89;21,43;0;Malaysia;Asiatic Region;"Universiti Malaysia Pahang";"2010-2025";"Automotive Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +18554;21101179124;"International Journal of Biological and Chemical Sciences";journal;"1997342X, 19918631";"International Formulae Group (IFG)";No;No;0,265;Q3;13;173;642;5248;371;642;0,56;30,34;19,56;0;Cameroon;Africa;"International Formulae Group (IFG)";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Animal Science and Zoology (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Environmental Science; Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +18555;5800207378;"International Journal of Exergy";journal;"17428297, 17428300";"Inderscience Enterprises Ltd";No;No;0,265;Q3;40;61;214;1448;226;213;1,11;23,74;18,87;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2026";"Energy (miscellaneous) (Q3)";"Energy" +18556;87828;"International Journal of Heat and Technology";journal;"03928764";"International Information and Engineering Technology Association";Yes;No;0,265;Q3;39;228;598;6994;844;598;1,38;30,68;25,51;0;Canada;Northern America;"International Information and Engineering Technology Association";"1983-1993, 1995-2025";"Condensed Matter Physics (Q3); Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3)";"Chemical Engineering; Engineering; Physics and Astronomy" +18557;21100258621;"International Journal of Technologies in Learning";journal;"23272686, 23270144";"Common Ground Research Networks";No;No;0,265;Q3;7;21;43;1060;41;43;1,28;50,48;32,50;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Computer Science Applications (Q3); Education (Q3); E-learning (Q4)";"Computer Science; Social Sciences" +18558;21100775634;"IZA Journal of Labor Economics";journal;"21938997";"Laborwide";Yes;No;0,265;Q3;24;0;23;0;21;23;0,33;0,00;0,00;0;Germany;Western Europe;"Laborwide";"2012-2024";"Economics and Econometrics (Q3); Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +18559;21101264429;"Journal of Electronic Measurement and Instrumentation";journal;"10007105";"";No;No;0,265;Q3;15;316;933;8007;1219;933;1,37;25,34;33,56;0;China;Asiatic Region;"";"2004, 2020-2025";"Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)";"Computer Science; Engineering" +18560;21101211209;"Journal of Family Research";journal;"26992337";"";Yes;Yes;0,265;Q3;16;21;26;1389;25;26;0,96;66,14;84,00;0;Germany;Western Europe;"";"2024-2026";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +18561;28211;"Journal of Infusion Nursing";journal;"15331458, 15390667";"Lippincott Williams and Wilkins";No;No;0,265;Q3;43;50;113;1155;341;91;4,14;23,10;74,40;0;United States;Northern America;"Lippincott Williams and Wilkins";"2001-2026";"Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)";"Medicine; Nursing" +18562;21101044730;"Journal of the Nigerian Society of Physical Sciences";journal;"27144704, 27142817";"Nigerian Society of Physical Sciences";Yes;No;0,265;Q3;16;84;232;3606;400;231;1,86;42,93;18,78;0;Nigeria;Africa;"Nigerian Society of Physical Sciences";"2019-2025";"Chemistry (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Chemistry; Mathematics; Physics and Astronomy" +18563;22892;"Journal of Tropical Forest Science";journal;"01281283";"Forest Research Institute Malaysia";Yes;No;0,265;Q3;41;52;138;2300;136;138;0,96;44,23;36,11;0;Malaysia;Asiatic Region;"Forest Research Institute Malaysia";"1988, 1993-2026";"Forestry (Q3)";"Agricultural and Biological Sciences" +18564;12582;"Kerntechnik";journal;"21958580, 09323902";"Walter de Gruyter GmbH";No;No;0,265;Q3;22;51;191;1245;176;191;0,94;24,41;21,47;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1969-1971, 1973, 1975-1976, 1978, 1988-1993, 1995-2026";"Materials Science (miscellaneous) (Q3); Nuclear and High Energy Physics (Q3); Nuclear Energy and Engineering (Q3); Radiation (Q3); Safety, Risk, Reliability and Quality (Q3)";"Energy; Engineering; Materials Science; Physics and Astronomy" +18565;18300156734;"Main Group Chemistry";journal;"17451167, 10241221";"SAGE Publications Ltd";No;No;0,265;Q3;26;23;165;1242;237;165;1,70;54,00;42,68;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1995-2000, 2005-2026";"Inorganic Chemistry (Q3); Materials Chemistry (Q3); Organic Chemistry (Q3)";"Chemistry; Materials Science" +18566;21100318528;"Metallurgical Research and Technology";journal;"22713654, 22713646";"EDP Sciences";No;No;0,265;Q3;32;116;303;4155;405;303;1,27;35,82;29,68;0;France;Western Europe;"EDP Sciences";"2014-2026";"Computational Mechanics (Q3); Materials Chemistry (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)";"Engineering; Materials Science" +18567;18558;"Monaldi Archives for Chest Disease";journal;"11220643, 25325264";"Page Press Publications";Yes;Yes;0,265;Q3;46;116;334;3267;261;322;0,69;28,16;39,96;0;Italy;Western Europe;"Page Press Publications";"1993-2014, 2016-2025";"Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +18568;12989;"Revista Brasileira de Ortopedia";journal;"19824378, 01023616";"Thieme";Yes;Yes;0,265;Q3;32;98;482;2401;321;473;0,58;24,50;13,99;0;Brazil;Latin America;"Thieme";"1996-2000, 2011-2025";"Orthopedics and Sports Medicine (Q3); Surgery (Q3)";"Medicine" +18569;66304;"Revista de Geografia Norte Grande";journal;"07183402, 03798682";"Revista de Geografia Norte Grande";Yes;Yes;0,265;Q3;30;42;153;2704;114;146;0,47;64,38;28,75;0;Chile;Latin America;"Revista de Geografia Norte Grande";"1981, 1983, 2000, 2004-2025";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +18570;21101226948;"Revista IBRACON de Estruturas e Materiais";journal;"19834195";"IBRACON - Instituto Brasileiro do Concreto";Yes;Yes;0,265;Q3;13;63;213;2639;228;213;0,98;41,89;32,62;0;Brazil;Latin America;"IBRACON - Instituto Brasileiro do Concreto";"2020-2025";"Civil and Structural Engineering (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +18571;19700174711;"SAE International Journal of Engines";journal;"19463944, 19463936";"SAE International";No;No;0,265;Q3;78;40;142;1705;153;141;1,13;42,63;9,57;0;United States;Northern America;"SAE International";"2008-2026";"Automotive Engineering (Q3); Fuel Technology (Q3)";"Energy; Engineering" +18572;21100433341;"Saudi Endodontic Journal";journal;"23201495, 22789618";"Wolters Kluwer Medknow Publications";Yes;Yes;0,265;Q3;18;20;145;553;99;132;0,62;27,65;49,18;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2015-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +18573;21101158604;"Sinergi (Indonesia)";journal;"14102331, 24601217";"Mercu Buana University";Yes;No;0,265;Q3;8;73;110;2802;219;110;1,99;38,38;40,76;0;Indonesia;Asiatic Region;"Mercu Buana University";"2023-2026";"Civil and Structural Engineering (Q3); Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +18574;14524;"Studia Geotechnica et Mechanica";journal;"01376365, 2083831X";"";Yes;Yes;0,265;Q3;19;20;84;748;111;84;1,33;37,40;17,39;0;Poland;Eastern Europe;"";"1980-1986, 1992, 1994, 2016-2025";"Civil and Structural Engineering (Q3); Computers in Earth Sciences (Q3); Geotechnical Engineering and Engineering Geology (Q3); Mechanics of Materials (Q3)";"Earth and Planetary Sciences; Engineering" +18575;17925;"Topics in Magnetic Resonance Imaging";journal;"15361004, 08993459";"Lippincott Williams and Wilkins Ltd.";No;No;0,265;Q3;63;6;26;243;23;25;1,00;40,50;43,24;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1988-1996, 1998-2011, 2014-2025";"Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +18576;38175;"Vitis - Journal of Grapevine Research";journal;"00427500, 23674156";"Julius Kuhn-Institut Federal Research Center for Cultivated Plants";Yes;No;0,265;Q3;59;19;61;793;53;60;0,77;41,74;27,66;0;Germany;Western Europe;"Julius Kuhn-Institut Federal Research Center for Cultivated Plants";"1981, 1984-1985, 1993-2026";"Horticulture (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +18577;27999;"Chinese Journal of Chemical Physics";journal;"23272244, 16740068";"American Institute of Physics";No;No;0,265;Q4;31;100;295;4929;269;295;0,95;49,29;40,59;0;United States;Northern America;"American Institute of Physics";"2000-2002, 2004-2025";"Physical and Theoretical Chemistry (Q4)";"Chemistry" +18578;22262;"Human Heredity";journal;"14230062, 00015652";"S. Karger AG";Yes;No;0,265;Q4;67;6;30;181;33;30;1,16;30,17;48,15;0;Switzerland;Western Europe;"S. Karger AG";"1950-1954, 1956-2026";"Genetics (Q4); Genetics (clinical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +18579;17538;"Indian Journal of Clinical Biochemistry";journal;"09740422, 09701915";"Springer";No;No;0,265;Q4;61;150;256;7126;447;236;1,89;47,51;43,07;0;India;Asiatic Region;"Springer";"1986-2026";"Clinical Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology" +18580;145234;"Device Research Conference - Conference Digest, DRC";conference and proceedings;"15483770";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,265;-;27;52;178;354;122;175;0,70;6,81;21,99;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1993-1994, 2002-2006, 2008-2025";"Electrical and Electronic Engineering; Engineering (miscellaneous)";"Engineering" +18581;21101034344;"Cuadernos de Prehistoria y Arqueologia de la Universidad de Granada";journal;"21748063, 26599295";"Editorial Universidad de Granada";Yes;Yes;0,264;Q1;6;0;51;0;15;49;0,45;0,00;0,00;0;Spain;Western Europe;"Editorial Universidad de Granada";"2019, 2021-2024";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +18582;21100914237;"Drama Therapy Review";journal;"20547668, 20547676";"Intellect Ltd.";No;No;0,264;Q1;9;18;52;645;33;40;0,59;35,83;66,67;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Visual Arts and Performing Arts (Q1); Complementary and Manual Therapy (Q2)";"Arts and Humanities; Health Professions" +18583;21100901052;"East Asian Pragmatics";journal;"20557760";"Equinox Publishing Ltd";No;No;0,264;Q1;10;10;66;363;33;64;0,49;36,30;53,85;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2018-2025";"Cultural Studies (Q1); Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +18584;17831;"Medical History";journal;"20488343, 00257273";"Cambridge University Press";No;No;0,264;Q1;39;41;65;5158;66;64;0,87;125,80;56,14;0;United Kingdom;Western Europe;"Cambridge University Press";"1957-2026";"History (Q1); Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)";"Arts and Humanities; Medicine; Nursing" +18585;21100818507;"Monitoring Obshchestvennogo Mneniya: Ekonomicheskie i Sotsial'nye Peremeny";journal;"22195467";"Russian Public Opinion Research Center, VCIOM";Yes;Yes;0,264;Q1;15;75;267;2711;126;266;0,46;36,15;63,04;0;Russian Federation;Eastern Europe;"Russian Public Opinion Research Center, VCIOM";"2016-2025";"Cultural Studies (Q1); Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +18586;19700187708;"Quarterly Review of Film and Video";journal;"15435326, 10509208";"Taylor and Francis Ltd.";No;No;0,264;Q1;16;114;226;4737;111;210;0,48;41,55;43,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-1995, 2000-2003, 2006-2007, 2009-2026";"Visual Arts and Performing Arts (Q1); Communication (Q3)";"Arts and Humanities; Social Sciences" +18587;21101101214;"Rock Music Studies";journal;"19401167, 19401159";"Routledge";No;No;0,264;Q1;10;13;58;770;38;50;0,73;59,23;25,00;0;United Kingdom;Western Europe;"Routledge";"2014-2025";"Music (Q1)";"Arts and Humanities" +18588;5100155098;"Tourism, Culture and Communication";journal;"1098304X";"Cognizant Communication Corporation";No;No;0,264;Q1;24;30;78;2089;112;78;1,52;69,63;43,33;0;United States;Northern America;"Cognizant Communication Corporation";"2006-2025";"Cultural Studies (Q1); Communication (Q3); Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +18589;21100826956;"Quanta";journal;"13147374";"Quanta";Yes;Yes;0,264;Q2;13;2;24;135;23;24;0,73;67,50;0,00;0;Bulgaria;Eastern Europe;"Quanta";"2012-2025";"History and Philosophy of Science (Q2); Atomic and Molecular Physics, and Optics (Q3); Mathematical Physics (Q4)";"Arts and Humanities; Mathematics; Physics and Astronomy" +18590;21101027250;"Revista Chilena de Derecho Privado";journal;"07180233, 07188072";"Universidad Diego Portales";Yes;Yes;0,264;Q2;5;28;62;1922;19;62;0,24;68,64;37,04;0;Chile;Latin America;"Universidad Diego Portales";"2019-2025";"Law (Q2)";"Social Sciences" +18591;21101196736;"APTISI Transactions on Technopreneurship";journal;"26558807, 26568888";"Pandawan Sejahtera";Yes;No;0,264;Q3;27;85;125;4181;745;125;7,05;49,19;45,45;0;Indonesia;Asiatic Region;"Pandawan Sejahtera";"2021-2026";"Artificial Intelligence (Q3); Computer Science Applications (Q3); Education (Q3); Management Information Systems (Q3)";"Business, Management and Accounting; Computer Science; Social Sciences" +18592;16287;"Bio-Medical Materials and Engineering";journal;"09592989, 18783619";"SAGE Publications Ltd";No;No;0,264;Q3;63;33;125;1177;152;125;1,23;35,67;34,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1991-2026";"Medicine (miscellaneous) (Q3); Biomaterials (Q4); Biomedical Engineering (Q4)";"Engineering; Materials Science; Medicine" +18593;17438;"Der Nervenarzt";journal;"14330407, 00282804";"Springer Medizin";No;No;0,264;Q3;50;145;496;3192;374;387;0,78;22,01;38,03;2;Germany;Western Europe;"Springer Medizin";"1947-2026";"Medicine (miscellaneous) (Q3); Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience" +18594;25396;"Design Automation for Embedded Systems";journal;"15728080, 09295585";"Springer Netherlands";No;No;0,264;Q3;33;4;31;203;38;30;1,38;50,75;0,00;0;Netherlands;Western Europe;"Springer Netherlands";"1996-2003, 2005, 2007-2025";"Hardware and Architecture (Q3); Software (Q3)";"Computer Science" +18595;5700158158;"Educational Practice and Theory";journal;"1323577X, 22010599";"James Nicholas Publishers, Pty. Ltd";No;No;0,264;Q3;10;13;40;549;27;34;0,58;42,23;60,00;0;Australia;Pacific Region;"James Nicholas Publishers, Pty. Ltd";"2010, 2014-2025";"Education (Q3)";"Social Sciences" +18596;21101161406;"Foregut";journal;"26345161";"SAGE Publications Inc.";No;No;0,264;Q3;7;60;190;1328;107;161;0,37;22,13;31,61;0;United States;Northern America;"SAGE Publications Inc.";"2021-2025";"Gastroenterology (Q3); Surgery (Q3); Oncology (Q4)";"Medicine" +18597;10600153318;"Himalayan Geology";journal;"09718966";"Wadia Institute of Himalayan Geology";No;No;0,264;Q3;22;21;79;1251;68;76;0,67;59,57;20,00;0;India;Asiatic Region;"Wadia Institute of Himalayan Geology";"2007-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +18598;21100868882;"Interfacial Phenomena and Heat Transfer";journal;"21692785, 2167857X";"Begell House Inc.";No;No;0,264;Q3;13;20;70;712;53;67;0,78;35,60;31,48;0;United States;Northern America;"Begell House Inc.";"2017-2025";"Engineering (miscellaneous) (Q3); Fluid Flow and Transfer Processes (Q3); Surfaces and Interfaces (Q3)";"Chemical Engineering; Engineering; Physics and Astronomy" +18599;17700155303;"International Journal of Biometrics";journal;"1755831X, 17558301";"Inderscience Enterprises Ltd";No;No;0,264;Q3;20;34;103;1048;143;102;1,25;30,82;33,82;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2008-2026";"Applied Mathematics (Q3); Computer Science Applications (Q3); Computer Vision and Pattern Recognition (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering; Mathematics" +18600;21100242227;"International Journal of Manufacturing, Materials, and Mechanical Engineering";journal;"21561672, 21561680";"IGI Publishing";No;No;0,264;Q3;17;1;15;34;29;15;4,60;34,00;20,00;0;United States;Northern America;"IGI Publishing";"2011-2025";"Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +18601;21100900149;"International Journal of Thin Film Science and Technology";journal;"20909527, 20909519";"Natural Sciences Publishing";No;No;0,264;Q3;13;29;107;839;120;107;1,13;28,93;33,33;0;United States;Northern America;"Natural Sciences Publishing";"2018-2026";"Mechanics of Materials (Q3); Surfaces and Interfaces (Q3); Surfaces, Coatings and Films (Q3)";"Engineering; Materials Science; Physics and Astronomy" +18602;21100197343;"Journal of Disaster Research";journal;"18812473, 18838030";"Fuji Technology Press";Yes;No;0,264;Q3;33;100;309;3320;265;272;0,74;33,20;22,47;0;Japan;Asiatic Region;"Fuji Technology Press";"2006-2026";"Engineering (miscellaneous) (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering" +18603;17700155807;"Journal of Educators Online";journal;"1547500X";"Grand Canyon University";Yes;Yes;0,264;Q3;31;74;197;3692;205;195;1,02;49,89;44,57;0;United States;Northern America;"Grand Canyon University";"2009-2026";"Education (Q3); E-learning (Q4)";"Social Sciences" +18604;21100872049;"Journal of Information Policy";journal;"23815892, 21583897";"Penn State University Press";Yes;Yes;0,264;Q3;18;14;45;843;60;44;1,55;60,21;57,14;0;United States;Northern America;"Penn State University Press";"2013, 2017-2025";"Communication (Q3); Public Administration (Q3); Sociology and Political Science (Q3)";"Social Sciences" +18605;21100269616;"Journal of Intellectual Disabilities and Offending Behaviour";journal;"20508824";"Emerald Group Publishing Ltd.";No;No;0,264;Q3;17;0;15;0;16;15;0,71;0,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2013-2024";"Clinical Psychology (Q3); Pathology and Forensic Medicine (Q3); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +18606;18949;"Journal of Sichuan University (Medical Science)";journal;"1672173X";"Sichuan University";No;No;0,264;Q3;21;224;607;0;579;607;1,04;0,00;49,39;0;China;Asiatic Region;"Sichuan University";"2003-2025";"Medicine (miscellaneous) (Q3); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +18607;11600153421;"Journal of Technology Management and Innovation";journal;"07182724";"Universidad Alberto Hurtado";Yes;Yes;0,264;Q3;41;36;107;2017;169;104;1,67;56,03;28,38;0;Chile;Latin America;"Universidad Alberto Hurtado";"2008-2025";"Management of Technology and Innovation (Q3)";"Business, Management and Accounting" +18608;19700175073;"Open Biotechnology Journal";journal;"18740707";"Bentham Science Publishers";Yes;No;0,264;Q3;23;15;30;754;52;29;1,69;50,27;49,32;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2008-2025";"Biotechnology (Q3); Biochemistry (Q4); Bioengineering (Q4); Biomedical Engineering (Q4); Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering" +18609;20500195011;"Open Dentistry Journal";journal;"18742106";"Bentham Science Publishers";Yes;No;0,264;Q3;45;111;321;4361;352;316;1,10;39,29;46,45;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2011-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +18610;21100318814;"Pharmaceutical Patent Analyst";journal;"20468954, 20468962";"Taylor and Francis Ltd.";No;No;0,264;Q3;23;0;71;0;98;61;0,84;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2024";"Medicine (miscellaneous) (Q3); Pharmaceutical Science (Q3); Drug Discovery (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +18611;7900153109;"Production";journal;"19805411, 01036513";"Associacao Brasileira de Engenharia de Producao";Yes;Yes;0,264;Q3;28;25;98;1475;161;98;1,39;59,00;34,25;0;Brazil;Latin America;"Associacao Brasileira de Engenharia de Producao";"2007-2026";"Business and International Management (Q3); Industrial and Manufacturing Engineering (Q3); Industrial Relations (Q3); Management Science and Operations Research (Q3)";"Business, Management and Accounting; Decision Sciences; Engineering" +18612;12200154726;"Rendiconti del Seminario Matematico dell 'Universita' di Padova/Mathematical Journal of the University of Padova";journal;"22402926, 00418994";"European Mathematical Society Publishing House";Yes;Yes;0,264;Q3;26;26;58;531;21;58;0,26;20,42;16,67;0;Germany;Western Europe;"European Mathematical Society Publishing House";"1994, 1996-2025";"Algebra and Number Theory (Q3); Mathematical Physics (Q3); Analysis (Q4); Geometry and Topology (Q4)";"Mathematics" +18613;21100297819;"Ribarstvo, Croatian Journal of Fisheries";journal;"1330061X, 18480586";"Sciendo";Yes;Yes;0,264;Q3;19;19;60;818;83;60;1,55;43,05;50,00;0;Poland;Eastern Europe;"Sciendo";"1993-1997, 2013-2025";"Aquatic Science (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Management, Monitoring, Policy and Law (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18614;5000154608;"Saudi Journal of Kidney Diseases and Transplantation";journal;"23203838, 13192442";"Wolters Kluwer Medknow Publications";Yes;Yes;0,264;Q3;41;17;254;351;182;242;0,63;20,65;39,19;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2006-2025";"Nephrology (Q3); Transplantation (Q3)";"Medicine" +18615;5600153211;"South African Review of Sociology";journal;"21528586, 20721978";"Taylor and Francis Ltd.";No;No;0,264;Q3;27;26;79;1069;66;59;0,67;41,12;37,04;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +18616;19700175262;"Urological Science";journal;"18795226, 18795234";"Wolters Kluwer Medknow Publications";Yes;Yes;0,264;Q3;15;38;112;1359;71;97;0,53;35,76;25,58;0;Netherlands;Western Europe;"Wolters Kluwer Medknow Publications";"2010-2025";"Urology (Q3)";"Medicine" +18617;28650;"Zeitschrift fur Geburtshilfe und Neonatologie";journal;"14391651, 09482393";"Georg Thieme Verlag";No;No;0,264;Q3;22;101;351;1236;132;210;0,35;12,24;45,75;0;Germany;Western Europe;"Georg Thieme Verlag";"1995-2026";"Maternity and Midwifery (Q3); Medicine (miscellaneous) (Q3); Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine; Nursing" +18618;17315;"IEEE International Symposium on Semiconductor Manufacturing Conference Proceedings";conference and proceedings;"1523553X, 10788743";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,264;-;26;114;343;1020;151;332;0,42;8,95;22,15;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992-2014, 2017-2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Engineering (miscellaneous); Industrial and Manufacturing Engineering";"Engineering; Materials Science" +18619;13243;"Chaucer Review";journal;"15284204, 00092002";"Penn State University Press";No;No;0,263;Q1;17;23;78;1435;33;75;0,38;62,39;65,00;0;United States;Northern America;"Penn State University Press";"1979, 2002-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +18620;21100200638;"Classical Receptions Journal";journal;"17595142, 17595134";"Oxford University Press";No;No;0,263;Q1;12;22;75;1121;26;74;0,40;50,95;40,91;0;United Kingdom;Western Europe;"Oxford University Press";"2011-2026";"Classics (Q1); Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +18621;21100206265;"International Journal of Arts Management";journal;"14808986";"Ecole des Hautes Etudes Commerciales";No;No;0,263;Q1;23;25;71;1393;69;59;0,78;55,72;60,00;0;Canada;Northern America;"Ecole des Hautes Etudes Commerciales";"2011-2025";"Visual Arts and Performing Arts (Q1); Business and International Management (Q3)";"Arts and Humanities; Business, Management and Accounting" +18622;21101105298;"Ogigia";journal;"18873731";"Universidad de Valladolid";Yes;Yes;0,263;Q1;6;17;56;584;20;54;0,32;34,35;70,00;0;Spain;Western Europe;"Universidad de Valladolid";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +18623;21100873638;"Philologia Estonica Tallinnensis";journal;"25046624, 25046616";"Tallinn University";Yes;No;0,263;Q1;5;0;29;0;16;27;0,41;0,00;0,00;0;Estonia;Eastern Europe;"Tallinn University";"2016-2024";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +18624;21100224008;"Croatian Yearbook of European Law and Policy";journal;"18455662, 18489958";"Faculty Of Law, University Of Zagreb";Yes;Yes;0,263;Q2;9;7;33;839;31;27;1,00;119,86;42,86;0;Croatia;Eastern Europe;"Faculty Of Law, University Of Zagreb";"2012-2025";"Law (Q2)";"Social Sciences" +18625;21101043322;"Education in Medicine Journal";journal;"21801932";"Penerbit Universiti Sains Malaysia";No;No;0,263;Q2;11;60;153;2091;163;150;0,99;34,85;53,06;1;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2019-2025";"Health Professions (miscellaneous) (Q2); Education (Q3); Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)";"Health Professions; Medicine; Nursing; Social Sciences" +18626;21101039065;"Ethics in Progress";journal;"20849257";"Adam Mickiewicz University, Faculty of Philosophy";Yes;Yes;0,263;Q2;7;9;56;336;49;56;1,23;37,33;22,22;0;Poland;Eastern Europe;"Adam Mickiewicz University, Faculty of Philosophy";"2010-2025";"Philosophy (Q2); Education (Q3); Psychology (miscellaneous) (Q3); Developmental and Educational Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +18627;21100283726;"Forensic Science Review";journal;"10427201";"Central Police University Press";No;No;0,263;Q2;21;5;29;176;33;17;0,57;35,20;25,00;0;Taiwan;Asiatic Region;"Central Police University Press";"2012, 2014-2025";"Law (Q2); Medicine (miscellaneous) (Q3)";"Medicine; Social Sciences" +18628;21100905026;"Ukrainian Geographical Journal";journal;"15614980";"Publishing House Akademperiodyka";No;No;0,263;Q2;9;41;87;890;80;87;0,84;21,71;54,93;0;Ukraine;Eastern Europe;"Publishing House Akademperiodyka";"2018-2025";"History and Philosophy of Science (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Earth-Surface Processes (Q3); Geography, Planning and Development (Q3); Management of Technology and Innovation (Q3)";"Arts and Humanities; Business, Management and Accounting; Earth and Planetary Sciences; Social Sciences" +18629;21100468861;"Voprosy Onomastiki";journal;"19942400, 19942451";"Ural Federal University";Yes;Yes;0,263;Q2;8;34;113;867;44;113;0,37;25,50;60,53;0;Russian Federation;Eastern Europe;"Ural Federal University";"2016-2025";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +18630;21100394733;"Acta Gymnica";journal;"23364912, 23364920";"Palacky University Olomouc";Yes;Yes;0,263;Q3;19;15;35;612;36;35;0,89;40,80;37,10;0;Czech Republic;Eastern Europe;"Palacky University Olomouc";"2014-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions" +18631;21100790326;"Acta Horticulturae Sinica";journal;"0513353X";"Editorial Office of Acta Horticulturae Sinica";Yes;No;0,263;Q3;21;197;1097;9153;1041;1097;1,21;46,46;47,07;0;China;Asiatic Region;"Editorial Office of Acta Horticulturae Sinica";"2016-2025";"Horticulture (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +18632;5800179608;"Acta Montanistica Slovaca";journal;"13393103, 13351788";"Technical University of Kosice";Yes;Yes;0,263;Q3;35;60;247;2735;320;247;0,88;45,58;33,63;0;Slovakia;Eastern Europe;"Technical University of Kosice";"2007-2025";"Geochemistry and Petrology (Q3); Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +18633;24119;"African Zoology";journal;"15627020";"Taylor and Francis Ltd.";Yes;No;0,263;Q3;37;27;42;1514;43;42;0,93;56,07;37,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +18634;21100847272;"Applied Food Biotechnology";journal;"24234214, 23455357";"National Nutrition and Food Technology Research Institute";Yes;No;0,263;Q3;29;31;92;1382;133;88;1,52;44,58;48,76;0;Iran;Middle East;"National Nutrition and Food Technology Research Institute";"2014-2025";"Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +18635;21100216538;"ASEAN Journal of Chemical Engineering";journal;"16554418, 26555409";"Gadjah Mada University";Yes;No;0,263;Q3;11;45;90;1573;124;90;1,28;34,96;41,13;0;Indonesia;Asiatic Region;"Gadjah Mada University";"2012-2025";"Chemical Engineering (miscellaneous) (Q3)";"Chemical Engineering" +18636;15445;"ASHRAE Journal";journal;"00012491, 03649962";"American Society of Heating Refrigerating and Air-Conditioning Engineers";No;No;0,263;Q3;45;116;289;467;78;243;0,20;4,03;11,11;0;United States;Northern America;"American Society of Heating Refrigerating and Air-Conditioning Engineers";"1967, 1969-2025";"Building and Construction (Q3); Mechanical Engineering (Q3)";"Engineering" +18637;25446;"Clinical Laboratory";journal;"14336510";"Verlag Klinisches Labor GmbH";No;No;0,263;Q3;56;361;1092;6798;765;1026;0,66;18,83;47,68;0;Germany;Western Europe;"Verlag Klinisches Labor GmbH";"1964, 1997-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology" +18638;21100941154;"Current Surgery Reports";journal;"21674817";"Springer";No;No;0,263;Q3;17;48;127;2608;111;127;0,88;54,33;39,66;0;United States;Northern America;"Springer";"2013, 2015-2026";"Surgery (Q3)";"Medicine" +18639;21101022747;"Ekonomika";journal;"13921258, 24246166";"Vilnius University Press";Yes;Yes;0,263;Q3;12;32;71;1414;127;71;1,87;44,19;39,06;0;Poland;Eastern Europe;"Vilnius University Press";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +18640;13139;"Epidemiologia e Prevenzione";journal;"11209763, 23851937";"Inferenze Scarl";No;No;0,263;Q3;41;85;281;1145;147;172;0,48;13,47;57,41;0;Italy;Western Europe;"Inferenze Scarl";"1987-2026";"Epidemiology (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +18641;21100211740;"Floresta e Ambiente";journal;"21798087, 14150980";"Universidade Federal Rural do Rio de Janeiro (UFRRJ)";Yes;Yes;0,263;Q3;25;15;84;574;74;84;0,93;38,27;37,10;0;Brazil;Latin America;"Universidade Federal Rural do Rio de Janeiro (UFRRJ)";"2012-2025";"Forestry (Q3)";"Agricultural and Biological Sciences" +18642;39363;"Folia Medica";journal;"02048043, 13142143";"Medical University of Plovdiv";Yes;Yes;0,263;Q3;31;120;405;2991;372;405;0,90;24,93;50,58;0;Bulgaria;Eastern Europe;"Medical University of Plovdiv";"1961, 1964-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +18643;21101147581;"Food and Feed Research";journal;"22175660, 22175369";"University of Novi Sad Institute of Food Technology in Novi Sad";Yes;Yes;0,263;Q3;10;22;44;1075;61;44;0,97;48,86;62,89;0;Serbia;Eastern Europe;"University of Novi Sad Institute of Food Technology in Novi Sad";"2019-2026";"Biotechnology (Q3); Food Science (Q3); Nutrition and Dietetics (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Nursing" +18644;21100197704;"HAYAT";journal;"2008188X, 17352215";"Tehran University of Medical Sciences";Yes;Yes;0,263;Q3;22;32;95;926;77;93;0,80;28,94;64,81;0;Iran;Middle East;"Tehran University of Medical Sciences";"2011-2025";"Maternity and Midwifery (Q3); Nursing (miscellaneous) (Q3)";"Nursing" +18645;11300153726;"Intelligent Data Analysis";journal;"1088467X, 15714128";"SAGE Publications Ltd";No;No;0,263;Q3;58;90;270;3913;334;252;1,23;43,48;30,43;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1997-2026";"Artificial Intelligence (Q3); Computer Vision and Pattern Recognition (Q3); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +18646;4200151514;"International Journal of Business Performance Management";journal;"13684892, 17415039";"Inderscience Enterprises Ltd";No;No;0,263;Q3;27;42;92;2485;125;92;1,02;59,17;29,55;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"1998-2026";"Business and International Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +18647;24128;"Iranian Journal of Chemistry and Chemical Engineering";journal;"10219986";"Iranian Institute of Research and Development in Chemical Industries";Yes;No;0,263;Q3;37;229;930;11075;1316;930;1,46;48,36;33,48;0;Iran;Middle East;"Iranian Institute of Research and Development in Chemical Industries";"1996-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +18648;21100781406;"Izvestiya Wysshikh Uchebnykh Zawedeniy, Yadernaya Energetika";journal;"02043327";"Obninsk Institute for Nuclear Power Engineering, National Research Nuclear University 'MEPhI'";No;No;0,263;Q3;9;61;172;957;43;172;0,27;15,69;20,00;0;Russian Federation;Eastern Europe;"Obninsk Institute for Nuclear Power Engineering, National Research Nuclear University 'MEPhI'";"2015-2025";"Nuclear Energy and Engineering (Q3)";"Energy" +18649;13581;"Journal of Database Management";journal;"15338010, 10638016";"IGI Global";No;No;0,263;Q3;39;11;53;707;77;53;1,60;64,27;16,67;0;United States;Northern America;"IGI Global";"1990, 1995, 1998-1999, 2003-2026";"Hardware and Architecture (Q3); Information Systems (Q3); Software (Q3)";"Computer Science" +18650;4700152505;"Journal of Education Finance";journal;"19446470, 00989495";"University of Illinois Press";No;No;0,263;Q3;21;13;54;865;23;47;0,36;66,54;36,00;0;United States;Northern America;"University of Illinois Press";"2005-2025";"Education (Q3); Finance (Q3); Public Administration (Q3)";"Economics, Econometrics and Finance; Social Sciences" +18651;21100975550;"Jurnal Tribologi";journal;"22897232";"Malaysian Tribology Society (Mytribos)";Yes;Yes;0,263;Q3;16;64;148;2466;227;139;1,72;38,53;27,33;0;Malaysia;Asiatic Region;"Malaysian Tribology Society (Mytribos)";"2019-2025";"Materials Chemistry (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Surfaces, Coatings and Films (Q3); Surfaces and Interfaces (Q4)";"Engineering; Materials Science; Physics and Astronomy" +18652;22642;"Malacologia";book series;"00762997";"Institute of Malacology";No;No;0,263;Q3;42;5;27;347;29;27;0,80;69,40;23,53;0;United States;Northern America;"Institute of Malacology";"1971-1973, 1975-1977, 1979, 1996, 1998-2004, 2006-2022, 2024-2025";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +18653;19700201621;"Open Ophthalmology Journal";journal;"18743641";"Bentham Science Publishers";Yes;No;0,263;Q3;32;27;89;788;61;88;0,63;29,19;39,47;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2011-2026";"Ophthalmology (Q3)";"Medicine" +18654;13567;"Revista de Biologia Tropical";journal;"00347744, 22152075";"Universidad de Costa Rica";Yes;Yes;0,263;Q3;52;2;229;133;226;228;1,00;66,50;42,86;0;Costa Rica;Latin America;"Universidad de Costa Rica";"1969-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +18655;21100856604;"Revista Electronica Educare";journal;"14094258";"Universidad Nacional";Yes;Yes;0,263;Q3;18;52;222;1845;209;222;0,60;35,48;63,24;0;Costa Rica;Latin America;"Universidad Nacional";"2017-2025";"Education (Q3)";"Social Sciences" +18656;19700201528;"Revista Mexicana De Ciencias Pecuarias";journal;"20071124, 24486698";"INIFAP-CENID Parasitologia Veterinaria";Yes;No;0,263;Q3;20;76;185;2713;191;185;0,87;35,70;31,58;1;Mexico;Latin America;"INIFAP-CENID Parasitologia Veterinaria";"2010-2025";"Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +18657;4700152252;"Sexologies";journal;"18781829, 11581360";"Elsevier Masson s.r.l.";No;No;0,263;Q3;25;0;59;0;58;58;0,00;0,00;0,00;0;France;Western Europe;"Elsevier Masson s.r.l.";"2006-2022";"Obstetrics and Gynecology (Q3); Psychology (miscellaneous) (Q3)";"Medicine; Psychology" +18658;20244;"Ulster Medical Journal";journal;"20464207, 00416193";"Ulster Medical Society";Yes;No;0,263;Q3;37;33;126;538;105;81;0,87;16,30;28,89;0;United Kingdom;Western Europe;"Ulster Medical Society";"1946-1947, 1950-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +18659;21100855747;"Vestnik Tomskogo Gosudarstvennogo Universiteta, Matematika i Mekhanika";journal;"23112255, 19988621";"Tomsk State University";Yes;No;0,263;Q3;11;42;169;826;66;169;0,45;19,67;26,32;0;Russian Federation;Eastern Europe;"Tomsk State University";"2017-2025";"Computational Mechanics (Q3); Mathematics (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Mathematics" +18660;21100904572;"Spinal Cord Series and Cases";journal;"20586124";"Springer Nature";Yes;No;0,263;Q4;24;30;222;932;206;219;0,70;31,07;48,59;0;United Kingdom;Western Europe;"Springer Nature";"2017-2026";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +18661;21100269632;"IEEE Pacific Visualization Symposium";conference and proceedings;"21658765, 21658773";"IEEE Computer Society";No;No;0,263;-;32;46;99;2110;143;93;1,40;45,87;31,28;0;United States;Northern America;"IEEE Computer Society";"2013-2025";"Computer Graphics and Computer-Aided Design; Computer Vision and Pattern Recognition; Hardware and Architecture; Software";"Computer Science" +18662;13586;"American Quarterly";journal;"00030678, 10806490";"Johns Hopkins University Press";Yes;No;0,262;Q1;55;43;162;1687;90;149;0,57;39,23;62,50;0;United States;Northern America;"Johns Hopkins University Press";"1970-1973, 1976-1977, 1979-1982, 1986, 1988-1989, 2000-2025";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +18663;21100933831;"Journal of Islamic Thought and Civilization";journal;"20750943, 25200313";"University of Management and Technology";Yes;Yes;0,262;Q1;8;30;131;1312;157;131;1,30;43,73;23,33;0;Pakistan;Asiatic Region;"University of Management and Technology";"2018-2025";"Cultural Studies (Q1); History (Q1); Religious Studies (Q1); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18664;21100456188;"Journal of the Middle East and Africa";journal;"21520844, 21520852";"Taylor and Francis Ltd.";No;No;0,262;Q1;14;22;59;0;43;58;0,43;0,00;12,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18665;21100914978;"Journal of the Siam Society";journal;"0304226X, 26511851";"Siam Society under Royal Patronage";No;No;0,262;Q1;5;22;69;773;25;63;0,31;35,14;10,53;0;Thailand;Asiatic Region;"Siam Society under Royal Patronage";"2018-2025";"Cultural Studies (Q1); Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +18666;11600153457;"Spanish in Context";journal;"15710718, 15710726";"John Benjamins Publishing Company";No;No;0,262;Q1;25;24;69;1160;39;67;0,55;48,33;63,83;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2004-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +18667;21100815385;"Archeologia e Calcolatori";journal;"23851953, 11206861";"Consiglio Nazionale delle Ricerche";Yes;Yes;0,262;Q2;10;50;177;1405;115;171;0,67;28,10;47,75;0;Italy;Western Europe;"Consiglio Nazionale delle Ricerche";"2016-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2); Computer Science Applications (Q3)";"Arts and Humanities; Computer Science; Social Sciences" +18668;21101182734;"Fujita Medical Journal";journal;"21897247, 21897255";"Fujita Medical Society";Yes;No;0,262;Q2;4;33;68;839;56;67;0,82;25,42;29,76;0;Japan;Asiatic Region;"Fujita Medical Society";"2023-2026";"Health Professions (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine" +18669;21100400185;"Girlhood Studies";journal;"19388209, 19388322";"Berghahn Journals";No;No;0,262;Q2;16;29;90;936;57;76;0,42;32,28;77,27;0;United Kingdom;Western Europe;"Berghahn Journals";"2014-2025";"Gender Studies (Q2); Education (Q3); Sociology and Political Science (Q3); Developmental and Educational Psychology (Q4); Life-span and Life-course Studies (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +18670;14298;"Harvard Environmental Law Review";journal;"01478257";"Harvard University Law School";No;No;0,262;Q2;35;10;29;4090;32;27;1,35;409,00;27,27;0;United States;Northern America;"Harvard University Law School";"1979-1983, 1987, 1989, 1996-2025";"Law (Q2); Environmental Science (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +18671;21101060110;"Journal of Historical Syntax";journal;"21636001";"Universitat Konstanz";Yes;Yes;0,262;Q2;6;20;51;1281;20;49;0,39;64,05;39,47;0;Germany;Western Europe;"Universitat Konstanz";"2019-2026";"Linguistics and Language (Q2)";"Social Sciences" +18672;21100922612;"Uniform Law Review";journal;"11243694, 20509065";"Oxford University Press";No;No;0,262;Q2;17;29;93;2671;59;93;0,81;92,10;35,71;0;United States;Northern America;"Oxford University Press";"1996-2004, 2006-2025";"Law (Q2)";"Social Sciences" +18673;20400;"Acta Chirurgica Belgica";journal;"25770160, 00015458";"Taylor and Francis Ltd.";No;No;0,262;Q3;44;49;261;1014;254;260;0,88;20,69;31,16;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1946-2026";"Medicine (miscellaneous) (Q3); Surgery (Q3)";"Medicine" +18674;21101256259;"Advances in Aeronautical Science and Engineering";journal;"16748190";"";Yes;No;0,262;Q3;9;126;370;3353;272;370;0,70;26,61;32,68;0;China;Asiatic Region;"";"2020-2025";"Aerospace Engineering (Q3)";"Engineering" +18675;21101021791;"AIMS Electronics and Electrical Engineering";journal;"25781588";"American Institute of Mathematical Sciences";Yes;Yes;0,262;Q3;15;25;69;935;128;69;1,73;37,40;24,32;0;United States;Northern America;"American Institute of Mathematical Sciences";"2017-2026";"Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +18676;20076;"Annals of Carnegie Museum";journal;"00974463";"Carnegie Museum of Natural History";No;No;0,262;Q3;31;16;29;1350;18;27;0,55;84,38;24,49;0;United States;Northern America;"Carnegie Museum of Natural History";"1990-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Geology (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +18677;5000157201;"Bosque";journal;"03048799, 07179200";"Universidad Austral de Chile";Yes;Yes;0,262;Q3;25;9;124;376;86;123;0,77;41,78;35,14;0;Chile;Latin America;"Universidad Austral de Chile";"2006-2025";"Forestry (Q3)";"Agricultural and Biological Sciences" +18678;5800169373;"Comparative Strategy";journal;"01495933, 15210448";"Routledge";No;No;0,262;Q3;23;48;102;3104;87;102;0,75;64,67;23,88;2;United Kingdom;Western Europe;"Routledge";"1978-2026";"Political Science and International Relations (Q3)";"Social Sciences" +18679;28985;"Guti Huojian Jishu/Journal of Solid Rocket Technology";journal;"10062793";"Journal of Solid Rocket Technology";No;No;0,262;Q3;19;107;338;3201;317;335;0,89;29,92;33,60;0;China;Asiatic Region;"Journal of Solid Rocket Technology";"1996, 2001-2025";"Aerospace Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +18680;21101023123;"International Journal of Reliable and Quality E-Healthcare";journal;"21609551, 2160956X";"IGI Global Publishing";No;No;0,262;Q3;10;5;40;252;86;40;1,89;50,40;18,75;0;United States;Northern America;"IGI Global Publishing";"2019-2026";"Computer Science Applications (Q3); Medical Laboratory Technology (Q3); Health Informatics (Q4); Health Information Management (Q4); Leadership and Management (Q4)";"Computer Science; Health Professions; Medicine; Nursing" +18681;21100395158;"Italian Sociological Review";journal;"22398589";"QuiEdit";Yes;Yes;0,262;Q3;12;47;136;2202;119;136;0,79;46,85;53,75;0;Italy;Western Europe;"QuiEdit";"2011-2026";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +18682;21100933991;"Italus Hortus";journal;"11273496";"Societa di Ortoflorofrutticoltura Italiana";Yes;Yes;0,262;Q3;9;15;61;705;60;58;0,90;47,00;42,55;0;Italy;Western Europe;"Societa di Ortoflorofrutticoltura Italiana";"2018-2025";"Food Science (Q3); Horticulture (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +18683;21100205738;"Journal of Humanistic Counseling";journal;"21611939, 21590311";"John Wiley and Sons Ltd";No;No;0,262;Q3;23;41;52;2243;58;50;1,09;54,71;57,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2026";"Education (Q3); Developmental and Educational Psychology (Q4)";"Psychology; Social Sciences" +18684;21100454434;"Journal of International Communication";journal;"21627177, 13216597";"Taylor and Francis Ltd.";No;No;0,262;Q3;15;0;52;0;63;51;1,22;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997, 2015-2024";"Communication (Q3)";"Social Sciences" +18685;21101019707;"Journal of Military, Veteran and Family Health";journal;"23687924";"University of Toronto Press";No;No;0,262;Q3;17;78;220;2957;177;169;0,70;37,91;73,73;0;Canada;Northern America;"University of Toronto Press";"2018-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +18686;17700156766;"Journal of Revenue and Pricing Management";journal;"14766930, 1477657X";"Palgrave Macmillan Ltd.";No;No;0,262;Q3;34;67;159;2838;261;141;1,38;42,36;23,13;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2004-2005, 2009-2026";"Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +18687;28255;"Journal of trauma nursing : the official journal of the Society of Trauma Nurses";journal;"19323883, 10787496";"Lippincott Williams and Wilkins Ltd.";No;No;0,262;Q3;33;55;196;1092;140;166;0,64;19,85;58,27;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1995-2026";"Advanced and Specialized Nursing (Q3); Critical Care Nursing (Q3); Emergency Nursing (Q3)";"Nursing" +18688;21100863633;"Mathematical Modelling of Engineering Problems";journal;"23690739, 23690747";"International Information and Engineering Technology Association";No;No;0,262;Q3;24;377;840;12138;1307;840;1,56;32,20;31,51;0;Canada;Northern America;"International Information and Engineering Technology Association";"2018-2025";"Applied Mathematics (Q3); Engineering (miscellaneous) (Q3); Modeling and Simulation (Q3)";"Engineering; Mathematics" +18689;9500154150;"Progress in Agricultural Engineering Sciences";journal;"1786335X, 17870321";"Akademiai Kiado ZRt.";No;No;0,262;Q3;13;27;43;1181;70;43;1,49;43,74;42,50;0;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"2007-2009, 2011-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Environmental Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)";"Agricultural and Biological Sciences; Engineering; Environmental Science" +18690;21101078229;"Revista de Estudios Latinoamericanos sobre Reduccion del Riesgo de Desastres";journal;"07198477";"Corporation for the Management and Reduction of Disaster Risk in Chile (GRID-Chile)";Yes;Yes;0,262;Q3;8;32;89;1478;68;86;0,76;46,19;38,03;0;Chile;Latin America;"Corporation for the Management and Reduction of Disaster Risk in Chile (GRID-Chile)";"2017-2026";"Development (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Ecology (Q3); Social Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +18691;17411;"Stahlbau";trade journal;"14371049, 00389145";"Wiley-Blackwell";No;No;0,262;Q3;24;89;237;1615;103;191;0,49;18,15;18,47;1;United States;Northern America;"Wiley-Blackwell";"1968-1990, 1995-2026";"Building and Construction (Q3); Civil and Structural Engineering (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)";"Engineering; Materials Science" +18692;21960;"Supramolecular Chemistry";journal;"10290478, 10610278";"Taylor and Francis Ltd.";No;No;0,262;Q3;50;36;58;1359;51;54;0,80;37,75;32,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +18693;19700183107;"Case Reports in Neurology";journal;"1662680X";"S. Karger AG";Yes;No;0,262;Q4;22;33;148;451;112;148;0,52;13,67;37,93;0;Switzerland;Western Europe;"S. Karger AG";"2010-2026";"Neurology (clinical) (Q4)";"Medicine" +18694;6300153104;"Thermal Science";journal;"03549836";"Serbian Society of Heat Transfer Engineers";Yes;No;0,262;Q4;64;381;1471;9238;1757;1469;1,09;24,25;30,04;0;Serbia;Eastern Europe;"Serbian Society of Heat Transfer Engineers";"2007-2026";"Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +18695;20600195636;"European Solid-State Device Research Conference";conference and proceedings;"23786558, 19308876";"Editions Frontieres";No;No;0,262;-;32;0;90;0;79;86;0,93;0,00;0,00;0;France;Western Europe;"Editions Frontieres";"1987-2003, 2011-2019, 2021-2023";"Electrical and Electronic Engineering; Safety, Risk, Reliability and Quality";"Engineering" +18696;21101132207;"Proceedings of the International Conference on New Interfaces for Musical Expression";conference and proceedings;"22204792, 22204806";"";No;No;0,262;-;45;97;248;3049;346;245;1,26;31,43;20,93;0;Norway;Western Europe;"";"2001-2025";"Computer Science Applications; Control and Systems Engineering; Hardware and Architecture; Human-Computer Interaction; Instrumentation; Music; Signal Processing";"Arts and Humanities; Computer Science; Engineering; Physics and Astronomy" +18697;21100776457;"Dialog so Vremenem";journal;"20737564";"Aquilo";No;No;0,261;Q1;5;123;367;3777;23;367;0,08;30,71;47,22;0;Russian Federation;Eastern Europe;"Aquilo";"2016-2025";"History (Q1); Philosophy (Q2)";"Arts and Humanities" +18698;20400195022;"Journal of Empirical Theology";journal;"15709256, 09222936";"Brill Academic Publishers";No;No;0,261;Q1;15;24;46;1071;24;44;0,49;44,63;43,75;0;Netherlands;Western Europe;"Brill Academic Publishers";"1988-1994, 2010-2025";"Religious Studies (Q1); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +18699;21100820624;"Oxford Journal of Law and Religion";journal;"20470770, 20470789";"Oxford University Press";No;No;0,261;Q1;19;8;58;984;64;54;1,04;123,00;54,55;0;United Kingdom;Western Europe;"Oxford University Press";"2012-2025";"Religious Studies (Q1); Law (Q2)";"Arts and Humanities; Social Sciences" +18700;21502;"Bulletin of the European Association of Fish Pathologists";journal;"01080288, 30054648";"";No;No;0,261;Q2;45;20;35;669;38;33;1,11;33,45;45,57;0;Germany;Western Europe;"";"1996-2025";"Small Animals (Q2); Aquatic Science (Q3)";"Agricultural and Biological Sciences; Veterinary" +18701;21100828131;"Dialogue and Discourse";journal;"21529620";"";Yes;Yes;0,261;Q2;12;12;20;843;22;20;0,69;70,25;37,50;0;Germany;Western Europe;"";"2017-2026";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +18702;21100368214;"Indonesian Journal of Applied Linguistics";journal;"25026747, 23019468";"Universitas Pendidikan Indonesia";Yes;No;0,261;Q2;24;51;176;2964;209;176;1,07;58,12;47,41;0;Indonesia;Asiatic Region;"Universitas Pendidikan Indonesia";"2011-2025";"Linguistics and Language (Q2)";"Social Sciences" +18703;5700160560;"Islamic Law and Society";journal;"15685195, 09289380";"Brill Academic Publishers";No;No;0,261;Q2;39;17;28;2241;20;28;0,22;131,82;13,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"1994-2026";"Law (Q2); Sociology and Political Science (Q3)";"Social Sciences" +18704;21101131059;"Journal of Archaeological Studies";journal;"22519297, 26764288";"University of Tehran";No;No;0,261;Q2;4;27;89;1496;23;89;0,20;55,41;18,03;0;Iran;Middle East;"University of Tehran";"2019-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +18705;21101037903;"Journal of Architecture and Civil Engineering";journal;"16732049";"Editorial Department of Journal of Architecture and Civil Engineering";No;No;0,261;Q2;11;115;332;3087;287;332;0,74;26,84;27,92;0;China;Asiatic Region;"Editorial Department of Journal of Architecture and Civil Engineering";"2019-2026";"Architecture (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3); Materials Science (miscellaneous) (Q3)";"Earth and Planetary Sciences; Engineering; Materials Science" +18706;21100889410;"Journal of Regional and City Planning";journal;"25026429";"ITB Journal Publisher";Yes;No;0,261;Q2;12;10;54;603;71;54;1,45;60,30;50,00;0;Indonesia;Asiatic Region;"ITB Journal Publisher";"2017-2025";"Urban Studies (Q2); Development (Q3); Geography, Planning and Development (Q3)";"Social Sciences" +18707;17468;"Neurocase";journal;"13554794, 14653656";"Routledge";No;No;0,261;Q2;74;44;144;1195;114;139;0,45;27,16;40,44;0;United Kingdom;Western Europe;"Routledge";"1995-2026";"Arts and Humanities (miscellaneous) (Q2); Neurology (clinical) (Q4)";"Arts and Humanities; Medicine" +18708;21100445638;"Perioperative Care and Operating Room Management";journal;"24056030";"Elsevier Inc.";No;No;0,261;Q2;14;140;210;4010;216;197;1,12;28,64;45,37;1;United States;Northern America;"Elsevier Inc.";"2015-2026";"Medical and Surgical Nursing (Q2); Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3); Surgery (Q3)";"Medicine; Nursing" +18709;19094;"Acta Virologica";journal;"13362305, 0001723X";"Frontiers Media SA";Yes;No;0,261;Q3;40;9;96;504;99;92;1,22;56,00;57,45;0;Slovakia;Eastern Europe;"Frontiers Media SA";"1957-2025";"Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Virology (Q4)";"Immunology and Microbiology; Medicine" +18710;21101243364;"AppliedMath";journal;"26739909";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,261;Q3;10;182;182;7569;262;181;1,68;41,59;22,49;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2026";"Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics" +18711;5000157003;"Biochemist";journal;"0954982X, 17401194";"Portland Press Ltd";No;No;0,261;Q3;17;57;171;270;97;158;0,37;4,74;51,16;0;United Kingdom;Western Europe;"Portland Press Ltd";"2006-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology" +18712;21101028569;"Case Reports in Dermatological Medicine";journal;"20906463, 20906471";"John Wiley and Sons Ltd";Yes;No;0,261;Q3;11;34;68;609;72;68;1,10;17,91;52,07;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2019-2026";"Dermatology (Q3)";"Medicine" +18713;4700151716;"Ceramica";journal;"16784553, 03666913";"Associacao Brasileira de Ceramica";Yes;Yes;0,261;Q3;31;22;121;948;189;121;0,93;43,09;40,00;0;Brazil;Latin America;"Associacao Brasileira de Ceramica";"2006-2025";"Ceramics and Composites (Q3)";"Materials Science" +18714;27598;"Clinical Nurse Specialist";journal;"08876274, 15389782";"Lippincott Williams and Wilkins Ltd.";No;No;0,261;Q3;40;69;202;896;116;173;0,58;12,99;82,64;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1987-2026";"Advanced and Specialized Nursing (Q3); Assessment and Diagnosis (Q3); LPN and LVN (Q3); Leadership and Management (Q4)";"Nursing" +18715;21100875102;"Diagnostyka";journal;"24495220, 16416414";"Polish Society of Technical Diagnostics";Yes;No;0,261;Q3;19;60;166;1758;250;166;1,50;29,30;24,00;0;Poland;Eastern Europe;"Polish Society of Technical Diagnostics";"2013-2025";"Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3); Safety, Risk, Reliability and Quality (Q3); Signal Processing (Q3); Software (Q3); Biomedical Engineering (Q4)";"Computer Science; Engineering" +18716;21100201909;"Ecological Chemistry and Engineering S";journal;"18986196";"De Gruyter Open Ltd";Yes;No;0,261;Q3;35;2;96;71;125;96;1,40;35,50;71,43;0;Germany;Western Europe;"De Gruyter Open Ltd";"2008-2025";"Environmental Engineering (Q3); Environmental Chemistry (Q4)";"Environmental Science" +18717;19700182748;"Egyptian Journal of Radiology and Nuclear Medicine";journal;"0378603X, 20904762";"";Yes;Yes;0,261;Q3;25;240;722;5994;633;722;0,91;24,98;44,66;0;Germany;Western Europe;"";"2010-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +18718;19900193212;"Elektronika ir Elektrotechnika";journal;"20295731, 13921215";"Kauno Technologijos Universitetas";Yes;No;0,261;Q3;33;27;157;1024;225;156;1,49;37,93;17,95;0;Lithuania;Eastern Europe;"Kauno Technologijos Universitetas";"2008-2025";"Electrical and Electronic Engineering (Q3)";"Engineering" +18719;21100400219;"European Journal for Research on the Education and Learning of Adults";journal;"20007426";"Linkoping University Electronic Press";Yes;Yes;0,261;Q3;16;19;68;1085;64;61;0,98;57,11;53,13;0;Sweden;Western Europe;"Linkoping University Electronic Press";"2010, 2015-2025";"Education (Q3)";"Social Sciences" +18720;21100453530;"GE Portuguese Journal of Gastroenterology";journal;"23871954, 23414545";"S. Karger AG";Yes;Yes;0,261;Q3;22;53;276;1177;212;256;0,74;22,21;51,89;0;Switzerland;Western Europe;"S. Karger AG";"2014-2026";"Gastroenterology (Q3)";"Medicine" +18721;21101088330;"Genetic Resources";journal;"27083764";"Bioversity International";Yes;Yes;0,261;Q3;8;25;61;1357;67;61;1,09;54,28;41,72;0;Italy;Western Europe;"Bioversity International";"2020-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +18722;14746;"IDS Bulletin";journal;"02655012, 17595436";"Institute of Development Studies";Yes;No;0,261;Q3;62;37;89;1663;73;84;0,47;44,95;48,94;0;United Kingdom;Western Europe;"Institute of Development Studies";"1976-2025";"Development (Q3); Geography, Planning and Development (Q3)";"Social Sciences" +18723;21101070992;"International Journal of Analysis and Applications";journal;"22918639";"Semnan University, Center of Excellence in Nonlinear Analysis and Applications";Yes;No;0,261;Q3;18;338;446;10216;582;446;1,38;30,22;31,40;0;Canada;Northern America;"Semnan University, Center of Excellence in Nonlinear Analysis and Applications";"2019-2026";"Applied Mathematics (Q3); Business and International Management (Q3); Analysis (Q4); Geometry and Topology (Q4)";"Business, Management and Accounting; Mathematics" +18724;4000151909;"International Journal of Emerging Electric Power Systems";journal;"1553779X, 21945756";"Walter de Gruyter GmbH";No;No;0,261;Q3;32;100;199;3344;415;199;2,07;33,44;26,42;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2004-2026";"Energy Engineering and Power Technology (Q3)";"Energy" +18725;19700202707;"Italian Journal of Engineering Geology and Environment";journal;"18256635, 20355688";"Sapienza Universita Editrice";Yes;No;0,261;Q3;18;9;86;171;65;83;0,82;19,00;34,62;0;Italy;Western Europe;"Sapienza Universita Editrice";"2011-2025";"Environmental Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences; Environmental Science" +18726;6600153110;"Journal of Applied and Industrial Mathematics";journal;"19904789, 19904797";"Pleiades Publishing";No;No;0,261;Q3;23;15;237;382;93;237;0,38;25,47;24,00;0;United States;Northern America;"Pleiades Publishing";"2007-2025";"Applied Mathematics (Q3); Industrial and Manufacturing Engineering (Q3)";"Engineering; Mathematics" +18727;21100285745;"Journal of Clinical Imaging Science";journal;"21567514, 21565597";"Scientific Scholar";Yes;No;0,261;Q3;30;42;147;865;179;145;1,11;20,60;27,54;0;India;Asiatic Region;"Scientific Scholar";"2003, 2011, 2013-2025";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +18728;21101168850;"Journal of Minimally Invasive Spine Surgery and Technique";journal;"25082043";"Korean Minimally Invasive Spine Surgery Society";Yes;Yes;0,261;Q3;7;85;140;1862;98;132;0,73;21,91;18,69;0;South Korea;Asiatic Region;"Korean Minimally Invasive Spine Surgery Society";"2019-2026";"Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3); Neurology (clinical) (Q4)";"Medicine" +18729;21101227032;"Journal of Sustainable Marketing";journal;"27660117";"Luminous Insights LLC";Yes;Yes;0,261;Q3;9;20;45;1302;83;27;2,00;65,10;60,98;0;United States;Northern America;"Luminous Insights LLC";"2020-2025";"Marketing (Q3)";"Business, Management and Accounting" +18730;21101039444;"Nanotechnologies in Construction";journal;"20758545";"Center for New Technologies Nanostroitel";Yes;No;0,261;Q3;12;55;147;1544;139;143;0,86;28,07;43,45;0;Russian Federation;Eastern Europe;"Center for New Technologies Nanostroitel";"2019-2025";"Building and Construction (Q3); Engineering (miscellaneous) (Q3)";"Engineering" +18731;21101021407;"Operations Research and Decisions";journal;"23916060, 20818858";"Wroclaw University of Science and Technology";Yes;Yes;0,261;Q3;9;24;116;932;180;116;1,75;38,83;31,25;0;Poland;Eastern Europe;"Wroclaw University of Science and Technology";"2019-2025";"Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3); Modeling and Simulation (Q3); Statistics, Probability and Uncertainty (Q3); Statistics and Probability (Q4)";"Business, Management and Accounting; Decision Sciences; Mathematics" +18732;29511;"Radiation Effects and Defects in Solids";journal;"10294953, 10420150";"Taylor and Francis Ltd.";No;No;0,261;Q3;38;211;339;7223;514;334;1,70;34,23;29,69;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Nuclear and High Energy Physics (Q3); Radiation (Q3)";"Materials Science; Physics and Astronomy" +18733;19700174679;"Range Management and Agroforestry";journal;"09712070";"Range Management Society of India";No;No;0,261;Q3;18;49;150;1556;114;148;0,74;31,76;23,78;0;India;Asiatic Region;"Range Management Society of India";"2009-2025";"Agronomy and Crop Science (Q3); Food Science (Q3); Forestry (Q3)";"Agricultural and Biological Sciences" +18734;28002;"Revista de Nutricao";journal;"14155273";"Pontificia Universidade Catolica de Campinas";Yes;No;0,261;Q3;44;32;169;1486;117;169;0,57;46,44;82,35;0;Brazil;Latin America;"Pontificia Universidade Catolica de Campinas";"2000-2025";"Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +18735;21950;"Revista Espanola de Anestesiologia y Reanimacion";journal;"23403284, 00349356";"Sociedad Espanola de Anestesiologia, Reanimacion Y Terapeutica Del Dolor";No;No;0,261;Q3;30;124;346;2310;237;292;0,71;18,63;47,73;3;Spain;Western Europe;"Sociedad Espanola de Anestesiologia, Reanimacion Y Terapeutica Del Dolor";"1963-1965, 1967-2026";"Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)";"Medicine" +18736;21101153198;"Revue de l'Entrepreneuriat";journal;"17662524, 16307542";"Cairn France";No;No;0,261;Q3;4;0;50;0;44;41;0,84;0,00;0,00;0;France;Western Europe;"Cairn France";"2022-2024";"Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting" +18737;21100788882;"Transplantation Reports";journal;"24519596";"Elsevier Inc.";Yes;No;0,261;Q3;6;19;67;1018;59;66;0,87;53,58;44,57;0;United States;Northern America;"Elsevier Inc.";"2016-2026";"Surgery (Q3); Transplantation (Q3)";"Medicine" +18738;19400157312;"Vegetos";journal;"22294473, 09704078";"Springer";No;No;0,261;Q3;27;696;562;32250;877;562;1,60;46,34;37,88;2;Singapore;Asiatic Region;"Springer";"2008-2026";"Plant Science (Q3)";"Agricultural and Biological Sciences" +18739;22758;"Wildfowl";journal;"20526458, 09546324";"Wildfowl and Wetlands Trust";Yes;Yes;0,261;Q3;27;12;51;652;24;48;0,48;54,33;32,35;0;United Kingdom;Western Europe;"Wildfowl and Wetlands Trust";"1981-1982, 1987, 1990-2003, 2005-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Nature and Landscape Conservation (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18740;21100409314;"World Journal of Acupuncture - Moxibustion";journal;"10035257, 27730751";"KeAi Communications Co.";Yes;No;0,261;Q3;12;48;158;2249;156;142;1,03;46,85;40,60;0;Netherlands;Western Europe;"KeAi Communications Co.";"2012-2026";"Complementary and Alternative Medicine (Q3)";"Medicine" +18741;4500151403;"Wounds UK";journal;"17466814";"OmniaMed Communications Ltd";No;No;0,261;Q3;24;81;202;1208;76;129;0,36;14,91;78,67;0;United Kingdom;Western Europe;"OmniaMed Communications Ltd";"2006-2025";"Dermatology (Q3)";"Medicine" +18742;24101;"Xiyou Jinshu Cailiao Yu Gongcheng/Rare Metal Materials and Engineering";journal;"1002185X";"Science Press";No;No;0,261;Q3;41;334;1323;12868;1557;1323;1,27;38,53;31,28;0;China;Asiatic Region;"Science Press";"1993-1994, 1996-2026";"Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Materials Chemistry (Q3); Metals and Alloys (Q3)";"Engineering; Materials Science" +18743;21100854141;"Case Reports in Immunology";journal;"20906617, 20906609";"John Wiley and Sons Ltd";Yes;No;0,261;Q4;8;10;27;182;35;27;1,00;18,20;43,48;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2016-2017, 2019-2026";"Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +18744;29732;"Experimental Oncology";journal;"18129269";"Morion LLC";Yes;No;0,261;Q4;52;33;172;1070;157;167;1,00;32,42;50,51;0;Ukraine;Eastern Europe;"Morion LLC";"1984-2025";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +18745;21101056923;"OBM Neurobiology";journal;"25734407";"LIDSEN Publishing Inc";No;No;0,261;Q4;9;54;143;3951;172;141;1,22;73,17;38,19;0;United States;Northern America;"LIDSEN Publishing Inc";"2019-2026";"Cellular and Molecular Neuroscience (Q4); Developmental Neuroscience (Q4); Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +18746;21101277889;"Al-Ahkam: Jurnal Ilmu Syari'ah dan Hukum";journal;"25278169, 25278150";"Sharia Faculty, Universitas Islam Negeri Raden Mas Said Surakarta";Yes;Yes;0,260;Q1;4;10;36;561;28;36;0,78;56,10;26,67;0;Indonesia;Asiatic Region;"Sharia Faculty, Universitas Islam Negeri Raden Mas Said Surakarta";"2020-2026";"Religious Studies (Q1); Law (Q2)";"Arts and Humanities; Social Sciences" +18747;21100842666;"Caucasus Survey";journal;"23761199, 23761202";"Brill Academic Publishers";No;No;0,260;Q1;15;16;42;812;32;42;0,96;50,75;57,14;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2026";"Cultural Studies (Q1); History (Q1); Anthropology (Q2); Demography (Q3); Geography, Planning and Development (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18748;21100901128;"Deleuze and Guattari Studies";journal;"23989777, 23989785";"Edinburgh University Press";No;No;0,260;Q1;23;37;86;953;53;78;0,50;25,76;40,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"2007-2025";"Literature and Literary Theory (Q1); Philosophy (Q2)";"Arts and Humanities" +18749;21100858350;"Fashion, Style and Popular Culture";journal;"20500734, 20500726";"Intellect Ltd.";No;No;0,260;Q1;10;58;100;2489;86;88;0,62;42,91;71,26;0;United Kingdom;Western Europe;"Intellect Ltd.";"2015-2026";"Cultural Studies (Q1); Visual Arts and Performing Arts (Q1); Marketing (Q3); Materials Science (miscellaneous) (Q3); Strategy and Management (Q3); Social Psychology (Q4)";"Arts and Humanities; Business, Management and Accounting; Materials Science; Psychology; Social Sciences" +18750;21100239824;"Journal for the Study of Religion, Nature and Culture";journal;"17494915, 17494907";"Equinox Publishing Ltd";No;No;0,260;Q1;16;25;83;1175;42;74;0,51;47,00;50,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2004, 2010, 2013-2026";"Cultural Studies (Q1); Religious Studies (Q1); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Environmental Science; Social Sciences" +18751;21100887717;"Journal of Contemporary Central and Eastern Europe";journal;"25739638, 25739646";"Taylor and Francis Ltd.";No;No;0,260;Q1;18;47;106;2164;79;95;0,75;46,04;33,82;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Cultural Studies (Q1); History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +18752;21101155950;"Osterreichisches Religionspadagogisches Forum";journal;"27914844, 10181539";"University of Graz";Yes;Yes;0,260;Q1;3;19;76;757;19;69;0,29;39,84;45,45;0;Austria;Western Europe;"University of Graz";"2019-2025";"Religious Studies (Q1)";"Arts and Humanities" +18753;39530;"Anthropological Quarterly";journal;"00035491, 15341518";"Institute for Ethnographic Research";No;No;0,260;Q2;62;19;81;1316;74;74;0,69;69,26;73,91;0;United States;Northern America;"Institute for Ethnographic Research";"1981, 1987-2025";"Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +18754;16000154716;"Archaeofauna";journal;"11326891";"Asociacion Espanola de Arqueozoologia";No;No;0,260;Q2;24;0;32;0;21;32;0,67;0,00;0,00;0;Spain;Western Europe;"Asociacion Espanola de Arqueozoologia";"1996-2007, 2009-2024";"Archeology (Q2); Archeology (arts and humanities) (Q2); Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Social Sciences" +18755;21101301814;"Business Ethics and Leadership";journal;"25206311, 25206761";"Academic Research and Publishing UG";Yes;No;0,260;Q2;14;76;156;3740;345;156;2,50;49,21;47,83;0;Germany;Western Europe;"Academic Research and Publishing UG";"2019-2025";"Gender Studies (Q2); Law (Q2); Business, Management and Accounting (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q3); Issues, Ethics and Legal Aspects (Q3); Organizational Behavior and Human Resource Management (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Business, Management and Accounting; Decision Sciences; Nursing; Social Sciences" +18756;17700155802;"Gazi University Journal of Science";journal;"21471762, 13039709";"Gazi Universitesi";No;No;0,260;Q2;28;120;350;5188;533;350;1,38;43,23;38,56;0;Turkey;Middle East;"Gazi Universitesi";"2009-2025";"Multidisciplinary (Q2); Engineering (miscellaneous) (Q3)";"Engineering; Multidisciplinary" +18757;21101021222;"Journal of Current Science and Technology";journal;"26300656, 26300583";"Rangsit University";No;No;0,260;Q2;9;73;179;2692;275;178;1,62;36,88;55,28;0;Thailand;Asiatic Region;"Rangsit University";"2018-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +18758;5800207565;"Journal of Pidgin and Creole Languages";journal;"15699870, 09209034";"John Benjamins Publishing Company";No;No;0,260;Q2;26;27;48;1665;36;45;0,62;61,67;51,11;1;Netherlands;Western Europe;"John Benjamins Publishing Company";"1986-2026";"Linguistics and Language (Q2)";"Social Sciences" +18759;21101019708;"Nurse Media Journal of Nursing";journal;"20877811, 24068799";"Diponegoro University- Department of Nursing, Faculty of Medicine";Yes;Yes;0,260;Q2;11;33;99;1723;101;99;1,02;52,21;61,61;0;Indonesia;Asiatic Region;"Diponegoro University- Department of Nursing, Faculty of Medicine";"2019-2025";"Medical and Surgical Nursing (Q2); Community and Home Care (Q3); Nursing (miscellaneous) (Q3)";"Nursing" +18760;21100829917;"African Journal of Hospitality, Tourism and Leisure";journal;"2223814X";"Africa Journals";Yes;Yes;0,260;Q3;30;71;361;3772;502;361;1,26;53,13;41,22;0;South Africa;Africa;"Africa Journals";"2017-2025";"Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q3)";"Business, Management and Accounting; Social Sciences" +18761;21100442012;"Analysis (Germany)";journal;"21966753, 01744747";"Walter de Gruyter GmbH";No;No;0,260;Q3;29;22;70;595;50;70;0,65;27,05;11,63;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1981-2026";"Applied Mathematics (Q3); Numerical Analysis (Q3); Analysis (Q4)";"Mathematics" +18762;23692;"Bulletin of the Kanagawa Prefectural Museum, Natural Science";journal;"04531906";"Kanagawa Prefectural Museum of Natural History";No;No;0,260;Q3;7;7;22;272;16;20;0,75;38,86;21,43;0;Japan;Asiatic Region;"Kanagawa Prefectural Museum of Natural History";"1979-1980, 1984-1985, 1987, 1989-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +18763;17727;"Canadian Veterinary Journal";journal;"00085286";"Canadian Veterinary Medical Association";No;No;0,260;Q3;79;176;632;0;391;532;0,52;0,00;55,46;0;Canada;Northern America;"Canadian Veterinary Medical Association";"1965-1982, 1986-2025";"Medicine (miscellaneous) (Q3); Veterinary (miscellaneous) (Q3)";"Medicine; Veterinary" +18764;26583;"Ceramics - Silikaty";journal;"08625468, 18045847";"University of Chemistry and Technology, Faculty of Environmental Technology";Yes;No;0,260;Q3;45;60;180;2494;195;180;0,92;41,57;31,75;0;Czech Republic;Eastern Europe;"University of Chemistry and Technology, Faculty of Environmental Technology";"1991-2026";"Analytical Chemistry (Q3); Ceramics and Composites (Q3); Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Physical and Theoretical Chemistry (Q4)";"Chemical Engineering; Chemistry; Materials Science" +18765;12893;"Combustion, Explosion and Shock Waves";journal;"15738345, 00105082";"Pleiades Publishing";No;No;0,260;Q3;54;94;264;2336;173;264;0,55;24,85;24,10;0;United States;Northern America;"Pleiades Publishing";"1965-2025";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Chemical Engineering; Chemistry; Energy; Physics and Astronomy" +18766;21100902638;"Contemporary Management Research";journal;"18135498";"Academy of Taiwan Information Systems Research";No;No;0,260;Q3;12;8;22;683;40;22;1,69;85,38;52,17;0;Taiwan;Asiatic Region;"Academy of Taiwan Information Systems Research";"2018-2025";"Economics and Econometrics (Q3); Management Information Systems (Q3); Management, Monitoring, Policy and Law (Q3); Management of Technology and Innovation (Q3); Marketing (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science" +18767;21100310035;"Economic Annals-XXI";journal;"17286239, 17286220";"Institute of Society Transformation";No;No;0,260;Q3;23;40;142;551;169;142;1,29;13,78;49,43;0;Ukraine;Eastern Europe;"Institute of Society Transformation";"2013-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +18768;21100825345;"Ekonomicheskaya Politika";journal;"19945124, 24112658";"Editorial Board of the Journal Economic Policy";Yes;No;0,260;Q3;13;41;92;1182;58;92;0,80;28,83;43,24;0;Russian Federation;Eastern Europe;"Editorial Board of the Journal Economic Policy";"2013-2025";"Economics and Econometrics (Q3); Finance (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +18769;21100912212;"EUREKA, Physics and Engineering";journal;"24614254, 24614262";"Scientific Route";Yes;No;0,260;Q3;17;105;300;2911;404;300;1,48;27,72;32,35;0;Estonia;Eastern Europe;"Scientific Route";"2017, 2019-2026";"Engineering (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Engineering; Physics and Astronomy" +18770;6000195396;"Fluid Dynamics and Materials Processing";journal;"1555256X, 15552578";"Tech Science Press";No;No;0,260;Q3;22;144;504;5885;718;504;1,53;40,87;30,97;0;United States;Northern America;"Tech Science Press";"2007-2026";"Materials Science (miscellaneous) (Q3)";"Materials Science" +18771;29708;"Harbin Gongye Daxue Xuebao/Journal of Harbin Institute of Technology";journal;"03676234";"Harbin Institute of Technology";No;No;0,260;Q3;32;205;576;6826;616;576;1,08;33,30;29,90;0;China;Asiatic Region;"Harbin Institute of Technology";"2001-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +18772;144789;"Infrared and Laser Engineering";journal;"10072276";"Science Press";No;No;0,260;Q3;34;336;1263;9832;1254;1263;1,04;29,26;31,00;0;China;Asiatic Region;"Science Press";"2004-2025";"Aerospace Engineering (Q3); Atomic and Molecular Physics, and Optics (Q3); Electrical and Electronic Engineering (Q3); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Engineering; Physics and Astronomy" +18773;12100154510;"International Journal of Enterprise Information Systems";journal;"15481115, 15481123";"IGI Publishing";No;No;0,260;Q3;32;2;6;112;15;6;2,50;56,00;33,33;0;United States;Northern America;"IGI Publishing";"2005-2023, 2025-2026";"Computer Science Applications (Q3); Information Systems and Management (Q3); Management Information Systems (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +18774;21100788860;"International Journal of Mechanical Engineering and Robotics Research";journal;"22780149";"International Journal of Mechanical Engineering and Robotics Research";No;No;0,260;Q3;24;64;251;2156;408;251;1,48;33,69;16,76;0;India;Asiatic Region;"International Journal of Mechanical Engineering and Robotics Research";"2016-2026";"Artificial Intelligence (Q3); Control and Systems Engineering (Q3); Mechanical Engineering (Q3)";"Computer Science; Engineering" +18775;21100220379;"International Journal of Technology Enhanced Learning";journal;"17535263, 17535255";"Inderscience";No;No;0,260;Q3;32;26;76;1459;119;76;1,29;56,12;46,88;0;Switzerland;Western Europe;"Inderscience";"2008-2026";"Computer Science Applications (Q3); Education (Q3); E-learning (Q4)";"Computer Science; Social Sciences" +18776;21100285064;"Iranian Journal of Earth Sciences";journal;"2228785X, 20088779";"OICC Press";Yes;No;0,260;Q3;12;32;72;1847;70;72;0,88;57,72;21,28;0;Iran;Middle East;"OICC Press";"2013-2026";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +18777;21100230800;"Journal of Communications";journal;"17962021";"Engineering and Technology Publishing";No;No;0,260;Q3;43;70;262;2591;379;262;1,29;37,01;20,00;0;United States;Northern America;"Engineering and Technology Publishing";"1955-1956, 2006-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +18778;21101075855;"Journal of Indonesian Economy and Business";journal;"23385847, 20858272";"Gadjah Mada University";Yes;Yes;0,260;Q3;12;20;45;1241;85;45;1,80;62,05;63,41;0;Indonesia;Asiatic Region;"Gadjah Mada University";"2019-2026";"Accounting (Q3); Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +18779;21100205308;"Journal of the Indian Society of Soil Science";journal;"0019638X, 09740228";"Indian Society of Soil Science";No;No;0,260;Q3;19;12;156;376;74;149;0,39;31,33;22,03;0;India;Asiatic Region;"Indian Society of Soil Science";"1986-1988, 2011-2025";"Agronomy and Crop Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +18780;21100227020;"Latin American Journal of Sedimentology and Basin Analysis";journal;"18514979, 16697316";"Asociacion Argentina de Sedimentologia";Yes;Yes;0,260;Q3;25;14;29;627;18;26;0,55;44,79;37,04;0;Argentina;Latin America;"Asociacion Argentina de Sedimentologia";"2005-2025";"Geology (Q3); Paleontology (Q3); Stratigraphy (Q3)";"Earth and Planetary Sciences" +18781;21100406340;"Medwave";journal;"07176384";"";Yes;No;0,260;Q3;22;71;171;2173;142;159;0,69;30,61;50,34;0;Chile;Latin America;"";"2014-2026";"Issues, Ethics and Legal Aspects (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine; Nursing" +18782;5300152520;"Papeles del Psicologo";journal;"02147823";"Colegio Oficial de Psicologos Asturias";Yes;Yes;0,260;Q3;30;22;67;1410;73;64;0,95;64,09;52,31;0;Spain;Western Europe;"Colegio Oficial de Psicologos Asturias";"2007-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +18783;21101089124;"Retos (Ecuador)";journal;"13906291, 13908618";"Universidad Politecnica Salesiana";Yes;Yes;0,260;Q3;14;20;60;976;115;60;1,85;48,80;39,66;0;Ecuador;Latin America;"Universidad Politecnica Salesiana";"2019-2025";"Business and International Management (Q3); Economics and Econometrics (Q3); Management of Technology and Innovation (Q3); Marketing (Q3); Public Administration (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +18784;21100469663;"Revista de Psicologia (Peru)";journal;"02549247, 22233733";"Pontificia Universidad Catolica del Peru";Yes;Yes;0,260;Q3;13;41;122;2119;96;120;0,73;51,68;55,83;0;Peru;Latin America;"Pontificia Universidad Catolica del Peru";"2016-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +18785;11700154399;"Siberian Advances in Mathematics";journal;"10551344, 19348126";"Pleiades Publishing";No;No;0,260;Q3;13;31;78;565;35;78;0,35;18,23;32,43;0;United States;Northern America;"Pleiades Publishing";"2008-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +18786;20889;"Voprosy Virusologii";journal;"24112097, 05074088";"Central Research Institute for Epidemiology";Yes;Yes;0,260;Q3;20;49;146;1951;147;146;0,96;39,82;59,33;0;Russian Federation;Eastern Europe;"Central Research Institute for Epidemiology";"1956-2025";"Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Virology (Q4)";"Immunology and Microbiology; Medicine" +18787;5600155041;"Zeitschrift fur Sexualforschung";journal;"09328114, 14389460";"Georg Thieme Verlag";No;No;0,260;Q3;17;25;88;725;64;82;0,64;29,00;85,11;0;Germany;Western Europe;"Georg Thieme Verlag";"2008-2025";"Psychology (miscellaneous) (Q3); Reproductive Medicine (Q3)";"Medicine; Psychology" +18788;22937;"Zhongguo Zhongyao Zazhi";journal;"10015302";"Zhongguo Zhongyi Yanjiuyuan";No;No;0,260;Q3;41;665;2146;28994;2836;2146;1,29;43,60;44,20;0;China;Asiatic Region;"Zhongguo Zhongyi Yanjiuyuan";"1989-2025";"Complementary and Alternative Medicine (Q3); Pharmacology (medical) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +18789;21100825339;"Mitochondrial DNA Part B: Resources";journal;"23802359";"Taylor and Francis Ltd.";Yes;No;0,260;Q4;21;247;1425;7075;927;1422;0,71;28,64;40,77;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Genetics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +18790;19700181408;"Architectural Theory Review";journal;"17550475, 13264826";"Routledge";No;No;0,259;Q1;17;21;76;887;48;66;0,60;42,24;39,13;0;United Kingdom;Western Europe;"Routledge";"2005, 2008-2016, 2018-2026";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +18791;21101162546;"Asia-Pacific Economic History Review";journal;"2832157X";"John Wiley and Sons Inc";No;No;0,259;Q1;22;22;59;1179;39;54;0,48;53,59;26,67;0;United States;Northern America;"John Wiley and Sons Inc";"2023-2026";"History (Q1); Economics and Econometrics (Q3)";"Arts and Humanities; Economics, Econometrics and Finance" +18792;21101037302;"Harmonia: Journal of Arts Research and Education";journal;"14115115, 25412426";"Universitas Negeri Semarang";Yes;No;0,259;Q1;8;34;100;1505;91;99;0,74;44,26;40,48;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2019-2025";"Music (Q1); Visual Arts and Performing Arts (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +18793;15311;"Immigrants and Minorities";journal;"02619288, 17440521";"Routledge";No;No;0,259;Q1;23;22;30;1131;32;28;0,12;51,41;37,04;0;United Kingdom;Western Europe;"Routledge";"1982-2026";"History (Q1); Demography (Q3)";"Arts and Humanities; Social Sciences" +18794;21101214763;"Jurnal Pendidikan Agama Islam";journal;"18295746, 25022075";"UIN Sunan Kalijag";Yes;Yes;0,259;Q1;8;22;72;1301;114;72;2,00;59,14;23,21;0;Indonesia;Asiatic Region;"UIN Sunan Kalijag";"2019-2025";"Religious Studies (Q1); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +18795;21101200232;"Nauchnyi Dialog";journal;"2225756X, 22271295";"Tsentr Nauchnykh i Obrazovatelnykh Proektov";Yes;No;0,259;Q1;4;269;539;8006;133;539;0,25;29,76;65,02;0;Russian Federation;Eastern Europe;"Tsentr Nauchnykh i Obrazovatelnykh Proektov";"2023-2026";"History (Q1); Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +18796;21101170212;"Sociology Lens";journal;"28325796, 2832580X";"John Wiley and Sons Inc";No;No;0,259;Q1;34;32;114;2101;95;104;0,54;65,66;46,00;0;United States;Northern America;"John Wiley and Sons Inc";"2023-2026";"History (Q1); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18797;21600;"Studies in East European Thought";journal;"15730948, 09259392";"Springer Netherlands";No;No;0,259;Q1;14;134;150;5681;61;131;0,34;42,40;32,56;0;Netherlands;Western Europe;"Springer Netherlands";"1993-2026";"Cultural Studies (Q1); Literature and Literary Theory (Q1); Law (Q2); Philosophy (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +18798;21101146384;"Health in Emergencies and Disasters Quarterly";journal;"23454210";"Negah Institute for Social Research and Scientific Communication";Yes;Yes;0,259;Q2;9;33;103;1225;94;90;0,85;37,12;36,57;0;Iran;Middle East;"Negah Institute for Social Research and Scientific Communication";"2019-2026";"Emergency Medical Services (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Emergency Medicine (Q3); Social Sciences (miscellaneous) (Q3)";"Engineering; Health Professions; Medicine; Social Sciences" +18799;21100264008;"Ido Movement for Culture";journal;"20827571, 20843763";"Idokan Poland Association";Yes;Yes;0,259;Q2;21;47;132;2135;130;130;0,94;45,43;18,89;0;Poland;Eastern Europe;"Idokan Poland Association";"2013-2026";"Arts and Humanities (miscellaneous) (Q2); Philosophy (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Arts and Humanities; Health Professions" +18800;21100197179;"Internet Archaeology";journal;"13635387";"Council for British Archaeology";Yes;No;0,259;Q2;19;27;117;868;63;112;0,54;32,15;47,22;0;United Kingdom;Western Europe;"Council for British Archaeology";"2011, 2013-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +18801;21100862232;"Intersections East European Journal of Society and Politics";journal;"2416089X";"Centre for Social Sciences Hungarian Academy of Sciences";Yes;No;0,259;Q2;19;29;128;1244;100;128;0,64;42,90;42,86;0;Hungary;Eastern Europe;"Centre for Social Sciences Hungarian Academy of Sciences";"2015-2025";"Law (Q2); Sociology and Political Science (Q3)";"Social Sciences" +18802;16300154721;"Journal of Chinese Philosophy";journal;"03018121, 15406253";"Brill Academic Publishers";No;No;0,259;Q2;27;7;76;426;24;63;0,19;60,86;16,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"1973-2026";"Philosophy (Q2)";"Arts and Humanities" +18803;21101183727;"Local Development and Society";journal;"26883600";"Taylor and Francis Ltd.";No;No;0,259;Q2;11;46;82;2534;120;74;1,63;55,09;48,80;2;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2020-2026";"Urban Studies (Q2); Geography, Planning and Development (Q3)";"Social Sciences" +18804;25366;"South Asia Research";journal;"17413141, 02627280";"Sage Publications India Pvt. Ltd";No;No;0,259;Q2;25;19;67;963;66;65;0,63;50,68;50,00;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1981-2026";"Arts and Humanities (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +18805;27253;"Supreme Court Review";book series;"21582459, 00819557";"University of Chicago Press";No;No;0,259;Q2;20;10;29;117;20;9;0,50;11,70;16,67;1;United States;Northern America;"University of Chicago Press";"1992, 1997, 1999-2003, 2005-2011, 2013, 2015-2025";"Law (Q2)";"Social Sciences" +18806;21101196155;"Advanced Textile Technology";journal;"1009265X";"";No;No;0,259;Q3;8;126;433;2558;284;433;0,72;20,30;45,90;0;China;Asiatic Region;"";"2019-2025";"Chemistry (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Engineering; Materials Science" +18807;21100901906;"Applied Environmental Biotechnology";journal;"23826436, 24249092";"Urban Development Scientific Publishing Pte. Ltd.";No;No;0,259;Q3;14;2;42;31;53;42;1,24;15,50;25,00;0;Singapore;Asiatic Region;"Urban Development Scientific Publishing Pte. Ltd.";"2016-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biotechnology (Q3); Environmental Engineering (Q3); Environmental Chemistry (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +18808;21100981882;"Biomedical and Biotechnology Research Journal";journal;"25889842, 25889834";"Wolters Kluwer Medknow Publications";Yes;No;0,259;Q3;19;65;258;1871;323;257;1,28;28,78;53,30;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2017-2025";"Biotechnology (Q3)";"Biochemistry, Genetics and Molecular Biology" +18809;19700201433;"Boletim da Sociedade Paranaense de Matematica";journal;"21751188, 00378712";"Boletim da Sociedade Paranaense de Matematica";Yes;Yes;0,259;Q3;24;824;445;19422;364;445;0,82;23,57;28,94;0;Brazil;Latin America;"Boletim da Sociedade Paranaense de Matematica";"2002-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +18810;21101083805;"Bulletin of Kamchatka Regional Association Educational-Scientific Center. Earth Sciences";journal;"18165524, 18165532";"Institute of Volcanology and Seismology FEB RAS";Yes;Yes;0,259;Q3;6;36;104;1034;40;104;0,31;28,72;40,48;0;Russian Federation;Eastern Europe;"Institute of Volcanology and Seismology FEB RAS";"2019-2025";"Geochemistry and Petrology (Q3); Geology (Q3); Geophysics (Q3)";"Earth and Planetary Sciences" +18811;21100333810;"Bulletin of the Hospital for Joint Diseases";journal;"23284633, 23285273";"J. Michael Ryan Publishing Inc.";No;No;0,259;Q3;54;34;158;1186;86;146;0,61;34,88;29,25;0;United States;Northern America;"J. Michael Ryan Publishing Inc.";"2013-2025";"Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3); Rheumatology (Q4)";"Medicine" +18812;15020;"Civil Engineering and Environmental Systems";journal;"10286608, 10290249";"Taylor and Francis Ltd.";No;No;0,259;Q3;42;23;43;1046;53;38;1,17;45,48;21,82;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Civil and Structural Engineering (Q3)";"Engineering" +18813;7500153129;"Communications of the Korean Mathematical Society";journal;"12251763, 22343024";"Korean Mathematical Society";No;No;0,259;Q3;23;32;263;644;135;263;0,51;20,13;29,03;0;South Korea;Asiatic Region;"Korean Mathematical Society";"2007-2025";"Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics" +18814;23201;"Food Science and Technology Research";journal;"13446606";"Japanese Society for Food Science and Technology";No;No;0,259;Q3;57;54;181;1894;185;176;0,72;35,07;37,05;0;Switzerland;Western Europe;"Japanese Society for Food Science and Technology";"1999-2026";"Biotechnology (Q3); Chemical Engineering (miscellaneous) (Q3); Food Science (Q3); Industrial and Manufacturing Engineering (Q3); Marketing (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Business, Management and Accounting; Chemical Engineering; Engineering" +18815;21989;"Herpetological Journal";journal;"02680130";"British Herpetological Society";No;No;0,259;Q3;45;32;58;1710;49;56;0,58;53,44;23,30;0;United Kingdom;Western Europe;"British Herpetological Society";"1987, 1994-2026";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Nature and Landscape Conservation (Q3); Ecological Modeling (Q4)";"Agricultural and Biological Sciences; Environmental Science" +18816;21100992514;"International Journal of Computer Networks and Applications";journal;"23950455";"EverScience Publications";Yes;No;0,259;Q3;18;62;185;2312;325;185;1,95;37,29;33,33;0;India;Asiatic Region;"EverScience Publications";"2019-2025";"Computer Networks and Communications (Q3); Computer Science Applications (Q3)";"Computer Science" +18817;144624;"International Journal of Innovation and Learning";journal;"14718197, 17418089";"Inderscience Enterprises Ltd";No;No;0,259;Q3;32;49;144;2826;201;143;1,72;57,67;40,65;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2003-2026";"Education (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Social Sciences" +18818;19400157135;"International Journal of Knowledge Management Studies";journal;"17438276, 17438268";"Inderscience Enterprises Ltd";No;No;0,259;Q3;18;20;60;1478;109;60;1,57;73,90;26,19;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2012, 2014-2025";"Computer Science Applications (Q3); Information Systems and Management (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +18819;21100826823;"Iranian Journal of Catalysis";journal;"23454865, 22520236";"OICC Press";Yes;No;0,259;Q3;29;50;115;3021;190;115;1,73;60,42;31,85;0;United Kingdom;Western Europe;"OICC Press";"2012-2025";"Organic Chemistry (Q3); Catalysis (Q4); Inorganic Chemistry (Q4)";"Chemical Engineering; Chemistry" +18820;21100242235;"Jordan Journal of Civil Engineering";journal;"19930461, 2225157X";"Jordan University of Science and Technology";No;No;0,259;Q3;30;53;157;2066;205;155;1,34;38,98;26,32;0;Jordan;Middle East;"Jordan University of Science and Technology";"2007-2026";"Civil and Structural Engineering (Q3)";"Engineering" +18821;21100945776;"Journal of Aridland Agriculture";journal;"24559377";"TathQeef Scientific Publishing";No;No;0,259;Q3;6;20;42;1003;48;42;1,21;50,15;26,47;0;United Arab Emirates;Middle East;"TathQeef Scientific Publishing";"2018-2025";"Agronomy and Crop Science (Q3); Horticulture (Q3); Soil Science (Q3); Global and Planetary Change (Q4)";"Agricultural and Biological Sciences; Environmental Science" +18822;21100433106;"Journal of Asia-Pacific Biodiversity";journal;"22879544, 2287884X";"National Science Museum od Korea";Yes;Yes;0,259;Q3;30;143;304;5904;276;304;1,01;41,29;31,92;0;South Korea;Asiatic Region;"National Science Museum od Korea";"2013-2026";"Animal Science and Zoology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18823;21101052349;"Journal of Global Business and Technology";journal;"26162733, 15535495";"Global Business and Technology Association, Inc.";No;No;0,259;Q3;9;16;58;820;68;46;1,28;51,25;22,73;0;United States;Northern America;"Global Business and Technology Association, Inc.";"2019-2025";"Business and International Management (Q3); Management of Technology and Innovation (Q3); Marketing (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +18824;21100229111;"Journal of Telecommunications and Information Technology";journal;"15094553, 18998852";"National Institute of Telecommunications";Yes;Yes;0,259;Q3;19;49;145;1353;181;144;1,23;27,61;21,74;0;Poland;Eastern Europe;"National Institute of Telecommunications";"2012-2025";"Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +18825;19700201212;"Middle East African Journal of Ophthalmology";journal;"09749233, 09751599";"Wolters Kluwer Medknow Publications";Yes;No;0,259;Q3;41;0;92;0;75;92;0,42;0,00;0,00;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2011-2023";"Medicine (miscellaneous) (Q3); Ophthalmology (Q3)";"Medicine" +18826;6400153138;"Modelling and Simulation in Engineering";journal;"16875605, 16875591";"John Wiley and Sons Ltd";Yes;No;0,259;Q3;33;31;102;949;155;102;1,29;30,61;27,17;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2007-2026";"Computer Science Applications (Q3); Engineering (miscellaneous) (Q3); Modeling and Simulation (Q3)";"Computer Science; Engineering; Mathematics" +18827;26426;"Oxidation Communications";journal;"02094541";"Scibulcom Ltd.";Yes;No;0,259;Q3;25;120;269;2912;346;268;1,64;24,27;43,57;0;Bulgaria;Eastern Europe;"Scibulcom Ltd.";"1996-2025";"Chemistry (miscellaneous) (Q3)";"Chemistry" +18828;26453;"Polymer Science - Series A";journal;"0965545X, 15556107";"Pleiades Publishing";No;No;0,259;Q3;41;19;236;699;285;236;1,09;36,79;45,45;0;United States;Northern America;"Pleiades Publishing";"1991, 1996-2025";"Materials Chemistry (Q3); Polymers and Plastics (Q3)";"Materials Science" +18829;21101047380;"Raptor Journal";journal;"26445247";"";Yes;Yes;0,259;Q3;14;9;22;416;16;22;0,69;46,22;28,21;0;Poland;Eastern Europe;"";"2019-2025";"Animal Science and Zoology (Q3); Nature and Landscape Conservation (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18830;4700152500;"Revista Brasileira de Fruticultura";journal;"01002945";"Sociedade Brasileira de Fruticultura";Yes;No;0,259;Q3;41;0;155;0;183;154;0,96;0,00;0,00;0;Brazil;Latin America;"Sociedade Brasileira de Fruticultura";"2006-2024";"Agronomy and Crop Science (Q3); Food Science (Q3); Horticulture (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +18831;21100400803;"Revista Iberoamericana de Educacion Superior";journal;"20072872";"Elsevier B.V.";Yes;Yes;0,259;Q3;15;27;99;1123;54;99;0,55;41,59;56,00;0;Mexico;Latin America;"Elsevier B.V.";"2015-2026";"Education (Q3)";"Social Sciences" +18832;25304;"Russian Journal of Ecology";journal;"16083334, 10674136";"Pleiades Publishing";No;No;0,259;Q3;32;39;188;2107;137;188;0,57;54,03;46,26;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +18833;21101055969;"Sinergie";journal;"03935108";"Fondazione Cueim";Yes;No;0,259;Q3;13;29;100;2393;128;96;1,06;82,52;56,44;0;Italy;Western Europe;"Fondazione Cueim";"2019-2026";"Business, Management and Accounting (miscellaneous) (Q3); Management Science and Operations Research (Q3)";"Business, Management and Accounting; Decision Sciences" +18834;28971;"Studia Geophysica et Geodaetica";journal;"15731626, 00393169";"Springer Netherlands";No;No;0,259;Q3;46;11;34;495;35;34;1,05;45,00;23,53;0;Netherlands;Western Europe;"Springer Netherlands";"1957-2025";"Geochemistry and Petrology (Q3); Geophysics (Q3)";"Earth and Planetary Sciences" +18835;15302;"Studia Psychologica";journal;"00393320";"Institute of Experimental Psychology, Centre of Social and Psychological Sciences, Slovak Academy of Sciences";Yes;Yes;0,259;Q3;26;25;73;1333;60;73;0,93;53,32;44,07;0;Slovakia;Eastern Europe;"Institute of Experimental Psychology, Centre of Social and Psychological Sciences, Slovak Academy of Sciences";"1996-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +18836;21100882128;"Tripodos";journal;"11383305, 23405007";"Blanquerna School of Communication and International Relations";Yes;Yes;0,259;Q3;12;16;39;765;57;37;1,88;47,81;50,00;0;Spain;Western Europe;"Blanquerna School of Communication and International Relations";"2018-2025";"Communication (Q3)";"Social Sciences" +18837;21100898997;"Volumina Jurassica";journal;"18967876, 17313708";"Polish Geological Institute";No;No;0,259;Q3;8;6;14;473;11;14;0,64;78,83;19,05;0;Poland;Eastern Europe;"Polish Geological Institute";"2018-2025";"Geology (Q3); Stratigraphy (Q3); Paleontology (Q4)";"Earth and Planetary Sciences" +18838;34202;"Annual International Conference of the IEEE Engineering in Medicine and Biology - Proceedings";conference and proceedings;"05891019";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,259;-;110;1769;3736;37613;3661;3729;0,78;21,26;34,38;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1974-1984, 1989-2008, 2010-2025";"Biomedical Engineering; Computer Vision and Pattern Recognition; Electrical and Electronic Engineering; Health Informatics; Signal Processing";"Computer Science; Engineering; Medicine" +18839;17989;"Proceedings of the IEEE International Conference on Micro Electro Mechanical Systems (MEMS)";conference and proceedings;"10846999";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,259;-;52;313;890;3778;865;884;1,02;12,07;27,31;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2004-2025";"Condensed Matter Physics; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Mechanical Engineering";"Engineering; Materials Science; Physics and Astronomy" +18840;28156;"American Literature";journal;"15272117, 00029831";"Duke University Press";No;No;0,258;Q1;24;25;97;1623;81;96;0,97;64,92;58,33;0;United States;Northern America;"Duke University Press";"1968-1969, 1981, 1983, 1985-1986, 2000, 2002-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +18841;21101247620;"International Journal of Anthropology and Ethnology";journal;"23661003";"Springer Nature";Yes;Yes;0,258;Q1;12;25;63;1196;79;63;1,25;47,84;39,39;0;Netherlands;Western Europe;"Springer Nature";"2017-2026";"Cultural Studies (Q1); Anthropology (Q2); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +18842;24214;"Journal of Asian Studies";journal;"00219118";"Duke University Press";No;No;0,258;Q1;65;43;94;2389;51;81;0,41;55,56;44,44;0;United Kingdom;Western Europe;"Duke University Press";"1941-2025";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +18843;15558;"New Literary History";journal;"00286087, 1080661X";"Johns Hopkins University Press";No;No;0,258;Q1;51;31;104;1319;71;100;0,63;42,55;53,13;0;United States;Northern America;"Johns Hopkins University Press";"1983, 2002-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +18844;21101128456;"Problemy Istoricheskoy Poetiki";journal;"10269479, 24114642";"Petrozavodsk State University";Yes;Yes;0,258;Q1;6;53;185;1185;33;184;0,18;22,36;70,59;0;Russian Federation;Eastern Europe;"Petrozavodsk State University";"2019-2026";"Literature and Literary Theory (Q1)";"Arts and Humanities" +18845;21101042150;"Vestnik RUDN. International Relations";journal;"23130660, 23130679";"RUDN University";Yes;Yes;0,258;Q1;9;51;140;1395;98;140;0,53;27,35;48,78;0;Russian Federation;Eastern Europe;"RUDN University";"2019-2025";"History (Q1); Development (Q3); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +18846;21100834305;"Vestnik Sankt-Peterburgskogo Universiteta, Istoriya";journal;"25419390, 18129323";"Saint Petersburg State University";No;No;0,258;Q1;9;64;207;1870;46;207;0,24;29,22;32,47;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2017-2025";"History (Q1)";"Arts and Humanities" +18847;27052;"AORN Journal";journal;"18780369, 00012092";"John Wiley & Sons Inc.";No;No;0,258;Q2;59;167;467;1775;237;266;0,54;10,63;77,61;0;United States;Northern America;"John Wiley & Sons Inc.";"1963-2026";"Medical and Surgical Nursing (Q2)";"Nursing" +18848;21101098021;"New Journal of European Criminal Law";journal;"2399293X, 20322844";"SAGE Publications Inc.";No;No;0,258;Q2;17;25;87;1750;122;67;1,33;70,00;41,67;1;United States;Northern America;"SAGE Publications Inc.";"2009-2026";"Law (Q2)";"Social Sciences" +18849;21100778750;"Proceedings of the Association for Information Science and Technology";journal;"23739231";"John Wiley & Sons Inc.";No;No;0,258;Q2;29;304;501;7652;517;501;1,08;25,17;56,08;0;United States;Northern America;"John Wiley & Sons Inc.";"2015-2025";"Library and Information Sciences (Q2); Computer Science (miscellaneous) (Q3)";"Computer Science; Social Sciences" +18850;21100967057;"Psycholinguistics";journal;"23091797, 24153397";"Pereiaslav-Khmelnytskyi Hryhorii Skovoroda State Pedagogical University";Yes;No;0,258;Q2;10;22;91;1031;113;91;1,26;46,86;50,82;0;Ukraine;Eastern Europe;"Pereiaslav-Khmelnytskyi Hryhorii Skovoroda State Pedagogical University";"2019-2025";"Linguistics and Language (Q2); Experimental and Cognitive Psychology (Q4)";"Psychology; Social Sciences" +18851;96395;"Agricultural and Food Science";journal;"17951895, 14596067";"The Scientific Agricultural Society of Finland";Yes;Yes;0,258;Q3;47;20;66;959;80;65;1,07;47,95;56,79;1;Finland;Western Europe;"The Scientific Agricultural Society of Finland";"2004-2026";"Food Science (Q3)";"Agricultural and Biological Sciences" +18852;21101049623;"ANAS Transactions, Earth Sciences";journal;"26630419, 22188754";"Geology and Geophysics Institute at Azerbaijan National Academy of Sciences (ANAS)";No;No;0,258;Q3;8;23;109;766;78;109;0,68;33,30;32,94;0;Azerbaijan;Eastern Europe;"Geology and Geophysics Institute at Azerbaijan National Academy of Sciences (ANAS)";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +18853;28587;"Biomedical Instrumentation and Technology";journal;"08998205, 19435967";"Allen Press Inc.";No;No;0,258;Q3;32;8;52;0;63;51;1,21;0,00;48,28;0;United States;Northern America;"Allen Press Inc.";"1989-2025";"Computer Networks and Communications (Q3); Biomedical Engineering (Q4)";"Computer Science; Engineering" +18854;21101155957;"Bulletin of Mathematical Analysis and Applications";journal;"18211291";"Department of Mathematics and Computer Sciences, University of Prishtina";No;No;0,258;Q3;7;30;49;743;30;49;0,38;24,77;40,32;0;Serbia;Eastern Europe;"Department of Mathematics and Computer Sciences, University of Prishtina";"2019-2025";"Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3); Analysis (Q4)";"Mathematics" +18855;25811;"Cellulose Chemistry and Technology";journal;"05769787";"Editura Academiei Romane";Yes;No;0,258;Q3;47;99;298;4988;419;298;1,28;50,38;42,30;0;Romania;Eastern Europe;"Editura Academiei Romane";"1972, 1976, 1983, 1985, 1989-1990, 1993, 1995-2025";"Materials Chemistry (Q3); Organic Chemistry (Q4)";"Chemistry; Materials Science" +18856;21101244217;"Earthquake Engineering and Engineering Dynamics";journal;"10001301";"Editorial office of Earthquake Engineering and Engineering Dynamics";No;No;0,258;Q3;23;41;430;1258;288;430;0,63;30,68;29,03;0;China;Asiatic Region;"Editorial office of Earthquake Engineering and Engineering Dynamics";"1996-2014, 2016, 2018-2026";"Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +18857;21100899640;"Educational Research for Social Change";journal;"22214070";"Nelson Mandela University,Faculty of Education";Yes;No;0,258;Q3;12;12;53;554;48;44;0,81;46,17;60,00;0;South Africa;Africa;"Nelson Mandela University,Faculty of Education";"2018-2025";"Education (Q3); Sociology and Political Science (Q3)";"Social Sciences" +18858;21100773807;"Electronic Journal of Plant Breeding";journal;"0975928X";"Indian Society of Plant Breeders";Yes;Yes;0,258;Q3;19;31;509;962;435;509;0,90;31,03;31,11;0;India;Asiatic Region;"Indian Society of Plant Breeders";"2009-2025";"Agronomy and Crop Science (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +18859;17800156701;"Engineering Letters";journal;"1816093X, 18160948";"International Association of Engineers";Yes;No;0,258;Q3;27;479;625;14782;1116;614;2,05;30,86;34,25;0;Hong Kong;Asiatic Region;"International Association of Engineers";"2009-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +18860;19700175063;"European Journal of Mental Health";journal;"17887119, 17884934";"Semmelweis University Institute of Mental Health";Yes;Yes;0,258;Q3;14;13;63;809;58;61;0,94;62,23;60,00;0;Hungary;Eastern Europe;"Semmelweis University Institute of Mental Health";"2008-2026";"Health (social science) (Q3); Psychology (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3); Psychiatry and Mental Health (Q4)";"Medicine; Psychology; Social Sciences" +18861;21100904224;"Food Research";journal;"25502166";"Rynnye Lyan Resources";Yes;No;0,258;Q3;30;264;1117;9444;1399;1117;1,08;35,77;49,10;0;Malaysia;Asiatic Region;"Rynnye Lyan Resources";"2017-2025";"Food Science (Q3)";"Agricultural and Biological Sciences" +18862;11700154716;"Geography and Natural Resources";journal;"1875371X, 18753728";"Pleiades Publishing";Yes;No;0,258;Q3;18;56;208;1465;80;208;0,36;26,16;51,38;0;United States;Northern America;"Pleiades Publishing";"2008-2025";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +18863;21100370020;"Geopolitics Quarterly";journal;"17354331, 25383698";"Iranian Association of Geopolitics";Yes;No;0,258;Q3;9;40;169;1841;103;169;0,62;46,03;26,32;0;Iran;Middle East;"Iranian Association of Geopolitics";"2014-2025";"Geography, Planning and Development (Q3); Political Science and International Relations (Q3)";"Social Sciences" +18864;19700188398;"IEEE Pulse";journal;"21542317, 21542287";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,258;Q3;99;75;133;332;54;116;0,39;4,43;34,25;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2010-2025";"Medicine (miscellaneous) (Q3); Biomedical Engineering (Q4)";"Engineering; Medicine" +18865;25724;"India Quarterly";journal;"09752684, 09749284";"Indian Council of World Affairs";No;No;0,258;Q3;18;28;107;1240;110;89;0,89;44,29;45,00;0;India;Asiatic Region;"Indian Council of World Affairs";"1954-1963, 1966-2008, 2011-2026";"Political Science and International Relations (Q3)";"Social Sciences" +18866;4000151820;"International Journal of Technology and Globalisation";journal;"14765667, 17418194";"Inderscience Enterprises Ltd";No;No;0,258;Q3;24;0;3;0;8;3;2,67;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2015, 2017, 2020, 2024";"Economics and Econometrics (Q3); Management, Monitoring, Policy and Law (Q3); Political Science and International Relations (Q3)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +18867;28854;"International Trade Journal";journal;"08853908, 15210545";"Taylor and Francis Ltd.";No;No;0,258;Q3;29;43;103;1845;99;87;0,71;42,91;24,29;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2026";"Business and International Management (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +18868;21101147572;"Journal of Advanced Oral Research";journal;"23202068, 23202076";"Sage Publications India Pvt. Ltd";No;No;0,258;Q3;10;25;82;1045;86;81;1,20;41,80;62,07;0;Singapore;Asiatic Region;"Sage Publications India Pvt. Ltd";"2018-2025";"Dentistry (miscellaneous) (Q3)";"Dentistry" +18869;21100828754;"Journal of Comparative Social Work";journal;"08099936";"University of Stavanger, Department of Social Studies";Yes;Yes;0,258;Q3;8;19;40;847;20;31;0,52;44,58;66,67;0;Norway;Western Europe;"University of Stavanger, Department of Social Studies";"2017-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +18870;21101325689;"Journal of Intercollegiate Sport";journal;"19416342, 1941417X";"University of Kansas";Yes;No;0,258;Q3;6;21;47;1375;40;46;0,89;65,48;63,38;0;United States;Northern America;"University of Kansas";"2016, 2021-2026";"Decision Sciences (miscellaneous) (Q3); Health (social science) (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +18871;22583;"Journal of Medical Primatology";journal;"00472565, 16000684";"Blackwell Munksgaard";No;No;0,258;Q3;49;50;174;1898;127;172;0,62;37,96;49,28;0;United Kingdom;Western Europe;"Blackwell Munksgaard";"1972-2026";"Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +18872;21101180532;"Journal of Project Management (Canada)";journal;"23718374, 23718366";"Growing Science";Yes;Yes;0,258;Q3;19;68;77;4045;191;77;2,23;59,49;31,25;0;Canada;Northern America;"Growing Science";"2019-2026";"Business and International Management (Q3); Communication (Q3); Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +18873;21100979311;"Journal of the Korean Academy of Fundamentals of Nursing";journal;"22871802, 12259012";"Korean Academy of Fundamentals of Nursing";No;No;0,258;Q3;9;47;144;1634;110;144;0,70;34,77;74,76;0;South Korea;Asiatic Region;"Korean Academy of Fundamentals of Nursing";"2019-2025";"Nursing (miscellaneous) (Q3)";"Nursing" +18874;14429;"Journal of Visualization";journal;"18758975, 13438875";"Springer Science and Business Media Deutschland GmbH";No;No;0,258;Q3;41;69;240;2731;440;240;1,97;39,58;29,15;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1998-2026";"Computer Graphics and Computer-Aided Design (Q3); Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering; Physics and Astronomy" +18875;27304;"Materialwissenschaft und Werkstofftechnik";journal;"15214052, 09335137";"Wiley-VCH Verlag";No;No;0,258;Q3;48;124;419;4585;557;417;1,21;36,98;23,72;0;Germany;Western Europe;"Wiley-VCH Verlag";"1970-2026";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +18876;21100403901;"Neftyanoe khozyaystvo - Oil Industry";journal;"00282448";"Neftyanoe Khozyaistvo";No;No;0,258;Q3;23;251;728;2604;271;726;0,40;10,37;26,80;0;Russian Federation;Eastern Europe;"Neftyanoe Khozyaistvo";"1975-1988, 2001-2026";"Energy Engineering and Power Technology (Q3); Fuel Technology (Q3)";"Energy" +18877;27866;"Physics of Metals and Metallography";journal;"0031918X, 15556190";"Pleiades Publishing";No;No;0,258;Q3;40;132;648;5119;609;646;0,88;38,78;32,47;0;United States;Northern America;"Pleiades Publishing";"1970-1991, 1996-2025";"Condensed Matter Physics (Q3); Materials Chemistry (Q3)";"Materials Science; Physics and Astronomy" +18878;53921;"Practical Diabetes";journal;"20472900, 20472897";"John Wiley & Sons Inc.";No;No;0,258;Q3;31;0;143;0;69;113;0,53;0,00;0,00;0;United States;Northern America;"John Wiley & Sons Inc.";"2011-2024";"Internal Medicine (Q3); Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +18879;21101029732;"Revista Latinoamericana de Herpetologia";journal;"25942158";"Sociedad Herpetologica Mexicana";Yes;Yes;0,258;Q3;8;131;335;3767;149;240;0,43;28,76;33,14;0;Mexico;Latin America;"Sociedad Herpetologica Mexicana";"2018-2026";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +18880;18844;"Schmerz";journal;"0932433X, 14322129";"Springer Medizin";No;No;0,258;Q3;50;83;206;1848;116;146;0,54;22,27;51,27;0;Germany;Western Europe;"Springer Medizin";"1987-2026";"Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q4)";"Medicine" +18881;21100855988;"Sport Mont";journal;"14517485, 23370351";"Montenegrin Sports Academy";Yes;No;0,258;Q3;16;60;180;1986;199;180;1,23;33,10;40,18;0;Montenegro;Eastern Europe;"Montenegrin Sports Academy";"2017-2026";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Health Professions; Medicine" +18882;21100831441;"TEM Journal";journal;"22178309, 22178333";"UIKTEN - Association for Information Communication Technology Education and Science";Yes;No;0,258;Q3;31;327;863;13268;1410;863;1,76;40,57;43,76;0;Serbia;Eastern Europe;"UIKTEN - Association for Information Communication Technology Education and Science";"2017-2025";"Computer Science (miscellaneous) (Q3); Education (Q3); Information Systems (Q3); Information Systems and Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences; Social Sciences" +18883;23540;"Wirtschaftsdienst";journal;"00436275, 1613978X";"Sciendo";Yes;Yes;0,258;Q3;12;222;702;2867;157;427;0,22;12,91;26,39;30;Poland;Eastern Europe;"Sciendo";"1973, 1975, 1977-1981, 1983-1984, 1986-1987, 1993, 2005-2026";"Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting" +18884;110180;"Wood Research";journal;"13364561";"Pulp and Paper Research Institute";No;No;0,258;Q3;31;58;212;1895;249;212;1,08;32,67;34,18;0;Slovakia;Eastern Europe;"Pulp and Paper Research Institute";"2003-2025";"Forestry (Q3); Materials Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Materials Science" +18885;13309;"Yuanzineng Kexue Jishu/Atomic Energy Science and Technology";journal;"10006931";"Atomic Energy Press";Yes;No;0,258;Q3;22;332;959;8441;574;959;0,62;25,42;31,17;0;China;Asiatic Region;"Atomic Energy Press";"1993-2026";"Nuclear Energy and Engineering (Q3)";"Energy" +18886;29845;"IARC Monographs on the Evaluation of Carcinogenic Risks to Humans";book series;"10171606";"International Agency for Research on Cancer";No;No;0,258;Q4;51;3;20;125;8;8;0,57;41,67;0,00;0;France;Western Europe;"International Agency for Research on Cancer";"1988-1997, 1999-2002, 2004, 2006-2008, 2010-2020, 2022-2025";"Cancer Research (Q4); Toxicology (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +18887;21100222910;"Journal of the Palaeontological Society of India";journal;"27537269, 05529360";"SAGE Publications Ltd";Yes;No;0,258;Q4;18;24;70;1670;61;68;0,70;69,58;31,17;0;India;Asiatic Region;"SAGE Publications Ltd";"2011-2025";"Paleontology (Q4)";"Earth and Planetary Sciences" +18888;21100201906;"International Conference on Information Networking";conference and proceedings;"19767684";"IEEE Computer Society";No;No;0,258;-;39;144;422;2077;484;413;1,22;14,42;20,84;0;United States;Northern America;"IEEE Computer Society";"2001, 2012-2025";"Computer Networks and Communications; Information Systems";"Computer Science" +18889;21100215175;"Proceedings International Radar Symposium";conference and proceedings;"21555753, 21555745";"IEEE Computer Society";No;No;0,258;-;32;81;262;917;228;259;0,76;11,32;18,62;0;United States;Northern America;"IEEE Computer Society";"2005, 2007, 2012-2025";"Astronomy and Astrophysics; Computer Networks and Communications; Computer Science Applications; Electrical and Electronic Engineering; Instrumentation; Signal Processing";"Computer Science; Engineering; Physics and Astronomy" +18890;14953;"Proceedings of the IEEE International Conference on VLSI Design";conference and proceedings;"10639667";"IEEE Computer Society";No;No;0,258;-;46;103;204;1698;217;195;1,06;16,49;17,20;0;United States;Northern America;"IEEE Computer Society";"1991-1992, 1994-2001, 2003-2007, 2010-2016, 2018, 2021, 2023-2025";"Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering" +18891;21100349320;"Chinese Language and Discourse";journal;"18777031, 18778798";"John Benjamins Publishing Company";No;No;0,257;Q1;13;13;35;754;33;33;0,57;58,00;43,75;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2010-2026";"Visual Arts and Performing Arts (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +18892;21100935076;"International and Multidisciplinary Journal of Social Sciences";journal;"20143680";"Hipatia Editorial";Yes;No;0,257;Q1;11;13;38;762;55;38;1,42;58,62;47,22;0;Spain;Western Europe;"Hipatia Editorial";"2014, 2019-2025";"History (Q1); Philosophy (Q2); Economics and Econometrics (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +18893;21101335347;"Journal of Ancient Near Eastern History";journal;"23289554, 23289562";"Walter de Gruyter GmbH";No;No;0,257;Q1;5;15;39;1244;27;39;0,64;82,93;37,50;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2021-2026";"History (Q1)";"Arts and Humanities" +18894;15675;"Journal of Social History";journal;"15271897, 00224529";"Oxford University Press";No;No;0,257;Q1;46;28;83;3223;69;82;0,94;115,11;69,70;0;United States;Northern America;"Oxford University Press";"1967-2025";"History (Q1); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18895;21100927202;"Kritika i Semiotika";journal;"23071737, 23071753";"Siberian Branch of the Russian Academy of Sciences, Institute of Philology";No;No;0,257;Q1;5;42;130;956;25;130;0,17;22,76;63,64;0;Russian Federation;Eastern Europe;"Siberian Branch of the Russian Academy of Sciences, Institute of Philology";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +18896;21100390172;"Language and Dialogue";journal;"22104127, 22104119";"John Benjamins Publishing Company";No;No;0,257;Q1;17;23;64;834;45;56;0,76;36,26;78,13;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2011-2026";"Cultural Studies (Q1); Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +18897;17086;"South Asia: Journal of South Asia Studies";journal;"14790270, 00856401";"Routledge";No;No;0,257;Q1;32;85;208;3710;108;202;0,43;43,65;49,38;0;United Kingdom;Western Europe;"Routledge";"1971-1976, 1978-2026";"Cultural Studies (Q1); History (Q1); Development (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18898;21213;"Speculum";journal;"20408072, 00387134";"University of Chicago Press";No;No;0,257;Q1;33;28;74;358;58;70;0,71;12,79;60,53;0;United States;Northern America;"University of Chicago Press";"1926-1999, 2001-2026";"Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Religious Studies (Q1); Visual Arts and Performing Arts (Q1); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +18899;5700152785;"Voprosy Filosofii";journal;"00428744";"Izdatel'stvo Nauka";No;No;0,257;Q1;11;213;672;3332;145;667;0,24;15,64;38,98;0;Russian Federation;Eastern Europe;"Izdatel'stvo Nauka";"2002-2025";"Cultural Studies (Q1); History and Philosophy of Science (Q2); Linguistics and Language (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +18900;21101171778;"Ianna Journal of Interdisciplinary Studies";journal;"27359891, 27359883";"";Yes;No;0,257;Q2;12;114;62;2770;105;62;1,76;24,30;39,61;0;Nigeria;Africa;"";"2019-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +18901;19700171309;"Studies in Social Justice";journal;"19114788";"Social Justice Research Institute";Yes;Yes;0,257;Q2;26;38;136;1833;144;131;0,47;48,24;71,23;0;Canada;Northern America;"Social Justice Research Institute";"2009-2025";"Gender Studies (Q2); Law (Q2); Sociology and Political Science (Q3)";"Social Sciences" +18902;21101030015;"Sustainable Multilingualism";journal;"23352027, 23352019";"Sciendo";Yes;Yes;0,257;Q2;8;18;60;664;74;60;0,90;36,89;75,76;0;Poland;Eastern Europe;"Sciendo";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +18903;27100;"Acta Universitatis Carolinae, Geographica";journal;"03005402, 23361980";"Karolinum - Nakladatelstvi Univerzity Karlovy";Yes;Yes;0,257;Q3;19;16;55;825;47;53;0,87;51,56;24,24;0;Czech Republic;Eastern Europe;"Karolinum - Nakladatelstvi Univerzity Karlovy";"1975-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +18904;21100828132;"Aestimum";journal;"15926117, 17242118";"Firenze University Press";Yes;Yes;0,257;Q3;17;13;30;501;49;30;1,76;38,54;57,14;0;Italy;Western Europe;"Firenze University Press";"2008-2025";"Ecology (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Urban Studies (Q3)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +18905;21101048953;"AME Medical Journal";journal;"25200518";"AME Publishing Company";No;No;0,257;Q3;9;40;120;1586;104;101;0,80;39,65;36,36;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2019-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +18906;4700152640;"Austrian Journal of Forest Science";journal;"00089583";"Osterreichischer Agrarverlag Druck und Verlags Gesellschaft m.b.H. Nfg. KG";No;No;0,257;Q3;16;12;37;708;37;36;0,83;59,00;23,91;0;Austria;Western Europe;"Osterreichischer Agrarverlag Druck und Verlags Gesellschaft m.b.H. Nfg. KG";"2006-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Forestry (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18907;10300153344;"Cardiovascular Journal of Africa";journal;"19963467, 19951892";"Clinics Cardive Publishing (PTY)Ltd";No;No;0,257;Q3;45;95;190;1773;121;174;0,51;18,66;31,32;0;South Africa;Africa;"Clinics Cardive Publishing (PTY)Ltd";"2007-2025";"Medicine (miscellaneous) (Q3); Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +18908;27056;"Colloid Journal";journal;"1061933X, 16083067";"Pleiades Publishing";No;No;0,257;Q3;41;84;251;3873;365;250;1,58;46,11;48,91;0;United States;Northern America;"Pleiades Publishing";"1989, 1991-1992, 1995-2026";"Colloid and Surface Chemistry (Q3); Physical and Theoretical Chemistry (Q4); Surfaces and Interfaces (Q4)";"Chemical Engineering; Chemistry; Physics and Astronomy" +18909;21100904323;"EAI Endorsed Transactions on Pervasive Health and Technology";journal;"24117145";"European Alliance for Innovation";Yes;Yes;0,257;Q3;22;47;242;1547;483;242;2,14;32,91;40,13;0;Belgium;Western Europe;"European Alliance for Innovation";"2018-2025";"Computer Science (miscellaneous) (Q3); Health Informatics (Q4)";"Computer Science; Medicine" +18910;21101365826;"Education Research and Perspectives";journal;"14460017, 03112543";"The University of Western Australia Graduate School of Education";No;No;0,257;Q3;3;1;18;123;22;17;0,88;123,00;33,33;0;Australia;Pacific Region;"The University of Western Australia Graduate School of Education";"2021-2026";"Education (Q3)";"Social Sciences" +18911;21100438059;"Engineering Solid Mechanics";journal;"22918752, 22918744";"Growing Science";No;No;0,257;Q3;26;31;114;1035;159;114;1,57;33,39;17,78;0;Canada;Northern America;"Growing Science";"2013-2026";"Ceramics and Composites (Q3); Civil and Structural Engineering (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3); Polymers and Plastics (Q3)";"Engineering; Materials Science" +18912;21100791268;"European Journal of General Dentistry";journal;"23204753, 22789626";"Georg Thieme Verlag";Yes;No;0,257;Q3;11;35;127;1126;121;126;1,02;32,17;53,51;0;Germany;Western Europe;"Georg Thieme Verlag";"2016-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +18913;21100201021;"Food Protection Trends";journal;"15419576";"International Association for Food Protection";Yes;No;0,257;Q3;23;34;96;1216;83;94;0,81;35,76;61,39;0;United States;Northern America;"International Association for Food Protection";"2006, 2011-2026";"Food Science (Q3); Public Health, Environmental and Occupational Health (Q3)";"Agricultural and Biological Sciences; Medicine" +18914;21101042008;"Food Science and Technology (United States)";journal;"2331513X, 23315156";"Horizon Research Publishing";No;No;0,257;Q3;7;29;57;1149;71;57;1,39;39,62;57,84;0;United States;Northern America;"Horizon Research Publishing";"2019-2026";"Food Science (Q3); Nutrition and Dietetics (Q3); Biochemistry (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Nursing" +18915;25507;"Informatica (Slovenia)";journal;"18543871, 03505596";"Slovene Society Informatika";Yes;No;0,257;Q3;42;556;617;16074;1192;613;1,95;28,91;41,08;0;Slovenia;Eastern Europe;"Slovene Society Informatika";"1995-2025";"Artificial Intelligence (Q3); Computer Science Applications (Q3); Software (Q3); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +18916;12100157015;"Integrative Medicine";journal;"1546993X, 19457081";"InnoVision Communications";No;No;0,257;Q3;25;26;116;730;95;90;0,68;28,08;55,00;0;United States;Northern America;"InnoVision Communications";"2005-2010, 2013-2025";"Complementary and Alternative Medicine (Q3)";"Medicine" +18917;21100211724;"Intelligent Decision Technologies";journal;"18724981, 18758843";"SAGE Publications Ltd";No;No;0,257;Q3;22;273;348;9705;573;340;1,76;35,55;41,22;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1986, 2007-2026";"Artificial Intelligence (Q3); Computer Vision and Pattern Recognition (Q3); Software (Q3); Human-Computer Interaction (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Computer Science; Decision Sciences; Mathematics" +18918;21100274247;"International Journal of Sustainability Policy and Practice";journal;"23251166, 23251182";"Common Ground Research Networks";No;No;0,257;Q3;7;19;25;1177;36;25;1,78;61,95;48,72;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Sociology and Political Science (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Environmental Science; Social Sciences" +18919;39299;"International Journal of Thermodynamics";journal;"13019724, 21461511";"International Journal of Thermodynamics";No;No;0,257;Q3;38;32;93;1172;135;93;1,57;36,63;14,89;0;Turkey;Middle East;"International Journal of Thermodynamics";"2000-2025";"Condensed Matter Physics (Q3); Engineering (miscellaneous) (Q3)";"Engineering; Physics and Astronomy" +18920;19700201526;"Italian Journal of Agrometeorology";journal;"20385625";"Firenze University Press";No;No;0,257;Q3;19;12;41;588;53;41;1,03;49,00;36,17;0;Italy;Western Europe;"Firenze University Press";"2008-2025";"Agronomy and Crop Science (Q3); Forestry (Q3); Atmospheric Science (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +18921;21101259093;"Journal of Cardiac Critical Care";journal;"24569224";"Scientific Scholar LLC";No;No;0,257;Q3;6;43;157;869;100;134;0,85;20,21;28,72;0;United States;Northern America;"Scientific Scholar LLC";"2020-2026";"Cardiology and Cardiovascular Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)";"Medicine" +18922;23348;"Journal of Environmental Biology";journal;"23940379, 02548704";"Triveni Enterprises";Yes;No;0,257;Q3;67;110;316;4223;352;297;1,00;38,39;24,92;0;India;Asiatic Region;"Triveni Enterprises";"1988-2026";"Environmental Engineering (Q3); Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +18923;145442;"Journal of Indian Association of Pediatric Surgeons";journal;"09719261, 19983891";"Wolters Kluwer Medknow Publications";Yes;No;0,257;Q3;25;164;406;2316;242;352;0,55;14,12;35,42;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2002, 2005-2026";"Pediatrics, Perinatology and Child Health (Q3); Surgery (Q3)";"Medicine" +18924;15963;"Journal of Medical Humanities";journal;"15733645, 10413545";"Springer New York";No;No;0,257;Q3;37;108;152;3201;141;131;0,73;29,64;65,56;0;United States;Northern America;"Springer New York";"1989-2026";"Health Policy (Q3); Health (social science) (Q3)";"Medicine; Social Sciences" +18925;21100780545;"Linye Kexue/Scientia Silvae Sinicae";journal;"10017488";"Chinese Society of Forestry";No;No;0,257;Q3;20;246;580;13083;695;580;1,21;53,18;37,15;0;China;Asiatic Region;"Chinese Society of Forestry";"2016-2026";"Forestry (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +18926;21101045746;"Lithosphere (Russian Federation)";journal;"16819004, 2500302X";"AN Zavaritsky Institute of Geology and Geochemistry";Yes;Yes;0,257;Q3;7;80;172;3666;85;172;0,54;45,83;45,61;0;Russian Federation;Eastern Europe;"AN Zavaritsky Institute of Geology and Geochemistry";"2019-2025";"Geochemistry and Petrology (Q3); Geology (Q3); Geophysics (Q3); Stratigraphy (Q3)";"Earth and Planetary Sciences" +18927;24578;"Mathematical Medicine and Biology";journal;"14778599, 14778602";"Oxford University Press";No;No;0,257;Q3;52;20;47;899;49;47;0,94;44,95;22,00;0;United Kingdom;Western Europe;"Oxford University Press";"1984-1999, 2001-2025";"Applied Mathematics (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Modeling and Simulation (Q3); Pharmacology (Q3); Neuroscience (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Immunology and Microbiology; Mathematics; Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +18928;19888;"Medical Letter on Drugs and Therapeutics";journal;"0025732X, 15232859";"Medical Letter Inc.";No;No;0,257;Q3;22;168;425;1030;223;306;0,60;6,13;0,00;1;United States;Northern America;"Medical Letter Inc.";"1965-2026";"Medicine (miscellaneous) (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +18929;20284;"Mikrobiyoloji Bulteni";journal;"03749096";"Ankara Microbiology Society";No;No;0,257;Q3;27;43;162;1139;140;162;0,96;26,49;56,73;0;Turkey;Middle East;"Ankara Microbiology Society";"1973-2026";"Immunology and Microbiology (miscellaneous) (Q3); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Microbiology (medical) (Q4)";"Immunology and Microbiology; Medicine" +18930;21100967718;"Nanomedicine Research Journal";journal;"24767123, 24763489";"Tehran University of Medical Sciences";Yes;Yes;0,257;Q3;27;50;110;2540;191;110;1,33;50,80;55,05;0;Iran;Middle East;"Tehran University of Medical Sciences";"2016-2025";"Biotechnology (Q3); Internal Medicine (Q3); Pharmacology (medical) (Q3); Biochemistry (Q4); Bioengineering (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Medicine" +18931;19900193636;"Open Sports Sciences Journal";journal;"1875399X";"Bentham Science Publishers";Yes;No;0,257;Q3;19;16;44;672;45;42;0,91;42,00;32,35;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2009-2010, 2012-2025";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine" +18932;21603;"Periodica Polytechnica Mechanical Engineering";journal;"1587379X, 03246051";"Budapest University of Technology and Economics";Yes;Yes;0,257;Q3;29;40;119;1269;172;119;1,43;31,73;22,33;0;Hungary;Eastern Europe;"Budapest University of Technology and Economics";"1969-1992, 1994-2025";"Mechanical Engineering (Q3)";"Engineering" +18933;18766;"Petroleum Chemistry";journal;"15556239, 09655441";"Pleiades Publishing";No;No;0,257;Q3;38;118;389;4830;472;389;1,18;40,93;45,45;0;United States;Northern America;"Pleiades Publishing";"1991-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Geochemistry and Petrology (Q3)";"Chemical Engineering; Chemistry; Earth and Planetary Sciences; Energy" +18934;11600153828;"Psihologijske Teme";journal;"13320742";"University of Rijeka";Yes;Yes;0,257;Q3;27;29;103;1651;68;100;0,83;56,93;62,65;0;Croatia;Eastern Europe;"University of Rijeka";"2009-2025";"Clinical Psychology (Q3); Applied Psychology (Q4); Social Psychology (Q4)";"Psychology" +18935;21101067152;"Seminaire Lotharingien de Combinatoire";journal;"12864889";"Faculty of Mathematics, University of Vienna";No;No;0,257;Q3;7;0;290;0;52;290;0,16;0,00;0,00;0;Austria;Western Europe;"Faculty of Mathematics, University of Vienna";"2019-2024";"Discrete Mathematics and Combinatorics (Q3)";"Mathematics" +18936;21100867371;"Sleep Medicine Research";journal;"20939175, 22338853";"Korean Society of Sleep Medicine";Yes;Yes;0,257;Q3;11;40;112;1247;93;112;0,93;31,18;42,86;0;South Korea;Asiatic Region;"Korean Society of Sleep Medicine";"2018-2025";"Pulmonary and Respiratory Medicine (Q3); Neurology (Q4); Neurology (clinical) (Q4); Physiology (medical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience" +18937;21100860542;"South Asian Journal of Macroeconomics and Public Finance";journal;"22779787, 23210273";"SAGE Publications Ltd";No;No;0,257;Q3;12;14;31;487;39;28;1,24;34,79;25,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2012-2026";"Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +18938;15592;"Technisches Messen";journal;"01718096, 21967113";"Walter de Gruyter GmbH";No;No;0,257;Q3;27;79;279;1701;216;259;0,80;21,53;17,89;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1931-1939, 1941-1943, 1948, 1950-1953, 1956-2026";"Electrical and Electronic Engineering (Q3); Instrumentation (Q3)";"Engineering; Physics and Astronomy" +18939;19700177331;"Zeitschrift fur Neuropsychologie";journal;"1016264X";"Hogrefe Publishing GmbH & Co. KG";No;No;0,257;Q4;15;17;53;565;38;48;1,06;33,24;70,59;0;Switzerland;Western Europe;"Hogrefe Publishing GmbH & Co. KG";"1999-2003, 2010-2025";"Cognitive Neuroscience (Q4); Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience; Psychology" +18940;21100388306;"Accounting Historians Journal";journal;"01484184, 23274468";"American Accounting Association";No;No;0,256;Q1;29;18;55;1351;33;49;0,62;75,06;38,46;0;United States;Northern America;"American Accounting Association";"1974-2025";"History (Q1); Accounting (Q3)";"Arts and Humanities; Business, Management and Accounting" +18941;19700173138;"Archivo Espanol de Arqueologia";journal;"00666742, 19883110";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,256;Q1;12;1;48;51;20;48;0,37;51,00;33,33;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2009-2025";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +18942;14667;"Diplomatic History";journal;"14677709, 01452096";"Oxford University Press";No;No;0,256;Q1;47;25;83;2925;37;82;0,37;117,00;33,33;0;United Kingdom;Western Europe;"Oxford University Press";"1977-2026";"History (Q1)";"Arts and Humanities" +18943;16600154701;"Interpretation- Journal of Bible and Theology";journal;"2159340X, 00209643";"SAGE Publications Inc.";No;No;0,256;Q1;19;27;161;480;139;130;0,39;17,78;19,05;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1952, 1965-1966, 1970-1974, 1976-1988, 1993-2026";"Religious Studies (Q1)";"Arts and Humanities" +18944;15860;"Journal of Contemporary History";journal;"00220094, 14617250";"SAGE Publications Ltd";No;No;0,256;Q1;47;64;119;3807;99;113;0,77;59,48;53,42;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1966-1990, 1993-2026";"Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +18945;19700194015;"Religion and Education";journal;"15507394, 19498381";"Taylor and Francis Ltd.";No;No;0,256;Q1;16;15;66;616;57;49;0,73;41,07;71,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Religious Studies (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +18946;19700175179;"Estudios Constitucionales";journal;"07185200, 07180195";"Universidad de Talca";Yes;Yes;0,256;Q2;18;0;104;0;54;96;0,46;0,00;0,00;0;Chile;Latin America;"Universidad de Talca";"2009-2024";"Law (Q2); Sociology and Political Science (Q3)";"Social Sciences" +18947;145590;"Folia Linguistica";journal;"01654004, 16147308";"De Gruyter Mouton";No;No;0,256;Q2;32;84;94;4871;63;93;0,73;57,99;53,28;0;Germany;Western Europe;"De Gruyter Mouton";"1967-1971, 1973, 1975-1995, 1997-2026";"Linguistics and Language (Q2)";"Social Sciences" +18948;17600155317;"Revista Brasileira de Linguistica Aplicada";journal;"16760786, 19846398";"Universidade de Minas Gerais";Yes;Yes;0,256;Q2;10;46;119;1974;74;112;0,38;42,91;67,16;0;Brazil;Latin America;"Universidade de Minas Gerais";"2017-2025";"Linguistics and Language (Q2)";"Social Sciences" +18949;5800207752;"Zeitschrift fur Sprachwissenschaft";journal;"16133706, 07219067";"De Gruyter Mouton";Yes;Yes;0,256;Q2;24;0;52;0;38;52;0,51;0,00;0,00;0;Germany;Western Europe;"De Gruyter Mouton";"1982-2024";"Linguistics and Language (Q2)";"Social Sciences" +18950;21100444341;"Advanced Electromagnetics";journal;"21190275";"Advanced Electromagnetics";Yes;Yes;0,256;Q3;23;21;90;627;112;90;1,29;29,86;20,83;0;France;Western Europe;"Advanced Electromagnetics";"2012-2025";"Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Radiation (Q3)";"Engineering; Materials Science; Physics and Astronomy" +18951;21100892891;"Applied Marketing Analytics";journal;"20547544, 20547552";"Henry Stewart Publications";No;No;0,256;Q3;8;33;114;931;90;101;0,85;28,21;22,73;0;United Kingdom;Western Europe;"Henry Stewart Publications";"2018-2025";"Marketing (Q3); Strategy and Management (Q3); Statistics, Probability and Uncertainty (Q4)";"Business, Management and Accounting; Decision Sciences" +18952;100147301;"CESifo Economic Studies";journal;"1610241X, 16127501";"Oxford University Press";No;No;0,256;Q3;38;0;56;0;47;55;0,73;0,00;0,00;0;United Kingdom;Western Europe;"Oxford University Press";"2005-2024";"Economics and Econometrics (Q3); Geography, Planning and Development (Q3)";"Economics, Econometrics and Finance; Social Sciences" +18953;21100829916;"Chernye Metally";journal;"01320890, 24140104";"Ore and Metals Publishing house";No;No;0,256;Q3;17;148;468;3317;222;466;0,55;22,41;31,45;0;Russian Federation;Eastern Europe;"Ore and Metals Publishing house";"2016-2025";"Metals and Alloys (Q3)";"Materials Science" +18954;21100855735;"Communications for Statistical Applications and Methods";journal;"22877843, 23834757";"Korean Statistical Society";Yes;No;0,256;Q3;15;43;135;1139;119;135;1,10;26,49;30,49;0;South Korea;Asiatic Region;"Korean Statistical Society";"2015, 2017-2025";"Applied Mathematics (Q3); Finance (Q3); Modeling and Simulation (Q3); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +18955;18800156720;"Dissolution Technologies";journal;"1521298X";"Dissolution Technologies Inc";No;No;0,256;Q3;39;20;77;507;73;74;0,92;25,35;36,11;0;United States;Northern America;"Dissolution Technologies Inc";"1996-2025";"Pharmaceutical Science (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +18956;21100834525;"Gruppe. Interaktion. Organisation. Zeitschrift fur Angewandte Organisationspsychologie";journal;"23666145, 23666218";"Springer Fachmedien Wiesbaden GmbH";No;No;0,256;Q3;20;70;157;3154;154;141;1,11;45,06;56,88;0;Germany;Western Europe;"Springer Fachmedien Wiesbaden GmbH";"2016-2026";"Education (Q3); Organizational Behavior and Human Resource Management (Q3); Applied Psychology (Q4); Developmental and Educational Psychology (Q4); Social Psychology (Q4)";"Business, Management and Accounting; Psychology; Social Sciences" +18957;4700152725;"International Journal of Astrobiology";journal;"14735504, 14753006";"Cambridge University Press";No;No;0,256;Q3;45;28;94;1909;84;93;0,97;68,18;40,67;0;United Kingdom;Western Europe;"Cambridge University Press";"2002-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Physics and Astronomy (miscellaneous) (Q3); Space and Planetary Science (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Physics and Astronomy" +18958;21101048938;"International Journal of Dermatology and Venereology";journal;"26418746, 20965540";"Wolters Kluwer Health";Yes;Yes;0,256;Q3;12;49;208;1170;131;198;0,38;23,88;50,73;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2019-2026";"Dermatology (Q3); Infectious Diseases (Q3)";"Medicine" +18959;21100830716;"International Journal on Energy Conversion";journal;"22815295, 25332910";"Praise Worthy Prize S.r.l";No;No;0,256;Q3;15;20;75;771;120;75;1,94;38,55;13,11;0;Italy;Western Europe;"Praise Worthy Prize S.r.l";"2017-2025";"Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Environmental Engineering (Q3); Fuel Technology (Q3); Nuclear Energy and Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering; Environmental Science" +18960;21101141752;"Iraqi National Journal of Earth Science";journal;"16823222, 26642816";"University of Mosul College of Science";Yes;No;0,256;Q3;7;121;92;3972;120;92;1,19;32,83;24,77;0;Iraq;Middle East;"University of Mosul College of Science";"2019-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Geochemistry and Petrology (Q3); Geology (Q3); Stratigraphy (Q3)";"Earth and Planetary Sciences" +18961;14044;"Israel Medical Association Journal";journal;"15651088";"Israel Medical Association";Yes;No;0,256;Q3;65;154;545;2480;346;489;0,55;16,10;34,89;0;Israel;Middle East;"Israel Medical Association";"1999-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +18962;21101065891;"Journal of Air Pollution and Health";journal;"24763071";"Tehran University of Medical Sciences";Yes;Yes;0,256;Q3;13;31;96;1299;127;96;1,08;41,90;35,51;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2025";"Pollution (Q3); Global and Planetary Change (Q4); Health, Toxicology and Mutagenesis (Q4)";"Environmental Science" +18963;21101121574;"Journal of Housing Research";journal;"26911337, 10527001";"Informa UK Limited";No;No;0,256;Q3;28;16;35;813;41;33;0,95;50,81;21,88;0;United Kingdom;Western Europe;"Informa UK Limited";"1998-2004, 2007-2025";"Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Urban Studies (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +18964;21100830705;"Journal of Information Technology Management";journal;"20085893, 24235059";"University of Tehran";Yes;Yes;0,256;Q3;22;52;179;2511;382;178;2,02;48,29;38,73;0;Iran;Middle East;"University of Tehran";"2017-2025";"Information Systems (Q3); Information Systems and Management (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +18965;21101197188;"Korean Journal of Community Nutrition";journal;"29513146";"Korean Society of Community Nutrition";Yes;No;0,256;Q3;4;41;105;1366;75;104;0,64;33,32;74,74;0;South Korea;Asiatic Region;"Korean Society of Community Nutrition";"2022-2025";"Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)";"Medicine; Nursing" +18966;11700154705;"Nuclear Physics and Atomic Energy";journal;"1818331X, 20740565";"National Academy of Sciences of Ukraine";Yes;Yes;0,256;Q3;12;42;121;982;59;121;0,47;23,38;34,09;0;Ukraine;Eastern Europe;"National Academy of Sciences of Ukraine";"2008-2025";"Nuclear and High Energy Physics (Q3)";"Physics and Astronomy" +18967;19983;"Pakistan Journal of Botany";journal;"05563321";"Pakistan Botanical Society";Yes;No;0,256;Q3;81;245;788;11706;893;786;1,21;47,78;36,25;0;Pakistan;Asiatic Region;"Pakistan Botanical Society";"1978, 1984-1986, 1996-2026";"Plant Science (Q3)";"Agricultural and Biological Sciences" +18968;21101168002;"Revista Mexicana de Ciencias Agricolas";journal;"20070934, 20079230";"National Institute of Forestry, Agricultural and Livestock Research";No;Yes;0,256;Q3;8;166;378;4060;336;378;0,64;24,46;29,43;0;Mexico;Latin America;"National Institute of Forestry, Agricultural and Livestock Research";"2011, 2022-2025";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +18969;5600152992;"Sociologija";journal;"00380318";"Sociological Association of Serbia";Yes;Yes;0,256;Q3;12;27;84;1512;59;84;0,56;56,00;53,33;0;Serbia;Eastern Europe;"Sociological Association of Serbia";"2007-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +18970;89762;"Turkish Journal of Veterinary and Animal Sciences";journal;"13036181, 13000128";"TUBITAK";Yes;No;0,256;Q3;46;21;181;775;170;181;0,89;36,90;36,79;1;Turkey;Middle East;"TUBITAK";"1996-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +18971;21100857101;"Klinik Psikiyatri Dergisi";journal;"21467153, 13020099";"ANP Publishing";Yes;No;0,256;Q4;13;46;130;1580;77;117;0,68;34,35;63,37;0;Turkey;Middle East;"ANP Publishing";"2017-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +18972;20300195061;"IEEE International Conference on Electro Information Technology";conference and proceedings;"21540357, 21540373";"IEEE Computer Society";No;No;0,256;-;33;108;292;2174;402;289;1,36;20,13;23,93;0;United States;Northern America;"IEEE Computer Society";"2011-2025";"Computer Science Applications; Control and Systems Engineering; Electrical and Electronic Engineering; Information Systems";"Computer Science; Engineering" +18973;21101196070;"International Conference on Thermal Engineering";conference and proceedings;"25629034";"Toronto Metropolitan University";No;No;0,256;-;7;67;154;868;91;152;0,59;12,96;26,95;0;Canada;Northern America;"Toronto Metropolitan University";"2019, 2023-2025";"Energy Engineering and Power Technology; Energy (miscellaneous); Mechanical Engineering; Renewable Energy, Sustainability and the Environment";"Energy; Engineering" +18974;11600153441;"TDR - The Drama Review - A Journal of Performance Studies";journal;"10542043, 15314715";"Cambridge University Press";No;No;0,255;Q1;34;32;149;1212;77;142;0,59;37,88;53,85;0;United States;Northern America;"Cambridge University Press";"2002-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +18975;145331;"Brazilian Archives of Biology and Technology";journal;"16784324, 15168913";"Instituto de Tecnologia do Parana";Yes;Yes;0,255;Q2;71;128;534;5981;690;534;1,16;46,73;45,36;0;Brazil;Latin America;"Instituto de Tecnologia do Parana";"1998-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +18976;21101197263;"Journal of Modern Information";journal;"10080821";"";No;No;0,255;Q2;10;172;547;7746;423;542;0,87;45,03;46,24;0;China;Asiatic Region;"";"2019-2026";"Library and Information Sciences (Q2)";"Social Sciences" +18977;21100795207;"Journal of Telecommunications and the Digital Economy";journal;"22031693";"Telecommunications Association Inc.";No;No;0,255;Q2;17;43;155;2053;206;153;1,21;47,74;38,55;0;Australia;Pacific Region;"Telecommunications Association Inc.";"2015-2025";"Media Technology (Q2); Communication (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Computer Science; Engineering; Social Sciences" +18978;21100365076;"University of Pennsylvania Journal of International Law";journal;"19380283";"University of Pennsylvania Law School";No;No;0,255;Q2;33;0;65;0;46;65;0,66;0,00;0,00;0;United States;Northern America;"University of Pennsylvania Law School";"2014-2024";"Law (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance; Social Sciences" +18979;21100863705;"American Entomologist";journal;"21559902, 10462821";"Oxford University Press";No;No;0,255;Q3;50;45;146;452;40;98;0,22;10,04;50,70;0;United Kingdom;Western Europe;"Oxford University Press";"1996-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +18980;25145;"Applications of Mathematics";journal;"15729109, 08627940";"Springer Science and Business Media Deutschland GmbH";No;No;0,255;Q3;34;40;126;1227;114;121;0,90;30,68;19,75;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1997-2026";"Applied Mathematics (Q3)";"Mathematics" +18981;21100199113;"Asian Journal of Business and Accounting";journal;"21803137, 19854064";"Faculty of Business and Economics,University of Malaya";No;No;0,255;Q3;21;10;65;863;100;60;1,37;86,30;20,00;0;Malaysia;Asiatic Region;"Faculty of Business and Economics,University of Malaya";"2008-2026";"Accounting (Q3); Business and International Management (Q3)";"Business, Management and Accounting" +18982;12300154909;"Baltic Journal of Road and Bridge Engineering";journal;"1822427X, 18224288";"Riga Technical University";Yes;No;0,255;Q3;28;19;102;806;128;102;1,15;42,42;28,00;0;Lithuania;Eastern Europe;"Riga Technical University";"2008-2025";"Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +18983;21101162671;"Bulletin of the Chinese Ceramic Society";journal;"10011625";"";No;No;0,255;Q3;17;268;1449;8853;1355;1448;1,00;33,03;29,10;0;China;Asiatic Region;"";"2019-2025";"Chemical Engineering (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Chemical Engineering; Engineering; Materials Science" +18984;21100314709;"Decision Science Letters";journal;"19295804, 19295812";"Growing Science";Yes;Yes;0,255;Q3;35;87;190;3968;327;189;1,50;45,61;32,18;0;Canada;Northern America;"Growing Science";"2012-2026";"Decision Sciences (miscellaneous) (Q3)";"Decision Sciences" +18985;14089;"Developing Economies";journal;"00121533, 17461049";"Wiley-Blackwell";No;No;0,255;Q3;39;16;30;723;32;29;1,00;45,19;23,68;0;United States;Northern America;"Wiley-Blackwell";"1962-2026";"Development (Q3); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +18986;21101022737;"Doxa Comunicacion";journal;"1696019X, 23863978";"CEU Ediciones";Yes;Yes;0,255;Q3;13;50;129;2513;127;129;1,01;50,26;57,94;0;Spain;Western Europe;"CEU Ediciones";"2019-2026";"Communication (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +18987;27902;"Family Practice Management";journal;"10695648, 15311929";"American Academy of Family Physicians";No;No;0,255;Q3;33;56;156;555;87;68;0,42;9,91;37,93;0;United States;Northern America;"American Academy of Family Physicians";"1997-2026";"Family Practice (Q3); Health Policy (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +18988;144897;"Guangxue Jingmi Gongcheng/Optics and Precision Engineering";journal;"1004924X";"Chinese Academy of Sciences";No;No;0,255;Q3;42;302;900;8429;1060;900;1,19;27,91;31,21;0;China;Asiatic Region;"Chinese Academy of Sciences";"2005-2026";"Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Materials Science; Physics and Astronomy" +18989;15169;"Hydrobiological Journal";journal;"00188166";"Begell House Inc.";No;No;0,255;Q3;16;43;127;1733;81;127;0,60;40,30;46,15;0;United States;Northern America;"Begell House Inc.";"1974-1976, 1978-1983, 1987-2026";"Aquatic Science (Q3); Ecology (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +18990;25795;"International Journal";journal;"2052465X, 00207020";"Canadian Institute of International Affairs";No;No;0,255;Q3;34;39;124;1050;131;96;0,86;26,92;42,55;0;Canada;Northern America;"Canadian Institute of International Affairs";"1981, 1995-2026";"Political Science and International Relations (Q3)";"Social Sciences" +18991;19700180906;"International Journal of Economic Theory";journal;"17427355, 17427363";"Wiley-Blackwell";No;No;0,255;Q3;15;20;99;798;81;97;0,88;39,90;27,27;0;United States;Northern America;"Wiley-Blackwell";"2006, 2009-2026";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +18992;21100247039;"International Journal of Electronic Commerce Studies";journal;"20739729, 24108588";"Academy of Taiwan Information Systems Research";Yes;No;0,255;Q3;18;16;68;1177;106;68;1,41;73,56;45,83;0;Taiwan;Asiatic Region;"Academy of Taiwan Information Systems Research";"2013-2025";"Computer Science Applications (Q3)";"Computer Science" +18993;19700186859;"International Journal of Gaming and Computer-Mediated Simulations";journal;"19423896, 19423888";"IGI Global Publishing";No;No;0,255;Q3;25;13;32;548;58;32;1,86;42,15;28,57;0;United States;Northern America;"IGI Global Publishing";"2009-2025";"Computer Science Applications (Q3)";"Computer Science" +18994;24310;"International Journal of Pattern Recognition and Artificial Intelligence";journal;"02180014, 17936381";"World Scientific Publishing Co. Pte Ltd";No;No;0,255;Q3;66;191;605;7004;736;604;1,20;36,67;35,91;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1995-2026";"Artificial Intelligence (Q3); Computer Vision and Pattern Recognition (Q3); Software (Q4)";"Computer Science" +18995;21100824666;"Iranian Rehabilitation Journal";journal;"17353602, 17353610";"University of Social Welfare and Rehabilitation Sciences";Yes;No;0,255;Q3;16;38;219;1245;180;213;0,80;32,76;46,15;0;Iran;Middle East;"University of Social Welfare and Rehabilitation Sciences";"2003-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3); Psychiatry and Mental Health (Q4)";"Health Professions; Medicine" +18996;21101336775;"JAAD Reviews";journal;"29501989";"Elsevier Inc.";Yes;No;0,255;Q3;4;105;46;3238;43;44;0,93;30,84;55,45;0;United States;Northern America;"Elsevier Inc.";"2024-2026";"Dermatology (Q3)";"Medicine" +18997;26046;"Journal of Circuits, Systems and Computers";journal;"17936454, 02181266";"World Scientific";No;No;0,255;Q3;46;405;993;14851;1381;993;1,46;36,67;33,99;0;Singapore;Asiatic Region;"World Scientific";"1992, 1996-2000, 2002-2026";"Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3)";"Computer Science; Engineering" +18998;21101024181;"Journal of Microscopy and Ultrastructure";journal;"2213879X, 22138803";"Wolters Kluwer Medknow Publications";No;No;0,255;Q3;12;34;117;997;96;117;0,65;29,32;54,55;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2014, 2019-2025";"Electronic, Optical and Magnetic Materials (Q3); Instrumentation (Q3); Nephrology (Q3); Pathology and Forensic Medicine (Q3)";"Materials Science; Medicine; Physics and Astronomy" +18999;21101284609;"Journal of Safety and Environment";journal;"10096094";"";No;No;0,255;Q3;10;452;1052;11926;1129;1052;1,07;26,38;38,00;0;China;Asiatic Region;"";"2023-2026";"Engineering (miscellaneous) (Q3); Safety, Risk, Reliability and Quality (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3); Chemical Health and Safety (Q4)";"Chemical Engineering; Engineering; Environmental Science" +19000;21101210382;"Journal of Transportation Engineering and Information";journal;"16724747";"Southwest Jiaotong University";No;No;0,255;Q3;10;59;160;2331;216;160;1,28;39,51;36,67;0;China;Asiatic Region;"Southwest Jiaotong University";"2019-2026";"Artificial Intelligence (Q3); Civil and Structural Engineering (Q3); Management Science and Operations Research (Q3); Transportation (Q4)";"Computer Science; Decision Sciences; Engineering; Social Sciences" +19001;12377;"Keikinzoku/Journal of Japan Institute of Light Metals";journal;"04515994";"Keikinzoku Gakkai/Japan Institute of Light Metals";No;No;0,255;Q3;27;52;208;1220;112;207;0,61;23,46;16,43;0;Japan;Asiatic Region;"Keikinzoku Gakkai/Japan Institute of Light Metals";"1952-2026";"Materials Chemistry (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)";"Engineering; Materials Science" +19002;17900156724;"Latvian Journal of Physics and Technical Sciences";journal;"08688257";"De Gruyter Open Ltd";Yes;No;0,255;Q3;17;19;133;554;148;133;1,33;29,16;46,03;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2008-2025";"Engineering (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Engineering; Physics and Astronomy" +19003;17833;"Medical Hypotheses";journal;"03069877, 15322777";"Churchill Livingstone";No;No;0,255;Q3;118;204;511;7946;441;434;0,96;38,95;37,28;0;United Kingdom;Western Europe;"Churchill Livingstone";"1975-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +19004;21100781903;"Mir Rossii";journal;"18110398, 1811038X";"National Research University Higher School of Economics (HSE University)";Yes;No;0,255;Q3;13;33;99;1437;57;99;0,57;43,55;47,17;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2016-2025";"Demography (Q3); Development (Q3); Economics and Econometrics (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +19005;29810;"Nanjing Hangkong Hangtian Daxue Xuebao/Journal of Nanjing University of Aeronautics and Astronautics";journal;"10052615";"Nanjing University of Aeronautics an Astronautics";Yes;No;0,255;Q3;24;99;361;2998;368;361;0,85;30,28;29,46;0;China;Asiatic Region;"Nanjing University of Aeronautics an Astronautics";"1994, 2001-2025";"Aerospace Engineering (Q3)";"Engineering" +19006;21101038803;"Nanosystems: Physics, Chemistry, Mathematics";journal;"22208054, 23057971";"ITMO University";No;No;0,255;Q3;16;101;257;3501;286;257;1,19;34,66;35,64;0;Russian Federation;Eastern Europe;"ITMO University";"2014, 2019-2025";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Materials Science; Mathematics; Physics and Astronomy" +19007;21101210873;"Ophthalmologie";journal;"27317218, 2731720X";"Springer Medizin";No;No;0,255;Q3;45;191;645;3778;311;438;0,43;19,78;37,63;0;Germany;Western Europe;"Springer Medizin";"1993-2026";"Ophthalmology (Q3)";"Medicine" +19008;21100867463;"Physiotherapy Quarterly";journal;"25444395";"Wroclaw University of Health and Sport Sciences";Yes;No;0,255;Q3;13;57;179;1976;145;177;0,76;34,67;47,73;0;Poland;Eastern Europe;"Wroclaw University of Health and Sport Sciences";"2017-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions" +19009;5800208171;"Psico-USF";journal;"21753563";"Universidade Sao Francisco";Yes;Yes;0,255;Q3;13;32;134;1368;84;134;0,58;42,75;51,81;0;Brazil;Latin America;"Universidade Sao Francisco";"2017-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +19010;35102;"Psikhologicheskii Zhurnal";journal;"02059592";"Russian Academy of Sciences";No;No;0,255;Q3;18;86;204;2068;103;202;0,50;24,05;61,72;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"1984, 1996-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +19011;28246;"Solar System Research";journal;"00380946, 16083423";"Pleiades Publishing";No;No;0,255;Q3;35;98;196;3266;162;195;0,85;33,33;29,83;0;United States;Northern America;"Pleiades Publishing";"1969-1971, 1990, 1996-2026";"Astronomy and Astrophysics (Q3); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Physics and Astronomy" +19012;21100900137;"Transactions on Combinatorics";journal;"22518657, 22518665";"University of Isfahan";Yes;Yes;0,255;Q3;9;21;71;437;35;71;0,54;20,81;29,55;0;Iran;Middle East;"University of Isfahan";"2016-2025";"Computational Theory and Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3)";"Computer Science; Mathematics" +19013;19987;"Zeitschrift fur Psychosomatische Medizin und Psychotherapie";journal;"14383608";"Vandenhoeck and Ruprecht GmbH and Co. KG";No;No;0,255;Q3;32;31;89;690;50;72;0,27;22,26;42,86;0;Germany;Western Europe;"Vandenhoeck and Ruprecht GmbH and Co. KG";"1996-2026";"Clinical Psychology (Q3); Medicine (miscellaneous) (Q3); Applied Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +19014;21100200410;"Mathematical Methods of Statistics";journal;"19348045, 10665307";"Pleiades Publishing";No;No;0,255;Q4;18;24;47;691;32;47;0,56;28,79;20,00;0;United States;Northern America;"Pleiades Publishing";"2007-2025";"Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics" +19015;26483;"Russian Journal of Bioorganic Chemistry";journal;"10681620, 1608330X";"";No;No;0,255;Q4;35;239;585;11423;1098;580;1,98;47,79;47,74;0;Russian Federation;Eastern Europe;"";"1996-2026";"Biochemistry (Q4); Organic Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +19016;110565;"IEEE International Conference on Fuzzy Systems";conference and proceedings;"10987584";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,255;-;70;178;416;3883;373;407;0,81;21,81;23,66;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992, 1994-2015, 2017-2025";"Applied Mathematics; Artificial Intelligence; Software; Theoretical Computer Science";"Computer Science; Mathematics" +19017;21000195610;"International System on Chip Conference";conference and proceedings;"21641676, 21641706";"IEEE Computer Society";No;No;0,255;-;21;97;196;1741;176;187;0,86;17,95;20,97;0;United States;Northern America;"IEEE Computer Society";"2011-2014, 2016-2025";"Control and Systems Engineering; Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering" +19018;20500195102;"Investigaciones de Historia Economica";journal;"23403373, 16986989";"Spanish Association of Economic History (SAEC)";No;No;0,254;Q1;16;23;50;1217;32;49;0,69;52,91;41,67;0;Spain;Western Europe;"Spanish Association of Economic History (SAEC)";"2005, 2011-2025";"History (Q1); Economics and Econometrics (Q3)";"Arts and Humanities; Economics, Econometrics and Finance" +19019;5600154343;"Iranian Studies";journal;"00210862, 14754819";"Cambridge University Press";No;No;0,254;Q1;30;62;125;3447;75;113;0,55;55,60;31,58;0;United Kingdom;Western Europe;"Cambridge University Press";"1967-2026";"Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities; Social Sciences" +19020;21100860026;"Journal of Youth and Theology";journal;"24055093, 17410819";"Brill Academic Publishers";No;No;0,254;Q1;8;23;44;691;9;38;0,22;30,04;54,29;0;Netherlands;Western Europe;"Brill Academic Publishers";"2002-2025";"Religious Studies (Q1)";"Arts and Humanities" +19021;16000154798;"Kritika";journal;"1531023X, 15385000";"Slavica Publishers";No;No;0,254;Q1;32;24;145;2071;41;134;0,37;86,29;61,90;0;United States;Northern America;"Slavica Publishers";"2002-2025";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +19022;20768;"Kronika";journal;"00234923";"Zgodovinsko drustvo za Slovenijo, sekcija za lokalno zgodovino";No;No;0,254;Q1;5;39;117;1774;23;114;0,18;45,49;50,00;0;Slovenia;Eastern Europe;"Zgodovinsko drustvo za Slovenijo, sekcija za lokalno zgodovino";"1975-1976, 1978-1987, 1999-2001, 2016-2025";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +19023;19700182410;"African Journal of Library Archives and Information Science";journal;"07954778";"Archlib and Information Services Ltd";No;No;0,254;Q2;16;35;51;1262;66;51;1,65;36,06;33,87;0;Nigeria;Africa;"Archlib and Information Services Ltd";"2008-2012, 2014-2025";"Library and Information Sciences (Q2)";"Social Sciences" +19024;21101133219;"Cognitive Linguistic Studies";journal;"22138722, 22138730";"John Benjamins Publishing Company";No;No;0,254;Q2;9;15;54;887;34;53;0,51;59,13;38,89;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +19025;28955;"Justice System Journal";journal;"0098261X, 23277556";"Taylor and Francis Ltd.";No;No;0,254;Q2;27;0;43;0;31;35;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988, 1990-1991, 1993-2022";"Law (Q2)";"Social Sciences" +19026;21101287736;"Lege Artis: language yesterday, today, tomorrow";journal;"24538035";"University of Ss Cyril and Methodius in Trnava";No;No;0,254;Q2;4;24;33;948;27;32;0,82;39,50;52,94;0;Slovakia;Eastern Europe;"University of Ss Cyril and Methodius in Trnava";"2023-2025";"Linguistics and Language (Q2)";"Social Sciences" +19027;21101048855;"Multimodal Communication";journal;"22306579, 22306587";"De Gruyter Mouton";No;No;0,254;Q2;15;30;58;1412;74;57;1,24;47,07;64,44;0;Germany;Western Europe;"De Gruyter Mouton";"2012-2026";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +19028;21101329574;"Studies in Language Assessment";journal;"26535335";"Association for Language Testing and Assessment of Australia and New Zealand (ALTAANZ)";Yes;No;0,254;Q2;5;13;43;573;37;40;0,67;44,08;57,89;0;Australia;Pacific Region;"Association for Language Testing and Assessment of Australia and New Zealand (ALTAANZ)";"2021-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +19029;4800152316;"Advanced Emergency Nursing Journal";journal;"19314493, 19314485";"Lippincott Williams and Wilkins";No;No;0,254;Q3;26;57;151;763;124;138;0,56;13,39;66,67;0;United States;Northern America;"Lippincott Williams and Wilkins";"2006-2026";"Emergency Medicine (Q3); Emergency Nursing (Q3)";"Medicine; Nursing" +19030;19565;"Anales del Sistema Sanitario de Navarra";journal;"11376627, 23403527";"Gobierno de Navarra";Yes;Yes;0,254;Q3;28;53;136;1377;140;107;0,84;25,98;59,02;0;Spain;Western Europe;"Gobierno de Navarra";"1999-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +19031;21100877196;"Annals of Maxillofacial Surgery";journal;"22310746, 22493816";"Wolters Kluwer Medknow Publications";No;No;0,254;Q3;22;54;168;971;148;161;0,68;17,98;39,20;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2018-2025";"Oral Surgery (Q3); Surgery (Q3)";"Dentistry; Medicine" +19032;25599;"Beijing Linye Daxue Xuebao/Journal of Beijing Forestry University";journal;"10001522";"Beijing Forestry University";No;No;0,254;Q3;23;106;535;3863;535;535;0,95;36,44;43,69;0;China;Asiatic Region;"Beijing Forestry University";"1998-2025";"Forestry (Q3)";"Agricultural and Biological Sciences" +19033;21100211763;"Boletin de la Sociedad Argentina de Botanica";journal;"18512372, 0373580X";"Sociedad Argentina de Botanica";Yes;Yes;0,254;Q3;21;17;99;971;74;98;0,70;57,12;60,34;0;Argentina;Latin America;"Sociedad Argentina de Botanica";"2006-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +19034;145635;"Candollea";journal;"03732967";"Editions des Conservatoire et Jardin Botanique";No;No;0,254;Q3;22;21;53;573;32;51;0,61;27,29;31,11;0;Switzerland;Western Europe;"Editions des Conservatoire et Jardin Botanique";"2000, 2003-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +19035;96570;"Ceskoslovenska Patologie";journal;"00090611";"Czech Medical Association J.E. Purkyne";No;No;0,254;Q3;16;27;51;0;41;51;0,28;0,00;47,06;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1971-2025";"Anatomy (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +19036;18508;"Cytologia";journal;"00114545";"Japan Mendel Society";No;No;0,254;Q3;31;42;174;1412;117;164;0,55;33,62;42,86;0;Japan;Asiatic Region;"Japan Mendel Society";"1929-1944, 1947, 1949-2025";"Animal Science and Zoology (Q3); Plant Science (Q3); Cell Biology (Q4); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +19037;21100211710;"Dental Hypotheses";journal;"21558213";"Wolters Kluwer Medknow Publications";Yes;No;0,254;Q3;17;26;94;434;130;88;1,73;16,69;49,28;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2010-2025";"Dentistry (miscellaneous) (Q3)";"Dentistry" +19038;21101128137;"Engineering Proceedings";journal;"26734591";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;Yes;0,254;Q3;25;1572;3637;30386;4884;3546;1,37;19,33;29,83;1;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2020-2025";"Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3); Biomedical Engineering (Q4)";"Engineering" +19039;21101061050;"Europa XXI";journal;"14297132, 23008547";"Insitute of Geography and Spatial Organization Polish Academy of Sciences";No;No;0,254;Q3;9;2;45;113;32;42;0,63;56,50;50,00;0;Poland;Eastern Europe;"Insitute of Geography and Spatial Organization Polish Academy of Sciences";"2019-2025";"Development (Q3); Geography, Planning and Development (Q3); Political Science and International Relations (Q3); Urban Studies (Q3)";"Social Sciences" +19040;21101129709;"European Review of International Studies";journal;"21967415, 21966923";"Brill Nijhoff";No;No;0,254;Q3;14;6;44;503;41;43;0,66;83,83;37,50;0;Netherlands;Western Europe;"Brill Nijhoff";"2014-2025";"Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +19041;21100869220;"Evidence Based Care Journal";journal;"20082487, 2008370X";"Mashhad University of Medical Sciences";Yes;Yes;0,254;Q3;16;24;91;767;81;90;0,73;31,96;60,24;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2016-2025";"Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +19042;15972;"Industria Textila";journal;"12225347";"Institute National Cercetare-Dezvoltare Textiles Pielarie";No;No;0,254;Q3;22;90;270;2727;298;270;1,17;30,30;50,34;0;Romania;Eastern Europe;"Institute National Cercetare-Dezvoltare Textiles Pielarie";"1994-2025";"Business, Management and Accounting (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Polymers and Plastics (Q3)";"Business, Management and Accounting; Environmental Science; Materials Science" +19043;21100315995;"Interdisciplinary Neurosurgery: Advanced Techniques and Case Management";journal;"22147519";"Elsevier B.V.";Yes;No;0,254;Q3;23;161;611;4085;423;603;0,92;25,37;22,14;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Surgery (Q3); Neurology (clinical) (Q4)";"Medicine" +19044;21095;"International Applied Mechanics";journal;"10637095, 15738582";"Springer New York";No;No;0,254;Q3;37;48;196;991;105;196;0,66;20,65;33,33;0;United States;Northern America;"Springer New York";"1992-2025";"Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +19045;21100198209;"International Journal of Entrepreneurial Venturing";journal;"17425379, 17425360";"Inderscience";No;No;0,254;Q3;31;14;69;1275;94;69;1,09;91,07;42,11;0;Switzerland;Western Europe;"Inderscience";"2009-2025";"Business and International Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +19046;26131;"Jisuanji Xuebao/Chinese Journal of Computers";journal;"02544164";"Science Press";No;No;0,254;Q3;66;143;428;9871;721;428;1,53;69,03;32,47;0;China;Asiatic Region;"Science Press";"1998-2025";"Computer Graphics and Computer-Aided Design (Q3); Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Software (Q4)";"Computer Science" +19047;21101092535;"Journal of Chemical and Petroleum Engineering";journal;"24236721, 2423673X";"University of Tehran";Yes;Yes;0,254;Q3;9;25;72;1328;109;72;1,83;53,12;23,88;0;Iran;Middle East;"University of Tehran";"2019-2025";"Chemical Engineering (miscellaneous) (Q3); Fluid Flow and Transfer Processes (Q3); Process Chemistry and Technology (Q3); Catalysis (Q4)";"Chemical Engineering" +19048;21101121177;"Journal of Defense Analytics and Logistics";journal;"23996439, 23996447";"Emerald Publishing";Yes;Yes;0,254;Q3;9;7;25;333;46;25;2,24;47,57;8,70;0;United Kingdom;Western Europe;"Emerald Publishing";"2017-2025";"Decision Sciences (miscellaneous) (Q3); Information Systems and Management (Q3); Management Science and Operations Research (Q3); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences" +19049;21101041515;"Journal of Engineering";journal;"20513305";"John Wiley and Sons Ltd";Yes;No;0,254;Q3;2;0;1;0;2;1;0,00;0,00;0,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2019-2023";"Energy Engineering and Power Technology (Q3); Engineering (miscellaneous) (Q3); Software (Q4)";"Computer Science; Energy; Engineering" +19050;21101021717;"Journal of Image and Graphics";journal;"10068961";"";No;No;0,254;Q3;27;199;705;11559;1139;703;1,74;58,09;35,84;0;China;Asiatic Region;"";"2019-2026";"Artificial Intelligence (Q3); Computer Graphics and Computer-Aided Design (Q3); Computer Vision and Pattern Recognition (Q3); Human-Computer Interaction (Q4)";"Computer Science" +19051;5300152215;"Journal of Opioid Management";journal;"15517489, 23750146";"Weston Medical Publishing";No;No;0,254;Q3;47;53;194;1844;132;187;0,61;34,79;46,91;0;United States;Northern America;"Weston Medical Publishing";"2005-2026";"Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q3); Pharmacology (medical) (Q3)";"Medicine" +19052;19900193630;"Journal of Physical Science";journal;"16753402, 21804230";"Penerbit Universiti Sains Malaysia";Yes;No;0,254;Q3;32;10;64;418;81;64;0,98;41,80;24,14;0;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2011-2025";"Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Materials Science; Physics and Astronomy" +19053;21101037306;"Journal of Teaching English for Specific and Academic Purposes";journal;"23349182, 23349212";"University of Nis";No;No;0,254;Q3;9;53;144;1832;147;143;1,00;34,57;75,00;0;Serbia;Eastern Europe;"University of Nis";"2019-2025";"Education (Q3)";"Social Sciences" +19054;21100872186;"Journal of the Turkish Chemical Society, Section A: Chemistry";journal;"21490120";"Turkish Chemical Society";Yes;No;0,254;Q3;18;25;337;1096;459;337;1,33;43,84;54,10;0;Turkey;Middle East;"Turkish Chemical Society";"2018-2025";"Chemistry (miscellaneous) (Q3)";"Chemistry" +19055;21100884986;"Microbiology Resource Announcements";journal;"2576098X";"American Society for Microbiology";Yes;No;0,254;Q3;51;967;2451;13998;1563;2451;0,64;14,48;43,13;4;United States;Northern America;"American Society for Microbiology";"2018-2026";"Immunology and Microbiology (miscellaneous) (Q3); Genetics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +19056;13056;"Noise and Vibration Worldwide";journal;"20484062, 09574565";"SAGE Publications Inc.";No;No;0,254;Q3;21;66;146;2436;251;143;1,70;36,91;32,99;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1990-1992, 1994-2026";"Acoustics and Ultrasonics (Q3); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Materials Science; Physics and Astronomy" +19057;22131;"Ornis Fennica";journal;"00305685";"University of Helsinki";No;No;0,254;Q3;37;0;33;0;29;31;0,79;0,00;0,00;0;Finland;Western Europe;"University of Helsinki";"1979-1985, 1991-2024";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +19058;21100814522;"Papers in Physics";journal;"18524249";"Instituto de Fisica de Liquidos y Sistemas Biologicos";Yes;No;0,254;Q3;14;5;23;164;35;23;1,13;32,80;15,38;0;Argentina;Latin America;"Instituto de Fisica de Liquidos y Sistemas Biologicos";"2009-2026";"Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +19059;17500155003;"Records of Natural Products";journal;"13076167";"ACG Publications";Yes;No;0,254;Q3;48;59;242;2806;358;241;1,65;47,56;46,50;0;Turkey;Middle East;"ACG Publications";"2008-2026";"Pharmacology (Q3); Plant Science (Q3); Drug Discovery (Q4); Organic Chemistry (Q4)";"Agricultural and Biological Sciences; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +19060;17700155039;"Revista Materia";journal;"15177076";"Universidade Federal do Rio de Janeiro";Yes;Yes;0,254;Q3;30;268;645;10415;1001;643;1,83;38,86;30,98;0;Brazil;Latin America;"Universidade Federal do Rio de Janeiro";"2009-2025";"Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Chemistry; Materials Science; Physics and Astronomy" +19061;35423;"Russian Meteorology and Hydrology";journal;"10683739, 19348096";"";No;No;0,254;Q3;26;127;363;3264;206;362;0,52;25,70;49,35;0;Russian Federation;Eastern Europe;"";"1993-2025";"Fluid Flow and Transfer Processes (Q3); Water Science and Technology (Q3); Atmospheric Science (Q4)";"Chemical Engineering; Earth and Planetary Sciences; Environmental Science" +19062;21101070214;"Russian Rhinology";journal;"24118788, 08695474";"Media Sphera Publishing Group";No;No;0,254;Q3;7;52;131;1056;65;125;0,59;20,31;55,04;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2019-2025";"Otorhinolaryngology (Q3)";"Medicine" +19063;21544;"South African Journal of Chemistry";journal;"1996840X, 03794350";"South African Chemical Institute";Yes;Yes;0,254;Q3;30;15;82;769;106;82;1,28;51,27;30,77;0;South Africa;Africa;"South African Chemical Institute";"1996-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +19064;5000154402;"Thermophysics and Aeromechanics";journal;"08698643, 15318699";"Kutateladze Institute of Thermophysics SB RAS";No;No;0,254;Q3;29;46;327;1136;187;327;0,51;24,70;18,02;0;Russian Federation;Eastern Europe;"Kutateladze Institute of Thermophysics SB RAS";"2006-2025";"Aerospace Engineering (Q3); Energy Engineering and Power Technology (Q3); Modeling and Simulation (Q3); Nuclear and High Energy Physics (Q3); Radiation (Q3)";"Energy; Engineering; Mathematics; Physics and Astronomy" +19065;12040;"Welding Journal";journal;"00432296";"American Welding Society";No;No;0,254;Q3;84;103;224;1349;148;166;0,53;13,10;22,75;0;United States;Northern America;"American Welding Society";"1969-1990, 1994-2026";"Mechanical Engineering (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)";"Engineering; Materials Science" +19066;22181;"Zhongguo Jixie Gongcheng/China Mechanical Engineering";journal;"1004132X";"Chinese Mechanical Engineering Society";No;No;0,254;Q3;32;314;890;6977;1078;889;1,16;22,22;30,71;0;China;Asiatic Region;"Chinese Mechanical Engineering Society";"1993-1994, 1997-1998, 2001-2025";"Mechanical Engineering (Q3)";"Engineering" +19067;21101089664;"Human Gene";journal;"27730441";"Elsevier B.V.";No;No;0,254;Q4;33;147;363;7589;325;362;0,97;51,63;49,08;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2026";"Genetics (Q4); Genetics (clinical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +19068;21100238667;"Monoclonal Antibodies in Immunodiagnosis and Immunotherapy";journal;"21679436";"Mary Ann Liebert Inc.";No;No;0,254;Q4;44;15;119;507;78;103;0,79;33,80;39,02;0;United States;Northern America;"Mary Ann Liebert Inc.";"2013-2025";"Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +19069;21100203915;"Altorientalische Forschungen";journal;"21966761, 02328461";"Walter de Gruyter GmbH";No;No;0,253;Q1;18;14;56;884;24;54;0,35;63,14;16,67;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1975-1976, 1978-2007, 2009-2025";"Cultural Studies (Q1); History (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +19070;19700174629;"Cultura y Educacion";journal;"15784118, 11356405";"SAGE Publications Ltd";No;No;0,253;Q1;31;0;112;0;111;110;0,81;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2007-2024";"Cultural Studies (Q1); Education (Q3)";"Social Sciences" +19071;21100921069;"History Compass";journal;"14780542";"John Wiley & Sons Inc.";No;No;0,253;Q1;34;16;86;913;83;85;0,98;57,06;41,18;0;United States;Northern America;"John Wiley & Sons Inc.";"2003-2026";"History (Q1)";"Arts and Humanities" +19072;7200153167;"Phronesis";journal;"00318868, 15685284";"Brill Academic Publishers";No;No;0,253;Q1;38;18;43;999;19;42;0,28;55,50;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1957, 1959-1970, 1972-1986, 1988-1989, 1991-2026";"History (Q1); History and Philosophy of Science (Q2); Philosophy (Q2)";"Arts and Humanities" +19073;21100403445;"Rural Theology";journal;"14704994, 20421273";"Maney Publishing";No;No;0,253;Q1;10;20;50;263;21;37;0,19;13,15;52,94;0;United Kingdom;Western Europe;"Maney Publishing";"2014-2026";"Religious Studies (Q1)";"Arts and Humanities" +19074;21101091735;"European Review of Contract Law";journal;"16149939, 16149920";"Walter de Gruyter GmbH";No;No;0,253;Q2;23;19;44;1925;40;42;0,81;101,32;38,10;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2005-2025";"Law (Q2)";"Social Sciences" +19075;21101316081;"Srodowisko Mieszkaniowe";journal;"17312442, 25438700";"";No;No;0,253;Q2;4;32;97;1214;54;97;0,52;37,94;52,33;0;Germany;Western Europe;"";"2022-2025";"Architecture (Q2); Urban Studies (Q3)";"Engineering; Social Sciences" +19076;21674;"University of New South Wales Law Journal";journal;"18392881, 03130096";"University of New South Wales Law Journal";No;No;0,253;Q2;16;45;143;1166;143;126;1,04;25,91;56,34;0;Australia;Pacific Region;"University of New South Wales Law Journal";"1983, 1991, 1994, 2001-2003, 2018-2025";"Law (Q2); Philosophy (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19077;19700175100;"American Health and Drug Benefits";journal;"19422962, 19422970";"Engage Healthcare Communications, Inc.";Yes;No;0,253;Q3;42;0;23;0;14;12;0,10;0,00;0,00;0;United States;Northern America;"Engage Healthcare Communications, Inc.";"2009-2024";"Health Policy (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Medicine" +19078;21101158885;"Asia Marketing Journal";journal;"27656500, 15987868";"Korean Marketing Association";Yes;No;0,253;Q3;8;20;57;1228;60;54;0,89;61,40;40,48;0;South Korea;Asiatic Region;"Korean Marketing Association";"2019-2025";"Marketing (Q3)";"Business, Management and Accounting" +19079;21101063827;"Asia Pacific Journal of Mathematics";journal;"23572205";"Asia Pacific Academic";Yes;Yes;0,253;Q3;9;114;174;2712;219;174;1,31;23,79;30,46;0;New Zealand;Pacific Region;"Asia Pacific Academic";"2019-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19080;21100226804;"Chinese Optics";journal;"20971842";"";No;No;0,253;Q3;30;137;397;3764;474;397;1,21;27,47;30,43;0;China;Asiatic Region;"";"2010-2026";"Atomic and Molecular Physics, and Optics (Q3)";"Physics and Astronomy" +19081;21100826245;"Coupled Systems Mechanics";journal;"22342184, 22342192";"Techno-Press";No;No;0,253;Q3;18;28;92;1479;151;92;1,98;52,82;23,75;0;South Korea;Asiatic Region;"Techno-Press";"2017-2025";"Civil and Structural Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +19082;19736;"Indian Journal of Pathology and Microbiology";journal;"03774929, 09745130";"Wolters Kluwer Medknow Publications";Yes;No;0,253;Q3;40;209;705;3179;433;591;0,57;15,21;52,44;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1972, 1974-2025";"Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Microbiology (medical) (Q4)";"Medicine" +19083;21100809809;"International Journal of Aviation, Aeronautics, and Aerospace";journal;"23746793";"Embry-Riddle Aeronautical University";Yes;Yes;0,253;Q3;20;16;101;541;129;101;1,05;33,81;23,68;0;United States;Northern America;"Embry-Riddle Aeronautical University";"2014-2025";"Aerospace Engineering (Q3); Civil and Structural Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering" +19084;21100285029;"International Journal of Information and Decision Sciences";journal;"17567017, 17567025";"Inderscience";No;No;0,253;Q3;19;20;61;920;58;61;1,05;46,00;28,89;0;Switzerland;Western Europe;"Inderscience";"2008-2025";"Computer Science Applications (Q3); Information Systems and Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +19085;21100198470;"International Journal of Information Systems and Supply Chain Management";journal;"19355726, 19355734";"IGI Global Publishing";No;No;0,253;Q3;21;22;72;1032;147;72;2,08;46,91;40,91;0;United States;Northern America;"IGI Global Publishing";"2008-2026";"Information Systems (Q3); Management Information Systems (Q3)";"Business, Management and Accounting; Computer Science" +19086;100147332;"International Journal of Parallel, Emergent and Distributed Systems";journal;"17445779, 17445760";"Taylor and Francis Ltd.";No;No;0,253;Q3;29;70;111;2821;120;110;1,26;40,30;20,81;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Computer Networks and Communications (Q3); Software (Q4)";"Computer Science" +19087;21100897203;"Investigaciones Geograficas";journal;"19899890, 02134691";"Interuniversity Institute of Geography and University of Alicante";Yes;Yes;0,253;Q3;12;25;75;1349;70;75;0,98;53,96;35,29;0;Spain;Western Europe;"Interuniversity Institute of Geography and University of Alicante";"2018-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +19088;4100151613;"Journal of Applied Engineering Science";journal;"18213197, 14514117";"Institute for research and design in industry";Yes;No;0,253;Q3;24;65;344;2022;431;344;1,25;31,11;26,18;0;Serbia;Eastern Europe;"Institute for research and design in industry";"2006-2025";"Civil and Structural Engineering (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3); Safety, Risk, Reliability and Quality (Q3); Renewable Energy, Sustainability and the Environment (Q4); Transportation (Q4)";"Energy; Engineering; Social Sciences" +19089;29556;"Journal of Bioinformatics and Computational Biology";journal;"02197200, 17576334";"World Scientific";No;No;0,253;Q3;50;28;109;1061;94;108;0,90;37,89;47,73;0;Singapore;Asiatic Region;"World Scientific";"2003-2026";"Computer Science Applications (Q3); Biochemistry (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Computer Science" +19090;24177;"Journal of Coordination Chemistry";journal;"10290389, 00958972";"Taylor and Francis Ltd.";No;No;0,253;Q3;65;171;509;9374;849;506;1,84;54,82;43,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Materials Chemistry (Q3); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science" +19091;21100199346;"Journal of Mathematical Cryptology";journal;"18622984, 18622976";"Walter de Gruyter GmbH";Yes;No;0,253;Q3;22;15;45;366;39;44;1,12;24,40;16,22;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2007-2025";"Applied Mathematics (Q3); Computational Mathematics (Q3); Computer Science Applications (Q3)";"Computer Science; Mathematics" +19092;130128;"Journal of Mathematical Sciences (United States)";journal;"10723374, 15738795";"Springer";No;No;0,253;Q3;48;704;1773;15405;818;1754;0,49;21,88;28,71;0;United States;Northern America;"Springer";"1994-2026";"Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3); Statistics and Probability (Q4)";"Mathematics" +19093;21101045212;"Journal of Quantitative Economics";journal;"09711554, 23641045";"Springer International Publishing";No;No;0,253;Q3;19;71;135;3397;153;133;1,19;47,85;36,64;0;Switzerland;Western Europe;"Springer International Publishing";"2003-2006, 2015-2026";"Business and International Management (Q3); Development (Q3); Economics and Econometrics (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +19094;21101075552;"Media Practice and Education";journal;"25741136, 25741144";"Taylor and Francis Ltd.";No;No;0,253;Q3;27;66;89;3118;98;87;1,27;47,24;51,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2026";"Communication (Q3); Education (Q3)";"Social Sciences" +19095;21101185947;"Mesopotamia Journal of Agriculture";journal;"1815316X, 22249796";"University of Mosul College of Agriculture and Forestry";Yes;No;0,253;Q3;9;52;96;1879;233;96;2,43;36,13;26,83;0;Iraq;Middle East;"University of Mosul College of Agriculture and Forestry";"2023-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Animal Science and Zoology (Q3); Aquatic Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +19096;17492;"Neuroendocrinology Letters";journal;"0172780X";"Maghira and Maas Publications";Yes;No;0,253;Q3;77;48;162;1814;129;162;0,76;37,79;46,00;0;Sweden;Western Europe;"Maghira and Maas Publications";"1979-1982, 1984-1995, 1997-2025";"Medicine (miscellaneous) (Q3); Endocrine and Autonomic Systems (Q4); Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Neurology (Q4); Neurology (clinical) (Q4); Physiology (medical) (Q4); Psychiatry and Mental Health (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +19097;21100805728;"Nevrologiya, Neiropsikhiatriya, Psikhosomatika";journal;"20742711, 23101342";"Ima-Press Publishing House";Yes;Yes;0,253;Q3;17;53;306;1626;272;306;1,05;30,68;69,88;0;Russian Federation;Eastern Europe;"Ima-Press Publishing House";"2016-2025";"Clinical Psychology (Q3); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +19098;21101294936;"Problemy Arktiki i Antarktiki";journal;"05552648, 26186713";"Russian Federal Service for Hydrometeorology and Environmental Monitoring";No;No;0,253;Q3;5;32;90;795;61;88;0,67;24,84;39,29;0;Russian Federation;Eastern Europe;"Russian Federal Service for Hydrometeorology and Environmental Monitoring";"2021-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Geophysics (Q3); Oceanography (Q3); Atmospheric Science (Q4)";"Earth and Planetary Sciences" +19099;4900152713;"Revista de Economia e Sociologia Rural";journal;"01032003";"Sociedade Brasileira de Economia e Sociologia Rural";Yes;No;0,253;Q3;25;59;208;2892;160;207;0,74;49,02;38,52;0;Brazil;Latin America;"Sociedade Brasileira de Economia e Sociologia Rural";"2006-2025";"Agronomy and Crop Science (Q3); Economics and Econometrics (Q3); Forestry (Q3); Social Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Social Sciences" +19100;21100945961;"Squalen Bulletin of Marine and Fisheries Postharvest and Biotechnology";journal;"20895690, 24069272";"Research and Development Center for Marine and Fisheries Product Processing and Biotechnology";Yes;Yes;0,253;Q3;11;13;59;576;88;58;1,20;44,31;45,65;0;Indonesia;Asiatic Region;"Research and Development Center for Marine and Fisheries Product Processing and Biotechnology";"2019-2025";"Aquatic Science (Q3); Ecology (Q3); Food Science (Q3); Pollution (Q3); Biotechnology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +19101;19400158596;"Transylvanian Review of Administrative Sciences";journal;"18422845, 22478310";"Babes-Bolyai University";Yes;Yes;0,253;Q3;25;36;114;1633;118;114;0,88;45,36;48,91;0;Romania;Eastern Europe;"Babes-Bolyai University";"2008-2025";"Public Administration (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +19102;20216;"Tunisie Medicale";journal;"00414131, 27247031";"Societe Tunisienne des Sciences Medicales";Yes;No;0,253;Q3;24;199;437;6250;322;409;0,70;31,41;63,16;0;Tunisia;Africa;"Societe Tunisienne des Sciences Medicales";"1949-1950, 1954-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +19103;21101021174;"Veterinary Integrative Sciences";journal;"26299968";"Chiang Mai University - Faculty of Veterinary Medicine";Yes;Yes;0,253;Q3;11;79;211;4178;230;210;1,18;52,89;34,15;0;Thailand;Asiatic Region;"Chiang Mai University - Faculty of Veterinary Medicine";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +19104;21101304521;"AACE Endocrinology and Diabetes";journal;"30509157";"Elsevier B.V.";No;No;0,253;Q4;17;147;220;2484;175;201;0,70;16,90;47,20;0;Netherlands;Western Europe;"Elsevier B.V.";"2025-2026";"Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +19105;21100199541;"Revista Brasileira de Medicina do Trabalho";journal;"16794435";"Associacao Nacional de Medicina do Trabalho";Yes;Yes;0,253;Q4;16;82;243;2190;172;223;0,55;26,71;58,92;0;Brazil;Latin America;"Associacao Nacional de Medicina do Trabalho";"2011-2026";"Physiology (medical) (Q4)";"Medicine" +19106;145296;"Proceedings - Asia-Pacific Software Engineering Conference, APSEC";conference and proceedings;"15301362";"IEEE Computer Society";No;No;0,253;-;42;0;247;0;236;241;0,88;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"1994, 1996, 2000, 2002-2024";"Engineering (miscellaneous); Software";"Computer Science; Engineering" +19107;21100917116;"Church, Communication and Culture";journal;"23753242, 23753234";"Routledge";Yes;No;0,252;Q1;11;23;62;1004;57;56;0,95;43,65;42,50;0;United Kingdom;Western Europe;"Routledge";"2016-2025";"Religious Studies (Q1); Communication (Q3)";"Arts and Humanities; Social Sciences" +19108;16800154736;"Hesperia";journal;"0018098X, 15535622";"American School of Classical Studies at Athens";No;No;0,252;Q1;40;12;42;1385;30;42;0,75;115,42;38,46;0;United States;Northern America;"American School of Classical Studies at Athens";"2002-2025";"Classics (Q1); History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19109;24180;"History of European Ideas";journal;"01916599, 1873541X";"Routledge";No;No;0,252;Q1;23;195;298;8130;127;268;0,38;41,69;38,96;3;United Kingdom;Western Europe;"Routledge";"1980-2026";"History (Q1); Philosophy (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19110;26733;"History of the Human Sciences";journal;"1461720X, 09526951";"SAGE Publications Ltd";No;No;0,252;Q1;47;50;111;3810;109;109;0,62;76,20;47,54;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1988-2026";"History (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities" +19111;5600153252;"Journal of Latin American Cultural Studies";journal;"13569325, 14699575";"Routledge";No;No;0,252;Q1;20;25;116;1087;57;108;0,34;43,48;26,92;0;United Kingdom;Western Europe;"Routledge";"1995-2003, 2005-2026";"Cultural Studies (Q1); History (Q1)";"Arts and Humanities; Social Sciences" +19112;21100824449;"Norteamerica";journal;"18703550, 24487228";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,252;Q1;8;32;78;1245;33;78;0,31;38,91;19,35;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2010-2011, 2016-2026";"Cultural Studies (Q1); Law (Q2); Demography (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +19113;21101087135;"Rast Muzikoloji Dergisi";journal;"21477361, 21477531";"";No;No;0,252;Q1;3;24;77;940;32;77;0,47;39,17;50,00;0;Turkey;Middle East;"";"2019-2025";"Music (Q1)";"Arts and Humanities" +19114;21101021456;"Revista de Pensamiento Estrategico y Seguridad CISDE";journal;"25298763";"United Academic Journals (UA Journals)";No;No;0,252;Q1;6;12;36;692;23;34;0,54;57,67;6,67;0;Spain;Western Europe;"United Academic Journals (UA Journals)";"2019-2025";"History (Q1); Law (Q2); Political Science and International Relations (Q3); Safety Research (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19115;21101194973;"Secular Studies";journal;"25892525, 25892517";"Brill Academic Publishers";No;No;0,252;Q1;5;19;43;947;22;41;0,41;49,84;43,75;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2025";"Religious Studies (Q1); Philosophy (Q2)";"Arts and Humanities" +19116;21101052816;"Arteterapia";journal;"19888309, 18866190";"Universidad Complutense Madrid";Yes;Yes;0,252;Q2;5;18;72;694;33;71;0,43;38,56;70,97;0;Spain;Western Europe;"Universidad Complutense Madrid";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Clinical Psychology (Q3); Education (Q3); Rehabilitation (Q3); Applied Psychology (Q4)";"Arts and Humanities; Medicine; Psychology; Social Sciences" +19117;21101034030;"Cuadernos de Derecho Transnacional";journal;"19894570";"Universidad Carlos III de Madrid";No;Yes;0,252;Q2;8;111;377;7183;94;376;0,24;64,71;40,26;2;Spain;Western Europe;"Universidad Carlos III de Madrid";"2019-2025";"Law (Q2)";"Social Sciences" +19118;21101149381;"Egyptian Journal of Veterinary Science";journal;"11100222, 2357089X";"National Information and Documentation Centre";No;No;0,252;Q2;12;397;395;18242;585;395;1,56;45,95;46,59;0;Egypt;Africa/Middle East;"National Information and Documentation Centre";"1977, 1979-1980, 2012-2013, 2015-2026";"Equine (Q2); Small Animals (Q2); Animal Science and Zoology (Q3); Food Animals (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +19119;21101037319;"Journal of Social Inclusion";journal;"18368808";"Griffith University";Yes;Yes;0,252;Q2;17;0;22;0;17;16;0,50;0,00;0,00;0;Australia;Pacific Region;"Griffith University";"2010-2023";"Health Professions (miscellaneous) (Q2); Health (social science) (Q3); Sociology and Political Science (Q3)";"Health Professions; Social Sciences" +19120;21100315996;"Linguistic Research";journal;"12291374";"Institute for the Study of Language and Information";No;No;0,252;Q2;11;39;90;1554;34;90;0,32;39,85;49,12;0;South Korea;Asiatic Region;"Institute for the Study of Language and Information";"2014-2025";"Linguistics and Language (Q2)";"Social Sciences" +19121;18645;"Studies in Gender and Sexuality";journal;"19409206, 15240657";"Taylor and Francis Ltd.";No;No;0,252;Q2;22;48;109;1229;45;90;0,35;25,60;46,51;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002, 2005-2025";"Gender Studies (Q2)";"Social Sciences" +19122;21101076082;"Transdisciplinary Journal of Engineering and Science";journal;"19490569";"ATLAS";Yes;Yes;0,252;Q2;9;11;96;795;102;93;0,98;72,27;29,41;0;United States;Northern America;"ATLAS";"2016, 2019-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +19123;5100152404;"Anaesthesia and Intensive Care Medicine";journal;"18787584, 14720299";"Elsevier Ltd";No;No;0,252;Q3;26;137;418;1940;342;418;0,73;14,16;50,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"2003-2026";"Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)";"Medicine" +19124;21101028567;"Case Reports in Obstetrics and Gynecology";journal;"20906692, 20906684";"John Wiley and Sons Ltd";Yes;No;0,252;Q3;12;36;122;664;110;122;0,62;18,44;53,59;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2015, 2017-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +19125;21101068591;"Communication in Biomathematical Sciences";journal;"25492896";"Indonesian Biomathematical Society";Yes;Yes;0,252;Q3;11;14;40;570;45;40;1,06;40,71;35,00;0;Indonesia;Asiatic Region;"Indonesian Biomathematical Society";"2017-2026";"Applied Mathematics (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Modeling and Simulation (Q3); Health Informatics (Q4)";"Biochemistry, Genetics and Molecular Biology; Mathematics; Medicine" +19126;19900192609;"Conservation Evidence";journal;"17582067";"University of Cambridge";Yes;No;0,252;Q3;16;7;16;159;14;15;0,80;22,71;45,00;0;United Kingdom;Western Europe;"University of Cambridge";"2011-2026";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19127;21101034520;"European Journal of Forest Engineering";journal;"21495637";"Forest Engineering and Technologies Platform";No;No;0,252;Q3;8;13;37;624;49;37;1,42;48,00;11,54;0;Turkey;Middle East;"Forest Engineering and Technologies Platform";"2018-2025";"Engineering (miscellaneous) (Q3); Forestry (Q3)";"Agricultural and Biological Sciences; Engineering" +19128;19900195042;"European Spatial Research and Policy";journal;"12311952, 18961525";"Lodz University Press";Yes;Yes;0,252;Q3;19;15;58;960;60;54;0,76;64,00;41,67;0;Poland;Eastern Europe;"Lodz University Press";"2009-2025";"Geography, Planning and Development (Q3)";"Social Sciences" +19129;21101178116;"Hormigon y Acero";journal;"04395689, 26051729";"Asociacion Espanola de Ingenieria Estructural (ACHE)";No;Yes;0,252;Q3;6;46;70;546;44;70;0,90;11,87;10,00;0;Spain;Western Europe;"Asociacion Espanola de Ingenieria Estructural (ACHE)";"2019-2025";"Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +19130;21100827423;"IIUM Engineering Journal";journal;"1511788X, 22897860";"International Islamic University Malaysia-IIUM";Yes;No;0,252;Q3;19;85;150;2193;245;150;1,74;25,80;42,54;0;Malaysia;Asiatic Region;"International Islamic University Malaysia-IIUM";"2016-2026";"Applied Mathematics (Q3); Chemical Engineering (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)";"Chemical Engineering; Computer Science; Engineering; Mathematics" +19131;21101131744;"Infectious Diseases and Immunity";journal;"20969511, 26938839";"Wolters Kluwer Health";Yes;Yes;0,252;Q3;9;47;79;2781;82;67;1,27;59,17;46,31;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2021-2025";"Epidemiology (Q3); Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3); Immunology (Q4); Immunology and Allergy (Q4); Parasitology (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +19132;21100920052;"International Journal of Business and Emerging Markets";journal;"17536227, 17536219";"Inderscience Enterprises Ltd";No;No;0,252;Q3;11;29;69;1854;111;69;1,56;63,93;37,31;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2019-2026";"Business and International Management (Q3); Economics and Econometrics (Q3); Marketing (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +19133;130033;"International Journal of Chemical Reactor Engineering";journal;"15426580, 21945748";"Walter de Gruyter GmbH";No;No;0,252;Q3;49;111;346;5706;476;339;1,45;51,41;26,23;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2002-2026";"Chemical Engineering (miscellaneous) (Q3)";"Chemical Engineering" +19134;21100856805;"International Journal of Development and Conflict";journal;"20102690, 20102704";"Gokhale Institute of Politics and Economics";Yes;No;0,252;Q3;7;0;50;0;60;48;1,54;0,00;0,00;0;India;Asiatic Region;"Gokhale Institute of Politics and Economics";"2017-2024";"Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Political Science and International Relations (Q3)";"Economics, Econometrics and Finance; Social Sciences" +19135;19700186888;"International Journal of Energetic Materials and Chemical Propulsion";journal;"2150766X, 21507678";"Begell House Inc.";No;No;0,252;Q3;21;30;78;753;83;78;0,89;25,10;17,81;0;United States;Northern America;"Begell House Inc.";"1997, 2002, 2009-2025";"Aerospace Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +19136;19200157041;"Journal of Elementology";journal;"16442296";"Polish Society Magnesium Research";No;No;0,252;Q3;34;31;165;1415;179;165;1,02;45,65;45,71;0;Poland;Eastern Europe;"Polish Society Magnesium Research";"2008-2026";"Ecology (Q3); Pollution (Q3); Health, Toxicology and Mutagenesis (Q4); Inorganic Chemistry (Q4)";"Chemistry; Environmental Science" +19137;21101042485;"Journal of Engineering, Project, and Production Management";journal;"22238379, 22216529";"";Yes;Yes;0,252;Q3;14;51;86;1739;117;81;1,24;34,10;26,73;0;Poland;Eastern Europe;"";"2019-2026";"Business, Management and Accounting (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Business, Management and Accounting; Engineering" +19138;21100199785;"Journal of Indian Academy of Forensic Medicine";journal;"09710973, 09740848";"SAGE Publications Ltd";No;No;0,252;Q3;23;71;376;1563;93;358;0,31;22,01;26,55;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2011-2025";"Pathology and Forensic Medicine (Q3)";"Medicine" +19139;21101077473;"Journal of Medical Cases";journal;"19234163, 19234155";"Elmer Press";No;No;0,252;Q3;10;75;249;1568;173;249;0,57;20,91;34,23;0;Canada;Northern America;"Elmer Press";"2013-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +19140;8000153127;"Journal of Mining and Metallurgy, Section B: Metallurgy";journal;"14505339";"Technical Faculty in Bor";Yes;Yes;0,252;Q3;29;31;127;1189;189;127;1,46;38,35;29,81;0;Serbia;Eastern Europe;"Technical Faculty in Bor";"2007-2025";"Geotechnical Engineering and Engineering Geology (Q3); Materials Chemistry (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)";"Earth and Planetary Sciences; Engineering; Materials Science" +19141;21101367671;"Journal of Pediatric Surgery Open";journal;"29497116";"Elsevier B.V.";Yes;No;0,252;Q3;4;53;158;1236;106;156;0,67;23,32;38,06;1;Netherlands;Western Europe;"Elsevier B.V.";"2023-2026";"Surgery (Q3)";"Medicine" +19142;12263;"Journal of Prosthetics and Orthotics";journal;"10408800";"Lippincott Williams and Wilkins Ltd.";No;No;0,252;Q3;43;68;174;1942;157;152;0,80;28,56;45,10;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1982, 1988-2026";"Orthopedics and Sports Medicine (Q3); Rehabilitation (Q3); Biomedical Engineering (Q4)";"Engineering; Medicine" +19143;17600155058;"Journal of Semiconductor Technology and Science";journal;"15981657";"Institute of Electronics Engineers of Korea";No;No;0,252;Q3;24;88;161;1729;145;161;0,92;19,65;23,75;0;South Korea;Asiatic Region;"Institute of Electronics Engineers of Korea";"2005, 2009-2025";"Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)";"Engineering; Materials Science" +19144;21101062486;"Mathematics Teacher Education and Development";journal;"14423901";"Mathematics Education Research Group of Australasia, Inc.";No;No;0,252;Q3;10;14;35;754;34;35;0,61;53,86;64,71;0;Australia;Pacific Region;"Mathematics Education Research Group of Australasia, Inc.";"2019-2025";"Education (Q3); Mathematics (miscellaneous) (Q3)";"Mathematics; Social Sciences" +19145;21100211348;"Revue des Composites et des Materiaux Avances";journal;"11697954, 19585799";"International Information and Engineering Technology Association";No;No;0,252;Q3;15;120;187;4439;317;187;1,68;36,99;37,28;0;France;Western Europe;"International Information and Engineering Technology Association";"2012-2025";"Materials Science (miscellaneous) (Q3)";"Materials Science" +19146;21100944559;"Solar-Terrestrial Physics";journal;"25000535, 24124737";"Academic Publishing Center INFRA - M";Yes;Yes;0,252;Q3;10;54;147;1800;125;147;0,83;33,33;27,21;0;Russian Federation;Eastern Europe;"Academic Publishing Center INFRA - M";"2019-2025";"Geophysics (Q3); Atmospheric Science (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences" +19147;21100931880;"Uniciencia";journal;"22153470";"Universidad Nacional";Yes;Yes;0,252;Q3;11;30;114;1322;111;114;0,98;44,07;37,76;1;Costa Rica;Latin America;"Universidad Nacional";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Computer Science; Earth and Planetary Sciences; Mathematics; Physics and Astronomy; Social Sciences" +19148;24497;"Wildlife Monographs";book series;"00840173";"Wiley-Blackwell";No;No;0,252;Q3;45;5;5;722;10;5;1,67;144,40;37,25;0;United States;Northern America;"Wiley-Blackwell";"1981-2026";"Ecology, Evolution, Behavior and Systematics (Q3); Nature and Landscape Conservation (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19149;19700186879;"Journal of Biomechanical Science and Engineering";journal;"18809863";"Japan Society of Mechanical Engineers";Yes;No;0,252;Q4;22;19;66;668;59;66;0,91;35,16;7,89;0;Japan;Asiatic Region;"Japan Society of Mechanical Engineers";"2007-2026";"Biomedical Engineering (Q4)";"Engineering" +19150;18684;"Psychiatric Annals";journal;"00485713";"Slack Incorporated";No;No;0,252;Q4;46;72;268;1556;159;198;0,66;21,61;57,35;0;United States;Northern America;"Slack Incorporated";"1974-1983, 1986, 1988-1989, 1992-1993, 1995-2026";"Psychiatry and Mental Health (Q4)";"Medicine" +19151;21100291854;"International IEEE/EMBS Conference on Neural Engineering, NER";conference and proceedings;"19483554, 19483546";"IEEE Computer Society";No;No;0,252;-;35;0;198;0;170;195;0,86;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2003, 2013, 2015, 2017, 2019, 2021, 2023";"Artificial Intelligence; Mechanical Engineering";"Computer Science; Engineering" +19152;96537;"Proceedings of the International Joint Conference on Neural Networks";conference and proceedings;"21614393, 21614407";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,252;-;113;0;2613;0;3090;2603;1,18;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992-1993, 1999-2003, 2005, 2008-2020, 2023-2024";"Artificial Intelligence; Software";"Computer Science" +19153;18929;"African Studies";journal;"00020184, 14692872";"Taylor and Francis Ltd.";No;No;0,251;Q1;36;17;60;719;58;58;0,79;42,29;42,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1942-2026";"Cultural Studies (Q1); History (Q1); Anthropology (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19154;18000156709;"Bulletin of Geography. Socio-economic Series";journal;"17324254, 20838298";"";Yes;Yes;0,251;Q1;27;55;121;3570;126;121;1,15;64,91;45,26;0;Germany;Western Europe;"";"2003-2025";"Cultural Studies (Q1); Demography (Q3); Geography, Planning and Development (Q3); Urban Studies (Q3)";"Social Sciences" +19155;21101170721;"DiGeSt - Journal of Diversity and Gender Studies";journal;"25930281, 25930273";"Universiteit Gent";Yes;Yes;0,251;Q1;9;20;53;691;63;42;1,22;34,55;72,73;0;Belgium;Western Europe;"Universiteit Gent";"2019-2025";"Cultural Studies (Q1); Anthropology (Q2); Gender Studies (Q2); Political Science and International Relations (Q3)";"Social Sciences" +19156;20100195005;"Estetika: The European Journal of Aesthetics";journal;"00141291, 25710915";"Helsinki University Press";Yes;Yes;0,251;Q1;9;13;34;313;31;34;0,67;24,08;21,43;0;Finland;Western Europe;"Helsinki University Press";"2008-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Philosophy (Q2)";"Arts and Humanities" +19157;21100407560;"Hipogrifo";journal;"23281308";"Instituto de Estudios Auriseculares (IDEA)";Yes;Yes;0,251;Q1;9;90;290;2779;58;281;0,19;30,88;42,11;0;Spain;Western Europe;"Instituto de Estudios Auriseculares (IDEA)";"2013-2025";"Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities; Social Sciences" +19158;21100314717;"Historia 396";journal;"07197969, 07190719";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,251;Q1;9;26;93;1388;26;92;0,30;53,38;23,33;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2011-2026";"History (Q1)";"Arts and Humanities" +19159;21100202750;"Historia (Chile)";journal;"00732435, 07177194";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,251;Q1;18;19;65;2454;31;64;0,42;129,16;22,22;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"1999, 2002, 2007-2025";"Cultural Studies (Q1); History (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities; Social Sciences" +19160;5700167184;"Home Cultures";journal;"17517427, 17406315";"Taylor and Francis Ltd.";No;No;0,251;Q1;24;11;44;542;35;40;0,54;49,27;73,68;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2025";"Cultural Studies (Q1); Visual Arts and Performing Arts (Q1); Social Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +19161;21100268403;"International Journal of Design Education";journal;"2325128X, 23251298";"Common Ground Research Networks";No;No;0,251;Q1;7;25;54;972;39;54;0,65;38,88;71,15;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Visual Arts and Performing Arts (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +19162;21101011859;"Museum Worlds";journal;"20496737, 20496729";"Berghahn Journals";Yes;Yes;0,251;Q1;7;21;54;594;32;50;0,50;28,29;62,50;0;United Kingdom;Western Europe;"Berghahn Journals";"2019-2025";"Museology (Q1); Conservation (Q2)";"Arts and Humanities" +19163;21101357977;"Artificial Intelligence in Health";journal;"30292387, 30410894";"AccScience Publishing";No;No;0,251;Q2;5;42;36;2138;52;35;1,44;50,90;35,66;0;Singapore;Asiatic Region;"AccScience Publishing";"2024-2026";"Health Professions (miscellaneous) (Q2); Artificial Intelligence (Q3); Health Information Management (Q4)";"Computer Science; Health Professions" +19164;21100847440;"International Journal of Comparative Labour Law and Industrial Relations";journal;"1875838X, 0952617X";"Kluwer Law International";No;No;0,251;Q2;16;13;68;614;86;68;1,43;47,23;57,14;0;United Kingdom;Western Europe;"Kluwer Law International";"2017-2025";"Law (Q2); Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q3)";"Business, Management and Accounting; Social Sciences" +19165;4000151502;"Journal of Perioperative Practice";journal;"17504589, 25157949";"SAGE Publications Ltd";No;No;0,251;Q2;24;138;205;3412;165;175;0,67;24,72;44,30;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2006-2026";"Medical and Surgical Nursing (Q2); Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q3); Surgery (Q3)";"Medicine; Nursing" +19166;99039;"Journal of the Faculty of Engineering and Architecture of Gazi University";journal;"13001884";"Gazi Universitesi";No;No;0,251;Q2;25;150;612;6392;614;612;1,10;42,61;27,01;0;Turkey;Middle East;"Gazi Universitesi";"1998-2025";"Architecture (Q2); Engineering (miscellaneous) (Q3)";"Engineering" +19167;21100304859;"Munibe Antropologia-Arkeologia";journal;"11322217, 21724555";"Sociedad de Ciencias Aranzadi Research Centre";Yes;Yes;0,251;Q2;11;12;47;567;14;46;0,21;47,25;36,96;0;Spain;Western Europe;"Sociedad de Ciencias Aranzadi Research Centre";"2013-2025";"Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19168;21101264430;"Terra Linguistica";journal;"27825450";"St. Petersburg Polytechnic University of Peter the Great";No;No;0,251;Q2;5;38;105;992;40;103;0,38;26,11;69,23;0;Russian Federation;Eastern Europe;"St. Petersburg Polytechnic University of Peter the Great";"2020-2025";"Linguistics and Language (Q2)";"Social Sciences" +19169;145487;"Theoretical Linguistics";journal;"16134060, 03014428";"De Gruyter Mouton";No;No;0,251;Q2;38;17;53;613;38;50;0,79;36,06;35,00;0;Germany;Western Europe;"De Gruyter Mouton";"1974-1988, 1990-2025";"Linguistics and Language (Q2)";"Social Sciences" +19170;5800207635;"Theoria (Spain)";journal;"04954548, 2171679X";"UPV/EHU Press";Yes;Yes;0,251;Q2;19;15;61;760;40;59;0,70;50,67;12,50;0;Spain;Western Europe;"UPV/EHU Press";"2003-2025";"History and Philosophy of Science (Q2); Philosophy (Q2)";"Arts and Humanities" +19171;21100211737;"Utrecht Law Review";journal;"1871515X";"";Yes;Yes;0,251;Q2;24;14;59;1299;49;57;0,69;92,79;68,75;0;Netherlands;Western Europe;"";"2012-2025";"Law (Q2)";"Social Sciences" +19172;5800207605;"Verba";journal;"0210377X, 21744017";"Universidade de Santiago de Compostela";Yes;Yes;0,251;Q2;5;1;40;40;12;40;0,30;40,00;66,67;0;Spain;Western Europe;"Universidade de Santiago de Compostela";"2017-2025";"Linguistics and Language (Q2)";"Social Sciences" +19173;38410;"Acta Chirurgiae Orthopaedicae et Traumatologiae Cechoslovaca";journal;"00015415";"Galen s.r.o.";No;No;0,251;Q3;32;48;165;1239;109;164;0,61;25,81;16,22;0;Czech Republic;Eastern Europe;"Galen s.r.o.";"1950-1991, 1993-1994, 1996-2025";"Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3)";"Medicine" +19174;21101068169;"Acta Commercii";journal;"16841999, 24131903";"AOSIS (Pty) Ltd";Yes;No;0,251;Q3;12;30;77;2025;113;74;1,23;67,50;44,23;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2019-2026";"Business, Management and Accounting (miscellaneous) (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +19175;37388;"Agriculture and Forestry";journal;"18009492, 05545579";"University of Montenegro";Yes;Yes;0,251;Q3;16;56;205;2412;297;203;1,42;43,07;43,07;0;Montenegro;Eastern Europe;"University of Montenegro";"1979, 1981-1983, 1985-1986, 2019-2025";"Agronomy and Crop Science (Q3); Food Science (Q3); Forestry (Q3); Nature and Landscape Conservation (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19176;21101058356;"American Business Review";journal;"26898810";"Pompea College of Business, University of New Haven";Yes;Yes;0,251;Q3;9;32;79;2016;94;76;1,16;63,00;32,86;0;United States;Northern America;"Pompea College of Business, University of New Haven";"2020-2025";"Business, Management and Accounting (miscellaneous) (Q3); Marketing (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)";"Business, Management and Accounting" +19177;21101138001;"Analytical Chemistry Letters";journal;"22307532, 22297928";"Taylor and Francis Ltd.";No;No;0,251;Q3;22;73;159;2673;277;159;1,80;36,62;36,54;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)";"Chemistry; Materials Science; Medicine" +19178;24257;"Asian-Pacific Economic Literature";journal;"08189935, 14678411";"Wiley-Blackwell Publishing Ltd";No;No;0,251;Q3;27;57;46;2915;71;46;1,52;51,14;44,29;2;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1987-2026";"Development (Q3); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)";"Economics, Econometrics and Finance; Social Sciences" +19179;21101265515;"Asia-Pacific Journal of Information Technology and Multimedia";journal;"22892192";"Penerbit Universiti Kebangsaan Malaysia";Yes;Yes;0,251;Q3;5;39;60;1217;68;60;1,18;31,21;44,09;0;Malaysia;Asiatic Region;"Penerbit Universiti Kebangsaan Malaysia";"2022-2025";"Artificial Intelligence (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Computer Vision and Pattern Recognition (Q3)";"Computer Science" +19180;57252;"Baltica";journal;"00673064";"Nature Research Centre";Yes;No;0,251;Q3;22;16;44;828;52;44;1,13;51,75;19,05;0;Lithuania;Eastern Europe;"Nature Research Centre";"1994-1995, 1997-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +19181;145734;"Boletim de Ciencias Geodesicas";journal;"19822170, 14134853";"Universidade Federal do Parana";Yes;Yes;0,251;Q3;19;14;52;519;50;52;1,16;37,07;30,77;0;Brazil;Latin America;"Universidade Federal do Parana";"2005-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +19182;21030;"Cirugia y Cirujanos";journal;"00097411, 2444054X";"Permanyer Publications";Yes;Yes;0,251;Q3;23;109;479;2579;316;430;0,65;23,66;40,32;0;Mexico;Latin America;"Permanyer Publications";"1945-1962, 1964-1974, 1976-1984, 2003-2025";"Surgery (Q3)";"Medicine" +19183;13793;"Community Eye Health Journal";journal;"09536833, 19937288";"International Centre for Eye Health";Yes;Yes;0,251;Q3;34;37;119;104;57;114;0,35;2,81;62,07;0;United Kingdom;Western Europe;"International Centre for Eye Health";"1988, 1996-2025";"Ophthalmology (Q3)";"Medicine" +19184;21101049093;"Ecocycles";journal;"24162140";"European Ecocycles Society";Yes;Yes;0,251;Q3;8;22;69;1139;89;69;1,35;51,77;42,55;0;Hungary;Eastern Europe;"European Ecocycles Society";"2019-2026";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +19185;11800154541;"Econ Journal Watch";journal;"1933527X";"Fraser Institute";Yes;No;0,251;Q3;19;9;66;265;45;59;0,73;29,44;0,00;0;United States;Northern America;"Fraser Institute";"2008-2025";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +19186;21101298326;"Electric Machines and Control Application";journal;"16736540";"Editorial Office of Electric Machines and Control Application";No;No;0,251;Q3;9;121;453;3577;624;453;1,74;29,56;30,73;0;China;Asiatic Region;"Editorial Office of Electric Machines and Control Application";"2021-2025";"Electrical and Electronic Engineering (Q3)";"Engineering" +19187;5100155019;"Estudios Pedagogicos";journal;"07180705, 0716050X";"Universidad Austral de Chile";Yes;Yes;0,251;Q3;33;38;240;1577;150;236;0,48;41,50;58,10;0;Chile;Latin America;"Universidad Austral de Chile";"1997-2002, 2006-2025";"Education (Q3)";"Social Sciences" +19188;21101045216;"Eurobiotech Journal";journal;"2564615X";"";Yes;Yes;0,251;Q3;16;16;51;960;62;49;1,50;60,00;44,32;0;Poland;Eastern Europe;"";"2019-2026";"Food Science (Q3); Biomedical Engineering (Q4); Biotechnology (Q4); Genetics (Q4); Molecular Biology (Q4); Molecular Medicine (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Engineering" +19189;21101034343;"European Journal of Business Science and Technology";journal;"26947161, 23366494";"Mendel University in Brno";Yes;Yes;0,251;Q3;8;7;42;307;48;42;0,89;43,86;18,75;0;Czech Republic;Eastern Europe;"Mendel University in Brno";"2019-2025";"Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3); Marketing (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +19190;21100855501;"GMSARN International Journal";journal;"19059094";"Greater Mekong Subregion Academic and Research Network, Asian Institute of Technology";No;No;0,251;Q3;10;46;174;1458;163;174;0,85;31,70;30,00;0;Thailand;Asiatic Region;"Greater Mekong Subregion Academic and Research Network, Asian Institute of Technology";"2017-2026";"Energy Engineering and Power Technology (Q3); Environmental Science (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Environmental Science" +19191;19600156812;"Hacquetia";journal;"15814661, 18549829";"De Gruyter Open Ltd";Yes;No;0,251;Q3;18;21;48;998;49;48;1,38;47,52;39,24;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2007-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Forestry (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +19192;21100244211;"International Journal of Mechanics and Control";journal;"15908844";"Levrotto and Bella";No;No;0,251;Q3;18;29;89;921;77;85;0,67;31,76;29,79;0;Italy;Western Europe;"Levrotto and Bella";"2010-2025";"Computational Mechanics (Q3); Control and Systems Engineering (Q3)";"Engineering" +19193;6400153175;"International Journal of Services Operations and Informatics";journal;"1741539X, 17415403";"Inderscience Enterprises Ltd";No;No;0,251;Q3;17;0;22;0;37;22;1,38;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2013, 2016-2024";"Computer Science Applications (Q3); Information Systems (Q3); Management Information Systems (Q3); Management Science and Operations Research (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences" +19194;27275;"Journal of High Speed Networks";journal;"09266801, 18758940";"SAGE Publications Ltd";No;No;0,251;Q3;23;16;83;536;131;82;1,77;33,50;20,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2008, 2010-2026";"Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Information Systems (Q3)";"Computer Science" +19195;21100403907;"Journal of Historical Research in Marketing";journal;"17557518, 1755750X";"Emerald Group Publishing Ltd.";No;No;0,251;Q3;24;14;57;1022;45;52;0,70;73,00;78,57;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2026";"Marketing (Q3)";"Business, Management and Accounting" +19196;5400152635;"Journal of the Entomological Research Society";journal;"26513579, 13020250";"Gazi Entomological Research Society";No;No;0,251;Q3;18;28;123;1144;89;123;0,76;40,86;33,04;0;Turkey;Middle East;"Gazi Entomological Research Society";"2007-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences" +19197;21100831410;"Journal of The Institution of Engineers (India): Series C";journal;"22500545, 22500553";"Springer";No;No;0,251;Q3;33;148;362;5770;563;360;1,43;38,99;20,83;0;India;Asiatic Region;"Springer";"2012-2026";"Aerospace Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3); Ocean Engineering (Q3)";"Engineering" +19198;15831;"Journal of the Nepal Medical Association";journal;"1815672X, 00282715";"Nepal Medical Association";Yes;Yes;0,251;Q3;26;201;715;3865;567;707;0,59;19,23;36,10;0;Nepal;Asiatic Region;"Nepal Medical Association";"1975, 1988, 1993-1994, 1996, 2005-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +19199;19700173017;"Kinematics and Physics of Celestial Bodies";journal;"19348401, 08845913";"Allerton Press Inc.";No;No;0,251;Q3;13;23;89;740;51;88;0,55;32,17;26,92;0;United States;Northern America;"Allerton Press Inc.";"2008-2026";"Astronomy and Astrophysics (Q3); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Physics and Astronomy" +19200;18442;"Medicinski Glasnik";journal;"18402445, 18400132";"Medical Association of Zenica-Doboj Canton";Yes;No;0,251;Q3;24;62;147;1902;155;145;1,05;30,68;50,16;0;Bosnia and Herzegovina;Eastern Europe;"Medical Association of Zenica-Doboj Canton";"2006-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +19201;21100872123;"Mineral Processing and Extractive Metallurgy: Transactions of the Institute of Mining and Metallurgy";journal;"2572665X, 25726641";"SAGE Publications Ltd";No;No;0,251;Q3;38;26;68;1165;76;65;1,24;44,81;34,95;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2026";"Chemistry (miscellaneous) (Q3); Geochemistry and Petrology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Chemistry; Earth and Planetary Sciences" +19202;21101062807;"Nafta - Gaz";journal;"08678871";"Oil and Gas Institute – National Research Institute";No;No;0,251;Q3;10;77;240;1872;161;238;0,70;24,31;34,94;0;Poland;Eastern Europe;"Oil and Gas Institute – National Research Institute";"2019-2025";"Energy Engineering and Power Technology (Q3); Environmental Engineering (Q3); Fuel Technology (Q3); Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3); Management, Monitoring, Policy and Law (Q3); Geochemistry and Petrology (Q4)";"Earth and Planetary Sciences; Energy; Environmental Science" +19203;20000195050;"Paideia";journal;"0103863X, 19824327";"Universidade de Sao Paulo 1";Yes;Yes;0,251;Q3;24;28;119;847;86;118;0,52;30,25;75,90;0;Brazil;Latin America;"Universidade de Sao Paulo 1";"2011-2026";"Education (Q3); Psychology (miscellaneous) (Q3)";"Psychology; Social Sciences" +19204;13183;"Qiangjiguang Yu Lizishu/High Power Laser and Particle Beams";journal;"10014322";"Editorial Office of High Power Laser and Particle Beams";No;No;0,251;Q3;29;288;786;6062;475;780;0,62;21,05;30,11;0;China;Asiatic Region;"Editorial Office of High Power Laser and Particle Beams";"1993-2026";"Atomic and Molecular Physics, and Optics (Q3); Electrical and Electronic Engineering (Q3)";"Engineering; Physics and Astronomy" +19205;4700152203;"Revista Brasileira de Saude Materno Infantil";journal;"15193829";"Instituto Materno Infantil Professor Fernando Figueira";Yes;Yes;0,251;Q3;25;62;196;1572;129;178;0,49;25,35;70,24;0;Brazil;Latin America;"Instituto Materno Infantil Professor Fernando Figueira";"2002, 2005-2025";"Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +19206;21100872374;"Russian Journal of Earth Sciences";journal;"16811178, 16811208";"Geophysical Center of the Russian Academy of Sciences";Yes;Yes;0,251;Q3;24;96;191;3412;136;190;0,81;35,54;37,88;0;Russian Federation;Eastern Europe;"Geophysical Center of the Russian Academy of Sciences";"1998-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +19207;7200153150;"Semergen";journal;"15788865, 11383593";"Ediciones Doyma, S.L.";No;No;0,251;Q3;17;199;344;4427;268;278;0,87;22,25;47,32;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2003, 2005-2026";"Family Practice (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +19208;21101021795;"South Asia Multidisciplinary Academic Journal";journal;"19606060";"OpenEditions Journals";Yes;Yes;0,251;Q3;10;8;52;528;47;50;0,56;66,00;57,14;0;France;Western Europe;"OpenEditions Journals";"2015, 2020-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +19209;12412;"Topics in Geriatric Rehabilitation";journal;"15502414, 08827524";"Lippincott Williams and Wilkins Ltd.";No;No;0,251;Q3;32;33;116;1172;87;104;0,81;35,52;59,38;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1985-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3); Geriatrics and Gerontology (Q4)";"Health Professions; Medicine" +19210;17900156731;"Young Exceptional Children";journal;"2154400X, 10962506";"SAGE Publications Inc.";No;No;0,251;Q3;21;24;66;544;43;49;0,52;22,67;85,96;0;United States;Northern America;"SAGE Publications Inc.";"1998-2026";"Education (Q3); Developmental and Educational Psychology (Q4)";"Psychology; Social Sciences" +19211;21101023406;"Zoodiversity";journal;"2707725X, 27077268";"National Academy of Sciences of Ukraine";Yes;Yes;0,251;Q3;20;42;133;1588;101;133;0,77;37,81;32,95;0;Ukraine;Eastern Europe;"National Academy of Sciences of Ukraine";"2020-2025";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +19212;21101257957;"Advanced Neurology";journal;"28109619";"AccScience Publishing";No;No;0,251;Q4;7;40;96;2562;83;94;0,74;64,05;48,02;0;Singapore;Asiatic Region;"AccScience Publishing";"2022-2026";"Cellular and Molecular Neuroscience (Q4); Cognitive Neuroscience (Q4); Neurology (Q4); Neuroscience (miscellaneous) (Q4)";"Neuroscience" +19213;12319;"Optical Review";journal;"13406000, 13499432";"Springer-Verlag GmbH and Co. KG";No;No;0,251;Q4;52;91;217;2740;255;209;1,17;30,11;35,24;0;Germany;Western Europe;"Springer-Verlag GmbH and Co. KG";"1994-2026";"Atomic and Molecular Physics, and Optics (Q4)";"Physics and Astronomy" +19214;17800156731;"Russian Journal of Physical Chemistry B";journal;"19907931, 19907923";"Pleiades Publishing";No;No;0,251;Q4;28;157;584;7120;1351;584;2,78;45,35;31,81;0;United States;Northern America;"Pleiades Publishing";"2007-2026";"Physical and Theoretical Chemistry (Q4)";"Chemistry" +19215;21101185816;"International Conference on Information Systems Security and Privacy";conference and proceedings;"21844356";"Science and Technology Publications, Lda";No;No;0,251;-;9;110;259;3004;297;256;0,87;27,31;25,53;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2019-2025";"Computer Science (miscellaneous); Information Systems";"Computer Science" +19216;21100823280;"Critical Research on Religion";journal;"20503032, 20503040";"SAGE Publications Ltd";No;No;0,250;Q1;19;33;73;1225;57;65;0,46;37,12;22,86;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2013-2026";"Religious Studies (Q1)";"Arts and Humanities" +19217;21101021440;"History of Science and Technology";journal;"24157422, 24157430";"State University of Infrastructure and Technologies";Yes;No;0,250;Q1;8;24;68;1096;74;62;1,02;45,67;54,90;0;Ukraine;Eastern Europe;"State University of Infrastructure and Technologies";"2019-2025";"History (Q1); Museology (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2); History and Philosophy of Science (Q2)";"Arts and Humanities; Social Sciences" +19218;21101180702;"Journal of Popular Music Education";journal;"23976721, 2397673X";"Intellect Ltd.";No;No;0,250;Q1;9;25;71;1068;41;62;0,45;42,72;46,43;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2026";"Music (Q1); Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +19219;21101284197;"Kunstkamera";journal;"26188619, 27128636";"Peter the Great Museum of Anthropology and Ethnography (Kunstkamera), Russian Academy of Sciences";No;No;0,250;Q1;3;62;200;1123;25;200;0,13;18,11;56,76;0;Russian Federation;Eastern Europe;"Peter the Great Museum of Anthropology and Ethnography (Kunstkamera), Russian Academy of Sciences";"2021-2025";"History (Q1); Museology (Q1); Anthropology (Q2); History and Philosophy of Science (Q2)";"Arts and Humanities; Social Sciences" +19220;21101064806;"Mongolian Studies";journal;"25001523, 27128059";"Kalmyk Scientific Centre of Russian Academy of Sciences";Yes;Yes;0,250;Q1;4;37;156;1110;27;156;0,19;30,00;64,15;0;Russian Federation;Eastern Europe;"Kalmyk Scientific Centre of Russian Academy of Sciences";"2016-2025";"History (Q1); Literature and Literary Theory (Q1); Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Linguistics and Language (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +19221;21100200635;"Radio Journal";journal;"14764504, 20401388";"Intellect Ltd.";No;No;0,250;Q1;14;15;46;697;31;45;0,50;46,47;52,38;0;United Kingdom;Western Europe;"Intellect Ltd.";"2012-2025";"Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Media Technology (Q2); Communication (Q3)";"Arts and Humanities; Engineering; Social Sciences" +19222;6000160211;"Theatre Research International";journal;"14740672, 03078833";"Cambridge University Press";No;No;0,250;Q1;20;19;66;1297;29;56;0,48;68,26;50,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1970, 1975-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +19223;21100775930;"Vestnik Tomskogo Gosudarstvennogo Universiteta, Filologiya";journal;"19986645, 23105046";"Tomsk State University";Yes;No;0,250;Q1;9;90;265;2954;50;265;0,17;32,82;76,38;0;Russian Federation;Eastern Europe;"Tomsk State University";"2015-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +19224;13220;"European Journal of Health Law";journal;"09290273, 15718093";"Martinus Nijhoff Publishers";No;No;0,250;Q2;27;31;90;1815;75;88;0,67;58,55;69,57;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"1994-2026";"Law (Q2); Health Policy (Q3)";"Medicine; Social Sciences" +19225;12100154836;"Evidence-Based Communication Assessment and Intervention";journal;"17489539, 17489547";"Informa Healthcare";No;No;0,250;Q2;21;14;63;263;29;30;0,63;18,79;76,92;0;United Kingdom;Western Europe;"Informa Healthcare";"2007-2026";"Linguistics and Language (Q2); Rehabilitation (Q3); Speech and Hearing (Q3); Cognitive Neuroscience (Q4)";"Health Professions; Medicine; Neuroscience; Social Sciences" +19226;21100435282;"Journal of Design and Built Environment";journal;"22321500, 18234208";"University of Malaya";Yes;Yes;0,250;Q2;14;56;68;2413;94;68;1,37;43,09;43,79;0;Malaysia;Asiatic Region;"University of Malaya";"2015-2025";"Architecture (Q2); Building and Construction (Q3); Nature and Landscape Conservation (Q3); Urban Studies (Q3)";"Engineering; Environmental Science; Social Sciences" +19227;21101147602;"Journal of Multidisciplinary Applied Natural Science";journal;"27743047";"Pandawa Institute";Yes;No;0,250;Q2;11;67;55;3067;106;55;2,00;45,78;49,19;0;Indonesia;Asiatic Region;"Pandawa Institute";"2021-2026";"Multidisciplinary (Q2); Chemistry (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)";"Chemistry; Environmental Science; Materials Science; Multidisciplinary" +19228;5700153725;"Representations";journal;"07346018, 1533855X";"University of California Press";No;No;0,250;Q2;46;19;86;1301;72;84;0,53;68,47;31,25;0;United States;Northern America;"University of California Press";"1983-2026";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Gender Studies (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19229;69489;"Acta Arachnologica";journal;"00015202";"Arachnological Society of Japan";No;No;0,250;Q3;18;16;61;390;24;60;0,34;24,38;14,63;0;Japan;Asiatic Region;"Arachnological Society of Japan";"1936-1942, 1944, 1947-1955, 1957-1961, 1963-1978, 1980-2025";"Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences" +19230;21101062490;"Arabian Journal of Medicinal and Aromatic Plants";journal;"24585920";"Moroccan Institute of Scientific and Technical Information";Yes;Yes;0,250;Q3;10;28;80;1169;121;80;1,48;41,75;36,08;0;Morocco;Africa;"Moroccan Institute of Scientific and Technical Information";"2019-2025";"Analytical Chemistry (Q3); Complementary and Alternative Medicine (Q3); Food Science (Q3); Pharmacology (Q3); Plant Science (Q3); Public Health, Environmental and Occupational Health (Q3)";"Agricultural and Biological Sciences; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +19231;19600157919;"Archives of Control Sciences";journal;"12302384, 23002611";"Polska Akademia Nauk";Yes;Yes;0,250;Q3;28;32;106;1208;118;106;1,08;37,75;23,38;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2004, 2009-2025";"Control and Optimization (Q3); Control and Systems Engineering (Q3); Modeling and Simulation (Q3)";"Engineering; Mathematics" +19232;23058;"Australian Feminist Studies";journal;"08164649, 14653303";"Routledge";No;No;0,250;Q3;39;45;89;2326;90;80;0,70;51,69;55,41;0;United Kingdom;Western Europe;"Routledge";"1985-2026";"Gender Studies (Q3)";"Social Sciences" +19233;3900148203;"Bulletin of the Russian Academy of Sciences: Physics";journal;"19349432, 10628738";"Pleiades Publishing";No;No;0,250;Q3;24;498;1259;10206;989;1258;0,85;20,49;28,95;0;United States;Northern America;"Pleiades Publishing";"2005-2025";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +19234;21100802697;"Central European Journal of Communication";journal;"18995101";"Polish Communication Association";No;No;0,250;Q3;10;12;77;584;49;69;0,54;48,67;69,23;0;Poland;Eastern Europe;"Polish Communication Association";"2016-2025";"Communication (Q3)";"Social Sciences" +19235;21101087774;"China Journal of Economics";journal;"20957254";"Tsinghua University Press";No;No;0,250;Q3;6;0;79;0;69;79;0,56;0,00;0,00;0;China;Asiatic Region;"Tsinghua University Press";"2019-2023";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +19236;21101065161;"Ciencias Psicologicas";journal;"16884221, 16884094";"Universidad Catolica del Uruguay";Yes;Yes;0,250;Q3;9;43;126;2350;91;123;0,66;54,65;48,15;0;Uruguay;Latin America;"Universidad Catolica del Uruguay";"2019-2025";"Education (Q3); Health (social science) (Q3); Psychology (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q4)";"Neuroscience; Psychology; Social Sciences" +19237;22183;"Comptes Rendus Chimie";journal;"18781543, 16310748";"Academie des sciences";Yes;Yes;0,250;Q3;96;56;220;3897;235;208;1,06;69,59;45,74;0;France;Western Europe;"Academie des sciences";"2002-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +19238;21100283777;"Egitim ve Bilim";journal;"13001337";"Turkish Education Association";No;No;0,250;Q3;33;41;139;3173;130;139;1,03;77,39;60,00;0;Turkey;Middle East;"Turkish Education Association";"2008-2025";"Education (Q3)";"Social Sciences" +19239;21100197000;"Engineering Journal";journal;"01258281";"Chulalongkorn University, Faculty of Fine and Applied Arts";Yes;No;0,250;Q3;35;81;183;3407;282;183;1,39;42,06;30,99;0;Thailand;Asiatic Region;"Chulalongkorn University, Faculty of Fine and Applied Arts";"2009-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +19240;4000150701;"Experimental and Clinical Transplantation";journal;"13040855, 21468427";"Baskent University";No;No;0,250;Q3;38;133;700;3012;486;664;0,69;22,65;38,08;1;Turkey;Middle East;"Baskent University";"2003-2026";"Transplantation (Q3)";"Medicine" +19241;21100860941;"Expert Review of Precision Medicine and Drug Development";journal;"23808993";"Taylor and Francis Ltd.";No;No;0,250;Q3;19;4;27;938;34;20;1,89;234,50;38,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2025";"Pharmacology (Q3); Drug Discovery (Q4); Genetics (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +19242;21100838781;"Geopersia";journal;"22287817, 22287825";"University of Tehran";No;No;0,250;Q3;12;24;72;1167;67;72;0,77;48,63;17,81;0;Iran;Middle East;"University of Tehran";"2017-2025";"Earth-Surface Processes (Q3); Geology (Q3); Geochemistry and Petrology (Q4)";"Earth and Planetary Sciences" +19243;21100398494;"Interdisciplinary Journal of Problem-based Learning";journal;"15415015";"Indiana University Press";Yes;Yes;0,250;Q3;29;7;31;451;42;28;1,13;64,43;55,56;0;United States;Northern America;"Indiana University Press";"2015-2025";"Education (Q3)";"Social Sciences" +19244;21100405538;"International Journal of Learning Technology";journal;"17418119, 14778386";"Inderscience";No;No;0,250;Q3;17;20;58;1275;68;57;0,95;63,75;37,25;0;Switzerland;Western Europe;"Inderscience";"2014-2025";"Education (Q3); E-learning (Q4)";"Social Sciences" +19245;21100864387;"International Journal of Swarm Intelligence Research";journal;"19479263, 19479271";"IGI Global Publishing";No;No;0,250;Q3;14;23;93;806;132;93;1,04;35,04;27,78;0;United States;Northern America;"IGI Global Publishing";"2010, 2016-2026";"Artificial Intelligence (Q3); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3)";"Computer Science" +19246;19700175041;"International Medical Case Reports Journal";journal;"1179142X";"Dove Medical Press Ltd";Yes;No;0,250;Q3;22;238;408;4728;304;407;0,70;19,87;42,60;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2010-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +19247;21100889434;"Investigaciones Turisticas";journal;"21745609";"Universidad de Alicante. Instituto Universitario de Investigaciones Turísticas";Yes;Yes;0,250;Q3;11;29;92;1909;118;92;1,47;65,83;50,00;0;Spain;Western Europe;"Universidad de Alicante. Instituto Universitario de Investigaciones Turísticas";"2018-2025";"Social Sciences (miscellaneous) (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +19248;19400158806;"Journal of Aeronautics, Astronautics and Aviation";journal;"19907710";"The Aeronautical and Astronautical Society of the Republic of China";No;No;0,250;Q3;14;146;184;4479;248;182;1,33;30,68;25,00;0;Taiwan;Asiatic Region;"The Aeronautical and Astronautical Society of the Republic of China";"2006-2025";"Aerospace Engineering (Q3); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Engineering" +19249;24018;"Journal of Analytical Chemistry";journal;"16083199, 10619348";"Pleiades Publishing";No;No;0,250;Q3;44;216;600;8958;793;599;1,45;41,47;50,00;0;United States;Northern America;"Pleiades Publishing";"1996-2026";"Analytical Chemistry (Q3)";"Chemistry" +19250;21101149216;"Journal of Bioscience and Applied Research";journal;"23569174, 23569182";"Society of Pathological Biochemistry and Hematology";Yes;No;0,250;Q3;9;145;177;5147;265;177;1,74;35,50;44,91;0;Egypt;Africa/Middle East;"Society of Pathological Biochemistry and Hematology";"2015-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q3)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +19251;21101210516;"Journal of Electronics, Electromedical Engineering, and Medical Informatics";journal;"26568632";"Jurusan Teknik Elektromedik, Politeknik Kesehatan Kemenkes Surabaya, Indonesia";No;No;0,250;Q3;8;95;49;3876;129;49;2,63;40,80;39,11;0;Indonesia;Asiatic Region;"Jurusan Teknik Elektromedik, Politeknik Kesehatan Kemenkes Surabaya, Indonesia";"2024-2026";"Electrical and Electronic Engineering (Q3); Biomaterials (Q4); Biomedical Engineering (Q4)";"Engineering; Materials Science" +19252;29538;"Journal of Hydrology New Zealand";journal;"00221708, 24633933";"New Zealand Hydrological Society";No;No;0,250;Q3;24;13;21;555;13;19;0,80;42,69;32,14;0;New Zealand;Pacific Region;"New Zealand Hydrological Society";"1968-1969, 1971, 1973-1991, 1993-2012, 2014-2015, 2017-2025";"Water Science and Technology (Q3)";"Environmental Science" +19253;21100200802;"Journal of Information and Communication Technology";journal;"21803862, 1675414X";"Universiti Utara Malaysia Press";Yes;Yes;0,250;Q3;20;15;71;849;139;71;1,96;56,60;23,40;0;Malaysia;Asiatic Region;"Universiti Utara Malaysia Press";"2011-2026";"Computer Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3)";"Computer Science; Mathematics" +19254;25899;"Journal of Photopolymer Science and Technology";journal;"13496336, 09149244";"Tokai University";No;No;0,250;Q3;44;61;209;1560;161;209;0,74;25,57;22,03;0;Japan;Asiatic Region;"Tokai University";"1988-2025";"Materials Chemistry (Q3); Polymers and Plastics (Q3); Organic Chemistry (Q4)";"Chemistry; Materials Science" +19255;24059;"Journal of Planar Chromatography - Modern TLC";journal;"17890993, 09334173";"Akademiai Kiado ZRt.";No;No;0,250;Q3;35;48;180;1750;273;172;1,72;36,46;52,36;0;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"1995-2026";"Analytical Chemistry (Q3); Biochemistry (Q4); Clinical Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +19256;21101286842;"Journal of Research, Innovation and Technologies";journal;"29718317";"RITHA Publishing House";No;No;0,250;Q3;6;14;38;568;77;38;2,35;40,57;41,67;0;Romania;Eastern Europe;"RITHA Publishing House";"2022-2025";"Artificial Intelligence (Q3); Computer Science (miscellaneous) (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Computer Science" +19257;16479;"Journal of the Pakistan Medical Association";journal;"00309982";"Pakistan Medical Association";Yes;No;0,250;Q3;57;636;2427;9156;1687;1949;0,59;14,40;49,34;0;Pakistan;Asiatic Region;"Pakistan Medical Association";"1966, 1972-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +19258;21100244603;"Lecture Notes in Geoinformation and Cartography";book series;"18632351, 18632246";"Springer Berlin";No;No;0,250;Q3;48;30;106;609;93;98;0,91;20,30;28,79;0;Germany;Western Europe;"Springer Berlin";"2006-2020, 2022, 2024-2025";"Civil and Structural Engineering (Q3); Computers in Earth Sciences (Q3); Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Engineering; Social Sciences" +19259;21100776063;"Letters on Materials";journal;"22185046, 24103535";"Institute for Metals Superplasticity Problems of Russian Academy of Sciences";Yes;No;0,250;Q3;18;64;247;1942;239;247;0,98;30,34;33,80;0;Russian Federation;Eastern Europe;"Institute for Metals Superplasticity Problems of Russian Academy of Sciences";"2014-2025";"Materials Science (miscellaneous) (Q3)";"Materials Science" +19260;21100789021;"Lithuanian Annual Strategic Review";journal;"16488024, 2335870X";"General Jonas Zemaitis Military Academy of Lithuania";Yes;No;0,250;Q3;7;10;32;646;28;29;0,80;64,60;43,75;0;Germany;Western Europe;"General Jonas Zemaitis Military Academy of Lithuania";"2016-2020, 2022-2025";"Political Science and International Relations (Q3)";"Social Sciences" +19261;21100457058;"Management and Production Engineering Review";journal;"20821344, 20808208";"Polska Akademia Nauk";Yes;No;0,250;Q3;28;55;146;2194;192;146;1,14;39,89;34,52;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2012-2013, 2015-2025";"Business and International Management (Q3); Industrial and Manufacturing Engineering (Q3); Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering" +19262;17838;"Medical Journal of Malaysia";journal;"03005283";"Malaysian Medical Association";No;No;0,250;Q3;46;190;485;5218;361;467;0,76;27,46;48,70;0;Malaysia;Asiatic Region;"Malaysian Medical Association";"1963-1964, 1973-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +19263;24103;"Nase More";journal;"04696255";"University of Dubronvnik";Yes;Yes;0,250;Q3;23;13;62;567;93;60;1,48;43,62;27,50;0;Croatia;Eastern Europe;"University of Dubronvnik";"1994-2025";"Ocean Engineering (Q3); Process Chemistry and Technology (Q3); Water Science and Technology (Q3); Transportation (Q4)";"Chemical Engineering; Engineering; Environmental Science; Social Sciences" +19264;21101123948;"Nordic Welfare Research";journal;"24644161";"Scandinavian University Press";Yes;Yes;0,250;Q3;9;29;57;1181;57;55;0,94;40,72;66,67;0;Norway;Western Europe;"Scandinavian University Press";"2019-2026";"Demography (Q3); Health (social science) (Q3); Social Sciences (miscellaneous) (Q3); Life-span and Life-course Studies (Q4)";"Social Sciences" +19265;51150;"Opto-Electronics Review";journal;"12303402, 18963757";"Polska Akademia Nauk";Yes;No;0,250;Q3;55;37;130;1205;162;130;1,10;32,57;26,81;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1996-2026";"Electrical and Electronic Engineering (Q3); Materials Science (miscellaneous) (Q3); Radiation (Q3)";"Engineering; Materials Science; Physics and Astronomy" +19266;26309;"Quarterly Journal of Mechanics and Applied Mathematics";journal;"00335614, 14643855";"Oxford University Press";No;No;0,250;Q3;44;12;46;400;47;46;0,83;33,33;23,53;0;United Kingdom;Western Europe;"Oxford University Press";"1948-2026";"Applied Mathematics (Q3); Condensed Matter Physics (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Mathematics; Physics and Astronomy" +19267;27798;"Revista Espanola de Medicina Legal";journal;"2173917X, 03774732";"Ediciones Doyma, S.L.";Yes;No;0,250;Q3;16;32;82;570;54;80;0,54;17,81;57,14;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"1985, 1999, 2008-2026";"Pathology and Forensic Medicine (Q3)";"Medicine" +19268;21101041536;"SAE International Journal of Connected and Automated Vehicles";journal;"25740741, 2574075X";"SAE International";No;No;0,250;Q3;12;34;115;1343;137;110;1,01;39,50;23,76;0;United States;Northern America;"SAE International";"2019-2026";"Artificial Intelligence (Q3); Automotive Engineering (Q3); Computer Science Applications (Q3); Control and Systems Engineering (Q3)";"Computer Science; Engineering" +19269;5800179591;"Spanish Journal of Agricultural Research";journal;"1695971X, 21719292";"Instituto Nacional de Investigación y Tecnología Agraria y Alimentaria (CSIC-INIA)";Yes;Yes;0,250;Q3;54;50;151;2455;183;151;1,23;49,10;38,10;1;Spain;Western Europe;"Instituto Nacional de Investigación y Tecnología Agraria y Alimentaria (CSIC-INIA)";"2006-2025";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +19270;21100274264;"Tokyo Journal of Mathematics";journal;"03873870";"Publication Committee for the Tokyo Journal of Mathematics";No;No;0,250;Q3;22;29;66;476;28;66;0,39;16,41;22,22;0;Japan;Asiatic Region;"Publication Committee for the Tokyo Journal of Mathematics";"1978-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19271;21101228018;"Toxicology Communications";journal;"24734306";"Taylor and Francis Ltd.";Yes;No;0,250;Q3;7;27;67;575;58;61;0,80;21,30;31,48;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2021-2026";"Medicine (miscellaneous) (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3); Public Health, Environmental and Occupational Health (Q3); Toxicology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +19272;9800153138;"Vacunas";journal;"15788857, 15769887";"Ediciones Doyma, S.L.";No;No;0,250;Q3;14;48;179;2076;192;152;1,16;43,25;43,27;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2005-2026";"Infectious Diseases (Q3); Immunology (Q4)";"Immunology and Microbiology; Medicine" +19273;21100794584;"Yuzuncu Yil University Journal of Agricultural Sciences";journal;"13087576, 13087584";"University of Yuzuncu Yil";Yes;Yes;0,250;Q3;13;60;203;2904;221;203;1,03;48,40;39,35;0;Turkey;Middle East;"University of Yuzuncu Yil";"2016-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +19274;21100204305;"Advances in Mental Health and Intellectual Disabilities";journal;"20441290, 20441282";"Emerald Group Publishing Ltd.";No;No;0,250;Q4;22;26;62;1133;49;61;0,87;43,58;70,89;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2026";"Psychiatry and Mental Health (Q4)";"Medicine" +19275;21100301457;"Case Reports in Endocrinology";journal;"20906501, 2090651X";"John Wiley and Sons Ltd";Yes;No;0,250;Q4;14;55;100;1237;81;100;0,70;22,49;47,37;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012-2026";"Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +19276;21100983358;"Epilepsy and Paroxysmal Conditions";journal;"20778333, 23114088";"IRBIS LLC";Yes;No;0,250;Q4;7;23;97;861;102;96;1,16;37,43;64,38;0;Russian Federation;Eastern Europe;"IRBIS LLC";"2017-2025";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +19277;21100787776;"Papers on Social Representations";journal;"18193978, 10215573";"ISCTE";Yes;No;0,250;Q4;13;3;27;232;26;27;1,00;77,33;55,56;0;United Kingdom;Western Europe;"ISCTE";"2016-2025";"Social Psychology (Q4)";"Psychology" +19278;5700163992;"Nova Religio";journal;"15418480, 10926690";"University of Pennsylvania Press";No;No;0,249;Q1;19;22;189;1352;41;189;0,22;61,45;41,18;0;United States;Northern America;"University of Pennsylvania Press";"2009-2026";"Religious Studies (Q1)";"Arts and Humanities" +19279;18981;"Social History of Medicine";journal;"0951631X, 14774666";"Oxford University Press";No;No;0,249;Q1;42;38;120;3969;86;119;0,58;104,45;51,11;0;United Kingdom;Western Europe;"Oxford University Press";"1988-2025";"History (Q1); Medicine (miscellaneous) (Q3)";"Arts and Humanities; Medicine" +19280;21100439340;"Communication Sciences and Disorders";journal;"22880917, 22881328";"Korean Academy of Speech-Language Pathology and Audiology";No;No;0,249;Q2;15;64;199;2972;122;199;0,60;46,44;61,42;0;South Korea;Asiatic Region;"Korean Academy of Speech-Language Pathology and Audiology";"2013-2025";"Linguistics and Language (Q2); Communication (Q3); Speech and Hearing (Q3)";"Health Professions; Social Sciences" +19281;21101339665;"Egyptian Journal of Bronchology";journal;"16878426, 23148551";"Springer Medizin";Yes;No;0,249;Q2;14;149;248;4358;194;240;0,74;29,25;41,15;0;Germany;Western Europe;"Springer Medizin";"2013-2026";"Respiratory Care (Q2); Critical Care and Intensive Care Medicine (Q3); Pulmonary and Respiratory Medicine (Q3)";"Health Professions; Medicine" +19282;21000195314;"Journal of Construction in Developing Countries";journal;"18236499, 21804222";"Penerbit Universiti Sains Malaysia";Yes;No;0,249;Q2;32;35;92;2034;132;92;1,18;58,11;48,91;1;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2006-2026";"Architecture (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Engineering" +19283;21101210729;"Jurnal Arbitrer";journal;"25501011, 23391162";"Fakultas Ilmu Budaya Universitas Andalas";Yes;No;0,249;Q2;4;42;40;2189;54;40;1,35;52,12;40,00;0;Indonesia;Asiatic Region;"Fakultas Ilmu Budaya Universitas Andalas";"2024-2025";"Linguistics and Language (Q2)";"Social Sciences" +19284;21101152096;"Latin American Legal Studies";journal;"07199104, 07199112";"Universidad Adolfo Ibanez";Yes;Yes;0,249;Q2;4;15;39;949;27;36;0,65;63,27;31,58;0;Chile;Latin America;"Universidad Adolfo Ibanez";"2019-2025";"Law (Q2)";"Social Sciences" +19285;21100896471;"Studies in Corpus Linguistics";book series;"13880373";"John Benjamins Publishing Company";No;No;0,249;Q2;44;0;84;0;53;6;0,51;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2004-2015, 2018-2024";"Linguistics and Language (Q2); Education (Q3); Management of Technology and Innovation (Q3)";"Business, Management and Accounting; Social Sciences" +19286;21101149767;"Ain Shams Dental Journal (Egypt)";journal;"11107642, 27355039";"Ain Shams University, Faculty of Dentistry";Yes;No;0,249;Q3;6;192;128;6390;239;128;1,87;33,28;58,41;0;Egypt;Africa/Middle East;"Ain Shams University, Faculty of Dentistry";"2004, 2016, 2019-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +19287;21101044721;"Annals of Laparoscopic and Endoscopic Surgery";journal;"25186973";"AME Publishing Company";No;No;0,249;Q3;12;37;112;1616;98;98;0,82;43,68;28,17;0;China;Asiatic Region;"AME Publishing Company";"2019-2026";"Surgery (Q3)";"Medicine" +19288;12300154711;"Archives of Biological Sciences";journal;"03544664";"Institut za Bioloska Istrazivanja";Yes;Yes;0,249;Q3;35;34;112;1595;96;112;0,92;46,91;52,23;0;Serbia;Eastern Europe;"Institut za Bioloska Istrazivanja";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +19289;28407;"Asian Economic Journal";journal;"13513958, 14678381";"Wiley-Blackwell Publishing Ltd";No;No;0,249;Q3;37;20;58;700;62;58;1,00;35,00;37,50;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1987-2025";"Development (Q3); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)";"Economics, Econometrics and Finance; Social Sciences" +19290;8300153213;"B.E. Journal of Macroeconomics";journal;"19351690";"Walter de Gruyter GmbH";No;No;0,249;Q3;35;24;79;1092;49;79;0,47;45,50;36,59;1;Germany;Western Europe;"Walter de Gruyter GmbH";"2001, 2007-2025";"Economics and Econometrics (Q3)";"Economics, Econometrics and Finance" +19291;21100858121;"Bulletin of the Iraq Natural History Museum";journal;"10178678, 23119799";"University of Baghdad - Iraq Natural History Reseach Center and Museum";Yes;No;0,249;Q3;10;17;76;658;61;76;0,76;38,71;43,75;0;Iraq;Middle East;"University of Baghdad - Iraq Natural History Reseach Center and Museum";"2017-2025";"Animal Science and Zoology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Geology (Q3); Insect Science (Q3); Plant Science (Q3); Paleontology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +19292;19600161818;"Chemical Engineering Transactions";journal;"22839216";"Italian Association of Chemical Engineering - AIDIC";Yes;No;0,249;Q3;55;758;2561;12007;2328;2561;0,88;15,84;38,61;0;Italy;Western Europe;"Italian Association of Chemical Engineering - AIDIC";"2009-2025";"Chemical Engineering (miscellaneous) (Q3)";"Chemical Engineering" +19293;21100920795;"Eurasian Physical Technical Journal";journal;"24132179, 18111165";"E.A. Buketov Karaganda University Publish house";Yes;No;0,249;Q3;9;60;165;1365;147;165;1,07;22,75;40,00;0;Kazakhstan;Asiatic Region;"E.A. Buketov Karaganda University Publish house";"2019-2025";"Energy (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Energy; Engineering; Materials Science; Physics and Astronomy" +19294;19200156916;"Foldtani Kozlony";journal;"0015542X";"Hungarian Geological Society";Yes;No;0,249;Q3;14;19;68;925;28;60;0,52;48,68;25,00;0;Hungary;Eastern Europe;"Hungarian Geological Society";"2009-2025";"Geology (Q3); Stratigraphy (Q3); Geochemistry and Petrology (Q4); Paleontology (Q4)";"Earth and Planetary Sciences" +19295;21100208036;"Foundations of Computing and Decision Sciences";journal;"23003405, 08676356";"Walter de Gruyter GmbH";Yes;Yes;0,249;Q3;20;21;66;849;103;66;1,22;40,43;36,17;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2012-2025";"Computer Science (miscellaneous) (Q3); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +19296;21101147343;"Geoconservation Research";journal;"25887343, 26454661";"OICC Press";Yes;Yes;0,249;Q3;9;9;63;450;50;60;0,74;50,00;50,00;0;United Kingdom;Western Europe;"OICC Press";"2019-2025";"Education (Q3); Geography, Planning and Development (Q3); Geology (Q3); Paleontology (Q4)";"Earth and Planetary Sciences; Social Sciences" +19297;25581;"Indian Journal of Dental Research";journal;"19983603, 09709290";"Wolters Kluwer Medknow Publications";Yes;No;0,249;Q3;58;78;303;1323;247;290;0,74;16,96;55,41;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1989-2025";"Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)";"Dentistry; Medicine" +19298;19600162006;"International Journal of Business and Society";journal;"15116670";"Universiti Malaysia Sarawak";No;No;0,249;Q3;30;61;250;3631;378;250;1,35;59,52;39,88;0;Malaysia;Asiatic Region;"Universiti Malaysia Sarawak";"2009-2025";"Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +19299;6200180168;"International Journal of Electronic Marketing and Retailing";journal;"17411025, 17411033";"Inderscience Enterprises Ltd";No;No;0,249;Q3;19;33;83;2676;115;83;0,94;81,09;42,11;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2026";"Business and International Management (Q3); Management Information Systems (Q3); Marketing (Q3)";"Business, Management and Accounting" +19300;21100948916;"International Journal of Mining and Geo-Engineering";journal;"23456949, 23456930";"University of Tehran, Faculty of Engineering";Yes;Yes;0,249;Q3;10;47;144;1749;193;144;1,11;37,21;14,89;0;Iran;Middle East;"University of Tehran, Faculty of Engineering";"2019-2025";"Economic Geology (Q3); Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences" +19301;15489;"International Journal of Nanoscience";journal;"17935350, 0219581X";"World Scientific";No;No;0,249;Q3;37;31;176;1921;343;176;2,03;61,97;27,52;0;Singapore;Asiatic Region;"World Scientific";"2002, 2004-2026";"Computer Science Applications (Q3); Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Materials Science (miscellaneous) (Q3); Bioengineering (Q4); Biotechnology (Q4); Nanoscience and Nanotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Computer Science; Engineering; Materials Science; Physics and Astronomy" +19302;21100211767;"International Journal of Power and Energy Conversion";journal;"17571162, 17571154";"Inderscience Enterprises Ltd";Yes;No;0,249;Q3;12;26;64;937;91;64;1,73;36,04;29,27;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2009-2026";"Energy Engineering and Power Technology (Q3)";"Energy" +19303;25978;"Journal of Electronic Imaging";journal;"1560229X, 10179909";"SPIE";No;No;0,249;Q3;74;325;991;14016;1234;984;1,23;43,13;30,45;0;United States;Northern America;"SPIE";"1993-2025";"Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4)";"Computer Science; Engineering; Physics and Astronomy" +19304;21101041956;"Journal of Nursing and Midwifery Sciences";journal;"23455764, 23455756";"Brieflands";No;No;0,249;Q3;11;49;127;1777;116;127;1,06;36,27;68,48;0;Netherlands;Western Europe;"Brieflands";"2019-2026";"Nursing (miscellaneous) (Q3)";"Nursing" +19305;21100903426;"Mathematical Notes of NEFU";journal;"2587876X, 24119326";"M. K. Ammosov North-Eastern Federal University";No;No;0,249;Q3;7;61;100;644;38;98;0,42;10,56;49,44;0;Russian Federation;Eastern Europe;"M. K. Ammosov North-Eastern Federal University";"2019-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19306;25057;"Mathematical Social Sciences";journal;"01654896";"Elsevier B.V.";No;No;0,249;Q3;46;63;173;1782;120;173;0,71;28,29;20,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1980-2026";"Psychology (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Psychology; Social Sciences" +19307;12350;"Optics and Photonics News";trade journal;"15413721, 10476938";"Optica Publishing Group (formerly OSA)";No;No;0,249;Q3;56;45;106;251;59;105;0,64;5,58;25,00;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"1990-2025";"Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Atomic and Molecular Physics, and Optics (Q4)";"Engineering; Materials Science; Physics and Astronomy" +19308;200147128;"Phyllomedusa";journal;"23169079, 15191397";"University of Sao Paolo";Yes;Yes;0,249;Q3;25;24;65;1060;46;65;0,71;44,17;29,35;0;Brazil;Latin America;"University of Sao Paolo";"2005-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +19309;14247;"Postepy Biochemii";journal;"00325422";"Polish Biochemical Society";No;No;0,249;Q3;21;35;120;2291;70;114;0,72;65,46;76,32;0;Poland;Eastern Europe;"Polish Biochemical Society";"1954, 1956-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biochemistry (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +19310;18135;"PPmP Psychotherapie Psychosomatik Medizinische Psychologie";journal;"14391058, 09372032";"Georg Thieme Verlag";Yes;No;0,249;Q3;50;79;259;1816;124;176;0,45;22,99;58,96;0;Germany;Western Europe;"Georg Thieme Verlag";"1980-2026";"Clinical Psychology (Q3); Applied Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +19311;21101270843;"Proceedings in Marine Technology and Ocean Engineering";book series;"2638647X, 26386461";"CRC Press";No;No;0,249;Q3;8;1;165;0;83;18;0,00;0,00;0,00;0;Netherlands;Western Europe;"CRC Press";"2019-2025";"Ocean Engineering (Q3)";"Engineering" +19312;23299;"Proceedings of the Japan Academy Series A: Mathematical Sciences";journal;"03862194";"Japan Academy";No;No;0,249;Q3;26;9;48;123;19;48;0,38;13,67;17,65;0;Japan;Asiatic Region;"Japan Academy";"1996-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19313;19900192431;"Revista Mexicana de Ingeniera Quimica";journal;"23958472, 16652738";"Universidad Autonoma Metropolitana";Yes;No;0,249;Q3;30;55;224;2468;242;224;1,19;44,87;37,63;0;Mexico;Latin America;"Universidad Autonoma Metropolitana";"2005, 2007-2025";"Chemical Engineering (miscellaneous) (Q3)";"Chemical Engineering" +19314;19700175853;"Rocznik Ochrona Srodowiska";journal;"1506218X";"Middle Pomeranian Scientific Society";No;No;0,249;Q3;22;67;137;2830;158;137;1,07;42,24;37,09;0;Poland;Eastern Europe;"Middle Pomeranian Scientific Society";"2007-2026";"Environmental Science (miscellaneous) (Q3)";"Environmental Science" +19315;13023;"Seminars in Spine Surgery";journal;"15584496, 10407383";"W.B. Saunders";No;No;0,249;Q3;20;39;118;1401;65;109;0,61;35,92;14,78;0;United States;Northern America;"W.B. Saunders";"1990-2026";"Orthopedics and Sports Medicine (Q3); Surgery (Q3)";"Medicine" +19316;21100781703;"Studia Universitatis Babes-Bolyai Mathematica";journal;"02521938, 2065961X";"Babes-Bolyai University";Yes;No;0,249;Q3;14;46;192;1061;104;192;0,54;23,07;27,96;0;Romania;Eastern Europe;"Babes-Bolyai University";"2016-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19317;21100795624;"Voprosy Detskoi Dietologii";journal;"24149519, 17275784";"Dynasty Publishing House";No;No;0,249;Q3;10;57;173;2088;197;172;1,30;36,63;82,51;0;Russian Federation;Eastern Europe;"Dynasty Publishing House";"2016-2025";"Food Science (Q3); Pediatrics, Perinatology and Child Health (Q3); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Medicine; Nursing" +19318;21101298938;"Human Resources Management and Services";journal;"26614308";"";No;No;0,249;Q4;5;29;76;1341;104;74;1,45;46,24;57,14;0;Singapore;Asiatic Region;"";"2021-2026";"Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +19319;21101220429;"Open Communications in Nonlinear Mathematical Physics";journal;"28029356";"International Society of Nonlinear Mathematical Physics";Yes;Yes;0,249;Q4;4;15;51;534;28;47;0,63;35,60;13,64;0;Germany;Western Europe;"International Society of Nonlinear Mathematical Physics";"2021-2026";"Mathematical Physics (Q4)";"Mathematics" +19320;21100409404;"Ethnomusicology Forum";journal;"17411920, 17411912";"Taylor and Francis Ltd.";No;No;0,248;Q1;13;30;59;1043;46;49;0,62;34,77;63,16;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2025";"Music (Q1); Anthropology (Q2)";"Arts and Humanities; Social Sciences" +19321;5800224051;"Jezik in Slovstvo";journal;"00216933, 15813754";"Slavisticno drustvo v Ljubljani";Yes;Yes;0,248;Q1;7;10;141;244;27;131;0,17;24,40;80,00;0;Slovenia;Eastern Europe;"Slavisticno drustvo v Ljubljani";"2011-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +19322;15282;"Journal of the American Academy of Physician Assistants";journal;"08937400, 15471896";"Wolters Kluwer Health";No;No;0,248;Q1;31;148;577;1979;358;453;0,64;13,37;57,92;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"1989, 1999-2026";"Nurse Assisting (Q1); Medicine (miscellaneous) (Q3)";"Medicine; Nursing" +19323;21101176722;"LLT Journal: Journal on Language and Language Teaching";journal;"14107201, 25799533";"Sanata Dharma University";Yes;Yes;0,248;Q1;8;54;172;2602;178;172;1,19;48,19;50,00;0;Indonesia;Asiatic Region;"Sanata Dharma University";"2021-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +19324;21100829273;"Projections (New York)";journal;"19349688, 19349696";"Berghahn Journals";No;No;0,248;Q1;10;17;46;667;35;45;0,33;39,24;33,33;0;United Kingdom;Western Europe;"Berghahn Journals";"2015-2025";"Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +19325;21101155447;"Budownictwo i Architektura";journal;"25443275, 18990665";"Politechnika Lubelska";Yes;Yes;0,248;Q2;5;52;55;2206;64;55;1,16;42,42;43,85;0;Poland;Eastern Europe;"Politechnika Lubelska";"2023-2025";"Architecture (Q2); Conservation (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Geography, Planning and Development (Q3)";"Arts and Humanities; Engineering; Social Sciences" +19326;21100790520;"Canadian Journal of Law and Jurisprudence";journal;"20564260, 08418209";"Cambridge University Press";No;No;0,248;Q2;25;25;64;2748;51;64;0,89;109,92;20,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1996-2003, 2007, 2011-2026";"Law (Q2)";"Social Sciences" +19327;21101021796;"Iberoamericana - Nordic Journal of Latin American and Caribbean Studies";journal;"00468444, 20024509";"Stockholm University Press";Yes;Yes;0,248;Q2;6;7;30;328;15;30;0,52;46,86;50,00;0;Sweden;Western Europe;"Stockholm University Press";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +19328;98245;"Library Resources and Technical Services";journal;"00242527";"American Library Association";Yes;No;0,248;Q2;26;20;64;767;42;52;0,69;38,35;54,00;0;United States;Northern America;"American Library Association";"1978-1979, 1981-1984, 1988-2025";"Library and Information Sciences (Q2); Information Systems (Q3)";"Computer Science; Social Sciences" +19329;16035;"Restaurator";journal;"00345806, 18658431";"De Gruyter Saur";No;No;0,248;Q2;34;15;49;442;39;46;0,86;29,47;47,50;0;Germany;Western Europe;"De Gruyter Saur";"1970, 1972, 1978-1980, 1983-1984, 1986-2026";"Conservation (Q2); Media Technology (Q2); Materials Science (miscellaneous) (Q3)";"Arts and Humanities; Engineering; Materials Science" +19330;22659;"Acta Chromatographica";journal;"12332356, 20835736";"Akademiai Kiado ZRt.";Yes;No;0,248;Q3;34;81;126;2603;179;126;1,40;32,14;38,91;0;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"1996-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +19331;21101061919;"African Journal of Thoracic and Critical Care Medicine";journal;"26170205, 26170191";"South African Medical Association";Yes;No;0,248;Q3;10;25;137;446;75;63;0,50;17,84;28,57;0;South Africa;Africa;"South African Medical Association";"2018-2025";"Critical Care and Intensive Care Medicine (Q3); Infectious Diseases (Q3); Pulmonary and Respiratory Medicine (Q3)";"Medicine" +19332;14492;"Archives of Disease in Childhood: Education and Practice Edition";journal;"17430593, 17430585";"BMJ Publishing Group";No;No;0,248;Q3;47;95;272;1277;150;205;0,60;13,44;65,05;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2004-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +19333;21100913137;"Asian Journal of Agriculture and Rural Development";journal;"22244433, 23041455";"Asian Economic and Social Society";Yes;No;0,248;Q3;12;53;85;2097;118;85;1,47;39,57;32,71;0;Pakistan;Asiatic Region;"Asian Economic and Social Society";"2018-2025";"Agronomy and Crop Science (Q3); Geography, Planning and Development (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences; Social Sciences" +19334;17251;"Biologia Plantarum";journal;"15738264, 00063134";"Springer Netherlands";Yes;No;0,248;Q3;101;10;86;560;96;84;1,04;56,00;50,00;0;Netherlands;Western Europe;"Springer Netherlands";"1959-2025";"Horticulture (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +19335;21100366607;"Case Reports in Women's Health";journal;"22149112";"Elsevier B.V.";Yes;No;0,248;Q3;17;91;300;1317;244;262;0,83;14,47;51,60;0;Netherlands;Western Europe;"Elsevier B.V.";"2014-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +19336;40682;"Chirurgia (Romania)";journal;"12219118, 1842368X";"Editura Celsius";Yes;No;0,248;Q3;28;84;259;2704;188;256;0,91;32,19;34,89;0;Romania;Eastern Europe;"Editura Celsius";"1991-1998, 2000-2025";"Surgery (Q3)";"Medicine" +19337;21026;"Cirugia Espanola";journal;"0009739X, 1578147X";"Asociacion Espanola de Cirujanos";No;No;0,248;Q3;32;162;625;2838;439;554;0,68;17,52;43,84;1;Spain;Western Europe;"Asociacion Espanola de Cirujanos";"1973-1985, 1992, 2001-2026";"Surgery (Q3)";"Medicine" +19338;19700186875;"Computational Thermal Sciences";journal;"19402554, 19402503";"Begell House Inc.";No;No;0,248;Q3;27;29;93;827;106;89;1,43;28,52;14,08;0;United States;Northern America;"Begell House Inc.";"2009-2025";"Computational Mathematics (Q3); Computational Mechanics (Q3); Energy Engineering and Power Technology (Q3); Fluid Flow and Transfer Processes (Q3); Numerical Analysis (Q3); Surfaces and Interfaces (Q4)";"Chemical Engineering; Energy; Engineering; Mathematics; Physics and Astronomy" +19339;4000148818;"DISP";journal;"02513625, 21668604";"Taylor and Francis Ltd.";No;No;0,248;Q3;31;41;90;1413;69;75;0,50;34,46;53,42;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2002, 2005-2025";"Geography, Planning and Development (Q3)";"Social Sciences" +19340;21876;"Egyptian Journal of Anaesthesia";journal;"16871804, 11101849";"Taylor and Francis Ltd.";Yes;No;0,248;Q3;21;2;264;34;170;264;0,66;17,00;14,29;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2025";"Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)";"Medicine" +19341;21101194669;"Environmental and Experimental Biology";journal;"16918088, 22559582";"University of Latvia";Yes;Yes;0,248;Q3;8;18;50;780;63;50;1,29;43,33;38,10;0;Latvia;Eastern Europe;"University of Latvia";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +19342;6000195392;"Estonian Journal of Earth Sciences";journal;"17364728, 17367557";"Estonian Academy Publishers";Yes;No;0,248;Q3;32;11;62;683;43;62;0,60;62,09;37,78;0;Estonia;Eastern Europe;"Estonian Academy Publishers";"2007-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Water Science and Technology (Q3)";"Earth and Planetary Sciences; Environmental Science" +19343;21100372631;"European Poultry Science";journal;"16129199";"Elsevier B.V.";No;No;0,248;Q3;24;1;51;12;49;51;0,97;12,00;40,00;0;Germany;Western Europe;"Elsevier B.V.";"2014-2024";"Animal Science and Zoology (Q3); Food Animals (Q3)";"Agricultural and Biological Sciences; Veterinary" +19344;18465;"Fluid Dynamics Research";journal;"01695983";"IOP Publishing Ltd.";No;No;0,248;Q3;61;40;126;1907;123;122;0,87;47,68;20,62;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1986-2025";"Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Chemical Engineering; Engineering; Physics and Astronomy" +19345;21101066748;"Health, Sport, Rehabilitation";journal;"25202677, 25202685";"Springer Nature";Yes;No;0,248;Q3;10;35;100;1319;99;100;1,16;37,69;33,10;0;Ukraine;Eastern Europe;"Springer Nature";"2019-2025";"Complementary and Manual Therapy (Q3); Education (Q3); Occupational Therapy (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)";"Health Professions; Medicine; Social Sciences" +19346;21101023180;"International Journal of Advanced Technology and Engineering Exploration";journal;"23945443, 23947454";"Accent Social and Welfare Society";No;No;0,248;Q3;20;110;313;4642;524;313;1,54;42,20;31,28;0;India;Asiatic Region;"Accent Social and Welfare Society";"2019-2026";"Artificial Intelligence (Q3); Civil and Structural Engineering (Q3); Computational Theory and Mathematics (Q3); Computer Graphics and Computer-Aided Design (Q3); Computer Networks and Communications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3)";"Computer Science; Engineering" +19347;17700156204;"International Journal of Applied Decision Sciences";journal;"17558085, 17558077";"Inderscience Enterprises Ltd";No;No;0,248;Q3;23;33;99;1817;128;99;1,17;55,06;37,11;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2008-2026";"Economics and Econometrics (Q3); Information Systems and Management (Q3); Strategy and Management (Q3); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +19348;12100156732;"International Journal of Business Data Communications and Networking";journal;"15480631, 1548064X";"IGI Publishing";No;No;0,248;Q3;16;1;13;30;36;13;2,67;30,00;100,00;0;United States;Northern America;"IGI Publishing";"2005-2022, 2024-2025";"Computer Networks and Communications (Q3); Management Information Systems (Q3)";"Business, Management and Accounting; Computer Science" +19349;11900154399;"International Journal of Data Warehousing and Mining";journal;"15483924, 15483932";"IGI Publishing";No;No;0,248;Q3;28;10;76;528;116;76;1,59;52,80;30,30;0;United States;Northern America;"IGI Publishing";"2005-2026";"Hardware and Architecture (Q3); Software (Q4)";"Computer Science" +19350;4700152704;"International Journal of Quantum Information";journal;"02197499, 17936918";"World Scientific Publishing Co. Pte Ltd";No;No;0,248;Q3;48;60;160;2704;194;157;1,32;45,07;29,37;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2005-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +19351;21100913338;"International Journal on Technical and Physical Problems of Engineering";journal;"20773528";"International Organization on 'Technical and Physical Problems of Engineering'";No;No;0,248;Q3;17;183;571;4292;741;564;1,36;23,45;37,25;0;Romania;Eastern Europe;"International Organization on 'Technical and Physical Problems of Engineering'";"2019-2025";"Computer Science (miscellaneous) (Q3); Energy (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)";"Computer Science; Energy; Engineering" +19352;21100900273;"Journal of Algebra Combinatorics Discrete Structures and Applications";journal;"2148838X";"Jacodesmath Institute";Yes;No;0,248;Q3;7;26;52;522;15;52;0,34;20,08;20,00;0;Turkey;Middle East;"Jacodesmath Institute";"2018-2025";"Algebra and Number Theory (Q3); Discrete Mathematics and Combinatorics (Q3)";"Mathematics" +19353;21101030820;"Journal of Chemical Metrology";journal;"13076183";"ACG Publications";No;No;0,248;Q3;10;22;52;680;87;52;1,71;30,91;38,36;0;Turkey;Middle East;"ACG Publications";"2019-2025";"Analytical Chemistry (Q3); Electrochemistry (Q4); Spectroscopy (Q4); Toxicology (Q4)";"Chemistry; Pharmacology, Toxicology and Pharmaceutics" +19354;55811;"Journal of Cytology";journal;"09709371, 09745165";"Wolters Kluwer Medknow Publications";Yes;Yes;0,248;Q3;28;38;119;762;92;108;0,62;20,05;53,96;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1985-1988, 2007-2025";"Pathology and Forensic Medicine (Q3); Histology (Q4)";"Medicine" +19355;25423;"Journal of Environmental Horticulture";journal;"25735586, 07382898";"Horticultural Research Institute";No;No;0,248;Q3;14;21;64;962;62;64;1,07;45,81;37,33;0;United States;Northern America;"Horticultural Research Institute";"1984, 1987-1988, 2017-2025";"Environmental Science (miscellaneous) (Q3); Horticulture (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19356;21100448003;"Journal of Higher Education Outreach and Engagement";journal;"15346102, 21648212";"University of Georgia";No;No;0,248;Q3;24;37;127;1475;93;124;0,59;39,86;57,94;0;United States;Northern America;"University of Georgia";"2001, 2015-2025";"Education (Q3)";"Social Sciences" +19357;21101043315;"Journal of Perinatal Education";journal;"15488519, 10581243";"Springer Publishing Company";No;No;0,248;Q3;7;23;68;663;51;58;0,49;28,83;91,53;0;United States;Northern America;"Springer Publishing Company";"2015-2019, 2021-2025";"Maternity and Midwifery (Q3); Obstetrics and Gynecology (Q3); Pediatrics (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine; Nursing" +19358;12200154705;"Journal of Vibroengineering";journal;"13928716";"EXTRICA";Yes;No;0,248;Q3;37;89;327;2581;415;327;1,14;29,00;32,08;0;Lithuania;Eastern Europe;"EXTRICA";"2008-2026";"Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Engineering; Materials Science" +19359;21100781412;"Magazine of Civil Engineering";journal;"27128172";"St. Petersburg Polytechnic University of Peter the Great";Yes;Yes;0,248;Q3;33;41;272;1220;269;272;0,92;29,76;28,04;0;Russian Federation;Eastern Europe;"St. Petersburg Polytechnic University of Peter the Great";"2013-2025";"Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +19360;6500153227;"Nature and Culture";journal;"15585468, 15586073";"Berghahn Journals";No;No;0,248;Q3;28;13;43;656;38;43;0,64;50,46;47,62;0;United Kingdom;Western Europe;"Berghahn Journals";"2008-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +19361;21100843483;"Politiche Sociali";journal;"22842098, 25316389";"Societa Editrice Il Mulino";No;No;0,248;Q3;12;29;101;1071;49;94;0,55;36,93;45,28;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2014-2025";"Sociology and Political Science (Q3)";"Social Sciences" +19362;13990;"Psychologie Francaise";journal;"00332984";"Elsevier Masson s.r.l.";No;No;0,248;Q3;20;27;82;1940;56;81;0,81;71,85;64,38;0;France;Western Europe;"Elsevier Masson s.r.l.";"2004-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +19363;10800153304;"Revista Brasileira de Educacao Especial";journal;"14136538";"Associacao Brasileira de Pesquisadores em Educacao Especial";Yes;Yes;0,248;Q3;14;73;130;2564;68;129;0,48;35,12;71,62;0;Brazil;Latin America;"Associacao Brasileira de Pesquisadores em Educacao Especial";"2007-2025";"Education (Q3)";"Social Sciences" +19364;21100420803;"Roads and Bridges - Drogi i Mosty";journal;"16431618, 2449769X";"Instytut Badawczy Drog i Mostow";Yes;No;0,248;Q3;15;42;83;1300;80;83;1,05;30,95;19,05;0;Poland;Eastern Europe;"Instytut Badawczy Drog i Mostow";"2005-2025";"Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +19365;19700188499;"Suma Psicologica";journal;"21459797, 01214381";"Konrad Lorenz Editores";Yes;Yes;0,248;Q3;20;11;48;617;39;48;0,63;56,09;50,00;0;Colombia;Latin America;"Konrad Lorenz Editores";"2010-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +19366;100069;"Historia (Brazil)";journal;"01019074, 19804369";"Universidade Estadual Paulista (UNESP)";Yes;Yes;0,247;Q1;10;35;123;2045;22;122;0,23;58,43;21,88;0;Brazil;Latin America;"Universidade Estadual Paulista (UNESP)";"2007-2025";"History (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19367;21100774308;"Journal of Jesuit Studies";journal;"22141324, 22141332";"Brill Academic Publishers";Yes;Yes;0,247;Q1;13;22;80;2478;53;80;0,41;112,64;29,17;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2025";"History (Q1); Religious Studies (Q1)";"Arts and Humanities" +19368;19900193899;"Aquichan";journal;"16575997, 20275374";"Universidad de La Sabana";Yes;Yes;0,247;Q2;16;23;96;887;75;84;0,58;38,57;73,24;0;Colombia;Latin America;"Universidad de La Sabana";"2010-2025";"Nurse Assisting (Q2); Critical Care Nursing (Q3); Research and Theory (Q3); Gerontology (Q4)";"Nursing" +19369;21101173099;"Asian Communication Research";journal;"17382084, 27653390";"Korean Society for Journalism and Communication Studies";No;No;0,247;Q2;4;18;48;1106;26;41;0,54;61,44;60,00;0;South Korea;Asiatic Region;"Korean Society for Journalism and Communication Studies";"2023-2025";"Linguistics and Language (Q2)";"Social Sciences" +19370;21100837232;"Epistemology and Philosophy of Science";journal;"1811833X, 23117133";"Institute of Philosophy, Russian Academy of Sciences";Yes;No;0,247;Q2;10;67;196;1592;49;193;0,28;23,76;32,35;0;Russian Federation;Eastern Europe;"Institute of Philosophy, Russian Academy of Sciences";"2017-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); History and Philosophy of Science (Q2); Philosophy (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +19371;21100824428;"Hungarian Journal of Legal Studies";journal;"24985473";"Akademiai Kiado";No;No;0,247;Q2;10;17;70;637;53;66;0,73;37,47;25,00;0;Hungary;Eastern Europe;"Akademiai Kiado";"2016-2025";"Law (Q2)";"Social Sciences" +19372;4800156106;"Inter-Asia Cultural Studies";journal;"14649373, 14698447";"Taylor and Francis Ltd.";No;No;0,247;Q2;38;72;186;2800;134;154;0,72;38,89;53,42;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Cultural Studies (Q2)";"Social Sciences" +19373;21101176857;"International Journal of Parliamentary Studies";journal;"26668912, 26668904";"Brill Academic Publishers";No;No;0,247;Q2;5;16;51;718;27;45;0,53;44,88;25,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2026";"Law (Q2); Political Science and International Relations (Q3)";"Social Sciences" +19374;21100900143;"Journal of Social Ontology";journal;"21969663";"University of Vienna";Yes;Yes;0,247;Q2;16;6;33;370;23;30;0,59;61,67;33,33;0;Austria;Western Europe;"University of Vienna";"2015-2025";"Anthropology (Q2); Linguistics and Language (Q2); Philosophy (Q2); Communication (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Social Psychology (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Psychology; Social Sciences" +19375;21100860773;"Journal of Sport and Health Research";journal;"19896239";"Didactic Asociation Andalucia";Yes;No;0,247;Q2;15;41;146;1315;124;146;1,01;32,07;31,90;0;Spain;Western Europe;"Didactic Asociation Andalucia";"2018-2026";"Cultural Studies (Q2); Complementary and Manual Therapy (Q3); Education (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Public Health, Environmental and Occupational Health (Q3); Developmental and Educational Psychology (Q4)";"Health Professions; Medicine; Psychology; Social Sciences" +19376;21101260301;"Proceedings of the International Conference on Multimedia Information Processing and Retrieval, MIPR";journal;"27704327, 27704319";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,247;Q2;7;93;108;2592;182;106;1,69;27,87;28,72;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Media Technology (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3); Computer Vision and Pattern Recognition (Q3); Information Systems (Q3)";"Computer Science; Engineering" +19377;21100935115;"Revista Direito GV";journal;"23176172";"Fundacao Getulio Vargas, Escola de Direito de Sao Paulo";Yes;Yes;0,247;Q2;8;44;124;2005;42;124;0,35;45,57;50,79;0;Brazil;Latin America;"Fundacao Getulio Vargas, Escola de Direito de Sao Paulo";"2019-2026";"Law (Q2)";"Social Sciences" +19378;21100898972;"Somatechnics";journal;"20440146, 20440138";"Edinburgh University Press";No;No;0,247;Q2;18;22;43;821;31;37;0,84;37,32;73,33;0;United Kingdom;Western Europe;"Edinburgh University Press";"2011-2025";"Arts and Humanities (miscellaneous) (Q2); Law (Q2); Anatomy (Q3); Human Factors and Ergonomics (Q3); Sociology and Political Science (Q3); Human-Computer Interaction (Q4)";"Arts and Humanities; Computer Science; Medicine; Social Sciences" +19379;4700152767;"Textile: The Journal of Cloth and Culture";journal;"14759756, 17518350";"Taylor and Francis Ltd.";No;No;0,247;Q2;18;86;161;3171;112;140;0,64;36,87;65,87;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +19380;23923;"Acta Theriologica Sinica";journal;"10001050";"Science Press";No;No;0,247;Q3;27;69;211;3739;190;210;0,92;54,19;38,78;0;China;Asiatic Region;"Science Press";"1990-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +19381;21101253076;"Advanced Studies in Pure Mathematics";book series;"09201971, 24338915";"Mathematical Society of Japan";No;No;0,247;Q3;7;0;16;0;11;15;0,69;0,00;0,00;0;Japan;Asiatic Region;"Mathematical Society of Japan";"2020-2021, 2023";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19382;4800152315;"Advances in Radio Science";journal;"16849965, 16849973";"Copernicus Publications";Yes;No;0,247;Q3;27;11;40;217;41;40;0,97;19,73;10,00;0;Germany;Western Europe;"Copernicus Publications";"2003-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +19383;16924;"American Communication Journal";journal;"15325865";"American Communication Association";No;No;0,247;Q3;17;0;7;0;8;7;0,00;0,00;0,00;0;United States;Northern America;"American Communication Association";"1997-2004, 2006-2022";"Communication (Q3)";"Social Sciences" +19384;11300153308;"Animal Science Papers and Reports";journal;"23008342, 08604037";"Institute of Genetics and Animal Biotechnology of the Polish Academy of Sciences";Yes;No;0,247;Q3;34;32;87;1571;93;86;1,13;49,09;52,00;0;Poland;Eastern Europe;"Institute of Genetics and Animal Biotechnology of the Polish Academy of Sciences";"2007-2025";"Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3); Biotechnology (Q4); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +19385;22470;"Asian Cardiovascular and Thoracic Annals";journal;"02184923, 18165370";"SAGE Publications Inc.";No;No;0,247;Q3;33;41;326;634;250;308;0,85;15,46;21,36;0;United States;Northern America;"SAGE Publications Inc.";"1994-2026";"Medicine (miscellaneous) (Q3); Surgery (Q3); Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +19386;22716;"Australian Journal of Chemistry";journal;"14450038, 00049425";"CSIRO Publishing";No;No;0,247;Q3;90;58;197;2864;209;190;1,01;49,38;37,59;0;Australia;Pacific Region;"CSIRO Publishing";"1948-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +19387;21101300218;"Biometrical Letters";journal;"18963811, 2199577X";"";No;No;0,247;Q3;5;12;34;272;29;34;0,91;22,67;23,81;0;Germany;Western Europe;"";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Applied Mathematics (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Statistics and Probability (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Mathematics" +19388;21100297618;"Contributions to Discrete Mathematics";journal;"17150868";"University of Calgary";Yes;No;0,247;Q3;12;37;66;702;43;66;0,67;18,97;27,78;0;Canada;Northern America;"University of Calgary";"2008, 2013-2025";"Discrete Mathematics and Combinatorics (Q3)";"Mathematics" +19389;7000153282;"Earth Sciences Research Journal";journal;"17946190, 23393459";"Universidad Nacional de Colombia";Yes;Yes;0,247;Q3;26;40;115;2236;108;115;0,97;55,90;25,41;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2007-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +19390;21100450083;"Eastern-European Journal of Enterprise Technologies";journal;"17293774, 17294061";"Technology Center";Yes;No;0,247;Q3;42;509;1682;11637;2113;1682;1,22;22,86;37,41;0;Ukraine;Eastern Europe;"Technology Center";"2013-2025";"Applied Mathematics (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Food Science (Q3); Industrial and Manufacturing Engineering (Q3); Management of Technology and Innovation (Q3); Mechanical Engineering (Q3); Computer Science Applications (Q4); Environmental Chemistry (Q4)";"Agricultural and Biological Sciences; Business, Management and Accounting; Computer Science; Energy; Engineering; Environmental Science; Mathematics" +19391;21101144432;"Engineering Geology and Hydrogeology";journal;"02047934, 27386996";"Geological Institute “Strashimir Dimitrov”, Bulgarian Academy of Sciences";No;No;0,247;Q3;4;13;23;494;13;23;0,53;38,00;27,27;0;Bulgaria;Eastern Europe;"Geological Institute “Strashimir Dimitrov”, Bulgarian Academy of Sciences";"2019-2025";"Earth-Surface Processes (Q3); Environmental Science (miscellaneous) (Q3); Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)";"Earth and Planetary Sciences; Environmental Science" +19392;21101007253;"Geologica Macedonica";journal;"18578586, 03521206";"Goce Delchev University of Shtip";No;No;0,247;Q3;5;12;36;400;24;36;0,63;33,33;42,42;0;Macedonia;Eastern Europe;"Goce Delchev University of Shtip";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +19393;21100901206;"IAES International Journal of Artificial Intelligence";journal;"20894872, 22528938";"Institute of Advanced Engineering and Science";Yes;No;0,247;Q3;33;448;859;15352;1450;859;1,64;34,27;36,21;0;Indonesia;Asiatic Region;"Institute of Advanced Engineering and Science";"2018-2025";"Artificial Intelligence (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Information Systems and Management (Q3)";"Computer Science; Decision Sciences; Engineering" +19394;12100155625;"Indian Journal of Thoracic and Cardiovascular Surgery";journal;"09709134, 09737723";"Springer India";No;No;0,247;Q3;20;307;539;4496;372;443;0,59;14,64;24,64;1;India;Asiatic Region;"Springer India";"1982-1985, 1987, 1989, 1991-1996, 2000-2026";"Surgery (Q3); Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +19395;21100236227;"International Journal of Hydrology Science and Technology";journal;"20427808, 20427816";"Inderscience Enterprises Ltd";No;No;0,247;Q3;22;47;145;2135;188;145;1,42;45,43;23,13;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2011-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Engineering (Q3); Water Science and Technology (Q3); Waste Management and Disposal (Q4)";"Earth and Planetary Sciences; Environmental Science" +19396;21100922651;"International Journal of Transport Development and Integration";journal;"20588305, 20588313";"International Information and Engineering Technology Association";Yes;No;0,247;Q3;15;60;120;2408;183;120;1,50;40,13;35,12;0;Canada;Northern America;"International Information and Engineering Technology Association";"2017-2025";"Automotive Engineering (Q3); Civil and Structural Engineering (Q3); Transportation (Q4)";"Engineering; Social Sciences" +19397;34885;"Izvestiya Ferrous Metallurgy";journal;"24102091, 03680797";"National University of Science and Technology MISIS";No;No;0,247;Q3;15;74;289;1685;151;288;0,57;22,77;31,10;0;Russian Federation;Eastern Europe;"National University of Science and Technology MISIS";"1971, 1975-1988, 2001-2004, 2017-2025";"Materials Science (miscellaneous) (Q3); Metals and Alloys (Q3)";"Materials Science" +19398;21100981772;"Journal of Measurements in Engineering";journal;"23352124, 24244635";"EXTRICA";Yes;No;0,247;Q3;10;64;104;1869;126;104;1,15;29,20;36,36;0;Lithuania;Eastern Europe;"EXTRICA";"2019-2025";"Instrumentation (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3)";"Engineering; Materials Science; Physics and Astronomy" +19399;21101018316;"Journal of Retirement";journal;"23266902, 23266899";"Portfolio Management Research";No;No;0,247;Q3;8;30;82;709;37;62;0,45;23,63;24,39;0;United Kingdom;Western Europe;"Portfolio Management Research";"2018-2026";"Finance (Q3); Geriatrics and Gerontology (Q4); Life-span and Life-course Studies (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Medicine; Social Sciences" +19400;21100463872;"Journal of Sensors and Sensor Systems";journal;"21948771, 2194878X";"Copernicus Publications";Yes;No;0,247;Q3;28;29;75;719;89;75;1,52;24,79;22,02;0;Germany;Western Europe;"Copernicus Publications";"2012-2026";"Electrical and Electronic Engineering (Q3); Instrumentation (Q3)";"Engineering; Physics and Astronomy" +19401;21101275448;"Magnetism";journal;"26738724";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,247;Q3;8;31;77;1786;98;76;1,22;57,61;26,55;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Engineering; Materials Science; Physics and Astronomy" +19402;21100206261;"Naukovyi Visnyk Natsionalnoho Hirnychoho Universytetu";journal;"20712227, 22232362";"";Yes;No;0,247;Q3;31;157;499;4094;532;499;1,07;26,08;43,50;0;Ukraine;Eastern Europe;"";"2012-2025";"Engineering (miscellaneous) (Q3); Geotechnical Engineering and Engineering Geology (Q3); Industrial and Manufacturing Engineering (Q3)";"Earth and Planetary Sciences; Engineering" +19403;22106;"Notornis";journal;"00294470";"Ornithological Society of New Zealand";No;No;0,247;Q3;27;32;75;1270;33;56;0,53;39,69;25,76;0;New Zealand;Pacific Region;"Ornithological Society of New Zealand";"1977, 1982-1985, 1987, 1994-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +19404;27995;"Progress in Nutrition";journal;"11298723";"Mattioli 1885";No;No;0,247;Q3;26;18;216;690;177;211;1,39;38,33;61,54;0;Italy;Western Europe;"Mattioli 1885";"2002-2025";"Food Science (Q3); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Nursing" +19405;4300151410;"Revista Arvore";journal;"18069088, 01006762";"Sociedade de Investigacoes Florestais";Yes;No;0,247;Q3;38;28;92;1092;102;92;1,08;39,00;40,77;0;Brazil;Latin America;"Sociedade de Investigacoes Florestais";"2006-2025";"Forestry (Q3)";"Agricultural and Biological Sciences" +19406;21100812857;"Series on Biomechanics";journal;"13132458";"Bulgarska Akademiya na Naukite";No;No;0,247;Q3;9;35;137;835;80;136;0,55;23,86;43,37;0;Bulgaria;Eastern Europe;"Bulgarska Akademiya na Naukite";"2015-2025";"Orthopedics and Sports Medicine (Q3); Biomedical Engineering (Q4); Biophysics (Q4); Biotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +19407;17865;"Webbia";journal;"00837792, 21694060";"Firenze University Press";No;No;0,247;Q3;27;36;60;1462;43;58;0,83;40,61;30,12;0;Italy;Western Europe;"Firenze University Press";"1905, 1907, 1910, 1913-1914, 1921, 1923, 1948, 1950-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19408;13629;"Zhendong Gongcheng Xuebao/Journal of Vibration Engineering";journal;"10044523";"Nanjing University of Aeronautics an Astronautics";No;No;0,247;Q3;31;316;558;8174;592;558;1,11;25,87;28,56;0;China;Asiatic Region;"Nanjing University of Aeronautics an Astronautics";"2001-2025";"Acoustics and Ultrasonics (Q3); Civil and Structural Engineering (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Aerospace Engineering (Q4)";"Engineering; Physics and Astronomy" +19409;13353;"Annales de Paleontologie";journal;"07533969";"Elsevier Masson s.r.l.";No;No;0,247;Q4;33;20;70;1371;48;68;0,54;68,55;12,90;0;France;Western Europe;"Elsevier Masson s.r.l.";"1988-2025";"Paleontology (Q4)";"Earth and Planetary Sciences" +19410;15045;"Conference Record - IEEE Instrumentation and Measurement Technology Conference";conference and proceedings;"10915281";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,247;-;45;297;852;5655;788;846;0,98;19,04;25,07;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1991, 1993-2008, 2011, 2013-2016, 2019, 2021-2025";"Electrical and Electronic Engineering; Instrumentation";"Engineering; Physics and Astronomy" +19411;21100843484;"Journal of Global South Studies";journal;"24761397, 24761419";"University of Florida Press";No;No;0,246;Q1;17;15;44;888;17;32;0,21;59,20;13,33;0;United States;Northern America;"University of Florida Press";"2015-2025";"History (Q1); Development (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19412;19138;"Korea Journal";journal;"00233900";"The Academy of Korean Studies";Yes;Yes;0,246;Q1;16;34;103;1656;37;103;0,26;48,71;44,12;0;South Korea;Asiatic Region;"The Academy of Korean Studies";"1976-1977, 1999, 2001, 2008-2025";"History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19413;21101083585;"Libri (Turkey)";journal;"24587826";"Phaselis Research Station";No;No;0,246;Q1;4;11;28;415;10;28;0,35;37,73;43,75;0;Turkey;Middle East;"Phaselis Research Station";"2019-2025";"Classics (Q1); History (Q1); Archeology (arts and humanities) (Q2); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +19414;21100201069;"Philippine Studies: Historical and Ethnographic Viewpoints";journal;"22441093, 22441638";"Ateneo de Manila University";No;No;0,246;Q1;13;20;66;1201;30;49;0,40;60,05;15,38;0;Philippines;Asiatic Region;"Ateneo de Manila University";"2012-2025";"History (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19415;12365;"Canadian Journal of Law and Society";journal;"08293201, 19110227";"Cambridge University Press";Yes;No;0,246;Q2;29;21;70;1666;51;70;0,47;79,33;64,15;0;United Kingdom;Western Europe;"Cambridge University Press";"1986-2026";"Law (Q2); Sociology and Political Science (Q3)";"Social Sciences" +19416;19600162207;"Cultura, Ciencia y Deporte";journal;"16965043";"Universidad Catolica San Antonio Murcia";Yes;Yes;0,246;Q2;21;53;148;2624;126;138;0,75;49,51;23,16;0;Spain;Western Europe;"Universidad Catolica San Antonio Murcia";"2009-2025";"Cultural Studies (Q2); Health (social science) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)";"Health Professions; Social Sciences" +19417;21101133629;"Eunomia. Revista en Cultura de la Legalidad";journal;"22536655";"Universidad Carlos III de Madrid";Yes;Yes;0,246;Q2;9;42;170;1815;56;164;0,39;43,21;31,71;0;Spain;Western Europe;"Universidad Carlos III de Madrid";"2019-2025";"Law (Q2); Gender Studies (Q3); Public Administration (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +19418;21101060652;"Glottodidactica";journal;"00724769";"Adam Mickiewicz University,Institute of Applied Linguistics";Yes;Yes;0,246;Q2;4;21;55;663;35;53;0,74;31,57;62,86;0;Poland;Eastern Europe;"Adam Mickiewicz University,Institute of Applied Linguistics";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +19419;200147124;"Journal for Cultural Research";journal;"14797585, 17401666";"Routledge";No;No;0,246;Q2;27;50;77;2040;94;74;0,91;40,80;39,06;0;United Kingdom;Western Europe;"Routledge";"1997, 2001, 2005-2026";"Anthropology (Q2); Cultural Studies (Q2)";"Social Sciences" +19420;21100858123;"Journal of Argumentation in Context";journal;"22114742, 22114750";"John Benjamins Publishing Company";No;No;0,246;Q2;12;14;43;596;36;42;1,04;42,57;52,63;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2015-2026";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +19421;21101168855;"Journal of the British Academy";journal;"20527217";"British Academy";Yes;Yes;0,246;Q2;17;43;165;1494;160;148;0,84;34,74;57,75;1;United Kingdom;Western Europe;"British Academy";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +19422;21101088436;"Jurnal Ners";journal;"18583598, 25025791";"Faculty of Nursing, Universitas Airlangga";Yes;No;0,246;Q2;10;51;126;2061;126;118;0,92;40,41;55,70;0;Indonesia;Asiatic Region;"Faculty of Nursing, Universitas Airlangga";"2019-2025";"Health Professions (miscellaneous) (Q2); Advanced and Specialized Nursing (Q3); Nursing (miscellaneous) (Q3); Research and Theory (Q4)";"Health Professions; Nursing" +19423;20500195202;"LIA Language, Interaction and Acquisition";journal;"18797873, 18797865";"John Benjamins Publishing Company";No;No;0,246;Q2;17;8;33;506;29;31;0,43;63,25;54,55;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2011-2026";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +19424;21100925779;"Academic Forensic Pathology";journal;"19253621";"SAGE Publications Inc.";No;No;0,246;Q3;25;20;52;612;40;48;0,67;30,60;32,69;0;United States;Northern America;"SAGE Publications Inc.";"2011-2026";"Pathology and Forensic Medicine (Q3)";"Medicine" +19425;24650;"American Journal of Mathematical and Management Sciences";journal;"01966324";"Taylor and Francis Ltd.";No;No;0,246;Q3;25;11;58;336;42;58;0,85;30,55;26,32;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2011, 2013-2025";"Applied Mathematics (Q3); Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting; Mathematics" +19426;32011;"Archive of Mechanical Engineering";journal;"23001895, 00040738";"Polish Academy of Sciences, Committe of Machine Design";Yes;Yes;0,246;Q3;23;35;87;1208;125;87;1,27;34,51;15,79;0;Poland;Eastern Europe;"Polish Academy of Sciences, Committe of Machine Design";"1970-1988, 2010-2025";"Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering" +19427;21101039256;"Arctoa";journal;"01311379";"KMK Scientific Press";No;No;0,246;Q3;7;18;72;610;47;72;0,73;33,89;65,12;0;Russian Federation;Eastern Europe;"KMK Scientific Press";"2019-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +19428;21100861870;"Asia-Pacific Journal of Innovation in Hospitality and Tourism";journal;"22891471";"Taylor's University Sdn Bhd";No;No;0,246;Q3;12;14;75;1036;95;73;1,04;74,00;38,24;0;Malaysia;Asiatic Region;"Taylor's University Sdn Bhd";"2017-2025";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Environmental Science; Social Sciences" +19429;32999;"Compost Science and Utilization";journal;"1065657X, 23262397";"Taylor and Francis Ltd.";No;No;0,246;Q3;61;14;18;767;24;18;1,50;54,79;28,07;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-2026";"Ecology (Q3); Soil Science (Q3); Waste Management and Disposal (Q4)";"Agricultural and Biological Sciences; Environmental Science" +19430;19200156941;"Digest Journal of Nanomaterials and Biostructures";journal;"18423582";"S.C. Virtual Company of Physics S.R.L";Yes;No;0,246;Q3;62;124;436;4375;586;435;1,27;35,28;36,18;0;Romania;Eastern Europe;"S.C. Virtual Company of Physics S.R.L";"2009-2025";"Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Atomic and Molecular Physics, and Optics (Q4); Biomedical Engineering (Q4); Nanoscience and Nanotechnology (Q4); Physical and Theoretical Chemistry (Q4); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Engineering; Materials Science; Physics and Astronomy" +19431;21101192902;"Dynamics";journal;"26738716";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,246;Q3;8;54;119;2332;145;117;1,20;43,19;25,00;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021-2025";"Engineering (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Engineering; Mathematics; Physics and Astronomy" +19432;21101137841;"Economy of Regions";journal;"20726414, 24111406";"Institute of Economics, Ural Branch of the Russian Academy of Sciences";Yes;Yes;0,246;Q3;22;83;267;3118;213;266;0,80;37,57;53,25;0;Russian Federation;Eastern Europe;"Institute of Economics, Ural Branch of the Russian Academy of Sciences";"2010-2025";"Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science" +19433;21100416194;"Estudos de Psicologia (Campinas)";journal;"19820275, 0103166X";"Pontificia Universidade Catolica de Campinas";Yes;Yes;0,246;Q3;20;74;149;2759;89;145;0,58;37,28;69,10;0;Brazil;Latin America;"Pontificia Universidade Catolica de Campinas";"2015-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +19434;17700156214;"Geomechanik und Tunnelbau";journal;"18657362, 18657389";"Ernst & Sohn";No;No;0,246;Q3;27;62;206;507;123;182;0,46;8,18;13,10;0;Germany;Western Europe;"Ernst & Sohn";"2009-2026";"Civil and Structural Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering" +19435;74455;"Geomorphologie: Relief, Processus, Environnement";journal;"12665304";"Groupe Francais de Geomorphologie";No;No;0,246;Q3;28;8;55;368;32;51;0,24;46,00;16,67;0;France;Western Europe;"Groupe Francais de Geomorphologie";"1995-1996, 2008-2026";"Earth-Surface Processes (Q3)";"Earth and Planetary Sciences" +19436;4700152225;"Gestao e Producao";journal;"0104530X, 18069649";"Brazilian Institute for Information in Science and Technology";Yes;No;0,246;Q3;24;31;80;1513;109;80;0,83;48,81;40,00;0;Brazil;Latin America;"Brazilian Institute for Information in Science and Technology";"2006-2025";"Business and International Management (Q3); Industrial and Manufacturing Engineering (Q3)";"Business, Management and Accounting; Engineering" +19437;4700152261;"International Journal of Materials Research";journal;"18625282, 21958556";"Walter de Gruyter GmbH";No;No;0,246;Q3;72;80;361;4212;415;354;1,23;52,65;30,29;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1986, 1994, 1997-2026";"Materials Chemistry (Q3); Metals and Alloys (Q3); Condensed Matter Physics (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +19438;12400154712;"International Journal of Surface Science and Engineering";journal;"1749785X, 17497868";"Inderscience Enterprises Ltd";No;No;0,246;Q3;23;23;50;611;69;50;1,45;26,57;27,27;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2025";"Mechanical Engineering (Q3); Surfaces, Coatings and Films (Q3); Surfaces and Interfaces (Q4)";"Engineering; Materials Science; Physics and Astronomy" +19439;21100331504;"International Review of Aerospace Engineering";journal;"19737459, 25332279";"Praise Worthy Prize S.r.l";No;No;0,246;Q3;22;20;83;704;95;83;0,98;35,20;13,21;0;Italy;Western Europe;"Praise Worthy Prize S.r.l";"2014-2025";"Applied Mathematics (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Fluid Flow and Transfer Processes (Q3); Aerospace Engineering (Q4)";"Chemical Engineering; Engineering; Mathematics" +19440;19642;"Journal - American Water Works Association";journal;"15518833, 0003150X";"John Wiley & Sons Inc.";No;No;0,246;Q3;87;105;317;266;110;171;0,32;2,53;38,19;0;United States;Northern America;"John Wiley & Sons Inc.";"1935, 1946, 1969-2026";"Chemistry (miscellaneous) (Q3); Water Science and Technology (Q3)";"Chemistry; Environmental Science" +19441;21101089505;"Journal of Beta Investment Strategies";journal;"27716511";"Portfolio Management Research";No;No;0,246;Q3;9;31;109;574;48;91;0,41;18,52;13,46;0;United Kingdom;Western Europe;"Portfolio Management Research";"2022-2025";"Business and International Management (Q3); Finance (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance" +19442;88934;"Journal of Cases on Information Technology";journal;"15487717, 15487725";"IGI Publishing";No;No;0,246;Q3;24;64;90;1987;142;90;2,02;31,05;49,59;0;United States;Northern America;"IGI Publishing";"2005-2026";"Information Systems (Q3); Information Systems and Management (Q3); Strategy and Management (Q3); Computer Science Applications (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences" +19443;21101168852;"Journal of Nursology";journal;"28222954";"Ataturk Universitesi";Yes;Yes;0,246;Q3;4;42;119;1456;108;119;1,06;34,67;83,61;0;Turkey;Middle East;"Ataturk Universitesi";"2022-2025";"Nursing (miscellaneous) (Q3)";"Nursing" +19444;21100844910;"Learning and Teaching";journal;"17552281, 17552273";"Berghahn Journals";Yes;Yes;0,246;Q3;12;15;53;699;54;48;0,84;46,60;51,61;0;United Kingdom;Western Europe;"Berghahn Journals";"2017-2025";"Education (Q3); Sociology and Political Science (Q3); Developmental and Educational Psychology (Q4)";"Psychology; Social Sciences" +19445;21101063726;"Natural Sciences Education";journal;"21688281, 21688273";"John Wiley and Sons Ltd";No;No;0,246;Q3;16;29;70;993;88;68;1,12;34,24;55,00;0;United States;Northern America;"John Wiley and Sons Ltd";"1974, 1978-1980, 2013-2026";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Ecology (Q3); Education (Q3); Insect Science (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +19446;145423;"Oceanological and Hydrobiological Studies";journal;"18973191, 1730413X";"Sciendo";Yes;Yes;0,246;Q3;28;30;111;1591;122;111;0,98;53,03;40,48;0;Poland;Eastern Europe;"Sciendo";"2003-2026";"Oceanography (Q3)";"Earth and Planetary Sciences" +19447;21101089508;"Sever i Rynok: Formirovanie Ekonomiceskogo Poradka";journal;"2220802X";"Kola Science Centre of the Russian Academy of Sciences";Yes;Yes;0,246;Q3;8;50;137;1602;86;137;0,64;32,04;59,81;0;Russian Federation;Eastern Europe;"Kola Science Centre of the Russian Academy of Sciences";"2019-2025";"Development (Q3); Economics and Econometrics (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance; Social Sciences" +19448;24865;"Soft Materials";journal;"15394468, 1539445X";"Taylor and Francis Ltd.";No;No;0,246;Q3;33;6;112;270;142;112;1,15;45,00;18,75;0;United States;Northern America;"Taylor and Francis Ltd.";"2004-2025";"Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Condensed Matter Physics (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +19449;12100154401;"Soldagem e Inspecao";journal;"19806973, 01049224";"University Federal de Uberlandia";Yes;No;0,246;Q3;19;17;48;771;56;48;1,58;45,35;12,50;0;Brazil;Latin America;"University Federal de Uberlandia";"2008-2025";"Mechanical Engineering (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)";"Engineering; Materials Science" +19450;12171;"Transactions of the Institute of Metal Finishing";journal;"17459192, 00202967";"Maney Publishing";No;No;0,246;Q3;44;43;138;1325;202;118;1,44;30,81;35,09;0;United Kingdom;Western Europe;"Maney Publishing";"1969, 1971-1987, 1989-2026";"Mechanics of Materials (Q3); Metals and Alloys (Q3); Surfaces, Coatings and Films (Q3); Condensed Matter Physics (Q4); Surfaces and Interfaces (Q4)";"Engineering; Materials Science; Physics and Astronomy" +19451;21101328476;"Advances in Astronautics";journal;"30592976, 30592968";"Springer";No;No;0,246;Q4;11;28;75;1790;114;72;2,40;63,93;38,52;0;Singapore;Asiatic Region;"Springer";"2025-2026";"Aerospace Engineering (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Engineering" +19452;21100916511;"Journal of Endocrinology and Metabolism";journal;"19232861, 1923287X";"Elmer Press";No;No;0,246;Q4;9;24;74;938;64;72;0,75;39,08;36,03;0;Canada;Northern America;"Elmer Press";"2018-2025";"Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +19453;26058;"IEEE Workshop on Signal Processing Systems, SiPS: Design and Implementation";conference and proceedings;"15206130";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,246;-;37;0;72;0;84;68;1,37;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1999-2005, 2007-2010, 2012-2022, 2024";"Applied Mathematics; Electrical and Electronic Engineering; Hardware and Architecture; Media Technology; Signal Processing";"Computer Science; Engineering; Mathematics" +19454;6400153139;"International Conference on Advanced Communication Technology, ICACT";conference and proceedings;"17389445";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,246;-;49;89;380;1508;462;371;1,26;16,94;32,56;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2007-2025";"Electrical and Electronic Engineering";"Engineering" +19455;21101058279;"Proceedings of the International Conference on Mine Closure";conference and proceedings;"22088296, 22088288";"Australian Centre for Geomechanics";No;No;0,246;-;10;108;301;2137;134;297;0,47;19,79;37,35;0;Australia;Pacific Region;"Australian Centre for Geomechanics";"2019, 2021-2025";"Environmental Engineering; Geotechnical Engineering and Engineering Geology; Management, Monitoring, Policy and Law";"Earth and Planetary Sciences; Environmental Science" +19456;21100235821;"Ancient Philosophy";journal;"07402007, 21544689";"Philosophy Documentation Center";No;No;0,245;Q1;28;12;89;584;38;89;0,38;48,67;25,00;0;United States;Northern America;"Philosophy Documentation Center";"1980, 1996-2025";"Classics (Q1); Philosophy (Q2)";"Arts and Humanities" +19457;6500153199;"Popular Music";journal;"14740095, 02611430";"Cambridge University Press";No;No;0,245;Q1;47;17;75;971;76;73;0,38;57,12;33,33;0;United Kingdom;Western Europe;"Cambridge University Press";"1981-1985, 1987-2026";"Music (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19458;33257;"Anthropologischer Anzeiger";journal;"00035548, 23637099";"Schweizerbart Science Publishers";No;No;0,245;Q2;29;38;119;2043;86;116;0,78;53,76;57,32;0;Germany;Western Europe;"Schweizerbart Science Publishers";"1971-2025";"Anthropology (Q2); Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Medicine (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Medicine; Social Sciences" +19459;21101393929;"Communicationes Archaeologicae Hungariae";journal;"2786295X, 0231133X";"Hungarian National Museum";No;No;0,245;Q2;4;13;56;1217;18;55;0,35;93,62;50,00;0;Hungary;Eastern Europe;"Hungarian National Museum";"2021-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19460;21100866726;"Journal of Oral Medicine and Oral Surgery";journal;"26081326";"EDP Sciences";Yes;Yes;0,245;Q2;11;40;138;966;95;119;0,68;24,15;46,90;0;France;Western Europe;"EDP Sciences";"2018-2025";"Periodontics (Q2); Dentistry (miscellaneous) (Q3); Oral Surgery (Q3)";"Dentistry" +19461;16200154796;"North American Archaeologist";journal;"01976931, 15413543";"SAGE Publications Inc.";No;No;0,245;Q2;17;8;28;685;16;27;0,43;85,63;26,67;0;United States;Northern America;"SAGE Publications Inc.";"1985, 1987, 1992, 2002-2026";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19462;21100370022;"Regional Research of Russia";journal;"20799713, 20799705";"Pleiades Publishing";No;No;0,245;Q2;20;65;210;1744;141;210;0,67;26,83;60,80;0;United States;Northern America;"Pleiades Publishing";"2011-2025";"Cultural Studies (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3); Public Administration (Q3); Urban Studies (Q3)";"Earth and Planetary Sciences; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +19463;20500195076;"Urbani Izziv";journal;"18558399, 03536483";"Urban Planning Institute of the Republic of Slovenia";Yes;Yes;0,245;Q2;24;11;51;442;40;49;0,90;40,18;57,14;0;Slovenia;Eastern Europe;"Urban Planning Institute of the Republic of Slovenia";"1994-1995, 1997-2025";"Architecture (Q2); Cultural Studies (Q2); Geography, Planning and Development (Q3); Urban Studies (Q3)";"Engineering; Social Sciences" +19464;76019;"Acta Mathematica Universitatis Comenianae";journal;"13360310, 08629544";"Comenius University in Bratislava";Yes;No;0,245;Q3;22;19;71;398;40;71;0,70;20,95;25,00;0;Slovakia;Eastern Europe;"Comenius University in Bratislava";"2002-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19465;21100248942;"Acta Tabacaria Sinica";journal;"10045708";"Science Press";Yes;No;0,245;Q3;19;99;269;2838;227;269;0,83;28,67;38,74;0;China;Asiatic Region;"Science Press";"2013-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +19466;17062;"Acta Veterinaria Brno";journal;"18017576, 00017213";"University of Veterinary and Pharmaceutical Sciences";Yes;No;0,245;Q3;49;42;155;1501;125;155;0,81;35,74;48,77;0;Czech Republic;Eastern Europe;"University of Veterinary and Pharmaceutical Sciences";"1974-1975, 1993, 1996-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +19467;21101238123;"Advances in Civil and Architectural Engineering";journal;"29753848";"Faculty of Civil Engineering and Architecture Osijek";Yes;Yes;0,245;Q3;7;33;58;1333;74;58;1,11;40,39;24,21;0;Croatia;Eastern Europe;"Faculty of Civil Engineering and Architecture Osijek";"2020-2026";"Environmental Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Environmental Science; Materials Science" +19468;21101153194;"Agricultural Biotechnology Journal";journal;"22286705, 22286500";"Shahid Bahonar University of Kerman";Yes;Yes;0,245;Q3;10;99;155;4197;242;155;2,12;42,39;40,00;0;Iran;Middle East;"Shahid Bahonar University of Kerman";"2021-2026";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +19469;21100197928;"Applied Mathematics and Information Sciences";journal;"19350090, 23250399";"Natural Sciences Publishing";Yes;No;0,245;Q3;51;113;353;3947;597;353;1,95;34,93;29,23;0;United States;Northern America;"Natural Sciences Publishing";"2007-2026";"Applied Mathematics (Q3); Computational Theory and Mathematics (Q3); Numerical Analysis (Q3); Analysis (Q4); Computer Science Applications (Q4)";"Computer Science; Mathematics" +19470;14512;"Archivos Argentinos de Pediatria";journal;"03250075, 16683501";"Sociedad Argentina de Pediatria";Yes;Yes;0,245;Q3;31;129;413;1937;307;341;0,69;15,02;72,30;0;Argentina;Latin America;"Sociedad Argentina de Pediatria";"1945, 1960-1974, 1976-1978, 2008-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +19471;13171;"Biocontrol Science";journal;"18840205, 13424815";"Society for Antibacterial and Antifungal Agents Japan";No;No;0,245;Q3;35;0;28;0;30;28;0,00;0,00;0,00;0;Japan;Asiatic Region;"Society for Antibacterial and Antifungal Agents Japan";"1996-2022";"Applied Microbiology and Biotechnology (Q3); Public Health, Environmental and Occupational Health (Q3)";"Immunology and Microbiology; Medicine" +19472;21100810709;"Biomedical Photonics";journal;"24139432";"Russian Photodynamic Association";Yes;Yes;0,245;Q3;11;11;59;369;67;59;1,10;33,55;41,94;0;Russian Federation;Eastern Europe;"Russian Photodynamic Association";"2015-2025";"Dermatology (Q3); Surgery (Q3)";"Medicine" +19473;21101053552;"Clean Coal Technology";journal;"10066772";"China International Book Trading Corp. (Guoji Shudian)";Yes;No;0,245;Q3;20;333;716;14664;898;716;1,19;44,04;31,05;0;China;Asiatic Region;"China International Book Trading Corp. (Guoji Shudian)";"2019-2026";"Chemical Engineering (miscellaneous) (Q3); Fuel Technology (Q3); Pollution (Q4)";"Chemical Engineering; Energy; Environmental Science" +19474;90173;"Drvna Industrija";journal;"00126772, 18471153";"University of Zagreb Faculty of Forestry and Wood Technology";Yes;Yes;0,245;Q3;29;40;135;1652;170;135;1,18;41,30;28,79;0;Croatia;Eastern Europe;"University of Zagreb Faculty of Forestry and Wood Technology";"1980-1981, 1998-2025";"Forestry (Q3)";"Agricultural and Biological Sciences" +19475;21100202145;"Enfermeria Global";journal;"16956141";"Universidad de Murcia Servicio de Publicaciones";Yes;Yes;0,245;Q3;18;48;199;1656;138;199;0,58;34,50;63,87;0;Spain;Western Europe;"Universidad de Murcia Servicio de Publicaciones";"2012-2026";"Nursing (miscellaneous) (Q3)";"Nursing" +19476;21100208042;"Engineering Transactions";journal;"0867888X, 24508071";"Polska Akademia Nauk";Yes;Yes;0,245;Q3;16;34;74;1163;103;74;1,26;34,21;18,28;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2012-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +19477;13974;"Hong Kong Medical Journal";journal;"10242708";"Hong Kong Academy of Medicine Press";Yes;Yes;0,245;Q3;61;158;480;1969;299;212;0,64;12,46;38,02;0;Hong Kong;Asiatic Region;"Hong Kong Academy of Medicine Press";"1995-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +19478;15900154752;"IAENG International Journal of Computer Science";journal;"1819656X, 18199224";"International Association of Engineers";Yes;No;0,245;Q3;32;410;509;13103;900;509;1,78;31,96;36,28;0;Hong Kong;Asiatic Region;"International Association of Engineers";"2009-2025";"Computer Science (miscellaneous) (Q3)";"Computer Science" +19479;17500155116;"International Journal of Performability Engineering";journal;"09731318, 29938341";"Totem Publisher Inc.";No;No;0,245;Q3;32;72;259;1807;340;259;1,35;25,10;38,73;0;United States;Northern America;"Totem Publisher Inc.";"2005-2026";"Safety, Risk, Reliability and Quality (Q3)";"Engineering" +19480;21101133341;"International Journal of Systemic Therapy";journal;"2692398X, 26923998";"Routledge";No;No;0,245;Q3;24;39;53;1969;46;49;0,84;50,49;65,59;0;United States;Northern America;"Routledge";"2021-2026";"Clinical Psychology (Q3); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +19481;4000151606;"Journal of Electrical Engineering";journal;"1339309X, 13353632";"Walter de Gruyter GmbH";No;No;0,245;Q3;33;60;180;1540;265;180;1,71;25,67;17,79;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2004-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +19482;21100830763;"Journal of Information Science Theory and Practice";journal;"22879099, 22874577";"Korea Institute of Science and Technology Information";Yes;Yes;0,245;Q3;13;13;87;621;106;87;1,40;47,77;40,00;0;South Korea;Asiatic Region;"Korea Institute of Science and Technology Information";"2017-2025";"Information Systems (Q3); Information Systems and Management (Q3); Library and Information Sciences (Q3)";"Computer Science; Decision Sciences; Social Sciences" +19483;20000195046;"Journal of Landscape Architecture";journal;"2164604X, 18626033";"Routledge";No;No;0,245;Q3;21;23;64;379;32;55;0,48;16,48;61,11;0;United Kingdom;Western Europe;"Routledge";"2006-2025";"Geography, Planning and Development (Q3)";"Social Sciences" +19484;19800188069;"Journal of Laser Micro Nanoengineering";journal;"18800688";"Japan Laser Processing Society";Yes;No;0,245;Q3;37;40;96;1115;110;96;1,01;27,88;12,67;0;Japan;Asiatic Region;"Japan Laser Processing Society";"2006-2026";"Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Instrumentation (Q3); Nanoscience and Nanotechnology (Q4)";"Engineering; Materials Science; Physics and Astronomy" +19485;25258;"Kuei Suan Jen Hsueh Pao/Journal of the Chinese Ceramic Society";journal;"04545648";"Chinese Ceramic Society";No;No;0,245;Q3;43;299;1027;14778;1047;1012;1,02;49,42;35,67;0;China;Asiatic Region;"Chinese Ceramic Society";"2000-2025";"Ceramics and Composites (Q3); Materials Chemistry (Q3); Inorganic Chemistry (Q4)";"Chemistry; Materials Science" +19486;21101078836;"Lilloa";journal;"23469641, 00759481";"Fundacion Miguel Lillo";Yes;Yes;0,245;Q3;5;69;93;3766;65;90;0,60;54,58;46,77;0;Argentina;Latin America;"Fundacion Miguel Lillo";"2019-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +19487;14505;"Moscow University Mechanics Bulletin";journal;"00271330, 19348452";"Pleiades Publishing";No;No;0,245;Q3;10;29;78;578;30;78;0,43;19,93;41,30;0;United States;Northern America;"Pleiades Publishing";"1973-1987, 1989, 2007-2025";"Mathematics (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Mathematics" +19488;50191;"National Medical Journal of China";journal;"03762491";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,245;Q3;34;452;1460;13972;1158;1445;0,94;30,91;44,93;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1945, 1973-1975, 1981-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +19489;12756;"Nonlinear Dynamics, Psychology, and Life Sciences";journal;"15736652, 10900578";"Society for Chaos Theory in Pyschology and Life Sciences";No;No;0,245;Q3;37;23;68;1440;52;68;1,12;62,61;31,91;0;United States;Northern America;"Society for Chaos Theory in Pyschology and Life Sciences";"2003-2026";"Applied Mathematics (Q3)";"Mathematics" +19490;29082;"Phase Transitions";journal;"10290338, 01411594";"Taylor and Francis Ltd.";No;No;0,245;Q3;56;49;198;2325;259;194;1,34;47,45;24,32;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2026";"Instrumentation (Q3); Materials Science (miscellaneous) (Q3)";"Materials Science; Physics and Astronomy" +19491;21101381156;"Plant Health Cases";journal;"2959880X";"CABI International";No;No;0,245;Q3;5;32;49;1265;53;49;1,08;39,53;44,32;0;United Kingdom;Western Europe;"CABI International";"2023-2025";"Plant Science (Q3)";"Agricultural and Biological Sciences" +19492;21101017497;"Revista de la Sociedad Entomologica Argentina";journal;"18517471, 03735680";"Sociedad Entomologica Argentina";Yes;Yes;0,245;Q3;9;45;115;2030;80;106;0,65;45,11;44,67;0;Argentina;Latin America;"Sociedad Entomologica Argentina";"2019-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19493;37775;"South African Journal of Plant and Soil";journal;"02571862";"Taylor and Francis Ltd.";No;No;0,245;Q3;30;14;79;541;77;78;0,85;38,64;37,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2026";"Ecology (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19494;19200157112;"Spixiana";journal;"01777424, 03418391";"Verlag Dr. Friedrich Pfeil";No;No;0,245;Q3;18;24;94;711;39;61;0,46;29,63;25,00;0;Germany;Western Europe;"Verlag Dr. Friedrich Pfeil";"2008-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +19495;21101274439;"Sustainable Marine Structures";journal;"26613158";"Nan Yang Academy of Sciences Pte. Ltd";No;No;0,245;Q3;5;38;30;2158;35;28;1,00;56,79;30,77;0;Singapore;Asiatic Region;"Nan Yang Academy of Sciences Pte. Ltd";"2021-2025";"Ecology (Q3); Environmental Engineering (Q3); Environmental Science (miscellaneous) (Q3); Ocean Engineering (Q3)";"Engineering; Environmental Science" +19496;21100207636;"Technical Electrodynamics";journal;"16077970, 22181903";"Institute of Electrodynamics, National Academy of Sciences of Ukraine";Yes;Yes;0,245;Q3;20;65;202;998;120;202;0,60;15,35;28,83;0;Ukraine;Eastern Europe;"Institute of Electrodynamics, National Academy of Sciences of Ukraine";"2012-2026";"Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)";"Energy; Engineering" +19497;21101044840;"Traditional and Integrative Medicine";journal;"24765104, 24765112";"Tehran University of Medical Sciences";Yes;Yes;0,245;Q3;10;48;144;2433;148;136;0,96;50,69;48,48;0;Iran;Middle East;"Tehran University of Medical Sciences";"2018-2025";"Complementary and Alternative Medicine (Q3); Complementary and Manual Therapy (Q3); Medicine (miscellaneous) (Q3)";"Health Professions; Medicine" +19498;21100894627;"Trends in Sport Sciences";journal;"2391436X, 22999590";"University School of Physical Education";Yes;No;0,245;Q3;11;13;62;406;57;62;0,88;31,23;24,44;0;Poland;Eastern Europe;"University School of Physical Education";"2018-2025";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine" +19499;3200147701;"Wool Textile Journal";journal;"10031456";"";No;No;0,245;Q3;9;241;716;4711;420;716;0,63;19,55;48,64;0;China;Asiatic Region;"";"2006-2018, 2020-2025";"Materials Science (miscellaneous) (Q3)";"Materials Science" +19500;21733;"Balkan Journal of Medical Genetics";journal;"13110160, 21995761";"";Yes;No;0,245;Q4;20;14;72;388;76;72;1,09;27,71;53,57;0;Poland;Eastern Europe;"";"2000-2025";"Genetics (Q4); Genetics (clinical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +19501;21100239837;"International Conference on Human System Interaction, HSI";conference and proceedings;"21582246, 21582254";"IEEE Computer Society";No;No;0,245;-;15;58;153;1172;170;151;1,05;20,21;25,19;0;United States;Northern America;"IEEE Computer Society";"2012, 2019-2022, 2024-2025";"Human-Computer Interaction; Software";"Computer Science" +19502;21000195607;"International Conference on Wireless and Mobile Computing, Networking and Communications";conference and proceedings;"21619646, 21619654";"IEEE Computer Society";No;No;0,245;-;37;88;287;1579;282;281;0,95;17,94;25,99;0;United States;Northern America;"IEEE Computer Society";"2011-2014, 2016-2025";"Computer Networks and Communications; Hardware and Architecture; Software";"Computer Science" +19503;21100293202;"Proceedings of the European Conference on Games-based Learning";conference and proceedings;"20490992";"Dechema e.V.";No;No;0,245;-;20;137;348;3148;329;342;0,91;22,98;48,93;0;Germany;Western Europe;"Dechema e.V.";"2005-2006, 2008-2009, 2011-2012, 2014-2016, 2018-2025";"Artificial Intelligence; Computer Graphics and Computer-Aided Design; Computer Networks and Communications; Control and Systems Engineering; Education; E-learning; Human-Computer Interaction; Software";"Computer Science; Engineering; Social Sciences" +19504;21101130994;"Proceedings of the International CDIO Conference";conference and proceedings;"20021593";"Chalmers University of Technology";No;No;0,245;-;10;52;239;1058;140;233;0,57;20,35;45,04;0;Sweden;Western Europe;"Chalmers University of Technology";"2019-2024";"Education; Engineering (miscellaneous); Industrial and Manufacturing Engineering; Mechanical Engineering";"Engineering; Social Sciences" +19505;21100870382;"ABAC Journal";journal;"08580855";"Assumption University";No;No;0,244;Q1;15;53;185;3044;470;183;2,72;57,43;51,16;0;Thailand;Asiatic Region;"Assumption University";"2018-2025";"Literature and Literary Theory (Q1); Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Education (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +19506;20087;"Folklore (United Kingdom)";journal;"0015587X, 14698315";"Routledge";No;No;0,244;Q1;24;34;79;2258;40;75;0,54;66,41;40,00;0;United Kingdom;Western Europe;"Routledge";"1890-2025";"History (Q1); Anthropology (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19507;21100817647;"Landscape Architecture and Art";journal;"22558640, 22558632";"Latvia University of Life Sciences and Technologies";Yes;No;0,244;Q1;9;20;77;599;58;77;0,72;29,95;64,58;0;Latvia;Eastern Europe;"Latvia University of Life Sciences and Technologies";"2016-2025";"Visual Arts and Performing Arts (Q1); Agricultural and Biological Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3); Nature and Landscape Conservation (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Environmental Science; Social Sciences" +19508;5700168481;"Revista Brasileira de Politica Internacional";journal;"19833121, 00347329";"INSTBRASILEIRORELACOESINT";Yes;Yes;0,244;Q1;25;25;75;1422;73;74;0,96;56,88;22,86;0;Brazil;Latin America;"INSTBRASILEIRORELACOESINT";"2008-2025";"History (Q1); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +19509;21101146408;"Si Somos Americanos";journal;"07190948, 07182910";"Arturo Prat University";Yes;Yes;0,244;Q1;8;21;47;1303;37;47;0,50;62,05;31,03;0;Chile;Latin America;"Arturo Prat University";"2019-2026";"History (Q1); Cultural Studies (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +19510;21100778623;"Slovene";journal;"23040785, 23056754";"Institute for Slavic Studies of the Russian Academy of Sciences";Yes;Yes;0,244;Q1;6;11;69;501;14;69;0,16;45,55;38,46;0;Russian Federation;Eastern Europe;"Institute for Slavic Studies of the Russian Academy of Sciences";"2016-2025";"History (Q1); Religious Studies (Q1); Cultural Studies (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +19511;22374;"Twentieth Century British History";journal;"09552359, 14774674";"Oxford University Press";No;No;0,244;Q1;30;0;65;0;60;64;1,14;0,00;0,00;0;United Kingdom;Western Europe;"Oxford University Press";"1990-1997, 1999, 2001, 2003-2005, 2007-2023";"History (Q1)";"Arts and Humanities" +19512;12100155723;"Andamios";journal;"18700063, 25941917";"Universidad Autonoma de la Ciudad de Mexico";Yes;No;0,244;Q2;17;60;162;2200;58;143;0,25;36,67;38,24;0;Mexico;Latin America;"Universidad Autonoma de la Ciudad de Mexico";"2008-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +19513;21100856416;"BioLaw Journal";journal;"22844503";"University of Trento";Yes;No;0,244;Q2;9;94;334;4781;94;330;0,25;50,86;60,61;0;Italy;Western Europe;"University of Trento";"2014-2026";"Law (Q2); Philosophy (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Health Policy (Q3); Medicine (miscellaneous) (Q3); Biotechnology (Q4)";"Arts and Humanities; Biochemistry, Genetics and Molecular Biology; Medicine; Social Sciences" +19514;21100901783;"Connections";journal;"18121098, 18122973";"Partnership for Peace Consortium of Defense Academies and Security Studies Institutes";Yes;No;0,244;Q2;8;21;101;811;39;92;0,38;38,62;25,93;0;Germany;Western Europe;"Partnership for Peace Consortium of Defense Academies and Security Studies Institutes";"2018-2025";"Law (Q2); Computer Networks and Communications (Q3); Political Science and International Relations (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3)";"Computer Science; Engineering; Social Sciences" +19515;21100857102;"Ethics and Bioethics (in Central Europe)";journal;"13385615, 24537829";"Sciendo";Yes;Yes;0,244;Q2;7;22;63;699;54;60;0,93;31,77;29,63;0;Poland;Eastern Europe;"Sciendo";"2017-2025";"Philosophy (Q2); Education (Q3); Health Policy (Q3)";"Arts and Humanities; Medicine; Social Sciences" +19516;21100312217;"Etnograficeskoe Obozrenie";journal;"08695415, 30346274";"Russian Academy of Sciences";No;No;0,244;Q2;7;71;210;2338;40;202;0,15;32,93;63,64;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2011-2025";"Anthropology (Q2); Cultural Studies (Q2)";"Social Sciences" +19517;21101099969;"Journal of Autoethnography";journal;"26375192";"University of California Press";No;No;0,244;Q2;10;28;136;1239;137;132;1,13;44,25;78,57;0;United States;Northern America;"University of California Press";"2020-2025";"Anthropology (Q2); Communication (Q3)";"Social Sciences" +19518;21101091650;"Journal of Criminal Law";journal;"00220183, 17405580";"SAGE Publications Inc.";No;No;0,244;Q2;20;42;117;1216;90;70;0,61;28,95;50,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1937, 1939-1941, 1946-1947, 1949, 1952-1954, 1956-1958, 1960, 1963-1965, 1972-2026";"Law (Q2)";"Social Sciences" +19519;21101175788;"Proceedings of Engineering and Technology Innovation";journal;"2518833X, 24137146";"Taiwan Association of Engineering and Technology Innovation";Yes;No;0,244;Q2;8;24;58;658;77;58;1,23;27,42;34,43;0;Taiwan;Asiatic Region;"Taiwan Association of Engineering and Technology Innovation";"2019-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +19520;5700167230;"Psychoanalysis, Culture and Society";journal;"10880763, 15433390";"Palgrave Macmillan Ltd.";No;No;0,244;Q2;15;81;121;2703;71;117;0,60;33,37;41,00;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2004-2005, 2013-2025";"Cultural Studies (Q2); Health (social science) (Q3); Sociology and Political Science (Q3); Applied Psychology (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +19521;19900192029;"Advances in Mathematical Physics";journal;"16879120, 16879139";"John Wiley and Sons Ltd";Yes;No;0,244;Q3;36;34;265;1237;339;264;1,49;36,38;25,88;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2009-2026";"Applied Mathematics (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Mathematics; Physics and Astronomy" +19522;21101042309;"Agricultural Science Digest";journal;"09760547, 0253150X";"Agricultural Research Communication Centre";No;No;0,244;Q3;10;194;462;5178;426;462;1,00;26,69;35,03;0;India;Asiatic Region;"Agricultural Research Communication Centre";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +19523;21100391600;"Agriculture (Pol'nohospodarstvo)";journal;"13384376, 05513677";"Sciendo";Yes;Yes;0,244;Q3;21;13;48;600;53;48;1,03;46,15;37,93;0;Poland;Eastern Europe;"Sciendo";"2011-2025";"Agronomy and Crop Science (Q3); Horticulture (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +19524;25930;"Comparative Clinical Pathology";journal;"1618565X, 16185641";"Springer London";No;No;0,244;Q3;46;112;312;5405;350;311;1,11;48,26;39,28;0;United Kingdom;Western Europe;"Springer London";"1996-2026";"Anatomy (Q3); Pathology and Forensic Medicine (Q3)";"Medicine" +19525;21100854820;"Current Treatment Options in Pediatrics";journal;"21986088";"Springer Science and Business Media Deutschland GmbH";No;No;0,244;Q3;12;40;83;2362;71;83;0,67;59,05;53,90;0;Switzerland;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2015-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +19526;14371;"Fluid Dynamics";journal;"15738507, 00154628";"Pleiades Publishing";No;No;0,244;Q3;31;173;477;5424;341;477;0,71;31,35;26,57;0;United States;Northern America;"Pleiades Publishing";"1966-2025";"Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Chemical Engineering; Engineering; Physics and Astronomy" +19527;21100241711;"Indian Journal of Marketing";journal;"09738703";"Associated Management Consultants Pvt. Ltd.";No;No;0,244;Q3;19;49;139;2927;270;138;2,03;59,73;45,63;0;India;Asiatic Region;"Associated Management Consultants Pvt. Ltd.";"2009-2026";"Marketing (Q3)";"Business, Management and Accounting" +19528;14658;"Indian Journal of Occupational and Environmental Medicine";journal;"19983670, 09732284";"Wolters Kluwer Medknow Publications";Yes;No;0,244;Q3;45;63;165;1352;143;148;0,78;21,46;44,15;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1999-2025";"Public Health, Environmental and Occupational Health (Q3)";"Medicine" +19529;26145;"International Journal of Electronics";journal;"13623060, 00207217";"Taylor and Francis Ltd.";No;No;0,244;Q3;58;156;344;4747;520;344;1,55;30,43;31,91;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1965-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +19530;21101018670;"Izvestiya of Saratov University. Mathematics. Mechanics. Informatics";journal;"18169791, 25419005";"Saratov State University";Yes;Yes;0,244;Q3;7;52;136;1021;61;136;0,52;19,63;27,78;0;Russian Federation;Eastern Europe;"Saratov State University";"2018-2025";"Computational Mechanics (Q3); Computer Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Computer Science; Engineering; Mathematics" +19531;21101178402;"Journal of Gems and Gemmology";journal;"20969120";"";No;No;0,244;Q3;7;80;275;2079;107;275;0,38;25,99;38,64;0;China;Asiatic Region;"";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Geology (Q3); Geochemistry and Petrology (Q4)";"Earth and Planetary Sciences" +19532;14170;"Journal of Healthcare Risk Management";journal;"20400861, 10744797";"John Wiley and Sons Inc";No;No;0,244;Q3;23;22;52;0;38;42;0,48;0,00;43,40;0;United States;Northern America;"John Wiley and Sons Inc";"1992-1999, 2001-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +19533;21101307222;"Journal of Joint Surgery and Research";journal;"29497051";"Elsevier B.V.";Yes;No;0,244;Q3;3;40;31;1294;22;31;0,71;32,35;14,23;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Orthopedics and Sports Medicine (Q3); Surgery (Q3); Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +19534;21100197340;"Journal of Nepal Health Research Council";journal;"19996217, 17275482";"";Yes;No;0,244;Q3;25;88;417;0;283;413;0,64;0,00;45,15;0;Nepal;Asiatic Region;"";"2010-2025";"Medicine (miscellaneous) (Q3)";"Medicine" +19535;21100206004;"Journal of Ovonic Research";journal;"18422403, 15849953";"S.C. Virtual Company of Physics S.R.L";Yes;No;0,244;Q3;24;71;232;2482;319;231;1,32;34,96;30,70;0;Romania;Eastern Europe;"S.C. Virtual Company of Physics S.R.L";"2011-2025";"Electronic, Optical and Magnetic Materials (Q3); Physics and Astronomy (miscellaneous) (Q3); Surfaces, Coatings and Films (Q3)";"Materials Science; Physics and Astronomy" +19536;21100856603;"Journal of Tekirdag Agricultural Faculty";journal;"13027050";"Namik Kemal University - Agricultural Faculty";No;No;0,244;Q3;12;86;257;3723;255;257;0,99;43,29;32,08;0;Turkey;Middle East;"Namik Kemal University - Agricultural Faculty";"2017-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Pollution (Q4)";"Agricultural and Biological Sciences; Environmental Science" +19537;21101195784;"Kufa Journal of Engineering";journal;"25230018, 20715528";"University of Kufa";Yes;No;0,244;Q3;6;131;67;4167;156;67;2,33;31,81;25,68;0;Iraq;Middle East;"University of Kufa";"2023-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +19538;21101162818;"Management Teaching Review";journal;"23792981";"SAGE Publications Inc.";No;No;0,244;Q3;9;77;99;1675;78;87;0,67;21,75;56,74;0;United States;Northern America;"SAGE Publications Inc.";"2016, 2019-2026";"Business, Management and Accounting (miscellaneous) (Q3); Education (Q3)";"Business, Management and Accounting; Social Sciences" +19539;17826;"Materiaux et Techniques";journal;"00326895, 17783771";"EDP Sciences";No;No;0,244;Q3;18;21;105;826;109;95;1,19;39,33;23,53;0;France;Western Europe;"EDP Sciences";"1976, 1978, 1980-1988, 1990-1994, 2005, 2009-2026";"Materials Science (miscellaneous) (Q3)";"Materials Science" +19540;27360;"Metallurgist";journal;"00260894, 15738892";"Springer New York";No;No;0,244;Q3;30;215;577;4989;501;577;0,91;23,20;32,10;0;United States;Northern America;"Springer New York";"1957-2026";"Materials Chemistry (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3); Condensed Matter Physics (Q4)";"Engineering; Materials Science; Physics and Astronomy" +19541;10600153369;"Nan Fang Yi Ke Da Xue Xue Bao / Journal of Southern Medical University";journal;"16734254";"Nanfang Yi Ke Da Xue Xue Bao Bian ji Bu";No;No;0,244;Q3;25;289;805;10367;700;805;0,87;35,87;47,82;0;China;Asiatic Region;"Nanfang Yi Ke Da Xue Xue Bao Bian ji Bu";"2006-2026";"Medicine (miscellaneous) (Q3)";"Medicine" +19542;21101140513;"Radiologie";journal;"27317048, 27317056";"Springer Medizin";No;No;0,244;Q3;36;148;412;3269;279;344;0,67;22,09;31,80;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +19543;21100197160;"Research Journal of Pharmacy and Technology";journal;"09743618, 0974360X";"A and V Publication";No;No;0,244;Q3;58;887;2923;31424;2816;2923;0,91;35,43;48,64;0;India;Asiatic Region;"A and V Publication";"1997, 2005, 2011-2025";"Pharmacology (medical) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +19544;21100239409;"Revista Ambiente e Agua";journal;"1980993X";"Instituto de Pesquisas Ambientais em Bacias Hidrograficas (IPABHi)";Yes;No;0,244;Q3;25;43;108;1785;102;108;0,77;41,51;37,04;0;Brazil;Latin America;"Instituto de Pesquisas Ambientais em Bacias Hidrograficas (IPABHi)";"2013-2026";"Aquatic Science (Q3); Environmental Science (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +19545;21100211748;"Scienze Regionali";journal;"17203929, 2035603X";"Societa Editrice Il Mulino";No;No;0,244;Q3;18;24;55;955;37;53;0,65;39,79;55,10;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2012-2025";"Economics and Econometrics (Q3); Food Animals (Q3); Geography, Planning and Development (Q3); Public Administration (Q3); Urban Studies (Q3)";"Economics, Econometrics and Finance; Social Sciences; Veterinary" +19546;21101169022;"SSRG International Journal of Mechanical Engineering";journal;"23488360";"Seventh Sense Research Group";No;No;0,244;Q3;6;116;133;3304;200;133;1,50;28,48;18,50;0;India;Asiatic Region;"Seventh Sense Research Group";"2023-2026";"Mechanical Engineering (Q3)";"Engineering" +19547;21101252315;"Tsukuba Journal of Mathematics";journal;"03874982, 2423821X";"";No;No;0,244;Q3;4;2;31;21;12;31;0,24;10,50;0,00;0;Japan;Asiatic Region;"";"2020-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19548;20441;"Tuexenia";journal;"0722494X";"Floristisch - Soziologische Arbeitsgemeinschaft";Yes;No;0,244;Q3;22;10;44;1037;33;43;0,77;103,70;31,15;0;Germany;Western Europe;"Floristisch - Soziologische Arbeitsgemeinschaft";"1985, 2011-2025";"Ecology (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19549;19900191601;"Turkiye Entomoloji Dergisi";journal;"10106960";"Entomological Society of Turkey";Yes;No;0,244;Q3;19;34;110;1797;107;110;0,93;52,85;43,02;0;Turkey;Middle East;"Entomological Society of Turkey";"2010-2025";"Insect Science (Q3)";"Agricultural and Biological Sciences" +19550;21101162971;"Zeitschrift fur Technikfolgenabschatzung in Theorie und Praxis / Journal for Technology Assessment in Theory and Practice";journal;"2568020X, 25678833";"Oekom - Gesellschaft fuer Oekologische Kommunikation mbH";Yes;Yes;0,244;Q3;8;37;98;870;74;77;0,75;23,51;44,90;1;Germany;Western Europe;"Oekom - Gesellschaft fuer Oekologische Kommunikation mbH";"2019-2025";"Management of Technology and Innovation (Q3)";"Business, Management and Accounting" +19551;25257;"Balkan Journal of Geometry and its Applications";journal;"12242780, 18432875";"Balkan Society of Geometers";Yes;Yes;0,244;Q4;22;0;29;0;21;29;0,00;0,00;0,00;0;Romania;Eastern Europe;"Balkan Society of Geometers";"2002-2022";"Geometry and Topology (Q4)";"Mathematics" +19552;21100891828;"Journal of Somali Studies";journal;"20565682, 20565674";"Adonis and Abbey Publishers Ltd";No;No;0,243;Q1;7;14;59;665;36;57;0,78;47,50;16,67;0;United Kingdom;Western Europe;"Adonis and Abbey Publishers Ltd";"2014-2025";"History (Q1); Cultural Studies (Q2); Linguistics and Language (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19553;20100195047;"Kadmos";journal;"00227498, 16130723";"Walter de Gruyter GmbH";No;No;0,243;Q1;15;11;27;435;19;27;0,44;39,55;60,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1962-1979, 1981, 1983-1985, 1989-2002, 2004-2005, 2007-2015, 2017, 2019-2025";"Classics (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19554;21100902661;"Acta Scientiae";journal;"15174492, 21787727";"Lutheran University of Brazil";No;No;0,243;Q2;11;27;180;846;113;180;0,60;31,33;51,67;0;Brazil;Latin America;"Lutheran University of Brazil";"2018-2026";"Multidisciplinary (Q2); Education (Q3)";"Multidisciplinary; Social Sciences" +19555;21101028193;"Applied Research on English Language";journal;"22520198, 23225343";"University of Isfahan, Department of English";Yes;No;0,243;Q2;9;28;71;1624;75;71;1,04;58,00;30,88;0;Iran;Middle East;"University of Isfahan, Department of English";"2019-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +19556;21100220374;"Arqueologia Iberoamericana";journal;"19894104";"";Yes;Yes;0,243;Q2;12;47;93;1101;41;90;0,35;23,43;27,27;0;Spain;Western Europe;"";"2012-2026";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19557;80911;"Chung-kuo Tsao Chih/China Pulp and Paper";trade journal;"0254508X";"China Technical Association of Paper Industry";No;No;0,243;Q2;17;274;690;7275;509;690;0,77;26,55;38,55;0;China;Asiatic Region;"China Technical Association of Paper Industry";"1996-2025";"Media Technology (Q2); Industrial and Manufacturing Engineering (Q3)";"Engineering" +19558;21100843261;"Comunicacao e Sociedade";journal;"21833575, 16452089";"University of Minho, Communication and Society Research Centre";Yes;Yes;0,243;Q2;9;39;85;1760;69;85;0,96;45,13;69,88;0;Portugal;Western Europe;"University of Minho, Communication and Society Research Centre";"2017-2026";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +19559;21100364911;"Creativity Studies";journal;"23450487, 23450479";"Vilnius Gediminas Technical University";Yes;No;0,243;Q2;19;42;132;2183;156;132;0,90;51,98;55,56;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2014-2026";"Cultural Studies (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +19560;21486;"European Human Rights Law Review";journal;"13611526";"Sweet and Maxwell-Thomson Reuters";No;No;0,243;Q2;6;55;160;3051;57;105;0,41;55,47;51,28;0;United Kingdom;Western Europe;"Sweet and Maxwell-Thomson Reuters";"1998, 2001, 2003, 2019-2026";"Law (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +19561;22386;"Hunan Daxue Xuebao/Journal of Hunan University Natural Sciences";journal;"16742974";"Hunan University";No;No;0,243;Q2;26;238;801;6190;682;801;0,80;26,01;31,73;0;China;Asiatic Region;"Hunan University";"1992-1993, 1996, 2001-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +19562;21101152543;"Journal of Agricultural and Environmental Law";journal;"17886171";"CEDR - Hungarian Association of Agricultural Law";No;No;0,243;Q2;6;37;71;1356;39;71;0,71;36,65;55,56;0;Hungary;Eastern Europe;"CEDR - Hungarian Association of Agricultural Law";"2019-2025";"Law (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Agricultural and Biological Sciences; Energy; Social Sciences" +19563;21100855500;"Journal of Population and Social Studies";journal;"24654418";"Mahidol University, Institute for Population and Social Research";No;No;0,243;Q2;15;41;152;2134;139;152;0,94;52,05;40,35;0;Thailand;Asiatic Region;"Mahidol University, Institute for Population and Social Research";"2017-2027";"Anthropology (Q2); Demography (Q3); Geography, Planning and Development (Q3); Health (social science) (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +19564;21100466828;"Methexis";journal;"03270289, 24680974";"Brill Academic Publishers";No;No;0,243;Q2;5;13;32;356;13;28;0,48;27,38;46,15;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2014, 2016-2025";"Philosophy (Q2)";"Arts and Humanities" +19565;21100898611;"Mextesol Journal";journal;"23959908";"Asociacion Mexicana de Maestros de Ingles MEXTESOL A.C";Yes;Yes;0,243;Q2;11;49;223;2416;226;223;0,80;49,31;46,59;0;Mexico;Latin America;"Asociacion Mexicana de Maestros de Ingles MEXTESOL A.C";"2018-2026";"Cultural Studies (Q2); Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +19566;21100927902;"Oslo Law Review";journal;"23873299";"Scandinavian University Press";Yes;Yes;0,243;Q2;7;5;31;624;47;29;1,44;124,80;54,55;1;Norway;Western Europe;"Scandinavian University Press";"2019-2025";"Law (Q2)";"Social Sciences" +19567;21100889435;"Academica Turistica";journal;"23354194, 18553303";"University of Primorska";No;No;0,243;Q3;10;12;64;920;87;64;1,30;76,67;30,30;0;Slovenia;Eastern Europe;"University of Primorska";"2018-2025";"Management of Technology and Innovation (Q3); Social Sciences (miscellaneous) (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +19568;24289;"Anesthesia Progress";journal;"00033006, 18787177";"Allen Press Inc.";No;No;0,243;Q3;45;36;126;202;79;110;0,43;5,61;38,67;0;United States;Northern America;"Allen Press Inc.";"1966-2025";"Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q3)";"Medicine" +19569;21101022199;"Annales Mathematiques Blaise Pascal";journal;"12591734, 21187436";"";Yes;Yes;0,243;Q3;5;9;25;244;7;25;0,31;27,11;23,53;0;France;Western Europe;"";"2018-2025";"Algebra and Number Theory (Q3); Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4)";"Mathematics" +19570;6500153246;"Applied Environmental Education and Communication";journal;"15330389, 1533015X";"Routledge";No;No;0,243;Q3;30;4;49;190;55;48;0,92;47,50;44,44;0;United States;Northern America;"Routledge";"2002-2026";"Communication (Q3); Education (Q3); Environmental Science (miscellaneous) (Q3)";"Environmental Science; Social Sciences" +19571;26770;"Astrophysics";journal;"15738191, 05717256";"Springer GmbH & Co, Auslieferungs-Gesellschaf";No;No;0,243;Q3;20;36;125;1180;93;125;0,60;32,78;35,42;0;Germany;Western Europe;"Springer GmbH & Co, Auslieferungs-Gesellschaf";"1965-1991, 1993-2025";"Astronomy and Astrophysics (Q3)";"Physics and Astronomy" +19572;21100200206;"BioRisk";journal;"13132644, 13132652";"Pensoft Publishers";Yes;No;0,243;Q3;11;6;65;279;76;63;1,62;46,50;25,00;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2011-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Animal Science and Zoology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Environmental Science (miscellaneous) (Q3); Insect Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19573;28038;"Czasopismo Geograficzne";journal;"00459453";"Polish Geographical Society";No;No;0,243;Q3;10;30;92;1583;58;87;0,61;52,77;37,25;0;Poland;Eastern Europe;"Polish Geographical Society";"1978-2013, 2015-2018, 2020-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +19574;28610;"Geodesy and Cartography";journal;"20297009, 20296991";"Vilnius Gediminas Technical University";Yes;Yes;0,243;Q3;17;25;75;622;80;75;1,26;24,88;40,54;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2004-2026";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +19575;21100211343;"Hellenic Journal of Psychology";journal;"17901391, 27327027";"Psychological Society of Northern Greece";No;No;0,243;Q3;15;12;42;770;33;42;0,64;64,17;60,00;0;Greece;Western Europe;"Psychological Society of Northern Greece";"2011-2025";"Education (Q3); Psychology (miscellaneous) (Q3)";"Psychology; Social Sciences" +19576;21100258613;"International Journal of Literacies";journal;"23270136, 2327266X";"Common Ground Research Networks";No;No;0,243;Q3;5;13;33;669;53;33;1,92;51,46;43,48;0;United States;Northern America;"Common Ground Research Networks";"2012-2025";"Education (Q3)";"Social Sciences" +19577;21100202718;"International Journal of Management in Education";journal;"17503868, 1750385X";"Inderscience";No;No;0,243;Q3;19;31;89;2339;108;89;1,26;75,45;33,33;0;Switzerland;Western Europe;"Inderscience";"2007-2026";"Business, Management and Accounting (miscellaneous) (Q3); Education (Q3)";"Business, Management and Accounting; Social Sciences" +19578;21101257844;"International Journal of Research in Industrial Engineering";journal;"27831337, 27172937";"";Yes;Yes;0,243;Q3;6;40;56;1838;88;56;1,57;45,95;33,01;0;Iran;Middle East;"";"2023-2026";"Industrial and Manufacturing Engineering (Q3); Information Systems and Management (Q3); Management Science and Operations Research (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Engineering" +19579;22385;"International Maritime Health";journal;"16419251, 20813252";"Via Medica";Yes;Yes;0,243;Q3;30;37;118;876;110;102;1,05;23,68;39,39;0;Poland;Eastern Europe;"Via Medica";"1999-2025";"Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +19580;11700154333;"Journal of Alternative Investments";journal;"15203255";"Portfolio Management Research";No;No;0,243;Q3;28;30;93;844;54;78;0,65;28,13;15,25;0;United States;Northern America;"Portfolio Management Research";"2007-2026";"Economics and Econometrics (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +19581;21101388471;"Journal of China and Foreign Highway";journal;"16712579";"Editorial Department of Journal of China and Foreign Highway";No;No;0,243;Q3;7;178;671;4442;510;671;0,89;24,96;25,93;0;China;Asiatic Region;"Editorial Department of Journal of China and Foreign Highway";"2022-2025";"Building and Construction (Q3); Civil and Structural Engineering (Q3)";"Engineering" +19582;130097;"Journal of Engineering Physics and Thermophysics";journal;"1573871X, 10620125";"Springer GmbH & Co, Auslieferungs-Gesellschaf";No;No;0,243;Q3;32;204;608;4575;330;607;0,54;22,43;27,45;0;Germany;Western Europe;"Springer GmbH & Co, Auslieferungs-Gesellschaf";"1992-1997, 2004-2026";"Engineering (miscellaneous) (Q3); Condensed Matter Physics (Q4)";"Engineering; Physics and Astronomy" +19583;21101185425;"Journal of Kinesiology and Exercise Sciences";journal;"29564581";"Akademia Wychowania Fizycznego im. Bronislawa Czecha w Krakowie";Yes;Yes;0,243;Q3;4;21;50;827;46;50;0,92;39,38;24,66;0;Poland;Eastern Europe;"Akademia Wychowania Fizycznego im. Bronislawa Czecha w Krakowie";"2023-2025";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)";"Health Professions; Medicine" +19584;13529;"Journal of Northwest Atlantic Fishery Science";journal;"18131859, 02506408";"Northwest Atlantic Fisheries Organization";No;No;0,243;Q3;47;3;12;150;11;12;0,71;50,00;33,33;0;Canada;Northern America;"Northwest Atlantic Fisheries Organization";"1980, 1984, 1989-1994, 1996-2010, 2012, 2014-2017, 2019-2025";"Aquatic Science (Q3); Ecology (Q3); Oceanography (Q3)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +19585;24648;"Journal of Structural Chemistry";journal;"00224766, 15738779";"Pleiades Publishing";No;No;0,243;Q3;42;205;575;7747;786;575;1,53;37,79;39,69;0;United States;Northern America;"Pleiades Publishing";"1960-2026";"Materials Chemistry (Q3); Inorganic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science" +19586;21100916741;"Journal of Verification, Validation and Uncertainty Quantification";journal;"23772158, 23772166";"The American Society of Mechanical Engineers(ASME)";No;No;0,243;Q3;15;9;66;285;52;64;1,00;31,67;8,00;0;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"2016-2025";"Computational Theory and Mathematics (Q3); Modeling and Simulation (Q3); Computer Science Applications (Q4); Statistics and Probability (Q4)";"Computer Science; Mathematics" +19587;27347;"Metallofizika i Noveishie Tekhnologii";journal;"10241809, 26171511";"G.V. Kurdyumov Institute for Metal Physics of N.A.S. of Ukraine";Yes;Yes;0,243;Q3;24;86;293;2326;216;293;0,62;27,05;30,48;0;Ukraine;Eastern Europe;"G.V. Kurdyumov Institute for Metal Physics of N.A.S. of Ukraine";"1996-2025";"Electronic, Optical and Magnetic Materials (Q3); Mathematics (miscellaneous) (Q3); Metals and Alloys (Q3); Condensed Matter Physics (Q4)";"Materials Science; Mathematics; Physics and Astronomy" +19588;21100915394;"Neotropical Biodiversity";journal;"23766808";"Taylor and Francis Ltd.";Yes;No;0,243;Q3;20;0;59;0;50;59;0,71;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2023";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Global and Planetary Change (Q4)";"Agricultural and Biological Sciences; Environmental Science" +19589;29252;"Plasma Physics Reports";journal;"15626938, 1063780X";"Pleiades Publishing";No;No;0,243;Q3;57;136;474;4256;305;471;0,70;31,29;26,21;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Physics and Astronomy (miscellaneous) (Q3); Condensed Matter Physics (Q4)";"Physics and Astronomy" +19590;21100199806;"Quasigroups and Related Systems";journal;"15612848";"Institute of Mathematics and Computer Science";Yes;No;0,243;Q3;15;14;74;215;32;74;0,46;15,36;11,11;0;Moldova;Eastern Europe;"Institute of Mathematics and Computer Science";"2011-2025";"Discrete Mathematics and Combinatorics (Q3); Algebra and Number Theory (Q4)";"Mathematics" +19591;21100244625;"Revista Espanola de Orientacion y Psicopedagogia";journal;"11397853, 19897448";"Universidad Nacional de Educacion a Distancia (UNED)";Yes;Yes;0,243;Q3;20;32;84;1437;68;76;0,66;44,91;75,61;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2010-2025";"Education (Q3); Applied Psychology (Q4)";"Psychology; Social Sciences" +19592;17390;"Soil Mechanics and Foundation Engineering";journal;"00380741, 15739279";"Springer";No;No;0,243;Q3;25;83;238;1529;209;237;0,78;18,42;28,51;0;United States;Northern America;"Springer";"1964-2026";"Energy (miscellaneous) (Q3); Ocean Engineering (Q3); Soil Science (Q3); Water Science and Technology (Q3); Geotechnical Engineering and Engineering Geology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Energy; Engineering; Environmental Science" +19593;21100863128;"Surveys in Mathematics and its Applications";journal;"18437265, 18426298";"University Constantin Brancusi of Targu-Jiu";Yes;Yes;0,243;Q3;9;19;60;468;40;60;0,87;24,63;28,21;0;Romania;Eastern Europe;"University Constantin Brancusi of Targu-Jiu";"2009, 2018-2025";"Mathematics (miscellaneous) (Q3); Applied Mathematics (Q4)";"Mathematics" +19594;21101290845;"Theriologia Ukrainica";journal;"26171120, 26167379";"National Museum of Natural History of the National Academy of Sciences of Ukraine";Yes;No;0,243;Q3;5;28;85;1129;46;85;0,46;40,32;22,22;0;Ukraine;Eastern Europe;"National Museum of Natural History of the National Academy of Sciences of Ukraine";"2022-2025";"Animal Science and Zoology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Forestry (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19595;5000154003;"Transactions of the Royal Institution of Naval Architects Part A: International Journal of Maritime Engineering";journal;"14798751, 17400716";"University of Buckingham Press";No;No;0,243;Q3;24;90;126;2846;152;125;1,09;31,62;24,85;0;United Kingdom;Western Europe;"University of Buckingham Press";"2006-2025";"Environmental Engineering (Q3); Ocean Engineering (Q3)";"Engineering; Environmental Science" +19596;22739;"Western Birds";journal;"01601121";"Western Field Ornithologists";No;No;0,243;Q3;13;28;77;684;34;70;0,43;24,43;24,14;0;United States;Northern America;"Western Field Ornithologists";"1981, 2009-2026";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +19597;24493;"Western North American Naturalist";journal;"15270904";"Brigham Young University";No;No;0,243;Q3;42;42;163;2529;118;163;0,67;60,21;39,69;0;United States;Northern America;"Brigham Young University";"2000-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19598;13608;"Xitong Fangzhen Xuebao / Journal of System Simulation";journal;"1004731X";"Acta Simulata Systematica Sinica";No;No;0,243;Q3;35;245;700;6631;885;700;1,41;27,07;29,68;0;China;Asiatic Region;"Acta Simulata Systematica Sinica";"1998-1999, 2001-2026";"Modeling and Simulation (Q3); Aerospace Engineering (Q4); Computer Science Applications (Q4)";"Computer Science; Engineering; Mathematics" +19599;21100792814;"International Electronic Journal of Algebra";journal;"13066048";"Hacettepe University";Yes;No;0,243;Q4;11;40;89;696;43;89;0,48;17,40;22,22;0;Turkey;Middle East;"Hacettepe University";"2016-2026";"Algebra and Number Theory (Q4)";"Mathematics" +19600;21101023029;"Sleep and Vigilance";journal;"25102265";"Springer";No;No;0,243;Q4;13;35;119;1276;102;94;0,67;36,46;46,55;0;Singapore;Asiatic Region;"Springer";"2017-2026";"Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience" +19601;13410;"Australian Historical Studies";journal;"19405049, 1031461X";"Taylor and Francis Ltd.";No;No;0,242;Q1;25;53;123;4210;42;108;0,35;79,43;49,06;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2004, 2006-2026";"History (Q1)";"Arts and Humanities" +19602;21100937992;"Journal of Classics Teaching";journal;"17417627, 20586310";"Cambridge University Press";Yes;Yes;0,242;Q1;7;45;83;997;113;78;1,51;22,16;49,02;0;United Kingdom;Western Europe;"Cambridge University Press";"2019-2026";"Classics (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +19603;14000155876;"Life Writing";journal;"14484528, 17512964";"Routledge";No;No;0,242;Q1;17;66;130;2468;68;118;0,42;37,39;73,42;0;United Kingdom;Western Europe;"Routledge";"2004-2026";"Literature and Literary Theory (Q1)";"Arts and Humanities" +19604;21100790093;"Opuscula";journal;"20000898";"Editorial Committee of the Swedish Institutes at Athens";No;No;0,242;Q1;11;8;27;607;16;27;0,62;75,88;47,62;0;Sweden;Western Europe;"Editorial Committee of the Swedish Institutes at Athens";"2015-2025";"Classics (Q1); History (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19605;21100821147;"Quaestio Rossica";journal;"2311911X, 23136871";"Ural Federal University";Yes;Yes;0,242;Q1;9;87;294;3345;65;285;0,25;38,45;48,18;0;Russian Federation;Eastern Europe;"Ural Federal University";"2013-2025";"History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +19606;21100330732;"Eesti ja Soome-Ugri Keeleteaduse Ajakiri";journal;"17368987, 22281339";"University of Tartu Press";Yes;Yes;0,242;Q2;10;22;61;926;30;61;0,55;42,09;66,67;0;Estonia;Eastern Europe;"University of Tartu Press";"2014-2025";"Linguistics and Language (Q2)";"Social Sciences" +19607;19700172902;"International Journal of the Legal Profession";journal;"09695958, 14699257";"Routledge";No;No;0,242;Q2;27;28;59;1728;53;52;0,85;61,71;54,55;1;United Kingdom;Western Europe;"Routledge";"1994-2026";"Law (Q2); Strategy and Management (Q3)";"Business, Management and Accounting; Social Sciences" +19608;21100887528;"Journal on the Use of Force and International Law";journal;"20531702, 20531710";"Taylor and Francis Ltd.";No;No;0,242;Q2;15;11;41;535;47;33;0,77;48,64;18,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2025";"Law (Q2); Political Science and International Relations (Q3)";"Social Sciences" +19609;21100900514;"Obrazovanie i Nauka";journal;"19945639, 23105828";"Russian State Vocational Pedagogical University";Yes;No;0,242;Q2;17;69;210;3147;224;210;1,16;45,61;69,48;0;Russian Federation;Eastern Europe;"Russian State Vocational Pedagogical University";"2018-2026";"Cultural Studies (Q2); Philosophy (Q2); Education (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sociology and Political Science (Q3); Developmental and Educational Psychology (Q4)";"Arts and Humanities; Health Professions; Psychology; Social Sciences" +19610;21100896229;"Phenomenology and Mind";journal;"22807853, 22394028";"Rosenberg and Sellier";Yes;Yes;0,242;Q2;10;0;80;0;34;75;0,09;0,00;0,00;0;Italy;Western Europe;"Rosenberg and Sellier";"2018-2024";"Philosophy (Q2); Psychology (miscellaneous) (Q3); Cognitive Neuroscience (Q4)";"Arts and Humanities; Neuroscience; Psychology" +19611;21100241808;"XLinguae";journal;"2453711X, 13378384";"Slovenska Vzdelavacia Obstaravacia";Yes;No;0,242;Q2;21;68;206;2248;207;206;1,22;33,06;70,67;0;Slovakia;Eastern Europe;"Slovenska Vzdelavacia Obstaravacia";"2011-2026";"Linguistics and Language (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +19612;21100199335;"Advances in Pure and Applied Mathematics";journal;"18696090, 18671152";"ISTE Group";No;No;0,242;Q3;18;12;42;332;23;42;0,50;27,67;16,67;0;United Kingdom;Western Europe;"ISTE Group";"2010-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19613;16694;"American Fern Journal";journal;"00028444";"American Fern Society";No;No;0,242;Q3;31;16;61;590;40;58;0,70;36,88;34,88;0;United States;Northern America;"American Fern Society";"1993-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +19614;20300195018;"Annals of the Academy of Romanian Scientists: Series on Mathematics and its Applications";journal;"20665997, 20666594";"Academy of Romanian Scientists";Yes;No;0,242;Q3;12;50;55;1198;35;55;0,48;23,96;29,27;0;Romania;Eastern Europe;"Academy of Romanian Scientists";"2009-2026";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19615;21101180704;"Balneo and PRM Research Journal";journal;"27348458, 2734844X";"Romanian Association of Balneology";Yes;No;0,242;Q3;11;178;281;7180;384;280;1,48;40,34;55,93;0;Romania;Eastern Europe;"Romanian Association of Balneology";"2021-2025";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rheumatology (Q4)";"Health Professions; Medicine" +19616;21101065070;"Chemical Problems";journal;"25221655, 22218688";"";No;No;0,242;Q3;9;58;124;1632;171;124;1,71;28,14;49,74;0;Azerbaijan;Eastern Europe;"";"2019-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +19617;15179;"Chinese Journal of Ophthalmology";journal;"04124081";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,242;Q3;22;126;513;4284;311;491;0,57;34,00;49,50;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1979-2026";"Ophthalmology (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +19618;21101108604;"Chinese Quarterly of Mechanics";journal;"02540053";"Editorial Office of Chinese Quarterly of Mechanic";No;No;0,242;Q3;8;88;277;2842;242;277;0,88;32,30;33,57;0;China;Asiatic Region;"Editorial Office of Chinese Quarterly of Mechanic";"2019-2025";"Computational Mechanics (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)";"Engineering; Materials Science" +19619;19980;"Economic and Social Review";journal;"00129984";"Economic and Social Studies";No;No;0,242;Q3;34;25;41;984;34;39;0,84;39,36;28,26;0;Ireland;Western Europe;"Economic and Social Studies";"1979-2025";"Economics and Econometrics (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +19620;21101072530;"Egyptian Journal of Otolaryngology";journal;"20908539, 10125574";"Springer Medizin";Yes;Yes;0,242;Q3;12;226;536;6520;402;526;0,71;28,85;46,50;0;Germany;Western Europe;"Springer Medizin";"2012-2026";"Otorhinolaryngology (Q3)";"Medicine" +19621;21101055963;"Endodontology";journal;"25430831, 09707212";"Wolters Kluwer Medknow Publications";Yes;Yes;0,242;Q3;7;74;183;1940;133;175;0,79;26,22;55,51;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2025";"Anatomy (Q3); Dentistry (miscellaneous) (Q3); Oral Surgery (Q3); Immunology and Microbiology (miscellaneous) (Q4)";"Dentistry; Immunology and Microbiology; Medicine" +19622;21100297619;"Geochemical Perspectives";journal;"22237755, 22242759";"European Association of Geochemistry";No;No;0,242;Q3;17;1;16;394;23;13;1,44;394,00;0,00;0;Netherlands;Western Europe;"European Association of Geochemistry";"2012-2021, 2023-2025";"Geology (Q3); Environmental Chemistry (Q4); Geochemistry and Petrology (Q4)";"Earth and Planetary Sciences; Environmental Science" +19623;19200156806;"Geographia Technica";journal;"20654421, 18425135";"Asociatia Geographia Technica";No;No;0,242;Q3;20;44;98;1861;121;98;1,15;42,30;38,76;0;Romania;Eastern Europe;"Asociatia Geographia Technica";"2009-2025";"Computers in Earth Sciences (Q3); Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +19624;53786;"Geologie de la France";journal;"02460874, 16385977";"Editions du BRGM";Yes;No;0,242;Q3;9;0;12;0;10;11;1,13;0,00;0,00;0;France;Western Europe;"Editions du BRGM";"1983-1994, 2007, 2009-2012, 2014-2024";"Geology (Q3); Stratigraphy (Q3); Paleontology (Q4)";"Earth and Planetary Sciences" +19625;29706;"Harbin Gongcheng Daxue Xuebao/Journal of Harbin Engineering University";journal;"10067043";"Editorial Board of Journal of Harbin Engineering";No;No;0,242;Q3;22;238;805;5573;611;805;0,78;23,42;29,84;0;China;Asiatic Region;"Editorial Board of Journal of Harbin Engineering";"2004-2025";"Chemical Engineering (miscellaneous) (Q3); Control and Systems Engineering (Q3); Mechanical Engineering (Q3); Nuclear Energy and Engineering (Q3); Aerospace Engineering (Q4)";"Chemical Engineering; Energy; Engineering" +19626;21100337901;"IEEE Electromagnetic Compatibility Magazine";trade journal;"21622264, 21622272";"IEEE Electromagnetic Compatibility Society";No;No;0,242;Q3;26;31;129;381;76;119;0,61;12,29;24,59;0;United States;Northern America;"IEEE Electromagnetic Compatibility Society";"2012-2025";"Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Instrumentation (Q3); Signal Processing (Q3); Software (Q4)";"Computer Science; Engineering; Physics and Astronomy" +19627;15395;"Jiliang Xuebao/Acta Metrologica Sinica";journal;"10001158";"Chinese Society for Measurement";No;No;0,242;Q3;19;199;729;4512;500;729;0,73;22,67;32,48;0;China;Asiatic Region;"Chinese Society for Measurement";"2001-2025";"Electrical and Electronic Engineering (Q3); Instrumentation (Q3)";"Engineering; Physics and Astronomy" +19628;21100406640;"Journal for Critical Education Policy Studies";journal;"17402743, 20510969";"Institute for Education Policy Studies";Yes;No;0,242;Q3;15;20;96;1032;52;94;0,47;51,60;37,50;0;United Kingdom;Western Europe;"Institute for Education Policy Studies";"2015-2026";"Education (Q3)";"Social Sciences" +19629;21101279625;"Journal of Algebraic Hyperstructures and Logical Algebras";journal;"26766019";"University of Hatef";Yes;No;0,242;Q3;6;25;70;448;57;70;0,82;17,92;28,57;0;Iran;Middle East;"University of Hatef";"2021-2025";"Mathematics (miscellaneous) (Q3); Algebra and Number Theory (Q4)";"Mathematics" +19630;21101245229;"Journal of Applied Communications";journal;"24761362";"New Prairie Press";Yes;Yes;0,242;Q3;11;37;89;2131;92;87;0,77;57,59;61,32;0;United States;Northern America;"New Prairie Press";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Communication (Q3); Marketing (Q3)";"Agricultural and Biological Sciences; Business, Management and Accounting; Social Sciences" +19631;21100327708;"Journal of Intelligence Studies in Business";journal;"2001015X";"Halmstad University";Yes;Yes;0,242;Q3;18;7;56;251;86;50;1,47;35,86;42,86;0;Sweden;Western Europe;"Halmstad University";"2011-2025";"Business, Management and Accounting (miscellaneous) (Q3); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences" +19632;21100286801;"Journal of Nonlinear and Convex Analysis";journal;"13454773, 18805221";"Yokohama Publishers";No;No;0,242;Q3;42;224;558;5927;279;552;0,50;26,46;35,12;0;Japan;Asiatic Region;"Yokohama Publishers";"2010-2025";"Control and Optimization (Q3); Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4)";"Mathematics" +19633;19573;"Journal of Optical Communications";journal;"21916322, 01734911";"Walter de Gruyter GmbH";No;No;0,242;Q3;47;309;707;8909;919;706;1,31;28,83;33,89;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1980-2026";"Electrical and Electronic Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4)";"Engineering; Physics and Astronomy" +19634;21101141645;"Journal of Research and Health";journal;"24235717";"Gonabad University of Medical Sciences";Yes;Yes;0,242;Q3;8;72;162;2657;117;152;0,78;36,90;52,23;0;Iran;Middle East;"Gonabad University of Medical Sciences";"2019-2026";"Public Health, Environmental and Occupational Health (Q3); Psychiatry and Mental Health (Q4)";"Medicine" +19635;21100216547;"Journal of Urban Regeneration and Renewal";journal;"17529638, 17529646";"Henry Stewart Publications";No;No;0,242;Q3;16;25;106;976;48;93;0,35;39,04;44,44;0;United Kingdom;Western Europe;"Henry Stewart Publications";"2011-2026";"Urban Studies (Q3)";"Social Sciences" +19636;23554;"Problemas del Desarrollo";journal;"03017036, 20078951";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,242;Q3;14;25;82;1197;46;82;0,54;47,88;34,78;1;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1979-1980, 1992-1993, 2009-2025";"Development (Q3); Economics and Econometrics (Q3)";"Economics, Econometrics and Finance; Social Sciences" +19637;21100858550;"Psychological Thought";journal;"21937281";"South-West University "Neofit Rilski"";Yes;No;0,242;Q3;11;20;71;880;59;65;0,61;44,00;52,27;0;Bulgaria;Eastern Europe;"South-West University "Neofit Rilski"";"2017-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +19638;17860;"Radiologic Technology";journal;"00338397, 19435657";"American Society of Radiologic Technologists";No;No;0,242;Q3;30;71;208;233;65;207;0,24;3,28;56,35;0;United States;Northern America;"American Society of Radiologic Technologists";"1963-2026";"Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)";"Health Professions; Medicine" +19639;18143;"Rubber Chemistry and Technology";journal;"00359475";"Rubber Division of the American Chemical Society";No;No;0,242;Q3;81;0;65;0;99;65;1,67;0,00;0,00;0;United States;Northern America;"Rubber Division of the American Chemical Society";"1970-1994, 1996-2024";"Materials Chemistry (Q3); Polymers and Plastics (Q3)";"Materials Science" +19640;5800207419;"Tizard Learning Disability Review";journal;"13595474";"Emerald Group Publishing Ltd.";No;No;0,242;Q3;22;40;55;976;44;42;0,78;24,40;62,86;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1996-2026";"Clinical Psychology (Q3); Developmental and Educational Psychology (Q4); Psychiatry and Mental Health (Q4); Social Psychology (Q4)";"Medicine; Psychology" +19641;19700186869;"WSEAS Transactions on Applied and Theoretical Mechanics";journal;"19918747, 22243429";"World Scientific and Engineering Academy and Society";No;No;0,242;Q3;13;17;85;548;73;85;0,98;32,24;27,27;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2008-2013, 2015, 2017-2025";"Computational Mechanics (Q3); Fluid Flow and Transfer Processes (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Civil and Structural Engineering (Q4)";"Chemical Engineering; Engineering; Materials Science" +19642;17600155139;"Adultspan Journal";journal;"21610029, 15246817";"American Counseling Association";No;No;0,242;Q4;16;6;23;205;14;23;0,61;34,17;56,25;0;United States;Northern America;"American Counseling Association";"1999, 2009-2025";"Developmental and Educational Psychology (Q4)";"Psychology" +19643;21100224440;"Analytical and Bioanalytical Electrochemistry";journal;"20084226";"Center of Excellence in Electrochemistry, Univ. of Tehran";No;No;0,242;Q4;33;44;217;1985;321;217;1,51;45,11;36,59;0;Iran;Middle East;"Center of Excellence in Electrochemistry, Univ. of Tehran";"2009-2025";"Analytical Chemistry (Q4); Electrochemistry (Q4)";"Chemistry" +19644;4700152607;"Current Enzyme Inhibition";journal;"18756662, 15734080";"Bentham Science Publishers";No;No;0,242;Q4;21;42;67;3001;75;63;1,16;71,45;36,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2025";"Biochemistry (Q4); Drug Discovery (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +19645;146159;"Egyptian Journal of Immunology";journal;"11104902, 20902506";"";No;No;0,242;Q4;21;47;143;0;122;143;0,82;0,00;78,76;0;Egypt;Africa/Middle East;"";"2003-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +19646;21100199332;"Monte Carlo Methods and Applications";journal;"09299629, 15693961";"Walter de Gruyter GmbH";No;No;0,242;Q4;29;25;78;587;39;78;0,55;23,48;26,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1995-2026";"Applied Mathematics (Q4); Statistics and Probability (Q4)";"Mathematics" +19647;21101092958;"Neurology Perspectives";journal;"26670496";"Spanish Society of Neurology";Yes;No;0,242;Q4;9;32;123;1069;92;107;0,57;33,41;42,05;0;Spain;Western Europe;"Spanish Society of Neurology";"2021-2026";"Neurology (clinical) (Q4)";"Medicine" +19648;26397;"Organic Preparations and Procedures International";journal;"00304948, 19455453";"Taylor and Francis Ltd.";No;No;0,242;Q4;57;54;175;2150;243;175;1,31;39,81;28,74;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971-2026";"Organic Chemistry (Q4)";"Chemistry" +19649;13196;"Progress in Computational Fluid Dynamics";journal;"14684349, 17415233";"Inderscience Enterprises Ltd";No;No;0,242;Q4;36;26;85;981;67;85;0,88;37,73;8,11;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2001-2026";"Computer Science Applications (Q4); Condensed Matter Physics (Q4)";"Computer Science; Physics and Astronomy" +19650;21101114186;"Comparative Southeast European Studies";journal;"27018199, 27018202";"Walter de Gruyter GmbH";Yes;Yes;0,241;Q1;11;22;79;860;90;78;1,10;39,09;34,48;1;Germany;Western Europe;"Walter de Gruyter GmbH";"2010, 2021-2025";"History (Q1); Anthropology (Q2); Cultural Studies (Q2); Law (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Gender Studies (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +19651;21100292886;"Danubius";journal;"23927992, 12205052";"History Museum of Galati";No;No;0,241;Q1;4;15;45;183;5;45;0,15;12,20;31,82;0;Romania;Eastern Europe;"History Museum of Galati";"2013-2024";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19652;5600155015;"German Politics and Society";journal;"15585441, 10450300";"Berghahn Journals";No;No;0,241;Q1;15;18;71;1202;35;70;0,43;66,78;25,93;0;United Kingdom;Western Europe;"Berghahn Journals";"2015-2025";"History (Q1); Cultural Studies (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19653;21100941186;"Grafica";journal;"23397500, 20149298";"Universitat Autonoma de Barcelona";Yes;Yes;0,241;Q1;5;24;94;652;31;92;0,31;27,17;40,00;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2019-2026";"Visual Arts and Performing Arts (Q1); Communication (Q3); Computer Graphics and Computer-Aided Design (Q3)";"Arts and Humanities; Computer Science; Social Sciences" +19654;16400154774;"Journal of Music Theory";journal;"19417497, 00222909";"Duke University Press";No;No;0,241;Q1;18;4;39;160;15;39;0,38;40,00;33,33;0;United States;Northern America;"Duke University Press";"2002-2025";"Music (Q1)";"Arts and Humanities" +19655;21101257850;"Journal of the African Literature Association";journal;"21674736, 21674744";"Taylor and Francis";No;No;0,241;Q1;6;37;98;1492;35;79;0,34;40,32;58,82;0;Australia;Pacific Region;"Taylor and Francis";"2014, 2018-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19656;21100890927;"Russian Politics";journal;"24518913, 24518921";"Brill Academic Publishers";No;No;0,241;Q1;14;22;70;1797;61;70;0,98;81,68;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2025";"History (Q1); Cultural Studies (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19657;5600153161;"Anthropological Notebooks";journal;"1408032X";"Slovene Anthropological Society";Yes;No;0,241;Q2;20;17;36;810;22;36;0,55;47,65;60,00;0;Slovenia;Eastern Europe;"Slovene Anthropological Society";"2010-2025";"Anthropology (Q2)";"Social Sciences" +19658;21101279753;"Boletin de Arqueologia PUCP";journal;"10292004, 23044292";"Pontificia Universidad Catolica del Peru";No;No;0,241;Q2;3;13;40;631;18;34;0,43;48,54;46,67;0;Peru;Latin America;"Pontificia Universidad Catolica del Peru";"2021-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19659;21101086602;"Communication and Democracy";journal;"27671127, 27671135";"Taylor and Francis Ltd.";No;No;0,241;Q2;9;31;44;1495;36;36;0,91;48,23;65,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2022-2026";"Law (Q2); Communication (Q3); Sociology and Political Science (Q3)";"Social Sciences" +19660;21101144515;"Corporate Law and Governance Review";journal;"27071111, 26641542";"Virtus Interpress";No;No;0,241;Q2;9;65;106;3010;253;97;2,62;46,31;31,13;0;Ukraine;Eastern Europe;"Virtus Interpress";"2019-2026";"Law (Q2); Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Finance (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +19661;21100301616;"Gallia Prehistoire";book series;"00164127, 21099642";"CNRS Editions";Yes;No;0,241;Q2;6;4;31;324;12;28;0,42;81,00;39,47;0;France;Western Europe;"CNRS Editions";"2013, 2016-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19662;4700151711;"Journal for the History of Astronomy";journal;"17538556, 00218286";"SAGE Publications Inc.";No;No;0,241;Q2;22;23;59;1074;39;58;0,70;46,70;20,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1970-2026";"Arts and Humanities (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q3); Astronomy and Astrophysics (Q4)";"Arts and Humanities; Physics and Astronomy" +19663;21100887628;"Journal of Siberian Federal University - Humanities and Social Sciences";journal;"23136014, 19971370";"Siberian Federal University";Yes;No;0,241;Q2;13;226;517;6165;186;516;0,35;27,28;63,07;0;Russian Federation;Eastern Europe;"Siberian Federal University";"2018-2026";"Anthropology (Q2)";"Social Sciences" +19664;21101089001;"Juridicas CUC";journal;"23897716, 16923030";"Universidad de la Costa";No;Yes;0,241;Q2;8;21;67;1022;54;64;0,76;48,67;41,86;0;Colombia;Latin America;"Universidad de la Costa";"2019-2025";"Law (Q2)";"Social Sciences" +19665;13399;"Law Library Journal";journal;"00239283";"American Association of Law Libraries";No;No;0,241;Q2;20;15;45;2217;18;45;0,39;147,80;62,50;0;United States;Northern America;"American Association of Law Libraries";"1978, 1987-2025";"Law (Q2); Library and Information Sciences (Q3)";"Social Sciences" +19666;26609;"Philosophy East and West";journal;"15291898, 00318221";"University of Hawaii Press";No;No;0,241;Q2;31;74;165;2832;58;155;0,40;38,27;37,31;0;United States;Northern America;"University of Hawaii Press";"1990, 2002-2025";"Philosophy (Q2)";"Arts and Humanities" +19667;18673;"Active and Passive Electronic Components";journal;"08827516, 15635031";"John Wiley and Sons Ltd";Yes;No;0,241;Q3;27;3;10;60;19;10;1,90;20,00;27,27;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1985-2004, 2007-2021, 2023-2025";"Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science" +19668;21100204121;"Agris On-line Papers in Economics and Informatics";journal;"18041930";"Faculty of Economics and Management";Yes;No;0,241;Q3;24;21;120;860;182;120;1,55;40,95;50,00;0;Czech Republic;Eastern Europe;"Faculty of Economics and Management";"2011-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +19669;19900192605;"Asian Journal of Sports Medicine";journal;"20087209, 2008000X";"Brieflands";Yes;No;0,241;Q3;41;12;84;332;69;80;0,91;27,67;48,89;0;Netherlands;Western Europe;"Brieflands";"2010-2025";"Orthopedics and Sports Medicine (Q3); Sports Science (Q4)";"Health Professions; Medicine" +19670;19600157006;"BAR - Brazilian Administration Review";journal;"18077692";"ANPAD - Associacao Nacional de Pos-Graduacao e Pesquisa em Administracao";Yes;Yes;0,241;Q3;25;50;81;3136;93;74;1,09;62,72;38,10;0;Brazil;Latin America;"ANPAD - Associacao Nacional de Pos-Graduacao e Pesquisa em Administracao";"2009-2026";"Strategy and Management (Q3)";"Business, Management and Accounting" +19671;12626;"Ceska Gynekologie";journal;"18054455, 12107832";"Czech Medical Association J.E. Purkyne";No;No;0,241;Q3;18;63;212;1162;131;206;0,65;18,44;47,42;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1959-1963, 1994-2025";"Obstetrics and Gynecology (Q3)";"Medicine" +19672;21100316027;"Corporate Board: Role, Duties and Composition";journal;"18108601, 23122722";"Virtus Interpress";No;No;0,241;Q3;14;33;35;1792;81;32;2,31;54,30;32,39;0;Ukraine;Eastern Europe;"Virtus Interpress";"2005-2016, 2020, 2024-2026";"Business and International Management (Q3); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +19673;110036;"Cryptogamie, Bryologie";journal;"12900796";"A.D.A.C.";No;No;0,241;Q3;31;6;27;196;29;27;0,81;32,67;47,83;0;France;Western Europe;"A.D.A.C.";"1999-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +19674;20426;"International Journal of Acoustics and Vibrations";journal;"24151408, 10275851";"International Institute of Acoustics and Vibrations";No;No;0,241;Q3;27;23;125;583;149;121;1,01;25,35;29,17;0;United States;Northern America;"International Institute of Acoustics and Vibrations";"2000, 2004-2025";"Acoustics and Ultrasonics (Q3); Mechanical Engineering (Q3)";"Engineering; Physics and Astronomy" +19675;6100152804;"International Journal of Computational Science and Engineering";journal;"17427185, 17427193";"Inderscience Enterprises Ltd";No;No;0,241;Q3;31;54;187;2125;234;186;1,39;39,35;40,48;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2026";"Computational Mathematics (Q3); Hardware and Architecture (Q3); Modeling and Simulation (Q3); Computational Theory and Mathematics (Q4); Software (Q4)";"Computer Science; Mathematics" +19676;21100451190;"International Journal of Microsimulation";journal;"17475864";"International Microsimulation Association";No;No;0,241;Q3;11;19;60;837;33;55;0,69;44,05;30,00;3;Luxembourg;Western Europe;"International Microsimulation Association";"2015-2025";"Demography (Q3); Economics and Econometrics (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Epidemiology (Q3); Health (social science) (Q3); Modeling and Simulation (Q3); Public Health, Environmental and Occupational Health (Q3); Social Sciences (miscellaneous) (Q3)";"Economics, Econometrics and Finance; Mathematics; Medicine; Social Sciences" +19677;21101192301;"International Journal of Nano Dimension";journal;"20088868, 22285059";"OICC Press";No;No;0,241;Q3;18;32;100;1672;149;100;1,42;52,25;43,75;0;Iran;Middle East;"OICC Press";"2019-2026";"Ceramics and Composites (Q3); Metals and Alloys (Q3); Bioengineering (Q4)";"Chemical Engineering; Materials Science" +19678;21100201731;"Iranian Journal of Otorhinolaryngology";journal;"22517251, 2251726X";"Mashhad University of Medical Sciences";Yes;Yes;0,241;Q3;24;40;151;852;108;151;0,67;21,30;37,91;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2011-2025";"Otorhinolaryngology (Q3)";"Medicine" +19679;21100944565;"Izvestiya Instituta Matematiki i Informatiki Udmurtskogo Gosudarstvennogo Universiteta";journal;"22263594, 24101737";"Udmurt State University";Yes;No;0,241;Q3;6;6;49;173;31;49;0,62;28,83;11,11;0;Russian Federation;Eastern Europe;"Udmurt State University";"2019-2025";"Mathematics (miscellaneous) (Q3); Computational Theory and Mathematics (Q4)";"Computer Science; Mathematics" +19680;21100901776;"Journal of Food Science and Technology (China)";journal;"20956002";"Beijing Technology and Business University, Department of Science and Technology";No;No;0,241;Q3;14;98;294;4051;427;294;1,58;41,34;48,72;0;China;Asiatic Region;"Beijing Technology and Business University, Department of Science and Technology";"2018-2025";"Food Science (Q3)";"Agricultural and Biological Sciences" +19681;26729;"Journal of the American Association of Nurse Anesthetists";journal;"00946354, 21625239";"AANA Publishing Inc.";No;No;0,241;Q3;38;55;194;1228;115;173;0,54;22,33;55,10;0;United States;Northern America;"AANA Publishing Inc.";"1973-2026";"Advanced and Specialized Nursing (Q3); Anesthesiology and Pain Medicine (Q3); Medical and Surgical Nursing (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Nursing" +19682;18900;"Journal of Transport Economics and Policy";journal;"17545951, 00225258";"University of Bath";No;No;0,241;Q3;65;12;51;753;43;51;0,55;62,75;18,52;0;United Kingdom;Western Europe;"University of Bath";"1982-1990, 1994-2025";"Economics and Econometrics (Q3); Management, Monitoring, Policy and Law (Q3); Transportation (Q4)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +19683;21101042015;"Korean Journal of Remote Sensing";journal;"22879307, 12256161";"Korean Society of Remote Sensing";No;No;0,241;Q3;16;90;408;2711;294;408;0,83;30,12;35,04;0;South Korea;Asiatic Region;"Korean Society of Remote Sensing";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Computers in Earth Sciences (Q4)";"Earth and Planetary Sciences; Engineering" +19684;14497;"Mechanics of Solids";journal;"19347936, 00256544";"Pleiades Publishing";No;No;0,241;Q3;28;334;700;12483;758;700;1,11;37,37;27,96;0;United States;Northern America;"Pleiades Publishing";"1975-1989, 2007-2026";"Mechanics of Materials (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Engineering; Physics and Astronomy" +19685;21100901172;"Military Behavioral Health";journal;"21635781, 21635803";"Taylor and Francis Ltd.";No;No;0,241;Q3;20;0;84;0;72;84;0,58;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2024";"Psychology (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)";"Psychology; Social Sciences" +19686;7200153144;"Molluscan Research";journal;"14486067, 13235818";"Taylor and Francis Ltd.";No;No;0,241;Q3;30;39;84;2408;62;83;0,62;61,74;33,87;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +19687;20600195505;"Nordic Studies in Education";journal;"18915949, 18915914";"Cappelen Damm Akademisk";Yes;Yes;0,241;Q3;16;19;61;874;64;59;1,28;46,00;73,47;0;Norway;Western Europe;"Cappelen Damm Akademisk";"2012-2026";"Education (Q3)";"Social Sciences" +19688;14297;"Operative Techniques in Otolaryngology - Head and Neck Surgery";journal;"10431810, 15579395";"W.B. Saunders";No;No;0,241;Q3;24;57;142;1922;88;134;0,55;33,72;36,77;0;United States;Northern America;"W.B. Saunders";"1990-2025";"Otorhinolaryngology (Q3); Surgery (Q3)";"Medicine" +19689;16536;"Phytocoenologia";journal;"23637153, 0340269X";"Schweizerbart Science Publishers";No;No;0,241;Q3;43;6;24;469;25;24;1,23;78,17;30,43;0;Germany;Western Europe;"Schweizerbart Science Publishers";"1987, 1989, 1996-2025";"Plant Science (Q3)";"Agricultural and Biological Sciences" +19690;21100860937;"Polish Journal of Sport and Tourism";journal;"18991998, 20828799";"Walter de Gruyter GmbH";Yes;No;0,241;Q3;10;27;76;1109;70;76;0,76;41,07;29,58;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2018-2025";"Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Health Professions; Medicine" +19691;21100857117;"Politics in Central Europe";journal;"18013422";"";Yes;Yes;0,241;Q3;15;13;90;906;66;89;0,50;69,69;40,00;0;Poland;Eastern Europe;"";"2010, 2016-2025";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +19692;21101075154;"Povolzhskii Ekologicheskii Zhurnal";journal;"25418963, 16847318";"KMK Scientific Press Ltd.";Yes;Yes;0,241;Q3;6;35;95;1309;61;95;0,54;37,40;54,13;0;Russian Federation;Eastern Europe;"KMK Scientific Press Ltd.";"2019-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19693;5600152919;"Revista Internacional de Sociologia";journal;"1988429X, 00349712";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,241;Q3;25;7;65;423;50;65;0,56;60,43;40,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1976-1981, 1983, 1985-1988, 1992-1993, 1995, 1997, 1999, 2008-2025";"Sociology and Political Science (Q3)";"Social Sciences" +19694;21101178192;"Teknomekanik";journal;"26218720, 26219980";"Universitas Negeri Padang";No;No;0,241;Q3;5;15;25;741;57;25;2,28;49,40;22,03;0;Indonesia;Asiatic Region;"Universitas Negeri Padang";"2023-2025";"Chemical Engineering (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3); Ocean Engineering (Q3)";"Chemical Engineering; Engineering" +19695;21100199310;"Tekstil ve Konfeksiyon";journal;"13003356";"Ege Universitesi";No;No;0,241;Q3;24;28;105;1447;104;105;0,91;51,68;50,70;0;Turkey;Middle East;"Ege Universitesi";"2008-2025";"Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3)";"Engineering; Materials Science" +19696;23119;"Tropical Doctor";journal;"17581133, 00494755";"SAGE Publications Ltd";No;No;0,241;Q3;42;127;415;1409;254;355;0,56;11,09;40,74;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1971-2026";"Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +19697;20703;"Chinese Journal of Cardiology";journal;"02533758";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,241;Q4;30;215;640;6533;481;627;0,89;30,39;42,70;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1979-1999, 2005-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +19698;19600157013;"Current Bladder Dysfunction Reports";journal;"19317220, 19317212";"Springer";No;No;0,241;Q4;18;29;128;1461;101;128;0,71;50,38;36,59;0;United States;Northern America;"Springer";"2006-2026";"Biochemistry (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +19699;21101040674;"Current Nanomedicine";journal;"24681881, 24681873";"Bentham Science Publishers";No;No;0,241;Q4;10;74;58;6853;98;55;1,93;92,61;43,46;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2018-2026";"Bioengineering (Q4); Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)";"Chemical Engineering; Engineering; Medicine" +19700;21101224444;"European Journal of Statistics";journal;"28060954";"Ada Academica";No;No;0,241;Q4;5;15;41;480;38;41;1,00;32,00;25,00;0;Estonia;Eastern Europe;"Ada Academica";"2021-2026";"Statistics and Probability (Q4)";"Mathematics" +19701;21100903407;"Psychoanalysis, Self and Context";journal;"24720038, 24720046";"Taylor and Francis Ltd.";No;No;0,241;Q4;18;81;168;1330;80;76;0,56;16,42;57,78;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +19702;25217;"Toxicological and Environmental Chemistry";journal;"02772248";"Taylor and Francis Ltd.";No;No;0,241;Q4;55;87;49;5445;72;48;1,34;62,59;40,46;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2026";"Environmental Chemistry (Q4); Health, Toxicology and Mutagenesis (Q4); Pollution (Q4)";"Environmental Science" +19703;18707;"Proceedings - International Symposium on Computers and Communications";conference and proceedings;"15301346";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,241;-;58;0;609;0;625;602;1,05;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1995, 1997, 1999-2024";"Computer Networks and Communications; Computer Science Applications; Mathematics (miscellaneous); Signal Processing; Software";"Computer Science; Mathematics" +19704;5600155275;"Historia y Comunicacion Social";journal;"19883056, 11370734";"Universidad Complutense Madrid";Yes;Yes;0,240;Q1;17;49;143;1957;63;138;0,42;39,94;57,75;0;Spain;Western Europe;"Universidad Complutense Madrid";"2010-2025";"History (Q1); Communication (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19705;21101021486;"Journal of Mekong Societies";journal;"26976056, 16866541";"Khon Kaen University";No;No;0,240;Q1;7;15;76;576;37;76;0,52;38,40;54,17;0;Thailand;Asiatic Region;"Khon Kaen University";"2019-2025";"History (Q1); Literature and Literary Theory (Q1); Religious Studies (Q1); Anthropology (Q2); Cultural Studies (Q2); History and Philosophy of Science (Q2); Development (Q3)";"Arts and Humanities; Social Sciences" +19706;5600156553;"Journal of Pacific History";journal;"00223344";"Taylor and Francis Ltd.";No;No;0,240;Q1;25;39;76;1412;46;73;0,76;36,21;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1966-2026";"History (Q1); Cultural Studies (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19707;21101021488;"Perm University Herald - History";journal;"22193111";"Permskii Gosudarstvennyi Natsional'nyi Issledovatel'skii Universitet";No;No;0,240;Q1;4;63;201;1133;28;201;0,13;17,98;46,27;0;Russian Federation;Eastern Europe;"Permskii Gosudarstvennyi Natsional'nyi Issledovatel'skii Universitet";"2019-2025";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19708;21101132454;"Scripta and E-Scripta";journal;"1312238X, 26033364";"Institute for Literature, Bulgarian Academy of Sciences";No;No;0,240;Q1;3;26;46;1364;11;46;0,17;52,46;51,61;0;Bulgaria;Eastern Europe;"Institute for Literature, Bulgarian Academy of Sciences";"2020-2025";"History (Q1); Literature and Literary Theory (Q1); Linguistics and Language (Q2); Computer Science Applications (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +19709;21101378438;"Trunojoyo Law Review";journal;"26861496, 27152081";"University of Trunojoyo Madura";No;No;0,240;Q1;4;14;31;778;38;31;1,33;55,57;37,50;0;Indonesia;Asiatic Region;"University of Trunojoyo Madura";"2022-2025";"Religious Studies (Q1); Anthropology (Q2); History and Philosophy of Science (Q2); Law (Q2)";"Arts and Humanities; Social Sciences" +19710;21101237952;"Cambridge Journal of Anthropology";journal;"03057674, 20477716";"Berghahn Journals";Yes;Yes;0,240;Q2;9;16;52;819;57;42;1,09;51,19;78,57;0;United Kingdom;Western Europe;"Berghahn Journals";"2020-2025";"Anthropology (Q2)";"Social Sciences" +19711;21100970318;"Carbon and Climate Law Review";journal;"21908230, 18649904";"Lexxion Verlagsgesellschaft mbH";No;No;0,240;Q2;9;24;65;843;33;51;0,35;35,13;31,25;0;Germany;Western Europe;"Lexxion Verlagsgesellschaft mbH";"2019-2025";"Law (Q2); Global and Planetary Change (Q4); Pollution (Q4)";"Environmental Science; Social Sciences" +19712;21101266015;"Eposovedenie";journal;"27824861";"M. K. Ammosov North-Eastern Federal University";Yes;No;0,240;Q2;5;53;118;1367;37;112;0,31;25,79;73,13;0;Russian Federation;Eastern Europe;"M. K. Ammosov North-Eastern Federal University";"2020-2025";"Anthropology (Q2); Cultural Studies (Q2); Linguistics and Language (Q2)";"Social Sciences" +19713;21100902332;"PASAA";journal;"22870024, 01252488";"Chulalongkorn University Language Institute";No;No;0,240;Q2;13;32;93;1551;96;83;0,87;48,47;53,19;0;Thailand;Asiatic Region;"Chulalongkorn University Language Institute";"2018-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +19714;21100792095;"Recerca";journal;"22544135, 11306149";"Universitat Jaume I";Yes;Yes;0,240;Q2;11;21;59;1019;38;58;0,68;48,52;39,29;0;Spain;Western Europe;"Universitat Jaume I";"2016-2025";"Philosophy (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +19715;21101045753;"RUDN Journal of Philosophy";journal;"24088900, 23132302";"RUDN University";Yes;Yes;0,240;Q2;4;85;215;1979;47;208;0,23;23,28;44,34;0;Russian Federation;Eastern Europe;"RUDN University";"2019-2025";"Philosophy (Q2)";"Arts and Humanities" +19716;27208;"Social Philosophy and Policy";journal;"02650525, 14716437";"Cambridge University Press";No;No;0,240;Q2;45;29;77;1760;70;77;1,08;60,69;37,93;0;United Kingdom;Western Europe;"Cambridge University Press";"1970, 1983-2025";"Philosophy (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +19717;21101181972;"Sustainable Engineering and Innovation";journal;"27120562";"Research and Development Academy";Yes;Yes;0,240;Q2;8;49;50;1929;123;49;2,46;39,37;40,71;0;Bosnia and Herzegovina;Eastern Europe;"Research and Development Academy";"2023-2026";"Architecture (Q2); Computer Science (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q3); Energy (miscellaneous) (Q3)";"Computer Science; Decision Sciences; Energy; Engineering" +19718;16199;"Acta Biologica Cracoviensia Series Botanica";journal;"18980295, 00015296";"Polish Academy of Sciences, Biological Commission";Yes;No;0,240;Q3;38;4;16;160;21;16;1,14;40,00;56,25;0;Poland;Eastern Europe;"Polish Academy of Sciences, Biological Commission";"1996-2025";"Plant Science (Q3)";"Agricultural and Biological Sciences" +19719;19900193531;"Advances in Decision Sciences";journal;"20903367, 20903359";"Asia University";Yes;No;0,240;Q3;25;19;79;1344;185;79;1,53;70,74;34,78;0;Taiwan;Asiatic Region;"Asia University";"2010-2026";"Decision Sciences (miscellaneous) (Q3); Information Systems and Management (Q3); Management Science and Operations Research (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences" +19720;21101053549;"Annals of Esophagus";journal;"26162784";"AME Publishing Company";No;No;0,240;Q3;7;36;114;1487;94;100;0,55;41,31;36,29;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2018-2025";"Gastroenterology (Q3); Surgery (Q3)";"Medicine" +19721;21100201066;"Bridge Structures";journal;"15732487, 17448999";"SAGE Publications Ltd";No;No;0,240;Q3;19;17;36;442;35;29;0,85;26,00;11,90;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2026";"Building and Construction (Q3)";"Engineering" +19722;21100933703;"Buletin Ekonomi Moneter dan Perbankan/Monetary and banking economics bulletin";journal;"14108046, 24609196";"Bank Indonesia Institute";Yes;No;0,240;Q3;19;36;113;1671;143;108;1,09;46,42;32,88;0;Indonesia;Asiatic Region;"Bank Indonesia Institute";"2016-2026";"Finance (Q3)";"Economics, Econometrics and Finance" +19723;27420;"Canadian Journal of Physics";journal;"00084204, 12086045";"National Research Council of Canada";No;No;0,240;Q3;68;97;235;4958;272;235;1,17;51,11;21,17;0;Canada;Northern America;"National Research Council of Canada";"1951-1952, 1955-1956, 1958-1960, 1962-1963, 1965, 1967-1994, 1996-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +19724;21101226076;"Challenge Journal of Concrete Research Letters";journal;"25480928";"Tulpar Academic Publishing";No;No;0,240;Q3;7;20;39;687;65;39;1,69;34,35;33,33;0;Turkey;Middle East;"Tulpar Academic Publishing";"2020-2025";"Materials Chemistry (Q3); Materials Science (miscellaneous) (Q3); Civil and Structural Engineering (Q4)";"Engineering; Materials Science" +19725;21100822827;"Communication Today";journal;"2730051X, 1338130X";"University of SS. Cyril and Methodius, Faculty of Mass Media Communication";No;No;0,240;Q3;12;26;77;1350;74;75;1,06;51,92;53,57;0;Slovakia;Eastern Europe;"University of SS. Cyril and Methodius, Faculty of Mass Media Communication";"2017-2025";"Communication (Q3); Marketing (Q3)";"Business, Management and Accounting; Social Sciences" +19726;21100456834;"Counseling Outcome Research and Evaluation";journal;"21501378, 21501386";"Taylor and Francis Ltd.";No;No;0,240;Q3;17;12;36;587;39;35;0,91;48,92;56,82;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Psychology (miscellaneous) (Q3)";"Psychology" +19727;19809;"Entomological Review";journal;"00138738, 15556689";"Pleiades Publishing";No;No;0,240;Q3;24;27;263;1095;102;263;0,30;40,56;42,22;0;United States;Northern America;"Pleiades Publishing";"1990-1996, 2006-2025";"Insect Science (Q3)";"Agricultural and Biological Sciences" +19728;33723;"Indian Journal of Agricultural Sciences";journal;"00195022";"Indian Council of Agricultural Research";Yes;Yes;0,240;Q3;39;5;238;98;228;238;1,02;19,60;18,18;0;India;Asiatic Region;"Indian Council of Agricultural Research";"1974, 1976, 1978, 1980-1981, 1983, 1987-1988, 1993-2025";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +19729;21100198205;"International Journal of Communication Networks and Distributed Systems";journal;"17543916, 17543924";"Inderscience";No;No;0,240;Q3;22;26;92;1351;104;92;0,91;51,96;27,12;0;Switzerland;Western Europe;"Inderscience";"2008-2026";"Computer Networks and Communications (Q3)";"Computer Science" +19730;14888;"International Journal of Comparative Psychology";journal;"08893667, 21683344";"eScholarship";Yes;Yes;0,240;Q3;15;15;29;669;19;29;0,71;44,60;56,25;0;United States;Northern America;"eScholarship";"1992, 1995, 2001-2004, 2007, 2015-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +19731;19700170095;"Irish Studies in International Affairs";journal;"03321460, 20090072";"Royal Irish Academy";No;No;0,240;Q3;13;15;93;594;56;85;0,41;39,60;25,00;0;Ireland;Western Europe;"Royal Irish Academy";"2009-2026";"Development (Q3); Economics and Econometrics (Q3); Political Science and International Relations (Q3)";"Economics, Econometrics and Finance; Social Sciences" +19732;5800207376;"Journal of Acupuncture and Tuina Science";journal;"19930399, 16723597";"Higher Education Press Limited Company";No;No;0,240;Q3;10;69;188;2017;128;188;0,64;29,23;53,82;0;China;Asiatic Region;"Higher Education Press Limited Company";"2003, 2005, 2007-2026";"Complementary and Alternative Medicine (Q3)";"Medicine" +19733;21101393624;"Journal of Smart Tourism";journal;"27652157, 27657272";"SAGE Publications Ltd";No;No;0,240;Q3;11;16;54;904;81;39;1,57;56,50;38,89;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2021-2026";"Artificial Intelligence (Q3); Information Systems and Management (Q3); Management, Monitoring, Policy and Law (Q3); Marketing (Q3); Computer Science Applications (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences; Environmental Science" +19734;20995;"Journal of the Lepidopterists' Society";journal;"00240966";"Lepidopterists' Society";No;No;0,240;Q3;24;32;105;900;49;92;0,44;28,13;28,57;0;United States;Northern America;"Lepidopterists' Society";"1989-2025";"Animal Science and Zoology (Q3); Ecology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19735;4700152850;"Revista Brasileira de Ensino de Fisica";journal;"01024744";"Sociedade Brasileira de Fisica";Yes;Yes;0,240;Q3;18;160;370;6326;172;369;0,49;39,54;21,15;0;Brazil;Latin America;"Sociedade Brasileira de Fisica";"2006-2026";"Education (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy; Social Sciences" +19736;4400151728;"Revista Mexicana de Ciencias Geologicas";journal;"20072902, 10268774";"Centro de Geociencias";Yes;Yes;0,240;Q3;48;14;62;772;27;60;0,55;55,14;32,35;0;Mexico;Latin America;"Centro de Geociencias";"1996-2025";"Geology (Q3)";"Earth and Planetary Sciences" +19737;26705;"Revue de Medecine Interne";journal;"02488663, 17683122";"Elsevier Masson s.r.l.";No;No;0,240;Q3;41;128;417;3697;248;354;0,69;28,88;48,42;1;France;Western Europe;"Elsevier Masson s.r.l.";"1980-2026";"Gastroenterology (Q3); Internal Medicine (Q3)";"Medicine" +19738;14000156200;"Rheedea";journal;"09712313";"Indian Association for Angiosperm Taxonomy";No;No;0,240;Q3;16;7;108;141;59;105;0,62;20,14;31,25;0;India;Asiatic Region;"Indian Association for Angiosperm Taxonomy";"2006-2025";"Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +19739;21100238408;"Scientific Review Engineering and Environmental Sciences";journal;"25437496, 17329353";"Warsaw University of Life Sciences Press";Yes;No;0,240;Q3;13;24;71;783;73;71;0,83;32,63;31,17;0;Poland;Eastern Europe;"Warsaw University of Life Sciences Press";"2013-2025";"Building and Construction (Q3); Earth-Surface Processes (Q3); Environmental Science (miscellaneous) (Q3); Civil and Structural Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering; Environmental Science" +19740;21101150080;"SICE Journal of Control, Measurement, and System Integration";journal;"18849970";"Taylor and Francis Ltd.";Yes;No;0,240;Q3;9;47;102;1375;105;101;1,20;29,26;20,14;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2026";"Computer Science (miscellaneous) (Q3); Control and Systems Engineering (Q3)";"Computer Science; Engineering" +19741;19700200839;"Trends in Anaesthesia and Critical Care";journal;"22108440, 22108467";"Churchill Livingstone";No;No;0,240;Q3;28;47;181;1451;147;154;0,75;30,87;42,48;0;United Kingdom;Western Europe;"Churchill Livingstone";"2011-2026";"Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)";"Medicine" +19742;21101140510;"Unfallchirurgie (Germany)";journal;"2731703X, 27317021";"Springer Medizin";No;No;0,240;Q3;57;137;415;3065;267;332;0,67;22,37;20,85;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Emergency Medicine (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3)";"Medicine" +19743;13747;"Journal of Beijing University of Aeronautics and Astronautics";journal;"10015965";"Beijing University of Aeronautics and Astronautics (BUAA)";No;No;0,240;Q4;31;419;1009;11192;998;1009;1,00;26,71;31,94;0;China;Asiatic Region;"Beijing University of Aeronautics and Astronautics (BUAA)";"1993-2025";"Aerospace Engineering (Q4)";"Engineering" +19744;21100199756;"Organic Communications";journal;"13076175";"ACG Publications";Yes;No;0,240;Q4;21;22;68;1087;99;68;1,32;49,41;38,81;0;Turkey;Middle East;"ACG Publications";"2008-2025";"Organic Chemistry (Q4)";"Chemistry" +19745;21101107938;"International Conference on Computer Supported Education, CSEDU - Proceedings";conference and proceedings;"21845026";"Science and Technology Publications, Lda";No;No;0,240;-;13;195;414;5597;386;407;0,96;28,70;42,73;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Computer Science Applications; Information Systems";"Computer Science" +19746;69957;"Proceedings of the International Conference on Parallel and Distributed Systems - ICPADS";conference and proceedings;"15219097";"";No;No;0,240;-;49;350;623;9462;538;614;0,86;27,03;33,92;0;United States;Northern America;"";"1996-1998, 2001-2002, 2004-2021, 2023-2024";"Hardware and Architecture";"Computer Science" +19747;21000195601;"Workshop on Hyperspectral Image and Signal Processing, Evolution in Remote Sensing";conference and proceedings;"21586276";"IEEE Computer Society";No;No;0,240;-;25;0;342;0;257;339;0,69;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2011-2016, 2018-2019, 2021-2024";"Computer Vision and Pattern Recognition; Signal Processing";"Computer Science" +19748;21100469696;"Art and Perception";journal;"22134905, 22134913";"Brill Academic Publishers";No;No;0,239;Q1;15;7;30;540;26;28;0,70;77,14;60,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2026";"History (Q1); Visual Arts and Performing Arts (Q1); Applied Psychology (Q4)";"Arts and Humanities; Psychology" +19749;5800207874;"Bulletin of the School of Oriental and African Studies";journal;"0041977X, 14740699";"Cambridge University Press";No;No;0,239;Q1;33;33;82;2749;34;82;0,28;83,30;15,79;0;United Kingdom;Western Europe;"Cambridge University Press";"1917-1918, 1920-1940, 1942-1946, 1948-2026";"History (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19750;5800169849;"Colombia Internacional";journal;"19006004, 01215612";"Universidad de los Andes, Colombia";Yes;Yes;0,239;Q1;18;20;85;1414;68;85;0,60;70,70;52,94;0;Colombia;Latin America;"Universidad de los Andes, Colombia";"2011-2026";"History (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19751;6500153108;"Modern Theology";journal;"14680025, 02667177";"Basil Blackwell";No;No;0,239;Q1;28;60;122;3510;40;117;0,36;58,50;29,09;0;United Kingdom;Western Europe;"Basil Blackwell";"1984-2026";"Religious Studies (Q1)";"Arts and Humanities" +19752;20094;"Centaurus";journal;"16000498, 00088994";"Brepols Publishers";No;No;0,239;Q2;18;15;93;1116;51;88;0,37;74,40;42,11;0;United States;Northern America;"Brepols Publishers";"1950-1961, 1963-1969, 1971-1982, 1984-1994, 1998, 2001-2002, 2006-2007, 2009-2025";"History and Philosophy of Science (Q2)";"Arts and Humanities" +19753;21101270642;"Dia-noesis";journal;"2459413X, 27327507";"University of Western Macedonia";No;No;0,239;Q2;5;38;52;1112;38;50;0,77;29,26;53,66;0;Greece;Western Europe;"University of Western Macedonia";"2022-2025";"Philosophy (Q2)";"Arts and Humanities" +19754;19700169832;"Elia";journal;"15765059, 22538283";"Universidad de Sevilla";Yes;Yes;0,239;Q2;10;0;27;0;23;25;0,79;0,00;0,00;0;Spain;Western Europe;"Universidad de Sevilla";"2012-2019, 2021-2024";"Linguistics and Language (Q2)";"Social Sciences" +19755;21101104475;"Experimental Results";journal;"2516712X";"Cambridge University Press";Yes;Yes;0,239;Q2;9;0;47;0;78;47;0,50;0,00;0,00;0;United Kingdom;Western Europe;"Cambridge University Press";"2020-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +19756;21100394266;"International Journal of Agile Systems and Management";journal;"17419174, 17419182";"Inderscience";No;No;0,239;Q2;31;24;62;1457;83;62;1,58;60,71;34,43;0;Switzerland;Western Europe;"Inderscience";"2006-2009, 2011-2026";"Multidisciplinary (Q2); Computer Science (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Management Information Systems (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering; Multidisciplinary" +19757;21100944566;"International Journal of Islamic Thought";journal;"22321314, 22896023";"Universiti Kebangsaan Malaysia Press";Yes;No;0,239;Q2;8;34;92;1314;102;92;1,08;38,65;25,40;0;Malaysia;Asiatic Region;"Universiti Kebangsaan Malaysia Press";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +19758;21100244209;"Peuce";journal;"02588102";"Institutul De Cercetari Eco-Muzeale (ICEM) Tulcea";Yes;Yes;0,239;Q2;9;12;33;597;16;33;0,45;49,75;30,00;0;Romania;Eastern Europe;"Institutul De Cercetari Eco-Muzeale (ICEM) Tulcea";"2003-2004, 2006-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19759;21101052702;"Sciences of Conservation and Archaeology";journal;"10051538";"Shanghai Museum";No;No;0,239;Q2;7;96;275;2375;176;275;0,64;24,74;44,38;0;China;Asiatic Region;"Shanghai Museum";"2019-2025";"Archeology (arts and humanities) (Q2); Conservation (Q2)";"Arts and Humanities" +19760;5000157301;"Transactions of the Royal Society of South Africa";journal;"0035919X, 21540098";"Taylor and Francis Ltd.";No;No;0,239;Q2;33;18;62;1598;72;60;1,16;88,78;37,78;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1909-1910, 1913-1915, 1917-1919, 1921-1926, 1928-1940, 1942-1943, 1945-1949, 1951, 1954-1964, 1967-1972, 1974-1990, 1992-2026";"Multidisciplinary (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science; Medicine; Multidisciplinary" +19761;19700190300;"WSEAS Transactions on Power Systems";journal;"17905060, 2224350X";"World Scientific and Engineering Academy and Society";Yes;No;0,239;Q2;18;35;135;967;143;135;1,13;27,63;25,93;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2010-2014, 2018-2025";"Anthropology (Q2); Cultural Studies (Q2); Electrical and Electronic Engineering (Q3); Energy (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Sociology and Political Science (Q3); Urban Studies (Q3)";"Energy; Engineering; Social Sciences" +19762;21101142703;"Yuridika";journal;"0215840X, 25283103";"Airlangga University";Yes;Yes;0,239;Q2;5;18;54;705;55;54;1,02;39,17;46,43;1;Indonesia;Asiatic Region;"Airlangga University";"2023-2025";"Law (Q2)";"Social Sciences" +19763;145168;"Acta Medica Indonesiana";journal;"01259326, 23382732";"Indonesian Society of Internal Medicine";Yes;No;0,239;Q3;38;70;228;1912;162;210;0,61;27,31;46,67;0;Indonesia;Asiatic Region;"Indonesian Society of Internal Medicine";"2004-2025";"Emergency Medicine (Q3); Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +19764;19600157921;"African Journal of Paediatric Surgery";journal;"09745998, 01896725";"Wolters Kluwer Medknow Publications";Yes;No;0,239;Q3;25;0;202;0;171;195;0,64;0,00;0,00;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2009-2024";"Pediatrics, Perinatology and Child Health (Q3); Surgery (Q3)";"Medicine" +19765;26094;"American Journal of Clinical Hypnosis";journal;"21600562, 00029157";"Taylor and Francis Ltd.";Yes;No;0,239;Q3;35;33;79;1313;68;66;0,74;39,79;43,94;0;United States;Northern America;"Taylor and Francis Ltd.";"1958-2026";"Complementary and Alternative Medicine (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +19766;29827;"Atomic Energy";journal;"15738205, 10634258";"Springer GmbH & Co, Auslieferungs-Gesellschaf";No;No;0,239;Q3;27;93;332;985;116;332;0,39;10,59;22,03;0;Germany;Western Europe;"Springer GmbH & Co, Auslieferungs-Gesellschaf";"1956-1963, 1992-2025";"Nuclear Energy and Engineering (Q3)";"Energy" +19767;19700173110;"Bulletin of Insectology";journal;"17218861, 22830332";"Department of Agricultural and Food Sciences, University of Bologna";Yes;No;0,239;Q3;46;18;114;830;95;108;0,68;46,11;35,38;0;Italy;Western Europe;"Department of Agricultural and Food Sciences, University of Bologna";"2002-2025";"Insect Science (Q3)";"Agricultural and Biological Sciences" +19768;21100318251;"Central European Journal of Nursing and Midwifery";journal;"23363517";"University of Ostrava";Yes;Yes;0,239;Q3;16;28;84;937;62;72;0,63;33,46;76,34;0;Czech Republic;Eastern Europe;"University of Ostrava";"2014-2025";"Nursing (miscellaneous) (Q3)";"Nursing" +19769;68712;"Chinese Journal of Ecology";journal;"10004890";"Ecological Society of China";No;No;0,239;Q3;36;184;982;8377;971;982;1,00;45,53;40,40;0;China;Asiatic Region;"Ecological Society of China";"1982-1984, 1987-1990, 1992, 1994, 2005-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19770;4000151812;"Ciencia Rural";journal;"01038478, 16784596";"Universidade Federal de Santa Maria";Yes;No;0,239;Q3;49;217;570;6713;565;570;0,95;30,94;45,74;0;Brazil;Latin America;"Universidade Federal de Santa Maria";"2006-2026";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +19771;5800173401;"Current Bioactive Compounds";journal;"18756646, 15734072";"Bentham Science Publishers";No;No;0,239;Q3;34;117;239;8892;334;235;1,53;76,00;42,02;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2007-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +19772;21101264200;"Current Challenges in Thoracic Surgery";journal;"26643278";"AME Publishing Company";No;No;0,239;Q3;6;43;126;1642;91;112;0,62;38,19;30,30;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2022-2025";"Surgery (Q3); Physiology (medical) (Q4)";"Medicine" +19773;21100818722;"Cybernetics and Physics";journal;"22237038, 22264116";"Institute for Problems in Mechanical Engineering, Russian Academy of Sciences";Yes;Yes;0,239;Q3;13;47;105;1355;124;105;1,32;28,83;31,25;0;Russian Federation;Eastern Europe;"Institute for Problems in Mechanical Engineering, Russian Academy of Sciences";"2016-2025";"Artificial Intelligence (Q3); Computer Vision and Pattern Recognition (Q3); Control and Optimization (Q3); Fluid Flow and Transfer Processes (Q3); Physics and Astronomy (miscellaneous) (Q3); Signal Processing (Q3)";"Chemical Engineering; Computer Science; Mathematics; Physics and Astronomy" +19774;21101055724;"Digital Chinese Medicine";journal;"2096479X, 25893777";"KeAi Communications Co.";Yes;Yes;0,239;Q3;15;46;121;2098;142;118;1,05;45,61;48,65;0;China;Asiatic Region;"KeAi Communications Co.";"2018-2025";"Complementary and Alternative Medicine (Q3); Computer Science Applications (Q4); Health Informatics (Q4); Medicine (miscellaneous) (Q4)";"Computer Science; Medicine" +19775;21101288669;"Diponegoro Law Review";journal;"25274031";"Diponegoro University";Yes;No;0,239;Q3;3;9;39;371;32;39;0,82;41,22;28,57;0;Indonesia;Asiatic Region;"Diponegoro University";"2023-2025";"Law (Q3); Political Science and International Relations (Q3); Public Administration (Q3); Sociology and Political Science (Q3)";"Social Sciences" +19776;21101210639;"Florida Tax Review";journal;"10663487, 24761699";"University of Florida Press";No;No;0,239;Q3;5;8;43;43;19;43;0,36;5,38;27,27;0;United States;Northern America;"University of Florida Press";"2019-2025";"Accounting (Q3); Finance (Q3); Law (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +19777;19400157202;"International Journal of Web-Based Learning and Teaching Technologies";journal;"15481107, 15481093";"IGI Publishing";No;No;0,239;Q3;23;98;176;3200;286;176;1,48;32,65;46,90;0;United States;Northern America;"IGI Publishing";"2006-2026";"Education (Q3); Computer Science Applications (Q4); E-learning (Q4)";"Computer Science; Social Sciences" +19778;21101253136;"JFO Open Ophthalmology";journal;"29498899";"Elsevier B.V.";Yes;No;0,239;Q3;4;32;116;584;69;64;0,59;18,25;31,87;0;Netherlands;Western Europe;"Elsevier B.V.";"2023-2025";"Ophthalmology (Q3)";"Medicine" +19779;20100195037;"Journal of African Media Studies";journal;"17517974, 2040199X";"Intellect Ltd.";No;No;0,239;Q3;17;12;65;595;68;62;0,78;49,58;33,33;0;United Kingdom;Western Europe;"Intellect Ltd.";"2011-2025";"Communication (Q3)";"Social Sciences" +19780;21101281531;"Journal of Central Banking Law and Institutions";journal;"28277775, 28099885";"Bank Indonesia Institute";Yes;No;0,239;Q3;6;21;63;1204;79;63;1,10;57,33;55,56;0;Indonesia;Asiatic Region;"Bank Indonesia Institute";"2022-2026";"Finance (Q3); Law (Q3); Public Administration (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +19781;19700202714;"Journal of Information and Organizational Sciences";journal;"18463312, 18469418";"University of Zagreb, Faculty of Organization and Informatics";Yes;Yes;0,239;Q3;17;20;80;948;109;74;1,40;47,40;43,14;0;Croatia;Eastern Europe;"University of Zagreb, Faculty of Organization and Informatics";"2006-2025";"Information Systems (Q3); Library and Information Sciences (Q3); Computer Science Applications (Q4)";"Computer Science; Social Sciences" +19782;21100867250;"Journal of Open Research Software";journal;"20499647";"Ubiquity Press";Yes;No;0,239;Q3;20;39;41;1057;60;41;1,53;27,10;22,81;0;United Kingdom;Western Europe;"Ubiquity Press";"2018-2026";"Information Systems (Q3); Library and Information Sciences (Q3); Software (Q4)";"Computer Science; Social Sciences" +19783;21100864748;"Journal of Perioperative Nursing";journal;"22091092, 22091084";"Australian College of Perioperative Nurses";Yes;Yes;0,239;Q3;9;27;84;698;75;71;0,93;25,85;74,63;0;Australia;Pacific Region;"Australian College of Perioperative Nurses";"2018-2025";"Advanced and Specialized Nursing (Q3); Medical and Surgical Nursing (Q3)";"Nursing" +19784;4700152644;"Journal of the Korean Chemical Society";journal;"22348530, 10172548";"Korean Chemical Society";No;No;0,239;Q3;26;11;135;433;42;131;0,31;39,36;52,63;0;South Korea;Asiatic Region;"Korean Chemical Society";"2005-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +19785;12748;"New Zealand Journal of Psychology";journal;"0112109X";"New Zealand Psychological Society";No;No;0,239;Q3;41;27;43;1607;30;41;0,72;59,52;66,67;0;New Zealand;Pacific Region;"New Zealand Psychological Society";"1996-2025";"Psychology (miscellaneous) (Q3)";"Psychology" +19786;5600152877;"Rethinking Marxism";journal;"14758059, 08935696";"Routledge";Yes;No;0,239;Q3;36;34;117;800;75;95;0,47;23,53;31,25;0;United Kingdom;Western Europe;"Routledge";"1988-1996, 1998-2025";"Sociology and Political Science (Q3)";"Social Sciences" +19787;5300152203;"RIAI - Revista Iberoamericana de Automatica e Informatica Industrial";journal;"16977920, 16977912";"Universidad Politecnica de Valencia";Yes;Yes;0,239;Q3;23;26;129;690;88;108;0,73;26,54;19,05;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2007-2026";"Computer Science (miscellaneous) (Q3); Control and Systems Engineering (Q3)";"Computer Science; Engineering" +19788;21101267553;"Riset Geologi dan Pertambangan";journal;"01259849, 23546638";"National Research and Innovation Agency (BRIN)";No;No;0,239;Q3;3;15;30;489;25;30;0,70;32,60;31,25;0;Indonesia;Asiatic Region;"National Research and Innovation Agency (BRIN)";"2021-2025";"Energy (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Geology (Q3); Geophysics (Q3)";"Earth and Planetary Sciences; Energy; Environmental Science" +19789;21100200424;"Rodriguesia";journal;"03706583, 21757860";"Instituto de Pesquisas Jardim Botanico do Rio de Janeiro";Yes;Yes;0,239;Q3;41;52;290;2488;208;286;0,74;47,85;45,83;0;Brazil;Latin America;"Instituto de Pesquisas Jardim Botanico do Rio de Janeiro";"1980-1981, 1984-1985, 1989, 1999-2025";"Horticulture (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +19790;21100367884;"Statistics and Risk Modeling";journal;"21931402, 21967040";"Walter de Gruyter GmbH";No;No;0,239;Q3;22;5;16;196;12;16;0,44;39,20;22,22;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1982-2002, 2011-2026";"Modeling and Simulation (Q3); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics" +19791;4400151710;"Wilson Journal of Ornithology";journal;"15594491";"Taylor and Francis Ltd.";No;No;0,239;Q3;51;32;216;1587;102;211;0,44;49,59;40,00;0;United States;Northern America;"Taylor and Francis Ltd.";"2006-2026";"Animal Science and Zoology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19792;21101080474;"World Journal of Chemical Education";journal;"23751657, 23751665";"Science and Education Publishing";No;No;0,239;Q3;7;14;57;232;27;57;0,32;16,57;33,33;0;United States;Northern America;"Science and Education Publishing";"2019-2025";"Chemistry (miscellaneous) (Q3); Education (Q3); Analytical Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Social Sciences" +19793;19700182027;"Functional Materials Letters";journal;"17936047, 17937213";"World Scientific";No;No;0,239;Q4;38;126;264;4042;262;260;1,03;32,08;34,19;0;Singapore;Asiatic Region;"World Scientific";"2008-2026";"Materials Science (miscellaneous) (Q4)";"Materials Science" +19794;88041;"Zeitschrift fur Allgemeinmedizin";journal;"14336251, 14399229";"Springer Medizin";No;No;0,239;Q4;17;123;372;1431;91;217;0,26;11,63;57,49;0;Germany;Western Europe;"Springer Medizin";"1964, 1969-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +19795;21100324438;"International Conference on Cyber Conflict, CYCON";conference and proceedings;"23255374, 23255366";"NATO CCD COE Publications";No;No;0,239;-;26;17;75;708;63;69;0,68;41,65;31,25;0;United States;Northern America;"NATO CCD COE Publications";"2013-2025";"Computer Networks and Communications";"Computer Science" +19796;21100229181;"PCIM Europe Conference Proceedings";conference and proceedings;"21913358";"Mesago PCIM GmbH";No;No;0,239;-;21;409;1103;4769;589;1100;0,61;11,66;10,30;0;Germany;Western Europe;"Mesago PCIM GmbH";"2012-2014, 2018-2025";"Electrical and Electronic Engineering";"Engineering" +19797;10800153312;"Epites-Epiteszettudomany";journal;"00139661, 15882764";"Akademiai Kiado";No;No;0,238;Q1;5;18;45;679;17;45;0,44;37,72;28,00;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2026";"Visual Arts and Performing Arts (Q1); Architecture (Q2); Conservation (Q2)";"Arts and Humanities; Engineering" +19798;21100782866;"Hikma";journal;"24454559, 15799794";"UCOPress. Editorial Universidad de Cordoba";Yes;Yes;0,238;Q1;7;28;86;1423;34;85;0,41;50,82;72,73;0;Spain;Western Europe;"UCOPress. Editorial Universidad de Cordoba";"2015-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +19799;21100223145;"Journal of Music, Technology and Education";journal;"17527074, 17527066";"Intellect Ltd.";No;No;0,238;Q1;22;0;34;0;21;29;0,47;0,00;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2012-2023, 2026";"Music (Q1); Education (Q3); Computer Science Applications (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +19800;21100876245;"Malaysian Journal of Music";journal;"26009366, 26009331";"Universiti Pendidikan Sultan Idris";Yes;No;0,238;Q1;6;10;28;377;23;28;0,82;37,70;0,00;0;Malaysia;Asiatic Region;"Universiti Pendidikan Sultan Idris";"2018-2025";"Music (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19801;26143;"Middle Eastern Studies";journal;"17437881, 00263206";"Routledge";No;No;0,238;Q1;49;68;179;2937;92;177;0,46;43,19;32,00;1;United Kingdom;Western Europe;"Routledge";"1964-2026";"History (Q1); Cultural Studies (Q2); Geography, Planning and Development (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19802;21100200621;"Studies in Documentary Film";journal;"17503280, 17503299";"Taylor and Francis Ltd.";No;No;0,238;Q1;19;19;57;601;50;55;0,76;31,63;48,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Visual Arts and Performing Arts (Q1); Communication (Q3)";"Arts and Humanities; Social Sciences" +19803;19900192553;"Ethics and Education";journal;"17449642, 17449650";"Routledge";No;No;0,238;Q2;26;35;99;1570;78;97;0,84;44,86;38,89;0;United Kingdom;Western Europe;"Routledge";"2007, 2010-2026";"Philosophy (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +19804;21100790339;"Integration of Education";journal;"19919468, 23081058";"National Research Ogarev Mordovia State University";Yes;Yes;0,238;Q2;14;40;116;1236;125;116;0,96;30,90;70,37;0;Russian Federation;Eastern Europe;"National Research Ogarev Mordovia State University";"2016-2025";"Cultural Studies (Q2); Linguistics and Language (Q2); Education (Q3); Developmental and Educational Psychology (Q4)";"Psychology; Social Sciences" +19805;21100206008;"Acta Mechanica et Automatica";journal;"18984088, 23005319";"";Yes;No;0,238;Q3;22;90;200;2986;290;200;1,54;33,18;21,68;0;Poland;Eastern Europe;"";"2012-2025";"Control and Systems Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +19806;26563;"Acta Medica Okayama";journal;"0386300X";"Okayama University";Yes;No;0,238;Q3;46;64;248;1569;194;247;0,78;24,52;21,11;0;Japan;Asiatic Region;"Okayama University";"1972-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +19807;21100389723;"Asian Pacific Journal of Reproduction";journal;"23050500, 23050519";"Wolters Kluwer Medknow Publications";Yes;Yes;0,238;Q3;33;43;113;1290;105;108;1,10;30,00;49,64;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2012-2026";"Animal Science and Zoology (Q3); Obstetrics and Gynecology (Q3); Plant Science (Q3); Reproductive Medicine (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Medicine; Veterinary" +19808;145109;"Australian and New Zealand Journal of Family Therapy";journal;"14678438, 0814723X";"John Wiley and Sons Inc";No;No;0,238;Q3;30;42;120;1772;96;106;0,87;42,19;60,24;1;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1979-1995, 2001-2003, 2005-2026";"Psychology (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Psychology; Social Sciences" +19809;35622;"Belgian Journal of Zoology";journal;"07776276, 22950451";"Royal Belgian Institute of Natural Sciences";No;No;0,238;Q3;36;7;30;481;28;28;1,05;68,71;28,13;0;Belgium;Western Europe;"Royal Belgian Institute of Natural Sciences";"1990-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +19810;21100889430;"China Quarterly of International Strategic Studies";journal;"23777400, 23777419";"World Scientific Publishing Co. Pte Ltd";Yes;Yes;0,238;Q3;18;20;59;1160;38;59;0,50;58,00;44,00;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2015-2025";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +19811;21100228010;"Collectanea Botanica";journal;"19891067, 00100730";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,238;Q3;10;0;21;0;19;21;0,88;0,00;0,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2012-2024";"Plant Science (Q3)";"Agricultural and Biological Sciences" +19812;21101061946;"Eurasian Journal of Medicine and Oncology";journal;"2587196X, 25872400";"AccScience Publishing";No;No;0,238;Q3;15;100;158;5299;120;140;0,92;52,99;47,48;0;Singapore;Asiatic Region;"AccScience Publishing";"2019-2025";"Internal Medicine (Q3); Oncology (Q4)";"Medicine" +19813;21101038741;"Finance: Theory and Practice";journal;"25877089, 25875671";"Financial University under The Government of Russian Federation";Yes;Yes;0,238;Q3;16;107;314;2914;314;314;1,02;27,23;51,49;0;Russian Federation;Eastern Europe;"Financial University under The Government of Russian Federation";"2017-2025";"Business and International Management (Q3); Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Finance (Q3); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +19814;21101277755;"Furniture and Wooden Material Research Journal";journal;"26368625";"";No;No;0,238;Q3;6;35;65;1252;58;65;1,02;35,77;31,15;0;Turkey;Middle East;"";"2021-2025";"Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +19815;21100854186;"Global and Regional Health Technology Assessment";journal;"22842403, 22835733";"AboutScience Srl";Yes;No;0,238;Q3;7;33;81;948;53;76;0,84;28,73;46,19;1;Italy;Western Europe;"AboutScience Srl";"2014-2026";"Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +19816;23248;"Heart Surgery Forum";journal;"15226662, 10983511";"Forum Multimedia Publishing LLC";No;No;0,238;Q3;43;75;450;2453;314;441;0,69;32,71;32,73;0;United States;Northern America;"Forum Multimedia Publishing LLC";"1998-2025";"Surgery (Q3); Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +19817;4700152413;"International Journal of Entrepreneurship and Innovation Management";journal;"17415098, 1368275X";"Inderscience Enterprises Ltd";No;No;0,238;Q3;35;0;55;0;65;55;0,95;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2001-2024";"Business and International Management (Q3); Strategy and Management (Q3); Economics and Econometrics (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +19818;4700151504;"International Journal of Logistics Systems and Management";journal;"17427975, 17427967";"Inderscience Enterprises Ltd";No;No;0,238;Q3;41;77;210;4164;239;209;1,04;54,08;32,35;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2026";"Information Systems and Management (Q3); Management Information Systems (Q3); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences" +19819;4000149501;"International Journal of Product Lifecycle Management";journal;"17435110, 17435129";"Inderscience Enterprises Ltd";No;No;0,238;Q3;26;4;33;255;42;33;0,75;63,75;50,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2025";"Business and International Management (Q3); Safety, Risk, Reliability and Quality (Q3); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering" +19820;17500155112;"Iranian Journal of Kidney Diseases";journal;"17358582, 17358604";"Iranian Society of Nephrology";No;No;0,238;Q3;44;48;144;1336;114;141;0,76;27,83;48,13;0;Iran;Middle East;"Iranian Society of Nephrology";"2007-2025";"Nephrology (Q3)";"Medicine" +19821;21100385604;"Jordan Journal of Biological Sciences";journal;"19956673, 23077166";"Hashemite University";Yes;No;0,238;Q3;24;69;254;3002;280;254;1,09;43,51;48,80;0;Jordan;Middle East;"Hashemite University";"2014-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +19822;12245;"Journal of HIV/AIDS and Social Services";journal;"1538151X, 15381501";"Routledge";No;No;0,238;Q3;21;47;23;2149;18;22;1,20;45,72;54,89;0;United States;Northern America;"Routledge";"2002-2023, 2025-2026";"Health (social science) (Q3); Infectious Diseases (Q3)";"Medicine; Social Sciences" +19823;23416;"Journal of International Wildlife Law and Policy";journal;"15481476, 13880292";"Taylor and Francis Ltd.";No;No;0,238;Q3;24;12;43;568;35;42;0,86;47,33;46,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Ecology (Q3); Geography, Planning and Development (Q3); Law (Q3); Management, Monitoring, Policy and Law (Q3)";"Environmental Science; Social Sciences" +19824;21101038525;"Jurnal Ilmiah Perikanan dan Kelautan";journal;"20855842, 25280759";"Faculty of Fisheries and Marine Universitas Airlangga";Yes;No;0,238;Q3;11;57;115;3425;172;114;1,43;60,09;43,41;1;Indonesia;Asiatic Region;"Faculty of Fisheries and Marine Universitas Airlangga";"2019-2025";"Animal Science and Zoology (Q3); Aquatic Science (Q3); Food Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +19825;21101246823;"Konuralp Journal of Mathematics";journal;"2147625X";"Prof. Dr. Mehmet Zeki SARIKAYA";No;No;0,238;Q3;11;38;98;1052;58;98;0,62;27,68;34,38;0;Turkey;Middle East;"Prof. Dr. Mehmet Zeki SARIKAYA";"2020-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19826;71199;"Marine Geology and Quaternary Geology";journal;"02561492";"Science China Press";No;No;0,238;Q3;6;108;213;6036;179;213;0,84;55,89;35,20;0;China;Asiatic Region;"Science China Press";"1991-1992, 2023-2025";"Geology (Q3); Geophysics (Q3); Oceanography (Q3); Geochemistry and Petrology (Q4)";"Earth and Planetary Sciences" +19827;21101358084;"NBP. Nauka, bezbednost, policija";journal;"03548872, 26200406";"University of Criminalistics and Police";Yes;No;0,238;Q3;4;20;49;748;24;47;0,64;37,40;29,55;0;Serbia;Eastern Europe;"University of Criminalistics and Police";"2021-2026";"Law (Q3); Safety Research (Q3); Sociology and Political Science (Q3)";"Social Sciences" +19828;19400157208;"Nuytsia";journal;"00854417, 22002790";"Western Australian Herbarium";Yes;No;0,238;Q3;12;16;55;282;32;39;0,71;17,63;52,00;6;Australia;Pacific Region;"Western Australian Herbarium";"2009-2025";"Plant Science (Q3)";"Agricultural and Biological Sciences" +19829;19700188314;"Pertanika Journal of Science and Technology";journal;"01287680, 22318526";"Universiti Putra Malaysia Press";No;No;0,238;Q3;32;162;527;6981;717;526;1,37;43,09;38,29;0;Malaysia;Asiatic Region;"Universiti Putra Malaysia Press";"2010-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Chemical Engineering (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Chemical Engineering; Computer Science; Environmental Science" +19830;19700182270;"Problems of Atomic Science and Technology";journal;"16829344";"National Science Center, Kharkov Institute of Physics and Technology";No;No;0,238;Q3;20;175;521;3055;320;515;0,61;17,46;28,36;0;Ukraine;Eastern Europe;"National Science Center, Kharkov Institute of Physics and Technology";"2008-2025";"Nuclear and High Energy Physics (Q3); Radiation (Q3); Materials Science (miscellaneous) (Q4); Nuclear Energy and Engineering (Q4)";"Energy; Materials Science; Physics and Astronomy" +19831;21101030143;"Psychology Hub";journal;"2723973X, 27242943";"Sapienza Universita Editrice";No;No;0,238;Q3;12;24;89;1508;59;86;0,75;62,83;61,43;0;Italy;Western Europe;"Sapienza Universita Editrice";"2020-2025";"Psychology (miscellaneous) (Q3); Behavioral Neuroscience (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience; Psychology" +19832;21101173094;"Qubahan Academic Journal";journal;"27098206";"Qubahan";Yes;No;0,238;Q3;17;145;218;8187;404;218;1,90;56,46;49,57;0;Iraq;Middle East;"Qubahan";"2021-2026";"Artificial Intelligence (Q3); Business, Management and Accounting (miscellaneous) (Q3); Education (Q3); Computational Theory and Mathematics (Q4)";"Business, Management and Accounting; Computer Science; Social Sciences" +19833;21101041508;"Research Journal of Pharmacognosy";journal;"23455977, 23454458";"Iranian Society of Pharmacognosy";Yes;No;0,238;Q3;9;34;106;1860;122;106;0,94;54,71;55,63;0;Iran;Middle East;"Iranian Society of Pharmacognosy";"2020-2026";"Complementary and Alternative Medicine (Q3); Drug Discovery (Q4); Organic Chemistry (Q4)";"Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +19834;21100824951;"Revista Brasileira de Politicas Publicas";journal;"22361677, 21798338";"Centro Universitario de Brasilia";Yes;Yes;0,238;Q3;9;51;201;2089;42;200;0,20;40,96;41,67;0;Brazil;Latin America;"Centro Universitario de Brasilia";"2017-2025";"Public Administration (Q3)";"Social Sciences" +19835;12603;"Revue de Geographie Alpine";journal;"00351121";"Armand Colin Editeur";Yes;Yes;0,238;Q3;21;32;88;1145;48;83;0,67;35,78;60,00;0;France;Western Europe;"Armand Colin Editeur";"1977, 1979, 1982-1988, 1994-2025";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +19836;21100776473;"Russian Journal of Biomechanics";journal;"2410065X, 18125123";"Perm National Research Polytechnic University";No;No;0,238;Q3;11;57;137;2719;175;137;1,46;47,70;32,67;0;Russian Federation;Eastern Europe;"Perm National Research Polytechnic University";"2016-2025";"Computational Mechanics (Q3); Biomaterials (Q4); Biomedical Engineering (Q4); Biophysics (Q4); Health Informatics (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science; Medicine" +19837;16144;"Shengwu Gongcheng Xuebao/Chinese Journal of Biotechnology";journal;"18722075, 10003061";"Chinese Academy of Sciences";No;No;0,238;Q3;26;329;1001;18881;1329;993;1,42;57,39;47,17;0;China;Asiatic Region;"Chinese Academy of Sciences";"2000-2026";"Applied Microbiology and Biotechnology (Q3); Biotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +19838;23731;"Sylwan";journal;"00397660";"Polish Forestry Society";No;No;0,238;Q3;16;42;171;1973;118;171;0,64;46,98;39,55;0;Poland;Eastern Europe;"Polish Forestry Society";"1979, 2011-2018, 2020-2025";"Forestry (Q3)";"Agricultural and Biological Sciences" +19839;21100933230;"Tropical Journal of Natural Product Research";journal;"26160692, 26160684";"Faculty of Pharmacy, University of Benin";Yes;No;0,238;Q3;17;781;1269;32583;1946;1269;1,65;41,72;47,69;0;Nigeria;Africa;"Faculty of Pharmacy, University of Benin";"2017-2026";"Complementary and Alternative Medicine (Q3); Pharmaceutical Science (Q3); Pharmacology (Q3); Analytical Chemistry (Q4); Biochemistry (Q4); Drug Discovery (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +19840;21100854132;"Zhongguo Biaomian Gongcheng/China Surface Engineering";journal;"10079289";"Chinese Mechanical Engineering Society";No;No;0,238;Q3;16;177;417;7937;627;417;1,52;44,84;28,88;0;China;Asiatic Region;"Chinese Mechanical Engineering Society";"2016, 2019-2025";"Surfaces, Coatings and Films (Q3)";"Materials Science" +19841;4400151406;"International Journal of Operational Research";journal;"17457653, 17457645";"Inderscience Enterprises Ltd";No;No;0,238;Q4;37;69;218;2906;221;217;0,93;42,12;20,44;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2026";"Management Science and Operations Research (Q4)";"Decision Sciences" +19842;28360;"Journal of Object Technology";journal;"16601769";"Association Internationale pour les Technologies Objets";Yes;No;0,238;Q4;41;18;73;710;99;70;1,37;39,44;12,07;0;Switzerland;Western Europe;"Association Internationale pour les Technologies Objets";"2002-2025";"Software (Q4)";"Computer Science" +19843;21100305006;"Memoirs on Differential Equations and Mathematical Physics";journal;"15120015";"Andrea Razmadze Mathematical Institute";No;No;0,238;Q4;19;27;89;731;47;88;0,52;27,07;9,43;0;Georgia;Eastern Europe;"Andrea Razmadze Mathematical Institute";"1996-2025";"Analysis (Q4); Applied Mathematics (Q4); Mathematical Physics (Q4)";"Mathematics" +19844;21100842866;"Primenjena Psihologija";journal;"23347287, 18210147";"Faculty of Philosophy, University of Novi Sad, Serbia";Yes;Yes;0,238;Q4;9;20;61;1189;42;60;0,61;59,45;73,33;0;Serbia;Eastern Europe;"Faculty of Philosophy, University of Novi Sad, Serbia";"2017-2025";"Applied Psychology (Q4)";"Psychology" +19845;21100307481;"IEEE Haptics Symposium, HAPTICS";conference and proceedings;"23247347, 23247355";"IEEE Computer Society";No;No;0,238;-;30;0;79;0;113;75;1,24;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2014, 2016, 2018, 2020, 2022, 2024";"Artificial Intelligence; Human-Computer Interaction";"Computer Science" +19846;145121;"Proceedings - IEEE Computer Society's Annual International Symposium on Modeling, Analysis, and Simulation of Computer and Telecommunications Systems, MASCOTS";conference and proceedings;"15267539";"IEEE Computer Society";No;No;0,238;-;42;36;87;968;80;81;0,97;26,89;19,47;0;United States;Northern America;"IEEE Computer Society";"1995, 2000, 2002-2006, 2009, 2013, 2015, 2019-2024";"Computer Networks and Communications; Electrical and Electronic Engineering; Engineering (miscellaneous); Modeling and Simulation; Software";"Computer Science; Engineering; Mathematics" +19847;21100827181;"Anuario de Estudios Filologicos";journal;"02108178";"Universidad de Extremadura";Yes;Yes;0,237;Q1;4;18;51;639;18;51;0,24;35,50;35,00;0;Spain;Western Europe;"Universidad de Extremadura";"2015-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +19848;21101045043;"Disegno";journal;"25332899";"UID Unione Italiana Disegno";Yes;Yes;0,237;Q1;7;25;142;547;60;114;0,30;21,88;66,67;0;Italy;Western Europe;"UID Unione Italiana Disegno";"2017-2025";"Visual Arts and Performing Arts (Q1); Architecture (Q2); Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Engineering; Social Sciences" +19849;21101000285;"Historia y Memoria de la Educacion";journal;"24440043";"Universidad Nacional de Educacion a Distancia (UNED)";Yes;Yes;0,237;Q1;7;27;108;1167;29;107;0,29;43,22;57,50;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2019-2026";"History (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +19850;21101052860;"History, Archeology and Ethnography of the Caucasus";journal;"26186772, 2618849X";"Daghestan Federal Research Centre of Russian Academy of Sciences (RAS)";No;No;0,237;Q1;5;58;199;1454;27;199;0,12;25,07;46,79;0;Russian Federation;Eastern Europe;"Daghestan Federal Research Centre of Russian Academy of Sciences (RAS)";"2019-2025";"History (Q1); Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19851;21100935077;"Journal of Design, Business and Society";journal;"20552106, 20552114";"Intellect Ltd.";No;No;0,237;Q1;7;6;38;215;31;31;0,60;35,83;60,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2024";"Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Business and International Management (Q3); Industrial and Manufacturing Engineering (Q3)";"Arts and Humanities; Business, Management and Accounting; Engineering; Social Sciences" +19852;21100805794;"Museums and Social Issues";journal;"15596893, 20516193";"Taylor and Francis Ltd.";No;No;0,237;Q1;9;11;29;523;26;25;1,11;47,55;54,55;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2019, 2021-2026";"Museology (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19853;18067;"Sociological Bulletin";journal;"00380229, 24570257";"SAGE Publications Ltd";No;No;0,237;Q1;11;32;92;1163;78;89;0,65;36,34;56,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1963, 1974, 1986, 1994-1996, 2014-2026";"History (Q1); Cultural Studies (Q2); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19854;97067;"Arheoloski Vestnik";journal;"15811204, 05708966";"Zalozba ZRC";Yes;Yes;0,237;Q2;17;20;60;2283;53;60;0,93;114,15;55,56;0;Slovenia;Eastern Europe;"Zalozba ZRC";"1981, 1983, 2002-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +19855;17294;"Defence Science Journal";journal;"0011748X, 0976464X";"Defence Scientific Information and Documentation Centre";No;No;0,237;Q2;48;96;275;2354;259;272;0,90;24,52;20,77;0;India;Asiatic Region;"Defence Scientific Information and Documentation Centre";"1970-1989, 1991-2025";"Multidisciplinary (Q2); Chemical Engineering (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3); Physics and Astronomy (miscellaneous) (Q3); Biomedical Engineering (Q4); Computer Science Applications (Q4)";"Chemical Engineering; Computer Science; Engineering; Multidisciplinary; Physics and Astronomy" +19856;5800215128;"Deutsch als Fremdsprache";journal;"00119741";"Langenscheidt";No;No;0,237;Q2;5;15;88;514;31;79;0,38;34,27;59,26;0;Germany;Western Europe;"Langenscheidt";"2013, 2017-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +19857;21101142418;"Disena";journal;"07188447, 24524298";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,237;Q2;8;15;57;429;69;51;1,39;28,60;35,29;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Engineering (miscellaneous) (Q3); Human Factors and Ergonomics (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Engineering; Social Sciences" +19858;5800207754;"Jazykovedny Casopis";journal;"00215597, 13384287";"De Gruyter Open Ltd.";Yes;No;0,237;Q2;6;56;122;1324;48;122;0,48;23,64;47,00;0;Slovakia;Eastern Europe;"De Gruyter Open Ltd.";"2011-2025";"Linguistics and Language (Q2)";"Social Sciences" +19859;21100422173;"Lengua y Migracion";journal;"18895425";"Servicio de Publicaciones. Universidad de Alcala";Yes;No;0,237;Q2;8;10;47;493;24;47;0,46;49,30;69,23;0;Spain;Western Europe;"Servicio de Publicaciones. Universidad de Alcala";"2015-2025";"Linguistics and Language (Q2); Demography (Q3)";"Social Sciences" +19860;33587;"Nomadic Peoples";journal;"17522366, 08227942";"White Horse Press";Yes;Yes;0,237;Q2;27;14;50;572;39;42;0,84;40,86;39,29;0;United Kingdom;Western Europe;"White Horse Press";"1982-1983, 1985, 1990-1994, 2001, 2004-2025";"Anthropology (Q2); Demography (Q3); Sociology and Political Science (Q3)";"Social Sciences" +19861;21101122884;"Open Research Africa";journal;"27526925";"F1000 Research Ltd";Yes;Yes;0,237;Q2;4;7;15;397;19;14;0,43;56,71;32,14;0;United Kingdom;Western Europe;"F1000 Research Ltd";"2022-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +19862;27148;"Roczniki Filozoficzne";journal;"00357685, 2450002X";"";Yes;No;0,237;Q2;5;66;222;1899;36;218;0,16;28,77;21,88;0;Poland;Eastern Europe;"";"1967, 2015-2025";"Philosophy (Q2)";"Arts and Humanities" +19863;21101227953;"Advances in Clinical Radiology";journal;"25898744, 25898701";"Elsevier Inc.";No;No;0,237;Q3;5;16;61;828;52;58;0,95;51,75;27,12;0;United States;Northern America;"Elsevier Inc.";"2019-2025";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +19864;18000156702;"Advances in Electrical and Computer Engineering";journal;"18447600, 15827445";"Universitatea "Stefan cel Mare" din Suceava";Yes;No;0,237;Q3;31;29;121;925;158;121;1,34;31,90;24,05;0;Romania;Eastern Europe;"Universitatea "Stefan cel Mare" din Suceava";"2008-2025";"Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +19865;22696;"Annales de Chimie: Science des Materiaux";journal;"01519107, 19585934";"International Information and Engineering Technology Association";No;No;0,237;Q3;33;72;180;2346;256;180;1,42;32,58;30,43;0;France;Western Europe;"International Information and Engineering Technology Association";"1947-1948, 1973-1974, 1977, 1982, 1984, 1996-2013, 2015-2025";"Materials Chemistry (Q3)";"Materials Science" +19866;12947;"Archives of Acoustics";journal;"2300262X, 01375075";"Polish Academy of Sciences, Committee on Acoustics";Yes;Yes;0,237;Q3;33;46;149;1638;147;149;1,20;35,61;24,46;0;Poland;Eastern Europe;"Polish Academy of Sciences, Committee on Acoustics";"1977-1988, 2004-2025";"Acoustics and Ultrasonics (Q3)";"Physics and Astronomy" +19867;12100157014;"Diagnostic Histopathology";journal;"17562317, 18767621";"Elsevier Ltd";No;No;0,237;Q3;31;95;217;2726;138;216;0,67;28,69;53,43;0;United Kingdom;Western Europe;"Elsevier Ltd";"2008-2026";"Pathology and Forensic Medicine (Q3); Histology (Q4)";"Medicine" +19868;21101155948;"Experimental Psychology (Russia)";journal;"20727593, 23117036";"Moscow State University of Psychology and Education";Yes;Yes;0,237;Q3;9;56;168;1824;98;168;0,64;32,57;56,82;0;Russian Federation;Eastern Europe;"Moscow State University of Psychology and Education";"2019-2025";"Psychology (miscellaneous) (Q3); Experimental and Cognitive Psychology (Q4); Neuropsychology and Physiological Psychology (Q4)";"Psychology" +19869;21046;"Fuhe Cailiao Xuebao/Acta Materiae Compositae Sinica";journal;"10003851";"Beijing University of Aeronautics and Astronautics (BUAA)";No;No;0,237;Q3;34;470;1651;21337;1907;1651;1,19;45,40;34,38;0;China;Asiatic Region;"Beijing University of Aeronautics and Astronautics (BUAA)";"1993-2025";"Ceramics and Composites (Q3); Chemistry (miscellaneous) (Q3); Mechanics of Materials (Q3); Condensed Matter Physics (Q4)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +19870;28474;"Fundamenta Informaticae";journal;"01692968";"SAGE Publications Ltd";No;No;0,237;Q3;75;0;90;0;67;82;0,80;0,00;0,00;0;Netherlands;Western Europe;"SAGE Publications Ltd";"1988-1989, 1991, 1993-2024";"Information Systems (Q3); Algebra and Number Theory (Q4); Computational Theory and Mathematics (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +19871;21101064808;"Human Pathology Reports";journal;"2772736X";"Elsevier Inc.";Yes;No;0,237;Q3;10;42;179;964;110;177;0,53;22,95;44,30;0;United States;Northern America;"Elsevier Inc.";"2021-2026";"Pathology and Forensic Medicine (Q3)";"Medicine" +19872;21100201995;"Human-Wildlife Interactions";journal;"21553858, 21553874";"Jack H. Berryman Institute";Yes;No;0,237;Q3;29;2;33;34;33;33;1,09;17,00;42,86;0;United States;Northern America;"Jack H. Berryman Institute";"2011-2025";"Ecology (Q3); Nature and Landscape Conservation (Q3)";"Environmental Science" +19873;15109;"IEICE Transactions on Information and Systems";journal;"17451361, 09168532";"Maruzen Co., Ltd/Maruzen Kabushikikaisha";No;No;0,237;Q3;59;198;671;5109;610;634;0,92;25,80;18,69;0;Japan;Asiatic Region;"Maruzen Co., Ltd/Maruzen Kabushikikaisha";"1993-2026";"Artificial Intelligence (Q3); Computer Vision and Pattern Recognition (Q3); Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3); Software (Q4)";"Computer Science; Engineering" +19874;21101302937;"IIUM Law Journal";journal;"01282530, 22897852";"International Islamic University Malaysia-IIUM";No;No;0,237;Q3;6;30;95;1428;91;92;0,79;47,60;45,28;0;Malaysia;Asiatic Region;"International Islamic University Malaysia-IIUM";"2021-2025";"Law (Q3)";"Social Sciences" +19875;21100843245;"Indonesian Biomedical Journal";journal;"23559179, 20853297";"Prodia Education and Research Institute";Yes;No;0,237;Q3;13;60;171;2782;166;171;0,96;46,37;50,45;0;Indonesia;Asiatic Region;"Prodia Education and Research Institute";"2017-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +19876;21100826383;"Indonesian Journal of Electrical Engineering and Informatics";journal;"20893272";"Institute of Advanced Engineering and Science";No;No;0,237;Q3;19;76;253;2824;377;253;1,50;37,16;33,16;0;Indonesia;Asiatic Region;"Institute of Advanced Engineering and Science";"2017-2025";"Artificial Intelligence (Q3); Computer Networks and Communications (Q3); Computer Science (miscellaneous) (Q3); Control and Optimization (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3); Information Systems (Q3)";"Computer Science; Engineering; Mathematics" +19877;21101088437;"Informatyka, Automatyka, Pomiary w Gospodarce i Ochronie Srodowiska";journal;"23916761, 20830157";"Politechnika Lubelska";Yes;Yes;0,237;Q3;11;101;227;2215;242;227;1,15;21,93;32,46;0;Poland;Eastern Europe;"Politechnika Lubelska";"2019-2025";"Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)";"Engineering" +19878;21100900308;"Intelligenza Artificiale";journal;"17248035, 22110097";"SAGE Publications Ltd";No;No;0,237;Q3;11;14;47;497;63;46;1,31;35,50;39,02;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2018-2025";"Artificial Intelligence (Q3)";"Computer Science" +19879;22752;"International Journal of Environment and Sustainable Development";journal;"14787466, 14746778";"Inderscience Publishers";No;No;0,237;Q3;26;21;77;1154;98;76;1,00;54,95;46,43;0;United Kingdom;Western Europe;"Inderscience Publishers";"2002-2025";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Environmental Science; Social Sciences" +19880;21100198728;"Iranian Journal of Mathematical Sciences and Informatics";journal;"20089473, 17354463";"ACECR";No;No;0,237;Q3;15;30;101;699;80;101;0,67;23,30;25,00;0;Iran;Middle East;"ACECR";"2011-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19881;25605;"Jisuan Lixue Xuebao/Chinese Journal of Computational Mechanics";journal;"10074708";"Editorial Office of Chinese Journal of Computational Mechanics";No;No;0,237;Q3;23;118;402;2524;287;401;0,72;21,39;28,26;0;China;Asiatic Region;"Editorial Office of Chinese Journal of Computational Mechanics";"2001-2025";"Computational Mechanics (Q3); Applied Mathematics (Q4); Modeling and Simulation (Q4)";"Engineering; Mathematics" +19882;23163;"Journal of College Science Teaching";journal;"19434898";"Informa UK Ltd";No;No;0,237;Q3;21;70;209;1936;135;207;0,52;27,66;62,65;0;United Kingdom;Western Europe;"Informa UK Ltd";"1977, 2013-2026";"Education (Q3)";"Social Sciences" +19883;22586;"Journal of Shellfish Research";journal;"07308000, 19436319";"National Shellfisheries Association";No;No;0,237;Q3;78;41;126;2455;123;126;0,92;59,88;45,45;0;United States;Northern America;"National Shellfisheries Association";"1993-2026";"Aquatic Science (Q3)";"Agricultural and Biological Sciences" +19884;21100396570;"Lavoro e Diritto";journal;"26122162, 1120947X";"Societa Editrice Il Mulino";No;No;0,237;Q3;11;34;136;1750;32;131;0,23;51,47;63,16;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1997-2025";"Law (Q3)";"Social Sciences" +19885;21100199780;"Multiagent and Grid Systems";journal;"15741702, 18759076";"SAGE Publications Ltd";No;No;0,237;Q3;22;12;50;470;74;50;1,79;39,17;37,04;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2025";"Computer Science (miscellaneous) (Q3)";"Computer Science" +19886;21101062041;"Physics Educator";journal;"26613409, 26613395";"World Scientific";No;No;0,237;Q3;5;22;74;465;28;74;0,38;21,14;17,14;0;Singapore;Asiatic Region;"World Scientific";"2019-2026";"Education (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)";"Mathematics; Physics and Astronomy; Social Sciences" +19887;19700183093;"Revista Austral de Ciencias Sociales";journal;"07173202, 07181795";"Universidad Austral de Chile";Yes;Yes;0,237;Q3;12;50;95;2461;43;95;0,44;49,22;57,00;0;Chile;Latin America;"Universidad Austral de Chile";"2008-2010, 2012-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +19888;5700167217;"Revista de Economia Institucional";journal;"01245996";"Universidad Externado de Colombia";Yes;Yes;0,237;Q3;15;27;73;1101;30;63;0,42;40,78;32,56;0;Colombia;Latin America;"Universidad Externado de Colombia";"2009-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +19889;23936;"Russian Engineering Research";journal;"19348088, 1068798X";"Pleiades Publishing";No;No;0,237;Q3;29;370;1087;4533;486;1087;0,49;12,25;33,23;0;United States;Northern America;"Pleiades Publishing";"1992-1997, 2008-2025";"Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +19890;21100448565;"Scientia Sinica Technologica";journal;"16747259, 2095946X";"Science Press";No;No;0,237;Q3;27;145;477;6964;658;472;1,25;48,03;33,11;0;China;Asiatic Region;"Science Press";"2016-2026";"Computer Networks and Communications (Q3); Control and Systems Engineering (Q3)";"Computer Science; Engineering" +19891;18032;"Sociologia (Slovakia)";journal;"00491225, 13368613";"Sociologicky Ustav SAV / Institute for Sociology of the Slovak Academy of Sciences";No;No;0,237;Q3;17;21;65;1232;51;64;0,80;58,67;54,76;0;Slovakia;Eastern Europe;"Sociologicky Ustav SAV / Institute for Sociology of the Slovak Academy of Sciences";"1998, 2002-2025";"Sociology and Political Science (Q3)";"Social Sciences" +19892;21100793212;"Sovremennaya Evropa";journal;"02017083";"Institute of Europe of Russian Academy of Sciences";Yes;Yes;0,237;Q3;10;34;316;493;53;315;0,21;14,50;60,00;0;Russian Federation;Eastern Europe;"Institute of Europe of Russian Academy of Sciences";"2016-2025";"Political Science and International Relations (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +19893;21101079126;"Tecnoscienza";journal;"20383460";"STS Italia";Yes;Yes;0,237;Q3;7;12;42;667;51;38;0,90;55,58;56,67;0;Italy;Western Europe;"STS Italia";"2019-2025";"Communication (Q3); Human Factors and Ergonomics (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +19894;21100432543;"Thai Forest Bulletin (Botany)";journal;"2465423X, 04953843";"Forest Herbarium";No;No;0,237;Q3;11;10;48;181;37;48;0,48;18,10;31,82;0;Thailand;Asiatic Region;"Forest Herbarium";"2015-2025";"Forestry (Q3); Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +19895;21100933702;"Thai Journal of Obstetrics and Gynaecology";journal;"08576084, 26730871";"Royal Thai College of Obstetricians and Gynaecologists";Yes;No;0,237;Q3;5;49;180;1106;75;165;0,36;22,57;65,31;0;Thailand;Asiatic Region;"Royal Thai College of Obstetricians and Gynaecologists";"2019-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +19896;21100200801;"Vestnik St. Petersburg University: Mathematics";journal;"19347855, 10634541";"Pleiades Publishing";No;No;0,237;Q3;16;71;180;1443;88;179;0,53;20,32;33,33;0;United States;Northern America;"Pleiades Publishing";"2007-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +19897;28941;"Zhongguo Youse Jinshu Xuebao/Chinese Journal of Nonferrous Metals";journal;"10040609";"Central South University";No;No;0,237;Q3;39;292;926;14038;1208;926;1,44;48,08;28,31;0;China;Asiatic Region;"Central South University";"2001-2025";"Materials Chemistry (Q3); Metals and Alloys (Q3); Condensed Matter Physics (Q4)";"Materials Science; Physics and Astronomy" +19898;19455;"Eastern Economic Journal";journal;"00945056, 19394632";"Palgrave Macmillan Ltd.";No;No;0,237;Q4;30;34;80;1709;60;73;0,79;50,26;26,15;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1984-1985, 1987-1989, 2007-2026";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +19899;16702;"Ferroelectrics, Letters Section";journal;"15635228, 07315171";"Taylor and Francis Ltd.";No;No;0,237;Q4;21;0;30;0;41;30;1,32;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2024";"Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Materials Science; Physics and Astronomy" +19900;19700186842;"International Journal of Open Source Software and Processes";journal;"19423934, 19423926";"IGI Global Publishing";No;No;0,237;Q4;12;0;7;0;7;7;1,50;0,00;0,00;0;United States;Northern America;"IGI Global Publishing";"2009-2012, 2014-2024";"Software (Q4)";"Computer Science" +19901;34028;"Medico-Legal Journal";journal;"00258172, 20421834";"SAGE Publications Ltd";No;No;0,237;Q4;19;90;140;1118;118;117;0,65;12,42;35,71;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1947-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +19902;21100223148;"Proceedings of IEEE Symposium on Visual Languages and Human-Centric Computing, VL/HCC";conference and proceedings;"19436106, 19436092";"IEEE Computer Society";No;No;0,237;-;32;68;171;2447;283;165;1,83;35,99;34,15;0;United States;Northern America;"IEEE Computer Society";"2012-2024";"Computational Theory and Mathematics; Human-Computer Interaction; Software";"Computer Science" +19903;21101257077;"SPE Eastern Regional Meeting";conference and proceedings;"26431203, 26431181";"Society of Petroleum Engineers (SPE)";No;No;0,237;-;3;16;11;197;18;10;1,64;12,31;12,90;0;United States;Northern America;"Society of Petroleum Engineers (SPE)";"2006-2007, 2024-2025";"Engineering (miscellaneous)";"Engineering" +19904;25704;"Exchange";journal;"1572543X, 01662740";"Brill Academic Publishers";No;No;0,236;Q1;11;20;54;717;15;43;0,32;35,85;26,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"1973-1975, 1978, 1984-1986, 1991, 2001-2003, 2005-2026";"Religious Studies (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19905;15865;"Journal of Interdisciplinary History";journal;"00221953, 15309169";"MIT Press";No;No;0,236;Q1;41;15;41;0;40;37;0,75;0,00;20,00;0;United States;Northern America;"MIT Press";"1970-1971, 1974-1990, 1996, 1998-2025";"History (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities" +19906;21100834985;"Journal of Nationalism Memory and Language Politics";journal;"25705857";"Sciendo";Yes;No;0,236;Q1;11;8;34;434;32;33;0,36;54,25;22,22;0;Poland;Eastern Europe;"Sciendo";"2017-2025";"History (Q1); Cultural Studies (Q2); Linguistics and Language (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19907;21101071255;"Journal of Religion and Demography";journal;"25897411, 2589742X";"Brill Academic Publishers";No;No;0,236;Q1;2;0;9;0;8;9;1,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2023";"Religious Studies (Q1)";"Arts and Humanities" +19908;21100836108;"Knowledge Cultures";journal;"23756527, 23275731";"Addleton Academic Publishers";No;No;0,236;Q1;19;11;87;493;64;86;0,59;44,82;56,25;0;United States;Northern America;"Addleton Academic Publishers";"2013-2025";"History (Q1); Literature and Literary Theory (Q1); Cultural Studies (Q2); Philosophy (Q2); Education (Q3); Law (Q3); Library and Information Sciences (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19909;21101048513;"Manuscript and Book Heritage of Ukraine";journal;"22224203";"Vernadsky National Library of Ukraine";Yes;Yes;0,236;Q1;5;45;128;1281;27;128;0,26;28,47;66,13;0;Ukraine;Eastern Europe;"Vernadsky National Library of Ukraine";"2020-2026";"History (Q1); Library and Information Sciences (Q3)";"Arts and Humanities; Social Sciences" +19910;21101160750;"Nordic Journal of Childlit Aesthetics";journal;"20007493";"Scandinavian University Press";Yes;Yes;0,236;Q1;4;5;26;166;7;24;0,21;33,20;100,00;0;Norway;Western Europe;"Scandinavian University Press";"2019-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +19911;21100927978;"Vestnik Volgogradskogo Gosudarstvennogo Universiteta, Seriia 4: Istoriia, Regionovedenie, Mezhdunarodnye Otnosheniia";journal;"19989938, 23128704";"Volgograd State University";Yes;Yes;0,236;Q1;6;122;377;4320;64;376;0,18;35,41;38,60;0;Russian Federation;Eastern Europe;"Volgograd State University";"2019-2025";"History (Q1); Cultural Studies (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +19912;5900152751;"Art, Design and Communication in Higher Education";journal;"20400896, 1474273X";"Intellect Ltd.";No;No;0,236;Q2;14;22;47;736;28;40;0,68;33,45;70,27;0;United Kingdom;Western Europe;"Intellect Ltd.";"2008, 2012-2026";"Arts and Humanities (miscellaneous) (Q2); Communication (Q3); Education (Q3)";"Arts and Humanities; Social Sciences" +19913;26787;"Boletin de Investigaciones Marinas y Costeras";journal;"25904671, 01229761";"INVEMAR";Yes;Yes;0,236;Q2;18;19;62;919;42;62;0,76;48,37;32,65;0;Colombia;Latin America;"INVEMAR";"1998, 2001-2025";"Conservation (Q2); Museology (Q2); Animal Science and Zoology (Q3); Aquatic Science (Q3); Geography, Planning and Development (Q3); Law (Q3); Management, Monitoring, Policy and Law (Q3); Oceanography (Q3); Water Science and Technology (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Earth and Planetary Sciences; Environmental Science; Social Sciences" +19914;21100979305;"Journal of Digital Landscape Architecture";journal;"2511624X, 23674253";"V D E Verlag GmbH";Yes;No;0,236;Q2;14;73;236;1392;180;227;0,77;19,07;39,29;0;Germany;Western Europe;"V D E Verlag GmbH";"2016-2025";"Architecture (Q2); Geography, Planning and Development (Q3); Nature and Landscape Conservation (Q3); Computer Science Applications (Q4)";"Computer Science; Engineering; Environmental Science; Social Sciences" +19915;21100415501;"Journal of Marine and Island Cultures";journal;"22126821";"Plate Media";Yes;Yes;0,236;Q2;23;52;106;2550;102;105;0,81;49,04;40,29;0;South Korea;Asiatic Region;"Plate Media";"2012-2019, 2021-2025";"Anthropology (Q2); Cultural Studies (Q2); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3)";"Environmental Science; Social Sciences" +19916;27456;"Peace Review";journal;"14699982, 10402659";"Taylor and Francis Ltd.";Yes;No;0,236;Q2;24;52;203;1782;148;177;0,65;34,27;50,85;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-1996, 2005-2026";"Arts and Humanities (miscellaneous) (Q2); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Transportation (Q4)";"Arts and Humanities; Engineering; Social Sciences" +19917;21101052353;"Research Data Journal for the Humanities and Social Sciences";journal;"24523666";"Brill Academic Publishers";Yes;Yes;0,236;Q2;5;0;33;0;19;33;0,52;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2020-2024";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3); Computer Science Applications (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +19918;36020;"Society and Animals";journal;"15685306, 10631119";"Brill Academic Publishers";No;No;0,236;Q2;59;39;121;1420;109;115;0,65;36,41;67,14;0;Netherlands;Western Europe;"Brill Academic Publishers";"1993-2026";"Philosophy (Q2); Sociology and Political Science (Q3); Veterinary (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences; Veterinary" +19919;21100818501;"Advances in Animal and Veterinary Sciences";journal;"23093331, 23078316";"ResearchersLinks Ltd";Yes;No;0,236;Q3;23;222;847;10254;887;847;1,16;46,19;39,25;0;Pakistan;Asiatic Region;"ResearchersLinks Ltd";"2016-2026";"Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +19920;21100932648;"Advances in Environmental Technology";journal;"24764779, 24766674";"Iranian Research Organization for Science and Technology";Yes;Yes;0,236;Q3;15;27;72;1781;101;72;1,23;65,96;36,62;0;Iran;Middle East;"Iranian Research Organization for Science and Technology";"2015-2026";"Environmental Engineering (Q3); Water Science and Technology (Q3); Environmental Chemistry (Q4); Pollution (Q4); Renewable Energy, Sustainability and the Environment (Q4); Waste Management and Disposal (Q4)";"Energy; Environmental Science" +19921;26210;"Advances in Horticultural Science";journal;"15921573, 03946169";"University of Florence";Yes;Yes;0,236;Q3;31;34;101;1556;119;100;1,04;45,76;27,16;0;Italy;Western Europe;"University of Florence";"1993-2025";"Horticulture (Q3)";"Agricultural and Biological Sciences" +19922;21100199784;"Annals of the University of Craiova, Mathematics and Computer Science Series";journal;"22469958, 12236934";"Universitatea din Craiova";No;No;0,236;Q3;17;37;103;926;72;103;0,58;25,03;22,22;0;Romania;Eastern Europe;"Universitatea din Craiova";"2011-2025";"Mathematics (miscellaneous) (Q3); Computer Science Applications (Q4)";"Computer Science; Mathematics" +19923;21101123953;"Dermatologie";journal;"27317005, 27317013";"Springer Medizin";No;No;0,236;Q3;44;160;523;2905;304;399;0,60;18,16;51,21;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Dermatology (Q3)";"Medicine" +19924;21101264308;"Economic Geography (Switzerland)";book series;"25201417, 25201425";"Springer Nature";No;No;0,236;Q3;5;12;66;1621;32;2;0,68;135,08;0,00;0;Switzerland;Western Europe;"Springer Nature";"2018-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Economic Geology (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Economics, Econometrics and Finance; Social Sciences" +19925;21101117183;"Environment and Social Psychology";journal;"24248975, 24247979";"Arts and Science Press Pte. Ltd.";No;No;0,236;Q3;16;549;507;27450;833;503;1,68;50,00;45,67;0;Singapore;Asiatic Region;"Arts and Science Press Pte. Ltd.";"2019-2026";"Health (social science) (Q3); Developmental and Educational Psychology (Q4); Neuropsychology and Physiological Psychology (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +19926;21101097079;"Estudios de Deusto";journal;"23869062, 04234847";"University of Deusto";Yes;Yes;0,236;Q3;5;12;76;449;24;76;0,33;37,42;44,44;0;Spain;Western Europe;"University of Deusto";"2019-2025";"Law (Q3)";"Social Sciences" +19927;21101210730;"Food Science and Preservation";journal;"30225477, 30225485";"Korean Society of Food Preservation";No;No;0,236;Q3;13;107;285;4677;282;285;0,98;43,71;40,80;0;South Korea;Asiatic Region;"Korean Society of Food Preservation";"2024-2025";"Food Science (Q3)";"Agricultural and Biological Sciences" +19928;56987;"Hellenic Journal of Nuclear Medicine";journal;"17905427";"P.Ziti and Co";No;No;0,236;Q3;29;38;144;787;107;141;0,66;20,71;37,91;0;Greece;Western Europe;"P.Ziti and Co";"2004-2025";"Radiology, Nuclear Medicine and Imaging (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +19929;21100202935;"Ingenierie des Systemes d'Information";journal;"16331311, 21167125";"International Information and Engineering Technology Association";No;No;0,236;Q3;24;298;528;10113;892;528;1,74;33,94;39,84;0;France;Western Europe;"International Information and Engineering Technology Association";"2012-2025";"Information Systems (Q3)";"Computer Science" +19930;23999;"Instrumentation Science and Technology";journal;"15256030, 10739149";"Taylor and Francis Ltd.";No;No;0,236;Q3;39;64;127;1996;202;127;1,52;31,19;29,30;0;United States;Northern America;"Taylor and Francis Ltd.";"1968-1972, 1974-1977, 1979-1982, 1984-1990, 1992-2026";"Chemical Engineering (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Instrumentation (Q3)";"Chemical Engineering; Environmental Science; Physics and Astronomy" +19931;21100922608;"International Journal of Computational Materials Science and Engineering";journal;"2047685X, 20476841";"World Scientific";No;No;0,236;Q3;18;71;83;2867;136;83;1,86;40,38;28,91;0;Singapore;Asiatic Region;"World Scientific";"2012-2026";"Mechanics of Materials (Q3); Numerical Analysis (Q3); Computer Science Applications (Q4); Materials Science (miscellaneous) (Q4); Modeling and Simulation (Q4)";"Computer Science; Engineering; Materials Science; Mathematics" +19932;17966;"International Journal of Electrical Engineering and Education";journal;"20504578, 00207209";"SAGE Publications Inc.";No;No;0,236;Q3;32;23;126;495;190;125;1,30;21,52;28,57;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1963, 1965, 1967, 1969-1972, 1974-2025";"Education (Q3); Electrical and Electronic Engineering (Q3)";"Engineering; Social Sciences" +19933;21101022194;"International Journal of Engineering Transactions C: Aspects";journal;"24237167";"Materials and Energy Research Center";No;No;0,236;Q3;15;18;62;633;120;61;1,93;35,17;22,73;0;Iran;Middle East;"Materials and Energy Research Center";"2019-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +19934;7700153101;"International Organizations Law Review";journal;"15723739, 15723747";"Martinus Nijhoff Publishers";No;No;0,236;Q3;27;12;61;1315;44;57;0,53;109,58;28,57;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"2004-2025";"Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +19935;21101154817;"Iraqi Journal for Electrical and Electronic Engineering";journal;"20786069, 18145892";"College of Engineering, University of Basrah";Yes;No;0,236;Q3;12;50;114;1465;146;114;1,01;29,30;31,96;0;Iraq;Middle East;"College of Engineering, University of Basrah";"2021-2025";"Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +19936;21101246303;"Iraqi Journal of Veterinary Medicine";journal;"16095693";"University of Baghdad, College of Veterinary Medicine";Yes;No;0,236;Q3;9;13;72;659;127;72;1,61;50,69;57,14;0;Iraq;Middle East;"University of Baghdad, College of Veterinary Medicine";"2020-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +19937;22026;"Journal of Ceramic Processing Research";journal;"12299162";"Hanyang University";Yes;No;0,236;Q3;37;126;387;4334;433;387;1,07;34,40;35,09;0;South Korea;Asiatic Region;"Hanyang University";"2000-2025";"Ceramics and Composites (Q3)";"Materials Science" +19938;19700184900;"Journal of Chemical Research";journal;"20476507, 17475198";"Science Reviews Ltd";Yes;No;0,236;Q3;47;38;176;1874;217;176;1,33;49,32;34,72;0;United Kingdom;Western Europe;"Science Reviews Ltd";"2000, 2004-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +19939;18061;"Journal of Microwave Power and Electromagnetic Energy";journal;"08327823";"Taylor and Francis Inc.";No;No;0,236;Q3;40;24;72;753;89;60;1,31;31,38;28,40;0;United States;Northern America;"Taylor and Francis Inc.";"1985-2004, 2006-2026";"Ceramics and Composites (Q3); Electrical and Electronic Engineering (Q3); Metals and Alloys (Q3); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +19940;15925;"Journal of Parapsychology";journal;"00223387";"Rhine Research Center";No;No;0,236;Q3;24;0;20;0;6;11;0,15;0,00;0,00;0;United States;Northern America;"Rhine Research Center";"1946-1949, 1973-1977, 1996-2024";"Psychology (miscellaneous) (Q3)";"Psychology" +19941;24405;"Journal of Regional Analysis and Policy";journal;"10904999";"University of Nebraska-Lincoln";No;No;0,236;Q3;30;20;29;860;26;29;0,77;43,00;36,36;0;United States;Northern America;"University of Nebraska-Lincoln";"1996-2025";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Political Science and International Relations (Q3)";"Environmental Science; Social Sciences" +19942;21101167593;"Jurnal Hukum Novelty";journal;"14126834, 25500090";"Universitas Ahmad Dahlan";Yes;Yes;0,236;Q3;7;20;55;1174;61;55;1,31;58,70;31,15;0;Indonesia;Asiatic Region;"Universitas Ahmad Dahlan";"2019-2025";"Law (Q3)";"Social Sciences" +19943;21101062811;"Membranes and Membrane Technologies";journal;"25177524, 25177516";"Pleiades Publishing";No;No;0,236;Q3;14;26;140;1406;181;140;1,11;54,08;54,64;0;Russian Federation;Eastern Europe;"Pleiades Publishing";"2019-2025";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Materials Science" +19944;59924;"Moscow University Geology Bulletin";journal;"19348436, 01458752";"Pleiades Publishing";No;No;0,236;Q3;14;76;245;1751;89;245;0,36;23,04;43,95;0;United States;Northern America;"Pleiades Publishing";"1979, 1984-1985, 1988, 2012-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +19945;3900148614;"Pakistan Journal of Biological Sciences";journal;"18125735, 10288880";"Asian Network for Scientific Information";No;No;0,236;Q3;58;78;269;2802;268;269;0,88;35,92;49,49;0;Pakistan;Asiatic Region;"Asian Network for Scientific Information";"2001, 2003, 2006-2026";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +19946;26742;"Performance Evaluation Review";journal;"01635999";"Association for Computing Machinery";No;No;0,236;Q3;89;60;334;806;194;320;0,43;13,43;18,75;0;United States;Northern America;"Association for Computing Machinery";"1980, 1982, 1984, 1986-1989, 1994, 1996-2026";"Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Software (Q4)";"Computer Science" +19947;26429;"Polimery/Polymers";journal;"00322725";"Industrial Chemistry Research Institute";Yes;No;0,236;Q3;38;63;179;2475;205;179;1,03;39,29;47,42;0;Poland;Eastern Europe;"Industrial Chemistry Research Institute";"1969-1988, 1996-2026";"Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)";"Chemical Engineering; Materials Science" +19948;21101186995;"Revista Italo-Espanola de Derecho Procesal";journal;"26055244";"Marcial Pons Librero";Yes;Yes;0,236;Q3;4;20;38;768;21;31;0,29;38,40;56,52;0;Spain;Western Europe;"Marcial Pons Librero";"2019-2025";"Law (Q3)";"Social Sciences" +19949;17968;"Strength of Materials";journal;"15739325, 00392316";"Springer New York";No;No;0,236;Q3;31;121;360;2789;350;358;0,99;23,05;27,72;0;United States;Northern America;"Springer New York";"1969-2026";"Mechanics of Materials (Q3)";"Engineering" +19950;21101306753;"Brazilian Journal of Motor Behavior";journal;"24464902, 19805586";"Brazilian Journal of Motor Behavior";Yes;No;0,236;Q4;8;48;120;1462;67;105;0,43;30,46;44,85;0;Brazil;Latin America;"Brazilian Journal of Motor Behavior";"2014, 2016, 2020-2025";"Behavioral Neuroscience (Q4); Developmental Neuroscience (Q4); Sensory Systems (Q4)";"Neuroscience" +19951;4600151526;"Cardiovascular and Hematological Disorders - Drug Targets";journal;"22124063, 1871529X";"Bentham Science Publishers";No;No;0,236;Q4;48;45;85;2793;100;82;1,18;62,07;38,65;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Cardiology and Cardiovascular Medicine (Q4); Hematology (Q4); Medicine (miscellaneous) (Q4); Molecular Medicine (Q4); Pharmacology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +19952;16002;"Journal of Postgraduate Medicine";journal;"09722823, 00223859";"Wolters Kluwer Medknow Publications";Yes;No;0,236;Q4;66;40;190;754;173;151;0,87;18,85;45,45;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1961-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +19953;21100809799;"IEEE International Workshop on Computer Aided Modeling and Design of Communication Links and Networks, CAMAD";conference and proceedings;"23784873";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,236;-;26;30;191;454;160;187;0,75;15,13;16,33;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2016-2025";"Acoustics and Ultrasonics; Computer Graphics and Computer-Aided Design; Computer Networks and Communications; Mechanical Engineering; Mechanics of Materials";"Computer Science; Engineering; Physics and Astronomy" +19954;21101123123;"Autoctonia";journal;"07198213";"Universidad Bernardo O'Higgins";Yes;Yes;0,235;Q1;4;71;157;3798;42;150;0,27;53,49;48,36;2;Chile;Latin America;"Universidad Bernardo O'Higgins";"2019-2026";"History (Q1); Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +19955;16400154761;"Journal of Biblical Literature";journal;"19343876, 00219231";"Society of Biblical Literature";No;No;0,235;Q1;38;38;114;3823;64;112;0,48;100,61;21,62;0;United States;Northern America;"Society of Biblical Literature";"2001-2025";"Literature and Literary Theory (Q1); Religious Studies (Q1)";"Arts and Humanities" +19956;4700151912;"Journal of New Music Research";journal;"17445027, 09298215";"Routledge";No;No;0,235;Q1;47;9;78;474;87;68;0,95;52,67;31,82;0;United Kingdom;Western Europe;"Routledge";"1994-2000, 2002, 2004-2026";"Visual Arts and Performing Arts (Q1); Music (Q2)";"Arts and Humanities" +19957;21100979262;"Palaeohispanica";journal;"15785386, 26037637";"Institucion Fernando el Catolico";Yes;Yes;0,235;Q1;8;25;45;1303;22;44;0,52;52,12;28,00;0;Spain;Western Europe;"Institucion Fernando el Catolico";"2017-2024";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +19958;5800207709;"Studia Iranica";book series;"02215004, 17831784";"Peeters Publishers";No;No;0,235;Q1;7;0;17;0;4;17;0,00;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"2011-2023";"History (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +19959;21100203307;"Contemporary Pragmatism";journal;"18758185, 15723429";"Brill Academic Publishers";No;No;0,235;Q2;12;24;63;779;24;60;0,56;32,46;15,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2025";"Philosophy (Q2)";"Arts and Humanities" +19960;21100828130;"Cosmopolitan Civil Societies";journal;"18375391";"UTS ePRESS";Yes;Yes;0,235;Q2;12;24;62;1022;59;60;1,02;42,58;50,00;1;Australia;Pacific Region;"UTS ePRESS";"2017-2025";"Anthropology (Q2); Cultural Studies (Q2); Demography (Q3); Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +19961;19900193861;"International Journal of the Inclusive Museum";journal;"18352022, 18352014";"Common Ground Research Networks";No;No;0,235;Q2;12;23;50;1195;43;50;0,90;51,96;66,67;0;United States;Northern America;"Common Ground Research Networks";"2008-2025";"Conservation (Q2); Museology (Q2)";"Arts and Humanities" +19962;21100900134;"International Journal on Engineering Applications";journal;"25332295, 22812881";"Praise Worthy Prize";No;No;0,235;Q2;15;57;150;1877;232;150;1,52;32,93;29,88;0;Italy;Western Europe;"Praise Worthy Prize";"2018-2025";"Architecture (Q2); Discrete Mathematics and Combinatorics (Q3); Engineering (miscellaneous) (Q3); Logic (Q3); Applied Mathematics (Q4); Computer Science Applications (Q4)";"Computer Science; Engineering; Mathematics" +19963;23649;"Journal of Scientific and Industrial Research";journal;"09751084, 00224456";"National Institute of Science Communication and Policy Research";Yes;Yes;0,235;Q2;67;99;384;3468;534;384;1,40;35,03;32,73;0;India;Asiatic Region;"National Institute of Science Communication and Policy Research";"1969-1970, 1972-1978, 1980, 1982-1991, 1994-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +19964;21100942816;"Shagi/ Steps";journal;"27821765, 24129410";"Russian Presidential Academy of National Economy and Public Administration";Yes;Yes;0,235;Q2;4;73;206;2392;24;198;0,13;32,77;59,26;0;Russian Federation;Eastern Europe;"Russian Presidential Academy of National Economy and Public Administration";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology; Social Sciences" +19965;21101212238;"Acta Biologica Universitatis Daugavpiliensis";journal;"14078953";"Daugavpils University Academic Press "Saule"";No;No;0,235;Q3;4;18;66;644;26;66;0,46;35,78;50,00;0;Latvia;Eastern Europe;"Daugavpils University Academic Press "Saule"";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +19966;21101210521;"Al-Qadisiyah Journal for Engineering Sciences";journal;"19984456, 24117773";"University of Al-Qadisiyah";Yes;No;0,235;Q3;7;60;127;2457;170;127;1,37;40,95;27,59;0;Iraq;Middle East;"University of Al-Qadisiyah";"2021-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +19967;21100902964;"Applied Mathematics and Mechanics";journal;"10000887";"Editorial Office of Applied Mathematics and Mechanics";No;No;0,235;Q3;14;131;378;3458;281;376;0,72;26,40;31,95;0;China;Asiatic Region;"Editorial Office of Applied Mathematics and Mechanics";"2016-2026";"Mechanical Engineering (Q3); Applied Mathematics (Q4)";"Engineering; Mathematics" +19968;50094;"Archives of Electrical Engineering";journal;"14274221, 23002506";"Polska Akademia Nauk";Yes;No;0,235;Q3;24;49;195;1354;199;195;1,06;27,63;25,44;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2004-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +19969;21101268314;"ASME Letters in Dynamic Systems and Control";journal;"26896125, 26896117";"American Society of Mechanical Engineers (ASME)";No;No;0,235;Q3;11;36;108;960;102;107;0,97;26,67;17,89;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"2021-2026";"Automotive Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3); Biomedical Engineering (Q4)";"Engineering" +19970;87707;"Biology and Environment";journal;"2009003X, 07917945";"Royal Irish Academy";No;No;0,235;Q3;32;13;39;689;29;34;0,68;53,00;40,91;0;Ireland;Western Europe;"Royal Irish Academy";"1993, 1995-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Environmental Science" +19971;19600157803;"Buffalo Bulletin";journal;"25395696, 01256726";"Kasetsart University";No;No;0,235;Q3;18;50;205;1238;82;203;0,33;24,76;20,00;0;Thailand;Asiatic Region;"Kasetsart University";"2008-2025";"Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +19972;27637;"Cartographica";journal;"19119925, 03177173";"University of Toronto Press";No;No;0,235;Q3;43;13;42;705;36;42;0,88;54,23;40,74;0;Canada;Northern America;"University of Toronto Press";"1980-2001, 2004-2025";"Earth-Surface Processes (Q3)";"Earth and Planetary Sciences" +19973;23400;"Cryo-Letters";journal;"01432044";"Cryo-Letters";No;No;0,235;Q3;54;35;131;1547;150;131;1,17;44,20;44,63;0;United Kingdom;Western Europe;"Cryo-Letters";"1993-2025";"Agronomy and Crop Science (Q3); Anatomy (Q3); Medicine (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Medicine" +19974;21100854828;"Current Traditional Medicine";journal;"22150846, 22150838";"Bentham Science Publishers";No;No;0,235;Q3;12;102;202;8785;262;200;1,37;86,13;40,43;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2015-2017, 2020-2026";"Complementary and Alternative Medicine (Q3); Drug Discovery (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +19975;145412;"Decisions in Economics and Finance";journal;"15938883, 11296569";"Springer-Verlag Italia s.r.l.";No;No;0,235;Q3;19;109;88;3959;60;86;0,71;36,32;35,84;1;Italy;Western Europe;"Springer-Verlag Italia s.r.l.";"1997, 2000-2002, 2005-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Finance (Q3)";"Economics, Econometrics and Finance" +19976;21100902867;"Differencialnie Uravnenia i Protsesy Upravlenia";journal;"18172172";"Saint Petersburg State University";No;No;0,235;Q3;8;17;83;345;19;83;0,27;20,29;43,48;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2019-2025";"Control and Optimization (Q3); Information Systems (Q3); Analysis (Q4); Applied Mathematics (Q4); Computer Science Applications (Q4); Software (Q4)";"Computer Science; Mathematics" +19977;17299;"IEEE Potentials";journal;"15581772, 02786648";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,235;Q3;42;15;152;130;155;135;0,94;8,67;25,81;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1984-2026";"Education (Q3); Electrical and Electronic Engineering (Q3); Strategy and Management (Q3)";"Business, Management and Accounting; Engineering; Social Sciences" +19978;21100211363;"International Journal of Aquatic Research and Education";journal;"19329997, 19329253";"Bowling Green State University";No;No;0,235;Q3;18;8;32;360;20;32;0,72;45,00;58,82;0;United States;Northern America;"Bowling Green State University";"2008, 2012-2025";"Aquatic Science (Q3)";"Agricultural and Biological Sciences" +19979;21100838789;"International Journal of Electrical and Electronic Engineering and Telecommunications";journal;"23192518";"Engineering and Technology Publishing";No;No;0,235;Q3;31;40;151;1392;368;151;2,21;34,80;31,40;0;Australia;Pacific Region;"Engineering and Technology Publishing";"2017-2026";"Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Instrumentation (Q3)";"Computer Science; Engineering; Physics and Astronomy" +19980;21100258382;"International Journal of Power Electronics and Drive Systems";journal;"20888694";"Institute of Advanced Engineering and Science";Yes;No;0,235;Q3;37;253;744;8114;988;744;1,25;32,07;24,37;0;Indonesia;Asiatic Region;"Institute of Advanced Engineering and Science";"2011-2025";"Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)";"Energy; Engineering" +19981;19500157222;"International Journal of Signal and Imaging Systems Engineering";journal;"17480698, 17480701";"Inderscience Enterprises Ltd";No;No;0,235;Q3;19;9;22;380;44;22;2,00;42,22;22,73;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2008-2021, 2023-2025";"Electrical and Electronic Engineering (Q3); Control and Systems Engineering (Q4)";"Engineering" +19982;4700153009;"International Journal of Sport Management and Marketing";journal;"14758962, 17402808";"Inderscience Enterprises Ltd";No;No;0,235;Q3;36;5;68;371;52;68;0,56;74,20;50,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2025";"Business and International Management (Q3); Marketing (Q3); Strategy and Management (Q3); Management Science and Operations Research (Q4); Sports Science (Q4)";"Business, Management and Accounting; Decision Sciences; Health Professions" +19983;21101157914;"International Journal of Sustainable Aviation";journal;"20500467, 20500475";"Inderscience Publishers";No;No;0,235;Q3;4;20;40;1026;47;40;1,18;51,30;27,50;0;United Kingdom;Western Europe;"Inderscience Publishers";"2023-2025";"Automotive Engineering (Q3); Environmental Engineering (Q3); Mechanical Engineering (Q3)";"Engineering; Environmental Science" +19984;18869;"International Journal of Vehicle Design";journal;"01433369";"Inderscience Enterprises Ltd";No;No;0,235;Q3;53;34;141;969;149;141;0,93;28,50;24,39;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"1979-2025";"Automotive Engineering (Q3); Mechanical Engineering (Q3)";"Engineering" +19985;5100155008;"Journal of Microelectronics and Electronic Packaging";journal;"15514897, 15558037";"IMAPS-International Microelectronics and Packaging Society";No;No;0,235;Q3;22;11;44;243;45;44;1,11;22,09;17,39;0;United States;Northern America;"IMAPS-International Microelectronics and Packaging Society";"2005-2012, 2014-2025";"Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q4)";"Computer Science; Engineering; Materials Science" +19986;21100205927;"Journal of Oil Palm Research";journal;"15112780";"Lembaga Minyak Sawit Malaysia";No;No;0,235;Q3;37;60;182;2738;247;182;1,39;45,63;35,32;1;Malaysia;Asiatic Region;"Lembaga Minyak Sawit Malaysia";"2008-2025";"Agronomy and Crop Science (Q3); Food Science (Q3); Biomaterials (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Agricultural and Biological Sciences; Energy; Materials Science" +19987;21101038722;"Journal of People, Plants, and Environment";journal;"25087681, 25087673";"The Society of People, Plants, and Environment";No;No;0,235;Q3;12;64;180;2560;140;180;0,71;40,00;47,44;0;South Korea;Asiatic Region;"The Society of People, Plants, and Environment";"2019-2025";"Environmental Science (miscellaneous) (Q3); Health (social science) (Q3); Nature and Landscape Conservation (Q3); Urban Studies (Q3)";"Environmental Science; Social Sciences" +19988;21101072352;"Journal of Tax Reform";journal;"24128872, 24149497";"Ural Federal University";Yes;Yes;0,235;Q3;9;48;84;2321;150;84;2,03;48,35;32,93;0;Russian Federation;Eastern Europe;"Ural Federal University";"2019-2025";"Accounting (Q3); Business, Management and Accounting (miscellaneous) (Q3); Finance (Q3); Law (Q3); Economics and Econometrics (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +19989;21100382607;"Mathematical Models and Computer Simulations";journal;"20700482, 20700490";"Pleiades Publishing";No;No;0,235;Q3;26;80;310;1794;146;310;0,54;22,43;21,99;0;United States;Northern America;"Pleiades Publishing";"2009-2025";"Computational Mathematics (Q3); Modeling and Simulation (Q4)";"Mathematics" +19990;19900191763;"New Zealand Economic Papers";journal;"00779954, 19434863";"Routledge";No;No;0,235;Q3;17;39;78;1222;70;52;0,76;31,33;43,75;3;United Kingdom;Western Europe;"Routledge";"1966, 1968-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +19991;19944;"Novon";journal;"10553177";"Missouri Botanical Garden";No;No;0,235;Q3;30;1;70;34;40;70;0,52;34,00;0,00;0;United States;Northern America;"Missouri Botanical Garden";"1994-2025";"Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +19992;19900188004;"Observatorio";journal;"16465954, 08748810";"Obercom";Yes;Yes;0,235;Q3;18;63;172;3127;122;170;0,73;49,63;58,70;0;Portugal;Western Europe;"Obercom";"2011-2025";"Communication (Q3); Computer Networks and Communications (Q3)";"Computer Science; Social Sciences" +19993;21100920037;"Problemy Osobo Opasnykh Infektsii";journal;"2658719X, 03701069";"Russian Research Anti-Plague Institute";Yes;Yes;0,235;Q3;12;62;203;1485;129;202;0,70;23,95;66,67;0;Russian Federation;Eastern Europe;"Russian Research Anti-Plague Institute";"2019-2025";"Epidemiology (Q3); Infectious Diseases (Q3); Immunology (Q4); Microbiology (Q4); Microbiology (medical) (Q4)";"Immunology and Microbiology; Medicine" +19994;21100996943;"Psychological Science and Education";journal;"18142052, 23117273";"Moscow State University of Psychology and Education";Yes;Yes;0,235;Q3;17;71;201;2090;143;189;0,65;29,44;76,68;0;Russian Federation;Eastern Europe;"Moscow State University of Psychology and Education";"1999, 2004-2025";"Education (Q3); Developmental and Educational Psychology (Q4); Psychology (miscellaneous) (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +19995;29514;"Radiation Protection Dosimetry";journal;"17423406, 01448420";"Oxford University Press";No;No;0,235;Q3;86;134;841;3724;680;831;0,81;27,79;32,41;1;United Kingdom;Western Europe;"Oxford University Press";"1981-2026";"Public Health, Environmental and Occupational Health (Q3); Radiation (Q3); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine; Physics and Astronomy" +19996;15300154851;"RoFo Fortschritte auf dem Gebiet der Rontgenstrahlen und der Bildgebenden Verfahren";journal;"14389010, 14389029";"Georg Thieme Verlag";No;No;0,235;Q3;57;468;1231;3411;441;746;0,31;7,29;30,91;0;Germany;Western Europe;"Georg Thieme Verlag";"1975-1983, 1985-2026";"Radiology, Nuclear Medicine and Imaging (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +19997;26462;"Social Sciences in China";journal;"19405952, 02529203";"Taylor and Francis Ltd.";No;No;0,235;Q3;22;36;138;921;86;129;0,70;25,58;15,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-1981, 1983-1989, 1991-1997, 2008-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +19998;21100776065;"Journal of Gerontology and Geriatrics";journal;"24996564";"Pacini Editore Srl";Yes;No;0,235;Q4;13;18;92;767;75;90;0,96;42,61;54,35;0;Italy;Western Europe;"Pacini Editore Srl";"2016-2025";"Aging (Q4); Geriatrics and Gerontology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +19999;18591;"Methods in Cell Biology";book series;"0091679X";"Academic Press Inc.";No;No;0,235;Q4;94;136;334;5296;376;30;0,96;38,94;54,04;0;United States;Northern America;"Academic Press Inc.";"1964, 1966, 1969-1970, 1972-1978, 1980-1982, 1986-1991, 1993-2004, 2007-2026";"Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +20000;13423;"Psychoanalytic Review";journal;"19433301, 00332836";"Guilford Publications";No;No;0,235;Q4;24;30;86;646;31;69;0,13;21,53;50,00;0;United States;Northern America;"Guilford Publications";"1945-1957, 1963-2025";"Clinical Psychology (Q4)";"Psychology" +20001;21100873054;"Siriraj Medical Journal";journal;"2629995X, 22288082";"Faculty of Medicine Siriraj Hospital, Mahidol University";Yes;Yes;0,235;Q4;11;88;317;2935;227;315;0,71;33,35;52,50;0;Thailand;Asiatic Region;"Faculty of Medicine Siriraj Hospital, Mahidol University";"2018-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +20002;21101246773;"IEEE/ASME International Conference on Advanced Intelligent Mechatronics, AIM";conference and proceedings;"21596247, 21596255";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,235;-;52;223;229;4640;219;228;0,96;20,81;25,58;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1997, 1999, 2001, 2003, 2005, 2007-2012, 2014-2016, 2024-2025";"Computer Science Applications; Control and Systems Engineering; Electrical and Electronic Engineering; Software";"Computer Science; Engineering" +20003;21101075992;"Proceedings of the International Conference on Education and Research in Computer Aided Architectural Design in Europe";conference and proceedings;"26841843";"Education and research in Computer Aided Architectural Design in Europe";No;No;0,235;-;24;169;462;3078;350;454;0,76;18,21;43,49;0;Belgium;Western Europe;"Education and research in Computer Aided Architectural Design in Europe";"1999-2025";"Architecture; Computer Graphics and Computer-Aided Design; Education";"Computer Science; Engineering; Social Sciences" +20004;16000154752;"Historia - Zeitschrift fur Alte Geschichte";journal;"23653108, 00182311";"Franz Steiner Verlag GmbH";No;No;0,234;Q1;27;20;53;1673;22;53;0,45;83,65;12,50;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"1976, 1983-1984, 1987, 1997, 2002-2026";"Classics (Q1); History (Q1)";"Arts and Humanities" +20005;16200154712;"New Testament Studies";journal;"14698145, 00286885";"Cambridge University Press";No;No;0,234;Q1;32;15;110;1155;60;110;0,61;77,00;35,71;0;United Kingdom;Western Europe;"Cambridge University Press";"1954-2025";"History (Q1); Religious Studies (Q1)";"Arts and Humanities" +20006;19700201506;"AIJ Journal of Technology and Design";journal;"18818188, 13419463";"Architectural Institute of Japan";No;No;0,234;Q2;11;292;853;3908;144;853;0,17;13,38;19,33;0;Japan;Asiatic Region;"Architectural Institute of Japan";"2007-2026";"Architecture (Q2); Building and Construction (Q3)";"Engineering" +20007;21100242217;"Archeologia Polski";journal;"00038180";"Polska Akademia Nauk";Yes;Yes;0,234;Q2;6;0;36;0;14;31;0,35;0,00;0,00;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2012-2016, 2018-2024, 2026";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20008;21101071259;"Asia-Pacific Language Variation";journal;"22151354, 22151362";"John Benjamins Publishing Company";No;No;0,234;Q2;8;2;24;66;28;22;1,00;33,00;50,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2026";"Linguistics and Language (Q2)";"Social Sciences" +20009;21101021865;"Egyptian Journal of Archaeological and Restoration Studies";journal;"20904940, 20904932";"Sohag University Publishing Center";No;No;0,234;Q2;6;32;98;1513;53;97;0,53;47,28;28,21;0;Egypt;Africa/Middle East;"Sohag University Publishing Center";"2011-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2); Conservation (Q2); Cultural Studies (Q2); Management, Monitoring, Policy and Law (Q3)";"Arts and Humanities; Environmental Science; Social Sciences" +20010;12900154716;"Informes de la Construccion";journal;"00200883, 19883234";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,234;Q2;24;28;138;899;66;138;0,45;32,11;37,70;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2008-2026";"Architecture (Q2); Building and Construction (Q3); Environmental Engineering (Q3); Civil and Structural Engineering (Q4)";"Engineering; Environmental Science" +20011;5800196826;"Iran";journal;"23969202, 05786967";"Taylor and Francis Ltd.";No;No;0,234;Q2;13;22;43;1571;29;43;0,70;71,41;38,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2025";"Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +20012;21101124070;"Nordic Journal of Social Research";journal;"18922783";"Scandinavian University Press";Yes;Yes;0,234;Q2;7;4;27;172;46;27;0,93;43,00;71,43;0;Norway;Western Europe;"Scandinavian University Press";"2019-2025";"Anthropology (Q2); Health (social science) (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20013;5600153669;"Transforming Anthropology";journal;"15487466, 10510559";"University of Chicago Press";No;No;0,234;Q2;19;16;40;544;25;29;0,53;34,00;63,64;0;United States;Northern America;"University of Chicago Press";"1990-1994, 1998, 2000-2002, 2004, 2007-2025";"Anthropology (Q2)";"Social Sciences" +20014;76704;"Zeitschrift fur Papyrologie und Epigraphik";journal;"00845388";"Dr. Rudolf Habelt GmbH";No;No;0,234;Q2;26;105;444;2873;70;431;0,15;27,36;24,78;0;Germany;Western Europe;"Dr. Rudolf Habelt GmbH";"1968, 1976-1978, 1997, 2002-2008, 2015-2016, 2018-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20015;19700201136;"ACM Inroads";trade journal;"21532184, 21532192";"Association for Computing Machinery";No;No;0,234;Q3;33;28;87;450;108;79;1,48;16,07;40,54;0;United States;Northern America;"Association for Computing Machinery";"2010-2026";"Computer Science (miscellaneous) (Q3); Education (Q3)";"Computer Science; Social Sciences" +20016;21100316073;"Acta crystallographica. Section C, Structural chemistry";journal;"20532296";"John Wiley & Sons Inc.";No;No;0,234;Q3;59;95;266;3418;245;255;1,08;35,98;35,24;0;United States;Northern America;"John Wiley & Sons Inc.";"1987-1988, 1990-1991, 1994-1995, 2014-2026";"Materials Chemistry (Q3); Condensed Matter Physics (Q4); Inorganic Chemistry (Q4); Medicine (miscellaneous) (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Medicine; Physics and Astronomy" +20017;9500154115;"Agrokemia es Talajtan";journal;"00021873, 15882713";"Akademiai Kiado";No;No;0,234;Q3;12;10;35;475;25;31;0,39;47,50;37,50;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2026";"Agronomy and Crop Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +20018;21101033323;"Auditory and Vestibular Research";journal;"2423480X";"Tehran University of Medical Sciences";Yes;No;0,234;Q3;7;44;126;1216;58;124;0,36;27,64;44,95;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2026";"Otorhinolaryngology (Q3); Speech and Hearing (Q3)";"Health Professions; Medicine" +20019;21100981226;"Case Reports in Anesthesiology";journal;"20906390, 20906382";"John Wiley and Sons Ltd";Yes;No;0,234;Q3;9;36;46;462;40;46;1,00;12,83;36,88;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2019-2026";"Anesthesiology and Pain Medicine (Q3)";"Medicine" +20020;21100913647;"Caspian Journal of Environmental Sciences";journal;"17353033, 17353866";"University of Guilan";Yes;No;0,234;Q3;20;129;381;4692;535;380;1,62;36,37;54,41;0;Iran;Middle East;"University of Guilan";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20021;13771;"Ceska a Slovenska Oftalmologie";journal;"18054447, 12119059";"Czech Medical Association J.E. Purkyne";No;No;0,234;Q3;15;69;118;546;73;118;0,50;7,91;49,43;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1950-2026";"Ophthalmology (Q3)";"Medicine" +20022;19600166402;"Coffee Science";journal;"18096875, 19843909";"Editora UFLA";Yes;No;0,234;Q3;24;54;110;2274;141;110;1,19;42,11;40,86;0;Brazil;Latin America;"Editora UFLA";"2009-2025";"Food Science (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +20023;21100781964;"Ecosistemas";journal;"16972473";"Asociacion Espanola de Ecologia Terrestre";Yes;Yes;0,234;Q3;27;57;141;4025;103;118;0,68;70,61;43,58;0;Spain;Western Europe;"Asociacion Espanola de Ecologia Terrestre";"2001-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20024;21101169872;"International Research Journal of Multidisciplinary Technovation";journal;"25821040";"Asian Research Association";No;No;0,234;Q3;10;110;129;4514;238;129;2,12;41,04;30,62;0;India;Asiatic Region;"Asian Research Association";"2019-2026";"Engineering (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q4)";"Engineering; Environmental Science; Materials Science" +20025;21100901171;"Journal of Agricultural Sciences - Sri Lanka";journal;"13919318, 23861363";"Faculty of Agricultural Sciences, Sabaragamuwa University of Sri Lanka";Yes;Yes;0,234;Q3;13;49;123;1785;148;114;1,05;36,43;40,00;0;Sri Lanka;Asiatic Region;"Faculty of Agricultural Sciences, Sabaragamuwa University of Sri Lanka";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +20026;21100902624;"Journal of Consumer Satisfaction, Dissatisfaction and Complaining Behavior";journal;"08998620";"University of Nevada";No;No;0,234;Q3;11;22;57;1554;102;48;2,15;70,64;33,33;0;United States;Northern America;"University of Nevada";"2018-2025";"Business and International Management (Q3); Applied Psychology (Q4); Marketing (Q4); Social Psychology (Q4)";"Business, Management and Accounting; Psychology" +20027;21101267545;"Jurnal Suara Hukum";journal;"26565358, 2656534X";"Faculty of Law Universitas Negeri Surabaya";No;No;0,234;Q3;5;20;60;1031;44;60;0,95;51,55;38,00;0;Indonesia;Asiatic Region;"Faculty of Law Universitas Negeri Surabaya";"2020-2025";"Law (Q3); Political Science and International Relations (Q3)";"Social Sciences" +20028;21100855971;"Laser and Optoelectronics Progress";journal;"10064125";"";No;No;0,234;Q3;23;979;3005;37398;3473;3000;1,38;38,20;33,68;0;China;Asiatic Region;"";"2017-2026";"Electrical and Electronic Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4)";"Engineering; Physics and Astronomy" +20029;15425;"Measurement Techniques";journal;"05431972, 15738906";"Springer Science and Business Media Deutschland GmbH";No;No;0,234;Q3;27;78;365;1340;163;363;0,51;17,18;24,10;0;United States;Northern America;"Springer Science and Business Media Deutschland GmbH";"1958-2026";"Instrumentation (Q3); Applied Mathematics (Q4)";"Mathematics; Physics and Astronomy" +20030;145096;"Neuropsychopharmacologia Hungarica";journal;"20642512, 14198711";"Hungarian Association of Psychopharmacology";Yes;No;0,234;Q3;21;22;69;462;51;57;0,44;21,00;59,68;0;Hungary;Eastern Europe;"Hungarian Association of Psychopharmacology";"2004-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Neurology (clinical) (Q4); Neuropsychology and Physiological Psychology (Q4); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics; Psychology" +20031;29344;"Pflege";journal;"10125302";"Hogrefe Publishing GmbH & Co. KG";No;No;0,234;Q3;17;53;154;1170;85;126;0,61;22,08;63,16;2;Switzerland;Western Europe;"Hogrefe Publishing GmbH & Co. KG";"1991-2026";"Nursing (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Nursing" +20032;21100202954;"Plant Physiology Journal";journal;"20951108";"Science Press";No;No;0,234;Q3;22;148;556;5312;501;554;1,08;35,89;49,38;0;China;Asiatic Region;"Science Press";"2011-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +20033;20224;"Prometheus: Critical Studies in Innovation";journal;"08109028, 14701030";"Pluto Journals";Yes;Yes;0,234;Q3;31;3;51;141;40;39;0,33;47,00;0,00;0;United Kingdom;Western Europe;"Pluto Journals";"1983-2017, 2020-2025";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3); Strategy and Management (Q3); Management of Technology and Innovation (Q4); Research and Theory (Q4)";"Business, Management and Accounting; Earth and Planetary Sciences; Nursing; Social Sciences" +20034;21101049551;"Public and Municipal Finance";journal;"22221867, 22221875";"LLC CPC Business Perspectives";Yes;No;0,234;Q3;10;46;61;1994;102;61;1,58;43,35;45,38;2;Ukraine;Eastern Europe;"LLC CPC Business Perspectives";"2019-2026";"Business, Management and Accounting (miscellaneous) (Q3); Finance (Q3); Law (Q3); Public Administration (Q3); Economics and Econometrics (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +20035;17600155316;"Romanian Journal of Communication and Public Relations";journal;"23445440, 14548100";"National University of Political Studies and Public Administration";Yes;Yes;0,234;Q3;13;9;27;627;44;27;0,94;69,67;66,67;0;Romania;Eastern Europe;"National University of Political Studies and Public Administration";"2015-2025";"Communication (Q3)";"Social Sciences" +20036;21584;"Southwestern Entomologist";journal;"01471724";"Southwestern Entomological Society";No;No;0,234;Q3;31;76;359;1661;128;351;0,33;21,86;27,41;0;United States;Northern America;"Southwestern Entomological Society";"1993-2025";"Agronomy and Crop Science (Q3); Ecology (Q3); Insect Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20037;21101023767;"U.S. Geological Survey Scientific Investigations Map";journal;"2329132X, 23291311";"US Geological Survey";No;No;0,234;Q3;6;9;26;749;12;24;0,46;83,22;38,24;9;United States;Northern America;"US Geological Survey";"2019-2026";"Geology (Q3); Geophysics (Q3); Paleontology (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +20038;4000149602;"Acta of Bioengineering and Biomechanics";journal;"1509409X";"Sciendo";Yes;No;0,234;Q4;37;54;207;1379;209;202;0,91;25,54;39,45;0;Poland;Eastern Europe;"Sciendo";"2005-2025";"Bioengineering (Q4); Biomaterials (Q4); Biomedical Engineering (Q4); Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science" +20039;14211;"Archives of Psychiatry and Psychotherapy";journal;"2083828X, 15092046";"Polish Psychiatric Association";Yes;No;0,234;Q4;19;29;109;1260;76;98;0,73;43,45;61,05;0;Poland;Eastern Europe;"Polish Psychiatric Association";"2001-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +20040;92049;"Biomedical Engineering - Applications, Basis and Communications";journal;"10162372, 17937132";"World Scientific";No;No;0,234;Q4;29;73;144;3513;166;144;1,38;48,12;41,52;0;Singapore;Asiatic Region;"World Scientific";"1992-2026";"Bioengineering (Q4); Biomedical Engineering (Q4); Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering" +20041;21100782251;"Emerging Materials Research";journal;"20460155, 20460147";"ICE Publishing";No;No;0,234;Q4;24;22;118;937;134;107;1,11;42,59;37,66;0;United Kingdom;Western Europe;"ICE Publishing";"2012, 2015-2025";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4)";"Materials Science; Physics and Astronomy" +20042;14500154713;"Journal for Studies in Economics and Econometrics";journal;"03796205";"Routledge";No;No;0,234;Q4;12;19;59;763;62;59;1,09;40,16;32,35;0;South Africa;Africa;"Routledge";"2008-2026";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +20043;79053;"Natural Product Sciences";journal;"22889027, 12263907";"Korean Society of Pharmacognosy";No;No;0,234;Q4;34;36;120;1419;137;120;1,28;39,42;46,72;0;South Korea;Asiatic Region;"Korean Society of Pharmacognosy";"1997-2025";"Drug Discovery (Q4); Organic Chemistry (Q4)";"Chemistry; Pharmacology, Toxicology and Pharmaceutics" +20044;21100786920;"Pakistan Journal of Psychological Research";journal;"10160604";"National Institute of Psychology";Yes;No;0,234;Q4;14;27;136;1113;89;136;0,42;41,22;70,31;0;Pakistan;Asiatic Region;"National Institute of Psychology";"2016-2026";"Psychology (miscellaneous) (Q4)";"Psychology" +20045;17317;"Conference Proceedings - IEEE SOUTHEASTCON";conference and proceedings;"1558058X, 10910050";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,234;-;43;279;553;5231;629;547;1,19;18,75;23,74;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1982-1984, 1986-2025";"Computer Networks and Communications; Control and Systems Engineering; Electrical and Electronic Engineering; Signal Processing; Software";"Computer Science; Engineering" +20046;21100258634;"IEEE Green Technologies Conference";conference and proceedings;"21665478";"IEEE Computer Society";No;No;0,234;-;23;52;139;891;154;134;1,04;17,13;16,43;0;United States;Northern America;"IEEE Computer Society";"2013-2025";"Ecological Modeling; Electrical and Electronic Engineering; Environmental Engineering";"Engineering; Environmental Science" +20047;21101245832;"IEEE International Symposium on Personal, Indoor and Mobile Radio Communications, PIMRC";conference and proceedings;"21669589, 21669570";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,234;-;77;446;315;7644;264;313;0,84;17,14;21,53;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1995-1998, 2000-2015, 2017, 2022-2025";"Electrical and Electronic Engineering";"Engineering" +20048;21100219306;"BioScope: South Asian Screen Studies";journal;"09749276, 0976352X";"SAGE Publications Inc.";No;No;0,233;Q1;15;10;42;516;16;34;0,37;51,60;45,45;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2010-2025";"Visual Arts and Performing Arts (Q1); Communication (Q3)";"Arts and Humanities; Social Sciences" +20049;25679;"Historia Mexicana";journal;"01850172";"Colegio de Mexico, A.C., Departamento de Publicaciones";Yes;Yes;0,233;Q1;17;38;100;1450;31;82;0,29;38,16;46,15;0;Mexico;Latin America;"Colegio de Mexico, A.C., Departamento de Publicaciones";"1965, 1976-1977, 1980-1981, 1986-1987, 1999, 2001-2026";"History (Q1)";"Arts and Humanities" +20050;21101298337;"International Journal of Sustainable Fashion and Textiles";journal;"27540278, 2754026X";"Intellect Ltd.";No;No;0,233;Q1;5;18;42;838;47;36;0,68;46,56;88,46;0;United Kingdom;Western Europe;"Intellect Ltd.";"2022-2025";"Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +20051;21100200803;"Journal of Aesthetics and Culture";journal;"20004214";"Taylor and Francis Ltd.";Yes;Yes;0,233;Q1;18;17;44;856;46;42;1,35;50,35;35,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2025";"Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +20052;21100244946;"Kepes";journal;"17947111";"Universidad de Caldas";Yes;Yes;0,233;Q1;7;20;91;791;37;85;0,34;39,55;48,72;0;Colombia;Latin America;"Universidad de Caldas";"2011-2025";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +20053;21101226496;"Lituanistica";journal;"0235716X, 24244716";"Lithuanian Academy of Sciences Publishers";No;No;0,233;Q1;3;22;53;1654;17;53;0,39;75,18;47,62;0;Lithuania;Eastern Europe;"Lithuanian Academy of Sciences Publishers";"2020-2025";"History (Q1); Literature and Literary Theory (Q1); Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20054;19700200888;"Theatre, Dance and Performance Training";journal;"19443919, 19443927";"Taylor and Francis Ltd.";No;No;0,233;Q1;14;53;199;690;67;132;0,29;13,02;57,14;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Visual Arts and Performing Arts (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +20055;21100901948;"Civil Engineering and Architecture";journal;"23321091, 23321121";"Horizon Research Publishing";No;No;0,233;Q2;17;310;875;11324;931;875;1,08;36,53;38,28;0;United States;Northern America;"Horizon Research Publishing";"2013, 2018-2026";"Architecture (Q2); Civil and Structural Engineering (Q4)";"Engineering" +20056;24574;"Mathematical Intelligencer";journal;"03436993";"Springer New York";No;No;0,233;Q2;31;96;185;852;47;127;0,21;8,88;24,73;0;United States;Northern America;"Springer New York";"1977-2026";"History and Philosophy of Science (Q2); Mathematics (miscellaneous) (Q3)";"Arts and Humanities; Mathematics" +20057;21100329307;"Acta et Commentationes Universitatis Tartuensis de Mathematica";journal;"14062283, 22284699";"University of Tartu Press";Yes;No;0,233;Q3;12;17;63;353;36;63;0,57;20,76;34,48;0;Estonia;Eastern Europe;"University of Tartu Press";"2014-2025";"Mathematics (miscellaneous) (Q3)";"Mathematics" +20058;21101051084;"Agricultural and Resource Economics";journal;"2414584X";"Institute of Eastern European Research and Consulting";Yes;No;0,233;Q3;14;48;144;2613;267;144;1,84;54,44;52,29;0;Ukraine;Eastern Europe;"Institute of Eastern European Research and Consulting";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q3); Marketing (Q4)";"Agricultural and Biological Sciences; Business, Management and Accounting" +20059;12597;"American Biology Teacher";journal;"00027685";"National Association of Biology Teachers, Inc";No;No;0,233;Q3;39;69;265;1640;131;220;0,41;23,77;59,18;0;United States;Northern America;"National Association of Biology Teachers, Inc";"1970-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Education (Q3)";"Agricultural and Biological Sciences; Social Sciences" +20060;16238;"Chinese Journal of Pediatrics";journal;"05781310";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,233;Q3;38;259;684;7293;513;678;0,77;28,16;52,26;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1960, 2003-2016, 2019-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +20061;19700175904;"Collegiate Aviation Review";journal;"15235955";"University Aviation Association";No;No;0,233;Q3;10;37;87;1153;64;85;0,59;31,16;29,63;0;United States;Northern America;"University Aviation Association";"2009-2026";"Education (Q3)";"Social Sciences" +20062;21101292992;"Computer Engineering and Applications";journal;"20972938, 10028331";"";No;No;0,233;Q3;22;573;1656;24131;2465;1656;1,49;42,11;37,11;0;China;Asiatic Region;"";"2023-2025";"Computer Networks and Communications (Q3); Computer Vision and Pattern Recognition (Q3); Artificial Intelligence (Q4); Computational Theory and Mathematics (Q4)";"Computer Science" +20063;21101090644;"Corporate and Business Strategy Review";journal;"27089924, 27084965";"Virtus Interpress";No;No;0,233;Q3;13;121;265;5697;520;251;2,13;47,08;37,07;0;Ukraine;Eastern Europe;"Virtus Interpress";"2020-2026";"Decision Sciences (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Strategy and Management (Q3); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences; Earth and Planetary Sciences" +20064;14090;"Development";journal;"10116370, 14617072";"Palgrave Macmillan Ltd.";No;No;0,233;Q3;50;29;113;908;92;103;0,70;31,31;66,67;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1984-1985, 1988-2026";"Development (Q3); Geography, Planning and Development (Q3)";"Social Sciences" +20065;21101176850;"Digestive Medicine Research";journal;"26171627";"AME Publishing Company";No;No;0,233;Q3;4;0;45;0;34;34;0,76;0,00;0,00;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2022-2024";"Gastroenterology (Q3); Hepatology (Q4)";"Medicine" +20066;21100817634;"Discontinuity, Nonlinearity, and Complexity";journal;"21646376, 21646414";"L & H Scientific Publishing, LLC";No;No;0,233;Q3;18;54;175;1667;128;175;0,80;30,87;22,45;0;United States;Northern America;"L & H Scientific Publishing, LLC";"2012-2025";"Computational Mechanics (Q3); Control and Optimization (Q3); Discrete Mathematics and Combinatorics (Q4); Statistical and Nonlinear Physics (Q4)";"Engineering; Mathematics; Physics and Astronomy" +20067;20362;"Electronic Green Journal";journal;"10767975";"University of California, Berkeley";Yes;Yes;0,233;Q3;16;10;21;638;23;21;1,33;63,80;33,33;0;United States;Northern America;"University of California, Berkeley";"2001-2025";"Geography, Planning and Development (Q3)";"Social Sciences" +20068;16718;"Frequenz";journal;"21916349, 00161136";"Walter de Gruyter GmbH";No;No;0,233;Q3;31;76;192;2556;254;191;1,50;33,63;22,32;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1949-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +20069;22826;"Gestion y Politica Publica";journal;"14051079, 24489182";"Centro de Investigacion y Docencia Economicas A.C.";Yes;No;0,233;Q3;16;9;29;673;23;28;0,78;74,78;61,54;0;Mexico;Latin America;"Centro de Investigacion y Docencia Economicas A.C.";"1995-2025";"Political Science and International Relations (Q3); Public Administration (Q3)";"Social Sciences" +20070;21100832761;"International Journal of Fuzzy Logic and Intelligent Systems";journal;"2093744X, 15982645";"Korean Institute of Intelligent Systems";Yes;No;0,233;Q3;21;40;120;1307;174;120;1,31;32,68;23,76;0;South Korea;Asiatic Region;"Korean Institute of Intelligent Systems";"2017-2025";"Logic (Q3); Signal Processing (Q3); Artificial Intelligence (Q4); Computational Theory and Mathematics (Q4); Computer Science Applications (Q4)";"Computer Science; Mathematics" +20071;21101120346;"International Journal of Human Capital in Urban Management";journal;"24764701, 24764698";"Tehran Urban Research and Planning Center";Yes;Yes;0,233;Q3;10;47;128;2682;172;128;1,78;57,06;27,78;0;Iran;Middle East;"Tehran Urban Research and Planning Center";"2019-2026";"Public Administration (Q3); Social Sciences (miscellaneous) (Q3); Urban Studies (Q3); Water Science and Technology (Q3); Management, Monitoring, Policy and Law (Q4); Pollution (Q4); Waste Management and Disposal (Q4)";"Environmental Science; Social Sciences" +20072;16170;"Journal of African Law";journal;"00218553, 14643731";"Cambridge University Press";No;No;0,233;Q3;24;42;78;4565;69;77;0,85;108,69;26,03;0;United Kingdom;Western Europe;"Cambridge University Press";"1957-2000, 2003-2026";"Law (Q3)";"Social Sciences" +20073;21100785514;"Journal of Fishery Sciences of China";journal;"10058737";"Chinese Academy of Fishery Sciences";No;No;0,233;Q3;16;85;405;3997;328;405;0,71;47,02;31,10;0;China;Asiatic Region;"Chinese Academy of Fishery Sciences";"2013, 2016-2025";"Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Management, Monitoring, Policy and Law (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20074;21100237436;"Journal of Information and Knowledge Management";journal;"02196492, 17936926";"World Scientific";No;No;0,233;Q3;30;140;281;7438;417;278;1,49;53,13;41,48;0;Singapore;Asiatic Region;"World Scientific";"2002-2026";"Computer Networks and Communications (Q3); Library and Information Sciences (Q3); Computer Science Applications (Q4)";"Computer Science; Social Sciences" +20075;21100904332;"Journal of Japan Society of Civil Engineers";journal;"21875103";"Japan Society of Civil Engineers";No;No;0,233;Q3;8;60;171;1100;101;171;0,55;18,33;17,01;0;Japan;Asiatic Region;"Japan Society of Civil Engineers";"2018-2025";"Environmental Engineering (Q3); Civil and Structural Engineering (Q4)";"Engineering; Environmental Science" +20076;21101226909;"Journal of Plant Protection";journal;"05777518";"";No;No;0,233;Q3;14;106;527;4676;435;521;0,70;44,11;37,54;0;China;Asiatic Region;"";"2019-2025";"Agronomy and Crop Science (Q3); Horticulture (Q3); Plant Science (Q3); Insect Science (Q4)";"Agricultural and Biological Sciences" +20077;21101180707;"Khazanah Hukum";journal;"27159698";"Universitas Islam Negeri Sunan Gunung Djati";Yes;No;0,233;Q3;8;28;62;1523;65;62;1,28;54,39;36,36;0;Indonesia;Asiatic Region;"Universitas Islam Negeri Sunan Gunung Djati";"2020-2025";"Law (Q3)";"Social Sciences" +20078;26985;"Kinetics and Catalysis";journal;"00231584, 16083210";"";No;No;0,233;Q3;43;51;252;2192;260;250;0,89;42,98;40,31;0;Russian Federation;Eastern Europe;"";"1968-1971, 1984-1992, 1996-2025";"Chemistry (miscellaneous) (Q3); Catalysis (Q4); Computer Science Applications (Q4); Modeling and Simulation (Q4)";"Chemical Engineering; Chemistry; Computer Science; Mathematics" +20079;21100451688;"Lean Construction Journal";journal;"15551369";"Lean Construction Institute";Yes;Yes;0,233;Q3;28;5;28;255;30;25;1,19;51,00;21,43;0;United States;Northern America;"Lean Construction Institute";"2004-2005, 2007-2025";"Building and Construction (Q3); Civil and Structural Engineering (Q4)";"Engineering" +20080;13789;"Low Temperature Physics";journal;"1063777X";"American Institute of Physics";No;No;0,233;Q3;48;204;501;7049;357;484;0,78;34,55;25,87;0;United States;Northern America;"American Institute of Physics";"1997-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +20081;145346;"Machine Graphics and Vision";journal;"2720250X, 12300535";"Institute of Information Technology, Warsaw University of Life Sciences - SGGW";No;No;0,233;Q3;15;15;44;529;47;44;1,08;35,27;18,75;0;Poland;Eastern Europe;"Institute of Information Technology, Warsaw University of Life Sciences - SGGW";"2004-2011, 2013-2014, 2016-2025";"Computer Graphics and Computer-Aided Design (Q3); Computer Vision and Pattern Recognition (Q3); Software (Q4)";"Computer Science" +20082;21100211728;"Oman Journal of Ophthalmology";journal;"09747842, 0974620X";"Wolters Kluwer Medknow Publications";Yes;Yes;0,233;Q3;27;98;347;1355;172;292;0,56;13,83;44,73;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2011-2025";"Ophthalmology (Q3)";"Medicine" +20083;21100896905;"Pensamiento Educativo";journal;"07190409, 07171013";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,233;Q3;13;25;74;1433;70;74;0,98;57,32;48,28;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2018-2025";"Development (Q3); Education (Q3)";"Social Sciences" +20084;21101289588;"Scifood";journal;"29894034";"HACCP Consulting";No;No;0,233;Q3;25;40;197;2048;282;197;1,55;51,20;59,89;0;Slovakia;Eastern Europe;"HACCP Consulting";"2025-2026";"Food Science (Q3)";"Agricultural and Biological Sciences" +20085;21101032633;"Social Psychology and Society";journal;"22211527, 23117052";"Moscow State University of Psychology and Education";Yes;Yes;0,233;Q3;11;48;161;1634;103;159;0,66;34,04;74,14;0;Russian Federation;Eastern Europe;"Moscow State University of Psychology and Education";"2016-2025";"Social Sciences (miscellaneous) (Q3); Applied Psychology (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +20086;18374;"Surface Review and Letters";journal;"17936667, 0218625X";"World Scientific Publishing Co. Pte Ltd";No;No;0,233;Q3;53;236;464;10529;774;464;1,42;44,61;26,07;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1996-2026";"Materials Chemistry (Q3); Surfaces, Coatings and Films (Q3); Condensed Matter Physics (Q4); Surfaces and Interfaces (Q4)";"Materials Science; Physics and Astronomy" +20087;21100914186;"TransNav";journal;"20836473, 20836481";"Faculty of Navigation, Gdynia Maritime University";Yes;No;0,233;Q3;22;160;278;3913;299;278;0,99;24,46;25,81;0;Poland;Eastern Europe;"Faculty of Navigation, Gdynia Maritime University";"2019-2025";"Ocean Engineering (Q3); Oceanography (Q3); Transportation (Q4)";"Earth and Planetary Sciences; Engineering; Social Sciences" +20088;21100808900;"Voprosy Ginekologii, Akusherstva i Perinatologii";journal;"24149152, 17261678";"Dynasty Publishing House";No;No;0,233;Q3;18;123;328;4091;552;327;1,83;33,26;69,75;0;Russian Federation;Eastern Europe;"Dynasty Publishing House";"2016-2025";"Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +20089;21100223575;"Educational and Child Psychology";book series;"02671611, 23968702";"British Psychological Society";No;No;0,233;Q4;36;26;57;1462;58;46;1,21;56,23;68,52;0;United Kingdom;Western Europe;"British Psychological Society";"1997-2025";"Developmental and Educational Psychology (Q4)";"Psychology" +20090;19700173309;"International Journal of Tourism Policy";journal;"17504090, 17504104";"Inderscience Publishers";No;No;0,233;Q4;23;34;97;1527;138;97;1,44;44,91;44,62;0;United Kingdom;Western Europe;"Inderscience Publishers";"2007-2025";"Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting" +20091;19700186831;"Open Civil Engineering Journal";journal;"18741495";"Bentham Science Publishers";Yes;No;0,233;Q4;24;15;115;564;118;115;0,93;37,60;21,05;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2010-2026";"Civil and Structural Engineering (Q4)";"Engineering" +20092;21100198212;"Psicologia Clinica dello Sviluppo";journal;"26121999, 1824078X";"Societa Editrice Il Mulino";No;No;0,233;Q4;15;40;115;905;44;110;0,46;22,63;75,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1998-2025";"Clinical Psychology (Q4); Developmental and Educational Psychology (Q4)";"Psychology" +20093;21100218542;"Collectanea Theologica";journal;"27201481, 01376985";"Cardinal Stefan Wyszynski University in Warsaw";Yes;Yes;0,232;Q1;4;21;107;1260;20;106;0,22;60,00;4,76;0;Poland;Eastern Europe;"Cardinal Stefan Wyszynski University in Warsaw";"2012-2025";"Religious Studies (Q1)";"Arts and Humanities" +20094;21100838569;"Gephyra";journal;"13093924, 26515059";"Akdeniz Universitesi - Akdeniz Dillerini ve Kulturlerini Arastirma Merkezi";Yes;Yes;0,232;Q1;7;28;62;1213;17;62;0,24;43,32;32,43;0;Turkey;Middle East;"Akdeniz Universitesi - Akdeniz Dillerini ve Kulturlerini Arastirma Merkezi";"2017-2025";"Classics (Q1); History (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +20095;21101224865;"Orizzonti";journal;"15912787, 17241936";"Fabrizio Serra Editore";No;No;0,232;Q1;3;11;29;230;9;28;0,11;20,91;35,71;0;Italy;Western Europe;"Fabrizio Serra Editore";"2020-2026";"Classics (Q1); History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20096;21101059922;"Russian Peasant Studies";journal;"25001809, 29492564";"Russian Presidental Academy of National Economy and Public Administration";Yes;Yes;0,232;Q1;6;39;130;1206;42;117;0,31;30,92;42,19;0;Russian Federation;Eastern Europe;"Russian Presidental Academy of National Economy and Public Administration";"2019-2025";"History (Q1); Anthropology (Q2); Archeology (Q2); Cultural Studies (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +20097;21101166963;"Translation Matters";journal;"21844585";"University of Porto Faculty of Arts and Humanities";No;Yes;0,232;Q1;6;21;58;708;37;51;0,71;33,71;56,25;0;Portugal;Western Europe;"University of Porto Faculty of Arts and Humanities";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +20098;21101061448;"AAS Open Research";journal;"25159321";"F1000 Research Ltd";Yes;No;0,232;Q2;10;0;6;0;6;6;1,67;0,00;0,00;0;United Kingdom;Western Europe;"F1000 Research Ltd";"2018-2024";"Multidisciplinary (Q2)";"Multidisciplinary" +20099;21101017027;"Ciudades";journal;"24453943";"Instituto Universitario de Urbanistica de la Universidad de Valladolid";Yes;Yes;0,232;Q2;6;18;35;665;27;35;0,83;36,94;33,33;2;Spain;Western Europe;"Instituto Universitario de Urbanistica de la Universidad de Valladolid";"2019-2025";"Conservation (Q2); Geography, Planning and Development (Q3); Urban Studies (Q3)";"Arts and Humanities; Social Sciences" +20100;21101156894;"International Journal of Applied Power Engineering";journal;"22528792, 27222624";"Intelektual Pustaka Media Utama";No;No;0,232;Q2;8;104;175;3146;231;175;1,43;30,25;21,37;0;Indonesia;Asiatic Region;"Intelektual Pustaka Media Utama";"2022-2025";"Multidisciplinary (Q2); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Control and Systems Engineering (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering; Multidisciplinary" +20101;21101101298;"Advanced Control for Applications: Engineering and Industrial Systems";journal;"25780727";"John Wiley and Sons Inc";No;No;0,232;Q3;13;42;136;1759;160;134;1,09;41,88;22,22;0;United States;Northern America;"John Wiley and Sons Inc";"2019-2026";"Computer Networks and Communications (Q3); Energy (miscellaneous) (Q3); Signal Processing (Q3); Artificial Intelligence (Q4); Computer Science Applications (Q4); Control and Systems Engineering (Q4); Modeling and Simulation (Q4)";"Computer Science; Energy; Engineering; Mathematics" +20102;93592;"Advances in Mind-Body Medicine";journal;"14703556";"InnoVision Communications";No;No;0,232;Q3;28;24;45;0;28;45;0,42;0,00;42,86;0;United States;Northern America;"InnoVision Communications";"1996-2005, 2007-2009, 2012-2026";"Complementary and Alternative Medicine (Q3); Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)";"Medicine" +20103;24582;"Animal Biology";journal;"15707563, 15707555";"Brill Academic Publishers";No;No;0,232;Q3;39;23;84;1301;69;84;0,81;56,57;37,37;0;Netherlands;Western Europe;"Brill Academic Publishers";"2003-2026";"Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +20104;19700188351;"Annals of Burns and Fire Disasters";journal;"15929566, 15929558";"Mediterranean Council for Burns and Fire Disasters";Yes;No;0,232;Q3;34;31;153;923;113;145;0,66;29,77;30,59;0;Italy;Western Europe;"Mediterranean Council for Burns and Fire Disasters";"2010-2025";"Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3); Emergency Nursing (Q3)";"Medicine; Nursing" +20105;19400158438;"Annals of the University of Craiova, Physics";journal;"12236039";"Universitatea din Craiova";No;No;0,232;Q3;12;15;55;401;25;55;0,44;26,73;22,50;0;Romania;Eastern Europe;"Universitatea din Craiova";"2009-2024";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +20106;28662;"Bezopasnost' Truda v Promyshlennosti";journal;"26585537, 04092961";"STC Industrial Safety CJSC";No;No;0,232;Q3;12;160;445;2465;172;444;0,44;15,41;46,56;0;Russian Federation;Eastern Europe;"STC Industrial Safety CJSC";"1980, 2001-2005, 2018-2026";"Energy (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Safety, Risk, Reliability and Quality (Q3); Chemical Health and Safety (Q4)";"Chemical Engineering; Energy; Engineering; Environmental Science" +20107;5100152914;"Educacion Medica";journal;"15751813";"Elsevier Espana S.L.U";Yes;No;0,232;Q3;25;127;228;2486;194;159;0,83;19,57;52,22;0;Spain;Western Europe;"Elsevier Espana S.L.U";"2003-2004, 2006-2012, 2014-2026";"Education (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +20108;21100872375;"Federal Law Review";journal;"14446928, 0067205X";"Cambridge University Press";No;No;0,232;Q3;10;8;68;1099;76;67;0,90;137,38;54,55;0;United Kingdom;Western Europe;"Cambridge University Press";"2006, 2018-2025";"Law (Q3)";"Social Sciences" +20109;19200156909;"Indian Journal of Pharmaceutical Education and Research";journal;"00195464";"Association of Pharmaceutical Teachers of India";No;No;0,232;Q3;34;276;735;10684;925;727;1,17;38,71;37,38;0;India;Asiatic Region;"Association of Pharmaceutical Teachers of India";"2008-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +20110;21100396293;"International Journal of Electronic Finance";journal;"17460077, 17460069";"Inderscience";No;No;0,232;Q3;22;27;71;1182;135;71;2,04;43,78;29,55;0;Switzerland;Western Europe;"Inderscience";"2006-2016, 2018-2026";"Computer Networks and Communications (Q3); Finance (Q3); Computer Science Applications (Q4); E-learning (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Computer Science; Economics, Econometrics and Finance; Social Sciences" +20111;19900193543;"Iranian Journal of Fisheries Sciences";journal;"15622916";"Iranian Fisheries Research Organization";No;No;0,232;Q3;31;89;229;4493;231;229;1,03;50,48;34,98;0;Iran;Middle East;"Iranian Fisheries Research Organization";"2008-2026";"Aquatic Science (Q3)";"Agricultural and Biological Sciences" +20112;21100873489;"Journal of Child Science";journal;"24745871";"Georg Thieme Verlag";Yes;No;0,232;Q3;12;0;50;0;49;48;0,62;0,00;0,00;0;Germany;Western Europe;"Georg Thieme Verlag";"2017-2024";"Pediatrics, Perinatology and Child Health (Q3); Surgery (Q3)";"Medicine" +20113;21101284191;"Journal of Crop Breeding";journal;"22286128, 26764628";"Sari Agricultural Sciences and Natural Resources University";Yes;No;0,232;Q3;6;48;208;2049;109;208;0,58;42,69;22,90;0;Iran;Middle East;"Sari Agricultural Sciences and Natural Resources University";"2021-2025";"Agronomy and Crop Science (Q3); Plant Science (Q3); Biotechnology (Q4); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +20114;21101073316;"Journal of Health and Safety at Work";journal;"23832088, 2251807X";"Tehran University of Medical Sciences";Yes;Yes;0,232;Q3;10;50;152;2109;105;152;0,64;42,18;40,23;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2025";"Human Factors and Ergonomics (Q3); Public Health, Environmental and Occupational Health (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3); Management, Monitoring, Policy and Law (Q4); Pollution (Q4)";"Engineering; Environmental Science; Medicine; Social Sciences" +20115;11400153309;"Journal of Hematopathology";journal;"18689256, 18655785";"Springer Science and Business Media Deutschland GmbH";No;No;0,232;Q3;22;61;128;1204;78;106;0,80;19,74;46,49;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2008-2026";"Pathology and Forensic Medicine (Q3); Hematology (Q4); Histology (Q4)";"Medicine" +20116;21100456639;"Journal of Integrated Coastal Zone Management";journal;"16468872";"APRH (Associacao Portuguesa dos Recursos Hidricos)";No;No;0,232;Q3;15;5;43;165;28;36;0,39;33,00;44,44;0;Portugal;Western Europe;"APRH (Associacao Portuguesa dos Recursos Hidricos)";"2015-2025";"Aquatic Science (Q3); Environmental Engineering (Q3); Management, Monitoring, Policy and Law (Q4); Ocean Engineering (Q4); Oceanography (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering; Environmental Science" +20117;21100900135;"Journal of International and Comparative Law";journal;"23133775";"Sweet and Maxwell-Thomson Reuters";No;No;0,232;Q3;7;17;48;1883;24;47;0,42;110,76;36,00;0;Hong Kong;Asiatic Region;"Sweet and Maxwell-Thomson Reuters";"2018-2025";"Law (Q3)";"Social Sciences" +20118;21101061455;"Journal of Library and Information Science in Agriculture";journal;"10021248";"Agricultural Information Institute, Chinese Academy of Agricultural Sciences";Yes;No;0,232;Q3;9;53;297;1970;199;297;0,78;37,17;41,98;0;China;Asiatic Region;"Agricultural Information Institute, Chinese Academy of Agricultural Sciences";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Library and Information Sciences (Q3)";"Agricultural and Biological Sciences; Social Sciences" +20119;27358;"New Review of Information Networking";journal;"13614576, 17407869";"Taylor and Francis Ltd.";No;No;0,232;Q3;17;9;17;461;21;15;0,80;51,22;37,93;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2008, 2010-2026";"Computer Networks and Communications (Q3); Education (Q3); Information Systems (Q3); Human-Computer Interaction (Q4)";"Computer Science; Social Sciences" +20120;21101185610;"Physio-Geo";journal;"1958573X";"";Yes;Yes;0,232;Q3;7;8;32;240;27;29;0,65;30,00;31,58;1;France;Western Europe;"";"2019-2025";"Earth-Surface Processes (Q3); Ecology (Q3); Nature and Landscape Conservation (Q3); Water Science and Technology (Q4)";"Earth and Planetary Sciences; Environmental Science" +20121;34862;"Proceedings of the Yorkshire Geological Society";journal;"20414811, 00440604";"Geological Society of London";No;No;0,232;Q3;25;4;16;254;11;16;0,38;63,50;25,00;0;United Kingdom;Western Europe;"Geological Society of London";"1839, 1842, 1849, 1859, 1869, 1871, 1878-1897, 1899-1911, 1914-1916, 1918, 1922-1923, 1925-1945, 1947-1991, 1993-2026";"Geology (Q3)";"Earth and Planetary Sciences" +20122;21101334953;"Research for All";journal;"23998121";"UCL Press";Yes;No;0,232;Q3;7;14;55;476;70;53;1,07;34,00;78,67;0;United Kingdom;Western Europe;"UCL Press";"2021-2026";"Education (Q3)";"Social Sciences" +20123;21101067148;"Revista Mexicana de Ciencias Forestales";journal;"20071132, 24486671";"National Institute of Forestry, Agricultural and Livestock Research";Yes;No;0,232;Q3;11;45;142;1663;99;140;0,66;36,96;22,78;0;Mexico;Latin America;"National Institute of Forestry, Agricultural and Livestock Research";"1999, 2019-2026";"Ecology (Q3); Forestry (Q3); Nature and Landscape Conservation (Q3)";"Agricultural and Biological Sciences; Environmental Science" +20124;19163;"Russian Electrical Engineering";journal;"10683712, 19348010";"Pleiades Publishing";No;No;0,232;Q3;29;156;441;1564;189;441;0,47;10,03;21,10;0;United States;Northern America;"Pleiades Publishing";"2002-2025";"Electrical and Electronic Engineering (Q3)";"Engineering" +20125;19700174664;"SAE International Journal of Commercial Vehicles";journal;"1946391X, 19463928";"SAE International";No;No;0,232;Q3;29;36;66;956;70;64;0,95;26,56;14,29;0;United States;Northern America;"SAE International";"2009-2025";"Automotive Engineering (Q3)";"Engineering" +20126;21100898771;"Strategies";journal;"21683778, 08924562";"Taylor and Francis Ltd.";No;No;0,232;Q3;17;53;149;740;87;111;0,36;13,96;47,54;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988, 1990, 1996-2026";"Education (Q3); Orthopedics and Sports Medicine (Q4)";"Medicine; Social Sciences" +20127;17600155132;"Turkish Journal of Biochemistry";journal;"02504685, 1303829X";"Walter de Gruyter GmbH";Yes;No;0,232;Q3;26;164;302;6154;300;291;0,99;37,52;50,40;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2009-2026";"Biochemistry (medical) (Q3); Biochemistry (Q4); Clinical Biochemistry (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +20128;22178;"Zhendong Ceshi Yu Zhenduan/Journal of Vibration, Measurement and Diagnosis";journal;"10046801";"Nanjing University of Aeronautics an Astronautics";Yes;No;0,232;Q3;25;111;485;1776;368;485;0,67;16,00;30,75;0;China;Asiatic Region;"Nanjing University of Aeronautics an Astronautics";"1998, 2000-2025";"Acoustics and Ultrasonics (Q3); Instrumentation (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)";"Engineering; Physics and Astronomy" +20129;21101152855;"Addicta: the Turkish Journal on Addictions";journal;"21491305, 21487286";"AVES";Yes;Yes;0,232;Q4;13;64;139;2659;102;136;0,65;41,55;46,43;0;Turkey;Middle East;"AVES";"2019-2025";"Biological Psychiatry (Q4); Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4)";"Medicine; Neuroscience; Psychology" +20130;15728;"Gradevinar";trade journal;"03502465, 13339095";"Croatian Association of Civil Engineers";Yes;No;0,232;Q4;29;125;244;2192;169;198;0,55;17,54;28,22;0;Croatia;Eastern Europe;"Croatian Association of Civil Engineers";"1980, 1985, 1994, 1996, 2000-2025";"Civil and Structural Engineering (Q4)";"Engineering" +20131;21101044205;"Immunopathologia Persa";journal;"24238015";"Nickan Research Institute";No;No;0,232;Q4;10;47;105;1451;85;105;1,00;30,87;45,34;0;Iran;Middle East;"Nickan Research Institute";"2019-2026";"Endocrinology, Diabetes and Metabolism (Q4); Hematology (Q4); Immunology (Q4); Immunology and Microbiology (miscellaneous) (Q4)";"Immunology and Microbiology; Medicine" +20132;19700175025;"International Journal of Medical Engineering and Informatics";journal;"17550653, 17550661";"Inderscience Publishers";No;No;0,232;Q4;19;50;140;1388;132;140;0,65;27,76;31,58;0;United Kingdom;Western Europe;"Inderscience Publishers";"2008-2026";"Biomaterials (Q4); Biomedical Engineering (Q4); Health Informatics (Q4); Medicine (miscellaneous) (Q4)";"Engineering; Materials Science; Medicine" +20133;21100931377;"Journal of Ocean and Coastal Economics";journal;"23738456";"Berkeley Electronic Press";No;No;0,232;Q4;9;3;14;133;16;14;1,27;44,33;35,71;0;United States;Northern America;"Berkeley Electronic Press";"2019-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +20134;21100326272;"Russian Journal of Cardiology";journal;"26187620, 15604071";"Silicea-Poligraf";Yes;Yes;0,232;Q4;33;200;620;7635;659;611;1,13;38,18;58,40;0;Russian Federation;Eastern Europe;"Silicea-Poligraf";"2008-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +20135;21101039772;"SAGE Open Medical Case Reports";journal;"2050313X";"SAGE Publications Ltd";Yes;No;0,232;Q4;12;252;1067;4026;753;1067;0,68;15,98;45,39;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2013-2015, 2017-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +20136;3300147904;"Yi chuan = Hereditas / Zhongguo yi chuan xue hui bian ji";journal;"02539772";"Ke xue chu ban she";No;No;0,232;Q4;26;95;229;0;188;229;0,90;0,00;42,30;0;China;Asiatic Region;"Ke xue chu ban she";"2004-2016, 2019-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +20137;23492;"Yugoslav Journal of Operations Research";journal;"03540243, 23346043";"Faculty of Organizational Sciences, University of Belgrade";Yes;Yes;0,232;Q4;28;40;118;1862;187;117;1,64;46,55;37,25;0;Serbia;Eastern Europe;"Faculty of Organizational Sciences, University of Belgrade";"1994-1997, 1999-2025";"Management Science and Operations Research (Q4)";"Decision Sciences" +20138;21101037312;"Asian-European Music Research Journal";journal;"27012689, 2625378X";"Logos Verlag Berlin GmbH";Yes;Yes;0,231;Q1;3;23;59;440;18;59;0,36;19,13;52,17;0;Germany;Western Europe;"Logos Verlag Berlin GmbH";"2020-2025";"History (Q1); Museology (Q2); Music (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +20139;21101184724;"Capitalism";journal;"25766406, 25766392";"University of Pennsylvania Press";No;No;0,231;Q1;8;0;42;0;31;34;0,73;0,00;0,00;0;United States;Northern America;"University of Pennsylvania Press";"2019-2024";"History (Q1); Economics and Econometrics (Q4)";"Arts and Humanities; Economics, Econometrics and Finance" +20140;5600153502;"Postcolonial Studies";journal;"14661888, 13688790";"Routledge";No;No;0,231;Q1;33;8;90;472;131;77;0,93;59,00;66,67;0;United Kingdom;Western Europe;"Routledge";"2005, 2010-2026";"History (Q1); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +20141;21100900129;"Childhood and Philosophy";journal;"25255061, 19845987";"State Univ of Rio de Janeiro - Center of Childhood and Philosophy Studies";Yes;Yes;0,231;Q2;8;43;118;1654;59;118;0,60;38,47;53,85;0;Brazil;Latin America;"State Univ of Rio de Janeiro - Center of Childhood and Philosophy Studies";"2018-2026";"Philosophy (Q2); Education (Q3); Developmental and Educational Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +20142;5800207553;"Linguistics in the Netherlands";journal;"09297332, 15699919";"John Benjamins Publishing Company";No;No;0,231;Q2;19;0;38;0;20;36;0,55;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1996-2023";"Health Professions (miscellaneous) (Q2); Linguistics and Language (Q2); Multidisciplinary (Q2); Social Sciences (miscellaneous) (Q3); Psychology (miscellaneous) (Q4)";"Health Professions; Multidisciplinary; Psychology; Social Sciences" +20143;21101337822;"Polytechnic Journal";journal;"27077799, 23135727";"Erbil Polytechnic University";Yes;No;0,231;Q2;7;19;105;782;141;105;1,57;41,16;22,50;0;Iraq;Middle East;"Erbil Polytechnic University";"2021-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +20144;16000154724;"South African Journal of Philosophy";journal;"02580136, 20734867";"Taylor and Francis Ltd.";No;No;0,231;Q2;29;49;89;1938;55;87;0,45;39,55;25,58;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998-2026";"Philosophy (Q2)";"Arts and Humanities" +20145;21101194300;"Technology and Language";journal;"27129934";"St. Petersburg Polytechnic University of Peter the Great";No;No;0,231;Q2;9;56;131;1535;39;123;0,40;27,41;51,52;0;Russian Federation;Eastern Europe;"St. Petersburg Polytechnic University of Peter the Great";"2020-2025";"Cultural Studies (Q2); History and Philosophy of Science (Q2); Engineering (miscellaneous) (Q3)";"Arts and Humanities; Engineering; Social Sciences" +20146;21100439337;"Acta Agrobotanica";journal;"2300357X, 00650951";"Polish Botanical Society";Yes;No;0,231;Q3;21;15;64;923;69;63;0,92;61,53;35,62;0;Poland;Eastern Europe;"Polish Botanical Society";"1953-1962, 1964-1979, 1987, 2013-2025";"Agronomy and Crop Science (Q3); Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +20147;17300154973;"Acta Scientiarum Polonorum, Technologia Alimentaria";journal;"18989594, 16440730";"Wydawnictwo Uniwersytetu Przyrodniczego w Poznaniu";Yes;No;0,231;Q3;42;40;119;1919;127;119;1,03;47,98;54,14;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Przyrodniczego w Poznaniu";"2009-2025";"Food Science (Q3)";"Agricultural and Biological Sciences" +20148;11900154316;"Anales del Jardin Botanico de Madrid";journal;"02111322, 19883196";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,231;Q3;28;0;32;0;19;32;0,44;0,00;0,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1997-2002, 2004-2024";"Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +20149;100147015;"Applied Ecology and Environmental Research";journal;"17850037, 15891623";"Corvinus University of Budapest";Yes;No;0,231;Q3;53;632;1036;31917;969;1036;0,92;50,50;36,35;0;Hungary;Eastern Europe;"Corvinus University of Budapest";"2003, 2005-2026";"Agronomy and Crop Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +20150;21101061439;"Asian Journal of Dairy and Food Research";journal;"09760563, 09714456";"Agricultural Research Communication Centre";No;No;0,231;Q3;12;188;296;5634;329;296;1,12;29,97;40,22;0;India;Asiatic Region;"Agricultural Research Communication Centre";"2019-2026";"Animal Science and Zoology (Q3); Food Science (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +20151;144721;"Chinese Journal of Contemporary Pediatrics";journal;"20969228, 10088830";"Central South University";No;No;0,231;Q3;25;226;623;6485;444;620;0,66;28,69;52,36;0;China;Asiatic Region;"Central South University";"2005-2026";"Pediatrics, Perinatology and Child Health (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +20152;19121;"Chinese Journal of Tuberculosis and Respiratory Diseases";journal;"10010939";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,231;Q3;30;161;486;5624;342;465;0,81;34,93;50,67;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1987-2016, 2019-2026";"Infectious Diseases (Q3); Internal Medicine (Q3); Medicine (miscellaneous) (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +20153;5800208514;"Communication Teacher";journal;"17404622, 17404630";"Taylor and Francis Ltd.";No;No;0,231;Q3;16;71;136;1113;99;134;0,77;15,68;65,66;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Communication (Q3); Education (Q3)";"Social Sciences" +20154;21101273214;"Corporate Governance and Sustainability Review";journal;"2519898X, 25198971";"Virtus Interpress";No;No;0,231;Q3;8;65;52;3483;83;44;1,92;53,58;46,43;0;Ukraine;Eastern Europe;"Virtus Interpress";"2021-2026";"Accounting (Q3); Strategy and Management (Q3); Economics and Econometrics (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +20155;21100871687;"European Journal of Ecology";journal;"13398474";"University of Kansas";Yes;Yes;0,231;Q3;16;9;47;466;61;47;1,39;51,78;15,38;0;United States;Northern America;"University of Kansas";"2015-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20156;18048;"Feddes Repertorium";journal;"1522239X, 00148962";"Wiley-Blackwell";No;No;0,231;Q3;30;43;87;1295;50;87;0,48;30,12;22,43;0;United States;Northern America;"Wiley-Blackwell";"1965-1987, 1989-2026";"Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +20157;5400152636;"Fundamental and Applied Limnology";journal;"23637110, 18639135";"Schweizerbart Science Publishers";No;No;0,231;Q3;74;6;47;341;25;47;0,50;56,83;50,00;0;Germany;Western Europe;"Schweizerbart Science Publishers";"2007-2025";"Aquatic Science (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20158;3300147407;"IEEJ Transactions on Power and Energy";journal;"03854213, 13488147";"The Institute of Electrical Engineers of Japan";No;No;0,231;Q3;29;79;277;1437;95;267;0,32;18,19;9,27;0;Japan;Asiatic Region;"The Institute of Electrical Engineers of Japan";"1972-1989, 2003-2026";"Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q4)";"Energy; Engineering" +20159;19700166503;"Journal of Advanced Computational Intelligence and Intelligent Informatics";journal;"13430130, 18838014";"Fuji Technology Press";Yes;No;0,231;Q3;34;148;379;3914;413;378;1,01;26,45;29,58;0;Japan;Asiatic Region;"Fuji Technology Press";"1997-2025";"Computer Vision and Pattern Recognition (Q3); Artificial Intelligence (Q4); Human-Computer Interaction (Q4)";"Computer Science" +20160;21100790059;"Journal of Entomological and Acarological Research";journal;"2038324X, 22797084";"Page Press Publications";Yes;No;0,231;Q3;11;7;28;326;30;28;1,11;46,57;47,62;0;Italy;Western Europe;"Page Press Publications";"2016-2026";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20161;23368;"Journal of Environmental Health";journal;"00220892";"National Environmental Health Association";No;No;0,231;Q3;43;67;231;1096;69;123;0,22;16,36;60,87;0;United States;Northern America;"National Environmental Health Association";"1973-2026";"Public Health, Environmental and Occupational Health (Q3); Health, Toxicology and Mutagenesis (Q4); Management, Monitoring, Policy and Law (Q4); Medicine (miscellaneous) (Q4)";"Environmental Science; Medicine" +20162;21101088821;"Journal of Frontiers of Computer Science and Technology";journal;"16739418";"";Yes;No;0,231;Q3;24;187;682;10004;1041;682;1,77;53,50;37,96;0;China;Asiatic Region;"";"2019-2025";"Computer Science (miscellaneous) (Q3)";"Computer Science" +20163;21101018306;"Journal of Investing";journal;"21688613, 10680896";"Portfolio Management Research";No;No;0,231;Q3;11;48;161;1168;75;139;0,49;24,33;20,25;0;United States;Northern America;"Portfolio Management Research";"1992, 1996-1997, 1999-2000, 2003, 2008, 2013, 2018-2025";"Finance (Q3); Strategy and Management (Q3); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +20164;21100857166;"Journal of Nuts";journal;"23833416, 2383319X";"Islamic Azad University";Yes;No;0,231;Q3;11;20;69;898;75;69;0,93;44,90;38,33;0;Iran;Middle East;"Islamic Azad University";"2017-2025";"Agronomy and Crop Science (Q3); Plant Science (Q3); Soil Science (Q3)";"Agricultural and Biological Sciences" +20165;21101248370;"Journal of Partial Differential Equations";journal;"2079732X, 1000940X";"Global Science Press";No;No;0,231;Q3;7;28;76;689;27;76;0,10;24,61;36,07;0;Hong Kong;Asiatic Region;"Global Science Press";"2020-2025";"Computational Mathematics (Q3); Analysis (Q4); Applied Mathematics (Q4); Numerical Analysis (Q4)";"Mathematics" +20166;21101152136;"Journal of the Bulgarian Geographical Society";journal;"27388115, 27388107";"Bulgarian Geographical Society";Yes;Yes;0,231;Q3;10;20;54;1139;67;54;1,40;56,95;46,77;0;Bulgaria;Eastern Europe;"Bulgarian Geographical Society";"2021-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3); Nature and Landscape Conservation (Q3); Ecological Modeling (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +20167;21101268226;"National Psychological Journal";journal;"20796617, 23099828";"Lomonosov Moscow State University";Yes;Yes;0,231;Q3;6;48;146;1599;103;145;0,71;33,31;67,52;0;Russian Federation;Eastern Europe;"Lomonosov Moscow State University";"2020-2026";"Education (Q3); Applied Psychology (Q4); Experimental and Cognitive Psychology (Q4); Psychology (miscellaneous) (Q4)";"Psychology; Social Sciences" +20168;21101021753;"Online Journal of Animal and Feed Research";journal;"22287701";"Scienceline Publication";No;No;0,231;Q3;9;34;161;1336;160;161;0,91;39,29;37,50;0;Turkey;Middle East;"Scienceline Publication";"2019-2025";"Animal Science and Zoology (Q3); Ecology (Q3); Food Science (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Environmental Science; Veterinary" +20169;58246;"Outlooks on Pest Management";journal;"17431034, 17431026";"Research Information Ltd";No;No;0,231;Q3;42;26;95;307;50;57;0,68;11,81;23,40;0;United Kingdom;Western Europe;"Research Information Ltd";"2004-2025";"Agronomy and Crop Science (Q3); Food Science (Q3); Biotechnology (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +20170;21717;"Pharmazie";journal;"00317144";"Avoxa – Mediengruppe Deutscher Apotheker GmbH";No;No;0,231;Q3;77;30;146;967;127;146;0,73;32,23;32,56;0;Germany;Western Europe;"Avoxa – Mediengruppe Deutscher Apotheker GmbH";"1947-2025";"Pharmaceutical Science (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +20171;21100409900;"Protection of Metals and Physical Chemistry of Surfaces";journal;"2070206X, 20702051";"Pleiades Publishing";No;No;0,231;Q3;39;126;400;4899;429;399;1,15;38,88;43,56;0;United States;Northern America;"Pleiades Publishing";"2009-2025";"Materials Chemistry (Q3); Metals and Alloys (Q3); Surfaces, Coatings and Films (Q3); Organic Chemistry (Q4)";"Chemistry; Materials Science" +20172;21100223785;"Pythagoras";journal;"22237895, 10122346";"AOSIS (Pty) Ltd";Yes;No;0,231;Q3;15;10;39;522;38;35;0,81;52,20;35,48;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2012-2025";"Education (Q3); Mathematics (miscellaneous) (Q4)";"Mathematics; Social Sciences" +20173;12609;"Rivista Geografica Italiana";journal;"2499748X, 00356697";"FrancoAngeli Edizioni";No;No;0,231;Q3;8;25;84;1411;52;81;0,53;56,44;45,95;0;Italy;Western Europe;"FrancoAngeli Edizioni";"1980, 1982-1983, 1986, 1989, 1992, 1995, 2013-2025";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +20174;144737;"Russian Physics Journal";journal;"15739228, 10648887";"Springer New York";No;No;0,231;Q3;28;257;889;4685;580;888;0,73;18,23;30,79;0;United States;Northern America;"Springer New York";"1990, 1992-2003, 2005-2026";"Physics and Astronomy (miscellaneous) (Q3)";"Physics and Astronomy" +20175;23954;"Sensor Review";journal;"02602288";"Emerald Group Publishing Ltd.";No;No;0,231;Q3;54;115;161;5013;353;161;2,39;43,59;31,38;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1981-2026";"Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3)";"Engineering" +20176;5600153133;"Sociedade e Estado";journal;"19805462, 01026992";"Universidade de Brasilia";Yes;Yes;0,231;Q3;23;35;117;1586;48;107;0,28;45,31;58,82;0;Brazil;Latin America;"Universidade de Brasilia";"2007-2025";"Geography, Planning and Development (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20177;54988;"South African Journal of Animal Science";journal;"03751589, 22214062";"South African Society for Animal Science";Yes;No;0,231;Q3;46;45;235;2287;206;234;0,79;50,82;30,63;0;South Africa;Africa;"South African Society for Animal Science";"1974, 1996-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +20178;9600153103;"Surgery (United Kingdom)";journal;"18781764, 02639319";"Elsevier Ltd";No;No;0,231;Q3;31;108;342;1970;323;342;0,65;18,24;28,50;0;United Kingdom;Western Europe;"Elsevier Ltd";"2006-2026";"Surgery (Q3)";"Medicine" +20179;15156;"Zhejiang Daxue Xuebao (Gongxue Ban)/Journal of Zhejiang University (Engineering Science)";journal;"1008973X";"Zhejiang University";No;No;0,231;Q3;31;268;774;7859;815;774;1,03;29,32;31,52;0;China;Asiatic Region;"Zhejiang University";"1987, 2001-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +20180;19700175301;"Bulletin Mathematique de la Societe des Sciences Mathematiques de Roumanie";journal;"12203874";"Societatea de Stiinte Matematice din Romania";Yes;No;0,231;Q4;25;16;99;287;35;96;0,32;17,94;36,11;0;Romania;Eastern Europe;"Societatea de Stiinte Matematice din Romania";"2008-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +20181;30232;"Economic Computation and Economic Cybernetics Studies and Research";journal;"0424267X, 18423264";"Editura Academia de studii economice";No;No;0,231;Q4;25;73;234;1981;268;234;1,21;27,14;45,83;0;Romania;Eastern Europe;"Editura Academia de studii economice";"1968-1969, 1971-1973, 1975-1989, 2008-2025";"Applied Mathematics (Q4); Computer Science Applications (Q4); Economics and Econometrics (Q4)";"Computer Science; Economics, Econometrics and Finance; Mathematics" +20182;29428;"Fluctuation and Noise Letters";journal;"17936780, 02194775";"World Scientific";No;No;0,231;Q4;38;106;212;3481;269;209;1,29;32,84;31,17;0;Singapore;Asiatic Region;"World Scientific";"2004-2008, 2010-2026";"Mathematics (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Mathematics; Physics and Astronomy" +20183;27935;"Folia Medica Cracoviensia";journal;"00155616";"Polska Akademia Nauk";No;No;0,231;Q4;22;60;128;2344;102;128;0,56;39,07;54,93;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1960, 1964-1982, 1984-2009, 2011-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +20184;29725;"Hongwai Yu Haomibo Xuebao/Journal of Infrared and Millimeter Waves";journal;"10019014";"Chinese Optical Society";Yes;No;0,231;Q4;32;107;346;3272;296;346;0,74;30,58;27,86;0;China;Asiatic Region;"Chinese Optical Society";"1991-2026";"Atomic and Molecular Physics, and Optics (Q4)";"Physics and Astronomy" +20185;21100464514;"International Journal of Applied Mechanics and Engineering";journal;"23539003, 17344492";"University of Zielona Gora";Yes;No;0,231;Q4;20;40;140;1341;164;140;0,90;33,53;17,39;0;Poland;Eastern Europe;"University of Zielona Gora";"2015-2025";"Civil and Structural Engineering (Q4); Fluid Flow and Transfer Processes (Q4); Transportation (Q4)";"Chemical Engineering; Engineering; Social Sciences" +20186;21100201309;"International Journal of Dream Research";journal;"18667953";"Universitaet Heidelberg";Yes;No;0,231;Q4;23;42;81;1532;43;81;0,54;36,48;50,70;0;Germany;Western Europe;"Universitaet Heidelberg";"2011-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +20187;21100976125;"Journal of Algebraic Systems";journal;"2345511X";"Shahrood University of Technology";Yes;Yes;0,231;Q4;5;47;72;838;35;71;0,45;17,83;23,29;0;Iran;Middle East;"Shahrood University of Technology";"2019-2026";"Algebra and Number Theory (Q4); Discrete Mathematics and Combinatorics (Q4); Geometry and Topology (Q4)";"Mathematics" +20188;21100855990;"Journal of Dynamics and Games";journal;"21646074";"American Institute of Mathematical Sciences";No;No;0,231;Q4;15;29;73;895;59;73;0,89;30,86;32,76;0;United States;Northern America;"American Institute of Mathematical Sciences";"2014-2026";"Applied Mathematics (Q4); Modeling and Simulation (Q4); Statistics and Probability (Q4)";"Mathematics" +20189;18601;"Pneumologie";journal;"14388790, 09348387";"Georg Thieme Verlag";No;No;0,231;Q4;50;199;575;3090;215;253;0,37;15,53;34,68;0;Germany;Western Europe;"Georg Thieme Verlag";"1989-2026";"Medicine (miscellaneous) (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +20190;21101022226;"Quantum Studies: Mathematics and Foundations";journal;"21965617, 21965609";"Springer International Publishing";No;No;0,231;Q4;18;29;91;1609;80;91;0,93;55,48;11,11;0;Switzerland;Western Europe;"Springer International Publishing";"2014-2026";"Atomic and Molecular Physics, and Optics (Q4); Mathematical Physics (Q4)";"Mathematics; Physics and Astronomy" +20191;19913;"Ruan Jian Xue Bao/Journal of Software";journal;"10009825";"Chinese Academy of Sciences";No;No;0,231;Q4;77;166;861;11196;1118;856;1,30;67,45;29,06;0;China;Asiatic Region;"Chinese Academy of Sciences";"1995-2025";"Software (Q4)";"Computer Science" +20192;25805;"UPB Scientific Bulletin, Series A: Applied Mathematics and Physics";journal;"22863672, 12237027";"Politechnica University of Bucharest";Yes;No;0,231;Q4;34;70;215;1691;125;215;0,45;24,16;40,00;0;Romania;Eastern Europe;"Politechnica University of Bucharest";"1996-2002, 2004-2025";"Applied Mathematics (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Mathematics; Physics and Astronomy" +20193;21100307487;"Proceedings of the European Conference on e-Learning, ECEL";conference and proceedings;"20488637, 20488645";"Academic Conferences and Publishing International Limited";No;No;0,231;-;15;63;186;1423;174;180;1,03;22,59;51,85;0;United Kingdom;Western Europe;"Academic Conferences and Publishing International Limited";"2011, 2013-2025";"Computer Science (miscellaneous); Education; E-learning";"Computer Science; Social Sciences" +20194;21100266738;"Buddhist Studies Review";journal;"17479681, 02652897";"Equinox Publishing Ltd";No;No;0,230;Q1;9;4;32;148;9;29;0,22;37,00;0,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2007, 2013-2025";"Religious Studies (Q1)";"Arts and Humanities" +20195;19404;"Hispania - Revista Espanola de Historia";journal;"00182141, 19888368";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,230;Q1;18;18;89;1137;24;87;0,25;63,17;25,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1968, 1974, 1978-1979, 1990, 1996-2025";"History (Q1)";"Arts and Humanities" +20196;16239;"Journal of Law and Religion";journal;"21633088, 07480814";"Cambridge University Press";No;No;0,230;Q1;22;4;76;684;52;66;0,68;171,00;0,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1983-1996, 1998-2010, 2012-2026";"Religious Studies (Q1); Law (Q3)";"Arts and Humanities; Social Sciences" +20197;5700163965;"NAN NU";journal;"15685268, 13876805";"Brill Academic Publishers";No;No;0,230;Q1;15;9;31;1131;17;24;0,48;125,67;60,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1999, 2001-2002, 2007-2025";"History (Q1); Literature and Literary Theory (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +20198;21100914238;"Asiascape: Digital Asia";journal;"22142312, 22142304";"Brill Academic Publishers";No;No;0,230;Q2;13;13;38;798;54;38;1,12;61,38;56,25;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2025";"Anthropology (Q2); Cultural Studies (Q2); Communication (Q3)";"Social Sciences" +20199;21100198726;"Etnoloska Tribina";journal;"03511944";"Croatian Ethnological Society";Yes;Yes;0,230;Q2;10;13;34;320;17;29;0,57;24,62;50,00;0;Croatia;Eastern Europe;"Croatian Ethnological Society";"2011-2025";"Anthropology (Q2); Cultural Studies (Q2)";"Social Sciences" +20200;37485;"Plains Anthropologist";journal;"2052546X, 00320447";"Taylor and Francis Ltd.";No;No;0,230;Q2;23;2;44;86;15;37;0,19;43,00;28,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1960, 1963, 1965, 1972-1973, 1975-1976, 1978-1982, 1984-1986, 1988-1989, 1992, 1996-2026";"Anthropology (Q2)";"Social Sciences" +20201;25490;"Tongji Daxue Xuebao/Journal of Tongji University";journal;"0253374X";"Editorial Department of Journal of Tongji University";No;No;0,230;Q2;41;224;701;5298;568;701;0,80;23,65;31,57;0;China;Asiatic Region;"Editorial Department of Journal of Tongji University";"1999-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +20202;21101210082;"Traditional Dwellings and Settlements Review";journal;"10502092";"International Association for the Study of Traditional Environments (IASTE)";No;No;0,230;Q2;3;2;25;77;8;18;0,29;38,50;100,00;0;United States;Northern America;"International Association for the Study of Traditional Environments (IASTE)";"2019-2025";"Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +20203;19700176046;"Boletim do Instituto de Pesca";journal;"16782305, 00469939";"Instituto de Pesca";Yes;No;0,230;Q3;24;28;98;1493;91;98;0,85;53,32;35,14;0;Brazil;Latin America;"Instituto de Pesca";"2009-2026";"Animal Science and Zoology (Q3); Aquatic Science (Q4)";"Agricultural and Biological Sciences" +20204;21101041937;"Egyptian Pharmaceutical Journal";journal;"20909853, 16874315";"";No;No;0,230;Q3;13;49;194;2567;186;194;0,96;52,39;59,64;0;India;Asiatic Region;"";"2019-2026";"Applied Microbiology and Biotechnology (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Pharmaceutical Science (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Toxicology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +20205;21101067707;"European Journal of Biology";journal;"26022575, 26186144";"Istanbul University Press";Yes;Yes;0,230;Q3;7;16;90;802;87;90;1,05;50,13;59,18;0;Turkey;Middle East;"Istanbul University Press";"2019-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biotechnology (Q4); Cell Biology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +20206;21100370875;"Flora Montiberica";journal;"11385952, 1988799X";"Flora Montiberica";Yes;Yes;0,230;Q3;9;36;162;993;39;162;0,24;27,58;7,04;0;Spain;Western Europe;"Flora Montiberica";"2014-2025";"Ecology (Q3); Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20207;29686;"Guang Pu Xue Yu Guang Pu Fen Xi/Spectroscopy and Spectral Analysis";journal;"10000593";"";No;No;0,230;Q3;40;539;1599;12332;1791;1599;1,16;22,88;37,06;0;China;Asiatic Region;"";"1990-2025";"Instrumentation (Q3); Spectroscopy (Q4)";"Chemistry; Physics and Astronomy" +20208;21100440516;"International Journal of Computer Information Systems and Industrial Management Applications";journal;"21507988";"Cerebration Science Publishing";Yes;No;0,230;Q3;15;153;136;5258;169;136;1,27;34,37;40,46;0;United States;Northern America;"Cerebration Science Publishing";"2015-2026";"Computer Vision and Pattern Recognition (Q3); Information Systems (Q3); Management Information Systems (Q3); Signal Processing (Q3); Artificial Intelligence (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science" +20209;21100216324;"International Journal of Engineering Research in Africa";journal;"16634144, 16633571";"Trans Tech Publications";No;No;0,230;Q3;36;47;163;2000;197;163;0,96;42,55;25,85;0;Switzerland;Western Europe;"Trans Tech Publications";"2010-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +20210;40047;"Jingangshi yu Moliao Moju Gongcheng/Diamond and Abrasives Engineering";journal;"1006852X";"Zhengzhou Institute of Abrasives Grinding";Yes;No;0,230;Q3;15;82;281;2214;292;281;0,95;27,00;29,32;0;China;Asiatic Region;"Zhengzhou Institute of Abrasives Grinding";"2001-2025";"Mechanical Engineering (Q3); Mechanics of Materials (Q3); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +20211;21101023926;"Journal of Advanced Biotechnology and Experimental Therapeutics";journal;"26164760";"Bangladesh Society for Microbiology, Immunology and Advanced Biotechnology";Yes;No;0,230;Q3;14;42;168;2066;191;168;1,20;49,19;37,84;0;Bangladesh;Asiatic Region;"Bangladesh Society for Microbiology, Immunology and Advanced Biotechnology";"2018-2026";"Applied Microbiology and Biotechnology (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +20212;18800156710;"Journal of Agricultural Science and Technology";journal;"23453737, 16807073";"Tarbiat Modares University";Yes;No;0,230;Q3;50;96;304;4440;316;301;1,03;46,25;38,55;0;Iran;Middle East;"Tarbiat Modares University";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +20213;19700201407;"Journal of Combustion";journal;"20901976, 20901968";"John Wiley and Sons Ltd";Yes;No;0,230;Q3;27;4;11;237;13;11;0,33;59,25;23,08;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Chemical Engineering (miscellaneous) (Q3); Fuel Technology (Q3); Condensed Matter Physics (Q4); Energy Engineering and Power Technology (Q4)";"Chemical Engineering; Energy; Physics and Astronomy" +20214;19554;"Journal of Communications Technology and Electronics";journal;"15556557, 10642269";"Pleiades Publishing";No;No;0,230;Q3;32;56;518;1304;221;518;0,44;23,29;28,47;0;United States;Northern America;"Pleiades Publishing";"1995-2025";"Electrical and Electronic Engineering (Q3); Radiation (Q3); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +20215;21101180701;"Journal of Corporate Finance Research";journal;"20730438";"National Research University Higher School of Economics (HSE University)";Yes;Yes;0,230;Q3;8;31;96;1731;130;96;1,17;55,84;46,97;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2020-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Finance (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +20216;64002;"Journal of Environmental and Engineering Geophysics";journal;"19432658, 10831363";"Society of Exploration Geophysicists";No;No;0,230;Q3;42;0;52;0;40;41;0,64;0,00;0,00;0;United States;Northern America;"Society of Exploration Geophysicists";"1996, 1999, 2001, 2003-2024";"Geophysics (Q3); Environmental Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Environmental Science" +20217;7600153123;"Journal of Mechanics of Materials and Structures";journal;"15593959";"Mathematical Sciences Publishers";No;No;0,230;Q3;52;31;113;1114;115;113;1,17;35,94;27,62;0;United States;Northern America;"Mathematical Sciences Publishers";"2006-2025";"Mechanics of Materials (Q3); Applied Mathematics (Q4)";"Engineering; Mathematics" +20218;80593;"Journal of Medicinal Plants";journal;"27172058, 2717204X";"Institute of Medicinal Plants, ACECR";Yes;No;0,230;Q3;31;24;90;993;105;90;0,77;41,38;53,06;0;Iran;Middle East;"Institute of Medicinal Plants, ACECR";"2004-2025";"Complementary and Alternative Medicine (Q3); Pharmacology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +20219;11100153305;"Journal of Men's Health";journal;"18756867, 18756859";"MRE Press";Yes;No;0,230;Q3;38;142;555;5776;409;548;0,73;40,68;30,98;0;Singapore;Asiatic Region;"MRE Press";"2008-2026";"Urology (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +20220;20772;"Journal of the Faculty of Medicine Baghdad";journal;"24108057, 00419419";"University of Baghdad College of Medicine";Yes;No;0,230;Q3;9;67;184;1990;223;183;1,20;29,70;51,05;0;Iraq;Middle East;"University of Baghdad College of Medicine";"1961, 1977, 2021-2025";"Epidemiology (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +20221;21100927899;"Journal of the Magnetics Society of Japan";journal;"18822932";"Magnetics Society of Japan";No;No;0,230;Q3;9;22;53;324;32;50;0,62;14,73;3,23;0;Japan;Asiatic Region;"Magnetics Society of Japan";"1991, 1993, 1995, 1997, 2001, 2019-2026";"Electrical and Electronic Engineering (Q3); Instrumentation (Q3); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +20222;21101017895;"Jurnal Ilmu Sosial dan Ilmu Politik";journal;"14104946, 25027883";"Universitas Gadjah Mada - Faculty of Social and Political Sciences";Yes;No;0,230;Q3;10;21;65;1378;79;65;0,98;65,62;36,36;0;Indonesia;Asiatic Region;"Universitas Gadjah Mada - Faculty of Social and Political Sciences";"2019-2025";"Sociology and Political Science (Q3)";"Social Sciences" +20223;21101140356;"Mathematical Models in Engineering";journal;"23515279, 24244627";"EXTRICA";No;No;0,230;Q3;7;14;49;337;83;49;1,82;24,07;16,67;0;Lithuania;Eastern Europe;"EXTRICA";"2022-2025";"Mechanical Engineering (Q3); Modeling and Simulation (Q4)";"Engineering; Mathematics" +20224;21100235820;"McGill Journal of Law and Health";journal;"19204833, 19204825";"McGill University";No;No;0,230;Q3;6;2;7;403;6;7;1,00;201,50;66,67;0;Canada;Northern America;"McGill University";"2013-2025";"Health Policy (Q3); Law (Q3)";"Medicine; Social Sciences" +20225;19700174911;"Medical Acupuncture";journal;"19336594, 19336586";"Mary Ann Liebert Inc.";No;No;0,230;Q3;27;117;203;2303;163;153;0,62;19,68;45,91;0;United States;Northern America;"Mary Ann Liebert Inc.";"2008-2026";"Complementary and Alternative Medicine (Q3)";"Medicine" +20226;29485;"Physics of Particles and Nuclei";journal;"10637796, 15318559";"Pleiades Publishing";No;No;0,230;Q3;43;248;483;4915;226;483;0,50;19,82;26,11;0;United States;Northern America;"Pleiades Publishing";"1996-2026";"Nuclear and High Energy Physics (Q3)";"Physics and Astronomy" +20227;29837;"Sensors and Materials";journal;"09144935";"M Y U Scientific Publishing Division";Yes;No;0,230;Q3;39;391;1084;10042;1229;1070;1,21;25,68;28,58;0;Japan;Asiatic Region;"M Y U Scientific Publishing Division";"1996-2026";"Instrumentation (Q3); Materials Science (miscellaneous) (Q4)";"Materials Science; Physics and Astronomy" +20228;19039;"Statistical Applications in Genetics and Molecular Biology";journal;"15446115, 21946302";"Walter de Gruyter GmbH";No;No;0,230;Q3;54;3;27;76;22;27;0,95;25,33;50,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2002, 2004-2026";"Computational Mathematics (Q3); Genetics (Q4); Molecular Biology (Q4); Statistics and Probability (Q4)";"Biochemistry, Genetics and Molecular Biology; Mathematics" +20229;11700154397;"Surface Engineering and Applied Electrochemistry";journal;"10683755, 19348002";"Pleiades Publishing";No;No;0,230;Q3;27;114;256;2579;246;256;0,88;22,62;41,34;0;United States;Northern America;"Pleiades Publishing";"2008-2025";"Industrial and Manufacturing Engineering (Q3); Surfaces, Coatings and Films (Q3); Surfaces and Interfaces (Q4)";"Engineering; Materials Science; Physics and Astronomy" +20230;21101050033;"Sustainability and Climate Change";journal;"26922924, 26922932";"Mary Ann Liebert Inc.";No;No;0,230;Q3;28;39;132;1470;109;97;0,64;37,69;48,48;0;United States;Northern America;"Mary Ann Liebert Inc.";"2021-2025";"Education (Q3); Geography, Planning and Development (Q3); Global and Planetary Change (Q4); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Environmental Science; Social Sciences" +20231;21101052728;"Therapeutic Radiology and Oncology";journal;"26162768";"AME Publishing Company";No;No;0,230;Q3;6;13;54;351;31;52;0,46;27,00;23,21;0;China;Asiatic Region;"AME Publishing Company";"2019-2025";"Radiology, Nuclear Medicine and Imaging (Q3); Oncology (Q4); Oncology (nursing) (Q4); Radiological and Ultrasound Technology (Q4)";"Health Professions; Medicine; Nursing" +20232;57563;"Tropics";journal;"0917415X, 18825729";"Japan Society of Tropical Ecology";No;No;0,230;Q3;9;6;33;202;32;32;0,88;33,67;27,27;0;Japan;Asiatic Region;"Japan Society of Tropical Ecology";"1997, 2019-2025";"Ecology (Q3); Nature and Landscape Conservation (Q3); Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20233;21101081704;"Advanced Studies: Euro-Tbilisi Mathematical Journal";journal;"26679930";"Tbilisi Centre for Mathematical Sciences";No;No;0,230;Q4;7;38;144;924;63;144;0,38;24,32;25,76;0;Georgia;Eastern Europe;"Tbilisi Centre for Mathematical Sciences";"2021-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4)";"Mathematics" +20234;16803;"Antiviral Chemistry and Chemotherapy";journal;"20402066, 09563202";"SAGE Publications Inc.";Yes;No;0,230;Q4;62;0;8;0;7;8;1,50;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1990-2015, 2017-2023";"Drug Discovery (Q4); Medicine (miscellaneous) (Q4); Pharmacology (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +20235;25182;"Applied Mathematics E - Notes";journal;"16072510";"Tsing Hua University";Yes;No;0,230;Q4;24;54;173;1240;104;172;0,61;22,96;28,72;0;Taiwan;Asiatic Region;"Tsing Hua University";"2001-2026";"Applied Mathematics (Q4)";"Mathematics" +20236;21101272725;"Barekeng";journal;"26153017, 19787227";"Universitas Pattimura";Yes;No;0,230;Q4;7;242;639;6273;521;639;0,84;25,92;52,31;0;Indonesia;Asiatic Region;"Universitas Pattimura";"2020-2026";"Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4); Numerical Analysis (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics" +20237;21100845389;"Chebyshevskii Sbornik";journal;"22268383";"State Lev Tolstoy Pedagogical University";Yes;No;0,230;Q4;10;116;330;2131;68;330;0,24;18,37;30,41;0;Russian Federation;Eastern Europe;"State Lev Tolstoy Pedagogical University";"2017-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +20238;21100842186;"Clean Air Journal";journal;"2410972X, 10171703";"National Association of Clean Air";Yes;Yes;0,230;Q4;12;16;58;616;48;55;0,80;38,50;27,45;0;South Africa;Africa;"National Association of Clean Air";"2014, 2017-2025";"Management, Monitoring, Policy and Law (Q4); Pollution (Q4)";"Environmental Science" +20239;145588;"Journal of Bacteriology and Virology";journal;"15982467";"The Korean Society for Mocrobiology / The Korean Society of Virology";No;No;0,230;Q4;16;30;75;1417;56;75;0,77;47,23;42,86;0;South Korea;Asiatic Region;"The Korean Society for Mocrobiology / The Korean Society of Virology";"2001-2025";"Immunology (Q4); Microbiology (Q4); Virology (Q4)";"Immunology and Microbiology" +20240;21100241760;"Markov Processes and Related Fields";journal;"10242953";"Polymat";No;No;0,230;Q4;12;9;71;163;25;71;0,32;18,11;35,71;0;Russian Federation;Eastern Europe;"Polymat";"2012-2025";"Applied Mathematics (Q4); Statistics and Probability (Q4)";"Mathematics" +20241;21101184586;"Veins and Lymphatics";journal;"22797483";"Page Press Publications";Yes;Yes;0,230;Q4;3;15;34;290;19;27;0,56;19,33;32,50;0;Italy;Western Europe;"Page Press Publications";"2023-2024";"Cardiology and Cardiovascular Medicine (Q4); Hematology (Q4)";"Medicine" +20242;5700164225;"Diplomacy and Statecraft";journal;"1557301X, 09592296";"Routledge";No;No;0,229;Q1;21;40;95;2483;49;93;0,50;62,08;20,00;0;United Kingdom;Western Europe;"Routledge";"1990-1996, 1998, 2001-2003, 2010-2025";"History (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +20243;21101024400;"Fotocinema";journal;"21720150";"Universidad de Malaga, Departamento de Historia del Arte";Yes;Yes;0,229;Q1;4;30;107;1067;30;105;0,41;35,57;48,89;0;Spain;Western Europe;"Universidad de Malaga, Departamento de Historia del Arte";"2019-2026";"History (Q1); Visual Arts and Performing Arts (Q1); Communication (Q3)";"Arts and Humanities; Social Sciences" +20244;21101076306;"International Journal of Taiwan Studies";journal;"24688800, 24688797";"Brill Academic Publishers";No;No;0,229;Q1;9;27;52;1472;32;48;0,45;54,52;46,34;0;Netherlands;Western Europe;"Brill Academic Publishers";"2018-2026";"History (Q1); Visual Arts and Performing Arts (Q1); Anthropology (Q2); Cultural Studies (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +20245;21101040637;"Journal of Ancient Judaism";journal;"18693296, 21967954";"Brill Academic Publishers";No;No;0,229;Q1;9;18;49;1121;14;46;0,33;62,28;23,81;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013, 2015-2026";"Religious Studies (Q1)";"Arts and Humanities" +20246;21101044478;"Archaeologia Lituana";journal;"13926748, 25388738";"Vilnius University Press";Yes;Yes;0,229;Q2;5;13;36;471;14;31;0,26;36,23;36,36;0;Lithuania;Eastern Europe;"Vilnius University Press";"2019-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20247;28667;"Geographia Polonica";journal;"00167282, 23007362";"Polska Akademia Nauk";Yes;No;0,229;Q2;27;23;65;1592;58;65;0,77;69,22;40,00;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1972, 1975-1986, 1988-1989, 1992-2025";"Cultural Studies (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3); Urban Studies (Q3)";"Earth and Planetary Sciences; Social Sciences" +20248;21100379760;"Interdisciplinaria Archaeologica";journal;"1804848X, 23361220";"Archaeological Centre Olomouc";Yes;Yes;0,229;Q2;11;13;48;750;24;44;0,59;57,69;35,42;0;Czech Republic;Eastern Europe;"Archaeological Centre Olomouc";"2014-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20249;21100468670;"International Review of Civil Engineering";journal;"20369913, 2533168X";"Praise Worthy Prize S.r.l";No;No;0,229;Q2;17;40;164;1366;198;164;1,28;34,15;23,75;0;Italy;Western Europe;"Praise Worthy Prize S.r.l";"2015-2025";"Architecture (Q2); Building and Construction (Q3); Computational Mechanics (Q3); Mechanics of Materials (Q3); Safety, Risk, Reliability and Quality (Q3); Urban Studies (Q3); Civil and Structural Engineering (Q4)";"Engineering; Social Sciences" +20250;21101030201;"Leviathan (Germany)";journal;"18618588, 03400425";"Nomos Verlagsgesellschaft mbH und Co KG";Yes;Yes;0,229;Q2;9;14;87;626;36;81;0,30;44,71;32,35;0;Germany;Western Europe;"Nomos Verlagsgesellschaft mbH und Co KG";"2019-2025";"Linguistics and Language (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20251;21101041610;"Acta Didactica Norden";journal;"25358219";"Universitetet i Oslo";Yes;Yes;0,229;Q3;11;47;178;2532;99;175;0,43;53,87;78,35;0;Norway;Western Europe;"Universitetet i Oslo";"2020-2026";"Education (Q3)";"Social Sciences" +20252;21100851994;"Agricultural Research in the Arid Areas";journal;"10007601";"Editorial Department of Agricultural Research in the Arid Areas";No;No;0,229;Q3;13;180;527;5795;466;527;0,97;32,19;41,92;0;China;Asiatic Region;"Editorial Department of Agricultural Research in the Arid Areas";"2017-2025";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +20253;21100863622;"Brazilian Journalism Research";journal;"18084079, 19819854";"Associacao Brasileira de Pesquisadores de Jornalismo";Yes;Yes;0,229;Q3;10;18;73;876;48;71;0,42;48,67;40,00;0;Brazil;Latin America;"Associacao Brasileira de Pesquisadores de Jornalismo";"2018-2025";"Communication (Q3)";"Social Sciences" +20254;27158;"British Journal of Community Nursing";journal;"14624753, 20522215";"MA Healthcare Ltd";No;No;0,229;Q3;42;159;508;2535;372;403;0,77;15,94;75,29;1;United Kingdom;Western Europe;"MA Healthcare Ltd";"2000-2026";"Community and Home Care (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Nursing" +20255;21101196153;"Chemical and Process Engineering: New Frontiers";journal;"23001925";"Polska Akademia Nauk";Yes;No;0,229;Q3;5;37;76;1721;58;76;0,76;46,51;47,52;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2023-2025";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +20256;21100240300;"Clinical Dysmorphology";journal;"14735717, 09628827";"Lippincott Williams and Wilkins";No;No;0,229;Q3;34;36;119;526;68;117;0,59;14,61;55,90;0;United Kingdom;Western Europe;"Lippincott Williams and Wilkins";"1992-2025";"Anatomy (Q3); Pathology and Forensic Medicine (Q3); Pediatrics, Perinatology and Child Health (Q3); Genetics (clinical) (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +20257;7600153108;"Hacienda Publica Espanola";journal;"23864176, 02101173";"Instituto de Estudios Fiscales";Yes;No;0,229;Q3;17;13;72;893;61;72;0,78;68,69;25,00;0;Spain;Western Europe;"Instituto de Estudios Fiscales";"2007-2025";"Finance (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +20258;19900193932;"Informacios Tarsadalom";journal;"15878694";"Infonia";No;No;0,229;Q3;8;19;84;679;80;77;0,56;35,74;31,91;0;Hungary;Eastern Europe;"Infonia";"2008-2025";"Communication (Q3); Education (Q3); Management of Technology and Innovation (Q4); Social Psychology (Q4)";"Business, Management and Accounting; Psychology; Social Sciences" +20259;25272;"International Journal on Minority and Group Rights";journal;"15718115, 13854879";"Brill Academic Publishers";No;No;0,229;Q3;24;78;95;6039;73;91;0,67;77,42;38,37;0;Netherlands;Western Europe;"Brill Academic Publishers";"1993-1997, 1999-2026";"Geography, Planning and Development (Q3); Political Science and International Relations (Q3)";"Social Sciences" +20260;21101149355;"Journal of Applied Veterinary Sciences";journal;"16874072, 20903308";"Egyptian Society for Animal Management (ESAM)";Yes;No;0,229;Q3;9;54;154;2704;171;154;1,28;50,07;31,32;0;Egypt;Africa/Middle East;"Egyptian Society for Animal Management (ESAM)";"2016-2026";"Veterinary (miscellaneous) (Q3)";"Veterinary" +20261;20964;"Journal of Flow Visualization and Image Processing";journal;"10653090";"Begell House Inc.";No;No;0,229;Q3;15;21;64;781;46;59;0,66;37,19;14,00;0;United States;Northern America;"Begell House Inc.";"1996-2025";"Mechanical Engineering (Q3); Computer Science Applications (Q4); Condensed Matter Physics (Q4)";"Computer Science; Engineering; Physics and Astronomy" +20262;21101038729;"Journal of Obstetrics, Gynecology and Cancer Research";journal;"24765848, 26453991";"Farname Inc";No;No;0,229;Q3;7;131;280;3665;202;273;0,75;27,98;63,30;0;Iran;Middle East;"Farname Inc";"2019-2026";"Embryology (Q3); Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3); Oncology (Q4)";"Medicine" +20263;4700152467;"Journal of Shenzhen University Science and Engineering";journal;"10002618";"Science Press";Yes;No;0,229;Q3;15;96;259;2347;220;257;0,83;24,45;34,04;0;China;Asiatic Region;"Science Press";"2006-2026";"Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)";"Computer Science; Engineering" +20264;21101276706;"Journal of the Korean Society of Radiology";journal;"29510805";"Korean Radiological Society";Yes;Yes;0,229;Q3;9;113;439;2656;278;399;0,60;23,50;50,33;0;South Korea;Asiatic Region;"Korean Radiological Society";"2022-2026";"Radiology, Nuclear Medicine and Imaging (Q3)";"Medicine" +20265;25943;"Macromolecular Symposia";journal;"10221360, 15213900";"Wiley-VCH Verlag";No;No;0,229;Q3;89;356;737;9346;836;716;1,19;26,25;39,06;0;Germany;Western Europe;"Wiley-VCH Verlag";"1994-2026";"Materials Chemistry (Q3); Polymers and Plastics (Q3); Condensed Matter Physics (Q4); Organic Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +20266;21101041523;"Malaysian Journal of Fundamental and Applied Sciences";journal;"22895981, 2289599X";"Penerbit UTM Press";No;No;0,229;Q3;20;113;283;4682;369;283;1,36;41,43;47,97;0;Malaysia;Asiatic Region;"Penerbit UTM Press";"2015, 2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Mathematics; Physics and Astronomy" +20267;29333;"Orthopaedic Nursing";journal;"07446020, 1542538X";"Lippincott Williams and Wilkins Ltd.";No;No;0,229;Q3;45;79;194;1024;116;169;0,49;12,96;66,67;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1981-2026";"Advanced and Specialized Nursing (Q3); Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4)";"Medicine; Nursing" +20268;19700170616;"Panoeconomicus";journal;"1452595X, 22172386";"Savez Ekonomista Vojvodine";Yes;Yes;0,229;Q3;23;25;82;1369;71;80;0,88;54,76;28,26;0;Serbia;Eastern Europe;"Savez Ekonomista Vojvodine";"2009-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +20269;4700152485;"Pattern Recognition and Image Analysis";journal;"15556212, 10546618";"Pleiades Publishing";No;No;0,229;Q3;37;55;373;1437;313;372;0,76;26,13;30,00;0;United States;Northern America;"Pleiades Publishing";"2006-2025";"Computer Graphics and Computer-Aided Design (Q3); Computer Vision and Pattern Recognition (Q3)";"Computer Science" +20270;21101199365;"Petrological Journal";journal;"22285210, 23222182";"University of Isfahan";Yes;No;0,229;Q3;4;22;67;1248;22;67;0,36;56,73;21,31;0;Iran;Middle East;"University of Isfahan";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Economic Geology (Q3); Geology (Q3); Geochemistry and Petrology (Q4)";"Earth and Planetary Sciences" +20271;5600153242;"Polish Sociological Review";journal;"12311413";"Polish Sociological Association";Yes;Yes;0,229;Q3;16;24;73;1337;51;73;0,49;55,71;48,65;0;Poland;Eastern Europe;"Polish Sociological Association";"2006-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +20272;21100370874;"Processing and Application of Ceramics";journal;"18206131, 24061034";"University of Novi Sad, Faculty of Technology";Yes;Yes;0,229;Q3;28;40;142;1574;167;142;1,32;39,35;32,50;0;Serbia;Eastern Europe;"University of Novi Sad, Faculty of Technology";"2014-2025";"Ceramics and Composites (Q3)";"Materials Science" +20273;6300153139;"Scripta Nova";journal;"11389788";"Universitat de Barcelona";Yes;Yes;0,229;Q3;15;47;94;2417;65;93;0,51;51,43;43,90;0;Spain;Western Europe;"Universitat de Barcelona";"2006-2025";"Geography, Planning and Development (Q3)";"Social Sciences" +20274;21100935803;"Transactions on Transport Sciences";journal;"18029876";"Palacky University in Olomouc";Yes;Yes;0,229;Q3;10;26;73;798;68;64;0,75;30,69;25,00;0;Czech Republic;Eastern Europe;"Palacky University in Olomouc";"2017-2025";"Automotive Engineering (Q3); Applied Psychology (Q4); Civil and Structural Engineering (Q4); Management, Monitoring, Policy and Law (Q4); Transportation (Q4)";"Engineering; Environmental Science; Psychology; Social Sciences" +20275;100147347;"Transnational Corporations";journal;"10149562";"UNCTAD United Nations Conference on Trade and Development";No;No;0,229;Q3;33;0;8;0;14;8;0,00;0,00;0,00;0;Switzerland;Western Europe;"UNCTAD United Nations Conference on Trade and Development";"2005-2012, 2015-2022";"Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Political Science and International Relations (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +20276;34097;"Archivos de Cardiologia de Mexico";journal;"14059940, 16651731";"Instituto Nacional de Cardiologia Ignazio Chavez";Yes;Yes;0,229;Q4;23;83;313;2376;202;201;0,53;28,63;39,30;0;Mexico;Latin America;"Instituto Nacional de Cardiologia Ignazio Chavez";"2001-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +20277;21100897959;"Biomedical Research and Therapy";journal;"21984093";"BiomedPress";Yes;No;0,229;Q4;13;84;227;4570;191;227;0,72;54,40;43,11;0;Viet Nam;Asiatic Region;"BiomedPress";"2015-2018, 2020-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +20278;21101081516;"Coal Conversion";journal;"10044248";"Taiyuan University of Technology";No;No;0,229;Q4;9;61;197;1925;198;197;1,17;31,56;33,99;0;China;Asiatic Region;"Taiyuan University of Technology";"2019-2025";"Energy Engineering and Power Technology (Q4)";"Energy" +20279;4400151404;"International Journal of Learning and Intellectual Capital";journal;"14794861, 14794853";"Inderscience Enterprises Ltd";No;No;0,229;Q4;32;24;108;1581;137;97;1,31;65,88;36,73;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2025";"Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +20280;21101038738;"Neuroscience Research Notes";journal;"2576828X";"Neurotak Publishing";No;No;0,229;Q4;9;32;80;1533;59;75;0,56;47,91;52,17;0;Malaysia;Asiatic Region;"Neurotak Publishing";"2018-2026";"Cellular and Molecular Neuroscience (Q4); Cognitive Neuroscience (Q4); Neurology (Q4); Neuroscience (miscellaneous) (Q4)";"Neuroscience" +20281;145509;"Notices of the American Mathematical Society";journal;"10889477, 00029920";"American Mathematical Society";Yes;No;0,229;Q4;47;111;478;982;194;201;0,29;8,85;32,20;1;United States;Northern America;"American Mathematical Society";"1995, 2004-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +20282;21100822743;"PSICOLOGIA";journal;"08742049, 21832471";"Associacao Portuguesa de Psicologia";Yes;No;0,229;Q4;9;8;45;399;30;44;0,70;49,88;81,82;0;Portugal;Western Europe;"Associacao Portuguesa de Psicologia";"2016-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +20283;18289;"Revue Medicale de Liege";journal;"0370629X, 25661566";"Revue Medicale de Liege";No;No;0,229;Q4;24;45;418;87;106;411;0,25;1,93;46,79;0;Belgium;Western Europe;"Revue Medicale de Liege";"1947-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +20284;21100305223;"Conference of Open Innovation Association, FRUCT";conference and proceedings;"23057254";"IEEE Computer Society";Yes;No;0,229;-;27;85;332;2001;380;318;1,09;23,54;20,96;0;United States;Northern America;"IEEE Computer Society";"2012-2025";"Computer Science (miscellaneous); Electrical and Electronic Engineering";"Computer Science; Engineering" +20285;21101210850;"Proceedings of the International Conference on Computer-Aided Architectural Design Research in Asia";conference and proceedings;"27104265, 27104257";"The Association for Computer-Aided Architectural Design Research in Asia";No;No;0,229;-;7;228;383;3295;298;373;0,73;14,45;37,04;0;Hong Kong;Asiatic Region;"The Association for Computer-Aided Architectural Design Research in Asia";"2022-2025";"Architecture; Building and Construction; Computer Graphics and Computer-Aided Design; Materials Science (miscellaneous); Modeling and Simulation";"Computer Science; Engineering; Materials Science; Mathematics" +20286;28349;"Britannia (Society for the Promotion of Roman Studies)";journal;"0068113X";"Cambridge University Press";No;No;0,228;Q1;17;18;89;1344;28;83;0,23;74,67;38,46;0;United Kingdom;Western Europe;"Cambridge University Press";"1970-1971, 1973-1995, 1999-2002, 2004-2005, 2011-2025";"Classics (Q1); History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20287;19700170230;"Sibirica";journal;"13617362, 14766787";"Berghahn Journals";Yes;Yes;0,228;Q1;10;7;46;197;28;45;0,54;28,14;66,67;0;United Kingdom;Western Europe;"Berghahn Journals";"2014-2025";"History (Q1); Anthropology (Q2); Cultural Studies (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +20288;25988;"Social Research";journal;"0037783X";"Johns Hopkins University Press";No;No;0,228;Q1;63;52;168;1676;121;147;0,47;32,23;41,30;0;United States;Northern America;"Johns Hopkins University Press";"1946-1947, 1972-1974, 1976, 1979-1980, 1982-1986, 1988, 1995-2025";"History (Q1); Cultural Studies (Q2); Philosophy (Q2); Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +20289;21100913328;"Studia Historiae Scientiarum";journal;"24513202, 2543702X";"Polish Academy of Arts and Sciences,Commission on the History of Science";Yes;Yes;0,228;Q1;7;19;59;1090;23;57;0,32;57,37;45,83;0;Poland;Eastern Europe;"Polish Academy of Arts and Sciences,Commission on the History of Science";"2016-2025";"History (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities" +20290;21100404515;"Brill's Journal of Afroasiatic Languages and Linguistics";journal;"18766633, 18776930";"Brill Academic Publishers";No;No;0,228;Q2;13;10;37;651;12;33;0,38;65,10;42,86;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2025";"Linguistics and Language (Q2)";"Social Sciences" +20291;21101180454;"Dental Anthropology";journal;"10969411, 2769822X";"Dental Anthropology Association";Yes;Yes;0,228;Q2;5;2;11;84;8;10;0,75;42,00;80,00;0;United States;Northern America;"Dental Anthropology Association";"2018-2026";"Anthropology (Q2); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Social Sciences" +20292;21101152863;"Natural and Life Sciences Communications";journal;"28220838";"Chiang Mai University";No;No;0,228;Q2;6;74;136;3153;176;136;1,29;42,61;44,72;0;Thailand;Asiatic Region;"Chiang Mai University";"2023-2026";"Health Professions (miscellaneous) (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Dentistry (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Dentistry; Environmental Science; Health Professions; Pharmacology, Toxicology and Pharmaceutics" +20293;7700153224;"Sains Malaysiana";journal;"01266039";"Penerbit Universiti Kebangsaan Malaysia";No;No;0,228;Q2;51;230;839;9546;948;839;1,06;41,50;47,29;0;Malaysia;Asiatic Region;"Penerbit Universiti Kebangsaan Malaysia";"2006-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +20294;5700169285;"Transactions of the Philological Society";journal;"00791636, 1467968X";"Wiley-Blackwell Publishing Ltd";No;No;0,228;Q2;35;36;67;2491;31;64;0,59;69,19;44,68;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1842-1860, 1862, 1864-1867, 1869, 1871, 1874, 1876, 1879, 1881, 1884, 1887, 1890-1893, 1895-1897, 1899, 1904-1910, 1914, 1916, 1919-1921, 1930-1931, 1933-1941, 1943-1975, 1977-2026";"Linguistics and Language (Q2)";"Social Sciences" +20295;21100920639;"Actualidad Juridica Iberoamericana";journal;"23864567";"Ibero-American Law Institute";No;Yes;0,228;Q3;5;59;595;2922;79;591;0,20;49,53;40,35;0;Spain;Western Europe;"Ibero-American Law Institute";"2019-2025";"Law (Q3)";"Social Sciences" +20296;21100241657;"African Journal of Urology";journal;"19619987, 11105704";"SpringerOpen";Yes;Yes;0,228;Q3;20;73;199;1598;134;198;0,69;21,89;19,40;0;Germany;Western Europe;"SpringerOpen";"2012-2026";"Public Health, Environmental and Occupational Health (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Reproductive Medicine (Q3); Urology (Q3); Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +20297;19900192528;"British Journal of Community Justice";journal;"14750279";"Sheffield Hallam University";No;No;0,228;Q3;14;12;18;508;12;15;0,50;42,33;53,33;0;United Kingdom;Western Europe;"Sheffield Hallam University";"2010-2016, 2019-2025";"Law (Q3)";"Social Sciences" +20298;21100286889;"Cuadernos de Turismo";journal;"19894635, 11397861";"Universidad de Murcia";Yes;Yes;0,228;Q3;15;20;75;1144;72;75;1,00;57,20;39,02;0;Spain;Western Europe;"Universidad de Murcia";"2013-2025";"Geography, Planning and Development (Q3); Nature and Landscape Conservation (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Environmental Science; Social Sciences" +20299;14607;"Ekologia Bratislava";journal;"1337947X, 1335342X";"Sciendo";Yes;Yes;0,228;Q3;27;24;105;1102;115;105;0,98;45,92;34,09;0;Poland;Eastern Europe;"Sciendo";"1993-2025";"Ecology (Q3)";"Environmental Science" +20300;21101037318;"Environment and Ecology Research";journal;"23316268, 2331625X";"Horizon Research Publishing";No;No;0,228;Q3;11;75;213;2939;227;213;0,99;39,19;47,72;0;United States;Northern America;"Horizon Research Publishing";"2019-2026";"Ecology (Q3); Environmental Science (miscellaneous) (Q3); Nature and Landscape Conservation (Q3); Pollution (Q4)";"Environmental Science" +20301;21101089950;"Eurasian Chemical Communications";journal;"27170535, 26766280";"Sami Publishing Company";No;No;0,228;Q3;28;0;190;0;573;190;3,48;0,00;0,00;0;France;Western Europe;"Sami Publishing Company";"2019-2023";"Chemistry (miscellaneous) (Q3); Analytical Chemistry (Q4); Electrochemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry" +20302;17700156530;"Handbook on the Physics and Chemistry of Rare Earths";book series;"01681273";"Elsevier B.V.";No;No;0,228;Q3;48;6;30;659;71;7;2,38;109,83;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1978-1979, 1982, 1984, 1986-1991, 1993-2001, 2003-2025";"Chemistry (miscellaneous) (Q3); Geochemistry and Petrology (Q4); Materials Science (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Chemistry; Earth and Planetary Sciences; Materials Science; Physics and Astronomy" +20303;21100866208;"IEIE Transactions on Smart Processing and Computing";journal;"22875255";"Institute of Electronics Engineers of Korea";No;No;0,228;Q3;13;72;188;1893;172;188;0,99;26,29;40,15;0;South Korea;Asiatic Region;"Institute of Electronics Engineers of Korea";"2018-2025";"Electrical and Electronic Engineering (Q3); Signal Processing (Q3)";"Computer Science; Engineering" +20304;22331;"Indian Journal of Leprosy";journal;"02549395";"Hind Kusht Nivaran Sangh (Indian Leprosy Association)";No;No;0,228;Q3;24;49;107;820;33;99;0,33;16,73;51,56;0;India;Asiatic Region;"Hind Kusht Nivaran Sangh (Indian Leprosy Association)";"1984-2025";"Dermatology (Q3); Infectious Diseases (Q3)";"Medicine" +20305;21101152725;"International Journal of African Higher Education";journal;"23135069";"International Network for Higher Education in Africa, University of Kwazulu-Natal";Yes;Yes;0,228;Q3;7;16;55;923;58;53;0,63;57,69;35,00;0;South Africa;Africa;"International Network for Higher Education in Africa, University of Kwazulu-Natal";"2019-2025";"Education (Q3)";"Social Sciences" +20306;21100780673;"International Journal of Critical Illness and Injury Science";journal;"22295151, 22315004";"Wolters Kluwer Medknow Publications";Yes;No;0,228;Q3;22;30;106;677;91;95;0,82;22,57;33,98;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2015-2026";"Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +20307;14200154728;"International Journal of Design and Nature and Ecodynamics";journal;"17557445, 17557437";"International Information and Engineering Technology Association";No;No;0,228;Q3;27;276;527;12549;671;527;1,25;45,47;45,60;0;United Kingdom;Western Europe;"International Information and Engineering Technology Association";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Engineering; Environmental Science" +20308;20000195009;"International Journal of Electronics and Telecommunications";journal;"20818491, 23001933";"Polska Akademia Nauk";Yes;No;0,228;Q3;24;144;353;4082;348;353;0,99;28,35;19,57;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2010-2026";"Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3)";"Computer Science; Engineering" +20309;4500151504;"International Journal of Morphology";journal;"07179502, 07179367";"Universidad de la Frontera";Yes;Yes;0,228;Q3;38;193;746;5326;502;739;0,68;27,60;41,34;0;Chile;Latin America;"Universidad de la Frontera";"2006-2025";"Anatomy (Q3)";"Medicine" +20310;21100976732;"Journal of Fruit Science";journal;"10099980";"Editorial Department of Scientia Agricultura Sinica";Yes;No;0,228;Q3;17;215;760;6699;619;760;0,88;31,16;43,20;0;China;Asiatic Region;"Editorial Department of Scientia Agricultura Sinica";"2019-2025";"Ecology (Q3); Food Science (Q3); Horticulture (Q3); Biotechnology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +20311;21101347020;"Journal of Techniques";journal;"27088383";"Middle Technical University";Yes;No;0,228;Q3;12;40;264;1588;332;264;1,60;39,70;28,72;0;Iraq;Middle East;"Middle Technical University";"2021-2025";"Chemical Engineering (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Engineering; Materials Science" +20312;9500154118;"Journal of the Botanical Research Institute of Texas";journal;"19345259";"Botanical Research Institute of Texas";No;No;0,228;Q3;27;43;92;1706;52;92;0,81;39,67;26,09;0;United States;Northern America;"Botanical Research Institute of Texas";"2007-2025";"Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +20313;21100913504;"Journal of the Geological Society of Korea";journal;"04354036, 22887377";"The Geological Society of Korea";Yes;No;0,228;Q3;12;45;125;2368;67;123;0,55;52,62;37,70;0;South Korea;Asiatic Region;"The Geological Society of Korea";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Geology (Q4)";"Earth and Planetary Sciences" +20314;21100429261;"Materials Performance and Characterization";journal;"21653992";"ASTM International";No;No;0,228;Q3;23;17;126;641;107;121;0,76;37,71;12,20;0;United States;Northern America;"ASTM International";"2012-2026";"Ceramics and Composites (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3); Polymers and Plastics (Q3)";"Engineering; Materials Science" +20315;39895;"Miscellanea Geographica";journal;"08676046, 20846118";"de Gruyter";Yes;Yes;0,228;Q3;19;33;67;1340;62;67;0,90;40,61;49,44;1;Germany;Western Europe;"de Gruyter";"1984, 1986, 1988, 1990, 1992, 1994, 1996, 1998, 2000, 2002, 2006, 2008, 2010-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +20316;4900153108;"Papeis Avulsos de Zoologia";journal;"00311049, 18070205";"Universidade de Sao Paulo. Museu de Zoologia";Yes;Yes;0,228;Q3;31;51;154;2460;96;154;0,55;48,24;28,89;0;Brazil;Latin America;"Universidade de Sao Paulo. Museu de Zoologia";"2002-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +20317;21100817420;"Wader Study";journal;"20588410";"International Wader Study Group";No;No;0,228;Q3;19;29;94;981;37;62;0,34;33,83;20,75;0;United Kingdom;Western Europe;"International Wader Study Group";"2015-2025";"Animal Science and Zoology (Q3); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +20318;22771;"Wisconsin Law Review";journal;"0043650X";"University of Wisconsin Law School";No;No;0,228;Q3;36;41;137;6942;64;131;0,37;169,32;52,78;0;United States;Northern America;"University of Wisconsin Law School";"1976, 1978-1982, 1984-1985, 1987, 1990, 1992-1993, 1995-2025";"Law (Q3)";"Social Sciences" +20319;21101112612;"World Federation of Occupational Therapists Bulletin";journal;"20566077, 14473828";"Informa UK Ltd";No;No;0,228;Q3;14;0;52;0;54;43;1,14;0,00;0,00;0;United Kingdom;Western Europe;"Informa UK Ltd";"1978-1982, 1984-2023";"Occupational Therapy (Q3); Rehabilitation (Q3)";"Health Professions; Medicine" +20320;21100901466;"Case Reports in Psychiatry";journal;"2090682X, 20906838";"John Wiley and Sons Ltd";Yes;No;0,228;Q4;11;37;130;854;93;130;0,69;23,08;42,75;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012, 2014, 2017-2026";"Psychiatry and Mental Health (Q4)";"Medicine" +20321;12600154706;"Central European Geology";journal;"17882281, 17893348";"Akademiai Kiado";No;No;0,228;Q4;28;3;14;152;10;14;1,00;50,67;0,00;0;Hungary;Eastern Europe;"Akademiai Kiado";"2008-2025";"Geology (Q4)";"Earth and Planetary Sciences" +20322;21100890620;"Journal of Economic Geology";journal;"20087306, 24235865";"Ferdowsi University of Mashhad";Yes;Yes;0,228;Q4;7;6;72;221;24;72;0,36;36,83;20,00;0;Iran;Middle East;"Ferdowsi University of Mashhad";"2018-2024";"Economic Geology (Q4); Geochemistry and Petrology (Q4)";"Earth and Planetary Sciences" +20323;9500154104;"Journal of Nanophotonics";journal;"19342608";"SPIE";No;No;0,228;Q4;48;28;135;1033;144;135;0,96;36,89;30,00;0;United States;Northern America;"SPIE";"2007-2025";"Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Nanoscience and Nanotechnology (Q4)";"Materials Science; Physics and Astronomy" +20324;21100981757;"Physics and Chemistry of Solid State";journal;"23098589, 17294428";"Vasyl Stefanyk Precarpathian National University";Yes;Yes;0,228;Q4;18;120;329;3199;440;329;1,22;26,66;34,60;0;Ukraine;Eastern Europe;"Vasyl Stefanyk Precarpathian National University";"2018-2025";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +20325;11700154335;"Proceedings of Institution of Civil Engineers: Waste and Resource Management";journal;"17476526, 17476534";"ICE Publishing";No;No;0,228;Q4;24;11;56;495;50;49;0,87;45,00;25,81;0;United Kingdom;Western Europe;"ICE Publishing";"2008-2025";"Civil and Structural Engineering (Q4); Waste Management and Disposal (Q4)";"Engineering; Environmental Science" +20326;19700175084;"Revista Colombiana de Estadistica";journal;"01201751, 23898976";"Universidad Nacional de Colombia";Yes;Yes;0,228;Q4;25;37;58;1025;55;53;1,19;27,70;22,35;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2001-2026";"Statistics and Probability (Q4)";"Mathematics" +20327;3300147403;"Digest of Technical Papers - SID International Symposium";conference and proceedings;"0097966X, 21680159";"John Wiley and Sons Inc";No;No;0,228;-;54;1151;2619;9702;1292;2613;0,52;8,43;28,44;0;United States;Northern America;"John Wiley and Sons Inc";"2000-2003, 2005-2025";"Engineering (miscellaneous)";"Engineering" +20328;21101186978;"Proceedings of the European Conference on Computing in Construction";conference and proceedings;"26841150";"";No;No;0,228;-;13;215;353;4739;343;348;0,96;22,04;29,12;0;Belgium;Western Europe;"";"2019, 2021-2025";"Building and Construction; Information Systems";"Computer Science; Engineering" +20329;91440;"Proceedings of the International Conference on Offshore Mechanics and Arctic Engineering - OMAE";conference and proceedings;"-";"American Society of Mechanical Engineers (ASME)";No;No;0,228;-;58;530;1940;11319;1095;1905;0,59;21,36;19,23;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1993-1998, 2001-2025";"Energy Engineering and Power Technology; Mechanical Engineering; Ocean Engineering";"Energy; Engineering" +20330;21100865015;"Carthaginensia";journal;"02134381, 26053012";"Instituto Teologico de Murcia";Yes;Yes;0,227;Q1;4;35;90;1027;28;88;0,35;29,34;25,00;0;Spain;Western Europe;"Instituto Teologico de Murcia";"2018-2025";"Religious Studies (Q1)";"Arts and Humanities" +20331;21101058350;"En la Espana Medieval";journal;"02143038, 19882971";"Universidad Complutense Madrid";Yes;Yes;0,227;Q1;4;12;57;755;26;56;0,51;62,92;46,15;0;Spain;Western Europe;"Universidad Complutense Madrid";"2019-2025";"History (Q1)";"Arts and Humanities" +20332;21101291268;"Journal of Environmental Science and Sustainable Development";journal;"26556847";"School of Environmental Science, Universitas Indonesia";No;No;0,227;Q1;6;27;73;1584;61;67;0,91;58,67;42,11;0;Indonesia;Asiatic Region;"School of Environmental Science, Universitas Indonesia";"2022-2025";"Religious Studies (Q1); Cultural Studies (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3); Law (Q3); Management, Monitoring, Policy and Law (Q4); Waste Management and Disposal (Q4)";"Arts and Humanities; Earth and Planetary Sciences; Environmental Science; Social Sciences" +20333;5700156078;"Poetics Today";journal;"03335372";"Duke University Press";No;No;0,227;Q1;38;23;86;1437;102;83;0,70;62,48;28,57;0;United States;Northern America;"Duke University Press";"2002-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +20334;21101060308;"Vestnik MGIMO-Universiteta";journal;"25419099, 20718160";"MGIMO University";Yes;Yes;0,227;Q1;7;40;162;1256;65;160;0,42;31,40;24,14;0;Russian Federation;Eastern Europe;"MGIMO University";"2019-2025";"History (Q1); Business, Management and Accounting (miscellaneous) (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +20335;5600153334;"Women's History Review";journal;"09612025, 1747583X";"Routledge";No;No;0,227;Q1;32;99;177;4215;137;157;0,75;42,58;76,92;0;United Kingdom;Western Europe;"Routledge";"1992-2026";"History (Q1); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +20336;24843;"Bulletin de la Societe Royale des Sciences de Liege";journal;"00379565, 17835720";"Societe Royale des Sciences de Liege";No;No;0,227;Q2;15;11;171;124;82;170;0,49;11,27;16,67;0;Belgium;Western Europe;"Societe Royale des Sciences de Liege";"1988, 1996-2025";"Multidisciplinary (Q2)";"Multidisciplinary" +20337;21100942847;"European Journal of Pragmatism and American Philosophy";journal;"20364091";"Associazione Culturale Pragma";Yes;Yes;0,227;Q2;8;43;122;1255;43;112;0,26;29,19;39,13;0;Italy;Western Europe;"Associazione Culturale Pragma";"2018-2025";"Philosophy (Q2); Sociology and Political Science (Q3); Applied Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +20338;21100851350;"IZA Journal of Development and Migration";journal;"25201786";"Laborwide";Yes;No;0,227;Q2;33;0;26;0;20;26;0,71;0,00;0,00;0;Germany;Western Europe;"Laborwide";"2018-2024";"Anthropology (Q2); Demography (Q3); Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3); Sociology and Political Science (Q3); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +20339;21101054225;"Studia Semiotyczne";journal;"2544073X, 01376608";"Polskie Towarzystwo Semiotyczne";Yes;Yes;0,227;Q2;3;1;32;31;5;28;0,14;31,00;100,00;0;Poland;Eastern Europe;"Polskie Towarzystwo Semiotyczne";"2019-2024";"Linguistics and Language (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +20340;21101287731;"Al-Khwarizmi Engineering Journal";journal;"23120789, 18181171";"University of Baghdad";Yes;No;0,227;Q3;7;36;78;1274;110;78;1,42;35,39;27,66;0;Iraq;Middle East;"University of Baghdad";"2021-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +20341;21101063835;"Avicenna Journal of Environmental Health Engineering";journal;"24234583, 24236292";"Hamadan University of Medical Sciences";Yes;Yes;0,227;Q3;8;14;48;737;42;47;0,81;52,64;31,15;0;Iran;Middle East;"Hamadan University of Medical Sciences";"2019-2025";"Environmental Science (miscellaneous) (Q3); Environmental Chemistry (Q4); Environmental Engineering (Q4); Health, Toxicology and Mutagenesis (Q4)";"Environmental Science" +20342;19500157814;"Cement, Wapno, Beton";journal;"14258129";"Foundation Cement, Lime, Concrete";No;No;0,227;Q3;20;15;91;583;72;91;0,80;38,87;38,89;0;Poland;Eastern Europe;"Foundation Cement, Lime, Concrete";"2007-2025";"Building and Construction (Q3); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +20343;21101226475;"Energy Storage Science and Technology";journal;"20954239";"";No;No;0,227;Q3;15;226;527;7214;669;527;1,25;31,92;33,13;0;China;Asiatic Region;"";"2019, 2022-2025";"Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Electrochemistry (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Chemical Engineering; Chemistry; Energy; Materials Science" +20344;19900191881;"Ethiopian Journal of Health Development";journal;"10216790";"Ethiopian Public Health Association";Yes;No;0,227;Q3;32;12;118;539;75;115;0,73;44,92;52,94;0;Ethiopia;Africa;"Ethiopian Public Health Association";"2010-2025";"Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)";"Medicine" +20345;69279;"Geography Research Forum";journal;"03335275, 24148725";"Ben Gurion University of the Negev";No;No;0,227;Q3;17;8;22;385;7;19;0,57;48,13;54,55;0;Israel;Middle East;"Ben Gurion University of the Negev";"1990-1993, 1995-2013, 2015-2016, 2019-2020, 2022, 2024-2025";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +20346;5800179613;"International Journal of Ad Hoc and Ubiquitous Computing";journal;"17438225, 17438233";"Inderscience Enterprises Ltd";No;No;0,227;Q3;27;53;180;1723;199;180;0,96;32,51;30,47;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2026";"Computer Networks and Communications (Q3); Hardware and Architecture (Q4); Software (Q4)";"Computer Science" +20347;3900148214;"International Journal of Business Information Systems";journal;"17460972, 17460980";"Inderscience Enterprises Ltd";No;No;0,227;Q3;39;81;233;5983;356;233;1,63;73,86;30,88;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2026";"Information Systems and Management (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Decision Sciences" +20348;21100201512;"International Journal of Decision Support System Technology";journal;"19416296, 1941630X";"IGI Global Publishing";No;No;0,227;Q3;18;23;79;872;93;79;1,04;37,91;36,84;0;United States;Northern America;"IGI Global Publishing";"2009-2026";"Computer Science (miscellaneous) (Q3); Modeling and Simulation (Q4)";"Computer Science; Mathematics" +20349;21100860389;"International Journal of Information Technology Project Management";journal;"19380232, 19380240";"IGI Global Publishing";No;No;0,227;Q3;13;4;39;202;49;37;1,89;50,50;33,33;0;United States;Northern America;"IGI Global Publishing";"2017-2026";"Communication (Q3); Information Systems and Management (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +20350;24646;"Journal of Porphyrins and Phthalocyanines";journal;"10991409, 10884246";"World Scientific";No;No;0,227;Q3;72;122;345;5483;311;343;0,98;44,94;34,19;0;Singapore;Asiatic Region;"World Scientific";"1997-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +20351;23432;"Journal of the Chilean Chemical Society";journal;"07179324, 07179707";"Sociedad Chilena de Quimica";Yes;Yes;0,227;Q3;45;24;111;1600;213;111;1,11;66,67;41,11;0;Chile;Latin America;"Sociedad Chilena de Quimica";"2003-2025";"Chemistry (miscellaneous) (Q3)";"Chemistry" +20352;55321;"Journal of the Professional Association for Cactus Development";journal;"1938663X, 19386648";"Professional Association for Cactus Development";No;No;0,227;Q3;23;12;49;487;55;48;0,86;40,58;45,45;0;United States;Northern America;"Professional Association for Cactus Development";"2003-2011, 2013-2026";"Horticulture (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +20353;19700176043;"Journal of Theoretical and Applied Mechanics";journal;"14292955";"Polish Society of Theoretical and Allied Mechanics";Yes;No;0,227;Q3;35;74;181;1497;190;181;0,91;20,23;26,79;0;Poland;Eastern Europe;"Polish Society of Theoretical and Allied Mechanics";"2007-2025";"Mechanical Engineering (Q3)";"Engineering" +20354;28767;"Nephrology Nursing Journal";journal;"1526744X";"Anthony J. Jannetti Inc.";No;No;0,227;Q3;43;56;170;0;107;166;0,49;0,00;75,42;0;United States;Northern America;"Anthony J. Jannetti Inc.";"2000-2025";"Advanced and Specialized Nursing (Q3); Nephrology (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Nursing" +20355;21100904437;"New Disease Reports";journal;"20440588";"John Wiley & Sons Inc.";Yes;No;0,227;Q3;13;84;253;435;209;143;0,79;5,18;43,81;1;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"2016, 2018-2026";"Agronomy and Crop Science (Q3); Plant Science (Q3); Health, Toxicology and Mutagenesis (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20356;17600155052;"Optical Memory and Neural Networks (Information Optics)";journal;"19347898, 1060992X";"Pleiades Publishing";No;No;0,227;Q3;28;99;213;3322;253;213;1,21;33,56;20,96;0;United States;Northern America;"Pleiades Publishing";"2008-2025";"Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q4)";"Computer Science; Engineering; Materials Science" +20357;27886;"Powder Metallurgy and Metal Ceramics";journal;"10681302, 15739066";"Springer New York";No;No;0,227;Q3;34;45;208;1475;199;208;0,73;32,78;30,53;0;United States;Northern America;"Springer New York";"1993-2025";"Ceramics and Composites (Q3); Materials Chemistry (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3); Condensed Matter Physics (Q4)";"Engineering; Materials Science; Physics and Astronomy" +20358;21101149189;"Revista Ciencias Marinas y Costeras";journal;"1659407X";"Universidad Nacional";Yes;Yes;0,227;Q3;4;15;27;639;18;27;0,31;42,60;48,94;0;Costa Rica;Latin America;"Universidad Nacional";"2019-2026";"Animal Science and Zoology (Q3); Environmental Science (miscellaneous) (Q3); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20359;21101037289;"Science of Soil and Water Conservation";journal;"20962673";"Editorial Board of Science of Soil and Water Conservation";No;No;0,227;Q3;13;143;315;4131;261;315;0,89;28,89;38,77;0;China;Asiatic Region;"Editorial Board of Science of Soil and Water Conservation";"2017-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Soil Science (Q3); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20360;19700173165;"Signa Vitae";journal;"13345605, 1845206X";"Pharmamed Mado Ltd";No;No;0,227;Q3;17;179;441;5444;350;431;0,83;30,41;39,00;0;Croatia;Eastern Europe;"Pharmamed Mado Ltd";"2008-2026";"Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3)";"Medicine" +20361;21101361175;"Sustainable Social Development";journal;"29724880";"Asia Pacific Academy of Science Pte Ltd";No;No;0,227;Q3;5;31;89;1921;123;80;1,38;61,97;33,87;0;Singapore;Asiatic Region;"Asia Pacific Academy of Science Pte Ltd";"2023-2025";"Development (Q3); Public Administration (Q3); Social Sciences (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Social Sciences" +20362;21100301612;"Swiss dental journal";journal;"22966501, 22966498";"Schweizerische Zahnarzte-Gesellschaft";Yes;No;0,227;Q3;32;24;91;0;79;91;0,90;0,00;52,70;0;Switzerland;Western Europe;"Schweizerische Zahnarzte-Gesellschaft";"2014-2026";"Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)";"Dentistry; Medicine" +20363;21100943271;"Trudy Instituta Matematiki i Mekhaniki UrO RAN";journal;"26584786, 01344889";"Krasovskii Institute of Mathematics and Mechanics";No;No;0,227;Q3;11;63;254;1140;61;251;0,25;18,10;25,84;0;Russian Federation;Eastern Europe;"Krasovskii Institute of Mathematics and Mechanics";"2019-2025";"Computational Mechanics (Q3); Applied Mathematics (Q4); Computer Science Applications (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Engineering; Mathematics" +20364;21100881366;"A and A Practice";journal;"25753126";"Wolters Kluwer Health";No;No;0,227;Q4;25;236;329;3506;217;314;0,64;14,86;37,66;0;United States;Northern America;"Wolters Kluwer Health";"2018-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +20365;21101060309;"Chronobiology in Medicine";journal;"26359162";"Korean Society of Sleep Medicine";No;No;0,227;Q4;8;17;95;758;68;90;0,84;44,59;40,74;0;South Korea;Asiatic Region;"Korean Society of Sleep Medicine";"2019-2025";"Behavioral Neuroscience (Q4); Cognitive Neuroscience (Q4); Physiology (Q4); Physiology (medical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +20366;4400151401;"Condensed Matter Physics";journal;"1607324X, 22249079";"Institute for Condensed Matter Physics";Yes;Yes;0,227;Q4;30;42;125;1836;113;121;0,91;43,71;28,57;0;Ukraine;Eastern Europe;"Institute for Condensed Matter Physics";"1998, 2005-2025";"Condensed Matter Physics (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +20367;15075;"Folia Biologica (Poland)";journal;"17349168, 00155497";"Institute of Systematics and Evolution of Animals";Yes;No;0,227;Q4;26;15;59;674;50;59;0,85;44,93;55,56;0;Poland;Eastern Europe;"Institute of Systematics and Evolution of Animals";"1953-1955, 1965-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +20368;26346;"Geologica Balcanica";journal;"25351060, 03240894";"Geological Institute “Strashimir Dimitrov”, Bulgarian Academy of Sciences";No;No;0,227;Q4;9;15;70;841;42;68;0,60;56,07;43,40;0;Bulgaria;Eastern Europe;"Geological Institute “Strashimir Dimitrov”, Bulgarian Academy of Sciences";"1977-1979, 1981-1985, 1987, 1993-1996, 2019-2025";"Geochemistry and Petrology (Q4); Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +20369;18800156719;"IWMI Research Report";journal;"10260862";"International Water Management Institute";No;No;0,227;Q4;11;5;7;319;7;7;1,20;63,80;52,63;5;Sri Lanka;Asiatic Region;"International Water Management Institute";"2009-2025";"Oceanography (Q4); Water Science and Technology (Q4)";"Earth and Planetary Sciences; Environmental Science" +20370;21100244219;"Journal of Applied Optics";journal;"10022082";"Editorial office of Journal of Applied Optics";No;No;0,227;Q4;14;166;500;4190;397;500;0,77;25,24;31,08;0;China;Asiatic Region;"Editorial office of Journal of Applied Optics";"2013-2026";"Atomic and Molecular Physics, and Optics (Q4)";"Physics and Astronomy" +20371;21100912214;"Journal of Chemical Health Risks";journal;"22516719, 22516727";"Islamic Azad University";Yes;No;0,227;Q4;14;76;236;3062;248;236;0,95;40,29;42,13;0;Iran;Middle East;"Islamic Azad University";"2019-2026";"Chemical Health and Safety (Q4); Environmental Chemistry (Q4); Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4)";"Chemical Engineering; Environmental Science; Medicine" +20372;28637;"Journal of the Korean Physical Society";journal;"19768524, 03744884";"Korean Physical Society";No;No;0,227;Q4;56;269;818;8328;699;817;0,86;30,96;21,93;0;South Korea;Asiatic Region;"Korean Physical Society";"1996-2026";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +20373;21100893979;"Mathematical Modeling and Computing";journal;"23129794, 24153788";"Lviv Polytechnic National University";Yes;No;0,227;Q4;14;132;318;3219;354;318;1,12;24,39;41,07;0;United Kingdom;Western Europe;"Lviv Polytechnic National University";"2014-2026";"Computational Mathematics (Q4); Computational Theory and Mathematics (Q4)";"Computer Science; Mathematics" +20374;21101088263;"Mathematics in Applied Sciences and Engineering";journal;"25631926";"Western University Libraries";Yes;Yes;0,227;Q4;8;21;52;724;35;52;0,68;34,48;25,71;0;Canada;Northern America;"Western University Libraries";"2020-2025";"Applied Mathematics (Q4); Modeling and Simulation (Q4)";"Mathematics" +20375;5000153301;"Proyecciones";journal;"07176279, 07160917";"Universidad Catolica del Norte";Yes;Yes;0,227;Q4;20;52;252;1035;142;252;0,48;19,90;19,48;0;Chile;Latin America;"Universidad Catolica del Norte";"2000-2002, 2006-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +20376;22528;"Przeglad Epidemiologiczny";journal;"00332100";"Panstwowy Zaklad Higieny/National Institute of Hygiene";Yes;No;0,227;Q4;24;40;109;0;78;108;0,67;0,00;66,23;1;Poland;Eastern Europe;"Panstwowy Zaklad Higieny/National Institute of Hygiene";"1953-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +20377;17700156709;"Quality - Access to Success";journal;"15822559";"SRAC - Societatea Romana Pentru Asigurarea Calitatii";No;No;0,227;Q4;31;276;731;12650;998;731;1,49;45,83;40,88;0;Romania;Eastern Europe;"SRAC - Societatea Romana Pentru Asigurarea Calitatii";"2009-2026";"Business and International Management (Q4); Management Information Systems (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +20378;21100199320;"Random Operators and Stochastic Equations";journal;"09266364, 1569397X";"Walter de Gruyter GmbH";No;No;0,227;Q4;21;29;79;608;35;79;0,55;20,97;18,18;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1993-2026";"Analysis (Q4); Statistics and Probability (Q4)";"Mathematics" +20379;19700186871;"Transactions on Data Privacy";journal;"18885063, 20131631";"University of Skovde";Yes;Yes;0,227;Q4;31;7;22;278;24;22;1,27;39,71;15,79;0;Spain;Western Europe;"University of Skovde";"2009-2026";"Software (Q4); Statistics and Probability (Q4)";"Computer Science; Mathematics" +20380;19903;"American Society of Mechanical Engineers, Pressure Vessels and Piping Division (Publication) PVP";conference and proceedings;"0277027X";"American Society of Mechanical Engineers (ASME)";No;No;0,227;-;35;507;1259;8006;541;1229;0,45;15,79;15,20;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1979-2006, 2008, 2010-2025";"Mechanical Engineering";"Engineering" +20381;79800;"IEEE International Conference on Microelectronic Test Structures";conference and proceedings;"10719032, 21581029";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,227;-;24;34;103;351;48;98;0,50;10,32;18,54;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1988, 1993-2020, 2022-2025";"Electrical and Electronic Engineering";"Engineering" +20382;26137;"Proceedings of the International Conference on Power Electronics and Drive Systems";conference and proceedings;"21645256, 21645264";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,227;-;46;85;97;1257;74;96;0,76;14,79;22,22;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1995, 1997, 1999, 2001, 2003, 2005, 2007, 2009, 2011, 2013, 2015, 2017-2019, 2023, 2025";"Electrical and Electronic Engineering";"Engineering" +20383;21101026994;"Architecture and Urban Planning";journal;"22558764, 16914333";"Walter de Gruyter GmbH";No;No;0,226;Q1;7;19;56;762;44;56;0,83;40,11;55,10;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2019-2026";"History (Q1); Architecture (Q2); Conservation (Q2); Geography, Planning and Development (Q3); Nature and Landscape Conservation (Q3); Urban Studies (Q3)";"Arts and Humanities; Engineering; Environmental Science; Social Sciences" +20384;21100789026;"Journal for the Study of Spirituality";journal;"20440251, 20440243";"Taylor and Francis Ltd.";No;No;0,226;Q1;12;25;45;1280;48;39;0,93;51,20;60,27;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Religious Studies (Q1)";"Arts and Humanities" +20385;4700152246;"Journal of American History";journal;"00218723, 19452314";"Oxford University Press";No;No;0,226;Q1;57;22;79;1595;54;72;0,40;72,50;40,74;0;United States;Northern America;"Oxford University Press";"1964-2025";"History (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities" +20386;16800154741;"Journal of Religion in Europe";journal;"18748929, 18748910";"Brill Academic Publishers";No;No;0,226;Q1;17;20;50;1086;41;47;0,62;54,30;45,45;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2025";"Religious Studies (Q1)";"Arts and Humanities" +20387;5700154656;"Literator";journal;"22198237, 02582279";"AOSIS (Pty) Ltd";Yes;No;0,226;Q1;9;20;58;561;58;55;0,91;28,05;52,94;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2014-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +20388;21100865762;"ASp";journal;"12468185, 21086354";"Groupe detude et de recherche en anglais de specialite";No;No;0,226;Q2;6;30;27;832;20;19;0,57;27,73;76,47;0;France;Western Europe;"Groupe detude et de recherche en anglais de specialite";"2015, 2018-2025";"Linguistics and Language (Q2)";"Social Sciences" +20389;21101138629;"JALT Journal";journal;"02872420";"JALT";No;No;0,226;Q2;9;0;26;0;23;22;0,73;0,00;0,00;0;Japan;Asiatic Region;"JALT";"2013-2023";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +20390;19700183130;"Journal of Asia TEFL";journal;"24661511, 17383102";"The Asian Association of Teachers of English as a Foreign Language";Yes;No;0,226;Q2;26;48;229;1784;158;204;0,59;37,17;50,65;0;South Korea;Asiatic Region;"The Asian Association of Teachers of English as a Foreign Language";"2004, 2007, 2010-2026";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +20391;21101055967;"Journal of Language and Discrimination";journal;"23972645, 23972637";"Equinox Publishing Ltd";No;No;0,226;Q2;8;6;39;319;39;36;0,72;53,17;88,89;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2019-2025";"Linguistics and Language (Q2); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20392;145728;"Journal of Shanghai Jiaotong University (Science)";journal;"19958188, 10071172";"Shanghai Jiaotong University";No;No;0,226;Q2;27;215;339;6547;348;339;1,07;30,45;32,46;0;China;Asiatic Region;"Shanghai Jiaotong University";"2005-2026";"Multidisciplinary (Q2)";"Multidisciplinary" +20393;21101281548;"Journal of Writing Analytics";journal;"24747491";"";No;No;0,226;Q2;8;10;12;520;14;10;0,40;52,00;64,29;0;United States;Northern America;"";"2020-2022, 2024-2025";"Arts and Humanities (miscellaneous) (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +20394;21101100272;"PASOS Revista de Turismo y Patrimonio Cultural";journal;"16957121, 2529959X";"University of La Laguna";Yes;Yes;0,226;Q2;12;76;197;4205;175;196;0,85;55,33;44,52;0;Spain;Western Europe;"University of La Laguna";"2019-2026";"Anthropology (Q2); Cultural Studies (Q2); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +20395;4100151533;"Advances in Health Care Management";journal;"14748231";"Emerald Group Publishing Ltd.";No;No;0,226;Q3;20;12;21;122;19;6;0,42;10,17;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2002, 2004-2005, 2007-2015, 2019-2022, 2024-2026";"Health Policy (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +20396;21100894743;"Asian Economic and Financial Review";journal;"23052147, 22226737";"Asian Economic and Social Society";Yes;No;0,226;Q3;24;120;201;6317;304;201;1,50;52,64;35,27;0;Pakistan;Asiatic Region;"Asian Economic and Social Society";"2018-2026";"Business, Management and Accounting (miscellaneous) (Q3); Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +20397;21101128457;"Critical Education";journal;"19204175";"Institute for Critical Education Studies";Yes;Yes;0,226;Q3;10;40;78;2496;72;77;0,73;62,40;36,36;0;Canada;Northern America;"Institute for Critical Education Studies";"2019-2026";"Education (Q3)";"Social Sciences" +20398;28015;"Cuadernos Geograficos";journal;"23400129, 02105462";"University of Granada";Yes;Yes;0,226;Q3;18;30;92;1712;59;92;0,68;57,07;41,43;0;Spain;Western Europe;"University of Granada";"1983, 1992-1993, 1995, 1997-2000, 2002-2026";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +20399;21101144514;"Current Green Chemistry";journal;"22133461, 2213347X";"Bentham Science Publishers";No;No;0,226;Q3;16;41;59;3956;116;51;1,75;96,49;36,09;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2019-2026";"Chemistry (miscellaneous) (Q3); Analytical Chemistry (Q4); Inorganic Chemistry (Q4); Organic Chemistry (Q4)";"Chemistry" +20400;21100887424;"Electronic Journal of Knowledge Management";journal;"14794411";"Academic Conferences and Publishing International Limited";Yes;No;0,226;Q3;15;22;39;1683;88;38;2,64;76,50;46,67;0;United Kingdom;Western Europe;"Academic Conferences and Publishing International Limited";"2018-2026";"Computer Networks and Communications (Q3); Computer Science Applications (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Computer Science" +20401;26196;"Hsi-An Chiao Tung Ta Hsueh/Journal of Xi'an Jiaotong University";journal;"0253987X";"Xi'an Jiaotong University";No;No;0,226;Q3;31;249;726;7224;734;726;1,02;29,01;28,40;0;China;Asiatic Region;"Xi'an Jiaotong University";"1986, 1990-1995, 1998-2026";"Engineering (miscellaneous) (Q3); Clinical Biochemistry (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +20402;4700152235;"International Journal of Accounting, Auditing and Performance Evaluation";journal;"17408008, 17408016";"Inderscience Enterprises Ltd";No;No;0,226;Q3;22;33;56;2234;112;56;2,25;67,70;42,35;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2025";"Accounting (Q3); Finance (Q3); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +20403;21100903186;"International Journal of Computational Methods and Experimental Measurements";journal;"20460554, 20460546";"International Information and Engineering Technology Association";Yes;No;0,226;Q3;14;77;102;2386;161;102;1,89;30,99;21,56;0;Canada;Northern America;"International Information and Engineering Technology Association";"2013-2025";"Computational Mechanics (Q3); Applied Mathematics (Q4); Computational Mathematics (Q4); Computer Science Applications (Q4); Modeling and Simulation (Q4)";"Computer Science; Engineering; Mathematics" +20404;21100886411;"International Journal of Education and Practice";journal;"23116897, 23103868";"Conscientia Beam";No;No;0,226;Q3;17;130;168;6035;176;168;0,88;46,42;46,77;0;United States;Northern America;"Conscientia Beam";"2017-2026";"Education (Q3); Developmental and Educational Psychology (Q4)";"Psychology; Social Sciences" +20405;20965;"Journal of Friction and Wear";journal;"19349386, 10683666";"Pleiades Publishing";No;No;0,226;Q3;28;49;178;686;120;178;0,65;14,00;32,37;0;United States;Northern America;"Pleiades Publishing";"1992-1993, 1996-2002, 2007, 2009-2025";"Mechanics of Materials (Q3); Surfaces, Coatings and Films (Q3)";"Engineering; Materials Science" +20406;15216;"Journal of the American Podiatric Medical Association";journal;"87507315, 19308264";"Multidisciplinary Digital Publishing Institute (MDPI)";No;No;0,226;Q3;70;167;363;4223;232;345;0,62;25,29;33,87;0;United States;Northern America;"Multidisciplinary Digital Publishing Institute (MDPI)";"1985-2026";"Podiatry (Q3); Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4)";"Health Professions; Medicine" +20407;21100792560;"Law and Financial Markets Review";journal;"17521459, 17521440";"Taylor and Francis Ltd.";No;No;0,226;Q3;13;17;39;416;36;36;0,95;24,47;42,86;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2008, 2011, 2014-2023, 2025-2026";"Finance (Q3); Law (Q3)";"Economics, Econometrics and Finance; Social Sciences" +20408;21101028597;"Ledger";journal;"23795980";"University Library System, University of Pittsburgh";Yes;Yes;0,226;Q3;11;9;18;360;27;15;1,73;40,00;11,11;0;United States;Northern America;"University Library System, University of Pittsburgh";"2019-2025";"Computer Science (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Computer Science Applications (Q4); Software (Q4)";"Computer Science; Economics, Econometrics and Finance" +20409;144734;"Liverpool Law Review";journal;"15728625, 0144932X";"Springer Netherlands";No;No;0,226;Q3;18;21;69;1075;52;67;0,82;51,19;26,92;1;Netherlands;Western Europe;"Springer Netherlands";"1979-1996, 1999-2002, 2005-2026";"Law (Q3)";"Social Sciences" +20410;21100223541;"Malaysian Applied Biology";journal;"01268643, 2462151X";"Malaysian Society of Applied Biology";Yes;No;0,226;Q3;17;57;297;3038;302;297;0,92;53,30;55,95;0;Malaysia;Asiatic Region;"Malaysian Society of Applied Biology";"1980, 1986-1987, 2012-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +20411;21101178253;"Max Planck Yearbook of United Nations Law";book series;"13894633";"Brill Nijhoff";No;No;0,226;Q3;31;8;73;1024;36;68;0,49;128,00;50,00;0;Netherlands;Western Europe;"Brill Nijhoff";"1998, 2000-2012, 2014-2015, 2017-2019, 2021, 2023-2025";"Law (Q3)";"Social Sciences" +20412;21100897139;"Nordic Studies in Science Education";journal;"18941257";"University of Oslo, Norwegian Centre for Science Education";Yes;Yes;0,226;Q3;10;20;60;740;37;54;0,52;37,00;74,42;0;Sweden;Western Europe;"University of Oslo, Norwegian Centre for Science Education";"2018-2025";"Education (Q3)";"Social Sciences" +20413;72196;"Pesquisa Agropecuaria Brasileira";journal;"0100204X, 16783921";"Embrapa";Yes;Yes;0,226;Q3;68;71;271;3181;219;271;0,65;44,80;40,57;0;Brazil;Latin America;"Embrapa";"1978, 1983-1984, 1986-1987, 1996-2025";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Horticulture (Q3); Soil Science (Q3); Insect Science (Q4)";"Agricultural and Biological Sciences" +20414;17500155108;"Radioengineering";journal;"12102512";"Czech Technical University in Prague";Yes;No;0,226;Q3;51;60;189;2003;197;189;1,13;33,38;27,98;0;Czech Republic;Eastern Europe;"Czech Technical University in Prague";"1996-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +20415;57806;"Socijalna Ekologija";journal;"13300113";"Croatian Sociological Association";Yes;Yes;0,226;Q3;13;9;34;492;18;33;0,70;54,67;85,00;0;Croatia;Eastern Europe;"Croatian Sociological Association";"1994-2025";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +20416;19283;"Turkish Journal of Surgery";journal;"25647032, 25646850";"Turkish Surgical Society";No;No;0,226;Q3;20;79;174;1577;126;162;0,62;19,96;22,84;0;Turkey;Middle East;"Turkish Surgical Society";"1994-2025";"Surgery (Q3)";"Medicine" +20417;12014;"Anuario de Psicologia";journal;"00665126, 19885253";"Universitat de Barcelona";Yes;Yes;0,226;Q4;20;13;59;822;39;59;0,40;63,23;57,89;0;Spain;Western Europe;"Universitat de Barcelona";"2002-2009, 2011-2025";"Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4)";"Medicine; Psychology" +20418;14202;"Archives Italiennes de Biologie";journal;"00039829";"University of Pisa";No;No;0,226;Q4;46;0;10;0;10;10;0,00;0,00;0,00;0;Italy;Western Europe;"University of Pisa";"1952, 1962-2022";"Cell Biology (Q4); Medicine (miscellaneous) (Q4); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +20419;26725;"Chinese Journal of Hepatology";journal;"10073418";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,226;Q4;26;154;569;5428;492;568;0,82;35,25;48,04;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1999-2018, 2020-2026";"Hepatology (Q4)";"Medicine" +20420;4700152869;"Engenharia Sanitaria e Ambiental";journal;"14134152";"ABES - Associacao Brasileira de Engenharia Sanitaria e Ambiental";Yes;No;0,226;Q4;26;32;229;1492;162;229;0,78;46,63;37,50;0;Brazil;Latin America;"ABES - Associacao Brasileira de Engenharia Sanitaria e Ambiental";"2006-2025";"Waste Management and Disposal (Q4)";"Environmental Science" +20421;21101162998;"Journal of Classical Analysis";journal;"18485987";"Ele-Math";No;No;0,226;Q4;6;37;73;867;32;73;0,35;23,43;24,07;0;Croatia;Eastern Europe;"Ele-Math";"2019-2025";"Analysis (Q4); Statistics and Probability (Q4)";"Mathematics" +20422;11300153732;"Nano";journal;"17937094, 17932920";"World Scientific Publishing Co. Pte Ltd";Yes;No;0,226;Q4;39;214;356;9961;485;356;1,39;46,55;32,59;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2007-2026";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Nanoscience and Nanotechnology (Q4)";"Materials Science; Physics and Astronomy" +20423;16438;"Orvosi Hetilap";journal;"00306002, 17886120";"Akademiai Kiado ZRt.";No;No;0,226;Q4;28;259;806;7718;384;792;0,50;29,80;43,70;1;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"1949-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +20424;21100244210;"Primary Dental Journal";journal;"20501684, 20501692";"SAGE Publications Ltd";No;No;0,226;Q4;22;38;132;0;83;104;0,63;0,00;51,32;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2012-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +20425;24086;"Pteridines";journal;"21954720, 09334807";"Walter de Gruyter GmbH";Yes;No;0,226;Q4;19;4;14;205;9;13;0,67;51,25;62,50;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1989-1991, 1993-2025";"Biochemistry (Q4); Clinical Biochemistry (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology" +20426;21101260633;"Uzbek Mathematical Journal";journal;"20107269";"Romanovsky Institute of Mathematics of the Academy of Sciences of the Republic of Uzbekistan";No;No;0,226;Q4;7;90;203;1963;75;203;0,34;21,81;26,35;0;Uzbekistan;Asiatic Region;"Romanovsky Institute of Mathematics of the Academy of Sciences of the Republic of Uzbekistan";"2020-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Mathematical Physics (Q4); Statistics and Probability (Q4)";"Mathematics" +20427;21100229835;"Computational Linguistics in the Netherlands Journal";conference and proceedings;"22114009";"Computational Linguistics in the Netherlands";No;No;0,226;-;15;26;30;1107;32;26;2,00;42,58;49,12;0;Netherlands;Western Europe;"Computational Linguistics in the Netherlands";"2011-2022, 2024-2025";"Computer Science Applications; Linguistics and Language; Logic";"Computer Science; Mathematics; Social Sciences" +20428;21100197335;"IEEE Workshop on Local and Metropolitan Area Networks";conference and proceedings;"19440375, 19440367";"IEEE Computer Society";No;No;0,226;-;21;23;58;324;49;49;1,05;14,09;32,39;0;United States;Northern America;"IEEE Computer Society";"1993, 1999, 2011, 2013, 2015-2025";"Computer Networks and Communications; Electrical and Electronic Engineering; Media Technology; Software";"Computer Science; Engineering" +20429;21100216911;"International Conference Recent Advances in Natural Language Processing, RANLP";conference and proceedings;"26032821, 13138502";"Incoma Ltd";No;No;0,226;-;40;0;150;0;199;146;1,33;0,00;0,00;0;United States;Northern America;"Incoma Ltd";"2005-2009, 2011, 2013, 2015, 2017, 2019, 2021, 2023";"Artificial Intelligence; Computer Science Applications; Electrical and Electronic Engineering; Software";"Computer Science; Engineering" +20430;87075;"Proceedings of the IEEE Power Engineering Society Transmission and Distribution Conference";conference and proceedings;"21608563, 21608555";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,226;-;72;0;181;0;97;179;0,50;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1994, 1996, 1999-2003, 2005-2006, 2012, 2014, 2016, 2018, 2020, 2022, 2024";"Electrical and Electronic Engineering; Energy (miscellaneous); Engineering (miscellaneous)";"Energy; Engineering" +20431;21101216641;"Impossibilia";journal;"21742464";"Universidad de Granada";Yes;Yes;0,225;Q1;4;29;71;709;21;65;0,27;24,45;62,50;0;Spain;Western Europe;"Universidad de Granada";"2020-2025";"Literature and Literary Theory (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +20432;12002;"Journal of the History of the Behavioral Sciences";journal;"00225061, 15206696";"John Wiley & Sons Inc.";No;No;0,225;Q1;35;16;68;1450;59;64;0,77;90,63;27,78;0;United States;Northern America;"John Wiley & Sons Inc.";"1967, 1969-2026";"History (Q1); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology" +20433;21853;"Modern and Contemporary France";journal;"14699869, 09639489";"Taylor and Francis Ltd.";No;No;0,225;Q1;18;39;92;1720;57;83;0,44;44,10;58,82;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-1995, 1997, 1999, 2001, 2009-2026";"History (Q1); Cultural Studies (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +20434;21101073951;"Pharos Journal of Theology";journal;"24143324";"Africa Journals";Yes;No;0,225;Q1;9;185;369;7983;226;369;0,67;43,15;34,78;0;South Africa;Africa;"Africa Journals";"2019-2025";"Religious Studies (Q1); Archeology (arts and humanities) (Q2); Philosophy (Q2)";"Arts and Humanities" +20435;18761;"Advances in Complex Systems";journal;"02195259, 17936802";"World Scientific Publishing Co. Pte Ltd";No;No;0,225;Q2;42;25;60;1092;65;59;0,94;43,68;30,30;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2004-2026";"Multidisciplinary (Q2); Control and Systems Engineering (Q4)";"Engineering; Multidisciplinary" +20436;85412;"Archaeological Journal";journal;"23732288, 00665983";"Routledge";No;No;0,225;Q2;20;6;25;599;9;22;0,40;99,83;22,22;0;United Kingdom;Western Europe;"Routledge";"1977, 1996-2026";"Archeology (Q2); Archeology (arts and humanities) (Q2); Conservation (Q2)";"Arts and Humanities; Social Sciences" +20437;12831;"Ceskoslovenska Psychologie";journal;"18046436, 0009062X";"Academy of Sciences of the Czech Republic";No;No;0,225;Q2;18;28;101;1597;64;97;0,61;57,04;52,17;0;Czech Republic;Eastern Europe;"Academy of Sciences of the Czech Republic";"1960-1962, 1996-2025";"Arts and Humanities (miscellaneous) (Q2); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology" +20438;21100897050;"Chinese Semiotic Studies";journal;"21989613, 21989605";"De Gruyter Mouton";No;No;0,225;Q2;13;30;102;1185;82;101;0,80;39,50;44,44;0;Germany;Western Europe;"De Gruyter Mouton";"2009-2025";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +20439;20600195513;"Etnografia e Ricerca Qualitativa";journal;"19733194, 26122421";"Societa Editrice Il Mulino";No;No;0,225;Q2;13;28;76;1427;54;74;0,71;50,96;56,76;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2012-2025";"Anthropology (Q2); Cultural Studies (Q2); Sociology and Political Science (Q3)";"Social Sciences" +20440;21100823283;"International Journal of Asian Business and Information Management";journal;"19479638, 19479646";"IGI Global Publishing";No;No;0,225;Q2;18;30;71;1722;122;71;1,10;57,40;49,37;0;United States;Northern America;"IGI Global Publishing";"2017-2026";"Cultural Studies (Q2); Business and International Management (Q4); Computer Science Applications (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science; Social Sciences" +20441;21101375100;"Mimbar Hukum";journal;"0852100X, 24430994";"Gadjah Mada University Faculty of Law";Yes;No;0,225;Q2;3;16;75;863;24;74;0,33;53,94;26,32;0;Indonesia;Asiatic Region;"Gadjah Mada University Faculty of Law";"2021-2025";"Philosophy (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +20442;21100833036;"Texto Livre";journal;"19833652";"Lundiana";Yes;Yes;0,225;Q2;12;55;169;2086;119;167;0,72;37,93;44,14;0;Brazil;Latin America;"Lundiana";"2017-2026";"Linguistics and Language (Q2); Communication (Q3); Education (Q3); Computer Science Applications (Q4)";"Computer Science; Social Sciences" +20443;7700153234;"Acta Facultatis Xylologiae Zvolen";journal;"13363824";"Technical University in Zvolen";Yes;No;0,225;Q3;19;26;79;756;69;78;0,91;29,08;34,25;0;Slovakia;Eastern Europe;"Technical University in Zvolen";"2007-2025";"Forestry (Q3)";"Agricultural and Biological Sciences" +20444;21100909464;"Acta Scientiarum Polonorum, Administratio Locorum";journal;"24500771, 16440749";"Publisher of the University of Warmia and Mazury in Olsztyn";Yes;Yes;0,225;Q3;10;38;115;1933;111;115;1,13;50,87;61,80;0;Poland;Eastern Europe;"Publisher of the University of Warmia and Mazury in Olsztyn";"2019-2025";"Geography, Planning and Development (Q3); Nature and Landscape Conservation (Q3); Urban Studies (Q3); Transportation (Q4)";"Environmental Science; Social Sciences" +20445;21100201051;"Annals of Library and Information Studies";journal;"09725423, 09752404";"National Institute of Science Communication and Information Resources (NISCAIR)";Yes;Yes;0,225;Q3;19;44;83;1199;60;83;0,45;27,25;40,00;0;India;Asiatic Region;"National Institute of Science Communication and Information Resources (NISCAIR)";"2011-2025";"Library and Information Sciences (Q3); Computer Science Applications (Q4)";"Computer Science; Social Sciences" +20446;21101055747;"Australian Journal of Otolaryngology";journal;"26162792";"AME Publishing Company";No;No;0,225;Q3;9;53;101;1289;49;100;0,51;24,32;34,72;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2018-2026";"Otorhinolaryngology (Q3)";"Medicine" +20447;24423;"Canadian Journal of Latin American and Caribbean Studies";journal;"23331461, 08263663";"Taylor and Francis Ltd.";No;No;0,225;Q3;16;22;79;1182;49;65;0,44;53,73;47,06;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-2011, 2014-2026";"Development (Q3); Geography, Planning and Development (Q3); Political Science and International Relations (Q3)";"Social Sciences" +20448;21100825843;"Chinese General Practice";journal;"10079572";"Chinese General Practice";Yes;No;0,225;Q3;21;610;1993;22234;1507;1980;0,78;36,45;50,02;0;China;Asiatic Region;"Chinese General Practice";"2016-2026";"Family Practice (Q3); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +20449;21101070780;"CommIT Journal";journal;"19792484, 24607010";"Bina Nusantara University";Yes;No;0,225;Q3;10;20;59;762;101;59;1,59;38,10;37,14;0;Indonesia;Asiatic Region;"Bina Nusantara University";"2019-2025";"Computer Networks and Communications (Q3); Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Information Systems (Q3)";"Computer Science; Engineering" +20450;21100199774;"Evidence Based Library and Information Practice";journal;"1715720X";"University of Alberta";Yes;Yes;0,225;Q3;22;54;151;1415;121;138;0,91;26,20;73,08;0;Canada;Northern America;"University of Alberta";"2011-2025";"Library and Information Sciences (Q3)";"Social Sciences" +20451;21101049549;"Fisioterapia em Movimento";journal;"19805918";"Pontificia Universidade Catolica do Parana";Yes;No;0,225;Q3;7;50;152;1698;96;149;0,59;33,96;57,95;0;Brazil;Latin America;"Pontificia Universidade Catolica do Parana";"2019-2025";"Complementary and Manual Therapy (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3); Orthopedics and Sports Medicine (Q4)";"Health Professions; Medicine" +20452;145661;"International Advances in Economic Research";journal;"1573966X, 10830898";"Springer";No;No;0,225;Q3;38;18;79;605;81;63;1,18;33,61;33,33;0;United States;Northern America;"Springer";"1995-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +20453;4700152641;"International Journal of Foundations of Computer Science";journal;"17936373, 01290541";"World Scientific Publishing Co. Pte Ltd";No;No;0,225;Q3;47;110;167;2823;129;159;0,57;25,66;35,11;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1999-2026";"Computer Science (miscellaneous) (Q3)";"Computer Science" +20454;19700201674;"International Journal of Gas Turbine, Propulsion and Power Systems";journal;"18825079";"Gas Turbine Society of Japan";No;No;0,225;Q3;14;2;54;50;49;54;0,88;25,00;33,33;0;Japan;Asiatic Region;"Gas Turbine Society of Japan";"2007-2008, 2010, 2012-2017, 2020-2025";"Mechanical Engineering (Q3)";"Engineering" +20455;16800154757;"International Journal of Oil, Gas and Coal Technology";journal;"17533309, 17533317";"Inderscience Publishers";No;No;0,225;Q3;24;48;172;2018;158;172;1,01;42,04;27,32;0;United Kingdom;Western Europe;"Inderscience Publishers";"2008-2026";"Energy (miscellaneous) (Q3)";"Energy" +20456;22508;"Invertebrate Reproduction and Development";journal;"21570272, 07924259";"Taylor and Francis Ltd.";No;No;0,225;Q3;43;27;60;1245;47;60;0,68;46,11;35,42;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Animal Science and Zoology (Q3); Developmental Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +20457;145365;"Jilin Daxue Xuebao (Gongxueban)/Journal of Jilin University (Engineering and Technology Edition)";journal;"16715497";"Editorial Board of Jilin University";No;No;0,225;Q3;26;234;1094;5887;953;1094;0,88;25,16;31,48;0;China;Asiatic Region;"Editorial Board of Jilin University";"2005-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +20458;21101040700;"Journal of Applied Rehabilitation Counseling";journal;"00472220, 26397641";"Springer Publishing Company";No;No;0,225;Q3;7;25;44;1331;27;43;0,54;53,24;68,92;0;United States;Northern America;"Springer Publishing Company";"1970, 2019-2025";"Chiropractics (Q3); Occupational Therapy (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3); Analysis (Q4); Applied Psychology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Mathematics; Medicine; Psychology" +20459;21100454976;"Journal of Automation, Mobile Robotics and Intelligent Systems";journal;"20802145, 18978649";"Sciendo";Yes;No;0,225;Q3;14;38;109;1220;119;109;1,08;32,11;21,65;0;Poland;Eastern Europe;"Sciendo";"2015-2025";"Signal Processing (Q3); Artificial Intelligence (Q4); Control and Systems Engineering (Q4)";"Computer Science; Engineering" +20460;21101044836;"Journal of Computer Science and Technology (Argentina)";journal;"16666046, 16666038";"Facultad de Informatica, Universidad Nacional de La Plata";Yes;Yes;0,225;Q3;8;11;50;427;53;47;1,00;38,82;25,00;0;Argentina;Latin America;"Facultad de Informatica, Universidad Nacional de La Plata";"2019-2025";"Computer Science (miscellaneous) (Q3); Computer Vision and Pattern Recognition (Q3); Artificial Intelligence (Q4); Computer Science Applications (Q4); Hardware and Architecture (Q4); Software (Q4)";"Computer Science" +20461;21100896882;"Journal of Educational and Social Research";journal;"2239978X, 22400524";"Richtmann Publishing Ltd";No;No;0,225;Q3;19;235;532;9758;565;532;1,09;41,52;47,15;0;Poland;Eastern Europe;"Richtmann Publishing Ltd";"2018-2026";"Education (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +20462;21101347015;"Journal of Pedagogical Sociology and Psychology";journal;"26873788";"Duzce University, Faculty of Education";Yes;No;0,225;Q3;7;45;81;2203;83;80;1,03;48,96;39,51;0;Turkey;Middle East;"Duzce University, Faculty of Education";"2021-2025";"Education (Q3); Social Sciences (miscellaneous) (Q3); Developmental and Educational Psychology (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +20463;21100806903;"Journal of Threatened Taxa";journal;"09747907, 09747893";"Zoo Outreach Organisation";Yes;No;0,225;Q3;19;145;714;4461;418;669;0,61;30,77;30,06;0;India;Asiatic Region;"Zoo Outreach Organisation";"2012, 2016-2026";"Animal Science and Zoology (Q3); Nature and Landscape Conservation (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Management, Monitoring, Policy and Law (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20464;21101250389;"Journal on Interactive Systems";journal;"27637719";"Brazilian Computing Society";Yes;Yes;0,225;Q3;10;60;130;2689;134;130;1,09;44,82;36,67;0;Brazil;Latin America;"Brazilian Computing Society";"2020-2026";"Information Systems (Q3); Computer Science Applications (Q4); Human-Computer Interaction (Q4)";"Computer Science" +20465;21280;"London Journal";journal;"17496322, 03058034";"Maney Publishing";No;No;0,225;Q3;18;37;48;2039;33;46;0,61;55,11;52,63;0;United Kingdom;Western Europe;"Maney Publishing";"1975-1987, 1989-2026";"Geography, Planning and Development (Q3); Urban Studies (Q3)";"Social Sciences" +20466;21101279759;"Military Law and the Law of War Review";journal;"13706209, 27325520";"Edward Elgar Publishing Ltd.";No;No;0,225;Q3;3;6;33;180;10;24;0,35;30,00;60,00;0;United Kingdom;Western Europe;"Edward Elgar Publishing Ltd.";"2021-2025";"Law (Q3)";"Social Sciences" +20467;21100941615;"Mongolian Journal of Chemistry";journal;"24140082, 22266739";"Institute of Chemistry and Chemical Technology, Mongolian Academy of Sciences";Yes;Yes;0,225;Q3;8;10;30;336;38;25;1,57;33,60;48,28;0;Mongolia;Asiatic Region;"Institute of Chemistry and Chemical Technology, Mongolian Academy of Sciences";"2016-2026";"Chemistry (miscellaneous) (Q3); Materials Chemistry (Q3); Biochemistry (Q4); Environmental Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Environmental Science; Materials Science" +20468;7700153231;"New Zealand Plant Protection";journal;"1179352X, 11759003";"New Zealand Plant Protection Society";No;No;0,225;Q3;28;4;20;202;17;19;0,85;50,50;52,94;0;New Zealand;Pacific Region;"New Zealand Plant Protection Society";"2002, 2007-2025";"Agronomy and Crop Science (Q3); Horticulture (Q3); Insect Science (Q4)";"Agricultural and Biological Sciences" +20469;21100415027;"Obshchaya Reanimatologiya";journal;"24117110, 18139779";"V.A. Negovsky Research Institute of General Reanimatology";Yes;Yes;0,225;Q3;13;40;134;1601;116;131;0,99;40,03;31,70;0;Russian Federation;Eastern Europe;"V.A. Negovsky Research Institute of General Reanimatology";"2015-2026";"Critical Care and Intensive Care Medicine (Q3)";"Medicine" +20470;17048;"Physikalische Medizin Rehabilitationsmedizin Kurortmedizin";journal;"1439085X, 09406689";"Georg Thieme Verlag";Yes;No;0,225;Q3;20;40;150;1135;90;118;0,37;28,38;45,92;0;Germany;Western Europe;"Georg Thieme Verlag";"1991-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3); Sports Science (Q4)";"Health Professions; Medicine" +20471;21101087349;"Plant Protection";journal;"26171287, 26171279";"EScience Press";No;No;0,225;Q3;11;98;165;3873;174;164;1,16;39,52;29,81;0;Pakistan;Asiatic Region;"EScience Press";"2019-2025";"Plant Science (Q3)";"Agricultural and Biological Sciences" +20472;21100818510;"Progress in Steel Building Structures";journal;"16719379";"Tongji University";Yes;No;0,225;Q3;12;117;377;2349;217;377;0,52;20,08;26,53;0;China;Asiatic Region;"Tongji University";"2015-2025";"Metals and Alloys (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4); Numerical Analysis (Q4)";"Engineering; Materials Science; Mathematics" +20473;12460;"Przeglad Geograficzny";journal;"00332143";"Polska Akademia Nauk";Yes;Yes;0,225;Q3;18;22;62;1092;42;60;0,68;49,64;31,82;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1976-1989, 1993-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +20474;21100782865;"Real Estate Management and Valuation";journal;"23005289";"De Gruyter Open Ltd";Yes;No;0,225;Q3;16;51;103;2469;138;103;1,27;48,41;56,25;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2014-2026";"Finance (Q3); Economics and Econometrics (Q4); Marketing (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +20475;19900191542;"Rivista Italiana di Politiche Pubbliche";journal;"2612100X, 17221137";"Societa Editrice Il Mulino";No;No;0,225;Q3;13;16;51;931;45;51;0,71;58,19;43,33;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2015-2025";"Public Administration (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20476;19700170038;"Romanian Journal of European Affairs";journal;"15828271, 18414273";"European Institute of Romania";Yes;Yes;0,225;Q3;13;16;43;841;40;43;0,69;52,56;67,65;0;Romania;Eastern Europe;"European Institute of Romania";"2011-2025";"Political Science and International Relations (Q3)";"Social Sciences" +20477;21100857217;"South-East European Forestry";journal;"18476481, 18490891";"Croatian Forest Research Institute";Yes;Yes;0,225;Q3;13;13;60;756;62;60;0,98;58,15;38,30;0;Croatia;Eastern Europe;"Croatian Forest Research Institute";"2017-2025";"Forestry (Q3)";"Agricultural and Biological Sciences" +20478;27652;"Strategic Planning for Energy and the Environment";journal;"10485236, 15460126";"";No;No;0,225;Q3;15;39;99;1418;133;98;1,38;36,36;39,64;0;United States;Northern America;"";"1990-2025";"Environmental Science (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Environmental Science" +20479;21100256989;"Theory and Practice of Legislation";journal;"20508859, 20508840";"Taylor and Francis Ltd.";No;No;0,225;Q3;20;16;44;1189;56;42;1,28;74,31;22,22;3;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Law (Q3)";"Social Sciences" +20480;19500157304;"Zemdirbyste";journal;"13923196, 23358947";"Lithuanian Research Centre for Agriculture and Forestry; Vytautas Magnus University";Yes;Yes;0,225;Q3;32;0;90;0;105;90;1,14;0,00;0,00;0;Lithuania;Eastern Europe;"Lithuanian Research Centre for Agriculture and Forestry; Vytautas Magnus University";"2008-2023";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +20481;21100243808;"Asian Journal of Transfusion Science";journal;"09736247, 19983565";"Wolters Kluwer Medknow Publications";Yes;Yes;0,225;Q4;31;78;160;1346;119;145;0,67;17,26;41,57;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2009-2025";"Hematology (Q4); Immunology and Allergy (Q4)";"Medicine" +20482;21101365990;"Communications in Mathematical Research";journal;"27078523, 16745647";"Global Science Press";No;No;0,225;Q4;6;21;72;506;29;67;0,27;24,10;29,55;0;Hong Kong;Asiatic Region;"Global Science Press";"2021-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Statistics and Probability (Q4)";"Mathematics" +20483;29287;"Geotechnik";journal;"01726145, 21906653";"Wiley-Blackwell";No;No;0,225;Q4;17;25;75;398;21;55;0,31;15,92;25,93;0;United States;Northern America;"Wiley-Blackwell";"1982, 1985, 1989, 1997-2026";"Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +20484;19700182337;"International Journal of Reconfigurable Computing";journal;"16877209, 16877195";"John Wiley and Sons Ltd";Yes;No;0,225;Q4;20;0;3;0;3;3;1,50;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2010-2023";"Hardware and Architecture (Q4)";"Computer Science" +20485;21100979306;"Kavkazskij Entomologiceskij Bulleten";journal;"27131785, 18143326";"Southern Scientific Centre of the Russian Academy of Sciences";Yes;Yes;0,225;Q4;8;17;128;757;47;128;0,45;44,53;31,25;0;Russian Federation;Eastern Europe;"Southern Scientific Centre of the Russian Academy of Sciences";"2019-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +20486;18989;"Somnologie";journal;"1439054X, 14329123";"Springer Medizin";No;No;0,225;Q4;32;48;119;1373;61;91;0,54;28,60;37,06;0;Germany;Western Europe;"Springer Medizin";"1997-2026";"Physiology (medical) (Q4)";"Medicine" +20487;21101251534;"Trakya University Journal of Natural Sciences";journal;"21470294, 25289691";"";Yes;Yes;0,225;Q4;7;21;72;1073;62;70;0,70;51,10;45,16;0;Turkey;Middle East;"";"2020-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +20488;21100218013;"IEEE International Symposium on Broadband Multimedia Systems and Broadcasting, BMSB";conference and proceedings;"21555052, 21555044";"IEEE Computer Society";No;No;0,225;-;23;151;508;2373;402;502;0,77;15,72;28,97;0;United States;Northern America;"IEEE Computer Society";"2012-2025";"Computer Graphics and Computer-Aided Design; Computer Networks and Communications; Computer Science Applications; Electrical and Electronic Engineering; Human-Computer Interaction; Media Technology";"Computer Science; Engineering" +20489;21100217639;"Proceedings of the IEEE RAS and EMBS International Conference on Biomedical Robotics and Biomechatronics";conference and proceedings;"21551774";"IEEE Computer Society";No;No;0,225;-;40;0;402;0;299;399;0,75;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012, 2014, 2016, 2018, 2020, 2022, 2024";"Artificial Intelligence; Biomedical Engineering; Mechanical Engineering";"Computer Science; Engineering" +20490;5600156022;"Asia-Pacific Review";journal;"13439006, 14692937";"Routledge";No;No;0,224;Q1;25;13;68;217;62;67;0,78;16,69;10,00;0;United Kingdom;Western Europe;"Routledge";"1994-2002, 2004-2025";"History (Q1); Political Science and International Relations (Q3); Economics and Econometrics (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +20491;21100790774;"GaBI Journal";journal;"20336403, 20336772";"Pro Pharma Communications International";No;No;0,224;Q1;16;11;72;92;28;60;0,36;8,36;22,22;0;Belgium;Western Europe;"Pro Pharma Communications International";"2014-2025";"Drug Guides (Q1); Pharmacy (Q3)";"Health Professions; Medicine" +20492;30061;"History of Education Quarterly";journal;"00182680, 17485959";"Cambridge University Press";No;No;0,224;Q1;17;31;85;2907;54;73;0,65;93,77;45,71;0;United States;Northern America;"Cambridge University Press";"1967, 1969, 1971-1972, 1974-1975, 1977-1978, 1980-1981, 1983-1986, 1989, 1998-2000, 2002-2003, 2005-2006, 2008-2026";"History (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +20493;16800154734;"Iran and the Caucasus";journal;"16098498, 1573384X";"Brill Academic Publishers";No;No;0,224;Q1;18;30;100;1072;24;99;0,26;35,73;34,09;0;Netherlands;Western Europe;"Brill Academic Publishers";"1997-1999, 2001-2025";"History (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +20494;5700160350;"Israel Studies";journal;"10849513, 1527201X";"Indiana University Press";No;No;0,224;Q1;11;8;95;830;62;89;0,62;103,75;20,00;0;United States;Northern America;"Indiana University Press";"2001, 2017-2025";"History (Q1); Anthropology (Q2); Cultural Studies (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +20495;21101089620;"Ius Ecclesiae";journal;"19725671, 11206462";"Fabrizio Serra Editore";No;No;0,224;Q1;4;11;69;277;5;65;0,09;25,18;18,18;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2025";"Religious Studies (Q1); Law (Q3)";"Arts and Humanities; Social Sciences" +20496;5700153591;"Anthropology of Consciousness";journal;"10534202, 15563537";"Wiley-Blackwell";No;No;0,224;Q2;24;21;81;1347;65;56;0,29;64,14;32,26;0;United States;Northern America;"Wiley-Blackwell";"1990-2026";"Anthropology (Q2)";"Social Sciences" +20497;5800207745;"Journal of Portuguese Linguistics";journal;"23975563";"Open Library of Humanities";Yes;Yes;0,224;Q2;6;8;27;362;13;26;0,14;45,25;64,29;0;Portugal;Western Europe;"Open Library of Humanities";"2018-2025";"Linguistics and Language (Q2)";"Social Sciences" +20498;19700200930;"Lahivordlusi Lahivertailuja";journal;"22283854, 17369290";"Estonian Association Applied Linguists";Yes;Yes;0,224;Q2;8;8;29;244;5;23;0,21;30,50;100,00;0;Estonia;Eastern Europe;"Estonian Association Applied Linguists";"2011-2025";"Linguistics and Language (Q2)";"Social Sciences" +20499;21101196449;"Lengua y Sociedad";journal;"17299721, 24132659";"Universidad Nacional Mayor de San Marcos";Yes;Yes;0,224;Q2;5;76;142;2902;68;142;0,48;38,18;62,04;0;Peru;Latin America;"Universidad Nacional Mayor de San Marcos";"2023-2025";"Linguistics and Language (Q2)";"Social Sciences" +20500;5800207867;"Lenguas Modernas";journal;"07195443, 07160542";"Universidad de Chile";Yes;Yes;0,224;Q2;10;6;62;342;45;60;0,90;57,00;55,56;0;Chile;Latin America;"Universidad de Chile";"2015-2025";"Linguistics and Language (Q2)";"Social Sciences" +20501;21101034371;"Medicina Katastrof";journal;"20701004, 26867966";"A.I. Burnazyan Federal Medical Biophysical Center";Yes;Yes;0,224;Q2;9;55;148;833;77;148;0,63;15,15;40,77;0;Russian Federation;Eastern Europe;"A.I. Burnazyan Federal Medical Biophysical Center";"2019-2025";"Emergency Medical Services (Q2); Health Professions (miscellaneous) (Q2); Emergency Medicine (Q3); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine" +20502;19600157795;"Teorema";journal;"02101602";"KRK Ediciones";No;No;0,224;Q2;13;13;74;326;15;68;0,10;25,08;7,14;0;Spain;Western Europe;"KRK Ediciones";"2008-2025";"Philosophy (Q2)";"Arts and Humanities" +20503;24329;"Women's Studies";journal;"00497878, 15477045";"Routledge";No;No;0,224;Q2;23;71;165;2125;51;154;0,28;29,93;66,28;0;United Kingdom;Western Europe;"Routledge";"1972-1984, 1986-2026";"Arts and Humanities (miscellaneous) (Q2); Gender Studies (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +20504;20470;"Annales de Chirurgie Plastique Esthetique";journal;"1768319X, 02941260";"Elsevier Masson s.r.l.";No;No;0,224;Q3;35;98;217;2268;116;208;0,57;23,14;29,77;0;France;Western Europe;"Elsevier Masson s.r.l.";"1983-2026";"Surgery (Q3)";"Medicine" +20505;21101259018;"Civil Engineering Dimension";journal;"14109530, 1979570X";"";Yes;Yes;0,224;Q3;4;20;47;505;34;47;0,59;25,25;23,08;0;Indonesia;Asiatic Region;"";"2022-2025";"Computational Mechanics (Q3); Mechanics of Materials (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4)";"Engineering" +20506;21081;"Contributions to Political Economy";journal;"14643588, 02775921";"Oxford University Press";No;No;0,224;Q3;22;3;33;176;27;32;1,09;58,67;0,00;0;United Kingdom;Western Europe;"Oxford University Press";"1982-2003, 2005-2025";"Sociology and Political Science (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +20507;21101215776;"Facta Universitatis, Series: Electronics and Energetics";journal;"03533670, 22175997";"University of Nis";Yes;Yes;0,224;Q3;6;40;86;1406;122;84;1,42;35,15;27,83;0;Serbia;Eastern Europe;"University of Nis";"2014, 2023-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +20508;21101162553;"Foundations and Trends in Information Systems";journal;"2331124X, 23311231";"Now Publishers Inc";No;No;0,224;Q3;6;3;13;227;25;13;2,17;75,67;33,33;0;United States;Northern America;"Now Publishers Inc";"2019-2025";"Information Systems (Q3); Management Information Systems (Q4)";"Business, Management and Accounting; Computer Science" +20509;144792;"Geographie Economie Societe";journal;"1295926X";"Lavoisier";No;No;0,224;Q3;20;10;66;592;26;64;0,32;59,20;50,00;1;France;Western Europe;"Lavoisier";"2004-2025";"Geography, Planning and Development (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +20510;21101021862;"Health Behavior and Policy Review";journal;"23264403";"Paris Scholar Publishing, Ltd.";No;No;0,224;Q3;11;24;97;979;52;96;0,53;40,79;60,98;0;United States;Northern America;"Paris Scholar Publishing, Ltd.";"2015, 2018-2025";"Health Policy (Q3); Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +20511;21100899284;"Human Sport Medicine";journal;"25000209, 25000195";"South Ural State University - Institute of Sport, Tourism and Service";Yes;No;0,224;Q3;11;122;420;2193;119;419;0,30;17,98;58,55;0;Russian Federation;Eastern Europe;"South Ural State University - Institute of Sport, Tourism and Service";"2016-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Orthopedics and Sports Medicine (Q4)";"Health Professions; Medicine" +20512;5300152204;"IEICE Electronics Express";journal;"13492543";"Institute of Electronics Information Communication Engineers";No;No;0,224;Q3;43;230;600;7047;581;598;1,02;30,64;27,16;0;Japan;Asiatic Region;"Institute of Electronics Information Communication Engineers";"2004-2026";"Electrical and Electronic Engineering (Q3); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +20513;21101133424;"Ingenius";journal;"1390860X, 1390650X";"Universidad Politecnica Salesiana";Yes;Yes;0,224;Q3;8;20;66;710;61;60;1,00;35,50;6,67;0;Ecuador;Latin America;"Universidad Politecnica Salesiana";"2019-2025";"Automotive Engineering (Q3); Computational Mechanics (Q3); Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Aerospace Engineering (Q4); Biomedical Engineering (Q4); Civil and Structural Engineering (Q4)";"Computer Science; Engineering" +20514;19900192174;"International Journal of Applied Pharmaceutics";journal;"09757058";"Innovare Academics Sciences Pvt. Ltd";Yes;No;0,224;Q3;31;364;949;18734;1383;949;1,52;51,47;49,21;0;India;Asiatic Region;"Innovare Academics Sciences Pvt. Ltd";"2011-2026";"Pharmaceutical Science (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +20515;19266;"International Journal of Computer Applications in Technology";journal;"09528091";"Inderscience Enterprises Ltd";No;No;0,224;Q3;35;50;252;1680;315;252;1,19;33,60;42,45;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"1976, 1988-2026";"Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Information Systems (Q3); Computer Science Applications (Q4); Software (Q4)";"Computer Science; Engineering" +20516;21100242236;"International Journal of Procurement Management";journal;"17538432, 17538440";"Inderscience";No;No;0,224;Q3;30;77;191;5178;313;191;1,65;67,25;28,57;0;Switzerland;Western Europe;"Inderscience";"2007-2026";"Business, Management and Accounting (miscellaneous) (Q3)";"Business, Management and Accounting" +20517;4000148902;"International Journal of Services and Operations Management";journal;"17442370, 17442389";"Inderscience Enterprises Ltd";No;No;0,224;Q3;38;76;236;5088;248;236;0,73;66,95;25,43;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2026";"Industrial and Manufacturing Engineering (Q3); Management of Technology and Innovation (Q4); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering" +20518;27600;"Jokull";journal;"04490576";"Joklarannsoknafelag Islands/Glaciological and Geological Societies of Iceland";No;No;0,224;Q3;14;0;18;0;8;8;0,44;0,00;0,00;0;Iceland;Western Europe;"Joklarannsoknafelag Islands/Glaciological and Geological Societies of Iceland";"1980-1985, 1991-1993, 2010-2023";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +20519;21101028068;"Journal of Optimization, Differential Equations and their Applications";journal;"26636824, 26170108";"Oles Honchar Dnipro National University";Yes;Yes;0,224;Q3;7;22;40;569;48;40;1,07;25,86;34,00;0;Ukraine;Eastern Europe;"Oles Honchar Dnipro National University";"2018-2025";"Control and Optimization (Q3); Applied Mathematics (Q4); Mathematical Physics (Q4); Modeling and Simulation (Q4)";"Mathematics" +20520;21100222518;"Journal of Oral and Maxillofacial Surgery, Medicine, and Pathology";journal;"22125558";"Elsevier Ltd";No;No;0,224;Q3;19;226;391;6544;244;386;0,62;28,96;30,47;0;United Kingdom;Western Europe;"Elsevier Ltd";"2012-2026";"Oral Surgery (Q3); Otorhinolaryngology (Q3); Pathology and Forensic Medicine (Q3); Surgery (Q3)";"Dentistry; Medicine" +20521;144663;"Journal of Radiology Nursing";journal;"15559912, 15460843";"Elsevier Inc.";No;No;0,224;Q3;18;88;261;1687;166;219;0,52;19,17;70,74;0;United States;Northern America;"Elsevier Inc.";"2004-2026";"Advanced and Specialized Nursing (Q3); Radiological and Ultrasound Technology (Q4)";"Health Professions; Nursing" +20522;21101151820;"Journal of Zoonotic Diseases";journal;"27172910, 2476535X";"University of Tabriz";Yes;Yes;0,224;Q3;6;37;72;1412;67;72;1,04;38,16;28,10;0;Iran;Middle East;"University of Tabriz";"2020-2026";"Infectious Diseases (Q3); Veterinary (miscellaneous) (Q3); Parasitology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Immunology and Microbiology; Medicine; Veterinary" +20523;12585;"Kongzhi Lilun Yu Yingyong/Control Theory and Applications";journal;"10008152";"South China University of Technology";No;No;0,224;Q3;42;265;721;7332;858;720;1,15;27,67;30,79;0;China;Asiatic Region;"South China University of Technology";"1993-2025";"Electrical and Electronic Engineering (Q3); Control and Systems Engineering (Q4)";"Engineering" +20524;21101021450;"Middle East Journal of Rehabilitation and Health Studies";journal;"24234451";"Brieflands";No;No;0,224;Q3;9;59;136;2207;116;134;1,00;37,41;57,64;0;Netherlands;Western Europe;"Brieflands";"2019-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)";"Health Professions; Medicine" +20525;28765;"Neonatal Network";journal;"15392880, 07300832";"Springer Publishing Company";No;No;0,224;Q3;46;54;158;1281;95;136;0,57;23,72;83,13;0;United States;Northern America;"Springer Publishing Company";"1985-2025";"Critical Care and Intensive Care Medicine (Q3); Critical Care Nursing (Q3); Pediatrics, Perinatology and Child Health (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Nursing" +20526;12701;"Nukleonika";journal;"15085791, 00295922";"Institute of Nuclear Chemistry and Technology";Yes;No;0,224;Q3;29;13;48;451;46;47;0,98;34,69;38,89;0;Poland;Eastern Europe;"Institute of Nuclear Chemistry and Technology";"1968, 1970, 1973-1974, 1978, 1981, 1996-2025";"Instrumentation (Q3); Nuclear and High Energy Physics (Q3); Safety, Risk, Reliability and Quality (Q3); Condensed Matter Physics (Q4); Nuclear Energy and Engineering (Q4); Waste Management and Disposal (Q4)";"Energy; Engineering; Environmental Science; Physics and Astronomy" +20527;5600155625;"Politikon";journal;"02589346, 14701014";"Taylor and Francis Ltd.";No;No;0,224;Q3;31;18;64;1113;65;60;1,39;61,83;47,06;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974-2026";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20528;21452;"Polymer Science - Series B";journal;"15556123, 15600904";"Pleiades Publishing";No;No;0,224;Q3;27;21;261;825;281;261;0,93;39,29;39,80;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Ceramics and Composites (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)";"Materials Science" +20529;21479;"Quimica Nova";journal;"01004042, 16787064";"Sociedade Brasileira de Quimica";Yes;No;0,224;Q3;89;225;390;10124;367;380;0,87;45,00;43,23;0;Brazil;Latin America;"Sociedade Brasileira de Quimica";"1992, 1997-2025";"Chemistry (miscellaneous) (Q3)";"Chemistry" +20530;5700163831;"Revue Economique";journal;"00352764, 19506694";"Presses de Sciences Po";No;No;0,224;Q3;25;0;87;0;32;82;0,25;0,00;0,00;0;France;Western Europe;"Presses de Sciences Po";"1974, 2001-2024";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +20531;4000151817;"ScienceAsia";journal;"15131874";"Science Society of Thailand under Royal Patronage";Yes;No;0,224;Q3;48;132;377;4911;365;374;0,96;37,20;48,28;0;Thailand;Asiatic Region;"Science Society of Thailand under Royal Patronage";"1996-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +20532;23622;"Scientia Forestalis/Forest Sciences";journal;"14139324";"University of Sao Paolo";Yes;No;0,224;Q3;33;12;80;469;49;80;0,38;39,08;38,98;0;Brazil;Latin America;"University of Sao Paolo";"1996-2025";"Forestry (Q3)";"Agricultural and Biological Sciences" +20533;21101108509;"South China Fisheries Science";journal;"20950780";"";No;No;0,224;Q3;13;120;337;5105;309;337;0,96;42,54;36,76;0;China;Asiatic Region;"";"2019-2026";"Ecology (Q3); Aquatic Science (Q4); Biotechnology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +20534;21100869498;"South of Russia: Ecology, Development";journal;"24130958, 19921098";"Kamerton";Yes;No;0,224;Q3;10;53;211;1380;82;211;0,35;26,04;59,31;0;Russian Federation;Eastern Europe;"Kamerton";"2018-2025";"Ecology (Q3); Geography, Planning and Development (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +20535;21100283795;"Urology Case Reports";journal;"22144420";"Elsevier Inc.";Yes;No;0,224;Q3;18;378;1003;4510;527;1003;0,48;11,93;25,87;0;United States;Northern America;"Elsevier Inc.";"2013-2026";"Urology (Q3)";"Medicine" +20536;21101085534;"Advances in Mathematical Sciences and Applications";journal;"13434373";"Gakko Tosho Co. Ltd.";No;No;0,224;Q4;7;51;85;1337;54;85;0,68;26,22;22,22;0;Japan;Asiatic Region;"Gakko Tosho Co. Ltd.";"2019-2025";"Analysis (Q4); Applied Mathematics (Q4); Modeling and Simulation (Q4); Numerical Analysis (Q4)";"Mathematics" +20537;21100845829;"Communications in Mathematical Biology and Neuroscience";journal;"20522541";"SCIK Publishing Corporation";No;No;0,224;Q4;19;147;402;4474;419;402;1,05;30,44;34,88;0;United Kingdom;Western Europe;"SCIK Publishing Corporation";"2017-2026";"Applied Mathematics (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Neuroscience (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Mathematics; Neuroscience" +20538;21101266014;"Journal of Applied Research in Water and Wastewater";journal;"24766283";"Razi University";Yes;Yes;0,224;Q4;7;12;72;585;51;72;0,71;48,75;35,48;0;Iran;Middle East;"Razi University";"2020-2025";"Pollution (Q4); Waste Management and Disposal (Q4); Water Science and Technology (Q4)";"Environmental Science" +20539;21101184725;"Journal of Open Psychology Data";journal;"20509863";"Ubiquity Press";Yes;No;0,224;Q4;6;6;49;264;54;19;1,23;44,00;68,75;0;United Kingdom;Western Europe;"Ubiquity Press";"2019-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +20540;21101066572;"OBM Genetics";journal;"25775790";"LIDSEN Publishing Inc";No;No;0,224;Q4;8;44;125;2416;123;122;1,14;54,91;51,57;0;United States;Northern America;"LIDSEN Publishing Inc";"2019-2026";"Cell Biology (Q4); Genetics (Q4); Molecular Biology (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology" +20541;21100203935;"Revista Espanola de Medicina Nuclear e Imagen Molecular";journal;"22538070, 2253654X";"Ediciones Doyma, S.L.";No;No;0,224;Q4;26;91;274;1651;151;255;0,66;18,14;53,45;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2012-2026";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +20542;21100773213;"Abel Symposia";conference and proceedings;"21932808, 21978549";"Springer Science and Business Media Deutschland GmbH";No;No;0,224;-;14;18;26;512;8;22;0,36;28,44;14,81;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2013, 2015-2016, 2018, 2020, 2022, 2024-2025";"Computer Networks and Communications; Computer Science Applications; Mathematics (miscellaneous); Signal Processing";"Computer Science; Mathematics" +20543;21100905482;"ESA Workshop on Satellite Navigation Technologies and European Workshop on GNSS Signals and Signal Processing, NAVITEC";conference and proceedings;"23255439";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,224;-;5;0;20;0;21;19;1,05;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2018, 2024";"Aerospace Engineering; Computer Networks and Communications; Control and Optimization; Signal Processing; Transportation";"Computer Science; Engineering; Mathematics; Social Sciences" +20544;16300154745;"Animation";journal;"17468485, 17468477";"SAGE Publications Ltd";No;No;0,223;Q1;19;12;51;491;40;42;0,79;40,92;35,71;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2006-2025";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +20545;16100154769;"Arabic Sciences and Philosophy";journal;"09574239, 14740524";"Cambridge University Press";No;No;0,223;Q1;25;7;26;644;10;25;0,35;92,00;33,33;0;United Kingdom;Western Europe;"Cambridge University Press";"1991-2025";"History (Q1); History and Philosophy of Science (Q2); Philosophy (Q2); Multidisciplinary (Q3)";"Arts and Humanities; Multidisciplinary" +20546;21101196751;"Filistin Arastirmalari Dergisi";journal;"25871862";"Muhammed Mustafa KULU";No;No;0,223;Q1;2;32;22;1656;7;22;0,40;51,75;27,78;0;Turkey;Middle East;"Muhammed Mustafa KULU";"2019-2025";"History (Q1); Religious Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +20547;6000153092;"Journal of Visual Art Practice";journal;"17589185, 14702029";"Routledge";No;No;0,223;Q1;14;30;68;1114;39;62;0,51;37,13;45,45;0;United Kingdom;Western Europe;"Routledge";"2001-2025";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +20548;21100246531;"Catalan Journal of Communication and Cultural Studies";journal;"17571898, 17571901";"Intellect Ltd.";No;No;0,223;Q2;11;15;49;783;33;46;0,61;52,20;42,86;0;United Kingdom;Western Europe;"Intellect Ltd.";"2013-2025";"Cultural Studies (Q2); Communication (Q3)";"Social Sciences" +20549;19700172808;"Isegoria";journal;"19888376, 11302097";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,223;Q2;10;35;160;1510;38;150;0,15;43,14;37,84;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2009-2025";"Philosophy (Q2)";"Arts and Humanities" +20550;21101199381;"Journal of Philosophy in Schools";journal;"22042482";"University of Birmingham Library Services";Yes;Yes;0,223;Q2;4;16;42;538;15;36;0,34;33,63;38,10;0;United Kingdom;Western Europe;"University of Birmingham Library Services";"2020-2025";"Philosophy (Q2); Education (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +20551;20482;"Annali Italiani di Chirurgia";journal;"0003469X, 2239253X";"Edizioni Luigi Pozzi";No;No;0,223;Q3;30;198;415;5914;271;408;0,72;29,87;37,69;0;Italy;Western Europe;"Edizioni Luigi Pozzi";"1947-1948, 1950-1971, 1973-2026";"Surgery (Q3)";"Medicine" +20552;21100255515;"Australasian Journal of Gifted Education";journal;"13239686";"Australian Association for the Education of the Gifted and Talented";No;No;0,223;Q3;15;9;30;283;28;23;1,05;31,44;87,50;0;Australia;Pacific Region;"Australian Association for the Education of the Gifted and Talented";"2009-2025";"Education (Q3)";"Social Sciences" +20553;19200156945;"Boletin Latinoamericano y del Caribe de Plantas Medicinales y Aromaticas";journal;"07177917";"MS-Editions";Yes;No;0,223;Q3;28;70;171;3422;191;171;1,12;48,89;44,86;0;Chile;Latin America;"MS-Editions";"2008-2026";"Complementary and Alternative Medicine (Q3); Drug Discovery (Q4); Pharmacology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Medicine; Pharmacology, Toxicology and Pharmaceutics" +20554;12894;"Chinese Journal of Chromatography (Se Pu)";journal;"18722059, 10008713";"Zhongguo Kexueyuan - Chinese Academy of Sciences";No;No;0,223;Q3;24;144;379;5673;465;379;1,33;39,40;40,93;0;China;Asiatic Region;"Zhongguo Kexueyuan - Chinese Academy of Sciences";"1997-2026";"Chemical Engineering (miscellaneous) (Q3); Analytical Chemistry (Q4); Biochemistry (Q4); Electrochemistry (Q4); Organic Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry" +20555;21100212320;"Ciencia Animal Brasileira";journal;"18096891, 15182797";"Universidade Federal de Goias";Yes;Yes;0,223;Q3;15;73;192;2560;141;192;0,70;35,07;50,30;0;Brazil;Latin America;"Universidade Federal de Goias";"2012-2026";"Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +20556;28104;"Die Erde";journal;"00139998";"Gesellschaft fur Erdkunde zu Berlin";Yes;No;0,223;Q3;33;7;51;414;52;47;1,07;59,14;80,00;0;Germany;Western Europe;"Gesellschaft fur Erdkunde zu Berlin";"1977-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Ecology (Q3); Social Sciences (miscellaneous) (Q3); Atmospheric Science (Q4); Energy (miscellaneous) (Q4)";"Earth and Planetary Sciences; Energy; Environmental Science; Social Sciences" +20557;19955;"Economic Affairs";journal;"02650665, 14680270";"Wiley-Blackwell Publishing Ltd";No;No;0,223;Q3;26;36;116;1317;72;80;0,74;36,58;9,68;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1980-2026";"Development (Q3); Geography, Planning and Development (Q3); Aerospace Engineering (Q4)";"Engineering; Social Sciences" +20558;21100886400;"Education and Self Development";journal;"19917740";"Kazan Federal University";Yes;No;0,223;Q3;12;58;191;1649;117;178;0,58;28,43;68,57;0;Russian Federation;Eastern Europe;"Kazan Federal University";"2018-2025";"Development (Q3); Education (Q3); Political Science and International Relations (Q3)";"Social Sciences" +20559;25766;"Environmental and Engineering Geoscience";journal;"10787275, 15589161";"Geological Society of America";No;No;0,223;Q3;41;24;69;1026;44;64;0,59;42,75;28,05;0;United States;Northern America;"Geological Society of America";"1995-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Environmental Science" +20560;27909;"Geodeziya i Kartografiya";journal;"25878492, 00167126";"Center of Geodesy, Cartography and SDI, FSBI";No;No;0,223;Q3;8;69;212;982;64;212;0,35;14,23;33,58;0;Russian Federation;Eastern Europe;"Center of Geodesy, Cartography and SDI, FSBI";"1979-1982, 2019-2025";"Earth-Surface Processes (Q3); Computers in Earth Sciences (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +20561;5700165092;"Global Change, Peace and Security";journal;"14781166, 14781158";"Routledge";No;No;0,223;Q3;27;15;35;775;32;32;1,04;51,67;15,38;0;United Kingdom;Western Europe;"Routledge";"2008-2023, 2025-2026";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20562;29479;"Hanjie Xuebao/Transactions of the China Welding Institution";journal;"0253360X";"Harbin Research Institute of Welding";Yes;No;0,223;Q3;24;192;583;4431;615;583;1,16;23,08;30,39;0;China;Asiatic Region;"Harbin Research Institute of Welding";"1993-1994, 1998, 2000-2026";"Mechanical Engineering (Q3); Mechanics of Materials (Q4)";"Engineering" +20563;21101288815;"Indian Economic Journal";journal;"2631617X, 00194662";"Sage Publications India Pvt. Ltd";No;No;0,223;Q3;11;38;262;1350;199;242;0,76;35,53;23,53;1;Singapore;Asiatic Region;"Sage Publications India Pvt. Ltd";"2003, 2007, 2021-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +20564;21100867470;"Indonesian Journal of Pharmacy";journal;"23389486, 23389427";"Universitas Gadjah Mada - Faculty of Pharmacy";Yes;No;0,223;Q3;15;51;176;2319;202;176;1,07;45,47;55,06;0;Indonesia;Asiatic Region;"Universitas Gadjah Mada - Faculty of Pharmacy";"2016-2025";"Pharmaceutical Science (Q3); Pharmacology (medical) (Q3); Pharmacy (Q3)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +20565;21100793172;"Informatika i ee Primeneniya";journal;"19922264, 23109912";"Federal Research Center "Computer Science and Control" of Russian Academy of Sciences";No;No;0,223;Q3;11;37;161;704;160;161;1,18;19,03;14,29;0;Russian Federation;Eastern Europe;"Federal Research Center "Computer Science and Control" of Russian Academy of Sciences";"2015-2025";"Computer Networks and Communications (Q3); Information Systems (Q3); Applied Mathematics (Q4); Computational Theory and Mathematics (Q4); Software (Q4)";"Computer Science; Mathematics" +20566;21100294000;"Information and Control";journal;"10020411";"Editorial Board of Information and Control";No;No;0,223;Q3;16;68;202;2658;281;202;1,48;39,09;29,76;0;China;Asiatic Region;"Editorial Board of Information and Control";"2013-2025";"Control and Optimization (Q3); Information Systems (Q3); Artificial Intelligence (Q4); Computer Science Applications (Q4); Control and Systems Engineering (Q4); Human-Computer Interaction (Q4)";"Computer Science; Engineering; Mathematics" +20567;21069;"Insight: Non-Destructive Testing and Condition Monitoring";journal;"17544904, 13542575";"British Institute of Non-Destructive Testing";No;No;0,223;Q3;47;84;229;1817;177;195;0,69;21,63;24,14;0;United Kingdom;Western Europe;"British Institute of Non-Destructive Testing";"1994-2026";"Materials Chemistry (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)";"Engineering; Materials Science" +20568;21101038728;"International Journal for Computational Civil and Structural Engineering";journal;"25880195, 25879618";"ASV Publishing House";Yes;Yes;0,223;Q3;8;65;187;1501;116;187;0,54;23,09;26,38;0;Russian Federation;Eastern Europe;"ASV Publishing House";"2019-2025";"Computational Mechanics (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +20569;19700166617;"International Journal of Mechanics";journal;"19984448";"North Atlantic University Union NAUN";No;No;0,223;Q3;22;5;36;96;25;36;0,70;19,20;7,14;0;United States;Northern America;"North Atlantic University Union NAUN";"2009-2026";"Computational Mechanics (Q3); Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Engineering; Physics and Astronomy" +20570;21100860144;"International Journal of Online Pedagogy and Course Design";journal;"21556873, 21556881";"IGI Global Publishing";No;No;0,223;Q3;13;10;76;410;72;76;1,25;41,00;50,00;0;United States;Northern America;"IGI Global Publishing";"2014, 2017-2026";"Education (Q3)";"Social Sciences" +20571;13509;"Israeli Journal of Aquaculture - Bamidgeh";journal;"0792156X";"Saabron Press LLC";No;No;0,223;Q3;37;116;236;4576;215;236;0,95;39,45;35,94;0;Israel;Middle East;"Saabron Press LLC";"1988-2026";"Agronomy and Crop Science (Q3); Aquatic Science (Q4)";"Agricultural and Biological Sciences" +20572;5400152654;"Journal of Access Services";journal;"15367967, 15367975";"Routledge";No;No;0,223;Q3;15;8;34;219;23;34;0,81;27,38;68,18;0;United States;Northern America;"Routledge";"2002-2026";"Library and Information Sciences (Q3)";"Social Sciences" +20573;27676;"Journal of Advanced Manufacturing Systems";journal;"17936896, 02196867";"World Scientific";No;No;0,223;Q3;28;101;124;3970;188;124;1,52;39,31;22,27;0;Singapore;Asiatic Region;"World Scientific";"2004-2026";"Industrial and Manufacturing Engineering (Q3); Computer Science Applications (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science; Engineering" +20574;19700175258;"Journal of Chiropractic Humanities";journal;"15563499";"Elsevier Inc.";No;No;0,223;Q3;16;10;18;399;14;16;1,10;39,90;29,73;0;United States;Northern America;"Elsevier Inc.";"1993-1999, 2001, 2004-2025";"Chiropractics (Q3); Complementary and Alternative Medicine (Q3)";"Health Professions; Medicine" +20575;21101047908;"Journal of Food Chemistry and Nanotechnology";journal;"24714291";"United Scientific Group";No;No;0,223;Q3;15;34;176;1382;191;175;1,07;40,65;34,74;0;United States;Northern America;"United Scientific Group";"2015-2025";"Food Science (Q3)";"Agricultural and Biological Sciences" +20576;21101089035;"Journal of Global Innovations in Agricultural Sciences";journal;"27884538, 27884546";"Society for Innovative Agriculture, University of Agriculture";Yes;No;0,223;Q3;8;140;241;5979;333;241;1,50;42,71;33,25;0;Pakistan;Asiatic Region;"Society for Innovative Agriculture, University of Agriculture";"2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q3); Geography, Planning and Development (Q3); Insect Science (Q4)";"Agricultural and Biological Sciences; Social Sciences" +20577;21101018550;"Journal of Governance and Regulation";journal;"23066784, 22209352";"Virtus Interpress";Yes;No;0,223;Q3;16;144;404;6884;597;383;1,56;47,81;41,62;0;Ukraine;Eastern Europe;"Virtus Interpress";"2019-2026";"Finance (Q3); Public Administration (Q3); Business and International Management (Q4); Economics and Econometrics (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +20578;17700156532;"Journal of Sustainability Science and Management";journal;"26727226, 18238556";"Universiti Malaysia Terengganu";Yes;No;0,223;Q3;27;136;534;7396;614;531;1,19;54,38;45,79;0;Malaysia;Asiatic Region;"Universiti Malaysia Terengganu";"2009-2025";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q4); Pollution (Q4)";"Environmental Science; Social Sciences" +20579;21100220470;"Jurnal Teknologi";journal;"21803722, 01279696";"Penerbit UTM Press";Yes;No;0,223;Q3;42;121;378;4824;422;378;0,98;39,87;39,79;0;Malaysia;Asiatic Region;"Penerbit UTM Press";"2006-2007, 2010-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +20580;21100401085;"Latin American Economic Review";journal;"2196436X, 21983526";"Centro de Investigacion y Docencia Economicas A.C.";Yes;Yes;0,223;Q3;20;4;39;174;26;39;0,35;43,50;0,00;0;Mexico;Latin America;"Centro de Investigacion y Docencia Economicas A.C.";"2014-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +20581;21101163455;"Multidisciplinary Reviews";journal;"25953982";"Malque Publishing";No;No;0,223;Q3;13;499;577;22144;852;576;1,48;44,38;42,25;0;Brazil;Latin America;"Malque Publishing";"2023-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +20582;21101181899;"Nigerian Journal of Technology";journal;"03318443, 24678821";"University of Nigeria Faculty of Engineering";Yes;No;0,223;Q3;5;68;156;2686;167;148;1,07;39,50;17,36;0;Nigeria;Africa;"University of Nigeria Faculty of Engineering";"2022-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +20583;19900191738;"Plant OMICS";journal;"18360661, 18363644";"Southern Cross Publishing";No;No;0,223;Q3;35;7;9;398;8;9;1,00;56,86;25,81;0;Australia;Pacific Region;"Southern Cross Publishing";"2010-2022, 2024-2025";"Agronomy and Crop Science (Q3); Plant Science (Q3)";"Agricultural and Biological Sciences" +20584;21100788987;"Qualitative Research Reports in Communication";journal;"17459443, 17459435";"Taylor and Francis Ltd.";No;No;0,223;Q3;20;29;31;846;26;31;0,75;29,17;69,39;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2013, 2015-2020, 2022-2026";"Communication (Q3)";"Social Sciences" +20585;21101164613;"Review of Science, Mathematics and ICT Education";journal;"1791261X, 17923999";"Department of Educational Sciences and Early Childhood Education, University of Patras";No;Yes;0,223;Q3;6;13;33;518;23;32;0,95;39,85;52,63;0;Greece;Western Europe;"Department of Educational Sciences and Early Childhood Education, University of Patras";"2019-2025";"Education (Q3); Developmental and Educational Psychology (Q4); Mathematical Physics (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics; Psychology; Social Sciences" +20586;19400158588;"Revista Chapingo, Serie Ciencias Forestales y del Ambiente";journal;"20073828, 20074018";"Universidad Autonoma Chapingo";Yes;No;0,223;Q3;17;7;88;268;52;88;0,66;38,29;22,86;0;Mexico;Latin America;"Universidad Autonoma Chapingo";"2008, 2012-2025";"Ecology (Q3); Forestry (Q3)";"Agricultural and Biological Sciences; Environmental Science" +20587;11600153566;"Revista Espanola de Ciencia Politica";journal;"21739870, 15756548";"Asociacion Espanola de Ciencia Politica y de la Administracion";Yes;Yes;0,223;Q3;14;22;81;1182;47;81;0,40;53,73;35,00;0;Spain;Western Europe;"Asociacion Espanola de Ciencia Politica y de la Administracion";"2012-2025";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20588;21100244604;"Scientific Visualization";journal;"20793537";"National Research Nuclear University "MEPhI"";No;No;0,223;Q3;13;54;157;1136;90;157;0,61;21,04;29,41;0;Russian Federation;Eastern Europe;"National Research Nuclear University "MEPhI"";"2013-2025";"Computer Vision and Pattern Recognition (Q3); Software (Q4)";"Computer Science" +20589;27809;"Sudebno-Meditsinskaya Ekspertiza";journal;"00394521, 23095326";"Media Sphera Publishing Group";Yes;No;0,223;Q3;11;67;235;1145;89;235;0,42;17,09;44,97;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"1962, 1965-2025";"Anatomy (Q3); Pathology and Forensic Medicine (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +20590;21101053110;"Turkish Psychological Counseling and Guidance Journal";journal;"13021370";"Turkish Psychological Counseling and Guidance Association";No;No;0,223;Q3;8;63;125;4212;87;125;0,58;66,86;51,24;0;Turkey;Middle East;"Turkish Psychological Counseling and Guidance Association";"2019-2025";"Education (Q3); Applied Psychology (Q4); Psychology (miscellaneous) (Q4)";"Psychology; Social Sciences" +20591;15148;"Vestnik Oftalmologii";journal;"23091282, 0042465X";"Media Sphera Publishing Group";No;No;0,223;Q3;18;92;379;2651;226;378;0,56;28,82;62,65;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"1945-1946, 1949-2025";"Ophthalmology (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +20592;21100834310;"Vestnik Sankt-Peterburgskogo Universiteta, Prikladnaya Matematika, Informatika, Protsessy Upravleniya";journal;"18119905, 25422251";"Saint Petersburg State University";Yes;No;0,223;Q3;12;42;134;873;63;134;0,64;20,79;26,27;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2017-2025";"Computer Science (miscellaneous) (Q3); Control and Optimization (Q3); Applied Mathematics (Q4)";"Computer Science; Mathematics" +20593;12049;"Yosetsu Gakkai Ronbunshu/Quarterly Journal of the Japan Welding Society";journal;"02884771";"Japan Welding Society";Yes;No;0,223;Q3;27;39;109;893;29;108;0,24;22,90;9,35;0;Japan;Asiatic Region;"Japan Welding Society";"1983-2025";"Mechanical Engineering (Q3); Metals and Alloys (Q3); Surfaces, Coatings and Films (Q3); Mechanics of Materials (Q4)";"Engineering; Materials Science" +20594;21100915265;"Advances in Group Theory and Applications";journal;"24991287";"Aracne Editrice";Yes;Yes;0,223;Q4;9;19;47;464;13;43;0,29;24,42;23,08;0;Italy;Western Europe;"Aracne Editrice";"2016-2025";"Algebra and Number Theory (Q4)";"Mathematics" +20595;19700182046;"Case Reports in Gastroenterology";journal;"16620631";"S. Karger AG";Yes;No;0,223;Q4;26;114;228;1703;156;225;0,66;14,94;32,50;0;Switzerland;Western Europe;"S. Karger AG";"2010-2025";"Gastroenterology (Q4)";"Medicine" +20596;19700186874;"Catalysis in Industry";journal;"20700555, 20700504";"";No;No;0,223;Q4;22;45;117;1845;110;117;0,82;41,00;42,22;0;Russian Federation;Eastern Europe;"";"2010-2025";"Catalysis (Q4)";"Chemical Engineering" +20597;15650;"Engineering Journal";trade journal;"00138029";"American Institute of Steel Construction Inc.";No;No;0,223;Q4;31;14;44;334;24;43;0,52;23,86;20,00;0;United States;Northern America;"American Institute of Steel Construction Inc.";"1968-1969, 1972-2026";"Building and Construction (Q4); Civil and Structural Engineering (Q4)";"Engineering" +20598;20926;"Environment Protection Engineering";journal;"03248828, 2450260X";"Wroclaw University of Science and Technology";Yes;No;0,223;Q4;25;38;88;999;69;88;0,77;26,29;44,44;0;Poland;Eastern Europe;"Wroclaw University of Science and Technology";"1980-1981, 1983, 1996-2025";"Environmental Engineering (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +20599;28001;"Journal of Association of Physicians of India";journal;"00045772";"Journal of Association of Physicians of India";Yes;No;0,223;Q4;71;420;1031;8675;479;829;0,58;20,65;31,44;0;India;Asiatic Region;"Journal of Association of Physicians of India";"1961-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +20600;21100429007;"Journal of Computational and Theoretical Transport";journal;"23324309, 23324325";"Taylor and Francis Ltd.";No;No;0,223;Q4;32;30;65;883;84;65;1,49;29,43;15,79;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Applied Mathematics (Q4); Mathematical Physics (Q4); Physics and Astronomy (miscellaneous) (Q4); Statistical and Nonlinear Physics (Q4); Transportation (Q4)";"Mathematics; Physics and Astronomy; Social Sciences" +20601;12181;"Journal of Modern Optics";journal;"13623044, 09500340";"Taylor and Francis Ltd.";No;No;0,223;Q4;106;101;288;3747;249;277;0,82;37,10;35,46;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981, 1987-2026";"Atomic and Molecular Physics, and Optics (Q4)";"Physics and Astronomy" +20602;23958;"Journal of Multiple-Valued Logic and Soft Computing";journal;"15423980, 15423999";"Old City Publishing";No;No;0,223;Q4;32;60;153;2133;160;147;1,28;35,55;29,29;0;United States;Northern America;"Old City Publishing";"2003-2025";"Logic (Q4); Software (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +20603;21100244649;"Journal of Naval Architecture and Marine Engineering";journal;"20708998, 18138535";"Department of Naval Architecture and Marine Engineering";Yes;Yes;0,223;Q4;17;12;45;419;59;45;1,45;34,92;17,65;0;Bangladesh;Asiatic Region;"Department of Naval Architecture and Marine Engineering";"2013-2025";"Ocean Engineering (Q4)";"Engineering" +20604;21101219669;"Mathematics and Computational Sciences";journal;"27172708";"Qom University of Technology";Yes;Yes;0,223;Q4;6;40;72;1119;66;72;0,98;27,98;21,43;0;Iran;Middle East;"Qom University of Technology";"2020-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Numerical Analysis (Q4); Theoretical Computer Science (Q4)";"Mathematics" +20605;21037;"New Zealand Entomologist";journal;"11793430, 00779962";"Taylor and Francis Ltd.";No;No;0,223;Q4;23;11;15;634;11;15;0,83;57,64;45,83;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1952-1956, 1958-1966, 1968-1971, 1973, 1975-1980, 1982-1984, 1987-2026";"Insect Science (Q4)";"Agricultural and Biological Sciences" +20606;26416;"Organic Syntheses";book series;"23333553, 00786209";"Organic Syntheses, Inc.";No;No;0,223;Q4;41;27;71;524;34;35;0,50;19,41;18,18;0;United States;Northern America;"Organic Syntheses, Inc.";"1946, 1993, 1996-2000, 2002-2003, 2005-2025";"Organic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry" +20607;21101247622;"Questions and Answers in General Topology";journal;"09184732";"General Topology Symposium";No;No;0,223;Q4;1;8;26;233;9;26;0,43;29,13;0,00;0;Japan;Asiatic Region;"General Topology Symposium";"2020-2025";"Geometry and Topology (Q4)";"Mathematics" +20608;21101136888;"Rock and Mineral Analysis";journal;"02545357";"Science China Press";Yes;No;0,223;Q4;14;95;268;4479;226;267;0,87;47,15;44,75;0;China;Asiatic Region;"Science China Press";"2019-2026";"Analytical Chemistry (Q4); Environmental Chemistry (Q4); Geochemistry and Petrology (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Chemistry; Earth and Planetary Sciences; Environmental Science" +20609;84128;"Proceedings of the IEEE International Conference on Industrial Technology";conference and proceedings;"26432978, 26410184";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,223;-;57;150;457;2762;399;453;0,93;18,41;26,05;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1996, 2000, 2002-2006, 2008-2011, 2013-2025";"Computer Science Applications; Electrical and Electronic Engineering";"Computer Science; Engineering" +20610;21101048554;"Journal of Applied Arts and Health";journal;"20402465, 20402457";"Intellect Ltd.";No;No;0,222;Q1;8;30;79;697;52;67;0,76;23,23;81,36;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2026";"Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Music (Q2); Philosophy (Q2); Clinical Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +20611;16400154717;"Acta Archaeologica";journal;"0065101X, 16000390";"Wiley-Blackwell Publishing Ltd";No;No;0,222;Q2;17;0;19;0;12;18;0,67;0,00;0,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2000-2020, 2022-2024";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20612;8000153112;"Asian Anthropology";journal;"21684227, 1683478X";"Routledge";No;No;0,222;Q2;16;39;59;920;82;57;0,49;23,59;40,54;0;United Kingdom;Western Europe;"Routledge";"2002, 2015-2026";"Anthropology (Q2)";"Social Sciences" +20613;20000195065;"Conservation and Management of Archaeological Sites";journal;"17535522, 13505033";"Maney Publishing";No;No;0,222;Q2;19;13;52;669;37;44;0,58;51,46;36,36;0;United Kingdom;Western Europe;"Maney Publishing";"1995, 2011-2026";"Archeology (Q2); Archeology (arts and humanities) (Q2); Conservation (Q2)";"Arts and Humanities; Social Sciences" +20614;21101283128;"Journal of Historical Network Research";journal;"25358863";"University of Luxembourg";No;No;0,222;Q2;5;10;25;547;17;24;0,44;54,70;41,67;0;Luxembourg;Western Europe;"University of Luxembourg";"2021-2025";"Linguistics and Language (Q2)";"Social Sciences" +20615;21101363485;"Journal of Holistic Integrative Pharmacy";journal;"27073688, 2950175X";"KeAi Publishing Communications Ltd.";Yes;No;0,222;Q2;6;46;106;3330;114;106;1,30;72,39;48,95;0;China;Asiatic Region;"KeAi Publishing Communications Ltd.";"2020-2026";"Arts and Humanities (miscellaneous) (Q2); Drug Guides (Q2); Pharmaceutical Science (Q3); Pharmacology (medical) (Q3); Public Health, Environmental and Occupational Health (Q4)";"Arts and Humanities; Medicine; Pharmacology, Toxicology and Pharmaceutics" +20616;21100195305;"Law, Probability and Risk";journal;"1470840X, 14708396";"Oxford University Press";No;No;0,222;Q2;23;13;31;424;33;24;0,95;32,62;29,03;0;United Kingdom;Western Europe;"Oxford University Press";"2007, 2011-2026";"Philosophy (Q2); Law (Q3); Statistics, Probability and Uncertainty (Q4)";"Arts and Humanities; Decision Sciences; Social Sciences" +20617;21101100267;"Museum and Society";journal;"14798360";"University of Leicester";Yes;Yes;0,222;Q2;12;23;80;1329;51;76;0,56;57,78;61,76;0;United Kingdom;Western Europe;"University of Leicester";"2019-2025";"Museology (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +20618;21101072016;"Neofilolog";journal;"14292173, 25453971";"Polskie Towarzystwo Neofilologiczne";Yes;Yes;0,222;Q2;5;48;147;1535;50;140;0,36;31,98;75,00;0;Poland;Eastern Europe;"Polskie Towarzystwo Neofilologiczne";"2019-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +20619;21101155954;"SSRG International Journal of Civil Engineering";journal;"23488352";"Seventh Sense Research Group";No;No;0,222;Q2;8;213;174;7172;231;174;1,33;33,67;30,89;0;India;Asiatic Region;"Seventh Sense Research Group";"2023-2026";"Architecture (Q2); Engineering (miscellaneous) (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4)";"Engineering" +20620;21101342185;"Agro Bali";journal;"2655853X";"Panji Sakti University";No;No;0,222;Q3;7;88;230;2892;174;230;0,77;32,86;48,84;0;Indonesia;Asiatic Region;"Panji Sakti University";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q3); Food Science (Q3); Soil Science (Q4)";"Agricultural and Biological Sciences" +20621;55037;"Asian Affairs (United Kingdom)";journal;"00927678, 19401590";"Taylor and Francis Ltd.";No;No;0,222;Q3;16;9;34;503;39;33;1,00;55,89;30,77;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1973-2005, 2010-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3); Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +20622;21100211330;"Diabetes Mellitus";journal;"20720351, 20720378";"Russian Association of Endocrinologists";Yes;Yes;0,222;Q3;22;68;195;2423;257;195;1,55;35,63;64,18;0;Russian Federation;Eastern Europe;"Russian Association of Endocrinologists";"2004, 2012-2026";"Internal Medicine (Q3); Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +20623;21100927990;"Economics of Peace and Security Journal";journal;"1749852X";"EPS Publishing";No;No;0,222;Q3;6;7;23;311;13;22;0,56;44,43;50,00;0;United States;Northern America;"EPS Publishing";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Political Science and International Relations (Q3); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +20624;3200147702;"Electronic Government";journal;"17407494, 17407508";"Inderscience Enterprises Ltd";No;No;0,222;Q3;42;32;96;2041;96;96;0,83;63,78;34,55;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2026";"Public Administration (Q3); Computer Science Applications (Q4); E-learning (Q4)";"Computer Science; Social Sciences" +20625;28627;"Geograficky Casopis";journal;"24538787, 00167193";"Institute of Geography of the Slovak Academy of Science";No;No;0,222;Q3;17;12;59;598;47;58;0,85;49,83;39,13;0;Slovakia;Eastern Europe;"Institute of Geography of the Slovak Academy of Science";"1976, 1979-1995, 2007-2025";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3); Geology (Q4)";"Earth and Planetary Sciences; Social Sciences" +20626;19700188329;"Geography Teacher";journal;"17526884, 19338341";"Routledge";No;No;0,222;Q3;11;40;114;506;37;88;0,32;12,65;46,00;0;United States;Northern America;"Routledge";"2010-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Education (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +20627;21101041703;"Indian Journal of Entomology";journal;"03678288, 09748172";"The Entomological Society of India";No;No;0,222;Q3;11;247;774;7238;487;772;0,62;29,30;34,73;0;India;Asiatic Region;"The Entomological Society of India";"2019-2026";"Agronomy and Crop Science (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20628;19900192460;"Ingegneria Sismica";journal;"03931420";"Medinlin Soft";No;No;0,222;Q3;31;9;25;355;18;25;0,44;39,44;31,25;0;Italy;Western Europe;"Medinlin Soft";"2010-2014, 2016-2025";"Safety, Risk, Reliability and Quality (Q3); Building and Construction (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering" +20629;21101152867;"International Journal of Environmental Impacts";journal;"23982640, 23982659";"International Information and Engineering Technology Association";Yes;No;0,222;Q3;9;120;130;5252;158;130;1,32;43,77;37,46;0;Canada;Northern America;"International Information and Engineering Technology Association";"2019-2025";"Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3); Materials Science (miscellaneous) (Q4)";"Environmental Science; Materials Science; Social Sciences" +20630;12764;"International Journal of Technology, Policy and Management";journal;"17415292, 14684322";"Inderscience Enterprises Ltd";No;No;0,222;Q3;25;16;60;925;79;59;1,28;57,81;53,85;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2001-2025";"Business, Management and Accounting (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)";"Business, Management and Accounting; Engineering" +20631;21101392297;"IP Indian Journal of Library Science and Information Technology";journal;"25821555, 24569623";"IP Innovative Publication Pvt. Ltd.";No;No;0,222;Q3;5;23;66;337;62;62;1,16;14,65;32,00;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2022-2025";"Information Systems (Q3); Information Systems and Management (Q3); Library and Information Sciences (Q3)";"Computer Science; Decision Sciences; Social Sciences" +20632;19700173020;"Journal of Contemporary Mathematical Analysis";journal;"10683623, 19349416";"Pleiades Publishing";No;No;0,222;Q3;13;48;124;905;56;124;0,39;18,85;26,47;0;United States;Northern America;"Pleiades Publishing";"2009-2025";"Control and Optimization (Q3); Analysis (Q4); Applied Mathematics (Q4)";"Mathematics" +20633;21101152524;"Journal of Entomological Society of Iran";journal;"02599996, 27833968";"Entomological Society of Iran (ESI)";Yes;Yes;0,222;Q3;6;50;114;2183;77;114;0,72;43,66;34,48;0;Iran;Middle East;"Entomological Society of Iran (ESI)";"2019-2026";"Animal Science and Zoology (Q3); Ecology (Q3); Insect Science (Q4); Toxicology (Q4)";"Agricultural and Biological Sciences; Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +20634;19700173001;"Journal of Intellectual Property Rights";journal;"09717544, 09751076";"National Institute of Science Communication and Information Resources (NISCAIR)";Yes;No;0,222;Q3;17;79;150;3320;152;150;1,18;42,03;51,40;0;India;Asiatic Region;"National Institute of Science Communication and Information Resources (NISCAIR)";"2008-2026";"Law (Q3)";"Social Sciences" +20635;21100198238;"Journal of Machinery Manufacture and Reliability";journal;"10526188, 19349394";"Pleiades Publishing";No;No;0,222;Q3;21;170;463;2929;222;463;0,44;17,23;28,06;0;United States;Northern America;"Pleiades Publishing";"1990, 2008-2025";"Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)";"Engineering" +20636;21101290564;"Journal of Pediatric Research";journal;"21479445, 25872478";"Galenos Publishing House";Yes;No;0,222;Q3;9;41;146;813;101;142;0,66;19,83;61,84;0;Turkey;Middle East;"Galenos Publishing House";"2020-2025";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +20637;19900194914;"Journal of Punjab Academy of Forensic Medicine and Toxicology";journal;"0974083X, 09725687";"Punjab Academy of Forensic Medicine and Toxicology";Yes;No;0,222;Q3;9;27;182;555;30;171;0,13;20,56;42,17;0;India;Asiatic Region;"Punjab Academy of Forensic Medicine and Toxicology";"2011-2025";"Pathology and Forensic Medicine (Q3); Toxicology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +20638;21101297817;"Journal of Rhinology";journal;"23844361, 12291498";"Korean Rhinologic Society";Yes;No;0,222;Q3;5;30;91;864;62;91;0,77;28,80;35,59;0;South Korea;Asiatic Region;"Korean Rhinologic Society";"2021-2025";"Otorhinolaryngology (Q3)";"Medicine" +20639;21101338459;"Journal of Watershed Management Research";journal;"22516174, 26764636";"Sari Agricultural Sciences and Natural Resources University";Yes;No;0,222;Q3;5;24;87;893;58;87;0,71;37,21;34,44;0;Iran;Middle East;"Sari Agricultural Sciences and Natural Resources University";"2021-2025";"Soil Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Global and Planetary Change (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20640;21100322900;"Jurnal Komunikasi: Malaysian Journal of Communication";journal;"2289151X, 22891528";"Universiti Kebangsaan Malaysia Press";No;No;0,222;Q3;18;124;308;5954;345;308;1,17;48,02;52,28;0;Malaysia;Asiatic Region;"Universiti Kebangsaan Malaysia Press";"2014-2025";"Communication (Q3)";"Social Sciences" +20641;18133;"Law Teacher";journal;"03069400, 19430353";"Taylor and Francis Ltd.";No;No;0,222;Q3;18;61;114;0;136;109;1,22;0,00;60,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1967-2026";"Education (Q3); Law (Q3)";"Social Sciences" +20642;21101136806;"Medecine Tropicale et Sante Internationale (MTSI)";journal;"27782034";"Societe francophone de medecine tropicale et sante internationale";Yes;Yes;0,222;Q3;44;47;164;1511;81;156;0,42;32,15;38,71;0;France;Western Europe;"Societe francophone de medecine tropicale et sante internationale";"2021-2025";"Pathology and Forensic Medicine (Q3)";"Medicine" +20643;21100255510;"Negotiation and Conflict Management Research";journal;"17504716, 17504708";"";No;No;0,222;Q3;24;15;42;1427;41;42;0,85;95,13;41,86;0;United States;Northern America;"";"2009, 2011-2026";"Communication (Q3); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +20644;21100205971;"Pakistan Journal of Agricultural Sciences";journal;"20760906, 05529034";"Pakistan Association of Advancement in Agricultural Sciences";Yes;No;0,222;Q3;35;66;307;3119;386;307;1,46;47,26;28,92;0;Pakistan;Asiatic Region;"Pakistan Association of Advancement in Agricultural Sciences";"2011-2025";"Agronomy and Crop Science (Q3); Food Science (Q3); Soil Science (Q3); Plant Science (Q4)";"Agricultural and Biological Sciences" +20645;21100826876;"Structural Monitoring and Maintenance";journal;"22886605, 22886613";"Techno-Press";No;No;0,222;Q3;26;21;58;1002;61;58;1,18;47,71;25,76;0;South Korea;Asiatic Region;"Techno-Press";"2014-2025";"Safety, Risk, Reliability and Quality (Q3); Civil and Structural Engineering (Q4)";"Engineering" +20646;32694;"Tappi Journal";trade journal;"07341415";"Technical Assoc. of the Pulp and Paper Industry Press";No;No;0,222;Q3;51;57;183;1086;101;153;0,64;19,05;32,14;0;United States;Northern America;"Technical Assoc. of the Pulp and Paper Industry Press";"1978, 1980-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Mechanical Engineering (Q3); Media Technology (Q3); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Engineering; Materials Science" +20647;28480;"Tetsu-To-Hagane/Journal of the Iron and Steel Institute of Japan";journal;"00211575";"Iron and Steel Institute of Japan";Yes;No;0,222;Q3;41;115;325;3259;133;317;0,40;28,34;11,08;0;Japan;Asiatic Region;"Iron and Steel Institute of Japan";"1968-1991, 1994-2026";"Metals and Alloys (Q3); Condensed Matter Physics (Q4); Materials Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +20648;21664;"Transactions of the Indian Ceramic Society";journal;"0371750X, 21655456";"Taylor and Francis Ltd.";No;No;0,222;Q3;28;26;74;1270;84;74;0,89;48,85;27,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1941-2026";"Ceramics and Composites (Q3)";"Materials Science" +20649;14368;"British Journal of Psychotherapy";journal;"17520118, 02659883";"John Wiley and Sons Inc";No;No;0,222;Q4;25;48;133;1712;70;118;0,63;35,67;46,15;0;United States;Northern America;"John Wiley and Sons Inc";"1984-2026";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +20650;21101290572;"Data Science in Science";journal;"26941899";"Informa UK Ltd";Yes;No;0,222;Q4;4;24;30;864;29;29;0,96;36,00;29,17;0;United Kingdom;Western Europe;"Informa UK Ltd";"2022-2026";"Computational Mathematics (Q4); Statistics and Probability (Q4)";"Mathematics" +20651;28229;"Gigiena i Sanitariya";journal;"24120650, 00169900";"Federal Scientific Center of Hygiene named after FF Erisman";No;No;0,222;Q4;19;134;631;3553;276;631;0,44;26,51;66,17;0;Russian Federation;Eastern Europe;"Federal Scientific Center of Hygiene named after FF Erisman";"1945-1947, 1950-2025";"Health, Toxicology and Mutagenesis (Q4); Medicine (miscellaneous) (Q4); Pollution (Q4); Public Health, Environmental and Occupational Health (Q4)";"Environmental Science; Medicine" +20652;5800179614;"International Journal of Nuclear Energy Science and Technology";journal;"17416361, 1741637X";"Inderscience Enterprises Ltd";No;No;0,222;Q4;18;10;47;282;72;47;1,26;28,20;28,95;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2025";"Nuclear Energy and Engineering (Q4)";"Energy" +20653;21101248372;"Journal of Mathematical Study";journal;"26178702";"Global Science Press";No;No;0,222;Q4;7;36;80;919;28;80;0,31;25,53;20,34;0;Hong Kong;Asiatic Region;"Global Science Press";"2020-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +20654;16800154701;"Orthopaedics and Trauma";journal;"18771335, 18771327";"Churchill Livingstone";No;No;0,222;Q4;33;61;193;1098;105;143;0,39;18,00;20,00;0;United Kingdom;Western Europe;"Churchill Livingstone";"2009-2026";"Orthopedics and Sports Medicine (Q4)";"Medicine" +20655;21100237215;"Russian Journal of Biological Invasions";journal;"20751125, 20751117";"Pleiades Publishing";No;No;0,222;Q4;21;70;189;3417;126;189;0,63;48,81;51,01;0;United States;Northern America;"Pleiades Publishing";"2010-2025";"Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +20656;12548;"Wuli Xuebao/Acta Physica Sinica";journal;"10003290";"Chinese Physical Society and Institute of Physics, Chinese Academy of Sciences";No;No;0,222;Q4;56;797;2600;33716;2572;2577;1,02;42,30;34,47;0;China;Asiatic Region;"Chinese Physical Society and Institute of Physics, Chinese Academy of Sciences";"1993-2026";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +20657;85690;"IEEE International Symposium on Industrial Electronics";conference and proceedings;"21635145, 21635137";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,222;-;65;228;610;4333;517;605;0,90;19,00;16,61;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992-1993, 1995-2010, 2012-2015, 2017-2025";"Control and Systems Engineering; Electrical and Electronic Engineering";"Engineering" +20658;21100228529;"International Symposium on Wireless Personal Multimedia Communications, WPMC";conference and proceedings;"13476890";"IEEE Computer Society";No;No;0,222;-;28;0;239;0;208;236;0,65;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2002, 2004, 2012-2013, 2015-2024";"Computer Networks and Communications; Computer Science Applications; Human-Computer Interaction";"Computer Science" +20659;21100298628;"Signal Processing - Algorithms, Architectures, Arrangements, and Applications Conference Proceedings, SPA";conference and proceedings;"23260262, 23260319";"IEEE Computer Society";No;No;0,222;-;17;52;99;908;97;95;1,17;17,46;23,97;0;United States;Northern America;"IEEE Computer Society";"2013, 2015-2020, 2022-2025";"Computational Theory and Mathematics; Computer Science Applications; Information Systems; Signal Processing";"Computer Science" +20660;19700201330;"Anthropology and Humanism";journal;"15481409, 15599167";"John Wiley and Sons Ltd";No;No;0,221;Q1;25;69;161;1663;50;93;0,21;24,10;67,21;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1993-2026";"Literature and Literary Theory (Q1); Anthropology (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +20661;21101185301;"East European Historical Bulletin";journal;"26642735, 2519058X";"Drohobych Ivan Franko State Pedagogical University";Yes;Yes;0,221;Q1;5;71;226;2347;82;225;0,42;33,06;32,52;0;Ukraine;Eastern Europe;"Drohobych Ivan Franko State Pedagogical University";"2021-2025";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20662;21100854430;"Futuro del Pasado";journal;"19899289";"Ediciones Universidad de Salamanca";Yes;Yes;0,221;Q1;7;31;68;2270;20;63;0,38;73,23;55,00;0;Spain;Western Europe;"Ediciones Universidad de Salamanca";"2017-2025";"History (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +20663;14769;"History of Psychology";journal;"19390610, 10934510";"American Psychological Association";No;No;0,221;Q1;32;17;71;547;55;70;0,82;32,18;48,15;0;United States;Northern America;"American Psychological Association";"1998-2025";"History (Q1); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology" +20664;5200152823;"Journal of Punjab Studies";journal;"09715223";"University of California, Los Angeles";No;No;0,221;Q1;4;17;28;670;11;25;0,21;39,41;28,00;0;United States;Northern America;"University of California, Los Angeles";"1999, 2001-2002, 2016-2023, 2025";"History (Q1); Cultural Studies (Q2); Development (Q3); Geography, Planning and Development (Q3); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +20665;27341;"Journal of Religious Ethics";journal;"14679795, 03849694";"Wiley-Blackwell Publishing Ltd";No;No;0,221;Q1;30;21;100;978;47;91;0,45;46,57;35,29;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1974-1976, 1981, 1984, 1987-1989, 1991, 1996-2026";"Religious Studies (Q1)";"Arts and Humanities" +20666;21100925882;"Technology Architecture and Design";journal;"24751448, 2475143X";"Routledge";No;No;0,221;Q1;14;49;113;1227;82;88;0,88;25,04;36,96;0;United States;Northern America;"Routledge";"2017-2025";"Visual Arts and Performing Arts (Q1); Architecture (Q2); Urban Studies (Q3)";"Arts and Humanities; Engineering; Social Sciences" +20667;19900193917;"Anales del Seminario de Historia de la Filosofia";journal;"19882564, 02112337";"Universidad Complutense Madrid";Yes;Yes;0,221;Q2;7;49;210;1537;39;209;0,12;31,37;19,57;0;Spain;Western Europe;"Universidad Complutense Madrid";"2010-2026";"History and Philosophy of Science (Q2); Philosophy (Q2)";"Arts and Humanities" +20668;21101097260;"Chinese Medical Ethics";journal;"10018565";"";No;No;0,221;Q2;7;227;700;3643;310;698;0,52;16,05;54,97;0;China;Asiatic Region;"";"2019-2026";"Philosophy (Q2); Health (social science) (Q3); Issues, Ethics and Legal Aspects (Q3); Health Policy (Q4)";"Arts and Humanities; Medicine; Nursing; Social Sciences" +20669;9500154011;"Journal of African American Studies";journal;"19364741, 15591646";"Springer";No;No;0,221;Q2;29;27;84;1030;72;77;0,53;38,15;42,86;0;United States;Northern America;"Springer";"1996, 2003-2005, 2007-2026";"Cultural Studies (Q2); Gender Studies (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20670;21101194302;"Journal of Architectural/Planning Research and Studies";journal;"27738868";"Faculty of Architecture and Planning Thammasat University";No;No;0,221;Q2;6;36;58;1521;48;58;1,08;42,25;36,17;0;Thailand;Asiatic Region;"Faculty of Architecture and Planning Thammasat University";"2019-2025";"Architecture (Q2); Geography, Planning and Development (Q3)";"Engineering; Social Sciences" +20671;21101253135;"Linguistische Treffen in Wroclaw";journal;"26575647, 20843062";"";Yes;Yes;0,221;Q2;2;72;199;1599;21;190;0,13;22,21;65,28;0;Poland;Eastern Europe;"";"2022-2025";"Linguistics and Language (Q2)";"Social Sciences" +20672;23667;"Southern African Linguistics and Applied Language Studies";journal;"16073614, 17279461";"Taylor and Francis Ltd.";No;No;0,221;Q2;25;73;124;3582;97;123;0,72;49,07;41,30;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2026";"Linguistics and Language (Q2)";"Social Sciences" +20673;21100903777;"Word Structure";journal;"17501245, 17552036";"Edinburgh University Press";No;No;0,221;Q2;21;10;33;578;21;31;0,67;57,80;31,25;0;United Kingdom;Western Europe;"Edinburgh University Press";"2008-2025";"Linguistics and Language (Q2)";"Social Sciences" +20674;21101067744;"Zanry Reci";journal;"23110759, 23110740";"Saratov State University";Yes;Yes;0,221;Q2;7;21;112;451;22;112;0,19;21,48;65,63;0;Russian Federation;Eastern Europe;"Saratov State University";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +20675;21101043803;"Access to Justice in Eastern Europe";journal;"26630583, 26630575";"Access to Justice in Eastern Europe";Yes;No;0,221;Q3;11;94;245;2705;202;220;0,85;28,78;41,62;0;Ukraine;Eastern Europe;"Access to Justice in Eastern Europe";"2018-2026";"Law (Q3)";"Social Sciences" +20676;21101323221;"Advanced Technologies";journal;"24063037, 24062979";"University of Nis";No;No;0,221;Q3;5;16;51;728;50;51;1,00;45,50;63,33;0;Serbia;Eastern Europe;"University of Nis";"2021-2025";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Environmental Science; Materials Science" +20677;21101037907;"African Human Rights Law Journal";journal;"19962096, 1609073X";"Pretoria University Law Press";Yes;Yes;0,221;Q3;10;44;83;926;51;74;0,46;21,05;43,75;0;South Africa;Africa;"Pretoria University Law Press";"2008, 2015, 2019-2025";"Law (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +20678;21101021224;"AIUB Journal of Science and Engineering";journal;"16083679, 25204890";"AIUB Office of Research and Publication";No;No;0,221;Q3;8;10;71;383;93;71;1,58;38,30;15,15;0;Bangladesh;Asiatic Region;"AIUB Office of Research and Publication";"2018-2025";"Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Mathematics (miscellaneous) (Q4)";"Computer Science; Engineering; Mathematics" +20679;21101089569;"Applied Chemical Engineering";journal;"25782010";"Arts and Science Press Pte. Ltd.";No;No;0,221;Q3;12;143;155;8254;374;155;2,70;57,72;41,21;0;United States;Northern America;"Arts and Science Press Pte. Ltd.";"2019-2025";"Chemical Engineering (miscellaneous) (Q3); Process Chemistry and Technology (Q3); Environmental Chemistry (Q4); Pollution (Q4)";"Chemical Engineering; Environmental Science" +20680;21101297679;"Applied Cybersecurity and Internet Governance";journal;"29564395, 29563119";"NASK National Research Insitute";Yes;No;0,221;Q3;5;16;60;760;74;56;1,00;47,50;29,03;0;Poland;Eastern Europe;"NASK National Research Insitute";"2022-2025";"Computer Science (miscellaneous) (Q3); Political Science and International Relations (Q3); Human-Computer Interaction (Q4); Psychology (miscellaneous) (Q4)";"Computer Science; Psychology; Social Sciences" +20681;17672;"Arquivo Brasileiro de Medicina Veterinaria e Zootecnia";journal;"01020935, 16784162";"Universidade Federal de Minas Gerais";Yes;No;0,221;Q3;40;185;410;5550;293;404;0,74;30,00;42,43;0;Brazil;Latin America;"Universidade Federal de Minas Gerais";"1996-2026";"Veterinary (miscellaneous) (Q3)";"Veterinary" +20682;21101021442;"Derecho Animal";journal;"24627518";"Universitat Autonoma de Barcelona";Yes;Yes;0,221;Q3;8;6;16;295;9;14;0,80;49,17;57,14;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2010, 2019-2025";"Animal Science and Zoology (Q3); Law (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Social Sciences; Veterinary" +20683;21101142541;"E-Journal of Dokuz Eylul University Nursing Faculty";journal;"21490333";"Dokuz Eylul University";Yes;Yes;0,221;Q3;8;0;107;0;77;107;0,67;0,00;0,00;0;Turkey;Middle East;"Dokuz Eylul University";"2019-2024";"Advanced and Specialized Nursing (Q3); Critical Care Nursing (Q3); Education (Q3); Emergency Nursing (Q3); Nursing (miscellaneous) (Q3); Review and Exam Preparation (Q4)";"Nursing; Social Sciences" +20684;21100423723;"International Journal of Electronic Business";journal;"14706067, 17415063";"Inderscience";No;No;0,221;Q3;17;22;62;1671;86;62;1,22;75,95;59,57;0;Switzerland;Western Europe;"Inderscience";"2007, 2009, 2011, 2014-2026";"Business, Management and Accounting (miscellaneous) (Q3); Computer Science Applications (Q4)";"Business, Management and Accounting; Computer Science" +20685;21100934237;"International Journal of Human Movement and Sports Sciences";journal;"23814403, 23814381";"Horizon Research Publishing";No;No;0,221;Q3;21;106;442;4013;425;442;1,05;37,86;35,38;0;United States;Northern America;"Horizon Research Publishing";"2019-2025";"Health (social science) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Orthopedics and Sports Medicine (Q4); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Social Sciences" +20686;4000149107;"International Journal of Wavelets, Multiresolution and Information Processing";journal;"1793690X, 02196913";"World Scientific Publishing Co. Pte Ltd";No;No;0,221;Q3;32;64;199;2127;187;198;0,98;33,23;36,77;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2006-2026";"Information Systems (Q3); Signal Processing (Q3); Applied Mathematics (Q4)";"Computer Science; Mathematics" +20687;21101028162;"Iranian Journal of Botany";journal;"1029788X, 23831685";"Research Institute of Forests and Rangelands of Iran";No;No;0,221;Q3;6;23;68;714;34;68;0,55;31,04;52,94;0;Iran;Middle East;"Research Institute of Forests and Rangelands of Iran";"2019-2025";"Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20688;28986;"Journal of Aeronautical Materials";journal;"10055053";"Science Press";Yes;No;0,221;Q3;27;76;231;3233;246;231;1,25;42,54;35,29;0;China;Asiatic Region;"Science Press";"1998-2026";"Ceramics and Composites (Q3); Metals and Alloys (Q3); Aerospace Engineering (Q4); Materials Chemistry (Q4)";"Engineering; Materials Science" +20689;19300157038;"Journal of Australian Political Economy";journal;"01565826";"Australian Political Economy Movement";No;No;0,221;Q3;20;31;56;1168;40;37;0,69;37,68;47,83;0;Australia;Pacific Region;"Australian Political Economy Movement";"2008-2025";"Sociology and Political Science (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +20690;21101144400;"Journal of Catholic Education";journal;"23738170";"Loyola Marymount University";No;No;0,221;Q3;8;11;55;491;36;52;0,82;44,64;31,25;0;United States;Northern America;"Loyola Marymount University";"2016, 2019-2025";"Education (Q3)";"Social Sciences" +20691;64007;"Journal of Dentistry for Children";journal;"15518949, 19355068";"American Academy of Pediatric Dentistry";No;No;0,221;Q3;46;24;82;612;56;82;0,60;25,50;54,29;0;United States;Northern America;"American Academy of Pediatric Dentistry";"1996-2025";"Dentistry (miscellaneous) (Q3)";"Dentistry" +20692;21100970234;"Journal of Experimental Biology and Agricultural Sciences";journal;"23208694";"Editorial board of Journal of Experimental Biology and Agricultural Sciences";No;No;0,221;Q3;14;75;305;3148;309;305;1,01;41,97;40,00;0;India;Asiatic Region;"Editorial board of Journal of Experimental Biology and Agricultural Sciences";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Veterinary (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +20693;24640;"Journal of Liquid Chromatography and Related Technologies";journal;"1520572X, 10826076";"Taylor and Francis Ltd.";No;No;0,221;Q3;59;72;96;2571;135;96;1,41;35,71;45,21;0;United States;Northern America;"Taylor and Francis Ltd.";"1996-2026";"Pharmaceutical Science (Q3); Analytical Chemistry (Q4); Biochemistry (Q4); Clinical Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +20694;21101101245;"Journal of Mechatronics, Electrical Power, and Vehicular Technology";journal;"20886985, 20873379";"National Research and Innovation Agency (BRIN)";Yes;Yes;0,221;Q3;7;25;63;909;77;63;1,42;36,36;31,58;0;Indonesia;Asiatic Region;"National Research and Innovation Agency (BRIN)";"2019-2025";"Automotive Engineering (Q3); Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3); Artificial Intelligence (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Computer Science; Energy; Engineering" +20695;21101294932;"Journal of Oral and Maxillofacial Anesthesia";journal;"27908852";"AME Publishing Company";No;No;0,221;Q3;4;28;100;1725;62;72;0,75;61,61;44,58;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2022-2025";"Anesthesiology and Pain Medicine (Q3); Otorhinolaryngology (Q3); Surgery (Q3)";"Medicine" +20696;21101032141;"Journal of Tea Science";journal;"1000369X";"Editorial Office of Journal of Tea science";No;No;0,221;Q3;13;77;224;3115;285;224;1,27;40,45;46,53;0;China;Asiatic Region;"Editorial Office of Journal of Tea science";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Food Science (Q3); Insect Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +20697;21101288925;"Jurnal RESTI";journal;"25800760";"Ikatan Ahli Informatika Indonesia";Yes;No;0,221;Q3;13;158;403;5231;557;403;1,40;33,11;37,46;0;Indonesia;Asiatic Region;"Ikatan Ahli Informatika Indonesia";"2021-2025";"Information Systems (Q3); Artificial Intelligence (Q4); Computer Science Applications (Q4); Software (Q4)";"Computer Science" +20698;21100456164;"Kontakt";journal;"18047122, 12124117";"University of South Bohemia";Yes;No;0,221;Q3;14;61;156;1724;101;144;0,57;28,26;75,26;0;Czech Republic;Eastern Europe;"University of South Bohemia";"2014-2025";"Health (social science) (Q3); Nursing (miscellaneous) (Q3); Public Administration (Q3); Social Sciences (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Nursing; Social Sciences" +20699;21101000293;"Mekhatronika, Avtomatizatsiya, Upravlenie";journal;"16846427, 26191253";"New Technologies Publishing House";No;No;0,221;Q3;7;67;214;1446;97;214;0,47;21,58;18,70;0;Russian Federation;Eastern Europe;"New Technologies Publishing House";"2019-2026";"Electrical and Electronic Engineering (Q3); Artificial Intelligence (Q4); Computer Science Applications (Q4); Control and Systems Engineering (Q4); Human-Computer Interaction (Q4); Software (Q4)";"Computer Science; Engineering" +20700;19900191750;"Motriz. Revista de Educacao Fisica";journal;"14159805, 19806574";"Universidade Estadual Paulista (UNESP)";Yes;Yes;0,221;Q3;25;29;114;1176;89;114;0,56;40,55;43,61;0;Brazil;Latin America;"Universidade Estadual Paulista (UNESP)";"2010-2025";"Health (social science) (Q3); Medicine (miscellaneous) (Q4); Sports Science (Q4)";"Health Professions; Medicine; Social Sciences" +20701;21101157701;"Orthoplastic Surgery";journal;"2666769X";"Wolters Kluwer Medknow Publications";No;No;0,221;Q3;7;0;79;0;71;71;1,08;0,00;0,00;0;United Kingdom;Western Europe;"Wolters Kluwer Medknow Publications";"2020-2024";"Surgery (Q3); Orthopedics and Sports Medicine (Q4)";"Medicine" +20702;21101274767;"Public Governance, Administration and Finances Law Review";journal;"27860736, 24986275";"University of Public Service, Ludovika University Press";Yes;Yes;0,221;Q3;4;17;47;825;35;47;0,87;48,53;32,00;0;Hungary;Eastern Europe;"University of Public Service, Ludovika University Press";"2021-2025";"Finance (Q3); Law (Q3); Public Administration (Q3)";"Economics, Econometrics and Finance; Social Sciences" +20703;5300152522;"Research in Agricultural Engineering";journal;"12129151, 18059376";"Czech Academy of Agricultural Sciences";Yes;Yes;0,221;Q3;29;15;72;553;74;72;0,73;36,87;31,82;0;Czech Republic;Eastern Europe;"Czech Academy of Agricultural Sciences";"2003-2025";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +20704;21100915687;"Revista Catalana de Dret Public";journal;"18858252";"Public Administration School of Catalonia";Yes;Yes;0,221;Q3;7;24;87;897;36;82;0,50;37,38;50,00;0;Spain;Western Europe;"Public Administration School of Catalonia";"2019-2025";"Law (Q3); Public Administration (Q3)";"Social Sciences" +20705;19700175032;"SAJCH South African Journal of Child Health";journal;"19997671, 19943032";"South African Medical Association";Yes;No;0,221;Q3;23;26;119;559;72;117;0,49;21,50;51,85;0;South Africa;Africa;"South African Medical Association";"2008-2025";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +20706;22282;"Seminars in Colon and Rectal Surgery";journal;"10431489, 15584585";"W.B. Saunders";No;No;0,221;Q3;16;34;107;708;64;94;0,66;20,82;44,68;0;United States;Northern America;"W.B. Saunders";"1996-2026";"Surgery (Q3); Gastroenterology (Q4)";"Medicine" +20707;16323;"Theoretical Inquiries in Law";journal;"15651509, 15653404";"Walter de Gruyter GmbH";No;No;0,221;Q3;38;25;69;3578;50;64;0,31;143,12;23,33;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2004-2025";"Law (Q3)";"Social Sciences" +20708;21101046768;"Acta Medica Lituanica";journal;"13920138, 20294174";"Vilnius University Press";Yes;Yes;0,221;Q4;10;46;108;1321;77;107;0,71;28,72;45,28;0;Lithuania;Eastern Europe;"Vilnius University Press";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +20709;19900192321;"Bangladesh Journal of Medical Science";journal;"20760299, 22234721";"Ibn Sina Trust";Yes;Yes;0,221;Q4;20;161;454;5545;374;424;0,82;34,44;56,43;0;Bangladesh;Asiatic Region;"Ibn Sina Trust";"2011-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +20710;19300157032;"Medziagotyra";journal;"13921320, 20297289";"Kauno Technologijos Universitetas";Yes;No;0,221;Q4;33;73;220;2308;224;220;0,84;31,62;30,08;0;Lithuania;Eastern Europe;"Kauno Technologijos Universitetas";"2008-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +20711;12899;"Spectroscopy Letters";journal;"00387010, 15322289";"Taylor and Francis Ltd.";No;No;0,221;Q4;45;138;149;6311;226;149;1,39;45,73;41,10;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1968-2026";"Analytical Chemistry (Q4); Atomic and Molecular Physics, and Optics (Q4); Spectroscopy (Q4)";"Chemistry; Physics and Astronomy" +20712;17298;"Conference Record of the IEEE Photovoltaic Specialists Conference";conference and proceedings;"01608371";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,221;-;68;397;1019;4111;501;1016;0,44;10,36;24,26;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1978, 1980-1982, 1984-1988, 1990, 1992-1994, 1996-1997, 2000, 2002, 2005, 2008-2013, 2015-2025";"Control and Systems Engineering; Electrical and Electronic Engineering; Industrial and Manufacturing Engineering";"Engineering" +20713;19126;"Proceedings - Annual Reliability and Maintainability Symposium";conference and proceedings;"0149144X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,221;-;49;119;324;1490;176;319;0,59;12,52;19,92;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1974-2025";"Computer Science Applications; Engineering (miscellaneous); Mathematics (miscellaneous); Safety, Risk, Reliability and Quality";"Computer Science; Engineering; Mathematics" +20714;21100803360;"Proceedings of the Annual Conference of the Prognostics and Health Management Society, PHM";conference and proceedings;"23250178";"Prognostics and Health Management Society";No;No;0,221;-;21;70;218;1363;175;215;0,86;19,47;16,36;0;United States;Northern America;"Prognostics and Health Management Society";"2015-2025";"Computer Networks and Communications; Computer Science Applications; Electrical and Electronic Engineering; Health Information Management; Information Systems";"Computer Science; Engineering; Health Professions" +20715;21100838844;"Eastern Journal of European Studies";journal;"20686633, 2068651X";"Alexandru Ioan Cuza University of Iasi";Yes;Yes;0,220;Q1;13;34;125;1838;114;121;0,78;54,06;51,43;0;Romania;Eastern Europe;"Alexandru Ioan Cuza University of Iasi";"2017-2025";"History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +20716;5600155448;"Journal of Religion in Africa";journal;"00224200, 15700666";"Brill Academic Publishers";No;No;0,220;Q1;43;27;91;1788;41;83;0,30;66,22;23,81;0;Netherlands;Western Europe;"Brill Academic Publishers";"1967-1976, 1978-1983, 1985-2026";"History (Q1); Religious Studies (Q1)";"Arts and Humanities" +20717;21101210787;"Journal of Visual Theology";journal;"27131610, 27131955";"Yaroslav-the-Wise Novgorod State University";Yes;Yes;0,220;Q1;3;17;54;476;8;54;0,11;28,00;42,86;0;Russian Federation;Eastern Europe;"Yaroslav-the-Wise Novgorod State University";"2019-2025";"Religious Studies (Q1)";"Arts and Humanities" +20718;5700168539;"Political Theology";journal;"17431719, 1462317X";"Taylor and Francis Ltd.";No;No;0,220;Q1;12;94;210;3510;74;143;0,29;37,34;34,52;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008, 2011, 2013-2026";"Religious Studies (Q1); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +20719;5700169125;"Style";journal;"00394238";"Penn State University Press";No;No;0,220;Q1;28;8;73;336;30;70;0,49;42,00;44,44;0;United States;Northern America;"Penn State University Press";"2002-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +20720;21100829564;"DETUROPE";journal;"18212506";"Regional Science Association of Subotica (Drustvo za Regionalne Nauke)";Yes;Yes;0,220;Q2;13;25;72;1170;77;71;1,09;46,80;51,85;0;Serbia;Eastern Europe;"Regional Science Association of Subotica (Drustvo za Regionalne Nauke)";"2017-2025";"Cultural Studies (Q2); Geography, Planning and Development (Q3); Urban Studies (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +20721;21100915635;"English Scholarship Beyond Borders";journal;"24109096";"Editorial Board English Scholarship Beyond Borders";No;No;0,220;Q2;5;14;45;535;26;31;0,67;38,21;28,57;0;United Arab Emirates;Middle East;"Editorial Board English Scholarship Beyond Borders";"2019-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +20722;21101054413;"Filosofiya Nauki i Tehniki";journal;"26587297, 24139084";"Institute of Philosophy, Russian Academy of Sciences";No;No;0,220;Q2;4;25;71;698;15;71;0,25;27,92;36,36;0;Russian Federation;Eastern Europe;"Institute of Philosophy, Russian Academy of Sciences";"2019-2025";"History and Philosophy of Science (Q2)";"Arts and Humanities" +20723;12100156297;"Historical Studies in the Natural Sciences";journal;"1939182X, 19391811";"University of California Press";No;No;0,220;Q2;28;19;97;1297;41;92;0,44;68,26;52,63;0;United States;Northern America;"University of California Press";"2008-2026";"History and Philosophy of Science (Q2)";"Arts and Humanities" +20724;21100215170;"Palabra Clave";journal;"01228285, 2027534X";"Universidad de La Sabana";Yes;Yes;0,220;Q2;18;39;107;1865;82;103;0,67;47,82;56,98;0;Colombia;Latin America;"Universidad de La Sabana";"2012-2026";"Arts and Humanities (miscellaneous) (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +20725;21100266725;"Topicos (Mexico)";journal;"01886649, 20078498";"Universidad Panamericana";Yes;Yes;0,220;Q2;7;53;153;2254;29;153;0,21;42,53;21,15;0;Mexico;Latin America;"Universidad Panamericana";"2013-2026";"Philosophy (Q2)";"Arts and Humanities" +20726;22658;"Acta Chimica Slovenica";journal;"15803155, 13180207";"Slovensko Kemijsko Drustvo";Yes;Yes;0,220;Q3;58;80;240;3807;305;238;1,20;47,59;46,43;0;Slovenia;Eastern Europe;"Slovensko Kemijsko Drustvo";"1996-2025";"Chemistry (miscellaneous) (Q3)";"Chemistry" +20727;21100427192;"Acta Crystallographica Section E: Crystallographic Communications";journal;"20569890";"International Union of Crystallography";Yes;No;0,220;Q3;21;232;762;6158;467;759;0,64;26,54;32,79;0;United Kingdom;Western Europe;"International Union of Crystallography";"2015-2026";"Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +20728;5800210946;"Australian Journal of Adult Learning";journal;"14431394";"Adult Learning Australia";No;No;0,220;Q3;26;24;67;719;52;57;0,45;29,96;74,29;0;Australia;Pacific Region;"Adult Learning Australia";"2008-2025";"Education (Q3); E-learning (Q4)";"Social Sciences" +20729;14000156246;"Baltic Journal of Economics";journal;"1406099X, 23344385";"Taylor and Francis Ltd.";Yes;No;0,220;Q3;17;13;27;590;21;26;0,74;45,38;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Political Science and International Relations (Q3)";"Economics, Econometrics and Finance; Social Sciences" +20730;9100153110;"Boletin de la Asociacion de Geografos Espanoles";journal;"26053322, 02129426";"Radcliffe Cardiology";Yes;No;0,220;Q3;30;47;132;2626;111;131;0,96;55,87;32,38;0;Spain;Western Europe;"Radcliffe Cardiology";"2006-2026";"Earth-Surface Processes (Q3); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3); Urban Studies (Q3)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +20731;21101105299;"Bulleten' Pocvennogo Instituta Imeni V.V. Dokucaeva";journal;"01361694, 23124202";"V.V. Dokuchaev Soil Science Institute";Yes;Yes;0,220;Q3;8;30;94;1377;72;94;0,88;45,90;50,00;0;Russian Federation;Eastern Europe;"V.V. Dokuchaev Soil Science Institute";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q3); Soil Science (Q4)";"Agricultural and Biological Sciences" +20732;21100810443;"Ciencia Tecnologia Agropecuaria";journal;"01228706, 25005308";"Corporacion Colombiana de Investigacion Agropecuaria Corpoica";Yes;Yes;0,220;Q3;15;4;139;176;107;139;0,75;44,00;33,33;0;Colombia;Latin America;"Corporacion Colombiana de Investigacion Agropecuaria Corpoica";"2016-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +20733;21101209163;"Diyala Journal of Engineering Sciences";journal;"26166909, 19998716";"University of Diyala";Yes;No;0,220;Q3;6;59;47;2435;101;47;2,15;41,27;17,95;0;Iraq;Middle East;"University of Diyala";"2024-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +20734;21101039255;"Historia Naturalis Bulgarica";journal;"26033186, 02053640";"Bulgarska Akademiya na Naukite";Yes;Yes;0,220;Q3;6;33;96;956;54;96;0,61;28,97;25,27;0;Bulgaria;Eastern Europe;"Bulgarska Akademiya na Naukite";"2019-2026";"Animal Science and Zoology (Q3); Aquatic Science (Q4); Insect Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +20735;21100775591;"Home Healthcare Now";journal;"23744529, 23744537";"Lippincott Williams and Wilkins";No;No;0,220;Q3;31;72;275;868;154;218;0,58;12,06;72,81;0;United States;Northern America;"Lippincott Williams and Wilkins";"2015-2026";"Advanced and Specialized Nursing (Q3); Community and Home Care (Q3); Health (social science) (Q3)";"Nursing; Social Sciences" +20736;21101093539;"Indonesian Journal of International Law";journal;"23565527, 16935594";"Center for International Law Studies, Faculty of Law, Universitas Indonesia";Yes;Yes;0,220;Q3;8;12;83;827;43;83;0,53;68,92;45,45;0;Indonesia;Asiatic Region;"Center for International Law Studies, Faculty of Law, Universitas Indonesia";"2019-2025";"Law (Q3)";"Social Sciences" +20737;21100820054;"International Journal of Computing";journal;"17276209, 23125381";"Research Institute of Intelligent Computer Systems";Yes;No;0,220;Q3;26;78;177;2716;176;177;0,90;34,82;30,20;0;Ukraine;Eastern Europe;"Research Institute of Intelligent Computer Systems";"2016-2025";"Computer Networks and Communications (Q3); Computer Science (miscellaneous) (Q3); Information Systems (Q3); Hardware and Architecture (Q4); Software (Q4)";"Computer Science" +20738;19151;"International Journal of Industrial Engineering : Theory Applications and Practice";journal;"1943670X, 10724761";"University of Cincinnati";No;No;0,220;Q3;29;83;233;3576;261;233;1,19;43,08;32,59;0;United States;Northern America;"University of Cincinnati";"1994, 1996-2006, 2008-2025";"Industrial and Manufacturing Engineering (Q3)";"Engineering" +20739;33328;"International Journal of Special Education";journal;"08273383, 19177844";"SPED Ltd";Yes;No;0,220;Q3;39;30;108;1373;111;108;1,18;45,77;60,49;0;Canada;Northern America;"SPED Ltd";"1995, 2001-2025";"Education (Q3); Rehabilitation (Q3)";"Medicine; Social Sciences" +20740;21100905324;"Journal of Brand Strategy";journal;"2045855X, 20458568";"Henry Stewart Publications";No;No;0,220;Q3;11;30;99;1372;62;85;0,48;45,73;41,51;0;United Kingdom;Western Europe;"Henry Stewart Publications";"2018-2025";"Communication (Q3); Management of Technology and Innovation (Q4); Marketing (Q4); Social Psychology (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Psychology; Social Sciences" +20741;7000153216;"Journal of Central European Agriculture";journal;"13329049";"University of Zagreb - Faculty of Agriculture";Yes;Yes;0,220;Q3;30;94;281;4319;260;281;0,92;45,95;42,58;0;Croatia;Eastern Europe;"University of Zagreb - Faculty of Agriculture";"2007-2025";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +20742;21100881841;"Journal of Doctoral Nursing Practice";journal;"23809418, 23809426";"Springer Publishing Company";No;No;0,220;Q3;8;24;67;600;50;66;0,71;25,00;81,43;0;United States;Northern America;"Springer Publishing Company";"2016-2025";"Nursing (miscellaneous) (Q3); Health Policy (Q4)";"Medicine; Nursing" +20743;5700165156;"Journal of Food and Nutrition Research";journal;"13368672, 13384260";"Food Reseach Institute";No;No;0,220;Q3;36;31;118;1109;102;117;0,72;35,77;58,68;0;Slovakia;Eastern Europe;"Food Reseach Institute";"2006-2025";"Food Science (Q3); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Nursing" +20744;21101080472;"Journal of Korean Academy of Psychiatric and Mental Health Nursing";journal;"12258482, 22884653";"Korean Academy of Psychiatric and Mental Health Nursing";No;No;0,220;Q3;7;56;131;1524;77;130;0,65;27,21;73,33;0;South Korea;Asiatic Region;"Korean Academy of Psychiatric and Mental Health Nursing";"2019-2025";"Health (social science) (Q3); Psychiatry and Mental Health (Q4)";"Medicine; Social Sciences" +20745;21100856121;"Journal of Nanostructures";journal;"22517871, 2251788X";"University of Kashan";Yes;Yes;0,220;Q3;28;189;340;7449;498;340;1,41;39,41;45,55;0;Iran;Middle East;"University of Kashan";"2017-2026";"Polymers and Plastics (Q3); Surfaces, Coatings and Films (Q3); Biomaterials (Q4); Electronic, Optical and Magnetic Materials (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +20746;21100229177;"Journal of Psychological and Educational Research";journal;"22471537";"Universitatea din Oradea";No;No;0,220;Q3;12;28;51;1423;56;50;1,06;50,82;73,81;0;Romania;Eastern Europe;"Universitatea din Oradea";"2011-2025";"Education (Q3); Applied Psychology (Q4); Developmental and Educational Psychology (Q4)";"Psychology; Social Sciences" +20747;21100823452;"Journal of the Indonesian Tropical Animal Agriculture";journal;"20878273, 24606278";"Diponegoro University";Yes;No;0,220;Q3;19;42;94;1689;90;94;0,90;40,21;38,13;0;Indonesia;Asiatic Region;"Diponegoro University";"2009-2025";"Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +20748;19700174729;"Journal of the Mexican Chemical Society";journal;"1870249X, 16659686";"Sociedad Quimica de Mexico A.C.";Yes;No;0,220;Q3;32;55;154;2609;173;150;1,02;47,44;33,33;0;Mexico;Latin America;"Sociedad Quimica de Mexico A.C.";"2008-2026";"Chemistry (miscellaneous) (Q3)";"Chemistry" +20749;21100260918;"Journal of Thermoelectricity";journal;"16078829";"";No;No;0,220;Q3;10;32;76;741;102;76;1,61;23,16;33,93;0;Ukraine;Eastern Europe;"";"2012, 2016-2025";"Electrical and Electronic Engineering (Q3); Condensed Matter Physics (Q4); Materials Chemistry (Q4)";"Engineering; Materials Science; Physics and Astronomy" +20750;21101166819;"Natural Resources for Human Health";journal;"25831194";"Visagaa Publishing House";No;No;0,220;Q3;9;66;136;3379;187;134;1,41;51,20;49,29;0;India;Asiatic Region;"Visagaa Publishing House";"2021-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +20751;11500153307;"Recent Patents on Engineering";journal;"18722121, 22124047";"Bentham Science Publishers";No;No;0,220;Q3;23;162;225;10526;273;217;1,37;64,98;33,25;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2008-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +20752;19900191751;"Research on Crops";journal;"09723226, 23487542";"Gaurav Publications";No;No;0,220;Q3;26;95;353;2673;331;353;0,95;28,14;49,78;0;India;Asiatic Region;"Gaurav Publications";"2008-2025";"Agronomy and Crop Science (Q3); Soil Science (Q4)";"Agricultural and Biological Sciences" +20753;21100468970;"Revista CIDOB d'Afers Internacionals";journal;"2013035X, 11336595";"CIDOB (Barcelona centre for international affairs)";Yes;Yes;0,220;Q3;15;20;94;999;77;93;0,53;49,95;43,48;0;Spain;Western Europe;"CIDOB (Barcelona centre for international affairs)";"2016-2025";"Political Science and International Relations (Q3)";"Social Sciences" +20754;21100264817;"Revista de Estudios Internacionales Mediterraneos";journal;"18874460";"Taller de Estudios Internacionales Mediterraneos";Yes;Yes;0,220;Q3;8;20;99;1155;38;97;0,47;57,75;29,41;0;Spain;Western Europe;"Taller de Estudios Internacionales Mediterraneos";"2013-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +20755;24288;"Tien Tzu Hsueh Pao/Acta Electronica Sinica";journal;"03722112";"Chinese Institute of Electronics";No;No;0,220;Q3;54;158;1019;6104;1080;1019;1,02;38,63;30,06;0;China;Asiatic Region;"Chinese Institute of Electronics";"1993-2025";"Electrical and Electronic Engineering (Q3)";"Engineering" +20756;21101152622;"Transactions on Energy Systems and Engineering Applications";journal;"27450120";"Universidad Tecnologica de Bolivar";Yes;Yes;0,220;Q3;7;28;59;968;57;53;1,04;34,57;26,32;0;Colombia;Latin America;"Universidad Tecnologica de Bolivar";"2020-2025";"Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering" +20757;21101162548;"Zhurnal Srednevolzhskogo Matematicheskogo Obshchestva";journal;"20796900, 25877496";"National Research Ogarev Mordovia State University";Yes;Yes;0,220;Q3;3;25;74;445;18;74;0,35;17,80;40,82;0;Russian Federation;Eastern Europe;"National Research Ogarev Mordovia State University";"2021-2025";"Control and Optimization (Q3); Applied Mathematics (Q4); Computational Mathematics (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics" +20758;21100863623;"Health Risk Analysis";journal;"23081163, 25422308";"Federal Scientific Center for Medical and Preventive Health Risk Management Technologies";Yes;Yes;0,220;Q4;13;51;216;1588;141;216;0,73;31,14;56,80;0;Russian Federation;Eastern Europe;"Federal Scientific Center for Medical and Preventive Health Risk Management Technologies";"2018-2025";"Health Informatics (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +20759;11200153572;"International Journal of Business Innovation and Research";journal;"17510252, 17510260";"Inderscience Enterprises Ltd";Yes;No;0,220;Q4;31;89;240;5724;297;240;0,87;64,31;34,25;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2026";"Business and International Management (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting" +20760;21101038526;"Journal of Applied Mathematics and Informatics";journal;"27341194, 22348417";"Korean Society for Computational and Applied Mathematics";No;No;0,220;Q4;12;126;295;2769;197;295;0,70;21,98;31,48;0;South Korea;Asiatic Region;"Korean Society for Computational and Applied Mathematics";"2019-2026";"Analysis (Q4); Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Mathematics" +20761;11500153507;"Pakistan Journal of Statistics";journal;"23103515, 10129367";"ISOSS PUBLICATIONS";Yes;No;0,220;Q4;25;19;78;431;52;77;0,58;22,68;20,59;0;Pakistan;Asiatic Region;"ISOSS PUBLICATIONS";"2008-2025";"Statistics and Probability (Q4)";"Mathematics" +20762;21100200647;"Polish Psychological Bulletin";journal;"16417844, 00792993";"Polish Academy of Sciences, Committee for Psychological Science";Yes;No;0,220;Q4;23;10;84;567;57;84;0,69;56,70;53,85;0;Poland;Eastern Europe;"Polish Academy of Sciences, Committee for Psychological Science";"2008-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +20763;26681;"Problemy Endokrinologii";journal;"03759660, 23081430";"Endocrinology Research Centre";Yes;No;0,220;Q4;16;54;225;1562;194;225;0,70;28,93;74,89;0;Russian Federation;Eastern Europe;"Endocrinology Research Centre";"1967-1995, 2016-2026";"Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +20764;19869;"Programming and Computer Software";journal;"16083261, 03617688";"Pleiades Publishing";No;No;0,220;Q4;24;84;268;2431;235;264;0,94;28,94;25,00;0;United States;Northern America;"Pleiades Publishing";"1978-1992, 1996-2025";"Software (Q4)";"Computer Science" +20765;21100945163;"Romanian Journal of Applied Psychology";journal;"2392845X, 23928441";"Sciendo";Yes;Yes;0,220;Q4;4;11;14;647;13;14;1,11;58,82;37,50;0;Romania;Eastern Europe;"Sciendo";"2019-2026";"Applied Psychology (Q4)";"Psychology" +20766;4400151403;"Shiyan Liuti Lixue/Journal of Experiments in Fluid Mechanics";journal;"16729897";"";No;No;0,220;Q4;21;51;210;1368;190;210;0,85;26,82;28,02;0;China;Asiatic Region;"";"2006-2025";"Aerospace Engineering (Q4)";"Engineering" +20767;93511;"Turk Kardiyoloji Dernegi Arsivi";journal;"10165169, 13084488";"Turkish Society of Cardiology";Yes;Yes;0,220;Q4;31;125;361;1631;191;292;0,47;13,05;31,83;0;Turkey;Middle East;"Turkish Society of Cardiology";"1990-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +20768;21100945712;"Vladikavkaz Mathematical Journal";journal;"18140807, 16833414";"Southern Mathematical Institute of VSC RAS";No;No;0,220;Q4;7;23;134;404;47;134;0,39;17,57;32,35;0;Russian Federation;Eastern Europe;"Southern Mathematical Institute of VSC RAS";"2019-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +20769;21101107943;"International Conference on Cloud Computing and Services Science, CLOSER - Proceedings";conference and proceedings;"21845042";"Science and Technology Publications, Lda";No;No;0,220;-;10;29;107;691;99;102;1,04;23,83;17,07;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Computer Science Applications; Computer Science (miscellaneous); Software";"Computer Science" +20770;19900195068;"IOP Conference Series: Earth and Environmental Science";conference and proceedings;"17551315, 17551307";"Institute of Physics";No;No;0,220;-;66;6394;27725;147407;22236;26722;0,79;23,05;40,38;4;United Kingdom;Western Europe;"Institute of Physics";"2008-2026";"Earth and Planetary Sciences (miscellaneous); Environmental Science (miscellaneous); Physics and Astronomy (miscellaneous)";"Earth and Planetary Sciences; Environmental Science; Physics and Astronomy" +20771;21100871774;"DISEGNARECON";journal;"18285961";"University of L'Aquila, Department of Civil Construction, Building and Architecture, Environmental Engineering";Yes;Yes;0,219;Q1;10;52;121;1602;72;115;0,57;30,81;60,38;0;Italy;Western Europe;"University of L'Aquila, Department of Civil Construction, Building and Architecture, Environmental Engineering";"2015-2025";"Visual Arts and Performing Arts (Q1); Architecture (Q2); Urban Studies (Q3)";"Arts and Humanities; Engineering; Social Sciences" +20772;21100900370;"Imagologiya i Komparativistika";journal;"24099554";"Tomsk State University";No;No;0,219;Q1;3;33;101;969;20;101;0,24;29,36;65,96;0;Russian Federation;Eastern Europe;"Tomsk State University";"2018-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +20773;5700188557;"Journal of Literary Semantics";journal;"03417638, 16133838";"De Gruyter Mouton";No;No;0,219;Q1;19;6;35;272;26;33;0,89;45,33;37,50;0;Germany;Western Europe;"De Gruyter Mouton";"1972-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +20774;16000154720;"Klio";journal;"21927669, 00756334";"Walter de Gruyter GmbH";No;No;0,219;Q1;21;17;59;1460;38;59;0,63;85,88;11,76;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1901-1912, 1915, 1918, 1920-1921, 1923, 1925-1927, 1929-1943, 1959-1999, 2001-2025";"Classics (Q1); History (Q1)";"Arts and Humanities" +20775;29005;"Patterns of Prejudice";journal;"14617331, 0031322X";"Routledge";No;No;0,219;Q1;50;5;49;476;33;45;0,42;95,20;25,00;0;United Kingdom;Western Europe;"Routledge";"1967-2026";"History (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +20776;5600154145;"Bilig";journal;"13010549";"Ahmet Yesevi University";No;No;0,219;Q2;12;29;86;1532;42;86;0,48;52,83;33,33;0;Turkey;Middle East;"Ahmet Yesevi University";"2008-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +20777;16400154737;"Ethnomusicology";journal;"00141836";"Society for Ethnomusicology";No;No;0,219;Q2;33;19;72;1309;23;63;0,28;68,89;50,00;0;United States;Northern America;"Society for Ethnomusicology";"2002-2025";"Anthropology (Q2); Cultural Studies (Q2); Music (Q2)";"Arts and Humanities; Social Sciences" +20778;5800197657;"Hume Studies";journal;"19479921, 03197336";"The Hume Society";No;No;0,219;Q2;26;10;39;708;26;32;0,50;70,80;33,33;0;United States;Northern America;"The Hume Society";"1994, 1996-2020, 2022-2025";"Philosophy (Q2)";"Arts and Humanities" +20779;5800164138;"International Journal of American Linguistics";journal;"00207071, 15457001";"University of Chicago Press";No;No;0,219;Q2;28;19;75;870;24;60;0,43;45,79;38,46;0;United States;Northern America;"University of Chicago Press";"1996-2026";"Linguistics and Language (Q2)";"Social Sciences" +20780;21100449122;"Journal of Accessibility and Design for All";journal;"20137087";"Universitat Politecnica de Catalunya";Yes;Yes;0,219;Q2;10;17;32;820;30;32;0,90;48,24;44,83;0;Spain;Western Europe;"Universitat Politecnica de Catalunya";"2015-2025";"Architecture (Q2); Human Factors and Ergonomics (Q3); Building and Construction (Q4)";"Engineering; Social Sciences" +20781;16200154760;"Journal of Medieval and Early Modern Studies";journal;"15278263, 10829636";"Duke University Press";No;No;0,219;Q2;30;22;68;1527;35;67;0,51;69,41;52,38;0;United States;Northern America;"Duke University Press";"2002-2026";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +20782;21101102022;"Journal of Open Humanities Data";journal;"2059481X";"Ubiquity Press";Yes;No;0,219;Q2;6;85;120;1861;106;59;0,94;21,89;54,95;0;United Kingdom;Western Europe;"Ubiquity Press";"2019, 2021-2026";"Arts and Humanities (miscellaneous) (Q2); Library and Information Sciences (Q3); Information Systems (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +20783;21101016783;"Journal of Tourism Analysis";journal;"22540644, 18852564";"";Yes;Yes;0,219;Q2;14;18;32;1108;31;32;0,70;61,56;47,73;0;United Kingdom;Western Europe;"";"2018-2025";"Anthropology (Q2); Geography, Planning and Development (Q3); Urban Studies (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +20784;21101142674;"Polish Archaeology in the Mediterranean";journal;"12345415, 2083537X";"University of Warsaw Press";Yes;Yes;0,219;Q2;6;8;57;522;30;56;0,33;65,25;27,27;0;Poland;Eastern Europe;"University of Warsaw Press";"2019-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20785;21101162629;"Telehealth and Medicine Today";journal;"24716960";"Partners in Digital Health";No;No;0,219;Q2;4;30;59;837;64;45;1,08;27,90;38,61;0;United States;Northern America;"Partners in Digital Health";"2020-2021, 2023-2025";"Emergency Medical Services (Q2); Health Professions (miscellaneous) (Q2); Health Informatics (Q4); Health Information Management (Q4); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine" +20786;21100382438;"Archives of Foundry Engineering";journal;"18973310, 22992944";"Polska Akademia Nauk";Yes;No;0,219;Q3;20;91;207;2316;153;207;0,77;25,45;26,98;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2012-2025";"Industrial and Manufacturing Engineering (Q3); Metals and Alloys (Q3)";"Engineering; Materials Science" +20787;21101074679;"Arthaniti: Journal of Economic Theory and Practice";journal;"09767479, 25172654";"SAGE Publications Ltd";No;No;0,219;Q3;10;13;42;428;45;42;1,10;32,92;52,17;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +20788;145076;"Beijing Jiaotong Daxue Xuebao/Journal of Beijing Jiaotong University";journal;"16730291";"Journal Northern Jiaotong University";No;No;0,219;Q3;19;106;319;3080;311;319;0,97;29,06;32,34;0;China;Asiatic Region;"Journal Northern Jiaotong University";"2005-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +20789;15791;"Chemistry and Technology of Fuels and Oils";journal;"00093092, 15738310";"Springer Science and Business Media, LLC";No;No;0,219;Q3;23;192;474;4230;401;473;0,83;22,03;32,27;0;United States;Northern America;"Springer Science and Business Media, LLC";"1965-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Energy Engineering and Power Technology (Q4); Fuel Technology (Q4)";"Chemical Engineering; Chemistry; Energy" +20790;21101059786;"Economia";journal;"15297470, 15336239";"LSE Press";Yes;Yes;0,219;Q3;6;16;35;743;30;35;0,86;46,44;23,91;2;United States;Northern America;"LSE Press";"2019-2021, 2023-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Political Science and International Relations (Q3); Business and International Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +20791;19900192542;"Engineering Review";journal;"13309587";"University of Rijeka";No;No;0,219;Q3;16;30;97;1101;98;95;1,13;36,70;22,34;0;Croatia;Eastern Europe;"University of Rijeka";"2011-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +20792;21100854162;"European Journal of Case Reports in Internal Medicine";journal;"22842594";"SMC Media Srl";Yes;No;0,219;Q3;21;284;583;2644;349;576;0,58;9,31;39,79;0;Italy;Western Europe;"SMC Media Srl";"2015-2026";"Internal Medicine (Q3)";"Medicine" +20793;3300147409;"IEEJ Transactions on Industry Applications";journal;"09136339, 13488163";"The Institute of Electrical Engineers of Japan";No;No;0,219;Q3;35;112;379;1317;100;361;0,27;11,76;7,19;0;Japan;Asiatic Region;"The Institute of Electrical Engineers of Japan";"1987-2026";"Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3)";"Engineering" +20794;19400157163;"IFIP Advances in Information and Communication Technology";book series;"18684238, 1868422X";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,219;Q3;74;574;2921;14154;2380;2729;0,81;24,66;25,84;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1996, 1999-2026";"Computer Networks and Communications (Q3); Information Systems and Management (Q3); Information Systems (Q4)";"Computer Science; Decision Sciences" +20795;21101021639;"Indian Journal of Small Ruminants";journal;"09739718, 09719857";"Indian Society for Sheep and Goat Production and Utilization";No;No;0,219;Q3;6;49;204;832;61;198;0,37;16,98;39,05;0;India;Asiatic Region;"Indian Society for Sheep and Goat Production and Utilization";"2019-2025";"Animal Science and Zoology (Q3); Small Animals (Q3)";"Agricultural and Biological Sciences; Veterinary" +20796;19470;"Information Resources Management Journal";journal;"15337979, 10401628";"IGI Publishing";No;No;0,219;Q3;49;39;46;1511;66;46;0,93;38,74;52,31;0;United States;Northern America;"IGI Publishing";"1988-2026";"Library and Information Sciences (Q3); Business and International Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +20797;21100268400;"International Journal for Technology in Mathematics Education";journal;"17442710, 20452519";"Research Information Ltd";No;No;0,219;Q3;13;8;86;168;49;78;0,67;21,00;46,15;0;United Kingdom;Western Europe;"Research Information Ltd";"2012-2025";"Education (Q3); Computational Theory and Mathematics (Q4); Computer Science Applications (Q4)";"Computer Science; Social Sciences" +20798;21100447815;"International Journal of Automotive Engineering";journal;"21850992, 21850984";"Society of Automotive Engineers of Japan";Yes;No;0,219;Q3;14;13;55;293;35;55;0,61;22,54;5,26;0;Japan;Asiatic Region;"Society of Automotive Engineers of Japan";"2012, 2015-2026";"Automotive Engineering (Q3); Human Factors and Ergonomics (Q3); Safety, Risk, Reliability and Quality (Q3); Fluid Flow and Transfer Processes (Q4)";"Chemical Engineering; Engineering; Social Sciences" +20799;21101146446;"Japanese Political Economy";journal;"23291958, 2329194X";"Routledge";No;No;0,219;Q3;11;25;52;987;43;44;0,93;39,48;20,00;0;United States;Northern America;"Routledge";"1997-2000, 2002-2012, 2014-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +20800;21100215904;"Journal of Geometric Mechanics";journal;"19414889, 19414897";"American Institute of Mathematical Sciences";No;No;0,219;Q3;20;0;41;0;35;38;1,31;0,00;0,00;0;United States;Northern America;"American Institute of Mathematical Sciences";"2011-2023";"Control and Optimization (Q3); Applied Mathematics (Q4); Geometry and Topology (Q4); Mechanics of Materials (Q4)";"Engineering; Mathematics" +20801;21101053581;"Journal of Marine Sciences";journal;"26334666, 26334674";"John Wiley and Sons Ltd";Yes;No;0,219;Q3;18;0;10;0;18;10;1,89;0,00;0,00;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2020, 2022-2024";"Animal Science and Zoology (Q3); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Management, Monitoring, Policy and Law (Q4); Oceanography (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +20802;34981;"Journal of Social Welfare and Family Law";journal;"09649069, 14699621";"Routledge";No;No;0,219;Q3;35;32;138;1517;94;119;0,57;47,41;61,54;3;United Kingdom;Western Europe;"Routledge";"1979, 1987-1988, 1991-2026";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20803;5800169161;"Military Balance";journal;"14799022, 04597222";"Routledge";No;No;0,219;Q3;5;10;24;0;3;9;0,19;0,00;0,00;5;United Kingdom;Western Europe;"Routledge";"1961-1969, 2008, 2010-2026";"Political Science and International Relations (Q3)";"Social Sciences" +20804;21100894549;"New Labor Forum";journal;"15572978, 10957960";"SAGE Publications Inc.";No;No;0,219;Q3;15;38;122;607;83;88;0,60;15,97;41,18;0;United States;Northern America;"SAGE Publications Inc.";"2015-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Industrial Relations (Q3); Social Sciences (miscellaneous) (Q3); Urban Studies (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +20805;21101241973;"Notes on Intuitionistic Fuzzy Sets";journal;"23678283, 13104926";""Prof. Marin Drinov" Publishing House of Bulgarian Academy of Sciences";Yes;No;0,219;Q3;7;46;105;1039;57;105;0,72;22,59;39,06;0;Bulgaria;Eastern Europe;""Prof. Marin Drinov" Publishing House of Bulgarian Academy of Sciences";"2020-2026";"Decision Sciences (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Computational Theory and Mathematics (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Decision Sciences; Engineering; Mathematics" +20806;21101047445;"Notulae Scientia Biologicae";journal;"20673264";"Society of Land Measurements and Cadastre from Transylvania (SMTCT)";Yes;Yes;0,219;Q3;13;88;238;5579;266;238;1,23;63,40;46,45;0;Romania;Eastern Europe;"Society of Land Measurements and Cadastre from Transylvania (SMTCT)";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q3); Forestry (Q3); Horticulture (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +20807;27025;"Orbis";journal;"00304387";"Elsevier B.V.";No;No;0,219;Q3;33;0;134;0;85;121;0,66;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1986, 1989, 1993-2024";"Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3); Sociology and Political Science (Q3)";"Engineering; Social Sciences" +20808;21100301604;"Pediatric Dental Journal";journal;"18803997, 09172394";"Elsevier Ltd";Yes;No;0,219;Q3;18;35;90;1113;72;90;0,89;31,80;44,63;0;United Kingdom;Western Europe;"Elsevier Ltd";"1997, 2004-2026";"Dentistry (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Dentistry; Medicine" +20809;21101150407;"Pediatric Hematology Oncology Journal";journal;"24681245";"Elsevier B.V.";Yes;Yes;0,219;Q3;10;61;162;1271;96;144;0,70;20,84;53,38;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Pediatrics, Perinatology and Child Health (Q3); Hematology (Q4); Oncology (Q4)";"Medicine" +20810;21100820651;"Poultry Science Journal";journal;"23456604, 23456566";"Gorgan University of Agricultural Sciences and Natural Resources";Yes;Yes;0,219;Q3;12;24;72;1284;69;72;1,06;53,50;22,92;0;Iran;Middle East;"Gorgan University of Agricultural Sciences and Natural Resources";"2017-2025";"Animal Science and Zoology (Q3); Food Animals (Q3)";"Agricultural and Biological Sciences; Veterinary" +20811;11000153729;"Professional Case Management";journal;"19328095, 19328087";"Lippincott Williams and Wilkins Ltd.";No;No;0,219;Q3;27;70;205;617;94;199;0,31;8,81;72,34;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2007-2026";"Care Planning (Q3); Assessment and Diagnosis (Q4); Health Policy (Q4); Leadership and Management (Q4)";"Medicine; Nursing" +20812;14109;"Recht und Psychiatrie";journal;"07242247";"Psychiatrie-Verlag GmbH";No;No;0,219;Q3;14;14;81;260;20;66;0,40;18,57;61,54;0;Germany;Western Europe;"Psychiatrie-Verlag GmbH";"1999-2026";"Law (Q3); Health Policy (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Social Sciences" +20813;21100778849;"Southeast Asian Studies";journal;"21867275, 24238686";"Center for Southeast Asian Studies";Yes;No;0,219;Q3;15;14;53;596;40;50;0,60;42,57;22,22;0;Japan;Asiatic Region;"Center for Southeast Asian Studies";"2012-2025";"Development (Q3); Geography, Planning and Development (Q3); Multidisciplinary (Q3); Political Science and International Relations (Q3)";"Multidisciplinary; Social Sciences" +20814;21101046175;"USGS Scientific Investigations Report";journal;"23280328, 2328031X";"US Geological Survey";No;No;0,219;Q3;7;129;297;8189;137;296;0,48;63,48;39,79;110;United States;Northern America;"US Geological Survey";"2011, 2019, 2021-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Geology (Q4)";"Earth and Planetary Sciences" +20815;21101134316;"Veterinaria Mexico OA";journal;"24486760";"Facultad de Medicina Veterinaria y Zootecnia, Universidad Nacional Autonoma de Mexico";No;Yes;0,219;Q3;16;19;79;936;55;76;0,61;49,26;35,00;0;Mexico;Latin America;"Facultad de Medicina Veterinaria y Zootecnia, Universidad Nacional Autonoma de Mexico";"2014-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +20816;21100201535;"World Transactions on Engineering and Technology Education";journal;"14462257";"World Institute for Engineering and Technology Education";No;No;0,219;Q3;22;10;148;160;98;136;0,60;16,00;66,67;0;Australia;Pacific Region;"World Institute for Engineering and Technology Education";"2009-2025";"Education (Q3); Engineering (miscellaneous) (Q3)";"Engineering; Social Sciences" +20817;15242;"Xibei Gongye Daxue Xuebao/Journal of Northwestern Polytechnical University";journal;"10002758";"Northwestern Polytechnical University";Yes;No;0,219;Q3;24;110;438;2566;380;438;0,71;23,33;29,56;0;China;Asiatic Region;"Northwestern Polytechnical University";"1986-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +20818;21100239825;"Zoology and Ecology";journal;"21658005, 21658013";"Nature Research Centre";No;No;0,219;Q3;25;10;59;417;33;59;0,53;41,70;22,22;0;Lithuania;Eastern Europe;"Nature Research Centre";"2012-2026";"Animal Science and Zoology (Q3); Ecology (Q3)";"Agricultural and Biological Sciences; Environmental Science" +20819;28023;"Gaceta Medica de Mexico";journal;"26961288, 00163813";"Academia Nacional de Medicina";Yes;Yes;0,219;Q4;29;149;550;2806;284;434;0,54;18,83;43,64;0;Mexico;Latin America;"Academia Nacional de Medicina";"1945-1946, 1948, 1950-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +20820;29718;"Guangzi Xuebao/Acta Photonica Sinica";journal;"10044213";"Chinese Optical Society";No;No;0,219;Q4;27;223;933;6640;766;928;0,81;29,78;34,20;0;China;Asiatic Region;"Chinese Optical Society";"1997-2026";"Atomic and Molecular Physics, and Optics (Q4)";"Physics and Astronomy" +20821;26650;"International Energy Journal";journal;"1513718X";"Regional Energy Resources Information Center (RERIC), Asian Institute of Technology";No;No;0,219;Q4;22;64;77;1554;63;77;0,73;24,28;22,00;0;Thailand;Asiatic Region;"Regional Energy Resources Information Center (RERIC), Asian Institute of Technology";"2000-2012, 2014-2025";"Energy (miscellaneous) (Q4)";"Energy" +20822;21100901820;"International Journal of Masonry Research and Innovation";journal;"20569459, 20569467";"Inderscience";No;No;0,219;Q4;19;36;100;1076;80;99;0,54;29,89;31,82;0;United Kingdom;Western Europe;"Inderscience";"2016-2026";"Building and Construction (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +20823;21101300352;"Journal of Advances in Environmental Health Research";journal;"23453990, 26763478";"Kurdistan University of Medical Sciences";Yes;No;0,219;Q4;7;32;96;1602;100;96;0,92;50,06;35,29;0;Iran;Middle East;"Kurdistan University of Medical Sciences";"2021-2025";"Environmental Science (miscellaneous) (Q4)";"Environmental Science" +20824;21101141649;"Journal of Derivatives and Quantitative Studies";journal;"1229988X, 27136647";"Emerald Publishing";Yes;Yes;0,219;Q4;7;18;48;729;55;48;1,38;40,50;31,25;0;United Kingdom;Western Europe;"Emerald Publishing";"2020-2026";"Finance (Q4)";"Economics, Econometrics and Finance" +20825;11700154387;"Journal of Medical Devices";journal;"1932619X, 19326181";"American Society of Mechanical Engineers (ASME)";No;No;0,219;Q4;42;67;139;2605;116;139;0,96;38,88;29,96;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"2007-2026";"Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)";"Engineering; Medicine" +20826;28157;"Journal of Peking University (Health Sciences)";journal;"1671167X";"";No;No;0,219;Q4;23;177;498;3191;338;498;0,67;18,03;44,95;0;China;Asiatic Region;"";"2003-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +20827;21100305004;"Journal of Siberian Federal University - Mathematics and Physics";journal;"19971397";"Siberian Federal University";Yes;No;0,219;Q4;15;84;247;1467;105;247;0,43;17,46;33,84;0;Russian Federation;Eastern Europe;"Siberian Federal University";"2014-2026";"Mathematics (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Mathematics; Physics and Astronomy" +20828;12170;"Modeling, Identification and Control";journal;"03327353, 18901328";"Research Council of Norway";Yes;Yes;0,219;Q4;33;10;36;243;30;36;0,75;24,30;25,93;0;Norway;Western Europe;"Research Council of Norway";"1980-1989, 1996-2025";"Computer Science Applications (Q4); Control and Systems Engineering (Q4); Modeling and Simulation (Q4); Software (Q4)";"Computer Science; Engineering; Mathematics" +20829;21100854898;"NeuroRegulation";journal;"23730587";"International Society for Neurofeedback and Research";Yes;Yes;0,219;Q4;15;20;63;974;47;63;0,65;48,70;36,21;0;United States;Northern America;"International Society for Neurofeedback and Research";"2014-2025";"Applied Psychology (Q4); Behavioral Neuroscience (Q4); Biological Psychiatry (Q4); Experimental and Cognitive Psychology (Q4); Neurology (clinical) (Q4); Neuropsychology and Physiological Psychology (Q4); Physiology (medical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience; Psychology" +20830;16372;"North Carolina Medical Journal";journal;"00292559";"North Carolina Medical Society";No;No;0,219;Q4;36;69;323;1068;105;177;0,34;15,48;68,38;0;United States;Northern America;"North Carolina Medical Society";"1945-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +20831;21100223169;"St. Petersburg Mathematical Journal";journal;"10610022, 15477371";"American Mathematical Society";No;No;0,219;Q4;23;20;157;375;51;157;0,30;18,75;38,10;0;United States;Northern America;"American Mathematical Society";"2003-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4)";"Mathematics" +20832;21100780547;"Tuberculosis and Lung Diseases";journal;"25421506, 20751230";"New Terra Publishing House";Yes;Yes;0,219;Q4;22;79;257;1511;114;256;0,47;19,13;63,48;0;Russian Federation;Eastern Europe;"New Terra Publishing House";"2010, 2017-2025";"Infectious Diseases (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +20833;17898;"Conference Record - IAS Annual Meeting (IEEE Industry Applications Society)";conference and proceedings;"01972618";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,219;-;90;407;369;7397;220;367;0,35;18,17;23,91;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1977-1990, 1992-2013, 2021-2022, 2024-2025";"Control and Systems Engineering; Electrical and Electronic Engineering; Industrial and Manufacturing Engineering";"Engineering" +20834;20600195637;"Forum on Specification and Design Languages";conference and proceedings;"16369874";"IEEE Computer Society";No;No;0,219;-;15;23;44;578;41;38;1,10;25,13;23,19;0;United States;Northern America;"IEEE Computer Society";"2011-2013, 2015-2018, 2020-2025";"Computer Vision and Pattern Recognition; Hardware and Architecture; Signal Processing";"Computer Science" +20835;20600195624;"IEEE International Symposium on Precision Clock Synchronization for Measurement, Control, and Communication, ISPCS";conference and proceedings;"19490313, 19490305";"IEEE Computer Society";No;No;0,219;-;17;16;46;224;30;38;0,41;14,00;14,29;0;United States;Northern America;"IEEE Computer Society";"2011, 2013, 2015-2019, 2021-2024";"Computer Networks and Communications; Control and Systems Engineering";"Computer Science; Engineering" +20836;21100846961;"IS and T International Symposium on Electronic Imaging Science and Technology";conference and proceedings;"24701173";"Society for Imaging Science and Technology";No;No;0,219;-;32;144;571;2498;341;519;0,55;17,35;22,41;0;United States;Northern America;"Society for Imaging Science and Technology";"2016-2025";"Atomic and Molecular Physics, and Optics; Computer Graphics and Computer-Aided Design; Computer Science Applications; Electrical and Electronic Engineering; Human-Computer Interaction; Software";"Computer Science; Engineering; Physics and Astronomy" +20837;18620;"Software Engineering Education Conference, Proceedings";conference and proceedings;"10930175";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,219;-;27;43;95;1640;135;89;1,42;38,14;34,97;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1996-1997, 1999-2008, 2010, 2013, 2015, 2023-2025";"Education; Software";"Computer Science; Social Sciences" +20838;21100456161;"a/b: Auto/Biography Studies";journal;"08989575, 21517290";"Routledge";No;No;0,218;Q1;13;44;121;1344;54;84;0,59;30,55;61,76;0;United Kingdom;Western Europe;"Routledge";"1985-1986, 1990-1992, 1997, 2001, 2006, 2011, 2015-2026";"History (Q1); Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +20839;15014;"Agricultural History";journal;"00021482";"Agricultural History Society";No;No;0,218;Q1;23;14;83;2193;30;80;0,35;156,64;31,58;0;United States;Northern America;"Agricultural History Society";"1975, 1978-2025";"History (Q1); Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Arts and Humanities" +20840;21101160596;"Journal of Asian American Studies";journal;"10968598";"Johns Hopkins University Press";No;No;0,218;Q1;8;40;76;1026;41;55;0,58;25,65;53,33;0;United States;Northern America;"Johns Hopkins University Press";"2019-2025";"History (Q1); Arts and Humanities (miscellaneous) (Q2); Gender Studies (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +20841;21100805798;"Journal of Chinese Religions";journal;"20508999, 0737769X";"Johns Hopkins University Press";No;No;0,218;Q1;7;7;28;381;14;26;0,40;54,43;50,00;0;United Kingdom;Western Europe;"Johns Hopkins University Press";"1983, 2015-2025";"Religious Studies (Q1)";"Arts and Humanities" +20842;17700154930;"Missionalia";journal;"02569507";"Southern African Missiological Society";Yes;No;0,218;Q1;15;0;48;0;18;47;0,35;0,00;0,00;0;South Africa;Africa;"Southern African Missiological Society";"2002-2005, 2007-2020, 2022-2024";"Religious Studies (Q1)";"Arts and Humanities" +20843;12100155657;"Mundo Agrario";journal;"15155994";"Universidad Nacional de La Plata";Yes;Yes;0,218;Q1;12;48;79;1961;29;79;0,35;40,85;62,50;0;Argentina;Latin America;"Universidad Nacional de La Plata";"2008-2025";"History (Q1); Agricultural and Biological Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3); Industrial Relations (Q3); Urban Studies (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Business, Management and Accounting; Social Sciences" +20844;21101068963;"Slavia Antiqua";journal;"00809993, 25450212";"Poznan Society for the Advancement of the Arts and Sciences";Yes;Yes;0,218;Q1;3;16;41;1154;14;37;0,20;72,13;48,00;0;Poland;Eastern Europe;"Poznan Society for the Advancement of the Arts and Sciences";"2019-2025";"History (Q1); Archeology (arts and humanities) (Q2); Museology (Q2)";"Arts and Humanities" +20845;5800207702;"Interaction Studies";journal;"15720381, 15720373";"John Benjamins Publishing Company";No;No;0,218;Q2;47;6;53;294;70;50;1,17;49,00;26,32;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2004-2025";"Linguistics and Language (Q2); Animal Science and Zoology (Q3); Communication (Q3); Human-Computer Interaction (Q4)";"Agricultural and Biological Sciences; Computer Science; Social Sciences" +20846;21101234844;"Revista Pesquisa Qualitativa";journal;"25258222";"Sociedade de Estudos e Pesquisa Qualitativos";No;Yes;0,218;Q2;7;90;115;3136;58;114;0,47;34,84;62,84;0;Brazil;Latin America;"Sociedade de Estudos e Pesquisa Qualitativos";"2020-2026";"History and Philosophy of Science (Q2); Education (Q3); Health (social science) (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +20847;19700169827;"Sociolinguistic Studies";journal;"17508649, 17508657";"University of Toronto Press";No;No;0,218;Q2;22;19;57;828;56;51;0,87;43,58;91,30;0;Canada;Northern America;"University of Toronto Press";"2008-2025";"Linguistics and Language (Q2); Sociology and Political Science (Q3)";"Social Sciences" +20848;24696;"World Futures";journal;"02604027, 15561844";"Routledge";No;No;0,218;Q2;23;56;106;3077;97;102;1,10;54,95;41,18;0;United Kingdom;Western Europe;"Routledge";"1962-1977, 1979-1995, 2006-2007, 2009-2026";"Philosophy (Q2)";"Arts and Humanities" +20849;21101248337;"Advanced Education";journal;"24093351, 24108286";"National Technical University of Ukraine Igor Sikorsky Kyiv Polytechnic Institute";Yes;No;0,218;Q3;9;16;68;764;84;68;1,25;47,75;62,79;0;Ukraine;Eastern Europe;"National Technical University of Ukraine Igor Sikorsky Kyiv Polytechnic Institute";"2020-2025";"Education (Q3)";"Social Sciences" +20850;12300154701;"Baltic Forestry";journal;"20299230, 13921355";"Institute of Forestry LAMMC";Yes;No;0,218;Q3;25;19;65;1041;56;64;1,08;54,79;34,85;0;Lithuania;Eastern Europe;"Institute of Forestry LAMMC";"2008-2025";"Forestry (Q3)";"Agricultural and Biological Sciences" +20851;19400157211;"Civil Szemle";journal;"30042119, 17863341";"Civil Szemle Foundation";No;No;0,218;Q3;8;44;198;2047;130;175;0,70;46,52;49,23;1;Hungary;Eastern Europe;"Civil Szemle Foundation";"2008-2011, 2013, 2020-2026";"Political Science and International Relations (Q3); Public Administration (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20852;20699;"Current Science";journal;"00113891";"Indian Academy of Sciences";Yes;No;0,218;Q3;150;295;1203;6679;967;1063;0,66;22,64;28,59;0;India;Asiatic Region;"Indian Academy of Sciences";"1945-1951, 1973-1991, 1993-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +20853;19061;"Cytology and Genetics";journal;"00954527, 19349440";"Allerton Press Inc.";No;No;0,218;Q3;21;59;176;3234;153;176;0,78;54,81;47,55;0;United States;Northern America;"Allerton Press Inc.";"1978, 1982, 1984, 1988, 2007-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biotechnology (Q4); Cell Biology (Q4); Genetics (Q4); Genetics (clinical) (Q4); Histology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +20854;60193;"Epidemiologie, Mikrobiologie, Imunologie";journal;"12107913, 1805451X";"Czech Medical Association J.E. Purkyne";No;No;0,218;Q3;17;25;76;691;42;70;0,50;27,64;60,71;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1994-2025";"Epidemiology (Q3); Immunology and Allergy (Q4); Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Microbiology (medical) (Q4)";"Medicine" +20855;21101117185;"Gateways";journal;"18363393";"UTS ePRESS";Yes;Yes;0,218;Q3;8;14;42;396;32;40;0,69;28,29;80,43;1;Australia;Pacific Region;"UTS ePRESS";"2019-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +20856;5000154002;"Gayana";journal;"0717652X, 07176538";"Universidad de Concepcion";Yes;Yes;0,218;Q3;22;10;62;398;38;60;0,65;39,80;39,29;0;Chile;Latin America;"Universidad de Concepcion";"2004, 2006-2025";"Animal Science and Zoology (Q3); Aquatic Science (Q4)";"Agricultural and Biological Sciences" +20857;19400158612;"International Journal of Public Sector Performance Management";journal;"17411041, 1741105X";"Inderscience Enterprises Ltd";No;No;0,218;Q3;17;63;198;3453;188;196;1,18;54,81;42,06;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2010, 2012-2013, 2015-2026";"Public Administration (Q3); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +20858;21100862624;"Journal of Agro-Environment Science";journal;"16722043";"Editorial Board of Journal of Agro-Environment Science";No;No;0,218;Q3;24;174;871;8150;791;870;0,93;46,84;41,57;0;China;Asiatic Region;"Editorial Board of Journal of Agro-Environment Science";"2018-2025";"Agronomy and Crop Science (Q3); Ecology (Q3); Nature and Landscape Conservation (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Environmental Chemistry (Q4); Management, Monitoring, Policy and Law (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20859;21100870922;"Journal of Behavioral Science";journal;"19064675";"Srinakharinwirot University-Behavioral Science Research Institute";No;No;0,218;Q3;13;26;77;1010;87;77;0,98;38,85;66,67;0;Thailand;Asiatic Region;"Srinakharinwirot University-Behavioral Science Research Institute";"2018-2025";"Social Sciences (miscellaneous) (Q3); Applied Psychology (Q4); Psychology (miscellaneous) (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +20860;21100465420;"Journal of Theoretical and Applied Mechanics (Bulgaria)";journal;"08616663, 13148710";"Bulgarian Academy of Sciences, National Committee of Theoretical and Applied Mechanics";Yes;No;0,218;Q3;14;34;83;817;44;82;0,49;24,03;33,33;0;Bulgaria;Eastern Europe;"Bulgarian Academy of Sciences, National Committee of Theoretical and Applied Mechanics";"2016-2025";"Mechanical Engineering (Q3); Computational Mechanics (Q4); Modeling and Simulation (Q4)";"Engineering; Mathematics" +20861;19700188108;"Kardiochirurgia i Torakochirurgia Polska";journal;"18974252, 17315530";"Termedia Publishing House Ltd.";Yes;Yes;0,218;Q3;20;60;170;1319;102;104;0,57;21,98;26,20;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2008-2025";"Surgery (Q3); Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +20862;21101140505;"Legal Pluralism and Critical Social Analysis";journal;"27706877, 27706869";"Routledge";No;No;0,218;Q3;33;13;71;749;62;61;1,00;57,62;72,73;1;United Kingdom;Western Europe;"Routledge";"2022-2025";"Law (Q3)";"Social Sciences" +20863;21101192680;"Material and Mechanical Engineering Technology";journal;"2706977X";"Abylkas Saginov Karaganda Technical University";No;No;0,218;Q3;6;55;91;1430;75;91;1,03;26,00;42,11;0;Kazakhstan;Asiatic Region;"Abylkas Saginov Karaganda Technical University";"2019-2025";"Mechanical Engineering (Q3); Metals and Alloys (Q3); Materials Science (miscellaneous) (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +20864;26697;"Microelectronics International";journal;"13565362";"Emerald Group Publishing Ltd.";No;No;0,218;Q3;27;15;73;338;91;71;1,23;22,53;37,97;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1982-2026";"Electrical and Electronic Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science; Physics and Astronomy" +20865;21100324717;"Recent Advances in Electrical and Electronic Engineering";journal;"23520965, 23520973";"Bentham Science Publishers";No;No;0,218;Q3;16;176;228;8614;293;222;1,49;48,94;29,27;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2007, 2014-2026";"Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science" +20866;19700173182;"South African Journal of Industrial Engineering";journal;"1012277X, 22247890";"South African Institute of Industrial Engineering";Yes;No;0,218;Q3;29;76;187;2614;207;175;0,87;34,39;30,59;0;South Africa;Africa;"South African Institute of Industrial Engineering";"2008-2025";"Industrial and Manufacturing Engineering (Q3)";"Engineering" +20867;19285;"Zeitschrift fur Soziologie";journal;"23660325, 03401804";"Walter de Gruyter GmbH";No;No;0,218;Q3;40;27;83;2010;76;77;0,84;74,44;41,46;1;Germany;Western Europe;"Walter de Gruyter GmbH";"1972, 1981, 1983-1984, 1986-1987, 1989-1991, 1994-2026";"Sociology and Political Science (Q3)";"Social Sciences" +20868;54630;"Biomeditsinskaya Khimiya";journal;"23106905, 23106972";"Russian Academy of Medical Sciences";No;No;0,218;Q4;20;40;132;2014;97;130;0,98;50,35;57,78;0;Russian Federation;Eastern Europe;"Russian Academy of Medical Sciences";"2003-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +20869;21100239829;"Current Issues in Pharmacy and Medical Sciences";journal;"2084980X, 23006676";"Medical University of Lublin";Yes;No;0,218;Q4;16;43;120;1370;123;120;0,83;31,86;45,75;0;Poland;Eastern Europe;"Medical University of Lublin";"2012-2025";"Biochemistry (Q4); Medicine (miscellaneous) (Q4); Molecular Biology (Q4); Pharmacology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +20870;21100837973;"Discrete Mathematics, Algorithms and Applications";journal;"17938317, 17938309";"World Scientific";No;No;0,218;Q4;26;283;393;6891;255;393;0,69;24,35;32,70;0;Singapore;Asiatic Region;"World Scientific";"2009-2026";"Discrete Mathematics and Combinatorics (Q4)";"Mathematics" +20871;19700171828;"East Asian Archives of Psychiatry";journal;"22247041, 20789947";"Hong Kong Academy of Medicine Press";No;No;0,218;Q4;27;43;59;1107;50;57;0,60;25,74;43,85;0;Hong Kong;Asiatic Region;"Hong Kong Academy of Medicine Press";"2010-2025";"Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)";"Medicine" +20872;19798;"Entomological News";journal;"21623236, 0013872X";"American Entomological Society";No;No;0,218;Q4;28;45;62;1372;31;60;0,51;30,49;26,67;0;United States;Northern America;"American Entomological Society";"1965, 1967-1977, 1979, 1993-2026";"Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +20873;27926;"Geofisica Internacional";journal;"00167169, 2954436X";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,218;Q4;35;28;72;1377;51;72;0,74;49,18;25,00;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1972, 1975, 1979, 1984-2026";"Energy (miscellaneous) (Q4); Geophysics (Q4)";"Earth and Planetary Sciences; Energy" +20874;21101061924;"Hattoria";journal;"24238961, 21858241";"Hattori Botanical Laboratory";No;No;0,218;Q4;6;9;17;232;12;17;0,46;25,78;36,84;0;Japan;Asiatic Region;"Hattori Botanical Laboratory";"2019-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +20875;15467;"Instruments and Experimental Techniques";journal;"16083180, 00204412";"Pleiades Publishing";No;No;0,218;Q4;39;116;493;2006;212;493;0,41;17,29;19,81;0;United States;Northern America;"Pleiades Publishing";"1968-1971, 1973-1990, 1996-2025";"Instrumentation (Q4)";"Physics and Astronomy" +20876;21100900062;"International Journal of Sustainable Construction Engineering and Technology";journal;"26007959, 21803242";"Penerbit UTHM";Yes;No;0,218;Q4;17;58;355;2344;378;355;1,04;40,41;35,63;0;Malaysia;Asiatic Region;"Penerbit UTHM";"2018-2025";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Environmental Engineering (Q4)";"Engineering; Environmental Science" +20877;15854;"Journal of Circadian Rhythms";journal;"17403391";"Ubiquity Press";Yes;No;0,218;Q4;36;7;9;498;9;9;1,00;71,14;43,59;0;United Kingdom;Western Europe;"Ubiquity Press";"2003-2025";"Endocrine and Autonomic Systems (Q4); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +20878;21100784273;"Journal of Intellectual Disability - Diagnosis and Treatment";journal;"22922598";"Lifescience Global";No;No;0,218;Q4;12;23;86;961;99;86;0,92;41,78;40,70;0;Canada;Northern America;"Lifescience Global";"2013-2025";"Applied Psychology (Q4); Developmental and Educational Psychology (Q4); Health (social science) (Q4); Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience; Psychology; Social Sciences" +20879;19700188163;"JP Journal of Heat and Mass Transfer";journal;"09735763";"Pushpa Publishing House";No;No;0,218;Q4;15;50;177;1153;134;177;0,88;23,06;26,42;0;India;Asiatic Region;"Pushpa Publishing House";"2010-2025";"Atomic and Molecular Physics, and Optics (Q4)";"Physics and Astronomy" +20880;21101389412;"Marine Science and Technology Bulletin";journal;"21479666";"Adem Yavuz SONMEZ";Yes;No;0,218;Q4;4;21;29;791;29;29;1,00;37,67;41,30;0;Turkey;Middle East;"Adem Yavuz SONMEZ";"2024-2025";"Applied Microbiology and Biotechnology (Q4); Aquatic Science (Q4); Environmental Engineering (Q4); Geochemistry and Petrology (Q4); Ocean Engineering (Q4); Oceanography (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering; Environmental Science; Immunology and Microbiology" +20881;21101073720;"Norwegian Journal of Geology";journal;"23875852";"Geological Society of Norway";Yes;Yes;0,218;Q4;54;1;39;58;24;39;0,65;58,00;0,00;0;Norway;Western Europe;"Geological Society of Norway";"2015-2025";"Geochemistry and Petrology (Q4); Geology (Q4); Geophysics (Q4); Oceanography (Q4); Paleontology (Q4)";"Earth and Planetary Sciences" +20882;21101083493;"Philippine Journal of Fisheries";journal;"0048377X, 26722836";"National Fisheries Research and Development Institute";Yes;Yes;0,218;Q4;10;16;75;699;67;74;0,79;43,69;48,15;4;Philippines;Asiatic Region;"National Fisheries Research and Development Institute";"2019-2025";"Aquatic Science (Q4)";"Agricultural and Biological Sciences" +20883;12000154535;"Proceedings of the Jangjeon Mathematical Society";journal;"15987264, 25087916";"Jangjeon Research Institute for Mathematical Sciences and Physics";No;No;0,218;Q4;25;59;154;1265;112;154;0,66;21,44;29,07;0;South Korea;Asiatic Region;"Jangjeon Research Institute for Mathematical Sciences and Physics";"2008-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +20884;21100852103;"Psihologia Resurselor Umane";journal;"23928077, 15837327";"Association of Industrial and Organizational Psychology (APIO)";Yes;No;0,218;Q4;7;9;31;499;21;25;0,52;55,44;64,71;0;Romania;Eastern Europe;"Association of Industrial and Organizational Psychology (APIO)";"2017-2025";"Clinical Psychology (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Psychology" +20885;21100840355;"Radiatsionnaya Gygiena";journal;"1998426X, 24099082";"Saint-Petersburg Research Institute of Radiation Hygiene after Professor P.V. Ramzaev";Yes;Yes;0,218;Q4;12;57;145;1205;110;144;0,73;21,14;53,74;0;Russian Federation;Eastern Europe;"Saint-Petersburg Research Institute of Radiation Hygiene after Professor P.V. Ramzaev";"2017-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +20886;21101023916;"Scientia Sinica Mathematica";journal;"20959427, 16747216";"Science Press";No;No;0,218;Q4;12;119;297;5235;102;296;0,33;43,99;29,25;0;China;Asiatic Region;"Science Press";"2019-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +20887;12311;"Technical Physics Letters";journal;"10906533, 10637850";"Pleiades Publishing";No;No;0,218;Q4;41;59;313;1235;117;313;0,28;20,93;26,98;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +20888;21101090643;"Proceedings of the International Florida Artificial Intelligence Research Society Conference, FLAIRS";conference and proceedings;"23340754, 23340762";"Florida Online Journals, University of Florida";Yes;Yes;0,218;-;11;112;389;2240;302;383;0,62;20,00;23,75;0;United States;Northern America;"Florida Online Journals, University of Florida";"2021-2025";"Artificial Intelligence; Software";"Computer Science" +20889;17500155102;"Journal for the Study of the New Testament";journal;"17455294, 0142064X";"SAGE Publications Ltd";No;No;0,217;Q1;31;50;117;3252;40;115;0,26;65,04;30,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1978-2026";"Religious Studies (Q1)";"Arts and Humanities" +20890;21100211116;"Journal of Qur'anic Studies";journal;"17551730, 14653591";"Edinburgh University Press";No;No;0,217;Q1;25;5;52;249;21;42;0,36;49,80;20,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"1999-2025";"Religious Studies (Q1)";"Arts and Humanities" +20891;6500153192;"Journal of Roman Studies";journal;"1753528X, 00754358";"Cambridge University Press";No;No;0,217;Q1;58;10;26;1360;23;26;0,41;136,00;42,11;0;United Kingdom;Western Europe;"Cambridge University Press";"1911-1922, 1924-2026";"Classics (Q1); History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20892;21100777273;"Letonica";journal;"14073110";"Latvian University";No;No;0,217;Q1;4;31;135;1695;32;127;0,17;54,68;60,00;0;Latvia;Eastern Europe;"Latvian University";"2016-2025";"History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Music (Q2)";"Arts and Humanities; Social Sciences" +20893;21101023864;"Paralleles";journal;"21024316, 22966684";"University of Geneva";Yes;Yes;0,217;Q1;5;19;57;837;34;55;0,78;44,05;74,19;0;Switzerland;Western Europe;"University of Geneva";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +20894;21100203918;"Social Evolution and History";journal;"16814363";"Uchitel Publishing House";No;No;0,217;Q1;15;26;54;902;40;48;1,15;34,69;48,08;0;Russian Federation;Eastern Europe;"Uchitel Publishing House";"2011-2025";"History (Q1); Anthropology (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +20895;21100942931;"Apeiron";journal;"21567093, 00036390";"Walter de Gruyter GmbH";No;No;0,217;Q2;12;20;81;925;46;81;0,46;46,25;40,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2019-2026";"History and Philosophy of Science (Q2); Philosophy (Q2)";"Arts and Humanities" +20896;21101250394;"CINEJ Cinema Journal";journal;"21588724";"University Library System, University of Pittsburgh";Yes;Yes;0,217;Q2;5;45;72;1522;24;72;0,33;33,82;45,90;0;United States;Northern America;"University Library System, University of Pittsburgh";"2020-2025";"Cultural Studies (Q2)";"Social Sciences" +20897;21100463178;"Conservar Patrimonio";journal;"1646043X, 21829942";"Associacao Profissional de Conservadores, Restauradores de Portugal";Yes;Yes;0,217;Q2;10;29;64;1118;40;62;0,72;38,55;55,56;0;Portugal;Western Europe;"Associacao Profissional de Conservadores, Restauradores de Portugal";"2013-2026";"Conservation (Q2); Museology (Q2)";"Arts and Humanities" +20898;21101041511;"Journal of Holistic Nursing and Midwifery";journal;"25883712, 25883720";"Guilan University of Medical Sciences";Yes;No;0,217;Q2;12;37;109;1094;72;109;0,59;29,57;71,33;0;Iran;Middle East;"Guilan University of Medical Sciences";"2017-2025";"Drug Guides (Q2); Advanced and Specialized Nursing (Q3); Maternity and Midwifery (Q3); Nursing (miscellaneous) (Q3)";"Medicine; Nursing" +20899;5800208051;"Languages in Contrast";journal;"13876759, 15699897";"John Benjamins Publishing Company";No;No;0,217;Q2;18;12;35;552;29;33;0,71;46,00;68,18;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2008-2026";"Linguistics and Language (Q2)";"Social Sciences" +20900;21100976770;"Medico-Biological and Socio-Psychological Issues of Safety in Emergency Situations";journal;"25417487, 19954441";"Nikiforov Russian Center of Emergency and Radiation Medicine, EMERCOM of Russia";Yes;No;0,217;Q2;7;37;117;674;64;117;0,65;18,22;32,91;0;Russian Federation;Eastern Europe;"Nikiforov Russian Center of Emergency and Radiation Medicine, EMERCOM of Russia";"2019-2025";"Emergency Medical Services (Q2); Emergency Medicine (Q3); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine; Psychology" +20901;9500154003;"Poznan Studies in Contemporary Linguistics";journal;"18977499, 01372459";"Walter de Gruyter GmbH";No;No;0,217;Q2;20;23;78;1398;37;77;0,52;60,78;48,72;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2007-2026";"Linguistics and Language (Q2)";"Social Sciences" +20902;19700201539;"Twentieth-Century Music";journal;"14785722, 14785730";"Cambridge University Press";No;No;0,217;Q2;19;29;59;2142;33;56;0,44;73,86;37,04;0;United Kingdom;Western Europe;"Cambridge University Press";"2004-2010, 2012-2025";"Music (Q2)";"Arts and Humanities" +20903;27082;"Acta Geographica Lodziensia";journal;"00651249, 24510319";"Lodzkie Towarzystwo Naukowe";No;No;0,217;Q3;10;4;65;202;38;64;0,59;50,50;25,00;0;Poland;Eastern Europe;"Lodzkie Towarzystwo Naukowe";"1979-1980, 1982, 1985-1990, 1993-1998, 2002-2009, 2019-2025";"Geography, Planning and Development (Q3); Geology (Q4)";"Earth and Planetary Sciences; Social Sciences" +20904;21101212235;"Canadian Tax Journal";journal;"00085111";"Canadian Tax Foundation";No;No;0,217;Q3;5;35;130;419;50;112;0,34;11,97;27,08;0;Canada;Northern America;"Canadian Tax Foundation";"2020-2025";"Accounting (Q3); Law (Q3); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +20905;21100203318;"Cardiovascular Therapy and Prevention (Russian Federation)";journal;"17288800, 26190125";"Silicea-Poligraf";Yes;Yes;0,217;Q3;29;197;661;5400;579;630;0,88;27,41;70,78;0;Russian Federation;Eastern Europe;"Silicea-Poligraf";"2011-2025";"Education (Q3); Cardiology and Cardiovascular Medicine (Q4)";"Medicine; Social Sciences" +20906;29458;"China Welding (English Edition)";journal;"10045341";"KeAi Communications Co.";No;No;0,217;Q3;13;24;88;724;85;88;1,16;30,17;28,57;0;China;Asiatic Region;"KeAi Communications Co.";"1997-2025";"Industrial and Manufacturing Engineering (Q3); Mechanics of Materials (Q4)";"Engineering" +20907;21498;"Chinese Journal of Preventive Medicine";journal;"02539624";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,217;Q3;35;274;892;8618;649;890;0,71;31,45;47,76;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1979-2016, 2019-2026";"Epidemiology (Q3); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +20908;21101225725;"Collected Papers of the Faculty of Law of the University of Rijeka";journal;"18468314, 1330349X";"University of Rijeka Faculty of Law";Yes;Yes;0,217;Q3;3;31;102;1298;21;101;0,17;41,87;41,86;0;Croatia;Eastern Europe;"University of Rijeka Faculty of Law";"2013, 2020-2025";"Law (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +20909;21402;"Crustaceana";journal;"15685403, 0011216X";"Brill Academic Publishers";No;No;0,217;Q3;45;59;255;2386;150;248;0,61;40,44;42,35;0;Netherlands;Western Europe;"Brill Academic Publishers";"1960-2026";"Animal Science and Zoology (Q3); Aquatic Science (Q4)";"Agricultural and Biological Sciences" +20910;24373;"Dermatology Online Journal";journal;"10872108";"Dermatology Online Journal";Yes;No;0,217;Q3;56;119;380;1382;182;267;0,44;11,61;54,95;0;United States;Northern America;"Dermatology Online Journal";"1996-2025";"Dermatology (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +20911;14377;"Estudios Sociologicos";journal;"01854186, 24486442";"Colegio de Mexico, A.C., Departamento de Publicaciones";Yes;Yes;0,217;Q3;10;32;176;1340;70;176;0,30;41,88;48,15;0;Mexico;Latin America;"Colegio de Mexico, A.C., Departamento de Publicaciones";"1984-1985, 1992, 1994-1996, 1998, 2014-2025";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20912;21100854139;"Fangzhi Xuebao/Journal of Textile Research";journal;"02539721";"China Textile Engineering Society";No;No;0,217;Q3;16;351;1003;8594;783;1003;0,79;24,48;42,72;0;China;Asiatic Region;"China Textile Engineering Society";"1988-1990, 2016, 2018-2025";"Polymers and Plastics (Q3); Materials Chemistry (Q4); Materials Science (miscellaneous) (Q4)";"Materials Science" +20913;21515;"Fauna Norvegica";journal;"15024873, 18915396";"Norwegian University of Science and Technology";Yes;Yes;0,217;Q3;14;5;10;239;10;10;1,00;47,80;42,11;0;Norway;Western Europe;"Norwegian University of Science and Technology";"2000-2005, 2008-2010, 2012-2021, 2023-2025";"Animal Science and Zoology (Q3)";"Agricultural and Biological Sciences" +20914;21101171685;"Forest Engineering";journal;"10068023";"";No;No;0,217;Q3;9;119;394;3471;312;394;0,89;29,17;35,90;0;Iran;Middle East;"";"2019-2025";"Forestry (Q3); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Engineering; Materials Science" +20915;28757;"Geographische Zeitschrift";journal;"23653124, 00167479";"Franz Steiner Verlag GmbH";No;No;0,217;Q3;23;14;53;1205;20;49;0,33;86,07;40,91;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"1978-1994, 1996-2025";"Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +20916;29812;"Indian Journal of Engineering and Materials Sciences";journal;"09714588, 09751017";"National Institute of Science Communication and Policy Research";Yes;No;0,217;Q3;41;51;279;1859;292;279;1,04;36,45;21,90;0;India;Asiatic Region;"National Institute of Science Communication and Policy Research";"1994-2025";"Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +20917;21100787317;"Infektsionnye Bolezni";journal;"17299225, 24149691";"Dynasty Publishing House";No;No;0,217;Q3;12;48;195;1146;105;194;0,64;23,88;61,51;0;Russian Federation;Eastern Europe;"Dynasty Publishing House";"2015-2025";"Epidemiology (Q3); Infectious Diseases (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +20918;21101312186;"International Journal of Medicine and Health Development";journal;"26672863, 26353695";"Wolters Kluwer Medknow Publications";Yes;No;0,217;Q3;5;16;174;368;58;171;0,32;23,00;40,32;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2020-2025";"Internal Medicine (Q3); Medical Laboratory Technology (Q3); Rehabilitation (Q3)";"Health Professions; Medicine" +20919;21100200659;"International Journal of Virtual and Personal Learning Environments";journal;"19478526, 19478518";"IGI Global Publishing";No;No;0,217;Q3;15;4;58;183;68;58;1,46;45,75;33,33;0;United States;Northern America;"IGI Global Publishing";"2010-2026";"Education (Q3); Computer Science Applications (Q4); E-learning (Q4)";"Computer Science; Social Sciences" +20920;21101016916;"Journal of Applied and Natural Science";journal;"09749411, 22315209";"Applied and Natural Science Foundation";No;No;0,217;Q3;17;200;610;8551;665;610;1,14;42,76;43,52;0;India;Asiatic Region;"Applied and Natural Science Foundation";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Immunology and Microbiology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Immunology and Microbiology" +20921;21101052759;"Laparoscopic Surgery";journal;"26164221";"AME Publishing Company";No;No;0,217;Q3;6;5;61;101;24;53;0,43;20,20;42,86;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2018-2025";"Surgery (Q3); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +20922;21101115668;"Mini-invasive Surgery";journal;"25741225";"OAE Publishing Inc.";No;No;0,217;Q3;9;13;126;663;78;119;0,55;51,00;28,24;0;United States;Northern America;"OAE Publishing Inc.";"2019-2025";"Surgery (Q3)";"Medicine" +20923;19700201313;"Nuclear Physics News";journal;"10619127, 19317336";"Taylor and Francis Ltd.";No;No;0,217;Q3;18;35;101;334;45;59;0,44;9,54;21,05;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1990-2025";"Nuclear and High Energy Physics (Q3)";"Physics and Astronomy" +20924;29774;"Physical and Occupational Therapy in Geriatrics";journal;"02703181, 15413152";"Taylor & Francis Group LLC Philadelphia";No;No;0,217;Q3;27;38;96;1504;68;96;0,71;39,58;55,76;0;United States;Northern America;"Taylor & Francis Group LLC Philadelphia";"1981-2026";"Occupational Therapy (Q3); Rehabilitation (Q3); Geriatrics and Gerontology (Q4); Gerontology (Q4)";"Health Professions; Medicine; Nursing" +20925;19700188464;"Proceedings of the Institution of Civil Engineers: Forensic Engineering";journal;"20439911, 20439903";"ICE Publishing";No;No;0,217;Q3;16;3;43;42;30;39;0,33;14,00;10,00;0;United Kingdom;Western Europe;"ICE Publishing";"2011-2025";"Safety, Risk, Reliability and Quality (Q3)";"Engineering" +20926;82230;"Revista Ceres";journal;"0034737X, 21773491";"Universidade Federal de Vicosa";Yes;No;0,217;Q3;26;39;230;1331;182;230;0,83;34,13;32,03;0;Brazil;Latin America;"Universidade Federal de Vicosa";"1978, 1980, 1982, 1984, 2012-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Veterinary (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Veterinary" +20927;28167;"Revista Colombiana de Obstetricia y Ginecologia";journal;"00347434, 24630225";"Federacion Colombiana de Asociaciones de Obstetricia y Ginecologia (FECOLSOG)";Yes;Yes;0,217;Q3;12;33;94;627;44;61;0,45;19,00;45,83;0;Colombia;Latin America;"Federacion Colombiana de Asociaciones de Obstetricia y Ginecologia (FECOLSOG)";"1960, 1962-1971, 1973-1996, 2007-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +20928;21100798596;"Revista Facultad Nacional de Agronomia Medellin";journal;"03042847, 22487026";"Universidad Nacional de Colombia";Yes;Yes;0,217;Q3;17;50;136;1398;128;123;1,09;27,96;35,00;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2016-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Food Science (Q3); Forestry (Q3); Horticulture (Q3)";"Agricultural and Biological Sciences" +20929;5700176609;"Revista Mexicana de Investigacion Educativa";journal;"14056666";"Consejo Mexicano de Investigacion Educativa";Yes;No;0,217;Q3;22;46;162;1639;99;147;0,48;35,63;58,82;0;Mexico;Latin America;"Consejo Mexicano de Investigacion Educativa";"2009, 2012-2026";"Education (Q3)";"Social Sciences" +20930;14266;"Russian Journal of Applied Chemistry";journal;"10704272, 16083296";"Pleiades Publishing";No;No;0,217;Q3;39;65;397;1897;342;397;0,75;29,18;43,29;0;United States;Northern America;"Pleiades Publishing";"1995-2025";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)";"Chemical Engineering; Chemistry" +20931;21100439341;"Ruthenica";journal;"01360027, 23077336";"A.N.Severtsov Institute of Ecology and Evolution of RAS";No;No;0,217;Q3;9;18;53;732;24;53;0,47;40,67;43,10;0;Russian Federation;Eastern Europe;"A.N.Severtsov Institute of Ecology and Evolution of RAS";"2015-2026";"Animal Science and Zoology (Q3); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +20932;17505;"Social Change";journal;"00490857, 09763538";"SAGE Publications Ltd";No;No;0,217;Q3;20;35;96;1265;97;80;0,86;36,14;38,78;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1971-2026";"Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Development (Q4)";"Social Sciences" +20933;13104;"Southeastern Geographer";journal;"15496929, 0038366X";"University of North Carolina Press";No;No;0,217;Q3;27;15;84;712;35;60;0,46;47,47;42,31;0;United States;Northern America;"University of North Carolina Press";"1979-1994, 1996-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +20934;21101093357;"Statistics, Politics and Policy";journal;"21517509, 21946299";"Walter de Gruyter GmbH";No;No;0,217;Q3;13;16;49;751;42;47;0,97;46,94;23,81;1;Germany;Western Europe;"Walter de Gruyter GmbH";"2010-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3); Statistics and Probability (Q4)";"Economics, Econometrics and Finance; Mathematics; Social Sciences" +20935;21100223305;"Transport Problems";journal;"2300861X, 18960596";"Silesian University of Technology";Yes;No;0,217;Q3;22;71;215;1728;177;215;0,75;24,34;30,26;0;Poland;Eastern Europe;"Silesian University of Technology";"2012-2025";"Automotive Engineering (Q3); Mechanical Engineering (Q4); Transportation (Q4)";"Engineering; Social Sciences" +20936;21101038677;"Vestnik Moskovskogo Universiteta. Seriya 10. Zhurnalistika";journal;"03208079, 26583526";"MSU Publishing House";No;No;0,217;Q3;7;43;129;1232;45;127;0,42;28,65;59,42;0;Russian Federation;Eastern Europe;"MSU Publishing House";"2019-2025";"Communication (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +20937;21100839125;"Analytical and Bioanalytical Chemistry Research";journal;"2383093X";"Iranian Chemical Society";Yes;Yes;0,217;Q4;18;35;114;1535;168;114;1,47;43,86;34,55;0;Iran;Middle East;"Iranian Chemical Society";"2014-2025";"Analytical Chemistry (Q4); Biochemistry (Q4); Spectroscopy (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +20938;19700174924;"Biomedical and Pharmacology Journal";journal;"09746242, 24562610";"Oriental Scientific Publishing Company";Yes;No;0,217;Q4;35;264;733;10668;828;733;1,23;40,41;46,30;0;India;Asiatic Region;"Oriental Scientific Publishing Company";"2009-2025";"Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +20939;26885;"Doklady Physical Chemistry";journal;"00125016, 16083121";"Pleiades Publishing";No;No;0,217;Q4;26;14;68;491;72;68;1,02;35,07;39,22;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Physical and Theoretical Chemistry (Q4)";"Chemistry" +20940;4000148705;"Interactions (N.Y.)";trade journal;"15583449, 10725520";"Association for Computing Machinery";No;No;0,217;Q4;66;97;284;482;433;274;1,83;4,97;58,06;0;United States;Northern America;"Association for Computing Machinery";"1994-1995, 1997, 2006-2025";"Human-Computer Interaction (Q4)";"Computer Science" +20941;4400151407;"International Journal of Business Governance and Ethics";journal;"1741802X, 14779048";"Inderscience Enterprises Ltd";No;No;0,217;Q4;23;35;87;2611;116;87;1,29;74,60;45,65;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2026";"Business and International Management (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +20942;20229;"Journal of General and Applied Microbiology";journal;"13498037, 00221260";"Microbiology Research Foundation";No;No;0,217;Q4;65;9;109;256;80;107;0,60;28,44;27,03;0;Japan;Asiatic Region;"Microbiology Research Foundation";"1955-2025";"Applied Microbiology and Biotechnology (Q4); Medicine (miscellaneous) (Q4); Microbiology (Q4)";"Immunology and Microbiology; Medicine" +20943;21100201073;"Journal of Institute of Control, Robotics and Systems";journal;"19765622";"Institute of Control, Robotics and Systems";No;No;0,217;Q4;15;180;489;3500;358;474;0,92;19,44;24,46;0;South Korea;Asiatic Region;"Institute of Control, Robotics and Systems";"2008-2026";"Applied Mathematics (Q4); Control and Systems Engineering (Q4); Software (Q4)";"Computer Science; Engineering; Mathematics" +20944;21101145341;"Letters in Applied NanoBioScience";journal;"22846808";"AMG Transcend Association";No;No;0,217;Q4;20;280;499;14061;583;497;1,23;50,22;43,26;0;Romania;Eastern Europe;"AMG Transcend Association";"2019-2025";"Biotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology" +20945;14526;"Physics and Chemistry of Liquids";journal;"10290451, 00319104";"Taylor and Francis Ltd.";No;No;0,217;Q4;46;69;159;2936;186;155;1,09;42,55;40,27;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1968-2026";"Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +20946;19840;"Proceedings of the Entomological Society of Washington";journal;"00138797";"Entomological Society of Washington";No;No;0,217;Q4;33;55;175;1424;74;143;0,37;25,89;19,44;0;United States;Northern America;"Entomological Society of Washington";"1981, 1993-2026";"Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +20947;21101152124;"Psychology and Law";journal;"22225196";"Moscow State University of Psychology and Education";Yes;Yes;0,217;Q4;5;68;201;1824;103;199;0,61;26,82;72,09;0;Russian Federation;Eastern Europe;"Moscow State University of Psychology and Education";"2022-2025";"Applied Psychology (Q4); Clinical Psychology (Q4); Experimental and Cognitive Psychology (Q4); Social Psychology (Q4)";"Psychology" +20948;21100857118;"Rendiconti di Matematica e delle Sue Applicazioni";journal;"11207183, 25323350";"University of Rome La Sapienza";Yes;Yes;0,217;Q4;9;8;31;248;17;31;0,65;31,00;25,00;0;Italy;Western Europe;"University of Rome La Sapienza";"2016-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4); Computational Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4); Fluid Flow and Transfer Processes (Q4); Geometry and Topology (Q4); Modeling and Simulation (Q4)";"Chemical Engineering; Mathematics" +20949;21100332205;"Rivista di Matematica della Universita di Parma";journal;"00356298, 22842578";"Universita degli Studi di Parma";No;No;0,217;Q4;11;0;77;0;23;75;0,26;0,00;0,00;0;Italy;Western Europe;"Universita degli Studi di Parma";"2014-2024";"Mathematics (miscellaneous) (Q4)";"Mathematics" +20950;130187;"Southeastern Naturalist";journal;"15287092";"Humboldt Field Research Institute";No;No;0,217;Q4;37;33;165;1800;83;165;0,45;54,55;40,15;0;United States;Northern America;"Humboldt Field Research Institute";"2002-2026";"Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +20951;21101039847;"Surface Technology";journal;"10013660, 20976283";"Chongqing Wujiu Periodicals Press";No;No;0,217;Q4;18;497;1473;21391;1691;1473;1,11;43,04;32,79;0;China;Asiatic Region;"Chongqing Wujiu Periodicals Press";"2017-2026";"Surfaces, Coatings and Films (Q4)";"Materials Science" +20952;28116;"Voprosy Pitaniia";journal;"26587440, 00428833";"Geotar Media Publishing Group";Yes;No;0,217;Q4;23;57;214;1215;182;214;0,86;21,32;66,67;0;Russian Federation;Eastern Europe;"Geotar Media Publishing Group";"1954-2025";"Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +20953;12400154716;"Zhongguo Xitu Xuebao/Journal of the Chinese Rare Earth Society";journal;"10004343";"Chinese Rare Earth Society";No;No;0,217;Q4;21;120;337;5133;446;337;1,39;42,78;37,37;0;China;Asiatic Region;"Chinese Rare Earth Society";"2008-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +20954;21100901947;"Digital Presentation and Preservation of Cultural and Scientific Heritage";conference and proceedings;"25350366, 13144006";"Bulgarian Academy of Sciences, Institute of Mathematics and Informatics";Yes;No;0,217;-;9;35;109;536;50;104;0,56;15,31;50,00;0;Bulgaria;Eastern Europe;"Bulgarian Academy of Sciences, Institute of Mathematics and Informatics";"2014, 2017-2025";"Computer Science Applications; Information Systems; Library and Information Sciences; Museology";"Arts and Humanities; Computer Science; Social Sciences" +20955;19700181417;"Acta Borealia";journal;"1503111X, 08003831";"Routledge";No;No;0,216;Q1;22;4;29;213;33;26;1,10;53,25;75,00;0;United Kingdom;Western Europe;"Routledge";"1984-1994, 1996-2025";"History (Q1); Anthropology (Q2); Cultural Studies (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +20956;16300154778;"Iranica Antiqua";journal;"00210870, 17831482";"Peeters Publishers";No;No;0,216;Q1;22;0;25;0;6;25;0,17;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"1996-2024";"History (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +20957;16300154710;"Journal of Dharma";journal;"02537222";"Dharmaram College, Centre for the Study of World Religions";No;No;0,216;Q1;6;24;90;787;22;81;0,23;32,79;47,83;0;India;Asiatic Region;"Dharmaram College, Centre for the Study of World Religions";"2002-2025";"Religious Studies (Q1); Philosophy (Q2)";"Arts and Humanities" +20958;21101341415;"Journal of Literary Multilingualism";journal;"2667324X";"Brill Academic Publishers";No;No;0,216;Q1;4;17;30;644;21;25;0,70;37,88;61,11;0;Netherlands;Western Europe;"Brill Academic Publishers";"2023-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +20959;20000195089;"Reti Medievali Rivista";journal;"15932214";"Firenze University Press";Yes;Yes;0,216;Q1;9;57;95;3356;30;91;0,39;58,88;45,00;0;Italy;Western Europe;"Firenze University Press";"2011-2025";"History (Q1)";"Arts and Humanities" +20960;20000195086;"Studies in Interreligious Dialogue";journal;"17831806, 09262326";"Peeters Publishers";No;No;0,216;Q1;6;5;40;287;13;38;0,30;57,40;0,00;0;Belgium;Western Europe;"Peeters Publishers";"2011-2019, 2021-2024";"Religious Studies (Q1)";"Arts and Humanities" +20961;21101043442;"World Journal of English Language";journal;"19250711, 19250703";"Sciedu Press";No;No;0,216;Q1;14;345;1027;14955;1030;1021;1,05;43,35;51,05;0;Canada;Northern America;"Sciedu Press";"2020-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +20962;29474;"American Journal of Psychology";journal;"19398298, 00029556";"University of Illinois Press";No;No;0,216;Q2;55;21;86;1320;53;81;0,33;62,86;43,18;0;United States;Northern America;"University of Illinois Press";"1945-2025";"Arts and Humanities (miscellaneous) (Q2); Developmental and Educational Psychology (Q4); Experimental and Cognitive Psychology (Q4)";"Arts and Humanities; Psychology" +20963;5600155504;"Anthropological Forum";journal;"14692902, 00664677";"Routledge";No;No;0,216;Q2;29;14;62;1017;47;58;0,61;72,64;60,00;0;United Kingdom;Western Europe;"Routledge";"1963-1965, 1967-1973, 1975, 1977, 1980, 1983-1984, 1988-1991, 1993-1995, 2000-2001, 2003-2004, 2006-2026";"Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities; Social Sciences" +20964;19900193545;"Boletim do Museu Paraense Emilio Goeldi: Ciencias Humanas";journal;"19818122, 21782547";"Museu Paraense Emilio Goeldi";Yes;Yes;0,216;Q2;20;36;126;1901;50;124;0,31;52,81;46,38;0;Brazil;Latin America;"Museu Paraense Emilio Goeldi";"2011-2025";"Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +20965;21101051209;"Chelovek";journal;"02362007";"Russian Academy of Sciences";No;No;0,216;Q2;4;67;189;1621;34;185;0,20;24,19;51,28;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2019-2025";"Philosophy (Q2)";"Arts and Humanities" +20966;144919;"Ethik in der Medizin";journal;"14371618, 09357335";"Springer Science and Business Media Deutschland GmbH";No;No;0,216;Q2;15;40;135;1869;84;94;0,67;46,73;56,98;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1998, 2001-2002, 2005-2026";"Philosophy (Q2); Health Policy (Q4); Health (social science) (Q4); Issues, Ethics and Legal Aspects (Q4)";"Arts and Humanities; Medicine; Nursing; Social Sciences" +20967;21101018933;"Habitat Sustentable";journal;"07190700";"Universidad del Bio Bio";Yes;Yes;0,216;Q2;7;21;59;665;48;52;0,90;31,67;45,45;0;Chile;Latin America;"Universidad del Bio Bio";"2019-2025";"Architecture (Q2); Geography, Planning and Development (Q3); Urban Studies (Q3); Building and Construction (Q4); Experimental and Cognitive Psychology (Q4); Materials Science (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering; Materials Science; Psychology; Social Sciences" +20968;13478;"Journal of Muslim Minority Affairs";journal;"14699591, 13602004";"Routledge";No;No;0,216;Q2;27;0;45;0;40;45;0,27;0,00;0,00;0;United Kingdom;Western Europe;"Routledge";"1996, 2010-2023";"Anthropology (Q2); Cultural Studies (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20969;16000154791;"Music Analysis";journal;"14682249, 02625245";"John Wiley and Sons Inc";No;No;0,216;Q2;25;13;37;598;9;35;0,20;46,00;16,67;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1996-2026";"Music (Q2)";"Arts and Humanities" +20970;21100938281;"Open Cultural Studies";journal;"24513474";"Walter de Gruyter GmbH";Yes;No;0,216;Q2;12;49;103;2430;97;100;0,72;49,59;58,47;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2017-2026";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +20971;19300156929;"Pesquisa Brasileira em Odontopediatria e Clinica Integrada";journal;"19834632, 15190501";"Association of Support to Oral Health Research (APESB)";Yes;No;0,216;Q2;18;120;268;3723;202;265;0,65;31,03;62,03;0;Brazil;Latin America;"Association of Support to Oral Health Research (APESB)";"2009-2026";"Orthodontics (Q2); Dentistry (miscellaneous) (Q3); Oral Surgery (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Dentistry; Medicine" +20972;5800207616;"Revista de Llengua i Dret";journal;"02125056, 20131453";"Escola d'Administracio Publica de Catalunya";Yes;Yes;0,216;Q2;12;55;171;1486;67;171;0,33;27,02;51,67;0;Spain;Western Europe;"Escola d'Administracio Publica de Catalunya";"2011-2025";"Linguistics and Language (Q2); Law (Q3)";"Social Sciences" +20973;21101038742;"Acta Musei Moraviae, Scientiae Geologicae";journal;"12118796, 25714686";"Moravian Museum";No;No;0,216;Q3;4;20;52;1261;17;52;0,31;63,05;20,00;0;Czech Republic;Eastern Europe;"Moravian Museum";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +20974;21100934225;"Acta Veterinaria Eurasia";journal;"2618639X, 2619905X";"Istanbul University";Yes;Yes;0,216;Q3;12;23;85;836;60;83;0,72;36,35;41,05;1;Turkey;Middle East;"Istanbul University";"2018-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +20975;21101216644;"Advancing Women in Leadership Journal";journal;"10937099";"Texas A and M University";No;No;0,216;Q3;5;31;36;1457;38;35;1,08;47,00;77,42;0;United States;Northern America;"Texas A and M University";"2013, 2017, 2021-2025";"Education (Q3); Gender Studies (Q3)";"Social Sciences" +20976;13200;"Applied Computational Electromagnetics Society Journal";journal;"10544887, 19435711";"";No;No;0,216;Q3;37;116;381;2937;274;379;0,71;25,32;25,84;0;Denmark;Western Europe;"";"1989, 1991-1999, 2001-2025";"Electrical and Electronic Engineering (Q3); Astronomy and Astrophysics (Q4)";"Engineering; Physics and Astronomy" +20977;21101021454;"Biota Colombiana";journal;"01245376, 2539200X";"Instituto de investigación de recursos biológicos Alexander von humboldt";Yes;Yes;0,216;Q3;7;20;71;985;45;70;0,49;49,25;39,47;0;Colombia;Latin America;"Instituto de investigación de recursos biológicos Alexander von humboldt";"2019-2025";"Animal Science and Zoology (Q3); Ecology (Q3); Nature and Landscape Conservation (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +20978;19957;"Economic and Political Weekly";journal;"23498846, 00129976";"Economic and Political Weekly";No;No;0,216;Q3;81;861;2504;13134;629;1524;0,26;15,25;37,24;0;India;Asiatic Region;"Economic and Political Weekly";"1978-1980, 1982-1986, 1993, 1995-1997, 2002, 2007-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +20979;21100780829;"Ekonomicheskaya Sotsiologiya";journal;"17263247";"National Research University Higher School of Economics (HSE University)";Yes;No;0,216;Q3;9;27;94;1530;37;89;0,41;56,67;59,52;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2016-2025";"Sociology and Political Science (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +20980;21100928807;"Electrica";journal;"26199831";"Istanbul University";Yes;Yes;0,216;Q3;18;50;177;1539;194;177;1,16;30,78;25,23;0;Turkey;Middle East;"Istanbul University";"2018-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +20981;85975;"European Journal of Horticultural Science";journal;"16114426";"Verlag Eugen Ulmer";Yes;No;0,216;Q3;41;32;129;1346;103;129;0,68;42,06;41,89;0;Germany;Western Europe;"Verlag Eugen Ulmer";"2003-2026";"Horticulture (Q3)";"Agricultural and Biological Sciences" +20982;29792;"Hong Kong Journal of Emergency Medicine";journal;"23095407, 10249079";"John Wiley and Sons Inc";Yes;No;0,216;Q3;18;68;177;1672;95;157;0,45;24,59;29,36;0;Hong Kong;Asiatic Region;"John Wiley and Sons Inc";"2004-2026";"Emergency Medicine (Q3)";"Medicine" +20983;55750;"Human Ecology Review";journal;"10744827, 22040919";"Society for Human Ecology";Yes;Yes;0,216;Q3;52;0;17;0;14;17;0,44;0,00;0,00;0;United States;Northern America;"Society for Human Ecology";"1998-2022, 2024";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +20984;21101043802;"IJU Case Reports";journal;"2577171X";"John Wiley and Sons Inc";Yes;No;0,216;Q3;8;147;390;1759;190;346;0,50;11,97;16,10;0;United States;Northern America;"John Wiley and Sons Inc";"2019, 2021-2026";"Urology (Q3)";"Medicine" +20985;19400156802;"International Journal of Action Research";journal;"18611303, 18619916";"Verlag Barbara Budrich";No;No;0,216;Q3;16;12;61;431;25;46;0,36;35,92;64,71;0;Germany;Western Europe;"Verlag Barbara Budrich";"2009-2025";"Sociology and Political Science (Q3); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Social Sciences" +20986;21100205758;"International Journal of Fluid Machinery and Systems";journal;"18829554";"Turbomachinery Society of Japan";No;No;0,216;Q3;21;14;79;501;49;79;0,64;35,79;18,60;0;Japan;Asiatic Region;"Turbomachinery Society of Japan";"2012-2025";"Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q4)";"Engineering" +20987;21101021770;"International Journal of Management and Sustainability";journal;"23069856, 23060662";"Conscientia Beam";No;No;0,216;Q3;11;77;129;4556;156;129;1,19;59,17;43,90;0;United States;Northern America;"Conscientia Beam";"2019-2025";"Business, Management and Accounting (miscellaneous) (Q3); Geography, Planning and Development (Q3); Economics and Econometrics (Q4); Management, Monitoring, Policy and Law (Q4); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +20988;21101294480;"Journal of Economic and Financial Sciences";journal;"19957076, 23122803";"AOSIS (Pty) Ltd";Yes;No;0,216;Q3;6;6;64;305;61;62;0,93;50,83;55,56;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2021-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +20989;13807;"Journal of Materials Engineering";journal;"10014381";"Science Press";Yes;No;0,216;Q3;26;173;701;7288;698;700;0,99;42,13;30,71;0;China;Asiatic Region;"Science Press";"1993-2025";"Metals and Alloys (Q3); Polymers and Plastics (Q3); Aerospace Engineering (Q4); Materials Science (miscellaneous) (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science" +20990;21101274771;"Journal of Science and Transport Technology";journal;"27349950";"";No;No;0,216;Q3;7;42;63;1533;90;63;1,65;36,50;28,77;0;Viet Nam;Asiatic Region;"";"2021-2026";"Engineering (miscellaneous) (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +20991;21101259014;"Journal of Sport Biomechanics";journal;"24765937, 24764906";"";Yes;Yes;0,216;Q3;4;27;72;860;41;69;0,56;31,85;23,38;0;Iran;Middle East;"";"2020-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Human Factors and Ergonomics (Q4); Orthopedics and Sports Medicine (Q4)";"Health Professions; Medicine; Social Sciences" +20992;21101146380;"Majalah Obat Tradisional";journal;"24069086, 14105918";"Universitas Gadjah Mada - Faculty of Pharmacy";Yes;No;0,216;Q3;8;36;96;1502;88;96;0,85;41,72;60,17;0;Indonesia;Asiatic Region;"Universitas Gadjah Mada - Faculty of Pharmacy";"2019-2025";"Complementary and Alternative Medicine (Q3); Pharmacology (medical) (Q3)";"Medicine" +20993;21101044729;"Makara Journal of Science";journal;"23391995, 23560851";"Universitas Indonesia";Yes;Yes;0,216;Q3;12;61;110;2671;130;110;1,19;43,79;49,25;0;Indonesia;Asiatic Region;"Universitas Indonesia";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science; Physics and Astronomy" +20994;21100426011;"Nano LIFE";journal;"17939852, 17939844";"World Scientific";No;No;0,216;Q3;6;29;82;2405;119;81;1,67;82,93;42,50;0;Singapore;Asiatic Region;"World Scientific";"2014, 2022-2026";"Pharmaceutical Science (Q3); Bioengineering (Q4); Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)";"Chemical Engineering; Engineering; Medicine; Pharmacology, Toxicology and Pharmaceutics" +20995;19179;"Natur und Landschaft";journal;"00280615";"Kohlhammer Verlag GmbH";No;No;0,216;Q3;12;37;134;1284;60;131;0,38;34,70;38,02;0;Germany;Western Europe;"Kohlhammer Verlag GmbH";"1979, 1981-1982, 2010-2025";"Nature and Landscape Conservation (Q3)";"Environmental Science" +20996;27888;"Practical Metallography";journal;"21958599, 0032678X";"Walter de Gruyter GmbH";No;No;0,216;Q3;20;54;163;630;103;128;0,76;11,67;28,13;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1969-2026";"Metals and Alloys (Q3); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +20997;21100778766;"Public Administration Issues";journal;"19995431, 24095095";"National Research University Higher School of Economics (HSE University)";Yes;No;0,216;Q3;12;44;138;1929;99;134;0,70;43,84;44,05;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2016-2025";"Public Administration (Q3)";"Social Sciences" +20998;21100920038;"Revista de Bioetica y Derecho";journal;"18865887";"Universitat de Barcelona, Observatorio de Bioetica y Derecho";Yes;Yes;0,216;Q3;6;37;117;1381;53;106;0,48;37,32;50,88;0;Spain;Western Europe;"Universitat de Barcelona, Observatorio de Bioetica y Derecho";"2019-2025";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +20999;14543;"Smith College Studies in Social Work";journal;"15530426, 00377317";"Routledge";No;No;0,216;Q3;29;0;39;0;57;36;1,28;0,00;0,00;0;United States;Northern America;"Routledge";"1930-2023";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Social Work (Q4)";"Social Sciences" +21000;75220;"Therapeutic Communities";journal;"09641866";"Emerald Group Publishing Ltd.";No;No;0,216;Q3;21;11;23;258;12;21;0,33;23,45;44,44;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1992-2025";"Health Professions (miscellaneous) (Q3); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Health Professions; Medicine; Psychology" +21001;15141;"Xi Tong Gong Cheng Yu Dian Zi Ji Shu/Systems Engineering and Electronics";journal;"1001506X";"Chinese Institute of Electronics";No;No;0,216;Q3;36;379;1326;13307;1270;1325;0,99;35,11;30,24;0;China;Asiatic Region;"Chinese Institute of Electronics";"1990-1991, 2001-2026";"Electrical and Electronic Engineering (Q3); Control and Systems Engineering (Q4)";"Engineering" +21002;31737;"Acta Palaeontologica Sinica";journal;"00016616";"Chinese Academy of Sciences";No;No;0,216;Q4;8;8;120;620;50;119;0,45;77,50;34,78;0;China;Asiatic Region;"Chinese Academy of Sciences";"1986, 2020-2025";"Paleontology (Q4)";"Earth and Planetary Sciences" +21003;21100242601;"Brazilian Journal of Analytical Chemistry";journal;"21793433, 21793425";"Visao Fokka Communication Agency";No;No;0,216;Q4;13;53;137;1977;114;83;0,57;37,30;37,19;0;Brazil;Latin America;"Visao Fokka Communication Agency";"2010-2014, 2016-2026";"Analytical Chemistry (Q4)";"Chemistry" +21004;21101167597;"Chinese Journal of Radiological Health";journal;"1004714X";"";No;No;0,216;Q4;8;75;324;1653;147;324;0,52;22,04;43,94;0;China;Asiatic Region;"";"2019-2025";"Public Health, Environmental and Occupational Health (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +21005;17537;"Indian Journal of Biochemistry and Biophysics";journal;"09750959, 03011208";"National Institute of Science Communication and Policy Research";Yes;Yes;0,216;Q4;53;113;278;4684;317;274;1,06;41,45;39,26;0;India;Asiatic Region;"National Institute of Science Communication and Policy Research";"1972-2026";"Biochemistry (Q4); Biophysics (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +21006;99114;"Indian Journal of Social Psychiatry";journal;"09719962, 24548316";"Wolters Kluwer Medknow Publications";Yes;Yes;0,216;Q4;11;70;209;1939;107;183;0,47;27,70;46,39;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1985-1987, 2019-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +21007;19700186853;"International Journal of Biomedical Engineering and Technology";journal;"17526418, 17526426";"Inderscience Publishers";No;No;0,216;Q4;28;48;184;2158;178;184;1,17;44,96;32,17;0;United Kingdom;Western Europe;"Inderscience Publishers";"2007-2026";"Biomedical Engineering (Q4)";"Engineering" +21008;19900192598;"International Journal of Modeling, Simulation, and Scientific Computing";journal;"17939623, 17939615";"World Scientific";No;No;0,216;Q4;29;86;264;2948;323;261;1,29;34,28;29,60;0;Singapore;Asiatic Region;"World Scientific";"2010-2026";"Computer Science Applications (Q4); Modeling and Simulation (Q4)";"Computer Science; Mathematics" +21009;14141;"Journal of Health and Human Services Administration";journal;"10793739, 21685509";"SAGE Publications Inc.";No;No;0,216;Q4;27;8;41;425;32;39;0,63;53,13;54,55;0;United States;Northern America;"SAGE Publications Inc.";"1994-2025";"Health Policy (Q4); Leadership and Management (Q4); Medicine (miscellaneous) (Q4); Organizational Behavior and Human Resource Management (Q4); Public Health, Environmental and Occupational Health (Q4)";"Business, Management and Accounting; Medicine; Nursing" +21010;21101207029;"Journal of Shanghai Ocean University";journal;"16745566";"";No;No;0,216;Q4;10;121;409;5135;303;409;0,74;42,44;36,92;0;China;Asiatic Region;"";"2021-2026";"Environmental Science (miscellaneous) (Q4); Oceanography (Q4)";"Earth and Planetary Sciences; Environmental Science" +21011;21101054223;"Materials Protection";journal;"24662585, 03519465";"Engineers Society of Corrosion, Belgrade";Yes;Yes;0,216;Q4;10;82;164;3623;188;164;1,14;44,18;37,34;0;Serbia;Eastern Europe;"Engineers Society of Corrosion, Belgrade";"2019-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +21012;9600153101;"Medicine (United Kingdom)";journal;"18789390, 13573039";"Elsevier Ltd";No;No;0,216;Q4;38;157;442;881;318;440;0,66;5,61;52,47;0;United Kingdom;Western Europe;"Elsevier Ltd";"2002-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +21013;21101207440;"Military Technical Courier/Vojnotehnicki glasnik";journal;"22174753, 00428469";"University of Defense Belgrad";Yes;Yes;0,216;Q4;4;44;85;1382;70;85;0,82;31,41;22,69;0;Serbia;Eastern Europe;"University of Defense Belgrad";"2024-2025";"Management Science and Operations Research (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences" +21014;21101209810;"Perm Journal of Petroleum and Mining Engineering";journal;"26871513, 27128008";"Perm National Research Polytechnic University";Yes;No;0,216;Q4;7;50;78;2368;58;78;0,81;47,36;31,54;0;Russian Federation;Eastern Europe;"Perm National Research Polytechnic University";"2020-2025";"Fuel Technology (Q4); Geochemistry and Petrology (Q4); Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Energy" +21015;21100823285;"Polish Journal of Entomology";journal;"22999884, 00323780";"Index Copernicus International";Yes;No;0,216;Q4;9;8;29;541;24;29;0,46;67,63;47,06;0;Germany;Western Europe;"Index Copernicus International";"2017-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +21016;21100239257;"Portugaliae Mathematica";journal;"16622758, 00325155";"European Mathematical Society Publishing House";Yes;Yes;0,216;Q4;17;18;52;386;31;52;0,69;21,44;21,88;0;Germany;Western Europe;"European Mathematical Society Publishing House";"2011-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +21017;18259;"Revista Medica de Chile";journal;"07176163, 00349887";"Sociedad Medica de Santiago";Yes;Yes;0,216;Q4;52;121;581;2393;314;497;0,42;19,78;48,80;0;Chile;Latin America;"Sociedad Medica de Santiago";"1945-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +21018;19400158242;"Rivista di Psicoanalisi";journal;"19744722, 00356492";"Raffaello Cortina Editore";No;No;0,216;Q4;7;61;201;1846;24;129;0,11;30,26;52,38;0;Italy;Western Europe;"Raffaello Cortina Editore";"1960, 2010-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +21019;13617;"Russian Journal of Marine Biology";journal;"16083377, 10630740";"";No;No;0,216;Q4;31;67;218;3121;125;217;0,51;46,58;48,43;0;Russian Federation;Eastern Europe;"";"1996-2025";"Aquatic Science (Q4); Oceanography (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +21020;21101051699;"System Research and Information Technologies";journal;"16816048, 23088893";"National Technical University of Ukraine Igor Sikorsky Kyiv Polytechnic Institute";Yes;Yes;0,216;Q4;9;39;129;913;118;128;0,81;23,41;24,53;0;Ukraine;Eastern Europe;"National Technical University of Ukraine Igor Sikorsky Kyiv Polytechnic Institute";"2019-2025";"Applied Mathematics (Q4); Artificial Intelligence (Q4); Computational Theory and Mathematics (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +21021;21101307613;"WFUMB Ultrasound Open";journal;"29496683";"Elsevier B.V.";Yes;No;0,216;Q4;4;22;41;552;32;39;0,78;25,09;42,72;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +21022;17700156004;"WSEAS Transactions on Fluid Mechanics";journal;"2224347X, 17905087";"World Scientific and Engineering Academy and Society";No;No;0,216;Q4;15;18;80;469;81;80;1,22;26,06;31,71;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2009-2015, 2017-2026";"Computational Mechanics (Q4); Fluid Flow and Transfer Processes (Q4); Modeling and Simulation (Q4); Ocean Engineering (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Chemical Engineering; Engineering; Mathematics; Physics and Astronomy" +21023;22159;"Yingyong Lixue Xuebao/Chinese Journal of Applied Mechanics";journal;"10004939";"Xi'an Jiaotong University";No;No;0,216;Q4;20;140;443;4416;293;443;0,65;31,54;32,69;0;China;Asiatic Region;"Xi'an Jiaotong University";"1997-1999, 2001-2026";"Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +21024;21100278106;"International Conference on Ubiquitous and Future Networks, ICUFN";conference and proceedings;"21658536, 21658528";"IEEE Computer Society";No;No;0,216;-;37;178;473;2183;407;464;0,81;12,26;21,90;0;United States;Northern America;"IEEE Computer Society";"2013-2019, 2021-2025";"Computer Networks and Communications; Computer Science Applications; Hardware and Architecture";"Computer Science" +21025;21100313909;"Iranian Conference on Machine Vision and Image Processing, MVIP";conference and proceedings;"21666776, 21666784";"IEEE Computer Society";No;No;0,216;-;17;0;92;0;114;90;1,30;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2013, 2016-2017, 2020, 2022, 2024";"Artificial Intelligence; Computer Vision and Pattern Recognition; Software";"Computer Science" +21026;130018;"Proceedings - International Symposium on Discharges and Electrical Insulation in Vacuum, ISDEIV";conference and proceedings;"10932941";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,216;-;22;195;133;2060;79;130;0,59;10,56;26,56;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1998, 2004, 2006, 2008, 2010, 2012, 2014, 2016, 2018, 2020, 2023, 2025";"Computer Networks and Communications; Software";"Computer Science" +21027;21100457014;"Proceedings of the IEEE National Aerospace Electronics Conference, NAECON";conference and proceedings;"23792027, 05473578";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,216;-;22;72;149;1554;133;145;0,89;21,58;18,95;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2016-2019, 2021, 2023-2025";"Computer Networks and Communications; Computer Science Applications; Control and Systems Engineering; Electrical and Electronic Engineering; Industrial and Manufacturing Engineering; Management of Technology and Innovation; Strategy and Management";"Business, Management and Accounting; Computer Science; Engineering" +21028;16100154792;"Cambridge Classical Journal";journal;"17502705, 2047993X";"Cambridge University Press";No;No;0,215;Q1;17;4;24;321;8;24;0,15;80,25;50,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1884, 1957, 2002-2025";"Classics (Q1); Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21029;19400157273;"European Journal of Science and Theology";journal;"18410464, 18428517";"ACAD Organisation";Yes;No;0,215;Q1;25;55;182;1973;66;182;0,39;35,87;35,85;0;Romania;Eastern Europe;"ACAD Organisation";"2008-2025";"Religious Studies (Q1); History and Philosophy of Science (Q2); Engineering (miscellaneous) (Q3); Multidisciplinary (Q3)";"Arts and Humanities; Engineering; Multidisciplinary" +21030;21101043317;"History of the Present";journal;"21599785, 21599793";"Duke University Press";No;No;0,215;Q1;7;18;49;602;34;49;0,69;33,44;38,46;0;United States;Northern America;"Duke University Press";"2019-2025";"History (Q1)";"Arts and Humanities" +21031;14047;"Muslim World";journal;"14781913, 00274909";"John Wiley and Sons Inc";No;No;0,215;Q1;35;27;62;669;44;61;0,46;24,78;32,14;0;United States;Northern America;"John Wiley and Sons Inc";"1911-2026";"History (Q1); Religious Studies (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21032;21101289897;"Prophetic Law Review";journal;"26862379, 26863464";"Faculty of Law, Universitas Islam Indonesia";Yes;No;0,215;Q1;4;10;36;471;19;36;0,33;47,10;47,06;0;Indonesia;Asiatic Region;"Faculty of Law, Universitas Islam Indonesia";"2021-2025";"Religious Studies (Q1); Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21033;21101058914;"Acta Linguistica Lithuanica";journal;"2669218X, 16484444";"Institute of the Lithuanian Language";Yes;Yes;0,215;Q2;5;23;79;758;17;79;0,26;32,96;58,33;0;Lithuania;Eastern Europe;"Institute of the Lithuanian Language";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +21034;19339;"Archive for History of Exact Sciences";journal;"14320657, 00039519";"Springer Verlag";No;No;0,215;Q2;32;16;59;768;57;58;1,15;48,00;25,00;0;Germany;Western Europe;"Springer Verlag";"1964-2026";"History and Philosophy of Science (Q2); Mathematics (miscellaneous) (Q4)";"Arts and Humanities; Mathematics" +21035;21100406941;"Handbook of Oriental Studies. Section 8, Uralic and Central Asian Studies";book series;"01698524";"Brill Academic Publishers";No;No;0,215;Q2;12;2;18;685;5;2;1,00;342,50;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2007, 2009-2010, 2012, 2014, 2017-2019, 2022-2023, 2025";"Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21036;17600155318;"Journal of Language Contact";journal;"19552629, 18774091";"Journal of Language Contact Publishers";Yes;No;0,215;Q2;22;21;70;1373;35;68;0,47;65,38;59,26;0;France;Western Europe;"Journal of Language Contact Publishers";"2007-2025";"Linguistics and Language (Q2)";"Social Sciences" +21037;40853;"Journal of the International Association for Shell and Spatial Structures";journal;"1028365X, 19969015";"Int. Association for Shell and Spatial Structures";No;No;0,215;Q2;31;10;78;232;60;71;0,57;23,20;19,05;0;Spain;Western Europe;"Int. Association for Shell and Spatial Structures";"1969-2025";"Arts and Humanities (miscellaneous) (Q2); Building and Construction (Q4); Civil and Structural Engineering (Q4); Mechanical Engineering (Q4)";"Arts and Humanities; Engineering" +21038;21101242003;"Language, Context and Text";journal;"25897233, 25897241";"John Benjamins Publishing Company";No;No;0,215;Q2;4;5;43;261;31;37;0,63;52,20;16,67;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2022-2025";"Linguistics and Language (Q2)";"Social Sciences" +21039;19700181241;"Physiology and Pharmacology (Iran)";journal;"24765236, 24765244";"Iranian Society of Physiology and Pharmacology";Yes;Yes;0,215;Q2;17;43;124;1972;105;122;0,74;45,86;45,11;0;Iran;Middle East;"Iranian Society of Physiology and Pharmacology";"2017-2025";"Linguistics and Language (Q2); Pharmacology (Q4); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +21040;21100401096;"Africa Education Review";journal;"18146627, 17535921";"Taylor and Francis Ltd.";No;No;0,215;Q3;18;24;65;1183;58;64;0,78;49,29;37,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Education (Q3)";"Social Sciences" +21041;9500153913;"Archives of Metallurgy and Materials";journal;"17333490";"Polska Akademia Nauk";Yes;Yes;0,215;Q3;39;239;625;7235;585;625;0,90;30,27;32,57;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2002, 2004-2025";"Metals and Alloys (Q3)";"Materials Science" +21042;19200156920;"Biotechnology, Agronomy, Society and Environment";journal;"13706233, 17804507";"University of Liege Faculty of Gembloux Agro-Bio Tech";Yes;Yes;0,215;Q3;50;20;66;1023;59;65;0,97;51,15;25,93;1;Belgium;Western Europe;"University of Liege Faculty of Gembloux Agro-Bio Tech";"1997-2026";"Agronomy and Crop Science (Q3); Forestry (Q3); Geography, Planning and Development (Q3); Biotechnology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Social Sciences" +21043;19700182227;"Indian Journal of Traditional Knowledge";journal;"09751068, 09725938";"National Institute of Science Communication and Policy Research";Yes;Yes;0,215;Q3;48;106;315;3459;287;312;0,81;32,63;42,64;0;India;Asiatic Region;"National Institute of Science Communication and Policy Research";"2004, 2008-2026";"Complementary and Alternative Medicine (Q3); Complementary and Manual Therapy (Q3)";"Health Professions; Medicine" +21044;21100904427;"International Journal for Research on Service-Learning and Community Engagement";journal;"23749466";"Tulane University";No;No;0,215;Q3;10;16;42;770;35;42;0,83;48,13;71,70;0;United States;Northern America;"Tulane University";"2017-2025";"Education (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21045;21101067520;"International Journal of Electrical and Electronics Research";journal;"2347470X";"Forex Publication";No;No;0,215;Q3;18;111;556;2851;737;556;1,18;25,68;29,50;0;India;Asiatic Region;"Forex Publication";"2019-2025";"Electrical and Electronic Engineering (Q3); Engineering (miscellaneous) (Q3)";"Engineering" +21046;5800179616;"International Journal of Industrial and Systems Engineering";journal;"17485037, 17485045";"Inderscience Enterprises Ltd";No;No;0,215;Q3;36;70;227;3398;241;227;0,96;48,54;27,85;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2026";"Industrial and Manufacturing Engineering (Q3); Control and Systems Engineering (Q4)";"Engineering" +21047;19700186887;"International Journal of Information Systems and Change Management";journal;"1479313X, 14793121";"Inderscience Enterprises Ltd";No;No;0,215;Q3;18;10;39;876;57;39;1,49;87,60;14,29;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2025";"Business, Management and Accounting (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q3)";"Business, Management and Accounting; Decision Sciences" +21048;21100456788;"International Journal on Food System Dynamics";journal;"18696945";"CentMa GmbH";Yes;Yes;0,215;Q3;23;30;118;1582;123;118;0,79;52,73;46,39;0;Germany;Western Europe;"CentMa GmbH";"2010-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Food Science (Q3); Geography, Planning and Development (Q3); Business and International Management (Q4); Environmental Science (miscellaneous) (Q4); Management Science and Operations Research (Q4); Transportation (Q4)";"Agricultural and Biological Sciences; Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +21049;21100201949;"Journal of Applied Research and Technology";journal;"24486736, 16656423";"Universidad Nacional Autonoma de Mexico";Yes;No;0,215;Q3;49;58;233;1645;285;233;1,22;28,36;25,19;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2008-2025";"Engineering (miscellaneous) (Q3)";"Engineering" +21050;21101365822;"Journal of Climate Change Research";journal;"20935919, 25862782";"The Korean Society of Climate Change Research";No;No;0,215;Q3;6;100;231;3151;147;231;0,62;31,51;40,19;0;South Korea;Asiatic Region;"The Korean Society of Climate Change Research";"2021-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Global and Planetary Change (Q4)";"Earth and Planetary Sciences; Environmental Science" +21051;21100210917;"Journal of Nano- and Electronic Physics";journal;"20776772, 23064277";"Sumy State University";Yes;Yes;0,215;Q3;29;213;595;4157;487;595;0,87;19,52;27,47;0;Ukraine;Eastern Europe;"Sumy State University";"2009-2025";"Radiation (Q3); Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4)";"Materials Science; Physics and Astronomy" +21052;21100268419;"Macedonian Veterinary Review";journal;"14097621, 18577415";"";Yes;Yes;0,215;Q3;12;21;63;795;49;63;0,93;37,86;38,83;1;Macedonia;Eastern Europe;"";"2013-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +21053;21100858125;"Medical Writing";journal;"20474814, 20474806";"European Medical Writers Association";No;No;0,215;Q3;8;46;255;442;61;155;0,25;9,61;83,02;0;United Kingdom;Western Europe;"European Medical Writers Association";"2016-2025";"Medical Terminology; Education (Q3); Health Informatics (Q4); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine; Social Sciences" +21054;12691;"Merrill-Palmer Quarterly";journal;"0272930X, 15350266";"Wayne State University Press";No;No;0,215;Q3;83;6;61;368;27;60;0,24;61,33;55,56;0;United States;Northern America;"Wayne State University Press";"1973, 1982, 1985, 1991, 1994, 1996-2025";"Education (Q3); Social Sciences (miscellaneous) (Q3); Developmental and Educational Psychology (Q4)";"Psychology; Social Sciences" +21055;26853;"Middle East Journal";journal;"19403461, 00263141";"Middle East Institute";No;No;0,215;Q3;51;17;56;1281;31;45;0,32;75,35;36,36;0;United States;Northern America;"Middle East Institute";"1976, 1979-1980, 1983-1986, 1996-2026";"Geography, Planning and Development (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21056;19900191891;"Nanoscience and Nanotechnology - Asia";journal;"22106812, 22106820";"Bentham Science Publishers";No;No;0,215;Q3;21;33;114;2677;152;107;1,53;81,12;46,22;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2011-2025";"Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q4); Nanoscience and Nanotechnology (Q4)";"Engineering; Materials Science" +21057;15500154710;"Pertanika Journal of Tropical Agricultural Science";journal;"15113701, 22318542";"Universiti Putra Malaysia";No;No;0,215;Q3;28;112;236;5649;238;236;0,90;50,44;52,24;0;Malaysia;Asiatic Region;"Universiti Putra Malaysia";"2007-2025";"Agronomy and Crop Science (Q3)";"Agricultural and Biological Sciences" +21058;4700152462;"Physics of Particles and Nuclei Letters";journal;"15318567, 15474771";"Pleiades Publishing";No;No;0,215;Q3;27;269;614;3844;260;613;0,45;14,29;27,04;0;United States;Northern America;"Pleiades Publishing";"2006-2026";"Nuclear and High Energy Physics (Q3); Radiation (Q3); Atomic and Molecular Physics, and Optics (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine; Physics and Astronomy" +21059;21101061450;"Population and Economics";journal;"26583798";"Pensoft Publishers";Yes;Yes;0,215;Q3;13;39;104;1693;93;101;0,91;43,41;52,00;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2019-2026";"Demography (Q3); Gender Studies (Q3); Social Sciences (miscellaneous) (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +21060;21101227193;"Pratacultural Science";journal;"10010629";"";No;No;0,215;Q3;15;215;829;8793;648;827;0,78;40,90;43,81;0;China;Asiatic Region;"";"2019-2025";"Agronomy and Crop Science (Q3); Animal Science and Zoology (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +21061;21101053558;"Revista de Educacion y Derecho";journal;"23864885, 2013584X";"Universitat de Barcelona";Yes;Yes;0,215;Q3;8;20;91;603;75;89;0,87;30,15;60,53;0;Spain;Western Europe;"Universitat de Barcelona";"2019-2025";"Education (Q3); Law (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21062;21100241674;"Revista de Teledeteccion";journal;"11330953, 19888740";"Universidad Politecnica de Valencia";Yes;Yes;0,215;Q3;15;18;39;810;34;39;1,00;45,00;27,50;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2012-2026";"Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)";"Earth and Planetary Sciences; Social Sciences" +21063;14615;"Social Work and Social Sciences Review";journal;"17466105, 09535225";"Whiting and Birch";No;No;0,215;Q3;15;16;64;473;58;57;0,50;29,56;33,33;0;United Kingdom;Western Europe;"Whiting and Birch";"1997-1998, 2000, 2004-2005, 2007-2008, 2010-2015, 2017-2025";"Sociology and Political Science (Q3); Health (social science) (Q4); Social Work (Q4)";"Social Sciences" +21064;21100899503;"Transactional Analysis Journal";journal;"23295244, 03621537";"Taylor and Francis Ltd.";No;No;0,215;Q3;11;34;95;1153;130;75;1,02;33,91;59,46;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2018-2026";"Decision Sciences (miscellaneous) (Q3); Education (Q3); Clinical Psychology (Q4); Developmental and Educational Psychology (Q4); Psychiatry and Mental Health (Q4)";"Decision Sciences; Medicine; Psychology; Social Sciences" +21065;21100870373;"Turkish World Mathematical Society Journal of Applied and Engineering Mathematics";journal;"21461147, 25871013";"Isik University";Yes;No;0,215;Q3;16;170;412;4306;338;412;0,91;25,33;26,42;0;Turkey;Middle East;"Isik University";"2018-2026";"Control and Optimization (Q3); Applied Mathematics (Q4); Computational Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4); Mathematical Physics (Q4); Numerical Analysis (Q4); Statistics and Probability (Q4)";"Mathematics" +21066;24049;"Acta Physiologica Sinica";journal;"03710874";"Editorial Office of Acta Physiologica Sinica";No;No;0,215;Q4;31;80;284;6469;198;278;0,69;80,86;42,48;0;China;Asiatic Region;"Editorial Office of Acta Physiologica Sinica";"1960, 1963-1966, 1981-2025";"Medicine (miscellaneous) (Q4); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +21067;21101297675;"Annual Conference of the International Group for Lean Construction, IGLC";journal;"23090979, 27890015";"International Group for Lean Construction";No;No;0,215;Q4;7;137;261;3907;263;259;1,01;28,52;27,02;1;United States;Northern America;"International Group for Lean Construction";"2023-2025";"Building and Construction (Q4); Civil and Structural Engineering (Q4)";"Engineering" +21068;21101185424;"Aviation Psychology and Applied Human Factors";journal;"21920923, 21920931";"Hogrefe Publishing GmbH";No;No;0,215;Q4;8;16;48;646;37;42;0,78;40,38;42,00;1;Germany;Western Europe;"Hogrefe Publishing GmbH";"2019-2025";"Aerospace Engineering (Q4); Applied Psychology (Q4)";"Engineering; Psychology" +21069;4900153502;"British Journal of Health Care Management";journal;"17597382, 13580574";"MA Healthcare Ltd";No;No;0,215;Q4;21;75;269;1562;160;188;0,50;20,83;48,50;0;United Kingdom;Western Europe;"MA Healthcare Ltd";"1999, 2006-2026";"Health Policy (Q4); Leadership and Management (Q4)";"Medicine; Nursing" +21070;23387;"Chemie in Unserer Zeit";journal;"00092851, 15213781";"Wiley-VCH Verlag";No;No;0,215;Q4;27;65;190;885;48;109;0,28;13,62;40,35;0;Germany;Western Europe;"Wiley-VCH Verlag";"1967-2026";"Chemistry (miscellaneous) (Q4)";"Chemistry" +21071;26093;"Chinese Journal of Hematology";journal;"02532727, 27079740";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,215;Q4;25;177;589;3631;376;589;0,56;20,51;50,66;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1997-2026";"Hematology (Q4)";"Medicine" +21072;21101185485;"Chinese Journal of Space Science";journal;"02546124";"Science Press";Yes;No;0,215;Q4;13;136;336;4603;314;336;0,87;33,85;31,20;0;China;Asiatic Region;"Science Press";"1992, 2019-2025";"Aerospace Engineering (Q4)";"Engineering" +21073;21101054407;"Cyprus Turkish Journal of Psychiatry and Psychology";journal;"13027840, 26678225";"Cyprus Mental Health Institute";No;No;0,215;Q4;7;52;127;1845;64;116;0,50;35,48;55,00;0;Turkey;Middle East;"Cyprus Mental Health Institute";"2020-2025";"Applied Psychology (Q4); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +21074;53104;"Dandao Xuebao/Journal of Ballistics";journal;"1004499X";"University of Science and Technology";No;No;0,215;Q4;17;30;174;658;100;174;0,57;21,93;25,86;0;China;Asiatic Region;"University of Science and Technology";"2001-2025";"Mechanical Engineering (Q4)";"Engineering" +21075;11700154344;"Developments in Environmental Science";book series;"14748177";"Elsevier Ltd";No;No;0,215;Q4;27;52;79;1791;92;24;1,16;34,44;50,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"2002-2003, 2005, 2007-2009, 2012-2013, 2023-2025";"Atmospheric Science (Q4); Environmental Chemistry (Q4); Health, Toxicology and Mutagenesis (Q4); Pollution (Q4)";"Earth and Planetary Sciences; Environmental Science" +21076;21100840723;"Egyptian Journal of Aquatic Biology and Fisheries";journal;"25369814, 11106131";"Egyptian Society for the Development of Fisheries and Human Health";Yes;No;0,215;Q4;26;1137;1417;50168;1564;1417;1,11;44,12;41,26;1;Egypt;Africa/Middle East;"Egyptian Society for the Development of Fisheries and Human Health";"1998, 2000-2026";"Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Pollution (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21077;60815;"EPJ Applied Physics";journal;"12860042, 12860050";"EDP Sciences";No;No;0,215;Q4;60;33;185;1514;182;181;0,97;45,88;24,16;0;France;Western Europe;"EDP Sciences";"1998-2026";"Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4)";"Materials Science; Physics and Astronomy" +21078;20500195209;"International Journal of Structural Engineering";journal;"17587328, 17587336";"Inderscience Enterprises Ltd";No;No;0,215;Q4;19;19;62;762;57;62;0,95;40,11;19,64;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2009-2026";"Civil and Structural Engineering (Q4)";"Engineering" +21079;21100223159;"Investigacion Operacional";journal;"02574306, 22245405";"Universidad de La Habana";Yes;No;0,215;Q4;20;50;191;1156;69;189;0,32;23,12;28,70;0;Cuba;Latin America;"Universidad de La Habana";"2012-2026";"Applied Mathematics (Q4); Numerical Analysis (Q4); Statistics and Probability (Q4)";"Mathematics" +21080;27785;"Journal of Marine Science and Technology (Taiwan)";journal;"10232796, 27096998";"National Taiwan Ocean University";No;No;0,215;Q4;40;36;119;1385;106;118;0,97;38,47;26,13;0;Taiwan;Asiatic Region;"National Taiwan Ocean University";"1998-2025";"Mechanical Engineering (Q4); Mechanics of Materials (Q4); Ocean Engineering (Q4); Oceanography (Q4)";"Earth and Planetary Sciences; Engineering" +21081;21101152525;"Journal of Mathematical Analysis";journal;"22173412";"University of Prishtina";No;No;0,215;Q4;7;27;65;727;70;65;1,39;26,93;18,52;0;Serbia;Eastern Europe;"University of Prishtina";"2020-2025";"Analysis (Q4); Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics" +21082;21101045283;"Journal of Medicinal Plants for Economic Development";journal;"26164809, 2519559X";"AOSIS (Pty) Ltd";Yes;No;0,215;Q4;7;13;47;564;51;46;0,82;43,38;31,71;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2019-2025";"Economics and Econometrics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +21083;12473;"Journal of UOEH";journal;"0387821X";"University of Occupational and Environmental Health";No;No;0,215;Q4;25;24;99;676;57;99;0,67;28,17;37,62;0;Japan;Asiatic Region;"University of Occupational and Environmental Health";"1979-2025";"Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +21084;21100847472;"Open Astronomy";journal;"25436376";"Walter de Gruyter GmbH";Yes;No;0,215;Q4;28;13;85;458;66;83;0,54;35,23;31,82;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"1996, 2003, 2016-2025";"Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Physics and Astronomy" +21085;12100156711;"Publications de l'Institut Mathematique";journal;"03501302, 0522828X";"Mathematical Institute of the Serbian Academy of Sciences and Arts";Yes;No;0,215;Q4;21;17;66;384;35;66;0,59;22,59;25,00;0;Serbia;Eastern Europe;"Mathematical Institute of the Serbian Academy of Sciences and Arts";"2002, 2005, 2007-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +21086;21100827932;"Rastitel'nost' Rossii";journal;"20730659";"Russian Academy of Sciences, V.L. Komarov Institute of Botany";Yes;No;0,215;Q4;8;15;47;1495;23;47;0,40;99,67;63,64;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences, V.L. Komarov Institute of Botany";"2017-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +21087;26010;"Digest of Technical Papers - IEEE International Conference on Consumer Electronics";conference and proceedings;"0747668X, 21591423";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,215;-;34;504;925;7406;836;920;0,95;14,69;22,88;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1984, 1988-1989, 1991-2002, 2005-2009, 2011-2014, 2018, 2020-2025";"Electrical and Electronic Engineering; Industrial and Manufacturing Engineering";"Engineering" +21088;10900153316;"IEEE International Conference on Industrial Informatics (INDIN)";conference and proceedings;"19354576";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,215;-;39;246;587;4968;483;582;0,76;20,20;28,64;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2003, 2007-2013, 2016, 2019-2024";"Computer Science Applications; Information Systems";"Computer Science" +21089;13654;"Oceans Conference Record (IEEE)";conference and proceedings;"01977385";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,215;-;47;664;1716;12577;1276;1711;0,65;18,94;23,40;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1971-1972, 1979-1987, 1990-1991, 1994-2003, 2007, 2021-2025";"Artificial Intelligence; Computer Science Applications; Control and Systems Engineering; Ocean Engineering; Oceanography";"Computer Science; Earth and Planetary Sciences; Engineering" +21090;80375;"Antiquaries Journal";journal;"17585309, 00035815";"Cambridge University Press";No;No;0,214;Q1;19;15;50;879;14;50;0,43;58,60;30,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1921-1962, 1964-1971, 1973-1985, 1987-1990, 1995, 1998, 2000-2025";"History (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21091;21100901778;"Echa Przeszlosci";journal;"2450078X, 15099873";"University of Warmia and Mazury in Olsztyn";Yes;No;0,214;Q1;3;12;78;361;18;77;0,31;30,08;23,08;0;Poland;Eastern Europe;"University of Warmia and Mazury in Olsztyn";"2018-2025";"History (Q1)";"Arts and Humanities" +21092;21100902945;"Fronteras de la Historia";journal;"25394711, 20274688";"Instituto Colombiano de Antropologia e Historia";Yes;Yes;0,214;Q1;6;28;105;1241;43;102;0,34;44,32;46,67;0;Colombia;Latin America;"Instituto Colombiano de Antropologia e Historia";"2018-2026";"History (Q1)";"Arts and Humanities" +21093;21100894205;"Journal of Chinese History";journal;"20591640, 20591632";"Cambridge University Press";No;No;0,214;Q1;9;24;52;2340;23;50;0,37;97,50;50,00;0;United Kingdom;Western Europe;"Cambridge University Press";"2017-2026";"History (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21094;21100996940;"Journal of Global Slavery";journal;"2405836X, 24058351";"Brill Academic Publishers";No;No;0,214;Q1;7;9;36;471;30;34;1,09;52,33;41,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017, 2019-2025";"History (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21095;21100442068;"Revista de Historiografia";journal;"24450057, 18852718";"Universidad Carlos III de Madrid";Yes;Yes;0,214;Q1;9;19;61;1593;19;59;0,33;83,84;31,82;0;Spain;Western Europe;"Universidad Carlos III de Madrid";"2012-2025";"History (Q1)";"Arts and Humanities" +21096;5700163444;"Russian Review";journal;"14679434, 00360341";"John Wiley and Sons Inc";No;No;0,214;Q1;33;33;101;1884;43;93;0,49;57,09;45,00;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1973, 1978, 1981, 1983, 1985, 1987, 1996-2026";"History (Q1); Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21097;21101147344;"Vox Patrum";journal;"27193586, 08609411";"John Paul II Catholic University of Lublin";Yes;Yes;0,214;Q1;4;80;178;3016;39;167;0,22;37,70;32,81;0;Poland;Eastern Europe;"John Paul II Catholic University of Lublin";"2019-2025";"Classics (Q1); History (Q1); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +21098;21101097075;"Acta Agrestia Sinica";journal;"10070435";"China Agricultural University";No;No;0,214;Q3;15;245;1277;10349;1020;1277;0,85;42,24;41,42;0;China;Asiatic Region;"China Agricultural University";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Ecology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21099;21100864723;"Advanced Biomedical Engineering";journal;"21875219";"Japan Soc. of Med. Electronics and Biol. Engineering";Yes;No;0,214;Q3;11;42;98;1082;72;96;0,66;25,76;20,39;0;Japan;Asiatic Region;"Japan Soc. of Med. Electronics and Biol. Engineering";"2012-2026";"Computer Vision and Pattern Recognition (Q3); Biomaterials (Q4); Biomedical Engineering (Q4); Biotechnology (Q4); Computer Science Applications (Q4)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Engineering; Materials Science" +21100;21100872361;"American Political Thought";journal;"21611599, 21611580";"University of Chicago Press";No;No;0,214;Q3;8;29;69;930;21;63;0,33;32,07;4,35;0;United States;Northern America;"University of Chicago Press";"2012, 2015-2026";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21101;21100904443;"Asia Pacific Journal of Educators and Education";journal;"21803463, 22899057";"Penerbit Universiti Sains Malaysia";No;No;0,214;Q3;9;59;78;3024;78;75;0,88;51,25;51,54;0;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2018-2025";"Education (Q3)";"Social Sciences" +21102;21101393931;"Emancipations";journal;"27658414";"";No;No;0,214;Q3;6;16;78;451;60;52;0,68;28,19;45,45;0;United States;Northern America;"";"2022-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +21103;21100915995;"GeoScape";journal;"18021115";"Sciendo";Yes;No;0,214;Q3;11;12;39;711;37;39;1,00;59,25;25,00;0;Poland;Eastern Europe;"Sciendo";"2019-2025";"Geography, Planning and Development (Q3); Nature and Landscape Conservation (Q3); Urban Studies (Q3); Ecology (Q4)";"Environmental Science; Social Sciences" +21104;19700173003;"Ingenieria e Investigacion";journal;"22488723, 01205609";"Universidad Nacional de Colombia";Yes;Yes;0,214;Q3;22;37;127;1485;130;126;0,93;40,14;20,21;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2009-2025";"Engineering (miscellaneous) (Q3); Building and Construction (Q4)";"Engineering" +21105;21101041819;"International Journal for Human Caring";journal;"25782304, 10915710";"International Association for Human Caring";No;No;0,214;Q3;5;24;92;645;40;81;0,32;26,88;76,36;0;United States;Northern America;"International Association for Human Caring";"2017-2019, 2021-2026";"Nursing (miscellaneous) (Q3); Care Planning (Q4); Community and Home Care (Q4)";"Nursing" +21106;21100836264;"International Journal of Computer Networks and Communications";journal;"09752293, 09749322";"Academy and Industry Research Collaboration Center (AIRCC)";No;No;0,214;Q3;17;47;141;1399;163;141;1,47;29,77;24,21;0;India;Asiatic Region;"Academy and Industry Research Collaboration Center (AIRCC)";"2012-2013, 2015-2026";"Computer Networks and Communications (Q3); Hardware and Architecture (Q4)";"Computer Science" +21107;21101270816;"International Journal of Tropical Drylands";journal;"27756130";"Smujo International";No;No;0,214;Q3;6;16;33;879;41;33;1,00;54,94;44,19;0;Indonesia;Asiatic Region;"Smujo International";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Nature and Landscape Conservation (Q3); Ecology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21108;21101284802;"Journal of Applied Research in Electrical Engineering";journal;"2717414X, 27832864";"Shahid Chamran University of Ahvaz";No;No;0,214;Q3;5;6;72;277;51;72;0,71;46,17;11,11;0;Iran;Middle East;"Shahid Chamran University of Ahvaz";"2022-2025";"Electrical and Electronic Engineering (Q3)";"Engineering" +21109;21101063738;"Journal of Curriculum and Teaching";journal;"19272685, 19272677";"Sciedu Press";No;No;0,214;Q3;13;93;426;4109;479;426;1,00;44,18;44,63;0;Canada;Northern America;"Sciedu Press";"2019-2026";"Education (Q3)";"Social Sciences" +21110;21100943982;"Journal of Southeast Asian American Education and Advancement";journal;"21538999";"Purdue University Press";Yes;Yes;0,214;Q3;6;12;19;287;25;14;1,67;23,92;44,44;0;United States;Northern America;"Purdue University Press";"2019-2026";"Education (Q3)";"Social Sciences" +21111;21100943549;"Journal of Traditional Chinese Medical Sciences";journal;"20957548";"Beijing University of Chinese Medicine";Yes;No;0,214;Q3;15;62;165;3352;167;164;1,07;54,06;44,48;0;China;Asiatic Region;"Beijing University of Chinese Medicine";"2018-2025";"Complementary and Alternative Medicine (Q3)";"Medicine" +21112;7600153106;"Malaysian Journal of Library and Information Science";journal;"13946234";"Faculty of Computer Science and Information Technology";No;No;0,214;Q3;31;17;60;797;54;60;1,05;46,88;38,10;0;Malaysia;Asiatic Region;"Faculty of Computer Science and Information Technology";"1996-2025";"Library and Information Sciences (Q3)";"Social Sciences" +21113;81297;"Multiphase Science and Technology";journal;"02761459";"Begell House Inc.";No;No;0,214;Q3;26;23;62;480;39;56;0,55;20,87;11,86;0;United States;Northern America;"Begell House Inc.";"1986, 1997-2025";"Engineering (miscellaneous) (Q3); Condensed Matter Physics (Q4); Modeling and Simulation (Q4)";"Engineering; Mathematics; Physics and Astronomy" +21114;28814;"Nurse Practitioner";journal;"03611817, 15388662";"Lippincott Williams and Wilkins Ltd.";No;No;0,214;Q3;27;117;308;1455;178;256;0,58;12,44;75,81;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1975-2026";"Nursing (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Nursing" +21115;11700154706;"Pedagogika";journal;"20290551, 13920340";"Vytautas Magnus University";Yes;Yes;0,214;Q3;12;41;123;2255;107;123;0,61;55,00;69,14;0;Lithuania;Eastern Europe;"Vytautas Magnus University";"2008-2025";"Education (Q3)";"Social Sciences" +21116;19700175735;"Philippine Journal of Science";journal;"00317683";"Department of Science and Technology";No;No;0,214;Q3;27;101;666;4030;591;643;0,79;39,90;49,52;0;Philippines;Asiatic Region;"Department of Science and Technology";"1979, 1982, 1986-1988, 2009-2025";"Multidisciplinary (Q3); Social Sciences (miscellaneous) (Q3)";"Multidisciplinary; Social Sciences" +21117;21100896892;"Revista de Administracao Mackenzie";journal;"15186776, 16786971";"Mackenzie Presbyterian University";Yes;Yes;0,214;Q3;20;43;119;2531;145;118;1,12;58,86;40,34;0;Brazil;Latin America;"Mackenzie Presbyterian University";"2008-2025";"Business, Management and Accounting (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Business, Management and Accounting; Social Sciences" +21118;21101090838;"Revista Interdisciplinar da Mobilidade Humana";journal;"19808585, 22379843";"Scalabrini Migration Study Centers";Yes;Yes;0,214;Q3;10;51;145;2091;80;130;0,48;41,00;63,53;0;Italy;Western Europe;"Scalabrini Migration Study Centers";"2019-2025";"Demography (Q3); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21119;21100820742;"Scottish Affairs";journal;"09660356, 2053888X";"Edinburgh University Press";No;No;0,214;Q3;21;27;88;918;37;82;0,37;34,00;26,47;2;United Kingdom;Western Europe;"Edinburgh University Press";"1996-2026";"Sociology and Political Science (Q3)";"Social Sciences" +21120;10300153374;"WSEAS Transactions on Environment and Development";journal;"17905079, 22243496";"World Scientific and Engineering Academy and Society";No;No;0,214;Q3;29;116;369;4128;377;369;1,10;35,59;46,06;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2007-2015, 2017-2026";"Geography, Planning and Development (Q3); Development (Q4); Ecological Modeling (Q4); Energy (miscellaneous) (Q4); Environmental Chemistry (Q4); Environmental Engineering (Q4); Environmental Science (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4); Waste Management and Disposal (Q4)";"Energy; Environmental Science; Social Sciences" +21121;21100978846;"Asia Pacific Journal of Health Management";journal;"22043136";"Australasian College of Health Service Management";Yes;Yes;0,214;Q4;13;141;275;4093;191;258;0,64;29,03;49,00;0;Australia;Pacific Region;"Australasian College of Health Service Management";"2018-2025";"Health Information Management (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine" +21122;21100784448;"Bulletin of TICMI";journal;"15120082";"Tbilisi State University";No;No;0,214;Q4;6;12;30;189;14;30;0,30;15,75;22,22;0;Georgia;Eastern Europe;"Tbilisi State University";"2016-2025";"Computer Science Applications (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Mathematics" +21123;16400154782;"Contemporary Problems of Ecology";journal;"19954255, 19954263";"";No;No;0,214;Q4;27;101;288;4170;186;288;0,57;41,29;59,38;0;Russian Federation;Eastern Europe;"";"2008-2026";"Environmental Science (miscellaneous) (Q4)";"Environmental Science" +21124;4700152601;"Current Cancer Therapy Reviews";journal;"18756301, 15733947";"Bentham Science Publishers";No;No;0,214;Q4;20;103;124;9638;121;120;1,06;93,57;42,58;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Cancer Research (Q4); Molecular Medicine (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +21125;6400153114;"Environmental Claims Journal";journal;"1547657X, 10406026";"Taylor and Francis Ltd.";No;No;0,214;Q4;16;64;55;4212;59;54;1,15;65,81;30,32;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1988-2025";"Management, Monitoring, Policy and Law (Q4)";"Environmental Science" +21126;14373;"Gaoya Wuli Xuebao/Chinese Journal of High Pressure Physics";journal;"10005773";"Chinese Journal of High Pressure Physics";No;No;0,214;Q4;19;117;319;3855;272;319;0,84;32,95;34,03;0;China;Asiatic Region;"Chinese Journal of High Pressure Physics";"1996-2026";"Condensed Matter Physics (Q4)";"Physics and Astronomy" +21127;15711;"Geotechnical Engineering";journal;"00465828";"Southeast Asian Geotechnical Society";No;No;0,214;Q4;28;5;68;175;51;68;0,80;35,00;13,33;0;Thailand;Asiatic Region;"Southeast Asian Geotechnical Society";"1978-1989, 1994-2025";"Civil and Structural Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering" +21128;21101166979;"International Journal of Limnology";journal;"28231465";"EDP Sciences";No;No;0,214;Q4;40;12;50;822;29;48;0,77;68,50;33,33;0;France;Western Europe;"EDP Sciences";"2022-2026";"Aquatic Science (Q4)";"Agricultural and Biological Sciences" +21129;21101049089;"International Journal of Occupational Safety and Health";journal;"20910878, 27389707";"Occupational Health and Safety Society of Nepal";Yes;No;0,214;Q4;8;65;163;1919;132;163;0,87;29,52;42,00;0;Nepal;Asiatic Region;"Occupational Health and Safety Society of Nepal";"2019-2025";"Public Health, Environmental and Occupational Health (Q4); Safety Research (Q4)";"Medicine; Social Sciences" +21130;21101089396;"IUCrData";journal;"24143146";"International Union of Crystallography";Yes;No;0,214;Q4;7;136;342;2117;200;291;0,33;15,57;19,62;0;United Kingdom;Western Europe;"International Union of Crystallography";"2017, 2019-2026";"Analytical Chemistry (Q4); Inorganic Chemistry (Q4); Organic Chemistry (Q4)";"Chemistry" +21131;21100908543;"Journal of Fisheries and Environment";journal;"26300826, 26300702";"Faculty of Fisheries, Kasetsart University";No;No;0,214;Q4;9;42;120;1829;106;115;0,80;43,55;44,83;0;Thailand;Asiatic Region;"Faculty of Fisheries, Kasetsart University";"2017-2025";"Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21132;19700174657;"Lithuanian Journal of Physics";journal;"16488504";"Lithuanian Physical Society";Yes;No;0,214;Q4;21;21;80;808;62;80;0,88;38,48;19,12;0;Lithuania;Eastern Europe;"Lithuanian Physical Society";"2008-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +21133;19700176301;"Mammalian Species";book series;"15451410, 00763519";"Oxford University Press";No;No;0,214;Q4;20;2;26;384;22;26;0,67;192,00;0,00;0;United States;Northern America;"Oxford University Press";"1981, 1985, 1988, 1990, 2005, 2009-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +21134;22599;"Revista Espanola de Salud Publica";journal;"11355727, 16969820";"Ministerio de Sanidad y Consumo";Yes;Yes;0,214;Q4;45;100;322;2093;194;299;0,58;20,93;61,26;0;Spain;Western Europe;"Ministerio de Sanidad y Consumo";"1995-2026";"Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +21135;21100926578;"Ural Mathematical Journal";journal;"24143952";"Krasovskii Institute of Mathematics and Mechanics of the Ural Branch of Russian Academy of Sciences";Yes;Yes;0,214;Q4;9;27;87;515;47;87;0,63;19,07;28,57;0;Russian Federation;Eastern Europe;"Krasovskii Institute of Mathematics and Mechanics of the Ural Branch of Russian Academy of Sciences";"2019-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +21136;17700156006;"WSEAS Transactions on Business and Economics";journal;"11099526, 22242899";"World Scientific and Engineering Academy and Society";No;No;0,214;Q4;26;216;621;8837;802;621;1,32;40,91;40,44;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2009-2015, 2017-2026";"Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +21137;20382;"American Society of Mechanical Engineers, Internal Combustion Engine Division (Publication) ICE";conference and proceedings;"10665048";"American Society of Mechanical Engineers (ASME)";No;No;0,214;-;19;51;78;1460;43;76;0,55;28,63;14,84;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1986-1988, 1990-2003, 2006, 2010-2011, 2024-2025";"Automotive Engineering; Engineering (miscellaneous); Mechanical Engineering";"Engineering" +21138;22351;"History of Science";journal;"17538564, 00732753";"Sage Publications India Pvt. Ltd";No;No;0,213;Q1;39;18;76;1066;67;74;0,55;59,22;35,29;0;Singapore;Asiatic Region;"Sage Publications India Pvt. Ltd";"1962-1971, 1973-2026";"History (Q1); History and Philosophy of Science (Q2)";"Arts and Humanities" +21139;5700168538;"Material Religion";journal;"17518342, 17432200";"Taylor and Francis Ltd.";No;No;0,213;Q1;25;53;93;1119;42;66;0,48;21,11;66,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2025";"Visual Arts and Performing Arts (Q1); Religious Studies (Q2)";"Arts and Humanities" +21140;21101038706;"African Conflict and Peacebuilding Review";journal;"21567263, 2156695X";"The Trustees of Indiana University";No;No;0,213;Q2;8;12;44;709;22;42;0,68;59,08;33,33;0;United States;Northern America;"The Trustees of Indiana University";"2019-2025";"Anthropology (Q2); Cultural Studies (Q2); Sociology and Political Science (Q3)";"Social Sciences" +21141;21101044933;"Contratexto";journal;"10259945, 19934904";"Universidad de Lima";Yes;Yes;0,213;Q2;5;21;78;910;48;73;0,63;43,33;58,54;0;Peru;Latin America;"Universidad de Lima";"2019-2025";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +21142;21100792828;"KOME";journal;"20637330";"University of Public Service, Ludovika University Press";Yes;Yes;0,213;Q2;12;13;35;864;39;35;1,04;66,46;29,17;0;Hungary;Eastern Europe;"University of Public Service, Ludovika University Press";"2015-2025";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +21143;12935;"Acoustical Science and Technology";journal;"13463969, 13475177";"Acoustical Society of Japan";Yes;No;0,213;Q3;46;82;154;1913;111;136;0,88;23,33;18,96;0;Japan;Asiatic Region;"Acoustical Society of Japan";"2000-2026";"Acoustics and Ultrasonics (Q3)";"Physics and Astronomy" +21144;21101201999;"Actualidad Juridica Ambiental";journal;"19895666";"Centro de Investigaciones Energeticas Medioambientales y Tecnologicas (CIEMAT)";Yes;Yes;0,213;Q3;4;162;276;1975;30;224;0,12;12,19;50,68;0;Spain;Western Europe;"Centro de Investigaciones Energeticas Medioambientales y Tecnologicas (CIEMAT)";"2019-2025";"Law (Q3); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +21145;21100901901;"Biological Communications";journal;"25875779, 25422154";"Saint Petersburg State University";No;No;0,213;Q3;13;14;86;735;54;85;0,60;52,50;50,00;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2017-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +21146;21100210921;"Central European Journal of Public Policy";journal;"18024866";"Sciendo";Yes;No;0,213;Q3;14;11;27;462;38;27;1,53;42,00;31,82;0;Czech Republic;Eastern Europe;"Sciendo";"2012-2025";"Law (Q3); Sociology and Political Science (Q3); Public Administration (Q4)";"Social Sciences" +21147;21101325317;"Characterization and Application of Nanomaterials";journal;"25781995";"EnPress Publisher, LLC";No;No;0,213;Q3;5;26;51;1681;61;49;1,20;64,65;36,36;0;United States;Northern America;"EnPress Publisher, LLC";"2023-2025";"Process Chemistry and Technology (Q3); Catalysis (Q4); Materials Science (miscellaneous) (Q4); Surfaces, Coatings and Films (Q4)";"Chemical Engineering; Materials Science" +21148;17800156707;"Chiang Mai Journal of Science";journal;"01252526";"Chiang Mai University";No;No;0,213;Q3;32;103;295;5416;324;292;1,08;52,58;45,02;0;Thailand;Asiatic Region;"Chiang Mai University";"2008-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +21149;21101276702;"Disability, CBR and Inclusive Development";journal;"22115242";"Vrije University";Yes;Yes;0,213;Q3;20;35;77;1032;50;61;0,27;29,49;52,24;0;Netherlands;Western Europe;"Vrije University";"2011-2025";"Fundamentals and Skills (Q3); Community and Home Care (Q4); Research and Theory (Q4)";"Nursing" +21150;21100899864;"ECTI Transactions on Computer and Information Technology";journal;"22869131";"ECTI Association Sirindhon International Institute of Technology";Yes;Yes;0,213;Q3;11;60;140;1965;148;140;1,10;32,75;40,30;0;Thailand;Asiatic Region;"ECTI Association Sirindhon International Institute of Technology";"2018-2026";"Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Information Systems and Management (Q3); Information Systems (Q4)";"Computer Science; Decision Sciences; Engineering" +21151;144631;"Elektrotechnik und Informationstechnik";journal;"0932383X";"Springer-Verlag Wien";No;No;0,213;Q3;24;84;288;958;164;226;0,59;11,40;12,31;0;Austria;Western Europe;"Springer-Verlag Wien";"1988-1990, 1997, 2005-2026";"Electrical and Electronic Engineering (Q3)";"Engineering" +21152;21101294613;"Journal of Catastrophology";journal;"1000811X";"Shaanxi Earthquake Agency";No;No;0,213;Q3;11;135;394;4298;349;394;0,93;31,84;39,76;0;China;Asiatic Region;"Shaanxi Earthquake Agency";"2021-2026";"Nature and Landscape Conservation (Q3); Environmental Science (miscellaneous) (Q4); Geotechnical Engineering and Engineering Geology (Q4); Management, Monitoring, Policy and Law (Q4)";"Earth and Planetary Sciences; Environmental Science" +21153;21101071060;"Journal of Integrative Nursing";journal;"26669854, 26634481";"Wolters Kluwer Medknow Publications";Yes;No;0,213;Q3;5;34;121;962;84;115;0,70;28,29;67,82;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2020-2025";"Nursing (miscellaneous) (Q3)";"Nursing" +21154;21101072338;"Journal of Qualitative Research in Health Science";journal;"26456109";"Kerman University of Medical Sciences";Yes;Yes;0,213;Q3;7;36;98;1288;70;97;0,71;35,78;58,97;0;Iran;Middle East;"Kerman University of Medical Sciences";"2019-2025";"Nursing (miscellaneous) (Q3); Health (social science) (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Nursing; Social Sciences" +21155;40079;"Journal of Stomatology";journal;"2299551X, 00114553";"Termedia Publishing House Ltd.";Yes;Yes;0,213;Q3;15;40;119;1276;83;117;0,48;31,90;50,00;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"1951-1955, 1961-1962, 1965-1990, 2011-2025";"Dentistry (miscellaneous) (Q3)";"Dentistry" +21156;21100933997;"Journal of Tourism and Development";journal;"16459261, 21821453";"Universidade de Aveiro";No;No;0,213;Q3;13;40;220;2833;230;213;1,12;70,83;47,42;0;Portugal;Western Europe;"Universidade de Aveiro";"2019-2025";"Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +21157;21101181950;"Jurnal Pengelolaan Sumberdaya Alam dan Lingkungan";journal;"24605824, 20864639";"Pusat Penelitian Lingkungan Hidup - Lembaga Penelitian dan Pengabdian Kepada Masyarakat Institut Pertanian Bogor (PPLH-LPPM IPB)";Yes;No;0,213;Q3;11;84;222;3646;210;222;0,95;43,40;38,38;0;Indonesia;Asiatic Region;"Pusat Penelitian Lingkungan Hidup - Lembaga Penelitian dan Pengabdian Kepada Masyarakat Institut Pertanian Bogor (PPLH-LPPM IPB)";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Nature and Landscape Conservation (Q3); Management, Monitoring, Policy and Law (Q4); Waste Management and Disposal (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21158;14066;"Library Trends";journal;"15590682, 00242594";"Johns Hopkins University Press";No;No;0,213;Q3;57;48;111;2075;67;99;0,50;43,23;73,42;1;United States;Northern America;"Johns Hopkins University Press";"1980-2026";"Library and Information Sciences (Q3)";"Social Sciences" +21159;19700175249;"Open Pain Journal";journal;"18763863";"Bentham Science Publishers";Yes;No;0,213;Q3;15;1;18;25;22;18;0,92;25,00;50,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2010-2025";"Anesthesiology and Pain Medicine (Q3); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience" +21160;21101068584;"R-Economy";journal;"24120731";"Ural Federal University";Yes;Yes;0,213;Q3;9;27;85;1154;75;83;0,84;42,74;49,32;0;Russian Federation;Eastern Europe;"Ural Federal University";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3); Public Administration (Q3)";"Economics, Econometrics and Finance; Social Sciences" +21161;21101040605;"Turyzm/Tourism";journal;"08675856, 20806922";"Lodz University Press";Yes;Yes;0,213;Q3;13;28;73;2148;105;73;1,25;76,71;41,43;0;Poland;Eastern Europe;"Lodz University Press";"2001-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +21162;21101073292;"Veterinarski Glasnik";journal;"24060771, 03502457";"University of Belgrade, Faculty of Veterinary Medicine";Yes;Yes;0,213;Q3;6;15;47;422;35;46;0,97;28,13;49,25;0;Serbia;Eastern Europe;"University of Belgrade, Faculty of Veterinary Medicine";"2019-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +21163;21100826381;"Woman in Russian Society";journal;"19922892, 2500221X";"Ivanovo State University Publishing";No;No;0,213;Q3;8;41;148;830;30;148;0,24;20,24;71,93;0;Russian Federation;Eastern Europe;"Ivanovo State University Publishing";"2017-2025";"Gender Studies (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21164;21101164612;"Advances in Artificial Intelligence and Machine Learning";journal;"25829793";"Shimur Publications";No;No;0,213;Q4;9;83;167;3045;194;166;1,17;36,69;31,44;0;India;Asiatic Region;"Shimur Publications";"2021-2025";"Artificial Intelligence (Q4)";"Computer Science" +21165;21100773749;"Breast Cancer Management";journal;"17581931, 17581923";"Future Medicine Ltd.";Yes;No;0,213;Q4;4;0;11;0;8;11;0,83;0,00;0,00;0;United Kingdom;Western Europe;"Future Medicine Ltd.";"2013-2016, 2018-2024";"Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +21166;7000153258;"International Journal of Psychology and Psychological Therapy";journal;"15777057";"Asociación de Análisis del Comportamiento";No;No;0,213;Q4;42;22;65;1055;36;65;0,36;47,95;43,94;0;Spain;Western Europe;"Asociación de Análisis del Comportamiento";"2001-2025";"Clinical Psychology (Q4); Developmental and Educational Psychology (Q4); Experimental and Cognitive Psychology (Q4)";"Psychology" +21167;12426;"Journal of the Canadian Society of Forensic Science";journal;"00085030, 23321660";"Taylor and Francis Ltd.";No;No;0,213;Q4;25;14;43;488;29;43;0,83;34,86;55,81;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1968-2026";"Pathology and Forensic Medicine (Q4)";"Medicine" +21168;21100886421;"Letters in Biomathematics";journal;"23737867";"";Yes;No;0,213;Q4;17;15;31;513;40;28;1,17;34,20;29,41;0;United States;Northern America;"";"2014-2026";"Applied Mathematics (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Statistics and Probability (Q4)";"Biochemistry, Genetics and Molecular Biology; Mathematics" +21169;79866;"Livestock Research for Rural Development";journal;"01213784";"Fundacion CIPAV";Yes;No;0,213;Q4;42;60;266;1738;176;266;0,58;28,97;25,53;0;Colombia;Latin America;"Fundacion CIPAV";"1996-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +21170;21100944725;"Marine Biological Journal";journal;"24999776, 24999768";"A.O. Kovalevsky Institute of Biology of the Southern Seas of RAS";Yes;No;0,213;Q4;11;35;111;1223;50;111;0,43;34,94;65,17;0;Russian Federation;Eastern Europe;"A.O. Kovalevsky Institute of Biology of the Southern Seas of RAS";"2016-2025";"Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21171;145393;"Mechanika";journal;"13921207, 20296983";"Kauno Technologijos Universitetas";Yes;No;0,213;Q4;29;54;189;1242;175;189;0,86;23,00;27,03;0;Lithuania;Eastern Europe;"Kauno Technologijos Universitetas";"2005-2025";"Condensed Matter Physics (Q4)";"Physics and Astronomy" +21172;64375;"Nigerian Journal of Physiological Sciences";journal;"0794859X";"Physiological Society of Nigeria";No;No;0,213;Q4;24;4;108;61;85;108;0,49;15,25;27,78;0;Nigeria;Africa;"Physiological Society of Nigeria";"1988-1991, 2006-2026";"Medicine (miscellaneous) (Q4); Physiology (Q4); Physiology (medical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +21173;25288;"Phosphorus, Sulfur and Silicon and the Related Elements";journal;"10426507, 15635325";"Taylor and Francis Ltd.";No;No;0,213;Q4;50;132;371;7456;475;367;1,36;56,48;42,77;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2026";"Biochemistry (Q4); Inorganic Chemistry (Q4); Organic Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +21174;29223;"Physics of the Solid State";journal;"10906460, 10637834";"Pleiades Publishing";No;No;0,213;Q4;59;125;193;4441;203;193;1,60;35,53;31,11;0;United States;Northern America;"Pleiades Publishing";"1996-2026";"Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Materials Science; Physics and Astronomy" +21175;21101038672;"Reference Series in Phytochemistry";book series;"2511834X, 25118358";"Springer Science and Business Media B.V.";No;No;0,213;Q4;28;144;348;16341;541;12;1,62;113,48;33,33;0;Switzerland;Western Europe;"Springer Science and Business Media B.V.";"2017-2026";"Biochemistry (Q4); Organic Chemistry (Q4); Plant Science (Q4); Toxicology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +21176;21101186261;"Rwanda Journal of Medicine and Health Sciences";journal;"26169827, 26169819";"University of Rwanda College of Medicine and Health Sciences";Yes;Yes;0,213;Q4;7;51;113;1827;66;109;0,59;35,82;39,42;0;Rwanda;Africa;"University of Rwanda College of Medicine and Health Sciences";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +21177;25756;"Zeitschrift fur Naturforschung - Section B Journal of Chemical Sciences";journal;"09320776, 18657117";"Walter de Gruyter GmbH";No;No;0,213;Q4;55;56;248;2100;161;244;0,61;37,50;30,69;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1947-2026";"Chemistry (miscellaneous) (Q4)";"Chemistry" +21178;12511;"Zentralblatt fur Arbeitsmedizin, Arbeitsschutz und Ergonomie";journal;"21980713, 09442502";"Springer International Publishing AG";No;No;0,213;Q4;16;41;97;1641;70;95;0,87;40,02;52,55;0;Germany;Western Europe;"Springer International Publishing AG";"1953-1963, 1993-2026";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +21179;5800205583;"Fascism";journal;"22116249, 22116257";"Brill Academic Publishers";Yes;No;0,212;Q1;13;0;42;0;54;42;1,38;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2024";"History (Q1); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21180;21101021025;"French Screen Studies";journal;"26438941, 2643895X";"Routledge";No;No;0,212;Q1;16;29;74;1104;38;65;0,37;38,07;57,14;0;United Kingdom;Western Europe;"Routledge";"2020-2026";"Visual Arts and Performing Arts (Q1); Communication (Q3)";"Arts and Humanities; Social Sciences" +21181;19900192512;"Journal of Modern European History";journal;"16118944, 26319764";"Verlag C.H. Beck";No;No;0,212;Q1;18;30;105;1406;98;92;0,60;46,87;35,42;0;Germany;Western Europe;"Verlag C.H. Beck";"2010-2026";"History (Q1)";"Arts and Humanities" +21182;21101020140;"Text (Australia)";journal;"13279556";"Australasian Association of Writing Programs";No;No;0,212;Q1;5;63;131;1316;38;116;0,28;20,89;71,43;0;Australia;Pacific Region;"Australasian Association of Writing Programs";"2019-2026";"Literature and Literary Theory (Q1); Education (Q3)";"Arts and Humanities; Social Sciences" +21183;21100207623;"Anthropozoologica";journal;"07613032, 21070881";"Museum National d'Histoire Naturelle";Yes;No;0,212;Q2;15;10;31;852;17;31;0,39;85,20;37,50;0;France;Western Europe;"Museum National d'Histoire Naturelle";"2009, 2011-2026";"Anthropology (Q2); Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences; Social Sciences" +21184;21100864710;"Canadian Journal of Bioethics";journal;"25614665";"University of Montreal";Yes;Yes;0,212;Q2;12;52;187;1758;99;181;0,55;33,81;55,70;0;Canada;Northern America;"University of Montreal";"2018-2026";"Philosophy (Q2); Health Policy (Q4); Health (social science) (Q4)";"Arts and Humanities; Medicine; Social Sciences" +21185;5800207832;"Estudios de Cultura Maya";journal;"24485179, 01852574";"Universidad Nacional Autonoma de Mexico, Instituto de Investigaciones Filosoficas";Yes;Yes;0,212;Q2;10;22;66;1289;16;66;0,28;58,59;34,78;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico, Instituto de Investigaciones Filosoficas";"2013-2025";"Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21186;21101266480;"Intercultural Communication Education";journal;"22091041";"Castledown Publishers";Yes;Yes;0,212;Q2;7;14;16;710;30;15;1,00;50,71;54,17;0;Australia;Pacific Region;"Castledown Publishers";"2021-2026";"Cultural Studies (Q2); Linguistics and Language (Q2); Communication (Q3); Education (Q3)";"Social Sciences" +21187;21100815354;"JLIS.it";journal;"20381026, 20385366";"Universita di Firenze, Dipartimento di Storia, Archeologia, Geografia, Arte e Spettacolo";Yes;Yes;0,212;Q2;11;21;128;646;66;123;0,49;30,76;46,67;0;Italy;Western Europe;"Universita di Firenze, Dipartimento di Storia, Archeologia, Geografia, Arte e Spettacolo";"2017-2026";"Conservation (Q2); Library and Information Sciences (Q3); Computer Science Applications (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +21188;21101041815;"Journal of ASEAN Studies";journal;"23381361, 23381353";"Bina Nusantara University";Yes;No;0,212;Q2;9;10;59;686;83;54;1,16;68,60;54,17;0;Indonesia;Asiatic Region;"Bina Nusantara University";"2019-2025";"Cultural Studies (Q2); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21189;21101162521;"Journal of Engineering for Sustainable Buildings and Cities";journal;"26426625, 26426641";"The American Society of Mechanical Engineers(ASME)";No;No;0,212;Q2;10;25;72;1171;67;67;1,02;46,84;26,92;0;United States;Northern America;"The American Society of Mechanical Engineers(ASME)";"2020-2026";"Architecture (Q2); Engineering (miscellaneous) (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4)";"Engineering" +21190;21101388870;"Journal of Islamic Economic Laws";journal;"26559609, 26559617";"Muhammadiyah University of Surakarta";Yes;No;0,212;Q2;10;20;42;992;72;42;1,25;49,60;20,00;0;Indonesia;Asiatic Region;"Muhammadiyah University of Surakarta";"2021-2026";"Religious Studies (Q2); Law (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +21191;12100156447;"Journal of Popular Music Studies";journal;"15331598, 15242226";"Wiley-Blackwell Publishing Ltd";No;No;0,212;Q2;20;15;101;681;45;85;0,55;45,40;28,57;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1988-1997, 1999, 2001-2025";"Music (Q2)";"Arts and Humanities" +21192;21101192894;"Journal of Studies in Science and Engineering";journal;"2789634X";"EngiScience Publisher";Yes;No;0,212;Q2;6;18;56;704;69;56;1,03;39,11;22,22;0;Iraq;Middle East;"EngiScience Publisher";"2021-2025";"Architecture (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Civil and Structural Engineering (Q4); Computer Science (miscellaneous) (Q4); Environmental Engineering (Q4); Materials Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Computer Science; Engineering; Environmental Science; Materials Science; Mathematics" +21193;12008;"Teruleti Statisztika";journal;"20648251, 00187828";"Hungarian Central Statistical Office";No;No;0,212;Q2;15;40;85;1976;71;85;0,90;49,40;27,50;0;Hungary;Eastern Europe;"Hungarian Central Statistical Office";"1980, 1982-1983, 1985, 2016-2026";"Cultural Studies (Q2); Geography, Planning and Development (Q3); Economics and Econometrics (Q4); Public Administration (Q4); Statistics and Probability (Q4)";"Economics, Econometrics and Finance; Mathematics; Social Sciences" +21194;21100258744;"Advances in Culture, Tourism and Hospitality Research";book series;"18713173";"Emerald Group Publishing Ltd.";Yes;No;0,212;Q3;18;15;32;523;27;10;0,84;34,87;16,67;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2019, 2024-2026";"Social Sciences (miscellaneous) (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +21195;21100224444;"Agronomia Colombiana";journal;"23573732, 01209965";"Universidad Nacional de Colombia";Yes;Yes;0,212;Q3;22;34;139;1622;119;132;0,72;47,71;37,89;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2010, 2012-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q3); Forestry (Q3); Horticulture (Q3)";"Agricultural and Biological Sciences" +21196;21101073950;"Annals of Critical Care";journal;"1818474X, 17269806";"Practical Medicine Publishing House LLC";Yes;Yes;0,212;Q3;11;51;142;2750;138;138;0,95;53,92;39,86;0;Russian Federation;Eastern Europe;"Practical Medicine Publishing House LLC";"2017-2026";"Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3); Emergency Medical Services (Q3); Emergency Medicine (Q3); Law (Q3)";"Health Professions; Medicine; Social Sciences" +21197;21100829905;"Bulletin of Educational Psychology";journal;"10115714";"National Taiwan Normal University";No;No;0,212;Q3;9;19;109;1507;59;109;0,39;79,32;40,68;0;Taiwan;Asiatic Region;"National Taiwan Normal University";"2015-2025";"Education (Q3); Developmental and Educational Psychology (Q4)";"Psychology; Social Sciences" +21198;21100903428;"Drug Delivery Letters";journal;"2210304X, 22103031";"Bentham Science Publishers";No;No;0,212;Q3;10;51;73;5176;121;66;1,75;101,49;40,56;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2018-2026";"Pharmaceutical Science (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Biomedical Engineering (Q4)";"Engineering; Pharmacology, Toxicology and Pharmaceutics" +21199;19700190343;"EDPACS";trade journal;"19361009, 07366981";"Taylor and Francis Ltd.";No;No;0,212;Q3;17;117;97;5050;244;96;2,89;43,16;27,89;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1973-1997, 2003-2026";"Computer Networks and Communications (Q3); Safety Research (Q4); Software (Q4)";"Computer Science; Social Sciences" +21200;25886;"Geografia Fisica e Dinamica Quaternaria";journal;"03919838, 17244781";"Comitato Glaciologico Italiano";No;No;0,212;Q3;31;15;30;870;25;30;0,84;58,00;45,68;0;Italy;Western Europe;"Comitato Glaciologico Italiano";"1978-2025";"Earth-Surface Processes (Q3)";"Earth and Planetary Sciences" +21201;21101092880;"Health Professions Education";journal;"24523011";"";Yes;Yes;0,212;Q3;28;45;89;1710;58;84;0,68;38,00;61,26;0;Saudi Arabia;Middle East;"";"2015-2025";"Education (Q3); Nursing (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Nursing; Social Sciences" +21202;21100440512;"International Journal of Nutrition, Pharmacology, Neurological Diseases";journal;"22310738, 22312722";"Wolters Kluwer Medknow Publications";No;No;0,212;Q3;15;77;150;2133;121;148;0,89;27,70;42,20;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2014-2025";"Pharmacology (medical) (Q3); Neurology (clinical) (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +21203;21100219304;"International Journal of Therapy and Rehabilitation";journal;"17411645, 1759779X";"Mark Allen Publishing Ltd.";No;No;0,212;Q3;34;41;146;1376;72;113;0,49;33,56;57,03;0;United Kingdom;Western Europe;"Mark Allen Publishing Ltd.";"1996-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)";"Health Professions; Medicine" +21204;21100856608;"Journal of Chiropractic Education";journal;"2374250X, 10425055";"Allen Press Inc.";Yes;No;0,212;Q3;13;6;75;223;51;75;0,53;37,17;58,33;0;United States;Northern America;"Allen Press Inc.";"2017-2025";"Chiropractics (Q3)";"Health Professions" +21205;21100898633;"Journal of Contemporary Eastern Asia";journal;"23839449";"World Association for Triple helix and Future strategy studies";Yes;Yes;0,212;Q3;11;17;22;911;25;22;1,00;53,59;36,67;0;South Korea;Asiatic Region;"World Association for Triple helix and Future strategy studies";"2018-2025";"Communication (Q3); Computer Networks and Communications (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Computer Science; Economics, Econometrics and Finance; Social Sciences" +21206;21101293889;"Journal of Trends in Computer Science and Smart Technology";journal;"25824104";"Inventive Research Organization";No;No;0,212;Q3;8;38;84;957;108;84;1,48;25,18;43,14;0;India;Asiatic Region;"Inventive Research Organization";"2022-2025";"Computer Networks and Communications (Q3); Computer Vision and Pattern Recognition (Q3); Artificial Intelligence (Q4); Information Systems (Q4)";"Computer Science" +21207;4000148111;"Medecine Palliative";journal;"16366522";"Elsevier Masson s.r.l.";No;No;0,212;Q3;12;40;121;745;44;108;0,49;18,63;67,37;0;France;Western Europe;"Elsevier Masson s.r.l.";"1970, 2004-2026";"Anesthesiology and Pain Medicine (Q3); Oncology (Q4); Oncology (nursing) (Q4)";"Medicine; Nursing" +21208;29483;"Physics of Atomic Nuclei";journal;"10637788, 1562692X";"Pleiades Publishing";No;No;0,212;Q3;52;380;1017;7261;468;1017;0,49;19,11;24,83;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Nuclear and High Energy Physics (Q3); Atomic and Molecular Physics, and Optics (Q4)";"Physics and Astronomy" +21209;4700152250;"Revista Brasileira de Ciencias Sociais";journal;"01026909, 18069053";"Associacao Nacional de Pos-Graduacao e Pesquisa em Ciencias Sociais - ANPOCS";Yes;No;0,212;Q3;23;37;112;1670;50;111;0,41;45,14;61,54;0;Brazil;Latin America;"Associacao Nacional de Pos-Graduacao e Pesquisa em Ciencias Sociais - ANPOCS";"2006-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21210;21100812121;"Serbian Journal of Electrical Engineering";journal;"14514869, 22177183";"University of Kragujevac Faculty of Technical Sciences in Cacak";Yes;Yes;0,212;Q3;11;23;70;686;80;70;1,21;29,83;15,15;0;Serbia;Eastern Europe;"University of Kragujevac Faculty of Technical Sciences in Cacak";"2016-2025";"Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Control and Systems Engineering (Q4); Energy Engineering and Power Technology (Q4); Hardware and Architecture (Q4); Mechanical Engineering (Q4)";"Computer Science; Energy; Engineering" +21211;4700153605;"Tongxin Xuebao/Journal on Communications";journal;"1000436X";"Editorial Board of Journal on Communications";Yes;No;0,212;Q3;38;215;695;8197;896;695;1,19;38,13;33,53;0;China;Asiatic Region;"Editorial Board of Journal on Communications";"2005-2025";"Computer Networks and Communications (Q3); Signal Processing (Q3); Information Systems (Q4)";"Computer Science" +21212;17700156003;"WSEAS Transactions on Computer Research";journal;"24151521, 19918755";"World Scientific and Engineering Academy and Society";No;No;0,212;Q3;11;61;114;1833;162;114;1,47;30,05;36,81;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2008, 2019-2026";"Electrical and Electronic Engineering (Q3); Engineering (miscellaneous) (Q3); Computer Science Applications (Q4); Computer Science (miscellaneous) (Q4)";"Computer Science; Engineering" +21213;21101283317;"Acta Microbiologica Hellenica (Switzerland)";journal;"28139054";"Multidisciplinary Digital Publishing Institute (MDPI)";No;No;0,212;Q4;5;47;59;3024;39;54;0,88;64,34;45,27;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2024-2025";"Microbiology (medical) (Q4)";"Medicine" +21214;22019;"Indian Journal of Fisheries";journal;"09706011";"Indian Council of Agricultural Research";No;No;0,212;Q4;25;80;235;3235;197;210;0,83;40,44;32,52;1;India;Asiatic Region;"Indian Council of Agricultural Research";"1974, 1977-1983, 2009-2014, 2016-2025";"Aquatic Science (Q4)";"Agricultural and Biological Sciences" +21215;29985;"Klinicka Onkologie";journal;"0862495X, 18025307";"Czech Medical Association J.E. Purkyne";No;No;0,212;Q4;17;52;188;1519;92;157;0,45;29,21;44,91;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1993-2025";"Oncology (Q4)";"Medicine" +21216;77152;"Lecture Notes in Physics";book series;"00758450, 16166361";"Springer Science and Business Media Deutschland GmbH";No;No;0,212;Q4;75;17;346;1985;200;2;0,88;116,76;0,00;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1972, 1978, 1980-1986, 1988-1989, 1992, 1995, 1997, 2000-2001, 2003-2026";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +21217;21100915267;"Nanoscience and Technology";journal;"25724258, 25724266";"Begell House Inc.";No;No;0,212;Q4;18;23;74;886;92;74;1,10;38,52;23,73;0;United States;Northern America;"Begell House Inc.";"2019-2025";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +21218;21100902612;"Plant Science Today";journal;"23481900";"Horizon e-Publishing Group";Yes;No;0,212;Q4;22;1385;1118;64629;1206;1118;1,01;46,66;35,02;1;India;Asiatic Region;"Horizon e-Publishing Group";"2018-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +21219;21101256261;"Revista Brasileira de Ciencias Ambientais";journal;"21769478, 18084524";"ABES - Associacao Brasileira de Engenharia Sanitaria e Ambiental";Yes;Yes;0,212;Q4;5;60;161;3021;120;161;0,82;50,35;47,56;0;Brazil;Latin America;"ABES - Associacao Brasileira de Engenharia Sanitaria e Ambiental";"2022-2025";"Environmental Science (miscellaneous) (Q4)";"Environmental Science" +21220;20904;"Zhongguo ji sheng chong xue yu ji sheng chong bing za zhi = Chinese journal of parasitology & parasitic diseases";journal;"10007423";"National Institute of Parasitic Diseases";No;No;0,212;Q4;26;142;397;4051;269;397;0,75;28,53;45,58;0;China;Asiatic Region;"National Institute of Parasitic Diseases";"1987-1995, 1998-2016, 2019-2025";"Infectious Diseases (Q4); Parasitology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Immunology and Microbiology; Medicine" +21221;21100197325;"International Congress on Ultra Modern Telecommunications and Control Systems and Workshops";conference and proceedings;"21570221, 2157023X";"IEEE Computer Society";No;No;0,212;-;25;50;119;959;103;116;0,67;19,18;23,78;0;United States;Northern America;"IEEE Computer Society";"2011-2025";"Computer Networks and Communications; Control and Systems Engineering";"Computer Science; Engineering" +21222;21100248833;"International Symposium on Medical Information and Communication Technology, ISMICT";conference and proceedings;"23268301, 2326828X";"IEEE Computer Society";No;No;0,212;-;18;41;62;749;58;57;0,88;18,27;32,26;0;United States;Northern America;"IEEE Computer Society";"2013-2025";"Computer Networks and Communications; Health Informatics; Health Information Management; Information Systems";"Computer Science; Health Professions; Medicine" +21223;145120;"Proceedings - Symposium on Computer Architecture and High Performance Computing";conference and proceedings;"15506533";"IEEE Computer Society";No;No;0,212;-;24;27;123;881;93;105;0,77;32,63;15,05;0;United States;Northern America;"IEEE Computer Society";"1998, 2002-2009, 2011-2014, 2016, 2019-2025";"Engineering (miscellaneous); Hardware and Architecture; Software";"Computer Science; Engineering" +21224;21100814501;"Proceedings of the European Conference on Synthetic Aperture Radar, EUSAR";conference and proceedings;"21974403";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,212;-;27;0;438;0;179;434;0,44;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2008, 2010, 2012, 2014, 2016, 2018, 2021-2022, 2024";"Control and Systems Engineering; Instrumentation; Signal Processing";"Computer Science; Engineering; Physics and Astronomy" +21225;21101039071;"Acta Facultatis Philosophicae Universitatis Ostravienis Studia Germanistica";journal;"25710273, 1803408X";"University of Ostrava, Faculty of Arts";Yes;Yes;0,211;Q1;2;10;47;305;5;47;0,09;30,50;80,00;0;Czech Republic;Eastern Europe;"University of Ostrava, Faculty of Arts";"2019-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +21226;21100455209;"Akkadica";journal;"07797842, 13785087";"Assyriological Center Georges Dossin";No;No;0,211;Q1;5;0;28;0;9;28;0,43;0,00;0,00;0;Belgium;Western Europe;"Assyriological Center Georges Dossin";"2015-2024";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21227;21100996944;"Historia Ambiental Latinoamericana y Caribena";journal;"22372717";"Centro Universitario de Anapolis";Yes;Yes;0,211;Q1;9;49;183;2195;68;168;0,26;44,80;42,65;0;Brazil;Latin America;"Centro Universitario de Anapolis";"2017-2025";"History (Q1); Environmental Science (miscellaneous) (Q4)";"Arts and Humanities; Environmental Science" +21228;21100829237;"Historical Encounters";journal;"22037543";"HERMES History Education Research Network";Yes;Yes;0,211;Q1;14;8;56;362;51;54;0,75;45,25;30,00;0;Australia;Pacific Region;"HERMES History Education Research Network";"2014-2025";"History (Q1)";"Arts and Humanities" +21229;15883;"Journal of Modern History";journal;"15375358, 00222801";"University of Chicago Press";No;No;0,211;Q1;41;18;50;415;45;46;0,78;23,06;21,05;0;United States;Northern America;"University of Chicago Press";"1975, 1978-1979, 1982, 1987, 1997-2025";"History (Q1)";"Arts and Humanities" +21230;21100201721;"Cosmos and History";journal;"18329101";"Cosmos Publishing Cooperative";Yes;No;0,211;Q2;13;23;110;1175;29;110;0,23;51,09;13,64;0;Australia;Pacific Region;"Cosmos Publishing Cooperative";"2011-2025";"Philosophy (Q2)";"Arts and Humanities" +21231;21101005197;"Departures in Critical Qualitative Research";journal;"23339489, 23339497";"University of California Press";No;No;0,211;Q2;8;15;61;526;32;52;0,59;35,07;58,82;0;United States;Northern America;"University of California Press";"2019-2025";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +21232;21101041806;"Meridians";journal;"15478424, 15366936";"Duke University Press";No;No;0,211;Q2;8;32;83;1061;64;75;0,88;33,16;81,08;0;United States;Northern America;"Duke University Press";"2019-2025";"Anthropology (Q2); Gender Studies (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21233;21101033942;"Onomastica";journal;"00784648";"Polish Academy of Sciences, Institute of Polish Language";Yes;Yes;0,211;Q2;5;23;69;827;19;69;0,22;35,96;78,57;0;Poland;Eastern Europe;"Polish Academy of Sciences, Institute of Polish Language";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +21234;21100780996;"Psychology, Journal of the Higher School of Economics";journal;"18138918";"National Research University Higher School of Economics (HSE University)";No;No;0,211;Q2;12;46;141;1785;79;133;0,61;38,80;59,05;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2016-2025";"Cultural Studies (Q2); Education (Q3); Psychology (miscellaneous) (Q4)";"Psychology; Social Sciences" +21235;21100855504;"Slovenska Archeologia";journal;"13350102";"Archeologicky Ustav Slovenskej Akdemie Vied";No;No;0,211;Q2;6;0;58;0;15;58;0,20;0,00;0,00;0;Slovakia;Eastern Europe;"Archeologicky Ustav Slovenskej Akdemie Vied";"2017-2024";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21236;21101151938;"Studia Ecologiae et Bioethicae";journal;"17331218, 2719826X";"Scientific Publishing House of the Cardinal Stefan Wyszynski University";Yes;Yes;0,211;Q2;5;35;98;1294;68;96;0,80;36,97;33,33;0;Poland;Eastern Europe;"Scientific Publishing House of the Cardinal Stefan Wyszynski University";"2019-2026";"Arts and Humanities (miscellaneous) (Q2); Philosophy (Q2); Environmental Science (miscellaneous) (Q4); Health Policy (Q4)";"Arts and Humanities; Environmental Science; Medicine" +21237;21100815304;"African Journal of Food, Agriculture, Nutrition and Development";journal;"16845358, 16845374";"African Scholarly Science Communications Trust (ASSCAT)";Yes;No;0,211;Q3;22;140;466;4819;418;463;0,85;34,42;41,50;0;Kenya;Africa;"African Scholarly Science Communications Trust (ASSCAT)";"2011, 2016-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Food Science (Q3); Development (Q4)";"Agricultural and Biological Sciences; Social Sciences" +21238;21101046173;"Argumentation and Advocacy";journal;"25768476, 10511431";"Informa Healthcare";No;No;0,211;Q3;30;20;44;1085;26;43;0,42;54,25;53,57;0;United Kingdom;Western Europe;"Informa Healthcare";"1986-1987, 1989-2026";"Communication (Q3)";"Social Sciences" +21239;21100869867;"Asian Fisheries Science";journal;"20733720, 01166514";"Asian Fisheries Society";Yes;Yes;0,211;Q3;18;18;67;1081;61;66;0,66;60,06;36,67;0;Malaysia;Asiatic Region;"Asian Fisheries Society";"1994, 2009, 2011, 2017-2025";"Food Science (Q3); Aquatic Science (Q4); Ecology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21240;19472;"Beijing Daxue Xuebao (Ziran Kexue Ban)/Acta Scientiarum Naturalium Universitatis Pekinensis";journal;"04798023";"Peking University";No;No;0,211;Q3;34;111;334;4280;301;334;0,93;38,56;39,96;0;China;Asiatic Region;"Peking University";"2001-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +21241;26644;"Concurrent Engineering Research and Applications";journal;"15312003, 1063293X";"SAGE Publications Ltd";No;No;0,211;Q3;47;19;59;1009;79;56;1,80;53,11;26,32;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1993-2026";"Engineering (miscellaneous) (Q3); Computer Science Applications (Q4); Modeling and Simulation (Q4)";"Computer Science; Engineering; Mathematics" +21242;21374;"Fabad Journal of Pharmaceutical Sciences";journal;"13004182";"Society of Pharmaceutical Sciences of Ankara (FABAD)";No;No;0,211;Q3;23;57;114;2454;114;114;1,19;43,05;57,45;0;Turkey;Middle East;"Society of Pharmaceutical Sciences of Ankara (FABAD)";"1999-2001, 2003-2025";"Pharmaceutical Science (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +21243;19700174939;"Indian Journal of Medical and Paediatric Oncology";journal;"09752129, 09715851";"Georg Thieme Verlag";Yes;Yes;0,211;Q3;36;146;309;3369;162;289;0,53;23,08;45,68;0;India;Asiatic Region;"Georg Thieme Verlag";"2009-2026";"Pediatrics, Perinatology and Child Health (Q3); Oncology (Q4)";"Medicine" +21244;21100935900;"InterEULawEast";journal;"18493734, 18494439";"University of Zagreb Faculty of Economics and Business";Yes;No;0,211;Q3;8;16;74;729;59;69;0,54;45,56;29,17;0;Croatia;Eastern Europe;"University of Zagreb Faculty of Economics and Business";"2019-2026";"Law (Q3)";"Social Sciences" +21245;19900193261;"Iranian Journal of Materials Science and Engineering";journal;"17350808, 23833882";"Iran University of Science and Technology";Yes;Yes;0,211;Q3;20;50;153;2187;149;153;0,97;43,74;35,03;0;Iran;Middle East;"Iran University of Science and Technology";"2010-2025";"Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +21246;21100901155;"Journal of Animal Health and Production";journal;"23082801";"ResearchersLinks Ltd";No;No;0,211;Q3;13;287;248;11896;271;248;1,10;41,45;36,68;0;Pakistan;Asiatic Region;"ResearchersLinks Ltd";"2018-2026";"Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences; Veterinary" +21247;21101079106;"Journal of Automotive Safety and Energy";journal;"16748484";"Tsinghua University Press";No;No;0,211;Q3;14;55;241;1664;198;241;0,72;30,25;27,08;0;China;Asiatic Region;"Tsinghua University Press";"2019-2025";"Automotive Engineering (Q3); Safety, Risk, Reliability and Quality (Q3); Control and Systems Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +21248;13557;"Journal of Chemical Engineering of Japan";journal;"00219592";"Taylor and Francis Ltd.";Yes;No;0,211;Q3;57;0;85;0;94;85;1,82;0,00;0,00;0;Japan;Asiatic Region;"Taylor and Francis Ltd.";"1968-2024";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +21249;19900191968;"Journal of Communications Software and Systems";journal;"18456421, 18466079";"Croatian Communications and Information Society";Yes;No;0,211;Q3;21;49;98;1768;120;97;1,38;36,08;32,48;0;Croatia;Eastern Europe;"Croatian Communications and Information Society";"2006-2026";"Electrical and Electronic Engineering (Q3); Software (Q4)";"Computer Science; Engineering" +21250;21100396634;"Journal of Educational, Cultural and Psychological Studies";journal;"20377924, 20377932";"LED Edizioni Universitarie";Yes;Yes;0,211;Q3;14;13;73;371;47;66;0,55;28,54;67,65;0;Italy;Western Europe;"LED Edizioni Universitarie";"2014-2026";"Education (Q3); Developmental and Educational Psychology (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +21251;21101196448;"Journal of Horticulture and Postharvest Research";journal;"25886169, 25884883";"University of Birjand";Yes;No;0,211;Q3;7;37;98;1774;117;98;1,29;47,95;41,51;0;Iran;Middle East;"University of Birjand";"2022-2026";"Horticulture (Q3)";"Agricultural and Biological Sciences" +21252;12492;"Journal of Information Science and Engineering";journal;"10162364";"Institute of Information Science";No;No;0,211;Q3;44;90;236;2810;208;232;1,02;31,22;28,46;0;Taiwan;Asiatic Region;"Institute of Information Science";"1993-1994, 1996-2026";"Library and Information Sciences (Q3); Computational Theory and Mathematics (Q4); Hardware and Architecture (Q4); Human-Computer Interaction (Q4); Software (Q4)";"Computer Science; Social Sciences" +21253;16813;"Journal of Rehabilitation";journal;"00224154";"National Rehabilitation Association";No;No;0,211;Q3;43;0;22;0;18;22;0,71;0,00;0,00;0;United States;Northern America;"National Rehabilitation Association";"1945-1984, 1991, 1996-2023";"Rehabilitation (Q3); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Psychology" +21254;12515;"Journal of Russian Laser Research";journal;"10712836, 15738760";"Springer New York";No;No;0,211;Q3;30;14;228;458;169;228;0,80;32,71;25,58;0;United States;Northern America;"Springer New York";"1994-2026";"Engineering (miscellaneous) (Q3); Atomic and Molecular Physics, and Optics (Q4)";"Engineering; Physics and Astronomy" +21255;21101301818;"Jurnal Kejuruteraan";journal;"22897526, 01280198";"National University of Malaysia";Yes;No;0,211;Q3;14;319;605;11647;658;605;1,04;36,51;39,39;1;Malaysia;Asiatic Region;"National University of Malaysia";"2021-2026";"Engineering (miscellaneous) (Q3)";"Engineering" +21256;21101075510;"Pharmacien Clinicien";journal;"27729532, 27729540";"Elsevier Masson s.r.l.";No;No;0,211;Q3;11;75;166;971;34;147;0,13;12,95;55,69;0;France;Western Europe;"Elsevier Masson s.r.l.";"2022-2026";"Pharmacology (medical) (Q3)";"Medicine" +21257;21523;"Russian Journal of Coordination Chemistry/Koordinatsionnaya Khimiya";journal;"10703284, 16083318";"Pleiades Publishing";No;No;0,211;Q3;33;100;326;4149;325;325;1,07;41,49;39,61;0;United States;Northern America;"Pleiades Publishing";"1996-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +21258;16611;"Serials Review";journal;"00987913";"Taylor and Francis Ltd.";No;No;0,211;Q3;28;15;70;475;47;65;0,63;31,67;58,70;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1973, 1975-2025";"Library and Information Sciences (Q3)";"Social Sciences" +21259;21101052351;"Annals of Thyroid";journal;"25226681";"AME Publishing Company";No;No;0,211;Q4;7;5;34;144;24;29;0,84;28,80;50,00;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2019-2025";"Endocrine and Autonomic Systems (Q4); Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +21260;31398;"Archives of Mechanics";journal;"03732029";"Institute of Fundamental Technological Research, Polish Academy of Sciences";Yes;Yes;0,211;Q4;33;25;72;911;86;71;0,65;36,44;11,86;0;Poland;Eastern Europe;"Institute of Fundamental Technological Research, Polish Academy of Sciences";"1971-1978, 1980, 1994, 2000-2025";"Condensed Matter Physics (Q4); Mechanical Engineering (Q4)";"Engineering; Physics and Astronomy" +21261;14899;"Clinical Neuropathology";journal;"07225091";"Dustri-Verlag Dr. Karl Feistle";No;No;0,211;Q4;50;31;94;644;54;70;0,57;20,77;42,50;0;Germany;Western Europe;"Dustri-Verlag Dr. Karl Feistle";"1982-2025";"Medicine (miscellaneous) (Q4); Neurology (Q4); Neurology (clinical) (Q4); Pathology and Forensic Medicine (Q4)";"Medicine; Neuroscience" +21262;21100216944;"Electronic Journal of Applied Statistical Analysis";journal;"20705948";"University of Salento";Yes;No;0,211;Q4;23;12;109;430;94;109;0,72;35,83;37,50;0;Italy;Western Europe;"University of Salento";"2008-2025";"Modeling and Simulation (Q4); Statistics and Probability (Q4)";"Mathematics" +21263;22589;"Estudios Geologicos";journal;"19883250, 03670449";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,211;Q4;34;16;22;706;21;22;1,06;44,13;35,29;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1976-1977, 1980-1983, 1991-2025";"Geology (Q4)";"Earth and Planetary Sciences" +21264;19700174992;"European Journal of Oncology Pharmacy";journal;"20327072, 17833914";"Lippincott Williams and Wilkins";Yes;No;0,211;Q4;7;1;19;39;17;18;1,14;39,00;0,00;0;Belgium;Western Europe;"Lippincott Williams and Wilkins";"2008-2015, 2017-2025";"Oncology (Q4); Pharmacology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +21265;100582;"Exploration Geophysics";journal;"18347533, 08123985";"Taylor and Francis Ltd.";No;No;0,211;Q4;54;0;160;0;119;157;0,74;0,00;0,00;0;Australia;Pacific Region;"Taylor and Francis Ltd.";"1970-2024";"Geology (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +21266;11500153501;"Pan-American Journal of Aquatic Sciences";journal;"18099009";"Instituto de oceanografia";Yes;No;0,211;Q4;26;24;60;1128;36;60;0,81;47,00;40,23;0;Brazil;Latin America;"Instituto de oceanografia";"2008-2025";"Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +21267;21086;"Pharmaceutical Chemistry Journal";journal;"15739031, 0091150X";"Springer New York";No;No;0,211;Q4;44;197;760;5998;733;759;0,85;30,45;53,12;0;United States;Northern America;"Springer New York";"1967-2026";"Drug Discovery (Q4); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +21268;11500153508;"Portugaliae Electrochimica Acta";journal;"08721904, 16471571";"Sociedade Portuguesa de Electroquimica";Yes;Yes;0,211;Q4;39;29;90;902;106;90;1,43;31,10;15,00;0;Portugal;Western Europe;"Sociedade Portuguesa de Electroquimica";"2008-2026";"Electrochemistry (Q4)";"Chemistry" +21269;19700182739;"Review of Development Finance";journal;"18799337";"AfricaGrowth Institute";Yes;No;0,211;Q4;37;11;30;613;19;30;0,80;55,73;7,69;0;South Africa;Africa;"AfricaGrowth Institute";"2011-2025";"Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +21270;21100828916;"Theoretical and Applied Ecology";journal;"19954301, 26188406";"Publishing House "O-Kratkoe"";Yes;No;0,211;Q4;11;92;337;2594;171;336;0,50;28,20;57,71;0;Russian Federation;Eastern Europe;"Publishing House "O-Kratkoe"";"2017-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21271;145097;"Conference Proceedings - IEEE International Conference on Systems, Man and Cybernetics";conference and proceedings;"1062922X, 25771655";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,211;-;72;0;2176;0;1818;2170;0,74;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992, 1995, 1997, 1999-2000, 2002, 2004-2012, 2014, 2019-2024";"Control and Systems Engineering; Electrical and Electronic Engineering; Engineering (miscellaneous); Human-Computer Interaction";"Computer Science; Engineering" +21272;21100198436;"International Conference on Emerging Trends in Engineering and Technology, ICETET";conference and proceedings;"21570485, 21570477";"IEEE Computer Society";No;No;0,211;-;17;185;240;3705;360;236;1,75;20,03;44,38;0;United States;Northern America;"IEEE Computer Society";"2011-2013, 2016, 2019, 2022-2023, 2025";"Computer Science (miscellaneous); Engineering (miscellaneous)";"Computer Science; Engineering" +21273;21101260302;"International Conference on Simulation of Semiconductor Processes and Devices, SISPAD";conference and proceedings;"19461577, 19461569";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,211;-;7;100;76;1227;54;74;0,71;12,27;17,95;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2010-2011, 2014-2021, 2023-2025";"Computer Science Applications; Electrical and Electronic Engineering; Modeling and Simulation";"Computer Science; Engineering; Mathematics" +21274;21100297817;"International Symposium on Image and Signal Processing and Analysis, ISPA";conference and proceedings;"18455921, 18492266";"IEEE Computer Society";No;No;0,211;-;26;43;45;940;41;43;0,91;21,86;23,73;0;United States;Northern America;"IEEE Computer Society";"2000-2001, 2003, 2013, 2017, 2019, 2021, 2023, 2025";"Computational Theory and Mathematics; Computer Graphics and Computer-Aided Design; Computer Vision and Pattern Recognition; Signal Processing";"Computer Science" +21275;16719;"Proceedings - Frontiers in Education Conference, FIE";conference and proceedings;"15394565";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,211;-;52;0;1560;0;1176;1555;0,72;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1976, 1978-1989, 1991-2013, 2015-2024";"Computer Science Applications; Education; Software";"Computer Science; Social Sciences" +21276;25516;"Proceedings - Graphics Interface";conference and proceedings;"07135424";"Canadian Information Processing Society";No;No;0,211;-;59;0;29;0;21;27;0,00;0,00;0,00;0;Canada;Northern America;"Canadian Information Processing Society";"1983-1987, 1989-1998, 2001-2022";"Computer Graphics and Computer-Aided Design";"Computer Science" +21277;5000154506;"Neohelicon";journal;"15882810, 03244652";"Springer Science and Business Media B.V.";No;No;0,210;Q1;15;58;154;2206;80;146;0,36;38,03;49,23;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1973-2002, 2005-2026";"Literature and Literary Theory (Q1); Arts and Humanities (miscellaneous) (Q2); Law (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +21278;21101361236;"Solska kronika";journal;"13186728";"Slovenian School Museum";No;No;0,210;Q1;2;21;61;745;6;52;0,16;35,48;45,45;0;Slovenia;Eastern Europe;"Slovenian School Museum";"2021-2025";"History (Q1); Cultural Studies (Q2); History and Philosophy of Science (Q2)";"Arts and Humanities; Social Sciences" +21279;21100198226;"Spatium";journal;"1450569X, 22178066";"Institut za Arhitekturu i Urbanizam Srbije";Yes;Yes;0,210;Q1;12;7;47;316;33;44;0,68;45,14;64,29;0;Serbia;Eastern Europe;"Institut za Arhitekturu i Urbanizam Srbije";"2011-2025";"Visual Arts and Performing Arts (Q1); Architecture (Q2); Urban Studies (Q3)";"Arts and Humanities; Engineering; Social Sciences" +21280;19900192008;"Sport History Review";journal;"10871659, 15432947";"Human Kinetics Publishers Inc.";No;No;0,210;Q1;10;15;45;688;28;36;0,81;45,87;28,57;0;United States;Northern America;"Human Kinetics Publishers Inc.";"1999, 2002, 2009-2025";"History (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)";"Arts and Humanities; Health Professions" +21281;21101128329;"Sporting Traditions";journal;"08132577";"Australian Society for Sports History";No;No;0,210;Q1;4;18;27;256;9;25;0,26;14,22;29,17;0;Australia;Pacific Region;"Australian Society for Sports History";"2019-2025";"History (Q1); Social Sciences (miscellaneous) (Q3); Health (social science) (Q4)";"Arts and Humanities; Social Sciences" +21282;21101220039;"Utafiti: Journal of African Perspectives";journal;"0856096X, 26836408";"Brill Academic Publishers";No;No;0,210;Q1;4;15;40;612;16;40;0,36;40,80;22,22;0;Netherlands;Western Europe;"Brill Academic Publishers";"2018-2025";"History (Q1); Literature and Literary Theory (Q1); Arts and Humanities (miscellaneous) (Q2); Philosophy (Q2)";"Arts and Humanities" +21283;21100198236;"Archaeologia Bulgarica";journal;"13109537";"Nous Publishers Ltd.";No;No;0,210;Q2;9;15;50;745;17;49;0,38;49,67;42,31;0;Bulgaria;Eastern Europe;"Nous Publishers Ltd.";"2011-2026";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21284;19700183128;"Archeometriai Muhely";journal;"1786271X";"Hungarian National Museum";No;No;0,210;Q2;10;16;72;688;19;70;0,35;43,00;40,00;0;Hungary;Eastern Europe;"Hungarian National Museum";"2010-2025";"Archeology (arts and humanities) (Q2)";"Arts and Humanities" +21285;21101360608;"Lietuvos Archeologija";journal;"25386514, 02078694";"Lithuanian Institute of History";Yes;No;0,210;Q2;2;12;33;578;7;24;0,11;48,17;54,55;0;Lithuania;Eastern Europe;"Lithuanian Institute of History";"2021-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21286;5600153995;"New German Critique";journal;"15581462, 0094033X";"Duke University Press";No;No;0,210;Q2;20;27;88;1080;28;61;0,34;40,00;39,29;0;United States;Northern America;"Duke University Press";"1988, 2007-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21287;22227;"Osiris";journal;"19338287, 03697827";"University of Chicago Press";No;No;0,210;Q2;39;13;44;315;34;43;0,84;24,23;61,11;0;United States;Northern America;"University of Chicago Press";"1985-1987, 1989-1990, 1992-1995, 1997-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21288;20400195023;"Pneuma";journal;"02720965, 15700747";"Brill Academic Publishers";No;No;0,210;Q2;18;25;65;2133;13;56;0,17;85,32;17,39;0;Netherlands;Western Europe;"Brill Academic Publishers";"1979-1981, 1985-1991, 1993-2025";"Religious Studies (Q2)";"Arts and Humanities" +21289;18700156707;"Teaching Theology and Religion";journal;"13684868, 14679647";"Wiley-Blackwell Publishing Ltd";No;No;0,210;Q2;15;22;60;655;20;47;0,40;29,77;42,11;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1998, 2001-2003, 2005-2007, 2009-2026";"Religious Studies (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +21290;15900154720;"Australian Journal of Crop Science";journal;"18352707, 18352693";"Southern Cross Publishing";Yes;No;0,210;Q3;65;122;387;5223;299;387;0,76;42,81;34,53;0;Australia;Pacific Region;"Southern Cross Publishing";"2009-2026";"Agronomy and Crop Science (Q3); Plant Science (Q4)";"Agricultural and Biological Sciences" +21291;21101169888;"Biotech Studies";journal;"27575233, 26873761";"Field Crops Central Research Institute";No;No;0,210;Q3;7;20;35;849;37;35;0,75;42,45;55,77;0;Turkey;Middle East;"Field Crops Central Research Institute";"2020-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Food Science (Q3); Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +21292;25156;"Cave and Karst Science";journal;"1356191X";"British Cave Research Association";No;No;0,210;Q3;21;24;74;619;15;52;0,15;25,79;20,83;0;United Kingdom;Western Europe;"British Cave Research Association";"1995-2025";"Earth-Surface Processes (Q3)";"Earth and Planetary Sciences" +21293;15974;"Circuit World";journal;"03056120";"Emerald Group Publishing Ltd.";No;No;0,210;Q3;29;8;130;250;164;130;1,48;31,25;31,03;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1974-2026";"Industrial and Manufacturing Engineering (Q3); Electrical and Electronic Engineering (Q4)";"Engineering" +21294;21100244867;"Empiria";journal;"21740682, 11395737";"Universidad Nacional de Educacion a Distancia (UNED)";Yes;Yes;0,210;Q3;15;15;80;669;48;80;0,63;44,60;42,31;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2013-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21295;21101343414;"Experimental Technology and Management";journal;"10024956";"Tsinghua University Press";No;No;0,210;Q3;8;325;1266;6729;650;1266;0,63;20,70;34,29;0;China;Asiatic Region;"Tsinghua University Press";"2021-2025";"Engineering (miscellaneous) (Q3); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +21296;21100896893;"Frontiers of Nursing";journal;"25448994";"Sciendo";Yes;Yes;0,210;Q3;11;61;153;1922;98;152;0,62;31,51;59,73;0;Poland;Eastern Europe;"Sciendo";"2018-2025";"Education (Q3); Nursing (miscellaneous) (Q3)";"Nursing; Social Sciences" +21297;21100824972;"HAYATI Journal of Biosciences";journal;"19783019, 20864094";"Institut Pertanian Bogor";Yes;No;0,210;Q3;34;152;324;6478;348;324;1,05;42,62;52,06;0;Indonesia;Asiatic Region;"Institut Pertanian Bogor";"2005-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +21298;21101175744;"Iberoamerican Journal of Science Measurement and Communication";journal;"27097595, 27093158";"Pro-Metrics";No;No;0,210;Q3;13;44;68;1338;100;66;1,32;30,41;28,16;0;Estonia;Eastern Europe;"Pro-Metrics";"2021-2026";"Communication (Q3); Library and Information Sciences (Q3); Media Technology (Q3); Social Sciences (miscellaneous) (Q3)";"Engineering; Social Sciences" +21299;21101277758;"International Journal of Empirical Economics";journal;"28109449, 28109430";"World Scientific";Yes;Yes;0,210;Q3;6;18;40;862;67;40;2,25;47,89;23,33;0;Singapore;Asiatic Region;"World Scientific";"2022-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +21300;21100848408;"International Journal of Integrated Engineering";journal;"2229838X";"Penerbit UTHM";Yes;No;0,210;Q3;25;200;744;6083;728;744;0,88;30,42;35,52;0;Malaysia;Asiatic Region;"Penerbit UTHM";"2017-2025";"Industrial and Manufacturing Engineering (Q3); Civil and Structural Engineering (Q4); Electrical and Electronic Engineering (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +21301;21100219935;"International Journal of Operations and Quantitative Management";journal;"10821910";"International Forum of Management Scholars (INFOMS)";No;No;0,210;Q3;16;35;101;1471;131;101;1,43;42,03;37,66;0;United States;Northern America;"International Forum of Management Scholars (INFOMS)";"2000-2025";"Information Systems and Management (Q3); Business and International Management (Q4); Management of Technology and Innovation (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences" +21302;21100817136;"International Journal of Sensors, Wireless Communications and Control";journal;"22103287, 22103279";"Bentham Science Publishers";No;No;0,210;Q3;18;51;118;2490;139;114;1,15;48,82;34,62;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2016-2026";"Computer Networks and Communications (Q3); Control and Optimization (Q3); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering; Mathematics" +21303;21100910239;"Journal of Elementary Education";journal;"23504803, 18554431";"University of Maribor Press";Yes;Yes;0,210;Q3;9;38;109;1347;65;105;0,57;35,45;59,77;0;Slovenia;Eastern Europe;"University of Maribor Press";"2015-2025";"Education (Q3); Developmental and Educational Psychology (Q4)";"Psychology; Social Sciences" +21304;21100886533;"Journal of Information Technology Case and Application Research";journal;"15228053, 23336897";"Taylor and Francis Ltd.";No;No;0,210;Q3;24;18;62;647;645;31;14,83;35,94;40,00;0;United States;Northern America;"Taylor and Francis Ltd.";"1999, 2005-2026";"Information Systems and Management (Q3); Management Science and Operations Research (Q4)";"Decision Sciences" +21305;21101029604;"Journal of Robotics, Networking and Artificial Life";journal;"23526386, 24059021";"ALife Robotics Corporation Ltd";Yes;No;0,210;Q3;10;30;132;358;78;132;0,47;11,93;16,16;0;Japan;Asiatic Region;"ALife Robotics Corporation Ltd";"2019-2025";"Computer Networks and Communications (Q3); Artificial Intelligence (Q4)";"Computer Science" +21306;21100888108;"Journal of South China Agricultural University";journal;"1001411X";"Editorial Department, Journal of South Agricultural University";Yes;No;0,210;Q3;16;93;301;3187;285;301;1,00;34,27;41,58;0;China;Asiatic Region;"Editorial Department, Journal of South Agricultural University";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +21307;21101246364;"Journal of Trauma and Injury";journal;"27994317, 22871683";"The Korean Society of Traumatology";Yes;Yes;0,210;Q3;5;56;185;1160;119;178;0,62;20,71;24,26;0;South Korea;Asiatic Region;"The Korean Society of Traumatology";"2019, 2021-2025";"Emergency Medicine (Q3); Surgery (Q3)";"Medicine" +21308;21101360986;"Journal of Urological Surgery";journal;"21489580";"Galenos Publishing House";Yes;No;0,210;Q3;4;45;153;995;78;153;0,51;22,11;11,90;0;Turkey;Middle East;"Galenos Publishing House";"2021-2025";"Surgery (Q3); Urology (Q3)";"Medicine" +21309;21100854712;"Montenegrin Journal of Economics";journal;"18006698, 18005845";"Economic Laboratory for Transition Research";Yes;Yes;0,210;Q3;25;81;216;2480;254;216;1,27;30,62;54,09;0;Montenegro;Eastern Europe;"Economic Laboratory for Transition Research";"2017-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +21310;21101171932;"Nanochemistry Research";journal;"25384279, 2423818X";"Iranian Chemical Society";Yes;Yes;0,210;Q3;11;40;82;2080;96;82;1,20;52,00;37,10;0;Iran;Middle East;"Iranian Chemical Society";"2019-2026";"Chemical Engineering (miscellaneous) (Q3); Condensed Matter Physics (Q4); Materials Chemistry (Q4); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Materials Science; Physics and Astronomy" +21311;21101121558;"Payesh";journal;"20084536, 16807626";"";Yes;Yes;0,210;Q3;9;70;186;2356;106;162;0,51;33,66;50,22;0;Iran;Middle East;"";"2019-2026";"Nursing (miscellaneous) (Q3); Health Informatics (Q4); Health Policy (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Nursing; Social Sciences" +21312;18239;"Relations Industrielles";journal;"0034379X, 17038138";"";No;No;0,210;Q3;34;18;106;892;70;101;0,26;49,56;54,05;0;Canada;Northern America;"";"1996-2011, 2016-2017, 2020, 2022-2025";"Social Sciences (miscellaneous) (Q3); Management of Technology and Innovation (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +21313;144881;"Revista de Logopedia, Foniatria y Audiologia";journal;"02144603, 15781712";"Elsevier Espana S.L.U";No;No;0,210;Q3;16;33;83;1423;51;67;0,47;43,12;80,30;0;Spain;Western Europe;"Elsevier Espana S.L.U";"1981-1995, 2005-2026";"LPN and LVN (Q3); Speech and Hearing (Q3)";"Health Professions; Nursing" +21314;29758;"Revista Mexicana de Fisica";journal;"0035001X";"Sociedad Mexicana de Fisica";Yes;No;0,210;Q3;37;111;334;4385;362;333;1,15;39,50;26,05;0;Mexico;Latin America;"Sociedad Mexicana de Fisica";"1981, 1991-1993, 1995-2026";"Education (Q3); Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy; Social Sciences" +21315;18112;"Sociologicky Casopis";journal;"00380288";"Sociologicky Ustav";Yes;No;0,210;Q3;28;14;92;784;62;86;0,46;56,00;48,39;0;Czech Republic;Eastern Europe;"Sociologicky Ustav";"1992, 1997-1998, 2002-2025";"Sociology and Political Science (Q3)";"Social Sciences" +21316;21100409809;"Studies in Ethnicity and Nationalism";journal;"14738481, 17549469";"Ain Shams University";No;No;0,210;Q3;27;35;65;2533;65;62;0,87;72,37;43,75;0;United Kingdom;Western Europe;"Ain Shams University";"2001-2026";"Sociology and Political Science (Q3)";"Social Sciences" +21317;21100232410;"Tilburg Law Review";journal;"22110046, 22112545";"Ubiquity Press";Yes;No;0,210;Q3;14;12;41;606;56;41;0,65;50,50;57,14;0;Netherlands;Western Europe;"Ubiquity Press";"2012-2025";"Law (Q3)";"Social Sciences" +21318;21100299415;"Voprosy Prakticheskoi Pediatrii";journal;"18177646, 24149705";"Dinastiia";No;No;0,210;Q3;12;79;304;2563;222;303;0,71;32,44;72,04;0;Russian Federation;Eastern Europe;"Dinastiia";"2013-2025";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +21319;21100940526;"Acta Hydrotechnica";journal;"15810267, 03523551";"University of Ljubljana, Faculty of Civil and Geodetic Engineering";No;No;0,210;Q4;9;5;29;156;23;29;0,80;31,20;27,27;0;Slovenia;Eastern Europe;"University of Ljubljana, Faculty of Civil and Geodetic Engineering";"2018-2025";"Environmental Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Environmental Science" +21320;13009;"Annales de Biologie Clinique";journal;"00033898, 19506112";"John Libbey";Yes;No;0,210;Q4;32;64;230;959;100;218;0,33;14,98;49,27;0;France;Western Europe;"John Libbey";"1945-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Immunology and Microbiology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +21321;21100225843;"Basic and Applied Herpetology";journal;"02136686";"Asociacion Herpetologica Espanola";Yes;No;0,210;Q4;13;3;24;207;20;24;0,47;69,00;43,75;0;Spain;Western Europe;"Asociacion Herpetologica Espanola";"2012-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +21322;21101255600;"Chinese Circulation Journal";journal;"10003614";"";No;No;0,210;Q4;16;167;489;5676;417;489;1,02;33,99;43,28;0;China;Asiatic Region;"";"2020-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +21323;24290;"Dianzi Yu Xinxi Xuebao/Journal of Electronics and Information Technology";journal;"10095896";"Science Press";Yes;No;0,210;Q4;37;209;1417;5817;1472;1417;0,96;27,83;31,73;0;China;Asiatic Region;"Science Press";"2001-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +21324;600147001;"Gerokomos";journal;"1134928X";"Spanish Publishers Associate";Yes;Yes;0,210;Q4;18;13;153;324;61;137;0,44;24,92;69,44;0;Spain;Western Europe;"Spanish Publishers Associate";"2005-2025";"Geriatrics and Gerontology (Q4); Gerontology (Q4)";"Medicine; Nursing" +21325;21101180666;"Inorganic Chemicals Industry";journal;"10064990";"";No;No;0,210;Q4;14;204;724;6047;712;724;1,03;29,64;40,27;0;China;Asiatic Region;"";"2019-2026";"Process Chemistry and Technology (Q4)";"Chemical Engineering" +21326;21100199341;"International Journal of Data Mining, Modelling and Management";journal;"17591163, 17591171";"Inderscience";No;No;0,210;Q4;18;16;60;903;100;60;2,05;56,44;50,00;0;Switzerland;Western Europe;"Inderscience";"2008-2026";"Computer Science Applications (Q4); Management Information Systems (Q4); Modeling and Simulation (Q4)";"Business, Management and Accounting; Computer Science; Mathematics" +21327;21100972595;"Iranian Journal of Toxicology";journal;"22519459, 20082967";"Arak University of Medical Sciences";Yes;Yes;0,210;Q4;10;18;96;760;76;96;0,75;42,22;52,86;0;Iran;Middle East;"Arak University of Medical Sciences";"2019-2025";"Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +21328;21101020138;"Journal of Public Health and Development";journal;"26511258, 26730774";"Mahidol University - ASEAN Institute for Health Development";No;No;0,210;Q4;6;75;210;3112;134;210;0,60;41,49;50,26;0;Thailand;Asiatic Region;"Mahidol University - ASEAN Institute for Health Development";"2019-2026";"Health Informatics (Q4); Health Policy (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +21329;21100925743;"Journal of Youth Development";journal;"23254009, 23254017";"Clemson University/TigerPrints";Yes;Yes;0,210;Q4;15;33;79;1688;70;75;0,68;51,15;70,94;0;United States;Northern America;"Clemson University/TigerPrints";"2006, 2008, 2011-2014, 2016-2017, 2019-2025";"Developmental and Educational Psychology (Q4); Life-span and Life-course Studies (Q4)";"Psychology; Social Sciences" +21330;21100876244;"Korean Journal of Mycology";journal;"23835249, 0253651X";"Korean Society of Mycology";Yes;No;0,210;Q4;9;26;144;579;74;144;0,49;22,27;42,25;0;South Korea;Asiatic Region;"Korean Society of Mycology";"2018-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21331;37960;"Magnetohydrodynamics";journal;"0024998X, 15740579";"University of Latvia";No;No;0,210;Q4;28;29;100;498;35;100;0,31;17,17;20,83;0;Latvia;Eastern Europe;"University of Latvia";"1970-1991, 1996-2025";"Electrical and Electronic Engineering (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Engineering; Physics and Astronomy" +21332;21101039619;"Moneta e Credito";journal;"00269611, 20373651";"Associazione Economia Civile";Yes;Yes;0,210;Q4;6;15;68;778;23;67;0,33;51,87;24,00;0;Italy;Western Europe;"Associazione Economia Civile";"2019-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +21333;21100792089;"Ochrona Srodowiska i Zasobow Naturalnych";journal;"12307831, 23538589";"De Gruyter Open Ltd";Yes;No;0,210;Q4;11;9;50;396;31;50;0,75;44,00;68,42;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2016-2026";"Environmental Science (miscellaneous) (Q4)";"Environmental Science" +21334;18632;"Progress in Brain Research";book series;"18757855, 00796123";"Elsevier B.V.";No;No;0,210;Q4;172;95;285;9851;505;16;1,73;103,69;48,59;0;Netherlands;Western Europe;"Elsevier B.V.";"1963-1980, 1982-2025";"Neuroscience (miscellaneous) (Q4)";"Neuroscience" +21335;21100258755;"Revista Chapingo, Serie Horticultura";journal;"20074034, 1027152X";"Universidad Autonoma Chapingo";Yes;No;0,210;Q4;17;12;36;439;40;36;0,96;36,58;18,60;0;Mexico;Latin America;"Universidad Autonoma Chapingo";"2002, 2008-2025";"Horticulture (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +21336;21100407607;"Statistics in Transition New Series";journal;"24500291, 12347655";"Polskie Towarzystwo Semiotyczne";Yes;No;0,210;Q4;15;50;176;1572;126;159;0,62;31,44;34,44;0;Poland;Eastern Europe;"Polskie Towarzystwo Semiotyczne";"2015-2025";"Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics" +21337;14200154710;"Tanzania Journal of Health Research";journal;"18216404";"National Institute for Medical Research";Yes;No;0,210;Q4;34;98;154;3308;90;154;0,52;33,76;39,35;0;Tanzania;Africa;"National Institute for Medical Research";"2008-2019, 2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +21338;19600157349;"WSEAS Transactions on Biology and Biomedicine";journal;"22242902, 11099518";"World Scientific and Engineering Academy and Society";No;No;0,210;Q4;14;42;72;1340;82;72;1,14;31,90;48,37;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2009-2015, 2023-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Biomedical Engineering (Q4); Biotechnology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering" +21339;24067;"Zhongguo ying yong sheng li xue za zhi = Zhongguo yingyong shenglixue zazhi = Chinese journal of applied physiology";journal;"10006834";"Zhongguo Yingyong Shenglixue Zazhi Bianjibu";No;No;0,210;Q4;13;34;112;0;89;112;1,44;0,00;50,82;0;China;Asiatic Region;"Zhongguo Yingyong Shenglixue Zazhi Bianjibu";"1997, 2000-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +21340;20300195011;"International Conference on Systems, Signals, and Image Processing";conference and proceedings;"21578702, 21578672";"IEEE Computer Society";No;No;0,210;-;24;51;172;963;154;166;0,93;18,88;26,28;0;United States;Northern America;"IEEE Computer Society";"2011, 2013-2014, 2016-2020, 2022-2025";"Artificial Intelligence; Computer Networks and Communications; Signal Processing; Software";"Computer Science" +21341;700147012;"Papers Presented at the Annual Conference - Rural Electric Power Conference";conference and proceedings;"07347464";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,210;-;19;13;42;87;34;38;0,74;6,69;16,67;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1978-1981, 1983-2016, 2018-2019, 2021-2025";"Energy Engineering and Power Technology; Engineering (miscellaneous)";"Energy; Engineering" +21342;94730;"Proceedings - SPE Symposium on Improved Oil Recovery";conference and proceedings;"02717026";"Society of Petroleum Engineers (SPE)";No;No;0,210;-;61;0;237;0;249;235;1,18;0,00;0,00;0;United States;Northern America;"Society of Petroleum Engineers (SPE)";"1969, 1972, 1994, 1996, 1998, 2002, 2004, 2006, 2008, 2010, 2012, 2014, 2016, 2018, 2020, 2022, 2024";"Energy Engineering and Power Technology; Geotechnical Engineering and Engineering Geology";"Earth and Planetary Sciences; Energy" +21343;145755;"Proceedings of the Annual Hawaii International Conference on System Sciences";conference and proceedings;"15301605, 25726862";"IEEE Computer Society";No;No;0,210;-;107;894;2620;29394;1887;2256;0,72;32,88;34,59;0;United States;Northern America;"IEEE Computer Society";"1991, 1993, 1995-1996, 2000, 2002, 2005-2008, 2010-2025";"Engineering (miscellaneous)";"Engineering" +21344;21100239259;"SAE Technical Papers";conference and proceedings;"26883627, 01487191";"SAE International";No;No;0,210;-;127;2519;6052;52410;4110;5990;0,70;20,81;18,92;0;United States;Northern America;"SAE International";"1906-2026";"Automotive Engineering; Industrial and Manufacturing Engineering; Pollution; Safety, Risk, Reliability and Quality";"Engineering; Environmental Science" +21345;21100247037;"Anatolica";journal;"18756654, 00661554";"Peeters Publishers";No;No;0,209;Q1;10;0;27;0;11;27;0,21;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"2012-2022, 2024";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21346;21101171884;"Astragalo";journal;"11343672, 24690503";"Universidad de Sevilla";Yes;Yes;0,209;Q1;3;47;90;1335;19;85;0,12;28,40;38,89;1;Spain;Western Europe;"Universidad de Sevilla";"2019-2025";"History (Q1); Visual Arts and Performing Arts (Q1); Architecture (Q2); Philosophy (Q2); Geography, Planning and Development (Q3); Urban Studies (Q3)";"Arts and Humanities; Engineering; Social Sciences" +21347;21101045755;"Filosofiya. Zhurnal Vysshey Shkoly Ekonomiki";journal;"25878719";"National Research University Higher School of Economics (HSE University)";No;No;0,209;Q1;4;54;202;2041;27;171;0,15;37,80;36,07;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2019-2025";"History (Q1); History and Philosophy of Science (Q2); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +21348;19700201461;"Journal of Medieval Iberian Studies";journal;"17546559, 17546567";"Taylor and Francis Ltd.";No;No;0,209;Q1;15;28;66;2298;26;66;0,44;82,07;36,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"History (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21349;21101197370;"Journal of Olympic Studies";journal;"26396025";"University of Illinois Press";No;No;0,209;Q1;5;12;35;792;19;26;0,36;66,00;44,44;0;United States;Northern America;"University of Illinois Press";"2020-2025";"History (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21350;21100901813;"Orillas";journal;"22804390";"Padova University Press";Yes;Yes;0,209;Q1;5;56;129;1662;30;123;0,21;29,68;69,64;0;South Korea;Asiatic Region;"Padova University Press";"2018-2019, 2021-2025";"History (Q1); Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21351;21100890310;"Biblica et Patristica Thoruniensia";journal;"24507059, 16895150";"";Yes;Yes;0,209;Q2;4;25;72;1081;18;71;0,24;43,24;4,17;0;Poland;Eastern Europe;"";"2018-2025";"Religious Studies (Q2)";"Arts and Humanities" +21352;21100906914;"History of Humanities";journal;"23793171, 23793163";"University of Chicago Press";No;No;0,209;Q2;11;19;63;1199;27;51;0,38;63,11;27,27;0;United States;Northern America;"University of Chicago Press";"2016-2025";"Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +21353;5700170923;"Journal of Slavic Linguistics";journal;"10682090, 15430391";"Slavica Publishers";No;No;0,209;Q2;7;13;72;466;27;69;0,26;35,85;69,57;0;United States;Northern America;"Slavica Publishers";"2017-2025";"Linguistics and Language (Q2)";"Social Sciences" +21354;83063;"Journal of the California Dental Association";journal;"19424396, 10432256";"Taylor and Francis Ltd.";Yes;Yes;0,209;Q2;48;61;239;1331;106;171;0,75;21,82;56,07;0;United States;Northern America;"Taylor and Francis Ltd.";"1988-2016, 2020-2026";"Orthodontics (Q2); Periodontics (Q3)";"Dentistry" +21355;16819;"Journal of the History of the Neurosciences";journal;"17445213, 0964704X";"Taylor and Francis Ltd.";No;No;0,209;Q2;34;44;74;2462;35;70;0,57;55,95;26,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"History and Philosophy of Science (Q2); Neurology (clinical) (Q4); Neuroscience (miscellaneous) (Q4)";"Arts and Humanities; Medicine; Neuroscience" +21356;21100825185;"Muziki";journal;"1753593X, 18125980";"Routledge";No;No;0,209;Q2;13;10;30;442;17;25;0,35;44,20;30,00;0;United States;Northern America;"Routledge";"2004-2025";"Music (Q2)";"Arts and Humanities" +21357;21100920650;"New Global Studies";journal;"19400004";"Walter de Gruyter GmbH";No;No;0,209;Q2;14;16;49;942;50;48;0,97;58,88;15,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2007-2026";"Arts and Humanities (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +21358;21100945726;"Stasis";journal;"23103817, 25000721";"European University at Saint-Petersburg";No;No;0,209;Q2;8;6;25;278;3;22;0,17;46,33;100,00;0;Russian Federation;Eastern Europe;"European University at Saint-Petersburg";"2013-2025";"Philosophy (Q2)";"Arts and Humanities" +21359;19700175755;"Advances in Systems Science and Applications";journal;"10786236";"International Institute for General Systems Studies";No;No;0,209;Q3;16;31;145;792;93;145;0,70;25,55;26,97;0;United States;Northern America;"International Institute for General Systems Studies";"2009-2025";"Engineering (miscellaneous) (Q3); Multidisciplinary (Q3)";"Engineering; Multidisciplinary" +21360;7100153147;"Arab Law Quarterly";journal;"15730255, 02680556";"Brill Academic Publishers";No;No;0,209;Q3;21;38;50;4392;29;43;0,58;115,58;28,57;0;Netherlands;Western Europe;"Brill Academic Publishers";"1980, 1985, 1987-2004, 2006-2026";"Law (Q3)";"Social Sciences" +21361;21101028116;"Asia Pacific Scholar";journal;"24249335, 24249270";"Centre for Medical Education (CenMed) Yong Loo Lin School of Medicine National University of Singapore";Yes;Yes;0,209;Q3;9;61;158;942;75;112;0,36;15,44;54,62;0;Singapore;Asiatic Region;"Centre for Medical Education (CenMed) Yong Loo Lin School of Medicine National University of Singapore";"2019-2026";"Education (Q3); Health Professions (miscellaneous) (Q3); Reviews and References (medical) (Q3); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine; Social Sciences" +21362;15600154707;"Boletin de la Sociedad Geologica Mexicana";journal;"14053322";"Instituto de Geología, Universidad Nacional Autónoma de México";Yes;No;0,209;Q3;25;39;125;2600;71;125;0,48;66,67;31,71;0;Mexico;Latin America;"Instituto de Geología, Universidad Nacional Autónoma de México";"2008-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +21363;21101280902;"Central European Economic Journal";journal;"25436821";"Sciendo";No;No;0,209;Q3;9;22;73;1198;71;72;1,15;54,45;48,65;1;Poland;Eastern Europe;"Sciendo";"2017-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Finance (Q4)";"Economics, Econometrics and Finance" +21364;21100815415;"Colombia Forestal";journal;"01200739, 2256201X";"Universidad Distrital Francisco Jose de Caldas";Yes;Yes;0,209;Q3;11;18;44;970;31;44;0,60;53,89;30,65;0;Colombia;Latin America;"Universidad Distrital Francisco Jose de Caldas";"2016-2025";"Forestry (Q3); Nature and Landscape Conservation (Q3); Soil Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21365;21100455428;"Communications in Applied and Industrial Mathematics";journal;"20380909";"de Gruyter";Yes;No;0,209;Q3;16;4;31;126;39;30;1,43;31,50;23,08;0;Germany;Western Europe;"de Gruyter";"2014-2025";"Industrial and Manufacturing Engineering (Q3); Applied Mathematics (Q4)";"Engineering; Mathematics" +21366;21100826268;"Computer Science";journal;"23007036, 15082806";"AGH University of Science and Technology Press";Yes;Yes;0,209;Q3;12;16;72;804;64;72;0,69;50,25;35,71;0;Poland;Eastern Europe;"AGH University of Science and Technology Press";"2017-2025";"Computer Graphics and Computer-Aided Design (Q3); Computer Networks and Communications (Q3); Artificial Intelligence (Q4); Computational Theory and Mathematics (Q4); Computer Science (miscellaneous) (Q4); Computer Vision and Pattern Recognition (Q4); Modeling and Simulation (Q4)";"Computer Science; Mathematics" +21367;21100827151;"Foundation Review";journal;"19445660, 19445679";"Dorothy A. Johnson Center for Philanthropy, Grand Valley State University";No;No;0,209;Q3;18;25;83;423;45;74;0,62;16,92;82,35;0;United States;Northern America;"Dorothy A. Johnson Center for Philanthropy, Grand Valley State University";"2009-2013, 2015-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21368;17600155125;"Hellenic Plant Protection Journal";journal;"17913691";"Walter de Gruyter GmbH";No;No;0,209;Q3;14;3;25;35;21;25;0,80;11,67;14,29;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2009-2025";"Agronomy and Crop Science (Q3); Plant Science (Q4)";"Agricultural and Biological Sciences" +21369;24098;"Indian Journal of Chemical Technology";journal;"0971457X, 09750991";"National Institute of Science Communication and Policy Research";Yes;Yes;0,209;Q3;45;77;264;2804;250;264;1,07;36,42;36,36;0;India;Asiatic Region;"National Institute of Science Communication and Policy Research";"1994-2026";"Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +21370;21100984154;"Indian Journal of Research in Homoeopathy";journal;"23207094, 09747168";"Central Council for Research in Homoeopathy";Yes;No;0,209;Q3;7;47;104;1058;29;97;0,23;22,51;52,94;0;India;Asiatic Region;"Central Council for Research in Homoeopathy";"2019-2025";"Complementary and Alternative Medicine (Q3)";"Medicine" +21371;21100396345;"International Journal of Learning and Change";journal;"17402875, 17402883";"Inderscience";No;No;0,209;Q3;14;18;106;1049;114;106;1,39;58,28;33,33;0;Switzerland;Western Europe;"Inderscience";"2005, 2015-2025";"Education (Q3); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Social Sciences" +21372;21101280879;"International Journal of Medical Parasitology and Epidemiology Sciences";journal;"27666492";"Aras Part Medical International Press";No;No;0,209;Q3;5;24;72;741;45;65;0,75;30,88;30,95;0;Iran;Middle East;"Aras Part Medical International Press";"2021-2025";"Epidemiology (Q3); Infectious Diseases (Q4); Parasitology (Q4)";"Immunology and Microbiology; Medicine" +21373;14500154714;"International Journal of Urological Nursing";journal;"17497701, 1749771X";"Wiley-Blackwell Publishing Ltd";No;No;0,209;Q3;13;34;103;1220;67;98;0,71;35,88;55,63;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2008-2026";"Nephrology (Q3); Nursing (miscellaneous) (Q3); Urology (Q3)";"Medicine; Nursing" +21374;21101333304;"Journal of Applied Sport Management";journal;"23270179, 23270187";"The University of Tennessee Knoxville";No;No;0,209;Q3;5;21;62;442;41;47;0,63;21,05;23,68;0;United States;Northern America;"The University of Tennessee Knoxville";"2021-2025";"Social Sciences (miscellaneous) (Q3); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +21375;27581;"Journal of Gynecologic Surgery";journal;"10424067";"Mary Ann Liebert Inc.";No;No;0,209;Q3;18;66;214;1144;79;176;0,26;17,33;59,59;0;United States;Northern America;"Mary Ann Liebert Inc.";"1989-2026";"Obstetrics and Gynecology (Q3); Surgery (Q3)";"Medicine" +21376;21100892782;"Journal of Payments Strategy and Systems";journal;"17501806, 17501814";"Henry Stewart Publications";No;No;0,209;Q3;11;34;107;913;67;95;0,72;26,85;16,98;0;United Kingdom;Western Europe;"Henry Stewart Publications";"2018-2025";"Information Systems and Management (Q3); Accounting (Q4); Information Systems (Q4); Management Information Systems (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences" +21377;21101185808;"Law: Journal of the University of Latvia";journal;"25929364, 16917677";"University of Latvia";Yes;Yes;0,209;Q3;3;22;51;872;26;51;0,59;39,64;56,10;0;Latvia;Eastern Europe;"University of Latvia";"2020-2025";"Law (Q3)";"Social Sciences" +21378;27286;"Main Group Metal Chemistry";journal;"21910219, 07921241";"Walter de Gruyter GmbH";Yes;No;0,209;Q3;29;11;49;699;59;49;1,09;63,55;30,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1988, 1994-2026";"Metals and Alloys (Q3); Chemistry (miscellaneous) (Q4); Condensed Matter Physics (Q4); Materials Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +21379;21101301830;"Media Iuris";journal;"27218384, 26215225";"Airlangga University";Yes;No;0,209;Q3;5;24;80;870;61;80;0,92;36,25;35,29;0;Indonesia;Asiatic Region;"Airlangga University";"2021-2025";"Law (Q3)";"Social Sciences" +21380;21000196007;"Oral Science International";journal;"13488643, 18814204";"John Wiley and Sons Inc";No;No;0,209;Q3;18;57;135;1579;66;135;0,57;27,70;30,03;0;Japan;Asiatic Region;"John Wiley and Sons Inc";"2004-2026";"Otorhinolaryngology (Q3)";"Medicine" +21381;21100447821;"Poblacion y Sociedad";journal;"18528562, 03283445";"Portal de Revistas de la Universidad Nacional de La Pampa";Yes;Yes;0,209;Q3;9;15;64;693;24;58;0,39;46,20;48,39;0;Argentina;Latin America;"Portal de Revistas de la Universidad Nacional de La Pampa";"2015-2025";"Demography (Q3)";"Social Sciences" +21382;4500151526;"Review of Law and Economics";journal;"21946000, 15555879";"Walter de Gruyter GmbH";No;No;0,209;Q3;24;28;49;1271;30;48;0,53;45,39;20,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2005-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3)";"Economics, Econometrics and Finance; Social Sciences" +21383;21101104873;"SAE International Journal of Passenger Vehicle Systems";journal;"27703460, 27703479";"SAE International";No;No;0,209;Q3;35;12;53;334;49;53;0,79;27,83;25,53;0;United States;Northern America;"SAE International";"2022-2026";"Automotive Engineering (Q3); Safety, Risk, Reliability and Quality (Q3); Mechanical Engineering (Q4); Modeling and Simulation (Q4)";"Engineering; Mathematics" +21384;21100854128;"Shipin Kexue/Food Science";journal;"10026630";"Chinese Chamber of Commerce";Yes;No;0,209;Q3;21;959;3118;48995;3624;3118;1,23;51,09;48,50;0;China;Asiatic Region;"Chinese Chamber of Commerce";"2016, 2018, 2020-2026";"Food Science (Q3)";"Agricultural and Biological Sciences" +21385;21101133425;"Tehnicki Glasnik";journal;"18485588, 18466168";"University North";Yes;Yes;0,209;Q3;15;116;281;3083;277;280;1,01;26,58;28,00;0;Croatia;Eastern Europe;"University North";"2021-2025";"Computer Graphics and Computer-Aided Design (Q3); Engineering (miscellaneous) (Q3); Computer Science Applications (Q4); Information Systems (Q4); Management Information Systems (Q4)";"Business, Management and Accounting; Computer Science; Engineering" +21386;19700190357;"Transplant Research and Risk Management";journal;"11791616";"Dove Medical Press Ltd";Yes;No;0,209;Q3;8;0;9;0;7;9;1,00;0,00;0,00;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2011-2024";"Transplantation (Q3); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Medicine" +21387;21100828012;"Veterinarska Stanica";journal;"18491170, 03507149";"Croatian Veterinary Institute";Yes;No;0,209;Q3;10;71;174;3094;125;174;0,71;43,58;57,95;0;Croatia;Eastern Europe;"Croatian Veterinary Institute";"2017-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +21388;21100916528;"Wound Management and Prevention";journal;"26405237, 26405245";"HMP Global";No;No;0,209;Q3;63;0;126;0;94;98;0,92;0,00;0,00;0;United States;Northern America;"HMP Global";"2019-2024";"Advanced and Specialized Nursing (Q3); Internal Medicine (Q3); Medical and Surgical Nursing (Q3); Gastroenterology (Q4); Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)";"Medicine; Nursing" +21389;20906;"Zhurnal Mikrobiologii Epidemiologii i Immunobiologii";journal;"26867613, 03729311";"Central Research Institute for Epidemiology";Yes;Yes;0,209;Q3;16;64;197;2278;177;197;0,86;35,59;63,37;0;Russian Federation;Eastern Europe;"Central Research Institute for Epidemiology";"1945-1947, 1954-2016, 2019-2025";"Epidemiology (Q3); Immunology (Q4); Immunology and Microbiology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Microbiology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +21390;27138;"Assistenza Infermieristica e Ricerca";journal;"15925986, 20381778";"Il Pensiero Scientifico Editore s.r.l.";No;No;0,209;Q4;16;29;91;301;59;73;0,78;10,38;69,33;0;Italy;Western Europe;"Il Pensiero Scientifico Editore s.r.l.";"1999-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +21391;21100388418;"BPA Applied Psychology Bulletin";journal;"00066761";"Giunti Psychometrics";No;No;0,209;Q4;14;13;48;573;23;48;0,44;44,08;54,32;0;Italy;Western Europe;"Giunti Psychometrics";"2014-2025";"Applied Psychology (Q4)";"Psychology" +21392;63703;"Chuan Bo Li Xue/Journal of Ship Mechanics";journal;"10077294";"China Ship Scientific Research Center";No;No;0,209;Q4;24;174;501;3520;300;501;0,60;20,23;26,07;0;China;Asiatic Region;"China Ship Scientific Research Center";"1998-2025";"Mechanical Engineering (Q4); Ocean Engineering (Q4)";"Engineering" +21393;21100936543;"Current Materials Science";journal;"26661462, 26661454";"Bentham Science Publishers";No;No;0,209;Q4;19;91;92;6412;135;89;1,65;70,46;33,58;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2019-2026";"Materials Science (miscellaneous) (Q4)";"Materials Science" +21394;12065;"Cybium";journal;"21010315, 03990974";"Societe Francaise d'Ichtyologie";No;No;0,209;Q4;37;34;94;1797;98;83;0,81;52,85;33,93;0;France;Western Europe;"Societe Francaise d'Ichtyologie";"1996-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +21395;12000154347;"Environmental Engineering and Management Journal";journal;"15829596, 18433707";"Gheorghe Asachi Technical University of Iasi, Romania";No;No;0,209;Q4;51;209;538;10874;495;536;0,92;52,03;38,92;0;Romania;Eastern Europe;"Gheorghe Asachi Technical University of Iasi, Romania";"1988, 2002-2025";"Environmental Engineering (Q4); Management, Monitoring, Policy and Law (Q4); Pollution (Q4)";"Environmental Science" +21396;29022;"Generations";journal;"07387806";"American Society on Aging";No;No;0,209;Q4;43;0;153;0;70;145;0,39;0,00;0,00;0;United States;Northern America;"American Society on Aging";"1985, 1990, 1994, 1996-2024";"Geriatrics and Gerontology (Q4); Life-span and Life-course Studies (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +21397;19900193823;"Hokkaido Mathematical Journal";journal;"03854035";"Department of Mathematics, Hokkaido University";No;No;0,209;Q4;32;12;62;295;27;62;0,33;24,58;5,26;0;Japan;Asiatic Region;"Department of Mathematics, Hokkaido University";"1972-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +21398;21101082063;"Industrial Laboratory. Materials Diagnostics";journal;"10286861, 25880187";"TEST-ZL Publishing, LLC";No;No;0,209;Q4;13;119;366;2968;204;362;0,61;24,94;33,33;0;Russian Federation;Eastern Europe;"TEST-ZL Publishing, LLC";"2001-2005, 2019-2026";"Analytical Chemistry (Q4); Applied Mathematics (Q4); Materials Science (miscellaneous) (Q4); Mechanics of Materials (Q4)";"Chemistry; Engineering; Materials Science; Mathematics" +21399;19500157056;"International Journal of System of Systems Engineering";journal;"1748068X, 17480671";"Inderscience Enterprises Ltd";No;No;0,209;Q4;22;33;76;1057;81;76;1,16;32,03;42,22;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2008-2025";"Hardware and Architecture (Q4); Information Systems (Q4)";"Computer Science" +21400;21101023716;"Italian Journal of Mycology";journal;"25317342";"University of Bologna";Yes;Yes;0,209;Q4;9;13;32;597;27;32;0,80;45,92;55,77;0;Italy;Western Europe;"University of Bologna";"2019-2026";"Applied Microbiology and Biotechnology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science; Immunology and Microbiology" +21401;21100826311;"Journal of Applied Biotechnology Reports";journal;"23221186, 24235784";"Baqiyatallah University of Medical Sciences";Yes;No;0,209;Q4;22;36;111;1927;101;110;1,00;53,53;32,31;0;Iran;Middle East;"Baqiyatallah University of Medical Sciences";"2014-2025";"Biotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology" +21402;21101156892;"Journal of Engineering Sciences (Ukraine)";journal;"23122498, 24149381";"Sumy State University";Yes;Yes;0,209;Q4;7;29;82;956;75;82;0,91;32,97;25,29;0;Ukraine;Eastern Europe;"Sumy State University";"2023-2025";"Environmental Engineering (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering; Environmental Science" +21403;21101068962;"Journal of Social Economics Research";journal;"23126264, 23126329";"Conscientia Beam";No;No;0,209;Q4;9;20;66;824;81;66;1,00;41,20;34,09;0;United States;Northern America;"Conscientia Beam";"2019-2025";"Development (Q4); Human Factors and Ergonomics (Q4)";"Social Sciences" +21404;24711;"Molecular Crystals and Liquid Crystals";journal;"15421406, 15635287";"Taylor and Francis Ltd.";No;No;0,209;Q4;60;122;642;4750;504;639;0,83;38,93;34,55;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1972, 2002-2026";"Chemistry (miscellaneous) (Q4); Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +21405;21100264006;"Proceedings of Singapore Healthcare";journal;"20592329, 20101058";"SingHealth Academy";Yes;Yes;0,209;Q4;20;45;224;1322;138;222;0,53;29,38;48,83;0;Singapore;Asiatic Region;"SingHealth Academy";"2010-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +21406;19700186896;"Progress in Electromagnetics Research Letters";journal;"19376480";"Electromagnetics Academy";Yes;No;0,209;Q4;41;62;348;1518;314;348;0,91;24,48;27,63;0;United States;Northern America;"Electromagnetics Academy";"2008-2026";"Electronic, Optical and Magnetic Materials (Q4)";"Materials Science" +21407;145228;"Proceedings - Winter Simulation Conference";conference and proceedings;"08917736";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,209;-;68;0;913;0;660;910;0,58;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1971, 1973-1974, 1976-1980, 1992-1993, 2004-2013, 2015-2024";"Computer Science Applications; Modeling and Simulation; Software";"Computer Science; Mathematics" +21408;21100215110;"Proceedings of Meetings on Acoustics";conference and proceedings;"1939800X";"Acoustical Society of America";No;No;0,209;-;24;36;168;584;86;158;0,56;16,22;18,07;0;United States;Northern America;"Acoustical Society of America";"2008-2025";"Acoustics and Ultrasonics";"Physics and Astronomy" +21409;19400156801;"Acta Historica Tallinnensia";journal;"14062925, 17367476";"Estonian Academy Publishers";Yes;Yes;0,208;Q1;6;9;32;429;16;31;0,55;47,67;35,71;0;Estonia;Eastern Europe;"Estonian Academy Publishers";"2008-2025";"History (Q1)";"Arts and Humanities" +21410;21100211326;"Araucaria";journal;"15756823";"Departamento de Literatura Espanola-Universidad de Sevilla";Yes;Yes;0,208;Q1;10;72;277;3041;88;271;0,30;42,24;26,98;0;Spain;Western Europe;"Departamento de Literatura Espanola-Universidad de Sevilla";"2012-2025";"History (Q1); Arts and Humanities (miscellaneous) (Q2); Philosophy (Q2); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21411;21100336101;"Archaeologia Historica";journal;"23364386, 02315823";"Faculty of Arts, Masaryk University";Yes;Yes;0,208;Q1;9;28;92;1591;21;92;0,23;56,82;43,08;0;Czech Republic;Eastern Europe;"Faculty of Arts, Masaryk University";"2014-2025";"History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21412;21100843319;"Archives of Design Research";journal;"22882987, 12268046";"Korean Society of Design Science";No;No;0,208;Q1;13;84;237;3096;194;237;0,76;36,86;58,60;0;South Korea;Asiatic Region;"Korean Society of Design Science";"2017-2025";"Visual Arts and Performing Arts (Q1); Architecture (Q2); Computer Graphics and Computer-Aided Design (Q3)";"Arts and Humanities; Computer Science; Engineering" +21413;21100454974;"Bakhtiniana";journal;"21764573";"Pontificia Universidade Catolica de Sao Paulo";Yes;Yes;0,208;Q1;8;47;153;1068;73;138;0,67;22,72;56,94;0;Brazil;Latin America;"Pontificia Universidade Catolica de Sao Paulo";"2015-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +21414;21100792094;"Diaspora Studies";journal;"09763457, 09739572";"Brill Academic Publishers";No;No;0,208;Q1;13;21;51;1095;36;51;0,55;52,14;50,00;0;United Kingdom;Western Europe;"Brill Academic Publishers";"2009-2010, 2015-2026";"History (Q1); Demography (Q3); Geography, Planning and Development (Q3); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +21415;25657;"HAHR - Hispanic American Historical Review";journal;"15271900, 00182168";"Duke University Press";No;No;0,208;Q1;31;19;47;906;20;47;0,39;47,68;38,89;0;United States;Northern America;"Duke University Press";"1962-1971, 1973-1974, 1976-2025";"History (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21416;21101021413;"Journal of Cuneiform Studies";journal;"00220256, 23256737";"University of Chicago Press";No;No;0,208;Q1;5;11;34;554;13;34;0,30;50,36;46,15;0;United States;Northern America;"University of Chicago Press";"2020-2025";"History (Q1); Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21417;21101163374;"Cuadernos de Linguistica Hispanica";journal;"23461829, 0121053X";"Universidad Pedagogica y Tecnologica de Colombia";Yes;Yes;0,208;Q2;4;21;63;646;23;63;0,40;30,76;36,00;0;Colombia;Latin America;"Universidad Pedagogica y Tecnologica de Colombia";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +21418;4400151727;"Estudos Avancados";journal;"18069592, 01034014";"Instituto de Estudos Avancados da Universidade de Sao Paulo";Yes;Yes;0,208;Q2;39;64;200;2440;99;192;0,36;38,13;43,06;0;Brazil;Latin America;"Instituto de Estudos Avancados da Universidade de Sao Paulo";"2006-2025";"Cultural Studies (Q2); Sociology and Political Science (Q3)";"Social Sciences" +21419;21101184587;"Folia Toruniensia";journal;"16413792, 26574837";"Provincial Public Library - The Copernicus Library in Torun";Yes;Yes;0,208;Q2;3;8;26;249;21;24;0,53;31,13;36,36;0;Poland;Eastern Europe;"Provincial Public Library - The Copernicus Library in Torun";"2019-2025";"Linguistics and Language (Q2); Library and Information Sciences (Q3)";"Social Sciences" +21420;37099;"Xi'an Jianzhu Keji Daxue Xuebao/Journal of Xi'an University of Architecture and Technology";journal;"10067930";"";No;No;0,208;Q2;19;85;303;2261;185;303;0,53;26,60;31,97;0;China;Asiatic Region;"";"1998, 2001-2025";"Architecture (Q2); Arts and Humanities (miscellaneous) (Q2); Building and Construction (Q4)";"Arts and Humanities; Engineering" +21421;21101128466;"Acta Universitatis Lodziensis. Folia Iuridica";journal;"24502782, 02086069";"Lodz University Press";Yes;Yes;0,208;Q3;5;34;202;933;34;200;0,18;27,44;52,78;0;Poland;Eastern Europe;"Lodz University Press";"2019-2025";"Law (Q3)";"Social Sciences" +21422;5600155441;"Ambiente e Sociedade";journal;"1414753X";"Universidade Estadual de Campinas UNICAMP";Yes;No;0,208;Q3;28;60;187;2545;108;173;0,39;42,42;45,95;0;Brazil;Latin America;"Universidade Estadual de Campinas UNICAMP";"2006-2025";"Social Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q4)";"Environmental Science; Social Sciences" +21423;21100902145;"Austral Journal of Veterinary Sciences";journal;"07198000, 07198132";"Universidad Austral de Chile";Yes;Yes;0,208;Q3;27;18;62;942;50;61;0,57;52,33;39,47;0;Chile;Latin America;"Universidad Austral de Chile";"2017-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +21424;21101043558;"Autopsy and Case Reports";journal;"22361960";"Hospital Universitario da Universidade de Sao Paulo";Yes;Yes;0,208;Q3;13;0;174;0;136;144;0,60;0,00;0,00;0;Brazil;Latin America;"Hospital Universitario da Universidade de Sao Paulo";"2018-2024";"Internal Medicine (Q3); Pathology and Forensic Medicine (Q4)";"Medicine" +21425;21101241155;"Croatian Nursing Journal";journal;"25846531";"University of Applied Health Sciences Zagreb";No;No;0,208;Q3;3;25;47;782;21;46;0,36;31,28;63,89;0;Croatia;Eastern Europe;"University of Applied Health Sciences Zagreb";"2020-2025";"Maternity and Midwifery (Q3); Nursing (miscellaneous) (Q4)";"Nursing" +21426;21100868216;"Engineering and Applied Science Research";journal;"25396218, 25396161";"Faculty of Engineering, Khon Kaen University";Yes;Yes;0,208;Q3;17;65;224;2741;257;224;0,94;42,17;31,58;0;Thailand;Asiatic Region;"Faculty of Engineering, Khon Kaen University";"2017-2026";"Engineering (miscellaneous) (Q3); Computer Science Applications (Q4)";"Computer Science; Engineering" +21427;21101061460;"Folia Malacologica";journal;"15067629, 23007125";"Association of Polish Malacologists";Yes;Yes;0,208;Q3;7;25;74;1162;40;72;0,61;46,48;22,95;0;Poland;Eastern Europe;"Association of Polish Malacologists";"2019-2025";"Nature and Landscape Conservation (Q3); Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21428;21101079609;"Forestist";journal;"26024039";"Istanbul University-Cerrahpasa";Yes;Yes;0,208;Q3;10;34;112;1360;134;112;1,41;40,00;28,57;0;Turkey;Middle East;"Istanbul University-Cerrahpasa";"2018-2025";"Forestry (Q3)";"Agricultural and Biological Sciences" +21429;19700174722;"Housing, Care and Support";journal;"14608790";"Emerald Group Publishing Ltd.";No;No;0,208;Q3;16;10;40;476;35;39;0,57;47,60;67,74;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1999-2025";"Geography, Planning and Development (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21430;21100218040;"Human Geographies";journal;"18436587, 20672284";"Universitatea din Bucuresti";Yes;Yes;0,208;Q3;19;13;38;742;30;38;0,80;57,08;57,69;0;Romania;Eastern Europe;"Universitatea din Bucuresti";"2012-2025";"Geography, Planning and Development (Q3)";"Social Sciences" +21431;21101257967;"Indonesian Journal of Urban and Environmental Technology";journal;"25799150, 25799207";"";No;No;0,208;Q3;8;41;45;1521;87;45;1,97;37,10;39,47;0;Indonesia;Asiatic Region;"";"2020-2026";"Urban Studies (Q3); Environmental Engineering (Q4); Environmental Science (miscellaneous) (Q4); Pollution (Q4); Waste Management and Disposal (Q4)";"Environmental Science; Social Sciences" +21432;21101038817;"International Journal of Phytopathology";journal;"23131241, 23129344";"EScience Press";No;No;0,208;Q3;8;6;76;385;76;76;0,85;64,17;28,57;0;Pakistan;Asiatic Region;"EScience Press";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q3); Plant Science (Q4)";"Agricultural and Biological Sciences" +21433;21100228305;"International Review of Automatic Control";journal;"19746059, 25332260";"Praise Worthy Prize S.r.l";No;No;0,208;Q3;17;26;92;911;125;92;1,44;35,04;22,78;0;Italy;Western Europe;"Praise Worthy Prize S.r.l";"2010, 2012-2025";"Automotive Engineering (Q3); Control and Systems Engineering (Q4); Discrete Mathematics and Combinatorics (Q4); Instrumentation (Q4); Logic (Q4)";"Engineering; Mathematics; Physics and Astronomy" +21434;18283;"Japanese Journal of Veterinary Research";journal;"00471917";"Hokkaido University";No;No;0,208;Q3;28;7;39;199;28;39;1,00;28,43;39,02;0;Japan;Asiatic Region;"Hokkaido University";"1965-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +21435;21100197951;"Journal of Acute Medicine";journal;"22115587, 22115595";"Ainosco Press";Yes;No;0,208;Q3;20;26;79;483;50;72;0,72;18,58;25,00;0;Taiwan;Asiatic Region;"Ainosco Press";"2011-2025";"Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3)";"Medicine" +21436;21101032108;"Journal of Environmental Health and Sustainable Development";journal;"24767433, 24766267";"Shahid Sadoughi University of Medical Sciences";Yes;Yes;0,208;Q3;15;32;96;1268;98;85;1,00;39,63;36,36;0;Iran;Middle East;"Shahid Sadoughi University of Medical Sciences";"2016-2025";"Engineering (miscellaneous) (Q3); Environmental Engineering (Q4); Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4); Waste Management and Disposal (Q4)";"Engineering; Environmental Science; Medicine" +21437;21101298384;"Nanofabrication";journal;"2299680X";"Eurasia Academic Publishing Group";No;No;0,208;Q3;11;12;68;785;91;68;1,31;65,42;35,71;0;Hong Kong;Asiatic Region;"Eurasia Academic Publishing Group";"2021-2025";"Industrial and Manufacturing Engineering (Q3); Bioengineering (Q4); Biotechnology (Q4); Process Chemistry and Technology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering" +21438;21101048341;"National Journal of Clinical Anatomy";journal;"23212780, 22774025";"Wolters Kluwer Medknow Publications";Yes;No;0,208;Q3;7;45;134;1155;66;120;0,48;25,67;46,15;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2025";"Anatomy (Q3); Histology (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +21439;7200153103;"Nordic Journal of International Law";journal;"09027351, 15718107";"Martinus Nijhoff Publishers";No;No;0,208;Q3;23;14;74;1563;81;69;0,92;111,64;50,00;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"1934, 1937-1939, 1941-1942, 1947, 1949, 1951-1953, 1955-1957, 1960, 1962-1964, 1968-1971, 1973-1974, 1976-1980, 1984-1991, 1995, 2004, 2006-2026";"Law (Q3); Political Science and International Relations (Q3)";"Social Sciences" +21440;10600153327;"Plant Root";journal;"18816754";"Japanese Society for Root Research";Yes;No;0,208;Q3;15;4;14;155;9;14;0,55;38,75;55,00;0;Japan;Asiatic Region;"Japanese Society for Root Research";"2008-2025";"Agronomy and Crop Science (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +21441;21101339740;"Prabha Materials Science Letters";journal;"25835114";"";No;No;0,208;Q3;6;21;36;951;50;35;1,47;45,29;30,95;0;India;Asiatic Region;"";"2022-2025";"Metals and Alloys (Q3); Electronic, Optical and Magnetic Materials (Q4); Materials Science (miscellaneous) (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science" +21442;12100155324;"Qualitative Sociology Review";journal;"17338077";"Lodz University";Yes;Yes;0,208;Q3;21;18;67;987;72;66;0,87;54,83;73,91;1;Poland;Eastern Europe;"Lodz University";"2008-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21443;21101151491;"Revista Alconpat";journal;"20076835";"";Yes;Yes;0,208;Q3;5;23;68;581;56;68;0,51;25,26;14,58;0;Mexico;Latin America;"";"2022-2025";"Ceramics and Composites (Q3)";"Materials Science" +21444;6600153105;"Revista Brasileira de Educacao";journal;"1809449X, 14132478";"Revista Brasileira de Educacao";Yes;Yes;0,208;Q3;21;89;258;4058;92;258;0,37;45,60;52,86;0;Brazil;Latin America;"Revista Brasileira de Educacao";"2007-2025";"Education (Q3)";"Social Sciences" +21445;21100837856;"School Library Research";journal;"21651019";"American Library Association";No;No;0,208;Q3;19;3;10;209;8;10;0,83;69,67;100,00;0;United States;Northern America;"American Library Association";"2014-2025";"Library and Information Sciences (Q3); Media Technology (Q3)";"Engineering; Social Sciences" +21446;14328;"Suxing Gongcheng Xuebao/Journal of Plasticity Engineering";journal;"10072012";"Beijing Res. Inst. of Mechanical and Elec. Technology";No;No;0,208;Q3;16;329;939;7988;754;939;0,97;24,28;26,50;0;China;Asiatic Region;"Beijing Res. Inst. of Mechanical and Elec. Technology";"2001-2025";"Chemical Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Metals and Alloys (Q3); Polymers and Plastics (Q3); Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Chemical Engineering; Engineering; Materials Science" +21447;19495;"Veterinarski Arhiv";journal;"03725480, 13318055";"University of Zagreb, Facultty of Veterinary Medicine";Yes;No;0,208;Q3;38;39;181;1466;123;181;0,62;37,59;40,00;0;Croatia;Eastern Europe;"University of Zagreb, Facultty of Veterinary Medicine";"1981, 1996-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +21448;21101279554;"Water and Soil Management and Modeling";journal;"27832546";"University of Mohaghegh Ardabili";No;No;0,208;Q3;8;96;189;4470;166;189;0,91;46,56;28,63;0;Iran;Middle East;"University of Mohaghegh Ardabili";"2021-2025";"Nature and Landscape Conservation (Q3); Aquatic Science (Q4); Soil Science (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21449;19824;"Yadian Yu Shengguang/Piezoelectrics and Acoustooptics";journal;"10042474";"Sichuan Institute of Piezoelectric and Acoustooptic Technology";No;No;0,208;Q3;14;169;531;2674;266;531;0,56;15,82;30,79;0;China;Asiatic Region;"Sichuan Institute of Piezoelectric and Acoustooptic Technology";"1993-1999, 2001-2025";"Acoustics and Ultrasonics (Q3); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4)";"Materials Science; Physics and Astronomy" +21450;20181;"Allergologie";journal;"03445062";"Dustri-Verlag Dr. Karl Feistle";No;No;0,208;Q4;20;85;266;1467;114;192;0,41;17,26;54,17;0;Germany;Western Europe;"Dustri-Verlag Dr. Karl Feistle";"1978-2025";"Immunology and Allergy (Q4)";"Medicine" +21451;17265;"Blumea: Journal of Plant Taxonomy and Plant Geography";journal;"00065196";"Nationaal Herbarium Nederland";Yes;No;0,208;Q4;34;0;49;0;30;49;0,61;0,00;0,00;0;Netherlands;Western Europe;"Nationaal Herbarium Nederland";"1993-2024, 2026";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +21452;145430;"Chem-Bio Informatics Journal";journal;"13476297, 13470442";"Chem-Bio Informatics Society";Yes;No;0,208;Q4;11;10;15;270;11;15;0,83;27,00;21,95;0;Japan;Asiatic Region;"Chem-Bio Informatics Society";"2001-2002, 2004-2026";"Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology" +21453;130076;"Current Proteomics";journal;"18756247, 15701646";"KeAi Communications Co.";No;No;0,208;Q4;28;35;124;2087;106;119;1,01;59,63;33,08;0;United Arab Emirates;Middle East;"KeAi Communications Co.";"2005-2026";"Biochemistry (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +21454;21101168860;"Discrete and Continuous Models and Applied Computational Science";journal;"26587149, 26584670";"Peoples' Friendship University of Russia";Yes;Yes;0,208;Q4;5;15;87;319;25;84;0,22;21,27;36,67;0;Russian Federation;Eastern Europe;"Peoples' Friendship University of Russia";"2019-2025";"Computer Science (miscellaneous) (Q4); Modeling and Simulation (Q4); Physics and Astronomy (miscellaneous) (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics; Physics and Astronomy" +21455;21101091794;"Dusunen Adam - The Journal of Psychiatry and Neurological Sciences";journal;"13095749, 10188681";"Kare Publishing";Yes;No;0,208;Q4;23;41;92;1032;38;68;0,29;25,17;54,44;0;Turkey;Middle East;"Kare Publishing";"2011-2025";"Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine" +21456;19500157223;"Harvard Papers in Botany";journal;"10434534, 19382944";"Harvard University Herbaria";No;No;0,208;Q4;12;0;86;0;39;86;0,47;0,00;0,00;0;United States;Northern America;"Harvard University Herbaria";"2009-2010, 2012, 2014-2024";"Plant Science (Q4)";"Agricultural and Biological Sciences" +21457;21100858510;"International Journal of Business Analytics";journal;"23344555, 23344547";"IGI Global Publishing";No;No;0,208;Q4;14;8;21;341;41;20;1,67;42,63;27,78;0;United States;Northern America;"IGI Global Publishing";"2014-2025";"Business and International Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +21458;21101144889;"Journal of Environmental Informatics Letters";journal;"26636867, 26636859";"International Society for Environmental Information Sciences";No;No;0,208;Q4;12;17;71;884;74;71;1,35;52,00;22,86;0;Canada;Northern America;"International Society for Environmental Information Sciences";"2019-2025";"Environmental Chemistry (Q4); Environmental Engineering (Q4); Management, Monitoring, Policy and Law (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +21459;21101170293;"Jundishapur Journal of Chronic Disease Care";journal;"23224207, 23223758";"";No;No;0,208;Q4;8;51;141;1763;92;140;0,66;34,57;53,43;0;Netherlands;Western Europe;"";"2019-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +21460;21100934559;"Kesmas: Jurnal Kesehatan Masyarakat Nasional";journal;"24600601, 19077505";"Universitas Indonesia, Faculty of public health";Yes;No;0,208;Q4;13;53;164;1815;112;161;0,55;34,25;65,65;0;Indonesia;Asiatic Region;"Universitas Indonesia, Faculty of public health";"2016-2025";"Epidemiology (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +21461;59007;"Materials Physics and Mechanics";journal;"16052730, 16058119";"Peter the Great St. Petersburg Polytechnic University";Yes;No;0,208;Q4;26;81;284;3315;279;284;1,01;40,93;27,48;0;Russian Federation;Eastern Europe;"Peter the Great St. Petersburg Polytechnic University";"2003-2004, 2009-2025";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +21462;21101282719;"Progress in Physics of Applied Materials";journal;"27834794";"Semnan University";No;No;0,208;Q4;7;14;72;605;76;72;0,96;43,21;30,95;0;Iran;Middle East;"Semnan University";"2021-2026";"Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science; Physics and Astronomy" +21463;7700153229;"Rivista Italiana delle Sostanze Grasse";journal;"00356808";"INNOVHUB - Stazioni Sperimentali per l'Industria S.r.l - Area Oli e Grassi";Yes;No;0,208;Q4;20;22;80;957;80;69;0,73;43,50;49,35;0;Italy;Western Europe;"INNOVHUB - Stazioni Sperimentali per l'Industria S.r.l - Area Oli e Grassi";"2006-2025";"Organic Chemistry (Q4)";"Chemistry" +21464;120079;"Annual IEEE Semiconductor Thermal Measurement and Management Symposium";conference and proceedings;"10652221";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,208;-;44;41;37;304;23;33;0,62;7,41;11,21;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1995-2017, 2023-2025";"Electrical and Electronic Engineering; Instrumentation";"Engineering; Physics and Astronomy" +21465;21100888800;"Conference proceedings International Research Council on the Biomechanics of Injury, IRCOBI";conference and proceedings;"22353151";"International Research Council on the Biomechanics of Injury";No;No;0,208;-;21;129;375;2198;155;372;0,33;17,04;25,55;0;Switzerland;Western Europe;"International Research Council on the Biomechanics of Injury";"2016-2025";"Computational Theory and Mathematics; Computer Graphics and Computer-Aided Design; Hardware and Architecture; Software";"Computer Science" +21466;21101162718;"Proceedings of the Conference on Production Systems and Logistics";conference and proceedings;"27016277";"";Yes;No;0,208;-;9;63;346;2507;216;339;0,64;39,79;24,49;0;Germany;Western Europe;"";"2020-2025";"Industrial and Manufacturing Engineering; Management of Technology and Innovation; Mechanical Engineering; Strategy and Management";"Business, Management and Accounting; Engineering" +21467;110646;"Transactions - Geothermal Resources Council";conference and proceedings;"01935933";"Geothermal Resources Council";No;No;0,208;-;34;187;579;3653;181;576;0,33;19,53;22,93;0;United States;Northern America;"Geothermal Resources Council";"1979-1985, 1988-1993, 1996-1997, 1999, 2002-2025";"Energy Engineering and Power Technology; Geophysics; Renewable Energy, Sustainability and the Environment";"Earth and Planetary Sciences; Energy" +21468;18800156723;"Asia-Pacific Social Science Review";journal;"01198386";"De la Salle University";No;No;0,207;Q1;16;42;112;2123;104;96;0,89;50,55;54,05;0;Philippines;Asiatic Region;"De la Salle University";"2009-2025";"History (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Economics and Econometrics (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +21469;21101087368;"Beijing International Review of Education";journal;"25902539, 25902547";"SAGE Publications Inc.";No;No;0,207;Q1;12;0;121;0;68;105;0,64;0,00;0,00;0;Netherlands;Western Europe;"SAGE Publications Inc.";"2019-2024";"History (Q1); Arts and Humanities (miscellaneous) (Q2); Philosophy (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +21470;21100390113;"Castilla Estudios de Literatura";journal;"19897383";"Department of Spanish Literature and Theory of Literature and Comparative Literature.Universidad de Valladolid";Yes;Yes;0,207;Q1;7;27;166;1222;20;166;0,14;45,26;50,00;0;Spain;Western Europe;"Department of Spanish Literature and Theory of Literature and Comparative Literature.Universidad de Valladolid";"2013-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +21471;24052;"College Composition and Communication";journal;"0010096X, 19399006";"National Council of Teachers of English";No;No;0,207;Q1;45;28;106;990;49;83;0,46;35,36;53,13;0;United States;Northern America;"National Council of Teachers of English";"1976, 2004-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +21472;21100842182;"Edad Media";journal;"25306448";"Ediciones Universidad de Valladolid";Yes;Yes;0,207;Q1;6;15;63;840;14;63;0,29;56,00;28,57;0;Spain;Western Europe;"Ediciones Universidad de Valladolid";"2017-2025";"History (Q1)";"Arts and Humanities" +21473;21100942926;"Journal of Chinese Writing Systems";journal;"25138510";"SAGE Publications Ltd";No;No;0,207;Q1;6;24;79;757;29;76;0,35;31,54;56,41;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2017-2025";"History (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21474;19700187710;"Journal of Postcolonial Writing";journal;"17449863, 17449855";"Routledge";No;No;0,207;Q1;25;65;190;2409;80;148;0,36;37,06;58,18;0;United Kingdom;Western Europe;"Routledge";"2005-2026";"Literature and Literary Theory (Q1)";"Arts and Humanities" +21475;26283;"Revista Galega de Economia";journal;"11322799, 22555951";"Universidade de Santiago de Compostela";Yes;Yes;0,207;Q1;13;17;62;1079;69;61;1,16;63,47;46,88;0;Spain;Western Europe;"Universidade de Santiago de Compostela";"2001, 2003-2025";"History (Q1); Demography (Q3); Business, Management and Accounting (miscellaneous) (Q4); Development (Q4); Economics and Econometrics (Q4); Finance (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +21476;5700179313;"Yale French Studies";book series;"00440078";"Yale University Press";No;No;0,207;Q1;15;12;32;421;5;27;0,22;35,08;22,22;0;United States;Northern America;"Yale University Press";"2002-2014, 2018-2019, 2021-2025";"History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21477;21100972429;"Architecture and Engineering";journal;"25000055";"St. Petersburg State University of Architecture and Civil Engineering";Yes;No;0,207;Q2;11;17;94;429;80;94;0,59;25,24;30,95;0;Russian Federation;Eastern Europe;"St. Petersburg State University of Architecture and Civil Engineering";"2019-2025";"Architecture (Q2); Building and Construction (Q4); Mechanics of Materials (Q4)";"Engineering" +21478;21101089394;"Hegel Bulletin";journal;"20515367, 20515375";"Cambridge University Press";No;No;0,207;Q2;9;55;76;1846;26;71;0,35;33,56;23,64;0;United Kingdom;Western Europe;"Cambridge University Press";"2019-2025";"Philosophy (Q2)";"Arts and Humanities" +21479;25552;"Hua Xi Kou Qiang Yi Xue Za Zhi / West China Journal of Stomatology";journal;"26180456, 10001182";"";No;No;0,207;Q2;15;106;307;3416;216;307;0,77;32,23;39,11;0;China;Asiatic Region;"";"1997-2026";"Orthodontics (Q2); Dental Assisting (Q3); Dentistry (miscellaneous) (Q3); Oral Surgery (Q3)";"Dentistry" +21480;21101223042;"Indonesian Journal of Halal Research";journal;"26570165, 26563754";"Halal Center UIN Sunan Gunung Djati Bandung";Yes;No;0,207;Q2;5;7;20;466;43;20;2,15;66,57;61,76;0;Indonesia;Asiatic Region;"Halal Center UIN Sunan Gunung Djati Bandung";"2023-2025";"Religious Studies (Q2); Food Animals (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Veterinary" +21481;11600153442;"Journal of Mathematics and Music";journal;"17459737, 17459745";"Taylor and Francis Ltd.";No;No;0,207;Q2;19;18;67;451;27;62;0,52;25,06;18,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Music (Q2); Applied Mathematics (Q4); Computational Mathematics (Q4); Modeling and Simulation (Q4)";"Arts and Humanities; Mathematics" +21482;18500167900;"Journal of the Royal Asiatic Society";journal;"14740591, 13561863";"Cambridge University Press";No;No;0,207;Q2;27;48;153;5223;69;145;0,49;108,81;30,19;0;United Kingdom;Western Europe;"Cambridge University Press";"1933, 1991-2026";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21483;17700155413;"Lodz Papers in Pragmatics";journal;"18956106, 18984436";"De Gruyter Mouton";No;No;0,207;Q2;15;19;59;839;44;56;0,88;44,16;61,90;0;Germany;Western Europe;"De Gruyter Mouton";"2007, 2009, 2015-2026";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +21484;21101060465;"Umanistica Digitale";journal;"25328816";"University of Bologna Department of Classical and Italian Philology, Alma Mater Studiorum";Yes;Yes;0,207;Q2;7;44;67;1749;34;66;0,52;39,75;68,75;0;Italy;Western Europe;"University of Bologna Department of Classical and Italian Philology, Alma Mater Studiorum";"2017-2026";"Arts and Humanities (miscellaneous) (Q2); Linguistics and Language (Q2); Library and Information Sciences (Q3); Computer Science Applications (Q4); Computer Science (miscellaneous) (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +21485;21100417267;"Archives of Pediatric Infectious Diseases";journal;"23221836, 23221828";"Brieflands";Yes;No;0,207;Q3;19;35;97;911;56;95;0,57;26,03;51,92;0;Netherlands;Western Europe;"Brieflands";"2013-2026";"Pediatrics, Perinatology and Child Health (Q3); Infectious Diseases (Q4)";"Medicine" +21486;17300154938;"Bulletin of the Geological Society of Malaysia";journal;"01266187";"Geological Society of Malaysia";Yes;Yes;0,207;Q3;20;10;60;388;55;56;0,91;38,80;36,67;0;Malaysia;Asiatic Region;"Geological Society of Malaysia";"2008-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +21487;16128;"Electromagnetics";journal;"1532527X, 02726343";"Taylor and Francis Ltd.";No;No;0,207;Q3;36;72;139;1757;119;139;0,95;24,40;32,30;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2026";"Radiation (Q3); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +21488;27908;"Geodetski Vestnik";journal;"03510271, 15811328";"Zveze Geodetov Slovenije";Yes;Yes;0,207;Q3;16;36;100;751;34;58;0,34;20,86;23,38;0;Slovenia;Eastern Europe;"Zveze Geodetov Slovenije";"1992-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +21489;21100925894;"Humanities and Social Sciences Letters";journal;"23125659, 23124318";"Conscientia Beam";No;No;0,207;Q3;12;110;173;5569;205;173;1,25;50,63;45,74;0;Pakistan;Asiatic Region;"Conscientia Beam";"2019-2026";"Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +21490;26076;"IEICE Transactions on Fundamentals of Electronics, Communications and Computer Sciences";journal;"17451337, 09168508";"Maruzen Co., Ltd/Maruzen Kabushikikaisha";No;No;0,207;Q3;58;216;622;4896;401;591;0,71;22,67;22,89;0;Japan;Asiatic Region;"Maruzen Co., Ltd/Maruzen Kabushikikaisha";"1993-2026";"Computer Graphics and Computer-Aided Design (Q3); Applied Mathematics (Q4); Electrical and Electronic Engineering (Q4); Signal Processing (Q4)";"Computer Science; Engineering; Mathematics" +21491;21100784268;"International Human Rights Law Review";journal;"22131027, 22131035";"Brill Academic Publishers";No;No;0,207;Q3;11;10;34;1233;34;33;1,13;123,30;53,85;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2025";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21492;19400156805;"International Journal of Information and Computer Security";journal;"17441765, 17441773";"Inderscience Enterprises Ltd";No;No;0,207;Q3;22;58;173;2322;167;173;0,96;40,03;33,09;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2026";"Computer Networks and Communications (Q3); Safety, Risk, Reliability and Quality (Q3); Hardware and Architecture (Q4); Software (Q4)";"Computer Science; Engineering" +21493;98776;"Journal of Applied Botany and Food Quality";journal;"1439040X, 16139216";"Julius Kuhn-Institut Federal Research Center for Cultivated Plants";Yes;No;0,207;Q3;52;16;59;702;58;59;0,81;43,88;60,22;0;Germany;Western Europe;"Julius Kuhn-Institut Federal Research Center for Cultivated Plants";"2004-2025";"Food Science (Q3); Plant Science (Q4)";"Agricultural and Biological Sciences" +21494;21101270127;"Journal of Applied Science and Engineering";journal;"27089967, 27089975";"Tamkang University";Yes;No;0,207;Q3;34;198;550;6221;543;550;0,90;31,42;31,05;0;Taiwan;Asiatic Region;"Tamkang University";"2012-2026";"Engineering (miscellaneous) (Q3); Multidisciplinary (Q3)";"Engineering; Multidisciplinary" +21495;21100934922;"Journal of Buffalo Science";journal;"1927520X";"Lifescience Global";No;No;0,207;Q3;7;19;49;582;28;47;0,68;30,63;43,06;0;Canada;Northern America;"Lifescience Global";"2019-2025";"Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences; Veterinary" +21496;21100787105;"Journal of Environmental Accounting and Management";journal;"23256206, 23256192";"L and H Scientific Publishing, LLC";No;No;0,207;Q3;18;24;88;1158;74;88;0,79;48,25;30,43;0;United States;Northern America;"L and H Scientific Publishing, LLC";"2013-2025";"Urban Studies (Q3); Accounting (Q4); Ecological Modeling (Q4); Ecology (Q4); Management, Monitoring, Policy and Law (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Environmental Science; Social Sciences" +21497;5700152854;"Journal of Policy History";journal;"08980306, 15284190";"Cambridge University Press";No;No;0,207;Q3;26;17;58;1663;34;58;0,50;97,82;33,33;0;United Kingdom;Western Europe;"Cambridge University Press";"1989-2026";"Sociology and Political Science (Q3); Public Administration (Q4)";"Social Sciences" +21498;21101039846;"Journal of Tropical Biodiversity and Biotechnology";journal;"25409573, 25409581";"Universitas Gadjah Mada, Faculty of Biology";Yes;No;0,207;Q3;10;80;200;3883;195;200;0,96;48,54;41,09;0;Indonesia;Asiatic Region;"Universitas Gadjah Mada, Faculty of Biology";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +21499;27249;"Kovove Materialy";journal;"0023432X, 13384252";"Institute of Materials and Machine Mechanics, Slovak Academy of Sciences";No;No;0,207;Q3;29;28;108;1073;91;108;0,76;38,32;20,93;0;Slovakia;Eastern Europe;"Institute of Materials and Machine Mechanics, Slovak Academy of Sciences";"1968-1993, 1996-2025";"Metals and Alloys (Q3); Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +21500;19700182354;"Movimento";journal;"19828918, 0104754X";"Universidade Federal do Rio Grande do Sul";Yes;Yes;0,207;Q3;20;71;205;2944;113;205;0,43;41,46;39,02;0;Brazil;Latin America;"Universidade Federal do Rio Grande do Sul";"2010-2025";"Education (Q3)";"Social Sciences" +21501;21100264880;"Orbis Scholae";journal;"18024637, 23363177";"Karolinum - Nakladatelstvi Univerzity Karlovy";Yes;Yes;0,207;Q3;13;7;40;389;25;33;0,24;55,57;64,71;0;Czech Republic;Eastern Europe;"Karolinum - Nakladatelstvi Univerzity Karlovy";"2007-2011, 2013-2025";"Education (Q3)";"Social Sciences" +21502;22888;"Political Science";journal;"00323187, 20410611";"Taylor and Francis Ltd.";Yes;No;0,207;Q3;21;16;32;1069;52;27;1,50;66,81;30,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1948-1949, 1951-1956, 1960, 1962-1965, 1967-1974, 1976-2026";"Sociology and Political Science (Q3)";"Social Sciences" +21503;19900192143;"Theoretical and Empirical Researches in Urban Management";journal;"20653913, 20653921";"Research Centre in Public Administration and Public Services,cademy of Economic Studies, Bucharest, Romania";Yes;No;0,207;Q3;23;18;56;962;58;53;1,22;53,44;48,39;0;Romania;Eastern Europe;"Research Centre in Public Administration and Public Services,cademy of Economic Studies, Bucharest, Romania";"2010-2025";"Geography, Planning and Development (Q3); Urban Studies (Q3)";"Social Sciences" +21504;28929;"Yejin Fenxi/Metallurgical Analysis";journal;"10007571";"Central Iron and Steel Research Institute";No;No;0,207;Q3;14;146;472;2101;262;472;0,60;14,39;40,99;0;China;Asiatic Region;"Central Iron and Steel Research Institute";"2001-2025";"Metals and Alloys (Q3); Materials Chemistry (Q4)";"Materials Science" +21505;24087;"Abstract and Applied Analysis";journal;"10853375, 16870409";"John Wiley and Sons Ltd";Yes;No;0,207;Q4;75;27;72;836;53;72;0,67;30,96;18,60;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1996, 2002-2026";"Analysis (Q4); Applied Mathematics (Q4)";"Mathematics" +21506;21100201050;"Agronomy Research";journal;"1406894X";"Eesti Pollumajandusulikool";Yes;No;0,207;Q4;32;104;298;4495;298;298;1,03;43,22;42,56;0;Estonia;Eastern Europe;"Eesti Pollumajandusulikool";"2011-2025";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +21507;21101034432;"Archives of Mental Health";journal;"2589918X, 25899171";"Wolters Kluwer Medknow Publications";Yes;Yes;0,207;Q4;7;34;93;1034;46;88;0,42;30,41;52,17;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2018-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +21508;21100310071;"Case Reports in Medicine";journal;"16879627, 16879635";"John Wiley and Sons Ltd";Yes;No;0,207;Q4;30;121;111;2298;86;111;1,02;18,99;44,19;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +21509;13876;"Cosmic Research";journal;"00109525, 16083075";"Pleiades Publishing";No;No;0,207;Q4;26;81;222;2523;163;222;0,73;31,15;29,11;0;United States;Northern America;"Pleiades Publishing";"1968-1970, 1973-1987, 1996-2025";"Aerospace Engineering (Q4); Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Engineering; Physics and Astronomy" +21510;17944;"Darwiniana";journal;"00116793";"Instituto de Botanica Darwinion";Yes;Yes;0,207;Q4;29;21;94;1062;57;93;0,54;50,57;50,00;0;Argentina;Latin America;"Instituto de Botanica Darwinion";"1985-1986, 1989-1990, 1992-1993, 1995-2026";"Plant Science (Q4)";"Agricultural and Biological Sciences" +21511;56524;"Ecological Restoration";journal;"15434079, 15434060";"University of Wisconsin Press";No;No;0,207;Q4;38;32;103;1304;51;82;0,55;40,75;39,77;0;United States;Northern America;"University of Wisconsin Press";"1999-2025";"Nature and Landscape Conservation (Q4)";"Environmental Science" +21512;21101070055;"ExRNA";journal;"23980060";"ELSP";Yes;Yes;0,207;Q4;16;11;55;1173;34;36;0,64;106,64;51,22;0;Hong Kong;Asiatic Region;"ELSP";"2019-2025";"Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +21513;27571;"Ferroelectrics";journal;"00150193, 15635112";"Taylor and Francis Ltd.";No;No;0,207;Q4;68;33;881;628;631;869;0,81;19,03;41,28;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1970-2025";"Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Materials Science; Physics and Astronomy" +21514;21101151806;"Issues in Information Systems";journal;"15297314";"International Association for Computer Information Systems";Yes;Yes;0,207;Q4;14;153;364;4959;393;364;1,08;32,41;33,58;0;United States;Northern America;"International Association for Computer Information Systems";"2019-2025";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +21515;21100930075;"Journal of Horticultural Sciences";journal;"0973354X, 25824899";"Society for Promotion of Horticulture";Yes;Yes;0,207;Q4;8;68;203;1474;163;203;0,63;21,68;33,33;0;India;Asiatic Region;"Society for Promotion of Horticulture";"2019-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Horticulture (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +21516;21101109916;"Oecologia Australis";journal;"21776199";"Universidade Federal do Rio de Janeiro";No;No;0,207;Q4;29;35;132;1564;66;121;0,45;44,69;42,57;0;Brazil;Latin America;"Universidade Federal do Rio de Janeiro";"2010-2025";"Ecology (Q4)";"Environmental Science" +21517;21100455621;"Rad Hrvatske Akademije Znanosti i Umjetnosti, Matematicke Znanosti";journal;"18454100, 18492215";"Croatian Academy of Sciences and Arts";Yes;Yes;0,207;Q4;7;20;51;359;20;51;0,39;17,95;38,24;0;Croatia;Eastern Europe;"Croatian Academy of Sciences and Arts";"2013, 2015-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +21518;10800153306;"Revista de Administracao Publica";journal;"19823134, 00347612";"Fundacao Getulio Vargas";Yes;Yes;0,207;Q4;29;25;121;1204;93;119;0,71;48,16;42,55;0;Brazil;Latin America;"Fundacao Getulio Vargas";"2007-2025";"Public Administration (Q4)";"Social Sciences" +21519;26266;"Rivista Italiana di Geotecnica";journal;"05571405";"Patron Editore S.r.l.";No;No;0,207;Q4;19;10;47;297;27;41;0,58;29,70;48,39;0;Italy;Western Europe;"Patron Editore S.r.l.";"1976-1984, 2011-2025";"Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +21520;21101144419;"Scientific Contributions Oil and Gas";journal;"25410520, 20893361";"Pusat Penelitian dan Pengembangan Teknologi Minyak dan Gas Bumi";No;No;0,207;Q4;6;97;59;2983;88;59;1,59;30,75;28,63;0;Indonesia;Asiatic Region;"Pusat Penelitian dan Pengembangan Teknologi Minyak dan Gas Bumi";"2019-2026";"Fuel Technology (Q4); Geology (Q4); Geophysics (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Energy" +21521;19700174680;"Shiraz E Medical Journal";journal;"17351391";"Brieflands";Yes;No;0,207;Q4;20;81;270;2205;178;245;0,69;27,22;52,65;0;Netherlands;Western Europe;"Brieflands";"2010-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +21522;21101215780;"Taxonomy and Biosystematics";journal;"23222190, 20088906";"University of Isfahan";Yes;Yes;0,207;Q4;6;12;67;531;36;67;0,56;44,25;26,47;0;Iran;Middle East;"University of Isfahan";"2020-2026";"Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21523;21100857119;"Travaux du Museum National d'Histoire Naturelle Grigore Antipa";journal;"22470735, 12232254";"Pensoft Publishers";Yes;Yes;0,207;Q4;7;20;71;767;32;71;0,58;38,35;30,36;0;Poland;Eastern Europe;"Pensoft Publishers";"2017-2025";"Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21524;19700182301;"Turkish Journal of Field Crops";journal;"13011111";"Society of Field Crops Science";No;No;0,207;Q4;29;31;101;1484;85;101;0,68;47,87;30,34;0;Turkey;Middle East;"Society of Field Crops Science";"2009-2025";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +21525;26665;"Canadian Conference on Electrical and Computer Engineering";conference and proceedings;"08407789";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,207;-;53;0;389;0;363;386;0,92;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1993-2011, 2013-2018, 2020-2024";"Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering" +21526;21101053115;"En-Claves del Pensamiento";journal;"25941100, 1870879X";"Instituto Tecnologico y de Estudios Superiores de Monterrey";Yes;Yes;0,206;Q1;4;20;81;701;25;81;0,27;35,05;42,86;0;Mexico;Latin America;"Instituto Tecnologico y de Estudios Superiores de Monterrey";"2019-2025";"History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +21527;21100259103;"International Journal of Designed Objects";journal;"23251395, 23251379";"Common Ground Research Networks";No;No;0,206;Q1;7;12;31;633;26;31;1,05;52,75;39,29;0;United States;Northern America;"Common Ground Research Networks";"2012-2025";"Visual Arts and Performing Arts (Q1); Architecture (Q2)";"Arts and Humanities; Engineering" +21528;21100403909;"Journal of Islamic Manuscripts";journal;"18784631, 1878464X";"Brill Academic Publishers";No;No;0,206;Q1;10;14;40;726;22;38;0,30;51,86;56,25;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2026";"Visual Arts and Performing Arts (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21529;21100201776;"Melanges de l'Ecole Francaise de Rome:Antiquite";journal;"02235102, 17242134";"ECOLE FRANCAISE DE ROME";No;No;0,206;Q1;13;16;100;1137;44;96;0,49;71,06;42,86;0;Italy;Western Europe;"ECOLE FRANCAISE DE ROME";"2002-2007, 2009-2012, 2014-2025";"Classics (Q1); History (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21530;6000156829;"Metropolitan Museum of Art Bulletin";journal;"00261521";"Metropolitan Museum of Art";No;No;0,206;Q1;7;0;4;0;3;4;0,00;0,00;0,00;0;United States;Northern America;"Metropolitan Museum of Art";"2002-2022";"Visual Arts and Performing Arts (Q1); Museology (Q2)";"Arts and Humanities" +21531;21101134692;"Studia Warminskie";journal;"01376624";"University of Warmia and Mazury";Yes;Yes;0,206;Q1;7;28;96;865;31;95;0,33;30,89;42,42;0;Poland;Eastern Europe;"University of Warmia and Mazury";"2019-2025";"History (Q1); Philosophy (Q2); Religious Studies (Q2); Law (Q3); Social Sciences (miscellaneous) (Q3); Developmental and Educational Psychology (Q4); Social Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +21532;5700181944;"Deutsche Sprache";journal;"03409341, 1868775X";"Erich Schmidt Verlag GmbH and Co Berlin";No;No;0,206;Q2;11;7;36;237;10;35;0,08;33,86;50,00;0;Germany;Western Europe;"Erich Schmidt Verlag GmbH and Co Berlin";"2002-2011, 2017-2025";"Linguistics and Language (Q2); Social Sciences (miscellaneous) (Q3); Psychology (miscellaneous) (Q4)";"Psychology; Social Sciences" +21533;21100865012;"Economia Agro-Alimentare";journal;"19724802, 11261668";"FrancoAngeli";Yes;No;0,206;Q2;14;18;76;1027;53;64;0,56;57,06;43,24;0;Italy;Western Europe;"FrancoAngeli";"2012-2025";"Cultural Studies (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Food Animals (Q3); Food Science (Q3); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q4); Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4); Management, Monitoring, Policy and Law (Q4)";"Agricultural and Biological Sciences; Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science; Social Sciences; Veterinary" +21534;19900192534;"Electronic Journal of Foreign Language Teaching";journal;"02199874";"";Yes;Yes;0,206;Q2;19;15;47;659;25;39;0,44;43,93;36,84;0;Singapore;Asiatic Region;"";"2011-2025";"Linguistics and Language (Q2); Education (Q3)";"Social Sciences" +21535;27969;"Journal of Equine Science";journal;"13477501, 13403516";"Japanese Society of Equine Science";Yes;No;0,206;Q2;24;15;39;504;29;29;0,67;33,60;26,67;0;Japan;Asiatic Region;"Japanese Society of Equine Science";"1994-2025";"Equine (Q2)";"Veterinary" +21536;21100810460;"Logos and Episteme";journal;"20693052, 20690533";"Gheorghe Zane Institute for Economic and Social Research, Romanian Academy, Iasi Branch";Yes;Yes;0,206;Q2;8;12;75;303;22;75;0,26;25,25;8,33;0;Romania;Eastern Europe;"Gheorghe Zane Institute for Economic and Social Research, Romanian Academy, Iasi Branch";"2016-2026";"Philosophy (Q2)";"Arts and Humanities" +21537;21100205746;"Logos (Lithuania)";journal;"08687692";"Lithuanian Institute of Philosophy and Sociology";No;No;0,206;Q2;8;69;244;1277;66;243;0,36;18,51;50,88;0;Lithuania;Eastern Europe;"Lithuanian Institute of Philosophy and Sociology";"2008-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21538;12100156499;"Notes";journal;"1534150X, 00274380";"Music Library Association";Yes;No;0,206;Q2;14;6;83;246;27;66;0,38;41,00;50,00;0;United States;Northern America;"Music Library Association";"1978, 2002-2026";"Music (Q2); Library and Information Sciences (Q3)";"Arts and Humanities; Social Sciences" +21539;21100840458;"Periodicals of Engineering and Natural Sciences";journal;"23034521";"International University of Sarajevo";Yes;No;0,206;Q2;30;76;342;3288;452;342;1,36;43,26;54,41;0;Bosnia and Herzegovina;Eastern Europe;"International University of Sarajevo";"2017-2026";"Architecture (Q2); Education (Q3); Industrial and Manufacturing Engineering (Q3); Bioengineering (Q4); Biomedical Engineering (Q4); Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4)";"Chemical Engineering; Computer Science; Engineering; Social Sciences" +21540;21101037294;"Religiovedenie";journal;"20728662, 27127575";"Amur State University";No;No;0,206;Q2;3;62;184;1581;27;183;0,19;25,50;47,67;0;Russian Federation;Eastern Europe;"Amur State University";"2019-2025";"Cultural Studies (Q2); Linguistics and Language (Q2); Religious Studies (Q2); Economics and Econometrics (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +21541;21100860437;"Revista Arheologica";journal;"1857016X, 25376144";"Institute of Cultural Heritage of the Academy of Sciences of Moldova";Yes;No;0,206;Q2;4;14;58;702;14;58;0,11;50,14;27,27;0;Moldova;Eastern Europe;"Institute of Cultural Heritage of the Academy of Sciences of Moldova";"2017-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21542;19700187803;"South Asian History and Culture";journal;"19472501, 19472498";"Taylor and Francis Ltd.";No;No;0,206;Q2;18;33;94;1066;75;88;0,61;32,30;42,86;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2026";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21543;21100228052;"Annals of the University Dunarea de Jos of Galati, Fascicle VI: Food Technology";journal;"2068259X, 18435157";"Galati University Press";Yes;Yes;0,206;Q3;15;13;78;652;70;78;0,88;50,15;60,38;0;Romania;Eastern Europe;"Galati University Press";"2012-2025";"Food Science (Q3); Industrial and Manufacturing Engineering (Q3)";"Agricultural and Biological Sciences; Engineering" +21544;6600153203;"Dalian Haishi Daxue Xuebao/Journal of Dalian Maritime University";journal;"10067736";"Editorial Office of Journal of Dalian Maritime University";No;No;0,206;Q3;15;47;185;994;124;185;0,71;21,15;32,56;0;China;Asiatic Region;"Editorial Office of Journal of Dalian Maritime University";"2007-2025";"Engineering (miscellaneous) (Q3); Ocean Engineering (Q4)";"Engineering" +21545;25513;"General Dentistry";journal;"03636771";"Academy of General Dentistry";No;No;0,206;Q3;42;72;276;984;124;243;0,41;13,67;43,94;0;United States;Northern America;"Academy of General Dentistry";"1976-2026";"Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)";"Dentistry; Medicine" +21546;21101199356;"IAES International Journal of Robotics and Automation";journal;"27222586, 20894856";"Intelektual Pustaka Media Utama";No;No;0,206;Q3;6;31;84;961;109;84;1,30;31,00;30,11;0;Indonesia;Asiatic Region;"Intelektual Pustaka Media Utama";"2023-2025";"Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Control and Systems Engineering (Q4)";"Engineering" +21547;21101252460;"International Journal of Minor Fruits, Medicinal and Aromatic Plants";journal;"24246921, 2424693X";"";Yes;No;0,206;Q3;5;54;103;1279;74;103;0,73;23,69;35,88;0;India;Asiatic Region;"";"2021-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Horticulture (Q4)";"Agricultural and Biological Sciences; Pharmacology, Toxicology and Pharmaceutics" +21548;21101142547;"Japanese Journal of Sociology";journal;"27691357, 27691365";"John Wiley and Sons Inc";No;No;0,206;Q3;21;13;21;514;20;19;0,31;39,54;45,45;1;United States;Northern America;"John Wiley and Sons Inc";"2023-2026";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21549;21100242221;"Journal of Himalayan Earth Sciences";journal;"23056959, 19943237";"National Centre of Excellence in Geology";No;No;0,206;Q3;14;19;34;702;26;34;0,83;36,95;35,29;0;Pakistan;Asiatic Region;"National Centre of Excellence in Geology";"2013-2025";"Earth and Planetary Sciences (miscellaneous) (Q3)";"Earth and Planetary Sciences" +21550;21101116674;"Journal of Musculoskeletal Surgery and Research";journal;"25891219, 25891227";"Scientific Scholar LLC";No;No;0,206;Q3;8;84;176;1622;93;152;0,58;19,31;21,93;0;United States;Northern America;"Scientific Scholar LLC";"2019-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3); Orthopedics and Sports Medicine (Q4)";"Health Professions; Medicine" +21551;21101321298;"Journal of Polymer Science and Engineering";journal;"25781855";"EnPress Publisher, LLC";No;No;0,206;Q3;5;12;47;535;66;47;1,57;44,58;44,83;0;United States;Northern America;"EnPress Publisher, LLC";"2021-2025";"Polymers and Plastics (Q3); Biomaterials (Q4); Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4)";"Chemistry; Materials Science" +21552;21100829177;"Journal of the Korean Society for Railway";journal;"17386225, 22882235";"Korean Society for Railway";No;No;0,206;Q3;8;104;269;1849;75;269;0,25;17,78;21,60;0;South Korea;Asiatic Region;"Korean Society for Railway";"2017-2025";"Automotive Engineering (Q3); Geography, Planning and Development (Q3); Civil and Structural Engineering (Q4); Energy Engineering and Power Technology (Q4); Strategy and Management (Q4); Transportation (Q4)";"Business, Management and Accounting; Energy; Engineering; Social Sciences" +21553;19700174727;"Large Animal Review";journal;"11244593";"Edizioni Scivac";No;No;0,206;Q3;13;6;130;181;73;130;0,53;30,17;58,62;0;Italy;Western Europe;"Edizioni Scivac";"2008-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +21554;20000195049;"Magis";journal;"20271174, 20271182";"Pontificia Universidad Javeriana";Yes;Yes;0,206;Q3;18;29;80;1251;40;80;0,33;43,14;71,93;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2008-2025";"Education (Q3)";"Social Sciences" +21555;21100942910;"MHSalud";journal;"1659097X";"Universidad Nacional";Yes;Yes;0,206;Q3;7;26;67;1061;60;67;0,93;40,81;28,00;0;Costa Rica;Latin America;"Universidad Nacional";"2019-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q3); Biophysics (Q4); Orthopedics and Sports Medicine (Q4); Public Health, Environmental and Occupational Health (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +21556;21101047909;"Moderna Arhivistika";journal;"25910884";"Maribor Provincial Archives";No;No;0,206;Q3;3;25;93;515;19;93;0,28;20,60;45,95;0;Slovenia;Eastern Europe;"Maribor Provincial Archives";"2018-2025";"Library and Information Sciences (Q3); Public Administration (Q4)";"Social Sciences" +21557;12927;"Ortopedia Traumatologia Rehabilitacja";journal;"20844336, 15093492";"MEDSPORTPRESS Publishing House";No;No;0,206;Q3;29;19;97;0;58;97;0,58;0,00;24,29;0;Poland;Eastern Europe;"MEDSPORTPRESS Publishing House";"2002-2025";"Rehabilitation (Q3); Orthopedics and Sports Medicine (Q4)";"Medicine" +21558;21101062491;"Problems of Strength and Plasticity";journal;"18149146";"Lobachevsky State University of Nizhny Novgorod";No;No;0,206;Q3;5;40;120;1028;50;120;0,40;25,70;30,77;0;Russian Federation;Eastern Europe;"Lobachevsky State University of Nizhny Novgorod";"2019-2025";"Metals and Alloys (Q3); Ceramics and Composites (Q4); Mechanics of Materials (Q4); Modeling and Simulation (Q4)";"Engineering; Materials Science; Mathematics" +21559;21100790345;"Revista Mad";journal;"07180527";"Universidad de Chile";Yes;Yes;0,206;Q3;5;15;41;653;13;39;0,22;43,53;18,75;0;Chile;Latin America;"Universidad de Chile";"2016-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21560;21101140401;"Sigma Journal of Engineering and Natural Sciences";journal;"13047205, 13047191";"Yildiz Technical University";Yes;Yes;0,206;Q3;16;177;356;7125;399;356;1,14;40,25;32,12;1;Turkey;Middle East;"Yildiz Technical University";"2019-2025";"Engineering (miscellaneous) (Q3); Computational Mechanics (Q4); Energy (miscellaneous) (Q4); Mechanics of Materials (Q4)";"Energy; Engineering" +21561;21101133220;"Sortuz";journal;"19880847";"Onati International Institute for the Sociology of Law";Yes;Yes;0,206;Q3;3;21;55;849;32;52;0,53;40,43;45,83;0;Spain;Western Europe;"Onati International Institute for the Sociology of Law";"2019, 2021-2025";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21562;18907;"Tierarztliche Praxis Ausgabe K: Kleintiere - Heimtiere";journal;"14341239, 25675842";"Georg Thieme Verlag";No;No;0,206;Q3;26;31;127;1689;58;119;0,42;54,48;68,60;0;Germany;Western Europe;"Georg Thieme Verlag";"1997-2026";"Small Animals (Q3)";"Veterinary" +21563;19900191817;"Turkish Journal of Thoracic and Cardiovascular Surgery";journal;"21498156, 13015680";"Baycinar Medical Publishing";Yes;No;0,206;Q3;15;83;369;1498;207;362;0,50;18,05;21,24;1;Turkey;Middle East;"Baycinar Medical Publishing";"2010-2026";"Surgery (Q3); Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +21564;19300156808;"AACL Bioflux";journal;"18449166, 18448143";"Bioflux Publishing House";Yes;No;0,206;Q4;30;252;871;10411;741;863;0,86;41,31;40,27;0;Romania;Eastern Europe;"Bioflux Publishing House";"2006, 2009-2026";"Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Management, Monitoring, Policy and Law (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21565;25332;"Chinese Journal of Inorganic Chemistry";journal;"10014861";"Chinese Chemical Society";No;No;0,206;Q4;31;227;662;9840;550;660;0,95;43,35;42,20;0;China;Asiatic Region;"Chinese Chemical Society";"1996-2026";"Inorganic Chemistry (Q4)";"Chemistry" +21566;19320;"Chinese Journal of Reparative and Reconstructive Surgery";journal;"10021892";"West China University of Medical Science";No;No;0,206;Q4;18;236;613;0;393;613;0,60;0,00;31,37;0;China;Asiatic Region;"West China University of Medical Science";"1997-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +21567;21100979307;"Counseling Psychology and Psychotherapy";journal;"20753470, 23119446";"Moscow State University of Psychology and Education";Yes;Yes;0,206;Q4;13;25;114;628;65;104;0,64;25,12;68,25;0;Russian Federation;Eastern Europe;"Moscow State University of Psychology and Education";"2016-2025";"Clinical Psychology (Q4); Developmental and Educational Psychology (Q4); Health (social science) (Q4)";"Psychology; Social Sciences" +21568;28843;"Energetika";journal;"18228836, 02357208";"Lithuanian Academy of Sciences Publishers";Yes;No;0,206;Q4;14;7;18;157;17;18;0,29;22,43;26,32;0;Lithuania;Eastern Europe;"Lithuanian Academy of Sciences Publishers";"1969, 1982, 1985, 1987, 2006-2011, 2013-2025";"Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Energy" +21569;16800154715;"IAENG International Journal of Applied Mathematics";journal;"19929978, 19929986";"International Association of Engineers";Yes;No;0,206;Q4;26;356;636;9547;851;636;1,41;26,82;37,76;0;Hong Kong;Asiatic Region;"International Association of Engineers";"2009-2025";"Applied Mathematics (Q4)";"Mathematics" +21570;19700186847;"International Journal of Digital Crime and Forensics";journal;"19416210, 19416229";"IGI Global Publishing";No;No;0,206;Q4;20;7;25;269;28;25;0,76;38,43;21,43;0;United States;Northern America;"IGI Global Publishing";"2009-2026";"Software (Q4)";"Computer Science" +21571;21100869515;"International Journal of the Analytic Hierarchy Process";journal;"19366744";"Creative Decisions Foundation";Yes;Yes;0,206;Q4;12;20;66;1265;80;62;1,24;63,25;26,19;0;United States;Northern America;"Creative Decisions Foundation";"2018-2025";"Decision Sciences (miscellaneous) (Q4)";"Decision Sciences" +21572;21101040209;"Journal of Biomedical Photonics and Engineering";journal;"24112844";"Samara National Research University";Yes;Yes;0,206;Q4;11;33;136;1168;130;135;1,07;35,39;33,33;0;Russian Federation;Eastern Europe;"Samara National Research University";"2019-2025";"Acoustics and Ultrasonics (Q4); Atomic and Molecular Physics, and Optics (Q4); Biomaterials (Q4); Biomedical Engineering (Q4)";"Engineering; Materials Science; Physics and Astronomy" +21573;21100803385;"Journal of Condensed Matter Nuclear Science";journal;"22273123";"International Society for Condensed Matter Nuclear Science (ISCMNS)";No;No;0,206;Q4;11;30;74;960;23;69;0,32;32,00;13,33;0;United Kingdom;Western Europe;"International Society for Condensed Matter Nuclear Science (ISCMNS)";"2016-2025";"Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4)";"Energy; Physics and Astronomy" +21574;21100464708;"Journal of Credit Risk";journal;"17559723, 17446619";"Incisive Media Ltd.";No;No;0,206;Q4;14;17;45;629;33;45;0,86;37,00;40,00;0;United Kingdom;Western Europe;"Incisive Media Ltd.";"2011-2026";"Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +21575;28517;"Journal of Experimental and Theoretical Physics";journal;"10637761, 10906509";"Pleiades Publishing";No;No;0,206;Q4;66;31;389;1168;274;387;0,60;37,68;25,00;0;United States;Northern America;"Pleiades Publishing";"1980, 1983, 1992, 1997-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +21576;21101289580;"Journal of Finsler Geometry and its Applications";journal;"27830500";"University of Mohaghegh Ardabili";No;No;0,206;Q4;4;24;72;429;18;72;0,27;17,88;36,17;0;Iran;Middle East;"University of Mohaghegh Ardabili";"2021-2025";"Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4); Mathematical Physics (Q4)";"Mathematics" +21577;17600155202;"Journal of Nano Research";journal;"16619897, 16625250";"Trans Tech Publications";No;No;0,206;Q4;39;36;141;1186;155;141;1,17;32,94;26,40;0;Switzerland;Western Europe;"Trans Tech Publications";"2008-2025";"Materials Science (miscellaneous) (Q4); Nanoscience and Nanotechnology (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Materials Science; Physics and Astronomy" +21578;21101064980;"Journal of the Indonesian Mathematical Society";journal;"24600245, 20868952";"The Indonesian Mathematical Society";No;No;0,206;Q4;9;48;86;865;40;86;0,49;18,02;40,96;0;Indonesia;Asiatic Region;"The Indonesian Mathematical Society";"2019-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +21579;144607;"Neuroforum";journal;"09470875, 23637013";"Walter de Gruyter GmbH";No;No;0,206;Q4;14;0;29;0;15;25;0,00;0,00;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2005-2022";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +21580;18043;"Neuroscience and Behavioral Physiology";journal;"1573899X, 00970549";"Springer";No;No;0,206;Q4;39;188;529;10127;307;529;0,56;53,87;60,50;0;United States;Northern America;"Springer";"1967-1970, 1972-1973, 1976-1978, 1980-2026";"Neuroscience (miscellaneous) (Q4)";"Neuroscience" +21581;21100205754;"Ornithological Science";journal;"13470558";"Ornithological Society of Japan";No;No;0,206;Q4;24;21;56;952;33;53;0,50;45,33;32,05;0;Japan;Asiatic Region;"Ornithological Society of Japan";"2002-2007, 2009-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +21582;19700175096;"Pharmacognosy Journal";journal;"09753575";"EManuscript Technologies";No;No;0,206;Q4;43;82;670;3318;780;670;0,89;40,46;50,88;0;India;Asiatic Region;"EManuscript Technologies";"2009-2025";"Drug Discovery (Q4); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +21583;25279;"Revista Internacional de Contaminacion Ambiental";journal;"01884999";"Centro de Ciencias de la Atmosfera, UNAM";Yes;No;0,206;Q4;29;65;204;3354;176;199;0,69;51,60;46,95;0;Mexico;Latin America;"Centro de Ciencias de la Atmosfera, UNAM";"1996-2026";"Pollution (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +21584;21100297597;"Annals of DAAAM and Proceedings of the International DAAAM Symposium";conference and proceedings;"17269679";"DAAAM International Vienna";No;No;0,206;-;24;47;208;815;78;202;0,34;17,34;30,10;0;Austria;Western Europe;"DAAAM International Vienna";"2005-2011, 2015-2025";"Computer Science Applications; Control and Systems Engineering; Electrical and Electronic Engineering; Industrial and Manufacturing Engineering; Mechanical Engineering";"Computer Science; Engineering" +21585;18789;"Annual Report - Conference on Electrical Insulation and Dielectric Phenomena, CEIDP";conference and proceedings;"00849162";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,206;-;44;238;368;2835;231;365;0,67;11,91;22,30;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1973, 1978-1984, 1987-2013, 2015-2025";"Building and Construction; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Engineering (miscellaneous); Industrial and Manufacturing Engineering";"Engineering; Materials Science" +21586;21100797240;"ASEE Annual Conference and Exposition, Conference Proceedings";conference and proceedings;"21535965";"American Society for Engineering Education";No;No;0,206;-;44;2146;6202;43860;2405;6197;0,40;20,44;47,29;0;United States;Northern America;"American Society for Engineering Education";"2005-2025";"Artificial Intelligence; Computational Theory and Mathematics; Engineering (miscellaneous); Information Systems; Software";"Computer Science; Engineering" +21587;21100307476;"IEEE/IFIP International Conference on VLSI and System-on-Chip, VLSI-SoC";conference and proceedings;"23248432, 23248440";"IEEE Computer Society";No;No;0,206;-;18;0;206;0;173;197;0,75;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2013, 2015, 2017-2024";"Electrical and Electronic Engineering; Hardware and Architecture; Software";"Computer Science; Engineering" +21588;21100390419;"Memorie della Societa Astronomica Italiana - Journal of the Italian Astronomical Society";conference and proceedings;"1824016X";"Societa Astronomica Italiana";No;No;0,206;-;15;27;87;195;20;75;0,27;7,22;47,83;0;Italy;Western Europe;"Societa Astronomica Italiana";"2009, 2011-2014, 2016-2025";"Astronomy and Astrophysics; Atomic and Molecular Physics, and Optics; Electrical and Electronic Engineering; Instrumentation; Radiology, Nuclear Medicine and Imaging";"Engineering; Medicine; Physics and Astronomy" +21589;21100228514;"Proceedings - IEEE International Symposium on Rapid System Prototyping, RSP";conference and proceedings;"21505519, 21505500";"IEEE Computer Society";No;No;0,206;-;13;0;22;0;21;20;0,33;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012, 2014, 2016-2018, 2021-2023";"Computer Networks and Communications; Control and Systems Engineering; Hardware and Architecture; Signal Processing; Software";"Computer Science; Engineering" +21590;21100793182;"Anuario Lope de Vega";journal;"20148860";"Universitat Autonoma de Barcelona";Yes;Yes;0,205;Q1;8;18;58;448;18;55;0,38;24,89;50,00;1;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2015-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21591;11600153438;"Literature Compass";journal;"17414113";"Wiley-Blackwell";No;No;0,205;Q1;21;23;90;825;34;90;0,37;35,87;59,09;0;United Kingdom;Western Europe;"Wiley-Blackwell";"2004-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21592;21101083149;"Literaturwissenschaftliches Jahrbuch";journal;"26289849, 0075997X";"Duncker und Humblot GmbH";No;No;0,205;Q1;1;13;29;534;3;29;0,05;41,08;20,00;0;Germany;Western Europe;"Duncker und Humblot GmbH";"2019-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +21593;21100199115;"Rusin";journal;"23451149, 18572685";"Association 'Rus'";Yes;No;0,205;Q1;11;45;201;1109;37;190;0,18;24,64;57,63;0;Moldova;Eastern Europe;"Association 'Rus'";"2011-2025";"Literature and Literary Theory (Q1); History (Q2); Linguistics and Language (Q2); Anthropology (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21594;21100244898;"Antipoda";journal;"19005407, 20114273";"Universidad de los Andes, Colombia";Yes;Yes;0,205;Q2;12;35;77;1720;36;77;0,58;49,14;40,00;0;Colombia;Latin America;"Universidad de los Andes, Colombia";"2013-2026";"Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21595;21101109702;"Finnish Journal of Linguistics";journal;"28144376";"The Linguistic Association of Finland";Yes;Yes;0,205;Q2;12;9;17;495;8;17;0,25;55,00;57,14;0;Finland;Western Europe;"The Linguistic Association of Finland";"2021-2025";"Linguistics and Language (Q2)";"Social Sciences" +21596;21101041502;"Journal of Astronomical History and Heritage";journal;"14402807";"Science Press";No;No;0,205;Q2;8;47;136;2019;38;130;0,31;42,96;26,04;0;China;Asiatic Region;"Science Press";"2014, 2019-2025";"History (Q2); Astronomy and Astrophysics (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Arts and Humanities; Physics and Astronomy" +21597;21100840441;"Journal of Eastern Mediterranean Archaeology and Heritage Studies";journal;"21663548, 21663556";"Penn State University Press";No;No;0,205;Q2;11;28;84;1699;49;58;0,54;60,68;30,36;0;United States;Northern America;"Penn State University Press";"2017-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2); Conservation (Q2)";"Arts and Humanities; Social Sciences" +21598;29722;"Journal of Medical Biography";journal;"17581087, 09677720";"SAGE Publications Ltd";No;No;0,205;Q2;19;88;163;3386;60;144;0,34;38,48;27,64;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1993-2026";"History and Philosophy of Science (Q2); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +21599;21101047447;"Manchester Journal of Transnational Islamic Law and Practice";journal;"26336626";"Electronicpublications.org Ltd";No;No;0,205;Q2;4;98;172;4714;88;168;0,55;48,10;35,59;0;United Kingdom;Western Europe;"Electronicpublications.org Ltd";"2020-2025";"Religious Studies (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +21600;21101257043;"Munaddhomah";journal;"27752933";"Institut Pesantren KH Abdul Chalim";Yes;No;0,205;Q2;10;48;180;2791;196;180;1,16;58,15;26,56;0;Indonesia;Asiatic Region;"Institut Pesantren KH Abdul Chalim";"2020-2026";"Philosophy (Q2); Religious Studies (Q2); Education (Q3)";"Arts and Humanities; Social Sciences" +21601;21101152538;"Paramita";journal;"08540039, 24075825";"Universitas Negeri Semarang";Yes;No;0,205;Q2;3;30;60;1511;25;60;0,42;50,37;37,50;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2023-2025";"History (Q2); History and Philosophy of Science (Q3)";"Arts and Humanities" +21602;19655;"Terapevticheskii Arkhiv";journal;"23095342, 00403660";"Consilium MediCum";Yes;Yes;0,205;Q2;26;133;545;4469;442;544;0,75;33,60;65,99;0;Russian Federation;Eastern Europe;"Consilium MediCum";"1949-2025";"History (Q2); Family Practice (Q3); Internal Medicine (Q3); Endocrinology, Diabetes and Metabolism (Q4)";"Arts and Humanities; Medicine" +21603;28709;"Annals of Cancer Research and Therapy";journal;"13446835";"PJD Publications Ltd";No;No;0,205;Q3;7;6;37;167;14;37;0,21;27,83;39,13;0;United States;Northern America;"PJD Publications Ltd";"1992-1998, 2000, 2002-2026";"Pharmacology (medical) (Q3); Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +21604;21100927210;"Balkan Social Science Review";journal;"18578772, 18578799";"Goce Delchev University of Shtip";No;No;0,205;Q3;8;30;96;1342;54;96;0,54;44,73;50,94;0;Macedonia;Eastern Europe;"Goce Delchev University of Shtip";"2013-2025";"Law (Q3); Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Public Administration (Q4)";"Social Sciences" +21605;11300153735;"Current Chemical Biology";journal;"22127968, 18723136";"Bentham Science Publishers";No;No;0,205;Q3;28;34;56;2561;64;55;1,19;75,32;41,41;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2008-2025";"Biochemistry (medical) (Q3); Biochemistry (Q4); Clinical Biochemistry (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +21606;21100215172;"HTM - Journal of Heat Treatment and Materials";trade journal;"21941831, 18672493";"Walter de Gruyter";No;No;0,205;Q3;16;18;71;444;43;70;0,61;24,67;15,00;0;Germany;Western Europe;"Walter de Gruyter";"1969-1970, 1972, 1978, 1992, 1995, 1998, 2000-2004, 2007-2008, 2012-2026";"Industrial and Manufacturing Engineering (Q3); Metals and Alloys (Q3); Materials Chemistry (Q4)";"Engineering; Materials Science" +21607;21100927374;"Humanity: An International Journal of Human Rights, Humanitarianism, and Development";journal;"21514372, 21514364";"University of Pennsylvania Press";No;No;0,205;Q3;11;0;73;0;60;67;0,46;0,00;0,00;0;United States;Northern America;"University of Pennsylvania Press";"2019-2024";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21608;14773;"Information-Wissenschaft und Praxis";journal;"14344653, 16194292";"De Gruyter Saur";No;No;0,205;Q3;10;37;110;439;16;104;0,18;11,86;50,91;0;Germany;Western Europe;"De Gruyter Saur";"1997-2026";"Library and Information Sciences (Q3); Information Systems (Q4)";"Computer Science; Social Sciences" +21609;21100201515;"Instrumentation Mesure Metrologie";journal;"22698485, 16314670";"International Information and Engineering Technology Association";No;No;0,205;Q3;15;38;108;1150;138;108;1,47;30,26;28,74;0;Canada;Northern America;"International Information and Engineering Technology Association";"2011-2014, 2016-2025";"Engineering (miscellaneous) (Q3); Instrumentation (Q4)";"Engineering; Physics and Astronomy" +21610;21101085518;"International Journal of Agriculture and Natural Resources";journal;"24525731";"Pontificia Universidad Catolica de Chile, Facultad de Agronomia e Ingenieria Forestal";No;Yes;0,205;Q3;29;0;42;0;38;42;0,69;0,00;0,00;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile, Facultad de Agronomia e Ingenieria Forestal";"2020-2024";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +21611;21100246540;"International Journal of Technology Management and Sustainable Development";journal;"14742748, 20400551";"Intellect Ltd.";No;No;0,205;Q3;17;15;49;985;43;47;0,76;65,67;41,18;0;United Kingdom;Western Europe;"Intellect Ltd.";"2013-2025";"Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Environmental Science; Social Sciences" +21612;21101042153;"Jordan Journal of Earth and Environmental Sciences";journal;"19956681";"Hashemite University";No;No;0,205;Q3;9;43;99;1870;79;99;0,79;43,49;27,36;0;Jordan;Middle East;"Hashemite University";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q4)";"Earth and Planetary Sciences; Environmental Science" +21613;21100903712;"Journal of Advanced Veterinary Research";journal;"20906269, 20906277";"Assiut University, Faculty of Veterinary Medicine, Department of Animal Medicine";Yes;No;0,205;Q3;13;171;684;7517;599;683;0,87;43,96;45,47;0;Egypt;Africa/Middle East;"Assiut University, Faculty of Veterinary Medicine, Department of Animal Medicine";"2018-2026";"Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences; Veterinary" +21614;21100239852;"Journal of Chemical Technology and Metallurgy";journal;"13147978, 13147471";"University of Chemical Technology and Metallurgy";Yes;No;0,205;Q3;32;115;457;3184;373;457;0,87;27,69;42,20;0;Bulgaria;Eastern Europe;"University of Chemical Technology and Metallurgy";"2013-2026";"Chemical Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3)";"Chemical Engineering; Engineering" +21615;21101113606;"Journal of Client-Centered Nursing Care";journal;"24764132, 24764124";"Iran University of Medical Sciences";Yes;Yes;0,205;Q3;9;27;97;1056;59;96;0,62;39,11;62,16;0;Iran;Middle East;"Iran University of Medical Sciences";"2019-2025";"Critical Care Nursing (Q3); Care Planning (Q4); Community and Home Care (Q4); Issues, Ethics and Legal Aspects (Q4)";"Nursing" +21616;21101120334;"Journal of Graphics";journal;"2095302X";"";No;No;0,205;Q3;16;132;388;4124;499;388;1,51;31,24;33,96;0;China;Asiatic Region;"";"2019-2025";"Computer Graphics and Computer-Aided Design (Q3); Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4)";"Computer Science; Engineering" +21617;21101134535;"Journal of Tropical Plant Pests and Diseases";journal;"14117525, 24610399";"University of Lampung Faculty of Agriculture";Yes;No;0,205;Q3;12;33;70;1174;66;70;0,86;35,58;34,78;0;Indonesia;Asiatic Region;"University of Lampung Faculty of Agriculture";"2001-2026";"Forestry (Q3); Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +21618;21101378437;"Jurnal Litigasi";journal;"24422274";"Pasundan University";Yes;No;0,205;Q3;3;30;59;1295;39;59;0,73;43,17;45,00;0;Indonesia;Asiatic Region;"Pasundan University";"2021-2025";"Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Public Administration (Q4)";"Social Sciences" +21619;21101063732;"Law of Justice Journal";journal;"14137038, 22383212";"Universidade de Passo Fundo";No;Yes;0,205;Q3;5;35;91;930;44;90;0,67;26,57;28,57;0;Brazil;Latin America;"Universidade de Passo Fundo";"2019-2025";"Law (Q3)";"Social Sciences" +21620;13413;"Legal Reference Services Quarterly";journal;"0270319X, 1540949X";"Taylor and Francis Ltd.";No;No;0,205;Q3;10;18;52;954;20;44;0,37;53,00;61,54;0;United States;Northern America;"Taylor and Francis Ltd.";"1981-2026";"Law (Q3); Library and Information Sciences (Q3)";"Social Sciences" +21621;21101079123;"Pamukkale Journal of Sport Sciences";journal;"13090356";"Pamukkale University";Yes;Yes;0,205;Q3;4;22;66;1248;50;66;0,76;56,73;42,47;0;Turkey;Middle East;"Pamukkale University";"2019-2025";"Education (Q3); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)";"Health Professions; Medicine; Social Sciences" +21622;21101218357;"Revista da Defensoria Publica do Distrito Federal";journal;"26745755, 26745739";"Defensoria Publica do Distrito Federal";Yes;Yes;0,205;Q3;2;0;27;0;1;23;0,00;0,00;0,00;0;Brazil;Latin America;"Defensoria Publica do Distrito Federal";"2019-2024";"Law (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21623;21100901812;"Revista de Derecho Civil";journal;"23412216";"Notyreg Hispana";Yes;Yes;0,205;Q3;9;27;128;1018;24;124;0,22;37,70;63,64;0;Spain;Western Europe;"Notyreg Hispana";"2018-2025";"Law (Q3)";"Social Sciences" +21624;21101272842;"Scientometrics Research Journal";journal;"24235563, 24233773";"Shahed University";Yes;Yes;0,205;Q3;5;26;96;1267;45;91;0,44;48,73;49,02;0;Iran;Middle East;"Shahed University";"2021-2025";"Library and Information Sciences (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21625;21100415616;"Sel'skokhozyaistvennaya Biologiya";journal;"23134836, 01316397";"Russian Academy of Agricultural Sciences";No;No;0,205;Q3;21;77;255;4386;228;255;0,91;56,96;59,02;0;Russian Federation;Eastern Europe;"Russian Academy of Agricultural Sciences";"2014-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +21626;26486;"Sociologia del Lavoro";journal;"1972554X, 03925048";"FrancoAngeli";No;No;0,205;Q3;9;21;106;1130;63;102;0,64;53,81;76,19;0;Italy;Western Europe;"FrancoAngeli";"1992, 1996, 2015-2025";"Sociology and Political Science (Q3); Economics and Econometrics (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +21627;19700166903;"Universitas Scientiarum";journal;"20271352, 01227483";"Pontificia Universidad Javeriana";Yes;Yes;0,205;Q3;17;39;45;607;41;45;1,00;15,56;42,20;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2009-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +21628;21100925895;"Vestnik Tomskogo Gosudarstvennogo Universiteta - Upravlenie, Vychislitel'naya Tekhnika i Informatika";journal;"23112085, 19988605";"Tomsk State University";Yes;No;0,205;Q3;4;50;153;826;40;153;0,28;16,52;35,35;0;Russian Federation;Eastern Europe;"Tomsk State University";"2019-2025";"Computer Networks and Communications (Q3); Computer Science Applications (Q4); Information Systems (Q4)";"Computer Science" +21629;17305;"Botanicheskii Zhurnal";journal;"00068136, 26586339";"Komarov Botanical Institute";No;No;0,205;Q4;10;49;274;1969;73;269;0,27;40,18;62,39;0;Russian Federation;Eastern Europe;"Komarov Botanical Institute";"1977, 2019-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +21630;21101030394;"Business Informatics";journal;"25878158, 2587814X";"National Research University Higher School of Economics (HSE University)";No;No;0,205;Q4;14;23;72;845;68;72;1,02;36,74;32,00;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2017-2025";"Business and International Management (Q4); Economics and Econometrics (Q4); Information Systems (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Computer Science; Economics, Econometrics and Finance" +21631;21101308671;"CASE";journal;"24686441";"Elsevier B.V.";No;No;0,205;Q4;10;86;323;957;141;278;0,44;11,13;32,21;0;Netherlands;Western Europe;"Elsevier B.V.";"2017-2026";"Cardiology and Cardiovascular Medicine (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +21632;21101073599;"Environmental Chemistry";journal;"02546108";"Science Press";No;No;0,205;Q4;14;362;896;18977;778;894;0,88;52,42;44,31;0;China;Asiatic Region;"Science Press";"2021-2025";"Analytical Chemistry (Q4); Environmental Chemistry (Q4); Pollution (Q4)";"Chemistry; Environmental Science" +21633;26902;"High Energy Chemistry";journal;"00181439, 16083148";"Pleiades Publishing";No;No;0,205;Q4;28;161;442;3507;308;433;0,72;21,78;43,95;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Physical and Theoretical Chemistry (Q4)";"Chemistry" +21634;26075;"IEICE Transactions on Electronics";journal;"09168524, 17451353";"Maruzen Co., Ltd/Maruzen Kabushikikaisha";No;No;0,205;Q4;53;90;311;2587;212;279;0,57;28,74;16,85;0;Japan;Asiatic Region;"Maruzen Co., Ltd/Maruzen Kabushikikaisha";"1993-2026";"Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science" +21635;21101204531;"Interdisciplinary Journal of Management Studies";journal;"29810795";"University of Tehran, College of Farabi";No;No;0,205;Q4;15;49;180;3470;217;180;1,29;70,82;27,27;0;Iran;Middle East;"University of Tehran, College of Farabi";"2024-2026";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Marketing (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +21636;21100204514;"International Journal of Advanced Mechatronic Systems";journal;"17568412, 17568420";"Inderscience";No;No;0,205;Q4;18;20;45;826;52;45;1,25;41,30;27,91;0;Switzerland;Western Europe;"Inderscience";"2008-2017, 2020-2026";"Control and Systems Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +21637;21100920640;"International Journal of Environmental Science and Development";journal;"20100264";"International Journal of Environmental Science and Development";Yes;No;0,205;Q4;14;54;140;2050;116;140;0,69;37,96;37,93;0;Singapore;Asiatic Region;"International Journal of Environmental Science and Development";"2019-2026";"Environmental Science (miscellaneous) (Q4)";"Environmental Science" +21638;21100903472;"Iranian Journal of Psychiatry and Clinical Psychology";journal;"22287515, 17354315";"Iran University of Medical Sciences";No;No;0,205;Q4;12;25;108;1129;67;104;0,55;45,16;48,10;0;Iran;Middle East;"Iran University of Medical Sciences";"2018-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +21639;21100817617;"Journal of Applied Nonlinear Dynamics";journal;"21646457, 21646473";"L and H Scientific Publishing, LLC";No;No;0,205;Q4;16;52;165;1738;129;165;0,93;33,42;37,11;0;United States;Northern America;"L and H Scientific Publishing, LLC";"2012-2026";"Civil and Structural Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +21640;19600156852;"Journal of Cardiology Cases";journal;"18785409";"Elsevier Ltd";No;No;0,205;Q4;15;109;496;985;265;483;0,50;9,04;18,45;0;United Kingdom;Western Europe;"Elsevier Ltd";"2010-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +21641;21100223313;"Journal of Information Hiding and Multimedia Signal Processing";journal;"20734239, 20734212";"Taiwan Ubiquitous Information CO LTD";No;No;0,205;Q4;31;60;63;1852;107;63;1,84;30,87;36,72;0;Taiwan;Asiatic Region;"Taiwan Ubiquitous Information CO LTD";"2010-2025";"Computer Vision and Pattern Recognition (Q4); Software (Q4)";"Computer Science" +21642;21100198715;"Journal of Mechanical Engineering";journal;"2550164X, 18235514";"UiTM Press";No;No;0,205;Q4;21;49;196;1598;194;196;0,98;32,61;29,53;0;Malaysia;Asiatic Region;"UiTM Press";"2011-2025";"Mechanical Engineering (Q4)";"Engineering" +21643;4700152615;"Letters in Organic Chemistry";journal;"15701786, 18756255";"Bentham Science Publishers";No;No;0,205;Q4;34;117;366;6550;411;314;1,28;55,98;41,94;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2005-2026";"Biochemistry (Q4); Organic Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +21644;21101197400;"Mineralogical Journal (Ukraine)";journal;"25192396, 2519447X";"National Academy of Sciences of Ukraine";No;No;0,205;Q4;5;31;99;878;24;99;0,18;28,32;50,00;0;Ukraine;Eastern Europe;"National Academy of Sciences of Ukraine";"2019-2025";"Fuel Technology (Q4); Geochemistry and Petrology (Q4); Geology (Q4)";"Earth and Planetary Sciences; Energy" +21645;19862;"Mycotaxon";journal;"00934666";"Mycotaxon Ltd";Yes;No;0,205;Q4;51;0;109;0;59;109;0,00;0,00;0,00;0;United States;Northern America;"Mycotaxon Ltd";"1989, 1996-2022";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +21646;21101040217;"Proceedings of the Zoological Institute of the Russian Academy of Sciences";journal;"22213996, 02060477";"Russian Academy of Sciences, Zoological Institute";No;No;0,205;Q4;9;28;122;1511;59;121;0,48;53,96;41,51;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences, Zoological Institute";"2019-2025";"Animal Science and Zoology (Q4); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +21647;21455;"Progress in Medicinal Chemistry";book series;"00796468, 18757863";"Elsevier B.V.";No;No;0,205;Q4;40;4;12;271;39;3;2,00;67,75;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1961-1963, 1965, 1967, 1969-1971, 1973-1983, 1985-2025";"Molecular Medicine (Q4); Pharmacology (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +21648;22532;"Public Health Forum";journal;"18764851, 09445587";"Walter de Gruyter GmbH";No;No;0,205;Q4;10;88;281;1123;68;269;0,22;12,76;72,95;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1993-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +21649;21101249032;"Publications Mathematiques de Besancon - Algebre et Theorie des Nombres";journal;"25926616, 28048504";"";No;No;0,205;Q4;2;7;15;183;3;14;0,08;26,14;21,43;0;France;Western Europe;"";"2020-2025";"Algebra and Number Theory (Q4)";"Mathematics" +21650;21692;"Reneng Dongli Gongcheng/Journal of Engineering for Thermal Energy and Power";journal;"10012060";"Harbin Research Institute";No;No;0,205;Q4;18;207;778;4102;481;778;0,67;19,82;25,89;0;China;Asiatic Region;"Harbin Research Institute";"1998-2025";"Condensed Matter Physics (Q4); Mechanical Engineering (Q4)";"Engineering; Physics and Astronomy" +21651;21525;"Russian Journal of General Chemistry";journal;"16083350, 10703632";"Pleiades Publishing";No;No;0,205;Q4;41;392;1270;18125;1206;1269;1,05;46,24;46,86;0;United States;Northern America;"Pleiades Publishing";"1996-2026";"Chemistry (miscellaneous) (Q4)";"Chemistry" +21652;21101268228;"Sakarya University Journal of Computer and Information Sciences";journal;"26368129";"Sakarya University";Yes;Yes;0,205;Q4;7;55;98;2209;88;98;0,91;40,16;31,48;0;Turkey;Middle East;"Sakarya University";"2022-2025";"Computer Science (miscellaneous) (Q4); Decision Sciences (miscellaneous) (Q4); Software (Q4); Theoretical Computer Science (Q4)";"Computer Science; Decision Sciences; Mathematics" +21653;21101170036;"Taprobanica";journal;"1800427X";"Research Center for Climate Change (RCCC), University of Indonesia";No;No;0,205;Q4;8;48;76;1649;26;38;0,23;34,35;24,53;0;Indonesia;Asiatic Region;"Research Center for Climate Change (RCCC), University of Indonesia";"2020-2025";"Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Molecular Biology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +21654;14520;"Vie et Milieu";journal;"02408759";"Universite de Paris VI (Pierre et Marie Curie)";No;No;0,205;Q4;38;0;23;0;18;23;1,00;0,00;0,00;0;France;Western Europe;"Universite de Paris VI (Pierre et Marie Curie)";"1980-1987, 1989-2024";"Aquatic Science (Q4); Ecology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21655;21101186246;"IN4PL - Proceedings of the International Conference on Innovative Intelligent Industrial Production and Logistics";conference and proceedings;"21849285";"Science and Technology Publications, Lda";No;No;0,205;-;7;0;33;0;26;31;0,00;0,00;0,00;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2020-2022";"Artificial Intelligence; Computational Theory and Mathematics; Information Systems";"Computer Science" +21656;19700170481;"Bitacora Urbano Territorial";journal;"01247913, 2027145X";"Universidad Nacional de Colombia";Yes;Yes;0,204;Q2;12;39;152;996;65;144;0,28;25,54;45,00;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2009-2026";"Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q3); Urban Studies (Q3)";"Arts and Humanities; Social Sciences" +21657;21100897945;"Educacao and Realidade";journal;"01003143, 21756236";"Universidade Federal do Rio Grande do Sul,Faculdade de Educacao";Yes;Yes;0,204;Q2;9;60;185;2219;62;184;0,26;36,98;55,88;0;Brazil;Latin America;"Universidade Federal do Rio Grande do Sul,Faculdade de Educacao";"2018-2025";"Arts and Humanities (miscellaneous) (Q2); Education (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +21658;23701;"Indian Journal of Gender Studies";journal;"09715215, 09730672";"Sage Publications India Pvt. Ltd";No;No;0,204;Q2;30;16;65;677;38;53;0,54;42,31;73,68;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1994-2026";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Gender Studies (Q3); Health (social science) (Q4)";"Arts and Humanities; Social Sciences" +21659;21101048046;"Information and Culture";journal;"21663033, 21648034";"University of Texas Press";No;No;0,204;Q2;17;12;41;904;39;41;0,96;75,33;66,67;0;United States;Northern America;"University of Texas Press";"2012-2025";"Conservation (Q2); History (Q2); Library and Information Sciences (Q3)";"Arts and Humanities; Social Sciences" +21660;16800154752;"Journal of Cognition and Culture";journal;"15677095, 15685373";"Brill Academic Publishers";No;No;0,204;Q2;52;32;64;1348;48;64;0,73;42,13;52,17;0;Netherlands;Western Europe;"Brill Academic Publishers";"2001-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Experimental and Cognitive Psychology (Q4); Social Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +21661;21101075507;"Journal of Dharma Studies";journal;"25220926, 25220934";"Springer International Publishing AG";No;No;0,204;Q2;6;44;44;1950;20;42;0,46;44,32;46,34;0;Switzerland;Western Europe;"Springer International Publishing AG";"2018-2026";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +21662;16400154700;"Method and Theory in the Study of Religion";journal;"09433058, 15700682";"Brill Academic Publishers";No;No;0,204;Q2;35;27;65;1018;31;63;0,20;37,70;27,03;0;Netherlands;Western Europe;"Brill Academic Publishers";"1989-1991, 1993-2026";"Religious Studies (Q2)";"Arts and Humanities" +21663;21101281543;"Science Editor and Publisher";journal;"25418122, 25420267";"";No;No;0,204;Q2;6;19;81;535;44;69;0,50;28,16;76,92;0;Russian Federation;Eastern Europe;"";"2021-2025";"Linguistics and Language (Q2); Communication (Q3); Library and Information Sciences (Q3)";"Social Sciences" +21664;21101056816;"Taikomoji Kalbotyra";journal;"20298935";"Vilnius University Press";Yes;Yes;0,204;Q2;4;12;43;544;15;40;0,38;45,33;100,00;0;Lithuania;Eastern Europe;"Vilnius University Press";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +21665;23415;"Accreditation and Quality Assurance";journal;"09491775, 14320517";"Springer New York";No;No;0,204;Q3;48;69;124;1950;131;118;0,95;28,26;44,37;0;United States;Northern America;"Springer New York";"1996-2026";"Chemical Engineering (miscellaneous) (Q3); Safety, Risk, Reliability and Quality (Q3); Chemistry (miscellaneous) (Q4); Instrumentation (Q4)";"Chemical Engineering; Chemistry; Engineering; Physics and Astronomy" +21666;13474;"Africa Development/Afrique et Developpement";journal;"08503907";"Council for the Development of Social Science Research in Africa";Yes;No;0,204;Q3;23;0;104;0;76;98;0,57;0,00;0,00;0;Senegal;Africa;"Council for the Development of Social Science Research in Africa";"1978-1979, 1981-1986, 1990, 1994-1995, 2007-2024";"Political Science and International Relations (Q3); Sociology and Political Science (Q3); Development (Q4)";"Social Sciences" +21667;21101091059;"Ambulatornaya Khirurgiya";journal;"27128741, 27822591";"Remedium Group Ltd";Yes;Yes;0,204;Q3;4;60;138;1618;60;131;0,38;26,97;36,28;0;Russian Federation;Eastern Europe;"Remedium Group Ltd";"2021-2025";"Anesthesiology and Pain Medicine (Q3); Surgery (Q3); Urology (Q3); Cardiology and Cardiovascular Medicine (Q4); Gastroenterology (Q4)";"Medicine" +21668;17700156009;"Animal Nutrition and Feed Technology";journal;"0974181X, 09722963";"Indian journals";No;No;0,204;Q3;19;24;156;912;92;156;0,64;38,00;20,00;0;India;Asiatic Region;"Indian journals";"2008-2025";"Food Animals (Q3)";"Veterinary" +21669;21101149807;"Assiut Veterinary Medical Journal (Egypt)";journal;"23145226, 10125973";"Assiut University, Faculty of Veterinary Medicine";Yes;No;0,204;Q3;8;189;217;8799;171;217;0,79;46,56;51,48;0;Egypt;Africa/Middle East;"Assiut University, Faculty of Veterinary Medicine";"1974-1977, 1979-2026";"Equine (Q3); Food Animals (Q3); Small Animals (Q3); Veterinary (miscellaneous) (Q3)";"Veterinary" +21670;21101264204;"Crop Research";journal;"09704884, 24541761";"Gaurav Publications";No;No;0,204;Q3;7;58;152;1780;140;152;0,76;30,69;31,69;0;India;Asiatic Region;"Gaurav Publications";"2021-2025";"Forestry (Q3); Agronomy and Crop Science (Q4); Horticulture (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +21671;21259;"Drugs and Therapy Perspectives";journal;"11791977, 11720360";"";No;No;0,204;Q3;16;87;215;2443;117;204;0,48;28,08;40,54;0;Switzerland;Western Europe;"";"1993-2026";"Pharmacology (medical) (Q3)";"Medicine" +21672;21276;"European Review";journal;"10627987, 14740575";"Cambridge University Press";No;No;0,204;Q3;39;48;155;2111;131;146;0,76;43,98;32,53;0;United Kingdom;Western Europe;"Cambridge University Press";"1993-2026";"Geography, Planning and Development (Q3); Political Science and International Relations (Q3)";"Social Sciences" +21673;21101163288;"Face";journal;"27325016";"SAGE Publications Inc.";No;No;0,204;Q3;8;90;236;2520;120;190;0,48;28,00;45,74;0;United States;Northern America;"SAGE Publications Inc.";"2020-2025";"Surgery (Q3)";"Medicine" +21674;21101225722;"Foro: Revista de Derecho";journal;"26312484, 13902466";"Universidad Andina Simon Olivar, Sede Ecuador";Yes;Yes;0,204;Q3;4;19;60;560;24;53;0,38;29,47;60,00;0;Ecuador;Latin America;"Universidad Andina Simon Olivar, Sede Ecuador";"2020-2026";"Law (Q3)";"Social Sciences" +21675;4700152626;"Frontiers of Education in China";journal;"16733533, 1673341X";"Higher Education Press Limited Company";No;No;0,204;Q3;28;26;74;813;49;73;0,68;31,27;32,26;0;China;Asiatic Region;"Higher Education Press Limited Company";"2006-2025";"Education (Q3)";"Social Sciences" +21676;8000153132;"Global Jurist";journal;"19342640";"Walter de Gruyter GmbH";No;No;0,204;Q3;14;25;50;2165;43;49;0,81;86,60;28,57;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2007-2025";"Law (Q3); Political Science and International Relations (Q3)";"Social Sciences" +21677;21100865914;"Global Trade and Customs Journal";journal;"18756468, 1569755X";"Kluwer Law International";No;No;0,204;Q3;9;90;208;4475;129;194;0,65;49,72;28,43;1;Netherlands;Western Europe;"Kluwer Law International";"2018-2026";"Law (Q3); Business and International Management (Q4)";"Business, Management and Accounting; Social Sciences" +21678;21101060203;"Interdisciplinary Political Studies";journal;"20398573";"University of Salento";Yes;Yes;0,204;Q3;8;24;36;1711;27;35;0,79;71,29;66,67;0;Italy;Western Europe;"University of Salento";"2017-2025";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21679;83179;"International Journal of Heavy Vehicle Systems";journal;"17415152, 1744232X";"Inderscience Enterprises Ltd";No;No;0,204;Q3;27;37;110;1289;95;110;0,78;34,84;23,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2000, 2004-2025";"Automotive Engineering (Q3); Mechanical Engineering (Q4)";"Engineering" +21680;21100220465;"International Journal of Knowledge and Learning";journal;"17411017, 17411009";"Inderscience";No;No;0,204;Q3;26;34;77;1897;68;77;0,79;55,79;40,85;0;Switzerland;Western Europe;"Inderscience";"2005-2012, 2014-2025";"Education (Q3)";"Social Sciences" +21681;26714;"Jisuanji Yanjiu yu Fazhan/Computer Research and Development";journal;"10001239";"Science Press";No;No;0,204;Q3;50;202;598;10211;735;595;1,26;50,55;32,96;0;China;Asiatic Region;"Science Press";"1998, 2001-2025";"Computer Networks and Communications (Q3); Hardware and Architecture (Q4); Software (Q4)";"Computer Science" +21682;144786;"Journal of Japan Industrial Management Association";journal;"13422618, 21879079";"Japan Industrial Management Association";Yes;No;0,204;Q3;11;16;49;459;24;49;0,28;28,69;28,21;0;Japan;Asiatic Region;"Japan Industrial Management Association";"2004-2026";"Industrial and Manufacturing Engineering (Q3); Applied Mathematics (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering; Mathematics" +21683;21101210523;"Journal of Language and Literacy Education";journal;"15599035";"University of Georgia Mary Frances Early College of Education";No;No;0,204;Q3;10;14;66;570;39;43;0,26;40,71;72,73;0;United States;Northern America;"University of Georgia Mary Frances Early College of Education";"2009, 2020-2025";"Education (Q3)";"Social Sciences" +21684;21100944567;"Journal of Peer Learning";journal;"22002359";"";No;No;0,204;Q3;5;8;13;360;11;11;0,00;45,00;88,24;0;United States;Northern America;"";"2019-2020, 2022, 2025";"Education (Q3)";"Social Sciences" +21685;21101056823;"Paper and Biomaterials";journal;"20962355";"China Pulp and Paper Magazines Publisher (CPPMP)";No;No;0,204;Q3;13;0;41;0;43;41;1,18;0,00;0,00;0;China;Asiatic Region;"China Pulp and Paper Magazines Publisher (CPPMP)";"2019-2023";"Chemical Engineering (miscellaneous) (Q3); Forestry (Q3); Biomaterials (Q4); Materials Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Chemical Engineering; Materials Science" +21686;4700152401;"Psychoanalytic Social Work";journal;"15229033, 15228878";"Routledge";No;No;0,204;Q3;15;22;37;780;15;36;0,36;35,45;56,67;0;United States;Northern America;"Routledge";"1999-2025";"Social Sciences (miscellaneous) (Q3); Social Psychology (Q4); Social Work (Q4)";"Psychology; Social Sciences" +21687;21101314499;"Revista Brasileira de Atividade Fisica e Saude";journal;"23171634";"Brazilian Society of Physical Activity and Health";Yes;No;0,204;Q3;7;45;136;1518;82;128;0,57;33,73;44,28;0;Brazil;Latin America;"Brazilian Society of Physical Activity and Health";"2021-2026";"Health Professions (miscellaneous) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions" +21688;21101162835;"Revista de Derecho de la Seguridad Social, Laborum";journal;"23870370, 23867191";"Ediciones Laborum, S.L.";No;No;0,204;Q3;5;54;313;1538;37;252;0,10;28,48;39,29;0;Spain;Western Europe;"Ediciones Laborum, S.L.";"2019-2025";"Law (Q3)";"Social Sciences" +21689;19700174982;"Tanaffos";journal;"17350344";"Shaheed Beheshti University of Medical Sciences and Health Services";No;No;0,204;Q3;26;14;187;358;129;172;0,26;25,57;37,50;0;Iran;Middle East;"Shaheed Beheshti University of Medical Sciences and Health Services";"2006-2025";"Critical Care and Intensive Care Medicine (Q3); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +21690;22016;"Teorija in Praksa";journal;"00403598";"Ljubljana University, Faculty of Social Sciences";No;No;0,204;Q3;13;41;137;2300;56;125;0,33;56,10;55,93;0;Slovenia;Eastern Europe;"Ljubljana University, Faculty of Social Sciences";"1981-1983, 1985, 2011-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21691;14385;"Vestnik Otorinolaringologii";journal;"00424668, 23091274";"Media Sphera Publishing Group";No;No;0,204;Q3;14;104;277;2650;134;277;0,42;25,48;62,78;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"1945-1946, 1948, 1950-2025";"Otorhinolaryngology (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +21692;21101047089;"Vestnik Sankt-Peterburgskogo Universiteta. Pravo";journal;"25875833, 20741243";"Saint Petersburg State University";No;No;0,204;Q3;6;72;209;1468;40;209;0,20;20,39;40,59;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2019-2025";"Law (Q3)";"Social Sciences" +21693;19700170288;"Visual Communication Quarterly";journal;"15551407, 15551393";"Routledge";No;No;0,204;Q3;24;25;65;884;25;46;0,43;35,36;46,51;0;United Kingdom;Western Europe;"Routledge";"1994-2025";"Communication (Q3); Education (Q3)";"Social Sciences" +21694;19700186913;"Zpravy Lesnickeho Vyzkumu";journal;"18059872, 03229688";"Forestry and Game Management Research Institute";Yes;No;0,204;Q3;12;17;87;826;45;87;0,63;48,59;23,08;0;Czech Republic;Eastern Europe;"Forestry and Game Management Research Institute";"2009-2025";"Forestry (Q3); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21695;19700175246;"Acta Geodynamica et Geomaterialia";journal;"12149705";"Czech Academy of Sciences";Yes;No;0,204;Q4;28;43;67;1933;64;67;0,93;44,95;23,08;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"2004-2025";"Geology (Q4); Geophysics (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +21696;17300154739;"Aquatic Biology";journal;"18647790, 18647782";"Inter-Research";Yes;No;0,204;Q4;59;4;34;261;23;31;1,07;65,25;36,67;0;Germany;Western Europe;"Inter-Research";"2007-2025";"Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Oceanography (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +21697;21101153195;"Clinical Psychology and Special Education";journal;"23040394";"Moscow State University of Psychology and Education";Yes;Yes;0,204;Q4;6;45;85;1229;68;85;0,80;27,31;77,48;0;Russian Federation;Eastern Europe;"Moscow State University of Psychology and Education";"2022-2025";"Clinical Psychology (Q4); Developmental and Educational Psychology (Q4); Experimental and Cognitive Psychology (Q4); Neuropsychology and Physiological Psychology (Q4)";"Psychology" +21698;21100901148;"Current Pathobiology Reports";journal;"2167485X";"Springer US";No;No;0,204;Q4;40;0;3;0;2;3;0,00;0,00;0,00;0;United States;Northern America;"Springer US";"2013-2022";"Cancer Research (Q4); Cell Biology (Q4); Molecular Biology (Q4); Pathology and Forensic Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +21699;21100773724;"EAI Endorsed Transactions on Energy Web";journal;"2032944X";"European Alliance for Innovation";Yes;Yes;0,204;Q4;18;38;245;1063;260;245;1,19;27,97;38,94;0;Belgium;Western Europe;"European Alliance for Innovation";"2013-2025";"Control and Systems Engineering (Q4); Energy Engineering and Power Technology (Q4); Information Systems (Q4); Marketing (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Business, Management and Accounting; Computer Science; Energy; Engineering" +21700;40483;"Ideggyogyaszati Szemle";journal;"00191442, 24986208";"LifeTime Media Ltd";No;No;0,204;Q4;25;45;147;1481;96;147;0,62;32,91;48,66;0;Hungary;Eastern Europe;"LifeTime Media Ltd";"1954-1964, 1973-1985, 2002-2026";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +21701;21101262341;"Infectious Diseases and Clinical Microbiology";journal;"2667646X";"DOC Design and Informatics Co. Ltd.";No;No;0,204;Q4;4;57;48;1390;37;41;0,77;24,39;62,19;0;Turkey;Middle East;"DOC Design and Informatics Co. Ltd.";"2024-2026";"Infectious Diseases (Q4); Microbiology (medical) (Q4)";"Medicine" +21702;21101128525;"International Journal of Mathematics for Industry";journal;"26613352, 26613344";"World Scientific";Yes;Yes;0,204;Q4;7;21;44;957;41;44;1,00;45,57;20,51;0;Singapore;Asiatic Region;"World Scientific";"2019-2026";"Applied Mathematics (Q4); Computational Mechanics (Q4); Modeling and Simulation (Q4); Numerical Analysis (Q4)";"Engineering; Mathematics" +21703;21100385814;"International Journal of Services, Economics and Management";journal;"17530822, 17530830";"Inderscience";No;No;0,204;Q4;18;35;76;1577;72;76;0,75;45,06;49,51;0;Switzerland;Western Europe;"Inderscience";"2007-2025";"Economics and Econometrics (Q4); Strategy and Management (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +21704;145705;"Journal of Radiotherapy in Practice";journal;"14603969, 14671131";"Cambridge University Press";No;No;0,204;Q4;19;44;235;1223;134;232;0,60;27,80;42,39;0;United Kingdom;Western Europe;"Cambridge University Press";"1999-2000, 2002-2026";"Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +21705;5100155034;"Landschap";journal;"01696300";"Werkgemeenschap Landschapsecologisch Onderzoek";No;No;0,204;Q4;5;25;100;347;12;68;0,14;13,88;39,39;0;Netherlands;Western Europe;"Werkgemeenschap Landschapsecologisch Onderzoek";"2005-2014, 2018-2025";"Ecology (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science" +21706;21101145518;"Malaysian Journal of Nursing";journal;"22317007, 2462246X";"";No;No;0,204;Q4;8;145;292;4695;205;279;0,72;32,38;64,54;0;Malaysia;Asiatic Region;"";"2019-2026";"Nursing (miscellaneous) (Q4)";"Nursing" +21707;21100905277;"Mathematics and Statistics";journal;"23322071, 23322144";"Horizon Research Publishing";No;No;0,204;Q4;16;65;310;1449;198;310;0,57;22,29;36,67;0;United States;Northern America;"Horizon Research Publishing";"2018-2026";"Economics and Econometrics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +21708;27160;"Radiophysics and Quantum Electronics";journal;"00338443, 15739120";"Springer New York";Yes;No;0,204;Q4;31;63;220;1541;137;220;0,63;24,46;20,00;0;United States;Northern America;"Springer New York";"1967-2026";"Astronomy and Astrophysics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Nuclear and High Energy Physics (Q4); Statistical and Nonlinear Physics (Q4)";"Engineering; Materials Science; Physics and Astronomy" +21709;21101021468;"Research in Plant Disease";journal;"22339191, 15982262";"Korean Society of Plant Pathology";Yes;No;0,204;Q4;9;31;149;1066;88;142;0,62;34,39;41,96;0;South Korea;Asiatic Region;"Korean Society of Plant Pathology";"2019-2025";"Agronomy and Crop Science (Q4); Biochemistry (Q4); Biotechnology (Q4); Molecular Biology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +21710;12300154905;"Revista Fitotecnia Mexicana";journal;"01877380";"Sociedad Mexicana de Fitogenetica";Yes;No;0,204;Q4;24;55;172;1442;102;172;0,57;26,22;29,38;0;Mexico;Latin America;"Sociedad Mexicana de Fitogenetica";"2007-2025";"Agronomy and Crop Science (Q4); Genetics (Q4); Horticulture (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +21711;21100220436;"Revista Ingenieria de Construccion";journal;"07162952, 07185073";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,204;Q4;20;34;125;1236;111;123;1,06;36,35;29,55;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2007-2025";"Building and Construction (Q4); Civil and Structural Engineering (Q4)";"Engineering" +21712;21101310053;"SN Comprehensive Clinical Medicine";journal;"25238973";"Springer Nature";No;No;0,204;Q4;36;431;681;13185;387;665;0,56;30,59;39,89;0;Switzerland;Western Europe;"Springer Nature";"2019-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +21713;21100825467;"SPIN";journal;"20103247, 20103255";"World Scientific";No;No;0,204;Q4;27;56;122;2161;107;120;0,84;38,59;23,57;0;Singapore;Asiatic Region;"World Scientific";"2011-2026";"Atomic and Molecular Physics, and Optics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +21714;4900153101;"Steel in Translation";journal;"19350988, 09670912";"Pleiades Publishing";No;No;0,204;Q4;24;179;612;2595;209;612;0,32;14,50;31,00;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +21715;21100901572;"UCJC Business and Society Review";journal;"26593270";"Universia Holding";Yes;Yes;0,204;Q4;18;15;65;668;63;63;1,10;44,53;63,64;0;Spain;Western Europe;"Universia Holding";"2018-2025";"Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +21716;19400157034;"West African Journal of Applied Ecology";journal;"08554307";"Ecological Laboratory";Yes;No;0,204;Q4;19;9;42;455;38;42;0,89;50,56;15,00;0;Ghana;Africa;"Ecological Laboratory";"2009-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21717;4900152412;"World Earthquake Engineering";journal;"10076069";"";No;No;0,204;Q4;19;72;269;2491;156;269;0,61;34,60;27,21;0;China;Asiatic Region;"";"2005-2026";"Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +21718;21100199742;"IEEE International Conference on Control and Automation, ICCA";conference and proceedings;"19483457, 19483449";"IEEE Computer Society";No;No;0,204;-;31;157;415;3067;317;412;0,88;19,54;25,77;0;United States;Northern America;"IEEE Computer Society";"2011, 2013-2014, 2016-2020, 2022-2025";"Artificial Intelligence; Computer Science Applications; Control and Systems Engineering; Electrical and Electronic Engineering; Industrial and Manufacturing Engineering";"Computer Science; Engineering" +21719;21101180313;"International Conference on Model-Driven Engineering and Software Development";conference and proceedings;"21844348";"Science and Technology Publications, Lda";No;No;0,204;-;7;46;116;1217;103;113;1,11;26,46;21,38;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2019-2025";"Engineering (miscellaneous); Software";"Computer Science; Engineering" +21720;21101178110;"International Exchange and Innovation Conference on Engineering and Sciences";conference and proceedings;"24341436";"Kyushu University";No;No;0,204;-;11;281;335;6917;431;332;1,36;24,62;35,68;0;Japan;Asiatic Region;"Kyushu University";"2019-2025";"Multidisciplinary";"Multidisciplinary" +21721;144873;"Proceedings - Annual Computer Security Applications Conference, ACSAC";conference and proceedings;"10639527";"Association for Computing Machinery";No;No;0,204;-;78;0;88;0;62;83;0,70;0,00;0,00;0;United States;Northern America;"Association for Computing Machinery";"1989-1990, 1992-1994, 1996-2010, 2024";"Computer Networks and Communications; Engineering (miscellaneous); Safety, Risk, Reliability and Quality; Software";"Computer Science; Engineering" +21722;145752;"Proceedings of the ACM/IEEE Joint Conference on Digital Libraries";conference and proceedings;"15525996";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,204;-;49;129;133;2866;137;127;0,83;22,22;35,87;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2003, 2005-2006, 2009, 2011-2023, 2025";"Engineering (miscellaneous)";"Engineering" +21723;21101066963;"Proceedings of the European Wave and Tidal Energy Conference";conference and proceedings;"27066940, 27066932";"";No;No;0,204;-;8;0;261;0;164;260;0,63;0,00;0,00;0;United Kingdom;Western Europe;"";"2021, 2023";"Energy Engineering and Power Technology; Ocean Engineering; Renewable Energy, Sustainability and the Environment; Water Science and Technology";"Energy; Engineering; Environmental Science" +21724;130022;"Progress in Biomedical Optics and Imaging - Proceedings of SPIE";conference and proceedings;"16057422";"SPIE";Yes;No;0,204;-;73;1934;4388;28565;2279;4210;0,50;14,77;32,13;0;United States;Northern America;"SPIE";"2004-2025";"Atomic and Molecular Physics, and Optics; Biomaterials; Electronic, Optical and Magnetic Materials; Radiology, Nuclear Medicine and Imaging";"Materials Science; Medicine; Physics and Astronomy" +21725;21100929889;"Kamchatka";journal;"23401869";"Universitat de Valencia, Faculty of Philology, Translation and Communication";Yes;Yes;0,203;Q1;7;28;156;1069;28;150;0,10;38,18;44,44;0;Spain;Western Europe;"Universitat de Valencia, Faculty of Philology, Translation and Communication";"2019-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Linguistics and Language (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +21726;5800207811;"RILCE. Revista de Filologia Hispanica";journal;"21740917, 02132370";"Servicio de Publicaciones de la Universidad de Navarra";Yes;No;0,203;Q1;14;41;119;1982;26;114;0,19;48,34;48,78;0;Spain;Western Europe;"Servicio de Publicaciones de la Universidad de Navarra";"2008-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21727;5800207625;"Studia Romanica Posnaniensia";journal;"20844158, 01372475";"Adam Mickiewicz University";Yes;Yes;0,203;Q1;5;37;120;1003;17;113;0,12;27,11;75,68;0;Poland;Eastern Europe;"Adam Mickiewicz University";"2000-2001, 2003, 2006, 2009-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21728;21101066733;"Yillik: Annual of Istanbul Studies";journal;"26875012, 26875691";"Istanbul Research Institute";No;No;0,203;Q1;5;15;36;665;13;35;0,25;44,33;33,33;0;Turkey;Middle East;"Istanbul Research Institute";"2019-2025";"Visual Arts and Performing Arts (Q1); Archeology (arts and humanities) (Q2); Arts and Humanities (miscellaneous) (Q2); History (Q2); Anthropology (Q3); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3); Urban Studies (Q3)";"Arts and Humanities; Social Sciences" +21729;21100218383;"Al-Shajarah";journal;"13946870";"International Islamic University Malaysia";No;No;0,203;Q2;11;20;57;1245;31;50;0,49;62,25;16,67;0;Malaysia;Asiatic Region;"International Islamic University Malaysia";"2011, 2013-2025";"Cultural Studies (Q2); History (Q2); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +21730;21100219925;"Bylye Gody";journal;"23100028, 20739745";"Cherkas Global University Press";Yes;No;0,203;Q2;20;199;584;7549;243;584;0,46;37,93;51,46;0;United States;Northern America;"Cherkas Global University Press";"2012-2025";"History (Q2); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +21731;21100305234;"Comunicacion y Sociedad (Mexico)";journal;"0188252X, 24489042";"Universidad de Guadalajara";Yes;Yes;0,203;Q2;15;35;88;1465;56;84;0,51;41,86;50,75;0;Mexico;Latin America;"Universidad de Guadalajara";"2009-2010, 2013-2026";"Cultural Studies (Q2); Communication (Q3)";"Social Sciences" +21732;25667;"Journal of Clinical Orthodontics";journal;"1945225X, 00223875";"";No;No;0,203;Q2;51;138;320;1016;91;216;0,25;7,36;35,17;0;United States;Northern America;"";"1970-2025";"Orthodontics (Q2)";"Dentistry" +21733;21101347033;"Journal of Public Space";journal;"22069658";"City Space Architecture";Yes;No;0,203;Q2;6;11;104;415;88;95;0,53;37,73;47,62;0;Italy;Western Europe;"City Space Architecture";"2021-2025";"Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3); Urban Studies (Q3)";"Arts and Humanities; Social Sciences" +21734;21101093350;"Kriminologie";journal;"26986779";"Universitat zu Koln";Yes;Yes;0,203;Q2;6;27;59;1300;21;56;0,24;48,15;55,56;0;Germany;Western Europe;"Universitat zu Koln";"2019-2025";"Cultural Studies (Q2); Law (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21735;21100928825;"Museologica Brunensia";journal;"24645362, 18054722";"Masaryk University";Yes;Yes;0,203;Q2;4;7;34;254;15;31;0,48;36,29;75,00;0;Czech Republic;Eastern Europe;"Masaryk University";"2018-2025";"Museology (Q2)";"Arts and Humanities" +21736;51312;"Revue d'Assyriologie et d'Archeologie Orientale";journal;"03736032";"Presses Universitaires de France";No;No;0,203;Q2;12;13;24;577;11;23;0,29;44,38;25,00;0;France;Western Europe;"Presses Universitaires de France";"1960-1961, 1966, 1975, 1984, 2001-2013, 2015-2022, 2024-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +21737;21101037305;"Russian Psychological Journal";journal;"18121853, 24115789";"Russian Psychological Society";Yes;No;0,203;Q2;6;35;183;1411;85;183;0,45;40,31;72,28;0;Russian Federation;Eastern Europe;"Russian Psychological Society";"2019-2025";"Philosophy (Q2); Cognitive Neuroscience (Q4); Education (Q4); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Neuroscience; Psychology; Social Sciences" +21738;21101036620;"Sport und Gesellschaft";journal;"23660465, 16103181";"De Gruyter Oldenbourg";No;No;0,203;Q2;12;11;51;479;13;44;0,31;43,55;44,44;0;Germany;Western Europe;"De Gruyter Oldenbourg";"2004-2026";"History (Q2); Philosophy (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +21739;21100793924;"TRaNS: Trans-Regional and -National Studies of Southeast Asia";journal;"2051364X, 20513658";"Cambridge University Press";No;No;0,203;Q2;20;22;41;1502;61;40;1,69;68,27;52,17;0;United Kingdom;Western Europe;"Cambridge University Press";"2013-2026";"Cultural Studies (Q2); History (Q2); Anthropology (Q3); Geography, Planning and Development (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21740;19700172801;"Turk Kulturu ve Haci Bektas Veli - Arastirma Dergisi";journal;"13068253, 21479895";"Ankara Haci Bayram Veli University";Yes;Yes;0,203;Q2;9;113;272;4943;54;272;0,19;43,74;35,48;0;Turkey;Middle East;"Ankara Haci Bayram Veli University";"2009-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +21741;7100153139;"Vigiliae Christianae";journal;"00426032, 15700720";"Brill Academic Publishers";No;No;0,203;Q2;29;19;50;2348;11;50;0,29;123,58;22,73;0;Netherlands;Western Europe;"Brill Academic Publishers";"1948, 1950, 1952, 1957, 1960, 1963, 1965, 1967, 1969-1973, 1976-2026";"Archeology (arts and humanities) (Q2); Cultural Studies (Q2); History (Q2); Linguistics and Language (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +21742;23518;"Zeitschrift der Deutschen Morgenlandischen Gesellschaft";journal;"03410137";"Harrassowitz Verlag";No;No;0,203;Q2;11;11;68;376;11;64;0,18;34,18;33,33;0;Germany;Western Europe;"Harrassowitz Verlag";"1975, 1985, 2002-2009, 2011-2018, 2020-2025";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +21743;21100847372;"Advances in Materials Research (South Korea)";journal;"2234179X, 22340912";"Techno-Press";No;No;0,203;Q3;22;25;77;1006;94;77;1,00;40,24;19,23;0;South Korea;Asiatic Region;"Techno-Press";"2017-2025";"Metals and Alloys (Q3); Polymers and Plastics (Q3); Biomaterials (Q4); Ceramics and Composites (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Materials Science" +21744;8300153136;"Africa Journal of Nursing and Midwifery";journal;"16825055, 25205293";"Unisa Press";Yes;No;0,203;Q3;14;32;147;1085;73;141;0,48;33,91;66,27;0;South Africa;Africa;"Unisa Press";"2006-2025";"Advanced and Specialized Nursing (Q3); Maternity and Midwifery (Q3)";"Nursing" +21745;21100936374;"Agronomia Mesoamericana";journal;"22153608";"Universidad de Costa Rica";Yes;Yes;0,203;Q3;11;17;249;784;182;249;0,69;46,12;24,19;0;Costa Rica;Latin America;"Universidad de Costa Rica";"2019-2025";"Food Science (Q3); Agronomy and Crop Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +21746;21101128568;"Anales de la Catedra Francisco Suarez";journal;"00087750, 25303716";"Universidad de Granada";Yes;Yes;0,203;Q3;4;20;67;970;21;65;0,34;48,50;31,58;0;Spain;Western Europe;"Universidad de Granada";"2019-2025";"Law (Q3)";"Social Sciences" +21747;21101210870;"Asian Journal of Forestry";journal;"25802844";"Smujo International";No;No;0,203;Q3;7;36;49;2096;55;49;1,06;58,22;33,70;0;Indonesia;Asiatic Region;"Smujo International";"2020-2026";"Forestry (Q3); Plant Science (Q4)";"Agricultural and Biological Sciences" +21748;21101158603;"Bulletin of Canadian Energy Geoscience";journal;"28162188";"Canadian Society of Petroleum Geology";Yes;No;0,203;Q3;49;5;28;369;16;24;0,35;73,80;27,27;0;Canada;Northern America;"Canadian Society of Petroleum Geology";"2022-2025";"Earth and Planetary Sciences (miscellaneous) (Q3); Energy Engineering and Power Technology (Q4); Geochemistry and Petrology (Q4); Geology (Q4)";"Earth and Planetary Sciences; Energy" +21749;21101021459;"Canadian Journal of European and Russian Studies";journal;"25628429";"Carleton University - Centre for European Studies";Yes;Yes;0,203;Q3;6;9;30;597;20;26;0,60;66,33;33,33;0;Canada;Northern America;"Carleton University - Centre for European Studies";"2019-2020, 2022-2025";"Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21750;21101000289;"Clinical Archives of Communication Disorders";journal;"25085948";"";Yes;No;0,203;Q3;9;6;55;186;27;55;0,46;31,00;46,67;0;South Korea;Asiatic Region;"";"2016-2025";"Speech and Hearing (Q3); Cognitive Neuroscience (Q4); Environmental Engineering (Q4); Public Health, Environmental and Occupational Health (Q4); Sensory Systems (Q4)";"Environmental Science; Health Professions; Medicine; Neuroscience" +21751;5800173394;"Current Drug Therapy";journal;"15748855, 22123903";"Bentham Science Publishers";No;No;0,203;Q3;23;168;152;13746;179;149;1,32;81,82;44,77;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2007-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +21752;29064;"Engineering Economist";journal;"0013791X, 15472701";"Taylor and Francis Ltd.";No;No;0,203;Q3;37;11;52;703;44;41;0,97;63,91;44,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1955-2026";"Engineering (miscellaneous) (Q3); Economics and Econometrics (Q4); Education (Q4)";"Economics, Econometrics and Finance; Engineering; Social Sciences" +21753;31769;"Fenmo Yejin Jishu/Powder Metallurgy Technology";journal;"10013784";"University of Science and Technology Beijing";Yes;No;0,203;Q3;15;74;231;2073;187;231;0,70;28,01;32,39;0;China;Asiatic Region;"University of Science and Technology Beijing";"1986-1989, 1993-2025";"Metals and Alloys (Q3); Mechanics of Materials (Q4)";"Engineering; Materials Science" +21754;21100865569;"Granja";journal;"13908596, 13903799";"Universidad Politecnica Salesiana";Yes;Yes;0,203;Q3;11;22;65;845;53;61;0,80;38,41;34,78;0;Ecuador;Latin America;"Universidad Politecnica Salesiana";"2018-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Earth and Planetary Sciences; Environmental Science" +21755;7700153112;"Index de Enfermeria";journal;"11321296";"Fundacion Index";Yes;No;0,203;Q3;15;82;230;2105;116;199;0,50;25,67;68,51;0;Spain;Western Europe;"Fundacion Index";"2006-2025";"History and Philosophy of Science (Q3); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Arts and Humanities; Medicine; Social Sciences" +21756;21100889438;"International Journal of Pluralism and Economics Education";journal;"17575656, 17575648";"Inderscience Enterprises Ltd";No;No;0,203;Q3;7;10;48;544;33;47;0,83;54,40;54,55;0;Switzerland;Western Europe;"Inderscience Enterprises Ltd";"2017-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3); Education (Q4)";"Economics, Econometrics and Finance; Social Sciences" +21757;11200153303;"Israel Journal of Veterinary Medicine";journal;"23048859, 03349152";"Israel Veterinary Medical Association";No;No;0,203;Q3;17;16;68;378;32;55;0,52;23,63;46,43;0;Israel;Middle East;"Israel Veterinary Medical Association";"2007-2025";"Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences; Veterinary" +21758;21100466857;"JBJS Case Connector";journal;"21603251";"Lippincott Williams and Wilkins";No;No;0,203;Q3;16;332;819;4437;314;818;0,37;13,36;20,09;0;United States;Northern America;"Lippincott Williams and Wilkins";"2013-2026";"Surgery (Q3); Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4)";"Medicine" +21759;21100945159;"Journal of Law, Finance, and Accounting";journal;"23805013, 23805005";"Now Publishers Inc";No;No;0,203;Q3;11;0;13;0;8;13;0,56;0,00;0,00;0;United States;Northern America;"Now Publishers Inc";"2016-2024";"Law (Q3); Accounting (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +21760;21101230392;"Juridical Tribune - Review of Comparative and International Law";journal;"3008637X";"Society of Juridical and Administrative Sciences";Yes;Yes;0,203;Q3;4;37;42;1610;33;42;0,79;43,51;54,24;0;Romania;Eastern Europe;"Society of Juridical and Administrative Sciences";"2024-2025";"Education (Q3); Law (Q3); Political Science and International Relations (Q3); Public Administration (Q4)";"Social Sciences" +21761;21100265344;"Membrane and Water Treatment";journal;"20058624, 20927037";"Techno-Press";No;No;0,203;Q3;24;29;71;1298;75;71;0,95;44,76;34,78;0;South Korea;Asiatic Region;"Techno-Press";"2010-2026";"Chemical Engineering (miscellaneous) (Q3); Water Science and Technology (Q4)";"Chemical Engineering; Environmental Science" +21762;6400153168;"OnLine Journal of Biological Sciences";journal;"16084217, 24108561";"Science Publications";Yes;No;0,203;Q3;23;75;213;3612;225;213;1,13;48,16;50,76;0;United States;Northern America;"Science Publications";"2007-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +21763;5600153356;"Perfiles Latinoamericanos";journal;"01887653";"Flacso Mexico";Yes;Yes;0,203;Q3;16;26;87;1195;42;87;0,48;45,96;35,90;0;Mexico;Latin America;"Flacso Mexico";"2008-2026";"Sociology and Political Science (Q3)";"Social Sciences" +21764;93516;"Polymer Science - Series C";journal;"1555614X, 18112382";"Pleiades Publishing";No;No;0,203;Q3;29;0;67;0;63;65;0,93;0,00;0,00;0;United States;Northern America;"Pleiades Publishing";"2000-2024, 2026";"Polymers and Plastics (Q3); Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4)";"Chemistry; Materials Science" +21765;21100241779;"Proceedings of the Romanian Academy Series A - Mathematics Physics Technical Sciences Information Science";journal;"14549069";"Publishing House of the Romanian Academy";No;No;0,203;Q3;34;47;126;1074;75;123;0,49;22,85;30,77;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2008-2025";"Engineering (miscellaneous) (Q3); Computer Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +21766;19900191418;"Psychotherapy and Politics International";journal;"14769263, 15569195";"";No;No;0,203;Q3;11;37;69;1239;39;51;0,60;33,49;68,57;0;United Kingdom;Western Europe;"";"2013-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +21767;21101260644;"Transactions on Fuzzy Sets and Systems";journal;"28210131";"Islamic Azad University";Yes;Yes;0,203;Q3;5;24;72;681;43;72;0,63;28,38;19,57;0;Iran;Middle East;"Islamic Azad University";"2022-2025";"Information Systems and Management (Q3); Applied Mathematics (Q4); Artificial Intelligence (Q4); Logic (Q4)";"Computer Science; Decision Sciences; Mathematics" +21768;110337;"Zhurnal Nevrologii i Psihiatrii imeni S.S. Korsakova";journal;"23094729, 19977298";"Media Sphera Publishing Group";No;No;0,203;Q3;26;351;1056;11680;756;1042;0,74;33,28;65,73;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"1952-2026";"History and Philosophy of Science (Q3); Clinical Psychology (Q4); Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Arts and Humanities; Medicine; Neuroscience; Psychology" +21769;21100894527;"Brazilian Business Review";journal;"18082386";"FUCAPE Business School";Yes;Yes;0,203;Q4;15;5;147;261;137;142;0,85;52,20;46,67;0;Brazil;Latin America;"FUCAPE Business School";"2017-2026";"Accounting (Q4); Business and International Management (Q4); Economics and Econometrics (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +21770;21101082424;"Chinese Journal of Academic Radiology";journal;"25208993, 25208985";"Springer";No;No;0,203;Q4;9;37;83;1237;59;83;0,76;33,43;36,76;0;Singapore;Asiatic Region;"Springer";"2019-2026";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +21771;4400151606;"International Journal of Bioinformatics Research and Applications";journal;"17445485, 17445493";"Inderscience Publishers";No;No;0,203;Q4;21;30;80;1403;126;79;1,89;46,77;37,04;0;United Kingdom;Western Europe;"Inderscience Publishers";"2005-2025";"Biomedical Engineering (Q4); Clinical Biochemistry (Q4); Health Informatics (Q4); Health Information Management (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Health Professions; Medicine" +21772;21101061447;"International Journal of Reconfigurable and Embedded Systems";journal;"20894864, 27222608";"Institute of Advanced Engineering and Science";No;No;0,203;Q4;11;57;165;1747;194;165;1,08;30,65;34,07;0;Indonesia;Asiatic Region;"Institute of Advanced Engineering and Science";"2019-2025";"Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4); Logic (Q4)";"Computer Science; Engineering; Mathematics" +21773;21101034427;"Iranian Journal of Medical Microbiology";journal;"23454342, 17358612";"Farname Inc";Yes;Yes;0,203;Q4;11;11;200;462;170;196;0,81;42,00;63,64;0;Iran;Middle East;"Farname Inc";"2019-2025";"Infectious Diseases (Q4); Microbiology (Q4); Microbiology (medical) (Q4)";"Immunology and Microbiology; Medicine" +21774;21101105106;"Journal of Nonlinear Modeling and Analysis";journal;"25622854, 25622862";"Global Science Press";No;No;0,203;Q4;11;115;169;3713;90;169;0,55;32,29;30,40;0;China;Asiatic Region;"Global Science Press";"2019-2026";"Analysis (Q4); Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4); Modeling and Simulation (Q4)";"Mathematics" +21775;23904;"Kardiologiya";journal;"24125660, 00229040";"Limited Liability Company KlinMed Consulting";No;No;0,203;Q4;26;114;384;2716;318;381;0,80;23,82;60,87;0;Russian Federation;Eastern Europe;"Limited Liability Company KlinMed Consulting";"1961-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +21776;11700154308;"Limnology and Oceanography Bulletin";journal;"1539607X, 15396088";"Wiley-Blackwell";No;No;0,203;Q4;18;49;142;178;65;39;0,48;3,63;64,81;0;United States;Northern America;"Wiley-Blackwell";"2001-2005, 2007-2026";"Aquatic Science (Q4); Oceanography (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +21777;21100887416;"Marketing, Zeitschrift fur Forschung und Praxis";journal;"03441369";"C.H.BECK";No;No;0,203;Q4;8;0;32;0;19;25;0,79;0,00;0,00;0;Germany;Western Europe;"C.H.BECK";"2018-2023";"Marketing (Q4); Social Psychology (Q4)";"Business, Management and Accounting; Psychology" +21778;31108;"Memoir of the Geological Society of America";book series;"00721069";"Geological Society of America";No;No;0,203;Q4;60;0;46;0;120;7;2,60;0,00;0,00;0;United States;Northern America;"Geological Society of America";"1934-1939, 1943, 1945-1958, 1960-1978, 1980-1990, 1992-1997, 1999, 2001-2002, 2004, 2006-2015, 2019-2024";"Geology (Q4)";"Earth and Planetary Sciences" +21779;19700186878;"Photonics Letters of Poland";journal;"20802242";"Photonics Society of Poland";Yes;No;0,203;Q4;20;31;85;397;70;85;0,93;12,81;31,07;0;Poland;Eastern Europe;"Photonics Society of Poland";"2009-2025";"Electronic, Optical and Magnetic Materials (Q4)";"Materials Science" +21780;21100774702;"Problems of Cryobiology and Cryomedicine";journal;"23076143";"National Academy of Sciences of Ukraine";Yes;No;0,203;Q4;8;17;74;549;22;64;0,24;32,29;60,00;0;Ukraine;Eastern Europe;"National Academy of Sciences of Ukraine";"2013-2025";"Biophysics (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +21781;21100199747;"Proceedings of the IEEE Conference on Nanotechnology";conference and proceedings;"19449399, 19449380";"IEEE Computer Society";No;No;0,203;-;25;93;419;1897;278;412;0,75;20,40;25,82;0;United States;Northern America;"IEEE Computer Society";"2001-2003, 2011-2014, 2018-2025";"Bioengineering; Condensed Matter Physics; Electrical and Electronic Engineering; Materials Chemistry";"Chemical Engineering; Engineering; Materials Science; Physics and Astronomy" +21782;21100310005;"Proceedings of the International Conference on Cloud Computing Technology and Science, CloudCom";conference and proceedings;"23302194, 23302186";"IEEE Computer Society";No;No;0,203;-;36;0;115;0;85;102;0,73;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2013-2020, 2022-2024";"Computational Theory and Mathematics; Computer Networks and Communications; Software; Theoretical Computer Science";"Computer Science; Mathematics" +21783;7100153141;"Novum Testamentum";journal;"00481009, 15685365";"Brill Academic Publishers";No;No;0,202;Q1;19;24;73;2168;10;72;0,13;90,33;9,09;0;Netherlands;Western Europe;"Brill Academic Publishers";"1958, 1960, 1962-1967, 1969-2003, 2005-2026";"Classics (Q1); Literature and Literary Theory (Q1); History (Q2); Linguistics and Language (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +21784;21101101859;"Research Journal in Advanced Humanities";journal;"27085953, 27085945";"Royallite Global";No;No;0,202;Q1;12;209;238;8666;305;238;1,36;41,46;41,02;0;Kenya;Africa;"Royallite Global";"2020-2026";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21785;5800155978;"Slavisticna Revija";journal;"03506894, 18557570";"Slavisticna Drustvo Slovenije";Yes;Yes;0,202;Q1;11;23;118;812;23;113;0,20;35,30;61,29;0;Slovenia;Eastern Europe;"Slavisticna Drustvo Slovenije";"2008-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21786;32921;"Arctic Anthropology";journal;"19338139, 00666939";"University of Wisconsin Press";No;No;0,202;Q2;33;7;18;602;11;16;0,61;86,00;42,86;0;United States;Northern America;"University of Wisconsin Press";"1980-1981, 1985, 1987, 1989-2021, 2023-2025";"Cultural Studies (Q2); Anthropology (Q3)";"Social Sciences" +21787;21100225852;"Current Swedish Archaeology";journal;"11027355";"Svenska Arkeologiska Samfundet";Yes;Yes;0,202;Q2;17;1;45;49;20;34;0,26;49,00;100,00;0;Sweden;Western Europe;"Svenska Arkeologiska Samfundet";"1996, 2001-2006, 2008, 2011-2019, 2021-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21788;21101233960;"Ethnologia Polona";journal;"27196976, 01374079";"Institute of Archaeology and Ethnology, Polish Academy of Sciences";Yes;Yes;0,202;Q2;4;10;29;521;20;27;0,32;52,10;45,45;0;Poland;Eastern Europe;"Institute of Archaeology and Ethnology, Polish Academy of Sciences";"2022-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Anthropology (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +21789;5700154126;"Filozofia";journal;"25857061, 0046385X";"Slovak Academy of Sciences";Yes;Yes;0,202;Q2;11;62;210;1573;51;200;0,26;25,37;23,64;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences";"2002-2025";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +21790;15258;"Historicky Casopis";journal;"00182575, 25859099";"Slovak Academy of Sciences, Institute of History";Yes;Yes;0,202;Q2;7;41;135;2286;20;132;0,13;55,76;33,33;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences, Institute of History";"1974, 1983, 1986, 1988, 2002-2025";"History (Q2)";"Arts and Humanities" +21791;21100316038;"Journal of Korean Religions";journal;"20937288, 21672040";"University of Hawaii Press";No;No;0,202;Q2;8;7;29;506;11;26;0,33;72,29;50,00;0;United States;Northern America;"University of Hawaii Press";"2010, 2013-2025";"Religious Studies (Q2)";"Arts and Humanities" +21792;21100285463;"Journal of Reformed Theology";journal;"15697312, 18725163";"Brill Academic Publishers";No;No;0,202;Q2;6;15;51;1484;14;45;0,16;98,93;12,50;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2025";"Religious Studies (Q2)";"Arts and Humanities" +21793;14000155248;"Journal of the American Musicological Society";journal;"00030139, 15473848";"University of California Press";No;No;0,202;Q2;31;12;62;1151;26;62;0,40;95,92;53,33;0;United States;Northern America;"University of California Press";"1970-2025";"Music (Q2)";"Arts and Humanities" +21794;21100275427;"Ler Historia";journal;"08706182";"ISCTE";Yes;Yes;0,202;Q2;9;23;70;932;34;63;0,43;40,52;20,69;0;Portugal;Western Europe;"ISCTE";"2011-2025";"History (Q2)";"Arts and Humanities" +21795;21100897732;"Perseitas";journal;"23461780";"Universidad Catolica Luis Amigo";Yes;Yes;0,202;Q2;4;25;58;1120;13;53;0,18;44,80;22,50;0;Colombia;Latin America;"Universidad Catolica Luis Amigo";"2018-2025";"Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +21796;5700167641;"Phainomena";journal;"13183362";"Zalozba Nova Revija";Yes;Yes;0,202;Q2;4;27;99;640;26;91;0,32;23,70;28,57;0;Slovenia;Eastern Europe;"Zalozba Nova Revija";"2009-2013, 2015-2025";"Philosophy (Q2)";"Arts and Humanities" +21797;29598;"Religious Education";journal;"15473201, 00344087";"Routledge";No;No;0,202;Q2;23;39;125;1440;59;95;0,48;36,92;45,31;0;United Kingdom;Western Europe;"Routledge";"1906-2026";"Religious Studies (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +21798;21101149043;"Studies in Linguistics, Culture and FLT";journal;"25349538, 2534952X";"Konstantin Preslavsky University of Shumen";Yes;Yes;0,202;Q2;4;19;77;796;51;73;0,74;41,89;55,17;0;Bulgaria;Eastern Europe;"Konstantin Preslavsky University of Shumen";"2022-2025";"Cultural Studies (Q2)";"Social Sciences" +21799;21101021435;"Tokovi Istorije";journal;"2560547X, 03546497";"Institute for Recent History of Serbia";Yes;Yes;0,202;Q2;3;38;112;1550;13;110;0,12;40,79;14,63;0;Serbia;Eastern Europe;"Institute for Recent History of Serbia";"2019-2025";"History (Q2)";"Arts and Humanities" +21800;5800207758;"Virittaja";journal;"00426806";"University of Helsinki";No;No;0,202;Q2;10;35;128;1160;31;114;0,28;33,14;81,08;0;Finland;Western Europe;"University of Helsinki";"2011, 2013-2025";"Linguistics and Language (Q2)";"Social Sciences" +21801;21101061445;"Acta Universitatis Carolinae Iuridica";journal;"03230619, 23366478";"Karolinum - Nakladatelstvi Univerzity Karlovy";Yes;Yes;0,202;Q3;4;62;167;3619;56;161;0,40;58,37;46,75;0;Czech Republic;Eastern Europe;"Karolinum - Nakladatelstvi Univerzity Karlovy";"2019-2025";"Law (Q3)";"Social Sciences" +21802;5700164001;"Athenea Digital";journal;"15788946, 20144539";"Universitat Autonoma de Barcelona";Yes;Yes;0,202;Q3;19;47;99;1904;46;99;0,39;40,51;51,25;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2007-2026";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21803;21101128451;"Avicenna Journal of Nursing and Midwifery Care";journal;"26765748";"Hamadan University of Medical Sciences";Yes;Yes;0,202;Q3;9;32;96;1095;63;96;0,77;34,22;65,22;0;Iran;Middle East;"Hamadan University of Medical Sciences";"2019-2025";"Advanced and Specialized Nursing (Q3); Maternity and Midwifery (Q3); Education (Q4); Gerontology (Q4); Issues, Ethics and Legal Aspects (Q4); Leadership and Management (Q4); Pediatrics (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Nursing; Social Sciences" +21804;13606;"Biology Bulletin";journal;"16083059, 10623590";"";No;No;0,202;Q3;29;374;1113;17074;711;1103;0,63;45,65;50,28;0;Russian Federation;Eastern Europe;"";"1996-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +21805;7400153104;"Brazilian Journal of Oral Sciences";journal;"16773225, 16773217";"Piracicaba Dental School - UNICAMP";Yes;Yes;0,202;Q3;16;71;190;2357;95;188;0,43;33,20;57,10;0;Brazil;Latin America;"Piracicaba Dental School - UNICAMP";"2007-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +21806;21101343518;"Communications in Optimization Theory";journal;"20512953";"Mathematical Research Press";No;No;0,202;Q3;4;50;108;1349;39;108;0,35;26,98;22,92;0;United Kingdom;Western Europe;"Mathematical Research Press";"2022-2026";"Control and Optimization (Q3); Modeling and Simulation (Q4); Numerical Analysis (Q4)";"Mathematics" +21807;21101022219;"Disaster and Emergency Medicine Journal";journal;"25435957, 24514691";"Via Medica";No;No;0,202;Q3;11;30;113;746;48;80;0,28;24,87;28,57;0;Poland;Eastern Europe;"Via Medica";"2019-2025";"Critical Care and Intensive Care Medicine (Q3); Emergency Medical Services (Q3); Emergency Medicine (Q3)";"Health Professions; Medicine" +21808;21100675628;"Geographical Sciences";journal;"02864886, 2432096X";"Japanese Society for Geographical Sciences";No;No;0,202;Q3;4;12;36;225;10;31;0,48;18,75;18,18;0;Japan;Asiatic Region;"Japanese Society for Geographical Sciences";"1982, 2019-2025";"Geography, Planning and Development (Q3); Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences; Social Sciences" +21809;21100822732;"International Journal of Applied Science and Engineering";journal;"17277841, 17272394";"Chaoyang University of Technology";Yes;No;0,202;Q3;16;19;117;682;140;117;1,15;35,89;36,84;0;Taiwan;Asiatic Region;"Chaoyang University of Technology";"2013, 2016-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Control and Optimization (Q3); Chemical Engineering (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Numerical Analysis (Q4)";"Agricultural and Biological Sciences; Chemical Engineering; Engineering; Mathematics" +21810;21100301442;"International Journal of Electronic Governance";journal;"17427517, 17427509";"Inderscience";No;No;0,202;Q3;24;16;63;937;48;61;0,91;58,56;17,50;0;Switzerland;Western Europe;"Inderscience";"2007-2025";"Sociology and Political Science (Q3); Computer Science Applications (Q4); Public Administration (Q4)";"Computer Science; Social Sciences" +21811;21101267123;"International Journal of Social Imaginaries";journal;"27727858, 27727866";"Brill Academic Publishers";No;No;0,202;Q3;4;19;44;465;25;38;0,57;24,47;18,75;0;Netherlands;Western Europe;"Brill Academic Publishers";"2022-2026";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21812;25885;"Issues and Studies";journal;"2529802X, 10132511";"World Scientific Publishing Co. Pte Ltd";No;No;0,202;Q3;24;16;53;1107;40;51;0,53;69,19;13,64;0;Taiwan;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1972-1975, 1978, 1980, 1985, 1995-2026";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21813;21100928216;"Journal of Research in Pharmacy";journal;"26306344";"Marmara University";No;No;0,202;Q3;26;232;645;9635;599;639;0,81;41,53;52,54;0;Turkey;Middle East;"Marmara University";"2019-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +21814;21101039254;"Journal of Ultrafine Grained and Nanostructured Materials";journal;"24236837, 24236845";"University of Tehran";Yes;Yes;0,202;Q3;10;24;77;1092;88;77;1,35;45,50;27,42;0;Iran;Middle East;"University of Tehran";"2019-2025";"Metals and Alloys (Q3); Polymers and Plastics (Q3); Biomaterials (Q4); Ceramics and Composites (Q4)";"Materials Science" +21815;5600153163;"New Zealand Sociology";journal;"0112921X, 11731036";"New Zealand Sociology";No;No;0,202;Q3;14;17;44;1010;25;41;0,52;59,41;52,17;0;New Zealand;Pacific Region;"New Zealand Sociology";"2010-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21816;21101152593;"Novos Estudos Juridicos";journal;"21750491";"UNIVALI";No;No;0,202;Q3;2;21;100;797;16;100;0,13;37,95;44,83;0;Brazil;Latin America;"UNIVALI";"2022-2025";"Law (Q3); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +21817;17600155129;"Resonance";journal;"09718044, 0973712X";"Springer India";No;No;0,202;Q3;27;162;471;1300;149;345;0,29;8,02;24,81;0;India;Asiatic Region;"Springer India";"1996, 2000, 2002, 2006-2025";"Multidisciplinary (Q3); Education (Q4)";"Multidisciplinary; Social Sciences" +21818;21101042011;"Revista Catalana de Dret Ambiental";journal;"2014038X";"Universitat Rovira i Virgili";Yes;Yes;0,202;Q3;7;109;322;1954;50;281;0,10;17,93;53,70;1;Spain;Western Europe;"Universitat Rovira i Virgili";"2019-2025";"Law (Q3); Ecology (Q4); Environmental Science (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +21819;21100824861;"Revista Colombiana de Reumatologia";journal;"01218123, 20279000";"Asociacion Colombiana de Reumatologia";Yes;No;0,202;Q3;13;83;238;2216;112;213;0,49;26,70;53,65;0;Colombia;Latin America;"Asociacion Colombiana de Reumatologia";"2009-2026";"Internal Medicine (Q3); Pharmaceutical Science (Q3); Rehabilitation (Q3); Immunology and Allergy (Q4); Rheumatology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +21820;21101045754;"Southern African Journal of Social Work and Social Development";journal;"27089355, 25200097";"Unisa Press";No;No;0,202;Q3;9;28;93;1370;55;93;0,53;48,93;71,93;0;South Africa;Africa;"Unisa Press";"2017-2025";"Sociology and Political Science (Q3); Development (Q4); Health (social science) (Q4)";"Social Sciences" +21821;86017;"Sumarski List";journal;"03731332";"Hrvatsko Sumarsko Drustvo";Yes;No;0,202;Q3;20;44;139;1727;63;115;0,44;39,25;38,52;0;Croatia;Eastern Europe;"Hrvatsko Sumarsko Drustvo";"1980, 1982-1983, 1985, 2006-2026";"Forestry (Q3)";"Agricultural and Biological Sciences" +21822;17700156005;"WSEAS Transactions on Heat and Mass Transfer";journal;"17905044, 22243461";"World Scientific and Engineering Academy and Society";No;No;0,202;Q3;12;10;70;296;32;70;0,50;29,60;32,35;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2009-2015, 2022-2025";"Industrial and Manufacturing Engineering (Q3); Condensed Matter Physics (Q4); Energy (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Energy; Engineering; Physics and Astronomy" +21823;19700186738;"Ad-Hoc and Sensor Wireless Networks";journal;"15519899, 15520633";"Old City Publishing";No;No;0,202;Q4;27;26;114;1062;134;114;0,94;40,85;28,79;0;United States;Northern America;"Old City Publishing";"2005-2025";"Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4); Instrumentation (Q4)";"Computer Science; Engineering; Physics and Astronomy" +21824;19296;"American Midland Naturalist";journal;"00030031";"University of Notre Dame";No;No;0,202;Q4;60;0;37;0;23;37;0,00;0,00;0,00;0;United States;Northern America;"University of Notre Dame";"1979-1980, 1982-1990, 1993-2022";"Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +21825;19700173016;"Bulletin of the Lebedev Physics Institute";journal;"10683356, 1934838X";"Pleiades Publishing";No;No;0,202;Q4;17;232;583;5345;321;582;0,57;23,04;23,84;0;United States;Northern America;"Pleiades Publishing";"2007, 2009-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +21826;21100853795;"Cailiao Daobao/Materials Reports";journal;"1005023X";"Cailiao Daobaoshe/ Materials Review";No;No;0,202;Q4;26;627;2432;31327;1904;2432;0,81;49,96;33,75;0;China;Asiatic Region;"Cailiao Daobaoshe/ Materials Review";"2016-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +21827;29305;"Clinical and Investigative Medicine";journal;"14882353, 0147958X";"The Canadian Society for Clinical Investigation";No;No;0,202;Q4;55;20;54;329;32;51;0,57;16,45;44,62;0;Canada;Northern America;"The Canadian Society for Clinical Investigation";"1978-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +21828;5700171852;"Curriculum and Teaching";journal;"0726416X, 22010602";"James Nicholas Publishers, Pty. Ltd";No;No;0,202;Q4;9;14;37;426;25;33;0,56;30,43;51,85;0;Australia;Pacific Region;"James Nicholas Publishers, Pty. Ltd";"2014-2025";"Education (Q4)";"Social Sciences" +21829;21100201720;"Education Therapeutique du Patient";journal;"21000816, 21000808";"EDP Sciences";No;No;0,202;Q4;13;13;45;419;16;43;0,24;32,23;50,00;0;France;Western Europe;"EDP Sciences";"2009-2025";"Education (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +21830;29413;"Energy Studies Review";journal;"08434379";"McMaster University";No;No;0,202;Q4;7;6;5;425;8;5;1,60;70,83;11,11;0;Canada;Northern America;"McMaster University";"1991-1995, 2008, 2010-2016, 2020-2021, 2024-2025";"Economics and Econometrics (Q4); Energy (miscellaneous) (Q4); Environmental Engineering (Q4)";"Economics, Econometrics and Finance; Energy; Environmental Science" +21831;21101039613;"Epidemiologiya i Vaktsinoprofilaktika";journal;"20733046, 26190494";"Numikom";Yes;Yes;0,202;Q4;11;67;238;2105;183;236;0,80;31,42;62,75;0;Russian Federation;Eastern Europe;"Numikom";"2019-2025";"Epidemiology (Q4); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +21832;145041;"Informatik-Spektrum";journal;"1432122X, 01706012";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,202;Q4;27;16;130;268;45;90;0,54;16,75;30,77;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1985, 1987, 1999, 2005-2026";"Computer Science Applications (Q4); Information Systems (Q4)";"Computer Science" +21833;21100408192;"International Review of Management and Marketing";journal;"21464405";"Econjournals";Yes;No;0,202;Q4;25;245;114;13945;225;114;1,97;56,92;36,25;0;Turkey;Middle East;"Econjournals";"2015-2016, 2024-2026";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +21834;18200156709;"Journal of Engineering Science and Technology";journal;"18234690";"Taylor's University";Yes;No;0,202;Q4;49;331;1171;11170;1096;1171;0,86;33,75;38,44;0;Malaysia;Asiatic Region;"Taylor's University";"2009-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +21835;21101194308;"Journal of Environmental Nanotechnology";journal;"22790748, 23195541";"Institute for Environmental Nanotechnology";No;No;0,202;Q4;8;230;235;7890;322;232;1,41;34,30;30,47;0;India;Asiatic Region;"Institute for Environmental Nanotechnology";"2022-2025";"Environmental Science (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Environmental Science; Materials Science" +21836;19700186894;"Journal of GeoEngineering";journal;"19908326";"Taiwan Geotechnical Society";No;No;0,202;Q4;25;4;58;135;50;58;0,84;33,75;35,71;0;Taiwan;Asiatic Region;"Taiwan Geotechnical Society";"2006-2026";"Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +21837;19700175150;"Jundishapur Journal of Microbiology";journal;"20084161, 20083645";"Brieflands";Yes;No;0,202;Q4;49;72;216;2332;148;213;0,59;32,39;46,39;0;Netherlands;Western Europe;"Brieflands";"2009-2026";"Infectious Diseases (Q4); Microbiology (Q4); Microbiology (medical) (Q4)";"Immunology and Microbiology; Medicine" +21838;21101141749;"Kardiologie";journal;"27317129, 27317137";"Springer Medizin";No;No;0,202;Q4;21;57;180;1541;98;136;0,58;27,04;19,75;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +21839;12100157102;"Mastozoologia Neotropical";journal;"16660536, 03279383";"SAREM Sociedad Argentina para el Estudio de los Mamiferos";Yes;Yes;0,202;Q4;24;21;77;985;45;69;0,53;46,90;37,29;0;Argentina;Latin America;"SAREM Sociedad Argentina para el Estudio de los Mamiferos";"2007-2026";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +21840;21100411363;"Multimedia Manual of Cardiothoracic Surgery";journal;"18139175";"Oxford University Press";No;No;0,202;Q4;14;138;239;0;87;239;0,37;0,00;23,13;0;United Kingdom;Western Europe;"Oxford University Press";"2013-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +21841;26141;"Parallel Processing Letters";journal;"1793642X, 01296264";"World Scientific";No;No;0,202;Q4;34;15;59;399;42;59;0,71;26,60;40,00;0;Singapore;Asiatic Region;"World Scientific";"1994-2026";"Hardware and Architecture (Q4); Software (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +21842;19700175030;"Rehabilitation Oncology";journal;"23812427, 21683808";"Lippincott Williams and Wilkins";No;No;0,202;Q4;19;27;95;874;40;68;0,52;32,37;77,06;0;United States;Northern America;"Lippincott Williams and Wilkins";"1988, 2007-2025";"Oncology (Q4); Oncology (nursing) (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine; Nursing" +21843;21100943520;"Rutgers Business Review";journal;"24742376, 24746509";"Rutgers Business School";No;No;0,202;Q4;10;8;64;274;44;60;0,37;34,25;42,86;0;United States;Northern America;"Rutgers Business School";"2016-2025";"Business and International Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +21844;21101145499;"Slobozhanskyi Herald of Science and Sport";journal;"23116374, 19910177";"Kharkiv State Academy of Physical Culture";Yes;Yes;0,202;Q4;6;35;74;1034;71;74;1,11;29,54;35,92;0;Ukraine;Eastern Europe;"Kharkiv State Academy of Physical Culture";"2019-2025";"Education (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Social Sciences" +21845;21100897776;"Theory and Applications of Graphs";journal;"24709859";"Georgia Southern University";Yes;Yes;0,202;Q4;7;12;45;151;18;45;0,46;12,58;12,00;0;United States;Northern America;"Georgia Southern University";"2018-2025";"Discrete Mathematics and Combinatorics (Q4); Numerical Analysis (Q4); Theoretical Computer Science (Q4)";"Mathematics" +21846;21101338736;"VFAST Transactions on Software Engineering";journal;"24116246, 23093978";"VFAST Publisher";No;No;0,202;Q4;7;73;199;3078;207;199;1,17;42,16;32,36;0;Pakistan;Asiatic Region;"VFAST Publisher";"2021-2025";"Artificial Intelligence (Q4); Computer Science Applications (Q4); Computer Science (miscellaneous) (Q4); Software (Q4)";"Computer Science" +21847;21101198489;"Proceedings - International Conference on Advanced Computer Information Technologies, ACIT";conference and proceedings;"27705218, 27705226";"Institute of Electrical and Electronics Engineers";No;No;0,202;-;18;208;452;4449;395;442;0,84;21,39;36,18;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2019-2025";"Artificial Intelligence; Computational Mathematics; Computer Networks and Communications; Computer Science Applications; Information Systems; Information Systems and Management; Modeling and Simulation";"Computer Science; Decision Sciences; Mathematics" +21848;21101188201;"System Safety: Human - Technical Facility - Environment";conference and proceedings;"26575450";"Sciendo";No;No;0,202;-;10;49;121;1240;103;118;0,97;25,31;43,48;0;Germany;Western Europe;"Sciendo";"2019-2025";"Business and International Management; Industrial and Manufacturing Engineering; Public Health, Environmental and Occupational Health; Safety, Risk, Reliability and Quality";"Business, Management and Accounting; Engineering; Medicine" +21849;5800209330;"South African Journal of African Languages";journal;"23051159, 02572117";"Routledge";No;No;0,201;Q1;15;79;134;2809;59;131;0,38;35,56;29,58;0;United Kingdom;Western Europe;"Routledge";"1996-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21850;21100788974;"Africa Review";journal;"09744061, 09744053";"Brill Academic Publishers";No;No;0,201;Q2;17;18;54;1088;51;54;0,52;60,44;24,14;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2026";"History (Q2); Political Science and International Relations (Q3); Development (Q4)";"Arts and Humanities; Social Sciences" +21851;16885;"African and Asian Studies";journal;"15692108, 15692094";"Brill Academic Publishers";No;No;0,201;Q2;24;51;61;2732;48;59;0,81;53,57;30,49;0;Netherlands;Western Europe;"Brill Academic Publishers";"1966, 1971, 1975-1982, 1984-1988, 1990-1991, 1993-1994, 1996-2026";"History (Q2); Sociology and Political Science (Q3); Development (Q4)";"Arts and Humanities; Social Sciences" +21852;21101152759;"Anarchist Studies";journal;"09673393, 26338270";"Lawrence and Wishart";No;No;0,201;Q2;5;8;30;408;20;24;0,78;51,00;12,50;0;United Kingdom;Western Europe;"Lawrence and Wishart";"2019-2025";"History (Q2); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +21853;17700154925;"Cesky Lid";journal;"00090794";"The Institute of Ethnology of the Czech Academy of Sciences, v.v.i.";Yes;Yes;0,201;Q2;9;13;60;685;20;56;0,38;52,69;60,00;0;Czech Republic;Eastern Europe;"The Institute of Ethnology of the Czech Academy of Sciences, v.v.i.";"2008-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +21854;21100202708;"Culture, Agriculture, Food and Environment";journal;"21539561, 21539553";"John Wiley & Sons Inc.";No;No;0,201;Q2;21;11;35;473;42;28;1,47;43,00;66,67;0;United States;Northern America;"John Wiley & Sons Inc.";"2011-2026";"Cultural Studies (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Anthropology (Q3); Food Science (Q3)";"Agricultural and Biological Sciences; Social Sciences" +21855;7000153201;"Estudios Atacamenos";journal;"07181043, 07160925";"Universidad Catolica del Norte";Yes;Yes;0,201;Q2;26;8;51;598;25;51;0,30;74,75;21,43;0;Chile;Latin America;"Universidad Catolica del Norte";"2007-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2); Cultural Studies (Q2); History (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +21856;21100232823;"Imago Temporis - Medium Aevum";journal;"23407778, 18883931";"Consolidated Medieval Studies Research Group";Yes;Yes;0,201;Q2;9;0;45;0;7;45;0,17;0,00;0,00;0;Spain;Western Europe;"Consolidated Medieval Studies Research Group";"2011-2013, 2016-2018, 2020-2024";"History (Q2)";"Arts and Humanities" +21857;21100976124;"Journal of Aesthetics and Phenomenology";journal;"20539320, 20539339";"Taylor and Francis Ltd.";No;No;0,201;Q2;8;13;39;404;24;37;0,33;31,08;41,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2025";"Philosophy (Q2)";"Arts and Humanities" +21858;37322;"Journal of Anthropological Research";journal;"00917710, 21533806";"University of Chicago Press";No;No;0,201;Q2;46;23;52;1064;34;47;0,67;46,26;47,62;0;United States;Northern America;"University of Chicago Press";"1976-1979, 1981-1983, 1991, 1993, 1996-2026";"Arts and Humanities (miscellaneous) (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +21859;21101053580;"Journal of Psychosocial Studies";journal;"14786737";"Policy Press";No;No;0,201;Q2;8;20;68;495;52;59;0,84;24,75;58,33;0;United Kingdom;Western Europe;"Policy Press";"2019-2025";"Cultural Studies (Q2); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Social Psychology (Q4)";"Psychology; Social Sciences" +21860;21101230391;"Kairos (Croatia)";journal;"18464599, 18482511";"Biblical Institute";Yes;Yes;0,201;Q2;2;10;35;352;5;34;0,19;35,20;22,22;0;Croatia;Eastern Europe;"Biblical Institute";"2021-2025";"Religious Studies (Q2)";"Arts and Humanities" +21861;5800207551;"Lingvisticae Investigationes";journal;"03784169, 15699927";"John Benjamins Publishing Company";No;No;0,201;Q2;17;7;48;235;14;47;0,18;33,57;87,50;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1977-1997, 1999-2025";"Linguistics and Language (Q2)";"Social Sciences" +21862;21100863364;"Praxema";journal;"24089176, 23127899";"Tomsk State Pedagogical University";No;No;0,201;Q2;7;24;109;1014;20;109;0,21;42,25;60,53;0;Russian Federation;Eastern Europe;"Tomsk State Pedagogical University";"2018-2025";"Cultural Studies (Q2); Linguistics and Language (Q2)";"Social Sciences" +21863;5000155902;"Radical Philosophy";journal;"0300211X";"Radical Philosophy";No;No;0,201;Q2;30;14;48;507;58;17;1,43;36,21;0,00;0;United Kingdom;Western Europe;"Radical Philosophy";"2006-2016, 2019-2025";"Arts and Humanities (miscellaneous) (Q2); Philosophy (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +21864;21101149133;"Res Publica. Revista de Historia de las Ideas Politicas";journal;"15764184, 19896115";"Universidad Complutense Madrid";No;Yes;0,201;Q2;4;47;137;1343;24;128;0,17;28,57;28,26;0;Spain;Western Europe;"Universidad Complutense Madrid";"2019-2025";"Philosophy (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21865;21100939985;"Advancements in Life Sciences";journal;"23105380";"The Running Line";Yes;No;0,201;Q3;14;115;355;4443;419;354;1,25;38,63;39,15;0;Pakistan;Asiatic Region;"The Running Line";"2019-2025";"Veterinary (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Veterinary" +21866;21100205933;"Agrarforschung Schweiz";journal;"16637909, 16637852";"Recherche agronomique suisse";No;No;0,201;Q3;12;23;73;424;17;73;0,27;18,43;34,62;0;Switzerland;Western Europe;"Recherche agronomique suisse";"2012-2026";"Food Science (Q3); Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Horticulture (Q4); Pollution (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21867;21100199522;"Bulletin of the Georgian National Academy of Sciences";journal;"01321447";"Georgian National Academy of Sciences";No;No;0,201;Q3;16;124;315;1668;84;309;0,24;13,45;43,41;0;Georgia;Eastern Europe;"Georgian National Academy of Sciences";"2011-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +21868;21101247623;"Cronica Tributaria";journal;"26957566";"Instituto de Estudios Fiscales";Yes;Yes;0,201;Q3;4;27;81;686;13;63;0,19;25,41;35,71;0;Spain;Western Europe;"Instituto de Estudios Fiscales";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3); Accounting (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +21869;21100897722;"Cuadernos de Geografia: Revista Colombiana de Geografia";journal;"0121215X, 22565442";"Universidad Nacional de Colombia";Yes;Yes;0,201;Q3;10;43;92;2063;49;86;0,34;47,98;40,40;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2018-2025";"Geography, Planning and Development (Q3); Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +21870;21101020022;"Economic Horizons";journal;"1450863X, 22179232";"University of Kragujevac - Faculty of Economics";Yes;Yes;0,201;Q3;7;12;60;412;39;54;0,65;34,33;54,55;0;Serbia;Eastern Europe;"University of Kragujevac - Faculty of Economics";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +21871;19700169972;"Ensayos Sobre Politica Economica";journal;"01204483, 26651327";"Banco de la Republica";Yes;No;0,201;Q3;12;3;5;426;5;4;1,00;142,00;33,33;2;Colombia;Latin America;"Banco de la Republica";"2009-2025";"Political Science and International Relations (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +21872;21101033241;"ESARDA Bulletin";journal;"03923029, 19775296";"Publications Office of the European Union";No;No;0,201;Q3;6;3;20;92;7;20;0,36;30,67;52,94;0;Italy;Western Europe;"Publications Office of the European Union";"2017-2025";"Safety, Risk, Reliability and Quality (Q3); Applied Mathematics (Q4); Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4)";"Energy; Engineering; Mathematics; Physics and Astronomy" +21873;21101241254;"Experimental and Theoretical Nanotechnology";journal;"25904132";"University of Djillali Liabes Sidi Bel Abbes";No;No;0,201;Q3;8;65;35;2153;121;35;6,00;33,12;49,62;0;Algeria;Africa;"University of Djillali Liabes Sidi Bel Abbes";"2022-2026";"Biochemistry (medical) (Q3)";"Medicine" +21874;18633;"Herba Polonica";journal;"24498343, 00180599";"Institute of Natural Fibres and Medicinal Plants - National Research Institute";Yes;Yes;0,201;Q3;14;26;73;1590;63;73;0,50;61,15;67,09;0;Poland;Eastern Europe;"Institute of Natural Fibres and Medicinal Plants - National Research Institute";"1973-1979, 2018-2025";"Complementary and Alternative Medicine (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Pharmacology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Medicine; Pharmacology, Toxicology and Pharmaceutics" +21875;19900189254;"International Journal of Technology, Knowledge and Society";journal;"28350391, 18323669";"Common Ground Research Networks";No;No;0,201;Q3;11;22;18;1134;24;18;1,38;51,55;52,38;0;United States;Northern America;"Common Ground Research Networks";"2008-2014, 2016-2025";"Library and Information Sciences (Q3); Social Sciences (miscellaneous) (Q3); Computer Science Applications (Q4); Education (Q4); Engineering (miscellaneous) (Q4)";"Computer Science; Engineering; Social Sciences" +21876;57620;"Izvestiya Vysshikh Uchebnykh Zavedenii, Seriya Teknologiya Tekstil'noi Promyshlennosti";trade journal;"00213497";"Ivanovo State Polytechnic University";No;No;0,201;Q3;23;261;674;4938;447;674;0,77;18,92;54,56;0;Russian Federation;Eastern Europe;"Ivanovo State Polytechnic University";"1989-1993, 1995-2025";"Industrial and Manufacturing Engineering (Q3); Polymers and Plastics (Q3); Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting; Engineering; Materials Science" +21877;21101183722;"Journal of Risk Analysis and Crisis Response";journal;"22108505";"";Yes;Yes;0,201;Q3;6;40;78;2096;78;78;0,83;52,40;27,50;0;China;Asiatic Region;"";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Information Systems and Management (Q3); Social Sciences (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Management Science and Operations Research (Q4); Safety Research (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +21878;15690;"Journal of Sociology and Social Welfare";journal;"01915096";"Western Michigan University";No;No;0,201;Q3;38;14;66;496;51;65;0,67;35,43;65,22;0;United States;Northern America;"Western Michigan University";"1976-1977, 1981, 1988, 1990-1991, 1995-1996, 2005-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21879;21101259364;"Letters in Animal Biology";journal;"25840479";"";Yes;No;0,201;Q3;6;32;30;2589;43;30;1,65;80,91;47,55;0;India;Asiatic Region;"";"2021-2025";"Equine (Q3); Food Animals (Q3); Small Animals (Q3); Veterinary (miscellaneous) (Q3)";"Veterinary" +21880;21101149424;"Microbial Biosystems";journal;"23570334, 23570326";"Arab Society for Fungal Conservation";Yes;No;0,201;Q3;10;102;62;4710;109;62;1,62;46,18;53,31;0;Egypt;Africa/Middle East;"Arab Society for Fungal Conservation";"2016-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Applied Microbiology and Biotechnology (Q4); Immunology (Q4); Microbiology (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology" +21881;21101134474;"Novel Research in Microbiology Journal";journal;"25370294, 25370286";"ResearchersLinks Ltd";Yes;No;0,201;Q3;11;32;74;2084;72;74;1,04;65,13;51,49;0;United Kingdom;Western Europe;"ResearchersLinks Ltd";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Applied Microbiology and Biotechnology (Q4); Microbiology (Q4); Microbiology (medical) (Q4); Virology (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +21882;4000148204;"Pakistan Journal of Pharmaceutical Sciences";journal;"1011601X";"Pakistan Journal of Pharmaceutical Sciences";Yes;No;0,201;Q3;53;258;655;8516;476;655;0,70;33,01;47,17;0;Pakistan;Asiatic Region;"Pakistan Journal of Pharmaceutical Sciences";"1995, 2005-2026";"Pharmaceutical Science (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +21883;21101179186;"Political Anthropological Research on International Social Sciences";journal;"25903284, 25903276";"Brill Academic Publishers";No;No;0,201;Q3;8;14;39;691;21;32;0,59;49,36;15,38;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2025";"Anthropology (Q3); Political Science and International Relations (Q3)";"Social Sciences" +21884;21101257841;"Proceedings - IEEE International Conference on Advanced Video and Signal-Based Surveillance, AVSS";journal;"26436213";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,201;Q3;5;124;56;2495;74;55;1,32;20,12;25,95;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Media Technology (Q3); Artificial Intelligence (Q4); Computer Vision and Pattern Recognition (Q4); Signal Processing (Q4)";"Computer Science; Engineering" +21885;11600153627;"Zhurnal Issledovanii Sotsial'noi Politiki";journal;"17270634";"National Research University Higher School of Economics (HSE University)";Yes;No;0,201;Q3;12;47;172;1390;63;165;0,27;29,57;78,41;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2016-2025";"Sociology and Political Science (Q3); Public Administration (Q4)";"Social Sciences" +21886;21101065665;"Aguas Subterraneas";journal;"21799784, 01017004";"ABAS - Brazilian Association of Groundwater";Yes;Yes;0,201;Q4;7;16;42;474;18;42;0,56;29,63;34,21;0;Brazil;Latin America;"ABAS - Brazilian Association of Groundwater";"2019-2026";"Environmental Science (miscellaneous) (Q4); Geology (Q4); Geophysics (Q4); Geotechnical Engineering and Engineering Geology (Q4); Water Science and Technology (Q4)";"Earth and Planetary Sciences; Environmental Science" +21887;21100202702;"Asian Journal of Water, Environment and Pollution";journal;"09729860, 18758568";"AccScience Publishing";No;No;0,201;Q4;22;89;258;4927;214;241;0,89;55,36;30,48;0;Singapore;Asiatic Region;"AccScience Publishing";"2011-2026";"Pollution (Q4); Water Science and Technology (Q4)";"Environmental Science" +21888;21101033227;"Azerbaijan Chemical Journal";journal;"25221841, 00052531";"Azerbaijan National Academy of Sciences";No;No;0,201;Q4;6;46;184;1691;104;182;0,53;36,76;49,71;0;Azerbaijan;Eastern Europe;"Azerbaijan National Academy of Sciences";"2019-2026";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Environmental Chemistry (Q4); Materials Chemistry (Q4)";"Chemical Engineering; Chemistry; Environmental Science; Materials Science" +21889;29042;"Cailiao Yanjiu Xuebao/Chinese Journal of Materials Research";journal;"10053093";"";No;No;0,201;Q4;21;65;316;2137;249;316;0,81;32,88;33,82;0;China;Asiatic Region;"";"1994, 1996-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +21890;21101093016;"Chinese Journal of Intelligent Science and Technology";journal;"20966652";"Beijing Xintong Media Co., Ltd.";Yes;Yes;0,201;Q4;16;46;156;1725;183;150;1,32;37,50;37,43;0;China;Asiatic Region;"Beijing Xintong Media Co., Ltd.";"2019-2025";"Artificial Intelligence (Q4); Computer Science Applications (Q4); Computer Science (miscellaneous) (Q4)";"Computer Science" +21891;19900193538;"Chinese Journal of Schistosomiasis Control";journal;"10056661";"zhong guo xue xi chong bing fang zhi za zhi she";No;No;0,201;Q4;21;100;316;2963;210;316;0,73;29,63;44,30;1;China;Asiatic Region;"zhong guo xue xi chong bing fang zhi za zhi she";"2011-2025";"Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Parasitology (Q4)";"Immunology and Microbiology; Medicine" +21892;21100936011;"Current Psychiatry Research and Reviews";journal;"26660822, 26660830";"Bentham Science Publishers";No;No;0,201;Q4;35;71;85;5042;45;81;0,51;71,01;48,05;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2019-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +21893;21100942398;"Emerald Emerging Markets Case Studies";journal;"20450621";"Emerald Group Publishing Ltd.";No;No;0,201;Q4;11;148;442;2527;186;441;0,43;17,07;42,05;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2026";"Business and International Management (Q4); Economics and Econometrics (Q4); Education (Q4); Finance (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +21894;19700174638;"Freshwater Crayfish";journal;"20764324, 20764332";"International Association of Astacology";No;No;0,201;Q4;16;8;21;475;9;21;0,47;59,38;47,06;0;United States;Northern America;"International Association of Astacology";"2008, 2010-2011, 2013-2017, 2019-2025";"Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +21895;21100902625;"International Journal of Aquatic Biology";journal;"23225270, 23830956";"Iranian Society of Ichthyology";Yes;Yes;0,201;Q4;12;69;189;3187;164;187;0,86;46,19;39,34;0;Iran;Middle East;"Iranian Society of Ichthyology";"2019-2025";"Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Oceanography (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +21896;21100211768;"International Journal of Computational Vision and Robotics";journal;"1752914X, 17529131";"Inderscience Enterprises Ltd";No;No;0,201;Q4;19;42;105;1486;99;105;0,70;35,38;36,08;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2009-2026";"Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4)";"Computer Science" +21897;21100866218;"International Journal of Hospitality and Tourism Systems";journal;"09746250";"Publishing India Group";No;No;0,201;Q4;12;30;117;1636;130;117;1,19;54,53;35,21;0;India;Asiatic Region;"Publishing India Group";"2018-2025";"Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting" +21898;28447;"Journal of Seismic Exploration";journal;"09630651";"AccScience Publishing";No;No;0,201;Q4;30;28;74;1003;45;74;0,67;35,82;25,71;0;France;Western Europe;"AccScience Publishing";"1992-2026";"Geochemistry and Petrology (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +21899;7500153108;"Kyushu Journal of Mathematics";journal;"13406116";"Kyushu University, Faculty of Science";Yes;No;0,201;Q4;23;9;59;163;19;59;0,14;18,11;16,67;0;Japan;Asiatic Region;"Kyushu University, Faculty of Science";"1994-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +21900;21101312814;"Navigation Positioning and Timing";journal;"20958110";"China Astronautic Publishing House Co Ltd";No;No;0,201;Q4;11;84;288;2375;198;288;0,75;28,27;28,17;0;China;Asiatic Region;"China Astronautic Publishing House Co Ltd";"2021-2025";"Aerospace Engineering (Q4)";"Engineering" +21901;5000153602;"Pesquisa Operacional";journal;"01017438, 16785142";"Sociedade Brasileira de Pesquisa Operacional";Yes;No;0,201;Q4;27;38;128;1779;103;122;0,86;46,82;36,36;0;Brazil;Latin America;"Sociedade Brasileira de Pesquisa Operacional";"2006-2025";"Management Science and Operations Research (Q4)";"Decision Sciences" +21902;21101222840;"Physical Treatments";journal;"24235830";"University of Social Welfare and Rehabilitation Sciences";Yes;Yes;0,201;Q4;6;35;89;1355;60;88;0,57;38,71;41,94;0;Iran;Middle East;"University of Social Welfare and Rehabilitation Sciences";"2020-2026";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +21903;64546;"Port and Waterway Engineering";journal;"10024972";"Port and Waterway Engineering - Editorial Department";No;No;0,201;Q4;5;407;1392;5346;463;1392;0,32;13,14;29,86;0;China;Asiatic Region;"Port and Waterway Engineering - Editorial Department";"1998, 2021-2025";"Building and Construction (Q4); Ocean Engineering (Q4)";"Engineering" +21904;21100434068;"Problems of Atomic Science and Technology, Series Thermonuclear Fusion";journal;"02023822";"National Research Center Kurchatov Institute";No;No;0,201;Q4;11;14;116;254;23;116;0,26;18,14;24,59;0;Russian Federation;Eastern Europe;"National Research Center Kurchatov Institute";"2015-2025";"Condensed Matter Physics (Q4); Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4)";"Energy; Physics and Astronomy" +21905;19700186864;"Yiyong Shengwu Lixue/Journal of Medical Biomechanics";journal;"10047220";"Editorial Department of Journal of Shanghai Second Medical University";No;No;0,201;Q4;14;98;527;3204;239;525;0,48;32,69;34,63;0;China;Asiatic Region;"Editorial Department of Journal of Shanghai Second Medical University";"2010-2025";"Biomedical Engineering (Q4)";"Engineering" +21906;21101107942;"International Conference on Internet of Things, Big Data and Security, IoTBDS - Proceedings";conference and proceedings;"21844976";"Science and Technology Publications, Lda";No;No;0,201;-;7;56;101;1372;80;97;0,92;24,50;20,12;1;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Computer Networks and Communications; Software";"Computer Science" +21907;21101017489;"Nueva Revista del Pacifico";journal;"07166346, 07195176";"Universidad de Playa Ancha de Ciencias de la Educacion";Yes;Yes;0,200;Q1;5;33;73;1176;23;71;0,32;35,64;47,73;0;Chile;Latin America;"Universidad de Playa Ancha de Ciencias de la Educacion";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21908;21100899299;"VLC Arquitectura";journal;"23413050, 23412747";"Universidad Politecnica de Valencia";Yes;Yes;0,200;Q1;4;28;78;1353;25;71;0,28;48,32;37,25;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2018-2025";"Visual Arts and Performing Arts (Q1); History (Q2); Architecture (Q3); Geography, Planning and Development (Q3); Urban Studies (Q3)";"Arts and Humanities; Engineering; Social Sciences" +21909;5700173590;"Zeitschrift fur Literaturwissenschaft und Linguistik";journal;"2365953X, 00498653";"J.B. Metzler";No;No;0,200;Q1;10;56;117;1939;24;99;0,19;34,63;55,38;0;Germany;Western Europe;"J.B. Metzler";"1998, 2005-2006, 2009-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +21910;29521;"Annales Medico-Psychologiques";journal;"00034487, 17696631";"Elsevier Masson s.r.l.";No;No;0,200;Q2;28;184;484;6488;206;457;0,36;35,26;50,37;1;France;Western Europe;"Elsevier Masson s.r.l.";"1946-1947, 1949-2026";"Arts and Humanities (miscellaneous) (Q2); Applied Psychology (Q4); Psychiatry and Mental Health (Q4)";"Arts and Humanities; Medicine; Psychology" +21911;21100854900;"Cardiopulmonary Physical Therapy Journal";journal;"15417891, 23748907";"Lippincott Williams and Wilkins";No;No;0,200;Q2;6;44;71;1773;39;57;0,53;40,30;62,92;0;United Kingdom;Western Europe;"Lippincott Williams and Wilkins";"1991, 1993, 1999, 2002-2003, 2013, 2017, 2021-2026";"Respiratory Care (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +21912;21100406802;"Culture and History of the Ancient Near East";book series;"15662055";"Brill Academic Publishers";No;No;0,200;Q2;19;53;86;2530;20;7;0,25;47,74;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2025";"Archeology (arts and humanities) (Q2); Cultural Studies (Q2); History (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +21913;21101181923;"Martial Arts Studies";journal;"20575696";"Cardiff University Press";Yes;Yes;0,200;Q2;10;16;33;911;19;30;0,59;56,94;19,23;0;United Kingdom;Western Europe;"Cardiff University Press";"2015-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +21914;21101046684;"Pedagogy";journal;"15336255, 15314200";"Duke University Press";No;No;0,200;Q2;5;30;104;906;32;96;0,34;30,20;79,55;0;United States;Northern America;"Duke University Press";"2019-2026";"Cultural Studies (Q2); Linguistics and Language (Q2); Education (Q4)";"Social Sciences" +21915;21101133325;"Religion and Gender";journal;"25898051, 18785417";"Brill Academic Publishers";No;No;0,200;Q2;20;23;37;1187;24;32;0,52;51,61;81,82;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2026";"Cultural Studies (Q2); Religious Studies (Q2); Anthropology (Q3); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +21916;1000147119;"Zeitschrift fur Germanistische Linguistik";journal;"16130626, 03013294";"Walter de Gruyter GmbH";No;No;0,200;Q2;19;20;70;1050;23;68;0,20;52,50;46,34;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1973-2025";"Linguistics and Language (Q2); Developmental and Educational Psychology (Q4)";"Psychology; Social Sciences" +21917;19600166210;"Anthropological Review";journal;"18986773, 20834594";"Lodz University Press";Yes;Yes;0,200;Q3;19;16;105;858;78;105;0,84;53,63;48,98;0;Poland;Eastern Europe;"Lodz University Press";"2007-2026";"Anthropology (Q3); Health (social science) (Q4)";"Social Sciences" +21918;21101251541;"Architecture_MPS";journal;"20509006";"UCL Press";Yes;Yes;0,200;Q3;6;15;41;541;27;37;0,55;36,07;61,90;0;United Kingdom;Western Europe;"UCL Press";"2020-2026";"Architecture (Q3)";"Engineering" +21919;27640;"Asclepio";journal;"19883102, 02104466";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,200;Q3;16;26;72;2416;22;66;0,29;92,92;34,21;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1969-1974, 1976-1978, 1980-1997, 1999-2025";"History and Philosophy of Science (Q3)";"Arts and Humanities" +21920;28016;"Cartographic Journal";journal;"00087041, 17432774";"Maney Publishing";No;No;0,200;Q3;41;11;77;454;63;65;0,71;41,27;60,00;0;United Kingdom;Western Europe;"Maney Publishing";"1964-2025";"Earth-Surface Processes (Q3)";"Earth and Planetary Sciences" +21921;19700201518;"Engineering in Agriculture, Environment and Food";journal;"18818366";"";Yes;No;0,200;Q3;36;43;37;1260;34;37;0,71;29,30;20,81;0;Netherlands;Western Europe;"";"2008-2025";"Food Science (Q3); Industrial and Manufacturing Engineering (Q3); Chemical Engineering (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Chemical Engineering; Engineering" +21922;21101072387;"Insurance Markets and Companies";journal;"25229591, 26163551";"LLC CPC Business Perspectives";Yes;No;0,200;Q3;8;24;40;1169;58;40;1,68;48,71;41,82;0;Ukraine;Eastern Europe;"LLC CPC Business Perspectives";"2019-2025";"Law (Q3); Business and International Management (Q4); Finance (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +21923;21100241603;"International Journal of Metrology and Quality Engineering";journal;"21076839, 21076847";"EDP Sciences";Yes;No;0,200;Q3;21;11;53;294;46;53;0,76;26,73;35,71;0;France;Western Europe;"EDP Sciences";"2010-2026";"Safety, Risk, Reliability and Quality (Q3)";"Engineering" +21924;21100854136;"Journal of Inborn Errors of Metabolism and Screening";journal;"23264098, 23264594";"Latin American Society Inborn Errors and Neonatal Screening";Yes;No;0,200;Q3;16;12;33;492;16;32;0,45;41,00;59,18;0;United States;Northern America;"Latin American Society Inborn Errors and Neonatal Screening";"2015-2025";"Pediatrics, Perinatology and Child Health (Q3); Endocrinology, Diabetes and Metabolism (Q4); Genetics (clinical) (Q4)";"Medicine" +21925;21101040212;"Journal of Liberty and International Affairs";journal;"18579760";"Institute for Research and European Studies";Yes;No;0,200;Q3;9;22;191;988;185;191;1,07;44,91;60,00;0;Macedonia;Eastern Europe;"Institute for Research and European Studies";"2019-2025";"Law (Q3); Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3); Public Administration (Q4)";"Social Sciences" +21926;21100218336;"Journal of the Hellenic Veterinary Medical Society";journal;"17922720";"Hellenic Veterinary Medical Society";No;No;0,200;Q3;18;145;552;7015;381;552;0,62;48,38;35,39;0;Greece;Western Europe;"Hellenic Veterinary Medical Society";"1953, 2003-2004, 2011-2026";"Veterinary (miscellaneous) (Q3)";"Veterinary" +21927;21101059785;"Kasetsart Journal of Social Sciences";journal;"24523151";"Kasetsart University";Yes;No;0,200;Q3;34;138;421;4922;324;421;0,69;35,67;45,13;0;Thailand;Asiatic Region;"Kasetsart University";"2015-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +21928;21101208547;"Korean Journal of International Studies";journal;"22885072, 2233470X";"The Korean Association of International Studies";No;No;0,200;Q3;5;18;47;1333;36;47;0,81;74,06;31,58;1;South Korea;Asiatic Region;"The Korean Association of International Studies";"2020-2025";"Political Science and International Relations (Q3)";"Social Sciences" +21929;21100232211;"Nestle Nutrition Institute Workshop Series";journal;"16642155, 16642147";"S. Karger AG";No;No;0,200;Q3;45;0;77;0;34;59;0,43;0,00;0,00;0;Switzerland;Western Europe;"S. Karger AG";"2011-2020, 2022-2024";"Food Science (Q3); Pediatrics, Perinatology and Child Health (Q3); Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Medicine; Nursing" +21930;26658;"Nutrition Clinique et Metabolisme";journal;"17683092, 09850562";"Elsevier Masson s.r.l.";No;No;0,200;Q3;16;42;130;1883;68;115;0,46;44,83;58,97;0;France;Western Europe;"Elsevier Masson s.r.l.";"1987-2026";"Internal Medicine (Q3); Endocrinology, Diabetes and Metabolism (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +21931;21101105294;"Revista Brasileira de Seguranca Publica";journal;"19811659, 25950258";"Forum Brasileiro de Seguranca Publica";Yes;Yes;0,200;Q3;4;37;119;1556;19;113;0,15;42,05;36,36;0;Brazil;Latin America;"Forum Brasileiro de Seguranca Publica";"2019-2025";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21932;21101023977;"ScienceRise: Pharmaceutical Science";journal;"25194844, 25194852";"Technology Center";Yes;No;0,200;Q3;10;59;180;2310;162;180;0,92;39,15;61,28;0;Ukraine;Eastern Europe;"Technology Center";"2019-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +21933;21100416035;"Trauma Case Reports";journal;"23526440";"Elsevier Ltd";Yes;No;0,200;Q3;14;151;502;2402;260;502;0,49;15,91;20,59;0;United Kingdom;Western Europe;"Elsevier Ltd";"2015-2026";"Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3); Orthopedics and Sports Medicine (Q4)";"Medicine" +21934;21100242817;"Agrivita";journal;"24778516, 01260537";"Agriculture Faculty Brawijaya University";Yes;No;0,200;Q4;22;53;164;2083;148;164;0,98;39,30;38,65;0;Indonesia;Asiatic Region;"Agriculture Faculty Brawijaya University";"2013-2025";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +21935;21100370876;"Annali di Botanica";journal;"22393129, 03650812";"University of Rome La Sapienza";Yes;No;0,200;Q4;24;0;27;0;28;26;0,90;0,00;0,00;0;Italy;Western Europe;"University of Rome La Sapienza";"1996-2000, 2002-2008, 2011-2024";"Plant Science (Q4)";"Agricultural and Biological Sciences" +21936;19700201654;"BMJ Case Reports";journal;"1757790X";"BMJ Publishing Group";Yes;No;0,200;Q4;48;1987;4925;29655;2360;4759;0,42;14,92;41,69;0;United Kingdom;Western Europe;"BMJ Publishing Group";"2008-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +21937;96848;"Dianbo Kexue Xuebao/Chinese Journal of Radio Science";journal;"10050388";"Chinese Research Institute of Radiowave Propagation";No;No;0,200;Q4;23;121;393;3470;259;393;0,83;28,68;32,59;0;China;Asiatic Region;"Chinese Research Institute of Radiowave Propagation";"1998, 2001-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +21938;21100444329;"European Journal of Government and Economics";journal;"22547088";"University of Coruna, Faculty of Economics and Business";Yes;Yes;0,200;Q4;12;12;34;705;30;33;0,86;58,75;66,67;0;Spain;Western Europe;"University of Coruna, Faculty of Economics and Business";"2012-2025";"Economics and Econometrics (Q4); Public Administration (Q4)";"Economics, Econometrics and Finance; Social Sciences" +21939;21100858412;"HIV Infection and Immunosuppressive Disorders";journal;"20781792, 20779828";"Baltic Medical Educational Center";No;No;0,200;Q4;9;46;144;1180;77;144;0,56;25,65;58,67;0;Russian Federation;Eastern Europe;"Baltic Medical Educational Center";"2017-2025";"Immunology (Q4); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)";"Immunology and Microbiology; Medicine" +21940;15629;"International Journal of Cooperative Information Systems";journal;"02188430, 17936365";"World Scientific Publishing Co. Pte Ltd";No;No;0,200;Q4;49;14;28;364;35;28;1,45;26,00;20,00;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"1993, 1996-2025";"Computer Science Applications (Q4); Information Systems (Q4)";"Computer Science" +21941;19700186844;"International Journal of Mobile Computing and Multimedia Communications";journal;"19379412, 19379404";"IGI Global Publishing";No;No;0,200;Q4;14;9;29;258;38;29;1,38;28,67;37,14;0;United States;Northern America;"IGI Global Publishing";"2009-2014, 2016-2025";"Computer Networks and Communications (Q4)";"Computer Science" +21942;5700165165;"International Journal of Productivity and Quality Management";journal;"17466474, 17466482";"Inderscience Enterprises Ltd";No;No;0,200;Q4;37;68;231;4509;254;231;0,97;66,31;28,07;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2026";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +21943;21100900542;"Japanese Journal of Health Physics";journal;"03676110, 18847560";"Japan Health Physics Society";No;No;0,200;Q4;6;28;81;395;15;68;0,19;14,11;17,81;0;Japan;Asiatic Region;"Japan Health Physics Society";"2018-2025";"Epidemiology (Q4); Health, Toxicology and Mutagenesis (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Environmental Science; Medicine" +21944;21101375756;"Journal of Computing and Biomedical Informatics";journal;"27101614, 27101606";"Research Center of Computing and Biomedical Informatics";No;No;0,200;Q4;13;171;474;5444;563;474;1,19;31,84;35,16;0;Pakistan;Asiatic Region;"Research Center of Computing and Biomedical Informatics";"2021-2025";"Artificial Intelligence (Q4); Biomedical Engineering (Q4); Decision Sciences (miscellaneous) (Q4)";"Computer Science; Decision Sciences; Engineering" +21945;76200;"Journal of Cotton Science";journal;"15236919, 15243303";"Cotton Foundation";Yes;No;0,200;Q4;50;26;40;828;22;40;0,55;31,85;29,17;0;United States;Northern America;"Cotton Foundation";"1997-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +21946;11300153744;"Journal of Mechanics in Medicine and Biology";journal;"17936810, 02195194";"World Scientific Publishing Co. Pte Ltd";No;No;0,200;Q4;45;189;459;6227;388;450;0,82;32,95;37,89;0;Singapore;Asiatic Region;"World Scientific Publishing Co. Pte Ltd";"2004, 2008-2026";"Biomedical Engineering (Q4)";"Engineering" +21947;12184;"Journal of Optical Technology (A Translation of Opticheskii Zhurnal)";journal;"10910786, 10709762";"Optica Publishing Group (formerly OSA)";No;No;0,200;Q4;30;52;378;1227;178;370;0,42;23,60;23,46;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"1995-2025";"Applied Mathematics (Q4); Atomic and Molecular Physics, and Optics (Q4); Computational Mathematics (Q4); Engineering (miscellaneous) (Q4)";"Engineering; Mathematics; Physics and Astronomy" +21948;21100297612;"Journal of the Ramanujan Mathematical Society";journal;"23203110, 09701249";"Ramanujan Mathematical Society";No;No;0,200;Q4;15;0;74;0;22;74;0,28;0,00;0,00;0;India;Asiatic Region;"Ramanujan Mathematical Society";"2006-2024";"Mathematics (miscellaneous) (Q4)";"Mathematics" +21949;19600157303;"Light and Engineering";journal;"02362945, 25419935";"LLC Editorial of Journal "Light Technik"";No;No;0,200;Q4;14;69;239;1391;96;236;0,39;20,16;32,93;0;Russian Federation;Eastern Europe;"LLC Editorial of Journal "Light Technik"";"2008-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +21950;19350;"Mikologiya I Fitopatologiya";journal;"00263648";"Russian Academy of Sciences";No;No;0,200;Q4;16;36;132;1807;62;129;0,56;50,19;59,55;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"1996-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +21951;21101160633;"Multipurpose Utilization of Mineral Resources";journal;"10006532";"";Yes;No;0,200;Q4;13;84;525;1770;209;525;0,43;21,07;36,65;0;China;Asiatic Region;"";"2019-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Geochemistry and Petrology (Q4); Geology (Q4)";"Chemical Engineering; Chemistry; Earth and Planetary Sciences" +21952;21100438180;"Nanosistemi, Nanomateriali, Nanotehnologii";journal;"18165230, 26173794";"G.V. Kurdyumov Institute for Metal Physics of N.A.S. of Ukraine";Yes;Yes;0,200;Q4;17;91;241;3007;256;241;0,94;33,04;44,95;0;Ukraine;Eastern Europe;"G.V. Kurdyumov Institute for Metal Physics of N.A.S. of Ukraine";"2015-2025";"Ceramics and Composites (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Science (miscellaneous) (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science" +21953;21101140100;"Neuroimmunology Reports";journal;"2667257X";"Elsevier B.V.";No;No;0,200;Q4;6;35;174;496;77;174;0,44;14,17;40,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Immunology and Allergy (Q4); Neurology (clinical) (Q4); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience" +21954;21100793184;"Prikladnaya Diskretnaya Matematika";journal;"23112263, 20710410";"Tomsk State University";Yes;No;0,200;Q4;7;28;108;590;28;108;0,23;21,07;24,32;0;Russian Federation;Eastern Europe;"Tomsk State University";"2016-2025";"Applied Mathematics (Q4); Computational Theory and Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4); Signal Processing (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +21955;19700190355;"Revista Brasileira de Cineantropometria e Desempenho Humano";journal;"14158426, 19800037";"Universidade Federal de Santa Catarina";Yes;Yes;0,200;Q4;30;6;62;136;41;61;0,65;22,67;39,13;0;Brazil;Latin America;"Universidade Federal de Santa Catarina";"1999-2025";"Physiology (Q4); Physiology (medical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +21956;19700175903;"Revista Romana de Materiale/ Romanian Journal of Materials";journal;"15833186, 2457502X";"Fundatia Serban Solacolu";Yes;No;0,200;Q4;18;17;114;484;59;114;0,36;28,47;28,21;0;Romania;Eastern Europe;"Fundatia Serban Solacolu";"2008-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +21957;21100781706;"South African Computer Journal";journal;"10157999, 23137835";"South African Institute of Computer Scientists and Information Technologists";Yes;No;0,200;Q4;14;14;59;652;77;47;1,45;46,57;29,41;0;South Africa;Africa;"South African Institute of Computer Scientists and Information Technologists";"2016-2025";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Education (Q4); Human-Computer Interaction (Q4); Information Systems (Q4)";"Computer Science; Social Sciences" +21958;21101021141;"Thailand and the World Economy";journal;"26510529, 26300931";"Thammasat University";No;No;0,200;Q4;6;26;80;1403;77;79;0,93;53,96;34,09;0;Thailand;Asiatic Region;"Thammasat University";"2018-2026";"Development (Q4); Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance; Social Sciences" +21959;21101041506;"Turkish Computational and Theoretical Chemistry";journal;"26023237, 25871722";"DergiPark";No;No;0,200;Q4;10;29;59;1198;76;59;1,33;41,31;31,82;0;Turkey;Middle East;"DergiPark";"2018-2025";"Biochemistry (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Computer Science Applications (Q4); Materials Chemistry (Q4); Molecular Medicine (Q4); Physical and Theoretical Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Computer Science; Materials Science" +21960;27028;"Geotechnical Special Publication";conference and proceedings;"08950563";"American Society of Civil Engineers (ASCE)";No;No;0,200;-;56;573;1413;10528;592;1365;0,40;18,37;22,13;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1987-2025";"Architecture; Building and Construction; Civil and Structural Engineering; Geotechnical Engineering and Engineering Geology";"Earth and Planetary Sciences; Engineering" +21961;56670;"IECON Proceedings (Industrial Electronics Conference)";conference and proceedings;"25771647, 21624704";"IEEE Computer Society";No;No;0,200;-;84;963;2919;17170;1957;2915;0,63;17,83;19,15;0;United States;Northern America;"IEEE Computer Society";"1989-1991, 1993-2014, 2016, 2019-2025";"Control and Systems Engineering; Electrical and Electronic Engineering";"Engineering" +21962;21100259107;"International Journal of Design Management and Professional Practice";journal;"23251638, 2325162X";"Common Ground Research Networks";No;No;0,199;Q1;6;16;28;899;31;28;1,41;56,19;48,78;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Visual Arts and Performing Arts (Q1); Architecture (Q3); Urban Studies (Q3)";"Arts and Humanities; Engineering; Social Sciences" +21963;21100904556;"International Journal of Korean History";journal;"25085921, 15982041";"Center for Korean History,Korea University";Yes;Yes;0,199;Q1;4;13;48;621;16;45;0,38;47,77;50,00;0;South Korea;Asiatic Region;"Center for Korean History,Korea University";"2018-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +21964;5600153387;"Positions";journal;"15278271, 10679847";"Duke University Press";No;No;0,199;Q1;33;33;115;1240;77;104;0,71;37,58;37,93;0;United States;Northern America;"Duke University Press";"2001-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +21965;21101259013;"Resital";journal;"20859910, 23386770";"";Yes;No;0,199;Q1;4;20;62;995;29;62;0,59;49,75;51,11;0;Indonesia;Asiatic Region;"";"2020-2025";"Visual Arts and Performing Arts (Q1); Music (Q2)";"Arts and Humanities" +21966;19900192338;"Accounting History Review";journal;"21552851, 2155286X";"Routledge";No;No;0,199;Q2;29;16;24;1380;15;22;0,44;86,25;21,43;0;United Kingdom;Western Europe;"Routledge";"2011-2025";"History (Q2); Accounting (Q4); Business, Management and Accounting (miscellaneous) (Q4)";"Arts and Humanities; Business, Management and Accounting" +21967;7100153130;"Acta Archaeologica Academiae Scientiarum Hungaricae";journal;"15882551, 00015210";"Akademiai Kiado";No;No;0,199;Q2;13;17;45;929;10;45;0,30;54,65;47,62;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21968;21100401081;"Archivo de Prehistoria Levantina";book series;"19890508, 02103230";"Museo de Prehistoria de Valencia";No;No;0,199;Q2;8;6;18;342;3;18;0,22;57,00;37,50;0;Spain;Western Europe;"Museo de Prehistoria de Valencia";"2010, 2012, 2014, 2016, 2022, 2024-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21969;21100855754;"Australian Journal of Human Rights";journal;"2573573X, 1323238X";"Taylor and Francis Ltd.";No;No;0,199;Q2;20;13;90;491;74;69;0,73;37,77;73,08;0;Australia;Pacific Region;"Taylor and Francis Ltd.";"1994, 1996-2026";"History (Q2); Philosophy (Q2); Law (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21970;10300153364;"Cuadernos de Historia";journal;"07191243, 07161832";"Universidad de Chile, Facultad de Filosofia y Humanidades, Departamento de Literatura";Yes;Yes;0,199;Q2;8;27;74;1286;32;73;0,43;47,63;25,00;0;Chile;Latin America;"Universidad de Chile, Facultad de Filosofia y Humanidades, Departamento de Literatura";"1999, 2001-2002, 2017-2025";"History (Q2)";"Arts and Humanities" +21971;22885;"Deutsche Zeitschrift fur Philosophie";journal;"21921482, 00121045";"Walter de Gruyter GmbH";No;No;0,199;Q2;16;39;166;1209;30;164;0,14;31,00;37,14;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1953-2025";"Philosophy (Q2)";"Arts and Humanities" +21972;21100206610;"Estudios de Linguistica del Espanol";journal;"11398736";"University of Bern";Yes;Yes;0,199;Q2;7;11;60;248;21;58;0,27;22,55;81,25;0;Switzerland;Western Europe;"University of Bern";"2012, 2014-2018, 2020-2025";"Linguistics and Language (Q2)";"Social Sciences" +21973;21100834912;"European Journal of Post-Classical Archaeologies";journal;"20397895";"Societa Archeologica srl";No;Yes;0,199;Q2;7;14;43;856;15;41;0,18;61,14;55,56;0;Italy;Western Europe;"Societa Archeologica srl";"2017-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +21974;21101263031;"Humanimalia";journal;"21518645";"OpenJournals";Yes;Yes;0,199;Q2;5;21;41;1072;19;36;0,30;51,05;65,00;0;Netherlands;Western Europe;"OpenJournals";"2009, 2016-2017, 2020, 2022-2025";"Cultural Studies (Q2); Gender Studies (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21975;21100239803;"Jezikoslovni Zapiski";journal;"15811255, 03540448";"Zalozba ZRC";Yes;Yes;0,199;Q2;7;30;83;898;20;82;0,22;29,93;57,89;0;Slovenia;Eastern Europe;"Zalozba ZRC";"2007, 2011-2025";"Linguistics and Language (Q2)";"Social Sciences" +21976;21101152617;"Journal of Chinese Architecture and Urbanism";journal;"27175626";"AccScience Publishing";No;No;0,199;Q2;4;48;75;2171;60;71;0,82;45,23;41,43;0;Singapore;Asiatic Region;"AccScience Publishing";"2019-2026";"Arts and Humanities (miscellaneous) (Q2); History (Q2); Architecture (Q3)";"Arts and Humanities; Engineering" +21977;21100390171;"Journal of Historical Linguistics";journal;"22102116, 22102124";"John Benjamins Publishing Company";No;No;0,199;Q2;14;21;47;1137;24;46;0,38;54,14;41,94;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2011-2026";"Linguistics and Language (Q2)";"Social Sciences" +21978;21100898969;"Journal of Language Relationship";journal;"22193820, 22194029";"Russian State University for the Humanities";No;No;0,199;Q2;6;16;45;846;20;45;0,47;52,88;33,33;0;Russian Federation;Eastern Europe;"Russian State University for the Humanities";"2017-2025";"Linguistics and Language (Q2)";"Social Sciences" +21979;21101196156;"Journal of Philosophical Investigations";journal;"22517960, 24234419";"University of Tabriz";Yes;No;0,199;Q2;3;71;363;2046;32;361;0,09;28,82;23,01;0;Iran;Middle East;"University of Tabriz";"2022-2026";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +21980;21101092739;"Korean Journal of Research in Music Education";journal;"12294179, 27133788";"Korean Music Education Society";No;No;0,199;Q2;7;53;120;1869;61;114;0,64;35,26;60,26;0;South Korea;Asiatic Region;"Korean Music Education Society";"2019-2025";"Music (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +21981;5800207578;"Linguistica Uralica";journal;"08684731, 17367506";"Estonian Academy Publishers";Yes;Yes;0,199;Q2;11;14;51;388;11;49;0,23;27,71;30,00;0;Estonia;Eastern Europe;"Estonian Academy Publishers";"2008-2026";"Linguistics and Language (Q2)";"Social Sciences" +21982;17100154726;"Middle East Law and Governance";journal;"18763367, 18763375";"Brill Academic Publishers";No;No;0,199;Q2;22;18;61;1279;43;56;0,46;71,06;60,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2026";"Arts and Humanities (miscellaneous) (Q2); Law (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +21983;21101040218;"Shidnij Svit";journal;"16080599, 16825268";"A. Yu. Krymskyi Institute of Oriental Studies of the National Academy of Sciences of Ukraine";No;No;0,199;Q2;3;50;159;1907;19;159;0,14;38,14;36,36;0;Ukraine;Eastern Europe;"A. Yu. Krymskyi Institute of Oriental Studies of the National Academy of Sciences of Ukraine";"2019-2025";"History (Q2); Linguistics and Language (Q2); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +21984;21100900131;"Terra Economicus";journal;"24104531, 20736606";"Southern Federal University";No;No;0,199;Q2;14;26;107;952;59;107;0,56;36,62;53,33;0;Russian Federation;Eastern Europe;"Southern Federal University";"2018-2025";"History (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +21985;21101215124;"Yegah Musicology Journal";journal;"27920178";"Tolga Karaca";No;No;0,199;Q2;3;194;79;5516;38;79;0,51;28,43;45,71;0;Turkey;Middle East;"Tolga Karaca";"2022-2026";"Arts and Humanities (miscellaneous) (Q2); Music (Q2)";"Arts and Humanities" +21986;21100777184;"Agriculture and Natural Resources";journal;"2452316X, 24681458";"Kasetsart University";Yes;No;0,199;Q3;36;82;311;3608;273;311;0,75;44,00;46,15;0;Thailand;Asiatic Region;"Kasetsart University";"2014, 2016-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +21987;21101049556;"Andes Pediatrica";journal;"24526053, 24526045";"Sociedad Chilena de Pediatria";Yes;Yes;0,199;Q3;26;98;318;2502;171;250;0,49;25,53;67,61;0;Chile;Latin America;"Sociedad Chilena de Pediatria";"2021-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +21988;21101053505;"Annals of Pancreatic Cancer";journal;"26162741";"AME Publishing Company";No;No;0,199;Q3;8;15;34;407;24;33;0,65;27,13;41,27;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2018-2026";"Internal Medicine (Q3); Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +21989;21100899306;"Asian Journal for Public Opinion Research";journal;"22886168";"Center for Asian Public Opinion Research and Collaboration Initiative";Yes;No;0,199;Q3;12;20;46;1121;30;41;0,66;56,05;37,78;0;South Korea;Asiatic Region;"Center for Asian Public Opinion Research and Collaboration Initiative";"2018-2025";"Communication (Q3); Sociology and Political Science (Q3)";"Social Sciences" +21990;12100154830;"Bioagro";journal;"13163361";"Universidad Centroccidental Lisandro Alvarado (UCLA)";Yes;Yes;0,199;Q3;14;34;93;1108;71;91;0,77;32,59;36,17;0;Venezuela;Latin America;"Universidad Centroccidental Lisandro Alvarado (UCLA)";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +21991;21101120356;"Biologicni Studii";journal;"19964536, 23110783";"Ivan Franko National University of Lviv";Yes;Yes;0,199;Q3;7;52;128;1662;86;128;0,74;31,96;54,81;0;Ukraine;Eastern Europe;"Ivan Franko National University of Lviv";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +21992;25412;"Chinese Journal of Stomatology";journal;"10020098";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,199;Q3;20;181;587;6002;373;585;0,60;33,16;52,48;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1987-2016, 2019-2026";"Dentistry (miscellaneous) (Q3); Oral Surgery (Q3); Periodontics (Q3)";"Dentistry" +21993;21100205110;"e-Review of Tourism Research";journal;"19415842";"Texas A and M University";No;No;0,199;Q3;18;0;22;0;19;22;0,82;0,00;0,00;0;United States;Northern America;"Texas A and M University";"2011-2012, 2014-2023";"Geography, Planning and Development (Q3); Nature and Landscape Conservation (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Environmental Science; Social Sciences" +21994;21101028329;"Food Processing: Techniques and Technology";journal;"20749414, 23131748";"Kemerovo State University";Yes;No;0,199;Q3;10;32;214;1230;181;214;0,80;38,44;62,33;0;Russian Federation;Eastern Europe;"Kemerovo State University";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Food Science (Q3); Industrial and Manufacturing Engineering (Q3)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Engineering" +21995;21101170608;"Georgetown Journal of International Affairs";journal;"15260054, 24718831";"Johns Hopkins University Press";No;No;0,199;Q3;9;34;106;1260;83;86;0,64;37,06;44,44;0;United States;Northern America;"Johns Hopkins University Press";"2019-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +21996;21101246775;"Instrumentation";journal;"20957521";"Popular Science Press";No;No;0,199;Q3;6;25;88;778;79;87;0,92;31,12;33,33;0;China;Asiatic Region;"Popular Science Press";"2020-2025";"Industrial and Manufacturing Engineering (Q3); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Engineering (miscellaneous) (Q4)";"Engineering" +21997;21100831023;"International Journal of Cancer Management";journal;"25384422, 2538497X";"Brieflands";Yes;No;0,199;Q3;30;62;194;1923;108;192;0,51;31,02;48,69;0;Netherlands;Western Europe;"Brieflands";"2015-2026";"Surgery (Q3); Cancer Research (Q4); Oncology (Q4); Pharmacology (medical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +21998;12600154734;"International Journal of Electronic Security and Digital Forensics";journal;"17519128, 1751911X";"Inderscience Enterprises Ltd";No;No;0,199;Q3;20;46;131;1473;158;131;1,11;32,02;31,82;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2010, 2012-2026";"Law (Q3); Computer Networks and Communications (Q4); Safety, Risk, Reliability and Quality (Q4)";"Computer Science; Engineering; Social Sciences" +21999;21100943572;"Journal of the Canadian Health Libraries Association";journal;"17086892";"Canadian Health Libraries Association";Yes;Yes;0,199;Q3;8;8;31;130;25;19;1,00;16,25;66,67;0;Canada;Northern America;"Canadian Health Libraries Association";"2018-2025";"Library and Information Sciences (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +22000;5700191216;"Materiali in Tehnologije";journal;"15802949, 15803414";"Institute of Metals Technology";Yes;No;0,199;Q3;36;99;267;3002;241;265;0,80;30,32;33,53;0;Slovenia;Eastern Europe;"Institute of Metals Technology";"2007-2026";"Polymers and Plastics (Q3); Metals and Alloys (Q4)";"Materials Science" +22001;21101254622;"Radiation Environment and Medicine";journal;"24239097, 2432163X";"Hirosaki University";No;No;0,199;Q3;6;5;39;200;19;36;0,44;40,00;30,30;0;Japan;Asiatic Region;"Hirosaki University";"2020-2025";"Radiation (Q3); Environmental Science (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Environmental Science; Medicine; Physics and Astronomy" +22002;17445;"Swiss Journal of Sociology";journal;"03793664, 22978348";"Schweizerische Gesellschaft fur Soziologie";Yes;Yes;0,199;Q3;13;0;53;0;42;49;1,15;0,00;0,00;0;Switzerland;Western Europe;"Schweizerische Gesellschaft fur Soziologie";"1982, 1986, 1993, 2016-2023";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +22003;18300156736;"Acta Scientiarum - Technology";journal;"18078664, 18062563";"Universidade Estadual de Maringa";Yes;Yes;0,199;Q4;26;61;180;2052;183;179;0,90;33,64;37,88;0;Brazil;Latin America;"Universidade Estadual de Maringa";"2008-2026";"Chemistry (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Chemistry; Computer Science; Earth and Planetary Sciences; Engineering; Mathematics; Physics and Astronomy" +22004;29423;"Alberta Journal of Educational Research";journal;"19231857, 00024805";"University of Alberta";No;No;0,199;Q4;31;0;83;0;45;81;0,45;0,00;0,00;0;Canada;Northern America;"University of Alberta";"1996-2024";"Education (Q4)";"Social Sciences" +22005;21100218041;"Anti-Infective Agents";journal;"22113533, 22113525";"Bentham Science Publishers";No;No;0,199;Q4;27;53;121;3506;123;115;1,05;66,15;36,08;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2012-2026";"Infectious Diseases (Q4); Pharmacology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +22006;21100410100;"Applied Physics";journal;"19960948";"Federal Informational-Analytical Center of the Defense Industry";No;No;0,199;Q4;10;39;174;578;35;174;0,20;14,82;32,93;0;Russian Federation;Eastern Europe;"Federal Informational-Analytical Center of the Defense Industry";"2011-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +22007;21100912436;"Armenian Journal of Mathematics";journal;"18291163";"National Academy of Sciences";Yes;No;0,199;Q4;6;10;43;198;29;42;0,64;19,80;13,33;0;Armenia;Eastern Europe;"National Academy of Sciences";"2019-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +22008;21101281544;"California Fish and Wildlife Journal";journal;"2689419X, 26894203";"Department of Fish and Game";Yes;No;0,199;Q4;23;22;73;725;22;56;0,37;32,95;28,57;0;United States;Northern America;"Department of Fish and Game";"2020-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +22009;21100970321;"Chemistry, Didactics, Ecology, Metrology";journal;"16409019, 20844506";"Sciendo";No;No;0,199;Q4;7;9;28;348;26;28;0,83;38,67;43,33;0;Poland;Eastern Europe;"Sciendo";"2019-2025";"Ecology (Q4); Education (Q4); Environmental Chemistry (Q4); Environmental Engineering (Q4)";"Environmental Science; Social Sciences" +22010;21101066988;"Chinese Journal of Disease Control and Prevention";journal;"16743679";"Publication Centre of Anhui Medical University";No;No;0,199;Q4;9;208;697;4369;396;697;0,57;21,00;51,99;0;China;Asiatic Region;"Publication Centre of Anhui Medical University";"2021-2026";"Epidemiology (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +22011;21100211362;"Contemporary Educational Research Quarterly";journal;"18144810";"Centre for Educational Research and Evaluation";No;No;0,199;Q4;6;16;55;748;22;50;0,32;46,75;25,00;0;Taiwan;Asiatic Region;"Centre for Educational Research and Evaluation";"2012-2025";"Education (Q4)";"Social Sciences" +22012;21100839164;"Czech Mycology";journal;"12110981, 18051421";"Czech Scientific Society for Mycology";No;No;0,199;Q4;13;12;41;481;23;40;0,65;40,08;21,57;0;Czech Republic;Eastern Europe;"Czech Scientific Society for Mycology";"2016-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22013;22368;"Huanan Ligong Daxue Xuebao/Journal of South China University of Technology (Natural Science)";journal;"1000565X";"South China University of Technology";No;No;0,199;Q4;24;166;541;4368;435;541;0,81;26,31;34,73;0;China;Asiatic Region;"South China University of Technology";"2001-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +22014;21100983351;"International Journal of Academic Medicine";journal;"24555568";"Wolters Kluwer Medknow Publications";No;No;0,199;Q4;8;7;88;159;49;75;0,63;22,71;64,29;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2025";"Education (Q4); Health (social science) (Q4)";"Social Sciences" +22015;21100198227;"International Journal of Engineering Systems Modelling and Simulation";journal;"17559766, 17559758";"Inderscience";No;No;0,199;Q4;18;34;90;1107;80;89;0,74;32,56;23,29;0;Switzerland;Western Europe;"Inderscience";"2008-2026";"Engineering (miscellaneous) (Q4); Modeling and Simulation (Q4)";"Engineering; Mathematics" +22016;21100831437;"International Journal of Mechatronics and Applied Mechanics";journal;"25594397, 25596497";"Cefin Publishing House";Yes;No;0,199;Q4;12;168;228;4093;204;226;1,06;24,36;24,24;0;Romania;Eastern Europe;"Cefin Publishing House";"2017-2025";"Artificial Intelligence (Q4); Materials Science (miscellaneous) (Q4); Mechanics of Materials (Q4)";"Computer Science; Engineering; Materials Science" +22017;20457;"Journal of Agricultural and Urban Entomology";journal;"15235475";"South Carolina Entomological Society";No;No;0,199;Q4;34;6;14;248;9;14;0,55;41,33;28,57;0;United States;Northern America;"South Carolina Entomological Society";"1996-2010, 2012-2025";"Insect Science (Q4)";"Agricultural and Biological Sciences" +22018;21100858128;"Journal of Spectral Imaging";journal;"20404565";"IM Publications Open LLP";Yes;Yes;0,199;Q4;14;0;13;0;12;13;1,00;0,00;0,00;0;United Kingdom;Western Europe;"IM Publications Open LLP";"2016-2023";"Analytical Chemistry (Q4); Spectroscopy (Q4)";"Chemistry" +22019;21101053585;"Medicina Moderna";journal;"12230472, 23602473";"";Yes;Yes;0,199;Q4;7;43;138;1642;111;138;0,88;38,19;42,96;0;Romania;Eastern Europe;"";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22020;19722;"Microbiology and Biotechnology Letters";journal;"22347305, 1598642X";"Korean Society for Microbiolog and Biotechnology";No;No;0,199;Q4;24;90;203;2493;152;202;0,71;27,70;42,45;0;South Korea;Asiatic Region;"Korean Society for Microbiolog and Biotechnology";"2002-2026";"Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Microbiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +22021;21101023718;"Natural History Sciences";journal;"23850442, 23850922";"Page Press Publications";Yes;Yes;0,199;Q4;12;17;75;775;38;75;0,40;45,59;32,00;0;Italy;Western Europe;"Page Press Publications";"2014-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Geology (Q4); Paleontology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +22022;23254;"Nematropica";journal;"00995444";"Organization of Nematologists of Tropical America";No;No;0,199;Q4;30;7;38;283;29;38;0,73;40,43;46,43;0;United States;Northern America;"Organization of Nematologists of Tropical America";"1988, 1993-1994, 1996-2025";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +22023;19700175027;"Open Rheumatology Journal";journal;"18743129";"Bentham Science Publishers";Yes;No;0,199;Q4;40;9;15;276;11;15;0,89;30,67;44,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2007-2025";"Rheumatology (Q4)";"Medicine" +22024;21101151576;"Passer Journal of Basic and Applied Sciences";journal;"27065944, 27065952";"University of Garmian";Yes;No;0,199;Q4;8;105;204;4426;244;204;1,23;42,15;20,77;0;Iraq;Middle East;"University of Garmian";"2019-2026";"Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Genetics (clinical) (Q4); Microbiology (Q4); Molecular Biology (Q4); Parasitology (Q4)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Engineering; Immunology and Microbiology; Medicine" +22025;27057;"Russian Journal of Physical Chemistry A";journal;"00360244, 1531863X";"Pleiades Publishing";No;No;0,199;Q4;38;392;1296;13963;982;1295;0,77;35,62;45,32;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Physical and Theoretical Chemistry (Q4)";"Chemistry" +22026;21100911934;"Semiconductor Physics, Quantum Electronics and Optoelectronics";journal;"15608034, 16056582";"National Academy of Sciences of Ukraine - Institute of Semiconductor Physics";Yes;Yes;0,199;Q4;15;62;167;1897;172;161;1,15;30,60;28,57;0;Ukraine;Eastern Europe;"National Academy of Sciences of Ukraine - Institute of Semiconductor Physics";"2019-2025";"Atomic and Molecular Physics, and Optics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +22027;21100978911;"Terra Latinoamericana";journal;"23958030, 01875779";"Mexican Society of Soil Science";Yes;No;0,199;Q4;15;114;175;5259;144;175;0,78;46,13;31,62;0;Mexico;Latin America;"Mexican Society of Soil Science";"2016-2026";"Biochemistry (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Pollution (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +22028;21100814021;"Theoretical and Applied Mechanics";journal;"14505584, 24060925";"Serbian Society of Mechanics";Yes;Yes;0,199;Q4;10;19;37;487;24;36;0,56;25,63;14,29;0;Serbia;Eastern Europe;"Serbian Society of Mechanics";"2016-2025";"Applied Mathematics (Q4); Computational Mechanics (Q4); Mechanical Engineering (Q4)";"Engineering; Mathematics" +22029;70859;"Tribologia: Finnish Journal of Tribology";journal;"17972531, 07802285";"The Finnish Society for Tribology";No;No;0,199;Q4;13;12;31;349;29;27;1,41;29,08;14,71;0;Finland;Western Europe;"The Finnish Society for Tribology";"1988-2012, 2014-2017, 2019-2025";"Mechanical Engineering (Q4); Mechanics of Materials (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science; Physics and Astronomy" +22030;25141;"Zeitschrift fur Kristallographie - New Crystal Structures";journal;"14337266, 21974578";"Walter de Gruyter GmbH";Yes;No;0,199;Q4;40;323;1041;4361;276;1040;0,30;13,50;43,60;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1954, 1956-2026";"Condensed Matter Physics (Q4); Inorganic Chemistry (Q4); Materials Science (miscellaneous) (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +22031;21100227410;"EPJ Web of Conferences";conference and proceedings;"21016275, 2100014X";"EDP Sciences";Yes;Yes;0,199;-;45;1973;1685;29744;820;1647;0,49;15,08;25,63;0;France;Western Europe;"EDP Sciences";"2009-2026";"Physics and Astronomy (miscellaneous)";"Physics and Astronomy" +22032;21101131204;"International Conference on Web Information Systems and Technologies, WEBIST - Proceedings";conference and proceedings;"21843252";"Science and Technology Publications, Lda";No;No;0,199;-;7;62;172;1479;123;168;0,75;23,85;29,89;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Computer Networks and Communications; Information Systems";"Computer Science" +22033;21101189051;"Proceedings of the International Conference on Security and Cryptography";conference and proceedings;"21847711";"Science and Technology Publications, Lda";No;No;0,199;-;7;83;277;1870;177;274;0,63;22,53;23,05;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Computer Networks and Communications; Information Systems; Software";"Computer Science" +22034;120165;"Proceedings of the Workshop on Enabling Technologies: Infrastructure for Collaborative Enterprises, WET ICE";conference and proceedings;"15244547";"IEEE Computer Society";No;No;0,199;-;41;20;66;348;42;62;0,64;17,40;22,81;0;United States;Northern America;"IEEE Computer Society";"1993, 1995-1996, 1998-2010, 2012-2014, 2020-2021, 2023-2025";"Hardware and Architecture; Software";"Computer Science" +22035;21101342178;"Journal of Communication, Language and Culture";journal;"2805444X";"Multimedia University Press (MMU Press)";No;No;0,198;Q1;4;27;36;1494;31;34;0,74;55,33;35,90;0;Malaysia;Asiatic Region;"Multimedia University Press (MMU Press)";"2021-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +22036;19400158802;"Nederlandse Letterkunde";journal;"2352118X, 13845829";"Amsterdam University Press";No;No;0,198;Q1;5;12;47;1057;14;47;0,21;88,08;35,71;0;Netherlands;Western Europe;"Amsterdam University Press";"2009-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +22037;21100896853;"Small Axe";journal;"15346714, 07990537";"Duke University Press";No;No;0,198;Q1;11;45;140;1219;40;128;0,16;27,09;42,11;0;United States;Northern America;"Duke University Press";"2018-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22038;5600153816;"French Cultural Studies";journal;"09571558, 17402352";"SAGE Publications Ltd";No;No;0,198;Q2;17;33;78;1362;42;78;0,67;41,27;42,86;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1990-2026";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +22039;21101128485;"Historia Agraria de America Latina";journal;"24525162";"Centro de Estudios de Historia Agraria de America Latina";Yes;Yes;0,198;Q2;3;18;40;812;15;40;0,39;45,11;39,13;0;Chile;Latin America;"Centro de Estudios de Historia Agraria de America Latina";"2020-2025";"Arts and Humanities (miscellaneous) (Q2); History (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +22040;19700187704;"International Studies in Catholic Education";journal;"19422539, 19422547";"Routledge";No;No;0,198;Q2;14;58;76;2752;43;65;0,51;47,45;39,80;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Religious Studies (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +22041;19700194014;"Journal of Jewish Education";journal;"15244113, 1554611X";"Taylor and Francis Ltd.";No;No;0,198;Q2;15;34;62;1546;19;47;0,38;45,47;58,62;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1929-1932, 1938-1945, 1949-1950, 1952-1956, 1958-1970, 1972-2025";"Cultural Studies (Q2); Religious Studies (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +22042;21101131473;"Kadim";journal;"27579395, 27579476";"Burhan CAGLAR";Yes;Yes;0,198;Q2;2;17;48;1006;12;48;0,27;59,18;36,84;0;Turkey;Middle East;"Burhan CAGLAR";"2021-2025";"Arts and Humanities (miscellaneous) (Q2); History (Q2)";"Arts and Humanities" +22043;21100427164;"Konstantinove Listy";journal;"24537675, 13378740";"Univerzita Konstantina Filozofa v Nitre";No;No;0,198;Q2;10;36;71;1637;44;71;0,49;45,47;29,09;0;Slovakia;Eastern Europe;"Univerzita Konstantina Filozofa v Nitre";"2015-2025";"History (Q2); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +22044;21100203108;"Philosophia (Philippines)";journal;"22441883, 22441875";"Philippine National Philosophical Research Society";Yes;No;0,198;Q2;7;35;63;1403;15;58;0,25;40,09;15,63;0;Philippines;Asiatic Region;"Philippine National Philosophical Research Society";"2007-2025";"Philosophy (Q2)";"Arts and Humanities" +22045;55949;"Post-Medieval Archaeology";journal;"17458137, 00794236";"Maney Publishing";No;No;0,198;Q2;17;13;49;425;28;45;0,55;32,69;39,13;0;United Kingdom;Western Europe;"Maney Publishing";"1967-1995, 2002-2025";"Archeology (Q2); Archeology (arts and humanities) (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +22046;21101050907;"Revista Bioetica";journal;"19838034, 19838042";"Conselho Federal de Medicina";Yes;Yes;0,198;Q2;11;79;211;2507;107;199;0,39;31,73;57,14;0;Brazil;Latin America;"Conselho Federal de Medicina";"2019-2025";"Philosophy (Q2); Health (social science) (Q4); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine; Social Sciences" +22047;7000153202;"Teologia y Vida";journal;"07176295, 00493449";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,198;Q2;10;0;52;0;15;52;0,31;0,00;0,00;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2007-2024";"Religious Studies (Q2)";"Arts and Humanities" +22048;21100975684;"Theology and Sexuality";journal;"13558358, 17455170";"Taylor and Francis Ltd.";No;No;0,198;Q2;17;5;28;286;19;27;0,64;57,20;33,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Religious Studies (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +22049;21100792502;"Trashumante";journal;"23229675, 23229381";"Universidad de Antioquia";Yes;Yes;0,198;Q2;7;21;88;724;25;87;0,29;34,48;65,22;0;Colombia;Latin America;"Universidad de Antioquia";"2013-2026";"History (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +22050;21100927988;"Wiadomosci Konserwatorskie";journal;"08602395, 25448870";"Zarzad Glowny Stowarzyszenia Konserwatorow Zabytkow";Yes;No;0,198;Q2;12;52;143;1520;36;133;0,22;29,23;42,31;0;Poland;Eastern Europe;"Zarzad Glowny Stowarzyszenia Konserwatorow Zabytkow";"2019-2025";"Conservation (Q2); Architecture (Q3)";"Arts and Humanities; Engineering" +22051;21101083002;"Bulletin of Botanical Research";journal;"16735102";"";No;No;0,198;Q3;9;96;307;3816;221;307;0,79;39,75;46,82;0;China;Asiatic Region;"";"2019-2026";"Forestry (Q3); Plant Science (Q4)";"Agricultural and Biological Sciences" +22052;4000148308;"Chinese Traditional and Herbal Drugs";journal;"02532670";"Editorial Office of Chinese Traditional and Herbal Drugs";No;No;0,198;Q3;30;776;2458;37959;2309;2458;0,97;48,92;49,30;0;China;Asiatic Region;"Editorial Office of Chinese Traditional and Herbal Drugs";"2006-2026";"Complementary and Alternative Medicine (Q3); Pharmaceutical Science (Q3); Drug Discovery (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +22053;6000195384;"gis.Science - Die Zeitschrift fur Geoinformatik";journal;"26984571, 18699391";"V D E Verlag GmbH";No;No;0,198;Q3;7;23;71;437;14;42;0,20;19,00;25,53;0;Germany;Western Europe;"V D E Verlag GmbH";"2006-2009, 2011-2025";"Geography, Planning and Development (Q3); Information Systems (Q4)";"Computer Science; Social Sciences" +22054;21100821158;"HSE Economic Journal";journal;"18138691, 18138705";"Publishing House of the Higher School of Economics";No;No;0,198;Q3;11;24;72;1087;52;72;0,81;45,29;37,04;0;Russian Federation;Eastern Europe;"Publishing House of the Higher School of Economics";"2017-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +22055;21100373810;"Industrial Engineering and Management Systems";journal;"15987248, 22346473";"Korean Institute of Industrial Engineers";Yes;No;0,198;Q3;22;54;137;2097;213;137;0,76;38,83;37,07;0;South Korea;Asiatic Region;"Korean Institute of Industrial Engineers";"2014-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)";"Economics, Econometrics and Finance; Social Sciences" +22056;19700186821;"International Journal of Web Based Communities";journal;"17418216, 14778394";"Inderscience Enterprises Ltd";No;No;0,198;Q3;31;20;70;680;64;70;0,96;34,00;52,38;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2025";"Communication (Q3); Computer Networks and Communications (Q4); Education (Q4); Software (Q4)";"Computer Science; Social Sciences" +22057;21101040208;"Journal of the Architectural Institute of Korea";journal;"27336239, 27336247";"Architectural Institute of Korea";No;No;0,198;Q3;8;409;963;9719;252;963;0,23;23,76;37,30;0;South Korea;Asiatic Region;"Architectural Institute of Korea";"2020-2025";"Architecture (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4); Engineering (miscellaneous) (Q4)";"Engineering" +22058;21101005186;"Research Results in Pharmacology";journal;"2658381X";"Belgorod State National Research University";Yes;Yes;0,198;Q3;11;56;132;1630;105;132;0,82;29,11;52,81;0;Russian Federation;Eastern Europe;"Belgorod State National Research University";"2018-2025";"Pharmaceutical Science (Q3); Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +22059;21101290950;"Revue de l'Organisation Responsable";journal;"19510187, 21053022";"Editions ESKA";No;No;0,198;Q3;6;40;64;1574;43;58;0,47;39,35;59,62;0;France;Western Europe;"Editions ESKA";"2021-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3); Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4); Finance (Q4); Management, Monitoring, Policy and Law (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Environmental Science; Social Sciences" +22060;19900191851;"South East European Journal of Economics and Business";journal;"1840118X";"School of Economics and Business in Sarajevo";Yes;No;0,198;Q3;21;12;72;632;74;68;0,76;52,67;59,09;0;Bosnia and Herzegovina;Eastern Europe;"School of Economics and Business in Sarajevo";"2007-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22061;20383;"Temple Law Review";journal;"08998086";"Temple University";No;No;0,198;Q3;20;8;45;2088;16;35;0,40;261,00;50,00;0;United States;Northern America;"Temple University";"1992-1994, 1996-2025";"Law (Q3)";"Social Sciences" +22062;21101101865;"Theory and Practice of Meat Processing";journal;"2414438X, 2414441X";"V.M. Gorbatov Federal Research Center for Food Systems of the Russian Academy of Sciences";Yes;Yes;0,198;Q3;8;36;106;2257;107;106;1,07;62,69;52,31;0;Russian Federation;Eastern Europe;"V.M. Gorbatov Federal Research Center for Food Systems of the Russian Academy of Sciences";"2019-2025";"Food Science (Q3); Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +22063;26564;"Acta Medica Philippina";journal;"20949278, 00016071";"University of the Philippines Manila";No;No;0,198;Q4;13;222;743;6953;381;682;0,52;31,32;55,83;0;Philippines;Asiatic Region;"University of the Philippines Manila";"1947-1956, 1958-1960, 1962-1967, 1973-1981, 2011-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +22064;19400158801;"Asian Academy of Management Journal of Accounting and Finance";journal;"21804192, 18234992";"Penerbit Universiti Sains Malaysia";Yes;Yes;0,198;Q4;22;20;61;1570;60;55;1,15;78,50;37,74;0;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2006, 2009-2025";"Accounting (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22065;26760;"Astronomy Reports";journal;"10637729, 15626881";"Pleiades Publishing";No;No;0,198;Q4;37;106;423;4067;220;423;0,55;38,37;30,43;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Physics and Astronomy" +22066;20176;"Business Economics";journal;"0007666X, 1554432X";"Palgrave Macmillan Ltd.";No;No;0,198;Q4;22;26;68;253;28;53;0,45;9,73;40,63;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"1987, 1997, 2006-2026";"Business and International Management (Q4); Economics and Econometrics (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22067;19700177335;"Didactica Slovenica - Pedagoska Obzorja";journal;"03531392";"Pedagoska Obzorja d.o.o";No;No;0,198;Q4;9;31;82;1280;42;80;0,58;41,29;74,24;0;Slovenia;Eastern Europe;"Pedagoska Obzorja d.o.o";"2008-2025";"Education (Q4)";"Social Sciences" +22068;21622;"Glass Physics and Chemistry";journal;"1608313X, 10876596";"Pleiades Publishing";No;No;0,198;Q4;34;87;281;2580;178;280;0,68;29,66;49,34;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Ceramics and Composites (Q4); Condensed Matter Physics (Q4); Materials Chemistry (Q4)";"Materials Science; Physics and Astronomy" +22069;21100206214;"International Journal of Geotechnical Earthquake Engineering";journal;"19478496, 19478488";"IGI Global Publishing";No;No;0,198;Q4;15;1;12;27;20;12;2,00;27,00;40,00;0;United States;Northern America;"IGI Global Publishing";"2010-2023, 2025";"Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +22070;21100468669;"International Journal of Human Factors and Ergonomics";journal;"20457804, 20457812";"Inderscience Enterprises Ltd";No;No;0,198;Q4;14;17;62;899;51;62;0,69;52,88;24,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2016-2025";"Human Factors and Ergonomics (Q4)";"Social Sciences" +22071;21100268414;"International Journal of Quality Engineering and Technology";journal;"17572185, 17572177";"Inderscience";No;No;0,198;Q4;10;5;44;189;29;44;0,71;37,80;23,08;0;Switzerland;Western Europe;"Inderscience";"2009-2025";"Safety, Risk, Reliability and Quality (Q4)";"Engineering" +22072;21100792110;"Iranian Journal of Applied Animal Science";journal;"2251628X, 2251631X";"Islamic Azad University, Rasht Branch";Yes;Yes;0,198;Q4;20;49;204;2438;132;203;0,68;49,76;25,00;0;Iran;Middle East;"Islamic Azad University, Rasht Branch";"2014, 2016-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +22073;12472;"Jixie Qiangdu/Journal of Mechanical Strength";journal;"10019669";"Chinese Mechanical Engineering Society";Yes;No;0,198;Q4;23;188;596;4419;383;596;0,66;23,51;28,61;0;China;Asiatic Region;"Chinese Mechanical Engineering Society";"2001-2025";"Applied Mathematics (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Modeling and Simulation (Q4)";"Engineering; Mathematics" +22074;21100945254;"Journal of Cellular Biotechnology";journal;"23523697, 23523689";"SAGE Publications Ltd";No;No;0,198;Q4;10;5;46;163;41;46;1,12;32,60;45,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2019-2025";"Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +22075;21100821162;"New directions for student leadership";journal;"23733357, 23733349";"John Wiley and Sons Inc";No;No;0,198;Q4;18;62;146;0;145;135;0,85;0,00;52,43;0;United States;Northern America;"John Wiley and Sons Inc";"2015-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22076;21100935005;"Rostaniha";journal;"24236608, 16084306";"Iranian Research Institute of Plant Protection";Yes;Yes;0,198;Q4;5;14;57;556;29;56;0,45;39,71;40,63;0;Iran;Middle East;"Iranian Research Institute of Plant Protection";"2019-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22077;110004;"WasserWirtschaft";journal;"21928762, 00430978";"Springer Vieweg";No;No;0,198;Q4;10;118;386;839;41;274;0,14;7,11;21,25;1;Germany;Western Europe;"Springer Vieweg";"1973-1990, 1992, 2004-2026";"Water Science and Technology (Q4)";"Environmental Science" +22078;87774;"Well Testing";journal;"10044388";"";No;No;0,198;Q4;12;82;219;1384;80;219;0,38;16,88;24,02;0;China;Asiatic Region;"";"2004-2025";"Energy Engineering and Power Technology (Q4)";"Energy" +22079;20903;"Wisconsin Medical Journal";journal;"10981861";"State Medical Society of Wisconsin";No;No;0,198;Q4;39;119;367;1604;159;271;0,34;13,48;56,38;0;United States;Northern America;"State Medical Society of Wisconsin";"1945-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22080;16400154741;"Archeologia Classica";journal;"22407839, 03918165";"L'Erma di Bretschneider";No;No;0,197;Q1;11;26;68;2406;13;68;0,27;92,54;31,43;0;Italy;Western Europe;"L'Erma di Bretschneider";"2002-2013, 2015-2025";"Classics (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +22081;29777;"Boletin de la Biblioteca de Menendez Pelayo";journal;"00061646";"Real Sociedad Menendez Pelayo";No;No;0,197;Q1;3;106;104;2262;15;88;0,19;21,34;53,75;0;Spain;Western Europe;"Real Sociedad Menendez Pelayo";"1966, 1984, 2019-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +22082;21100888137;"Cambridge Journal of Postcolonial Literary Inquiry";journal;"20522622, 20522614";"Cambridge University Press";No;No;0,197;Q1;14;4;86;40;47;79;0,68;10,00;25,00;0;United Kingdom;Western Europe;"Cambridge University Press";"2014-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +22083;21100933328;"Etudes Romanes de Brno";journal;"23364416, 18037399";"Masaryk University";Yes;Yes;0,197;Q1;5;45;174;1286;30;171;0,17;28,58;47,73;0;Czech Republic;Eastern Europe;"Masaryk University";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22084;21101180709;"Austral Comunicacion";journal;"23139129, 23139137";"Austral University, Faculty of Communication";Yes;Yes;0,197;Q2;2;43;17;1808;15;17;0,88;42,05;43,64;0;Argentina;Latin America;"Austral University, Faculty of Communication";"2023-2026";"Linguistics and Language (Q2); Communication (Q3); Speech and Hearing (Q3); Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Information Systems (Q4)";"Computer Science; Engineering; Health Professions; Social Sciences" +22085;5600153629;"Critical Arts";journal;"19926049, 02560046";"Taylor and Francis Ltd.";No;No;0,197;Q2;25;86;125;3707;92;119;0,58;43,10;40,98;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-1986, 1988, 1990-2026";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +22086;5700168554;"Cultural and Social History";journal;"14780038, 14780046";"Taylor and Francis Ltd.";No;No;0,197;Q2;23;38;92;2209;40;90;0,43;58,13;57,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22087;16200154711;"Mission Studies";journal;"15733831, 01689789";"Brill Academic Publishers";No;No;0,197;Q2;12;24;69;907;20;55;0,21;37,79;36,84;0;Netherlands;Western Europe;"Brill Academic Publishers";"1984-2026";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +22088;21100899295;"Narodopisny Vestnik";journal;"25710982, 12118117";"Czech Ethnological Society";No;No;0,197;Q2;3;13;34;422;8;34;0,32;32,46;53,85;0;Czech Republic;Eastern Europe;"Czech Ethnological Society";"2018-2025";"Cultural Studies (Q2); History (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +22089;19900191827;"Sikh Formations: Religion, Culture, Theory";journal;"17448727, 17448735";"Taylor and Francis Ltd.";No;No;0,197;Q2;18;41;88;1570;15;78;0,18;38,29;40,54;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Cultural Studies (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +22090;21101113599;"AgroLife Scientific Journal";journal;"22855718, 22860126";"University of Agronomic Sciences and Veterinary Medicine of Bucharest";Yes;Yes;0,197;Q3;10;50;178;1907;137;178;0,81;38,14;51,72;0;Romania;Eastern Europe;"University of Agronomic Sciences and Veterinary Medicine of Bucharest";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +22091;21100197902;"Carpathian Journal of Food Science and Technology";journal;"20666845";"North University of Baia Mare";Yes;Yes;0,197;Q3;15;51;210;2210;171;210;0,78;43,33;52,13;0;Romania;Eastern Europe;"North University of Baia Mare";"2009-2025";"Food Science (Q3)";"Agricultural and Biological Sciences" +22092;21101222659;"China Law and Society Review";journal;"25427466, 25427458";"Brill Academic Publishers";No;No;0,197;Q3;9;9;12;546;8;11;0,71;60,67;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2025";"Law (Q3)";"Social Sciences" +22093;5600152954;"Convergencia";journal;"24485799, 14051435";"Universidad Autonoma del Estado de Mexico";Yes;Yes;0,197;Q3;18;20;40;1029;36;40;0,61;51,45;60,61;0;Mexico;Latin America;"Universidad Autonoma del Estado de Mexico";"2008-2026";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +22094;4700152611;"Current Women's Health Reviews";journal;"18756581, 15734048";"Bentham Science Publishers";No;No;0,197;Q3;18;64;251;3123;136;233;0,53;48,80;66,50;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Obstetrics and Gynecology (Q3)";"Medicine" +22095;19700173133;"Drewno";journal;"16443985, 29569141";"Lukasiewicz Research Network - Poznan Institute of Technology";Yes;Yes;0,197;Q3;19;30;56;1319;59;54;0,95;43,97;26,74;0;Poland;Eastern Europe;"Lukasiewicz Research Network - Poznan Institute of Technology";"2009-2025";"Forestry (Q3); Industrial and Manufacturing Engineering (Q3); Biomaterials (Q4)";"Agricultural and Biological Sciences; Engineering; Materials Science" +22096;21591;"Handchirurgie Mikrochirurgie Plastische Chirurgie";journal;"07221819, 14393980";"Georg Thieme Verlag";No;No;0,197;Q3;36;61;218;1643;105;196;0,64;26,93;30,87;0;Germany;Western Europe;"Georg Thieme Verlag";"1982-2026";"Surgery (Q3); Orthopedics and Sports Medicine (Q4)";"Medicine" +22097;28036;"Indian Journal of Pure and Applied Physics";journal;"09751041, 00195596";"National Institute of Science Communication and Policy Research";Yes;Yes;0,197;Q3;51;67;289;2529;300;289;1,17;37,75;34,78;0;India;Asiatic Region;"National Institute of Science Communication and Policy Research";"1969, 1971, 1974-1990, 1993-2025";"Multidisciplinary (Q3); Physics and Astronomy (miscellaneous) (Q4)";"Multidisciplinary; Physics and Astronomy" +22098;6600153108;"International Journal of Public Policy";journal;"17400600, 17400619";"Inderscience Enterprises Ltd";No;No;0,197;Q3;18;7;36;364;38;36;0,55;52,00;57,89;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2025";"Political Science and International Relations (Q3); Sociology and Political Science (Q3); Public Administration (Q4)";"Social Sciences" +22099;14831;"Journal fur Entwicklungspolitik";journal;"02582384, 24143197";"Mattersburger Kreis fur Entwicklungspolitik";No;No;0,197;Q3;15;15;55;652;14;54;0,21;43,47;66,67;0;Austria;Western Europe;"Mattersburger Kreis fur Entwicklungspolitik";"1991-1995, 1997-2025";"Geography, Planning and Development (Q3); Development (Q4)";"Social Sciences" +22100;21101062584;"Journal of Forensic Medicine Science and Law";journal;"22771867, 22778853";"Medicolegal Association of Maharashtra";No;No;0,197;Q3;5;15;111;304;43;104;0,42;20,27;28,57;0;India;Asiatic Region;"Medicolegal Association of Maharashtra";"2019-2025";"Law (Q3); Medicine (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4)";"Medicine; Social Sciences" +22101;21101048945;"Journal of Geography (Chigaku Zasshi)";journal;"0022135X, 18840884";"Tokyo Geographical Society";No;No;0,197;Q3;8;52;116;1812;54;116;0,56;34,85;21,95;0;Japan;Asiatic Region;"Tokyo Geographical Society";"2019-2025";"Geography, Planning and Development (Q3); Earth-Surface Processes (Q4); Geology (Q4); Geophysics (Q4); Global and Planetary Change (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +22102;4500151535;"Journal of Plastic and Pathology Dermatology";journal;"20350686";"Fiderm Srl";No;No;0,197;Q3;10;15;66;323;27;57;0,42;21,53;47,92;0;Italy;Western Europe;"Fiderm Srl";"2006-2015, 2020, 2022-2025";"Dermatology (Q3)";"Medicine" +22103;21100932734;"Journal of Surgical Case Reports";journal;"20428812";"Oxford University Press";Yes;No;0,197;Q3;19;1007;2136;11532;1011;2136;0,45;11,45;28,53;0;United Kingdom;Western Europe;"Oxford University Press";"2010-2026";"Surgery (Q3)";"Medicine" +22104;21101048345;"Journal of Territorial and Maritime Studies";journal;"22886834";"McFarland and Company, Inc";No;No;0,197;Q3;6;13;35;332;32;30;0,61;25,54;23,08;0;United States;Northern America;"McFarland and Company, Inc";"2019-2025";"Geography, Planning and Development (Q3); Law (Q3); Political Science and International Relations (Q3)";"Social Sciences" +22105;21101188213;"Revista Chilena de Derecho y Ciencia Politica";journal;"07192150, 07189389";"Catholic University of Temuco Faculty of Law Economics and Administrative Sciences";Yes;Yes;0,197;Q3;4;19;61;1241;30;55;0,55;65,32;33,33;0;Chile;Latin America;"Catholic University of Temuco Faculty of Law Economics and Administrative Sciences";"2019-2026";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +22106;17600155219;"Shenyang Gongye Daxue Xuebao/Journal of Shenyang University of Technology";journal;"10001646";"Shenyang University of Technology";No;No;0,197;Q3;15;102;344;2301;246;344;0,73;22,56;33,04;0;China;Asiatic Region;"Shenyang University of Technology";"2009-2025";"Industrial and Manufacturing Engineering (Q3); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +22107;21101062494;"Studies in Media and Communication";journal;"2325808X, 23258071";"Redfame Publishing Inc.";No;No;0,197;Q3;16;133;356;5785;617;353;2,03;43,50;48,36;0;United States;Northern America;"Redfame Publishing Inc.";"2019-2026";"Communication (Q3); Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +22108;21101259017;"Translational Research in Urology";journal;"2717042X";"Tehran University of Medical Sciences";Yes;Yes;0,197;Q3;10;32;96;656;45;85;0,31;20,50;26,02;0;Iran;Middle East;"Tehran University of Medical Sciences";"2020-2025";"Nephrology (Q3); Urology (Q3); Reproductive Medicine (Q4)";"Medicine" +22109;19600162007;"Acta Scientiarum - Animal Sciences";journal;"18062636, 18078672";"Universidade Estadual de Maringa";Yes;Yes;0,197;Q4;25;60;179;1860;144;179;0,81;31,00;38,07;0;Brazil;Latin America;"Universidade Estadual de Maringa";"2009-2026";"Animal Science and Zoology (Q4); Food Science (Q4)";"Agricultural and Biological Sciences" +22110;21100217222;"Akustika";journal;"25708775, 18019064";"Studio D - akustika s. r. o.";No;No;0,197;Q4;12;19;27;293;15;26;0,85;15,42;28,89;0;Czech Republic;Eastern Europe;"Studio D - akustika s. r. o.";"2012-2025";"Acoustics and Ultrasonics (Q4)";"Physics and Astronomy" +22111;24589;"Annales Zoologici Fennici";journal;"0003455X";"Finnish Zoological and Botanical Publishing Board";No;No;0,197;Q4;66;13;42;406;25;42;0,47;31,23;32,56;0;Finland;Western Europe;"Finnish Zoological and Botanical Publishing Board";"1974-1977, 1979-2025";"Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22112;24631;"Archiv fur Molluskenkunde";journal;"23670622, 18690963";"Schweizerbart Science Publishers";No;No;0,197;Q4;18;13;47;1129;25;46;0,49;86,85;25,71;0;Germany;Western Europe;"Schweizerbart Science Publishers";"2002-2008, 2010-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +22113;14860;"Biophysics (Russian Federation)";journal;"15556654, 00063509";"Pleiades Publishing";Yes;No;0,197;Q4;24;79;401;2641;195;399;0,47;33,43;48,97;0;United States;Northern America;"Pleiades Publishing";"1957-1961, 1963-1982, 1984-1994, 2003-2025";"Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology" +22114;21101196734;"Bulletin of the Taras Shevchenko National University of Kyiv. Physics and Mathematics";journal;"22182055, 18125409";"Taras Shevchenko National University of Kyiv";Yes;No;0,197;Q4;4;58;140;895;35;139;0,28;15,43;26,56;0;Ukraine;Eastern Europe;"Taras Shevchenko National University of Kyiv";"2019-2025";"Algebra and Number Theory (Q4); Mathematics (miscellaneous) (Q4); Statistics and Probability (Q4)";"Mathematics" +22115;21101178247;"China Rubber Industry";journal;"1000890X";"";No;No;0,197;Q4;6;77;376;1660;134;376;0,48;21,56;32,24;0;China;Asiatic Region;"";"2019-2026";"Ceramics and Composites (Q4); Materials Chemistry (Q4); Polymers and Plastics (Q4)";"Materials Science" +22116;19700173237;"Clinical Medicine Insights: Case Reports";journal;"11795476";"SAGE Publications Ltd";Yes;No;0,197;Q4;18;72;185;1447;125;185;0,68;20,10;36,39;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +22117;21100929582;"Concrete Operators";journal;"22993282";"Walter de Gruyter GmbH";Yes;No;0,197;Q4;9;2;26;31;9;26;0,23;15,50;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2013-2026";"Analysis (Q4); Applied Mathematics (Q4)";"Mathematics" +22118;21101192716;"Dubai Medical Journal";journal;"2571726X";"Knowledge E";Yes;Yes;0,197;Q4;12;46;125;1211;109;123;1,05;26,33;48,50;0;Switzerland;Western Europe;"Knowledge E";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22119;21100841705;"Ecology and Industry of Russia";journal;"24136042, 18160395";"Izdatel'stvo Kalvis";No;No;0,197;Q4;15;130;402;2095;155;402;0,44;16,12;51,92;0;Russian Federation;Eastern Europe;"Izdatel'stvo Kalvis";"2016-2026";"Ecology (Q4); Management, Monitoring, Policy and Law (Q4); Pollution (Q4)";"Environmental Science" +22120;20300195016;"ECTI Transactions on Electrical Engineering, Electronics, and Communications";journal;"16859545";"Electrical Engineering/Electronics, Computer, Communications and Information Technology Association (ECTI)";No;No;0,197;Q4;16;40;122;1141;96;122;0,51;28,53;17,00;0;Thailand;Asiatic Region;"Electrical Engineering/Electronics, Computer, Communications and Information Technology Association (ECTI)";"2011-2025";"Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +22121;21101095578;"Fisheries and Aquatic Life";journal;"2545059X, 25450255";"Sciendo";Yes;Yes;0,197;Q4;25;21;66;981;47;66;0,56;46,71;36,11;0;Poland;Eastern Europe;"Sciendo";"2018-2025";"Aquatic Science (Q4)";"Agricultural and Biological Sciences" +22122;21100929413;"Geophysical Research";journal;"18183735, 23119543";"Schmidt Institute of Physics of the Earth Russian Academy of Sciences";No;No;0,197;Q4;6;16;64;443;22;64;0,43;27,69;34,88;0;Russian Federation;Eastern Europe;"Schmidt Institute of Physics of the Earth Russian Academy of Sciences";"2019-2025";"Computers in Earth Sciences (Q4); Geochemistry and Petrology (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +22123;5800173367;"IET Computers and Digital Techniques";journal;"1751861X, 17518601";"John Wiley and Sons Ltd";Yes;No;0,197;Q4;50;9;39;407;36;38;1,08;45,22;27,27;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2007-2026";"Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4); Software (Q4)";"Computer Science; Engineering" +22124;13055;"Indian Chemical Engineer";journal;"0975007X, 00194506";"Taylor and Francis Ltd.";No;No;0,197;Q4;24;116;153;6126;175;150;1,13;52,81;30,75;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992, 2009-2026";"Chemical Engineering (miscellaneous) (Q4)";"Chemical Engineering" +22125;16129;"Indian Concrete Journal";trade journal;"00194565";"Associated Cement Companies Ltd.";No;No;0,197;Q4;31;35;201;1167;96;163;0,54;33,34;21,31;0;India;Asiatic Region;"Associated Cement Companies Ltd.";"1969-1989, 1995-2025";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +22126;21100327713;"International Journal of Automation and Smart Technology";journal;"22239766";"Chinese Institute of Automation Engineers";Yes;Yes;0,197;Q4;16;13;38;369;50;38;1,53;28,38;30,77;0;Taiwan;Asiatic Region;"Chinese Institute of Automation Engineers";"2011-2025";"Artificial Intelligence (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4); Human-Computer Interaction (Q4); Signal Processing (Q4)";"Computer Science; Engineering" +22127;21101317653;"International Journal of Designs for Learning";journal;"2159449X";"Indiana University Libraries";Yes;No;0,197;Q4;4;47;76;669;41;76;0,50;14,23;61,33;0;United States;Northern America;"Indiana University Libraries";"2021-2025";"Education (Q4)";"Social Sciences" +22128;21100854223;"International Journal of Electronics Letters";journal;"21681732, 21681724";"Taylor and Francis Ltd.";No;No;0,197;Q4;17;44;122;880;101;122;0,80;20,00;17,65;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2026";"Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4)";"Computer Science; Engineering; Materials Science; Physics and Astronomy" +22129;4000151802;"International Journal of Management and Decision Making";journal;"14624621, 17415187";"Inderscience Enterprises Ltd";No;No;0,197;Q4;31;27;73;1722;91;73;1,04;63,78;35,48;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2000-2026";"Decision Sciences (miscellaneous) (Q4)";"Decision Sciences" +22130;4700153105;"International Journal of Management Practice";journal;"17418143, 14779064";"Inderscience Enterprises Ltd";No;No;0,197;Q4;20;27;109;2157;121;109;0,94;79,89;40,35;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2026";"Business and International Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +22131;5800207506;"International Journal of Modelling, Identification and Control";journal;"17466172, 17466180";"Inderscience Enterprises Ltd";No;No;0,197;Q4;36;13;189;306;137;189;0,67;23,54;42,50;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2025";"Applied Mathematics (Q4); Computer Science Applications (Q4); Modeling and Simulation (Q4)";"Computer Science; Mathematics" +22132;21101068707;"I.P. Pavlov Russian Medical Biological Herald";journal;"25002546, 02043475";"Eco-Vector LLC";No;No;0,197;Q4;9;64;186;1701;117;186;0,68;26,58;44,12;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22133;21100929583;"IT - Information Technology";journal;"21967032, 16112776";"De Gruyter Oldenbourg";No;No;0,197;Q4;28;7;78;269;96;68;0,54;38,43;37,50;0;Germany;Western Europe;"De Gruyter Oldenbourg";"1959-2026";"Computer Science (miscellaneous) (Q4)";"Computer Science" +22134;19700170476;"Journal of Animal and Plant Sciences";journal;"10187081, 23098694";"Pakistan Agricultural Scientists Forum";Yes;No;0,197;Q4;49;148;490;6545;381;490;0,72;44,22;30,02;0;Pakistan;Asiatic Region;"Pakistan Agricultural Scientists Forum";"2008-2025";"Animal Science and Zoology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +22135;21101044734;"Journal of International Special Needs Education";journal;"21594341, 23314001";"Division of International Special Education and Services";No;No;0,197;Q4;7;8;23;349;25;20;0,54;43,63;64,52;0;United States;Northern America;"Division of International Special Education and Services";"2013, 2019-2025";"Education (Q4)";"Social Sciences" +22136;21101039445;"Journal of Micromechanics and Molecular Physics";journal;"24249149, 24249130";"World Scientific";No;No;0,197;Q4;19;11;57;366;60;53;1,06;33,27;40,74;0;Singapore;Asiatic Region;"World Scientific";"2016-2026";"Atomic and Molecular Physics, and Optics (Q4); Ceramics and Composites (Q4); Mechanics of Materials (Q4); Polymers and Plastics (Q4)";"Engineering; Materials Science; Physics and Astronomy" +22137;21101150409;"Journal of Research Updates in Polymer Science";journal;"19295995";"Lifescience Global";No;No;0,197;Q4;6;23;56;1066;52;56;0,96;46,35;24,56;0;Canada;Northern America;"Lifescience Global";"2019-2026";"Biomaterials (Q4); Ceramics and Composites (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4); Materials Science (miscellaneous) (Q4); Metals and Alloys (Q4); Polymers and Plastics (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science" +22138;11600153301;"Journal of the Korean Society of Food Science and Nutrition";journal;"22885978, 12263311";"Korean Society of Food Science and Nutrition";No;No;0,197;Q4;33;110;448;4465;292;448;0,57;40,59;48,26;0;South Korea;Asiatic Region;"Korean Society of Food Science and Nutrition";"2007-2026";"Food Science (Q4); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Nursing" +22139;21101145498;"Mongolian Geoscientist";journal;"26635151, 22200622";"Mongolian University of Science and Technology";Yes;Yes;0,197;Q4;4;13;22;577;9;19;0,47;44,38;21,21;0;Mongolia;Asiatic Region;"Mongolian University of Science and Technology";"2020-2025";"Economic Geology (Q4); Geochemistry and Petrology (Q4); Geology (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +22140;28721;"Moscow University Physics Bulletin (English Translation of Vestnik Moskovskogo Universiteta, Fizika)";journal;"19348460, 00271349";"Pleiades Publishing";No;No;0,197;Q4;19;109;552;3316;237;552;0,47;30,42;30,98;0;United States;Northern America;"Pleiades Publishing";"1975-1977, 1982-1989, 2007, 2009-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +22141;21101089575;"Obrabotka Metallov";journal;"19946309, 2541819X";"Novosibirsk State Technical University";No;No;0,197;Q4;9;63;141;2018;104;140;0,75;32,03;22,12;0;Russian Federation;Eastern Europe;"Novosibirsk State Technical University";"2019-2025";"Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +22142;67906;"Oceanologia et Limnologia Sinica";journal;"0029814X";"hai yang yu hu zhao bian ji bu";No;No;0,197;Q4;19;104;451;4973;266;450;0,57;47,82;35,73;0;China;Asiatic Region;"hai yang yu hu zhao bian ji bu";"1988, 2016-2025";"Aquatic Science (Q4); Oceanography (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +22143;13696;"Polymer (Korea)";journal;"0379153X";"Polymer Society of Korea";No;No;0,197;Q4;22;97;292;3378;286;291;1,09;34,82;29,48;0;South Korea;Asiatic Region;"Polymer Society of Korea";"1996-2026";"Chemical Engineering (miscellaneous) (Q4); Materials Chemistry (Q4); Polymers and Plastics (Q4)";"Chemical Engineering; Materials Science" +22144;15600154713;"Polymer Science - Series D";journal;"19954212, 19954220";"Pleiades Publishing";No;No;0,197;Q4;25;112;478;2213;187;478;0,32;19,76;57,44;0;United States;Northern America;"Pleiades Publishing";"2009-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Polymers and Plastics (Q4)";"Chemical Engineering; Chemistry; Materials Science" +22145;11500153303;"Proceedings of the Estonian Academy of Sciences";journal;"17366046, 17367530";"Estonian Academy Publishers";Yes;No;0,197;Q4;33;71;114;1667;99;109;0,80;23,48;39,56;0;Estonia;Eastern Europe;"Estonian Academy Publishers";"2006, 2008-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +22146;21100828741;"Revista de la Sociedad Geologica de Espana";journal;"22551379, 02142708";"Sociedad Geologica de Espana";Yes;Yes;0,197;Q4;9;4;30;224;15;30;0,53;56,00;22,22;0;Spain;Western Europe;"Sociedad Geologica de Espana";"2016-2025";"Geology (Q4)";"Earth and Planetary Sciences" +22147;21100847882;"Revue Roumaine de Mathematiques Pures et Appliquees";journal;"00353965, 2343774X";"Publishing House of the Romanian Academy";No;No;0,197;Q4;8;17;55;426;17;51;0,35;25,06;6,06;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"1974, 2018-2025";"Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics" +22148;300147002;"Tamkang Journal of Mathematics";journal;"00492930";"Tamkang University";Yes;No;0,197;Q4;24;24;46;676;31;46;0,63;28,17;26,83;0;Taiwan;Asiatic Region;"Tamkang University";"1992, 1996, 2005-2025";"Applied Mathematics (Q4); Materials Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Metals and Alloys (Q4)";"Materials Science; Mathematics" +22149;14357;"Theoretical Foundations of Chemical Engineering";journal;"00405795, 16083431";"Pleiades Publishing";No;No;0,197;Q4;31;171;616;3065;286;615;0,38;17,92;40,12;0;United States;Northern America;"Pleiades Publishing";"1974-1992, 1996-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +22150;19118;"Transactions of the American Entomological Society";journal;"00028320";"American Entomological Society";No;No;0,197;Q4;24;17;50;672;18;50;0,55;39,53;35,71;0;United States;Northern America;"American Entomological Society";"1993-1994, 1996-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +22151;21101267691;"Visnyk of Taras Shevchenko National University of Kyiv. Geology";journal;"20799063, 17282713";"Kyiv University Publishing and Printing Center";No;No;0,197;Q4;7;58;165;1398;78;165;0,53;24,10;42,31;0;Ukraine;Eastern Europe;"Kyiv University Publishing and Printing Center";"2020-2025";"Economic Geology (Q4); Geochemistry and Petrology (Q4); Geology (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +22152;21100902659;"Zapiski Rossiiskogo Mineralogicheskogo Obshchestva";journal;"08696055";"Russian Academy of Sciences";No;No;0,197;Q4;8;0;9;0;10;9;0,00;0,00;0,00;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2016-2023";"Economic Geology (Q4); Geochemistry and Petrology (Q4); Geology (Q4); Materials Chemistry (Q4)";"Earth and Planetary Sciences; Materials Science" +22153;12100157006;"Bulletin of Hispanic Studies";journal;"14753839, 14783398";"Liverpool University Press";No;No;0,196;Q1;12;64;194;2422;35;183;0,16;37,84;50,85;0;United Kingdom;Western Europe;"Liverpool University Press";"1930, 1968, 1970, 1973, 1981, 2002-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22154;21101037323;"Critical Studies in Fashion and Beauty";journal;"20404425, 20404417";"Intellect Ltd.";No;No;0,196;Q1;6;15;42;588;35;31;0,34;39,20;92,86;0;United Kingdom;Western Europe;"Intellect Ltd.";"2017, 2019-2025";"Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +22155;21100928816;"Mouseion";journal;"19135416, 14969343";"University of Toronto Press";No;No;0,196;Q1;5;0;23;0;5;19;0,15;0,00;0,00;0;Canada;Northern America;"University of Toronto Press";"2019-2023";"Classics (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)";"Arts and Humanities; Social Sciences" +22156;21100902662;"Project Baikal";journal;"23093072, 23074485";"Russian Academy of Architecture and Construction Sciences, Vostoksibacademcenter";Yes;No;0,196;Q1;5;136;347;1459;62;305;0,19;10,73;51,79;0;Russian Federation;Eastern Europe;"Russian Academy of Architecture and Construction Sciences, Vostoksibacademcenter";"2018-2025";"Visual Arts and Performing Arts (Q1); Architecture (Q3); Geography, Planning and Development (Q3); Urban Studies (Q3)";"Arts and Humanities; Engineering; Social Sciences" +22157;19900192302;"Schole";journal;"19954336, 19954328";"Center for Ancient Philosophy and the Classical Tradition";Yes;Yes;0,196;Q1;8;58;154;2403;24;154;0,19;41,43;26,32;0;Russian Federation;Eastern Europe;"Center for Ancient Philosophy and the Classical Tradition";"2011-2026";"Classics (Q1); Philosophy (Q2)";"Arts and Humanities" +22158;21100839122;"Vestnik Sankt-Peterburgskogo Universiteta, Iskusstvovedenie";journal;"25422243, 22213007";"Saint Petersburg State University";Yes;No;0,196;Q1;4;31;111;1124;14;111;0,12;36,26;66,67;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2016-2025";"Visual Arts and Performing Arts (Q1); Conservation (Q2); History (Q2); Music (Q2)";"Arts and Humanities" +22159;21101075730;"VISUAL Review. International Visual Culture Review / Revista Internacional de Cultura";journal;"26959631";"VisualCOM Scientific Publications";No;No;0,196;Q1;7;147;521;6582;273;520;0,70;44,78;50,00;0;Spain;Western Europe;"VisualCOM Scientific Publications";"2020-2026";"Visual Arts and Performing Arts (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +22160;21100228046;"America Latina en la Historia Economica";journal;"20073496, 14052253";"Instituto de Investigaciones Dr. Jose Maria Luis Mora";Yes;Yes;0,196;Q2;11;27;82;1325;31;82;0,41;49,07;13,16;0;Mexico;Latin America;"Instituto de Investigaciones Dr. Jose Maria Luis Mora";"2000-2001, 2012-2026";"History (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Arts and Humanities; Economics, Econometrics and Finance" +22161;21100906907;"Bulletin of Ugric Studies";journal;"25879766, 22204156";"Ob-Ugric Institute of Applied Researches and Development";No;No;0,196;Q2;8;73;230;2253;55;230;0,27;30,86;72,50;0;Russian Federation;Eastern Europe;"Ob-Ugric Institute of Applied Researches and Development";"2019-2025";"History (Q2); Linguistics and Language (Q2); Anthropology (Q3); History and Philosophy of Science (Q3)";"Arts and Humanities; Social Sciences" +22162;21101276713;"Global Sixties: An Interdisciplinary Journal";journal;"2770890X";"Routledge";No;No;0,196;Q2;3;16;33;1011;17;30;0,11;63,19;42,86;0;United Kingdom;Western Europe;"Routledge";"2021-2025";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22163;20500195077;"Historia Constitucional";journal;"15764729";"Seminario de Historia Constitucional "Martinez Marina"";Yes;Yes;0,196;Q2;8;29;114;2182;29;112;0,29;75,24;22,86;0;Spain;Western Europe;"Seminario de Historia Constitucional "Martinez Marina"";"2011-2025";"History (Q2); Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22164;21101039067;"Journal of Arab and Muslim Media Research";journal;"1751942X, 17519411";"Intellect Ltd.";No;No;0,196;Q2;15;32;41;1819;42;41;0,81;56,84;38,30;0;United Kingdom;Western Europe;"Intellect Ltd.";"2007-2026";"Cultural Studies (Q2); Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +22165;21100448317;"Monografias de Traduccion e Interpretacion (MonTI)";journal;"18894178, 19899335";"Universidad de Alicante";No;Yes;0,196;Q2;14;37;46;1659;22;46;0,17;44,84;65,85;0;Spain;Western Europe;"Universidad de Alicante";"2014-2025";"Linguistics and Language (Q2); Education (Q4)";"Social Sciences" +22166;21101075350;"Nordic Wittgenstein Review";journal;"21946825, 2242248X";"Nordic Wittgenstein Society";Yes;Yes;0,196;Q2;6;10;32;225;16;28;0,08;22,50;10,00;0;Norway;Western Europe;"Nordic Wittgenstein Society";"2019-2026";"Philosophy (Q2)";"Arts and Humanities" +22167;21100854118;"Wacana";journal;"14112272, 24076899";"Faculty of Humanities, University of Indonesia";Yes;Yes;0,196;Q2;9;30;77;1095;50;70;0,57;36,50;42,86;0;Indonesia;Asiatic Region;"Faculty of Humanities, University of Indonesia";"2015-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Anthropology (Q3); Library and Information Sciences (Q3)";"Arts and Humanities; Social Sciences" +22168;5800179588;"Acta Universitatis Agriculturae et Silviculturae Mendelianae Brunensis";journal;"12118516";"Mendel University in Brno";Yes;Yes;0,196;Q3;29;19;66;846;70;66;0,81;44,53;46,27;0;Czech Republic;Eastern Europe;"Mendel University in Brno";"2007-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +22169;21101071253;"Australian Year Book of International Law";journal;"00847658";"Brill Academic Publishers";No;No;0,196;Q3;5;0;33;0;23;32;1,06;0,00;0,00;0;Australia;Pacific Region;"Brill Academic Publishers";"2019, 2021-2023";"Law (Q3)";"Social Sciences" +22170;26338;"Bauphysik";trade journal;"14370980, 01715445";"John Wiley and Sons Ltd";No;No;0,196;Q3;12;32;102;620;31;97;0,28;19,38;20,24;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1982, 1984, 1987, 2011-2026";"Architecture (Q3); Building and Construction (Q4); Environmental Engineering (Q4)";"Engineering; Environmental Science" +22171;21101184778;"Brazilian Journal of Biometrics";journal;"27645290";"";Yes;Yes;0,196;Q3;7;46;89;1422;67;87;0,82;30,91;28,44;0;Brazil;Latin America;"";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Applied Mathematics (Q4); Epidemiology (Q4); Public Health, Environmental and Occupational Health (Q4); Statistics and Probability (Q4)";"Agricultural and Biological Sciences; Mathematics; Medicine" +22172;19200156802;"Chinese Journal of Gastrointestinal Surgery";journal;"16710274";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,196;Q3;19;202;547;6000;321;538;0,55;29,70;29,44;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2005-2026";"Surgery (Q3); Gastroenterology (Q4)";"Medicine" +22173;25087;"Criminal Law Forum";journal;"10468374, 15729850";"Springer Science and Business Media B.V.";No;No;0,196;Q3;29;22;41;150;46;41;0,87;6,82;35,71;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1989-1997, 1999-2002, 2004-2026";"Law (Q3)";"Social Sciences" +22174;21101185851;"Diyala Agricultural Sciences Journal";journal;"20739524, 23108746";"College of Agriculture, University of Diyala";Yes;No;0,196;Q3;6;28;77;1011;74;77;1,00;36,11;33,33;0;Iraq;Middle East;"College of Agriculture, University of Diyala";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Animal Science and Zoology (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +22175;21100201540;"Economia Agraria y Recursos Naturales";journal;"15780732, 21747350";"Universidad Politecnica de Valencia";Yes;Yes;0,196;Q3;16;18;39;839;28;38;0,71;46,61;38,89;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2001, 2004, 2011-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +22176;22946;"Forest Research";journal;"10011498";"Chinese Academy of Forestry";No;No;0,196;Q3;21;119;372;4568;253;372;0,70;38,39;37,16;0;China;Asiatic Region;"Chinese Academy of Forestry";"1988-2025";"Forestry (Q3); Ecology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22177;21100301410;"International Journal for Quality Research";journal;"18007473, 18006450";"Centar for Quality";Yes;Yes;0,196;Q3;33;85;247;3150;267;247;1,02;37,06;45,83;0;Serbia;Eastern Europe;"Centar for Quality";"2012-2025";"Industrial and Manufacturing Engineering (Q3); Management Science and Operations Research (Q4); Safety, Risk, Reliability and Quality (Q4)";"Decision Sciences; Engineering" +22178;19500156811;"International Review of Mechanical Engineering";journal;"19708734, 25325655";"Praise Worthy Prize";No;No;0,196;Q3;27;55;206;1998;192;206;0,87;36,33;19,08;0;United States;Northern America;"Praise Worthy Prize";"2009-2025";"Architecture (Q3); Automotive Engineering (Q3); Fluid Flow and Transfer Processes (Q4); Mechanical Engineering (Q4)";"Chemical Engineering; Engineering" +22179;21101200964;"Journal of Medicinal Plants and By-Products";journal;"23221399, 25883739";"Institute of Medicinal Plants, ACECR";Yes;No;0,196;Q3;11;90;216;3535;205;216;0,95;39,28;40,59;0;Iran;Middle East;"Institute of Medicinal Plants, ACECR";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q4); Horticulture (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +22180;21100982464;"Journal of Nephropharmacology";journal;"23454202";"Society of Diabetic Nephropathy Prevention";Yes;No;0,196;Q3;9;24;94;779;67;87;0,81;32,46;46,32;0;Iran;Middle East;"Society of Diabetic Nephropathy Prevention";"2019-2026";"Nephrology (Q3); Pharmacology (medical) (Q4)";"Medicine" +22181;21100828910;"Journal of Nonlinear Functional Analysis";journal;"2052532X";"Mathematical Research Press";No;No;0,196;Q3;14;24;114;628;45;114;0,36;26,17;42,55;0;United Kingdom;Western Europe;"Mathematical Research Press";"2017-2025";"Control and Optimization (Q3); Algebra and Number Theory (Q4); Analysis (Q4); Fluid Flow and Transfer Processes (Q4); Geometry and Topology (Q4); Numerical Analysis (Q4)";"Chemical Engineering; Mathematics" +22182;17064;"Laser Therapy";journal;"18847269, 08985901";"Page Press Publications";No;No;0,196;Q3;32;11;47;257;17;39;0,29;23,36;42,86;0;Italy;Western Europe;"Page Press Publications";"1989-2000, 2004-2020, 2022-2026";"Surgery (Q3); Biomedical Engineering (Q4)";"Engineering; Medicine" +22183;11300153719;"Malaysian Journal of Economic Studies";journal;"15114554";"Malaysian Economic Association";No;No;0,196;Q3;17;14;50;693;43;50;0,69;49,50;51,85;0;Malaysia;Asiatic Region;"Malaysian Economic Association";"2007-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +22184;21100393214;"Oral and Maxillofacial Surgery Cases";journal;"22145419";"Elsevier Inc.";Yes;No;0,196;Q3;8;48;137;934;60;135;0,39;19,46;23,64;0;United States;Northern America;"Elsevier Inc.";"2015-2026";"Oral Surgery (Q3); Otorhinolaryngology (Q3); Surgery (Q3)";"Dentistry; Medicine" +22185;21101162635;"Review of Behavioral Economics";journal;"23266201, 23266198";"Now Publishers Inc";No;No;0,196;Q3;7;19;51;1006;27;49;0,53;52,95;14,71;0;United States;Northern America;"Now Publishers Inc";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Social Psychology (Q4)";"Economics, Econometrics and Finance; Psychology; Social Sciences" +22186;21100264507;"Revista Peruana de Biologia";journal;"17279933, 15610837";"Facultad de Ciencias Biologicas, Universidad Nacional Mayor de San Marcos";Yes;Yes;0,196;Q3;29;40;121;1542;60;121;0,36;38,55;30,95;0;Peru;Latin America;"Facultad de Ciencias Biologicas, Universidad Nacional Mayor de San Marcos";"1974, 1980, 1990, 1992, 1998-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +22187;25973;"Social Dynamics";journal;"02533952, 19407874";"Centre for African Studies";No;No;0,196;Q3;33;9;93;458;85;86;1,11;50,89;66,67;0;South Africa;Africa;"Centre for African Studies";"1975-2026";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +22188;21100874742;"Springer Geography";book series;"21943168, 2194315X";"Springer Nature";No;No;0,196;Q3;22;197;487;8556;187;4;0,35;43,43;0,00;1;Germany;Western Europe;"Springer Nature";"2012-2026";"Geography, Planning and Development (Q3); Urban Studies (Q3); Earth and Planetary Sciences (miscellaneous) (Q4); Nature and Landscape Conservation (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +22189;21101149525;"SVU-International Journal of Veterinary Sciences";journal;"25351877, 25351826";"South Valley Univesity, Faculty of Veterinary Medicine";Yes;No;0,196;Q3;5;30;112;1008;80;111;0,69;33,60;45,24;0;Egypt;Africa/Middle East;"South Valley Univesity, Faculty of Veterinary Medicine";"2018-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +22190;21101192678;"Animal Science and Genetics";journal;"27206076";"Polish Society of Animal Production";Yes;No;0,196;Q4;6;24;83;1038;66;83;0,68;43,25;53,85;0;Poland;Eastern Europe;"Polish Society of Animal Production";"2022-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Food Science (Q4); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +22191;22766;"Asia Pacific Journal of Environmental Law";journal;"18758258, 13852140";"Edward Elgar Publishing Ltd.";No;No;0,196;Q4;12;8;35;1229;26;29;0,87;153,63;40,00;0;Australia;Pacific Region;"Edward Elgar Publishing Ltd.";"1996-2002, 2004-2011, 2013-2025";"Management, Monitoring, Policy and Law (Q4)";"Environmental Science" +22192;35154;"Berichte uber Landwirtschaft";journal;"00059080";"Landwirtschaftverlag Gmbh";No;No;0,196;Q4;15;7;99;399;35;99;0,29;57,00;40,63;0;Germany;Western Europe;"Landwirtschaftverlag Gmbh";"1973, 1976-1982, 1984-1987, 1993, 1996-2025";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Economics and Econometrics (Q4)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +22193;21100978910;"Chimica Techno Acta";journal;"24111414, 24095613";"Ural Federal University";Yes;Yes;0,196;Q4;9;72;193;3702;193;190;1,18;51,42;46,20;0;Russian Federation;Eastern Europe;"Ural Federal University";"2019-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4)";"Chemical Engineering; Chemistry; Materials Science" +22194;23471;"Croatica Chemica Acta";journal;"1334417X, 00111643";"Croatian Chemical Society";Yes;Yes;0,196;Q4;56;27;68;1301;63;66;1,06;48,19;53,10;0;Croatia;Eastern Europe;"Croatian Chemical Society";"1980-1981, 1996-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +22195;21100970236;"Estudios Gerenciales";journal;"01235923, 26656744";"Universidad Icesi";Yes;Yes;0,196;Q4;24;19;116;1155;118;116;0,75;60,79;40,48;0;Colombia;Latin America;"Universidad Icesi";"2009-2026";"Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4); Management of Technology and Innovation (Q4); Marketing (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22196;19700187701;"Indian Journal of Natural Products and Resources";journal;"09760512, 09760504";"National Institute of Science Communication and Information Resources (NISCAIR)";Yes;Yes;0,196;Q4;41;52;177;2686;170;177;0,85;51,65;40,88;0;India;Asiatic Region;"National Institute of Science Communication and Information Resources (NISCAIR)";"2006-2025";"Agronomy and Crop Science (Q4); Food Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +22197;17900156713;"International Journal of Applied Psychoanalytic Studies";journal;"17423341, 15569187";"Wiley-Blackwell";No;No;0,196;Q4;20;26;130;1606;79;108;0,45;61,77;39,02;0;United States;Northern America;"Wiley-Blackwell";"2009-2026";"Psychology (miscellaneous) (Q4)";"Psychology" +22198;21100314708;"International Journal of Business and Systems Research";journal;"17512018, 1751200X";"Inderscience Enterprises Ltd";No;No;0,196;Q4;20;20;98;1237;81;96;0,88;61,85;45,28;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2026";"Business and International Management (Q4); Management Information Systems (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +22199;21100825851;"International Journal of Business Performance and Supply Chain Modelling";journal;"17589401, 1758941X";"Inderscience";No;No;0,196;Q4;23;10;49;743;49;49;0,86;74,30;43,48;0;United Kingdom;Western Europe;"Inderscience";"2009-2025";"Business and International Management (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences" +22200;4700152455;"International Journal of Process Management and Benchmarking";journal;"14606739, 1741816X";"Inderscience Enterprises Ltd";No;No;0,196;Q4;22;70;197;4373;257;197;1,34;62,47;39,72;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2009, 2013-2026";"Business and International Management (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences" +22201;24701;"Journal of Chemical Crystallography";journal;"15728854, 10741542";"Springer";No;No;0,196;Q4;37;30;145;952;130;145;0,87;31,73;22,83;0;United States;Northern America;"Springer";"1994-2026";"Chemistry (miscellaneous) (Q4); Condensed Matter Physics (Q4)";"Chemistry; Physics and Astronomy" +22202;4700152747;"Journal of Consumer Health on the Internet";journal;"15398285, 15398293";"Routledge";No;No;0,196;Q4;20;35;102;1223;72;99;0,75;34,94;53,25;0;United States;Northern America;"Routledge";"2003-2026";"Health (social science) (Q4)";"Social Sciences" +22203;21101117312;"Journal of Refrigeration";journal;"02534339";"";Yes;No;0,196;Q4;10;111;340;3221;274;340;0,80;29,02;31,06;0;China;Asiatic Region;"";"2019-2026";"Civil and Structural Engineering (Q4); Energy Engineering and Power Technology (Q4); Fluid Flow and Transfer Processes (Q4); Mechanical Engineering (Q4)";"Chemical Engineering; Energy; Engineering" +22204;21101028196;"Journal of Research and Innovation in Food Science and Technology";journal;"22520937, 25382357";"Research Institute of Food Science and Technology";Yes;No;0,196;Q4;8;32;94;1818;75;94;0,68;56,81;51,92;0;Iran;Middle East;"Research Institute of Food Science and Technology";"2019-2025";"Food Science (Q4)";"Agricultural and Biological Sciences" +22205;4000148104;"New Directions for Teaching and Learning";journal;"15360768, 02710633";"John Wiley and Sons Inc";No;No;0,196;Q4;63;55;117;1375;79;108;0,74;25,00;59,21;1;United States;Northern America;"John Wiley and Sons Inc";"1980-2026";"Education (Q4)";"Social Sciences" +22206;19700175048;"Open Neurology Journal";journal;"1874205X";"Bentham Science Publishers";Yes;No;0,196;Q4;24;3;35;116;28;33;0,82;38,67;27,27;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2010-2025";"Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience" +22207;19700182808;"Plasma Medicine";journal;"19475772, 19475764";"Begell House Inc.";No;No;0,196;Q4;26;9;57;528;45;54;0,62;58,67;43,55;0;United States;Northern America;"Begell House Inc.";"2011-2025";"Biomedical Engineering (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Engineering; Physics and Astronomy" +22208;21100901169;"Revista CES Psicologia";journal;"20113080";"Universidad CES";Yes;Yes;0,196;Q4;10;28;98;1588;59;97;0,51;56,71;51,14;0;Colombia;Latin America;"Universidad CES";"2018-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +22209;21101066985;"Revista Politecnica";journal;"13900129, 24778990";"Escuela Politecnica Nacional";Yes;Yes;0,196;Q4;7;40;118;1469;105;118;0,98;36,73;23,53;0;Ecuador;Latin America;"Escuela Politecnica Nacional";"2019-2025";"Applied Mathematics (Q4); Chemistry (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Environmental Engineering (Q4); Geochemistry and Petrology (Q4); Geotechnical Engineering and Engineering Geology (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Chemistry; Earth and Planetary Sciences; Engineering; Environmental Science; Mathematics; Physics and Astronomy" +22210;19600157312;"Scientific Annals of Computer Science";journal;"18438121, 22482695";"Alexandru Ioan Cuza University of Iasi";Yes;Yes;0,196;Q4;12;9;26;218;15;25;0,75;24,22;13,33;0;Romania;Eastern Europe;"Alexandru Ioan Cuza University of Iasi";"2009-2026";"Applied Mathematics (Q4); Computer Science (miscellaneous) (Q4)";"Computer Science; Mathematics" +22211;20759;"Shokuhin eiseigaku zasshi. Journal of the Food Hygienic Society of Japan";journal;"18821006, 00156426";"Food Hygienic Society of Japan";No;No;0,196;Q4;31;27;98;425;35;98;0,35;15,74;44,44;0;Japan;Asiatic Region;"Food Hygienic Society of Japan";"1960-2026";"Food Science (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Agricultural and Biological Sciences; Medicine" +22212;21969;"Theoretical and Experimental Chemistry";journal;"1573935X, 00405760";"Springer New York";No;No;0,196;Q4;24;36;121;1302;90;121;0,74;36,17;39,00;0;United States;Northern America;"Springer New York";"1965-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +22213;21101194368;"International Conference on Agents and Artificial Intelligence";conference and proceedings;"2184433X, 21843589";"Science and Technology Publications, Lda";No;No;0,196;-;9;354;759;9551;533;750;0,76;26,98;29,90;1;Portugal;Western Europe;"Science and Technology Publications, Lda";"2019-2025";"Artificial Intelligence";"Computer Science" +22214;21101150406;"Wave Electronics and its Application in Information and Telecommunication Systems, WECONF - Conference Proceedings";conference and proceedings;"27693538, 2769352X";"Institute of Electrical and Electronics Engineers";No;No;0,196;-;15;84;294;1531;132;291;0,60;18,23;31,71;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2018-2025";"Aerospace Engineering; Computer Networks and Communications; Computer Vision and Pattern Recognition; Electrical and Electronic Engineering; Hardware and Architecture; Information Systems; Signal Processing";"Computer Science; Engineering" +22215;21101314097;"Limite";journal;"22537929, 18884067";"Universidad de Extremadura";No;No;0,195;Q1;1;25;43;573;5;28;0,21;22,92;70,00;0;Spain;Western Europe;"Universidad de Extremadura";"2021-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22216;21101098747;"Temes de Disseny";journal;"26049155, 26046032";"Elisava Barcelona School of Design and Engineering";Yes;Yes;0,195;Q1;5;6;32;305;32;31;0,79;50,83;60,00;0;Spain;Western Europe;"Elisava Barcelona School of Design and Engineering";"2019-2025";"Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Architecture (Q3); Computer Graphics and Computer-Aided Design (Q4)";"Arts and Humanities; Computer Science; Engineering; Social Sciences" +22217;19600157791;"Adalya";journal;"13012746";"Koc University, Suna and Inan Kirac Research Center for Mediterranean Civilizations (AKMED)";No;No;0,195;Q2;7;30;53;2145;17;53;0,34;71,50;42,11;0;Turkey;Middle East;"Koc University, Suna and Inan Kirac Research Center for Mediterranean Civilizations (AKMED)";"2009, 2011-2014, 2019-2024";"Archeology (arts and humanities) (Q2); Conservation (Q2); History (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +22218;14001;"Canadian Historical Review";journal;"17101093, 00083755";"University of Toronto Press";Yes;No;0,195;Q2;26;20;205;2426;24;199;0,13;121,30;36,36;0;Canada;Northern America;"University of Toronto Press";"1963-1964, 1967, 1978, 1980-1983, 1985-1986, 1989, 1996-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +22219;27142;"Indian Economic and Social History Review";journal;"09730893, 00194646";"SAGE Publications Ltd";No;No;0,195;Q2;33;16;49;1091;21;49;0,39;68,19;33,33;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1963-2026";"History (Q2); Social Sciences (miscellaneous) (Q3); Economics and Econometrics (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +22220;5700167148;"International Journal of Asian Studies";journal;"14795914, 14795922";"Cambridge University Press";No;No;0,195;Q2;16;27;97;2086;68;97;0,74;77,26;24,14;0;United Kingdom;Western Europe;"Cambridge University Press";"1996, 2004-2005, 2007, 2009-2026";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +22221;21100792108;"Law and Humanities";journal;"17521483, 17521491";"Taylor and Francis Ltd.";No;No;0,195;Q2;10;37;53;1482;29;44;0,42;40,05;53,66;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007, 2014-2026";"Arts and Humanities (miscellaneous) (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +22222;36276;"Mankind Quarterly";journal;"00252344";"Ulster Institute for Social Research";No;No;0,195;Q2;21;30;134;1213;55;121;0,34;40,43;35,59;0;United States;Northern America;"Ulster Institute for Social Research";"1973, 1986, 1992, 1996-2025";"Arts and Humanities (miscellaneous) (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +22223;19600157917;"Metaphysica";journal;"14372053, 18746373";"Walter de Gruyter GmbH";No;No;0,195;Q2;9;29;63;923;15;63;0,14;31,83;13,79;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2014-2025";"Philosophy (Q2); Mathematical Physics (Q4)";"Arts and Humanities; Mathematics" +22224;11700154713;"Perspectivas em Ciencia da Informacao";journal;"19815344, 14139936";"Escola de Ciencia da Informacao da UFMG";Yes;Yes;0,195;Q2;14;16;81;572;41;79;0,30;35,75;56,52;0;Brazil;Latin America;"Escola de Ciencia da Informacao da UFMG";"2008-2025";"Museology (Q2); Communication (Q3); Library and Information Sciences (Q3); Information Systems (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +22225;4000151615;"Agriculturae Conspectus Scientificus";journal;"13317768, 13317776";"University of Zagreb Faculty of Agriculture";No;No;0,195;Q3;30;38;120;1755;117;119;0,98;46,18;30,71;0;Croatia;Eastern Europe;"University of Zagreb Faculty of Agriculture";"2005-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q4); Geophysics (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +22226;21100889702;"Asia Pacific Journal of Information Systems";journal;"22885404, 22886818";"Korean Society of Management Information Systems";Yes;No;0,195;Q3;12;40;131;2786;139;131;0,93;69,65;40,40;0;South Korea;Asiatic Region;"Korean Society of Management Information Systems";"2018-2025";"Information Systems and Management (Q3); Sociology and Political Science (Q3)";"Decision Sciences; Social Sciences" +22227;17700156417;"Asian Journal of Comparative Law";journal;"19320205, 21946078";"Cambridge University Press";No;No;0,195;Q3;17;8;64;1106;55;63;0,57;138,25;37,50;0;United Kingdom;Western Europe;"Cambridge University Press";"2009-2026";"Law (Q3)";"Social Sciences" +22228;21100802339;"Canadian Journal of Communication";journal;"14996642, 07053657";"University of Toronto Press";No;No;0,195;Q3;15;42;107;1869;51;93;0,40;44,50;65,15;0;Canada;Northern America;"University of Toronto Press";"1982, 2016-2025";"Communication (Q3)";"Social Sciences" +22229;21101085509;"Creative Cardiology";journal;"24109169, 19973187";"Bakoulev National Medical Research Center for Cardiovascular Surgery";No;No;0,195;Q3;6;46;154;1471;54;151;0,40;31,98;54,94;0;Russian Federation;Eastern Europe;"Bakoulev National Medical Research Center for Cardiovascular Surgery";"2019-2025";"Internal Medicine (Q3); Surgery (Q3); Cardiology and Cardiovascular Medicine (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +22230;21100902626;"Current Applied Science and Technology";journal;"25869396";"King Mongkut's Institute of Technology Ladkrabang";No;No;0,195;Q3;13;90;272;3947;270;270;1,04;43,86;51,46;0;Thailand;Asiatic Region;"King Mongkut's Institute of Technology Ladkrabang";"2017-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q4); Biotechnology (Q4); Environmental Engineering (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +22231;21101081524;"Folia Oeconomica Stetinensia";journal;"17304237, 18980198";"Sciendo";Yes;Yes;0,195;Q3;8;36;98;1513;99;98;0,90;42,03;43,21;0;Poland;Eastern Europe;"Sciendo";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22232;11200153523;"International Journal of Manufacturing Research";journal;"17500591, 17500605";"Inderscience Enterprises Ltd";No;No;0,195;Q3;25;6;53;352;44;53;0,92;58,67;27,27;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2025";"Industrial and Manufacturing Engineering (Q3); Computer Science Applications (Q4); Control and Systems Engineering (Q4); Modeling and Simulation (Q4)";"Computer Science; Engineering; Mathematics" +22233;21101138522;"Journal of Applied Engineering and Technological Science";journal;"27156087, 27156079";"";Yes;No;0,195;Q3;13;84;249;3973;322;249;1,61;47,30;35,27;0;Indonesia;Asiatic Region;"";"2019-2025";"Industrial and Manufacturing Engineering (Q3); Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Information Systems (Q4)";"Computer Science; Engineering" +22234;21101060495;"Journal of Entrepreneurial and Organizational Diversity";journal;"22818642";"EURICSE";No;No;0,195;Q3;6;13;25;590;26;23;0,76;45,38;33,33;0;Italy;Western Europe;"EURICSE";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +22235;21101049615;"Journal of Rehabilitation Sciences and Research";journal;"23456159";"Shiraz University of Medical Sciences";Yes;No;0,195;Q3;9;34;100;1175;49;98;0,30;34,56;44,64;0;Iran;Middle East;"Shiraz University of Medical Sciences";"2019-2025";"Occupational Therapy (Q3); Speech and Hearing (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions" +22236;21100456179;"Maritime Affairs";journal;"19466609, 09733159";"Routledge";No;No;0,195;Q3;13;0;16;0;15;13;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Routledge";"2015-2022";"Political Science and International Relations (Q3); Ecology (Q4); Economic Geology (Q4); Ocean Engineering (Q4); Oceanography (Q4); Renewable Energy, Sustainability and the Environment (Q4); Transportation (Q4); Water Science and Technology (Q4)";"Earth and Planetary Sciences; Energy; Engineering; Environmental Science; Social Sciences" +22237;21100212700;"RAE Revista de Administracao de Empresas";journal;"2178938X, 00347590";"Fundacao Getulio Vargas";Yes;Yes;0,195;Q3;26;50;150;2802;130;148;0,76;56,04;42,03;0;Brazil;Latin America;"Fundacao Getulio Vargas";"2007-2025";"Information Systems and Management (Q3); Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Development (Q4); Education (Q4); Industrial Relations (Q4); Management of Technology and Innovation (Q4); Management Science and Operations Research (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4); Public Administration (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +22238;21101152137;"Revista de Defesa da Concorrencia";journal;"23182253";"Administrative Council for Economic Defense (CADE)";Yes;Yes;0,195;Q3;3;21;53;718;9;53;0,20;34,19;28,57;0;Brazil;Latin America;"Administrative Council for Economic Defense (CADE)";"2019-2025";"Law (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +22239;21101105022;"Revista de Investigacion e Innovacion en Ciencias de la Salud";journal;"26652056";"Fundacion Universitaria Maria Cano";Yes;Yes;0,195;Q3;6;46;89;1864;64;83;0,85;40,52;49,44;0;Colombia;Latin America;"Fundacion Universitaria Maria Cano";"2019-2026";"Health Professions (miscellaneous) (Q3); Occupational Therapy (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Public Health, Environmental and Occupational Health (Q4); Speech and Hearing (Q4)";"Health Professions; Medicine" +22240;18866;"Revue d'Elevage et de Medecine Veterinaire des Pays Tropicaux (France)";journal;"19516711, 00351865";"CIRAD";Yes;Yes;0,195;Q3;12;40;64;2030;61;64;0,94;50,75;28,57;0;France;Western Europe;"CIRAD";"1961, 1965-1996, 2019-2026";"Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4); Ecology (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Environmental Science; Veterinary" +22241;19700170837;"Vitae";journal;"21452660, 01214004";"Universidad de Antioquia";Yes;No;0,195;Q3;21;14;39;502;41;39;1,04;35,86;71,43;0;Colombia;Latin America;"Universidad de Antioquia";"2009-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Applied Microbiology and Biotechnology (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +22242;21101089572;"Zeitschrift fur Auslandisches Offentliches Recht und Volkerrecht";journal;"00442348";"Nomos Verlagsgesellschaft mbH und Co";No;No;0,195;Q3;6;42;111;4904;41;98;0,31;116,76;46,00;0;Germany;Western Europe;"Nomos Verlagsgesellschaft mbH und Co";"2019-2025";"Law (Q3)";"Social Sciences" +22243;21100228738;"Advances in Gerontology";journal;"20790570, 20790589";"Pleiades Publishing";No;No;0,195;Q4;12;31;104;1262;61;102;0,69;40,71;47,47;0;United States;Northern America;"Pleiades Publishing";"2011-2025";"Geriatrics and Gerontology (Q4); Gerontology (Q4)";"Medicine; Nursing" +22244;19200156908;"Annals of Economics and Finance";journal;"15297373";"Central University of Finance and Economics";No;No;0,195;Q4;29;38;58;1294;39;57;0,55;34,05;38,10;1;China;Asiatic Region;"Central University of Finance and Economics";"2000-2025";"Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +22245;21100400192;"Annals of Psychology";journal;"24514306";"";Yes;No;0,195;Q4;12;12;55;691;38;55;0,57;57,58;70,97;0;Poland;Eastern Europe;"";"2014-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +22246;24906;"Automatic Control and Computer Sciences";journal;"1558108X, 01464116";"Pleiades Publishing";No;No;0,195;Q4;25;135;350;3156;297;350;0,86;23,38;31,19;0;United States;Northern America;"Pleiades Publishing";"1973-2025";"Control and Systems Engineering (Q4); Signal Processing (Q4); Software (Q4)";"Computer Science; Engineering" +22247;14472;"AVN Allgemeine Vermessungs-Nachrichten";journal;"00025968";"V D E Verlag GmbH";No;No;0,195;Q4;9;27;88;474;12;61;0,15;17,56;9,80;0;Germany;Western Europe;"V D E Verlag GmbH";"1979-1980, 1988-1994, 2014-2026";"Civil and Structural Engineering (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Engineering; Social Sciences" +22248;21101268951;"Biotechnology Bulletin";journal;"10025464";"";No;No;0,195;Q4;10;344;1082;16190;745;1077;0,74;47,06;44,80;0;China;Asiatic Region;"";"2022-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Biotechnology (Q4); Genetics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +22249;23647;"Bulletin of Tokyo Dental College";journal;"00408891";"";No;No;0,195;Q4;29;16;46;430;32;46;0,89;26,88;32,20;0;Japan;Asiatic Region;"";"1965-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22250;21100898040;"Childhood Education";journal;"00094056, 21620725";"Taylor and Francis Ltd.";No;No;0,195;Q4;33;65;189;200;79;185;0,43;3,08;72,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1955-1956, 1979, 1984-1992, 1994-2026";"Developmental and Educational Psychology (Q4); Education (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Psychology; Social Sciences" +22251;21101167591;"Chinese Journal of Wildlife";journal;"23101490";"";Yes;No;0,195;Q4;8;102;388;3513;197;383;0,51;34,44;37,36;0;China;Asiatic Region;"";"2019-2025";"Animal Science and Zoology (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +22252;21100920054;"Community Psychology in Global Perspective.";journal;"24212113";"University of Salento";Yes;Yes;0,195;Q4;14;10;50;777;32;50;0,56;77,70;61,76;0;Italy;Western Europe;"University of Salento";"2019-2026";"Health (social science) (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +22253;21100840444;"Contributii Botanice";journal;"00699616, 20673094";"Babes-Bolyai University, "Alexandru Borza" Botanic Garden";Yes;No;0,195;Q4;7;7;20;244;13;20;0,33;34,86;27,78;0;Romania;Eastern Europe;"Babes-Bolyai University, "Alexandru Borza" Botanic Garden";"2016-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22254;4700152249;"Educacao e Pesquisa";journal;"15179702, 16784634";"Emerson de Pietri";Yes;Yes;0,195;Q4;26;115;348;4347;162;348;0,50;37,80;67,16;0;Brazil;Latin America;"Emerson de Pietri";"1999-2002, 2006-2025";"Education (Q4)";"Social Sciences" +22255;21101158598;"Energotehnologii i Resursosberezenie";journal;"24137723, 26643561";"Gas Institute of the National Academy of Sciences of Ukraine";No;No;0,195;Q4;5;51;80;1779;78;80;0,98;34,88;44,44;0;Ukraine;Eastern Europe;"Gas Institute of the National Academy of Sciences of Ukraine";"2023-2025";"Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4); Fuel Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +22256;21100466423;"Global and Stochastic Analysis";journal;"22489444";"MUK Publications and Distribution";No;No;0,195;Q4;13;65;85;1128;70;85;0,66;17,35;35,16;0;India;Asiatic Region;"MUK Publications and Distribution";"2014-2026";"Discrete Mathematics and Combinatorics (Q4); Statistics and Probability (Q4)";"Mathematics" +22257;12400154715;"Huanjing Kexue Xuebao / Acta Scientiae Circumstantiae";journal;"02532468";"Science Press";No;No;0,195;Q4;39;518;1526;22594;1109;1526;0,75;43,62;40,66;0;China;Asiatic Region;"Science Press";"2008-2026";"Environmental Chemistry (Q4); Environmental Engineering (Q4); Environmental Science (miscellaneous) (Q4)";"Environmental Science" +22258;21100235837;"Indian Journal of Mathematics";journal;"00195324";"Allahabad Mathematical Society";No;No;0,195;Q4;12;0;54;0;26;54;0,63;0,00;0,00;0;India;Asiatic Region;"Allahabad Mathematical Society";"2012-2024";"Mathematics (miscellaneous) (Q4)";"Mathematics" +22259;12753;"International Game Theory Review";journal;"02191989, 17936675";"World Scientific";No;No;0,195;Q4;28;37;80;1066;54;78;0,82;28,81;34,78;0;Singapore;Asiatic Region;"World Scientific";"1999, 2003-2026";"Business and International Management (Q4); Computer Science (miscellaneous) (Q4); Statistics, Probability and Uncertainty (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences" +22260;17961;"International Journal of Applied Electromagnetics and Mechanics";journal;"13835416";"SAGE Publications Ltd";No;No;0,195;Q4;35;0;314;0;245;306;0,73;0,00;0,00;0;Netherlands;Western Europe;"SAGE Publications Ltd";"1996-2024";"Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +22261;21101076081;"International Journal of Cardiovascular Sciences";journal;"23594802, 23595647";"Sociedade Brasileira de Cardiologia";Yes;Yes;0,195;Q4;10;63;306;1621;141;219;0,51;25,73;44,13;0;Brazil;Latin America;"Sociedade Brasileira de Cardiologia";"2019-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +22262;26673;"International Journal of Critical Infrastructures";journal;"14753219, 17418038";"Inderscience Publishers";No;No;0,195;Q4;33;36;85;1469;98;85;1,18;40,81;28,77;0;United Kingdom;Western Europe;"Inderscience Publishers";"2004-2026";"Energy (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Safety, Risk, Reliability and Quality (Q4)";"Energy; Engineering; Environmental Science" +22263;19700183013;"Iranian Journal of Electrical and Electronic Engineering";journal;"17352827, 23833890";"Iran University of Science and Technology";Yes;Yes;0,195;Q4;20;65;155;1949;124;154;0,75;29,98;28,83;0;Iran;Middle East;"Iran University of Science and Technology";"2010-2026";"Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4)";"Energy; Engineering" +22264;5100152918;"Jeoloji Muhendisligi Dergisi";journal;"10169172";"TMMOB Chamber of Geological Engineers";Yes;No;0,195;Q4;10;12;18;641;15;18;1,20;53,42;22,22;0;Turkey;Middle East;"TMMOB Chamber of Geological Engineers";"2005-2023, 2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Earth and Planetary Sciences; Environmental Science" +22265;12400154728;"Journal of Environmental Protection and Ecology";journal;"13115065";"Scibulcom Ltd.";No;No;0,195;Q4;33;269;961;5564;592;956;0,83;20,68;42,08;0;Bulgaria;Eastern Europe;"Scibulcom Ltd.";"2008-2025";"Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4); Pollution (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +22266;21362;"Journal of Food Safety and Food Quality";journal;"0003925X";"IMR Press Limited";No;No;0,195;Q4;19;18;41;870;36;41;0,86;48,33;49,25;0;Hong Kong;Asiatic Region;"IMR Press Limited";"1959-1961, 1973-1989, 1996-2022";"Food Science (Q4); Health, Toxicology and Mutagenesis (Q4); Management, Monitoring, Policy and Law (Q4); Microbiology (Q4)";"Agricultural and Biological Sciences; Environmental Science; Immunology and Microbiology" +22267;21100905329;"Journal of Phytology";journal;"20756240";"TathQeef Scientific Publishing";Yes;No;0,195;Q4;10;21;74;666;60;74;0,87;31,71;38,03;0;United Arab Emirates;Middle East;"TathQeef Scientific Publishing";"2019-2026";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +22268;21101184421;"Jurnal Kesehatan Lingkungan";journal;"18297285, 2540881X";"Airlangga University Faculty of Public Health";Yes;Yes;0,195;Q4;8;40;104;1955;114;104;1,35;48,88;41,35;0;Indonesia;Asiatic Region;"Airlangga University Faculty of Public Health";"2019-2026";"Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4); Waste Management and Disposal (Q4)";"Environmental Science; Medicine" +22269;21101196735;"Jurnal Pengolahan Hasil Perikanan Indonesia";journal;"2354886X, 23032111";"IPB University Department of Aquatic Product Technology";Yes;No;0,195;Q4;11;72;183;3836;184;183;0,91;53,28;55,43;0;Indonesia;Asiatic Region;"IPB University Department of Aquatic Product Technology";"2020-2026";"Agronomy and Crop Science (Q4); Aquatic Science (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22270;21101254815;"Mathematica Montisnigri";journal;"27044963, 03542238";"";No;No;0,195;Q4;7;24;62;558;17;62;0,40;23,25;38,46;0;Montenegro;Eastern Europe;"";"2020-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Mathematics (miscellaneous) (Q4); Modeling and Simulation (Q4)";"Mathematics" +22271;21100246539;"Mining Report";journal;"21958378, 21956529";"Bergbau-Verwaltungsgesellschaft mbH";No;No;0,195;Q4;8;46;157;601;18;154;0,12;13,07;22,47;0;United Kingdom;Western Europe;"Bergbau-Verwaltungsgesellschaft mbH";"2013-2025";"Economic Geology (Q4); Energy (miscellaneous) (Q4); Geochemistry and Petrology (Q4); Geotechnical Engineering and Engineering Geology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Earth and Planetary Sciences; Energy" +22272;21101230649;"Naturae";journal;"25538756";"Museum National d'Histoire Naturelle";No;No;0,195;Q4;4;13;45;877;20;44;0,33;67,46;33,33;0;France;Western Europe;"Museum National d'Histoire Naturelle";"2020-2026";"Ecology (Q4); Environmental Engineering (Q4); Environmental Science (miscellaneous) (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science" +22273;51658;"NTT Technical Review";journal;"13483447";"Nippon Telegraph and Telephone Corp.";No;No;0,195;Q4;20;65;415;278;40;414;0,11;4,28;10,00;0;Japan;Asiatic Region;"Nippon Telegraph and Telephone Corp.";"2003-2026";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +22274;13437;"Psychologia";journal;"00332852, 13475916";"Psychologia Society";No;No;0,195;Q4;31;10;41;531;22;37;0,47;53,10;37,93;0;Japan;Asiatic Region;"Psychologia Society";"1996-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +22275;21100854766;"Public Sector Economics";journal;"24598860";"Institute of Public Finance";Yes;Yes;0,195;Q4;14;24;65;1044;43;64;0,60;43,50;21,95;3;Croatia;Eastern Europe;"Institute of Public Finance";"2017-2025";"Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +22276;25732;"Quarterly Report of RTRI (Railway Technical Research Institute)";journal;"18801765, 00339008";"Ken-yusha Inc.";No;No;0,195;Q4;33;42;137;407;36;137;0,17;9,69;13,89;0;Japan;Asiatic Region;"Ken-yusha Inc.";"1969-2025";"Mechanical Engineering (Q4)";"Engineering" +22277;12194;"Revista Espanola de Geriatria y Gerontologia";journal;"0211139X, 15781747";"Ediciones Doyma, S.L.";No;No;0,195;Q4;32;126;222;2959;122;199;0,49;23,48;56,66;1;Spain;Western Europe;"Ediciones Doyma, S.L.";"1981-1982, 1988-2026";"Aging (Q4); Geriatrics and Gerontology (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +22278;19700201540;"RICYDE: Revista Internacional de Ciencias del Deporte";journal;"18853137";"Revista Internacional de Ciencias del Deporte";Yes;Yes;0,195;Q4;27;0;22;0;15;22;0,33;0,00;0,00;0;Spain;Western Europe;"Revista Internacional de Ciencias del Deporte";"2010-2023";"Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)";"Health Professions" +22279;19700173026;"Russian Journal of Non-Ferrous Metals";journal;"1934970X, 10678212";"Pleiades Publishing";No;No;0,195;Q4;29;41;122;1331;107;122;0,33;32,46;23,91;0;United States;Northern America;"Pleiades Publishing";"2007-2025";"Mechanics of Materials (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science" +22280;13600154749;"South African Journal for Research in Sport, Physical Education and Recreation";journal;"29602386, 03799069";"North-West Unversity";No;No;0,195;Q4;21;12;34;562;22;34;0,86;46,83;36,84;0;South Africa;Africa;"North-West Unversity";"2008-2025";"Education (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)";"Health Professions; Social Sciences" +22281;21101121512;"Strides in Development of Medical Education Journal";journal;"26453452, 26453525";"Kerman University of Medical Sciences";Yes;Yes;0,195;Q4;6;43;99;1321;59;85;0,59;30,72;57,34;0;Iran;Middle East;"Kerman University of Medical Sciences";"2019-2026";"Education (Q4); Health (social science) (Q4)";"Social Sciences" +22282;21100800032;"Turk Osteoporoz Dergisi";journal;"21472653, 21463816";"Galenos Publishing House";Yes;Yes;0,195;Q4;7;35;129;790;54;120;0,43;22,57;63,54;0;Turkey;Middle East;"Galenos Publishing House";"2011-2025";"Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +22283;21100825292;"Voprosy Khimii i Khimicheskoi Tekhnologii";journal;"03214095, 24137987";"Ukrainian State University of Chemical Technology";Yes;No;0,195;Q4;14;107;279;1523;145;279;0,50;14,23;44,94;0;Ukraine;Eastern Europe;"Ukrainian State University of Chemical Technology";"2015-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Environmental Chemistry (Q4); Materials Chemistry (Q4)";"Chemical Engineering; Chemistry; Environmental Science; Materials Science" +22284;21100795900;"E3S Web of Conferences";conference and proceedings;"25550403, 22671242";"EDP Sciences";Yes;Yes;0,195;-;52;4133;22483;68423;15949;22049;0,73;16,56;39,91;1;France;Western Europe;"EDP Sciences";"2013-2026";"Earth and Planetary Sciences (miscellaneous); Energy (miscellaneous); Environmental Science (miscellaneous)";"Earth and Planetary Sciences; Energy; Environmental Science" +22285;21100453900;"Archives of Asian Art";journal;"00666637, 19446497";"Asia Society";No;No;0,194;Q1;10;6;23;607;13;23;0,33;101,17;66,67;0;United States;Northern America;"Asia Society";"2002, 2004-2025";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +22286;21100896340;"Bookbird: Journal of International Children's Literature";journal;"19186983, 00067377";"IBBY - International Board of Books for Young People";No;No;0,194;Q1;7;22;153;578;38;118;0,23;26,27;75,68;0;Switzerland;Western Europe;"IBBY - International Board of Books for Young People";"2018-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +22287;21101169012;"Feminist Formations";journal;"21517363, 21517371";"Johns Hopkins University Press";No;No;0,194;Q1;11;20;128;1102;52;96;0,29;55,10;88,00;0;United States;Northern America;"Johns Hopkins University Press";"2010, 2019-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Philosophy (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +22288;21100777305;"Logos (Russian Federation)";journal;"08695377, 24999628";"National Research University Higher School of Economics (HSE University)";No;No;0,194;Q1;9;62;175;2057;44;170;0,24;33,18;27,78;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2016-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +22289;18800156716;"Revista Transilvania";journal;"30612217, 02550539";"Complexul National Muzeal Astra Sibiu";Yes;Yes;0,194;Q1;11;109;340;3342;37;337;0,15;30,66;53,64;0;Romania;Eastern Europe;"Complexul National Muzeal Astra Sibiu";"2009-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +22290;21100258911;"Izquierdas";journal;"07185049";"Ariadna Ediciones";Yes;Yes;0,194;Q2;13;79;233;3246;40;232;0,09;41,09;34,29;0;Chile;Latin America;"Ariadna Ediciones";"2013-2025";"History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22291;21100199340;"Kajian Malaysia";journal;"01274082, 21804273";"Penerbit Universiti Sains Malaysia";Yes;No;0,194;Q2;17;33;92;1355;54;90;0,52;41,06;46,94;0;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2011-2025";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22292;21100903455;"Res Rhetorica";journal;"23923113";"Polish Rhetoric Society";Yes;Yes;0,194;Q2;6;63;116;2322;27;110;0,17;36,86;67,12;0;Poland;Eastern Europe;"Polish Rhetoric Society";"2019-2025";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +22293;21100833840;"Shima";journal;"18346049, 18346057";"Shima Publications (Australia)";Yes;Yes;0,194;Q2;11;34;104;1535;53;104;0,42;45,15;57,41;0;Australia;Pacific Region;"Shima Publications (Australia)";"2017-2025";"Cultural Studies (Q2); History (Q2); Anthropology (Q3); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +22294;5600152947;"Telos";journal;"1940459X, 00906514";"Telos Press Publishing";No;No;0,194;Q2;13;46;145;1404;25;123;0,18;30,52;17,39;0;United States;Northern America;"Telos Press Publishing";"2010-2025";"Cultural Studies (Q2); Philosophy (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22295;16000154758;"Zeitschrift fur die Alttestamentliche Wissenschaft";journal;"16130103, 00442526";"Walter de Gruyter GmbH";No;No;0,194;Q2;23;22;78;1618;20;76;0,19;73,55;9,52;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1881-1916, 1918, 1920-1939, 1941, 1943-1944, 1948, 1950-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +22296;18217;"Acta Oeconomica";journal;"00016373, 15882659";"Akademiai Kiado ZRt.";No;No;0,194;Q3;22;24;86;1452;73;85;0,47;60,50;37,93;1;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"1995-2000, 2002-2025";"Political Science and International Relations (Q3); Sociology and Political Science (Q3); Economics and Econometrics (Q4); Geography, Planning and Development (Q4)";"Economics, Econometrics and Finance; Social Sciences" +22297;21101058296;"Chinese Journal of Microsurgery";journal;"10012036";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,194;Q3;8;79;327;1728;101;324;0,28;21,87;30,90;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019, 2021-2025";"Anatomy (Q3); Surgery (Q3); Orthopedics and Sports Medicine (Q4)";"Medicine" +22298;21100831020;"Civilistica.com";journal;"23168374";"Revista Civilistica";Yes;Yes;0,194;Q3;4;68;110;2365;13;110;0,14;34,78;29,17;0;Brazil;Latin America;"Revista Civilistica";"2017-2025";"Law (Q3)";"Social Sciences" +22299;6700153280;"Economic Annals";journal;"00133264";"University of Belgrade";Yes;Yes;0,194;Q3;18;22;62;1420;51;62;0,93;64,55;40,00;0;Serbia;Eastern Europe;"University of Belgrade";"2007-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +22300;21100202510;"International Journal of Mining and Mineral Engineering";journal;"1754890X, 17548918";"Inderscience";No;No;0,194;Q3;23;20;59;748;86;59;1,55;37,40;15,00;0;Switzerland;Western Europe;"Inderscience";"2008-2025";"Industrial and Manufacturing Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering" +22301;4500151510;"International Journal of Six Sigma and Competitive Advantage";journal;"14792753, 14792494";"Inderscience Enterprises Ltd";No;No;0,194;Q3;31;6;33;343;30;33;0,63;57,17;33,33;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2017, 2019-2025";"Industrial and Manufacturing Engineering (Q3); Strategy and Management (Q4)";"Business, Management and Accounting; Engineering" +22302;21100331506;"International Journal on Communications Antenna and Propagation";journal;"20395086, 25332929";"Praise Worthy Prize S.r.l";No;No;0,194;Q3;19;32;122;1149;130;122;1,15;35,91;26,19;0;Italy;Western Europe;"Praise Worthy Prize S.r.l";"2011-2025";"Media Technology (Q3); Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4); Instrumentation (Q4); Signal Processing (Q4)";"Computer Science; Engineering; Physics and Astronomy" +22303;21101268313;"ITMS - International Scientific Conference on Information Technology and Management Science of Riga Technical University";journal;"27716953, 27716937";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,194;Q3;3;28;27;691;23;25;0,85;24,68;50,70;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Information Systems and Management (Q3); Artificial Intelligence (Q4); Control and Optimization (Q4); Hardware and Architecture (Q4); Information Systems (Q4); Safety, Risk, Reliability and Quality (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering; Mathematics" +22304;21100448010;"Journal of Comprehensive Pediatrics";journal;"22518177, 22518150";"Brieflands";Yes;No;0,194;Q3;13;43;114;969;56;113;0,43;22,53;48,72;0;Netherlands;Western Europe;"Brieflands";"2013-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +22305;21101176728;"Jurnal Medik Veteriner";journal;"2581012X, 26157497";"Airlangga University";Yes;No;0,194;Q3;8;40;141;1815;135;141;1,14;45,38;49,11;0;Indonesia;Asiatic Region;"Airlangga University";"2019-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +22306;21101044720;"REDES";journal;"23854626, 15790185";"Universidad Autonoma de Barcelona, Departamento de Antropologia Social y Cultural";Yes;Yes;0,194;Q3;6;17;46;838;20;46;0,52;49,29;53,13;1;Spain;Western Europe;"Universidad Autonoma de Barcelona, Departamento de Antropologia Social y Cultural";"2019-2026";"Communication (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +22307;21101065898;"Russian Journal of Gastroenterology, Hepatology, Coloproctology";journal;"26586673, 13824376";"Gastro LLC";Yes;Yes;0,194;Q3;15;60;183;2428;177;183;1,02;40,47;54,86;0;Russian Federation;Eastern Europe;"Gastro LLC";"2019-2025";"Surgery (Q3); Gastroenterology (Q4); Hepatology (Q4); Internal Medicine (Q4)";"Medicine" +22308;21101039168;"Universal Journal of Public Health";journal;"23318945, 23318880";"Horizon Research Publishing";No;No;0,194;Q3;7;106;290;3921;218;290;0,77;36,99;48,55;0;United States;Northern America;"Horizon Research Publishing";"2020-2025";"Health Professions (miscellaneous) (Q3); Health Policy (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine; Social Sciences" +22309;19430;"Adverse Drug Reaction Bulletin";journal;"21597774, 00446394";"Lippincott Williams and Wilkins";No;No;0,194;Q4;9;6;18;122;9;18;0,50;20,33;50,00;0;United States;Northern America;"Lippincott Williams and Wilkins";"1970, 1973-2025";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +22310;21101158579;"Al-Kindy College Medical Journal";journal;"25214365, 18109543";"Al-Kindy College of Medicine, University of Baghdad";Yes;No;0,194;Q4;6;37;96;1164;99;87;1,03;31,46;33,33;0;Iraq;Middle East;"Al-Kindy College of Medicine, University of Baghdad";"2023-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22311;21101167533;"Chinese Journal of Food Hygiene";journal;"10048456";"";Yes;No;0,194;Q4;10;92;680;2523;286;680;0,36;27,42;52,07;0;China;Asiatic Region;"";"2019-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +22312;6400153151;"Contributions of the Astronomical Observatory Skalnate Pleso";journal;"13360337, 13351842";"Astronomical Institute, Slovak Academy of Sciences";Yes;No;0,194;Q4;17;87;108;1907;61;105;0,59;21,92;26,90;0;Slovakia;Eastern Europe;"Astronomical Institute, Slovak Academy of Sciences";"2007-2026";"Astronomy and Astrophysics (Q4)";"Physics and Astronomy" +22313;21100829234;"Economic and Environmental Geology";journal;"22887962, 12257281";"The Korean Society of Economic and Environmental Geology";Yes;No;0,194;Q4;9;60;179;2386;94;179;0,52;39,77;32,28;0;South Korea;Asiatic Region;"The Korean Society of Economic and Environmental Geology";"2017-2025";"Economic Geology (Q4); Environmental Science (miscellaneous) (Q4); Geology (Q4)";"Earth and Planetary Sciences; Environmental Science" +22314;21101045749;"Entomon";journal;"03779335";"";No;No;0,194;Q4;11;67;212;1510;73;212;0,36;22,54;39,50;0;India;Asiatic Region;"";"2012-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +22315;21101162550;"Eurasian Journal of Chemistry";journal;"29590671, 29590663";"E.A. Buketov Karaganda University Publish house";No;No;0,194;Q4;6;42;152;1678;116;148;0,96;39,95;51,67;0;Kazakhstan;Asiatic Region;"E.A. Buketov Karaganda University Publish house";"2023-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +22316;27766;"Fa yi xue za zhi";journal;"10045619";"Journal of Forensic Medicine";Yes;No;0,194;Q4;15;67;249;2361;139;249;0,68;35,24;36,88;0;China;Asiatic Region;"Journal of Forensic Medicine";"1997-2025";"Pathology and Forensic Medicine (Q4)";"Medicine" +22317;98641;"Geologia USP - Serie Cientifica";journal;"1519874X";"Universidade de Sao Paulo. Museu de Zoologia";Yes;Yes;0,194;Q4;30;11;62;699;28;62;0,43;63,55;40,00;0;Brazil;Latin America;"Universidade de Sao Paulo. Museu de Zoologia";"2002-2025";"Geology (Q4)";"Earth and Planetary Sciences" +22318;21100786314;"Haiyang Xuebao";journal;"02534193";"Editorial Office of Haiyang Xuebao";No;No;0,194;Q4;16;140;470;6574;309;470;0,56;46,96;27,93;0;China;Asiatic Region;"Editorial Office of Haiyang Xuebao";"2016-2025";"Aquatic Science (Q4); Ocean Engineering (Q4); Oceanography (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Engineering" +22319;19700174654;"Hemijska Industrija";journal;"0367598X, 22177426";"Association of the Chemical Engineers of Serbia";Yes;No;0,194;Q4;30;22;94;797;70;87;0,67;36,23;58,42;0;Serbia;Eastern Europe;"Association of the Chemical Engineers of Serbia";"1989, 2007-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +22320;21100464314;"International Journal of Construction Supply Chain Management";journal;"11790776";"Massey University";Yes;Yes;0,194;Q4;12;10;47;437;49;47;1,17;43,70;26,67;0;New Zealand;Pacific Region;"Massey University";"2015-2025";"Building and Construction (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering" +22321;21100198230;"International Journal of Intelligent Systems Technologies and Applications";journal;"17408865, 17408873";"Inderscience";No;No;0,194;Q4;22;26;50;548;52;50;1,03;21,08;44,29;0;Switzerland;Western Europe;"Inderscience";"2005-2025";"Computer Science (miscellaneous) (Q4)";"Computer Science" +22322;11000153757;"Israel Journal of Ecology and Evolution";journal;"22244662, 15659801";"Brill Academic Publishers";No;No;0,194;Q4;42;31;59;1716;34;59;0,58;55,35;19,40;0;United Kingdom;Western Europe;"Brill Academic Publishers";"2006-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +22323;11700154336;"Journal of Computer Science";journal;"15493636, 15526607";"Science Publications";Yes;No;0,194;Q4;41;216;382;7622;411;382;1,11;35,29;33,47;0;United States;Northern America;"Science Publications";"2008-2026";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Software (Q4)";"Computer Science" +22324;101377;"Journal of Imaging Science and Technology";journal;"19433522, 10623701";"Society for Imaging Science and Technology";No;No;0,194;Q4;46;78;207;2075;124;190;0,59;26,60;33,47;0;United States;Northern America;"Society for Imaging Science and Technology";"1993-2025";"Atomic and Molecular Physics, and Optics (Q4); Chemistry (miscellaneous) (Q4); Computer Science Applications (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Chemistry; Computer Science; Materials Science; Physics and Astronomy" +22325;21100984845;"Journal of School Administration Research and Development";journal;"24708496, 2470850X";"California State University";Yes;No;0,194;Q4;8;10;32;491;29;32;0,86;49,10;36,84;0;United States;Northern America;"California State University";"2018-2025";"Development (Q4); Education (Q4); Public Administration (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +22326;25863;"Journal of Solid Waste Technology and Management";journal;"10881697";"Widener University School of Civil Engineering";No;No;0,194;Q4;23;65;134;2437;140;127;1,36;37,49;40,00;0;United States;Northern America;"Widener University School of Civil Engineering";"1997-1999, 2001-2026";"Waste Management and Disposal (Q4)";"Environmental Science" +22327;19700182903;"Journal of Theoretical and Applied Information Technology";journal;"18173195, 19928645";"Little Lion Scientific";Yes;No;0,194;Q4;47;806;2299;27228;2335;2299;1,03;33,78;40,40;0;Pakistan;Asiatic Region;"Little Lion Scientific";"2005, 2008-2025";"Computer Science (miscellaneous) (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +22328;21101094483;"Neuropsychiatric Investigation";journal;"27920070";"Istanbul Universitesi";Yes;Yes;0,194;Q4;10;29;59;881;26;54;0,44;30,38;47,42;0;Turkey;Middle East;"Istanbul Universitesi";"2021-2025";"Biological Psychiatry (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience" +22329;21101037303;"Philosophical Inquiry in Education";journal;"23698659";"Canadian Philosophy Education Society";Yes;Yes;0,194;Q4;6;13;68;559;35;60;0,55;43,00;50,00;0;Canada;Northern America;"Canadian Philosophy Education Society";"2019-2025";"Education (Q4)";"Social Sciences" +22330;21100850743;"Radioelektronika, Nanosistemy, Informacionnye Tehnologii";journal;"22183000, 24141267";"Russian Academy of Natural Science";No;No;0,194;Q4;10;70;177;1704;113;177;0,69;24,34;21,26;0;Russian Federation;Eastern Europe;"Russian Academy of Natural Science";"2017-2025";"Computer Networks and Communications (Q4); Electronic, Optical and Magnetic Materials (Q4); Hardware and Architecture (Q4); Information Systems (Q4); Materials Science (miscellaneous) (Q4)";"Computer Science; Materials Science" +22331;21101097081;"Regulatory Mechanisms in Biosystems";journal;"25198521, 25202588";"Oles Honchar Dnipro National University";Yes;No;0,194;Q4;12;222;303;9932;348;303;1,15;44,74;52,06;0;Ukraine;Eastern Europe;"Oles Honchar Dnipro National University";"2019-2025";"Biochemistry (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Biophysics (Q4); Cell Biology (Q4); Microbiology (Q4); Pharmacology (Q4); Physiology (Q4); Toxicology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +22332;19700168806;"Revista Espanola de Patologia";journal;"1988561X, 16998855";"Ediciones Doyma, S.L.";No;No;0,194;Q4;10;54;155;915;76;142;0,59;16,94;47,55;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2008-2026";"Pathology and Forensic Medicine (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +22333;21101053699;"Studia Universitatis Vasile Goldis Arad, Economics Series";journal;"15842339, 22853065";"De Gruyter Open Ltd";Yes;Yes;0,194;Q4;10;20;61;998;74;61;1,32;49,90;40,82;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2019-2026";"Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22334;145727;"Transactions of Nanjing University of Aeronautics and Astronautics";journal;"10051120";"Nanjing University of Aeronautics an Astronautics";Yes;No;0,194;Q4;17;61;199;1936;138;199;0,81;31,74;34,39;0;China;Asiatic Region;"Nanjing University of Aeronautics an Astronautics";"2005-2025";"Aerospace Engineering (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Engineering" +22335;21101271520;"Workshop Solar Influences on the Magnetosphere, Ionosphere and Atmosphere";book series;"23677570";"Space Research and Technology Institute, Bulgarian Academy of Sciences";No;No;0,194;Q4;3;30;59;486;17;56;0,28;16,20;30,38;0;Bulgaria;Eastern Europe;"Space Research and Technology Institute, Bulgarian Academy of Sciences";"2020-2025";"Atmospheric Science (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Geophysics (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences" +22336;21100236007;"Computing in Cardiology";conference and proceedings;"2325887X, 23258861";"";No;No;0,194;-;69;291;957;3376;403;951;0,31;11,60;31,76;0;France;Western Europe;"";"2008, 2010-2025";"Cardiology and Cardiovascular Medicine; Computer Science (miscellaneous)";"Computer Science; Medicine" +22337;21100995124;"IEEE Electrical Design of Advanced Packaging and Systems Symposium";conference and proceedings;"21511225, 21511233";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,194;-;8;0;123;0;78;119;0,62;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2019-2024";"Automotive Engineering; Computer Science (miscellaneous); Control and Systems Engineering; Electrical and Electronic Engineering";"Computer Science; Engineering" +22338;97616;"Proceedings - SPE International Symposium on Formation Damage Control";conference and proceedings;"26434830, 26434849";"Society of Petroleum Engineers (SPE)";No;No;0,194;-;39;0;121;0;81;119;0,69;0,00;0,00;0;United States;Northern America;"Society of Petroleum Engineers (SPE)";"1974, 1976, 1978, 1980, 1982, 1984, 1986, 1988, 1994, 1996, 1998, 2000, 2002, 2004, 2006, 2008, 2010, 2012, 2016, 2018, 2020, 2022, 2024";"Energy Engineering and Power Technology; Geotechnical Engineering and Engineering Geology";"Earth and Planetary Sciences; Energy" +22339;21100198533;"Proceedings of IEEE/ACS International Conference on Computer Systems and Applications, AICCSA";conference and proceedings;"21615330, 21615322";"IEEE Computer Society";No;No;0,194;-;33;200;305;4852;256;296;0,62;24,26;34,38;0;United States;Northern America;"IEEE Computer Society";"2001, 2011, 2013-2024";"Computer Networks and Communications; Computer Science Applications; Control and Systems Engineering; Electrical and Electronic Engineering; Hardware and Architecture; Signal Processing";"Computer Science; Engineering" +22340;21100325069;"Proceedings of the International Conference on Speech Prosody";conference and proceedings;"23332042";"International Speech Communication Association";No;No;0,194;-;24;0;445;0;167;441;0,32;0,00;0,00;0;France;Western Europe;"International Speech Communication Association";"2006, 2010, 2014, 2016, 2018, 2020, 2022, 2024";"Linguistics and Language";"Social Sciences" +22341;21101194210;"Proceedings of the International Group for the Psychology of Mathematics Education";conference and proceedings;"0771100X, 27903648";"Psychology of Mathematics Education (PME)";No;No;0,194;-;9;111;1099;1614;173;1085;0,14;14,54;63,75;0;Germany;Western Europe;"Psychology of Mathematics Education (PME)";"2019, 2021-2025";"Developmental and Educational Psychology; Education; Experimental and Cognitive Psychology; Mathematics (miscellaneous)";"Mathematics; Psychology; Social Sciences" +22342;21100985330;"Proceedings of the Sound and Music Computing Conferences";conference and proceedings;"25183672";"";No;No;0,194;-;13;59;258;1517;100;252;0,50;25,71;18,06;0;Switzerland;Western Europe;"";"2019-2025";"Computer Science Applications; Media Technology; Music";"Arts and Humanities; Computer Science; Engineering" +22343;25649;"Journal of Glass Studies";journal;"00754250";"Corning Museum of Glass";No;No;0,193;Q1;16;0;23;0;11;16;0,00;0,00;0,00;0;United States;Northern America;"Corning Museum of Glass";"1969, 2002-2003, 2005, 2007, 2009-2020, 2022";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +22344;21100948920;"Slovenske Divadlo";journal;"0037699X, 13368605";"Slovak Academy of Sciences";Yes;Yes;0,193;Q1;3;26;87;580;11;76;0,16;22,31;66,67;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences";"2018-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); History (Q2); Music (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +22345;28392;"African Economic History";journal;"01452258, 21639108";"University of Wisconsin Press";No;No;0,193;Q2;16;7;40;716;16;40;0,45;102,29;28,57;0;United States;Northern America;"University of Wisconsin Press";"1976, 1981, 1999-2025";"History (Q2); Economics and Econometrics (Q4)";"Arts and Humanities; Economics, Econometrics and Finance" +22346;21101121575;"American Journal of Islam and Society";journal;"26903733, 26903741";"International Institute of Islamic Thought";Yes;Yes;0,193;Q2;5;11;49;558;33;40;0,61;50,73;11,11;0;United States;Northern America;"International Institute of Islamic Thought";"2010-2013, 2020-2025";"Cultural Studies (Q2); History (Q2); Philosophy (Q2); Religious Studies (Q2); Law (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22347;21100810717;"Analiza i Egzystencja";journal;"17349923, 23007621";"Wydawnictwo Naukowe Uniwersytetu Szczecinskiego";Yes;Yes;0,193;Q2;4;17;77;679;25;77;0,39;39,94;33,33;0;Poland;Eastern Europe;"Wydawnictwo Naukowe Uniwersytetu Szczecinskiego";"2016-2025";"Philosophy (Q2)";"Arts and Humanities" +22348;4900152602;"Axiomathes";journal;"11221151, 15728390";"Springer Science and Business Media B.V.";No;No;0,193;Q2;25;0;136;0;87;136;0,00;0,00;0,00;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"1993-2023";"Philosophy (Q2); Mathematics (miscellaneous) (Q4)";"Arts and Humanities; Mathematics" +22349;21100829925;"HiSTOReLo";journal;"2145132X";"Universidad Nacional de Colombia";Yes;Yes;0,193;Q2;6;25;72;1291;18;62;0,09;51,64;47,22;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2013-2026";"Cultural Studies (Q2); History (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +22350;21101090412;"Historia Scholastica";journal;"2336680X, 18044913";"Comenius National Pedagogical Library";Yes;Yes;0,193;Q2;3;19;71;718;15;66;0,18;37,79;63,64;0;Czech Republic;Eastern Europe;"Comenius National Pedagogical Library";"2019-2025";"History (Q2); Social Sciences (miscellaneous) (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +22351;21101347037;"Language Education and Assessment";journal;"22093591";"Castledown Publishers";No;No;0,193;Q2;3;5;10;250;8;10;0,67;50,00;28,57;0;Australia;Pacific Region;"Castledown Publishers";"2021-2026";"Linguistics and Language (Q2); Education (Q4)";"Social Sciences" +22352;5700165138;"Law and History Review";journal;"07382480, 19399022";"Cambridge University Press";No;No;0,193;Q2;37;49;115;4735;63;113;0,54;96,63;44,90;0;United Kingdom;Western Europe;"Cambridge University Press";"1983-2026";"History (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +22353;21100781700;"Music and Medicine";journal;"1943863X, 19438621";"International Association for Music and Medicine";No;No;0,193;Q2;23;31;60;952;33;52;0,40;30,71;56,19;0;United States;Northern America;"International Association for Music and Medicine";"2009-2013, 2020-2026";"Music (Q2); Behavioral Neuroscience (Q4); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine; Neuroscience" +22354;21100838052;"Qwerty";journal;"18287344, 22402950";"Progetti editoriali s.r.l.";No;No;0,193;Q2;11;14;41;413;20;35;0,29;29,50;58,06;0;Italy;Western Europe;"Progetti editoriali s.r.l.";"2017-2025";"Cultural Studies (Q2); Communication (Q3); Education (Q4); Human-Computer Interaction (Q4)";"Computer Science; Social Sciences" +22355;5800208631;"Radovi Zavoda za Povijesne Znanosti HAZU u Zadru";journal;"13300474";"Croatian Academy of Sciences and Arts";No;No;0,193;Q2;7;10;37;407;9;36;0,26;40,70;50,00;0;Croatia;Eastern Europe;"Croatian Academy of Sciences and Arts";"2009-2011, 2013-2025";"History (Q2)";"Arts and Humanities" +22356;16030;"Seventeenth Century";journal;"0268117X, 20504616";"Taylor and Francis Ltd.";No;No;0,193;Q2;19;40;138;2673;39;134;0,23;66,83;29,79;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986-2026";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +22357;21101039668;"Vegueta";journal;"1133598X, 23411112";"University of Las Palmas de Gran Canaria, Faculty of Geography and History";No;Yes;0,193;Q2;6;46;137;2557;37;137;0,28;55,59;32,76;0;Spain;Western Europe;"University of Las Palmas de Gran Canaria, Faculty of Geography and History";"2019-2026";"Arts and Humanities (miscellaneous) (Q2); History (Q2); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +22358;21100932832;"World Journal of Entrepreneurship, Management and Sustainable Development";journal;"20425961, 2042597X";"World Association for Sustainable Development";No;No;0,193;Q2;24;20;81;639;87;79;0,35;31,95;35,29;0;United Kingdom;Western Europe;"World Association for Sustainable Development";"2013, 2017-2025";"Cultural Studies (Q2); Demography (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3); Business and International Management (Q4); Strategy and Management (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +22359;21101329152;"Accounting and Financial Control";journal;"25441450, 25435485";"LLC CPC Business Perspectives";Yes;No;0,193;Q3;2;13;8;583;12;8;1,50;44,85;47,22;0;Ukraine;Eastern Europe;"LLC CPC Business Perspectives";"2024-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3); Accounting (Q4); Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +22360;145595;"American Law and Economics Review";journal;"14657260, 14657252";"Oxford University Press";No;No;0,193;Q3;43;0;26;0;16;26;0,67;0,00;0,00;0;United Kingdom;Western Europe;"Oxford University Press";"2001-2002, 2005-2023";"Law (Q3); Finance (Q4)";"Economics, Econometrics and Finance; Social Sciences" +22361;21101238108;"Ceylon Journal of Science";journal;"2513230X, 25132814";"University of Peradeniya";Yes;Yes;0,193;Q3;10;108;191;4323;153;178;0,77;40,03;37,96;0;Sri Lanka;Asiatic Region;"University of Peradeniya";"2020-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +22362;21100378923;"Chilean Journal of Agricultural and Animal Sciences";journal;"07193882, 07193890";"Universidad de Concepcion";Yes;No;0,193;Q3;13;34;130;1531;108;130;0,75;45,03;22,96;0;Chile;Latin America;"Universidad de Concepcion";"2014-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +22363;21100285074;"Chinese Critical Care Medicine";journal;"20954352";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,193;Q3;25;189;736;3830;397;731;0,54;20,26;45,38;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2013-2025";"Critical Care and Intensive Care Medicine (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +22364;21101088418;"Chinese Journal of Experimental Traditional Medical Formulae";journal;"20971494, 10059903";"China Academy of Chinese Medical Sciences Institute of Chinese Materia Medica";No;No;0,193;Q3;16;578;2351;28804;1951;2351;0,90;49,83;49,59;0;China;Asiatic Region;"China Academy of Chinese Medical Sciences Institute of Chinese Materia Medica";"2019-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Complementary and Alternative Medicine (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +22365;29494;"Demografie";journal;"18052991, 00118265";"Cesky Statisticky Urad";Yes;Yes;0,193;Q3;11;12;46;527;20;46;0,26;43,92;78,95;0;Czech Republic;Eastern Europe;"Cesky Statisticky Urad";"1976-1999, 2014-2025";"Demography (Q3)";"Social Sciences" +22366;21101209808;"Economic Thought and Practice";journal;"13301039, 1848963X";"University of Dubronvnik";Yes;Yes;0,193;Q3;8;30;90;1445;79;90;0,58;48,17;45,45;0;Croatia;Eastern Europe;"University of Dubronvnik";"2020-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance; Social Sciences" +22367;21101245239;"Global Privacy Law Review";journal;"26663570, 26663589";"Wolters Kluwer Legal & Regulatory - International Group";No;No;0,193;Q3;7;16;67;258;46;45;0,90;16,13;40,00;0;Netherlands;Western Europe;"Wolters Kluwer Legal & Regulatory - International Group";"2020-2025";"Law (Q3)";"Social Sciences" +22368;21101049074;"Gosudarstvo i Pravo";journal;"10269452";"Russian Academy of Sciences";No;No;0,193;Q3;9;220;693;5031;122;692;0,17;22,87;35,82;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2011, 2016, 2020-2025";"Law (Q3)";"Social Sciences" +22369;21101281057;"Indonesian Journal of Criminal Law Studies";journal;"25481576, 25481568";"Universitas Negeri Semarang";No;No;0,193;Q3;2;28;26;1264;19;26;0,73;45,14;33,80;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2023-2025";"Gender Studies (Q3); Law (Q3); Social Sciences (miscellaneous) (Q3); Social Psychology (Q4)";"Psychology; Social Sciences" +22370;21100446421;"International Journal of Surgery Open";journal;"24058572";"Lippincott Williams and Wilkins";Yes;No;0,193;Q3;19;106;436;2286;216;282;0,35;21,57;24,75;0;United States;Northern America;"Lippincott Williams and Wilkins";"2015-2025";"Surgery (Q3)";"Medicine" +22371;21100831449;"Italian Journal of Sociology of Education";journal;"20354983";"Padova University Press";Yes;Yes;0,193;Q3;11;12;81;585;58;78;0,74;48,75;82,61;0;Italy;Western Europe;"Padova University Press";"2017-2025";"Social Sciences (miscellaneous) (Q3); Education (Q4)";"Social Sciences" +22372;21101145468;"Journal of Dentomaxillofacial Science";journal;"25030825, 25030817";"Universitas Hasanuddin Faculty of Dentistry";No;No;0,193;Q3;5;69;141;1656;100;138;0,82;24,00;55,94;0;Indonesia;Asiatic Region;"Universitas Hasanuddin Faculty of Dentistry";"2019-2025";"Dentistry (miscellaneous) (Q3); Oral Surgery (Q3); Orthodontics (Q3); Periodontics (Q3)";"Dentistry" +22373;21101041555;"New Zealand College of Midwives Journal";journal;"11783893, 01147870";"New Zealand College of Midwives";No;No;0,193;Q3;4;8;21;231;13;16;0,47;28,88;72,00;1;New Zealand;Pacific Region;"New Zealand College of Midwives";"2019-2025";"Maternity and Midwifery (Q3); Obstetrics and Gynecology (Q3)";"Medicine; Nursing" +22374;21100469656;"Radiation and Risk";journal;"2412950X, 01313878";"National Medical Research Radiological Centre of the Ministry of Health of the Russian Federation";No;No;0,193;Q3;12;51;150;1134;54;149;0,41;22,24;49,40;0;Russian Federation;Eastern Europe;"National Medical Research Radiological Centre of the Ministry of Health of the Russian Federation";"2016-2025";"Radiation (Q3); Nuclear and High Energy Physics (Q4); Public Health, Environmental and Occupational Health (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine; Physics and Astronomy" +22375;144824;"Standort";journal;"1432220X, 01743635";"Springer Science and Business Media Deutschland GmbH";No;No;0,193;Q3;8;64;114;973;44;64;0,31;15,20;40,51;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2026";"Social Sciences (miscellaneous) (Q3); Urban Studies (Q3); Development (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +22376;21101292827;"Advanced Engineering Research (Rostov-on-Don)";journal;"26871653";"Don State Technical University";Yes;No;0,193;Q4;7;32;117;664;98;116;0,90;20,75;26,03;0;Russian Federation;Eastern Europe;"Don State Technical University";"2021-2026";"Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +22377;21100388381;"Aerospace Medicine and Human Performance";journal;"23756322, 23756314";"Aerospace Medical Association";Yes;No;0,193;Q4;89;141;428;2450;255;416;0,58;17,38;32,94;0;United States;Northern America;"Aerospace Medical Association";"2015-2026";"Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +22378;21100945273;"Algebraic Structures and their Applications";journal;"24233447";"Yazd University";Yes;No;0,193;Q4;7;18;71;335;32;71;0,32;18,61;29,03;0;Iran;Middle East;"Yazd University";"2019-2025";"Algebra and Number Theory (Q4); Applied Mathematics (Q4)";"Mathematics" +22379;4700152860;"ANZIAM Journal";journal;"14461811, 14468735";"Cambridge University Press";No;No;0,193;Q4;35;34;59;1205;52;57;0,71;35,44;28,57;0;United Kingdom;Western Europe;"Cambridge University Press";"2000-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +22380;21101181958;"Applications of Modelling and Simulation";journal;"26008084";"ARQII Publication";Yes;Yes;0,193;Q4;8;30;63;1443;68;63;1,17;48,10;31,87;0;Malaysia;Asiatic Region;"ARQII Publication";"2019-2026";"Artificial Intelligence (Q4); Electrical and Electronic Engineering (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Computer Science; Engineering" +22381;21101068177;"Borneo Journal of Resource Science and Technology";journal;"22299769, 01282972";"Universiti Malaysia Sarawak";Yes;Yes;0,193;Q4;7;30;94;1304;81;94;0,83;43,47;47,25;0;Malaysia;Asiatic Region;"Universiti Malaysia Sarawak";"2019-2025";"Animal Science and Zoology (Q4); Biochemistry (Q4); Biotechnology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4); Molecular Biology (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +22382;130078;"Chinese Journal of Applied and Environmental Biology";journal;"1006687X";"Science Press";No;No;0,193;Q4;25;177;529;9199;398;528;0,79;51,97;43,99;0;China;Asiatic Region;"Science Press";"2005-2026";"Agronomy and Crop Science (Q4); Applied Microbiology and Biotechnology (Q4); Genetics (Q4); Pollution (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Immunology and Microbiology" +22383;21100860060;"Cognition, Brain, Behavior. An Interdisciplinary Journal";journal;"2601226X, 22479228";"ASCR Press";No;No;0,193;Q4;10;12;34;833;21;33;0,57;69,42;62,50;0;Romania;Eastern Europe;"ASCR Press";"2017-2025";"Experimental and Cognitive Psychology (Q4)";"Psychology" +22384;13755;"High Temperatures - High Pressures";journal;"00181544, 14723441";"Old City Publishing";No;No;0,193;Q4;36;33;96;951;51;87;0,41;28,82;23,38;0;United States;Northern America;"Old City Publishing";"1969-1970, 1972-1992, 1994, 1997-2003, 2008-2025";"Condensed Matter Physics (Q4); Mechanics of Materials (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Engineering; Physics and Astronomy" +22385;21100258611;"International Journal of Learning in Higher Education";journal;"23277955, 23278749";"Common Ground Research Networks";No;No;0,193;Q4;8;46;67;2320;63;67;0,93;50,43;64,00;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Education (Q4)";"Social Sciences" +22386;19700182135;"Journal of Analysis and Applications";journal;"09725954";"SAS International Publications";No;No;0,193;Q4;8;8;26;129;10;26;0,29;16,13;20,00;0;India;Asiatic Region;"SAS International Publications";"2009-2010, 2012-2025";"Analysis (Q4); Applied Mathematics (Q4)";"Mathematics" +22387;21101301730;"Journal of Psychiatry Spectrum";journal;"29496969, 29496950";"Wolters Kluwer Medknow Publications";Yes;No;0,193;Q4;4;15;73;922;41;61;0,40;61,47;54,84;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2022-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +22388;19700182011;"Polish Journal of Medical Physics and Engineering";journal;"18980309, 14254689";"";No;No;0,193;Q4;12;40;85;1225;68;85;0,87;30,63;41,67;0;Poland;Eastern Europe;"";"2009-2010, 2012-2025";"Biophysics (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +22389;21101046168;"Ratarstvo i Povrtarstvo";journal;"18213944, 22178392";"Institute of Field and Vegetable Crops";Yes;Yes;0,193;Q4;7;16;32;648;26;32;0,53;40,50;53,62;0;Serbia;Eastern Europe;"Institute of Field and Vegetable Crops";"2019-2025";"Agronomy and Crop Science (Q4); Biochemistry (Q4); Biotechnology (Q4); Genetics (Q4); Horticulture (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +22390;28343;"Revista de Metalurgia";journal;"00348570, 19884222";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,193;Q4;25;14;61;626;64;61;0,63;44,71;27,03;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1968-1972, 1974-1994, 1996-2025";"Condensed Matter Physics (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +22391;19700188209;"Soil and Environment";journal;"20751141, 20749546";"Soil Science Society of Pakistan(SSSP)";Yes;Yes;0,193;Q4;28;25;58;1114;47;58;1,02;44,56;24,27;0;Pakistan;Asiatic Region;"Soil Science Society of Pakistan(SSSP)";"2010-2025";"Environmental Science (miscellaneous) (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22392;21101080187;"Space Science and Technology";journal;"25181459, 15618889";"Publishing House Akademperiodyka";No;No;0,193;Q4;9;47;136;1679;73;136;0,51;35,72;35,85;0;Ukraine;Eastern Europe;"Publishing House Akademperiodyka";"2019-2025";"Aerospace Engineering (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Engineering" +22393;18719;"IEEE Antennas and Propagation Society, AP-S International Symposium (Digest)";conference and proceedings;"15223965, 19471491";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,193;-;62;781;2303;9491;1033;2299;0,45;12,15;18,44;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1963-1970, 1972-1973, 1977-2007, 2009, 2011-2015, 2023-2025";"Electrical and Electronic Engineering";"Engineering" +22394;21100886516;"International Conference on Advances in Biomedical Engineering, ICABME";conference and proceedings;"23775688, 23775696";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,193;-;13;74;52;1403;49;51;0,94;18,96;42,92;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017, 2019, 2021, 2023, 2025";"Biomedical Engineering";"Engineering" +22395;19900193965;"International Symposium on Advanced Networks and Telecommunication Systems, ANTS";conference and proceedings;"21531684";"IEEE Computer Society";No;No;0,193;-;18;0;378;0;239;369;0,61;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2010-2011, 2016, 2018-2024";"Computer Networks and Communications; Media Technology";"Computer Science; Engineering" +22396;28295;"Acta Antiqua Academiae Scientiarum Hungaricae";journal;"00445975, 15882543";"Akademiai Kiado";No;No;0,192;Q1;9;63;91;2686;10;87;0,13;42,63;32,79;0;Hungary;Eastern Europe;"Akademiai Kiado";"1965, 2007-2026";"Classics (Q1); Cultural Studies (Q2); History (Q2); Linguistics and Language (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +22397;21101022481;"Vestnik Sankt-Peterburgskogo Universiteta, Yazyk i Literatura";journal;"25419366, 25419358";"Saint Petersburg State University";No;No;0,192;Q1;8;43;153;995;34;153;0,15;23,14;69,64;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2017-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22398;5800221971;"Zeitschrift fur Slawistik";journal;"21967016, 00443506";"Walter de Gruyter GmbH";No;No;0,192;Q1;9;31;86;1327;37;85;0,48;42,81;85,42;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1956-1966, 1968-1979, 1981-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22399;77981;"Archaologisches Korrespondenzblatt";journal;"0342734X, 23644729";"Leibniz-Zentrum fuer Archaeologie";Yes;Yes;0,192;Q2;18;8;77;300;21;77;0,29;37,50;42,86;0;Germany;Western Europe;"Leibniz-Zentrum fuer Archaeologie";"1983, 2002-2025";"Archeology (arts and humanities) (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +22400;21100976123;"California Archaeology";journal;"1947461X, 19474628";"Taylor and Francis Ltd.";No;No;0,192;Q2;15;3;23;148;8;23;0,29;49,33;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2025";"Archeology (arts and humanities) (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +22401;21100837207;"Con-textos Kantianos";journal;"23867655";"Universidad Complutense Madrid";Yes;Yes;0,192;Q2;6;42;90;1130;12;87;0,13;26,90;28,21;0;Spain;Western Europe;"Universidad Complutense Madrid";"2014-2025";"Philosophy (Q2)";"Arts and Humanities" +22402;19700186703;"Croatian Journal of Philosophy";journal;"13331108, 18476139";"Institute of Philosophy";Yes;No;0,192;Q2;14;29;68;680;30;65;0,34;23,45;31,03;0;Croatia;Eastern Europe;"Institute of Philosophy";"2008-2025";"Philosophy (Q2)";"Arts and Humanities" +22403;19700167010;"Estudios de Historia Moderna Contemporanea de Mexico";journal;"24485004, 01852620";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,192;Q2;8;27;81;915;11;79;0,18;33,89;54,17;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1965, 1990, 2009-2026";"History (Q2)";"Arts and Humanities" +22404;21101048049;"European Journal of Applied Linguistics and TEFL";journal;"21921032";"LinguaBooks";No;No;0,192;Q2;8;0;64;0;34;51;0,40;0,00;0,00;0;United Kingdom;Western Europe;"LinguaBooks";"2019-2024";"Linguistics and Language (Q2)";"Social Sciences" +22405;21101347036;"Historijski Zbornik";journal;"18490824, 03512193";"Croatian Historical Society";No;No;0,192;Q2;2;13;40;538;12;39;0,24;41,38;38,46;0;Croatia;Eastern Europe;"Croatian Historical Society";"2022-2025";"History (Q2)";"Arts and Humanities" +22406;21100836335;"Illes i Imperis";journal;"23854219, 15750698";"Universidad Pompeu Fabra";Yes;Yes;0,192;Q2;5;13;57;816;8;54;0,12;62,77;0,00;0;Spain;Western Europe;"Universidad Pompeu Fabra";"2017-2025";"History (Q2)";"Arts and Humanities" +22407;5700155578;"Journal of American Folklore";journal;"00218715, 15351882";"American Folklore Society";No;No;0,192;Q2;28;31;87;982;45;87;0,47;31,68;57,89;0;United States;Northern America;"American Folklore Society";"1987, 2002-2026";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +22408;21100243005;"Journal of Philosophy ARHE";journal;"18200958, 25605593";"University of Novi Sad";No;No;0,192;Q2;2;26;100;740;11;99;0,13;28,46;23,81;0;Serbia;Eastern Europe;"University of Novi Sad";"2012-2025";"Philosophy (Q2)";"Arts and Humanities" +22409;21100237429;"Novyj Istoriceskij Vestnik";journal;"20729286";"Izd-vo Ippolitova";No;No;0,192;Q2;5;78;96;4583;10;96;0,10;58,76;37,50;0;Russian Federation;Eastern Europe;"Izd-vo Ippolitova";"2012-2025";"History (Q2)";"Arts and Humanities" +22410;21100400016;"Quaderni di Diritto e Politica Ecclesiastica";journal;"11220392, 26122049";"Societa Editrice Il Mulino";No;No;0,192;Q2;5;44;92;1646;12;90;0,13;37,41;38,46;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2015-2025";"Religious Studies (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +22411;21101271735;"Revista Digital de Investigacion en Docencia Universitaria";journal;"22232516";"Universidad Peruana de Ciencias Aplicadas";Yes;Yes;0,192;Q2;11;22;58;1293;49;53;0,59;58,77;50,00;0;Peru;Latin America;"Universidad Peruana de Ciencias Aplicadas";"2020-2026";"Cultural Studies (Q2); Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +22412;5800196259;"Russian History";journal;"18763316, 0094288X";"Brill Academic Publishers";No;No;0,192;Q2;14;8;60;619;11;60;0,28;77,38;42,86;0;Netherlands;Western Europe;"Brill Academic Publishers";"1974-1978, 1980-1982, 1985-1987, 1989-1992, 1994-2025";"History (Q2)";"Arts and Humanities" +22413;21101125267;"Russian Language at School";journal;"26190966, 01316141";"Nash Language Limited Liability Company";No;No;0,192;Q2;4;61;201;874;23;199;0,15;14,33;78,57;0;Russian Federation;Eastern Europe;"Nash Language Limited Liability Company";"2019-2025";"Linguistics and Language (Q2); Education (Q4)";"Social Sciences" +22414;21101158570;"Australasian Journal of Plastic Surgery";journal;"2209170X";"";Yes;No;0,192;Q3;4;36;114;524;39;72;0,28;14,56;29,21;0;Australia;Pacific Region;"";"2020-2025";"Surgery (Q3)";"Medicine" +22415;21100915998;"Cidades";journal;"21823030";"Instituto Universitario de Lisboa - DINAMIA CET-IUL";Yes;Yes;0,192;Q3;7;37;142;1282;47;124;0,27;34,65;64,81;1;Portugal;Western Europe;"Instituto Universitario de Lisboa - DINAMIA CET-IUL";"2019-2026";"Architecture (Q3); Urban Studies (Q3)";"Engineering; Social Sciences" +22416;21101218124;"Coastal Studies and Society";journal;"26349817";"SAGE Publications Ltd";No;No;0,192;Q3;6;15;42;776;35;39;0,58;51,73;50,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2022-2026";"Sociology and Political Science (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +22417;19900191348;"Communicatio";journal;"17535379, 02500167";"Routledge";No;No;0,192;Q3;22;11;69;560;49;67;0,54;50,91;56,25;0;United Kingdom;Western Europe;"Routledge";"1975-1976, 1978-2026";"Communication (Q3)";"Social Sciences" +22418;27662;"Emergency Nurse";journal;"13545752";"RCN Publishing Company Ltd.";No;No;0,192;Q3;22;48;162;714;67;98;0,37;14,88;52,17;0;United Kingdom;Western Europe;"RCN Publishing Company Ltd.";"1992, 1998-2026";"Emergency Nursing (Q3)";"Nursing" +22419;21101280901;"Folia Veterinaria";journal;"24537837";"";Yes;No;0,192;Q3;10;40;120;1245;70;120;0,56;31,13;53,04;0;Slovakia;Eastern Europe;"";"2016-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +22420;91585;"Forum for Nordic Dermato-Venerology";journal;"20023855, 14022915";"Medical Journals/Acta D-V";Yes;No;0,192;Q3;4;0;13;0;12;11;0,00;0,00;0,00;0;Sweden;Western Europe;"Medical Journals/Acta D-V";"2003-2022";"Dermatology (Q3); Infectious Diseases (Q4)";"Medicine" +22421;38556;"In Practice";journal;"20427689, 0263841X";"John Wiley & Sons Inc.";No;No;0,192;Q3;34;93;254;1034;94;171;0,35;11,12;61,33;0;United Kingdom;Western Europe;"John Wiley & Sons Inc.";"1981-1989, 1991-2026";"Veterinary (miscellaneous) (Q3)";"Veterinary" +22422;21100204508;"INMATEH - Agricultural Engineering";journal;"20684215, 20682239";"INMA Bucharest";Yes;No;0,192;Q3;19;283;628;7818;531;628;0,85;27,63;31,62;0;Romania;Eastern Europe;"INMA Bucharest";"2012-2025";"Industrial and Manufacturing Engineering (Q3); Food Science (Q4); Mechanical Engineering (Q4)";"Agricultural and Biological Sciences; Engineering" +22423;21101075355;"Journal of Southeast Asian Human Rights";journal;"25992147";"University of Jember";No;No;0,192;Q3;9;7;44;526;78;40;1,50;75,14;27,27;0;Indonesia;Asiatic Region;"University of Jember";"2019-2025";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +22424;22755;"Jurnal Ekonomi Malaysia";journal;"27166058, 01271962";"Penerbit Universiti Kebangsaan Malaysia";No;No;0,192;Q3;16;10;94;514;82;94;0,50;51,40;42,86;0;Malaysia;Asiatic Region;"Penerbit Universiti Kebangsaan Malaysia";"1981, 1983, 2006-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22425;5600153207;"Politica y Sociedad";journal;"11308001, 19883129";"Universidad Complutense Madrid";Yes;Yes;0,192;Q3;19;48;165;2753;83;163;0,28;57,35;38,10;0;Spain;Western Europe;"Universidad Complutense Madrid";"2011-2025";"Sociology and Political Science (Q3)";"Social Sciences" +22426;23132;"Revista Estudos Feministas";journal;"18069584, 0104026X";"Universidade Federal de Santa Catarina";Yes;Yes;0,192;Q3;25;80;284;2387;104;278;0,30;29,84;77,67;0;Brazil;Latin America;"Universidade Federal de Santa Catarina";"1994-1995, 2006-2025";"Gender Studies (Q3)";"Social Sciences" +22427;19900191941;"Semina:Ciencias Agrarias";journal;"1676546X, 16790359";"Universidade Estadual de Londrina";Yes;No;0,192;Q3;35;119;432;4119;262;432;0,48;34,61;42,90;0;Brazil;Latin America;"Universidade Estadual de Londrina";"2006, 2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +22428;75573;"Tianjin Daxue Xuebao (Ziran Kexue yu Gongcheng Jishu Ban)/Journal of Tianjin University Science and Technology";journal;"04932137";"Tianjin University";No;No;0,192;Q3;26;122;410;3214;270;410;0,64;26,34;28,40;0;China;Asiatic Region;"Tianjin University";"1982-1988, 2003-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +22429;21100317746;"World Journal of Dentistry";journal;"09766006, 09766014";"Jaypee Brothers Medical Publishers (P) Ltd";Yes;No;0,192;Q3;15;165;515;4497;295;496;0,60;27,25;50,84;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2014-2025";"Dentistry (miscellaneous) (Q3)";"Dentistry" +22430;21101363388;"Aquatic Research";journal;"26186365";"Nuray ERKAN A–ZDEN";No;No;0,192;Q4;8;28;78;1012;67;78;0,61;36,14;44,62;0;Turkey;Middle East;"Nuray ERKAN A–ZDEN";"2021-2026";"Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22431;145587;"Archives des Maladies Professionnelles et de l'Environnement";journal;"17758785";"Elsevier Masson s.r.l.";No;No;0,192;Q4;12;57;169;1081;37;118;0,19;18,96;43,88;0;France;Western Europe;"Elsevier Masson s.r.l.";"2004-2026";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +22432;28079;"Azerbaijan Medical Journal";journal;"00052523";"Ministry of Health";No;No;0,192;Q4;9;118;320;1549;120;319;0,35;13,13;59,69;0;Azerbaijan;Eastern Europe;"Ministry of Health";"1961-1963, 2002-2013, 2016-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22433;21101051830;"Banko Janakari";journal;"26312301, 10160582";"Forest Research and Training Centre";Yes;Yes;0,192;Q4;7;18;41;697;40;32;0,63;38,72;24,07;0;Nepal;Asiatic Region;"Forest Research and Training Centre";"2019-2025";"Ecological Modeling (Q4); Ecology (Q4); Forestry (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22434;19700201420;"Bulletin of the British Ornithologists' Club";journal;"00071595";"British Ornithologist's Club";No;No;0,192;Q4;15;6;111;198;36;111;0,29;33,00;14,29;0;United Kingdom;Western Europe;"British Ornithologist's Club";"2009-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +22435;33897;"Bulletin of the Geological Survey of Finland";journal;"0367522X";"Geological Survey of Finland";Yes;No;0,192;Q4;16;0;6;0;2;6;0,33;0,00;0,00;0;Finland;Western Europe;"Geological Survey of Finland";"1979-1980, 1982-1986, 1988-1989, 1991-1998, 2000-2001, 2004-2005, 2009-2010, 2018-2021, 2023-2024";"Geology (Q4)";"Earth and Planetary Sciences" +22436;21101170296;"CAAI Transactions on Intelligent Systems";journal;"16734785";"";No;No;0,192;Q4;18;130;388;5134;378;385;1,01;39,49;32,05;0;China;Asiatic Region;"";"2019-2025";"Artificial Intelligence (Q4); Computer Vision and Pattern Recognition (Q4); Control and Systems Engineering (Q4)";"Computer Science; Engineering" +22437;25187;"Corrosion and Protection";journal;"1005748X";"Shanghai Research Institute of Materials";No;No;0,192;Q4;14;168;652;3799;297;652;0,45;22,61;32,55;0;China;Asiatic Region;"Shanghai Research Institute of Materials";"2002-2026";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Materials Science" +22438;23521;"Ecletica Quimica";journal;"16784618, 01004670";"Atlantis Livros Ltda.";Yes;Yes;0,192;Q4;27;21;76;1069;65;72;1,02;50,90;35,29;0;Brazil;Latin America;"Atlantis Livros Ltda.";"1976-1983, 1985-2025";"Chemistry (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Chemistry; Physics and Astronomy" +22439;15089;"Finance a Uver - Czech Journal of Economics and Finance";journal;"00151920";"Faculty of Social Sciences, Charles University";Yes;No;0,192;Q4;25;16;49;874;40;48;0,72;54,63;33,33;0;Czech Republic;Eastern Europe;"Faculty of Social Sciences, Charles University";"1996-2025";"Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22440;25719;"Folia Forestalia Polonica, Series A";journal;"21995907, 00716677";"Wydawnictwo Naukowe PWN";Yes;No;0,192;Q4;16;26;77;1327;47;77;0,59;51,04;31,25;0;Poland;Eastern Europe;"Wydawnictwo Naukowe PWN";"1993, 1995-2007, 2009-2025";"Ecology (Q4); Forestry (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22441;21988;"Herpetological Bulletin";journal;"14730928, 26341387";"British Herpetological Society";No;No;0,192;Q4;16;72;196;1737;78;156;0,38;24,13;24,02;0;United Kingdom;Western Europe;"British Herpetological Society";"1996-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +22442;51335;"Indian Journal of Agricultural Economics";journal;"00195014";"Indian Society of Agricultural Economics";No;No;0,192;Q4;30;26;142;834;84;140;0,51;32,08;29,17;0;India;Asiatic Region;"Indian Society of Agricultural Economics";"1978-2025";"Development (Q4); Geography, Planning and Development (Q4)";"Social Sciences" +22443;21101234845;"Indian Journal of Microbiology Research";journal;"2394546X, 23945478";"IP Innovative Publication Pvt. Ltd.";No;No;0,192;Q4;6;83;157;2628;166;148;0,52;31,66;49,79;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2020-2025";"Medical Terminology; Immunology and Microbiology (miscellaneous) (Q4); Microbiology (Q4)";"Health Professions; Immunology and Microbiology" +22444;12100157172;"International Journal of Embedded Systems";journal;"17411076, 17411068";"Inderscience Enterprises Ltd";No;No;0,192;Q4;20;12;112;422;121;112;1,12;35,17;25,58;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2010, 2013-2025";"Hardware and Architecture (Q4); Software (Q4)";"Computer Science" +22445;21100896683;"International Journal of Surface Engineering and Interdisciplinary Materials Science";journal;"21667233, 21667225";"IGI Global Publishing";No;No;0,192;Q4;7;1;9;16;9;9;0,50;16,00;50,00;0;United States;Northern America;"IGI Global Publishing";"2018-2026";"Biomaterials (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science" +22446;21100948917;"Journal of Computational Technologies";journal;"2313691X, 15607534";"Institute of Computational Technologies SB RAS";No;No;0,192;Q4;6;55;147;1172;47;147;0,30;21,31;26,02;0;Russian Federation;Eastern Europe;"Institute of Computational Technologies SB RAS";"2019-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Networks and Communications (Q4); Numerical Analysis (Q4); Software (Q4)";"Computer Science; Mathematics" +22447;21100205739;"Journal of Environmental Science and Management";journal;"01191144";"University of the Philippines Los Banos";No;No;0,192;Q4;17;23;54;970;44;54;0,63;42,17;45,68;0;Philippines;Asiatic Region;"University of the Philippines Los Banos";"2011-2025";"Environmental Science (miscellaneous) (Q4)";"Environmental Science" +22448;30046;"Journal of Phenomenological Psychology";journal;"15691624, 00472662";"Brill Academic Publishers";No;No;0,192;Q4;29;6;27;191;21;25;0,68;31,83;25,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1970-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +22449;21101041870;"Management and Accounting Review";journal;"26007975";"";No;No;0,192;Q4;10;57;135;3486;123;135;0,68;61,16;48,00;0;Malaysia;Asiatic Region;"";"2018-2025";"Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22450;18367;"Medicina (Buenos Aires)";journal;"16699106, 00257680";"Fundacion Revista Medicina (Buenos Aires)";Yes;No;0,192;Q4;37;270;721;2997;283;520;0,36;11,10;52,99;0;Argentina;Latin America;"Fundacion Revista Medicina (Buenos Aires)";"1945-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +22451;21101263035;"Mediterranean Nursing and Midwifery";journal;"27917940";"Galenos Publishing House";Yes;Yes;0,192;Q4;4;33;66;1217;38;66;0,66;36,88;92,68;0;Turkey;Middle East;"Galenos Publishing House";"2021-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +22452;21100329540;"Middle East Journal of Cancer";journal;"20086709, 20086687";"Shiraz University of Medical Sciences";Yes;No;0,192;Q4;15;36;183;1148;89;179;0,49;31,89;47,22;0;Iran;Middle East;"Shiraz University of Medical Sciences";"2014-2026";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +22453;21101045276;"National Journal of Community Medicine";journal;"09763325, 22296816";"MedSci Publications";Yes;No;0,192;Q4;8;157;472;4831;277;427;0,58;30,77;55,61;0;India;Asiatic Region;"MedSci Publications";"2019-2026";"Epidemiology (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +22454;21101288810;"Nonlinear Theory and its Applications, IEICE";journal;"21854106";"Institute of Electronics Information Communication Engineers";Yes;No;0,192;Q4;8;72;203;1707;121;188;0,66;23,71;14,67;0;Japan;Asiatic Region;"Institute of Electronics Information Communication Engineers";"2021-2026";"Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Mathematics (miscellaneous) (Q4)";"Engineering; Mathematics" +22455;19700174616;"Pedagogische Studien";journal;"01650645";"Vereniging voor Onderwijsresearch (VOR)";Yes;Yes;0,192;Q4;11;8;61;548;28;61;0,58;68,50;52,17;0;Netherlands;Western Europe;"Vereniging voor Onderwijsresearch (VOR)";"2009-2025";"Education (Q4)";"Social Sciences" +22456;17093;"Polski Merkuriusz Lekarski";journal;"14269686";"";No;No;0,192;Q4;26;118;291;3075;227;291;0,80;26,06;52,58;0;Poland;Eastern Europe;"";"1996-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22457;21101251694;"Revista Cientifica de Sistemas e Informatica";journal;"2709992X";"Universidad Nacional de San Martin";Yes;Yes;0,192;Q4;5;31;46;1014;38;43;0,77;32,71;17,72;0;Peru;Latin America;"Universidad Nacional de San Martin";"2021-2026";"Computer Science Applications (Q4); Computer Science (miscellaneous) (Q4); Hardware and Architecture (Q4); Information Systems (Q4)";"Computer Science" +22458;20300195019;"Risk and Decision Analysis";journal;"18759173, 15697371";"SAGE Publications Ltd";No;No;0,192;Q4;12;8;7;378;9;7;1,29;47,25;55,56;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2009-2014, 2016-2018, 2020-2021, 2023, 2025-2026";"Economics and Econometrics (Q4); Finance (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +22459;144836;"Scandinavian Psychoanalytic Review";journal;"01062301, 16000803";"Routledge";No;No;0,192;Q4;13;20;45;428;17;39;0,34;21,40;42,11;0;United Kingdom;Western Europe;"Routledge";"1978-2026";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +22460;21101169886;"Sovremennaa Terapia Psihiceskih Rasstrojstv";journal;"23064137";"";Yes;Yes;0,192;Q4;4;32;50;1408;61;50;1,22;44,00;52,34;0;Iran;Middle East;"";"2023-2025";"Physiology (medical) (Q4); Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4)";"Medicine; Psychology" +22461;4700152777;"Topics in Clinical Nutrition";journal;"08835691, 15505146";"Lippincott Williams and Wilkins";No;No;0,192;Q4;19;31;106;1116;49;94;0,36;36,00;72,64;0;United States;Northern America;"Lippincott Williams and Wilkins";"1986-1995, 1997, 2000, 2002-2026";"Nutrition and Dietetics (Q4)";"Nursing" +22462;21101270280;"Turkish Journal of Remote Sensing";journal;"26874997";"";Yes;No;0,192;Q4;4;25;30;1081;26;30;0,85;43,24;35,59;1;Turkey;Middle East;"";"2020-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Earth-Surface Processes (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences" +22463;21100869814;"Ka and Broadband Communications Conference";conference and proceedings;"25736124";"FGM Events LLC";No;No;0,192;-;6;42;106;464;27;103;0,28;11,05;19,86;0;United States;Northern America;"FGM Events LLC";"2017-2019, 2021-2025";"Computer Networks and Communications; Electrical and Electronic Engineering; Information Systems; Media Technology; Signal Processing";"Computer Science; Engineering" +22464;21101056430;"World Construction Symposium";conference and proceedings;"23620935";"Ceylon Institute of Builders";No;No;0,192;-;9;109;257;4396;207;254;0,82;40,33;38,64;0;Sri Lanka;Asiatic Region;"Ceylon Institute of Builders";"2019, 2021-2025";"Building and Construction; Management, Monitoring, Policy and Law; Renewable Energy, Sustainability and the Environment";"Energy; Engineering; Environmental Science" +22465;18542;"American Journal of Philology";journal;"10863168, 00029475";"Johns Hopkins University Press";No;No;0,191;Q1;36;25;68;2025;27;64;0,17;81,00;34,78;0;United States;Northern America;"Johns Hopkins University Press";"1972-1973, 1976, 1978-1980, 1985-1989, 1992-1993, 1995-1997, 2000-2025";"Classics (Q1); Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22466;21101064957;"Filolog (Banja Luka)";journal;"22331158, 19865864";"Faculty of Philology Banja Luka";Yes;Yes;0,191;Q1;3;59;157;1298;32;154;0,21;22,00;84,38;0;Bosnia and Herzegovina;Eastern Europe;"Faculty of Philology Banja Luka";"2020-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22467;21101021986;"New Design Ideas";journal;"25224875, 25242148";"Jomard Publishing";No;No;0,191;Q1;8;47;120;1983;102;117;0,92;42,19;53,00;0;Azerbaijan;Eastern Europe;"Jomard Publishing";"2017-2025";"Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2)";"Arts and Humanities" +22468;21100405738;"Supplements to the Journal for the Study of Judaism";book series;"13842161";"Brill Academic Publishers";No;No;0,191;Q1;22;2;125;1180;27;10;0,16;590,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2005-2026";"Literature and Literary Theory (Q1); History (Q2); Religious Studies (Q2)";"Arts and Humanities" +22469;24934;"Colonial Latin American Review";journal;"10609164";"Taylor and Francis Ltd.";No;No;0,191;Q2;20;21;85;1361;27;66;0,26;64,81;47,37;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-1996, 2001, 2003-2025";"Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +22470;14768;"Hispanic Journal of Behavioral Sciences";journal;"15526364, 07399863";"SAGE Publications Inc.";No;No;0,191;Q2;76;21;33;1167;24;33;0,70;55,57;68,37;0;United States;Northern America;"SAGE Publications Inc.";"1979-2026";"Cultural Studies (Q2); Linguistics and Language (Q2); Anthropology (Q3); Social Psychology (Q4)";"Psychology; Social Sciences" +22471;5700167823;"History Australia";journal;"18334881, 14490854";"Taylor and Francis Ltd.";No;No;0,191;Q2;18;65;142;2070;43;121;0,29;31,85;56,06;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003, 2005-2026";"History (Q2)";"Arts and Humanities" +22472;21100396454;"International Journal of Philosophy and Theology";journal;"21692335, 21692327";"Taylor and Francis Ltd.";No;No;0,191;Q2;10;18;68;733;21;65;0,31;40,72;5,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2025";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +22473;16100154767;"Journal for the Study of the Old Testament";journal;"14766728, 03090892";"SAGE Publications Ltd";No;No;0,191;Q2;28;26;83;1400;17;83;0,16;53,85;37,93;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1976-2026";"Religious Studies (Q2)";"Arts and Humanities" +22474;21100857115;"Journal of Ethnology and Folkloristics";journal;"17366518, 22280987";"Sciendo";Yes;Yes;0,191;Q2;7;22;71;1228;25;65;0,35;55,82;63,16;0;Poland;Eastern Europe;"Sciendo";"2017-2025";"Cultural Studies (Q2); Anthropology (Q3)";"Social Sciences" +22475;16100154785;"Journal of the Society of Christian Ethics";journal;"15407942";"Georgetown University Press";No;No;0,191;Q2;14;20;65;1050;14;59;0,21;52,50;40,00;0;United States;Northern America;"Georgetown University Press";"2002-2025";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +22476;21100200636;"Journal of War and Culture Studies";journal;"17526272, 17526280";"Maney Publishing";No;No;0,191;Q2;13;29;74;1503;46;67;0,62;51,83;62,50;0;United Kingdom;Western Europe;"Maney Publishing";"2013-2026";"History (Q2); Anthropology (Q3); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +22477;21100902939;"Language Learning and Language Teaching";book series;"15699471";"John Benjamins Publishing Company";No;No;0,191;Q2;64;0;47;0;86;1;2,19;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2002-2016, 2018-2020, 2022-2025";"Linguistics and Language (Q2); Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +22478;21101046763;"MedieKultur";journal;"19019726";"Society of Media Researchers In Denmark";Yes;Yes;0,191;Q2;11;23;51;1136;83;46;1,60;49,39;63,04;1;Denmark;Western Europe;"Society of Media Researchers In Denmark";"2018-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Communication (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22479;21100202124;"Obnovljeni Zivot";journal;"03513947";"Filozofsko teoloski institut Druzbe Isusove";No;No;0,191;Q2;4;31;118;754;21;101;0,19;24,32;44,74;0;Croatia;Eastern Europe;"Filozofsko teoloski institut Druzbe Isusove";"2011-2026";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +22480;21101060911;"Studies in the History of Philosophy";journal;"20831978, 2391775X";"";Yes;Yes;0,191;Q2;3;37;71;880;14;62;0,22;23,78;25,81;0;Poland;Eastern Europe;"";"2019-2025";"Philosophy (Q2)";"Arts and Humanities" +22481;4600151402;"Volta Review";journal;"00428639, 21625158";"Alexander Graham Bell Association";No;No;0,191;Q2;33;4;15;222;9;14;0,38;55,50;80,00;0;United States;Northern America;"Alexander Graham Bell Association";"1946-1948, 1973, 1988, 1996-2001, 2004-2015, 2017-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Developmental and Educational Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +22482;21101296125;"Wroclawski Przeglad Teologiczny";journal;"25446460, 12311731";"Pontifical Faculty of Theology in Wroclaw";Yes;No;0,191;Q2;1;25;26;1517;3;24;0,12;60,68;16,00;0;Poland;Eastern Europe;"Pontifical Faculty of Theology in Wroclaw";"2024-2025";"History (Q2); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +22483;21101285837;"African Multidisciplinary Tax Journal (AMTJ)";journal;"27100685, 27098575";"Juta and Company Ltd";No;No;0,191;Q3;3;17;51;407;17;48;0,38;23,94;14,29;0;South Africa;Africa;"Juta and Company Ltd";"2021-2025";"Social Sciences (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q4); Public Administration (Q4)";"Business, Management and Accounting; Social Sciences" +22484;21100933962;"Age of Human Rights Journal";journal;"23409592";"Universidad de Jaen";Yes;Yes;0,191;Q3;7;14;83;1026;59;82;0,65;73,29;69,23;0;Spain;Western Europe;"Universidad de Jaen";"2013-2026";"Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +22485;21100945164;"Alternativas";journal;"19899971, 11330473";"University of Alicante - Department of Social Work and Social Services";Yes;Yes;0,191;Q3;5;12;53;661;34;53;0,82;55,08;53,85;0;Spain;Western Europe;"University of Alicante - Department of Social Work and Social Services";"2019-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Health (social science) (Q4)";"Social Sciences" +22486;145660;"Atlantic Economic Journal";journal;"15739678, 01974254";"Springer";No;No;0,191;Q3;31;26;74;659;41;56;0,51;25,35;20,51;0;United States;Northern America;"Springer";"1973-2002, 2004-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +22487;20059;"Caldasia";journal;"03665232";"Universidad Nacional de Colombia";Yes;Yes;0,191;Q3;21;28;174;1212;92;167;0,48;43,29;35,45;0;Colombia;Latin America;"Universidad Nacional de Colombia";"1981, 1983-1984, 1986, 1989, 1992-1993, 1995-1997, 2006, 2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +22488;21101027490;"Case Reports in Critical Care";journal;"20906420, 20906439";"John Wiley and Sons Ltd";Yes;No;0,191;Q3;10;34;62;543;45;62;0,71;15,97;32,77;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2012, 2017, 2019-2026";"Critical Care and Intensive Care Medicine (Q3)";"Medicine" +22489;21101047912;"Forensic Science and Technology";journal;"10083650";"Editorial Office of Forensic Science and Technology";No;No;0,191;Q3;7;79;248;1731;75;248;0,32;21,91;38,34;0;China;Asiatic Region;"Editorial Office of Forensic Science and Technology";"2019-2025";"Law (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4); Toxicology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +22490;21100268385;"Formation Emploi";journal;"21070946, 07596340";"Documentation Francaise";No;No;0,191;Q3;9;31;132;1216;29;112;0,22;39,23;64,29;0;France;Western Europe;"Documentation Francaise";"2012-2026";"Sociology and Political Science (Q3); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Social Sciences" +22491;5600154056;"Futuribles: Analyse et Prospective";journal;"0337307X";"Futuribles";No;No;0,191;Q3;7;48;156;877;17;132;0,15;18,27;15,79;0;France;Western Europe;"Futuribles";"1977, 1979, 1983-1987, 1989-1997, 1999, 2005-2026";"Social Sciences (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting; Social Sciences" +22492;21100860693;"Iberoamerica (Russian Federation)";journal;"20759711, 20768400";"Institute of Latin American Studies, Russian Academy of Sciences";No;No;0,191;Q3;5;40;113;1160;17;113;0,09;29,00;51,92;0;Russian Federation;Eastern Europe;"Institute of Latin American Studies, Russian Academy of Sciences";"2017-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Safety Research (Q4)";"Economics, Econometrics and Finance; Social Sciences" +22493;21101039230;"International Journal of Information, Diversity and Inclusion";journal;"25743430";"University of Hawaii at Manoa";Yes;Yes;0,191;Q3;11;6;50;167;44;50;0,82;27,83;71,43;0;United States;Northern America;"University of Hawaii at Manoa";"2019-2025";"Library and Information Sciences (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +22494;21101300205;"Jurnal Teknologi dan Industri Pangan / Journal of Food Technology and Industry";journal;"19797788, 2087751X";"Department of Food Science and Technology, Faculty of Agricultural Engineering and Technology, IPB University";Yes;No;0,191;Q3;4;23;64;1010;43;64;0,52;43,91;56,90;0;Indonesia;Asiatic Region;"Department of Food Science and Technology, Faculty of Agricultural Engineering and Technology, IPB University";"2021-2025";"Industrial and Manufacturing Engineering (Q3); Food Science (Q4)";"Agricultural and Biological Sciences; Engineering" +22495;15132;"Klinische Padiatrie";journal;"14393824, 03008630";"Georg Thieme Verlag";No;No;0,191;Q3;51;63;221;855;96;207;0,33;13,57;59,40;0;Germany;Western Europe;"Georg Thieme Verlag";"1972-2026";"Pediatrics, Perinatology and Child Health (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +22496;13800;"Laryngo- Rhino- Otologie";journal;"09358943, 14388685";"Georg Thieme Verlag";No;No;0,191;Q3;39;198;696;1759;181;422;0,29;8,88;33,08;0;Germany;Western Europe;"Georg Thieme Verlag";"1984, 1989-2026";"Otorhinolaryngology (Q3)";"Medicine" +22497;19900193838;"Leather and Footwear Journal";journal;"15834433";"Institute National Cercetare-Dezvoltare Textiles Pielarie";No;No;0,191;Q3;12;16;72;651;48;72;0,73;40,69;33,33;0;Romania;Eastern Europe;"Institute National Cercetare-Dezvoltare Textiles Pielarie";"2010-2025";"Industrial and Manufacturing Engineering (Q3); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Engineering" +22498;21100218075;"Microwave Review";journal;"24061050, 14505835";"Society for Microwave Technique, Technologies and System";Yes;No;0,191;Q3;10;19;62;443;50;60;0,90;23,32;17,86;0;Serbia;Eastern Europe;"Society for Microwave Technique, Technologies and System";"2012-2025";"Law (Q3); Electrical and Electronic Engineering (Q4)";"Engineering; Social Sciences" +22499;19700201444;"Renal Society of Australasia Journal";journal;"18323804";"Renal Society of Australasia";No;No;0,191;Q3;11;0;27;0;16;23;0,62;0,00;0,00;0;Australia;Pacific Region;"Renal Society of Australasia";"2011-2023";"Urology (Q3); Nephrology (Q4)";"Medicine" +22500;19900193854;"Revista Brasileirade Ciencias Agrarias";journal;"19811160, 19810997";"Universidade Federal Rural de Pernambuco";Yes;Yes;0,191;Q3;20;25;134;855;72;134;0,55;34,20;39,64;0;Brazil;Latin America;"Universidade Federal Rural de Pernambuco";"2011-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +22501;21100403912;"Seoul Journal of Economics";journal;"12250279";"Seoul National University,Institute of Economic Research";No;No;0,191;Q3;9;15;42;453;23;42;0,54;30,20;26,67;0;South Korea;Asiatic Region;"Seoul National University,Institute of Economic Research";"2015-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +22502;21100894868;"Sociologia y Tecnociencia";journal;"19898487";"Universidad de Valladolid";Yes;Yes;0,191;Q3;7;20;65;868;55;64;0,91;43,40;43,59;0;Spain;Western Europe;"Universidad de Valladolid";"2018-2026";"Sociology and Political Science (Q3); Development (Q4); Health (social science) (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Social Sciences" +22503;19700175006;"Thai Journal of Pharmaceutical Sciences";journal;"30277922, 19054637";"Faculty of Pharmaceutical Sciences, Chulalongkorn University";No;No;0,191;Q3;17;28;152;1061;116;152;0,56;37,89;50,00;0;Thailand;Asiatic Region;"Faculty of Pharmaceutical Sciences, Chulalongkorn University";"2009-2025";"Pharmaceutical Science (Q3); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +22504;21100200406;"Tropical and Subtropical Agroecosystems";journal;"18700462";"Universidad Autonoma de Yucatan";Yes;No;0,191;Q3;24;171;388;8230;283;381;0,64;48,13;31,22;0;Mexico;Latin America;"Universidad Autonoma de Yucatan";"2011-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22505;21101152539;"Unnes Journal of Public Health";journal;"22526781, 25487604";"Universitas Negeri Semarang";Yes;Yes;0,191;Q3;6;20;60;803;40;60;0,78;40,15;47,22;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2019-2025";"Health Professions (miscellaneous) (Q3); Epidemiology (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine" +22506;21100897940;"WSQ";journal;"19341520, 07321562";"Feminist Press at CUNY";No;No;0,191;Q3;10;0;34;0;13;14;0,38;0,00;0,00;0;United States;Northern America;"Feminist Press at CUNY";"2018-2019, 2023";"Gender Studies (Q3)";"Social Sciences" +22507;20890;"Acta Microbiologica Sinica";journal;"00016209";"";No;No;0,191;Q4;26;366;1008;19257;816;997;0,84;52,61;49,13;0;China;Asiatic Region;"";"1985-2016, 2019-2026";"Immunology (Q4); Immunology and Microbiology (miscellaneous) (Q4); Microbiology (Q4); Virology (Q4)";"Immunology and Microbiology" +22508;21101278427;"Annual Symposium of the Antenna Measurement Techniques Association, AMTA";journal;"24742740, 23801840";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,191;Q4;2;79;63;927;31;62;0,49;11,73;8,47;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Computer Networks and Communications (Q4); Instrumentation (Q4)";"Computer Science; Physics and Astronomy" +22509;24950;"Automation and Remote Control";journal;"16083032, 00051179";"Pleiades Publishing";Yes;No;0,191;Q4;44;0;326;0;193;322;0,61;0,00;0,00;0;United States;Northern America;"Pleiades Publishing";"1973, 1999-2024";"Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Engineering" +22510;21100925649;"Discussiones Mathematicae - General Algebra and Applications";journal;"20840373, 15099415";"Sciendo";Yes;Yes;0,191;Q4;7;17;70;289;34;70;0,29;17,00;24,14;0;Poland;Eastern Europe;"Sciendo";"2019-2025";"Algebra and Number Theory (Q4); Applied Mathematics (Q4)";"Mathematics" +22511;12600154771;"DYNA (Colombia)";journal;"00127353";"Universidad Nacional de Colombia";Yes;Yes;0,191;Q4;32;83;288;2828;243;284;0,82;34,07;39,48;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2008-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +22512;21101149370;"Egyptian Journal of Occupational Medicine";journal;"2357058X, 11101881";"The Egyptian Society of Industrial Medicine";No;No;0,191;Q4;4;22;67;744;35;67;0,48;33,82;72,97;0;Egypt;Africa/Middle East;"The Egyptian Society of Industrial Medicine";"2007-2026";"Environmental Science (miscellaneous) (Q4); Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4); Water Science and Technology (Q4)";"Environmental Science; Medicine" +22513;15600154705;"EnvironmentAsia";journal;"19061714";"Thai Society of Higher Eduation Institutes on Environment";Yes;No;0,191;Q4;26;61;147;1895;113;147;0,72;31,07;44,06;0;Thailand;Asiatic Region;"Thai Society of Higher Eduation Institutes on Environment";"2009-2026";"Environmental Science (miscellaneous) (Q4); Toxicology (Q4)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +22514;19500157321;"Frontiers in Artificial Intelligence and Applications";book series;"09226389, 18798314";"IOS Press BV";No;No;0,191;Q4;70;1608;3570;44607;2390;3433;0,68;27,74;32,83;0;Netherlands;Western Europe;"IOS Press BV";"2004-2025";"Artificial Intelligence (Q4)";"Computer Science" +22515;21101226034;"Geographical Environment and Living Systems";journal;"27127621";"State University of Education";Yes;No;0,191;Q4;4;25;108;656;18;106;0,12;26,24;53,33;0;Russian Federation;Eastern Europe;"State University of Education";"2020-2025";"Ecological Modeling (Q4); Ecology (Q4); Environmental Science (miscellaneous) (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science" +22516;21100205744;"Health and Addictions / Salud y Drogas";journal;"15785319, 1988205X";"Instituto de Investigacion de Drogodependencias";Yes;No;0,191;Q4;17;16;98;742;50;95;0,50;46,38;51,79;0;Spain;Western Europe;"Instituto de Investigacion de Drogodependencias";"2009-2025";"Developmental and Educational Psychology (Q4); Health (social science) (Q4); Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology; Social Sciences" +22517;10900153308;"International Journal of Environment and Waste Management";journal;"14789876, 14789868";"Inderscience Enterprises Ltd";No;No;0,191;Q4;26;81;205;3480;140;205;0,60;42,96;43,46;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2026";"Environmental Engineering (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +22518;3900148223;"International Journal of Radiation Research";journal;"23223243, 23454229";"Novin Medical Radiation Institute";Yes;No;0,191;Q4;22;156;391;5222;287;390;0,68;33,47;41,49;0;Iran;Middle East;"Novin Medical Radiation Institute";"2013-2025";"Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine" +22519;16800154719;"International Journal of Security and Networks";journal;"17478413, 17478405";"Inderscience Enterprises Ltd";No;No;0,191;Q4;28;20;63;769;57;63;0,95;38,45;34,62;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2026";"Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Computer Science; Engineering" +22520;16240;"Jornal Brasileiro de Psiquiatria";journal;"19820208, 00472085";"Editora Cientifica Nacional Ltda";Yes;Yes;0,191;Q4;27;17;106;559;45;81;0,38;32,88;62,50;0;Brazil;Latin America;"Editora Cientifica Nacional Ltda";"1964-1977, 1982-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +22521;72154;"Journal of Agricultural and Food Industrial Organization";journal;"15420485, 21945896";"Walter de Gruyter GmbH";No;No;0,191;Q4;27;14;37;561;70;36;2,25;40,07;36,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2003-2026";"Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Business, Management and Accounting; Economics, Econometrics and Finance" +22522;21100994462;"Journal of Agricultural Sciences (Belgrade)";journal;"14508109, 24060968";"University of Belgrade - Faculty of Agriculture";Yes;Yes;0,191;Q4;8;29;90;1006;80;90;0,89;34,69;47,97;0;Serbia;Eastern Europe;"University of Belgrade - Faculty of Agriculture";"2018-2025";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +22523;58917;"Journal of Ayub Medical College";journal;"18192718, 10259589";"Ayub Medical College";Yes;No;0,191;Q4;41;68;630;1313;322;615;0,40;19,31;46,38;0;Pakistan;Asiatic Region;"Ayub Medical College";"2001-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +22524;21101302906;"Journal of Henan Polytechnic University (Natural Science)";journal;"16739787";"Academic Publishing Center of HPU";No;No;0,191;Q4;8;124;400;2943;241;400;0,62;23,73;29,10;0;China;Asiatic Region;"Academic Publishing Center of HPU";"2021-2026";"Engineering (miscellaneous) (Q4); Fuel Technology (Q4)";"Energy; Engineering" +22525;21100329303;"Journal of Krishna Institute of Medical Sciences University";journal;"22314261";"Krishna Institute of Medical Sciences University";Yes;Yes;0,191;Q4;14;66;207;1455;86;198;0,44;22,05;51,20;0;India;Asiatic Region;"Krishna Institute of Medical Sciences University";"2012-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22526;21100812853;"Journal of Physical Education (Maringa)";journal;"24482455";"Universidade Estadual de Maringa";Yes;No;0,191;Q4;16;58;181;2154;97;181;0,41;37,14;30,39;0;Brazil;Latin America;"Universidade Estadual de Maringa";"2009, 2016-2025";"Education (Q4); Health (social science) (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine; Social Sciences" +22527;21101292806;"Journal of the Geological Survey of Brazil";journal;"25951939";"Geological Survey of Brazil";Yes;No;0,191;Q4;5;15;46;938;20;45;0,42;62,53;11,36;0;Brazil;Latin America;"Geological Survey of Brazil";"2021-2026";"Earth and Planetary Sciences (miscellaneous) (Q4); Economic Geology (Q4); Geophysics (Q4); Paleontology (Q4)";"Earth and Planetary Sciences" +22528;21101222881;"Journal of the International Society of Physical and Rehabilitation Medicine";journal;"25899457";"Lippincott Williams and Wilkins";Yes;Yes;0,191;Q4;5;29;63;715;43;61;0,73;24,66;42,18;0;United States;Northern America;"Lippincott Williams and Wilkins";"2020-2025";"Rehabilitation (Q4)";"Medicine" +22529;21535;"Journal of the Serbian Chemical Society";journal;"03525139, 18207421";"Serbian Chemical Society";Yes;Yes;0,191;Q4;57;106;308;3772;259;306;0,82;35,58;52,46;0;Serbia;Eastern Europe;"Serbian Chemical Society";"1985, 1996-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +22530;16529;"Kobe Journal of Medical Sciences";journal;"18830498, 00232513";"Kobe Journal of Medical Sciences";Yes;No;0,191;Q4;33;14;44;171;32;44;0,69;12,21;32,35;0;Japan;Asiatic Region;"Kobe Journal of Medical Sciences";"1961, 1963-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +22531;21233;"Management (Croatia)";journal;"18463363, 13310194";"University of Split - Faculty of Economics";Yes;Yes;0,191;Q4;27;16;90;952;92;90;0,98;59,50;45,16;0;Croatia;Eastern Europe;"University of Split - Faculty of Economics";"2007-2026";"Business, Management and Accounting (miscellaneous) (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +22532;21100287593;"Materials China";journal;"16743962";"Materials China";No;No;0,191;Q4;20;120;319;6572;285;319;0,81;54,77;29,31;0;China;Asiatic Region;"Materials China";"2013-2026";"Materials Science (miscellaneous) (Q4); Nuclear Energy and Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Energy; Engineering; Materials Science" +22533;21100212322;"Nuclear and Radiation Safety";journal;"20736231";"State Scientific and Technical Center for Nuclear and Radiation Safety";No;No;0,191;Q4;10;15;92;293;33;92;0,45;19,53;19,44;0;Ukraine;Eastern Europe;"State Scientific and Technical Center for Nuclear and Radiation Safety";"2012-2025";"Nuclear Energy and Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Energy; Engineering" +22534;21100790340;"Oxford Medical Case Reports";journal;"20538855";"Oxford University Press";Yes;No;0,191;Q4;16;320;478;3530;234;452;0,48;11,03;37,05;0;United Kingdom;Western Europe;"Oxford University Press";"2014-2026";"Infectious Diseases (Q4); Microbiology (Q4); Parasitology (Q4)";"Immunology and Microbiology; Medicine" +22535;23309;"Pakistan Journal of Zoology";journal;"00309923";"University of Punjab (new Campus)";No;No;0,191;Q4;38;260;1201;9925;701;1201;0,51;38,17;32,06;2;Pakistan;Asiatic Region;"University of Punjab (new Campus)";"1975, 1979-1982, 1994-2026";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +22536;4000148208;"Prague Medical Report";journal;"23362936, 12146994";"Karolinum - Nakladatelstvi Univerzity Karlovy";Yes;Yes;0,191;Q4;26;39;93;484;73;93;0,81;12,41;42,58;0;Czech Republic;Eastern Europe;"Karolinum - Nakladatelstvi Univerzity Karlovy";"2004-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22537;12400154740;"Revista Facultad de Ingenieria";journal;"01206230, 24222844";"Universidad de Antioquia";Yes;Yes;0,191;Q4;21;53;133;1832;87;124;0,55;34,57;34,59;0;Colombia;Latin America;"Universidad de Antioquia";"2008-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +22538;22988;"Revista Venezolana de Gerencia";journal;"13159984";"Universidad del Zulia";Yes;Yes;0,191;Q4;19;207;621;8768;503;601;0,80;42,36;39,61;0;Venezuela;Latin America;"Universidad del Zulia";"1996-2026";"Business, Management and Accounting (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Business, Management and Accounting; Social Sciences" +22539;21101083151;"Rossijskij Osteopaticeskij Zurnal";journal;"22200975, 29493064";"Russian Osteopathic Association";No;No;0,191;Q4;8;52;150;1422;105;133;0,73;27,35;59,30;0;Russian Federation;Eastern Europe;"Russian Osteopathic Association";"2019-2025";"Complementary and Alternative Medicine (Q4); Complementary and Manual Therapy (Q4); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine" +22540;25220;"Russian Journal of Electrochemistry";journal;"10231935, 16083342";"Pleiades Publishing";No;No;0,191;Q4;50;82;352;3472;306;351;0,91;42,34;46,30;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Electrochemistry (Q4)";"Chemistry" +22541;19333;"Sante Publique";journal;"09953914";"Societe Francaise de Sante Publique";No;No;0,191;Q4;24;121;375;0;139;355;0,33;0,00;59,55;1;France;Western Europe;"Societe Francaise de Sante Publique";"1947, 1973-1979, 1993, 1996-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +22542;14446;"Technology and Disability";journal;"1878643X, 10554181";"SAGE Publications Ltd";No;No;0,191;Q4;40;7;44;287;51;44;0,62;41,00;32,26;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2025";"Biomedical Engineering (Q4); Health Informatics (Q4); Rehabilitation (Q4)";"Engineering; Medicine" +22543;21100258947;"Teoriya i Praktika Fizicheskoy Kultury";journal;"00403601";"Committee on Physical Culture and Sports of the Council of Ministers of the USSR";No;No;0,191;Q4;14;600;1702;3219;269;1389;0,18;5,37;62,36;0;Russian Federation;Eastern Europe;"Committee on Physical Culture and Sports of the Council of Ministers of the USSR";"1955, 1961, 2012-2026";"Education (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Social Sciences" +22544;24011;"Tropical Zoology";journal;"19709528, 03946975";"Page Press Publications";Yes;No;0,191;Q4;29;6;19;243;18;19;1,00;40,50;16,67;0;United Kingdom;Western Europe;"Page Press Publications";"1988-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +22545;21101244194;"Turkish Journal of Mathematics and Computer Science";journal;"21481830";"Association of Mathematicians (MATDER)";No;No;0,191;Q4;6;50;150;1414;74;150;0,46;28,28;31,82;0;Turkey;Middle East;"Association of Mathematicians (MATDER)";"2020-2025";"Computer Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Mathematics" +22546;19500157309;"Zbornik radova Ekonomskog fakulteta u Rijeci / Proceedings of Rijeka Faculty of Economics";journal;"18467520, 13318004";"University of Rijeka, Faculty of Economics and Business";Yes;No;0,191;Q4;23;18;57;1209;54;57;0,81;67,17;46,94;0;Croatia;Eastern Europe;"University of Rijeka, Faculty of Economics and Business";"2008-2025";"Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22547;21101060886;"Proceedings of the International Conference on Gender Research";conference and proceedings;"25162810";"Academic Conferences and Publishing International Limited";No;No;0,191;-;6;71;150;2270;129;144;1,01;31,97;82,07;0;United Kingdom;Western Europe;"Academic Conferences and Publishing International Limited";"2021-2025";"Gender Studies; Social Sciences (miscellaneous)";"Social Sciences" +22548;21100944721;"Cadernos de Traducao";journal;"21757968, 1414526X";"Universidade Federal de Santa Catarina";Yes;Yes;0,190;Q1;8;32;305;1786;78;296;0,28;55,81;53,66;0;Brazil;Latin America;"Universidade Federal de Santa Catarina";"2019-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q2); Gender Studies (Q3); Artificial Intelligence (Q4); Education (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +22549;21101011860;"James Baldwin Review";journal;"20569203, 20569211";"Manchester University Press";Yes;Yes;0,190;Q1;4;15;72;542;8;56;0,03;36,13;71,43;0;United Kingdom;Western Europe;"Manchester University Press";"2017, 2019-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +22550;21100322123;"Bollettino dell'Istituto Storico Italiano per il Medio Evo";journal;"11276096";"Istituto Storico Italiano per il Medio Evo";No;No;0,190;Q2;4;5;28;652;6;28;0,25;130,40;50,00;0;Italy;Western Europe;"Istituto Storico Italiano per il Medio Evo";"2014, 2018-2025";"History (Q2)";"Arts and Humanities" +22551;21100900365;"Cogito";journal;"20686706, 22479384";"PROUniversitaria Publishing House";Yes;Yes;0,190;Q2;9;41;123;1388;60;123;0,46;33,85;50,00;0;Romania;Eastern Europe;"PROUniversitaria Publishing House";"2018-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +22552;21100982470;"Contemporary Levant";journal;"20581831, 2058184X";"Taylor and Francis Ltd.";No;No;0,190;Q2;12;13;40;722;22;36;0,63;55,54;14,29;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22553;21100319039;"Discusiones Filosoficas";journal;"01246127";"Universidad de Caldas";Yes;Yes;0,190;Q2;6;12;55;394;12;51;0,22;32,83;22,22;0;Colombia;Latin America;"Universidad de Caldas";"2013-2025";"Philosophy (Q2)";"Arts and Humanities" +22554;21100457408;"Endoxa";journal;"11335351, 21745676";"Facultad de Filosofia, UNED";Yes;Yes;0,190;Q2;7;27;93;791;17;92;0,16;29,30;32,00;0;Spain;Western Europe;"Facultad de Filosofia, UNED";"2015-2025";"Philosophy (Q2)";"Arts and Humanities" +22555;4700152617;"Herald of the Russian Academy of Sciences";journal;"15556492, 10193316";"Pleiades Publishing";No;No;0,190;Q2;24;136;410;2099;189;398;0,18;15,43;48,98;0;United States;Northern America;"Pleiades Publishing";"2005-2025";"Cultural Studies (Q2); Political Science and International Relations (Q3)";"Social Sciences" +22556;21100894867;"International Journal of Cuban Studies";journal;"17563461, 1756347X";"Pluto Journals";Yes;Yes;0,190;Q2;5;6;48;310;24;40;0,56;51,67;33,33;0;United Kingdom;Western Europe;"Pluto Journals";"2018-2026";"Cultural Studies (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +22557;16200154787;"Islam - Zeitschrift fur Geschichte und Kultur des Islamischen Orients";journal;"16130928, 00211818";"Walter de Gruyter GmbH";No;No;0,190;Q2;21;14;52;1364;24;51;0,49;97,43;27,78;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1910-1918, 1920-1930, 1932-1933, 1935-1938, 1942, 1948, 1950, 1952-1954, 1956-1961, 1963-2005, 2008-2009, 2011-2025";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +22558;21100897527;"Journal of Arabian Studies";journal;"21534780";"Taylor and Francis Ltd.";No;No;0,190;Q2;19;9;49;734;33;47;0,44;81,56;46,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +22559;5800207887;"Journal of Modern Greek Studies";journal;"10863265, 07381727";"Johns Hopkins University Press";No;No;0,190;Q2;19;15;38;884;21;38;0,24;58,93;50,00;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22560;17600155302;"Linguistics of the Tibeto-Burman Area";journal;"22145907, 07313500";"La Trobe University";No;No;0,190;Q2;11;11;34;450;14;34;0,23;40,91;25,00;0;Netherlands;Western Europe;"La Trobe University";"2011-2025";"Linguistics and Language (Q2)";"Social Sciences" +22561;21100976854;"Philological Encounters";journal;"24519189, 24519197";"Brill Academic Publishers";No;No;0,190;Q2;5;16;40;821;21;40;0,40;51,31;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2025";"Linguistics and Language (Q2)";"Social Sciences" +22562;21101392034;"Academia Biology";journal;"28374010";"Academia.edu";No;No;0,190;Q3;6;74;97;5537;91;94;0,94;74,82;37,13;0;United States;Northern America;"Academia.edu";"2023-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Genetics (Q4); Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Molecular Biology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +22563;17653;"Comparative Sociology";journal;"15691322, 15691330";"Brill Academic Publishers";No;No;0,190;Q3;33;29;86;1938;72;86;0,87;66,83;32,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1970, 1976-1977, 1981, 1984, 1987, 1989, 1999-2025";"Sociology and Political Science (Q3)";"Social Sciences" +22564;26808;"Estudios Demograficos y Urbanos";journal;"24486515, 01867210";"Colegio de Mexico, A.C., Departamento de Publicaciones";Yes;Yes;0,190;Q3;12;24;83;1023;42;81;0,43;42,63;41,86;0;Mexico;Latin America;"Colegio de Mexico, A.C., Departamento de Publicaciones";"1986-1999, 2014-2026";"Demography (Q3); Urban Studies (Q3)";"Social Sciences" +22565;21101270451;"Fertility and Reproduction";journal;"26613182, 26613174";"World Scientific";Yes;Yes;0,190;Q3;6;28;60;775;31;59;0,45;27,68;50,91;0;Singapore;Asiatic Region;"World Scientific";"2019-2025";"Obstetrics and Gynecology (Q3); Medicine (miscellaneous) (Q4); Reproductive Medicine (Q4)";"Medicine" +22566;21101178249;"Guangdong Agricultural Sciences";journal;"1004874X";"Guangdong Academy of Agricultural Sciences";Yes;No;0,190;Q3;11;137;618;6036;384;618;0,74;44,06;43,62;0;China;Asiatic Region;"Guangdong Academy of Agricultural Sciences";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +22567;22449;"Indian Journal of History of Science";journal;"24549991, 00195235";"Indian National Science Academy";No;No;0,190;Q3;4;44;98;1434;46;98;0,46;32,59;29,51;0;India;Asiatic Region;"Indian National Science Academy";"1970-1973, 1975-1976, 1978-1984, 1986-1987, 1989-1991, 1994, 2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); History and Philosophy of Science (Q3); Social Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences; Arts and Humanities; Social Sciences" +22568;21101152743;"Indonesia Law Review";journal;"20888430, 23562129";"University of Indonesia Faculty of Law";Yes;Yes;0,190;Q3;7;12;39;462;23;39;0,54;38,50;36,00;0;Indonesia;Asiatic Region;"University of Indonesia Faculty of Law";"2019-2025";"Law (Q3); Social Sciences (miscellaneous) (Q3); Education (Q4)";"Social Sciences" +22569;21100935800;"Indonesian Journal of Biotechnology";journal;"20892241, 08538654";"Universitas Gadjah Mada, Research Center for Biotechnology";Yes;No;0,190;Q3;10;22;81;935;79;81;1,07;42,50;54,90;0;Indonesia;Asiatic Region;"Universitas Gadjah Mada, Research Center for Biotechnology";"2018-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biotechnology (Q4); Environmental Science (miscellaneous) (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +22570;21101267552;"Indonesian Journal of Environmental Law and Sustainable Development";journal;"28299590, 28299582";"Universitas Negeri Semarang";Yes;No;0,190;Q3;6;12;35;630;29;35;0,58;52,50;31,82;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2022-2025";"Law (Q3); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +22571;21101115500;"International Journal of Prosthodontics and Restorative Dentistry";journal;"2231637X, 22316361";"Jaypee Brothers Medical Publishers (P) Ltd";Yes;No;0,190;Q3;4;37;147;1291;63;129;0,53;34,89;50,91;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2019-2025";"Dentistry (miscellaneous) (Q3); Oral Surgery (Q3); Orthodontics (Q3); Periodontics (Q3)";"Dentistry" +22572;21100463068;"International Journal on Advanced Science, Engineering and Information Technology";journal;"20885334, 24606952";"Insight Society";Yes;No;0,190;Q3;41;235;888;9940;986;888;1,28;42,30;38,79;0;Indonesia;Asiatic Region;"Insight Society";"2015-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3); Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Computer Science; Engineering" +22573;21101054301;"Journal of Emergency and Critical Care Medicine";journal;"25213563";"AME Publishing Company";No;No;0,190;Q3;7;35;63;858;41;61;0,48;24,51;35,32;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2020-2025";"Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3)";"Medicine" +22574;21101189040;"Journal of Sustainable Development Law and Policy";journal;"24678392, 24678406";"Institute for Oil, Gas, Environment, Energy and Sustainable Development, Afe Babalola University";Yes;Yes;0,190;Q3;6;58;93;3453;83;84;0,93;59,53;48,75;0;Nigeria;Africa;"Institute for Oil, Gas, Environment, Energy and Sustainable Development, Afe Babalola University";"2019-2026";"Law (Q3); Social Sciences (miscellaneous) (Q3); Development (Q4)";"Social Sciences" +22575;21101034376;"Journal of Time Use Research";journal;"26647958";"International Association for Time Use Research";No;No;0,190;Q3;4;0;9;0;7;9;0,33;0,00;0,00;0;Belgium;Western Europe;"International Association for Time Use Research";"2020-2024";"Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +22576;21101133576;"Multidisciplinary Science Journal";journal;"26751240";"Malque Publishing";No;No;0,190;Q3;12;701;679;27041;791;678;1,19;38,57;41,45;1;Brazil;Latin America;"Malque Publishing";"2019-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +22577;21101034121;"Revista Argentina de Antropologia Biologica";journal;"18536387";"Asociacion de Antropologia Biologica Argentina";Yes;Yes;0,190;Q3;6;26;52;1920;26;50;0,45;73,85;60,44;0;Argentina;Latin America;"Asociacion de Antropologia Biologica Argentina";"2019-2025";"Anthropology (Q3); Archeology (Q3); Developmental Biology (Q4); Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology; Social Sciences" +22578;21100874136;"Sozialer Fortschritt";journal;"18655386, 0038609X";"Duncker und Humblot GmbH";No;No;0,190;Q3;10;35;180;1090;44;159;0,22;31,14;47,27;2;Germany;Western Europe;"Duncker und Humblot GmbH";"2008-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +22579;21464;"Acta Academiae Medicinae Sinicae";journal;"1000503X";"Chinese Academy of Medical Sciences";No;No;0,190;Q4;21;132;438;4637;231;438;0,49;35,13;44,68;0;China;Asiatic Region;"Chinese Academy of Medical Sciences";"1979-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22580;25781;"Aldrichimica Acta";journal;"00025100";"Aldrich";No;No;0,190;Q4;62;0;17;0;14;14;0,63;0,00;0,00;0;United States;Northern America;"Aldrich";"1990-2024";"Organic Chemistry (Q4)";"Chemistry" +22581;21101094480;"Current Problems in Cancer: Case Reports";journal;"26666219";"Elsevier Inc.";Yes;No;0,190;Q4;7;64;185;1199;80;185;0,49;18,73;45,92;0;United States;Northern America;"Elsevier Inc.";"2020-2026";"Oncology (Q4)";"Medicine" +22582;19900193627;"eJournal of Tax Research";journal;"14482398";"University of New South Wales";No;No;0,190;Q4;15;7;45;631;31;45;0,65;90,14;38,46;0;Australia;Pacific Region;"University of New South Wales";"2011-2025";"Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22583;21101162547;"Geological Journal (Ukraine)";journal;"10256814, 25224107";"Institute of Geological Sciences of the National Academy of Sciences of Ukraine";No;No;0,190;Q4;6;17;75;696;30;75;0,41;40,94;50,00;0;Ukraine;Eastern Europe;"Institute of Geological Sciences of the National Academy of Sciences of Ukraine";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Earth-Surface Processes (Q4); Geochemistry and Petrology (Q4); Geology (Q4)";"Earth and Planetary Sciences" +22584;21101192685;"Indonesian Food Science and Technology Journal";journal;"2615367X";"Jambi University";Yes;No;0,190;Q4;5;18;58;890;54;58;0,98;49,44;59,18;0;Indonesia;Asiatic Region;"Jambi University";"2019-2025";"Chemistry (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Food Science (Q4); Safety, Risk, Reliability and Quality (Q4)";"Agricultural and Biological Sciences; Chemistry; Engineering" +22585;17931;"Integrated Ferroelectrics";journal;"16078489, 10584587";"Taylor and Francis Ltd.";No;No;0,190;Q4;45;77;518;2262;419;511;0,82;29,38;41,42;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2026";"Ceramics and Composites (Q4); Condensed Matter Physics (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4)";"Engineering; Materials Science; Physics and Astronomy" +22586;19700186883;"International Journal of Reliability and Safety";journal;"1479389X, 14793903";"Inderscience Enterprises Ltd";No;No;0,190;Q4;24;20;48;761;51;48;1,09;38,05;28,89;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2026";"Safety, Risk, Reliability and Quality (Q4)";"Engineering" +22587;14500154739;"Journal of Computational Methods in Sciences and Engineering";journal;"14727978";"SAGE Publications Ltd";No;No;0,190;Q4;23;1048;726;27246;646;724;0,97;26,00;43,88;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2025";"Computational Mathematics (Q4); Computer Science Applications (Q4); Engineering (miscellaneous) (Q4)";"Computer Science; Engineering; Mathematics" +22588;5700160666;"Journal of Human Growth and Development";journal;"01041282, 21753598";"Centro de Estudos de Crescimento e Desenvolvimento do Ser Humano";Yes;Yes;0,190;Q4;19;47;150;1633;91;145;0,62;34,74;42,99;0;Brazil;Latin America;"Centro de Estudos de Crescimento e Desenvolvimento do Ser Humano";"2012-2025";"Life-span and Life-course Studies (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +22589;21100818502;"Journal of Information Systems and Telecommunication";journal;"23221437, 23452773";"Iranian Academic Center for Education, Culture and Research";Yes;No;0,190;Q4;13;14;95;617;68;95;0,58;44,07;31,43;0;Iran;Middle East;"Iranian Academic Center for Education, Culture and Research";"2013-2026";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Information Systems (Q4)";"Computer Science" +22590;24391;"Journal of Interdisciplinary Economics";journal;"23215305, 02601079";"SAGE Publications Inc.";No;No;0,190;Q4;16;14;38;953;42;38;1,00;68,07;29,63;1;United Kingdom;Western Europe;"SAGE Publications Inc.";"2004-2026";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +22591;21101030126;"Journal of Tropical Life Science";journal;"20875517, 25274376";"Brawijaya University";Yes;No;0,190;Q4;10;36;165;1484;171;165;1,06;41,22;48,94;0;Indonesia;Asiatic Region;"Brawijaya University";"2019-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4); Molecular Biology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +22592;21101296041;"Mathematics Open";journal;"28110072";"World Scientific";Yes;No;0,190;Q4;4;23;24;484;43;24;2,11;21,04;25,00;0;Singapore;Asiatic Region;"World Scientific";"2022-2026";"Algebra and Number Theory (Q4); Applied Mathematics (Q4); Numerical Analysis (Q4); Statistics and Probability (Q4)";"Mathematics" +22593;19700186843;"Open Chemical Engineering Journal";journal;"18741231";"Bentham Science Publishers";Yes;No;0,190;Q4;16;20;15;989;25;15;1,36;49,45;55,71;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2009-2025";"Chemical Engineering (miscellaneous) (Q4)";"Chemical Engineering" +22594;21101260628;"Orthopedic Journal of China";journal;"10058478";"";No;No;0,190;Q4;8;421;1353;10000;845;1353;0,64;23,75;26,04;0;China;Asiatic Region;"";"2022-2025";"Orthopedics and Sports Medicine (Q4)";"Medicine" +22595;21101244193;"Present Environment and Sustainable Development";journal;"22847820, 18435971";"Alexandru Ioan Cuza University of Iasi";Yes;Yes;0,190;Q4;7;42;133;1885;96;133;0,70;44,88;52,17;0;Romania;Eastern Europe;"Alexandru Ioan Cuza University of Iasi";"2020-2025";"Geography, Planning and Development (Q4)";"Social Sciences" +22596;24663;"Revista de la Asociacion Geologica Argentina";journal;"00044822";"Asociacion Geologica Argentina";Yes;Yes;0,190;Q4;50;26;115;1375;44;109;0,37;52,88;44,68;0;Argentina;Latin America;"Asociacion Geologica Argentina";"1992-1994, 1996-2025";"Earth-Surface Processes (Q4); Economic Geology (Q4); Geochemistry and Petrology (Q4); Geology (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +22597;14295;"Solid Fuel Chemistry";journal;"03615219, 19348029";"Pleiades Publishing";No;No;0,190;Q4;25;65;210;1859;157;210;0,77;28,60;34,39;0;United States;Northern America;"Pleiades Publishing";"1975-1989, 1995-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Fuel Technology (Q4)";"Chemical Engineering; Chemistry; Energy" +22598;21101050900;"South East Asian Journal of Mathematics and Mathematical Sciences";journal;"09727752, 25820850";"RAMANUJAN SOCIETY OF MATHEMATICS AND MATHEMATICAL SCIENCES";No;No;0,190;Q4;7;55;307;1244;138;307;0,33;22,62;38,36;0;India;Asiatic Region;"RAMANUJAN SOCIETY OF MATHEMATICS AND MATHEMATICAL SCIENCES";"2019-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4); Computational Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)";"Mathematics" +22599;30360;"Tribology and Lubrication Technology";trade journal;"1545858X";"Society of Tribologists and Lubrication Engineers";No;No;0,190;Q4;29;140;380;345;37;380;0,11;2,46;44,00;0;United States;Northern America;"Society of Tribologists and Lubrication Engineers";"2003-2026";"Mechanical Engineering (Q4); Mechanics of Materials (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science; Physics and Astronomy" +22600;26852;"US Geological Survey Professional Paper";journal;"10449612, 23307102";"US Geological Survey";No;No;0,190;Q4;40;5;20;752;25;19;1,22;150,40;35,00;1;United States;Northern America;"US Geological Survey";"1964, 1966, 1968-1971, 1978-2012, 2019-2026";"Geology (Q4); Water Science and Technology (Q4)";"Earth and Planetary Sciences; Environmental Science" +22601;24017;"ZWF Zeitschrift fuer Wirtschaftlichen Fabrikbetrieb";journal;"09470085, 25110896";"Walter de Gruyter GmbH";No;No;0,190;Q4;20;226;535;3423;177;496;0,30;15,15;18,08;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1995-2026";"Engineering (miscellaneous) (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering" +22602;21101180312;"International Conference on Operations Research and Enterprise Systems";conference and proceedings;"21844372";"Science and Technology Publications, Lda";No;No;0,190;-;6;36;117;736;58;114;0,57;20,44;28,70;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2019-2025";"Computer Science (miscellaneous); Control and Optimization; Management Science and Operations Research; Theoretical Computer Science";"Computer Science; Decision Sciences; Mathematics" +22603;21101183610;"International Conference on Pattern Recognition Applications and Methods";conference and proceedings;"21844313";"Science and Technology Publications, Lda";No;No;0,190;-;8;90;315;2298;199;312;0,63;25,53;22,49;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2019-2025";"Artificial Intelligence; Computer Vision and Pattern Recognition";"Computer Science" +22604;21101107127;"Progress in Marine Science and Technology";conference and proceedings;"25430963, 25430955";"IOS Press BV";No;No;0,190;-;7;127;167;1912;88;159;0,41;15,06;26,22;0;Netherlands;Western Europe;"IOS Press BV";"2018-2020, 2022-2025";"Mechanical Engineering; Ocean Engineering; Safety, Risk, Reliability and Quality";"Engineering" +22605;21101288813;"Ancient Philosophy Today: Dialogoi";journal;"25161164, 25161156";"Edinburgh University Press";No;No;0,189;Q1;3;11;39;405;17;34;0,48;36,82;25,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"2021-2025";"Classics (Q1); Philosophy (Q2)";"Arts and Humanities" +22606;21100982310;"Logos: Revista de Linguistica, Filosofia y Literatura";journal;"07167520, 07193262";"Universidad de la Serena,Departamento de Artes y Letras";Yes;Yes;0,189;Q1;7;59;90;2025;30;90;0,26;34,32;48,00;0;Chile;Latin America;"Universidad de la Serena,Departamento de Artes y Letras";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +22607;5700152915;"Research in African Literatures";journal;"15272044, 00345210";"Indiana University Press";No;No;0,189;Q1;29;31;90;1058;42;89;0,42;34,13;45,83;0;United States;Northern America;"Indiana University Press";"2002-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +22608;5800209720;"Slovo (Croatia)";journal;"05836255";"Staroslavenski Institut";No;No;0,189;Q1;5;8;28;248;7;27;0,15;31,00;83,33;0;Croatia;Eastern Europe;"Staroslavenski Institut";"2011-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +22609;5700169412;"Acta Comportamentalia";journal;"01888145";"Universidad Nacional Autonoma de Mexico";No;No;0,189;Q2;6;37;108;1535;23;107;0,18;41,49;42,17;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2017-2025";"Linguistics and Language (Q2); Applied Psychology (Q4); Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +22610;21101090675;"Asia-Pacific Journal: Japan Focus";journal;"15574660";"Cambridge University Press";Yes;Yes;0,189;Q2;11;23;200;1100;78;185;0,35;47,83;41,38;0;United Kingdom;Western Europe;"Cambridge University Press";"2019-2026";"Cultural Studies (Q2); History (Q2); Anthropology (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22611;21100978909;"Documenta et Instrumenta";journal;"16974328, 16973798";"Universidad Complutense Madrid";Yes;Yes;0,189;Q2;3;17;34;610;6;34;0,22;35,88;36,84;0;Spain;Western Europe;"Universidad Complutense Madrid";"2019-2025";"History (Q2)";"Arts and Humanities" +22612;21100324067;"Global Journal Al-Thaqafah";journal;"22320474, 22320482";"Universiti Sultan Azlan Shah";Yes;No;0,189;Q2;13;96;158;4066;118;158;0,64;42,35;40,39;0;Malaysia;Asiatic Region;"Universiti Sultan Azlan Shah";"2011-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +22613;21101251298;"HoST - Journal of History of Science and Technology";journal;"16467752";"Sciendo";Yes;Yes;0,189;Q2;5;13;39;834;23;35;0,38;64,15;31,82;0;Poland;Eastern Europe;"Sciendo";"2019-2025";"History (Q2); History and Philosophy of Science (Q3); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +22614;21100792751;"International Journal of Religion and Spirituality in Society";journal;"21548633, 21548641";"Common Ground Research Networks";No;No;0,189;Q2;7;42;87;1994;37;87;0,59;47,48;39,62;0;United States;Northern America;"Common Ground Research Networks";"2016-2025";"Religious Studies (Q2)";"Arts and Humanities" +22615;21100830428;"Journal of Applied Linguistics and Professional Practice";journal;"20403666, 20403658";"University of Toronto Press";No;No;0,189;Q2;23;5;40;179;18;39;0,47;35,80;40,00;0;United Kingdom;Western Europe;"University of Toronto Press";"2010-2020, 2022-2025";"Linguistics and Language (Q2); Education (Q4)";"Social Sciences" +22616;21101046695;"Journal of Historical Sociolinguistics";journal;"21992908";"De Gruyter Mouton";No;No;0,189;Q2;9;17;30;1263;20;30;0,55;74,29;50,00;0;Germany;Western Europe;"De Gruyter Mouton";"2015-2026";"Linguistics and Language (Q2)";"Social Sciences" +22617;21100901481;"Journal of Interactional Research in Communication Disorders";journal;"2040512X, 20405111";"University of Toronto Press";No;No;0,189;Q2;5;15;45;794;30;42;0,45;52,93;73,68;0;United Kingdom;Western Europe;"University of Toronto Press";"2018-2026";"Linguistics and Language (Q2); Speech and Hearing (Q4)";"Health Professions; Social Sciences" +22618;5900153340;"Museum International";journal;"13500775, 14680033";"Taylor and Francis Ltd.";No;No;0,189;Q2;29;14;67;427;50;57;0,55;30,50;72,73;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1948-1954, 1956-1969, 1971-2012, 2014-2025";"Conservation (Q2); Museology (Q2)";"Arts and Humanities" +22619;21101036618;"Quaderns de Filologia: Estudis Linguistics";journal;"1135416X, 24441449";"Universitat de Valencia, Faculty of Philology, Translation and Communication";Yes;Yes;0,189;Q2;5;10;32;298;20;30;0,25;29,80;86,67;0;Spain;Western Europe;"Universitat de Valencia, Faculty of Philology, Translation and Communication";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +22620;21100201987;"Southern African Humanities";journal;"16815564, 23052791";"Natal Museum";No;No;0,189;Q2;26;3;26;285;9;25;0,41;95,00;50,00;0;South Africa;Africa;"Natal Museum";"2008-2024";"Archeology (arts and humanities) (Q2); Cultural Studies (Q2); History (Q2); Anthropology (Q3); Archeology (Q3)";"Arts and Humanities; Social Sciences" +22621;5600156255;"Tydskrif vir Geesteswetenskappe";journal;"00414751, 22247912";"South African Academy for Science and the Arts";Yes;No;0,189;Q2;9;46;154;1859;17;138;0,09;40,41;32,50;0;South Africa;Africa;"South African Academy for Science and the Arts";"2009-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +22622;19400157142;"Chiang Mai University Journal of Natural Sciences";journal;"16851994";"Chiang Mai University";No;No;0,189;Q3;19;0;66;0;70;66;0,00;0,00;0,00;0;Thailand;Asiatic Region;"Chiang Mai University";"2003, 2006, 2009-2022";"Agricultural and Biological Sciences (miscellaneous) (Q3); Dentistry (miscellaneous) (Q3); Health Professions (miscellaneous) (Q3); Multidisciplinary (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Dentistry; Environmental Science; Health Professions; Medicine; Multidisciplinary; Pharmacology, Toxicology and Pharmaceutics" +22623;21101039795;"Chinese Journal of General Practitioners";journal;"16717368";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,189;Q3;13;232;723;5755;356;710;0,62;24,81;51,72;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Family Practice (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +22624;21101012656;"Drug Development and Registration";journal;"26585049, 23052066";"";Yes;Yes;0,189;Q3;10;97;333;2553;172;317;0,47;26,32;60,39;0;Russian Federation;Eastern Europe;"";"2019-2025";"Pharmaceutical Science (Q3); Pharmacy (Q3); Drug Discovery (Q4)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +22625;11200153521;"Faguang Xuebao/Chinese Journal of Luminescence";journal;"10007032";"Editorial Office of Chinese Optics";No;No;0,189;Q3;22;200;582;9945;587;581;1,04;49,73;37,93;0;China;Asiatic Region;"Editorial Office of Chinese Optics";"2008-2026";"Radiation (Q3); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Materials Science; Physics and Astronomy" +22626;21100473251;"Grudnaya i Serdechno-Sosudistaya Khirurgiya";journal;"02362791, 24108685";"Bakoulev National Medical Research Center for Cardiovascular Surgery";No;No;0,189;Q3;6;47;251;1196;119;250;0,55;25,45;29,23;0;Russian Federation;Eastern Europe;"Bakoulev National Medical Research Center for Cardiovascular Surgery";"1990-1993, 2019-2025";"Surgery (Q3); Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +22627;21100241782;"Ibersid";journal;"2174081X, 18880967";"Universidad de Zaragoza, Facultad de Filosofia y Letras";No;Yes;0,189;Q3;7;20;65;717;29;65;0,50;35,85;55,10;0;Spain;Western Europe;"Universidad de Zaragoza, Facultad de Filosofia y Letras";"2012-2025";"Communication (Q3); Library and Information Sciences (Q3); Computer Networks and Communications (Q4); Information Systems (Q4)";"Computer Science; Social Sciences" +22628;19700186899;"International Journal of Applied Systemic Studies";journal;"17510597, 17510589";"Inderscience Enterprises Ltd";No;No;0,189;Q3;11;21;55;1188;75;55;1,48;56,57;37,14;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2018, 2020, 2022-2025";"Information Systems and Management (Q3); Computer Science Applications (Q4); Control and Systems Engineering (Q4)";"Computer Science; Decision Sciences; Engineering" +22629;21101066734;"Israa University Journal of Applied Science";journal;"25230522";"Israa University";No;No;0,189;Q3;5;25;50;943;40;50;0,76;37,72;35,82;0;Palestine;Middle East;"Israa University";"2017-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +22630;21100898973;"Journal of Statistics Applications and Probability";journal;"20908423, 20908431";"Natural Sciences Publishing";No;No;0,189;Q3;19;62;338;2467;442;338;1,63;39,79;27,74;0;United States;Northern America;"Natural Sciences Publishing";"2018-2026";"Library and Information Sciences (Q3); Statistical and Nonlinear Physics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics; Physics and Astronomy; Social Sciences" +22631;21101132408;"Kufa Journal for Agricultural Sciences";journal;"23128186, 20727798";"University of Kufa";Yes;No;0,189;Q3;4;48;87;1323;59;87;0,75;27,56;28,24;0;Iraq;Middle East;"University of Kufa";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Food Science (Q4); Horticulture (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +22632;21101208677;"North African Journal of Food and Nutrition Research";journal;"25881582";"Laboratoire de Nutrition, Pathologie, Agro-biotechnologie et Sante (LAB-NUPABS)";Yes;No;0,189;Q3;5;47;96;2334;92;95;0,99;49,66;57,65;0;Algeria;Africa;"Laboratoire de Nutrition, Pathologie, Agro-biotechnologie et Sante (LAB-NUPABS)";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Food Science (Q4); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Nursing" +22633;21101192682;"Nuevo Derecho";journal;"20114540, 2500672X";"University Institution of Envigado";Yes;Yes;0,189;Q3;3;10;43;489;12;37;0,24;48,90;28,57;0;Colombia;Latin America;"University Institution of Envigado";"2019-2025";"Law (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +22634;28818;"Nursing";journal;"03604039, 15388689";"Lippincott Williams and Wilkins Ltd.";No;No;0,189;Q3;30;172;521;1899;196;454;0,31;11,04;80,84;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1971-2026";"Advanced and Specialized Nursing (Q3); Emergency Nursing (Q3); Assessment and Diagnosis (Q4); Critical Care Nursing (Q4); LPN and LVN (Q4)";"Nursing" +22635;21100858119;"Pharmaceutical Sciences Asia";journal;"25868195, 25868470";"Mahidol University - Faculty of Pharmacy";Yes;Yes;0,189;Q3;11;48;145;2172;117;145;0,69;45,25;57,24;0;Thailand;Asiatic Region;"Mahidol University - Faculty of Pharmacy";"2017-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +22636;21101033834;"Review of Applied Socio-Economic Research";journal;"22476172";"Pro Global Science Association";No;No;0,189;Q3;7;26;76;1085;69;69;0,55;41,73;46,00;0;Romania;Eastern Europe;"Pro Global Science Association";"2019-2025";"Social Sciences (miscellaneous) (Q3); Business and International Management (Q4); Economics and Econometrics (Q4); Management of Technology and Innovation (Q4); Marketing (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +22637;12100156731;"South Asia Economic Journal";journal;"0973077X, 13915614";"Sage Publications India Pvt. Ltd";No;No;0,189;Q3;23;9;29;438;27;28;0,89;48,67;35,00;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2000-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +22638;18905;"Tierarztliche Praxis Ausgabe G: Grosstiere - Nutztiere";journal;"14341220, 25675834";"Georg Thieme Verlag";No;No;0,189;Q3;23;42;146;1573;50;120;0,21;37,45;57,86;0;Germany;Western Europe;"Georg Thieme Verlag";"1996-2026";"Food Animals (Q3); Veterinary (miscellaneous) (Q3)";"Veterinary" +22639;21644;"University of Illinois Law Review";journal;"02769948";"University of Illinois College of Law";No;No;0,189;Q3;39;39;131;14760;86;131;0,46;378,46;25,00;0;United States;Northern America;"University of Illinois College of Law";"1990-1992, 1994-2026";"Law (Q3)";"Social Sciences" +22640;21100463095;"Acta Mycologica";journal;"2353074X, 0001625X";"Polish Botanical Society";Yes;No;0,189;Q4;11;2;33;127;28;33;0,56;63,50;69,23;0;Poland;Eastern Europe;"Polish Botanical Society";"2015-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +22641;21101272732;"Asian Pacific Journal of Cancer Care";journal;"25883682";"West Asia Organization for Cancer Prevention";Yes;Yes;0,189;Q4;7;76;247;1701;131;245;0,53;22,38;39,33;0;Iran;Middle East;"West Asia Organization for Cancer Prevention";"2021-2026";"Medicine (miscellaneous) (Q4); Oncology (Q4); Oncology (nursing) (Q4)";"Medicine; Nursing" +22642;21101274774;"AUT Journal of Mathematics and Computing";journal;"27832449, 27832287";"Amirkabir University of Technology";Yes;Yes;0,189;Q4;4;32;80;718;44;80;0,61;22,44;23,81;0;Iran;Middle East;"Amirkabir University of Technology";"2021-2026";"Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Statistics and Probability (Q4)";"Computer Science; Mathematics" +22643;145725;"Beijing Gongye Daxue Xuebao / Journal of Beijing University of Technology";journal;"02540037";"Beijing University of Technology";No;No;0,189;Q4;22;97;400;3314;330;400;0,79;34,16;38,10;0;China;Asiatic Region;"Beijing University of Technology";"2005-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +22644;19700176902;"BrewingScience";journal;"18665195, 16132041";"Fachverlag Hans Carl";No;No;0,189;Q4;23;5;50;175;33;46;0,70;35,00;39,29;0;Germany;Western Europe;"Fachverlag Hans Carl";"2007-2025";"Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +22645;19900192610;"Buletinul Academiei de Stiinte a Republicii Moldova. Matematica";journal;"10247696";"Publishing and Printing State Enterprise Stiinta";Yes;No;0,189;Q4;10;9;63;131;21;63;0,33;14,56;47,06;0;Moldova;Eastern Europe;"Publishing and Printing State Enterprise Stiinta";"2011-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +22646;21100199834;"Central European Journal of Energetic Materials";journal;"17337178";"Institute of Industrial Organic Chemistry";Yes;No;0,189;Q4;37;21;59;710;43;59;0,64;33,81;23,46;0;Poland;Eastern Europe;"Institute of Industrial Organic Chemistry";"2009, 2011-2025";"Materials Chemistry (Q4); Organic Chemistry (Q4)";"Chemistry; Materials Science" +22647;21100935898;"Computer Science Journal of Moldova";journal;"15614042";"Institute of Mathematics and Computer Science of Moldova";Yes;Yes;0,189;Q4;8;20;66;539;65;63;1,02;26,95;40,91;0;Moldova;Eastern Europe;"Institute of Mathematics and Computer Science of Moldova";"2019-2025";"Artificial Intelligence (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Control and Optimization (Q4); Modeling and Simulation (Q4); Software (Q4)";"Computer Science; Mathematics" +22648;21100894488;"Current Directions in Biomedical Engineering";journal;"23645504";"Walter de Gruyter GmbH";Yes;Yes;0,189;Q4;22;0;660;0;391;660;0,55;0,00;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2015-2024";"Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)";"Engineering; Medicine" +22649;23501;"Doklady Chemistry";journal;"00125008, 16083113";"Pleiades Publishing";No;No;0,189;Q4;26;20;108;719;90;108;0,58;35,95;43,68;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +22650;5700154120;"Giornale Italiano di Psicologia";journal;"26122413, 03905349";"Societa Editrice Il Mulino";No;No;0,189;Q4;20;66;183;2390;66;171;0,40;36,21;50,43;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2001-2002, 2011-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +22651;21101198441;"Gorenie I Vzryv";journal;"23059117";"Torus Press Publishing House";No;No;0,189;Q4;4;30;147;666;34;146;0,23;22,20;24,49;0;Russian Federation;Eastern Europe;"Torus Press Publishing House";"2021-2025";"Mechanical Engineering (Q4)";"Engineering" +22652;14644;"Guofang Keji Daxue Xuebao/Journal of National University of Defense Technology";journal;"10012486";"National University of Defense Technology";No;No;0,189;Q4;23;144;437;4427;319;437;0,74;30,74;26,42;0;China;Asiatic Region;"National University of Defense Technology";"1998, 2001-2025";"Electrical and Electronic Engineering (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Modeling and Simulation (Q4)";"Engineering; Materials Science; Mathematics" +22653;19800188009;"Iheringia - Serie Botanica";journal;"00734705, 24468231";"Fundacao Zoobotanica do Rio Grande do Sul";Yes;Yes;0,189;Q4;21;7;62;313;41;61;0,66;44,71;65,22;0;Brazil;Latin America;"Fundacao Zoobotanica do Rio Grande do Sul";"2004-2026";"Plant Science (Q4)";"Agricultural and Biological Sciences" +22654;5700164134;"Interamerican Journal of Psychology";journal;"00349690";"Sociedad Interamericana de Psicologia";Yes;Yes;0,189;Q4;28;31;92;1483;45;92;0,45;47,84;50,00;0;United States;Northern America;"Sociedad Interamericana de Psicologia";"2000-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +22655;19700202601;"International Review on Modelling and Simulations";journal;"19749821, 25331701";"Praise Worthy Prize S.r.l";No;No;0,189;Q4;27;35;134;1394;141;134;0,97;39,83;20,00;0;Italy;Western Europe;"Praise Worthy Prize S.r.l";"2010-2025";"Applied Mathematics (Q4); Chemical Engineering (miscellaneous) (Q4); Discrete Mathematics and Combinatorics (Q4); Electrical and Electronic Engineering (Q4); Logic (Q4); Mechanical Engineering (Q4); Modeling and Simulation (Q4)";"Chemical Engineering; Engineering; Mathematics" +22656;19700201512;"IPSJ Transactions on System LSI Design Methodology";journal;"18826687";"Information Processing Society of Japan";No;No;0,189;Q4;14;6;18;93;17;16;1,13;15,50;0,00;0;Japan;Asiatic Region;"Information Processing Society of Japan";"2008-2026";"Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +22657;21101266853;"Iraqi Bulletin of Geology and Mining";journal;"30053714, 18114539";"Iraq Geological Survey";Yes;Yes;0,189;Q4;6;58;51;2121;45;50;0,85;36,57;17,86;0;Iraq;Middle East;"Iraq Geological Survey";"2020-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Geology (Q4); Geophysics (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +22658;21100332407;"Journal of Biomimetics, Biomaterials and Biomedical Engineering";journal;"22969837, 22969845";"Trans Tech Publications";No;No;0,189;Q4;19;29;139;1172;116;138;0,96;40,41;30,10;0;Germany;Western Europe;"Trans Tech Publications";"2014-2026";"Bioengineering (Q4); Biomedical Engineering (Q4); Biotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering" +22659;21101283805;"Journal of Clinical Medicine of Kazakhstan";journal;"23131519, 18122892";"National Scientific Medical Center";Yes;No;0,189;Q4;6;82;244;2482;135;239;0,65;30,27;55,23;0;Kazakhstan;Asiatic Region;"National Scientific Medical Center";"2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22660;21101262911;"Journal of Mathematics and Modeling in Finance";journal;"27830578, 2783056X";"";Yes;No;0,189;Q4;3;25;71;708;32;71;0,49;28,32;27,45;0;Iran;Middle East;"";"2021-2026";"Computational Mathematics (Q4); Finance (Q4); Modeling and Simulation (Q4)";"Economics, Econometrics and Finance; Mathematics" +22661;21101108652;"Journal of Numerical Analysis and Approximation Theory";journal;"24576794, 2501059X";"Publishing House of the Romanian Academy";Yes;Yes;0,189;Q4;7;22;53;465;27;53;0,41;21,14;14,29;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2003, 2015-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Mathematics (miscellaneous) (Q4); Numerical Analysis (Q4)";"Mathematics" +22662;4500151517;"Journal of Textile Engineering";journal;"18801986, 13468235";"Textile Machinery Society of Japan";No;No;0,189;Q4;17;16;51;239;10;50;0,19;14,94;16,07;0;Japan;Asiatic Region;"Textile Machinery Society of Japan";"2000-2026";"Materials Science (miscellaneous) (Q4)";"Materials Science" +22663;21100198508;"Mathematics Magazine";journal;"0025570X, 19300980";"Taylor and Francis Ltd.";No;No;0,189;Q4;15;100;234;664;27;212;0,14;6,64;22,50;0;United States;Northern America;"Taylor and Francis Ltd.";"1951, 1954, 1959, 1964, 1967, 1969, 1971, 1974, 1978, 1982, 1984, 1989-1990, 1993, 1997-1998, 2008, 2010-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +22664;21100944563;"Mediterranean Journal of Infection, Microbes and Antimicrobials";journal;"2147673X";"Galenos Publishing House";Yes;Yes;0,189;Q4;6;22;77;481;43;76;0,67;21,86;56,76;0;Turkey;Middle East;"Galenos Publishing House";"2018-2026";"Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4)";"Immunology and Microbiology; Medicine" +22665;21100202514;"Nonlinear Studies";journal;"21534373, 13598678";"Cambridge Scientific Publishers";No;No;0,189;Q4;24;95;262;2793;137;262;0,57;29,40;29,61;0;United Kingdom;Western Europe;"Cambridge Scientific Publishers";"2010-2025";"Applied Mathematics (Q4); Modeling and Simulation (Q4)";"Mathematics" +22666;21101058433;"Plasmatology";journal;"26348535";"SAGE Publications Ltd";Yes;Yes;0,189;Q4;15;4;30;121;30;29;0,55;30,25;60,87;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2021-2025";"Hematology (Q4)";"Medicine" +22667;19700174720;"Revista Colombiana de Entomologia";journal;"01200488";"Sociedad Colombiana de Entomologia";Yes;Yes;0,189;Q4;25;15;60;816;32;60;0,39;54,40;34,48;0;Colombia;Latin America;"Sociedad Colombiana de Entomologia";"2004-2025";"Insect Science (Q4)";"Agricultural and Biological Sciences" +22668;21100972133;"Scientia Sinica Chimica";journal;"16747224, 20959435";"Science Press";No;No;0,189;Q4;17;220;544;18490;367;528;0,77;84,05;39,83;0;China;Asiatic Region;"Science Press";"2017-2026";"Biochemistry (Q4); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Materials Science" +22669;19700186858;"Scientific and Technical Information Processing";journal;"01476882, 19348118";"Pleiades Publishing";No;No;0,189;Q4;17;84;217;2075;113;217;0,61;24,70;40,31;0;United States;Northern America;"Pleiades Publishing";"2008-2025";"Computer Science (miscellaneous) (Q4)";"Computer Science" +22670;21100853599;"Vestnik of Saint Petersburg University. Earth Sciences";journal;"2587585X, 25419668";"St. Petersburg University Press";No;No;0,189;Q4;11;30;108;1144;50;108;0,40;38,13;46,46;0;Russian Federation;Eastern Europe;"St. Petersburg University Press";"2017-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Geology (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +22671;110624;"Proceedings of the Annual Offshore Technology Conference";conference and proceedings;"01603663";"Offshore Technology Conference";No;No;0,189;-;46;365;684;5289;412;682;0,60;14,49;18,88;0;United States;Northern America;"Offshore Technology Conference";"1969-2005, 2007-2023, 2025";"Energy Engineering and Power Technology; Mechanical Engineering; Ocean Engineering; Safety, Risk, Reliability and Quality";"Energy; Engineering" +22672;21101045273;"Proceedings of the Asian Technology Conference in Mathematics";conference and proceedings;"19404204";"Mathematics and Technology, LLC";No;No;0,189;-;4;52;109;850;19;105;0,22;16,35;30,12;0;United States;Northern America;"Mathematics and Technology, LLC";"2020-2025";"Applied Mathematics; Computational Mathematics; Computational Theory and Mathematics";"Computer Science; Mathematics" +22673;70837;"Anuario de Estudios Atlanticos";journal;"23865571, 05704065";"Casa de Colon, Cabildo de Gran Canaria";No;No;0,188;Q1;3;21;61;1545;17;60;0,24;73,57;34,29;0;Spain;Western Europe;"Casa de Colon, Cabildo de Gran Canaria";"1969, 2021-2025";"Literature and Literary Theory (Q1); Arts and Humanities (miscellaneous) (Q2); History (Q2)";"Arts and Humanities" +22674;28381;"Classical Antiquity";journal;"10678344, 02786656";"University of California Press";No;No;0,188;Q1;47;6;40;611;24;38;0,52;101,83;33,33;0;United States;Northern America;"University of California Press";"1982-2025";"Classics (Q1)";"Arts and Humanities" +22675;21101163376;"Journal of Indian Ocean World Studies";journal;"25613111";"McGill University Library";Yes;Yes;0,188;Q1;4;3;27;170;11;20;0,25;56,67;66,67;0;Canada;Northern America;"McGill University Library";"2019-2025";"Literature and Literary Theory (Q1); History (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +22676;21100976733;"Przeglad Rusycystyczny";journal;"0137298X";"Polskie Towarzystwo Rusycystyczne";Yes;Yes;0,188;Q1;3;56;167;1810;13;163;0,09;32,32;54,55;0;Poland;Eastern Europe;"Polskie Towarzystwo Rusycystyczne";"2019-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q2); Philosophy (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +22677;18536;"Textual Practice";journal;"0950236X, 14701308";"Routledge";No;No;0,188;Q1;32;179;308;6152;161;273;0,43;34,37;47,34;0;United Kingdom;Western Europe;"Routledge";"1987-2026";"Literature and Literary Theory (Q1)";"Arts and Humanities" +22678;21101192681;"Bosniaca";journal;"15125033, 23038888";"National and University Library of Bosnia and Herzegovina";Yes;Yes;0,188;Q2;2;18;39;485;13;36;0,35;26,94;80,95;0;Bosnia and Herzegovina;Eastern Europe;"National and University Library of Bosnia and Herzegovina";"2022-2025";"Cultural Studies (Q2); Social Sciences (miscellaneous) (Q3); Education (Q4)";"Social Sciences" +22679;21101018931;"Entangled Religions";journal;"23636696";"Center for Religious Studies";Yes;Yes;0,188;Q2;7;8;84;448;29;83;0,26;56,00;30,00;0;Germany;Western Europe;"Center for Religious Studies";"2019-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +22680;5600153136;"European Legacy";journal;"14701316, 10848770";"Taylor and Francis Ltd.";No;No;0,188;Q2;13;72;184;2058;36;169;0,17;28,58;25,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-1999, 2001-2002, 2008-2026";"Cultural Studies (Q2); History (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +22681;5800224540;"Gregorianum";journal;"00174114";"Gregorian University Press";No;No;0,188;Q2;9;0;54;0;6;50;0,11;0,00;0,00;0;Italy;Western Europe;"Gregorian University Press";"2002-2021, 2023-2024";"Religious Studies (Q2)";"Arts and Humanities" +22682;21100197120;"Journal of Buddhist Ethics";journal;"10769005";"Pennsylvania State University";Yes;No;0,188;Q2;11;9;33;362;14;32;0,50;40,22;30,00;0;United States;Northern America;"Pennsylvania State University";"1998-1999, 2002, 2011-2025";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +22683;21100403904;"Journal of Sufi Studies";journal;"22105956, 22105948";"Brill Academic Publishers";No;No;0,188;Q2;12;9;23;1028;14;23;0,63;114,22;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2018, 2020-2025";"Cultural Studies (Q2); History (Q2); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +22684;16433;"Journal of the History of Medicine and Allied Sciences";journal;"14684373, 00225045";"Oxford University Press";No;No;0,188;Q2;37;21;64;2642;48;63;0,63;125,81;44,00;0;United Kingdom;Western Europe;"Oxford University Press";"1946-2026";"History (Q2); Geriatrics and Gerontology (Q4)";"Arts and Humanities; Medicine" +22685;16200154722;"Revue Biblique";journal;"00350907, 24668583";"Peeters Publishers";No;No;0,188;Q2;12;36;82;2209;10;77;0,13;61,36;12,50;0;France;Western Europe;"Peeters Publishers";"2002-2025";"Archeology (arts and humanities) (Q2); History (Q2); Religious Studies (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +22686;21101049097;"Soudobe Dejiny";journal;"12107050, 26950952";"Institute of Contemporary History of the Czech Academy of Sciences";No;No;0,188;Q2;3;23;79;1032;16;67;0,21;44,87;32,00;0;Czech Republic;Eastern Europe;"Institute of Contemporary History of the Czech Academy of Sciences";"2019-2025";"History (Q2)";"Arts and Humanities" +22687;21101264290;"Annals of Computer Science and Intelligence Systems";journal;"23005963";"Institute of Electrical and Electronics Engineers Inc.";Yes;Yes;0,188;Q3;4;108;100;2805;98;97;0,98;25,97;25,75;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Information Systems and Management (Q3); Artificial Intelligence (Q4); Computer Science Applications (Q4); Information Systems (Q4)";"Computer Science; Decision Sciences" +22688;14552;"Doklady Biological Sciences";journal;"00124966, 16083105";"";No;No;0,188;Q3;22;61;205;1303;142;205;0,64;21,36;55,02;0;Russian Federation;Eastern Europe;"";"1972-1974, 1979-1990, 2000-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Immunology and Microbiology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +22689;21100885611;"European Journal of Comparative Law and Governance";journal;"22134506, 22134514";"Brill Academic Publishers";No;No;0,188;Q3;11;31;50;3206;32;48;0,67;103,42;30,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2026";"Law (Q3); Sociology and Political Science (Q3); Public Administration (Q4)";"Social Sciences" +22690;21100464775;"Hospitality and Society";journal;"20427921, 20427913";"Intellect Ltd.";No;No;0,188;Q3;25;15;44;1035;58;40;0,64;69,00;54,55;0;United Kingdom;Western Europe;"Intellect Ltd.";"2011-2026";"Social Sciences (miscellaneous) (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +22691;21100200830;"International Journal of Information Science and Management";journal;"20088310, 20088302";"Regional Information Center for Science and Technology";Yes;Yes;0,188;Q3;16;52;224;2120;198;224;0,97;40,77;52,50;0;Iran;Middle East;"Regional Information Center for Science and Technology";"2008-2025";"Information Systems and Management (Q3); Library and Information Sciences (Q3); Management Information Systems (Q4); Statistics, Probability and Uncertainty (Q4)";"Business, Management and Accounting; Decision Sciences; Social Sciences" +22692;21100266730;"International Journal of Information Systems in the Service Sector";journal;"19355688, 19355696";"IGI Global Publishing";No;No;0,188;Q3;17;9;48;275;49;48;0,33;30,56;47,37;0;United States;Northern America;"IGI Global Publishing";"2009-2026";"Information Systems and Management (Q3); Information Systems (Q4); Management Information Systems (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences" +22693;27528;"Italian Journal of Gynaecology and Obstetrics";journal;"23850868, 11218339";"EDRA S.p.A";No;No;0,188;Q3;13;54;180;1764;129;172;0,74;32,67;48,83;0;Italy;Western Europe;"EDRA S.p.A";"1993-2025";"Obstetrics and Gynecology (Q3)";"Medicine" +22694;21100238614;"Journal of Applied Probability and Statistics";journal;"19306792";"ISOSS PUBLICATIONS";No;No;0,188;Q3;11;11;46;288;15;46;0,24;26,18;32,26;0;Pakistan;Asiatic Region;"ISOSS PUBLICATIONS";"2012-2025";"Podiatry (Q3); Applied Mathematics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Health Professions; Mathematics" +22695;21101121580;"Journal of Food Technology Research";journal;"23126426, 23123796";"Conscientia Beam";No;No;0,188;Q3;8;10;34;321;32;34;0,90;32,10;55,56;0;United States;Northern America;"Conscientia Beam";"2019-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +22696;28925;"Loisir et Societe";journal;"07053436, 17050154";"Routledge";No;No;0,188;Q3;30;30;103;1402;44;94;0,24;46,73;37,04;0;United Kingdom;Western Europe;"Routledge";"1978-2026";"Sociology and Political Science (Q3); Metals and Alloys (Q4)";"Materials Science; Social Sciences" +22697;19400157530;"Memoirs of Museum Victoria";journal;"14472554, 14472546";"Museum Victoria";No;No;0,188;Q3;18;3;20;146;9;20;0,57;48,67;25,00;0;Australia;Pacific Region;"Museum Victoria";"2009-2011, 2013-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Oceanography (Q4); Paleontology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +22698;21634;"Revija za Kriminalistiko in Kriminologijo";journal;"0034690X";"Ministrstvo za notranje zadeve Republike Slovenije Policija";No;No;0,188;Q3;10;32;56;1361;17;41;0,34;42,53;46,88;0;Slovenia;Eastern Europe;"Ministrstvo za notranje zadeve Republike Slovenije Policija";"1981, 2011-2025";"Law (Q3); Pathology and Forensic Medicine (Q4); Social Psychology (Q4)";"Medicine; Psychology; Social Sciences" +22699;21101287864;"Revista Cientifica Odontologica";journal;"23102594, 25232754";"Universidad Cientifica del Sur";Yes;No;0,188;Q3;4;41;134;1027;72;122;0,55;25,05;53,92;0;Peru;Latin America;"Universidad Cientifica del Sur";"2021-2026";"Dental Hygiene (Q3); Dentistry (miscellaneous) (Q3)";"Dentistry" +22700;21101152576;"Revista Eletronica de Direito Processual";journal;"19827636";"Universidade do Estado do Rio de Janeiro";Yes;Yes;0,188;Q3;5;68;253;1957;16;253;0,06;28,78;25,76;0;Brazil;Latin America;"Universidade do Estado do Rio de Janeiro";"2019-2026";"Law (Q3)";"Social Sciences" +22701;21101134367;"Revista Juridica Austral";journal;"2684057X, 26840537";"Austral University";Yes;Yes;0,188;Q3;3;32;80;1651;8;75;0,07;51,59;19,35;0;Argentina;Latin America;"Austral University";"2020-2025";"Law (Q3)";"Social Sciences" +22702;21101207444;"Studia Iuridica Cassoviensia";journal;"13393995";"Pavol Jozef Safarik University in Kosice Faculty of Law";No;No;0,188;Q3;2;40;35;1359;12;35;0,34;33,98;38,78;0;Slovakia;Eastern Europe;"Pavol Jozef Safarik University in Kosice Faculty of Law";"2023-2025";"Law (Q3)";"Social Sciences" +22703;21100451311;"TECHNE";journal;"25345168, 22390243";"Firenze University Press";Yes;No;0,188;Q3;15;99;216;1780;126;201;0,57;17,98;63,77;0;Italy;Western Europe;"Firenze University Press";"2015-2025";"Architecture (Q3); Urban Studies (Q3); Building and Construction (Q4); Education (Q4); Health (social science) (Q4)";"Engineering; Social Sciences" +22704;12300154723;"Thai Journal of Veterinary Medicine";journal;"01256491";"Chulalongkorn University Printing House";No;No;0,188;Q3;22;60;212;2253;98;212;0,44;37,55;47,96;0;Thailand;Asiatic Region;"Chulalongkorn University Printing House";"2008-2026";"Veterinary (miscellaneous) (Q3)";"Veterinary" +22705;18185;"Tire Science and Technology";journal;"00908657";"Tire Society Inc.";No;No;0,188;Q3;32;0;21;0;23;21;1,10;0,00;0,00;0;United States;Northern America;"Tire Society Inc.";"1973-1980, 1985, 1987-2024";"Automotive Engineering (Q3); Mechanics of Materials (Q4); Polymers and Plastics (Q4)";"Engineering; Materials Science" +22706;21101304356;"Acta Botanica Boreali-Occidentalia Sinica";journal;"10004025";"Editorial Department of Acta Botanica Boreali-Occidentalia Sinica";No;No;0,188;Q4;11;0;616;0;382;616;0,66;0,00;0,00;0;China;Asiatic Region;"Editorial Department of Acta Botanica Boreali-Occidentalia Sinica";"2020-2024";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +22707;21100916903;"Acta Fytotechnica et Zootechnica";journal;"13369245, 1335258X";"Slovak University of Agriculture in Nitra";Yes;Yes;0,188;Q4;10;45;136;1613;115;136;0,81;35,84;42,78;0;Slovakia;Eastern Europe;"Slovak University of Agriculture in Nitra";"2018-2025";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Food Science (Q4)";"Agricultural and Biological Sciences" +22708;26538;"Acta Medica";journal;"18059694, 12114286";"Charles University Faculty of Medicine in Hradec Kralove";Yes;Yes;0,188;Q4;34;19;71;366;44;71;0,60;19,26;24,39;0;Czech Republic;Eastern Europe;"Charles University Faculty of Medicine in Hradec Kralove";"1996-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22709;21101074068;"Advances in Neurotoxicology";book series;"24687480";"Elsevier Inc.";No;No;0,188;Q4;17;18;52;2120;89;11;1,67;117,78;22,22;0;United States;Northern America;"Elsevier Inc.";"2017-2026";"Health, Toxicology and Mutagenesis (Q4); Neuroscience (miscellaneous) (Q4)";"Environmental Science; Neuroscience" +22710;21101154268;"Aero Weaponry";journal;"16735048";"Editorial Office of Aero Weaponry";Yes;Yes;0,188;Q4;16;76;298;2701;238;298;0,73;35,54;31,27;0;China;Asiatic Region;"Editorial Office of Aero Weaponry";"2019-2025";"Aerospace Engineering (Q4)";"Engineering" +22711;21100285431;"Bulletin of the Technical Committee on Learning Technology";trade journal;"23060212";"IEEE Technical Committee on Learning Technology";No;No;0,188;Q4;11;0;4;0;3;4;0,75;0,00;0,00;0;Taiwan;Asiatic Region;"IEEE Technical Committee on Learning Technology";"2012-2016, 2023";"Computer Science Applications (Q4); Education (Q4)";"Computer Science; Social Sciences" +22712;21100218054;"Bulletin of the Transilvania University of Brasov, Series II: Forestry, Wood Industry, Agricultural Food Engineering";journal;"20652135";"Transilvania University of Brasov 1";No;No;0,188;Q4;14;16;86;522;74;86;0,82;32,63;40,00;0;Romania;Eastern Europe;"Transilvania University of Brasov 1";"2012-2025";"Agronomy and Crop Science (Q4); Food Science (Q4); Forestry (Q4)";"Agricultural and Biological Sciences" +22713;21100448550;"Chinese Journal of Engineering Design";journal;"1006754X";"Zhejiang University";Yes;No;0,188;Q4;11;64;257;1466;155;257;0,70;22,91;26,34;0;China;Asiatic Region;"Zhejiang University";"2015-2025";"Civil and Structural Engineering (Q4); Computational Mechanics (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Engineering" +22714;99288;"Colombia Medica";journal;"16579534, 01208322";"Facultad de Salud de la Universidad del Valle";Yes;Yes;0,188;Q4;30;18;87;534;88;70;1,16;29,67;49,40;0;Colombia;Latin America;"Facultad de Salud de la Universidad del Valle";"1946, 1990, 1996-2002, 2004-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22715;21100223167;"Computacion y Sistemas";journal;"20079737, 14055546";"Instituto Politecnico Nacional";Yes;No;0,188;Q4;24;186;391;5892;320;387;0,85;31,68;30,13;0;Mexico;Latin America;"Instituto Politecnico Nacional";"2012-2025";"Computer Science (miscellaneous) (Q4)";"Computer Science" +22716;21100197359;"Comunicacoes Geologicas";journal;"0873948X, 1647581X";"Laboratorio Nacional de Energia e Geologia";No;No;0,188;Q4;21;108;23;1940;9;21;0,35;17,96;38,58;0;Portugal;Western Europe;"Laboratorio Nacional de Energia e Geologia";"2007-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Earth and Planetary Sciences; Energy; Environmental Science" +22717;20000195054;"Distributed Generation and Alternative Energy Journal";journal;"21566550, 21563306";"";No;No;0,188;Q4;19;53;198;1269;170;196;0,91;23,94;27,12;0;Denmark;Western Europe;"";"2011-2026";"Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4)";"Energy; Engineering" +22718;20767;"Drug and Therapeutics Bulletin";journal;"00126543, 17555248";"BMJ Publishing Group";No;No;0,188;Q4;18;61;244;739;89;114;0,38;12,11;37,84;0;United Kingdom;Western Europe;"BMJ Publishing Group";"1965-2026";"Medicine (miscellaneous) (Q4); Pharmacology (medical) (Q4)";"Medicine" +22719;4000151501;"Giornale Italiano di Cardiologia";journal;"19726481, 18276806";"Il Pensiero Scientifico Editore s.r.l.";No;No;0,188;Q4;25;160;531;5849;355;403;0,73;36,56;43,15;1;Italy;Western Europe;"Il Pensiero Scientifico Editore s.r.l.";"1996, 2006-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +22720;96594;"Huagong Xuebao/CIESC Journal";journal;"04381157";"Materials China";No;No;0,188;Q4;36;557;1423;23547;1286;1423;0,87;42,27;35,10;0;China;Asiatic Region;"Materials China";"1985-1987, 1989, 1993-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +22721;21101152858;"Indonesian Journal of Health Administration";journal;"25409301, 23033592";"Airlangga University";Yes;Yes;0,188;Q4;10;21;94;689;71;86;0,56;32,81;53,85;0;Indonesia;Asiatic Region;"Airlangga University";"2019-2025";"Health Informatics (Q4); Health Policy (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +22722;21101017910;"International Journal of Medical Toxicology and Forensic Medicine";journal;"22518770, 22518762";"Shaheed Beheshti University of Medical Sciences and Health Services";Yes;Yes;0,188;Q4;8;31;100;895;73;97;0,62;28,87;46,72;0;Iran;Middle East;"Shaheed Beheshti University of Medical Sciences and Health Services";"2014, 2019-2026";"Pathology and Forensic Medicine (Q4); Toxicology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +22723;12155;"Journal of Applied Spectroscopy";journal;"00219037, 15738647";"Springer GmbH & Co, Auslieferungs-Gesellschaf";No;No;0,188;Q4;36;184;546;4876;454;546;0,78;26,50;37,68;0;Germany;Western Europe;"Springer GmbH & Co, Auslieferungs-Gesellschaf";"1965-2026";"Condensed Matter Physics (Q4); Spectroscopy (Q4)";"Chemistry; Physics and Astronomy" +22724;21100223516;"Journal of Medicine (Bangladesh)";journal;"20755384, 19979797";"Bangladesh Society of Medicine";Yes;No;0,188;Q4;9;33;96;694;47;88;0,58;21,03;39,83;0;Bangladesh;Asiatic Region;"Bangladesh Society of Medicine";"2012-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22725;21100464761;"Journal of Risk";journal;"17552842, 14651211";"Infopro digital";No;No;0,188;Q4;17;10;69;358;33;69;0,58;35,80;21,74;0;United Kingdom;Western Europe;"Infopro digital";"2011-2025";"Finance (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22726;21101045321;"Journal of the Japan Society for Technology of Plasticity";journal;"18820166, 00381586";"Japan Society for Technology of Plasticity";No;No;0,188;Q4;4;53;240;842;39;236;0,15;15,89;12,62;0;Japan;Asiatic Region;"Japan Society for Technology of Plasticity";"2019-2026";"Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +22727;21100874708;"Journal of the Korea Concrete Institute";journal;"12295515, 22342842";"Korea Concrete Institute";No;No;0,188;Q4;8;78;182;1683;88;182;0,50;21,58;25,47;0;South Korea;Asiatic Region;"Korea Concrete Institute";"2018-2025";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Materials Science (miscellaneous) (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +22728;21100901563;"Korean Journal of Physical, Multiple and Health Disabilities";journal;"22883843";"";No;No;0,188;Q4;10;39;111;1569;63;111;0,66;40,23;55,22;0;South Korea;Asiatic Region;"";"2018-2025";"Developmental and Educational Psychology (Q4); Education (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Psychology; Social Sciences" +22729;19700188164;"Malaysian Journal of Analytical Sciences";journal;"13942506";"Malaysian Society of Analytical Sciences";No;No;0,188;Q4;31;84;328;3472;273;327;0,75;41,33;56,63;0;Malaysia;Asiatic Region;"Malaysian Society of Analytical Sciences";"2010-2025";"Analytical Chemistry (Q4)";"Chemistry" +22730;21101068032;"Medical Technologies. Assessment and Choice";journal;"22190678, 27127877";"Media Sphera Publishing Group";No;No;0,188;Q4;5;39;99;944;48;99;0,47;24,21;53,37;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2020-2025";"Biomedical Engineering (Q4); Health Policy (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Engineering; Medicine" +22731;21100778656;"Mitochondrial DNA Part A: DNA Mapping, Sequencing, and Analysis";journal;"24701394, 24701408";"Taylor and Francis Ltd.";No;No;0,188;Q4;26;26;13;1265;14;13;1,00;48,65;47,93;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2023, 2025-2026";"Genetics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +22732;18300156730;"Molecular Genetics, Microbiology and Virology";journal;"08914168, 1934841X";"Pleiades Publishing";No;No;0,188;Q4;15;28;114;821;49;114;0,37;29,32;61,72;0;United States;Northern America;"Pleiades Publishing";"2007-2025";"Genetics (Q4); Infectious Diseases (Q4); Microbiology (Q4); Molecular Biology (Q4); Virology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +22733;21101264437;"National Journal of Antennas and Propagation";journal;"25822659";"Society for Communication and Computer Technologies";No;No;0,188;Q4;10;105;64;2638;136;64;2,08;25,12;39,16;0;India;Asiatic Region;"Society for Communication and Computer Technologies";"2020-2025";"Electrical and Electronic Engineering (Q4); Engineering (miscellaneous) (Q4); Information Systems (Q4)";"Computer Science; Engineering" +22734;21101188207;"Notas Sobre Mamiferos Sudamericanos";journal;"26184788";"SAREM Sociedad Argentina para el Estudio de los Mamiferos";No;No;0,188;Q4;3;46;62;1299;22;59;0,35;28,24;47,64;0;Argentina;Latin America;"SAREM Sociedad Argentina para el Estudio de los Mamiferos";"2023-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +22735;15400155600;"Nuovo Cimento della Societa Italiana di Fisica C";journal;"20374909, 18269885";"Editrice Compositori s.r.l.";Yes;No;0,188;Q4;30;295;763;4261;236;747;0,29;14,44;36,34;0;Italy;Western Europe;"Editrice Compositori s.r.l.";"1978-2026";"Astronomy and Astrophysics (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +22736;21101314092;"Physics of Wave Processes and Radio Systems";journal;"2782294X, 18103189";"Povolzhskiy State University of Telecommunications and Informatics";Yes;No;0,188;Q4;5;39;120;653;49;120;0,44;16,74;15,66;0;Russian Federation;Eastern Europe;"Povolzhskiy State University of Telecommunications and Informatics";"2021-2025";"Acoustics and Ultrasonics (Q4); Atomic and Molecular Physics, and Optics (Q4); Electrical and Electronic Engineering (Q4); Mathematical Physics (Q4)";"Engineering; Mathematics; Physics and Astronomy" +22737;21101041705;"Radio Physics and Radio Astronomy";journal;"24157007, 10279636";"Institute of Radio Astronomy of the National Academy of Sciences of Ukraine";Yes;Yes;0,188;Q4;6;25;77;556;13;77;0,20;22,24;27,91;0;Ukraine;Eastern Europe;"Institute of Radio Astronomy of the National Academy of Sciences of Ukraine";"2019-2025";"Astronomy and Astrophysics (Q4); Electrical and Electronic Engineering (Q4); Physics and Astronomy (miscellaneous) (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Engineering; Physics and Astronomy" +22738;21101021137;"Revista Brasileira de Marketing";journal;"21775184";"Universidade Nove de Julho-UNINOVE";Yes;Yes;0,188;Q4;10;39;119;2480;105;117;0,65;63,59;32,39;0;Brazil;Latin America;"Universidade Nove de Julho-UNINOVE";"2015-2026";"Economics and Econometrics (Q4); Marketing (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22739;21100212311;"Revista Brasileira de Saude e Producao Animal";journal;"15199940";"Universidade Federal da Bahia";Yes;No;0,188;Q4;21;11;56;444;40;56;0,67;40,36;40,74;0;Brazil;Latin America;"Universidade Federal da Bahia";"2012-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +22740;4700152285;"Revista Chilena de Nutricion";journal;"07177518, 07161549";"Sociedad Chilena de Nutricion Bromatologia y Toxilogica";Yes;Yes;0,188;Q4;25;45;217;1806;120;185;0,51;40,13;61,50;0;Chile;Latin America;"Sociedad Chilena de Nutricion Bromatologia y Toxilogica";"1981-1983, 2006-2025";"Food Science (Q4); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Nursing" +22741;20100195029;"Revista Espanola de Nutricion Humana y Dietetica";journal;"21731292, 21745145";"Asociacion Espanola de Dietistas-Nutricionistas";Yes;Yes;0,188;Q4;16;17;131;537;74;110;0,57;31,59;65,22;0;Spain;Western Europe;"Asociacion Espanola de Dietistas-Nutricionistas";"2011-2025";"Food Science (Q4); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Nursing" +22742;9500153969;"Revue de l'Infirmiere";journal;"12938505";"Elsevier Masson s.r.l.";No;No;0,188;Q4;12;175;503;1296;65;443;0,13;7,41;71,31;0;France;Western Europe;"Elsevier Masson s.r.l.";"1971-2000, 2002-2026";"Nursing (miscellaneous) (Q4)";"Nursing" +22743;19072;"Revue des Maladies Respiratoires";journal;"17762588, 07618425";"Elsevier Masson s.r.l.";No;No;0,188;Q4;36;56;290;1914;125;245;0,43;34,18;37,18;1;France;Western Europe;"Elsevier Masson s.r.l.";"1984-2025";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +22744;21100792079;"Russian Electronic Journal of Radiology";journal;"22227415";"I.M. Sechenov First Moscow State Medical University";No;No;0,188;Q4;10;77;185;1826;69;185;0,40;23,71;55,71;0;Russian Federation;Eastern Europe;"I.M. Sechenov First Moscow State Medical University";"2016-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +22745;21101184583;"Turkish Journal of Public Health";journal;"13041096, 13041088";"Turkish Society of Public Health Specialists";Yes;No;0,188;Q4;3;36;62;1036;35;58;0,56;28,78;52,53;0;Turkey;Middle East;"Turkish Society of Public Health Specialists";"2023-2025";"Epidemiology (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +22746;21100286322;"European Conference on Information Warfare and Security, ECCWS";conference and proceedings;"20488602, 20488610";"Curran Associates Inc.";No;No;0,188;-;13;107;244;2899;213;238;0,90;27,09;27,75;0;United States;Northern America;"Curran Associates Inc.";"2013-2020, 2022-2025";"Information Systems; Information Systems and Management; Safety, Risk, Reliability and Quality";"Computer Science; Decision Sciences; Engineering" +22747;21100244825;"Informatik aktuell";conference and proceedings;"1431472X";"Springer Science and Business Media Deutschland GmbH";No;No;0,188;-;24;70;211;883;107;203;0,63;12,61;21,90;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2009, 2011-2025";"Modeling and Simulation";"Mathematics" +22748;21100199740;"International Conference Image and Vision Computing New Zealand";conference and proceedings;"21512205, 21512191";"IEEE Computer Society";No;No;0,188;-;21;73;94;1800;59;90;0,63;24,66;23,00;0;United States;Northern America;"IEEE Computer Society";"2010, 2013, 2016-2021, 2023-2025";"Computational Theory and Mathematics; Computer Vision and Pattern Recognition; Electrical and Electronic Engineering";"Computer Science; Engineering" +22749;5700153643;"Chasqui";journal;"01458973";"c/o David William Foster, Arizona State University";Yes;No;0,187;Q1;9;25;83;935;17;35;0,14;37,40;29,41;0;United States;Northern America;"c/o David William Foster, Arizona State University";"2002-2012, 2014-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +22750;11600153482;"Film Quarterly";journal;"00151386, 15338630";"University of California Press";No;No;0,187;Q1;30;24;140;441;53;111;0,30;18,38;60,00;0;United States;Northern America;"University of California Press";"1969-2025";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +22751;21101061832;"Research Result. Theoretical and Applied Linguistics";journal;"23138912";"Belgorod State National Research University";No;No;0,187;Q1;7;13;98;609;53;97;0,71;46,85;50,00;0;Russian Federation;Eastern Europe;"Belgorod State National Research University";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22752;21100898946;"Sibirskii Filologicheskii Zhurnal";journal;"18137083";"Siberian Branch of the Russian Academy of Sciences, Institute of Philology";No;No;0,187;Q1;4;54;273;1510;32;273;0,09;27,96;60,87;0;Russian Federation;Eastern Europe;"Siberian Branch of the Russian Academy of Sciences, Institute of Philology";"2018-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22753;19700180507;"Acta Histriae";journal;"13180185";"The Historical Society of Southern Primorska of Koper, Institute IRRIS for Research, Development and Strategies of Society, Culture and Environment";Yes;Yes;0,187;Q2;15;4;118;250;32;117;0,30;62,50;33,33;0;Slovenia;Eastern Europe;"The Historical Society of Southern Primorska of Koper, Institute IRRIS for Research, Development and Strategies of Society, Culture and Environment";"2009-2025";"History (Q2)";"Arts and Humanities" +22754;21101154165;"Archaeological Textiles Review";trade journal;"22457135";"Kobenhavns Universitet";No;No;0,187;Q2;8;22;61;504;7;60;0,16;22,91;80,00;0;Denmark;Western Europe;"Kobenhavns Universitet";"2012-2014, 2016-2025";"Archeology (arts and humanities) (Q2); History (Q2); Materials Science (miscellaneous) (Q4)";"Arts and Humanities; Materials Science" +22755;21101102024;"Chinese Medicine and Culture";journal;"25899473, 25899627";"Lippincott Williams and Wilkins";Yes;Yes;0,187;Q2;8;44;118;1752;52;112;0,37;39,82;46,05;0;United States;Northern America;"Lippincott Williams and Wilkins";"2018-2026";"Cultural Studies (Q2); Complementary and Alternative Medicine (Q4)";"Medicine; Social Sciences" +22756;21100944564;"Communitas";journal;"10230556, 24150525";"University of the Free State";Yes;No;0,187;Q2;4;12;37;546;32;37;0,76;45,50;60,00;0;South Africa;Africa;"University of the Free State";"2019-2025";"Linguistics and Language (Q2); Communication (Q3)";"Social Sciences" +22757;16800154739;"Contributions to the History of Concepts";journal;"1874656X, 18079326";"Berghahn Journals";No;No;0,187;Q2;17;12;44;571;14;42;0,32;47,58;37,50;0;United Kingdom;Western Europe;"Berghahn Journals";"2005-2009, 2011-2025";"History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22758;17300154836;"Grotiana";journal;"01673831, 18760759";"Brill Academic Publishers";No;No;0,187;Q2;13;14;42;1332;30;38;1,04;95,14;12,50;0;Netherlands;Western Europe;"Brill Academic Publishers";"1980-1982, 1984-1987, 1989-1991, 1993, 1997-1999, 2001, 2003, 2007-2010, 2012-2026";"History (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +22759;21101094997;"Indo-European Linguistics and Classical Philology Yearbook";journal;"23069015, 26586452";"Russian Academy of Sciences";No;No;0,187;Q2;4;124;308;3328;26;308;0,10;26,84;50,79;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +22760;19600156840;"Journal of Burma Studies";journal;"2010314X, 1094799X";"Center for Burma Studies at Northern Illinois University";No;No;0,187;Q2;11;11;34;591;27;27;0,93;53,73;70,00;0;United States;Northern America;"Center for Burma Studies at Northern Illinois University";"2001, 2009-2025";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +22761;19600157792;"Journal of Hindu Studies";journal;"17564263, 17564255";"Oxford University Press";No;No;0,187;Q2;12;12;40;822;16;38;0,36;68,50;30,00;0;India;Asiatic Region;"Oxford University Press";"2009-2025";"Religious Studies (Q2)";"Arts and Humanities" +22762;21101072364;"Proceedings of the Centre for Economic History Research";journal;"25349244, 26033526";"Centre for Economic History Research";No;No;0,187;Q2;7;31;98;585;39;98;0,33;18,87;35,14;0;Bulgaria;Eastern Europe;"Centre for Economic History Research";"2016-2025";"History (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3)";"Arts and Humanities; Economics, Econometrics and Finance" +22763;21100227421;"Quinto Sol";journal;"03292665, 18512879";"Instituto de Estudios Sociohistoricos";Yes;Yes;0,187;Q2;8;32;95;887;16;91;0,17;27,72;55,88;0;Argentina;Latin America;"Instituto de Estudios Sociohistoricos";"2012-2025";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22764;23612;"Zgodovinski Casopis";journal;"03505774";"Zveza Zgodovinskih Drustev Slovenije";No;No;0,187;Q2;7;15;48;679;7;46;0,17;45,27;26,32;0;Slovenia;Eastern Europe;"Zveza Zgodovinskih Drustev Slovenije";"1979, 1982, 1984, 2011, 2013-2025";"History (Q2)";"Arts and Humanities" +22765;21100868867;"African Journal of Agricultural and Resource Economics";journal;"19933738";"African Association of Agricultural Economists";Yes;No;0,187;Q3;11;16;68;831;47;68;0,43;51,94;16,67;0;Kenya;Africa;"African Association of Agricultural Economists";"2018-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Economics and Econometrics (Q4)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +22766;6500153244;"American Journal of Animal and Veterinary Sciences";journal;"15574563, 15574555";"Science Publications";Yes;No;0,187;Q3;23;41;128;1724;101;128;0,74;42,05;35,00;0;United States;Northern America;"Science Publications";"2007-2025";"Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences; Veterinary" +22767;8300153204;"B.E. Journal of Theoretical Economics";journal;"19351704, 21946124";"Walter de Gruyter GmbH";No;No;0,187;Q3;28;16;84;489;46;84;0,54;30,56;19,35;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2001-2003, 2007-2026";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +22768;19700175253;"Bioscience Journal";journal;"19813163, 15163725";"Universidade Federal de Uberlandia";Yes;No;0,187;Q3;27;23;255;830;164;255;0,62;36,09;37,76;0;Brazil;Latin America;"Universidade Federal de Uberlandia";"2009-2026";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +22769;20500195080;"Biotropia";journal;"02156334, 1907770X";"Seameo Biotrop";Yes;Yes;0,187;Q3;17;24;104;1018;103;104;1,07;42,42;46,51;0;Indonesia;Asiatic Region;"Seameo Biotrop";"2006-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biotechnology (Q4); Ecology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +22770;21101088439;"Canadian Journal of Nonprofit and Social Economy Research";journal;"19209355";"University of Alberta Library";Yes;Yes;0,187;Q3;14;22;78;807;42;68;0,58;36,68;52,83;0;Canada;Northern America;"University of Alberta Library";"2010-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +22771;18430;"Caryologia";journal;"00087114, 21655391";"Firenze University Press";Yes;No;0,187;Q3;36;12;118;488;51;116;0,30;40,67;42,22;0;United Kingdom;Western Europe;"Firenze University Press";"1949-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +22772;21101219667;"China Journal of Econometrics";journal;"20972326, 20969732";"Science Press";No;No;0,187;Q3;8;33;151;1583;99;151;0,72;47,97;41,49;0;China;Asiatic Region;"Science Press";"2021-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +22773;21100814521;"Denver Law Review";journal;"24696471, 24696463";"Denver University Law Review";No;No;0,187;Q3;10;0;55;0;19;54;0,36;0,00;0,00;0;United States;Northern America;"Denver University Law Review";"2015-2023";"Law (Q3)";"Social Sciences" +22774;21100850516;"European Journal of Legal Studies";journal;"19732937";"European Journal of Legal Studies";Yes;Yes;0,187;Q3;10;14;57;426;39;46;0,71;30,43;45,45;0;Italy;Western Europe;"European Journal of Legal Studies";"2017-2025";"Law (Q3)";"Social Sciences" +22775;21101046204;"Frontiers in Biomedical Technologies";journal;"23455837, 23455829";"Tehran University of Medical Sciences";Yes;Yes;0,187;Q3;11;102;189;3557;154;179;0,95;34,87;40,06;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2025";"Medical Laboratory Technology (Q3); Biomedical Engineering (Q4); Radiological and Ultrasound Technology (Q4)";"Engineering; Health Professions" +22776;21100863713;"International Journal of Knowledge and Systems Science";journal;"19478216, 19478208";"IGI Global Publishing";No;No;0,187;Q3;12;8;32;347;30;32;0,95;43,38;26,32;0;United States;Northern America;"IGI Global Publishing";"2017-2026";"Information Systems and Management (Q3); Artificial Intelligence (Q4); Information Systems (Q4); Management of Technology and Innovation (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences" +22777;6400153148;"Investigacion Economica";journal;"25942360, 01851667";"Universidad Nacional Autonoma de Mexico";Yes;No;0,187;Q3;17;1;81;0;62;77;0,69;0,00;0,00;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1981, 2006-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +22778;21101049052;"Jindal Global Law Review";journal;"09752498, 23644869";"Springer Science and Business Media B.V.";No;No;0,187;Q3;6;32;64;0;42;51;0,64;0,00;45,24;1;Germany;Western Europe;"Springer Science and Business Media B.V.";"2015-2025";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +22779;17900156721;"Journal of Electronic Resources Librarianship";journal;"1941126X, 19411278";"Routledge";No;No;0,187;Q3;18;40;100;704;56;51;0,47;17,60;44,44;0;United States;Northern America;"Routledge";"2008-2025";"Library and Information Sciences (Q3); Information Systems (Q4)";"Computer Science; Social Sciences" +22780;19700188356;"Journal of Excipients and Food Chemicals";journal;"21502668";"International Pharmaceutical Excipients Council (IPEC)";Yes;Yes;0,187;Q3;20;6;31;120;20;20;0,55;20,00;28,57;0;United States;Northern America;"International Pharmaceutical Excipients Council (IPEC)";"2010-2025";"Pharmaceutical Science (Q3); Food Science (Q4)";"Agricultural and Biological Sciences; Pharmacology, Toxicology and Pharmaceutics" +22781;21100235823;"King's Law Journal";journal;"17578442, 09615768";"Taylor and Francis Ltd.";No;No;0,187;Q3;14;36;87;1216;43;79;0,58;33,78;26,32;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2025";"Law (Q3)";"Social Sciences" +22782;19700175785;"Open Access Journal of Clinical Trials";journal;"11791519";"Dove Medical Press Ltd";Yes;No;0,187;Q3;16;6;9;198;8;9;1,00;33,00;57,89;0;New Zealand;Pacific Region;"Dove Medical Press Ltd";"2009-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +22783;21101274744;"Acta Technica Jaurinensis";journal;"20645228";"";Yes;Yes;0,187;Q4;9;22;64;733;63;64;0,90;33,32;20,00;0;Hungary;Eastern Europe;"";"2021-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +22784;21100981346;"Advances in Technology Innovation";journal;"25182994, 24150436";"Taiwan Association of Engineering and Technology Innovation";Yes;No;0,187;Q4;11;30;72;862;78;72;0,90;28,73;29,41;0;Taiwan;Asiatic Region;"Taiwan Association of Engineering and Technology Innovation";"2019-2026";"Computer Science (miscellaneous) (Q4); Energy Engineering and Power Technology (Q4); Engineering (miscellaneous) (Q4); Environmental Engineering (Q4); Management of Technology and Innovation (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Business, Management and Accounting; Computer Science; Energy; Engineering; Environmental Science" +22785;21100427836;"Annales, Series Historia Naturalis";journal;"1408533X";"The Historical Society of Southern Primorska of Koper, Institute IRRIS for Research, Development and Strategies of Society, Culture and Environment";Yes;Yes;0,187;Q4;11;19;114;610;49;113;0,41;32,11;39,39;0;Slovenia;Eastern Europe;"The Historical Society of Southern Primorska of Koper, Institute IRRIS for Research, Development and Strategies of Society, Culture and Environment";"2013-2025";"Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +22786;19700188152;"Annals of ""Dunarea de Jos"" University of Galati, Fascicle XII, Welding Equipment and Technology";journal;"12214639";"Galati University Press";Yes;Yes;0,187;Q4;10;14;34;367;26;34;0,74;26,21;25,81;0;Romania;Eastern Europe;"Galati University Press";"2010-2025";"Mechanical Engineering (Q4)";"Engineering" +22787;13534;"Chemical and Process Engineering - Inzynieria Chemiczna i Procesowa";journal;"02086425";"Polska Akademia Nauk";Yes;No;0,187;Q4;26;0;39;0;34;39;0,00;0,00;0,00;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1986-1989, 1996-2022";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +22788;21100448964;"Chinese Journal of Liquid Crystals and Displays";journal;"10072780";"Science Press";No;No;0,187;Q4;17;156;481;5788;423;481;0,90;37,10;32,82;0;China;Asiatic Region;"Science Press";"2015-2026";"Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4); Signal Processing (Q4)";"Computer Science; Materials Science; Physics and Astronomy" +22789;21101239730;"Chinese Journal of Medical Science Research Management";journal;"10061924";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,187;Q4;2;68;259;1496;37;259;0,18;22,00;49,26;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +22790;21100855805;"Computer Research and Modeling";journal;"20767633, 20776853";"Institute of Computer Science Izhevsk";Yes;Yes;0,187;Q4;13;71;294;1891;135;272;0,50;26,63;33,33;0;Russian Federation;Eastern Europe;"Institute of Computer Science Izhevsk";"2017-2025";"Computational Theory and Mathematics (Q4); Computer Science Applications (Q4); Modeling and Simulation (Q4)";"Computer Science; Mathematics" +22791;15861;"Fangzhi Gaoxiao Jichukexue Xuebao/Basic Sciences Journal of Textile Universities";journal;"10068341";"Xi'an Polytechnic University";No;No;0,187;Q4;7;75;219;2364;152;219;0,68;31,52;45,75;0;China;Asiatic Region;"Xi'an Polytechnic University";"1999-2017, 2019-2025";"Polymers and Plastics (Q4)";"Materials Science" +22792;21582;"Glass and Ceramics (English translation of Steklo i Keramika)";journal;"15738515, 03617610";"Springer New York";No;No;0,187;Q4;29;88;270;1726;145;270;0,58;19,61;48,50;0;United States;Northern America;"Springer New York";"1956-2026";"Ceramics and Composites (Q4); Materials Chemistry (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +22793;21101168849;"Indian Journal of Engineering";journal;"23197765, 23197757";"Discovery Scientific Society";No;No;0,187;Q4;7;9;85;250;105;85;1,94;27,78;11,43;0;India;Asiatic Region;"Discovery Scientific Society";"2019-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +22794;21100317205;"Infectio";journal;"24223794, 01239392";"Asociacion Colombiana de Infectologia";Yes;No;0,187;Q4;14;45;119;1096;49;107;0,44;24,36;49,25;0;Colombia;Latin America;"Asociacion Colombiana de Infectologia";"2012-2025";"Infectious Diseases (Q4); Microbiology (medical) (Q4); Pharmacology (medical) (Q4)";"Medicine" +22795;21101044727;"Informatics and Automation";journal;"27133206, 27133192";"St. Petersburg Federal Research Center of the Russian Academy of Sciences";Yes;Yes;0,187;Q4;15;54;167;2157;128;167;0,85;39,94;25,62;0;Russian Federation;Eastern Europe;"St. Petersburg Federal Research Center of the Russian Academy of Sciences";"2020-2026";"Applied Mathematics (Q4); Artificial Intelligence (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Networks and Communications (Q4); Information Systems (Q4)";"Computer Science; Mathematics" +22796;5400152652;"International Journal of Innovation and Sustainable Development";journal;"17408822, 17408830";"Inderscience Enterprises Ltd";No;No;0,187;Q4;29;39;87;1407;64;86;0,80;36,08;54,93;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2026";"Management of Technology and Innovation (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Business, Management and Accounting; Energy" +22797;12100157221;"International Journal of Probiotics and Prebiotics";journal;"15551431";"New Century Health Publishers";No;No;0,187;Q4;21;4;16;152;13;16;0,50;38,00;55,17;0;United States;Northern America;"New Century Health Publishers";"2008-2018, 2020-2025";"Applied Microbiology and Biotechnology (Q4); Food Animals (Q4); Nutrition and Dietetics (Q4); Public Health, Environmental and Occupational Health (Q4)";"Immunology and Microbiology; Medicine; Nursing; Veterinary" +22798;15332;"Jordan Medical Journal";journal;"04469283";"University of Jordan,Deanship of Scientific Research";No;No;0,187;Q4;11;67;122;2353;112;118;0,92;35,12;45,60;0;Jordan;Middle East;"University of Jordan,Deanship of Scientific Research";"1972-1978, 1980-1982, 1984-1986, 1988-1991, 2006-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +22799;21101210637;"Journal of Community Medicine and Primary Health Care";journal;"07947410";"Association of Public Health Physicians of Nigeria";No;No;0,187;Q4;6;33;92;982;51;92;0,46;29,76;40,26;0;Nigeria;Africa;"Association of Public Health Physicians of Nigeria";"2020-2025";"Epidemiology (Q4); Health Policy (Q4); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +22800;28223;"Journal of Nursing";journal;"0047262X";"Taiwan Nurses Association";No;No;0,187;Q4;18;76;233;1875;120;219;0,56;24,67;60,89;0;Taiwan;Asiatic Region;"Taiwan Nurses Association";"1966, 1968-1981, 1989-1990, 1996-1997, 2004-2026";"Nursing (miscellaneous) (Q4)";"Nursing" +22801;21100812611;"Journal of the Belgian Society of Radiology";journal;"25148281";"Ubiquity Press";Yes;No;0,187;Q4;29;66;334;365;183;320;0,49;5,53;30,77;0;United Kingdom;Western Europe;"Ubiquity Press";"2015-2026";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +22802;21100259506;"Journal of the Indian Mathematical Society";journal;"24556475, 00195839";"";No;No;0,187;Q4;11;47;97;724;49;97;0,55;15,40;22,73;0;India;Asiatic Region;"";"1991, 2009, 2013-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +22803;28516;"Kung Cheng Je Wu Li Hsueh Pao/Journal of Engineering Thermophysics";journal;"0253231X";"Science Press";No;No;0,187;Q4;28;473;1358;11893;839;1358;0,58;25,14;32,21;0;China;Asiatic Region;"Science Press";"1981-1991, 1998-2026";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Engineering; Materials Science; Physics and Astronomy" +22804;21101387914;"Libellula";journal;"07236514";"The Society of German-speaking Odonatologists";No;No;0,187;Q4;3;18;35;508;12;34;0,33;28,22;22,22;0;Germany;Western Europe;"The Society of German-speaking Odonatologists";"2021-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +22805;27330;"Metal Science and Heat Treatment";journal;"00260673, 15738973";"Springer New York";No;No;0,187;Q4;35;100;333;2275;180;331;0,61;22,75;33,45;0;United States;Northern America;"Springer New York";"1959-2026";"Condensed Matter Physics (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science; Physics and Astronomy" +22806;21101291385;"Metaverse";journal;"28109791";"Asia Pacific Academy of Science Pte Ltd";No;No;0,187;Q4;4;22;27;1000;51;25;1,89;45,45;43,18;0;Singapore;Asiatic Region;"Asia Pacific Academy of Science Pte Ltd";"2024-2026";"Computer Graphics and Computer-Aided Design (Q4); Computer Science Applications (Q4); Human-Computer Interaction (Q4)";"Computer Science" +22807;21101300217;"NIM Marketing Intelligence Review";journal;"26274957, 2628166X";"";Yes;No;0,187;Q4;6;14;53;42;52;44;0,77;3,00;50,00;0;Germany;Western Europe;"";"2013, 2021-2025";"Marketing (Q4)";"Business, Management and Accounting" +22808;68682;"Optoelectronics, Instrumentation and Data Processing";journal;"87566990, 19347944";"Pleiades Publishing";No;No;0,187;Q4;16;75;254;1514;115;254;0,51;20,19;20,10;0;United States;Northern America;"Pleiades Publishing";"1984-1990, 2011-2026";"Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Instrumentation (Q4)";"Engineering; Physics and Astronomy" +22809;27795;"Rechtsmedizin";journal;"14345196, 09379819";"Springer Medizin";No;No;0,187;Q4;27;62;192;1272;75;165;0,49;20,52;53,76;0;Germany;Western Europe;"Springer Medizin";"1995-2026";"Pathology and Forensic Medicine (Q4)";"Medicine" +22810;21101276714;"Reviews and Research in Medical Microbiology";journal;"27703150, 27703169";"Lippincott Williams and Wilkins";No;No;0,187;Q4;34;51;133;2728;81;132;0,52;53,49;55,36;0;United States;Northern America;"Lippincott Williams and Wilkins";"2022-2026";"Microbiology (medical) (Q4)";"Medicine" +22811;21100843526;"Ricerche di Psicologia";journal;"03916081, 19725620";"FrancoAngeli";No;No;0,187;Q4;14;9;85;369;31;84;0,17;41,00;72,97;0;Italy;Western Europe;"FrancoAngeli";"2000, 2002-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +22812;26485;"Russian Journal of Organic Chemistry";journal;"10704280, 16083393";"Pleiades Publishing";No;No;0,187;Q4;39;313;820;9181;658;820;0,76;29,33;41,52;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Organic Chemistry (Q4)";"Chemistry" +22813;21100850512;"Serangga";journal;"13945130";"Penerbit Universiti Kebangsaan Malaysia";No;No;0,187;Q4;12;41;138;1564;67;138;0,52;38,15;47,29;0;Malaysia;Asiatic Region;"Penerbit Universiti Kebangsaan Malaysia";"2016-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +22814;14054;"SORT";journal;"16962281, 20138830";"Institut d'Estadistica de Catalunya";Yes;Yes;0,187;Q4;28;9;25;353;33;25;1,60;39,22;46,15;0;Spain;Western Europe;"Institut d'Estadistica de Catalunya";"2003-2025";"Management Science and Operations Research (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics" +22815;19200157109;"Studia Universitatis Babes-Bolyai Chemia";journal;"12247154, 20659520";"Babes-Bolyai University";Yes;No;0,187;Q4;17;64;168;2138;120;168;0,72;33,41;53,88;0;Romania;Eastern Europe;"Babes-Bolyai University";"2009-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +22816;20249;"Undersea and Hyperbaric Medicine";journal;"10662936";"Undersea and Hyperbaric Medical Society";No;No;0,187;Q4;51;57;132;520;74;129;0,49;9,12;34,76;0;United States;Northern America;"Undersea and Hyperbaric Medical Society";"1993-2025";"Medicine (miscellaneous) (Q4); Physiology (medical) (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +22817;18300156721;"Zeitschrift fur Sportpsychologie";journal;"21906300, 16125010";"Hogrefe Publishing";No;No;0,187;Q4;14;0;52;0;22;25;0,32;0,00;0,00;0;Germany;Western Europe;"Hogrefe Publishing";"2008-2023";"Applied Psychology (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Social Psychology (Q4)";"Health Professions; Psychology" +22818;21101021861;"Zhurnal Belorusskogo Gosudarstvennogo Universiteta. Matematika. Informatika";journal;"25206508, 26173956";"The Belarusian State University";Yes;Yes;0,187;Q4;7;23;82;433;25;82;0,28;18,83;23,81;0;Belarus;Eastern Europe;"The Belarusian State University";"2017-2025";"Algebra and Number Theory (Q4); Computational Theory and Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4); Statistics and Probability (Q4)";"Computer Science; Mathematics" +22819;19700170836;"IEEE International Conference on Group IV Photonics GFP";conference and proceedings;"19492081, 1949209X";"IEEE Computer Society";No;No;0,187;-;26;85;205;594;102;202;0,50;6,99;21,95;0;United States;Northern America;"IEEE Computer Society";"2006-2007, 2009-2016, 2018-2019, 2021, 2023-2025";"Ceramics and Composites; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Engineering; Materials Science" +22820;21101131206;"Proceedings - International Conference on Informatics and Computational Sciences";conference and proceedings;"27677087, 27677079";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,187;-;8;81;133;1609;134;122;1,15;19,86;33,80;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2021-2022, 2024";"Artificial Intelligence; Computer Science Applications; Computer Vision and Pattern Recognition; Information Systems";"Computer Science" +22821;87615;"Record of Conference Papers - Annual Petroleum and Chemical Industry Conference";conference and proceedings;"00903507";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,187;-;20;0;190;0;76;187;0,43;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1979-1981, 1983-1990, 1994-2008, 2010-2014, 2016, 2018, 2021-2024";"Energy Engineering and Power Technology; Fuel Technology";"Energy" +22822;18723;"Rhetoric Review";journal;"07350198, 15327981";"Routledge";No;No;0,186;Q1;22;14;56;571;22;53;0,42;40,79;57,89;0;United States;Northern America;"Routledge";"1982-2003, 2005-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22823;5600152973;"Analisis Politico";journal;"01214705";"Universidad Nacional de Colombia";Yes;No;0,186;Q2;14;26;70;1363;41;65;0,67;52,42;19,44;0;Colombia;Latin America;"Universidad Nacional de Colombia";"1996, 2007-2012, 2014-2025";"History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22824;5800162102;"Expository Times";journal;"00145246, 17455308";"SAGE Publications Ltd";No;No;0,186;Q2;11;100;283;959;21;82;0,04;9,59;26,92;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1889-2026";"Religious Studies (Q2)";"Arts and Humanities" +22825;21100901477;"Historia Regional";journal;"03298213, 24690732";"Seccion Historia. Instituto Superior del Profesorado 'Eduardo Lafferriere'";Yes;Yes;0,186;Q2;3;56;167;2000;21;162;0,13;35,71;51,39;0;Argentina;Latin America;"Seccion Historia. Instituto Superior del Profesorado 'Eduardo Lafferriere'";"2018-2026";"History (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +22826;5800159959;"Indonesia";journal;"00197289";"Cornell University";No;No;0,186;Q2;17;14;47;760;30;36;0,61;54,29;46,67;0;United States;Northern America;"Cornell University";"2011-2025";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22827;21100788258;"Jurisprudence";journal;"20403313, 20403321";"Taylor and Francis Ltd.";No;No;0,186;Q2;14;42;72;1982;52;58;0,69;47,19;19,35;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Philosophy (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +22828;21101121705;"Nuova Antologia Militare";journal;"27049795";"Gruppo editoriale Tab S.r.l.";Yes;Yes;0,186;Q2;3;75;229;3534;26;205;0,13;47,12;24,18;0;Italy;Western Europe;"Gruppo editoriale Tab S.r.l.";"2020-2025";"Arts and Humanities (miscellaneous) (Q2); History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22829;5800179598;"Visual Anthropology";journal;"08949468, 15455920";"Taylor and Francis Ltd.";No;No;0,186;Q2;23;15;75;535;43;64;0,60;35,67;52,38;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2001, 2003-2026";"Cultural Studies (Q2); Anthropology (Q3)";"Social Sciences" +22830;19405;"Acta Poloniae Pharmaceutica - Drug Research";journal;"00016837";"Polish Pharmaceutical Society";Yes;No;0,186;Q3;55;54;263;2287;144;262;0,62;42,35;57,14;0;Poland;Eastern Europe;"Polish Pharmaceutical Society";"1951-1955, 1961-2025";"Pharmaceutical Science (Q3); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +22831;21100889415;"African Journal of Social Work";journal;"24095605";"National Association of Social Workers";Yes;Yes;0,186;Q3;15;27;108;508;95;108;0,81;18,81;50,00;0;Zimbabwe;Africa;"National Association of Social Workers";"2018-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Education (Q4); Health (social science) (Q4)";"Social Sciences" +22832;21101283170;"Annals of the Polish Association of Agricultural and Agribusiness Economists";journal;"26577828, 2657781X";"";Yes;No;0,186;Q3;5;68;224;1817;113;224;0,52;26,72;56,78;0;Poland;Eastern Europe;"";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Environmental Science" +22833;5600153156;"Eastern European Countryside";book series;"12328855";"Sciendo";Yes;No;0,186;Q3;13;0;8;0;8;8;0,00;0,00;0,00;0;Germany;Western Europe;"Sciendo";"2009-2022";"Sociology and Political Science (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +22834;4700152715;"Horizontes Antropologicos";journal;"01047183";"Programa de Pos-Graduacao em Antropologia Social - IFCH-UFRGS";Yes;Yes;0,186;Q3;21;7;95;318;37;95;0,32;45,43;53,33;0;Brazil;Latin America;"Programa de Pos-Graduacao em Antropologia Social - IFCH-UFRGS";"2006-2025";"Anthropology (Q3)";"Social Sciences" +22835;21136;"Jinshu Rechuli/Heat Treatment of Metals";journal;"02546051";"Chinese Heat Treatment Society";No;No;0,186;Q3;20;499;1657;9155;890;1657;0,56;18,35;29,88;0;China;Asiatic Region;"Chinese Heat Treatment Society";"1980, 1986-1994, 1998, 2001-2025";"Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +22836;21100945721;"Journal of Globalization Studies";journal;"20758103";"Uchitel Publishing House";No;No;0,186;Q3;9;21;67;1163;52;65;0,86;55,38;33,33;0;Russian Federation;Eastern Europe;"Uchitel Publishing House";"2019-2025";"Political Science and International Relations (Q3); Geography, Planning and Development (Q4); Global and Planetary Change (Q4)";"Environmental Science; Social Sciences" +22837;21101077284;"Koloproktologia";journal;"20737556, 26867303";"Association of Coloproctologists of Russia";No;No;0,186;Q3;10;73;186;2255;137;180;0,85;30,89;37,42;0;Russian Federation;Eastern Europe;"Association of Coloproctologists of Russia";"2019-2025";"Surgery (Q3); Gastroenterology (Q4); Oncology (Q4)";"Medicine" +22838;20404;"Kwartalnik Historii Nauki i Techniki";journal;"0023589X, 26574020";"L and A Birkenmajer Institute for the History of Science Polish Academy of Sciences";Yes;No;0,186;Q3;4;58;130;3043;10;127;0,09;52,47;30,16;0;Poland;Eastern Europe;"L and A Birkenmajer Institute for the History of Science Polish Academy of Sciences";"1970-1989, 1991-2001, 2003, 2005-2012, 2014-2016, 2019-2025";"History and Philosophy of Science (Q3)";"Arts and Humanities" +22839;21100256950;"Movement and Sports Sciences - Science et Motricite";journal;"21185735, 21185743";"EDP Sciences";No;No;0,186;Q3;19;43;83;2231;31;80;0,29;51,88;38,89;0;France;Western Europe;"EDP Sciences";"2010-2025";"Multidisciplinary (Q3); Social Sciences (miscellaneous) (Q3); Neuropsychology and Physiological Psychology (Q4); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Physiology (Q4); Physiology (medical) (Q4); Psychology (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Multidisciplinary; Psychology; Social Sciences" +22840;21101252462;"Review of Business and Economics Studies";journal;"2308944X, 23110279";"Financial University under The Government of Russian Federation";Yes;Yes;0,186;Q3;7;28;79;1236;99;77;1,58;44,14;43,75;0;Russian Federation;Eastern Europe;"Financial University under The Government of Russian Federation";"2020-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Accounting (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +22841;21101050073;"Revista Espanola de Investigacion Criminologica";journal;"16969219";"Sociedad Espanola de Investigacion Criminologica";Yes;Yes;0,186;Q3;6;13;63;693;35;57;0,60;53,31;58,06;0;Spain;Western Europe;"Sociedad Espanola de Investigacion Criminologica";"2016, 2019-2025";"Law (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +22842;24276;"Revue d'Economie Politique";journal;"03732630";"Editions Dalloz Sirey";No;No;0,186;Q3;20;0;58;0;28;57;0,64;0,00;0,00;0;France;Western Europe;"Editions Dalloz Sirey";"1975, 1978, 2005-2024";"Political Science and International Relations (Q3)";"Social Sciences" +22843;19700174666;"SAE International Journal of Materials and Manufacturing";journal;"19463987, 19463979";"SAE International";No;No;0,186;Q3;31;39;89;1370;90;88;1,15;35,13;16,30;0;United States;Northern America;"SAE International";"2002, 2009-2026";"Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +22844;19336;"Zhurnal Voprosy Nejrokhirurgii Imeni N.N. Burdenko";journal;"00428817, 23091681";"Media Sphera Publishing Group";No;No;0,186;Q3;15;81;257;1620;123;254;0,50;20,00;39,18;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"1945-2026";"Surgery (Q3); Medicine (miscellaneous) (Q4); Neurology (clinical) (Q4)";"Medicine" +22845;21101026987;"Annales Mathematicae Silesianae";journal;"23914238, 08602107";"";Yes;Yes;0,186;Q4;6;23;63;505;32;62;0,56;21,96;23,08;0;Poland;Eastern Europe;"";"2019-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +22846;21100860442;"Asia-Pacific Journal of Research in Early Childhood Education";journal;"19761961, 22335234";"Pacific Early Childhood Education Research Association";No;No;0,186;Q4;8;24;74;1116;33;74;0,34;46,50;81,36;0;China;Asiatic Region;"Pacific Early Childhood Education Research Association";"2018-2026";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +22847;28071;"Aviakosmicheskaia i ekologicheskaia meditsina = Aerospace and environmental medicine";journal;"0233528X";"Slovo Ltd";No;No;0,186;Q4;17;41;223;977;47;223;0,23;23,83;62,07;0;Russian Federation;Eastern Europe;"Slovo Ltd";"1992-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +22848;21101173093;"Biosaintifika";journal;"23387610, 2085191X";"Universitas Negeri Semarang";Yes;No;0,186;Q4;13;51;151;2106;161;151;1,08;41,29;50,59;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2018-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Education (Q4)";"Biochemistry, Genetics and Molecular Biology; Social Sciences" +22849;21101033230;"Case Reports in Nephrology";journal;"2090665X, 20906641";"John Wiley and Sons Ltd";Yes;No;0,186;Q4;11;31;59;607;36;59;0,56;19,58;42,47;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013-2015, 2018-2026";"Nephrology (Q4)";"Medicine" +22850;3200147816;"Chinese Journal of Cerebrovascular Diseases";journal;"16725921";"Society of China University Journals in Natural Sciences";No;No;0,186;Q4;11;61;337;2478;197;337;0,55;40,62;33,08;0;China;Asiatic Region;"Society of China University Journals in Natural Sciences";"2006-2025";"Cardiology and Cardiovascular Medicine (Q4); Neurology (clinical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +22851;21101038530;"Chinese Journal of Network and Information Security";journal;"2096109X";"Beijing Xintong Media Co., Ltd.";Yes;Yes;0,186;Q4;15;74;250;3147;216;250;0,77;42,53;35,08;0;China;Asiatic Region;"Beijing Xintong Media Co., Ltd.";"2019-2025";"Computer Networks and Communications (Q4)";"Computer Science" +22852;21100255070;"EEA - Electrotehnica, Electronica, Automatica";journal;"2392828X, 15825175";"Editura ELECTRA";Yes;No;0,186;Q4;18;52;94;1427;79;94;0,97;27,44;21,28;0;Romania;Eastern Europe;"Editura ELECTRA";"2012-2025";"Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Engineering" +22853;21101334582;"Energy Environmental Protection";journal;"20974183";"CCTEG Hangzhou Research Institute Co., Ltd";No;No;0,186;Q4;7;104;336;4961;279;336;1,13;47,70;35,32;0;China;Asiatic Region;"CCTEG Hangzhou Research Institute Co., Ltd";"2021-2026";"Environmental Engineering (Q4); Pollution (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Environmental Science" +22854;21100818508;"Fourrages";journal;"04292766";"Association Francaise pour la Production Fourragere";No;No;0,186;Q4;16;31;81;668;20;78;0,15;21,55;34,88;0;France;Western Europe;"Association Francaise pour la Production Fourragere";"2008-2025";"Agronomy and Crop Science (Q4); Food Science (Q4)";"Agricultural and Biological Sciences" +22855;27943;"Geomagnetism and Aeronomy";journal;"00167932, 1555645X";"Pleiades Publishing";No;No;0,186;Q4;33;15;439;515;213;439;0,49;34,33;20,00;0;United States;Northern America;"Pleiades Publishing";"1996, 1998-2025";"Geophysics (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences" +22856;21101047721;"Human Research in Rehabilitation";journal;"22329935, 2232996X";"Institute for Human Rehabilitation";Yes;Yes;0,186;Q4;6;43;93;1521;63;93;0,70;35,37;49,41;0;Bosnia and Herzegovina;Eastern Europe;"Institute for Human Rehabilitation";"2019-2025";"Education (Q4); Rehabilitation (Q4); Social Psychology (Q4)";"Medicine; Psychology; Social Sciences" +22857;4700152458;"Iheringia - Serie Zoologia";journal;"00734721";"Fundacao Zoobotanica do Rio Grande do Sul";Yes;Yes;0,186;Q4;34;2;50;88;37;50;0,60;44,00;75,00;0;Brazil;Latin America;"Fundacao Zoobotanica do Rio Grande do Sul";"2001-2002, 2006-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +22858;21669;"InterCeram: International Ceramic Review";journal;"00205214";"Expert Fachmedien Gmbh";No;No;0,186;Q4;20;0;24;0;6;12;0,00;0,00;0,00;0;Germany;Western Europe;"Expert Fachmedien Gmbh";"1979, 1983-1986, 1993-2022";"Ceramics and Composites (Q4); Inorganic Chemistry (Q4); Materials Chemistry (Q4)";"Chemistry; Materials Science" +22859;21100858129;"International Journal of Applied Metaheuristic Computing";journal;"19478283, 19478291";"IGI Global Publishing";No;No;0,186;Q4;11;4;14;196;15;14;0,50;49,00;33,33;0;United States;Northern America;"IGI Global Publishing";"2016, 2018-2025";"Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Science Applications (Q4); Control and Optimization (Q4); Decision Sciences (miscellaneous) (Q4); Modeling and Simulation (Q4); Statistics and Probability (Q4)";"Computer Science; Decision Sciences; Mathematics" +22860;21100199851;"International Journal of Athletic Therapy and Training";journal;"21577277, 21577285";"Human Kinetics Publishers Inc.";No;No;0,186;Q4;22;51;163;1399;51;157;0,36;27,43;54,29;0;United States;Northern America;"Human Kinetics Publishers Inc.";"2012-2026";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4); Sports Science (Q4)";"Health Professions; Medicine" +22861;21101073952;"ISeCure";journal;"20083076, 20082045";"Iranian Society of Cryptology";No;Yes;0,186;Q4;8;22;72;665;50;72;0,79;30,23;34,00;0;Iran;Middle East;"Iranian Society of Cryptology";"2019-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems (Q4); Software (Q4)";"Computer Science; Mathematics" +22862;21101175741;"Journal of Critical Limb Ischemia";journal;"26943026";"HMP Global";No;No;0,186;Q4;4;6;61;149;17;41;0,14;24,83;18,75;0;United States;Northern America;"HMP Global";"2021-2025";"Medicine (miscellaneous) (Q4); Neurology (clinical) (Q4); Podiatry (Q4)";"Health Professions; Medicine" +22863;21100203301;"Journal of Information Processing Systems";journal;"2092805X, 1976913X";"Korea Information Processing Society";No;No;0,186;Q4;36;54;212;1009;154;212;0,67;18,69;38,30;0;South Korea;Asiatic Region;"Korea Information Processing Society";"2012-2025";"Information Systems (Q4); Software (Q4)";"Computer Science" +22864;21100323200;"Journal of Molecular Catalysis(China)";journal;"10013555";"Science Press";No;No;0,186;Q4;16;56;172;2392;277;172;2,07;42,71;39,54;0;China;Asiatic Region;"Science Press";"2013-2025";"Catalysis (Q4)";"Chemical Engineering" +22865;21100326279;"Journal of Neutron Research";journal;"14772655, 10238166";"SAGE Publications Ltd";No;No;0,186;Q4;27;0;52;0;42;50;0,85;0,00;0,00;0;Netherlands;Western Europe;"SAGE Publications Ltd";"1993-2008, 2014-2024";"Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4)";"Energy; Physics and Astronomy" +22866;145506;"Journal of Physical Studies";journal;"10274642, 23100052";"Ivan Franko National University of Lviv";Yes;No;0,186;Q4;15;40;95;1245;57;95;0,59;31,13;28,00;0;Ukraine;Eastern Europe;"Ivan Franko National University of Lviv";"2004-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +22867;21101247201;"Journal of Signal Processing";journal;"10030530";"";No;No;0,186;Q4;13;154;631;4860;501;630;0,82;31,56;33,40;0;China;Asiatic Region;"";"2020-2026";"Signal Processing (Q4)";"Computer Science" +22868;22303;"Journal of the Operations Research Society of Japan";journal;"04534514";"Operations Research Society of Japan";No;No;0,186;Q4;33;9;32;164;12;32;0,50;18,22;14,29;0;Japan;Asiatic Region;"Operations Research Society of Japan";"1983, 1996-2026";"Decision Sciences (miscellaneous) (Q4); Management Science and Operations Research (Q4)";"Decision Sciences" +22869;6800153108;"Jurnal Pengurusan";journal;"01272713";"Penerbit Universiti Kebangsaan Malaysia";No;No;0,186;Q4;22;17;95;1399;80;95;0,69;82,29;48,72;0;Malaysia;Asiatic Region;"Penerbit Universiti Kebangsaan Malaysia";"2006-2025";"Accounting (Q4); Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +22870;21100903780;"lnternational Journal of Differential Equations and Applications";journal;"13146084";"Academic Publications Ltd.";Yes;No;0,186;Q4;9;6;41;242;17;41;0,50;40,33;30,77;0;Bulgaria;Eastern Europe;"Academic Publications Ltd.";"2019-2025";"Analysis (Q4); Applied Mathematics (Q4)";"Mathematics" +22871;20300195027;"Macroheterocycles";journal;"19989539";"Ivanovo State University of Chemistry and Technology";No;No;0,186;Q4;23;5;99;190;68;99;0,48;38,00;45,83;0;Russian Federation;Eastern Europe;"Ivanovo State University of Chemistry and Technology";"2008-2025";"Analytical Chemistry (Q4); Organic Chemistry (Q4)";"Chemistry" +22872;21101329569;"Management international";journal;"19189222, 12061697";"Ecole des Hautes Etudes Commerciales";No;No;0,186;Q4;7;44;306;2780;100;220;0,29;63,18;47,92;0;Canada;Northern America;"Ecole des Hautes Etudes Commerciales";"2021-2025";"Business and International Management (Q4)";"Business, Management and Accounting" +22873;21101149372;"Menoufia Journal of Electronic Engineering Research";journal;"26823535, 16871189";"Menoufia University, Faculty of Electronic Engineering";Yes;No;0,186;Q4;7;14;39;468;36;39;1,22;33,43;25,00;0;Egypt;Africa/Middle East;"Menoufia University, Faculty of Electronic Engineering";"2015, 2017-2026";"Applied Mathematics (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Signal Processing (Q4)";"Computer Science; Engineering; Mathematics" +22874;21100827464;"Nanobiomedicine";journal;"18495435";"SAGE Publications Ltd";Yes;No;0,186;Q4;19;0;1;0;1;1;0,00;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2014-2022";"Biomedical Engineering (Q4); Biotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering" +22875;21100201316;"Petroleum and Coal";journal;"13377027, 13353055";"Slovnaft VURUP a.s";Yes;No;0,186;Q4;21;91;306;2681;180;306;0,68;29,46;25,98;0;Slovakia;Eastern Europe;"Slovnaft VURUP a.s";"2011-2025";"Energy (miscellaneous) (Q4)";"Energy" +22876;21101257836;"Proceedings of the IEEE International Conference on Cybernetics and Intelligent Systems, CIS";journal;"23268123, 23268239";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,186;Q4;3;0;100;0;75;98;0,75;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Science Applications (Q4); Control and Optimization (Q4); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4)";"Computer Science; Engineering; Mathematics" +22877;4700152605;"Psicologia: Teoria e Pesquisa";journal;"01023772, 18063446";"Universidade de Brasilia";Yes;Yes;0,186;Q4;27;49;150;2219;83;150;0,55;45,29;62,12;0;Brazil;Latin America;"Universidade de Brasilia";"2000-2001, 2006-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +22878;21101272730;"Revista Academia and Negocios";journal;"07197713, 07196245";"Universidad de Concepcion";Yes;Yes;0,186;Q4;5;20;75;626;42;62;0,54;31,30;35,90;0;Chile;Latin America;"Universidad de Concepcion";"2021-2026";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +22879;21101290843;"Revista de Psicoterapia";journal;"23397950, 11305142";"Grupo Editorial Psicofundacion";No;No;0,186;Q4;5;25;118;1371;52;110;0,44;54,84;37,50;0;Spain;Western Europe;"Grupo Editorial Psicofundacion";"2021-2025";"Clinical Psychology (Q4)";"Psychology" +22880;21100239237;"Ship Building of China";journal;"10004882";"Editorial office of Ship Building of China";No;No;0,186;Q4;13;115;423;2198;201;423;0,47;19,11;24,14;0;China;Asiatic Region;"Editorial office of Ship Building of China";"2013-2025";"Mechanical Engineering (Q4)";"Engineering" +22881;17700156305;"American Concrete Institute, ACI Special Publication";conference and proceedings;"01932527";"American Concrete Institute";No;No;0,186;-;45;12;342;365;89;316;0,30;30,42;7,69;0;United States;Northern America;"American Concrete Institute";"1942, 1962-1975, 1977-2025";"Building and Construction; Civil and Structural Engineering; Materials Science (miscellaneous)";"Engineering; Materials Science" +22882;21100879002;"IEEE International Pulsed Power Conference";conference and proceedings;"21584915, 21584923";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,186;-;8;284;115;681;41;114;0,36;2,40;14,79;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017-2019, 2021, 2023, 2025";"Electrical and Electronic Engineering; Energy Engineering and Power Technology";"Energy; Engineering" +22883;21101198460;"IEEE Student Conference on Electric Machines and Systems (SCEMS)";conference and proceedings;"27717577";"Institute of Electrical and Electronics Engineers";No;No;0,186;-;4;30;202;401;90;198;0,45;13,37;27,85;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2023-2025";"Control and Systems Engineering; Electrical and Electronic Engineering; Industrial and Manufacturing Engineering; Mechanical Engineering";"Engineering" +22884;25533;"Proceedings of the Information Visualization Conference";conference and proceedings;"10939547";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,186;-;48;66;202;1534;137;196;0,70;23,24;24,02;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1995-1997, 1999-2016, 2019-2025";"Computer Vision and Pattern Recognition; Signal Processing; Software";"Computer Science" +22885;21101184584;"PASIPHAE";journal;"19740565, 2037738X";"Fabrizio Serra Editore";No;No;0,185;Q1;5;20;63;808;20;62;0,29;40,40;40,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019, 2021-2025";"Classics (Q1); Archeology (arts and humanities) (Q2); History (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +22886;16400154770;"Revista Iberoamericana";journal;"21544794, 00349631";"Liverpool University Press";No;No;0,185;Q1;9;50;151;1167;27;144;0,23;23,34;31,11;0;United States;Northern America;"Liverpool University Press";"2002, 2005-2007, 2009-2026";"Literature and Literary Theory (Q1)";"Arts and Humanities" +22887;21100200612;"Studies in Australasian Cinema";journal;"17503175, 17503183";"Taylor and Francis Ltd.";No;No;0,185;Q1;14;20;23;807;19;16;0,77;40,35;75,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2023, 2025-2026";"Visual Arts and Performing Arts (Q1); Communication (Q3)";"Arts and Humanities; Social Sciences" +22888;21101146658;"Archives of Breast Cancer";journal;"23830433";"Farname Inc.";Yes;Yes;0,185;Q2;9;57;173;1792;98;158;0,40;31,44;56,87;0;Canada;Northern America;"Farname Inc.";"2019-2025";"Pathophysiology (Q2); Cancer Research (Q4); Epidemiology (Q4); Genetics (Q4); Molecular Biology (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +22889;21100873334;"Biblical Annals";journal;"20832222, 24512168";"The John Paul II Catholic University of Lublin";Yes;Yes;0,185;Q2;4;28;86;1682;19;85;0,28;60,07;14,71;0;Poland;Eastern Europe;"The John Paul II Catholic University of Lublin";"2018-2026";"Religious Studies (Q2)";"Arts and Humanities" +22890;21100389317;"Conservation Science in Cultural Heritage";journal;"19739494, 19744951";"University of Bologna";Yes;No;0,185;Q2;10;22;39;463;24;37;0,67;21,05;28,21;0;Italy;Western Europe;"University of Bologna";"2014-2025";"Conservation (Q2); Museology (Q2)";"Arts and Humanities" +22891;5700157895;"Enfance";journal;"19696981, 00137545";"Presses Universitaires de France";Yes;No;0,185;Q2;17;16;92;543;21;82;0,20;33,94;80,95;4;France;Western Europe;"Presses Universitaires de France";"1949-1953, 2002-2025";"Arts and Humanities (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q3); Developmental and Educational Psychology (Q4); Education (Q4); Health (social science) (Q4)";"Arts and Humanities; Medicine; Psychology; Social Sciences" +22892;18166;"European History Quarterly";journal;"14617110, 02656914";"SAGE Publications Ltd";No;No;0,185;Q2;25;26;104;1030;56;90;0,47;39,62;57,58;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1971-2026";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +22893;21100200441;"Glasnik SED";journal;"03512908";"Slovensko Etnolosko Drustvo";No;No;0,185;Q2;9;32;111;936;11;103;0,13;29,25;64,71;0;Slovenia;Eastern Europe;"Slovensko Etnolosko Drustvo";"2007-2025";"Conservation (Q2); Cultural Studies (Q2); Museology (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +22894;21101101951;"Islam Tetkikleri Dergisi";journal;"27176967";"Istanbul University Press";Yes;Yes;0,185;Q2;3;13;74;518;10;74;0,16;39,85;21,43;0;Turkey;Middle East;"Istanbul University Press";"2020-2025";"History (Q2); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +22895;29382;"Jewish Social Studies";journal;"00216704, 15272028";"Indiana University Press";No;No;0,185;Q2;8;6;64;492;29;64;0,49;82,00;33,33;0;United States;Northern America;"Indiana University Press";"1975, 1978, 1980-1981, 1983, 2017-2025";"Cultural Studies (Q2); History (Q2); Religious Studies (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +22896;21101220756;"Journal of Buddhist Anthropology";journal;"2985086X";"Temple of Wang Tawan Tok";No;No;0,185;Q2;2;48;56;1013;10;56;0,18;21,10;44,62;0;Thailand;Asiatic Region;"Temple of Wang Tawan Tok";"2023-2025";"Arts and Humanities (miscellaneous) (Q2); Religious Studies (Q2); Anthropology (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +22897;21100868416;"Laboratorium: Russian Review of Social Research";journal;"20781938, 20768214";"Institute for European Russian and Eurasian Studies, The George Washington University";No;No;0,185;Q2;8;15;56;741;29;56;0,50;49,40;52,38;0;United States;Northern America;"Institute for European Russian and Eurasian Studies, The George Washington University";"2018-2025";"Cultural Studies (Q2); History (Q2); Anthropology (Q3); Gender Studies (Q3); Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22898;17568;"Law and Philosophy";journal;"15730522, 01675249";"Springer Netherlands";No;No;0,185;Q2;43;30;81;0;53;80;0,61;0,00;18,18;0;Netherlands;Western Europe;"Springer Netherlands";"1982-2026";"Philosophy (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +22899;5800222691;"Magyar Nyelvor";journal;"00250236, 15854515";"MNYKNT";Yes;No;0,185;Q2;8;57;183;1442;67;140;0,49;25,30;31,43;0;Hungary;Eastern Europe;"MNYKNT";"2011-2025";"Linguistics and Language (Q2)";"Social Sciences" +22900;21101245778;"Mathematics Education Journal";journal;"19780044, 25491040";"Sriwijaya University";Yes;Yes;0,185;Q2;8;40;78;1744;82;78;1,15;43,60;54,88;0;Indonesia;Asiatic Region;"Sriwijaya University";"2020-2025";"Cultural Studies (Q2); Development (Q4); Education (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics; Social Sciences" +22901;21100945761;"Revista de Historia (Chile)";journal;"07169108, 07178832";"Universidad de Concepcion";Yes;Yes;0,185;Q2;6;30;128;1709;65;120;0,39;56,97;27,78;0;Chile;Latin America;"Universidad de Concepcion";"2019-2025";"History (Q2)";"Arts and Humanities" +22902;21100917133;"Rural Landscapes";journal;"20020104";"Stockholm University Press";Yes;No;0,185;Q2;7;4;11;338;10;10;1,13;84,50;55,56;0;Sweden;Western Europe;"Stockholm University Press";"2019-2026";"History (Q2); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4)";"Arts and Humanities; Environmental Science; Social Sciences" +22903;21101070310;"Thammasat Review";journal;"08595747, 26300303";"Thammasat University";No;No;0,185;Q2;6;31;76;1989;52;76;0,75;64,16;32,65;0;Thailand;Asiatic Region;"Thammasat University";"2019-2025";"Religious Studies (Q2); History and Philosophy of Science (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22904;21100367954;"Topics in Linguistics";journal;"21996504";"Univerzita Konstantina Filozofa v Nitre";Yes;Yes;0,185;Q2;9;13;35;526;28;35;0,70;40,46;80,77;0;Slovakia;Eastern Europe;"Univerzita Konstantina Filozofa v Nitre";"2014-2025";"Linguistics and Language (Q2)";"Social Sciences" +22905;21100304895;"Archives of Clinical Infectious Diseases";journal;"23452641";"Brieflands";Yes;No;0,185;Q3;25;59;149;1514;84;127;0,65;25,66;49,20;0;Netherlands;Western Europe;"Brieflands";"2012-2025";"Critical Care and Intensive Care Medicine (Q3); Cardiology and Cardiovascular Medicine (Q4); Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Microbiology (Q4); Public Health, Environmental and Occupational Health (Q4); Toxicology (Q4)";"Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +22906;5700154403;"Australian Journal of Emergency Management";journal;"13241540";"Australian Institute for Disaster Resilience";Yes;No;0,185;Q3;34;28;146;982;84;146;0,44;35,07;56,38;1;Australia;Pacific Region;"Australian Institute for Disaster Resilience";"1998-2026";"Emergency Medical Services (Q3); Health Professions (miscellaneous) (Q3); Safety Research (Q4)";"Health Professions; Social Sciences" +22907;21100820654;"Chinese Journal of Comparative Law";journal;"20504802, 20504810";"Oxford University Press";No;No;0,185;Q3;14;13;49;1666;32;49;0,57;128,15;31,25;0;United Kingdom;Western Europe;"Oxford University Press";"2013-2025";"Law (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +22908;21101368705;"Contemporary European Politics";journal;"28330188";"John Wiley and Sons Inc";No;No;0,185;Q3;2;13;11;956;9;9;0,82;73,54;47,06;0;United States;Northern America;"John Wiley and Sons Inc";"2023-2026";"Political Science and International Relations (Q3)";"Social Sciences" +22909;21101144492;"Contributions to International Relations";book series;"27315061, 2731507X";"Springer Nature";No;No;0,185;Q3;5;20;431;2109;102;1;0,31;105,45;0,00;0;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +22910;21101163454;"Economics and Finance Letters";journal;"2312430X, 23126310";"Conscientia Beam";No;No;0,185;Q3;4;31;41;1451;35;41;0,85;46,81;39,68;0;United States;Northern America;"Conscientia Beam";"2023-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +22911;21101053586;"European Review of Private Law";journal;"18758371, 09289801";"Kluwer Law International";No;No;0,185;Q3;10;53;146;2355;75;133;0,41;44,43;32,84;0;Netherlands;Western Europe;"Kluwer Law International";"2019-2025";"Law (Q3)";"Social Sciences" +22912;21101076095;"Information and Media";journal;"27836207";"Vilnius University Press";Yes;Yes;0,185;Q3;6;14;58;628;37;58;0,60;44,86;65,52;0;Lithuania;Eastern Europe;"Vilnius University Press";"2021-2025";"Information Systems and Management (Q3); Library and Information Sciences (Q3); Media Technology (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Management of Technology and Innovation (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering; Physics and Astronomy; Social Sciences" +22913;21101169073;"International Annals of Criminology";journal;"00034452, 2398676X";"Cambridge University Press";No;No;0,185;Q3;8;40;54;1810;47;51;0,92;45,25;39,77;0;United Kingdom;Western Europe;"Cambridge University Press";"1989, 2019-2026";"Law (Q3)";"Social Sciences" +22914;21101045271;"International Journal of Advanced and Applied Sciences";journal;"23133724, 2313626X";"Institute of Advanced Science Extension (IASE)";Yes;No;0,185;Q3;19;300;839;10759;815;839;1,02;35,86;37,30;1;Taiwan;Asiatic Region;"Institute of Advanced Science Extension (IASE)";"2019-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +22915;21100369811;"JCRS Online Case Reports";journal;"22141677";"Lippincott Williams and Wilkins";Yes;No;0,185;Q3;8;53;77;601;27;77;0,39;11,34;32,19;0;United States;Northern America;"Lippincott Williams and Wilkins";"2013-2026";"Ophthalmology (Q3); Surgery (Q3)";"Medicine" +22916;21100441452;"Journal of Strategic Security";journal;"19440472, 19440464";"Henlley-Putnam University Press";Yes;Yes;0,185;Q3;20;63;96;3449;69;96;0,68;54,75;29,87;0;United States;Northern America;"Henlley-Putnam University Press";"2014-2025";"Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Safety Research (Q4)";"Social Sciences" +22917;21101060908;"Korean Journal of Financial Studies";journal;"27135543, 20058187";"Korean Securities Association";No;No;0,185;Q3;6;12;78;453;29;78;0,20;37,75;34,78;0;South Korea;Asiatic Region;"Korean Securities Association";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +22918;18346;"Medycyna Weterynaryjna";journal;"00258628";"Polskie Towarzystwo Nauk Weterynaryjnych";No;No;0,185;Q3;25;87;288;3556;142;288;0,45;40,87;43,00;0;Poland;Eastern Europe;"Polskie Towarzystwo Nauk Weterynaryjnych";"1945, 1950-1951, 1960-1963, 1973-1979, 1996-2026";"Veterinary (miscellaneous) (Q3)";"Veterinary" +22919;21565;"Noise Control Engineering Journal";journal;"07362501, 21688710";"Institute of Noise Control Engineering";No;No;0,185;Q3;37;41;125;1253;75;124;0,54;30,56;19,59;0;United States;Northern America;"Institute of Noise Control Engineering";"1979-1985, 1987-2025";"Industrial and Manufacturing Engineering (Q3); Acoustics and Ultrasonics (Q4); Aerospace Engineering (Q4); Automotive Engineering (Q4); Building and Construction (Q4); Mechanical Engineering (Q4); Public Health, Environmental and Occupational Health (Q4)";"Engineering; Medicine; Physics and Astronomy" +22920;21101051216;"Pakistan Journal of Agricultural Research";journal;"02510480, 22278311";"ResearchersLinks Ltd";No;No;0,185;Q3;16;41;175;1441;128;174;0,73;35,15;40,65;0;United Kingdom;Western Europe;"ResearchersLinks Ltd";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3)";"Agricultural and Biological Sciences" +22921;25234;"Perspectives on Global Development and Technology";journal;"15691497, 15691500";"Brill Academic Publishers";No;No;0,185;Q3;24;35;78;1538;58;75;0,83;43,94;27,12;0;Netherlands;Western Europe;"Brill Academic Publishers";"2002-2025";"Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3); Development (Q4); Education (Q4); Geography, Planning and Development (Q4); Health (social science) (Q4)";"Social Sciences" +22922;21101087787;"Photonics Russia";journal;"2686844X, 19937296";"Technosphera Publishing House";No;No;0,185;Q3;7;53;147;685;52;145;0,38;12,92;24,67;0;Russian Federation;Eastern Europe;"Technosphera Publishing House";"2019-2025";"Industrial and Manufacturing Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4)";"Engineering; Materials Science; Physics and Astronomy" +22923;21100902947;"Proceedings of the Pakistan Academy of Sciences: Part B";journal;"2518427X, 25184261";"Pakistan Academy of Sciences";No;No;0,185;Q3;14;31;172;1437;132;169;0,77;46,35;30,47;0;Pakistan;Asiatic Region;"Pakistan Academy of Sciences";"2016-2025";"Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +22924;21100888590;"Revista Interamericana de Bibliotecologia";journal;"25389866, 01200976";"Escuela Interamericana de Bibliotecologia";Yes;Yes;0,185;Q3;12;22;64;700;30;58;0,51;31,82;54,55;0;Colombia;Latin America;"Escuela Interamericana de Bibliotecologia";"2000-2026";"Library and Information Sciences (Q3)";"Social Sciences" +22925;19700175603;"Advances in Military Technology";journal;"18022308, 25334123";"University of Defence";Yes;Yes;0,185;Q4;15;39;68;927;68;68;1,05;23,77;12,71;0;Czech Republic;Eastern Europe;"University of Defence";"2006-2025";"Aerospace Engineering (Q4); Automotive Engineering (Q4); Civil and Structural Engineering (Q4); Control and Systems Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +22926;19400157227;"AgriScientia";journal;"1668298X, 03276244";"Universidad Nacional de Cordoba";Yes;No;0,185;Q4;14;13;49;1013;33;49;0,17;77,92;54,55;0;Argentina;Latin America;"Universidad Nacional de Cordoba";"2006-2025";"Agronomy and Crop Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +22927;19700175303;"Analele Stiintifice ale Universitatii Al I Cuza din Iasi - Matematica";journal;"12218421";"Alexandru Ioan Cuza University of Iasi";No;No;0,185;Q4;16;12;49;240;25;49;0,31;20,00;22,73;0;Romania;Eastern Europe;"Alexandru Ioan Cuza University of Iasi";"2009-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +22928;19700174668;"Annual Review of CyberTherapy and Telemedicine";journal;"15548716";"Virtual Reality Medical Institute";Yes;No;0,185;Q4;24;42;107;806;63;99;0,51;19,19;50,83;0;Belgium;Western Europe;"Virtual Reality Medical Institute";"2009-2025";"Computer Science (miscellaneous) (Q4); Neuroscience (miscellaneous) (Q4); Psychology (miscellaneous) (Q4); Rehabilitation (Q4)";"Computer Science; Medicine; Neuroscience; Psychology" +22929;21101039893;"China Oncology";journal;"10073639";"Editorial Office of China Oncology";Yes;No;0,185;Q4;10;124;359;5138;235;357;0,77;41,44;43,14;0;China;Asiatic Region;"Editorial Office of China Oncology";"2019-2026";"Oncology (Q4)";"Medicine" +22930;21100853534;"Cogitare Enfermagem";journal;"21769133, 14148536";"Universidade Federal do Parana";Yes;No;0,185;Q4;13;90;373;2374;139;359;0,29;26,38;78,98;1;Brazil;Latin America;"Universidade Federal do Parana";"2014-2026";"Nursing (miscellaneous) (Q4)";"Nursing" +22931;11200153545;"Computer Aided Chemical Engineering";book series;"15707946";"Elsevier B.V.";No;No;0,185;Q4;36;0;1784;0;1210;249;0,69;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1987, 1990, 1997, 2000-2024";"Chemical Engineering (miscellaneous) (Q4); Computer Science Applications (Q4)";"Chemical Engineering; Computer Science" +22932;19900191871;"Conference Proceedings of the Society for Experimental Mechanics Series";book series;"21915644, 21915652";"Springer";No;No;0,185;Q4;34;159;940;2163;316;848;0,32;13,60;16,01;0;United States;Northern America;"Springer";"2005-2009, 2011-2025";"Computational Mechanics (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Engineering" +22933;22382;"Huazhong Keji Daxue Xuebao (Ziran Kexue Ban)/Journal of Huazhong University of Science and Technology (Natural Science Edition)";journal;"16714512";"Huazhong University of Science and Technology";No;No;0,185;Q4;22;272;758;6054;574;758;0,67;22,26;32,75;0;China;Asiatic Region;"Huazhong University of Science and Technology";"2002-2026";"Computer Science (miscellaneous) (Q4)";"Computer Science" +22934;14025;"Human Physiology";journal;"16083164, 03621197";"Pleiades Publishing";No;No;0,185;Q4;22;57;319;2307;131;319;0,40;40,47;69,66;0;United States;Northern America;"Pleiades Publishing";"1975-1986, 1996, 1999, 2002-2003, 2005-2025";"Physiology (Q4); Physiology (medical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +22935;10700153304;"Indian Journal of Rheumatology";journal;"09733698";"SAGE Publications Ltd";Yes;Yes;0,185;Q4;17;82;272;2215;98;172;0,40;27,01;40,00;0;India;Asiatic Region;"SAGE Publications Ltd";"2007-2026";"Rheumatology (Q4)";"Medicine" +22936;21100223332;"International Journal of Information System Modeling and Design";journal;"19478186, 19478194";"IGI Publishing";No;No;0,185;Q4;20;35;41;1314;52;41;1,11;37,54;56,94;0;United States;Northern America;"IGI Publishing";"2010-2026";"Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Computer Science" +22937;12000154321;"International Journals of e-Collaboration";journal;"15483681, 15483673";"IGI Global";No;No;0,185;Q4;30;47;188;1453;200;188;1,23;30,91;55,70;0;United States;Northern America;"IGI Global";"2005-2026";"Computer Networks and Communications (Q4); Computer Science Applications (Q4)";"Computer Science" +22938;21100905327;"Investigacoes em Ensino de Ciencias";journal;"15188795, 15189384";"Universidade Federal do Rio Grande do Sul, Instituto de Fisica";Yes;Yes;0,185;Q4;6;56;172;2926;68;172;0,25;52,25;48,48;0;Brazil;Latin America;"Universidade Federal do Rio Grande do Sul, Instituto de Fisica";"2019-2025";"Education (Q4)";"Social Sciences" +22939;21101388280;"Iraqi Journal of Computers, Communications, Control and Systems Engineering";journal;"18119212, 26173352";"University of Technology - Iraq";No;No;0,185;Q4;11;17;140;535;130;140;0,82;31,47;43,48;0;Iraq;Middle East;"University of Technology - Iraq";"2021-2025";"Control and Systems Engineering (Q4)";"Engineering" +22940;26713;"Jisuanji Gongcheng/Computer Engineering";journal;"10003428";"Shanghai Jisuanji Xuehui/Shanghai Computer Society";No;No;0,185;Q4;24;396;1360;13061;1139;1360;0,90;32,98;34,46;0;China;Asiatic Region;"Shanghai Jisuanji Xuehui/Shanghai Computer Society";"1998, 2001-2006, 2019-2026";"Computational Theory and Mathematics (Q4); Computer Graphics and Computer-Aided Design (Q4); Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Software (Q4)";"Computer Science" +22941;21101270279;"Journal of Building Material Science";journal;"26305216";"Bilingual Publishing Group";No;No;0,185;Q4;4;46;25;2052;33;24;1,87;44,61;18,49;0;Singapore;Asiatic Region;"Bilingual Publishing Group";"2022-2025";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Environmental Engineering (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Environmental Science; Materials Science" +22942;21101064339;"Journal of Food Legumes";journal;"09762434, 09706380";"Indian Society of Pulses Research and Development (ISPRD)";No;No;0,185;Q4;7;81;166;2660;109;161;0,87;32,84;28,91;0;India;Asiatic Region;"Indian Society of Pulses Research and Development (ISPRD)";"2019-2025";"Food Science (Q4); Horticulture (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +22943;21101274722;"Journal of Innovative Image Processing";journal;"25824252";"Inventive Research Organization";No;No;0,185;Q4;8;71;91;1974;98;91;1,16;27,80;34,56;0;India;Asiatic Region;"Inventive Research Organization";"2022-2025";"Artificial Intelligence (Q4); Biomedical Engineering (Q4); Computer Vision and Pattern Recognition (Q4); Human-Computer Interaction (Q4)";"Computer Science; Engineering" +22944;21101268975;"Journal of Renewable Energy and Smart Grid Technology";journal;"26300036";"Naresuan University";No;No;0,185;Q4;5;17;25;568;24;25;1,22;33,41;40,00;0;Thailand;Asiatic Region;"Naresuan University";"2020-2026";"Electrical and Electronic Engineering (Q4); Engineering (miscellaneous) (Q4); Global and Planetary Change (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering; Environmental Science" +22945;12281;"Journal of Social Development in Africa";journal;"10121080";"School of Social Work";No;No;0,185;Q4;16;14;37;632;21;32;0,80;45,14;50,00;0;Zimbabwe;Africa;"School of Social Work";"1986-2018, 2020-2025";"Development (Q4); Geography, Planning and Development (Q4)";"Social Sciences" +22946;11700154394;"Journal of Wealth Management";journal;"15347524";"Portfolio Management Research";No;No;0,185;Q4;17;33;111;836;40;99;0,34;25,33;23,21;0;United States;Northern America;"Portfolio Management Research";"1998, 2008-2026";"Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +22947;40463;"Lege Artis Medicinae";journal;"20634161, 08664811";"Literatura Medica Publishing House";No;No;0,185;Q4;10;101;244;1486;20;208;0,10;14,71;30,77;0;Hungary;Eastern Europe;"Literatura Medica Publishing House";"1977, 1996-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +22948;21101142602;"Microbes and Infectious Diseases";journal;"26824140, 26824132";"Zagazig University, Faculty of Medicine";Yes;No;0,185;Q4;9;223;428;8088;246;408;0,64;36,27;53,95;0;Egypt;Africa/Middle East;"Zagazig University, Faculty of Medicine";"2020-2026";"Infectious Diseases (Q4); Microbiology (medical) (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +22949;21101254079;"Modern Preventive Medicine";journal;"10038507";"";Yes;No;0,185;Q4;11;731;2205;18013;1171;2205;0,59;24,64;50,59;0;China;Asiatic Region;"";"2020-2026";"Epidemiology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +22950;15817;"National Medical Journal of India";journal;"0970258X";"Wolters Kluwer Medknow Publications";No;No;0,185;Q4;49;107;335;0;169;291;0,49;0,00;38,03;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1988-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +22951;21101047441;"Nigerian Journal of Technological Development";journal;"24372110, 01899546";"University of Ilorin, Faculty of Engineering and Technology";Yes;No;0,185;Q4;10;93;143;3996;138;143;0,87;42,97;20,19;0;Nigeria;Africa;"University of Ilorin, Faculty of Engineering and Technology";"2019-2025";"Civil and Structural Engineering (Q4); Electrical and Electronic Engineering (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Engineering" +22952;19900192127;"Nursing children and young people";journal;"20462344, 20462336";"RCN Publishing Company Ltd.";No;No;0,185;Q4;28;20;49;0;31;49;0,56;0,00;73,33;0;United Kingdom;Western Europe;"RCN Publishing Company Ltd.";"2011-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +22953;21100820675;"Orbital";journal;"19846428";"Universidade Federal de Mato Grosso do Sul, Departamento de Quimica";Yes;Yes;0,185;Q4;16;68;111;3112;115;111;1,01;45,76;41,36;0;Brazil;Latin America;"Universidade Federal de Mato Grosso do Sul, Departamento de Quimica";"2017-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Materials Science" +22954;19700174957;"Pneumon";journal;"1105848X, 17914914";"European Publishing";Yes;No;0,185;Q4;9;21;106;492;68;94;0,53;23,43;47,29;0;Greece;Western Europe;"European Publishing";"2009-2025";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +22955;21100286375;"PNRPU Mechanics Bulletin";journal;"22249893, 22261869";"Perm National Research Polytechnic University";No;No;0,185;Q4;19;29;195;1200;84;195;0,36;41,38;38,46;0;Russian Federation;Eastern Europe;"Perm National Research Polytechnic University";"2013-2025";"Computational Mechanics (Q4); Materials Science (miscellaneous) (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +22956;21101276990;"Proceedings of the Euromicro Conference on Software Engineering and Advanced Applications, EUROMICRO-SEAA";journal;"23769521, 2640592X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,185;Q4;3;0;78;0;65;74;0,83;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Science Applications (Q4); Software (Q4)";"Computer Science" +22957;5100155040;"Psychiatria i Psychologia Kliniczna";journal;"16446313, 24510645";"Medical Communications";Yes;Yes;0,185;Q4;13;24;127;1191;43;125;0,39;49,63;60,56;0;Poland;Eastern Europe;"Medical Communications";"2006-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +22958;21100812627;"Publicaciones de la Facultad de Educacion y Humanidades del Campus de Melilla";journal;"25309269, 15774147";"Universidad de Granada";Yes;Yes;0,185;Q4;13;20;62;869;41;55;0,58;43,45;43,33;0;Spain;Western Europe;"Universidad de Granada";"2012-2025";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +22959;21100870580;"Transactions of the Korean Society of Automotive Engineers";journal;"12256382, 22340149";"Korean Society of Automotive Engineers";No;No;0,185;Q4;9;104;325;2187;118;325;0,38;21,03;20,67;0;South Korea;Asiatic Region;"Korean Society of Automotive Engineers";"2018-2025";"Automotive Engineering (Q4)";"Engineering" +22960;19700174633;"Turk Noroloji Dergisi";journal;"1301062X";"Turkish Neurosurgical Society";Yes;Yes;0,185;Q4;11;67;160;1481;83;116;0,43;22,10;52,20;0;Turkey;Middle East;"Turkish Neurosurgical Society";"2010-2025";"Neurology (clinical) (Q4)";"Medicine" +22961;18401;"Zairyo/Journal of the Society of Materials Science, Japan";journal;"18807488, 05145163";"Society of Materials Science Japan";No;No;0,185;Q4;29;118;459;2125;105;431;0,23;18,01;13,77;0;Japan;Asiatic Region;"Society of Materials Science Japan";"1963-2026";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +22962;19900191623;"AJS Review";journal;"03640094, 14754541";"Cambridge University Press";No;No;0,184;Q1;22;25;43;2409;14;41;0,18;96,36;26,92;0;United Kingdom;Western Europe;"Cambridge University Press";"1976-1982, 1984-1999, 2001-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +22963;16000154779;"Hispanofila";journal;"00182206";"University of North Carolina at Chapel Hill";No;No;0,184;Q1;7;10;104;311;16;97;0,20;31,10;50,00;0;United States;Northern America;"University of North Carolina at Chapel Hill";"2002-2026";"Literature and Literary Theory (Q1)";"Arts and Humanities" +22964;5800207800;"Literatura y Linguistica";journal;"0717621X, 07165811";"Universidad Catolica Silva Henriquez";Yes;Yes;0,184;Q1;14;20;125;779;50;124;0,35;38,95;57,69;0;Chile;Latin America;"Universidad Catolica Silva Henriquez";"2008-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22965;21101023288;"Research in Contemporary World Literature/ Pazhuhesh-e Zabanha-ye Khareji";journal;"25887092, 25884131";"Faculty of Foreign Languages, University of Tehran";Yes;No;0,184;Q1;7;27;118;812;16;118;0,17;30,07;44,00;0;Iran;Middle East;"Faculty of Foreign Languages, University of Tehran";"2008-2015, 2017-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22966;19700182909;"SHAW";journal;"07415842, 15291480";"Penn State University Press";No;No;0,184;Q1;6;17;75;1383;30;72;0,58;81,35;25,00;0;United States;Northern America;"Penn State University Press";"2010-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +22967;21100200422;"SKASE Journal of Translation and Interpretation";journal;"13367811";"Slovak Association for the Study of English";Yes;No;0,184;Q1;9;5;31;207;8;29;0,30;41,40;20,00;0;Slovakia;Eastern Europe;"Slovak Association for the Study of English";"2011, 2013-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +22968;21100939984;"Studies in Late Antiquity";journal;"24702048";"University of California Press";No;No;0,184;Q1;10;15;65;1884;33;59;0,50;125,60;43,75;0;United States;Northern America;"University of California Press";"2017-2025";"Classics (Q1); History (Q2); Religious Studies (Q2)";"Arts and Humanities" +22969;21101186901;"Urdimento";journal;"23586958";"State University of Santa Catarina";Yes;Yes;0,184;Q1;3;120;320;2184;11;309;0,04;18,20;56,67;0;Brazil;Latin America;"State University of Santa Catarina";"2021-2025";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +22970;21100373986;"Archives and Records";journal;"23257989, 23257962";"Taylor and Francis Ltd.";No;No;0,184;Q2;20;18;60;417;41;57;0,60;23,17;65,52;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"History (Q2)";"Arts and Humanities" +22971;21100900272;"Asian Journal of Peacebuilding";journal;"22882707, 22882693";"Seoul National University - Institute for Peace and Unification Studies";No;No;0,184;Q2;10;13;52;727;45;48;0,30;55,92;23,81;0;South Korea;Asiatic Region;"Seoul National University - Institute for Peace and Unification Studies";"2018-2025";"Arts and Humanities (miscellaneous) (Q2); Political Science and International Relations (Q3); Safety Research (Q4)";"Arts and Humanities; Social Sciences" +22972;21101272602;"Contemporary Issues on Interfaith Law and Society";journal;"28298624, 28298373";"Universitas Negeri Semarang";Yes;Yes;0,184;Q2;4;10;31;595;28;31;1,24;59,50;36,11;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2022-2025";"Religious Studies (Q2); Law (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +22973;21101119540;"Cuhso";journal;"2452610X";"Faculty of Social Sciences and Humanities, Catholic University of Temuco";Yes;Yes;0,184;Q2;6;67;142;3548;56;123;0,27;52,96;52,53;0;Chile;Latin America;"Faculty of Social Sciences and Humanities, Catholic University of Temuco";"2020-2025";"Cultural Studies (Q2); Anthropology (Q3)";"Social Sciences" +22974;21101233761;"Desde el Sur";journal;"20762674, 24150959";"Universidad Cientifica del Sur";Yes;Yes;0,184;Q2;7;102;168;4439;84;157;0,52;43,52;43,79;0;Peru;Latin America;"Universidad Cientifica del Sur";"2021-2025";"Cultural Studies (Q2); Gender Studies (Q3); Library and Information Sciences (Q3); Sociology and Political Science (Q3); Education (Q4); Public Administration (Q4); Safety Research (Q4)";"Social Sciences" +22975;71508;"Epigraphica";journal;"00139572";"L'Erma di Bretschneider";No;No;0,184;Q2;8;33;123;2079;9;120;0,08;63,00;37,84;0;Italy;Western Europe;"L'Erma di Bretschneider";"1970, 1977, 2002-2007, 2009-2025";"Archeology (arts and humanities) (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +22976;21100886370;"Forum Historiae";journal;"13376861";"Slovak Academy of Sciences";Yes;Yes;0,184;Q2;3;13;43;1060;15;43;0,35;81,54;80,00;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences";"2018-2025";"History (Q2)";"Arts and Humanities" +22977;21101207445;"Indonesian Journal of Socio-Legal Studies";journal;"28082591";"University of Indonesia Faculty of Law";Yes;Yes;0,184;Q2;5;12;35;583;26;31;1,04;48,58;41,67;0;Indonesia;Asiatic Region;"University of Indonesia Faculty of Law";"2021-2025";"Arts and Humanities (miscellaneous) (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +22978;21101026923;"International Public History";journal;"25671111";"De Gruyter Oldenbourg";No;No;0,184;Q2;6;22;41;738;22;39;0,33;33,55;48,28;0;Germany;Western Europe;"De Gruyter Oldenbourg";"2018-2025";"History (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +22979;5800207561;"Langue Francaise";journal;"00238368";"Armand Colin";No;No;0,184;Q2;20;8;80;229;14;72;0,14;28,63;70,00;0;France;Western Europe;"Armand Colin";"2002-2025";"Linguistics and Language (Q2)";"Social Sciences" +22980;21101064228;"Philosophy of Religion: Analytic Researches";journal;"2587683X, 26584891";"Institute of Philosophy, Russian Academy of Sciences";No;No;0,184;Q2;2;11;50;222;4;50;0,12;20,18;20,00;0;Russian Federation;Eastern Europe;"Institute of Philosophy, Russian Academy of Sciences";"2019-2025";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +22981;20000195002;"Platform";journal;"18365132";"School of Culture and Communication at the University of Melbourne";Yes;No;0,184;Q2;10;0;11;0;13;10;0,00;0,00;0,00;0;Australia;Pacific Region;"School of Culture and Communication at the University of Melbourne";"2009-2013, 2015-2017, 2022";"Cultural Studies (Q2); Communication (Q3)";"Social Sciences" +22982;20000195045;"Revista Colombiana de Antropologia";journal;"2539472X, 04866525";"Instituto Colombiano de Antropologia e Historia";Yes;Yes;0,184;Q2;15;30;68;1273;26;65;0,34;42,43;56,25;0;Colombia;Latin America;"Instituto Colombiano de Antropologia e Historia";"2011-2026";"Archeology (arts and humanities) (Q2); Cultural Studies (Q2); History (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +22983;21101179091;"Revista Eletronica Direito e Sociedade";journal;"23188081";"Universidade LaSalle - Unilasalle";Yes;Yes;0,184;Q2;4;39;101;1416;22;96;0,28;36,31;48,94;0;Brazil;Latin America;"Universidade LaSalle - Unilasalle";"2019-2025";"Cultural Studies (Q2); Gender Studies (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +22984;16100154740;"Russian Studies in Philosophy";journal;"15580431, 10611967";"M.E. Sharpe Inc.";No;No;0,184;Q2;5;0;41;0;6;35;0,00;0,00;0,00;0;United States;Northern America;"M.E. Sharpe Inc.";"1992-1995, 2002-2013, 2015-2022";"Philosophy (Q2)";"Arts and Humanities" +22985;21100792107;"Treatises and Documents, Journal of Ethnic Studies";journal;"18545181, 03540286";"Sciendo";No;No;0,184;Q2;8;18;51;1094;44;50;1,00;60,78;52,63;0;Poland;Eastern Europe;"Sciendo";"2015-2025";"Cultural Studies (Q2); Anthropology (Q3); Demography (Q3)";"Social Sciences" +22986;16682;"Allelopathy Journal";journal;"09714693, 09741240";"International Allelopathy Foundation";No;No;0,184;Q3;41;47;148;2548;104;147;0,85;54,21;38,61;0;India;Asiatic Region;"International Allelopathy Foundation";"1996-2026";"Pharmacy (Q3); Agronomy and Crop Science (Q4); Immunology (Q4); Microbiology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Health Professions; Immunology and Microbiology" +22987;21420;"Anasthesiologie und Intensivmedizin";journal;"01705334, 14390256";"Aktiv Druck and Verlag GmbH";No;No;0,184;Q3;25;75;250;2031;100;219;0,54;27,08;25,77;0;Germany;Western Europe;"Aktiv Druck and Verlag GmbH";"1978-2026";"Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)";"Medicine" +22988;12822;"Chinese Education and Society";journal;"19447116, 10611932";"M.E. Sharpe Inc.";Yes;No;0,184;Q3;24;27;77;1612;54;66;0,49;59,70;46,77;0;United States;Northern America;"M.E. Sharpe Inc.";"1993-1997, 1999-2025";"Sociology and Political Science (Q3); Education (Q4)";"Social Sciences" +22989;21101097343;"Journal of Research Development in Nursing and Midwifery";journal;"25883038";"Golestan University of Medical Sciences";Yes;Yes;0,184;Q3;5;39;102;1260;52;97;0,45;32,31;57,40;0;Iran;Middle East;"Golestan University of Medical Sciences";"2019-2025";"Advanced and Specialized Nursing (Q3); Maternity and Midwifery (Q3); Nursing (miscellaneous) (Q4)";"Nursing" +22990;21100861121;"Politique Europeenne";journal;"16236297, 21052875";"Pepper-L'Harmattan";No;No;0,184;Q3;10;0;62;0;24;56;0,38;0,00;0,00;0;France;Western Europe;"Pepper-L'Harmattan";"2017-2024";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +22991;21100787322;"Romanian Journal of Anaesthesia and Intensive Care";journal;"23927518, 25020307";"";Yes;No;0,184;Q3;15;0;4;0;3;4;0,75;0,00;0,00;0;Romania;Eastern Europe;"";"2014-2019, 2023";"Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3)";"Medicine" +22992;10800153310;"Slovenian Veterinary Research";journal;"15804003";"University of Ljubljana Press";Yes;Yes;0,184;Q3;22;37;110;1588;87;102;0,73;42,92;36,84;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2007-2025";"Veterinary (miscellaneous) (Q3)";"Veterinary" +22993;19700174980;"Southern African Journal of Anaesthesia and Analgesia";journal;"22201181";"Medpharm Publications";No;No;0,184;Q3;17;33;143;637;44;111;0,30;19,30;46,15;0;South Africa;Africa;"Medpharm Publications";"2008-2025";"Anesthesiology and Pain Medicine (Q3)";"Medicine" +22994;145368;"Zeitschrift fur Epileptologie";journal;"16100646, 16176782";"Springer Medizin";No;No;0,184;Q3;9;0;59;0;17;48;0,00;0,00;0,00;0;Germany;Western Europe;"Springer Medizin";"2005-2022";"Pediatrics, Perinatology and Child Health (Q3); Neurology (clinical) (Q4)";"Medicine" +22995;21101060912;"Zeitschrift fur Europarechtliche Studien";journal;"1435439X";"Nomos Verlagsgesellschaft mbH und Co";No;No;0,184;Q3;6;32;95;907;39;89;0,46;28,34;16,67;0;Germany;Western Europe;"Nomos Verlagsgesellschaft mbH und Co";"2019-2025";"Law (Q3)";"Social Sciences" +22996;19300157020;"Adiktologie";journal;"12133841";"Sdruzeni SCAN";No;No;0,184;Q4;9;19;85;588;30;73;0,31;30,95;50,00;0;Czech Republic;Eastern Europe;"Sdruzeni SCAN";"2009-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +22997;21100983350;"Baltic Journal of Modern Computing";journal;"22558950, 22558942";"University of Latvia";Yes;No;0,184;Q4;12;50;136;1758;117;134;0,92;35,16;39,34;0;Latvia;Eastern Europe;"University of Latvia";"2019-2025";"Computer Science (miscellaneous) (Q4)";"Computer Science" +22998;16809;"Bangladesh Journal of Botany";journal;"02535416";"Bangladesh Botanical Society";Yes;No;0,184;Q4;25;136;357;2723;211;357;0,53;20,02;37,39;0;Bangladesh;Asiatic Region;"Bangladesh Botanical Society";"1996-2001, 2003-2025";"Plant Science (Q4)";"Agricultural and Biological Sciences" +22999;21100217204;"Boletin de Geologia";journal;"21458553, 01200283";"Universidad Industrial de Santander";Yes;Yes;0,184;Q4;14;19;84;1083;44;77;0,38;57,00;26,47;0;Colombia;Latin America;"Universidad Industrial de Santander";"2012-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +23000;29040;"Cailiao Rechuli Xuebao/Transactions of Materials and Heat Treatment";journal;"10096264";"Chinese Mechanical Engineering Society";No;No;0,184;Q4;24;152;785;5205;483;785;0,65;34,24;28,72;0;China;Asiatic Region;"Chinese Mechanical Engineering Society";"2001-2025";"Materials Science (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Materials Science; Physics and Astronomy" +23001;21100201972;"Chemija";journal;"02357216";"Lietuvos Mokslu Akademijos";No;No;0,184;Q4;20;27;46;925;30;46;0,78;34,26;44,90;0;Lithuania;Eastern Europe;"Lietuvos Mokslu Akademijos";"2008-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +23002;12600154710;"Current Orthopaedic Practice";journal;"19417551, 19407041";"Lippincott Williams and Wilkins";No;No;0,184;Q4;29;42;229;1102;89;226;0,38;26,24;28,10;0;United States;Northern America;"Lippincott Williams and Wilkins";"2008-2026";"Orthopedics and Sports Medicine (Q4)";"Medicine" +23003;21100872774;"Desenvolvimento e Meio Ambiente";journal;"21769109, 1518952X";"Universidade Federal do Parana";Yes;Yes;0,184;Q4;12;37;200;1771;90;196;0,41;47,86;42,31;0;Brazil;Latin America;"Universidade Federal do Parana";"2018-2025";"Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Environmental Science; Social Sciences" +23004;19700175287;"Disaster Advances";journal;"22784543, 0974262X";"World Researchers Associations";No;No;0,184;Q4;22;120;230;3577;145;230;0,67;29,81;19,38;0;India;Asiatic Region;"World Researchers Associations";"2009-2026";"Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Safety, Risk, Reliability and Quality (Q4)";"Earth and Planetary Sciences; Engineering; Environmental Science; Social Sciences" +23005;21100853933;"European Journal of Comparative Economics";journal;"18242979";"Universita Carlo Cattaneo";Yes;Yes;0,184;Q4;9;10;29;492;16;29;0,58;49,20;21,05;0;Italy;Western Europe;"Universita Carlo Cattaneo";"2017-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +23006;27689;"Evidence-Based Nursing";journal;"13676539, 14689618";"BMJ Publishing Group";No;No;0,184;Q4;38;323;463;1954;186;48;0,37;6,05;60,53;1;United Kingdom;Western Europe;"BMJ Publishing Group";"1998-2026";"Fundamentals and Skills (Q4)";"Nursing" +23007;21101273213;"Hoehnea";journal;"00732877, 22368906";"SciELO-Scientific Electronic Library Online";Yes;Yes;0,184;Q4;7;32;127;1423;54;127;0,38;44,47;48,84;0;Brazil;Latin America;"SciELO-Scientific Electronic Library Online";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4)";"Agricultural and Biological Sciences" +23008;19846;"International Journal of Sport Psychology";journal;"00470767";"Edizioni Luigi Pozzi S.r.l.";No;No;0,184;Q4;60;1;1;59;1;1;1,00;59,00;80,00;0;Italy;Western Europe;"Edizioni Luigi Pozzi S.r.l.";"1973-1974, 1996-2021, 2023, 2025";"Applied Psychology (Q4)";"Psychology" +23009;21100312405;"Invertebrate Survival Journal";journal;"1824307X";"Universita degli Studi di Modena e Reggio Emilia";Yes;Yes;0,184;Q4;38;7;32;395;24;32;0,50;56,43;46,43;0;Italy;Western Europe;"Universita degli Studi di Modena e Reggio Emilia";"2005-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +23010;21101312743;"Iranian Journal of Health Sciences";journal;"2322553X, 29812240";"Mazandaran University of Medical Sciences";Yes;No;0,184;Q4;5;33;89;1154;54;89;0,56;34,97;49,55;0;Iran;Middle East;"Mazandaran University of Medical Sciences";"2021-2025";"Epidemiology (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +23011;24854;"Journal of Applied Cosmetology";journal;"03928543";"World Health Academy and Publishing House";No;No;0,184;Q4;15;53;72;1971;76;61;1,28;37,19;46,75;0;Italy;Western Europe;"World Health Academy and Publishing House";"1985-2025";"Dermatology (Q4)";"Medicine" +23012;21101197197;"Journal of Biological Studies";journal;"22092560";"";No;No;0,184;Q4;6;13;108;665;68;108;0,84;51,15;62,86;0;Iran;Middle East;"";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Animal Science and Zoology (Q4); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +23013;21100210912;"Journal of Entomological Research";journal;"03789519, 09744576";"Malhotra Publishing House";No;No;0,184;Q4;16;197;593;3752;191;593;0,28;19,05;36,79;0;India;Asiatic Region;"Malhotra Publishing House";"2011-2025";"Insect Science (Q4)";"Agricultural and Biological Sciences" +23014;17000;"Journal of the Japan Petroleum Institute";journal;"13468804, 1349273X";"Japan Petroleum Institute";Yes;No;0,184;Q4;33;33;92;998;53;92;0,55;30,24;21,15;0;Japan;Asiatic Region;"Japan Petroleum Institute";"2002-2025";"Energy Engineering and Power Technology (Q4); Fuel Technology (Q4)";"Energy" +23015;21101124727;"Journal of the Korean Society for Aeronautical and Space Sciences";journal;"22876871, 12251348";"Korean Society for Aeronautical and Space Sciences";No;No;0,184;Q4;7;123;294;2533;95;294;0,30;20,59;21,41;0;South Korea;Asiatic Region;"Korean Society for Aeronautical and Space Sciences";"2019-2026";"Aerospace Engineering (Q4)";"Engineering" +23016;21101262280;"Journal of Unmanned Undersea Systems";journal;"20963920";"Science China Press";Yes;Yes;0,184;Q4;8;42;346;1062;189;346;0,62;25,29;36,69;0;China;Asiatic Region;"Science China Press";"2020-2025";"Ocean Engineering (Q4)";"Engineering" +23017;21100875941;"Khayyam Journal of Mathematics";journal;"24234788";"Department of Mathematics at Ferdowsi University of Mashhad";Yes;Yes;0,184;Q4;14;24;74;508;34;74;0,56;21,17;20,00;0;Iran;Middle East;"Department of Mathematics at Ferdowsi University of Mashhad";"2015-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23018;21100851844;"Malaysian Online Journal of Educational Management";journal;"22894489";"University of Malaya";No;No;0,184;Q4;10;20;59;1045;53;59;0,84;52,25;49,09;0;Malaysia;Asiatic Region;"University of Malaya";"2017-2026";"Education (Q4)";"Social Sciences" +23019;27790;"Metalurgija";journal;"05435846";"Faculty of Metallurgy";Yes;No;0,184;Q4;37;34;400;230;170;395;0,43;6,76;42,11;0;Croatia;Eastern Europe;"Faculty of Metallurgy";"1970-1971, 1982-1983, 1985-1991, 1993-2026";"Condensed Matter Physics (Q4); Materials Chemistry (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science; Physics and Astronomy" +23020;25153;"Missouri Journal of Mathematical Sciences";journal;"08996180, 10852581";"Central Missouri State University";No;No;0,184;Q4;14;18;69;286;29;69;0,35;15,89;15,79;0;United States;Northern America;"Central Missouri State University";"2001-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23021;24802;"Neural Network World";journal;"23364335, 12100552";"Czech Technical University in Prague";No;No;0,184;Q4;30;0;64;0;56;64;0,90;0,00;0,00;0;Czech Republic;Eastern Europe;"Czech Technical University in Prague";"1994-2024";"Artificial Intelligence (Q4); Hardware and Architecture (Q4); Neuroscience (miscellaneous) (Q4); Software (Q4)";"Computer Science; Neuroscience" +23022;22133;"Ornis Hungarica";journal;"12151610, 20619588";"Walter de Gruyter GmbH";Yes;No;0,184;Q4;13;44;105;1852;52;105;0,47;42,09;23,74;0;Hungary;Eastern Europe;"Walter de Gruyter GmbH";"1992, 2009, 2011-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +23023;18621;"Praxis der Kinderpsychologie und Kinderpsychiatrie";journal;"21968225, 00327034";"Vandenhoeck and Ruprecht GmbH and Co. KG";No;No;0,184;Q4;23;44;127;1586;56;110;0,28;36,05;71,00;0;Germany;Western Europe;"Vandenhoeck and Ruprecht GmbH and Co. KG";"1961-2026";"Developmental and Educational Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +23024;21758;"Prescrire International";journal;"11677422";"Association Mieux Prescrire";No;No;0,184;Q4;14;65;520;362;25;222;0,04;5,57;0,00;0;France;Western Europe;"Association Mieux Prescrire";"1996-2026";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +23025;21101020038;"REM - International Engineering Journal";journal;"2448167X";"Escola de Minas";Yes;No;0,184;Q4;8;57;127;1607;89;117;0,67;28,19;28,22;0;Brazil;Latin America;"Escola de Minas";"2016-2025";"Civil and Structural Engineering (Q4); Economic Geology (Q4); Geochemistry and Petrology (Q4); Geology (Q4); Materials Science (miscellaneous) (Q4); Waste Management and Disposal (Q4)";"Earth and Planetary Sciences; Engineering; Environmental Science; Materials Science" +23026;21101323220;"Research in Medical Education";journal;"2008952X, 20087284";"Guilan University of Medical Sciences";Yes;No;0,184;Q4;5;32;98;783;43;94;0,31;24,47;56,52;0;Iran;Middle East;"Guilan University of Medical Sciences";"2021-2026";"Education (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +23027;19900192309;"Review of Network Economics";journal;"14469022, 21945993";"Walter de Gruyter GmbH";No;No;0,184;Q4;20;6;26;239;10;26;0,31;39,83;40,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2010-2026";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +23028;4900152708;"Studies in Computational Intelligence";book series;"18609503, 1860949X";"Springer Verlag";No;No;0,184;Q4;100;1132;4131;36868;4488;1554;1,19;32,57;30,56;0;Germany;Western Europe;"Springer Verlag";"2006-2026";"Artificial Intelligence (Q4)";"Computer Science" +23029;21100824458;"Sustainability in Debate";journal;"21777675, 21799067";"Universidade de Brasilia";Yes;Yes;0,184;Q4;10;33;104;1512;52;94;0,56;45,82;53,19;0;Brazil;Latin America;"Universidade de Brasilia";"2013, 2017-2025";"Development (Q4); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +23030;21101062488;"Tonkie Khimicheskie Tekhnologii";journal;"26867575, 24106593";"MIREA - Russian Technological University";Yes;Yes;0,184;Q4;9;43;120;1297;93;119;0,73;30,16;42,93;0;Russian Federation;Eastern Europe;"MIREA - Russian Technological University";"2019-2026";"Fluid Flow and Transfer Processes (Q4); Inorganic Chemistry (Q4); Organic Chemistry (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering; Chemistry" +23031;21100202726;"Trends in Carbohydrate Research";journal;"09750304";"Association of Carbohydrate Chemists and Technologists";No;No;0,184;Q4;10;18;74;626;33;74;0,49;34,78;51,16;0;India;Asiatic Region;"Association of Carbohydrate Chemists and Technologists";"2009-2025";"Organic Chemistry (Q4)";"Chemistry" +23032;21100893337;"Turkish Journal of Physiotherapy and Rehabilitation";journal;"26514451, 2651446X";"Turkish Physiotherapy Association";Yes;No;0,184;Q4;8;23;123;790;54;123;0,39;34,35;64,94;0;Turkey;Middle East;"Turkish Physiotherapy Association";"2018-2025";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +23033;21101089145;"Ukrainian Food Journal";journal;"2304974X, 23135891";"National University of Food Technologies";Yes;Yes;0,184;Q4;14;43;120;1708;108;118;0,84;39,72;50,00;0;Ukraine;Eastern Europe;"National University of Food Technologies";"2019-2025";"Biochemistry (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +23034;21100332448;"Vytapeni, Vetrani, Instalace";journal;"12101389";"Society of Environmental Engineering";No;No;0,184;Q4;5;29;97;344;13;94;0,17;11,86;25,00;0;Czech Republic;Eastern Europe;"Society of Environmental Engineering";"2014-2026";"Building and Construction (Q4); Environmental Engineering (Q4); Health, Toxicology and Mutagenesis (Q4)";"Engineering; Environmental Science" +23035;21100400809;"Colloquium in Information Science and Technology, CIST";conference and proceedings;"2327185X, 23271884";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,184;-;22;106;126;2553;147;124;1,17;24,08;38,79;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015-2018, 2020, 2023, 2025";"Computer Science Applications; Information Systems and Management; Management Science and Operations Research; Signal Processing";"Computer Science; Decision Sciences" +23036;21101256310;"Offshore Site Investigation and Geotechnics";conference and proceedings;"27546322";"Society for Underwater Technology";No;No;0,184;-;13;0;265;0;82;264;0,31;0,00;0,00;0;United Kingdom;Western Europe;"Society for Underwater Technology";"2017, 2023";"Ocean Engineering";"Engineering" +23037;144650;"Journal of Beijing Institute of Fashion Technology (Natural Science Edition)";journal;"10010564";"Beijing Institute of Clothing Technology";No;No;0,183;Q1;8;57;168;1202;74;168;0,47;21,09;50,00;0;China;Asiatic Region;"Beijing Institute of Clothing Technology";"2005-2025";"Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Materials Science (miscellaneous) (Q4)";"Arts and Humanities; Materials Science; Social Sciences" +23038;21100840511;"Magnificat Cultura i Literatura Medievals";journal;"23868295";"Universitat de Valencia";Yes;Yes;0,183;Q1;5;0;39;0;9;39;0,28;0,00;0,00;0;Spain;Western Europe;"Universitat de Valencia";"2014-2024";"Literature and Literary Theory (Q1); History (Q2)";"Arts and Humanities" +23039;21474;"Early Medieval Europe";journal;"09639462, 14680254";"Wiley-Blackwell Publishing Ltd";No;No;0,183;Q2;35;20;64;1513;20;64;0,21;75,65;38,10;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1992-2003, 2005-2026";"Arts and Humanities (miscellaneous) (Q2); History (Q2); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +23040;5700174038;"Grazer Philosophische Studien";journal;"18756735, 01659227";"Brill Rodopi";No;No;0,183;Q2;17;6;79;262;27;76;0,26;43,67;0,00;0;Netherlands;Western Europe;"Brill Rodopi";"1975, 1981-1983, 1986-1987, 1989, 1991, 1994, 2001, 2006, 2011-2013, 2015-2026";"Philosophy (Q2)";"Arts and Humanities" +23041;21100793201;"Historia y Memoria";journal;"20275137, 2322777X";"Universidad Pedagogica y Tecnologica de Colombia";Yes;Yes;0,183;Q2;7;22;82;1062;26;75;0,33;48,27;42,11;0;Colombia;Latin America;"Universidad Pedagogica y Tecnologica de Colombia";"2015-2026";"History (Q2)";"Arts and Humanities" +23042;21101007249;"Humanities, Arts and Social Sciences Studies";journal;"26300079";"Silpakorn University";No;No;0,183;Q2;6;65;189;2394;131;189;0,70;36,83;53,13;0;Thailand;Asiatic Region;"Silpakorn University";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +23043;21100854631;"International Journal of Christianity and Education";journal;"2056998X, 20569971";"SAGE Publications Ltd";No;No;0,183;Q2;7;17;59;565;26;50;0,50;33,24;55,88;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2015-2026";"Religious Studies (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +23044;5800207660;"Jezikoslovlje";journal;"13317202";"Josip Juraj Strossmayer University";No;No;0,183;Q2;12;10;40;405;8;38;0,35;40,50;70,59;0;Croatia;Eastern Europe;"Josip Juraj Strossmayer University";"2008-2025";"Linguistics and Language (Q2)";"Social Sciences" +23045;21101199914;"Jezyk na Pograniczach";book series;"12301302";"Polish Academy of Sciences, Institute of Slavic Studies";No;No;0,183;Q2;2;0;6;0;1;4;0,33;0,00;0,00;0;Poland;Eastern Europe;"Polish Academy of Sciences, Institute of Slavic Studies";"2019-2020, 2022-2024";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Linguistics and Language (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +23046;5800162233;"Journal of Aesthetic Education";journal;"00218510, 15437809";"University of Illinois Press";No;No;0,183;Q2;25;28;80;1320;36;80;0,40;47,14;41,94;0;United States;Northern America;"University of Illinois Press";"2002-2026";"Arts and Humanities (miscellaneous) (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +23047;5600152962;"Trames";journal;"17367514, 14060922";"Estonian Academy Publishers";Yes;No;0,183;Q2;21;15;69;718;61;69;0,78;47,87;31,03;0;Estonia;Eastern Europe;"Estonian Academy Publishers";"2008-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +23048;21100229212;"Asian Women";journal;"1225925X";"Sookmyung Women's University";Yes;No;0,183;Q3;14;40;61;2138;53;60;1,15;53,45;49,37;0;South Korea;Asiatic Region;"Sookmyung Women's University";"2008-2025";"Gender Studies (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23049;21100899308;"Dentistry 3000";journal;"21678677";"University Library System, University of Pittsburgh";Yes;Yes;0,183;Q3;5;88;70;2770;42;70;0,61;31,48;53,80;0;United States;Northern America;"University Library System, University of Pittsburgh";"2018-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +23050;21100401127;"Global Journal of Comparative Law";journal;"2211906X, 22119051";"Brill Nijhoff";No;No;0,183;Q3;8;12;39;1365;24;38;0,62;113,75;38,10;0;Netherlands;Western Europe;"Brill Nijhoff";"2012-2025";"Law (Q3)";"Social Sciences" +23051;21101224872;"International Journal of Innovation";journal;"23189975";"Universidade Nove de Julho-UNINOVE";No;No;0,183;Q3;4;27;60;1648;57;54;0,95;61,04;21,15;0;Brazil;Latin America;"Universidade Nove de Julho-UNINOVE";"2023-2025";"Social Sciences (miscellaneous) (Q3); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Social Sciences" +23052;12400154711;"International Journal of Machining and Machinability of Materials";journal;"17485711, 1748572X";"Inderscience Enterprises Ltd";No;No;0,183;Q3;32;21;67;766;72;66;1,07;36,48;8,06;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2026";"Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +23053;21101152604;"International Journal of Population Studies";journal;"24248606, 24248150";"AccScience Publishing";No;No;0,183;Q3;6;60;81;3185;70;78;0,82;53,08;39,73;2;Singapore;Asiatic Region;"AccScience Publishing";"2019-2026";"Demography (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23054;21101307221;"Journal Of Economic Sciences: Theory And Practice";journal;"30790425, 30790433";"Azerbaijan State University of Economics";No;No;0,183;Q3;3;12;33;478;25;33;1,04;39,83;43,75;0;Azerbaijan;Eastern Europe;"Azerbaijan State University of Economics";"2022-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Economics and Econometrics (Q4); Finance (Q4); Health (social science) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +23055;21100854850;"Journal of Indian Academy of Oral Medicine and Radiology";journal;"09751572, 09721363";"Wolters Kluwer Medknow Publications";Yes;No;0,183;Q3;16;112;354;1945;144;329;0,38;17,37;55,43;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2010-2012, 2014-2025";"Dentistry (miscellaneous) (Q3); Otorhinolaryngology (Q3); Radiology, Nuclear Medicine and Imaging (Q4)";"Dentistry; Medicine" +23056;21101033081;"Journal of Nature and Science of Medicine";journal;"2589627X, 25896288";"Wolters Kluwer Medknow Publications";Yes;Yes;0,183;Q3;12;52;128;1500;77;125;0,65;28,85;47,37;1;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2018-2026";"Health Professions (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions" +23057;13007;"Journal of the Anatomical Society of India";journal;"00032778";"Anatomical Society of India";No;No;0,183;Q3;17;56;183;1465;74;166;0,40;26,16;51,12;0;India;Asiatic Region;"Anatomical Society of India";"1960, 1975, 1987, 2009-2025";"Anatomy (Q3); Pathology and Forensic Medicine (Q4)";"Medicine" +23058;21101039471;"Korean Journal of Medicinal Crop Science";journal;"22880186, 12259306";"Korean Society of Medicinal Crop Science";No;No;0,183;Q3;8;30;108;1072;59;108;0,46;35,73;41,61;0;South Korea;Asiatic Region;"Korean Society of Medicinal Crop Science";"2019-2025";"Pharmaceutical Science (Q3); Agronomy and Crop Science (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +23059;17521;"Law and Contemporary Problems";journal;"00239186";"Duke Law Publications";Yes;No;0,183;Q3;49;20;101;3079;69;100;0,67;153,95;22,58;0;United States;Northern America;"Duke Law Publications";"1942, 1950, 1976, 1979, 1981-1982, 1985-1986, 1988-1989, 1991, 1993-1996, 2004-2026";"Law (Q3)";"Social Sciences" +23060;7200153158;"Law and Practice of International Courts and Tribunals";journal;"15691853, 15718034";"Brill Academic Publishers";No;No;0,183;Q3;18;9;62;1002;33;56;0,52;111,33;14,29;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2026";"Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23061;19700182210;"Library Leadership and Management";journal;"19458851, 1945886X";"American Library Association";No;No;0,183;Q3;15;16;52;355;23;41;0,41;22,19;78,26;0;United States;Northern America;"American Library Association";"2009-2026";"Library and Information Sciences (Q3); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +23062;21100231618;"Oral Surgery";journal;"17522471, 1752248X";"Wiley-Blackwell Publishing Ltd";No;No;0,183;Q3;18;91;274;2322;102;198;0,41;25,52;37,11;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2007-2026";"Oral Surgery (Q3); Surgery (Q3)";"Dentistry; Medicine" +23063;21101185495;"Pravni Vjesnik";journal;"18490840, 03525317";"Josip Juraj Strossmayer University of Osijek Faculty of Law";Yes;Yes;0,183;Q3;4;25;64;1451;19;64;0,30;58,04;57,58;0;Croatia;Eastern Europe;"Josip Juraj Strossmayer University of Osijek Faculty of Law";"2019-2025";"Law (Q3)";"Social Sciences" +23064;21101064918;"Problemy Polityki Spolecznej";journal;"27197328, 16401808";"Faculty of Political Science and International Studies, University of Warsaw";No;No;0,183;Q3;3;13;59;664;44;56;0,34;51,08;50,00;0;Poland;Eastern Europe;"Faculty of Political Science and International Studies, University of Warsaw";"2020-2026";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23065;21100855843;"Public Policy and Administration";journal;"16482603, 20292872";"Mykolo Romerio Universitetas";Yes;No;0,183;Q3;15;48;153;1715;101;152;0,72;35,73;54,10;0;Lithuania;Eastern Europe;"Mykolo Romerio Universitetas";"2011-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3); Public Administration (Q4)";"Economics, Econometrics and Finance; Social Sciences" +23066;19400157518;"Rasayan Journal of Chemistry";journal;"09760083, 09741496";"Rasayan Journal of Chemistry, c/o Dr. Pratima Sharma";Yes;No;0,183;Q3;36;317;918;8492;690;918;0,71;26,79;40,30;0;India;Asiatic Region;"Rasayan Journal of Chemistry, c/o Dr. Pratima Sharma";"2008-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Biochemistry (Q4); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Energy (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Energy; Pharmacology, Toxicology and Pharmaceutics" +23067;21101028387;"Review of Economic Research on Copyright Issues";journal;"16981359, 16981367";"Society for Economic Research on Copyright Issues";No;No;0,183;Q3;2;2;9;51;3;9;0,33;25,50;0,00;0;Spain;Western Europe;"Society for Economic Research on Copyright Issues";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +23068;21101156893;"Theoretical and Practical Research in the Economic Fields";journal;"20687710";"ASERS Publishing House";No;No;0,183;Q3;7;77;133;3147;142;133;1,13;40,87;42,64;0;Romania;Eastern Europe;"ASERS Publishing House";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +23069;21101257950;"Vodohospodarske Technicko-Ekonomicke Informace";journal;"18056555, 03228916";"";Yes;Yes;0,183;Q3;5;34;141;564;31;84;0,23;16,59;36,36;0;Czech Republic;Eastern Europe;"";"2016-2026";"Multidisciplinary (Q3); Water Science and Technology (Q4)";"Environmental Science; Multidisciplinary" +23070;21100889412;"Agraarteadus";journal;"10240845, 22284893";"Estonian Academic Agricultural Society";Yes;Yes;0,183;Q4;13;0;40;0;43;40;1,75;0,00;0,00;0;Estonia;Eastern Europe;"Estonian Academic Agricultural Society";"2018-2023";"Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23071;21101297956;"Annals of Research in Oncology";journal;"27852512";"EDRA S.p.A";No;No;0,183;Q4;5;16;65;776;43;54;0,62;48,50;46,40;0;Italy;Western Europe;"EDRA S.p.A";"2021-2025";"Oncology (Q4)";"Medicine" +23072;18418;"Archives of Hydroengineering and Environmental Mechanics";journal;"12313726";"De Gruyter Open Ltd.";Yes;No;0,183;Q4;17;4;24;121;18;24;0,61;30,25;33,33;0;Poland;Eastern Europe;"De Gruyter Open Ltd.";"1994-2010, 2012-2024";"Civil and Structural Engineering (Q4); Water Science and Technology (Q4)";"Engineering; Environmental Science" +23073;21101266484;"Archives of legal medicine";journal;"29503949";"Elsevier Masson s.r.l.";No;No;0,183;Q4;8;33;94;835;21;86;0,24;25,30;51,38;0;France;Western Europe;"Elsevier Masson s.r.l.";"2024-2026";"Pathology and Forensic Medicine (Q4)";"Medicine" +23074;19812;"Archivos de Medicina del Deporte";journal;"02128799";"Archivos de Medicina del Deporte";No;No;0,183;Q4;16;14;123;373;46;105;0,27;26,64;35,42;0;Spain;Western Europe;"Archivos de Medicina del Deporte";"1997-2025";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)";"Health Professions; Medicine" +23075;21100881363;"Biostatistics and Epidemiology";journal;"24709379, 24709360";"Taylor and Francis Ltd.";No;No;0,183;Q4;9;14;50;503;14;50;0,24;35,93;35,90;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Epidemiology (Q4); Health Informatics (Q4)";"Medicine" +23076;21101113621;"Chinese Journal of Animal Nutrition";journal;"1006267X";"";No;No;0,183;Q4;15;617;2122;29103;1636;2122;0,84;47,17;39,99;0;China;Asiatic Region;"";"2019-2025";"Animal Science and Zoology (Q4); Food Animals (Q4)";"Agricultural and Biological Sciences; Veterinary" +23077;21101230585;"Croatian Journal of Food Science and Technology";journal;"18473466, 18489923";"Josip Juraj Strossmayer University of Osijek Faculty of Food Technology";Yes;Yes;0,183;Q4;2;21;20;975;13;20;0,65;46,43;56,98;0;Croatia;Eastern Europe;"Josip Juraj Strossmayer University of Osijek Faculty of Food Technology";"2024-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +23078;4700152222;"Family Medicine and Primary Care Review";journal;"17343402";"Polish Society of Family Medicine";Yes;No;0,183;Q4;15;72;214;2694;97;200;0,40;37,42;54,44;0;Poland;Eastern Europe;"Polish Society of Family Medicine";"2006-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +23079;3900148208;"Global Business and Economics Review";journal;"10974954, 17451329";"Inderscience Enterprises Ltd";No;No;0,183;Q4;20;43;140;2743;117;139;0,69;63,79;40,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2026";"Business and International Management (Q4); Economics and Econometrics (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +23080;21100199707;"Graellsia";journal;"03675041, 1989953X";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,183;Q4;15;15;62;537;28;54;0,49;35,80;28,57;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2011-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +23081;21100466428;"Herald of the Bauman Moscow State Technical University, Series Natural Sciences";journal;"26868768, 18123368";"Bauman Press";No;No;0,183;Q4;13;39;165;1007;69;165;0,37;25,82;42,42;0;Russian Federation;Eastern Europe;"Bauman Press";"2016-2025";"Chemistry (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Chemistry; Computer Science; Engineering; Mathematics; Physics and Astronomy" +23082;3500148001;"Indian Journal of Medical Ethics";journal;"09755691, 09748466";"";No;No;0,183;Q4;24;72;226;1393;140;105;0,66;19,35;45,21;0;India;Asiatic Region;"";"2004-2026";"Health Policy (Q4); Issues, Ethics and Legal Aspects (Q4)";"Medicine; Nursing" +23083;21101105295;"International Journal of Computer Theory and Engineering";journal;"17938201";"International Association of Computer Science and Information Technology";No;No;0,183;Q4;14;20;60;681;78;59;1,08;34,05;25,49;0;Singapore;Asiatic Region;"International Association of Computer Science and Information Technology";"2019-2025";"Computational Theory and Mathematics (Q4); Computer Science Applications (Q4)";"Computer Science" +23084;21100217218;"International Journal of Nanoelectronics and Materials";journal;"19855761, 22321535";"Universiti Malaysia Perlis";No;No;0,183;Q4;27;136;362;5194;328;361;0,91;38,19;37,11;0;Malaysia;Asiatic Region;"Universiti Malaysia Perlis";"2012-2026";"Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science" +23085;21100197978;"International Journal of Vehicle Structures and Systems";journal;"09753060, 09753540";"";No;No;0,183;Q4;27;170;516;3994;380;516;0,70;23,49;15,63;0;United Kingdom;Western Europe;"";"2009-2026";"Aerospace Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +23086;23207;"Irish Journal of Earth Sciences";journal;"07901763, 20090064";"Royal Irish Academy";No;No;0,183;Q4;13;14;35;761;19;35;0,50;54,36;20,83;0;Ireland;Western Europe;"Royal Irish Academy";"1978, 1984-1987, 1989-2012, 2014-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +23087;19900192426;"Italian Journal of Pure and Applied Mathematics";journal;"22390227, 11268042";"Forum-Editrice Universitaria Udinese SRL";Yes;No;0,183;Q4;24;24;356;468;160;355;0,31;19,50;30,61;0;Italy;Western Europe;"Forum-Editrice Universitaria Udinese SRL";"2010-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23088;27860;"Journal of the American Leather Chemists Association";journal;"00029726";"American Leather Chemists Association";No;No;0,183;Q4;36;24;149;917;70;141;0,48;38,21;40,51;0;United States;Northern America;"American Leather Chemists Association";"1969-1970, 1976-1990, 1994-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Materials Science" +23089;145262;"Journal of the Brazilian Computer Society";journal;"01046500, 16784804";"Brazilian Computing Society";Yes;Yes;0,183;Q4;27;77;60;3919;68;60;1,30;50,90;26,24;0;Brazil;Latin America;"Brazilian Computing Society";"2000-2025";"Computer Science (miscellaneous) (Q4)";"Computer Science" +23090;21100246542;"Mathematics Enthusiast";journal;"15513440";"University of Montana - ScholarWorks";Yes;No;0,183;Q4;18;29;104;343;37;99;0,38;11,83;48,72;0;United States;Northern America;"University of Montana - ScholarWorks";"2013-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23091;145347;"Moscow University Chemistry Bulletin";journal;"00271314, 19350260";"Pleiades Publishing";No;No;0,183;Q4;16;52;142;1654;93;142;0,59;31,81;51,06;0;United States;Northern America;"Pleiades Publishing";"2004-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +23092;29738;"Nursing Older People";trade journal;"20478941, 14720795";"RCN Publishing Company Ltd.";No;No;0,183;Q4;27;49;152;690;60;144;0,32;14,08;83,33;0;United Kingdom;Western Europe;"RCN Publishing Company Ltd.";"2000-2026";"Gerontology (Q4)";"Nursing" +23093;21100925890;"Paliva";journal;"18042058";"University of Chemistry and Technology, Faculty of Environmental Technology";No;No;0,183;Q4;4;10;56;312;27;56;0,49;31,20;27,59;0;Czech Republic;Eastern Europe;"University of Chemistry and Technology, Faculty of Environmental Technology";"2019-2025";"Energy Engineering and Power Technology (Q4); Environmental Engineering (Q4); Fuel Technology (Q4); Geotechnical Engineering and Engineering Geology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Earth and Planetary Sciences; Energy; Environmental Science" +23094;21101192675;"Revista de Estudios e Investigacion en Psicologia y Educacion";journal;"23867418";"Publications Service of the University of A Coruna - Elvina Campus";Yes;Yes;0,183;Q4;7;19;73;960;40;72;0,60;50,53;50,00;0;Spain;Western Europe;"Publications Service of the University of A Coruna - Elvina Campus";"2019-2025";"Education (Q4); Psychology (miscellaneous) (Q4)";"Psychology; Social Sciences" +23095;21100220472;"Romanian Journal of Acoustics and Vibration";journal;"15847284";"Romanian Society of Acoustics";No;No;0,183;Q4;13;11;67;334;42;67;0,67;30,36;32,14;0;Romania;Eastern Europe;"Romanian Society of Acoustics";"2012-2025";"Acoustics and Ultrasonics (Q4); Mechanics of Materials (Q4)";"Engineering; Physics and Astronomy" +23096;21101017883;"International Conference on Higher Education Advances";conference and proceedings;"26035871";"Universidad Politecnica de Valencia";No;No;0,183;-;8;162;502;2382;244;498;0,50;14,70;51,52;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2020-2025";"Education";"Social Sciences" +23097;21101045758;"Anales de Literatura Espanola";journal;"26954257, 02125889";"Universidad de Alicante";Yes;Yes;0,182;Q1;3;24;68;672;16;68;0,18;28,00;38,10;0;Spain;Western Europe;"Universidad de Alicante";"2019-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +23098;7200153102;"Vetus Testamentum";journal;"15685330, 00424935";"Brill Academic Publishers";No;No;0,182;Q1;27;74;86;4395;14;86;0,12;59,39;27,78;0;Netherlands;Western Europe;"Brill Academic Publishers";"1951, 1953-1963, 1965-2026";"Literature and Literary Theory (Q1); History (Q2); Linguistics and Language (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +23099;5800207802;"Belgian Journal of Linguistics";journal;"07745141, 15699676";"John Benjamins Publishing Company";No;No;0,182;Q2;23;0;15;0;9;14;0,00;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1986-1994, 1996-2000, 2002-2023";"Linguistics and Language (Q2)";"Social Sciences" +23100;21100929891;"Changing Societies and Personalities";journal;"25876104, 25878964";"Ural Federal University";Yes;Yes;0,182;Q2;8;39;139;1824;95;128;0,66;46,77;50,65;0;Russian Federation;Eastern Europe;"Ural Federal University";"2017-2025";"Cultural Studies (Q2); Sociology and Political Science (Q3); Social Psychology (Q4)";"Psychology; Social Sciences" +23101;11600153664;"Filosofija, Sociologija";journal;"02357186, 24244546";"Lithuanian Academy of Sciences Publishers";No;No;0,182;Q2;12;43;160;1369;73;154;0,43;31,84;49,30;0;Lithuania;Eastern Europe;"Lithuanian Academy of Sciences Publishers";"2008-2026";"Philosophy (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23102;21100404509;"International Journal for the Study of Skepticism";journal;"22105697, 22105700";"Brill Academic Publishers";No;No;0,182;Q2;10;21;47;449;13;46;0,30;21,38;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2026";"Philosophy (Q2)";"Arts and Humanities" +23103;21100265696;"International Journal of Euro-Mediterranean Studies";journal;"22326022, 18553362";"EMUNI University";Yes;Yes;0,182;Q2;6;16;36;442;30;30;0,52;27,63;46,81;0;Slovenia;Eastern Europe;"EMUNI University";"2012-2025";"History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Economics and Econometrics (Q4); Education (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +23104;21100872796;"International Journal of Semantic Computing";journal;"17937108, 1793351X";"World Scientific";No;No;0,182;Q2;23;33;101;1051;78;85;0,93;31,85;9,09;0;Singapore;Asiatic Region;"World Scientific";"2007-2025";"Linguistics and Language (Q2); Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems (Q4); Software (Q4)";"Computer Science; Social Sciences" +23105;21101118114;"Journal of Applied Animal Ethics Research";journal;"25889567, 25889559";"Brill Academic Publishers";No;No;0,182;Q2;9;16;43;711;23;33;0,77;44,44;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2026";"Philosophy (Q2); Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences; Arts and Humanities" +23106;19700169886;"Journal of Philosophical Economics: Reflections on Economic and Social Issues";journal;"18432298, 18448208";"Bucharest University of Economic Studies Publishing House";Yes;Yes;0,182;Q2;6;6;29;463;23;29;0,91;77,17;0,00;0;Romania;Eastern Europe;"Bucharest University of Economic Studies Publishing House";"2017-2025";"Philosophy (Q2); Sociology and Political Science (Q3); Economics and Econometrics (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +23107;18381;"Medicina Nei Secoli";journal;"25317288, 03949001";"University of Rome La Sapienza";No;No;0,182;Q2;14;21;89;926;22;84;0,18;44,10;61,54;0;Italy;Western Europe;"University of Rome La Sapienza";"1974-1981, 1989-2016, 2019-2025";"Arts and Humanities (miscellaneous) (Q2); History and Philosophy of Science (Q3); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +23108;21100940434;"Modern American History";journal;"25150456, 23971851";"Cambridge University Press";No;No;0,182;Q2;8;43;100;2599;28;88;0,25;60,44;45,00;0;United States;Northern America;"Cambridge University Press";"2018-2026";"History (Q2)";"Arts and Humanities" +23109;21100202956;"Studia Historica, Historia Medieval";journal;"02132060, 24453595";"Ediciones Universidad de Salamanca";Yes;Yes;0,182;Q2;10;24;73;1443;17;68;0,20;60,13;36,36;0;Spain;Western Europe;"Ediciones Universidad de Salamanca";"2011-2013, 2015-2025";"History (Q2)";"Arts and Humanities" +23110;21101259363;"AME Surgical Journal";journal;"2788578X";"AME Publishing Company";No;No;0,182;Q3;5;54;119;1847;55;106;0,52;34,20;19,77;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2021-2025";"Surgery (Q3)";"Medicine" +23111;21100244653;"Archivos de Prevencion Riesgos Laborales";journal;"11389672, 15782549";"Academy of Medical and Health Sciences of Catalonia and the Balearic Islands";Yes;Yes;0,182;Q3;9;35;96;438;35;51;0,21;12,51;45,24;0;Spain;Western Europe;"Academy of Medical and Health Sciences of Catalonia and the Balearic Islands";"2012-2014, 2016, 2020-2026";"Law (Q3); Human Factors and Ergonomics (Q4); Public Health, Environmental and Occupational Health (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering; Medicine; Social Sciences" +23112;21101163181;"Health Sciences Investigations Journal";journal;"27207609, 27044890";"University of Ghana College of Health Sciences";No;No;0,182;Q3;5;45;113;1442;43;97;0,41;32,04;24,54;0;Ghana;Africa;"University of Ghana College of Health Sciences";"2020-2025";"Health Professions (miscellaneous) (Q3)";"Health Professions" +23113;18247;"Indian Journal of Animal Sciences";journal;"03678318";"Indian Council of Agricultural Research";Yes;Yes;0,182;Q3;31;116;691;3359;333;691;0,48;28,96;24,94;0;India;Asiatic Region;"Indian Council of Agricultural Research";"1971-1978, 1980-1985, 1987-1988, 1996-2025";"Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences; Veterinary" +23114;20100195036;"International Journal of Healthcare Information Systems and Informatics";journal;"15553396, 1555340X";"IGI Global Publishing";No;No;0,182;Q3;23;30;42;939;40;42;0,88;31,30;48,28;0;United States;Northern America;"IGI Global Publishing";"2006-2026";"Information Systems and Management (Q3); Information Systems (Q4); Medicine (miscellaneous) (Q4)";"Computer Science; Decision Sciences; Medicine" +23115;21100406772;"Journal of Computational and Applied Research in Mechanical Engineering";journal;"22516549, 22287922";"Shahid Rajaee Teacher Tarining University (SRTTU)";Yes;Yes;0,182;Q3;12;1;58;54;36;58;0,26;54,00;50,00;0;Iran;Middle East;"Shahid Rajaee Teacher Tarining University (SRTTU)";"2015-2025";"Industrial and Manufacturing Engineering (Q3); Computational Mechanics (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +23116;21101032143;"Journal of Logistics, Informatics and Service Science";journal;"24092665";"Success Culture Press";No;No;0,182;Q3;14;179;485;8714;446;485;0,93;48,68;38,65;0;Hong Kong;Asiatic Region;"Success Culture Press";"2019-2026";"Information Systems and Management (Q3); Computer Networks and Communications (Q4); Information Systems (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences" +23117;21100903447;"Journal of Optimization in Industrial Engineering";journal;"24233935, 22519904";"Qazvin Islamic Azad University";Yes;No;0,182;Q3;15;41;144;1794;136;144;1,05;43,76;23,58;0;Iran;Middle East;"Qazvin Islamic Azad University";"2018-2025";"Industrial and Manufacturing Engineering (Q3)";"Engineering" +23118;21101312177;"Kurdistan Journal of Applied Research";journal;"24117706, 24117684";"Sulaimani Polytechnic University";Yes;No;0,182;Q3;7;30;60;1344;64;60;1,22;44,80;18,92;0;Iraq;Middle East;"Sulaimani Polytechnic University";"2018, 2021-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +23119;33319;"Pediatria Medica e Chirurgica";journal;"03915387, 24207748";"Page Press Publications";Yes;No;0,182;Q3;21;8;49;196;39;49;1,07;24,50;38,46;0;Italy;Western Europe;"Page Press Publications";"1979-2026";"Pediatrics, Perinatology and Child Health (Q3); Surgery (Q3)";"Medicine" +23120;21101171686;"Public Health of Indonesia";journal;"24771570, 25281542";"Yayasan Cipta Anak Bangsa (YCAB) Publisher";Yes;No;0,182;Q3;4;89;72;3065;61;72;0,85;34,44;47,93;0;Indonesia;Asiatic Region;"Yayasan Cipta Anak Bangsa (YCAB) Publisher";"2023-2025";"Health Professions (miscellaneous) (Q3); Health Policy (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine; Social Sciences" +23121;22301;"South African Journal of Surgery";journal;"20785151, 00382361";"Medpharm Publications";Yes;No;0,182;Q3;27;75;234;1017;88;222;0,33;13,56;42,53;0;South Africa;Africa;"Medpharm Publications";"1965-2025";"Surgery (Q3)";"Medicine" +23122;17444;"Structural Engineer";trade journal;"27534421";"Institution of Structural Engineers";No;No;0,182;Q3;40;74;254;435;53;108;0,27;5,88;20,34;0;United Kingdom;Western Europe;"Institution of Structural Engineers";"1969-1988, 1996-2026";"Architecture (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4)";"Engineering" +23123;4700152775;"Techniques in Foot and Ankle Surgery";journal;"15360644, 15381943";"Lippincott Williams and Wilkins Ltd.";No;No;0,182;Q3;21;27;115;666;29;113;0,30;24,67;17,71;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2002-2026";"Surgery (Q3); Orthopedics and Sports Medicine (Q4)";"Medicine" +23124;26195;"Wuhan University Journal of Natural Sciences";journal;"10071202, 19934998";"EDP Sciences";No;No;0,182;Q3;25;34;195;895;114;192;0,58;26,32;47,56;0;France;Western Europe;"EDP Sciences";"1996, 1998-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +23125;21101023953;"Yearbook of Antitrust and Regulatory Studies";journal;"25450115, 16899024";"University of Warsaw";Yes;Yes;0,182;Q3;9;13;53;653;17;44;0,28;50,23;52,63;0;Poland;Eastern Europe;"University of Warsaw";"2008-2025";"Law (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +23126;21100967334;"Advances in Organic Synthesis";book series;"2212408X, 15740870";"Bentham Science Publishers";No;No;0,182;Q4;5;0;19;0;7;5;0,25;0,00;0,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2018, 2020-2023";"Organic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry" +23127;21101162622;"Al-Rafidain Journal of Medical Sciences";journal;"27893219";"Al-Rafidain University College";No;No;0,182;Q4;8;183;274;6058;298;265;1,13;33,10;45,71;0;Iraq;Middle East;"Al-Rafidain University College";"2021-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +23128;25210;"Archivum Mathematicum";journal;"00448753, 12125059";"Masaryk University";Yes;Yes;0,182;Q4;24;8;75;151;41;75;0,54;18,88;12,50;0;Czech Republic;Eastern Europe;"Masaryk University";"2004-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23129;21101196215;"Boletin Geologico";journal;"27111318, 01201425";"Colombian Geological Service";Yes;Yes;0,182;Q4;3;7;46;245;18;38;0,39;35,00;31,25;0;Colombia;Latin America;"Colombian Geological Service";"2021-2025";"Geology (Q4); Geophysics (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +23130;21101070236;"Bulletin of the Transilvania University of Brasov, Series III: Mathematics and Computer Science";journal;"28102029";"Transilvania University of Brasov 1";No;No;0,182;Q4;11;35;98;725;46;97;0,49;20,71;29,41;0;Romania;Eastern Europe;"Transilvania University of Brasov 1";"2021-2025";"Computer Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Mathematics" +23131;21101329567;"China Preventive Medicine Journal";journal;"20965087";"Editorial Office of China Preventive Medicine Journal";No;No;0,182;Q4;5;264;504;4809;300;504;0,60;18,22;52,99;0;China;Asiatic Region;"Editorial Office of China Preventive Medicine Journal";"2023-2026";"Epidemiology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +23132;21100853547;"Ecologia Balkanica";journal;"13140213, 13139940";"Union of Scientists in Bulgaria - Plovdiv";Yes;No;0,182;Q4;8;61;140;1859;72;140;0,52;30,48;56,80;0;Bulgaria;Eastern Europe;"Union of Scientists in Bulgaria - Plovdiv";"2015, 2017-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23133;21101211359;"Engineering Access";journal;"27304175";"Mahasarakham University Faculty of Engineering";Yes;No;0,182;Q4;7;31;90;1154;87;90;1,10;37,23;29,63;0;Thailand;Asiatic Region;"Mahasarakham University Faculty of Engineering";"2021-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +23134;21100854131;"Huagong Jinzhan/Chemical Industry and Engineering Progress";journal;"10006613";"";No;No;0,182;Q4;20;584;2087;28865;1743;2087;0,84;49,43;36,45;0;China;Asiatic Region;"";"2016-2025";"Chemical Engineering (miscellaneous) (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering" +23135;15943;"Indian Journal of Fibre and Textile Research";journal;"09751025, 09710426";"National Institute of Science Communication and Policy Research";Yes;Yes;0,182;Q4;54;55;170;1612;121;169;0,78;29,31;30,17;0;India;Asiatic Region;"National Institute of Science Communication and Policy Research";"1990-2025";"Chemical Engineering (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Polymers and Plastics (Q4)";"Chemical Engineering; Environmental Science; Materials Science" +23136;21100229169;"Insecta Matsumurana";journal;"00201804";"Graduate School of Agriculture, Hokkaido University";No;No;0,182;Q4;6;0;13;0;8;13;0,70;0,00;0,00;0;Japan;Asiatic Region;"Graduate School of Agriculture, Hokkaido University";"2012-2024";"Insect Science (Q4)";"Agricultural and Biological Sciences" +23137;17500155121;"International Journal of Electronic Customer Relationship Management";journal;"17500664, 17500672";"Inderscience Enterprises Ltd";No;No;0,182;Q4;19;14;24;1082;25;24;0,94;77,29;36,11;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2025";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +23138;14100154713;"International Journal of Grid and Utility Computing";journal;"1741847X, 17418488";"Inderscience Enterprises Ltd";No;No;0,182;Q4;24;52;160;1721;159;159;0,97;33,10;28,89;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005, 2009, 2011-2026";"Applied Mathematics (Q4); Computer Science Applications (Q4); Management Information Systems (Q4)";"Business, Management and Accounting; Computer Science; Mathematics" +23139;26993;"International Journal of Power and Energy Systems";journal;"10783466";"Acta Press";No;No;0,182;Q4;19;33;56;836;66;56;1,40;25,33;27,56;0;Canada;Northern America;"Acta Press";"1996-2026";"Applied Mathematics (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4)";"Energy; Engineering; Mathematics" +23140;21101237951;"Iranian Food Science and Technology Research Journal";journal;"22285415, 17354161";"Ferdowsi University of Mashhad";Yes;No;0,182;Q4;8;41;178;1798;123;178;0,69;43,85;42,70;0;Iran;Middle East;"Ferdowsi University of Mashhad";"2020-2026";"Food Science (Q4)";"Agricultural and Biological Sciences" +23141;21101039055;"Journal of Biological Control";journal;"0971930X, 22307281";"Informatics Publishing Limited";No;No;0,182;Q4;8;54;118;1795;79;117;0,54;33,24;45,65;0;India;Asiatic Region;"Informatics Publishing Limited";"2019-2025";"Agronomy and Crop Science (Q4); Applied Microbiology and Biotechnology (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology" +23142;12814;"Journal of Extension";journal;"10775315";"Extension Journal, Inc.";Yes;Yes;0,182;Q4;40;80;244;1919;112;244;0,46;23,99;62,16;0;United States;Northern America;"Extension Journal, Inc.";"1976, 1996-2025";"Education (Q4)";"Social Sciences" +23143;21101278623;"Journal of Holistic Nursing Science";journal;"25797751, 25798472";"Universitas Muhammadiyah Magelang";No;No;0,182;Q4;3;31;48;1549;22;44;0,58;49,97;61,76;0;Indonesia;Asiatic Region;"Universitas Muhammadiyah Magelang";"2021-2026";"Community and Home Care (Q4); Nursing (miscellaneous) (Q4)";"Nursing" +23144;21101119588;"Kemas";journal;"23553596, 18581196";"Universitas Negeri Semarang";Yes;No;0,182;Q4;8;100;223;3507;191;223;0,88;35,07;61,81;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2019-2025";"Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +23145;12100154834;"Macedonian Journal of Chemistry and Chemical Engineering";journal;"18575552, 18575625";"Macedonian Journal of Chemistry and Chemical Engineering";Yes;Yes;0,182;Q4;23;13;72;589;66;71;0,81;45,31;54,39;0;Macedonia;Eastern Europe;"Macedonian Journal of Chemistry and Chemical Engineering";"2008-2026";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +23146;19600162202;"Malaysian Journal of Soil Science";journal;"13947990";"Malaysian Society of Soil Science";No;No;0,182;Q4;15;41;68;1539;61;68;0,89;37,54;40,00;0;Malaysia;Asiatic Region;"Malaysian Society of Soil Science";"2009-2026";"Agronomy and Crop Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +23147;21101081714;"Nanomaterials and Energy";journal;"2045984X, 20459831";"ICE Publishing";No;No;0,182;Q4;17;12;43;744;50;41;1,23;62,00;23,68;0;United Kingdom;Western Europe;"ICE Publishing";"2012-2025";"Energy (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Energy; Materials Science" +23148;21100432450;"New Physics: Sae Mulli";journal;"22890041, 03744914";"Korean Physical Society";No;No;0,182;Q4;13;113;417;2768;136;416;0,39;24,50;26,05;0;South Korea;Asiatic Region;"Korean Physical Society";"1989, 2014-2026";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +23149;21100778840;"Obesity and Metabolism";journal;"20718713, 23065524";"Russian Association of Endocrinologists";Yes;Yes;0,182;Q4;15;45;133;1382;110;133;0,73;30,71;76,81;0;Russian Federation;Eastern Europe;"Russian Association of Endocrinologists";"2016-2025";"Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4); Nutrition and Dietetics (Q4); Public Health, Environmental and Occupational Health (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Nursing" +23150;16155;"Proceedings of the Institution of Civil Engineers: Civil Engineering";journal;"17517672, 0965089X";"ICE Publishing";Yes;No;0,182;Q4;33;24;169;487;88;143;0,58;20,29;33,85;0;United Kingdom;Western Europe;"ICE Publishing";"1992-2025";"Civil and Structural Engineering (Q4)";"Engineering" +23151;5000157802;"Proceedings of the International Astronomical Union";journal;"17439221, 17439213";"Cambridge University Press";No;No;0,182;Q4;29;29;661;470;141;604;0,29;16,21;33,33;0;United Kingdom;Western Europe;"Cambridge University Press";"2004-2026";"Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Physics and Astronomy" +23152;17698;"Puerto Rico Health Sciences Journal";journal;"07380658, 23736011";"University of Puerto Rico";Yes;Yes;0,182;Q4;32;40;141;964;63;130;0,34;24,10;54,86;0;Puerto Rico;Latin America;"University of Puerto Rico";"1985-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +23153;21101034113;"Revista Brasileira de Geografia Fisica";journal;"19842295";"Universidade Federal de Pernambuco";Yes;No;0,182;Q4;12;320;691;17442;462;688;0,66;54,51;35,96;0;Brazil;Latin America;"Universidade Federal de Pernambuco";"2019-2026";"Atmospheric Science (Q4); Computers in Earth Sciences (Q4); Earth-Surface Processes (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Geophysics (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +23154;21101074072;"Revista de Agricultura Neotropical";journal;"23586303";"Universidade Estadual de Mato Grosso do Sul";Yes;Yes;0,182;Q4;6;27;117;1032;66;117;0,59;38,22;36,79;0;Brazil;Latin America;"Universidade Estadual de Mato Grosso do Sul";"2019, 2021-2025";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +23155;22654;"Ringing and Migration";journal;"03078698, 21598355";"Taylor and Francis Ltd.";No;No;0,182;Q4;24;11;22;476;14;21;0,83;43,27;13,79;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1975-2026";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +23156;21100788426;"Scientia Sinica: Physica, Mechanica et Astronomica";journal;"20959478, 16747275";"Science Press";No;No;0,182;Q4;24;217;476;11407;388;451;0,84;52,57;29,28;0;China;Asiatic Region;"Science Press";"2016-2026";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +23157;21101208626;"Academy of Management Annual Meeting Proceedings";conference and proceedings;"00650668, 21516561";"Academy of Management";No;No;0,182;-;27;384;1230;1073;242;1226;0,22;2,79;41,21;0;United States;Northern America;"Academy of Management";"1971, 2005-2025";"Industrial Relations; Management Information Systems; Management of Technology and Innovation";"Business, Management and Accounting" +23158;21100935202;"InterCarto, InterGIS";conference and proceedings;"24149209, 24149179";"Lomonosov Moscow State University";Yes;Yes;0,182;-;10;131;287;2465;85;281;0,28;18,82;46,06;0;Russian Federation;Eastern Europe;"Lomonosov Moscow State University";"2019-2025";"Computers in Earth Sciences; Earth-Surface Processes; Geography, Planning and Development; Geophysics";"Earth and Planetary Sciences; Social Sciences" +23159;74882;"Proceedings of IEEE Sensors";conference and proceedings;"19300395, 21689229";"";No;No;0,182;-;53;0;1374;0;906;1368;0,57;0,00;0,00;0;United States;Northern America;"";"2002-2012, 2014, 2016-2024";"Electrical and Electronic Engineering";"Engineering" +23160;21101254061;"Proceedings of the International Symposium on the Physical and Failure Analysis of Integrated Circuits, IPFA";conference and proceedings;"19461542, 19461550";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,182;-;4;102;114;1077;57;113;0,50;10,56;29,01;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2005, 2010, 2013, 2019, 2024-2025";"Electrical and Electronic Engineering";"Engineering" +23161;16200154721;"Journal for the Study of Judaism";journal;"15700631, 00472212";"Brill Academic Publishers";No;No;0,181;Q1;27;18;54;1039;19;53;0,30;57,72;27,78;0;Netherlands;Western Europe;"Brill Academic Publishers";"1970-1977, 1980-1988, 1990-2026";"Literature and Literary Theory (Q1); History (Q2); Religious Studies (Q2)";"Arts and Humanities" +23162;5700165305;"South Asian Popular Culture";journal;"14746689, 14746697";"Routledge";No;No;0,181;Q1;22;0;78;0;51;68;0,50;0,00;0,00;0;United Kingdom;Western Europe;"Routledge";"2003-2024";"Visual Arts and Performing Arts (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +23163;21100860139;"Bajo Palabra";journal;"1887505X, 15763935";"Universidad Autonoma de Madrid, Bajo Palabra Philosophical Association";Yes;Yes;0,181;Q2;5;51;134;1384;36;131;0,37;27,14;46,15;0;Spain;Western Europe;"Universidad Autonoma de Madrid, Bajo Palabra Philosophical Association";"2017-2025";"Philosophy (Q2)";"Arts and Humanities" +23164;21101185842;"Global Philosophy";journal;"29481538, 2948152X";"Springer Science and Business Media B.V.";No;No;0,181;Q2;5;32;77;1664;56;76;0,73;52,00;13,73;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2023-2026";"Philosophy (Q2); Mathematics (miscellaneous) (Q4)";"Arts and Humanities; Mathematics" +23165;21100843856;"Intus-Legere Historia";journal;"07185456, 07198949";"Universidad Adolfo Ibanez";Yes;Yes;0,181;Q2;4;28;98;917;19;90;0,25;32,75;44,00;0;Chile;Latin America;"Universidad Adolfo Ibanez";"2017-2025";"History (Q2)";"Arts and Humanities" +23166;21101192300;"Journal of Moral Theology";journal;"21662851, 21662118";"Journal of Moral Theology, Inc.";Yes;Yes;0,181;Q2;6;67;238;1768;63;203;0,21;26,39;42,11;0;United States;Northern America;"Journal of Moral Theology, Inc.";"2019-2026";"Religious Studies (Q2)";"Arts and Humanities" +23167;21100259513;"Norsk Lingvistisk Tidsskrift";journal;"08003076";"Novus Forlag AS";Yes;Yes;0,181;Q2;6;8;39;394;16;37;0,33;49,25;46,15;0;Norway;Western Europe;"Novus Forlag AS";"2013-2025";"Linguistics and Language (Q2)";"Social Sciences" +23168;23153;"Povijesni Prilozi";journal;"03519767, 18489087";"Hrvatski Institut za Povijest";No;No;0,181;Q2;6;16;69;964;14;68;0,12;60,25;47,37;0;Croatia;Eastern Europe;"Hrvatski Institut za Povijest";"1982, 2001-2002, 2014-2025";"History (Q2)";"Arts and Humanities" +23169;12431;"Prace i Studia Geograficzne";journal;"25437313, 02084589";"Sciendo";Yes;No;0,181;Q2;13;24;84;1111;37;83;0,40;46,29;51,02;0;Poland;Eastern Europe;"Sciendo";"1979, 1983-1985, 1988, 1992, 1994-2005, 2008-2025";"Cultural Studies (Q2); Sociology and Political Science (Q3); Urban Studies (Q3); Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Earth and Planetary Sciences; Social Sciences" +23170;8300153102;"Religion and Human Rights";journal;"18710328, 1871031X";"Martinus Nijhoff Publishers";No;No;0,181;Q2;12;9;23;777;9;22;0,38;86,33;41,18;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"2006-2025";"Religious Studies (Q2); Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23171;145501;"Acute Medicine";journal;"17474884, 17474892";"Rila Publications Ltd";No;No;0,181;Q3;18;14;115;173;41;100;0,27;12,36;45,61;0;United Kingdom;Western Europe;"Rila Publications Ltd";"2005-2025";"Emergency Medicine (Q3); Critical Care and Intensive Care Medicine (Q4); Internal Medicine (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +23172;21101044831;"Annals of Movement Disorders";journal;"25903454, 25903446";"Wolters Kluwer Medknow Publications";Yes;Yes;0,181;Q3;8;51;111;977;47;80;0,44;19,16;28,41;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2018-2025";"Surgery (Q3); Cognitive Neuroscience (Q4); Neurology (Q4); Neurology (clinical) (Q4); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience" +23173;21100831489;"Asian Journal of Anesthesiology";journal;"2468824X";"Taiwan Society of Anesthesiologists";Yes;No;0,181;Q3;35;6;70;0;43;70;0,63;0,00;42,11;0;Taiwan;Asiatic Region;"Taiwan Society of Anesthesiologists";"2017-2025";"Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +23174;21101058015;"Asian Journal of Law and Economics";journal;"21544611";"Walter de Gruyter GmbH";No;No;0,181;Q3;10;25;48;999;30;48;0,67;39,96;29,41;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2010-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3)";"Economics, Econometrics and Finance; Social Sciences" +23175;21101256262;"Communications in Information and Systems";journal;"15267555, 21634548";"International Press, Inc.";No;No;0,181;Q3;9;29;55;949;42;55;0,81;32,72;35,53;0;United States;Northern America;"International Press, Inc.";"2020-2026";"Communication (Q3)";"Social Sciences" +23176;26001;"Drustvena Istrazivanja";journal;"18486096, 13300288";"Institute of Social Sciences Ivo Pilar";Yes;Yes;0,181;Q3;22;17;92;738;51;90;0,48;43,41;73,17;0;Croatia;Eastern Europe;"Institute of Social Sciences Ivo Pilar";"1996-2026";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23177;4100151706;"International Journal of Business Intelligence and Data Mining";journal;"17438195, 17438187";"Inderscience Enterprises Ltd";No;No;0,181;Q3;24;52;139;1230;126;139;0,82;23,65;55,68;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2026";"Information Systems and Management (Q3); Management Information Systems (Q4); Statistics, Probability and Uncertainty (Q4)";"Business, Management and Accounting; Decision Sciences" +23178;21101270452;"Journal of Orthopaedic Reports";journal;"2773157X";"Elsevier B.V.";Yes;No;0,181;Q3;6;407;127;10138;58;127;0,46;24,91;21,52;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2026";"Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)";"Dentistry; Medicine" +23179;21101105288;"Recoletos Multidisciplinary Research Journal";journal;"24083755, 24231398";"University of San Jose-Recoletos";Yes;Yes;0,181;Q3;7;34;63;1094;52;63;0,83;32,18;47,87;0;Philippines;Asiatic Region;"University of San Jose-Recoletos";"2013-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +23180;21100448230;"Regions and Cohesion";journal;"2152906X, 21529078";"Berghahn Journals";Yes;Yes;0,181;Q3;11;0;46;0;48;38;0,80;0,00;0,00;0;United Kingdom;Western Europe;"Berghahn Journals";"2014-2024";"Political Science and International Relations (Q3); Geography, Planning and Development (Q4); Global and Planetary Change (Q4)";"Environmental Science; Social Sciences" +23181;21101037310;"Register: Jurnal Ilmiah Teknologi Sistem Informasi";journal;"25023357, 25030477";"Universitas Pesantren Tinggi Darul Ulum";No;No;0,181;Q3;11;14;41;513;52;41;0,96;36,64;40,43;0;Indonesia;Asiatic Region;"Universitas Pesantren Tinggi Darul Ulum";"2015-2025";"Information Systems and Management (Q3); Artificial Intelligence (Q4); Computer Science (miscellaneous) (Q4); Decision Sciences (miscellaneous) (Q4); Information Systems (Q4)";"Computer Science; Decision Sciences" +23182;21101046764;"Revista Cuidarte";journal;"22160973, 23463414";"Universidad de Santander";Yes;Yes;0,181;Q3;9;60;164;2315;97;154;0,58;38,58;64,04;0;Colombia;Latin America;"Universidad de Santander";"2019-2025";"Family Practice (Q3); Maternity and Midwifery (Q3); Medical and Surgical Nursing (Q3); Nurse Assisting (Q3); Community and Home Care (Q4); Critical Care and Intensive Care Medicine (Q4); Nursing (miscellaneous) (Q4)";"Medicine; Nursing" +23183;19700180555;"Vjesnik Bibliotekara Hrvatske";journal;"05071925, 13346938";"Hrvatsko Knjiznicarsko Drustvo";Yes;Yes;0,181;Q3;8;41;154;1390;59;130;0,39;33,90;78,79;0;Croatia;Eastern Europe;"Hrvatsko Knjiznicarsko Drustvo";"2009-2025";"Library and Information Sciences (Q3)";"Social Sciences" +23184;21101266017;"Bulletin of the Polish Academy of Sciences. Mathematics";journal;"02397269, 17328985";"Institute of Mathematics. Polish Academy of Sciences";No;No;0,181;Q4;4;0;41;0;18;41;0,41;0,00;0,00;0;Poland;Eastern Europe;"Institute of Mathematics. Polish Academy of Sciences";"2020-2024";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23185;21100267917;"Carbohydrate Chemistry";book series;"2041353X, 14651963";"Royal Society of Chemistry";No;No;0,181;Q4;15;0;21;0;6;20;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2011-2014, 2016-2018, 2021-2022";"Biochemistry (Q4); Organic Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +23186;21100202516;"Chinese Journal of Experimental Ophthalmology";journal;"20950160";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,181;Q4;10;152;477;5873;205;477;0,33;38,64;49,25;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2011-2026";"Ophthalmology (Q4)";"Medicine" +23187;17700155007;"Communications in Computer and Information Science";book series;"18650937, 18650929";"Springer Science and Business Media Deutschland GmbH";No;No;0,181;Q4;82;9703;19261;216381;11957;17921;0,64;22,30;33,54;5;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2007-2026";"Computer Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Mathematics" +23188;21100228047;"Economics and Policy of Energy and the Environment";journal;"22807667, 22807659";"FrancoAngeli";No;No;0,181;Q4;13;8;48;583;27;48;0,26;72,88;65,00;0;Italy;Western Europe;"FrancoAngeli";"2009-2010, 2012-2025";"Economics and Econometrics (Q4); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Economics, Econometrics and Finance; Energy; Environmental Science" +23189;21101152869;"Endocrinology Research and Practice";journal;"28226135";"AVES";Yes;Yes;0,181;Q4;9;61;132;1695;62;116;0,51;27,79;40,85;0;Turkey;Middle East;"AVES";"2023-2026";"Endocrinology, Diabetes and Metabolism (Q4); Geriatrics and Gerontology (Q4); Internal Medicine (Q4)";"Medicine" +23190;21101393224;"Energy Storage and Conversion";journal;"30292778";"Academic Publishing Pte. Ltd.";No;No;0,181;Q4;4;23;27;1136;45;27;1,67;49,39;30,56;0;Singapore;Asiatic Region;"Academic Publishing Pte. Ltd.";"2023-2025";"Energy Engineering and Power Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +23191;21101091713;"European Journal for Qualitative Research in Psychotherapy";journal;"17567599";"Liverpool John Moores University";No;No;0,181;Q4;7;0;22;0;16;19;0,58;0,00;0,00;0;Ireland;Western Europe;"Liverpool John Moores University";"2018-2024";"Applied Psychology (Q4); Clinical Psychology (Q4); Psychology (miscellaneous) (Q4); Social Psychology (Q4)";"Psychology" +23192;21100451188;"European Journal of Adapted Physical Activity";journal;"18033857";"European Federation of Adapted Physical Activity";Yes;Yes;0,181;Q4;13;5;40;242;23;39;0,53;48,40;31,58;0;Czech Republic;Eastern Europe;"European Federation of Adapted Physical Activity";"2015-2025";"Education (Q4); Health (social science) (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Social Psychology (Q4)";"Health Professions; Psychology; Social Sciences" +23193;28629;"Geografisk Tidsskrift - Danish Journal of Geography";journal;"00167223";"Routledge";No;No;0,181;Q4;35;4;21;170;19;17;0,82;42,50;0,00;0;United Kingdom;Western Europe;"Routledge";"1972-2026";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +23194;11700154615;"Hepatitis Monthly";journal;"17353408, 1735143X";"Brieflands";Yes;No;0,181;Q4;50;50;83;1676;42;81;0,50;33,52;46,46;0;Netherlands;Western Europe;"Brieflands";"2007-2025";"Hepatology (Q4); Infectious Diseases (Q4)";"Medicine" +23195;19700174899;"Indian Journal of Nuclear Medicine";journal;"09740244, 09723919";"Scientific Scholar";Yes;No;0,181;Q4;22;92;287;1329;125;265;0,42;14,45;35,66;0;India;Asiatic Region;"Scientific Scholar";"2010-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +23196;21101244196;"International Journal of Information Engineering and Electronic Business";journal;"20749023, 20749031";"Modern Education and Computer Science Press";No;No;0,181;Q4;7;45;94;1608;120;94;1,47;35,73;36,79;0;Hong Kong;Asiatic Region;"Modern Education and Computer Science Press";"2022-2026";"Information Systems (Q4)";"Computer Science" +23197;145379;"Inzynieria Mineralna";journal;"16404920";"Polish Mineral Engineering Society";No;No;0,181;Q4;14;373;349;8353;177;349;0,50;22,39;39,74;0;Poland;Eastern Europe;"Polish Mineral Engineering Society";"2004-2025";"Geochemistry and Petrology (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +23198;21100923521;"Iranian Journal of Veterinary Science and Technology";journal;"24236306, 2008465X";"Ferdowsi University of Mashhad";Yes;Yes;0,181;Q4;5;20;92;1026;58;92;0,55;51,30;33,75;0;Iran;Middle East;"Ferdowsi University of Mashhad";"2019-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +23199;19700173019;"Journal of Contemporary Physics";journal;"19349378, 10683372";"Pleiades Publishing";No;No;0,181;Q4;15;51;192;1241;84;192;0,47;24,33;28,00;0;United States;Northern America;"Pleiades Publishing";"2007, 2009-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +23200;21100826380;"Journal of Crop Protection";journal;"2251905X, 22519041";"Tarbiat Modares University";Yes;Yes;0,181;Q4;14;28;104;1314;60;103;0,45;46,93;34,04;0;Iran;Middle East;"Tarbiat Modares University";"2017-2025";"Agronomy and Crop Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +23201;27015;"Journal of Energy and Development";journal;"03614476";"International Research Center for Energy and";No;No;0,181;Q4;10;13;26;472;21;23;0,76;36,31;0,00;0;United States;Northern America;"International Research Center for Energy and";"1979-1986, 1988, 2011-2014, 2016-2024";"Economics and Econometrics (Q4); Energy (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Energy" +23202;21100894526;"Journal of Energy Markets";journal;"17563615, 17563607";"Infopro digital";No;No;0,181;Q4;12;3;29;90;21;29;0,59;30,00;12,50;0;United Kingdom;Western Europe;"Infopro digital";"2013-2025";"Economics and Econometrics (Q4); Energy (miscellaneous) (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Energy" +23203;21101316094;"Journal of Interventional Epidemiology and Public Health";journal;"26642824";"African Field Epidemiology Network";Yes;No;0,181;Q4;4;105;98;2814;48;95;0,47;26,80;27,62;0;Uganda;Africa;"African Field Epidemiology Network";"2021-2025";"Epidemiology (Q4); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +23204;21100203913;"Journal of Mathematical Sciences (Japan)";journal;"13405705";"University of Tokyo";No;No;0,181;Q4;14;5;14;176;8;14;0,33;35,20;10,00;0;Japan;Asiatic Region;"University of Tokyo";"2011-2022, 2024-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23205;21100934558;"Journal of Nanjing Agricultural University";journal;"10002030";"Editorial Department of Journal of Nanjing Agricultural University";No;No;0,181;Q4;11;141;371;5264;286;371;0,76;37,33;42,88;0;China;Asiatic Region;"Editorial Department of Journal of Nanjing Agricultural University";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +23206;21100465128;"Journal of the Egyptian Women's Dermatologic Society";journal;"20902565, 16871537";"Wolters Kluwer Medknow Publications";Yes;Yes;0,181;Q4;10;48;94;1190;37;86;0,37;24,79;72,73;0;United States;Northern America;"Wolters Kluwer Medknow Publications";"2015-2026";"Dermatology (Q4)";"Medicine" +23207;21101145675;"Jurnal Kimia Valensi";journal;"24606065, 25483013";"State Islamic University Syarif Hidayatullah Jakarta, Faculty of Science and Technology, Department of Chemistry";Yes;No;0,181;Q4;9;28;90;910;71;90;0,88;32,50;65,66;0;Indonesia;Asiatic Region;"State Islamic University Syarif Hidayatullah Jakarta, Faculty of Science and Technology, Department of Chemistry";"2019-2025";"Analytical Chemistry (Q4); Chemistry (miscellaneous) (Q4); Inorganic Chemistry (Q4); Organic Chemistry (Q4)";"Chemistry" +23208;21100929412;"Jurnal Manajemen Hutan Tropika";journal;"20892063, 20870469";"Institut Pertanian Bogor, Department of Forest Management, Faculty of Forestry";Yes;No;0,181;Q4;16;24;90;1404;67;90;0,77;58,50;39,02;0;Indonesia;Asiatic Region;"Institut Pertanian Bogor, Department of Forest Management, Faculty of Forestry";"2012-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23209;9100153107;"Malaysian Journal of Nutrition";journal;"1394035X";"Malaysian Journal of Nutrition";No;No;0,181;Q4;38;38;113;1219;78;113;0,64;32,08;64,96;0;Malaysia;Asiatic Region;"Malaysian Journal of Nutrition";"1995-2002, 2004-2026";"Food Science (Q4); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Nursing" +23210;17626;"Marine Fisheries Review";journal;"00901830";"National Marine Fisheries Service";No;No;0,181;Q4;38;0;11;0;7;11;0,63;0,00;0,00;0;United States;Northern America;"National Marine Fisheries Service";"1974, 1977-1984, 1987-2024";"Agronomy and Crop Science (Q4); Aquatic Science (Q4)";"Agricultural and Biological Sciences" +23211;21101241154;"Neuroscience Journal of Shefaye Khatam";journal;"23221887, 23454814";"Shefa Neuroscience Research Center";No;No;0,181;Q4;6;40;123;2389;104;123;0,90;59,73;40,21;0;Iran;Middle East;"Shefa Neuroscience Research Center";"2021-2025";"Neuroscience (miscellaneous) (Q4)";"Neuroscience" +23212;12306;"Nippon Kinzoku Gakkaishi/Journal of the Japan Institute of Metals";journal;"18806880, 00214876";"Japan Institute of Metals (JIM)";Yes;No;0,181;Q4;34;46;117;1834;44;115;0,36;39,87;17,82;0;Japan;Asiatic Region;"Japan Institute of Metals (JIM)";"1937-1944, 1948-1949, 1969-1992, 1994-2026";"Condensed Matter Physics (Q4); Materials Chemistry (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science; Physics and Astronomy" +23213;17700156747;"Open Biomarkers Journal";journal;"18753183";"Bentham Science Publishers";Yes;No;0,181;Q4;7;5;19;283;14;19;0,78;56,60;62,50;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2009-2013, 2015, 2018-2025";"Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +23214;11000153753;"Physics and Chemistry of Glasses: European Journal of Glass Science and Technology Part B";journal;"17533562";"Society of Glass Technology";No;No;0,181;Q4;49;32;48;750;32;42;0,68;23,44;25,49;0;United Kingdom;Western Europe;"Society of Glass Technology";"2006-2026";"Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +23215;21100407629;"Revista Contabilidade e Financas";journal;"1808057X, 15197077";"Universidade de Sao Paulo. Museu de Zoologia";Yes;Yes;0,181;Q4;15;27;144;1073;82;133;0,55;39,74;31,11;0;Brazil;Latin America;"Universidade de Sao Paulo. Museu de Zoologia";"2015-2025";"Accounting (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +23216;19700173306;"Revista Latinoamericana de Investigacion en Matematica Educativa";journal;"16652436";"Comite Latinoamericano de Matematica Educativa";Yes;No;0,181;Q4;14;4;45;182;18;36;0,24;45,50;33,33;0;Mexico;Latin America;"Comite Latinoamericano de Matematica Educativa";"2009-2024";"Education (Q4)";"Social Sciences" +23217;21100389315;"Risk Governance and Control: Financial Markets and Institutions";journal;"2077429X, 20774303";"Virtus Interpress";No;No;0,181;Q4;13;81;53;3801;97;49;1,83;46,93;47,40;0;Ukraine;Eastern Europe;"Virtus Interpress";"2011-2016, 2024-2026";"Economics and Econometrics (Q4); Finance (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +23218;21100247096;"SAE International Journal of Transportation Safety";journal;"23275626, 23275634";"SAE International";No;No;0,181;Q4;16;13;70;451;45;68;0,39;34,69;15,91;0;United States;Northern America;"SAE International";"2013-2026";"Human Factors and Ergonomics (Q4); Mechanical Engineering (Q4); Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering; Social Sciences" +23219;21101183370;"Space-Integrated-Ground Information Networks";journal;"20968930";"Beijing Xintong Media Co., Ltd.";Yes;No;0,181;Q4;10;43;137;1154;121;137;0,98;26,84;41,18;0;China;Asiatic Region;"Beijing Xintong Media Co., Ltd.";"2020-2025";"Computer Networks and Communications (Q4); Space and Planetary Science (Q4)";"Computer Science; Earth and Planetary Sciences" +23220;21101169011;"Tractors and Agricultural Machinery";journal;"2782425X, 03214443";"Eco-Vector LLC";No;No;0,181;Q4;5;72;191;1138;50;190;0,26;15,81;14,05;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Agronomy and Crop Science (Q4); Automotive Engineering (Q4); Mechanical Engineering (Q4)";"Agricultural and Biological Sciences; Engineering" +23221;21100223125;"IEEE International Conference on Consumer Electronics - Berlin, ICCE-Berlin";conference and proceedings;"21666822, 21666814";"IEEE Computer Society";No;No;0,181;-;20;45;91;755;68;88;0,69;16,78;25,00;0;United States;Northern America;"IEEE Computer Society";"2012, 2015-2023, 2025";"Electrical and Electronic Engineering; Industrial and Manufacturing Engineering; Media Technology";"Engineering" +23222;21101107935;"International Conference on Enterprise Information Systems, ICEIS - Proceedings";conference and proceedings;"21844992";"Science and Technology Publications, Lda";No;No;0,181;-;12;214;489;5450;354;482;0,76;25,47;25,83;1;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Computer Science Applications; Information Systems; Information Systems and Management";"Computer Science; Decision Sciences" +23223;20300195064;"International Conference on Transparent Optical Networks";conference and proceedings;"21627339";"IEEE Computer Society";No;No;0,181;-;30;413;693;5887;414;691;0,60;14,25;22,58;0;United States;Northern America;"IEEE Computer Society";"1999-2003, 2011-2020, 2023-2025";"Computer Networks and Communications; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Computer Science; Engineering; Materials Science" +23224;21100479955;"Proceedings - Applied Imagery Pattern Recognition Workshop";conference and proceedings;"21642516";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,181;-;22;0;90;0;69;88;0,67;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2000-2002, 2004, 2015, 2017-2023";"Engineering (miscellaneous)";"Engineering" +23225;21101131205;"Proceedings - International Conference on Knowledge and Systems Engineering, KSE";conference and proceedings;"26944804";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,181;-;9;95;231;1834;136;225;0,58;19,31;21,74;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2021-2024";"Artificial Intelligence; Computer Networks and Communications; Computer Science Applications; Control and Systems Engineering; Information Systems; Software";"Computer Science; Engineering" +23226;21101176726;"Creative Arts in Education and Therapy";journal;"24682306, 2451876X";"";Yes;Yes;0,180;Q1;5;20;59;455;21;53;0,28;22,75;65,91;0;Netherlands;Western Europe;"";"2021-2025";"Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2); Applied Psychology (Q4); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology" +23227;6500153200;"Dance Research";journal;"17500095, 02642875";"Edinburgh University Press";No;No;0,180;Q1;18;13;47;473;19;35;0,54;36,38;57,14;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996-2025";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +23228;21101045765;"Eastern African Literary and Cultural Studies";journal;"23277416, 23277408";"Taylor and Francis Ltd.";No;No;0,180;Q1;6;25;56;912;21;44;0,31;36,48;42,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +23229;16000154730;"Shakespeare Quarterly";journal;"00373222, 15383555";"Johns Hopkins University Press";No;No;0,180;Q1;35;16;57;778;29;49;0,44;48,63;33,33;0;United States;Northern America;"Johns Hopkins University Press";"1951, 1961, 1963-1964, 1967, 1969-1971, 1973-1974, 1978, 1982, 1984-1985, 2002-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +23230;21100945725;"Studia Aurea";journal;"24626813, 19881088";"Universitat Autonoma de Barcelona";Yes;Yes;0,180;Q1;5;10;71;347;13;69;0,12;34,70;62,50;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2018-2025";"Literature and Literary Theory (Q1); History (Q2)";"Arts and Humanities" +23231;19920;"Berichte zur Wissenschaftsgeschichte";journal;"15222365, 01706233";"Wiley-VCH Verlag";No;No;0,180;Q2;13;18;80;723;33;68;0,39;40,17;42,11;0;Germany;Western Europe;"Wiley-VCH Verlag";"1978-2026";"History (Q2); History and Philosophy of Science (Q3)";"Arts and Humanities" +23232;21101104846;"Cuestiones Teologicas";journal;"23899980, 0120131X";"Universidad Pontificia Bolivariana";Yes;Yes;0,180;Q2;4;21;69;918;12;67;0,09;43,71;35,71;0;Colombia;Latin America;"Universidad Pontificia Bolivariana";"2019-2026";"Religious Studies (Q2)";"Arts and Humanities" +23233;5800215135;"Historische Sprachforschung";journal;"09353518, 21968071";"Vandenhoeck and Ruprecht GmbH and Co. KG";No;No;0,180;Q2;13;0;22;0;5;20;0,20;0,00;0,00;0;Germany;Western Europe;"Vandenhoeck and Ruprecht GmbH and Co. KG";"2002-2007, 2010-2011, 2014-2023";"Linguistics and Language (Q2)";"Social Sciences" +23234;5600153516;"International Journal of Iberian Studies";journal;"17589150, 1364971X";"Intellect Ltd.";No;No;0,180;Q2;9;15;53;669;21;52;0,38;44,60;43,75;0;United Kingdom;Western Europe;"Intellect Ltd.";"2012-2025";"Cultural Studies (Q2); History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23235;21100200606;"International Journal of Transpersonal Studies";journal;"13210122, 19423241";"International Transpersonal Association";Yes;No;0,180;Q2;16;12;43;761;18;38;0,51;63,42;31,25;0;United States;Northern America;"International Transpersonal Association";"2011-2025";"Philosophy (Q2); Religious Studies (Q2); Applied Psychology (Q4)";"Arts and Humanities; Psychology" +23236;21100898974;"Journal of Scottish Philosophy";journal;"17552001, 14796651";"Edinburgh University Press";No;No;0,180;Q2;13;4;47;202;15;38;0,26;50,50;0,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"2003-2025";"Cultural Studies (Q2); History (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +23237;21101046186;"Logical Investigations";journal;"24132713, 20741472";"RAS Institute of Philosophy";No;No;0,180;Q2;5;15;41;384;10;41;0,30;25,60;30,00;0;Russian Federation;Eastern Europe;"RAS Institute of Philosophy";"2015-2025";"Philosophy (Q2); Logic (Q4)";"Arts and Humanities; Mathematics" +23238;15321;"Paedagogica Historica";journal;"1477674X, 00309230";"Taylor and Francis Ltd.";No;No;0,180;Q2;27;74;187;147;87;183;0,50;1,99;52,48;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1961-1985, 1990-1999, 2001-2004, 2006-2026";"History (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +23239;21100857772;"Prehled Vyzkumu";journal;"12117250";"Czech Academy of Sciences";Yes;No;0,180;Q2;7;18;36;1237;8;36;0,18;68,72;32,26;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"2017-2025";"Archeology (arts and humanities) (Q2); Linguistics and Language (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +23240;21101109585;"Revista da Faculdade de Direito da Universidade Federal de Minas Gerais";journal;"19841841, 03042340";"Faculdade de Direito da Universidade Federal de Minas Gerais";Yes;Yes;0,180;Q2;3;34;122;1091;9;106;0,08;32,09;51,85;0;Brazil;Latin America;"Faculdade de Direito da Universidade Federal de Minas Gerais";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); History (Q2); Philosophy (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +23241;13984;"Revista de Historia Industrial";journal;"11327200, 23853247";"Department of Economic History and Institutions, Policy and World Economy";Yes;No;0,180;Q2;13;15;49;897;25;44;0,57;59,80;31,25;0;Spain;Western Europe;"Department of Economic History and Institutions, Policy and World Economy";"1996, 2011-2025";"History (Q2); History and Philosophy of Science (Q3)";"Arts and Humanities" +23242;21101115501;"Southern Journal for Contemporary History";journal;"24150509, 02582422";"University of the Free State";No;No;0,180;Q2;4;4;43;400;18;37;0,20;100,00;20,00;0;South Africa;Africa;"University of the Free State";"2019-2025";"History (Q2)";"Arts and Humanities" +23243;21101178119;"Systemy Logistyczne Wojsk";journal;"15085430, 27197689";"Logistics, Faculty of Security, Logistics and Management, Military University of Technology";No;No;0,180;Q2;4;12;74;422;27;74;0,38;35,17;39,29;0;Poland;Eastern Europe;"Logistics, Faculty of Security, Logistics and Management, Military University of Technology";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); History (Q2)";"Arts and Humanities" +23244;21100403807;"African Journal of Legal Studies";journal;"17087384, 22109730";"Brill Academic Publishers";No;No;0,180;Q3;16;17;50;2022;26;44;0,43;118,94;31,58;0;Netherlands;Western Europe;"Brill Academic Publishers";"2004-2006, 2008-2009, 2011-2026";"Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23245;24698;"African Studies Quarterly";journal;"21522448";"University of Florida";Yes;No;0,180;Q3;29;13;36;1184;24;35;0,30;91,08;22,73;0;United States;Northern America;"University of Florida";"2002-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +23246;19700174976;"Anaesthesia, Pain and Intensive Care";journal;"16078322, 22205799";"Faculty of Anaesthesia, Pain and Intensive Care, AFMS";Yes;No;0,180;Q3;16;254;489;5777;204;473;0,41;22,74;41,98;0;Pakistan;Asiatic Region;"Faculty of Anaesthesia, Pain and Intensive Care, AFMS";"2009-2026";"Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q4)";"Medicine" +23247;21100200808;"Annals of Pediatric Surgery";journal;"16874137, 20905394";"Egyptian Pediatric Surgical Association (EPSA), Arab Association of Pediatric Surgeons (AAPS), Mediterranean Association of Pediatric Surgeons (MAPS), and Pan African Pediatric Surgical Association (PAPSA)";Yes;Yes;0,180;Q3;10;0;146;0;53;144;0,34;0,00;0,00;0;Egypt;Africa/Middle East;"Egyptian Pediatric Surgical Association (EPSA), Arab Association of Pediatric Surgeons (AAPS), Mediterranean Association of Pediatric Surgeons (MAPS), and Pan African Pediatric Surgical Association (PAPSA)";"2009, 2011-2024";"Pediatrics, Perinatology and Child Health (Q3); Surgery (Q3)";"Medicine" +23248;21101140347;"Global Biosecurity";journal;"26520036";"University of New South Wales";Yes;Yes;0,180;Q3;14;18;76;741;52;63;0,50;41,17;59,46;0;Australia;Pacific Region;"University of New South Wales";"2019-2025";"Law (Q3); Epidemiology (Q4)";"Medicine; Social Sciences" +23249;21101117182;"Indian Journal of Chemistry (IJC)";journal;"25831321";"Scientific Publishers";Yes;Yes;0,180;Q3;59;110;389;4127;256;389;0,75;37,52;30,29;0;India;Asiatic Region;"Scientific Publishers";"2022-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Inorganic Chemistry (Q4); Organic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Pharmacology, Toxicology and Pharmaceutics" +23250;21101302023;"International Journal Of Orthodontic Rehabilitation";journal;"23495243, 25425579";"MM Publishers";No;No;0,180;Q3;4;23;63;589;29;63;0,43;25,61;42,86;0;India;Asiatic Region;"MM Publishers";"2021-2025";"Orthodontics (Q3)";"Dentistry" +23251;21100199124;"International Journal of Sustainable Manufacturing";journal;"17427223, 17427231";"Inderscience";No;No;0,180;Q3;19;0;6;0;8;6;0,00;0,00;0,00;0;Switzerland;Western Europe;"Inderscience";"2008-2015, 2018, 2020-2022";"Industrial and Manufacturing Engineering (Q3); Social Sciences (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering; Social Sciences" +23252;21100469397;"Iranian Journal of Neonatology";journal;"23222158, 22517510";"Mashhad University of Medical Sciences";Yes;No;0,180;Q3;17;33;100;929;57;96;0,52;28,15;57,60;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2013-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +23253;19700174804;"Iranian Journal of Obstetrics, Gynecology and Infertility";journal;"20082363, 16802993";"Mashhad University of Medical Sciences";Yes;No;0,180;Q3;24;94;359;3162;151;359;0,42;33,64;75,78;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2010-2025";"Obstetrics and Gynecology (Q3); Reproductive Medicine (Q4)";"Medicine" +23254;12115;"Journal of Economic and Social Measurement";journal;"07479662, 18758932";"SAGE Publications Ltd";No;No;0,180;Q3;26;0;6;0;2;6;0,00;0,00;0,00;0;Netherlands;Western Europe;"SAGE Publications Ltd";"1985-1986, 1989-2002, 2004-2020, 2022-2023";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +23255;21100337502;"MM Science Journal";journal;"18050476, 18031269";"MM Science Journal";Yes;No;0,180;Q3;22;165;388;3757;248;385;0,70;22,77;16,67;0;Czech Republic;Eastern Europe;"MM Science Journal";"2014-2025";"Industrial and Manufacturing Engineering (Q3); Automotive Engineering (Q4); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +23256;52437;"Oceania";journal;"00298077";"Wiley-Blackwell";No;No;0,180;Q3;32;14;51;392;31;47;0,53;28,00;12,50;0;United States;Northern America;"Wiley-Blackwell";"1930-2025";"Anthropology (Q3); History and Philosophy of Science (Q3)";"Arts and Humanities; Social Sciences" +23257;21101038514;"Russian Journal of Anesthesiology and Reanimatology /Anesteziologiya i Reanimatologiya";journal;"02017563, 24104698";"Media Sphera Publishing Group";No;No;0,180;Q3;13;70;217;2022;116;202;0,46;28,89;37,50;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"1976-2016, 2018-2025";"Anesthesiology and Pain Medicine (Q3); Emergency Medical Services (Q3); Emergency Medicine (Q3); Law (Q3); Critical Care and Intensive Care Medicine (Q4); Pathology and Forensic Medicine (Q4)";"Health Professions; Medicine; Social Sciences" +23258;21100842804;"Sociologia Urbana e Rurale";journal;"03924939, 19718403";"FrancoAngeli Edizioni";No;No;0,180;Q3;7;25;111;1263;26;108;0,24;50,52;52,27;0;Italy;Western Europe;"FrancoAngeli Edizioni";"2017-2025";"Demography (Q3); Sociology and Political Science (Q3); Urban Studies (Q3); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science; Social Sciences" +23259;17551;"Acta Neurologica Taiwanica";journal;"1028768X";"Wolters Kluwer Medknow Publications";Yes;Yes;0,180;Q4;30;50;138;1010;82;131;0,57;20,20;39,86;0;Taiwan;Asiatic Region;"Wolters Kluwer Medknow Publications";"1997-2026";"Medicine (miscellaneous) (Q4); Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +23260;21100927241;"Acta Paedagogica Vilnensia";journal;"13925016, 1648665X";"Vilnius University Press";Yes;Yes;0,180;Q4;6;12;72;607;39;72;0,55;50,58;76,00;0;Lithuania;Eastern Europe;"Vilnius University Press";"2019-2025";"Education (Q4)";"Social Sciences" +23261;16739;"Annals of the ICRP";journal;"1872969X, 01466453";"SAGE Publications Inc.";No;No;0,180;Q4;61;2;64;28;37;55;0,47;14,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1976-1989, 1991, 1993-2010, 2012-2025";"Public Health, Environmental and Occupational Health (Q4); Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine" +23262;4000148022;"Asian Journal of Plant Sciences";journal;"16823974, 18125697";"Asian Network for Scientific Information";No;No;0,180;Q4;43;29;210;1062;161;210;0,72;36,62;46,84;0;Pakistan;Asiatic Region;"Asian Network for Scientific Information";"2006-2026";"Agronomy and Crop Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +23263;21101052723;"Chinese Journal on Internet of Things";journal;"20963750";"Beijing Xintong Media Co., Ltd.";Yes;No;0,180;Q4;11;66;165;2343;126;165;0,82;35,50;37,20;0;China;Asiatic Region;"Beijing Xintong Media Co., Ltd.";"2019-2025";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Information Systems (Q4)";"Computer Science" +23264;21100855815;"Current Organocatalysis";journal;"22133372, 22133380";"Bentham Science Publishers";No;No;0,180;Q4;19;39;87;1890;100;78;1,28;48,46;38,14;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2014-2026";"Analytical Chemistry (Q4); Catalysis (Q4); Organic Chemistry (Q4)";"Chemical Engineering; Chemistry" +23265;21101149817;"Egyptian Journal of Medical Microbiology (Egypt)";journal;"11102179, 25370979";"Egyptian Society for Medical Microbiology (ESMM)";No;No;0,180;Q4;6;225;222;7194;166;222;0,72;31,97;58,40;0;Egypt;Africa/Middle East;"Egyptian Society for Medical Microbiology (ESMM)";"2017-2027";"Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4)";"Immunology and Microbiology; Medicine" +23266;21101363389;"Forum Empresarial";journal;"15418561, 24758752";"University of Puerto Rico";Yes;No;0,180;Q4;2;10;22;341;9;22;0,43;34,10;16,67;0;Puerto Rico;Latin America;"University of Puerto Rico";"2021-2025";"Business, Management and Accounting (miscellaneous) (Q4); Decision Sciences (miscellaneous) (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Decision Sciences" +23267;19900193807;"Gerontechnology";journal;"1569111X, 15691101";"International Society for Gerontechnology";Yes;No;0,180;Q4;26;18;260;807;97;259;0,31;44,83;68,12;0;Netherlands;Western Europe;"International Society for Gerontechnology";"2011-2025";"Biomedical Engineering (Q4); Geriatrics and Gerontology (Q4); Gerontology (Q4)";"Engineering; Medicine; Nursing" +23268;29685;"Guangdianzi Jiguang/Journal of Optoelectronics Laser";journal;"10050086";"Tianjin University of Technology";No;No;0,180;Q4;25;131;489;2603;267;489;0,59;19,87;37,50;0;China;Asiatic Region;"Tianjin University of Technology";"1992-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +23269;21101158565;"Healthcare in Low-Resource Settings";journal;"22817824";"Page Press Publications";Yes;No;0,180;Q4;5;88;280;3000;168;277;0,63;34,09;58,43;0;Italy;Western Europe;"Page Press Publications";"2022-2025";"Health Policy (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +23270;25482;"International Journal of Robotics and Automation";journal;"19257090, 08268185";"Acta Press";No;No;0,180;Q4;32;71;157;2204;125;157;0,76;31,04;32,70;0;Canada;Northern America;"Acta Press";"1995-2026";"Artificial Intelligence (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4); Modeling and Simulation (Q4); Software (Q4)";"Computer Science; Engineering; Mathematics" +23271;6100152807;"International Journal of Value Chain Management";journal;"17415365, 17415357";"Inderscience Enterprises Ltd";No;No;0,180;Q4;20;1;51;59;51;51;0,70;59,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2014, 2016-2025";"Computer Science Applications (Q4); Information Systems (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science" +23272;21101158875;"Jordan Journal of Electrical Engineering";journal;"24099619, 24099600";"Tafila Technical University";No;No;0,180;Q4;4;46;77;1527;72;77;0,94;33,20;18,94;0;Jordan;Middle East;"Tafila Technical University";"2023-2025";"Biomedical Engineering (Q4); Computer Graphics and Computer-Aided Design (Q4); Computer Networks and Communications (Q4); Computer Vision and Pattern Recognition (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Hardware and Architecture (Q4); Human-Computer Interaction (Q4); Signal Processing (Q4)";"Computer Science; Energy; Engineering" +23273;21100981414;"Journal of Critical and Intensive Care";journal;"27176428";"Society of Turkish Intensivists";Yes;No;0,180;Q4;9;16;62;418;22;54;0,43;26,13;57,63;0;Turkey;Middle East;"Society of Turkish Intensivists";"2020-2025";"Critical Care and Intensive Care Medicine (Q4)";"Medicine" +23274;21100820055;"Journal of Distribution Science";journal;"17383110, 20937717";"KODISA Foundation";Yes;No;0,180;Q4;22;88;408;4436;336;408;0,77;50,41;38,99;0;South Korea;Asiatic Region;"KODISA Foundation";"2016-2025";"Business and International Management (Q4); Economics and Econometrics (Q4); Marketing (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +23275;21100238411;"Journal of Prime Research in Mathematics";journal;"18185495, 18173462";"Abdus Salam School of mathematical Sciences";No;No;0,180;Q4;12;21;53;594;35;53;0,39;28,29;33,33;0;Pakistan;Asiatic Region;"Abdus Salam School of mathematical Sciences";"2011-2013, 2015-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23276;21101199357;"Journal of Renewable Energies";journal;"11122242, 27168247";"Algerian Centre for the Development of Renewable Energy";Yes;Yes;0,180;Q4;7;40;150;1196;123;150;0,79;29,90;26,02;0;Algeria;Africa;"Algerian Centre for the Development of Renewable Energy";"2019-2025";"Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering" +23277;19700186860;"Lecture Notes in Computational Science and Engineering";book series;"21977100, 14397358";"Springer Science and Business Media Deutschland GmbH";No;No;0,180;Q4;48;155;291;3088;80;259;0,26;19,92;26,98;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2003, 2005-2025";"Computational Mathematics (Q4); Control and Optimization (Q4); Discrete Mathematics and Combinatorics (Q4); Engineering (miscellaneous) (Q4); Modeling and Simulation (Q4)";"Engineering; Mathematics" +23278;21101026926;"Moroccan Journal of Pure and Applied Analysis";journal;"23518227, 26056364";"Sidi Mohamed Ben Abdellah University";Yes;Yes;0,180;Q4;10;13;72;279;30;72;0,31;21,46;11,11;0;Morocco;Africa;"Sidi Mohamed Ben Abdellah University";"2019-2025";"Analysis (Q4); Applied Mathematics (Q4); Control and Optimization (Q4); Numerical Analysis (Q4)";"Mathematics" +23279;21101037125;"Numeracy";journal;"19364660";"";Yes;Yes;0,180;Q4;7;10;37;215;23;33;0,91;21,50;43,75;0;United States;Northern America;"";"2013, 2015, 2018-2026";"Education (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics; Social Sciences" +23280;17600155004;"Numerical Analysis and Applications";journal;"19954239, 19954247";"Pleiades Publishing";No;No;0,180;Q4;17;28;95;702;37;95;0,43;25,07;35,71;0;United States;Northern America;"Pleiades Publishing";"2009-2025";"Numerical Analysis (Q4)";"Mathematics" +23281;21100941065;"Pielegniarstwo XXI Wieku";journal;"17301912, 2450646X";"Medical University of Lublin";Yes;No;0,180;Q4;7;41;130;1546;71;130;0,52;37,71;78,38;0;Poland;Eastern Europe;"Medical University of Lublin";"2019-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +23282;16982;"Rehabilitacion";journal;"00487120, 15783278";"Ediciones Doyma, S.L.";No;No;0,180;Q4;13;66;156;1399;68;126;0,49;21,20;60,58;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"1973-1979, 1987-1991, 2005-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +23283;3500148007;"Revista Chilena de Infectologia";journal;"07161018";"Sociedad Chilena de Infectologia";Yes;Yes;0,180;Q4;26;46;282;1066;112;245;0,33;23,17;54,39;0;Chile;Latin America;"Sociedad Chilena de Infectologia";"2000-2025";"Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +23284;23044;"Revista Cubana de Medicina Tropical";journal;"03750760, 15613054";"Editorial Ciencias Medicas";Yes;Yes;0,180;Q4;21;30;136;793;18;127;0,11;26,43;53,06;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1947-1961, 1976-2025";"Infectious Diseases (Q4); Parasitology (Q4)";"Immunology and Microbiology; Medicine" +23285;19021;"Russian Journal of Genetics";journal;"10227954, 16083369";"Pleiades Publishing";No;No;0,180;Q4;33;182;508;8018;283;508;0,50;44,05;56,87;0;United States;Northern America;"Pleiades Publishing";"1996-2026";"Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology" +23286;21101333518;"UroPrecision";journal;"28351061, 28351053";"John Wiley and Sons Inc";No;No;0,180;Q4;3;43;56;1663;22;37;0,39;38,67;21,19;0;China;Asiatic Region;"John Wiley and Sons Inc";"2023-2026";"Urology (Q4)";"Medicine" +23287;21101037126;"Video Journal of Education and Pedagogy";journal;"23644583";"Brill Academic Publishers";Yes;No;0,180;Q4;11;11;39;281;28;39;0,58;25,55;55,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2019, 2021-2025";"Education (Q4)";"Social Sciences" +23288;21101214476;"IEEE International Integrated Reliability Workshop Final Report";conference and proceedings;"23748036, 19308841";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,180;-;19;0;92;0;45;87;0,57;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1993, 2002-2024";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Safety, Risk, Reliability and Quality";"Engineering; Materials Science" +23289;130053;"Journal of Physics: Conference Series";conference and proceedings;"17426588, 17426596";"IOP Publishing Ltd.";Yes;No;0,180;-;121;9924;38369;147345;22253;36712;0,54;14,85;30,79;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2005-2026";"Physics and Astronomy (miscellaneous)";"Physics and Astronomy" +23290;14494;"Proceedings of the Asian Test Symposium";conference and proceedings;"10817735";"IEEE Computer Society";No;No;0,180;-;36;0;131;0;73;125;0,55;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"1993-2016, 2018-2024";"Electrical and Electronic Engineering";"Engineering" +23291;21101194374;"Proceedings of the International Joint Conference on Computer Vision, Imaging and Computer Graphics Theory and Applications";conference and proceedings;"21845921, 21844321";"Science and Technology Publications, Lda";No;No;0,180;-;10;308;924;8754;563;910;0,56;28,42;24,55;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2019-2025";"Computer Graphics and Computer-Aided Design; Computer Vision and Pattern Recognition; Human-Computer Interaction";"Computer Science" +23292;21101005201;"452ºF";journal;"20133294";"Universitat de Barcelona, Facultad de Filologia";Yes;Yes;0,179;Q1;4;37;123;1087;17;115;0,12;29,38;38,46;0;Spain;Western Europe;"Universitat de Barcelona, Facultad de Filologia";"2019-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +23293;21101032717;"Afghanistan";journal;"2399357X, 23993588";"Edinburgh University Press";No;No;0,179;Q1;6;7;38;287;18;33;0,32;41,00;50,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"2018-2025";"Classics (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Archeology (arts and humanities) (Q2); History (Q2); Religious Studies (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +23294;5800208016;"Cuadernos de Filologia Clasica";journal;"11319070, 19882637";"Universidad Complutense Madrid";Yes;Yes;0,179;Q1;6;26;79;1442;11;79;0,14;55,46;38,10;0;Spain;Western Europe;"Universidad Complutense Madrid";"2011-2025";"Classics (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +23295;21101079111;"Hermeneutics of Old Russian Literature";book series;"27132226, 16076192";"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";No;No;0,179;Q1;3;29;74;1005;10;74;0,14;34,66;52,94;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +23296;21100881439;"Poznanskie Studia Polonistyczne, Seria Literacka";journal;"12338680";"Poznanskie Studia Polonistyczne";Yes;Yes;0,179;Q1;2;47;76;1649;9;75;0,13;35,09;62,50;0;Poland;Eastern Europe;"Poznanskie Studia Polonistyczne";"2018-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +23297;21101124075;"Dotawo";journal;"23732571";"eScholarship Publishing";Yes;Yes;0,179;Q2;3;0;6;0;2;5;0,33;0,00;0,00;0;United States;Northern America;"eScholarship Publishing";"2019-2020, 2023";"Linguistics and Language (Q2); Anthropology (Q3); Gender Studies (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23298;21101151824;"International Quarterly for Asian Studies";journal;"2566686X, 25666878";"Arnold-Bergstraesser-Institute";Yes;Yes;0,179;Q2;7;12;65;394;44;55;0,51;32,83;100,00;0;Germany;Western Europe;"Arnold-Bergstraesser-Institute";"2019-2025";"Cultural Studies (Q2); Anthropology (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23299;19700169859;"Journal for the Study of Radicalism";journal;"19301197, 19301189";"Michigan State University Press";No;No;0,179;Q2;14;15;45;1409;19;37;0,18;93,93;11,76;0;United States;Northern America;"Michigan State University Press";"2010-2025";"History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23300;21100789034;"Journal of African Diaspora Archaeology and Heritage";journal;"21619441, 21619468";"Taylor and Francis Ltd.";No;No;0,179;Q2;9;15;31;1127;18;27;0,44;75,13;41,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2025";"History (Q2); Anthropology (Q3); Archeology (Q3)";"Arts and Humanities; Social Sciences" +23301;21101297678;"Journal of Fatwa Management and Research";journal;"01278886, 22321047";"USIM Press";No;No;0,179;Q2;5;31;107;1235;64;107;0,64;39,84;31,51;0;Malaysia;Asiatic Region;"USIM Press";"2021-2026";"Religious Studies (Q2)";"Arts and Humanities" +23302;21101039510;"Journal on Asian Linguistic Anthropology";journal;"22070656";"Global Council on Anthropological Linguistics";No;No;0,179;Q2;2;16;48;636;7;48;0,03;39,75;47,62;0;United Kingdom;Western Europe;"Global Council on Anthropological Linguistics";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Linguistics and Language (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +23303;15923;"Landscape History";journal;"01433768, 21602506";"Taylor and Francis Ltd.";No;No;0,179;Q2;13;12;37;762;18;37;0,67;63,50;32,14;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979-2025";"History (Q2); Horticulture (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Arts and Humanities; Environmental Science" +23304;21101067140;"Lexicographica";journal;"18659403, 01756206";"Walter de Gruyter GmbH";No;No;0,179;Q2;16;14;51;404;15;48;0,47;28,86;52,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1996-2025";"Linguistics and Language (Q2)";"Social Sciences" +23305;17109;"Linacre Quarterly";journal;"20508549, 00243639";"SAGE Publications Inc.";No;No;0,179;Q2;20;56;137;1647;55;82;0,44;29,41;31,71;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1945, 1947, 1950-1953, 1973-2006, 2008-2026";"Philosophy (Q2); Health Policy (Q4)";"Arts and Humanities; Medicine" +23306;19700200936;"Lingue e Linguaggio";journal;"26120488, 17209331";"Societa Editrice Il Mulino";No;No;0,179;Q2;20;17;44;938;18;41;0,22;55,18;58,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2002-2025";"Linguistics and Language (Q2)";"Social Sciences" +23307;21101268316;"Linguistic Frontiers";journal;"25446339";"Sciendo";No;No;0,179;Q2;5;21;74;653;38;68;0,52;31,10;62,96;0;Germany;Western Europe;"Sciendo";"2020-2025";"Linguistics and Language (Q2)";"Social Sciences" +23308;21100967511;"Musica Tecnologia";journal;"19740042, 19740050";"Firenze University Press";Yes;No;0,179;Q2;2;5;14;117;6;11;0,36;23,40;25,00;0;Italy;Western Europe;"Firenze University Press";"2020-2025";"Music (Q2); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4)";"Arts and Humanities; Computer Science; Engineering" +23309;21101269702;"Studia Hercynia";journal;"12125865, 23368144";"Charles University, Faculty of Arts";No;No;0,179;Q2;4;15;60;834;20;55;0,33;55,60;55,17;0;Czech Republic;Eastern Europe;"Charles University, Faculty of Arts";"2020-2025";"Archeology (arts and humanities) (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +23310;5200152602;"Acta Pharmaceutica Sciencia";journal;"13072080";"Istanbul Medipol University";Yes;No;0,179;Q3;25;62;130;2196;118;116;0,92;35,42;63,02;0;Turkey;Middle East;"Istanbul Medipol University";"2006-2011, 2016-2026";"Pharmaceutical Science (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +23311;21101272608;"Al-Nahrain Journal of Science";journal;"26635453, 26635461";"Al-Nahrain University College of Science";No;No;0,179;Q3;9;73;145;2373;141;145;1,01;32,51;50,30;0;Iraq;Middle East;"Al-Nahrain University College of Science";"2020-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +23312;21101051220;"Annals of Child Neurology";journal;"2635909X, 26359103";"Korean Child Neurology Society";Yes;Yes;0,179;Q3;5;31;130;590;41;69;0,28;19,03;51,67;0;South Korea;Asiatic Region;"Korean Child Neurology Society";"2019-2026";"Pediatrics, Perinatology and Child Health (Q3); Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +23313;21101124073;"Archives of Veterinary Medicine";journal;"18209955, 26834138";"Scientific Veterinary Institute Novi Sad";Yes;Yes;0,179;Q3;6;16;42;530;28;42;0,62;33,13;52,17;0;Serbia;Eastern Europe;"Scientific Veterinary Institute Novi Sad";"2019-2025";"Equine (Q3); Small Animals (Q3); Food Animals (Q4); Veterinary (miscellaneous) (Q4)";"Veterinary" +23314;21101297942;"Borneo Journal of Pharmacy";journal;"26214814";"Institute for Research and Community Services, Universitas Muhammadiyah Palangkaraya";Yes;No;0,179;Q3;7;27;122;1060;90;120;0,53;39,26;56,00;0;Indonesia;Asiatic Region;"Institute for Research and Community Services, Universitas Muhammadiyah Palangkaraya";"2022-2025";"Pharmacy (Q3); Pharmacology (Q4); Pharmacology (medical) (Q4)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +23315;31728;"Comptes Rendus de L'Academie Bulgare des Sciences";journal;"13101331";"Academic Publishing House";Yes;No;0,179;Q3;24;215;645;3529;346;645;0,54;16,41;47,85;0;Bulgaria;Eastern Europe;"Academic Publishing House";"1977-1985, 2002-2003, 2007-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +23316;21100945719;"International Journal of Media and Information Literacy";journal;"2500106X";"Cherkas Global University Press";Yes;No;0,179;Q3;11;21;126;856;103;126;0,85;40,76;58,70;0;United States;Northern America;"Cherkas Global University Press";"2016-2025";"Communication (Q3); Library and Information Sciences (Q3); Education (Q4)";"Social Sciences" +23317;21101243619;"Journal of Law, Market and Innovation";journal;"27857867";"University of Torino";Yes;Yes;0,179;Q3;4;29;63;316;32;47;0,43;10,90;51,28;0;Italy;Western Europe;"University of Torino";"2022-2025";"Law (Q3)";"Social Sciences" +23318;21101046187;"Journal of Medicinal and Chemical Sciences";journal;"26514702";"Sami Publishing Company";No;No;0,179;Q3;24;0;520;0;977;520;1,06;0,00;0,00;0;France;Western Europe;"Sami Publishing Company";"2020-2024";"Pharmaceutical Science (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Drug Discovery (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +23319;23285;"Natures Sciences Societes";journal;"12401307, 17652979";"EDP Sciences";Yes;Yes;0,179;Q3;24;27;119;841;42;102;0,32;31,15;45,83;0;France;Western Europe;"EDP Sciences";"1995-2026";"Multidisciplinary (Q3); Social Sciences (miscellaneous) (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Earth and Planetary Sciences; Environmental Science; Multidisciplinary; Social Sciences" +23320;21100220392;"Pacific Journalism Review";journal;"23242035, 10239499";"Pacific Media Centre, Auckland University of Technology";Yes;Yes;0,179;Q3;20;0;50;0;34;45;0,59;0,00;0,00;0;New Zealand;Pacific Region;"Pacific Media Centre, Auckland University of Technology";"2005-2024";"Communication (Q3)";"Social Sciences" +23321;21100797848;"Potchefstroom Electronic Law Journal";journal;"17273781";"North-West Unversity";Yes;No;0,179;Q3;15;58;246;3104;96;232;0,35;53,52;44,90;0;South Africa;Africa;"North-West Unversity";"2013-2026";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23322;21101061920;"Research Results in Biomedicine";journal;"26586533";"Belgorod State National Research University";No;No;0,179;Q3;16;31;120;1994;105;120;0,93;64,32;58,21;0;Russian Federation;Eastern Europe;"Belgorod State National Research University";"2018-2025";"Obstetrics and Gynecology (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Genetics (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4); Psychiatry and Mental Health (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +23323;21100242828;"Revista de Direito, Estado e Telecomunicacoes";journal;"19849729, 19848161";"Universidade de Brasilia";Yes;Yes;0,179;Q3;9;27;71;1260;50;71;0,66;46,67;49,21;0;Brazil;Latin America;"Universidade de Brasilia";"2009, 2013-2025";"Law (Q3); Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering; Social Sciences" +23324;21101090844;"Revista del Ministerio de Trabajo y Economia Social";journal;"26604655, 26604647";"";No;No;0,179;Q3;4;19;102;555;14;92;0,05;29,21;43,75;0;Spain;Western Europe;"";"2020-2025";"Demography (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +23325;17356;"Revista Mexicana de Sociologia";journal;"25940651, 01882503";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,179;Q3;19;30;122;1489;58;122;0,40;49,63;28,95;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1976, 1978-1979, 1981, 1983, 1985, 1988, 1990, 1993, 1995-1996, 2011-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23326;14500154748;"Romanian Journal of Economic Forecasting";journal;"25376071, 15826163";"Institute for Economic Forecasting";No;No;0,179;Q3;23;28;116;1502;106;115;1,11;53,64;37,04;0;Romania;Eastern Europe;"Institute for Economic Forecasting";"2008-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3)";"Economics, Econometrics and Finance" +23327;18157;"Sojourn";journal;"17932858, 02179520";"ISEAS - Yusof Ishak Institute";No;No;0,179;Q3;26;16;52;775;39;46;0,76;48,44;31,25;0;Singapore;Asiatic Region;"ISEAS - Yusof Ishak Institute";"1988-1993, 1995-1996, 1999-2001, 2003-2025";"Anthropology (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23328;21100894873;"World Review of Political Economy";journal;"20428928, 2042891X";"Pluto Journals";Yes;Yes;0,179;Q3;9;10;85;567;50;82;0,54;56,70;23,08;0;United Kingdom;Western Europe;"Pluto Journals";"2018-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Economics, Econometrics and Finance; Social Sciences" +23329;12000154412;"Acta Agriculturae Slovenica";journal;"18541941, 15819175";"University of Ljubljana";Yes;Yes;0,179;Q4;29;47;192;2126;121;192;0,66;45,23;42,01;0;Slovenia;Eastern Europe;"University of Ljubljana";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23330;26936;"Acta Physica Polonica A";journal;"1898794X, 05874246";"Polska Akademia Nauk";Yes;Yes;0,179;Q4;56;124;561;3978;314;557;0,58;32,08;30,35;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1991-1994, 1996-2026";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +23331;21100932721;"ASEAN Engineering Journal";journal;"25869159";"Penerbit UTM Press";No;No;0,179;Q4;10;95;274;3169;234;274;0,89;33,36;35,87;0;Thailand;Asiatic Region;"Penerbit UTM Press";"2017-2025";"Chemical Engineering (miscellaneous) (Q4); Computer Science Applications (Q4); Energy Engineering and Power Technology (Q4); Engineering (miscellaneous) (Q4); Environmental Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Chemical Engineering; Computer Science; Earth and Planetary Sciences; Energy; Engineering; Environmental Science" +23332;21101281534;"British Journal of Mental Health Nursing";journal;"2052496X, 20495919";"MA Healthcare Ltd";No;No;0,179;Q4;2;28;27;615;12;23;0,44;21,96;64,15;0;United Kingdom;Western Europe;"MA Healthcare Ltd";"2024-2026";"Psychiatry and Mental Health (Q4)";"Medicine" +23333;21100863709;"Case Reports in Veterinary Medicine";journal;"20907001, 2090701X";"John Wiley and Sons Ltd";Yes;No;0,179;Q4;10;26;34;581;17;34;0,47;22,35;55,66;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2011-2026";"Veterinary (miscellaneous) (Q4)";"Veterinary" +23334;15300154805;"Clinical Psychology Forum";journal;"17475732";"British Psychological Society";No;No;0,179;Q4;19;95;279;1102;58;198;0,19;11,60;78,07;0;United Kingdom;Western Europe;"British Psychological Society";"2005-2025";"Clinical Psychology (Q4)";"Psychology" +23335;21100786232;"Comparative Exercise Physiology";journal;"17552540, 17552559";"Brill Wageningen Academic";No;No;0,179;Q4;22;40;149;1693;79;147;0,49;42,33;53,64;0;Netherlands;Western Europe;"Brill Wageningen Academic";"2008-2010, 2012-2026";"Biochemistry (Q4); Biophysics (Q4); Endocrinology, Diabetes and Metabolism (Q4); Orthopedics and Sports Medicine (Q4); Physiology (Q4); Physiology (medical) (Q4); Veterinary (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Veterinary" +23336;19600157307;"Current Cardiovascular Imaging Reports";journal;"19419074, 19419066";"Springer";Yes;No;0,179;Q4;27;10;37;592;22;37;0,52;59,20;27,42;0;United States;Northern America;"Springer";"2008-2025";"Applied Microbiology and Biotechnology (Q4); Cell Biology (Q4); Histology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +23337;17700156434;"Current Pharmacogenomics and Personalized Medicine";journal;"18756913, 18756921";"Bentham Science Publishers";No;No;0,179;Q4;23;25;44;1790;34;39;1,06;71,60;40,38;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2008-2018, 2020-2025";"Genetics (Q4); Genetics (clinical) (Q4); Molecular Biology (Q4); Molecular Medicine (Q4); Pharmacology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +23338;27502;"Doklady Physics";journal;"10283358, 15626903";"Pleiades Publishing";No;No;0,179;Q4;35;10;185;427;80;185;0,40;42,70;14,29;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Computational Mechanics (Q4); Mechanics of Materials (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Engineering; Physics and Astronomy" +23339;19700174637;"Duzce Medical Journal";journal;"1307671X";"Duzce University Medical School";Yes;Yes;0,179;Q4;9;66;194;1519;91;192;0,59;23,02;48,73;0;Turkey;Middle East;"Duzce University Medical School";"2010-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +23340;4500151523;"Educacao e Sociedade";journal;"16784626, 01017330";"Centro de Estudos Educacao e Sociedade - CEDES";Yes;No;0,179;Q4;32;60;176;2271;65;158;0,39;37,85;55,05;0;Brazil;Latin America;"Centro de Estudos Educacao e Sociedade - CEDES";"2006-2025";"Education (Q4)";"Social Sciences" +23341;33825;"Geociencias";journal;"1980900X, 01019082";"Universidade Estadual Paulista (UNESP)";No;No;0,179;Q4;24;40;149;1858;53;149;0,37;46,45;27,20;0;Brazil;Latin America;"Universidade Estadual Paulista (UNESP)";"1982-1985, 1988-1990, 1992-1997, 2005-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +23342;21100880214;"Higher Education Forum";journal;"24329614";"Hiroshima University,Research Institute for Higher Education,";No;No;0,179;Q4;7;7;29;404;27;29;0,63;57,71;54,55;0;Japan;Asiatic Region;"Hiroshima University,Research Institute for Higher Education,";"2012, 2014-2025";"Education (Q4)";"Social Sciences" +23343;21100210915;"International Journal of Business";journal;"10834346";"Chaoyang University of Technology";No;No;0,179;Q4;16;5;73;318;61;73;0,67;63,60;33,33;0;Taiwan;Asiatic Region;"Chaoyang University of Technology";"2007, 2010-2025";"Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +23344;21100253384;"International Journal of Cyber Behavior, Psychology and Learning";journal;"21557136, 21557144";"IGI Global Publishing";No;No;0,179;Q4;23;4;45;189;32;45;0,77;47,25;55,56;0;United States;Northern America;"IGI Global Publishing";"2011-2025";"Developmental and Educational Psychology (Q4); Education (Q4); Experimental and Cognitive Psychology (Q4)";"Psychology; Social Sciences" +23345;21100901841;"International Journal of Industrial Engineering and Production Research";journal;"20084889, 2345363X";"Iran University of Science and Technology";Yes;Yes;0,179;Q4;12;53;152;2235;135;152;0,90;42,17;32,54;0;Iran;Middle East;"Iran University of Science and Technology";"2018-2025";"Industrial and Manufacturing Engineering (Q4); Management Science and Operations Research (Q4); Statistics, Probability and Uncertainty (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering" +23346;13742;"International Tinnitus Journal";journal;"09465448";"International Tinnitus Journal";No;No;0,179;Q4;36;17;113;568;55;113;0,41;33,41;37,50;0;Hungary;Eastern Europe;"International Tinnitus Journal";"1998-2025";"Otorhinolaryngology (Q4); Sensory Systems (Q4); Speech and Hearing (Q4)";"Health Professions; Medicine; Neuroscience" +23347;21101283270;"Journal of Nuclear Agricultural Sciences";journal;"10008551";"";No;No;0,179;Q4;9;264;789;9519;558;789;0,72;36,06;43,51;0;China;Asiatic Region;"";"2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Food Science (Q4)";"Agricultural and Biological Sciences" +23348;21100388650;"Journal of the Canadian Chiropractic Association";journal;"17156181, 00083194";"Canadian Chiropractic Association";Yes;No;0,179;Q4;23;0;70;0;35;65;0,55;0,00;0,00;0;Canada;Northern America;"Canadian Chiropractic Association";"2014-2024";"Chiropractics (Q4)";"Health Professions" +23349;19700200801;"Nonlinear Phenomena in Complex Systems";journal;"15614085, 18172458";"Education and Upbringing Publishing";No;No;0,179;Q4;14;36;115;779;42;115;0,39;21,64;34,72;0;Belarus;Eastern Europe;"Education and Upbringing Publishing";"2009-2025";"Mathematical Physics (Q4); Statistical and Nonlinear Physics (Q4)";"Mathematics; Physics and Astronomy" +23350;57692;"Nutricion Clinica y Dietetica Hospitalaria";journal;"02116057, 1989208X";"Sociedad espanola de dietetica";Yes;Yes;0,179;Q4;17;225;336;6286;240;335;0,72;27,94;57,19;0;Spain;Western Europe;"Sociedad espanola de dietetica";"1981-1982, 2002-2026";"Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +23351;21101347019;"Plant Biotechnology and Breeding";journal;"26586266, 26586258";"N.I. Vavilov All-Russian Institute of Plant Genetic Resources";Yes;No;0,179;Q4;6;19;72;707;20;63;0,18;37,21;74,51;0;Russian Federation;Eastern Europe;"N.I. Vavilov All-Russian Institute of Plant Genetic Resources";"2021-2025";"Agronomy and Crop Science (Q4); Biotechnology (Q4); Genetics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +23352;18700;"Przeglad Elektrotechniczny";journal;"00332097, 24499544";"Wydawnictwo SIGMA-NOT";Yes;No;0,179;Q4;37;538;1942;9089;969;1942;0,57;16,89;16,74;0;Poland;Eastern Europe;"Wydawnictwo SIGMA-NOT";"1969-1984, 2005-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +23353;21100775478;"Russian Open Medical Journal";journal;"23043415";"Russian Open Medical Journal";Yes;Yes;0,179;Q4;13;21;147;739;103;147;0,79;35,19;52,94;0;Russian Federation;Eastern Europe;"Russian Open Medical Journal";"2012-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +23354;21100877193;"Sarhad Journal of Agriculture";journal;"10164383, 22245383";"ResearchersLinks Ltd";No;No;0,179;Q4;16;214;494;8899;309;494;0,60;41,58;22,61;0;United Kingdom;Western Europe;"ResearchersLinks Ltd";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +23355;100336;"Statistica";journal;"0390590X, 19732201";"University of Bologna";Yes;Yes;0,179;Q4;11;0;41;0;15;39;0,00;0,00;0,00;0;Italy;Western Europe;"University of Bologna";"1969, 1977, 1979-1990, 1994-1997, 2019-2024";"Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics" +23356;13800154708;"World Review of Intermodal Transportation Research";journal;"17494737, 17494729";"Inderscience Enterprises Ltd";No;No;0,179;Q4;21;5;24;211;19;24;0,67;42,20;18,18;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2011, 2013-2025";"Geography, Planning and Development (Q4); Transportation (Q4)";"Social Sciences" +23357;21101239744;"Zanco Journal of Pure and Applied Sciences";journal;"24123986, 22180230";"Salahaddin University - Erbil";Yes;Yes;0,179;Q4;8;79;281;2950;196;281;0,68;37,34;24,35;0;Iraq;Middle East;"Salahaddin University - Erbil";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Engineering" +23358;110577;"IEEE International Professional Communication Conference";conference and proceedings;"2158091X, 21581002";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,179;-;23;70;204;1291;95;200;0,44;18,44;58,82;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1995-1997, 1999-2013, 2015-2025";"Communication; Engineering (miscellaneous)";"Engineering; Social Sciences" +23359;21100400011;"Proceedings of the International Conference on Software Engineering and Knowledge Engineering, SEKE";conference and proceedings;"23259086, 23259000";"Knowledge Systems Institute Graduate School";No;No;0,179;-;21;65;327;1274;163;321;0,42;19,60;32,97;0;United States;Northern America;"Knowledge Systems Institute Graduate School";"2013-2025";"Software";"Computer Science" +23360;21101061934;"Proceedings of the International Conference on Tourism Research";conference and proceedings;"25163612";"Academic Conferences and Publishing International Limited";No;No;0,179;-;8;55;199;1658;173;194;1,02;30,15;58,33;0;United Kingdom;Western Europe;"Academic Conferences and Publishing International Limited";"2018-2025";"Cultural Studies; Geography, Planning and Development; Management, Monitoring, Policy and Law; Social Sciences (miscellaneous); Tourism, Leisure and Hospitality Management";"Business, Management and Accounting; Environmental Science; Social Sciences" +23361;21100802691;"Proceedings of the International ISCRAM Conference";conference and proceedings;"24113387";"Information Systems for Crisis Response and Management, ISCRAM";No;No;0,179;-;22;75;284;2393;167;279;0,67;31,91;37,12;0;Belgium;Western Europe;"Information Systems for Crisis Response and Management, ISCRAM";"2010-2011, 2013-2014, 2016-2025";"Computer Networks and Communications; Electrical and Electronic Engineering; Hardware and Architecture; Information Systems; Information Systems and Management; Signal Processing";"Computer Science; Decision Sciences; Engineering" +23362;29362;"Transactions of the American Nuclear Society";conference and proceedings;"0003018X";"American Nuclear Society";No;No;0,179;-;24;655;1654;4707;321;1648;0,22;7,19;20,45;0;United States;Northern America;"American Nuclear Society";"1973-1974, 1980-1982, 1984-1986, 1988, 2001-2025";"Energy Engineering and Power Technology; Industrial and Manufacturing Engineering; Nuclear Energy and Engineering; Safety, Risk, Reliability and Quality";"Energy; Engineering" +23363;21100803387;"Art Inquiry";journal;"24510327, 16419278";"Lodzkie Towarzystwo Naukowe";No;No;0,178;Q1;7;20;64;463;20;63;0,27;23,15;50,00;0;Poland;Eastern Europe;"Lodzkie Towarzystwo Naukowe";"2016-2025";"Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Music (Q2)";"Arts and Humanities; Social Sciences" +23364;5700164244;"Die Welt des Islams";journal;"00432539, 15700607";"Brill Academic Publishers";No;No;0,178;Q1;33;26;34;3857;15;33;0,30;148,35;29,17;0;Netherlands;Western Europe;"Brill Academic Publishers";"1921, 1951-1955, 1957, 1959, 1961-1962, 1965-1966, 1968-1969, 1971, 1973-1976, 1978-1980, 1985-1986, 1989-1992, 1994-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +23365;21101041513;"Enquiry";journal;"23299339";"Architectural Research Centers Consortium";Yes;Yes;0,178;Q1;4;14;27;747;18;25;0,64;53,36;63,33;0;United States;Northern America;"Architectural Research Centers Consortium";"2019-2025";"Visual Arts and Performing Arts (Q1); History (Q2); Architecture (Q3)";"Arts and Humanities; Engineering" +23366;21101133101;"In Gremium. Studies in History, Culture and Politics";journal;"18992722";"University of Zielona Gora Library";No;No;0,178;Q1;1;0;43;0;2;42;0,07;0,00;0,00;0;Poland;Eastern Europe;"University of Zielona Gora Library";"2019-2024";"Literature and Literary Theory (Q1); History (Q2); Linguistics and Language (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +23367;5600155299;"Annales-Anali za Istrske in Mediteranske Studije - Series Historia et Sociologia";journal;"13189425, 14085348";"The Historical Society of Southern Primorska of Koper, Institute IRRIS for Research, Development and Strategies of Society, Culture and Environment";Yes;Yes;0,178;Q2;14;53;130;2687;37;130;0,37;50,70;50,47;0;Slovenia;Eastern Europe;"The Historical Society of Southern Primorska of Koper, Institute IRRIS for Research, Development and Strategies of Society, Culture and Environment";"2011-2025";"History (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +23368;17500155104;"Feminist Theology";journal;"17455189, 09667350";"SAGE Publications Ltd";No;No;0,178;Q2;15;25;84;872;27;75;0,38;34,88;77,27;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1992-2026";"Religious Studies (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +23369;21100824547;"History and Sociology of South Asia";journal;"22308075, 22495312";"SAGE Publications Ltd";No;No;0,178;Q2;7;18;38;145;19;35;0,44;8,06;42,86;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2011-2026";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23370;21101272595;"International Journal of Law and Society";journal;"28279050, 28279042";"CV Najaha";No;No;0,178;Q2;4;27;52;1525;38;52;0,91;56,48;32,31;0;Indonesia;Asiatic Region;"CV Najaha";"2022-2026";"Arts and Humanities (miscellaneous) (Q2); Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23371;146189;"Legal Ethics";journal;"1460728X, 17578450";"Routledge";No;No;0,178;Q2;16;3;37;159;28;29;0,73;53,00;25,00;0;United Kingdom;Western Europe;"Routledge";"1998-2026";"Philosophy (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +23372;21101392362;"Nusantara: Journal of Law Studies";journal;"29643384";"PT. Islamic Research Publisher";No;No;0,178;Q2;10;14;36;376;26;36;0,74;26,86;23,81;0;Indonesia;Asiatic Region;"PT. Islamic Research Publisher";"2022-2026";"Cultural Studies (Q2); Law (Q3); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +23373;16100154777;"Philosophy Today";journal;"00318256, 23298596";"Philosophy Documentation Center";No;No;0,178;Q2;16;22;151;518;38;142;0,24;23,55;38,46;0;United States;Northern America;"Philosophy Documentation Center";"2002-2025";"Philosophy (Q2)";"Arts and Humanities" +23374;17700154911;"Revista Electronica Complutense de Investigacion en Educacion Musical";journal;"16987454";"Universidad Complutense Madrid";Yes;Yes;0,178;Q2;12;2;82;8;35;79;0,21;4,00;0,00;0;Spain;Western Europe;"Universidad Complutense Madrid";"2004-2025";"Music (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +23375;21100943515;"Stellenbosch Papers in Linguistics Plus";journal;"22243380, 1726541X";"Department of General Linguistics, Stellenbosch University";Yes;No;0,178;Q2;7;9;56;559;20;43;0,33;62,11;64,71;0;South Africa;Africa;"Department of General Linguistics, Stellenbosch University";"2019-2025";"Linguistics and Language (Q2)";"Social Sciences" +23376;5800207693;"Written Language and Literacy";journal;"13876732, 15706001";"John Benjamins Publishing Company";No;No;0,178;Q2;31;0;30;0;14;29;0,26;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1998-2024";"Linguistics and Language (Q2)";"Social Sciences" +23377;21100870844;"Acta Turistica";journal;"18486061, 03534316";"University of Zagreb Faculty of Economics and Business";No;No;0,178;Q3;7;14;23;530;19;19;0,38;37,86;60,87;0;Croatia;Eastern Europe;"University of Zagreb Faculty of Economics and Business";"2018-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +23378;21101149446;"Advanced Dental Journal";journal;"2636302X, 26363038";"Cairo University, Faculty of Dentistry";Yes;Yes;0,178;Q3;6;81;209;2216;96;209;0,45;27,36;63,58;0;Egypt;Africa/Middle East;"Cairo University, Faculty of Dentistry";"2019-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +23379;22677;"Ambix";journal;"17458234, 00026980";"Maney Publishing";No;No;0,178;Q3;15;23;51;1462;24;43;0,45;63,57;65,38;0;United Kingdom;Western Europe;"Maney Publishing";"1937-1938, 1946, 1948-1949, 1951, 1953, 1956-1996, 1998, 2000-2026";"History and Philosophy of Science (Q3); Chemistry (miscellaneous) (Q4)";"Arts and Humanities; Chemistry" +23380;21100220467;"International Journal of Knowledge-Based Development";journal;"20404476, 20404468";"Inderscience";No;No;0,178;Q3;27;20;64;1159;56;64;0,77;57,95;34,00;0;Switzerland;Western Europe;"Inderscience";"2010-2025";"Information Systems and Management (Q3); Management of Technology and Innovation (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences" +23381;21101052717;"Journal of Data Protection and Privacy";journal;"23981687, 23981679";"Henry Stewart Publications";No;No;0,178;Q3;9;23;76;1109;67;65;0,85;48,22;71,43;0;United Kingdom;Western Europe;"Henry Stewart Publications";"2017-2026";"Law (Q3); Management Information Systems (Q4); Marketing (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +23382;21101068039;"Journal of Neurocritical Care";journal;"25081349";"";Yes;Yes;0,178;Q3;8;20;69;473;32;56;0,30;23,65;23,17;0;South Korea;Asiatic Region;"";"2019, 2021-2025";"Advanced and Specialized Nursing (Q3); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Nursing" +23383;21100887515;"Journal of Private International Law";journal;"17578418, 17441048";"Taylor and Francis Ltd.";No;No;0,178;Q3;21;22;69;1779;50;68;0,60;80,86;40,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2025";"Law (Q3); Political Science and International Relations (Q3)";"Social Sciences" +23384;19900194804;"Journal of the Statistical and Social Inquiry Society of Ireland";journal;"00814776";"Statistical and Social Inquiry Society of Ireland";No;No;0,178;Q3;9;9;31;385;12;23;0,47;42,78;31,25;0;Ireland;Western Europe;"Statistical and Social Inquiry Society of Ireland";"2009-2011, 2014-2015, 2017-2025";"Sociology and Political Science (Q3); Economics and Econometrics (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Economics, Econometrics and Finance; Social Sciences" +23385;5700164339;"Lua Nova";journal;"01026445";"CEDEC";Yes;Yes;0,178;Q3;19;13;94;696;29;89;0,32;53,54;41,18;0;Brazil;Latin America;"CEDEC";"2006-2025";"Sociology and Political Science (Q3)";"Social Sciences" +23386;19500157417;"Proceedings of the Latvian Academy of Sciences, Section B: Natural, Exact, and Applied Sciences";journal;"2255890X, 1407009X";"Sciendo";Yes;No;0,178;Q3;18;19;176;562;93;176;0,41;29,58;54,22;0;Poland;Eastern Europe;"Sciendo";"2008-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +23387;20961;"Science and Society";journal;"00368237";"SAGE Publications Ltd";No;No;0,178;Q3;33;0;106;0;57;98;0,32;0,00;0,00;0;United States;Northern America;"SAGE Publications Ltd";"1977, 1979, 1981, 1984, 1986, 1990, 1996-2024";"Sociology and Political Science (Q3)";"Social Sciences" +23388;21101023086;"Sport TK";journal;"22544070, 23408812";"Universidad de Murcia";Yes;No;0,178;Q3;12;166;353;5702;228;353;0,52;34,35;38,90;0;Spain;Western Europe;"Universidad de Murcia";"2019-2025";"Occupational Therapy (Q3); Complementary and Manual Therapy (Q4); Education (Q4); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Medicine; Social Sciences" +23389;21101051212;"Tromboz, Gemostaz i Reologiya";journal;"20781008, 26871483";"Hemostasis and Rheology LLC";No;No;0,178;Q3;5;23;114;754;30;114;0,31;32,78;55,67;0;Russian Federation;Eastern Europe;"Hemostasis and Rheology LLC";"2020-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Biochemistry (medical) (Q4); Hematology (Q4); Physiology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +23390;21101185956;"Agrociencia Uruguay";journal;"27305066";"Universidad de la Republica Facultad de Agronomia";Yes;Yes;0,178;Q4;6;75;139;3101;82;129;0,57;41,35;49,75;0;Uruguay;Latin America;"Universidad de la Republica Facultad de Agronomia";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +23391;21101295549;"Asian Journal of Natural Product Biochemistry";journal;"27754189, 27754197";"Smujo International";No;No;0,178;Q4;6;15;33;658;32;33;0,83;43,87;44,68;0;Indonesia;Asiatic Region;"Smujo International";"2021-2025";"Biochemistry (Q4); Cancer Research (Q4); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology" +23392;21100903779;"Bonplandia";journal;"18538460, 05240476";"Instituto de Botanica del Nordeste";Yes;Yes;0,178;Q4;6;19;43;685;20;43;0,52;36,05;47,62;0;Argentina;Latin America;"Instituto de Botanica del Nordeste";"2016, 2019-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +23393;21101149380;"Egyptian Journal of Agronomy";journal;"23570288, 03793575";"National Information and Documentation Centre";No;No;0,178;Q4;6;115;70;5559;114;70;1,67;48,34;33,24;0;Egypt;Africa/Middle East;"National Information and Documentation Centre";"2011-2026";"Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Food Science (Q4); Horticulture (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +23394;21101314502;"Eurasian Journal of Veterinary Sciences";journal;"21461953, 13096958";"Selcuk Universitesi, Veteriner Fakultesi";Yes;No;0,178;Q4;5;28;85;1078;44;84;0,43;38,50;42,68;0;Turkey;Middle East;"Selcuk Universitesi, Veteriner Fakultesi";"2021-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +23395;21101023274;"Finance";journal;"21010145, 07526180";"Presses Universitaires de Grenoble";No;No;0,178;Q4;4;0;20;0;6;19;0,31;0,00;0,00;0;France;Western Europe;"Presses Universitaires de Grenoble";"2019-2024";"Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4); Marketing (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +23396;21101021535;"GI_Forum";journal;"23081708";"Austrian Acedemy of Sciences Press";Yes;No;0,178;Q4;11;0;42;0;31;42;0,92;0,00;0,00;0;Austria;Western Europe;"Austrian Acedemy of Sciences Press";"2018-2024";"Computer Science Applications (Q4); Computers in Earth Sciences (Q4); Education (Q4); Geography, Planning and Development (Q4)";"Computer Science; Earth and Planetary Sciences; Social Sciences" +23397;21100931376;"Gulf and Caribbean Research";journal;"15280470, 25721410";"University of Southern MIssissippi";No;No;0,178;Q4;8;16;45;940;20;43;0,25;58,75;48,33;0;United States;Northern America;"University of Southern MIssissippi";"2019-2026";"Aquatic Science (Q4); Oceanography (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +23398;30028;"Hedongli Gongcheng/Nuclear Power Engineering";journal;"02580926";"Atomic Energy Press";No;No;0,178;Q4;22;278;770;4954;300;770;0,35;17,82;30,88;0;China;Asiatic Region;"Atomic Energy Press";"1993-2026";"Nuclear Energy and Engineering (Q4)";"Energy" +23399;21100220106;"Hidrobiologica";journal;"24487333, 01888897";"Universidad Autonoma Metropolitana";Yes;No;0,178;Q4;23;26;86;1575;50;86;0,53;60,58;36,19;0;Mexico;Latin America;"Universidad Autonoma Metropolitana";"2007-2025";"Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Oceanography (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +23400;21100198214;"International Journal of Applied Management Science";journal;"17558913, 17558921";"Inderscience";No;No;0,178;Q4;19;21;62;1187;47;61;0,93;56,52;48,84;0;Switzerland;Western Europe;"Inderscience";"2008-2026";"Strategy and Management (Q4)";"Business, Management and Accounting" +23401;20400195011;"International Journal of Autonomous and Adaptive Communications Systems";journal;"17548640, 17548632";"Inderscience Enterprises Ltd";No;No;0,178;Q4;16;28;94;960;76;94;0,87;34,29;36,51;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2008-2025";"Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +23402;23267;"International Journal of Environmental Technology and Management";journal;"1741511X, 14662132";"Inderscience Publishers";No;No;0,178;Q4;31;28;107;760;71;107;0,95;27,14;38,60;0;United Kingdom;Western Europe;"Inderscience Publishers";"2001-2025";"Environmental Engineering (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science" +23403;4000149708;"International Journal of Management and Enterprise Development";journal;"17418127, 14684330";"Inderscience Enterprises Ltd";No;No;0,178;Q4;31;22;53;1868;90;53;2,06;84,91;51,02;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2003-2026";"Business and International Management (Q4); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences" +23404;21101301189;"Jordan Journal of Nursing Research";journal;"29573785";"Jordan University of Science and Technology";Yes;No;0,178;Q4;3;37;92;1137;46;76;0,50;30,73;50,00;0;Jordan;Middle East;"Jordan University of Science and Technology";"2022-2025";"Health Policy (Q4); Maternity and Midwifery (Q4); Pediatrics (Q4)";"Medicine; Nursing" +23405;19700166604;"Journal of Applied Horticulture";journal;"09721045";"Society for Advancement of Horticulture";No;No;0,178;Q4;18;63;219;1759;122;219;0,57;27,92;39,15;0;India;Asiatic Region;"Society for Advancement of Horticulture";"2008-2025";"Biotechnology (Q4); Horticulture (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +23406;21100223526;"Journal of Geometry and Symmetry in Physics";journal;"13145673, 13125192";"Bulgarian Academy of Sciences, Institute of Mechanics";No;No;0,178;Q4;17;16;34;309;11;34;0,38;19,31;36,36;0;Bulgaria;Eastern Europe;"Bulgarian Academy of Sciences, Institute of Mechanics";"2004-2025";"Geometry and Topology (Q4); Mathematical Physics (Q4)";"Mathematics" +23407;7100153134;"Journal of Landscape Ecology";journal;"15894673";"Szent Istvan University, Institute of Nature Conservation and Landscape Management";Yes;No;0,178;Q4;12;8;63;447;22;61;0,31;55,88;22,22;0;Hungary;Eastern Europe;"Szent Istvan University, Institute of Nature Conservation and Landscape Management";"2007-2019, 2021-2025";"Nature and Landscape Conservation (Q4)";"Environmental Science" +23408;21101045761;"Journal of Livestock Science and Technologies";journal;"23223553, 2322374X";"Shahid Bahonar University of Kerman and Iranian Society of Animal Science";No;No;0,178;Q4;7;28;51;1217;43;50;0,84;43,46;21,21;0;Iran;Middle East;"Shahid Bahonar University of Kerman and Iranian Society of Animal Science";"2019-2026";"Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +23409;12400154725;"Journal of Magnetics";journal;"12261750";"Seoul National University 501-321";No;No;0,178;Q4;23;106;219;2558;127;219;0,62;24,13;24,24;0;South Korea;Asiatic Region;"Seoul National University 501-321";"2008-2025";"Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +23410;21101021750;"Journal of Siberian Federal University - Biology";journal;"23135530, 19971389";"Siberian Federal University";Yes;Yes;0,178;Q4;6;14;97;580;41;97;0,33;41,43;55,10;0;Russian Federation;Eastern Europe;"Siberian Federal University";"2013, 2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +23411;21100944556;"Journal of the Acoustical Society of Korea";journal;"12254428, 22873775";"Acoustical Society of Korea";No;No;0,178;Q4;7;78;226;1377;64;226;0,30;17,65;28,57;0;South Korea;Asiatic Region;"Acoustical Society of Korea";"2019-2026";"Acoustics and Ultrasonics (Q4); Applied Mathematics (Q4); Instrumentation (Q4); Signal Processing (Q4); Speech and Hearing (Q4)";"Computer Science; Health Professions; Mathematics; Physics and Astronomy" +23412;28334;"Ocean and Polar Research";journal;"1598141X";"Korea Ocean Research and Development Institute";Yes;No;0,178;Q4;18;21;66;1122;34;63;0,32;53,43;28,89;0;South Korea;Asiatic Region;"Korea Ocean Research and Development Institute";"2001-2026";"Aquatic Science (Q4); Fluid Flow and Transfer Processes (Q4); Geology (Q4); Ocean Engineering (Q4)";"Agricultural and Biological Sciences; Chemical Engineering; Earth and Planetary Sciences; Engineering" +23413;21101333519;"Open Journal of Mathematical Sciences";journal;"25230212, 26164906";"Ptolemy Scientific Research Press";No;No;0,178;Q4;3;27;44;633;23;44;0,52;23,44;13,89;0;Pakistan;Asiatic Region;"Ptolemy Scientific Research Press";"2023-2026";"Algebra and Number Theory (Q4); Analysis (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)";"Computer Science; Mathematics" +23414;21100286866;"Physiotherapy Practice and Research";journal;"22130683, 22130691";"SAGE Publications Ltd";No;No;0,178;Q4;12;27;73;819;32;68;0,45;30,33;58,16;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2009-2026";"Occupational Therapy (Q4); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +23415;21100943942;"Phytopathogenic Mollicutes";journal;"22494669, 22494677";"Technology Society of Basic and Applied Sciences";No;No;0,178;Q4;9;99;132;1067;61;124;0,50;10,78;41,79;0;India;Asiatic Region;"Technology Society of Basic and Applied Sciences";"2019-2025";"Cell Biology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4); Parasitology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +23416;21101259022;"Proceeding of the WRC Symposium on Advanced Robotics and Automation, WRC SARA";journal;"28353358, 28353366";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,178;Q4;3;58;80;1175;57;78;0,71;20,26;31,94;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Artificial Intelligence (Q4); Biomedical Engineering (Q4); Computer Science Applications (Q4); Control and Optimization (Q4)";"Computer Science; Engineering; Mathematics" +23417;25769;"Przeglad Geologiczny";journal;"00332151";"Polish Geological Institute";No;No;0,178;Q4;37;128;239;4095;65;231;0,25;31,99;38,13;0;Poland;Eastern Europe;"Polish Geological Institute";"1981-1982, 1985, 1993-2025";"Atmospheric Science (Q4); Geology (Q4)";"Earth and Planetary Sciences" +23418;21100858339;"Pulmonologiya";journal;"25419617, 08690189";"";No;No;0,178;Q4;17;87;269;2430;202;266;0,64;27,93;63,94;0;Russian Federation;Eastern Europe;"";"2015-2025";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +23419;13813;"Ranshao Kexue Yu Jishu/Journal of Combustion Science and Technology";journal;"10068740";"Tianjin University";No;No;0,178;Q4;19;68;242;1726;157;242;0,74;25,38;29,43;0;China;Asiatic Region;"Tianjin University";"1996-2025";"Condensed Matter Physics (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Physics and Astronomy" +23420;21101125516;"Revista Colombiana de Ciencias Horticolas";journal;"24223719, 20112173";"Universidad Pedagogica y Tecnologica de Colombia";No;Yes;0,178;Q4;11;0;123;0;80;115;0,54;0,00;0,00;0;Colombia;Latin America;"Universidad Pedagogica y Tecnologica de Colombia";"2019-2024";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Horticulture (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +23421;21508;"Revue Roumaine de Chimie";journal;"00353930";"Editions de l'Academie Republique Populaire";No;No;0,178;Q4;30;66;185;2504;140;183;0,83;37,94;57,14;0;Romania;Eastern Europe;"Editions de l'Academie Republique Populaire";"1996-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +23422;21100406921;"Statistika";journal;"18048765, 0322788X";"Cesky Statisticky Urad";Yes;Yes;0,178;Q4;10;40;93;1221;56;93;0,67;30,53;43,04;0;Czech Republic;Eastern Europe;"Cesky Statisticky Urad";"2015-2025";"Economics and Econometrics (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Economics, Econometrics and Finance" +23423;21100199716;"Tatra Mountains Mathematical Publications";journal;"12103195";"De Gruyter Open Ltd";No;No;0,178;Q4;16;3;98;82;48;98;0,39;27,33;28,57;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2009-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23424;13077;"Techniques in Orthopaedics";journal;"23330600, 08859698";"Lippincott Williams and Wilkins";No;No;0,178;Q4;28;33;156;374;27;153;0,07;11,33;13,56;0;United States;Northern America;"Lippincott Williams and Wilkins";"1986-2026";"Orthopedics and Sports Medicine (Q4)";"Medicine" +23425;21100448554;"Transactions of the Moscow Mathematical Society";journal;"00771554, 1547738X";"American Mathematical Society";No;No;0,178;Q4;13;0;23;0;6;23;0,11;0,00;0,00;0;United States;Northern America;"American Mathematical Society";"2011-2023";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23426;21101123951;"Urologie";journal;"27317072, 27317064";"Springer Medizin";No;No;0,178;Q4;32;237;627;3638;154;388;0,30;15,35;33,90;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Urology (Q4)";"Medicine" +23427;21100893623;"EURALEX Proceedings";conference and proceedings;"25217100";"European Association for Lexicography";No;No;0,178;-;10;0;142;0;38;138;0,35;0,00;0,00;0;Netherlands;Western Europe;"European Association for Lexicography";"2018, 2020-2022, 2024";"Linguistics and Language";"Social Sciences" +23428;21101107946;"International Conference on Geographical Information Systems Theory, Applications and Management, GISTAM - Proceedings";conference and proceedings;"2184500X";"Science and Technology Publications, Lda";No;No;0,178;-;5;38;75;868;38;71;0,54;22,84;44,92;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Computer Graphics and Computer-Aided Design; Computer Networks and Communications; Computer Science Applications; Computer Vision and Pattern Recognition; Information Systems; Software";"Computer Science" +23429;21100808641;"SESAR Innovation Days";conference and proceedings;"07701268";"SESAR Joint Undertaking";No;No;0,178;-;16;0;98;0;83;96;0,85;0,00;0,00;0;Portugal;Western Europe;"SESAR Joint Undertaking";"2015-2021, 2023-2024";"Aerospace Engineering; Computer Science Applications; Condensed Matter Physics; Control and Systems Engineering; Geography, Planning and Development; Materials Chemistry; Mechanical Engineering; Mechanics of Materials; Transportation";"Computer Science; Engineering; Materials Science; Physics and Astronomy; Social Sciences" +23430;19700168310;"Adaptation";journal;"17550645, 17550637";"Oxford University Press";No;No;0,177;Q1;15;26;86;1358;34;86;0,32;52,23;72,41;0;United Kingdom;Western Europe;"Oxford University Press";"2010-2026";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +23431;13908;"Configurations";journal;"10806520, 10631801";"Johns Hopkins University Press";No;No;0,177;Q1;31;9;58;344;43;55;0,59;38,22;25,00;0;United States;Northern America;"Johns Hopkins University Press";"1993-1994, 1996-2001, 2004-2025";"Literature and Literary Theory (Q1); Philosophy (Q2); Health (social science) (Q4)";"Arts and Humanities; Social Sciences" +23432;21100932722;"Journal of Late Antiquity";journal;"19396716, 19421273";"Johns Hopkins University Press";No;No;0,177;Q1;9;17;54;1114;26;47;0,43;65,53;50,00;0;United States;Northern America;"Johns Hopkins University Press";"2019-2025";"Classics (Q1); History (Q2)";"Arts and Humanities" +23433;16200154798;"Novel";journal;"00295132";"Duke University Press";No;No;0,177;Q1;22;14;85;585;26;84;0,17;41,79;54,55;0;United States;Northern America;"Duke University Press";"2002-2007, 2009-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +23434;5000157105;"DELTA Documentacao de Estudos em Linguistica Teorica e Aplicada";journal;"1678460X, 01024450";"Pontificia Universidade Catolica de Sao Paulo";Yes;Yes;0,177;Q2;17;37;182;1103;39;182;0,20;29,81;67,86;0;Brazil;Latin America;"Pontificia Universidade Catolica de Sao Paulo";"2006-2025";"Linguistics and Language (Q2)";"Social Sciences" +23435;21101087297;"Feminist Encounters";journal;"24684414";"Lectito";Yes;Yes;0,177;Q2;9;29;93;1595;58;84;0,67;55,00;86,84;0;Netherlands;Western Europe;"Lectito";"2019-2026";"Cultural Studies (Q2); Anthropology (Q3); Gender Studies (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23436;5600156595;"Historical Research";journal;"14682281, 09503471";"Wiley-Blackwell Publishing Ltd";No;No;0,177;Q2;31;31;95;3791;41;91;0,29;122,29;37,14;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1923-2026";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23437;21101061828;"International Journal of Critical Indigenous Studies";journal;"18370144";"Queensland University of Technology";Yes;No;0,177;Q2;7;0;9;0;12;9;0,00;0,00;0,00;0;Australia;Pacific Region;"Queensland University of Technology";"2012, 2019-2022";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +23438;21100205762;"Journal of Applied Non-Classical Logics";journal;"19585780, 11663081";"Taylor and Francis Inc.";No;No;0,177;Q2;34;18;53;647;39;51;0,78;35,94;12,12;0;United States;Northern America;"Taylor and Francis Inc.";"1991-2026";"Philosophy (Q2); Logic (Q4)";"Arts and Humanities; Mathematics" +23439;21101289806;"Journal of Management Practices, Humanities and Social Sciences (JMPHSS)";journal;"26046423";"";No;No;0,177;Q2;6;27;147;1163;88;147;0,67;43,07;60,29;0;Pakistan;Asiatic Region;"";"2021-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +23440;19700170141;"Studies in World Christianity";journal;"17500230, 13549901";"Edinburgh University Press";No;No;0,177;Q2;16;13;56;399;15;44;0,32;30,69;11,11;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +23441;21100235607;"Techne: Research in Philosophy and Technology";journal;"26915928";"Philosophy Documentation Center";No;No;0,177;Q2;25;15;47;711;25;47;0,61;47,40;25,00;0;United States;Northern America;"Philosophy Documentation Center";"1996-1999, 2001-2004, 2008-2025";"Philosophy (Q2); History and Philosophy of Science (Q3)";"Arts and Humanities" +23442;21100199540;"AAPP Atti della Accademia Peloritana dei Pericolanti, Classe di Scienze Fisiche, Matematiche e Naturali";journal;"03650359, 18251242";"Accademia Peloritana dei Pericolanti";Yes;Yes;0,177;Q3;18;21;63;994;37;62;0,54;47,33;30,51;0;Italy;Western Europe;"Accademia Peloritana dei Pericolanti";"2004-2025";"History and Philosophy of Science (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Arts and Humanities; Chemistry; Computer Science; Earth and Planetary Sciences; Mathematics; Physics and Astronomy" +23443;21101089401;"Business Management";journal;"25348396, 08616604";"Dimitar A Tsenov Academy of Economics";No;No;0,177;Q3;5;24;68;773;68;66;0,92;32,21;49,21;0;Bulgaria;Eastern Europe;"Dimitar A Tsenov Academy of Economics";"2022-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Accounting (Q4); Business and International Management (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +23444;28431;"Canadian Journal of Regional Science";journal;"19252218, 07054580";"";No;No;0,177;Q3;5;11;49;500;33;44;0,59;45,45;33,33;1;Canada;Northern America;"";"1978, 1983, 1986, 1988, 2021-2025";"Demography (Q3); Social Sciences (miscellaneous) (Q3); Urban Studies (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +23445;13201;"Communication Law and Policy";journal;"15326926, 10811680";"Routledge";No;No;0,177;Q3;15;2;37;145;24;33;0,64;72,50;66,67;0;United States;Northern America;"Routledge";"2005-2025";"Communication (Q3); Law (Q3)";"Social Sciences" +23446;21100924840;"European Data Protection Law Review";journal;"2364284X, 23642831";"Lexxion Verlagsgesellschaft mbH";No;No;0,177;Q3;10;66;176;1732;88;94;0,37;26,24;51,22;0;Germany;Western Europe;"Lexxion Verlagsgesellschaft mbH";"2019-2025";"Law (Q3)";"Social Sciences" +23447;19400157009;"Investigacion Bibliotecologica";journal;"0187358X, 24488321";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,177;Q3;16;39;118;1194;60;118;0,49;30,62;40,00;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2001, 2008-2025";"Library and Information Sciences (Q3)";"Social Sciences" +23448;21101039106;"Journal of Health Administration";journal;"20081200, 20081219";"Iran University of Medical Sciences";Yes;No;0,177;Q3;7;15;95;589;42;93;0,27;39,27;29,82;0;Iran;Middle East;"Iran University of Medical Sciences";"2019-2025";"Emergency Medicine (Q3); Health Informatics (Q4); Health Information Management (Q4); Health Policy (Q4)";"Health Professions; Medicine" +23449;21101274712;"Journal of Health and Nursing Management";journal;"2149018X";"";Yes;Yes;0,177;Q3;5;61;159;2225;71;149;0,35;36,48;76,71;0;Turkey;Middle East;"";"2021-2025";"Advanced and Specialized Nursing (Q3); Issues, Ethics and Legal Aspects (Q4); Leadership and Management (Q4); Nursing (miscellaneous) (Q4)";"Nursing" +23450;21101314095;"Journal of Poultry Sciences and Avian Diseases";journal;"29811368, 2981135X";"KMAN Publication Inc.";No;No;0,177;Q3;4;34;53;1449;39;50;0,74;42,62;22,00;0;Canada;Northern America;"KMAN Publication Inc.";"2023-2026";"Small Animals (Q3); Animal Science and Zoology (Q4); Food Animals (Q4)";"Agricultural and Biological Sciences; Veterinary" +23451;21101206993;"Journal of Zhengzhou University - Natural Science";journal;"16716841";"";No;No;0,177;Q3;10;71;220;1392;130;220;0,60;19,61;41,90;0;China;Asiatic Region;"";"2020-2025";"Multidisciplinary (Q3); Artificial Intelligence (Q4); Computational Theory and Mathematics (Q4); Computer Science Applications (Q4)";"Computer Science; Multidisciplinary" +23452;22251;"Pacific Science";journal;"15346188, 00308870";"University of Hawaii Press";No;No;0,177;Q3;50;35;64;2502;39;64;0,70;71,49;33,88;0;United States;Northern America;"University of Hawaii Press";"1979-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +23453;5600152949;"Revista de Antropologia";journal;"00347701, 16789857";"Universidade de Sao Paulo. Museu de Zoologia";Yes;Yes;0,177;Q3;15;40;131;2034;50;108;0,32;50,85;35,00;0;Brazil;Latin America;"Universidade de Sao Paulo. Museu de Zoologia";"2006-2025";"Anthropology (Q3)";"Social Sciences" +23454;82318;"Revista de Estudios Regionales";journal;"02137585";"Asociacion Universidades Publicas de Andalucia";No;No;0,177;Q3;12;13;62;726;19;62;0,19;55,85;28,57;0;Spain;Western Europe;"Asociacion Universidades Publicas de Andalucia";"1978, 2006, 2012-2025";"Sociology and Political Science (Q3); Development (Q4); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +23455;26962;"Tidsskrift for Samfunnsforskning";journal;"1504291X, 0040716X";"Scandinavian University Press";Yes;Yes;0,177;Q3;12;15;55;712;32;55;0,63;47,47;63,33;0;Norway;Western Europe;"Scandinavian University Press";"1970, 1976, 1980-1982, 1985, 1987, 1998-1999, 2001-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23456;21101173096;"Transactions of the Association of European Schools of Planning";journal;"25662147";"Association of European Schools of Planning";Yes;Yes;0,177;Q3;7;10;19;364;14;16;0,54;36,40;64,29;0;Italy;Western Europe;"Association of European Schools of Planning";"2019-2025";"Urban Studies (Q3); Education (Q4); Geography, Planning and Development (Q4)";"Social Sciences" +23457;21101039659;"Video-Assisted Thoracic Surgery";journal;"25190792";"AME Publishing Company";No;No;0,177;Q3;6;36;108;1300;39;88;0,28;36,11;30,36;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2019-2025";"Surgery (Q3); Computer Science Applications (Q4); Pulmonary and Respiratory Medicine (Q4)";"Computer Science; Medicine" +23458;21100395417;"World Customs Journal";journal;"18346715, 18346707";"International Network of Customs Universities";No;No;0,177;Q3;15;15;57;532;34;50;0,63;35,47;45,45;0;Australia;Pacific Region;"International Network of Customs Universities";"2007-2025";"Economics, Econometrics and Finance (miscellaneous) (Q3); Business and International Management (Q4); Safety Research (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +23459;87723;"Acta Biologica Szegediensis";journal;"15884082, 1588385X";"University of Szeged";No;No;0,177;Q4;35;0;53;0;38;53;0,63;0,00;0,00;0;Hungary;Eastern Europe;"University of Szeged";"1997-2024";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +23460;21100826874;"Advances in Aircraft and Spacecraft Science";journal;"2287528X, 22875271";"Techno-Press";No;No;0,177;Q4;21;20;79;1100;64;79;0,76;55,00;21,82;0;South Korea;Asiatic Region;"Techno-Press";"2014-2025";"Aerospace Engineering (Q4); Fluid Flow and Transfer Processes (Q4)";"Chemical Engineering; Engineering" +23461;11100153303;"American Journal of Disaster Medicine";journal;"1932149X, 23313226";"Weston Medical Publishing";No;No;0,177;Q4;27;0;73;0;39;73;0,30;0,00;0,00;0;United States;Northern America;"Weston Medical Publishing";"2006-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +23462;21100922609;"Arab Journal of Mathematical Sciences";journal;"13195166, 25889214";"Emerald Group Publishing Ltd.";Yes;Yes;0,177;Q4;20;27;55;693;25;55;0,50;25,67;37,04;0;Netherlands;Western Europe;"Emerald Group Publishing Ltd.";"2011-2019, 2021-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23463;21100857445;"Asian Journal of Conservation Biology";journal;"22787666";"TCRP FOUNDATION, India";No;No;0,177;Q4;8;7;64;411;33;62;0,43;58,71;9,09;0;India;Asiatic Region;"TCRP FOUNDATION, India";"2017-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23464;21101294612;"China Rural Water and Hydropower";journal;"10072284";"Editorial Office Of China Rural Water And Hydropower";No;No;0,177;Q4;10;375;1307;8464;584;1307;0,43;22,57;32,82;0;China;Asiatic Region;"Editorial Office Of China Rural Water And Hydropower";"2021-2026";"Earth and Planetary Sciences (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Water Science and Technology (Q4)";"Earth and Planetary Sciences; Engineering; Environmental Science" +23465;20011;"Chinese Journal of Neurology";journal;"10067876";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,177;Q4;23;163;585;5755;357;583;0,59;35,31;49,15;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1959, 1997-2026";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +23466;16662;"Energia Elettrica";journal;"00137308";"Associazione Elettrotecnica ed Elettronica Italiana";No;No;0,177;Q4;7;31;72;375;5;48;0,11;12,10;27,50;0;Italy;Western Europe;"Associazione Elettrotecnica ed Elettronica Italiana";"1969-1990, 1993-2025";"Civil and Structural Engineering (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4)";"Energy; Engineering" +23467;21101131057;"European Journal of Geriatrics and Gerontology";journal;"26872625";"Galenos Publishing House";No;No;0,177;Q4;7;20;109;585;67;107;0,71;29,25;60,27;0;Turkey;Middle East;"Galenos Publishing House";"2019-2025";"Geriatrics and Gerontology (Q4)";"Medicine" +23468;4000151707;"Europhysics News";journal;"05317479, 14321092";"EDP Sciences";Yes;No;0,177;Q4;19;50;107;274;43;94;0,38;5,48;25,64;0;France;Western Europe;"EDP Sciences";"2006-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +23469;21101072518;"Fyodorov Journal of Ophthalmic Surgery";journal;"02354160, 23124970";"Ophthalmology Publishing house";Yes;Yes;0,177;Q4;5;58;178;1560;64;178;0,37;26,90;52,81;0;Russian Federation;Eastern Europe;"Ophthalmology Publishing house";"2019-2025";"Ophthalmology (Q4)";"Medicine" +23470;19700170050;"Halduskultuur";journal;"17366089, 17366070";"Halduskultuur Tallinn University of Technology";Yes;No;0,177;Q4;17;17;7;597;9;7;1,29;35,12;28,00;0;Estonia;Eastern Europe;"Halduskultuur Tallinn University of Technology";"2009-2021, 2023-2025";"Public Administration (Q4)";"Social Sciences" +23471;3300147412;"IEEJ Transactions on Electronics, Information and Systems";journal;"03854221, 13488155";"Institute of Electrical Engineers of Japan";No;No;0,177;Q4;20;152;555;2648;106;546;0,19;17,42;12,30;0;Japan;Asiatic Region;"Institute of Electrical Engineers of Japan";"1972-1986, 2003-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +23472;3300147414;"IEEJ Transactions on Sensors and Micromachines";journal;"13475525, 13418939";"The Institute of Electrical Engineers of Japan";No;No;0,177;Q4;17;52;216;707;55;193;0,31;13,60;16,78;0;Japan;Asiatic Region;"The Institute of Electrical Engineers of Japan";"1992, 1995-2001, 2003-2026";"Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +23473;13500154704;"Ikonomicheski Izsledvania";journal;"02053292";"Bulgarska Akademiya na Naukite";No;No;0,177;Q4;14;82;247;4007;185;244;0,73;48,87;45,73;0;Bulgaria;Eastern Europe;"Bulgarska Akademiya na Naukite";"2008-2026";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +23474;21100203118;"Indian Journal of Community Health";journal;"22489509, 09717587";"Indian Association of Preventive and Social Medicine Uttar Pradesh and Uttarakhand (IAPSMUPUK) State Chapter";Yes;No;0,177;Q4;17;145;359;2726;141;317;0,36;18,80;47,87;0;India;Asiatic Region;"Indian Association of Preventive and Social Medicine Uttar Pradesh and Uttarakhand (IAPSMUPUK) State Chapter";"2001, 2012-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +23475;21100847442;"Indonesian Journal on Geoscience";journal;"23559306, 23559314";"Geological Agency";Yes;Yes;0,177;Q4;13;32;89;1193;54;89;0,67;37,28;27,17;0;Indonesia;Asiatic Region;"Geological Agency";"2014-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +23476;26102;"Informacije MIDEM";journal;"22326979, 03529045";"Society for Microelectronics, Electric Components and Materials";Yes;No;0,177;Q4;22;21;63;614;53;63;0,66;29,24;30,19;0;Slovenia;Eastern Europe;"Society for Microelectronics, Electric Components and Materials";"1996-2026";"Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science" +23477;21100396307;"International Journal of Education Economics and Development";journal;"17595673, 17595681";"Inderscience";No;No;0,177;Q4;11;32;79;1201;59;79;0,86;37,53;53,61;0;Switzerland;Western Europe;"Inderscience";"2011, 2014-2026";"Education (Q4)";"Social Sciences" +23478;17800156732;"International Journal of Materials Engineering Innovation";journal;"17572762, 17572754";"Inderscience Enterprises Ltd";No;No;0,177;Q4;18;24;62;643;50;61;0,73;26,79;20,37;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2009-2026";"Materials Science (miscellaneous) (Q4)";"Materials Science" +23479;25314;"Journal of Drug Education";journal;"15414159, 00472379";"SAGE Publications Inc.";No;No;0,177;Q4;45;10;19;562;14;19;0,50;56,20;56,10;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1972-2018, 2020-2026";"Health (social science) (Q4); Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +23480;21101189822;"Journal of Engineering Research";journal;"17266742, 17266009";"Sultan Qaboos University";Yes;Yes;0,177;Q4;15;0;50;0;45;49;0,85;0,00;0,00;0;Oman;Middle East;"Sultan Qaboos University";"2009-2024";"Engineering (miscellaneous) (Q4)";"Engineering" +23481;21100900144;"Journal of Graphic Engineering and Design";journal;"2217379X, 22179860";"University of Novi Sad - Faculty of Technical Sciences, Department of Graphic Engineering and Design";Yes;Yes;0,177;Q4;9;14;48;485;37;48;0,79;34,64;33,33;0;Serbia;Eastern Europe;"University of Novi Sad - Faculty of Technical Sciences, Department of Graphic Engineering and Design";"2018-2025";"Computational Mechanics (Q4); Computer Graphics and Computer-Aided Design (Q4)";"Computer Science; Engineering" +23482;21101151419;"Journal of Korea Water Resources Association";journal;"27998746, 27998754";"Korea Water Resources Association";No;No;0,177;Q4;9;126;297;3371;128;294;0,49;26,75;29,00;0;South Korea;Asiatic Region;"Korea Water Resources Association";"2019-2025";"Civil and Structural Engineering (Q4); Ecological Modeling (Q4); Environmental Science (miscellaneous) (Q4)";"Engineering; Environmental Science" +23483;145354;"Journal of Plant Resources and Environment";journal;"16747895, 10040978";"Editorial Office, Journal of Plant Resources and Environment";No;No;0,177;Q4;11;82;234;3197;141;232;0,64;38,99;42,32;0;China;Asiatic Region;"Editorial Office, Journal of Plant Resources and Environment";"2005-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Physiology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +23484;21101195679;"Journal of the Iranian Mathematical Society";journal;"27171612";"Iranian Mathematical Society";No;No;0,177;Q4;4;5;39;106;19;39;0,52;21,20;18,18;0;Iran;Middle East;"Iranian Mathematical Society";"2020-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23485;5700165147;"Journal of Veterinary Clinics";journal;"1598298X, 23840749";"Korean Society of Veterinary Clinics";Yes;No;0,177;Q4;9;61;195;1300;67;195;0,31;21,31;40,54;0;South Korea;Asiatic Region;"Korean Society of Veterinary Clinics";"2007-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +23486;19900192559;"Korean Journal of Veterinary Research";journal;"24661392, 24661384";"Korean Society of Veterinary Science";No;No;0,177;Q4;11;25;108;697;48;108;0,35;27,88;41,46;0;South Korea;Asiatic Region;"Korean Society of Veterinary Science";"2011-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +23487;21101358090;"Latin American Journal of Mathematics";journal;"29650798";"Universidade Federal de Sao Carlos";No;No;0,177;Q4;1;5;15;103;3;15;0,27;20,60;14,29;0;Brazil;Latin America;"Universidade Federal de Sao Carlos";"2022-2026";"Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics" +23488;21101063718;"Medical Journal of Peking Union Medical College Hospital";journal;"16749081";"Chinese Academy of Medical Sciences";Yes;No;0,177;Q4;12;199;541;7476;343;532;0,65;37,57;47,20;0;China;Asiatic Region;"Chinese Academy of Medical Sciences";"2019-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +23489;21100904984;"Medicina Clinica Practica";journal;"26039249";"Elsevier Espana S.L.U";Yes;No;0,177;Q4;12;50;169;404;111;167;0,86;8,08;42,68;0;Spain;Western Europe;"Elsevier Espana S.L.U";"2018-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +23490;21100928238;"Oncology in Clinical Practice";journal;"24501654, 24506478";"Via Medica";Yes;Yes;0,177;Q4;9;53;159;2505;75;148;0,40;47,26;44,93;0;Poland;Eastern Europe;"Via Medica";"2019-2025";"Oncology (Q4)";"Medicine" +23491;21065;"Pan-Pacific Entomologist";journal;"00310603";"Pacific Coast Entomological Society";No;No;0,177;Q4;24;18;97;479;26;91;0,33;26,61;30,00;0;United States;Northern America;"Pacific Coast Entomological Society";"1973, 1993-2025";"Insect Science (Q4)";"Agricultural and Biological Sciences" +23492;21101141646;"Public Health and Life Environment";journal;"26190788, 22195238";"Federal Center for Hygiene and Epidemiology";No;No;0,177;Q4;8;86;343;2556;147;336;0,43;29,72;68,51;0;Russian Federation;Eastern Europe;"Federal Center for Hygiene and Epidemiology";"2019-2025";"Epidemiology (Q4); Health Informatics (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +23493;21101034436;"Revista Brasileira de Cartografia";journal;"05604613, 18080936";"Sociedade Brasileira de Cartografia, Geodesia, Fotogrametria e Sensoriamento Remoto";Yes;Yes;0,177;Q4;8;26;95;969;42;95;0,38;37,27;26,98;0;Brazil;Latin America;"Sociedade Brasileira de Cartografia, Geodesia, Fotogrametria e Sensoriamento Remoto";"2019-2026";"Computers in Earth Sciences (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +23494;29834;"Semiconductors";journal;"10637826, 10906479";"Pleiades Publishing";No;No;0,177;Q4;50;142;339;5219;279;339;0,94;36,75;31,89;0;United States;Northern America;"Pleiades Publishing";"1996-2026";"Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Materials Science; Physics and Astronomy" +23495;21100827888;"Studia Paedagogica";journal;"18037437, 23364521";"Masaryk University";Yes;Yes;0,177;Q4;10;15;61;1024;30;57;0,47;68,27;65,85;0;Czech Republic;Eastern Europe;"Masaryk University";"2017-2025";"Education (Q4)";"Social Sciences" +23496;21101021144;"Visions for Sustainability";journal;"23848677";"University of Torino";No;No;0,177;Q4;10;29;98;1952;86;90;0,90;67,31;44,64;0;Italy;Western Europe;"University of Torino";"2019-2025";"Education (Q4); Environmental Science (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Environmental Science; Social Sciences" +23497;19579;"Wiener Tierarztliche Monatsschrift";journal;"0043535X";"Osterreichische Gesellschaft der Tierarztinnen und Tierarzte";No;No;0,177;Q4;21;7;38;238;18;38;0,64;34,00;54,55;0;Austria;Western Europe;"Osterreichische Gesellschaft der Tierarztinnen und Tierarzte";"1947-1949, 1961-1962, 1965-1978, 1996-2026";"Veterinary (miscellaneous) (Q4)";"Veterinary" +23498;21100283376;"International Conference of Young Specialists on Micro/Nanotechnologies and Electron Devices, EDM";conference and proceedings;"2325419X, 23254173";"IEEE Computer Society";No;No;0,177;-;19;247;631;4148;367;628;0,66;16,79;27,14;0;United States;Northern America;"IEEE Computer Society";"2013-2025";"Atomic and Molecular Physics, and Optics; Electrical and Electronic Engineering";"Engineering; Physics and Astronomy" +23499;21100901570;"Proceedings of International Conference on Applied Innovation in IT";conference and proceedings;"21998876";"Anhalt University of Applied Sciences";Yes;No;0,177;-;8;253;153;6435;94;148;0,67;25,43;41,77;0;Germany;Western Europe;"Anhalt University of Applied Sciences";"2018-2025";"Computer Science Applications; Engineering (miscellaneous); Information Systems; Information Systems and Management";"Computer Science; Decision Sciences; Engineering" +23500;21101076300;"Art-Sanat Dergisi";journal;"21483582";"Istanbul University Press";Yes;Yes;0,176;Q1;5;33;127;2034;28;127;0,21;61,64;48,98;0;Turkey;Middle East;"Istanbul University Press";"2019-2025";"Visual Arts and Performing Arts (Q1); Archeology (arts and humanities) (Q2); Arts and Humanities (miscellaneous) (Q2); Conservation (Q2); History (Q2)";"Arts and Humanities" +23501;21101048550;"Ikenga";journal;"20064241, 27144321";"University of Nigeria, Institute of African Studies";No;No;0,176;Q1;5;42;106;1783;43;105;0,42;42,45;31,25;0;Nigeria;Africa;"University of Nigeria, Institute of African Studies";"2019-2025";"Literature and Literary Theory (Q1); Archeology (arts and humanities) (Q2); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); History (Q2); Religious Studies (Q2); Gender Studies (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +23502;21100258804;"International Journal of Visual Design";journal;"2325159X, 23251581";"Common Ground Research Networks";No;No;0,176;Q1;7;11;29;401;13;29;0,50;36,45;28,57;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Visual Arts and Performing Arts (Q1); Architecture (Q3)";"Arts and Humanities; Engineering" +23503;16000154747;"Milton Quarterly";journal;"1094348X, 00264326";"Wiley-Blackwell";No;No;0,176;Q1;15;12;23;454;5;19;0,05;37,83;30,77;0;United States;Northern America;"Wiley-Blackwell";"1967-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +23504;16200154720;"Ramus";journal;"0048671X";"Cambridge University Press";No;No;0,176;Q1;15;0;36;0;5;31;0,08;0,00;0,00;0;Australia;Pacific Region;"Cambridge University Press";"1993, 2002-2023";"Classics (Q1); Literature and Literary Theory (Q1)";"Arts and Humanities" +23505;21101060903;"Symmetry: Culture and Science";journal;"08654824, 22261877";"Symmetrion";No;No;0,176;Q1;4;27;121;748;11;102;0,09;27,70;40,48;0;Hungary;Eastern Europe;"Symmetrion";"2019, 2021-2025";"Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2); Architecture (Q3); Applied Mathematics (Q4); Engineering (miscellaneous) (Q4); Modeling and Simulation (Q4)";"Arts and Humanities; Engineering; Mathematics" +23506;5700160314;"Historia Contemporanea";journal;"23400277, 11302402";"UPV/EHU Press";Yes;Yes;0,176;Q2;12;30;96;1749;38;90;0,52;58,30;25,81;0;Spain;Western Europe;"UPV/EHU Press";"2002, 2011-2026";"History (Q2)";"Arts and Humanities" +23507;19700200986;"International Review of Pragmatics";journal;"18773109, 18773095";"Brill Academic Publishers";No;No;0,176;Q2;16;16;40;681;22;37;0,54;42,56;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009, 2013-2026";"Linguistics and Language (Q2); Communication (Q3); Psychology (miscellaneous) (Q4)";"Psychology; Social Sciences" +23508;50047;"Journal of Southeast Asian Studies";journal;"14740680, 00224634";"Cambridge University Press";No;No;0,176;Q2;41;5;92;548;45;82;0,56;109,60;20,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1970-2025";"History (Q2); Sociology and Political Science (Q3); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +23509;5800207574;"Lebende Sprachen";journal;"18680267, 00239909";"Walter de Gruyter GmbH";No;No;0,176;Q2;11;27;48;1261;25;48;0,53;46,70;64,52;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1956-1976, 1978-2026";"Linguistics and Language (Q2)";"Social Sciences" +23510;26077;"Philosophical Forum";journal;"0031806X, 14679191";"John Wiley and Sons Inc";No;No;0,176;Q2;22;13;63;435;31;62;0,64;33,46;31,58;0;United States;Northern America;"John Wiley and Sons Inc";"1973, 1988, 1996-2025";"Philosophy (Q2)";"Arts and Humanities" +23511;21100937444;"Platonic Investigations";journal;"24103047, 26190745";"Plato Philosophical Society";No;No;0,176;Q2;4;28;94;674;19;93;0,23;24,07;37,04;0;Russian Federation;Eastern Europe;"Plato Philosophical Society";"2019-2025";"Philosophy (Q2)";"Arts and Humanities" +23512;19900192007;"Prispevki za Novejso Zgodovino";journal;"03530329, 24637807";"Institute of Contemporary History";No;No;0,176;Q2;7;31;137;716;17;132;0,14;23,10;62,96;0;Slovenia;Eastern Europe;"Institute of Contemporary History";"2002, 2010-2025";"History (Q2)";"Arts and Humanities" +23513;6500153155;"Public Archaeology";journal;"14655187, 17535530";"Maney Publishing";No;No;0,176;Q2;20;4;32;285;16;28;0,41;71,25;42,86;0;United Kingdom;Western Europe;"Maney Publishing";"2004, 2011-2026";"Archeology (arts and humanities) (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +23514;19700169301;"Revista de Economia Mundial";journal;"23404264, 15760162";"Universidad de Huelva";Yes;Yes;0,176;Q2;17;29;90;1428;46;75;0,57;49,24;43,86;0;Spain;Western Europe;"Universidad de Huelva";"2003-2025";"History (Q2); Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3); Economics and Econometrics (Q4); Geography, Planning and Development (Q4); Transportation (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +23515;21101163031;"Studia Religiosa Rossica";journal;"26584158";"Russian State University for the Humanities";No;No;0,176;Q2;2;30;100;722;10;96;0,13;24,07;37,84;0;Russian Federation;Eastern Europe;"Russian State University for the Humanities";"2019-2025";"Religious Studies (Q2)";"Arts and Humanities" +23516;21100943503;"Sustainable Mediterranean Construction";journal;"24208213, 23851546";"Luciano Editore";Yes;No;0,176;Q2;5;25;104;535;26;97;0,29;21,40;42,00;0;Italy;Western Europe;"Luciano Editore";"2000, 2019-2025";"Conservation (Q2); Architecture (Q3); Urban Studies (Q3); Building and Construction (Q4); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4)";"Arts and Humanities; Engineering; Environmental Science; Social Sciences" +23517;21101104841;"Topos";journal;"18150047, 2538886X";"European Humanities University";Yes;Yes;0,176;Q2;4;27;60;903;30;57;0,29;33,44;39,39;0;Lithuania;Eastern Europe;"European Humanities University";"2019-2025";"Cultural Studies (Q2); Philosophy (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23518;5700191221;"WIT Transactions on the Built Environment";book series;"17464498, 17433509";"WITPress";No;No;0,176;Q2;32;4;121;61;81;113;0,00;15,25;36,36;0;United Kingdom;Western Europe;"WITPress";"1996, 2001-2022, 2025";"Arts and Humanities (miscellaneous) (Q2); Architecture (Q3); Automotive Engineering (Q4); Building and Construction (Q4); Civil and Structural Engineering (Q4); Computer Science Applications (Q4); Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4); Transportation (Q4)";"Arts and Humanities; Computer Science; Engineering; Social Sciences" +23519;21101018866;"Zbornik Slovenskeho Narodneho Muzea Archeologia";journal;"13366637";"Slovak National Museum";No;No;0,176;Q2;6;0;54;0;11;54;0,24;0,00;0,00;0;Slovakia;Eastern Europe;"Slovak National Museum";"2019-2024";"Archeology (arts and humanities) (Q2); History (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +23520;13024;"Acta Cybernetica";journal;"0324721X";"University of Szeged, Institute of Informatics";Yes;No;0,176;Q3;20;16;52;271;30;49;0,64;16,94;30,00;0;Hungary;Eastern Europe;"University of Szeged, Institute of Informatics";"1990-2025";"Information Systems and Management (Q3); Computational Theory and Mathematics (Q4); Computer Science (miscellaneous) (Q4); Computer Vision and Pattern Recognition (Q4); Electrical and Electronic Engineering (Q4); Management Science and Operations Research (Q4); Software (Q4); Theoretical Computer Science (Q4)";"Computer Science; Decision Sciences; Engineering; Mathematics" +23521;5700153945;"Alternative Law Journal";journal;"1037969X, 23989084";"SAGE Publications Inc.";No;No;0,176;Q3;18;60;172;1460;112;132;0,64;24,33;70,49;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2002-2026";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23522;19459;"Ankara Universitesi Eczacilik Fakultesi Dergisi";journal;"10153918, 25646524";"University of Ankara";Yes;No;0,176;Q3;17;75;303;3653;214;303;0,78;48,71;66,52;0;Turkey;Middle East;"University of Ankara";"1997-2010, 2014, 2016-2026";"Pharmaceutical Science (Q3); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +23523;21100927903;"Atelie Geografico";journal;"19821956";"Universidade Federal De Goias (UFG)";Yes;Yes;0,176;Q3;4;39;130;1462;35;129;0,30;37,49;35,94;0;Brazil;Latin America;"Universidade Federal De Goias (UFG)";"2019-2025";"Urban Studies (Q3); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Environmental Science; Social Sciences" +23524;21101180078;"Baltic Yearbook of International Law";book series;"15696456";"Brill Nijhoff";No;No;0,176;Q3;7;0;37;0;19;19;0,58;0,00;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"2002-2006, 2008, 2010-2011, 2013-2016, 2018-2024";"Law (Q3)";"Social Sciences" +23525;23496;"Copenhagen Journal of Asian Studies";journal;"13954199";"Copenhagen Business School";Yes;Yes;0,176;Q3;19;0;25;0;15;22;0,24;0,00;0,00;0;Denmark;Western Europe;"Copenhagen Business School";"1995-1998, 2000-2007, 2009-2018, 2020-2024";"Political Science and International Relations (Q3); Development (Q4); Geography, Planning and Development (Q4)";"Social Sciences" +23526;21100823440;"Corvinus Journal of Sociology and Social Policy";journal;"2062087X, 20615558";"Corvinus University of Budapest";Yes;Yes;0,176;Q3;10;6;65;269;31;61;0,42;44,83;58,33;0;Hungary;Eastern Europe;"Corvinus University of Budapest";"2016-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +23527;33459;"Desarrollo y Sociedad";journal;"01203584, 19007760";"Universidad de los Andes, Colombia";Yes;Yes;0,176;Q3;11;17;58;678;19;51;0,31;39,88;30,30;0;Colombia;Latin America;"Universidad de los Andes, Colombia";"1979-1985, 1994, 2010-2025";"Political Science and International Relations (Q3); Sociology and Political Science (Q3); Development (Q4); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +23528;21101102055;"International Journal of Sport and Society";journal;"21527865, 21527857";"Common Ground Research Networks";No;No;0,176;Q3;5;23;73;1448;53;73;0,86;62,96;52,94;0;United States;Northern America;"Common Ground Research Networks";"2019-2025";"Health Professions (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Education (Q4); Medicine (miscellaneous) (Q4); Psychology (miscellaneous) (Q4); Urology (Q4)";"Health Professions; Medicine; Psychology; Social Sciences" +23529;6200180167;"International Journal of Technology Intelligence and Planning";journal;"17402832, 17402840";"Inderscience Enterprises Ltd";No;No;0,176;Q3;20;5;15;363;18;15;0,36;72,60;83,33;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2022, 2024-2025";"Information Systems and Management (Q3); Management Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Decision Sciences" +23530;21100235629;"Journal of Clinical Urology";journal;"20514158, 20514166";"SAGE Publications Ltd";No;No;0,176;Q3;19;93;322;1788;107;287;0,39;19,23;27,25;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"Surgery (Q3); Urology (Q4)";"Medicine" +23531;21101176017;"Journal of Visualized Surgery";journal;"22212965";"AME Publishing Company";No;No;0,176;Q3;5;30;121;627;48;108;0,40;20,90;26,97;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2018, 2021-2025";"Communication (Q3); Surgery (Q3); Education (Q4)";"Medicine; Social Sciences" +23532;4400151416;"Muslim World Journal of Human Rights";journal;"15544419, 21946558";"Walter de Gruyter GmbH";No;No;0,176;Q3;15;7;11;555;10;11;1,00;79,29;55,56;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2006-2007, 2009-2025";"Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23533;19192;"Natural Resources Journal";journal;"00280739";"University of New Mexico";Yes;No;0,176;Q3;33;12;36;712;27;25;0,76;59,33;46,67;0;United States;Northern America;"University of New Mexico";"1977-2025";"Law (Q3); Environmental Science (miscellaneous) (Q4)";"Environmental Science; Social Sciences" +23534;21101258747;"Proceedings - Swiss Conference on Data Science, SDS";journal;"28353412, 28353420";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,176;Q3;3;30;44;796;37;42;0,84;26,53;32,08;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Information Systems and Management (Q3); Artificial Intelligence (Q4); Information Systems (Q4)";"Computer Science; Decision Sciences" +23535;16843;"Rassegna Italiana di Sociologia";journal;"26121433, 04860349";"Societa Editrice Il Mulino";No;No;0,176;Q3;17;24;152;1541;62;143;0,46;64,21;70,59;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1979, 1997-2025";"Sociology and Political Science (Q3)";"Social Sciences" +23536;21101304611;"Review of Agrarian Studies";journal;"22489002, 22494405";"Tulika Books";No;No;0,176;Q3;11;15;44;249;24;21;0,33;16,60;33,33;0;India;Asiatic Region;"Tulika Books";"2018-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23537;19700177314;"Revista de Cercetare si Interventie Sociala";journal;"15833410, 15845397";"Expert Projects";Yes;No;0,176;Q3;19;43;145;1504;91;145;0,54;34,98;48,00;0;Romania;Eastern Europe;"Expert Projects";"2008-2025";"Sociology and Political Science (Q3); Health (social science) (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +23538;21100440513;"Urbanities";journal;"22395725";"Il Denaro Group";Yes;No;0,176;Q3;7;13;61;456;11;61;0,13;35,08;63,64;0;Italy;Western Europe;"Il Denaro Group";"2015-2025";"Anthropology (Q3); Urban Studies (Q3)";"Social Sciences" +23539;7200153128;"Zeitschrift fur Evaluation";journal;"16195515";"Waxmann Verlag GmbH";No;No;0,176;Q3;8;33;68;677;17;39;0,33;20,52;45,71;0;Germany;Western Europe;"Waxmann Verlag GmbH";"2006-2013, 2015-2025";"Communication (Q3); Social Sciences (miscellaneous) (Q3); Applied Psychology (Q4); Education (Q4); Statistics and Probability (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Mathematics; Psychology; Social Sciences" +23540;22180;"ACS Symposium Series";book series;"19475918, 00976156";"American Chemical Society";No;No;0,176;Q4;78;245;1131;19155;1524;3;1,51;78,18;49,15;0;United States;Northern America;"American Chemical Society";"1974-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +23541;19700182219;"Brazilian Journal of Veterinary Research and Animal Science";journal;"16784456, 14139596";"Universidade de Sao Paulo. Faculdade de Medicina Veterinaria e Zootecnia";Yes;No;0,176;Q4;22;4;97;143;51;96;0,44;35,75;56,00;0;Brazil;Latin America;"Universidade de Sao Paulo. Faculdade de Medicina Veterinaria e Zootecnia";"2006-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +23542;21101039800;"Chinese Journal of Clinical Infectious Diseases";journal;"16742397";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,176;Q4;12;48;176;2059;117;176;0,66;42,90;48,02;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2025";"Immunology (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4)";"Immunology and Microbiology; Medicine" +23543;21100216546;"Egyptian Journal of Histology";journal;"11100559, 20902417";"Egyptian Society of Histology and Cytology";Yes;No;0,176;Q4;14;92;343;4779;202;343;0,49;51,95;79,31;0;Egypt;Africa/Middle East;"Egyptian Society of Histology and Cytology";"2012-2026";"Histology (Q4)";"Medicine" +23544;21101124076;"European Project Management Journal";journal;"25604961";"IPMA Serbia";Yes;Yes;0,176;Q4;7;12;35;568;27;35;0,88;47,33;52,38;0;Serbia;Eastern Europe;"IPMA Serbia";"2019-2025";"Business, Management and Accounting (miscellaneous) (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +23545;21100255501;"International Journal of Educational Organization and Leadership";journal;"23291656, 23291591";"Common Ground Research Networks";No;No;0,176;Q4;9;16;37;1009;28;37;0,77;63,06;34,48;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Education (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +23546;19900193914;"International Journal of Self-Propagating High-Temperature Synthesis";journal;"10613862, 1934788X";"Pleiades Publishing";No;No;0,176;Q4;24;44;129;1181;74;126;0,66;26,84;39,80;0;United States;Northern America;"Pleiades Publishing";"2007, 2009, 2011-2025";"Materials Science (miscellaneous) (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering; Materials Science" +23547;21100979309;"Izvestiya of Saratov University. Physics";journal;"2542193X, 18173020";"Saratov State University";Yes;Yes;0,176;Q4;7;38;100;1012;30;100;0,24;26,63;34,58;0;Russian Federation;Eastern Europe;"Saratov State University";"2005-2017, 2019-2025";"Biophysics (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science; Physics and Astronomy" +23548;21100259128;"Journal of Advances in Information Fusion";journal;"15576418";"International Society of Information Fusion";No;No;0,176;Q4;18;5;25;154;14;24;0,59;30,80;16,67;0;United States;Northern America;"International Society of Information Fusion";"2013-2025";"Computer Vision and Pattern Recognition (Q4); Information Systems (Q4); Signal Processing (Q4)";"Computer Science" +23549;21100944647;"Journal of Cellular and Molecular Anesthesia";journal;"24765120, 25382462";"Brieflands";Yes;No;0,176;Q4;13;32;117;832;53;100;0,59;26,00;36,89;0;Netherlands;Western Europe;"Brieflands";"2016-2026";"Anesthesiology and Pain Medicine (Q4); Pharmacology (medical) (Q4)";"Medicine" +23550;21101097252;"Journal of Critical Infrastructure Policy";journal;"26933101";"John Wiley and Sons Inc";Yes;Yes;0,176;Q4;6;12;47;311;21;36;0,39;25,92;33,33;0;United States;Northern America;"John Wiley and Sons Inc";"2020-2026";"Energy (miscellaneous) (Q4); Safety Research (Q4)";"Energy; Social Sciences" +23551;12100154936;"Journal of Integrated Circuits and Systems";journal;"18071953, 18720234";"Brazilian Microelectronics Society";Yes;No;0,176;Q4;14;38;143;995;133;141;0,90;26,18;20,18;0;Brazil;Latin America;"Brazilian Microelectronics Society";"2007-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +23552;21101045007;"Journal of Modern Rehabilitation";journal;"25383868, 2538385X";"Tehran University of Medical Sciences";Yes;No;0,176;Q4;9;41;148;1669;72;146;0,46;40,71;44,72;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +23553;21101170029;"Journal of Sensor Science and Technology";journal;"20937563, 12255475";"Korean Sensors Society";No;No;0,176;Q4;9;84;218;3241;168;216;0,84;38,58;21,83;0;South Korea;Asiatic Region;"Korean Sensors Society";"2019-2026";"Chemical Engineering (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Engineering; Materials Science" +23554;21101274834;"Journal of the Marine Biological Association of India";journal;"00253146, 23217898";"Marine Biological Association of India";No;No;0,176;Q4;5;35;115;1289;52;115;0,41;36,83;34,38;0;India;Asiatic Region;"Marine Biological Association of India";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Aquatic Science (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23555;7700153223;"Kyungpook Mathematical Journal";journal;"12256951, 04548124";"Kyungmoon Publishing";Yes;No;0,176;Q4;26;46;144;840;52;144;0,26;18,26;25,84;0;South Korea;Asiatic Region;"Kyungmoon Publishing";"2007-2025";"Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics" +23556;21100784271;"Majlesi Journal of Electrical Engineering";journal;"2345377X, 23453796";"Islamic Azad University";Yes;Yes;0,176;Q4;16;56;155;2387;141;155;1,06;42,63;26,75;0;Iran;Middle East;"Islamic Azad University";"2015-2025";"Electrical and Electronic Engineering (Q4); Instrumentation (Q4)";"Engineering; Physics and Astronomy" +23557;21100852711;"Minerals, Metals and Materials Series";book series;"23671696, 23671181";"Springer International Publishing AG";No;No;0,176;Q4;24;582;2133;9696;935;1941;0,49;16,66;24,88;0;Switzerland;Western Europe;"Springer International Publishing AG";"2016-2026";"Electronic, Optical and Magnetic Materials (Q4); Energy Engineering and Power Technology (Q4); Materials Chemistry (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Energy; Engineering; Materials Science" +23558;21100200413;"Revista de Investigaciones Veterinarias del Peru";journal;"16099117, 16823419";"Universidad Nacional Mayor de San Marcos";Yes;Yes;0,176;Q4;17;117;423;4117;187;423;0,40;35,19;36,19;0;Peru;Latin America;"Universidad Nacional Mayor de San Marcos";"1999-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +23559;19700175734;"Revista Internacional de Metodos Numericos para Calculo y Diseno en Ingenieria";journal;"02131315, 1886158X";"Scipedia S.L.";Yes;No;0,176;Q4;13;89;140;3444;127;140;0,90;38,70;30,00;0;Spain;Western Europe;"Scipedia S.L.";"1987, 2009-2026";"Applied Mathematics (Q4); Engineering (miscellaneous) (Q4)";"Engineering; Mathematics" +23560;21101032776;"Rural Sustainability Research";journal;"22560939";"Sciendo";Yes;No;0,176;Q4;10;10;59;364;72;59;1,58;36,40;59,38;0;Germany;Western Europe;"Sciendo";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Ecology (Q4); Geography, Planning and Development (Q4); Global and Planetary Change (Q4)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +23561;12400154718;"Shuidonglixue Yanjiu yu Jinzhan/Chinese Journal of Hydrodynamics Ser. A";journal;"10004874";"";No;No;0,176;Q4;20;92;231;2274;119;231;0,44;24,72;29,57;0;China;Asiatic Region;"";"2008-2025";"Applied Mathematics (Q4); Computational Mechanics (Q4); Fluid Flow and Transfer Processes (Q4)";"Chemical Engineering; Engineering; Mathematics" +23562;21100967042;"Uludag Aricilik Dergisi";journal;"13030248, 26875594";"Bursa Uludag University";Yes;No;0,176;Q4;10;14;74;775;49;73;0,67;55,36;39,53;0;Turkey;Middle East;"Bursa Uludag University";"2019-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Food Science (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +23563;21101107937;"International Conference on Vehicle Technology and Intelligent Transport Systems, VEHITS - Proceedings";conference and proceedings;"2184495X";"Science and Technology Publications, Lda";No;No;0,176;-;8;73;158;1599;114;154;0,74;21,90;19,63;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Automotive Engineering; Control and Systems Engineering; Transportation";"Engineering; Social Sciences" +23564;21101214488;"Proceedings of the Australasian Language Technology Workshop";conference and proceedings;"18347037";"Australasian Language Technology Association";No;No;0,176;-;10;0;75;0;48;70;0,65;0,00;0,00;0;Australia;Pacific Region;"Australasian Language Technology Association";"2019-2024";"Artificial Intelligence";"Computer Science" +23565;21100935073;"Alif";journal;"11108673";"American University in Cairo";No;No;0,175;Q1;3;9;23;270;3;11;0,07;30,00;33,33;0;Egypt;Africa/Middle East;"American University in Cairo";"2019-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Communication (Q3)";"Arts and Humanities; Social Sciences" +23566;21101307612;"Atlante Tematico di Topografia Antica";journal;"20363834, 22836357";"L'Erma di Bretschneider";No;No;0,175;Q1;3;23;43;536;9;43;0,19;23,30;45,65;0;Italy;Western Europe;"L'Erma di Bretschneider";"2020-2025";"Classics (Q1); Archeology (arts and humanities) (Q2); History (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +23567;21100395922;"Green Letters";journal;"14688417, 21681414";"Taylor and Francis Ltd.";No;No;0,175;Q1;12;27;88;786;35;81;0,39;29,11;57,69;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +23568;21101073713;"Letras (Peru)";journal;"20715072, 03784878";"National University of San Marcos. Faculty of Letters and Human Sciences";Yes;Yes;0,175;Q1;6;25;87;925;25;82;0,28;37,00;29,17;0;Peru;Latin America;"National University of San Marcos. Faculty of Letters and Human Sciences";"2018-2025";"Literature and Literary Theory (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Linguistics and Language (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +23569;5800207807;"NJES Nordic Journal of English Studies";journal;"15027694, 16546970";"Umea University Department of Language Studies";Yes;Yes;0,175;Q1;15;13;56;505;28;54;0,30;38,85;68,75;0;Sweden;Western Europe;"Umea University Department of Language Studies";"2002-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +23570;12100156062;"Photographies";journal;"17540771, 17540763";"Routledge";No;No;0,175;Q1;15;25;70;762;29;52;0,38;30,48;71,43;0;United Kingdom;Western Europe;"Routledge";"2008-2025";"Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +23571;4700152714;"Cadernos de Pesquisa";journal;"19805314, 01001574";"Fundacao Carlos Chagas";Yes;Yes;0,175;Q2;24;22;145;907;55;143;0,35;41,23;54,55;0;Brazil;Latin America;"Fundacao Carlos Chagas";"1983, 2006-2025";"Cultural Studies (Q2); Gender Studies (Q3); Education (Q4)";"Social Sciences" +23572;20899;"Contemporary French Civilization";journal;"2044396X, 01479156";"Liverpool University Press";No;No;0,175;Q2;4;19;69;792;10;61;0,11;41,68;61,11;0;United Kingdom;Western Europe;"Liverpool University Press";"1978, 1981-1982, 1991, 1995, 1997, 1999, 2001-2002, 2007, 2011, 2013, 2015-2025";"Cultural Studies (Q2); History (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +23573;15278;"History";journal;"1468229X, 00182648";"Wiley-Blackwell";No;No;0,175;Q2;22;42;87;2553;41;87;0,40;60,79;33,33;0;United States;Northern America;"Wiley-Blackwell";"1916-1995, 1997-1999, 2001, 2005-2026";"History (Q2)";"Arts and Humanities" +23574;21100982466;"IASPM Journal";journal;"20793871";"International Association for the Study of Popular Music";Yes;Yes;0,175;Q2;15;23;64;901;32;60;0,57;39,17;47,83;0;Sweden;Western Europe;"International Association for the Study of Popular Music";"2010, 2012-2025";"Music (Q2)";"Arts and Humanities" +23575;21100232420;"International Journal of Feminist Approaches to Bioethics";journal;"19374585, 19374577";"University of Toronto";No;No;0,175;Q2;18;18;97;1533;53;91;0,80;85,17;57,14;0;United States;Northern America;"University of Toronto";"2012-2025";"Philosophy (Q2); Gender Studies (Q3); Health (social science) (Q4)";"Arts and Humanities; Social Sciences" +23576;21101275446;"Isidorianum";journal;"26607743, 11317027";"Faculty of Theology San Isidoro of Seville";Yes;Yes;0,175;Q2;2;21;49;817;14;49;0,29;38,90;10,53;0;Spain;Western Europe;"Faculty of Theology San Isidoro of Seville";"2022-2025";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +23577;21100465083;"Israel Studies Review";journal;"21590370, 21590389";"Berghahn Journals";No;No;0,175;Q2;11;24;64;959;42;59;0,57;39,96;70,97;0;United States;Northern America;"Berghahn Journals";"2015-2025";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23578;21101312745;"KARSA";journal;"24423289, 24424285";"Universitas Islam Negeri Madura";No;No;0,175;Q2;3;16;48;808;21;48;0,42;50,50;32,50;0;Indonesia;Asiatic Region;"Universitas Islam Negeri Madura";"2022-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Religious Studies (Q2); Social Sciences (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q4)";"Arts and Humanities; Decision Sciences; Social Sciences" +23579;21101128488;"Public Journal of Semiotics";journal;"19189907";"Lund University, Centre for Languages and Literature";No;No;0,175;Q2;6;3;12;185;21;12;2,50;61,67;25,00;0;Sweden;Western Europe;"Lund University, Centre for Languages and Literature";"2019, 2021-2025";"Linguistics and Language (Q2); Anthropology (Q3); Communication (Q3)";"Social Sciences" +23580;16300154786;"Research in Phenomenology";journal;"15691640, 00855553";"Brill Academic Publishers";No;No;0,175;Q2;25;23;70;951;22;64;0,23;41,35;14,29;0;Netherlands;Western Europe;"Brill Academic Publishers";"1971-1978, 1980-1982, 1984-1988, 1990-1993, 1996-2005, 2007-2026";"Philosophy (Q2)";"Arts and Humanities" +23581;21101061822;"Scientific Culture";journal;"24080071, 24079529";"University of AEGEAN";No;No;0,175;Q2;13;376;84;15232;72;82;0,96;40,51;38,92;0;Greece;Western Europe;"University of AEGEAN";"2019-2026";"Archeology (arts and humanities) (Q2); Arts and Humanities (miscellaneous) (Q2); Conservation (Q2); History (Q2); Archeology (Q3); Social Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q4)";"Arts and Humanities; Environmental Science; Social Sciences" +23582;21100228076;"Twentieth-Century China";journal;"15215385, 19405065";"Johns Hopkins University Press";No;No;0,175;Q2;9;15;55;740;20;45;0,26;49,33;30,00;0;United States;Northern America;"Johns Hopkins University Press";"2002, 2012-2026";"Cultural Studies (Q2); History (Q2); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +23583;21101160672;"Zeitschrift fur Arabische Linguistik";journal;"27474437";"Harrassowitz Verlag";No;No;0,175;Q2;4;0;26;0;5;25;0,18;0,00;0,00;0;Germany;Western Europe;"Harrassowitz Verlag";"2019-2024";"Linguistics and Language (Q2)";"Social Sciences" +23584;21101199367;"Aerospace Technology";journal;"20970714";"";No;No;0,175;Q3;6;33;171;1227;97;171;0,31;37,18;29,51;0;Iran;Middle East;"";"2022-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +23585;21101278528;"Al-Rafidain Engineering Journal";journal;"22201270, 18130526";"University of Mosul";Yes;No;0,175;Q3;4;30;30;1037;32;30;1,07;34,57;20,51;0;Iraq;Middle East;"University of Mosul";"2024-2025";"Architecture (Q3); Civil and Structural Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +23586;21101078824;"Archives of Health Science and Research";journal;"26874644";"AVES";Yes;Yes;0,175;Q3;6;45;102;1281;62;101;0,39;28,47;67,15;0;Turkey;Middle East;"AVES";"2020-2025";"Health Professions (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Earth and Planetary Sciences; Health Professions; Medicine; Social Sciences" +23587;21100839175;"Clinical Lactation";journal;"21580782, 21580537";"Springer Publishing Company";No;No;0,175;Q3;8;33;59;869;17;48;0,18;26,33;77,14;0;United States;Northern America;"Springer Publishing Company";"2017-2025";"Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +23588;21101055430;"Clinical Practice and Cases in Emergency Medicine";journal;"2474252X";"University of California - Department of Emergency Medicine";Yes;No;0,175;Q3;12;120;267;1239;124;254;0,37;10,33;37,92;0;United States;Northern America;"University of California - Department of Emergency Medicine";"2017-2026";"Emergency Medicine (Q3); Emergency Nursing (Q3)";"Medicine; Nursing" +23589;21101184429;"ELTE Law Journal";journal;"20644965";"Eotvos Lorand Tudomanyegyetem";No;No;0,175;Q3;4;16;49;676;18;44;0,39;42,25;60,00;0;Hungary;Eastern Europe;"Eotvos Lorand Tudomanyegyetem";"2019-2025";"Law (Q3)";"Social Sciences" +23590;20500195212;"International Journal of Drug Delivery Technology";journal;"09754415";"Dr. Yashwant Research Labs Pvt. Ltd.";No;No;0,175;Q3;21;238;915;6681;728;915;0,66;28,07;37,77;0;India;Asiatic Region;"Dr. Yashwant Research Labs Pvt. Ltd.";"2011-2012, 2014-2026";"Pharmaceutical Science (Q3)";"Pharmacology, Toxicology and Pharmaceutics" +23591;86033;"IPPTA: Quarterly Journal of Indian Pulp and Paper Technical Association";journal;"03795462";"Indian Pulp and Paper Technical Association";No;No;0,175;Q3;14;52;150;233;14;137;0,10;4,48;15,79;0;India;Asiatic Region;"Indian Pulp and Paper Technical Association";"1998-2025";"Media Technology (Q3); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4)";"Chemical Engineering; Chemistry; Engineering; Materials Science" +23592;21100943297;"Iranian Journal of Breast Diseases";journal;"26457482, 17359406";"Iranian Academic Center for Education, Culture and Research";Yes;No;0,175;Q3;6;29;85;1005;58;85;0,59;34,66;49,51;0;Iran;Middle East;"Iranian Academic Center for Education, Culture and Research";"2019-2025";"Surgery (Q3); Internal Medicine (Q4); Oncology (Q4)";"Medicine" +23593;21100891827;"Journal of African Union Studies";journal;"20504306, 20504292";"Adonis & Abbey Publishers Ltd.";No;No;0,175;Q3;10;24;74;1134;41;70;0,57;47,25;34,04;0;United Kingdom;Western Europe;"Adonis & Abbey Publishers Ltd.";"2012-2025";"Political Science and International Relations (Q3); Sociology and Political Science (Q3); Development (Q4)";"Social Sciences" +23594;25616;"Perspektiven der Wirtschaftspolitik";journal;"14656493, 14682516";"Walter de Gruyter GmbH";No;No;0,175;Q3;17;32;93;1365;22;68;0,22;42,66;24,69;7;Germany;Western Europe;"Walter de Gruyter GmbH";"2000-2025";"Political Science and International Relations (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +23595;21100199322;"Philippine Political Science Journal";journal;"01154451, 2165025X";"Brill Academic Publishers";No;No;0,175;Q3;15;3;32;190;23;31;0,48;63,33;0,00;0;United Kingdom;Western Europe;"Brill Academic Publishers";"1974-1982, 1989-1990, 1992, 1994, 1998-2025";"Political Science and International Relations (Q3)";"Social Sciences" +23596;21100845659;"Revista Chilena de Derecho y Tecnologia";journal;"07192576, 07192584";"Universidad de Chile";Yes;Yes;0,175;Q3;9;0;52;0;24;51;0,51;0,00;0,00;0;Chile;Latin America;"Universidad de Chile";"2017-2024";"Law (Q3); Computer Networks and Communications (Q4); Information Systems (Q4)";"Computer Science; Social Sciences" +23597;10600153355;"Acta Bioethica";journal;"1726569X, 07175906";"";Yes;Yes;0,175;Q4;13;32;102;983;42;85;0,30;30,72;44,59;0;Chile;Latin America;"";"2007-2025";"Health Policy (Q4); Health (social science) (Q4)";"Medicine; Social Sciences" +23598;17600155203;"Acta Biologica Colombiana";journal;"0120548X, 19001649";"Universidad Nacional de Colombia";Yes;Yes;0,175;Q4;25;47;170;1916;91;159;0,38;40,77;35,26;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +23599;21100291858;"Advances in Accounting Education: Teaching and Curriculum Innovations";book series;"10854622";"Emerald Group Publishing Ltd.";No;No;0,175;Q4;13;1;36;30;26;1;0,55;30,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007-2017, 2019-2025";"Business and International Management (Q4); Education (Q4)";"Business, Management and Accounting; Social Sciences" +23600;145503;"Agrociencia";journal;"14053195, 25219766";"Colegio de Postgraduados";Yes;No;0,175;Q4;31;83;210;2870;126;210;0,58;34,58;29,61;0;Mexico;Latin America;"Colegio de Postgraduados";"2000-2025";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Environmental Science (miscellaneous) (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23601;21101053059;"Caspian Journal of Neurological Sciences";journal;"24234818, 23834307";"Guilan University of Medical Sciences";Yes;No;0,175;Q4;6;36;100;1199;50;100;0,46;33,31;47,29;0;Iran;Middle East;"Guilan University of Medical Sciences";"2019-2026";"Neurology (Q4); Neurology (clinical) (Q4); Neuroscience (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience" +23602;130108;"Chinese Journal of Evidence-Based Medicine";journal;"16722531";"West China University of Medical Science";Yes;No;0,175;Q4;25;200;609;7885;289;607;0,46;39,43;49,16;0;China;Asiatic Region;"West China University of Medical Science";"2005-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +23603;21101214754;"Chinese Journal of Public Health";journal;"10010580";"";Yes;No;0,175;Q4;11;107;865;2970;435;865;0,51;27,76;50,65;0;China;Asiatic Region;"";"2020-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +23604;21100416607;"Enfermeria Nefrologica";journal;"22542884, 22553517";"Sociedad Espanola de Enfermeria Nefrologica";Yes;Yes;0,175;Q4;13;36;110;844;56;96;0,44;23,44;76,92;0;Spain;Western Europe;"Sociedad Espanola de Enfermeria Nefrologica";"2012-2025";"Advanced and Specialized Nursing (Q4); Nephrology (Q4); Nursing (miscellaneous) (Q4); Urology (Q4)";"Medicine; Nursing" +23605;21101105768;"Fizicna Reabilitacia ta Rekreacijno-Ozdorovci Tehnologii";journal;"25221914, 25221906";"Kharkiv State Academy of Physical Culture";Yes;No;0,175;Q4;7;52;99;1478;76;99;1,01;28,42;43,75;0;Ukraine;Eastern Europe;"Kharkiv State Academy of Physical Culture";"2019-2025";"Occupational Therapy (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Public Health, Environmental and Occupational Health (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +23606;21101241603;"Food and Machinery";journal;"10035788";"";Yes;No;0,175;Q4;11;289;1244;9291;1030;1244;0,90;32,15;42,71;0;China;Asiatic Region;"";"2020-2026";"Food Science (Q4); Mechanical Engineering (Q4)";"Agricultural and Biological Sciences; Engineering" +23607;21100413900;"Genetika";journal;"18206069, 05340012";"Serbian Genetics Society";Yes;No;0,175;Q4;28;11;213;371;133;213;0,59;33,73;57,89;0;Serbia;Eastern Europe;"Serbian Genetics Society";"2007-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Genetics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +23608;13000;"Guocheng Gongcheng Xuebao/The Chinese Journal of Process Engineering";journal;"1009606X";"Science Press";No;No;0,175;Q4;22;122;466;4561;330;466;0,73;37,39;33,06;0;China;Asiatic Region;"Science Press";"2001-2026";"Chemical Engineering (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4)";"Chemical Engineering; Engineering" +23609;25268;"Inorganic Materials";journal;"16083172, 00201685";"Pleiades Publishing";No;No;0,175;Q4;50;0;599;0;304;599;0,44;0,00;0,00;0;United States;Northern America;"Pleiades Publishing";"1996-2024";"Chemical Engineering (miscellaneous) (Q4); Inorganic Chemistry (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4)";"Chemical Engineering; Chemistry; Materials Science" +23610;21100198553;"International Journal of Banking, Accounting and Finance";journal;"17553830, 17553849";"Inderscience";No;No;0,175;Q4;14;16;38;1191;24;38;0,79;74,44;23,68;0;Switzerland;Western Europe;"Inderscience";"2008-2025";"Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +23611;17700155302;"International Journal of Business Excellence";journal;"17560055, 17560047";"Inderscience Enterprises Ltd";No;No;0,175;Q4;32;82;246;5679;202;246;0,73;69,26;36,73;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2008-2026";"Business and International Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +23612;21101169871;"International Journal of School Health";journal;"23455152, 23831219";"Shiraz University of Medical Sciences";Yes;No;0,175;Q4;10;32;96;984;55;85;0,64;30,75;62,50;0;Iran;Middle East;"Shiraz University of Medical Sciences";"2019-2026";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +23613;7900153143;"International Journal of Simulation and Process Modelling";journal;"17402123, 17402131";"Inderscience Enterprises Ltd";No;No;0,175;Q4;25;19;92;622;65;92;0,71;32,74;19,30;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2025";"Applied Mathematics (Q4); Computer Science Applications (Q4); Modeling and Simulation (Q4)";"Computer Science; Mathematics" +23614;21101089112;"Iranian Journal of Veterinary Surgery";journal;"26766299, 20083033";"Iranian Veterinary Surgery Association";Yes;No;0,175;Q4;5;24;72;758;42;72;0,58;31,58;28,72;0;Iran;Middle East;"Iranian Veterinary Surgery Association";"2019-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +23615;21101206921;"Journal of Analytical and Numerical Methods in Mining Engineering";journal;"22516565, 26766795";"Yazd University";Yes;Yes;0,175;Q4;4;23;79;728;35;79;0,47;31,65;4,76;0;Iran;Middle East;"Yazd University";"2019-2026";"Geology (Q4); Numerical Analysis (Q4)";"Earth and Planetary Sciences; Mathematics" +23616;21100211746;"Journal of Military and Veterans' Health";journal;"18351271";"Australasian Military Medicine Association";Yes;No;0,175;Q4;16;8;67;358;31;50;0,60;44,75;41,67;0;Australia;Pacific Region;"Australasian Military Medicine Association";"2012-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +23617;21100400182;"Journal of Settlements and Spatial Planning";journal;"20693419, 22482199";"Centre for Research on Settlements and Urbanism, Faculty of Geography, Babes-Bolyai University";No;No;0,175;Q4;12;11;49;684;27;43;0,50;62,18;44,44;0;Romania;Eastern Europe;"Centre for Research on Settlements and Urbanism, Faculty of Geography, Babes-Bolyai University";"2015-2025";"Geography, Planning and Development (Q4)";"Social Sciences" +23618;19400158569;"KEDI Journal of Educational Policy";journal;"17394341";"Korean Educational Development Institute (KEDI)";No;No;0,175;Q4;18;15;28;815;15;27;0,63;54,33;51,72;0;South Korea;Asiatic Region;"Korean Educational Development Institute (KEDI)";"2008-2025";"Education (Q4)";"Social Sciences" +23619;5700163481;"Nova Economia";journal;"01036351, 19805381";"Lundiana";Yes;Yes;0,175;Q4;15;21;87;1007;35;84;0,28;47,95;43,90;0;Brazil;Latin America;"Lundiana";"2008-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +23620;21101121506;"Psychology";journal;"11065737, 27326640";"National Documentation Centre";Yes;Yes;0,175;Q4;6;33;103;2353;52;100;0,46;71,30;62,96;0;Greece;Western Europe;"National Documentation Centre";"2010, 2012-2013, 2016, 2018-2026";"Psychology (miscellaneous) (Q4)";"Psychology" +23621;21100874216;"Revista Mexicana de Fisica E";journal;"18703542";"Sociedad Mexicana de Fisica";No;No;0,175;Q4;15;45;78;1405;20;78;0,16;31,22;30,88;0;Mexico;Latin America;"Sociedad Mexicana de Fisica";"2006-2026";"Education (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy; Social Sciences" +23622;21101076303;"Ukrainian Antarctic Journal";journal;"24153087, 17277485";"State Institution National Antarctic Scientific Center of the Ministry of Education and Science of Ukraine";Yes;Yes;0,175;Q4;6;14;50;647;21;49;0,42;46,21;48,15;0;Ukraine;Eastern Europe;"State Institution National Antarctic Scientific Center of the Ministry of Education and Science of Ukraine";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Atmospheric Science (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Geochemistry and Petrology (Q4); Geology (Q4); Geophysics (Q4); Oceanography (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Earth and Planetary Sciences" +23623;21101059744;"Vestnik Sankt-Peterburgskogo Universiteta. Ekonomika";journal;"2542226X, 1026356X";"Saint Petersburg State University";No;No;0,175;Q4;10;19;81;722;35;81;0,54;38,00;50,00;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +23624;21101047129;"World Economics";journal;"14743884, 14681838";"World Economics Ltd";No;No;0,175;Q4;6;25;72;877;15;62;0,27;35,08;30,00;0;United Kingdom;Western Europe;"World Economics Ltd";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +23625;88865;"IEEE AFRICON Conference";conference and proceedings;"21530033, 21530025";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,175;-;29;0;189;0;156;187;0,83;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992, 1996, 1999, 2002, 2004, 2007, 2009, 2011, 2013, 2015, 2019, 2021, 2023";"Computer Science Applications; Electrical and Electronic Engineering";"Computer Science; Engineering" +23626;21100226431;"International Conference on ICT Convergence";conference and proceedings;"21621241, 21621233";"IEEE Computer Society";No;No;0,175;-;28;0;1682;0;987;1676;0,44;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012-2014, 2020-2024";"Computer Networks and Communications; Information Systems";"Computer Science" +23627;21100885000;"Proceedings - International Conference on Developments in eSystems Engineering, DeSE";conference and proceedings;"21611343";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,175;-;22;0;351;0;348;345;0,99;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017-2021, 2023-2024";"Artificial Intelligence; Computer Science Applications; Control and Systems Engineering; Health Informatics";"Computer Science; Engineering; Medicine" +23628;21100851338;"Proceedings of RAGtime";conference and proceedings;"23365668, 23365676";"Silesian University in Opava";No;No;0,175;-;5;0;24;0;9;21;0,38;0,00;0,00;0;Czech Republic;Eastern Europe;"Silesian University in Opava";"2004, 2017, 2020, 2023";"Astronomy and Astrophysics; Physics and Astronomy (miscellaneous)";"Physics and Astronomy" +23629;21101154806;"Proceedings of the European Conference on Management, Leadership and Governance";conference and proceedings;"2048903X, 20489021";"Academic Conferences and Publishing International Limited";No;No;0,175;-;7;63;232;1850;160;226;0,65;29,37;60,16;0;United Kingdom;Western Europe;"Academic Conferences and Publishing International Limited";"2022-2025";"Health (social science); Public Administration; Sociology and Political Science; Strategy and Management";"Business, Management and Accounting; Social Sciences" +23630;144854;"Proceedings of the International Conference on Microelectronics, ICM";conference and proceedings;"23327014";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,175;-;29;113;153;2339;127;151;0,83;20,70;21,15;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1999-2012, 2014-2021, 2023-2024";"Electrical and Electronic Engineering";"Engineering" +23631;16200154751;"Artibus Asiae";journal;"00043648";"Museum Rietberg Zurich";No;No;0,174;Q1;13;3;18;207;2;18;0,08;69,00;50,00;0;Switzerland;Western Europe;"Museum Rietberg Zurich";"2002-2025";"Visual Arts and Performing Arts (Q1); Archeology (arts and humanities) (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +23632;21100901900;"Black Camera";journal;"15363155, 19474237";"Indiana University Press";No;No;0,174;Q1;6;22;133;662;24;122;0,17;30,09;58,82;0;Russian Federation;Eastern Europe;"Indiana University Press";"2018-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +23633;28400;"Classical Philology";journal;"0009837X, 1546072X";"University of Chicago Press";No;No;0,174;Q1;40;31;114;1847;41;89;0,31;59,58;43,75;0;United States;Northern America;"University of Chicago Press";"1906, 1956, 1970, 1973, 1978, 1980-1982, 1984, 1987, 1992-1994, 1996-2026";"Classics (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +23634;16100154791;"Comparative Literature Studies";journal;"15284212, 00104132";"Penn State University Press";No;No;0,174;Q1;21;29;109;1390;39;105;0,27;47,93;62,96;0;United States;Northern America;"Penn State University Press";"2000, 2002-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +23635;21101075266;"Journal of Cinema and Media Studies";journal;"25784919, 25784900";"Michigan Publishing";No;No;0,174;Q1;32;74;208;2200;110;138;0,47;29,73;53,57;0;United States;Northern America;"Michigan Publishing";"2018-2025";"Visual Arts and Performing Arts (Q1); Communication (Q3)";"Arts and Humanities; Social Sciences" +23636;21100211324;"Lexis (Peru)";journal;"02549239, 22233768";"Pontificia Universidad Catolica del Peru";Yes;Yes;0,174;Q1;9;18;101;701;24;101;0,18;38,94;47,37;0;Peru;Latin America;"Pontificia Universidad Catolica del Peru";"2012-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +23637;29523;"Annee Psychologique";journal;"19552580, 00035033";"Presses Universitaires de France";No;No;0,174;Q2;30;23;91;1501;30;88;0,25;65,26;63,33;0;France;Western Europe;"Presses Universitaires de France";"1952-1961, 1964-1984, 1995-2025";"Arts and Humanities (miscellaneous) (Q2); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology" +23638;37911;"Bulletins et Memoires de la Societe d'Anthropologie de Paris";journal;"17775469, 00378984";"Societe d'Anthropologie de Paris";Yes;Yes;0,174;Q2;15;96;126;1007;24;54;0,13;10,49;51,11;0;France;Western Europe;"Societe d'Anthropologie de Paris";"1973-1979, 2010-2026";"Archeology (arts and humanities) (Q2); Cultural Studies (Q2); Anthropology (Q3); Archeology (Q3)";"Arts and Humanities; Social Sciences" +23639;16200154728;"Ecumenical Review";journal;"00130796, 17586623";"Wiley-Blackwell";No;No;0,174;Q2;12;19;161;348;34;129;0,12;18,32;43,75;0;United States;Northern America;"Wiley-Blackwell";"1948-2026";"Religious Studies (Q2)";"Arts and Humanities" +23640;21100326093;"ESSACHESS - Journal for Communication Studies";journal;"1775352X, 20665083";"";Yes;No;0,174;Q2;12;22;58;944;26;56;0,61;42,91;53,85;0;France;Western Europe;"";"2014-2025";"Cultural Studies (Q2); Linguistics and Language (Q2); Religious Studies (Q2); Communication (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23641;84532;"Ethnologia Europaea";journal;"16043030, 04254597";"Berghahn Journals";Yes;Yes;0,174;Q2;18;12;36;476;38;35;1,00;39,67;81,82;0;United Kingdom;Western Europe;"Berghahn Journals";"1979, 1987, 2002-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +23642;21100783205;"Horizon. Studies in Phenomenology";journal;"23116986, 22265260";"Saint Petersburg State University";Yes;No;0,174;Q2;5;21;96;600;13;95;0,14;28,57;47,62;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2012-2025";"Philosophy (Q2); Artificial Intelligence (Q4); Control and Optimization (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Signal Processing (Q4)";"Arts and Humanities; Computer Science; Energy; Engineering; Mathematics" +23643;21100456706;"Journal of Intelligence History";journal;"16161262, 21695601";"Taylor and Francis Ltd.";No;No;0,174;Q2;7;16;53;0;33;51;0,63;0,00;30,77;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2008, 2013, 2015-2026";"History (Q2); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +23644;19600161820;"Journal of Maritime Research";journal;"16979133, 16974840";"Universidad de Cantabria";No;No;0,174;Q2;12;158;260;4627;178;260;0,70;29,28;28,24;0;Spain;Western Europe;"Universidad de Cantabria";"2009-2020, 2022-2025";"Cultural Studies (Q2); History (Q2); Ocean Engineering (Q4)";"Arts and Humanities; Engineering; Social Sciences" +23645;5700165614;"Journal of Middle East Women's Studies";journal;"15525864, 15589579";"Duke University Press";No;No;0,174;Q2;18;17;97;570;51;92;0,45;33,53;89,47;0;United States;Northern America;"Duke University Press";"2013-2025";"Cultural Studies (Q2); History (Q2); Gender Studies (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23646;5600155667;"Journal of Spanish Cultural Studies";journal;"14636204, 14699818";"Routledge";No;No;0,174;Q2;16;21;93;784;33;88;0,39;37,33;47,37;0;United Kingdom;Western Europe;"Routledge";"2010-2025";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +23647;21101149548;"Journal of the General Union of Arab Archaeologists";journal;"25370278, 2537026X";"General Union of Arab Archeologist & Federation of Arab University";Yes;No;0,174;Q2;3;35;60;1578;14;59;0,22;45,09;41,82;0;Egypt;Africa/Middle East;"General Union of Arab Archeologist & Federation of Arab University";"2016-2026";"Arts and Humanities (miscellaneous) (Q2); Conservation (Q2); Museology (Q2); Archeology (arts and humanities) (Q3)";"Arts and Humanities" +23648;21101145668;"An-Najah University Journal for Research - B (Humanities)";journal;"23118962, 17278449";"An-Najah National University";No;No;0,174;Q3;9;85;251;3424;150;251;0,56;40,28;32,12;0;Palestine;Middle East;"An-Najah National University";"2019-2026";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +23649;21100935074;"British Tax Review";journal;"00071870";"Thomson Reuters";No;No;0,174;Q3;5;49;129;1242;31;85;0,28;25,35;40,91;0;United States;Northern America;"Thomson Reuters";"2019-2025";"Law (Q3); Accounting (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +23650;21101095657;"Economia, Sociedad y Territorio";journal;"14058421, 24486183";"El Colegio Mexiquense AC";Yes;Yes;0,174;Q3;7;35;108;1436;57;108;0,47;41,03;39,62;0;Mexico;Latin America;"El Colegio Mexiquense AC";"2019-2025";"Demography (Q3); Social Sciences (miscellaneous) (Q3); Urban Studies (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +23651;19600156834;"Icon";journal;"28064208, 13618113";"International Committee for the History of Technology";No;No;0,174;Q3;8;12;43;552;23;38;0,65;46,00;38,46;0;Germany;Western Europe;"International Committee for the History of Technology";"2001, 2013-2016, 2019-2025";"History and Philosophy of Science (Q3); Management of Technology and Innovation (Q4)";"Arts and Humanities; Business, Management and Accounting" +23652;21100407836;"Journal of International Humanitarian Legal Studies";journal;"18781373, 18781527";"Brill Academic Publishers";No;No;0,174;Q3;16;17;53;2736;23;46;0,34;160,94;64,71;1;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2026";"Law (Q3)";"Social Sciences" +23653;5600152866;"Studia Socjologiczne";journal;"00393371, 25452770";"Polska Akademia Nauk";Yes;No;0,174;Q3;10;34;89;1907;41;80;0,46;56,09;64,81;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2008-2025";"Sociology and Political Science (Q3)";"Social Sciences" +23654;21100450368;"Urbe";journal;"21753369";"Pontificia Universidade Catolica do Parana";Yes;Yes;0,174;Q3;13;35;141;1699;65;140;0,37;48,54;50,60;0;Brazil;Latin America;"Pontificia Universidade Catolica do Parana";"2015-2026";"Architecture (Q3); Urban Studies (Q3); Geography, Planning and Development (Q4)";"Engineering; Social Sciences" +23655;21100870015;"Acta Phytotaxonomica et Geobotanica";journal;"13467565, 21897042";"Japanese Society for Plant Systematics";Yes;No;0,174;Q4;10;26;62;708;19;62;0,32;27,23;24,76;0;Japan;Asiatic Region;"Japanese Society for Plant Systematics";"2014-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23656;21100265636;"Acta Zoologica Bulgarica";journal;"26033798, 03240770";"Institute of Biodiversity and Ecosystem Research - Bulgarian Academy of Sciences";Yes;No;0,174;Q4;22;56;220;2591;104;220;0,46;46,27;36,65;0;Bulgaria;Eastern Europe;"Institute of Biodiversity and Ecosystem Research - Bulgarian Academy of Sciences";"2010-2025";"Animal Science and Zoology (Q4); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +23657;19400157213;"Bulgarian Journal of Agricultural Science";journal;"2534983X, 13100351";"Agricultural Academy, Bulgaria";Yes;No;0,174;Q4;36;142;500;4680;286;499;0,53;32,96;51,34;0;Bulgaria;Eastern Europe;"Agricultural Academy, Bulgaria";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +23658;12513;"Chinese Journal of Industrial Hygiene and Occupational Diseases";journal;"10019391";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,174;Q4;15;183;579;3506;246;576;0,41;19,16;48,91;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2002-2016, 2019-2026";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +23659;17700155307;"Chongqing Daxue Xuebao/Journal of Chongqing University";journal;"1000582X";"Chongqing University";No;No;0,174;Q4;20;118;444;2797;236;444;0,52;23,70;27,65;0;China;Asiatic Region;"Chongqing University";"2009-2026";"Civil and Structural Engineering (Q4); Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4); Materials Science (miscellaneous) (Q4)";"Computer Science; Engineering; Materials Science" +23660;21100242624;"Complex Systems and Complexity Science";journal;"16723813";"fu za xi tong yu fu za xing ke xue bian ji bu";No;No;0,174;Q4;14;78;189;2000;116;188;0,52;25,64;38,38;0;China;Asiatic Region;"fu za xi tong yu fu za xing ke xue bian ji bu";"2013-2026";"Control and Systems Engineering (Q4)";"Engineering" +23661;16040;"Dongbei Daxue Xuebao/Journal of Northeastern University";journal;"10053026";"Northeast University";No;No;0,174;Q4;24;206;676;4929;429;676;0,60;23,93;30,22;0;China;Asiatic Region;"Northeast University";"1998-2025";"Applied Mathematics (Q4); Computer Science Applications (Q4); Engineering (miscellaneous) (Q4)";"Computer Science; Engineering; Mathematics" +23662;21100886429;"Enlightening Tourism";journal;"2174548X";"Universidad de Huelva";Yes;Yes;0,174;Q4;11;3;42;241;35;42;0,94;80,33;71,43;0;Spain;Western Europe;"Universidad de Huelva";"2018-2025";"Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting" +23663;21100225849;"Geo-Eco-Marina";journal;"12246808, 22482776";"National Research and Development Institute for Marine Geology and Geoecology";Yes;No;0,174;Q4;13;0;36;0;16;35;0,25;0,00;0,00;0;Romania;Eastern Europe;"National Research and Development Institute for Marine Geology and Geoecology";"2011-2024";"Aquatic Science (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Geography, Planning and Development (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science; Social Sciences" +23664;35961;"Glasnik - Srpskog Geografskog Drustva";journal;"2406078X, 03503593";"Geografsko Drustvo";Yes;Yes;0,174;Q4;8;60;120;2292;76;120;0,59;38,20;30,30;0;Serbia;Eastern Europe;"Geografsko Drustvo";"1981-1984, 2019-2025";"Atmospheric Science (Q4); Education (Q4); Geography, Planning and Development (Q4); Geology (Q4); Global and Planetary Change (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +23665;21101324526;"Guidelines and Standards in Chinese Medicine";journal;"28378792, 28378806";"Lippincott Williams and Wilkins";Yes;No;0,174;Q4;2;30;40;804;27;39;0,68;26,80;41,34;0;United States;Northern America;"Lippincott Williams and Wilkins";"2023-2026";"Complementary and Alternative Medicine (Q4)";"Medicine" +23666;21101272554;"International Conference on Electrical Engineering and Photonics, EExPolytech";journal;"2771697X, 27716988";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,174;Q4;2;126;122;1676;64;120;0,52;13,30;23,20;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Atomic and Molecular Physics, and Optics (Q4); Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Instrumentation (Q4); Signal Processing (Q4)";"Computer Science; Engineering; Physics and Astronomy" +23667;66262;"International Journal of Continuing Engineering Education and Life-Long Learning";journal;"15604624, 17415055";"Inderscience Publishers";No;No;0,174;Q4;28;52;142;1182;134;142;0,82;22,73;47,67;0;United Kingdom;Western Europe;"Inderscience Publishers";"1986, 1988, 1990-2026";"Education (Q4); E-learning (Q4); Engineering (miscellaneous) (Q4)";"Engineering; Social Sciences" +23668;21100823281;"International Journal of Software Innovation";journal;"21667179, 21667160";"IGI Global Publishing";No;No;0,174;Q4;15;1;179;9;126;179;1,35;9,00;50,00;0;United States;Northern America;"IGI Global Publishing";"2017-2026";"Artificial Intelligence (Q4); Computer Graphics and Computer-Aided Design (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Software (Q4)";"Computer Science" +23669;23275;"International Journal of Sustainable Development";journal;"09601406, 17415268";"Inderscience Publishers";No;No;0,174;Q4;34;31;66;775;39;66;0,66;25,00;37,74;0;United Kingdom;Western Europe;"Inderscience Publishers";"1998-2026";"Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +23670;20439;"Israel Journal of Entomology";journal;"22246304, 00751243";"Entomological Society of Israel";No;No;0,174;Q4;13;10;19;519;3;18;0,16;51,90;16,67;0;Israel;Middle East;"Entomological Society of Israel";"1996-1999, 2004-2005, 2019-2021, 2023-2026";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23671;16400154779;"Journal for Global Business Advancement";journal;"17469678, 1746966X";"Inderscience Enterprises Ltd";No;No;0,174;Q4;20;15;84;1103;64;84;0,60;73,53;20,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2026";"Business and International Management (Q4)";"Business, Management and Accounting" +23672;21101169018;"Journal of Agricultural Machinery";journal;"22286829, 24233943";"Ferdowsi University of Mashhad";Yes;No;0,174;Q4;3;27;61;1104;34;61;0,56;40,89;3,77;0;Iran;Middle East;"Ferdowsi University of Mashhad";"2023-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +23673;21101294475;"Jurnal Entomologi Indonesia";journal;"20890257, 18297722";"IPB University Faculty of Agriculture";Yes;No;0,174;Q4;5;21;69;885;40;69;0,59;42,14;47,92;0;Indonesia;Asiatic Region;"IPB University Faculty of Agriculture";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Forestry (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23674;4700152760;"Latin American Business Review";journal;"10978526, 15286932";"Taylor and Francis Ltd.";No;No;0,174;Q4;20;11;42;863;31;42;0,73;78,45;36,36;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1998, 2000-2026";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +23675;21100211350;"Malaysian Journal of Public Health Medicine";journal;"25903829, 16750306";"Malaysian Public Health Physicians Association";Yes;No;0,174;Q4;17;65;279;2314;150;279;0,43;35,60;45,58;0;Malaysia;Asiatic Region;"Malaysian Public Health Physicians Association";"2007, 2012-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +23676;21100786531;"Mining Science";journal;"23535423, 23009586";"Wroclaw University of Technology";Yes;Yes;0,174;Q4;18;15;41;443;31;41;0,75;29,53;25,00;0;Poland;Eastern Europe;"Wroclaw University of Technology";"2014-2025";"Geochemistry and Petrology (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +23677;24115;"National Toxicology Program Technical Report Series";journal;"08888051";"United States National Toxicology Program";No;No;0,174;Q4;24;0;4;0;3;4;0,75;0,00;0,00;0;United States;Northern America;"United States National Toxicology Program";"2000-2013, 2017-2021, 2023-2024";"Cancer Research (Q4); Health, Toxicology and Mutagenesis (Q4); Oncology (Q4); Pharmacology (Q4); Toxicology (Q4)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +23678;21101342514;"Pesquisa Florestal Brasileira";journal;"19832605";"Embrapa Forestry";Yes;No;0,174;Q4;5;16;67;684;42;66;0,55;42,75;32,14;0;Brazil;Latin America;"Embrapa Forestry";"2021-2026";"Forestry (Q4)";"Agricultural and Biological Sciences" +23679;17110;"Postepy Higieny i Medycyny Doswiadczalnej";journal;"17322693, 00325449";"Polska Akademia Nauk";Yes;No;0,174;Q4;50;0;71;0;31;71;0,26;0,00;0,00;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1949-2023";"Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Microbiology (medical) (Q4)";"Medicine" +23680;21100843025;"Protistology";journal;"16800826";"Protozoological Society Affiliated With The Russian Academy Of Sciences";No;No;0,174;Q4;12;5;71;245;32;70;0,44;49,00;46,67;0;Russian Federation;Eastern Europe;"Protozoological Society Affiliated With The Russian Academy Of Sciences";"2017-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Microbiology (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology" +23681;21101122804;"Revista Mexicana de Economia y Finanzas Nueva Epoca";journal;"16655346, 24486795";"Instituto Mexicano de Ejecutivos de Finanzas";Yes;Yes;0,174;Q4;7;39;140;1659;71;126;0,51;42,54;24,24;0;Mexico;Latin America;"Instituto Mexicano de Ejecutivos de Finanzas";"2019-2026";"Economics, Econometrics and Finance (miscellaneous) (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +23682;21100926538;"Sibirskiy Psikhologicheskiy Zhurnal";journal;"17267080, 24110809";"Tomsk State University";Yes;No;0,174;Q4;7;46;120;1689;53;120;0,47;36,72;63,48;0;Russian Federation;Eastern Europe;"Tomsk State University";"2019-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +23683;21100236814;"Ubiquitous Learning";journal;"18359795";"Common Ground Research Networks";No;No;0,174;Q4;12;23;43;1077;33;43;0,68;46,83;42,31;0;United States;Northern America;"Common Ground Research Networks";"2009-2025";"Computer Science (miscellaneous) (Q4); Education (Q4); E-learning (Q4)";"Computer Science; Social Sciences" +23684;5400152653;"World Review of Entrepreneurship, Management and Sustainable Development";journal;"17460581, 17460573";"Inderscience Enterprises Ltd";No;No;0,174;Q4;26;15;126;1220;112;125;0,82;81,33;47,37;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2025";"Business and International Management (Q4); Economics and Econometrics (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Energy" +23685;22179;"Zhenkong Kexue yu Jishu Xuebao/Journal of Vacuum Science and Technology";journal;"16727126";"";No;No;0,174;Q4;15;111;396;2575;179;396;0,49;23,20;27,56;0;China;Asiatic Region;"";"1996-2025";"Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science; Physics and Astronomy" +23686;21100197515;"International Conference on Control, Automation and Systems";conference and proceedings;"15987833";"IEEE Computer Society";No;No;0,174;-;30;303;888;4535;494;885;0,47;14,97;19,82;0;United States;Northern America;"IEEE Computer Society";"2011-2014, 2016-2024";"Artificial Intelligence; Computer Science Applications; Control and Systems Engineering; Electrical and Electronic Engineering";"Computer Science; Engineering" +23687;20300195043;"Proceedings - IEEE International Conference on Dielectric Liquids";conference and proceedings;"21533725, 21533733";"IEEE Computer Society";No;No;0,174;-;18;83;129;1018;74;127;0,84;12,27;18,40;0;United States;Northern America;"IEEE Computer Society";"2011, 2019, 2022-2023, 2025";"Electrochemistry; Electronic, Optical and Magnetic Materials";"Chemistry; Materials Science" +23688;21100255324;"Proceedings of International Conference on Service Science, ICSS";conference and proceedings;"21653828, 21653836";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,174;-;11;0;47;0;37;45;0,00;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013, 2015-2016, 2020-2022";"Computer Science (miscellaneous); Industrial and Manufacturing Engineering; Management Science and Operations Research";"Computer Science; Decision Sciences; Engineering" +23689;21101052735;"International Journal of Asia Digital Art and Design";journal;"21897441, 17388074";"Asia Digital Art and Design Association";No;No;0,173;Q1;3;25;29;565;11;29;0,25;22,60;39,13;0;Japan;Asiatic Region;"Asia Digital Art and Design Association";"2019-2026";"Visual Arts and Performing Arts (Q1); Artificial Intelligence (Q4); Computer Graphics and Computer-Aided Design (Q4); Computer Networks and Communications (Q4); Software (Q4)";"Arts and Humanities; Computer Science" +23690;5900152815;"Journal of Design History";journal;"09524649, 17417279";"Oxford University Press";No;No;0,173;Q1;31;21;66;1296;30;66;0,45;61,71;75,00;0;United Kingdom;Western Europe;"Oxford University Press";"1988-1994, 1996-2025";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +23691;6500153198;"Studies in Theatre and Performance";journal;"20400616, 14682761";"Taylor and Francis Ltd.";No;No;0,173;Q1;14;28;89;900;28;80;0,32;32,14;72,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Visual Arts and Performing Arts (Q1)";"Arts and Humanities" +23692;21101038691;"Tirant";journal;"15797422";"Universitat de Valencia";Yes;Yes;0,173;Q1;4;13;50;556;11;50;0,26;42,77;23,81;0;Spain;Western Europe;"Universitat de Valencia";"2019-2025";"Literature and Literary Theory (Q1); History (Q2)";"Arts and Humanities" +23693;21100202749;"Disputatio";journal;"0873626X";"The Philosophy Centre of the University of Lisbon";Yes;Yes;0,173;Q2;18;0;27;0;7;27;0,43;0,00;0,00;0;Portugal;Western Europe;"The Philosophy Centre of the University of Lisbon";"1998, 2000-2023";"Philosophy (Q2)";"Arts and Humanities" +23694;5800210911;"English in Australia";journal;"0046208X";"AATE - Australian Association Teaching English";No;No;0,173;Q2;18;0;20;0;13;17;0,00;0,00;0,00;0;Australia;Pacific Region;"AATE - Australian Association Teaching English";"2008-2022";"History (Q2); Linguistics and Language (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +23695;21100805737;"IC Revista Cientifica de Informacion y Comunicacion";journal;"21731071, 16962508";"Departamento de Periodismo I de la Universidad de Sevilla.";Yes;Yes;0,173;Q2;5;12;65;507;20;61;0,08;42,25;60,87;0;Spain;Western Europe;"Departamento de Periodismo I de la Universidad de Sevilla.";"2016-2025";"Cultural Studies (Q2); Linguistics and Language (Q2); Communication (Q3); Library and Information Sciences (Q3)";"Social Sciences" +23696;21101260458;"International Journal of Agricultural Science, Research and Technology in Extension and Education Systems";journal;"22517588, 22517596";"Agricultural Extension Department, Islamic Azad University Shushtar";No;No;0,173;Q2;4;18;68;764;33;68;0,45;42,44;34,38;0;Iran;Middle East;"Agricultural Extension Department, Islamic Azad University Shushtar";"2020-2025";"Cultural Studies (Q2); Social Sciences (miscellaneous) (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Development (Q4)";"Agricultural and Biological Sciences; Social Sciences" +23697;21101056814;"Lexis - Journal in English Lexicology";journal;"19516215";"Universite Jean Moulin - Lyon 3";Yes;Yes;0,173;Q2;6;16;51;839;24;46;0,21;52,44;47,06;0;France;Western Europe;"Universite Jean Moulin - Lyon 3";"2019, 2021-2026";"Linguistics and Language (Q2)";"Social Sciences" +23698;21100906921;"MAI Journal";journal;"22306862";"Nga Pae o te Maramatanga";No;No;0,173;Q2;12;26;50;1029;28;50;0,44;39,58;72,00;0;New Zealand;Pacific Region;"Nga Pae o te Maramatanga";"2019-2025";"Cultural Studies (Q2); Anthropology (Q3); Education (Q4); Health (social science) (Q4)";"Social Sciences" +23699;21100840368;"Open Insight";journal;"23958936, 20072406";"Centro de Investigacion Social Avanzada";Yes;Yes;0,173;Q2;4;19;74;612;7;65;0,13;32,21;11,11;0;Mexico;Latin America;"Centro de Investigacion Social Avanzada";"2017-2025";"Philosophy (Q2)";"Arts and Humanities" +23700;19700172904;"Prilozi Instituta za Arheologiju";journal;"13300644";"Institut za Arheologiju";No;No;0,173;Q2;12;9;33;505;15;33;0,33;56,11;53,33;0;Croatia;Eastern Europe;"Institut za Arheologiju";"2002-2011, 2013-2025";"History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +23701;21100811505;"Symposion";journal;"23926260, 1584174X";"Gheorghe Zane Institute for Economic and Social Research, Romanian Academy, Iasi Branch";Yes;Yes;0,173;Q2;6;14;43;498;14;43;0,24;35,57;17,65;0;Romania;Eastern Europe;"Gheorghe Zane Institute for Economic and Social Research, Romanian Academy, Iasi Branch";"2014-2025";"Philosophy (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23702;21100898604;"Vibrant Virtual Brazilian Anthropology";journal;"18094341";"Brazilian Anthropology Association";Yes;Yes;0,173;Q2;8;25;116;1270;41;106;0,38;50,80;57,14;0;Brazil;Latin America;"Brazilian Anthropology Association";"2018-2025";"Cultural Studies (Q2); Anthropology (Q3); Sociology and Political Science (Q3); Urban Studies (Q3)";"Social Sciences" +23703;16100154766;"Zeitschrift fur die Neutestamentliche Wissenschaft und die Kunde der Alteren Kirche";journal;"00442615, 1613009X";"Walter de Gruyter GmbH";No;No;0,173;Q2;17;12;38;1775;20;38;0,58;147,92;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1900-1916, 1918, 1920-1942, 1949, 1951, 1953-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +23704;21101267554;"Indonesian State Law Review";journal;"26548763, 26543125";"Universitas Negeri Semarang";No;No;0,173;Q3;5;10;35;450;19;35;0,20;45,00;42,86;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2020-2025";"Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Public Administration (Q4)";"Social Sciences" +23705;21100244201;"Journal of Emergency Management";journal;"15435865";"Weston Medical Publishing";No;No;0,173;Q3;21;66;212;1393;115;197;0,52;21,11;46,97;0;United States;Northern America;"Weston Medical Publishing";"2008, 2012-2026";"Emergency Medicine (Q3); Medicine (miscellaneous) (Q4); Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering; Medicine; Social Sciences" +23706;9500154032;"Journal of Legal Medicine";journal;"01947648, 1521057X";"Taylor and Francis Ltd.";No;No;0,173;Q3;23;10;18;89;11;15;0,10;8,90;59,26;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1974-1975, 1979-2015, 2017-2023, 2025-2026";"Law (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +23707;5800207374;"Journal of the National Science Foundation of Sri Lanka";journal;"13914588, 23620161";"National Science Foundation";Yes;No;0,173;Q3;29;30;183;1134;122;169;0,71;37,80;31,58;0;Sri Lanka;Asiatic Region;"National Science Foundation";"1999-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +23708;19700170618;"Maejo International Journal of Science and Technology";journal;"19057873";"Maejo University";Yes;No;0,173;Q3;26;23;74;698;43;69;0,48;30,35;42,11;0;Thailand;Asiatic Region;"Maejo University";"2009-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +23709;20559;"Progress in Pediatric Cardiology";journal;"10589813, 15581519";"Elsevier Ireland Ltd";No;No;0,173;Q3;39;103;209;3056;82;203;0,29;29,67;47,53;0;Ireland;Western Europe;"Elsevier Ireland Ltd";"1992-2026";"Pediatrics, Perinatology and Child Health (Q3); Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +23710;21101067151;"Adults Learning Mathematics International Journal";journal;"17441803";"Adults Learning Mathematics";No;No;0,173;Q4;5;5;14;219;8;12;0,40;43,80;50,00;0;United Kingdom;Western Europe;"Adults Learning Mathematics";"2019, 2021-2025";"Education (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics; Social Sciences" +23711;21656;"Advances in Genetics";book series;"00652660";"Academic Press Inc.";No;No;0,173;Q4;86;19;23;2855;58;2;2,47;150,26;59,26;0;United States;Northern America;"Academic Press Inc.";"1947-1948, 1950-1951, 1953-1956, 1958, 1961, 1963-1965, 1968, 1970-1971, 1973, 1976-1977, 1979, 1982, 1984-1985, 1987-1992, 1994-1999, 2001-2022, 2024-2026";"Genetics (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +23712;21101232832;"Agricultural Engineering.eu";journal;"29435641";"Kuratorium fur Technik und Bauwesen in der Landwirtschaft e.V. (KTBL)";Yes;Yes;0,173;Q4;13;18;43;593;26;43;0,64;32,94;20,00;0;Germany;Western Europe;"Kuratorium fur Technik und Bauwesen in der Landwirtschaft e.V. (KTBL)";"2024-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Horticulture (Q4)";"Agricultural and Biological Sciences" +23713;21100915634;"Biomath";journal;"13147218, 1314684X";"Bulgarian Academy of Sciences, Institute of Mathematics and Informatics";Yes;Yes;0,173;Q4;8;9;28;254;20;28;0,68;28,22;43,75;0;Bulgaria;Eastern Europe;"Bulgarian Academy of Sciences, Institute of Mathematics and Informatics";"2014, 2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Applied Mathematics (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Mathematics" +23714;21101018827;"CIGRE Science and Engineering";journal;"24261335";"CIGRE";No;No;0,173;Q4;9;31;142;498;59;125;0,40;16,06;10,66;0;France;Western Europe;"CIGRE";"2019-2025";"Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering" +23715;19900191768;"Control Engineering and Applied Informatics";journal;"14548658";"Control Engineering and Applied Informatics Journal";No;No;0,173;Q4;25;29;106;865;87;106;0,86;29,83;22,22;0;Romania;Eastern Europe;"Control Engineering and Applied Informatics Journal";"2010-2025";"Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +23716;21101363387;"Design and Technology Education";journal;"20408633";"The Design and Technology Association";No;No;0,173;Q4;9;26;79;1197;39;69;0,43;46,04;69,81;0;United Kingdom;Western Europe;"The Design and Technology Association";"2021-2025";"Education (Q4)";"Social Sciences" +23717;25942;"Dynamics of Continuous, Discrete and Impulsive Systems Series B: Applications and Algorithms";journal;"14928760";"Watam Press";No;No;0,173;Q4;30;18;69;431;25;69;0,31;23,94;36,84;0;Canada;Northern America;"Watam Press";"1997-2025";"Applied Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)";"Mathematics" +23718;18630;"Haseltonia";journal;"10700048";"Cactus and Succulent Society of America, Inc.";No;No;0,173;Q4;18;7;41;173;30;40;0,27;24,71;28,57;0;United States;Northern America;"Cactus and Succulent Society of America, Inc.";"2002, 2004-2010, 2012, 2014-2018, 2020, 2022-2025";"Plant Science (Q4)";"Agricultural and Biological Sciences" +23719;21101152134;"Hogre Utbildning";journal;"20007558";"Cappelen Damm Akademisk";Yes;Yes;0,173;Q4;5;14;70;340;23;65;0,48;24,29;62,96;0;Norway;Western Europe;"Cappelen Damm Akademisk";"2019-2025";"Education (Q4)";"Social Sciences" +23720;12000154552;"Idesia";journal;"00734675, 07183429";"Universidad de Tarapaca";Yes;Yes;0,173;Q4;19;5;169;122;84;159;0,37;24,40;19,05;0;Chile;Latin America;"Universidad de Tarapaca";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +23721;19600166036;"International Journal of Artificial Intelligence";journal;"09740635";"Centre for Environment and Socio-Economic Research Publications";No;No;0,173;Q4;33;17;43;518;41;43;1,11;30,47;34,88;0;India;Asiatic Region;"Centre for Environment and Socio-Economic Research Publications";"2009-2025";"Artificial Intelligence (Q4)";"Computer Science" +23722;17700155710;"International Journal of Computational Materials Science and Surface Engineering";journal;"17533465, 17533473";"Inderscience Enterprises Ltd";No;No;0,173;Q4;15;5;18;198;18;18;1,10;39,60;35,29;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007, 2009-2025";"Computer Science Applications (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Modeling and Simulation (Q4)";"Computer Science; Engineering; Materials Science; Mathematics" +23723;21101121914;"International Journal of Medical Biochemistry";journal;"25872362, 2618642X";"Association of Clinical Biochemistry Specialists (Klinik Biyokimya Uzmanlari Dernegi)";Yes;Yes;0,173;Q4;7;45;94;1420;70;92;0,88;31,56;49,09;0;Turkey;Middle East;"Association of Clinical Biochemistry Specialists (Klinik Biyokimya Uzmanlari Dernegi)";"2019-2026";"Biochemistry (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Biotechnology (Q4); Cancer Research (Q4)";"Biochemistry, Genetics and Molecular Biology" +23724;21100285030;"International Journal of Multicriteria Decision Making";journal;"20401078, 2040106X";"Inderscience";No;No;0,173;Q4;16;5;20;458;13;20;0,33;91,60;26,67;0;Switzerland;Western Europe;"Inderscience";"2010-2019, 2021-2025";"Management Science and Operations Research (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences" +23725;18868;"International Journal of Vehicle Autonomous Systems";journal;"17415306, 14710226";"Inderscience Enterprises Ltd";No;No;0,173;Q4;27;17;18;688;17;18;0,94;40,47;33,33;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2002-2021, 2023-2026";"Automotive Engineering (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Engineering" +23726;12700154701;"Journal for Geometry and Graphics";journal;"14338157";"Heldermann Verlag";No;No;0,173;Q4;21;20;65;246;14;65;0,15;12,30;23,81;0;Germany;Western Europe;"Heldermann Verlag";"1997-2025";"Applied Mathematics (Q4); Applied Psychology (Q4); Geometry and Topology (Q4)";"Mathematics; Psychology" +23727;21100198201;"Journal of Engineering Science and Technology Review";journal;"17912377, 17919320";"International Hellenic University School of Science and Technology";Yes;Yes;0,173;Q4;44;151;457;5865;328;457;0,70;38,84;28,90;0;Greece;Western Europe;"International Hellenic University School of Science and Technology";"2008-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +23728;21100893243;"Journal of Risk Management in Financial Institutions";journal;"17528887, 17528895";"Henry Stewart Publications";No;No;0,173;Q4;10;28;103;1054;63;89;0,55;37,64;22,86;0;United Kingdom;Western Europe;"Henry Stewart Publications";"2018-2025";"Finance (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +23729;12600154711;"Journal of the Balkan Tribological Association";journal;"13104772";"Scibulcom Ltd.";No;No;0,173;Q4;22;87;230;1713;131;230;0,72;19,69;30,46;0;Bulgaria;Eastern Europe;"Scibulcom Ltd.";"2008-2025";"Mechanics of Materials (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science" +23730;19700175285;"Journal of the Korean Society of Surveying, Geodesy, Photogrammetry and Cartography";journal;"15984850";"Korean Society of Surveying";No;No;0,173;Q4;15;26;198;585;51;198;0,31;22,50;22,81;0;South Korea;Asiatic Region;"Korean Society of Surveying";"2005-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +23731;16858;"L.O.G.O.S. Interdisziplinair";journal;"0944405X";"ProLog Therapie GmbH";No;No;0,173;Q4;7;23;122;606;5;76;0,04;26,35;91,11;0;Germany;Western Europe;"ProLog Therapie GmbH";"2004-2025";"Biological Psychiatry (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience" +23732;14217;"Materiale Plastice";journal;"00255289";"Syscom 18 SRL";No;No;0,173;Q4;30;27;172;848;123;172;0,66;31,41;38,83;0;Romania;Eastern Europe;"Syscom 18 SRL";"1970-1971, 1973, 1975-1986, 1988, 1996-2025";"Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4); Mechanics of Materials (Q4); Polymers and Plastics (Q4)";"Chemistry; Engineering; Materials Science" +23733;21101045280;"Minerva Psychiatry";journal;"27246108, 27246612";"Edizioni Minerva Medica";No;No;0,173;Q4;16;30;178;1029;57;166;0,28;34,30;50,60;0;Italy;Western Europe;"Edizioni Minerva Medica";"2021-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +23734;21100926576;"Molekul";journal;"19079761, 25030310";"Universitas Jenderal Soedirman";Yes;No;0,173;Q4;11;56;161;1920;128;161;0,79;34,29;50,00;0;Indonesia;Asiatic Region;"Universitas Jenderal Soedirman";"2019-2025";"Biochemistry (Q4); Biomaterials (Q4); Chemistry (miscellaneous) (Q4); Environmental Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Environmental Science; Materials Science" +23735;19791;"Muelleria";journal;"22042032, 00771813";"Royal Botanic Gardens Victoria";No;No;0,173;Q4;13;2;25;20;10;24;0,50;10,00;33,33;0;Australia;Pacific Region;"Royal Botanic Gardens Victoria";"1982-1983, 1985, 1991-2025";"Plant Science (Q4)";"Agricultural and Biological Sciences" +23736;21100211304;"Psicologia Escolar e Educacional";journal;"14138557, 21753539";"Associacao Brasileira de Psicologia Escolar e Educacional";Yes;Yes;0,173;Q4;17;28;111;719;39;107;0,29;25,68;68,75;0;Brazil;Latin America;"Associacao Brasileira de Psicologia Escolar e Educacional";"2012-2025";"Developmental and Educational Psychology (Q4); Social Psychology (Q4)";"Psychology" +23737;4100151502;"Psychologie du Travail et des Organisations";journal;"14202530";"Elsevier Masson s.r.l.";No;No;0,173;Q4;13;25;55;1424;31;52;0,54;56,96;50,00;0;France;Western Europe;"Elsevier Masson s.r.l.";"2005-2006, 2008-2025";"Human Factors and Ergonomics (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +23738;21100395734;"Recent Innovations in Chemical Engineering";journal;"24055204, 24055212";"Bentham Science Publishers";No;No;0,173;Q4;12;26;80;1686;70;73;0,85;64,85;49,35;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2014-2026";"Chemical Engineering (miscellaneous) (Q4)";"Chemical Engineering" +23739;21100842860;"Revista Finanzas y Politica Economica";journal;"22486046, 20117663";"Universidad Catolica de Colombia";Yes;Yes;0,173;Q4;10;18;60;888;47;54;0,70;49,33;34,21;0;Colombia;Latin America;"Universidad Catolica de Colombia";"2015-2025";"Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4); Marketing (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +23740;19700188207;"Revista Mexicana de Analisis de la Conducta";journal;"20070802, 01854534";"Sociedad Mexicana de Analisis de la Conducta";No;Yes;0,173;Q4;13;19;47;748;8;45;0,14;39,37;50,00;0;Mexico;Latin America;"Sociedad Mexicana de Analisis de la Conducta";"1975, 2010-2025";"Applied Psychology (Q4); Experimental and Cognitive Psychology (Q4)";"Psychology" +23741;19700174710;"SAE International Journal of Aerospace";journal;"19463855, 19463901";"SAE International";No;No;0,173;Q4;27;15;59;526;39;57;0,71;35,07;22,22;0;United States;Northern America;"SAE International";"2008-2026";"Aerospace Engineering (Q4)";"Engineering" +23742;21101259043;"Science Talks";journal;"27725693";"Elsevier B.V.";Yes;No;0,173;Q4;8;84;104;1269;70;103;1,78;15,11;45,42;0;Netherlands;Western Europe;"Elsevier B.V.";"2022-2025";"Computer Science (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Computer Science; Materials Science; Physics and Astronomy" +23743;21101342307;"Serdica Mathematical Journal";journal;"13106600, 28155297";"Bulgarian Academy of Sciences, Institute of Mathematics and Informatics";No;No;0,173;Q4;2;25;47;639;15;47;0,31;25,56;12,82;0;Bulgaria;Eastern Europe;"Bulgarian Academy of Sciences, Institute of Mathematics and Informatics";"2021-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23744;18912;"Shengwu Yixue Gongchengxue Zazhi/Journal of Biomedical Engineering";journal;"10015515";"West China Hospital, Sichuan Institute of Biomedical Engineering";No;No;0,173;Q4;16;162;462;0;329;462;0,72;0,00;37,19;0;China;Asiatic Region;"West China Hospital, Sichuan Institute of Biomedical Engineering";"1997-2016, 2020-2025";"Bioengineering (Q4); Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)";"Chemical Engineering; Engineering; Medicine" +23745;8300153129;"Transactions of the Korean Institute of Electrical Engineers";journal;"19758359, 22874364";"Korean Institute of Electrical Engineers";Yes;No;0,173;Q4;14;310;810;4630;223;810;0,32;14,94;24,61;0;South Korea;Asiatic Region;"Korean Institute of Electrical Engineers";"2007-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +23746;21101199355;"Vidnovluvana Energetika";journal;"26648172, 18198058";"Institute of Renewable Energy National Academy of Sciences of Ukraine";No;No;0,173;Q4;6;89;151;2065;68;151;0,56;23,20;29,12;0;Ukraine;Eastern Europe;"Institute of Renewable Energy National Academy of Sciences of Ukraine";"2019-2025";"Control and Systems Engineering (Q4); Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering" +23747;17198;"Vlakna a Textil";journal;"13350617, 25858890";"Slovak University of Technology in Bratislava";Yes;No;0,173;Q4;12;27;103;617;52;103;0,50;22,85;45,45;0;Slovakia;Eastern Europe;"Slovak University of Technology in Bratislava";"1994-2025";"Business and International Management (Q4); Chemical Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Polymers and Plastics (Q4)";"Business, Management and Accounting; Chemical Engineering; Materials Science" +23748;20876;"Wiadomosci Lekarskie";journal;"00435147, 2719342X";"Wydawnictwo ALUNA";No;No;0,173;Q4;22;333;1267;0;693;1267;0,51;0,00;53,80;0;Poland;Eastern Europe;"Wydawnictwo ALUNA";"1960-1990, 1992-2025";"Engineering (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Engineering; Medicine" +23749;17700155820;"WSEAS Transactions on Systems and Control";journal;"22242856, 19918763";"World Scientific and Engineering Academy and Society";Yes;No;0,173;Q4;23;51;190;1132;131;190;0,64;22,20;31,86;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2008-2025";"Artificial Intelligence (Q4); Control and Optimization (Q4); Control and Systems Engineering (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Engineering; Mathematics" +23750;21100980108;"Acta Polytechnica CTU Proceedings";conference and proceedings;"23365382";"Czech Technical University in Prague";Yes;Yes;0,173;-;9;71;501;894;194;473;0,20;12,59;20,12;0;Czech Republic;Eastern Europe;"Czech Technical University in Prague";"2019-2025";"Applied Mathematics; Engineering (miscellaneous); Physics and Astronomy (miscellaneous)";"Engineering; Mathematics; Physics and Astronomy" +23751;19700180519;"Proceedings - International Workshop on Content-Based Multimedia Indexing";conference and proceedings;"19493991";"IEEE Computer Society";No;No;0,173;-;23;0;60;0;25;59;0,42;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2010-2016, 2018-2019, 2021, 2024";"Computer Graphics and Computer-Aided Design; Information Systems";"Computer Science" +23752;19900192579;"Cultura, Lenguaje y Representacion";journal;"23404981, 16977750";"Universitat Jaume I";Yes;Yes;0,172;Q1;11;29;103;1391;31;99;0,23;47,97;60,61;0;Spain;Western Europe;"Universitat Jaume I";"2011-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +23753;21100823789;"Narrative Culture";journal;"21690235, 21690251";"Wayne State University Press";No;No;0,172;Q1;10;12;42;519;28;34;0,88;43,25;61,54;0;United States;Northern America;"Wayne State University Press";"2014-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +23754;21101033326;"RiCognizioni";journal;"23848987";"Universita degli Studi di Torino, Dipartimento di Lingue e Letterature Straniere e Culture Moderne";Yes;Yes;0,172;Q1;3;26;66;770;14;63;0,11;29,62;45,83;0;Italy;Western Europe;"Universita degli Studi di Torino, Dipartimento di Lingue e Letterature Straniere e Culture Moderne";"2019-2026";"Literature and Literary Theory (Q1); History (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +23755;21101032112;"Vestnik Sankt-Peterburgskogo Universiteta Vostokovedenie i Afrikanistika";journal;"25875892, 20741227";"Saint Petersburg State University";No;No;0,172;Q1;3;30;149;722;22;149;0,11;24,07;46,15;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2019-2025";"Literature and Literary Theory (Q1); History (Q2); Linguistics and Language (Q2); Political Science and International Relations (Q3); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +23756;19700174728;"Anuario de Historia de la Iglesia";journal;"21740887, 11330104";"Servicio de Publicaciones de la Universidad de Navarra";Yes;No;0,172;Q2;9;22;88;963;28;66;0,33;43,77;15,00;0;Spain;Western Europe;"Servicio de Publicaciones de la Universidad de Navarra";"1993, 2001-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +23757;21100902550;"Humana Mente";journal;"19721293";"Humana Mente";Yes;Yes;0,172;Q2;10;16;66;928;29;59;0,45;58,00;53,33;0;Italy;Western Europe;"Humana Mente";"2018-2025";"Linguistics and Language (Q2); Philosophy (Q2); History and Philosophy of Science (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +23758;21101303675;"Prilozi za Istrazivanje Hrvatske Filozofske Bastine";journal;"03502791, 18474489";"Institute of Philosophy";No;No;0,172;Q2;2;28;69;695;12;44;0,19;24,82;6,25;0;Croatia;Eastern Europe;"Institute of Philosophy";"2022-2025";"Philosophy (Q2)";"Arts and Humanities" +23759;21101048515;"Revista Iberoamericana de Viticultura Agroindustria y Ruralidad";journal;"07194994";"Institute of Advanced Studies, University of Santiago de Chile";Yes;Yes;0,172;Q2;9;62;136;1501;79;136;0,48;24,21;55,85;0;Chile;Latin America;"Institute of Advanced Studies, University of Santiago de Chile";"2019-2026";"Cultural Studies (Q2); History (Q2); Archeology (Q3); Agronomy and Crop Science (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Food Science (Q4); Horticulture (Q4)";"Agricultural and Biological Sciences; Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +23760;21100204931;"Sistemi Intelligenti";journal;"11209550, 19738226";"Societa Editrice Il Mulino";No;No;0,172;Q2;10;29;119;1682;57;110;0,70;58,00;58,93;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1997-2025";"Linguistics and Language (Q2); Artificial Intelligence (Q4); Cognitive Neuroscience (Q4); Experimental and Cognitive Psychology (Q4)";"Computer Science; Neuroscience; Psychology; Social Sciences" +23761;21100829265;"Bariatric Surgical Practice and Patient Care";journal;"2168023X, 21680248";"Mary Ann Liebert Inc.";No;No;0,172;Q3;19;45;100;1347;31;88;0,29;29,93;42,54;0;United States;Northern America;"Mary Ann Liebert Inc.";"2013-2025";"Medical and Surgical Nursing (Q3); Surgery (Q3); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +23762;21101138628;"Chirurgie (Germany)";journal;"27316971, 2731698X";"Springer Medizin";No;No;0,172;Q3;52;206;643;3585;264;488;0,44;17,40;31,47;1;Germany;Western Europe;"Springer Medizin";"2022-2026";"Surgery (Q3)";"Medicine" +23763;34418;"Geoadria";journal;"18489710, 13312294";"Croatian Geographical Society";Yes;Yes;0,172;Q3;7;4;30;266;17;27;0,73;66,50;50,00;0;Croatia;Eastern Europe;"Croatian Geographical Society";"1996, 1998, 2016-2025";"Demography (Q3); Atmospheric Science (Q4); Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +23764;145444;"Journal of Neonatology";journal;"09732179";"Sage Publications";No;No;0,172;Q3;7;112;220;1988;71;201;0,26;17,75;47,09;0;United States;Northern America;"Sage Publications";"2002-2009, 2011-2026";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +23765;200147104;"Journal of Public and International Affairs";journal;"1070521X";"Princeton University";No;No;0,172;Q3;11;8;29;422;15;26;0,55;52,75;25,00;0;United States;Northern America;"Princeton University";"2005-2014, 2016-2025";"Political Science and International Relations (Q3)";"Social Sciences" +23766;21101082212;"Journal of Research in Clinical Medicine";journal;"27170616";"Tabriz University of Medical Sciences";Yes;Yes;0,172;Q3;5;40;108;1220;56;104;0,53;30,50;28,65;1;Iran;Middle East;"Tabriz University of Medical Sciences";"2020-2026";"Emergency Medicine (Q3); Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4); Geriatrics and Gerontology (Q4); Internal Medicine (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +23767;27231;"Klinichescheskaya Laboratornaya Diagnostika";journal;"08692084, 24121320";"Joint Stock Company "EKOlab"";No;No;0,172;Q3;15;119;297;3550;176;297;0,46;29,83;72,05;0;Russian Federation;Eastern Europe;"Joint Stock Company "EKOlab"";"1993-2026";"Medical Laboratory Technology (Q3); Biochemistry (medical) (Q4); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine" +23768;21100825825;"Pediatric Traumatology, Orthopaedics and Reconstructive Surgery";journal;"23093994, 24108731";"Eco-Vector LLC";Yes;No;0,172;Q3;9;42;142;1477;42;139;0,35;35,17;41,12;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2013-2025";"Pediatrics, Perinatology and Child Health (Q3); Surgery (Q3); Orthopedics and Sports Medicine (Q4)";"Medicine" +23769;26759;"Acta Medica Bulgarica";journal;"03241750";"";Yes;Yes;0,172;Q4;8;67;178;1624;85;178;0,48;24,24;55,31;0;Poland;Eastern Europe;"";"1975-1976, 1978-1987, 2001-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +23770;19700174812;"Acta Silvatica et Lignaria Hungarica";journal;"1787064X, 1786691X";"University of West Hungary Press";Yes;No;0,172;Q4;18;3;24;99;16;24;1,00;33,00;20,00;0;Hungary;Eastern Europe;"University of West Hungary Press";"2009-2025";"Forestry (Q4)";"Agricultural and Biological Sciences" +23771;21100889855;"Advances in Computational Design";journal;"23838477, 24660523";"Techno-Press";Yes;No;0,172;Q4;19;22;56;1152;47;56;0,66;52,36;16,67;0;South Korea;Asiatic Region;"Techno-Press";"2016-2026";"Computational Mathematics (Q4); Computational Mechanics (Q4); Computer Graphics and Computer-Aided Design (Q4)";"Computer Science; Engineering; Mathematics" +23772;22442;"Annales de Cardiologie et d'Angeiologie";journal;"17683181, 00033928";"Elsevier Masson s.r.l.";No;No;0,172;Q4;22;67;237;1252;83;229;0,35;18,69;40,18;0;France;Western Europe;"Elsevier Masson s.r.l.";"1968-2026";"Cardiology and Cardiovascular Medicine (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +23773;12100155635;"Anuario do Instituto de Geociencias";journal;"19823908, 01019759";"Universidade Federal do Rio de Janeiro - UFRJ";Yes;Yes;0,172;Q4;19;41;156;1732;76;154;0,45;42,24;31,45;0;Brazil;Latin America;"Universidade Federal do Rio de Janeiro - UFRJ";"2004-2026";"Development (Q4); Economic Geology (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Geology (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +23774;33094;"Bodenkultur";journal;"00065471, 27195430";"De Gruyter Open Ltd.";Yes;Yes;0,172;Q4;23;8;29;616;25;29;1,06;77,00;33,33;0;Germany;Western Europe;"De Gruyter Open Ltd.";"1974, 1976-1977, 1979-1981, 1983-1985, 1987-1988, 1993-2025";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +23775;20008;"Chinese Journal of Psychiatry";journal;"10067884";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,172;Q4;10;100;253;4299;129;248;0,38;42,99;52,81;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1998-1999, 2019-2026";"Biological Psychiatry (Q4); Clinical Psychology (Q4); Cognitive Neuroscience (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience; Psychology" +23776;27815;"Die Kuste";journal;"04527739";"";No;No;0,172;Q4;16;0;27;0;21;27;0,23;0,00;0,00;0;Germany;Western Europe;"";"1973, 1975, 1977, 1979-2014, 2016-2017, 2019-2024";"Ocean Engineering (Q4); Oceanography (Q4)";"Earth and Planetary Sciences; Engineering" +23777;56455;"Hrvatski Geografski Glasnik";journal;"13315854";"Croatian Geographical Society";Yes;Yes;0,172;Q4;15;13;33;830;21;33;0,61;63,85;12,00;0;Croatia;Eastern Europe;"Croatian Geographical Society";"1998-2001, 2003-2025";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +23778;17300154986;"ICIC Express Letters";journal;"1881803X";"ICIC International";No;No;0,172;Q4;27;155;461;2826;305;459;0,60;18,23;26,36;0;Japan;Asiatic Region;"ICIC International";"2009-2026";"Computer Science (miscellaneous) (Q4); Control and Systems Engineering (Q4)";"Computer Science; Engineering" +23779;21101067153;"Inra Productions Animales";journal;"2273774X, 22737766";"Institut national de recherche pour l'agriculture, l'alimentation et l'environnement (INRAE)";Yes;No;0,172;Q4;36;25;73;1588;36;73;0,46;63,52;57,94;0;France;Western Europe;"Institut national de recherche pour l'agriculture, l'alimentation et l'environnement (INRAE)";"2017-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +23780;21100896488;"International Journal of Business Intelligence Research";journal;"19473605, 19473591";"IGI Global Publishing";No;No;0,172;Q4;10;2;7;80;12;7;1,67;40,00;50,00;0;United States;Northern America;"IGI Global Publishing";"2018-2025";"Information Systems and Management (Q4); Management Information Systems (Q4); Statistics, Probability and Uncertainty (Q4)";"Business, Management and Accounting; Decision Sciences" +23781;21100893581;"International Journal of Childbirth";journal;"21565295, 21565287";"Springer Publishing Company";No;No;0,172;Q4;9;18;77;726;35;73;0,35;40,33;78,33;0;United States;Northern America;"Springer Publishing Company";"2014, 2018-2025";"Maternity and Midwifery (Q4); Obstetrics and Gynecology (Q4)";"Medicine; Nursing" +23782;21100349535;"International Journal of Economics and Business Research";journal;"17569869, 17569850";"Inderscience";No;No;0,172;Q4;17;47;183;2718;173;183;1,20;57,83;50,51;0;Switzerland;Western Europe;"Inderscience";"2014-2025";"Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +23783;4000149611;"International Journal of Rotating Machinery";journal;"15423034, 1023621X";"John Wiley and Sons Ltd";Yes;No;0,172;Q4;44;4;22;113;18;22;1,00;28,25;28,57;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1994-2002, 2004, 2006-2026";"Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +23784;21100818743;"International Journal of the Cardiovascular Academy";journal;"2405819X";"Galenos Publishing House";Yes;Yes;0,172;Q4;3;28;59;566;30;56;0,65;20,21;27,12;0;Turkey;Middle East;"Galenos Publishing House";"2015-2016, 2020-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +23785;21100396322;"International Journal of Trade and Global Markets";journal;"1742755X, 17427541";"Inderscience";No;No;0,172;Q4;19;32;136;1843;92;135;0,66;57,59;48,48;0;Switzerland;Western Europe;"Inderscience";"2014-2025";"Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +23786;4700153003;"International Journal of Work Organisation and Emotion";journal;"17408946, 17408938";"Inderscience Enterprises Ltd";No;No;0,172;Q4;22;20;62;1487;63;62;0,86;74,35;53,70;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2025";"Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +23787;21100828656;"Iranian Journal of Plant Physiology";journal;"23222808, 22285512";"Islamic Azad University";No;No;0,172;Q4;14;20;104;763;58;104;0,37;38,15;33,87;0;Iran;Middle East;"Islamic Azad University";"2016-2025";"Genetics (Q4); Physiology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +23788;21101066337;"Iraqi Journal of Applied Physics";journal;"18132065, 23091673";"American Quality for Scientific Publishing, Inc.";No;No;0,172;Q4;9;86;252;2490;155;250;0,60;28,95;45,65;0;Iraq;Middle East;"American Quality for Scientific Publishing, Inc.";"2019-2026";"Electronic, Optical and Magnetic Materials (Q4); Physical and Theoretical Chemistry (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +23789;14600154705;"Isi Bilimi Ve Teknigi Dergisi/ Journal of Thermal Science and Technology";journal;"13003615";"Turk Isi Bilimi ve Teknigi Dernegi";No;No;0,172;Q4;16;22;63;1209;47;63;0,74;54,95;25,45;0;Turkey;Middle East;"Turk Isi Bilimi ve Teknigi Dernegi";"2008-2013, 2015-2025";"Atomic and Molecular Physics, and Optics (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science; Physics and Astronomy" +23790;19474;"Journal of Beijing Institute of Technology (English Edition)";journal;"10040579";"Beijing Institute of Technology";No;No;0,172;Q4;17;38;166;1430;116;166;0,74;37,63;27,98;0;China;Asiatic Region;"Beijing Institute of Technology";"1994-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +23791;11900154330;"Journal of Biological Research (Greece)";journal;"1790045X, 22415793";"Aristotle University of Thessaloniki";Yes;No;0,172;Q4;30;3;31;164;21;29;0,78;54,67;45,00;0;Greece;Western Europe;"Aristotle University of Thessaloniki";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +23792;32853;"Journal of Information Processing";journal;"18826652";"Information Processing Society of Japan";No;No;0,172;Q4;27;119;302;3241;177;264;0,51;27,24;16,78;0;Japan;Asiatic Region;"Information Processing Society of Japan";"1979-1992, 2008-2026";"Computer Science (miscellaneous) (Q4)";"Computer Science" +23793;26622;"Journal of Optoelectronics and Advanced Materials";journal;"14544164";"National Institute of Optoelectronics";Yes;No;0,172;Q4;56;65;216;2278;125;216;0,59;35,05;33,85;0;Romania;Eastern Europe;"National Institute of Optoelectronics";"1999-2025";"Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +23794;21100207204;"Journal of Research in Education Sciences";journal;"2073753X";"National Taiwan Normal University";Yes;No;0,172;Q4;12;38;99;2480;53;99;0,55;65,26;50,59;0;Taiwan;Asiatic Region;"National Taiwan Normal University";"2009-2025";"Education (Q4)";"Social Sciences" +23795;17394;"Journal of the South African Institution of Civil Engineering";journal;"23098775, 10212019";"South African Institute of Civil Engineers";Yes;Yes;0,172;Q4;24;12;52;507;38;52;0,40;42,25;26,92;0;South Africa;Africa;"South African Institute of Civil Engineers";"1993-1995, 2003-2025";"Civil and Structural Engineering (Q4)";"Engineering" +23796;21101184661;"Jurnal Optimasi Sistem Industri";journal;"20884842, 24428795";"Andalas University Faculty of Engineering";Yes;Yes;0,172;Q4;7;20;47;975;46;47;1,06;48,75;42,59;0;Indonesia;Asiatic Region;"Andalas University Faculty of Engineering";"2019-2025";"Industrial and Manufacturing Engineering (Q4); Management Science and Operations Research (Q4); Safety, Risk, Reliability and Quality (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Engineering" +23797;16851;"Manuelle Medizin";journal;"14330466, 00252514";"Springer Verlag";No;No;0,172;Q4;17;46;116;961;53;88;0,51;20,89;37,21;0;Germany;Western Europe;"Springer Verlag";"1973-2026";"Complementary and Alternative Medicine (Q4); Complementary and Manual Therapy (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Medicine" +23798;10900153313;"Mathematics in Computer Science";journal;"16618289, 16618270";"Birkhauser Verlag Basel";No;No;0,172;Q4;29;13;77;424;45;66;0,73;32,62;27,78;0;Switzerland;Western Europe;"Birkhauser Verlag Basel";"2007-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4)";"Computer Science; Mathematics" +23799;21100465408;"Medical Journal of Indonesia";journal;"22528083, 08531773";"Faculty of Medicine, Universitas Indonesia";Yes;No;0,172;Q4;19;43;129;1064;60;114;0,36;24,74;45,90;0;Indonesia;Asiatic Region;"Faculty of Medicine, Universitas Indonesia";"1994-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +23800;21101152597;"Medicina Clinica y Social";journal;"25212281";"Faculty of Medical Sciences, Santa Rosa del Aguaray Branch, National University of Asuncion";Yes;Yes;0,172;Q4;5;30;109;886;57;97;0,63;29,53;65,87;0;Paraguay;Latin America;"Faculty of Medical Sciences, Santa Rosa del Aguaray Branch, National University of Asuncion";"2019-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +23801;23238;"Nautilus";journal;"00281344";"Bailey-Matthews Shell Museum";No;No;0,172;Q4;21;28;36;1629;11;33;0,40;58,18;41,94;0;United States;Northern America;"Bailey-Matthews Shell Museum";"1966, 1996-2015, 2017-2026";"Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +23802;4700152709;"Progress in Industrial Ecology";journal;"14788764, 14768917";"Inderscience Enterprises Ltd";No;No;0,172;Q4;27;15;50;847;31;50;0,33;56,47;33,33;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2010, 2012-2020, 2022-2025";"Development (Q4); Ecology (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4); Waste Management and Disposal (Q4)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +23803;21101088417;"Science and Technology of Food Industry";journal;"10020306";"";Yes;No;0,172;Q4;16;1128;3773;51680;3119;3773;0,93;45,82;49,19;0;China;Asiatic Region;"";"2019-2026";"Food Science (Q4)";"Agricultural and Biological Sciences" +23804;24895;"Southwestern Naturalist";journal;"00384909, 19436262";"Southwestern Association of Naturalists";No;No;0,172;Q4;38;47;113;2004;40;113;0,27;42,64;30,49;1;United States;Northern America;"Southwestern Association of Naturalists";"1979, 1981-1986, 1994-2025";"Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +23805;20500195022;"Tecnologia y Ciencias del Agua";journal;"01878336, 20072422";"Instituto Mexicano de Tecnologia del Agua";Yes;Yes;0,172;Q4;18;60;181;2728;76;181;0,40;45,47;33,89;0;Mexico;Latin America;"Instituto Mexicano de Tecnologia del Agua";"2010-2026";"Civil and Structural Engineering (Q4); Water Science and Technology (Q4)";"Engineering; Environmental Science" +23806;21100395051;"Ukrainian Biochemical Journal";journal;"24094943, 24135003";"Palladin Institute of Biochemistry of the National Academy of Sciences of Ukraine (NASU)";Yes;Yes;0,172;Q4;23;65;179;2999;139;176;0,83;46,14;65,05;0;Ukraine;Eastern Europe;"Palladin Institute of Biochemistry of the National Academy of Sciences of Ukraine (NASU)";"2013-2025";"Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology" +23807;21100466246;"Veterinary Record Case Reports";journal;"20526121";"John Wiley and Sons Inc";No;No;0,172;Q4;11;350;776;8035;240;771;0,29;22,96;55,42;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2013-2026";"Veterinary (miscellaneous) (Q4)";"Veterinary" +23808;20300195054;"Proceedings - International Conference on Machine Learning and Cybernetics";conference and proceedings;"21601348, 2160133X";"IEEE Computer Society";No;No;0,172;-;26;88;245;1476;111;237;0,41;16,77;32,62;0;United States;Northern America;"IEEE Computer Society";"2011-2016, 2018-2024";"Artificial Intelligence; Computational Theory and Mathematics; Computer Networks and Communications; Human-Computer Interaction";"Computer Science" +23809;21101238411;"Proceedings of the International Symposium on Symbolic and Algebraic Computation, ISSAC";conference and proceedings;"15321029";"Association for Computing Machinery";No;No;0,172;-;42;0;55;0;33;53;0,60;0,00;0,00;0;United States;Northern America;"Association for Computing Machinery";"1989, 1991-1994, 1996-2019, 2024";"Mathematics (miscellaneous)";"Mathematics" +23810;5700160810;"Boundary 2";journal;"01903659, 15272141";"Duke University Press";No;No;0,171;Q1;34;8;114;292;47;101;0,52;36,50;28,57;0;United States;Northern America;"Duke University Press";"2002-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23811;21100832763;"Brumal";journal;"20147910";"Universitat Autonoma de Barcelona";Yes;Yes;0,171;Q1;7;39;89;1399;27;89;0,22;35,87;32,50;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2017-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +23812;21101121713;"Journal of Popular Romance Studies";journal;"21594473";"International Association for the Study of Popular Romance";Yes;Yes;0,171;Q1;3;10;58;306;23;30;0,36;30,60;66,67;0;United States;Northern America;"International Association for the Study of Popular Romance";"2019-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Music (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +23813;21101145389;"Brill's Studies in Historical Linguistics";book series;"22114904";"Brill Academic Publishers";No;No;0,171;Q2;5;0;60;0;7;6;0,06;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2017, 2019-2024, 2026";"Linguistics and Language (Q2)";"Social Sciences" +23814;21100301414;"Casopis za Suvremenu Povijest";journal;"05909597, 18489079";"Hrvatski Institut za Povijest";No;No;0,171;Q2;6;18;59;847;16;58;0,32;47,06;15,00;0;Croatia;Eastern Europe;"Hrvatski Institut za Povijest";"2001, 2013-2025";"History (Q2)";"Arts and Humanities" +23815;21101021864;"Compilation and Translation Review";journal;"20714858, 20714866";"National Academy for Educational Research";No;No;0,171;Q2;4;12;33;573;12;33;0,14;47,75;66,67;0;Taiwan;Asiatic Region;"National Academy for Educational Research";"2019-2025";"Linguistics and Language (Q2); Education (Q4)";"Social Sciences" +23816;21101057633;"Critical Ethnic Studies";journal;"23735031, 2373504X";"University of Minnesota Press";No;No;0,171;Q2;2;0;51;0;8;48;0,15;0,00;0,00;0;United States;Northern America;"University of Minnesota Press";"2020-2024";"Cultural Studies (Q2); Anthropology (Q3); Gender Studies (Q3); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +23817;21101196453;"Eludamos";journal;"18666124";"Septentrio Academic Publishing";Yes;Yes;0,171;Q2;5;24;27;1077;21;23;0,48;44,88;35,71;0;Norway;Western Europe;"Septentrio Academic Publishing";"2020-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Communication (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +23818;21100451199;"Erasmus Journal for Philosophy and Economics";journal;"18769098";"EIPE, Erasmus University Rotterdam";Yes;Yes;0,171;Q2;14;5;81;192;24;79;0,36;38,40;0,00;0;Netherlands;Western Europe;"EIPE, Erasmus University Rotterdam";"2008-2013, 2015-2025";"Philosophy (Q2); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Arts and Humanities; Economics, Econometrics and Finance" +23819;5800157999;"Hispania";journal;"21536414, 00182133";"John Hopkins University";No;No;0,171;Q2;21;35;252;1736;85;239;0,43;49,60;52,83;0;United States;Northern America;"John Hopkins University";"2010-2025";"Linguistics and Language (Q2); Education (Q4)";"Social Sciences" +23820;21101090013;"Journal of Confucian Philosophy and Culture";journal;"27341356, 1598267X";"Sungkyunkwan University, Institute of Confucian Philosophy and Culture (ICPC)";Yes;Yes;0,171;Q2;5;14;45;525;26;44;0,57;37,50;41,67;0;South Korea;Asiatic Region;"Sungkyunkwan University, Institute of Confucian Philosophy and Culture (ICPC)";"2019-2025";"Cultural Studies (Q2); Philosophy (Q2)";"Arts and Humanities; Social Sciences" +23821;21101169076;"Korean Linguistics";journal;"02573784, 22129731";"John Benjamins Publishing Company";No;No;0,171;Q2;3;7;23;350;10;21;0,36;50,00;71,43;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2022-2025";"Linguistics and Language (Q2)";"Social Sciences" +23822;16100154729;"Laval Theologique et Philosophique";journal;"00239054";"";No;No;0,171;Q2;9;30;71;644;7;65;0,11;21,47;23,53;0;Canada;Northern America;"";"2002-2025";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +23823;21100851349;"Metodicki Ogledi";journal;"18482325, 0353765X";"Croatian Philosophical Society";No;No;0,171;Q2;5;13;72;456;14;68;0,19;35,08;74,07;0;Croatia;Eastern Europe;"Croatian Philosophical Society";"2017-2025";"Philosophy (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +23824;19900191874;"Musica Hodie";journal;"16763939";"Universidade Federal de Goias";Yes;Yes;0,171;Q2;7;65;132;2709;66;130;0,27;41,68;54,62;0;Brazil;Latin America;"Universidade Federal de Goias";"2010-2016, 2018-2026";"Music (Q2)";"Arts and Humanities" +23825;21101321300;"Pedagogical Linguistics";journal;"2665959X, 26659581";"John Benjamins Publishing Company";No;No;0,171;Q2;3;22;17;973;13;17;0,76;44,23;51,28;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2023-2026";"Linguistics and Language (Q2); Education (Q4)";"Social Sciences" +23826;21101272906;"Quranica";journal;"22895396";"University of Malaya";No;No;0,171;Q2;3;58;125;2220;24;125;0,23;38,28;22,52;0;Malaysia;Asiatic Region;"University of Malaya";"2020-2025";"Cultural Studies (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +23827;24328;"Revista de Indias";journal;"00348341, 19883188";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,171;Q2;19;15;90;786;28;89;0,20;52,40;38,46;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1980, 1983, 1985-1987, 1996-2025";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23828;19600157014;"Soviet and Post Soviet Review";journal;"18763324, 10751262";"Brill Academic Publishers";No;No;0,171;Q2;12;20;43;1409;13;33;0,21;70,45;55,56;0;Netherlands;Western Europe;"Brill Academic Publishers";"1974-1977, 1979, 1981, 1983-1984, 1987-1990, 1992-2000, 2007, 2009-2026";"History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23829;5800212650;"Trans";journal;"11372311";"Universidad de Malaga";Yes;Yes;0,171;Q2;10;11;41;361;7;41;0,17;32,82;66,67;0;Spain;Western Europe;"Universidad de Malaga";"1996, 1998-2001, 2003-2006, 2008-2010, 2012-2021, 2023-2025";"Linguistics and Language (Q2)";"Social Sciences" +23830;21100463174;"Ural-Altaic Studies";journal;"20791003";"Institute of Linguistics RAS, Department of Ural-Altaic languages";No;No;0,171;Q2;7;17;68;1137;10;68;0,16;66,88;75,86;0;Russian Federation;Eastern Europe;"Institute of Linguistics RAS, Department of Ural-Altaic languages";"2015-2025";"Linguistics and Language (Q2)";"Social Sciences" +23831;17300154814;"Worldviews: Environment, Culture, Religion";journal;"13635247, 15685357";"Brill Academic Publishers";No;No;0,171;Q2;22;11;33;635;11;31;0,47;57,73;10,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1997-2025";"Cultural Studies (Q2); Philosophy (Q2); Religious Studies (Q2); Ecology (Q4); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)";"Arts and Humanities; Environmental Science; Social Sciences" +23832;21101023830;"Acta Marisiensis - Seria Medica";journal;"26687763, 26687755";"Sciendo";Yes;No;0,171;Q3;6;57;125;1484;67;124;0,53;26,04;57,61;0;Poland;Eastern Europe;"Sciendo";"2020-2025";"Dentistry (miscellaneous) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)";"Dentistry; Pharmacology, Toxicology and Pharmaceutics" +23833;13038;"Cleveland State Law Review";journal;"00098876";"Cleveland-Marshall College of Law";No;No;0,171;Q3;8;24;89;6471;25;89;0,30;269,63;45,83;0;United States;Northern America;"Cleveland-Marshall College of Law";"1974-1975, 1980, 1982-1983, 1990, 1995, 1997, 1999, 2001, 2016-2025";"Law (Q3)";"Social Sciences" +23834;4800156303;"CyberGeo";journal;"12783366";"Geographie-Cites";Yes;Yes;0,171;Q3;21;14;91;832;35;83;0,22;59,43;40,00;0;France;Western Europe;"Geographie-Cites";"1997-1998, 2000-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +23835;21100942373;"International Arbitration Law Review";journal;"13678272";"Thomson Reuters";No;No;0,171;Q3;3;20;53;1112;6;52;0,17;55,60;40,00;0;United States;Northern America;"Thomson Reuters";"2019-2025";"Law (Q3); Political Science and International Relations (Q3)";"Social Sciences" +23836;21101151616;"International Journal of Health, Wellness, and Society";journal;"21569053, 21568960";"Common Ground Research Networks";No;No;0,171;Q3;4;26;63;1291;24;61;0,28;49,65;64,41;0;United States;Northern America;"Common Ground Research Networks";"2019-2025";"Social Sciences (miscellaneous) (Q3); Health (social science) (Q4); Physiology (medical) (Q4)";"Medicine; Social Sciences" +23837;21100893318;"Journal of Digital and Social Media Marketing";journal;"20500084, 20500076";"Henry Stewart Publications";No;No;0,171;Q3;10;29;98;1511;80;86;0,81;52,10;46,15;0;United Kingdom;Western Europe;"Henry Stewart Publications";"2018-2025";"Communication (Q3); Marketing (Q4)";"Business, Management and Accounting; Social Sciences" +23838;21100427196;"Journal of Orofacial Sciences";journal;"09758844, 23204737";"Wolters Kluwer Medknow Publications";Yes;Yes;0,171;Q3;12;27;75;676;31;69;0,49;25,04;59,04;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2015-2025";"Oral Surgery (Q3); Orthodontics (Q3)";"Dentistry" +23839;21101268457;"Journal of Pediatric Critical Care";journal;"23496592, 24557099";"Wolters Kluwer Health Inc";Yes;Yes;0,171;Q3;5;60;166;1205;53;136;0,41;20,08;48,86;0;United States;Northern America;"Wolters Kluwer Health Inc";"2020-2025";"Pediatrics, Perinatology and Child Health (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +23840;21100396382;"Materiali per una Storia della Cultura Giuridica";journal;"2612209X, 11209607";"Societa Editrice Il Mulino";No;No;0,171;Q3;6;32;86;2012;14;84;0,19;62,88;42,86;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2015-2025";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23841;21101278622;"Nefroloji Hemsireligi Dergisi";journal;"21477728";"Turk Nefroloji Diyaliz ve Transplantasyon Hemsireleri Dernegi";Yes;No;0,171;Q3;4;28;53;789;23;44;0,39;28,18;80,00;0;Turkey;Middle East;"Turk Nefroloji Diyaliz ve Transplantasyon Hemsireleri Dernegi";"2021-2026";"Health Professions (miscellaneous) (Q3); Advanced and Specialized Nursing (Q4); Nephrology (Q4)";"Health Professions; Medicine; Nursing" +23842;21100868099;"Plaridel";journal;"16562534";"University of the Philippines, College of Mass Communication";No;No;0,171;Q3;6;10;63;628;26;60;0,39;62,80;30,77;0;Philippines;Asiatic Region;"University of the Philippines, College of Mass Communication";"2018-2025";"Communication (Q3)";"Social Sciences" +23843;21100898955;"Praxis Educativa";journal;"18094031, 18094309";"Universidade Estadual de Ponta Grossa, Editora";Yes;Yes;0,171;Q3;10;90;321;3748;91;313;0,34;41,64;51,46;0;Brazil;Latin America;"Universidade Estadual de Ponta Grossa, Editora";"2017-2026";"Social Sciences (miscellaneous) (Q3); Education (Q4)";"Social Sciences" +23844;21101264296;"Przeglad Prawa Rolnego";journal;"18977626, 27197026";"Adam Mickiewicz University Faculty of Law and Administration";Yes;Yes;0,171;Q3;4;25;79;520;15;77;0,16;20,80;34,78;0;Poland;Eastern Europe;"Adam Mickiewicz University Faculty of Law and Administration";"2020-2025";"Law (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Public Administration (Q4)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +23845;7200153148;"Revista Brasileira de Gestao e Desenvolvimento Regional";journal;"1809239X";"Universidade de Taubate";Yes;No;0,171;Q3;10;57;170;2170;42;160;0,23;38,07;41,10;0;Brazil;Latin America;"Universidade de Taubate";"2007-2026";"Sociology and Political Science (Q3); Urban Studies (Q3); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Environmental Science; Social Sciences" +23846;21101210852;"Revista Brasileira de Pesquisa em Turismo";journal;"19826125";"Associacao Nacional de Pesquisa e Pos-Graduacao em Turismo - ANPTUR";Yes;Yes;0,171;Q3;6;20;101;1063;69;98;0,55;53,15;43,90;0;Brazil;Latin America;"Associacao Nacional de Pesquisa e Pos-Graduacao em Turismo - ANPTUR";"2021-2025";"Social Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +23847;21101152724;"Revista de la Facultad de Derecho y Ciencias Politicas";journal;"01203886, 23900016";"Universidad Pontificia Bolivariana";Yes;Yes;0,171;Q3;3;8;71;295;19;71;0,36;36,88;22,22;0;Colombia;Latin America;"Universidad Pontificia Bolivariana";"2019-2025";"Law (Q3)";"Social Sciences" +23848;21100229170;"Revista Portuguesa de Estudos Regionais";journal;"1645586X";"APEQ - Associacao Portuguesa para o Estudo do Quaternario";Yes;Yes;0,171;Q3;10;21;97;1234;43;96;0,38;58,76;46,67;0;Portugal;Western Europe;"APEQ - Associacao Portuguesa para o Estudo do Quaternario";"2012-2025";"Sociology and Political Science (Q3); Urban Studies (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +23849;21100945266;"Science and Innovation";journal;"24099066, 24134996";"Publishing House Akademperiodyka";No;No;0,171;Q3;13;57;149;1718;148;149;1,09;30,14;52,14;0;Ukraine;Eastern Europe;"Publishing House Akademperiodyka";"2014-2026";"Law (Q3); Computer Science Applications (Q4); Engineering (miscellaneous) (Q4); Information Systems and Management (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering; Social Sciences" +23850;33188;"Vjesnik Arheoloskog Muzeja u Zagrebu";journal;"03507165, 18491561";"Archaeological museum in Zagreb";Yes;Yes;0,171;Q3;6;5;29;466;14;29;0,53;93,20;50,00;0;Croatia;Eastern Europe;"Archaeological museum in Zagreb";"1979, 1981, 2014-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +23851;21101090011;"Akademik Gida";journal;"2148015X, 13047582";"Sidas Medya A.S.";No;No;0,171;Q4;9;29;129;1416;108;129;0,80;48,83;67,09;0;Turkey;Middle East;"Sidas Medya A.S.";"2019-2025";"Food Science (Q4)";"Agricultural and Biological Sciences" +23852;95387;"Avocetta";journal;"24209589, 04044266";"Centro Italiano Studi Ornitologici";Yes;Yes;0,171;Q4;11;14;41;570;20;37;0,48;40,71;27,12;0;Italy;Western Europe;"Centro Italiano Studi Ornitologici";"1996, 2008-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +23853;21100239850;"Bulletin de l'Institut Scientifique, Section Sciences de la Terre";journal;"11146834";"Universite Mohammed V de Rabat - Institut Scientifique";Yes;Yes;0,171;Q4;11;7;26;235;19;26;0,53;33,57;36,84;0;Morocco;Africa;"Universite Mohammed V de Rabat - Institut Scientifique";"2012-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +23854;34808;"Chirurgia Narzadow Ruchu i Ortopedia Polska - Polish Orthopaedics";journal;"0009479X, 29564719";"Exemplum Scientific Publishing House";Yes;Yes;0,171;Q4;13;26;73;576;29;71;0,44;22,15;16,35;0;Poland;Eastern Europe;"Exemplum Scientific Publishing House";"1952-2014, 2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +23855;21100432148;"DFI Journal";journal;"19375247, 19375255";"";No;No;0,171;Q4;12;13;37;252;17;31;0,32;19,38;5,88;0;United Kingdom;Western Europe;"";"2014-2025";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering" +23856;21100890137;"International Journal of Business Continuity and Risk Management";journal;"17582164, 17582172";"Inderscience";No;No;0,171;Q4;10;21;61;1016;58;61;1,15;48,38;41,18;0;Switzerland;Western Europe;"Inderscience";"2016-2025";"Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences; Mathematics" +23857;12100154817;"International Journal of Wireless and Mobile Computing";journal;"17411092, 17411084";"Inderscience Enterprises Ltd";No;No;0,171;Q4;23;71;230;2221;150;230;0,61;31,28;36,52;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2026";"Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +23858;21101187078;"Iranian Journal of Forest";journal;"20086113, 24234435";"Iranian Society of Forestry";Yes;No;0,171;Q4;6;47;104;2013;48;104;0,55;42,83;25,74;0;Iran;Middle East;"Iranian Society of Forestry";"2019-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4)";"Agricultural and Biological Sciences" +23859;21101277902;"Iron Steel Vanadium Titanium";journal;"10047638";"Pangang Group Research Institute Co Ltd";No;No;0,171;Q4;6;130;512;3001;228;512;0,50;23,08;33,62;0;China;Asiatic Region;"Pangang Group Research Institute Co Ltd";"2021-2025";"Environmental Science (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Environmental Science; Materials Science" +23860;58077;"Jixie Kexue Yu Jishu/Mechanical Science and Technology for Aerospace Engineering";journal;"10038728";"";No;No;0,171;Q4;12;249;805;5107;370;805;0,42;20,51;28,89;0;China;Asiatic Region;"";"2001-2003, 2020-2026";"Aerospace Engineering (Q4); Automotive Engineering (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +23861;21100211315;"Journal fur Kulturpflanzen";journal;"18670938, 18670911";"Julius Kuhn-Institut Federal Research Center for Cultivated Plants";Yes;Yes;0,171;Q4;13;33;99;1963;36;75;0,42;59,48;43,26;0;Germany;Western Europe;"Julius Kuhn-Institut Federal Research Center for Cultivated Plants";"2010-2026";"Agronomy and Crop Science (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +23862;21101134662;"Journal of Agriculture Faculty of Ege University";journal;"10188851, 25481207";"Ege Universitesi";Yes;Yes;0,171;Q4;5;40;161;1594;87;161;0,57;39,85;48,19;0;Turkey;Middle East;"Ege Universitesi";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +23863;21100228317;"Journal of Ceramic Science and Technology";journal;"21909385";"Goller Verlag";No;No;0,171;Q4;30;27;35;1107;30;35;0,82;41,00;36,36;0;Germany;Western Europe;"Goller Verlag";"2010-2026";"Ceramics and Composites (Q4)";"Materials Science" +23864;21101051694;"Journal of Iranian Medical Council";journal;"2645338X, 26453398";"Islamic Republic of Iran Medical Council";No;No;0,171;Q4;7;102;270;3253;103;248;0,33;31,89;53,91;0;Iran;Middle East;"Islamic Republic of Iran Medical Council";"2018-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +23865;20500195068;"Journal of Microwaves, Optoelectronics and Electromagnetic Applications";journal;"21791074";"Sociedade Brasileira de Microondas e Optoeletronica (SBMO)";Yes;Yes;0,171;Q4;24;28;106;834;79;106;0,68;29,79;18,18;0;Brazil;Latin America;"Sociedade Brasileira de Microondas e Optoeletronica (SBMO)";"2011-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +23866;21101054300;"Journal of Nutrition and Food Security";journal;"24767425, 24767417";"Shahid Sadoughi University of Medical Sciences";Yes;Yes;0,171;Q4;12;63;214;2178;121;209;0,56;34,57;52,73;0;Iran;Middle East;"Shahid Sadoughi University of Medical Sciences";"2016-2026";"Food Science (Q4); Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4); Public Health, Environmental and Occupational Health (Q4)";"Agricultural and Biological Sciences; Medicine; Nursing" +23867;21101337812;"Journal of Transformative Technologies and Sustainable Development";journal;"30593336";"Springer";No;No;0,171;Q4;10;20;27;711;26;27;1,64;35,55;38,78;0;Singapore;Asiatic Region;"Springer";"2025-2026";"Biomedical Engineering (Q4); Biotechnology (Q4); Mechanical Engineering (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering" +23868;21101055928;"Meat Technology";journal;"24664812, 25604295";"Institute of Meat Hygiene and Technology";Yes;Yes;0,171;Q4;9;115;142;2944;97;141;0,70;25,60;59,44;0;Serbia;Eastern Europe;"Institute of Meat Hygiene and Technology";"2019-2025";"Applied Microbiology and Biotechnology (Q4); Food Animals (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology; Veterinary" +23869;20000195095;"Meta: Avaliacao";journal;"21752753";"Fundacao Cesgranrio";Yes;Yes;0,171;Q4;8;26;131;841;38;131;0,35;32,35;56,86;0;Brazil;Latin America;"Fundacao Cesgranrio";"2009-2025";"Education (Q4)";"Social Sciences" +23870;21100425711;"Nuclear and Particle Physics Proceedings";journal;"24056014";"Elsevier B.V.";No;No;0,171;Q4;83;0;215;0;81;205;0,40;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2015-2024";"Nuclear and High Energy Physics (Q4)";"Physics and Astronomy" +23871;21100829181;"Procedia Environmental Science, Engineering and Management";journal;"23929545, 23929537";"Ecozone, OAIMDD";Yes;No;0,171;Q4;14;138;275;2753;192;275;1,04;19,95;47,10;0;Romania;Eastern Europe;"Ecozone, OAIMDD";"2014-2025";"Environmental Science (miscellaneous) (Q4)";"Environmental Science" +23872;21100332207;"Revista Colombiana de Matematicas";journal;"00347426, 23574100";"Universidad Nacional de Colombia";Yes;Yes;0,171;Q4;10;10;38;212;25;38;0,48;21,20;3,85;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2014-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23873;12100155918;"Revista Lusofona de Educacao";journal;"1646401X, 16457250";"University of Lusophone Humanities and Technology";Yes;No;0,171;Q4;13;51;113;1455;53;97;0,51;28,53;63,96;0;Portugal;Western Europe;"University of Lusophone Humanities and Technology";"2008-2025";"Education (Q4)";"Social Sciences" +23874;21101298939;"Revista Romana de Informatica si Automatica";journal;"12201758, 18414303";"National Institute for R and D in Informatics";Yes;No;0,171;Q4;8;24;120;568;77;120;0,69;23,67;32,20;0;Romania;Eastern Europe;"National Institute for R and D in Informatics";"2021-2025";"Computer Science (miscellaneous) (Q4)";"Computer Science" +23875;21101039251;"Rossiiskii Oftal'mologicheskii Zhurnal";journal;"25875760, 20720076";"Real Time Ltd.";Yes;Yes;0,171;Q4;9;106;332;2941;124;332;0,46;27,75;60,00;0;Russian Federation;Eastern Europe;"Real Time Ltd.";"2019-2025";"Ophthalmology (Q4)";"Medicine" +23876;20765;"Shuju Caiji Yu Chuli/Journal of Data Acquisition and Processing";journal;"10049037";"Nanjing University of Aeronautics an Astronautics";Yes;No;0,171;Q4;20;122;367;4092;266;360;0,82;33,54;33,17;0;China;Asiatic Region;"Nanjing University of Aeronautics an Astronautics";"2001-2025";"Signal Processing (Q4); Software (Q4)";"Computer Science" +23877;21101184779;"Solvent Extraction Research and Development, Japan";journal;"21884765, 13417215";"Japan Association of Solvent Extraction";No;No;0,171;Q4;25;11;38;227;18;37;0,50;20,64;29,55;0;Japan;Asiatic Region;"Japan Association of Solvent Extraction";"1996-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +23878;21101158559;"Sudan Journal of Medical Sciences";journal;"18585051";"Knowledge E";Yes;Yes;0,171;Q4;5;51;155;1583;87;137;0,60;31,04;33,33;0;United Arab Emirates;Middle East;"Knowledge E";"2022-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +23879;21101298324;"Synthetic Biology Journal";journal;"20968280, 20976364";"Materials China";No;No;0,171;Q4;6;82;150;8591;160;150;1,07;104,77;41,89;0;China;Asiatic Region;"Materials China";"2023-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Bioengineering (Q4); Biotechnology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +23880;21101174248;"touchREVIEWS in Neurology";journal;"27525465";"Touch Medical Media";No;No;0,171;Q4;6;10;51;536;28;33;0,67;53,60;46,67;0;United Kingdom;Western Europe;"Touch Medical Media";"2021-2025";"Neurology (Q4); Neurology (clinical) (Q4); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience" +23881;145236;"AISTech - Iron and Steel Technology Conference Proceedings";conference and proceedings;"15516997";"Association for Iron and Steel Technology, AISTECH";No;No;0,171;-;18;310;720;3261;113;717;0,18;10,52;13,66;0;United States;Northern America;"Association for Iron and Steel Technology, AISTECH";"2004-2007, 2009-2025";"Industrial and Manufacturing Engineering";"Engineering" +23882;20600195633;"International Conference on Advanced Technologies for Communications";conference and proceedings;"21621020, 21621039";"IEEE Computer Society";No;No;0,171;-;23;122;359;2158;180;347;0,40;17,69;23,04;0;United States;Northern America;"IEEE Computer Society";"2011-2013, 2015-2025";"Computer Networks and Communications; Hardware and Architecture; Software";"Computer Science" +23883;21100198514;"Proceedings of IEEE Pacific Rim International Symposium on Dependable Computing, PRDC";conference and proceedings;"15410110";"IEEE Computer Society";No;No;0,171;-;24;26;122;631;65;111;0,37;24,27;15,58;0;United States;Northern America;"IEEE Computer Society";"2000-2002, 2011-2014, 2017-2025";"Computational Theory and Mathematics; Computer Science Applications; Hardware and Architecture; Software";"Computer Science" +23884;21100325436;"Vibroengineering Procedia";conference and proceedings;"23450533";"EXTRICA";No;No;0,171;-;17;212;507;3110;308;489;0,58;14,67;24,69;0;Lithuania;Eastern Europe;"EXTRICA";"2013-2025";"Control and Systems Engineering; Electrical and Electronic Engineering; Materials Science (miscellaneous); Mechanical Engineering; Multidisciplinary; Ocean Engineering";"Engineering; Materials Science; Multidisciplinary" +23885;21101188226;"Acta Universitatis Lodziensis. Folia Litteraria Polonica";journal;"15059057, 23531908";"Lodz University";Yes;Yes;0,170;Q1;1;45;69;1941;6;69;0,09;43,13;65,12;0;Poland;Eastern Europe;"Lodz University";"2023-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +23886;19700176307;"Asian Ethnology";journal;"18826865";"Nanzan University";Yes;Yes;0,170;Q1;20;0;50;0;23;42;0,27;0,00;0,00;0;Japan;Asiatic Region;"Nanzan University";"1946, 1987-1993, 2008-2024";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Religious Studies (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +23887;21101145676;"Estudios Latinoamericanos";journal;"01373080";"The Polish Society for Latin American Studies";No;No;0,170;Q1;4;0;24;0;5;23;0,07;0,00;0,00;0;Poland;Eastern Europe;"The Polish Society for Latin American Studies";"2019-2024";"Literature and Literary Theory (Q1); History (Q2); Anthropology (Q3); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +23888;21101253663;"Fol'klor: Struktura, Tipologiia, Semiotika";journal;"26585294";"Russian State University for the Humanities";No;No;0,170;Q1;3;29;81;471;13;74;0,20;16,24;58,62;0;Russian Federation;Eastern Europe;"Russian State University for the Humanities";"2020-2025";"Literature and Literary Theory (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +23889;21100922993;"FORUM (The Netherlands)";journal;"15987647, 2451909X";"John Benjamins Publishing Company";No;No;0,170;Q1;5;14;47;651;17;46;0,63;46,50;50,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +23890;5800207582;"Journal of Germanic Linguistics";journal;"14753014, 14705427";"Cambridge University Press";No;No;0,170;Q1;19;18;35;1029;20;31;0,43;57,17;51,85;0;United Kingdom;Western Europe;"Cambridge University Press";"2001-2007, 2009-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +23891;21101039872;"Medievalia";journal;"20148410, 02113473";"Universitat Autonoma de Barcelona";Yes;Yes;0,170;Q1;2;9;49;430;13;47;0,33;47,78;37,50;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2019-2026";"Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +23892;5800207781;"Revista de Filologia Alemana";journal;"11330406, 19882823";"Universidad Complutense Madrid";Yes;Yes;0,170;Q1;6;9;25;261;1;25;0,06;29,00;55,56;0;Spain;Western Europe;"Universidad Complutense Madrid";"1996-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +23893;5600152881;"Human Affairs";journal;"12103055, 1337401X";"Walter de Gruyter GmbH";No;No;0,170;Q2;23;39;117;1673;64;110;0,66;42,90;46,97;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1991-2026";"Philosophy (Q2); Law (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23894;16300154790;"International Journal of Systematic Theology";journal;"14631652, 14682400";"Wiley-Blackwell Publishing Ltd";No;No;0,170;Q2;21;46;80;2306;25;80;0,17;50,13;22,73;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1999-2026";"Religious Studies (Q2)";"Arts and Humanities" +23895;5700166926;"Journal of Cold War Studies";journal;"15313298, 15203972";"MIT Press";No;No;0,170;Q2;20;27;81;2087;54;54;0,53;77,30;25,00;0;United States;Northern America;"MIT Press";"2000, 2002-2004, 2007-2009, 2011-2025";"History (Q2); Political Science and International Relations (Q3)";"Arts and Humanities; Social Sciences" +23896;16300154727;"Pensamiento";journal;"00314749";"Universidad Pontificia Comillas de Madrid";Yes;Yes;0,170;Q2;9;47;294;2047;34;281;0,05;43,55;29,27;0;Spain;Western Europe;"Universidad Pontificia Comillas de Madrid";"2002-2025";"Philosophy (Q2)";"Arts and Humanities" +23897;21101060899;"Bali Journal of Anesthesiology";journal;"25492276";"Wolters Kluwer Medknow Publications";Yes;Yes;0,170;Q3;5;48;146;1006;56;130;0,39;20,96;41,78;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2017-2025";"Emergency Medicine (Q3); Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4); Critical Care Nursing (Q4); Emergency Nursing (Q4)";"Medicine; Nursing" +23898;21101257830;"Chinese Journal of Aerospace Medicine";journal;"10076239";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,170;Q3;2;61;182;1552;18;182;0,10;25,44;45,73;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2025";"Embryology (Q3); Nursing (miscellaneous) (Q4); Oncology (Q4)";"Medicine; Nursing" +23899;14008;"Hrvatska Revija Za Rehabilitacijska Istrazivanja";journal;"13313010";"University of Zagreb, Faculty of Education and Rehabilitation Sciences";Yes;Yes;0,170;Q3;13;21;64;926;40;62;0,19;44,10;76,00;0;Croatia;Eastern Europe;"University of Zagreb, Faculty of Education and Rehabilitation Sciences";"1999-2006, 2008-2025";"Social Sciences (miscellaneous) (Q3); Education (Q4); Health (social science) (Q4); Rehabilitation (Q4)";"Medicine; Social Sciences" +23900;21100856146;"IPPR Progressive Review";journal;"25732331, 25732323";"John Wiley and Sons Inc";No;No;0,170;Q3;11;6;130;75;45;96;0,38;12,50;60,00;1;United States;Northern America;"John Wiley and Sons Inc";"2017-2026";"Political Science and International Relations (Q3); Sociology and Political Science (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +23901;21101152866;"Lentera Hukum";journal;"23554673, 26213710";"University of Jember";Yes;No;0,170;Q3;8;11;44;726;65;42;1,48;66,00;51,85;0;Indonesia;Asiatic Region;"University of Jember";"2019-2025";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23902;15600;"Neuropsychiatrie de l'Enfance et de l'Adolescence";journal;"02229617, 17696615";"Elsevier Masson s.r.l.";No;No;0,170;Q3;22;60;154;2406;61;147;0,31;40,10;59,70;0;France;Western Europe;"Elsevier Masson s.r.l.";"1979-2026";"Pediatrics, Perinatology and Child Health (Q3); Developmental and Educational Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +23903;5600152869;"Novos Estudos CEBRAP";journal;"01013300, 19805403";"Centro Brasileiro de Analise e Planejamento";Yes;Yes;0,170;Q3;26;19;76;736;39;76;0,47;38,74;57,69;0;Brazil;Latin America;"Centro Brasileiro de Analise e Planejamento";"2007-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +23904;74390;"Palpu Chongi Gisul/Journal of Korea Technical Association of the Pulp and Paper Industry";journal;"02533200";"Korean Technical Assoc. of the Pulp and Paper Industry";No;No;0,170;Q3;16;51;170;1682;75;170;0,50;32,98;34,23;0;South Korea;Asiatic Region;"Korean Technical Assoc. of the Pulp and Paper Industry";"2000-2025";"Media Technology (Q3); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Chemistry; Engineering; Materials Science" +23905;21100244950;"Rassegna Italiana di Criminologia";journal;"11211717, 22408053";"Pensa MultiMedia";No;No;0,170;Q3;12;21;94;1025;33;91;0,35;48,81;58,33;0;Italy;Western Europe;"Pensa MultiMedia";"2013-2025";"Law (Q3)";"Social Sciences" +23906;21101264436;"Rwanda Public Health Bulletin";journal;"26634643, 26634651";"Rwanda Biomedical Centre (RBC)";No;No;0,170;Q3;5;23;53;421;20;37;0,40;18,30;29,17;5;Rwanda;Africa;"Rwanda Biomedical Centre (RBC)";"2020-2025";"Health Professions (miscellaneous) (Q3)";"Health Professions" +23907;21101219658;"Sosyoekonomi";journal;"13055577";"Sosyoekonomi Society";No;No;0,170;Q3;8;100;275;5957;171;275;0,61;59,57;35,98;0;Turkey;Middle East;"Sosyoekonomi Society";"2020-2026";"Social Sciences (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +23908;19408;"Actualites Pharmaceutiques";journal;"05153700";"Elsevier Masson s.r.l.";No;No;0,170;Q4;7;184;560;1853;39;442;0,06;10,07;51,94;0;France;Western Europe;"Elsevier Masson s.r.l.";"1961, 1963, 1996-2026";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +23909;21100967532;"Annals of HPB Surgery";journal;"19955464, 24089524";"VIDAR Publishing House";No;No;0,170;Q4;7;43;158;841;46;152;0,30;19,56;29,77;0;Russian Federation;Eastern Europe;"VIDAR Publishing House";"2019-2025";"Gastroenterology (Q4); Hepatology (Q4); Surgery (Q4)";"Medicine" +23910;21100853533;"Asthma Allergy Immunology";journal;"13089234";"";No;No;0,170;Q4;6;53;123;1307;61;107;0,52;24,66;62,07;0;Turkey;Middle East;"";"2014-2016, 2019-2025";"Immunology (Q4); Immunology and Allergy (Q4); Pulmonary and Respiratory Medicine (Q4)";"Immunology and Microbiology; Medicine" +23911;18200156711;"Bangladesh Journal of Pharmacology";journal;"1991007X, 19910088";"Bangladesh Pharmacological Society";Yes;Yes;0,170;Q4;34;25;60;820;36;42;0,63;32,80;51,79;0;Bangladesh;Asiatic Region;"Bangladesh Pharmacological Society";"2009-2025";"Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +23912;21100369411;"Bulletin of the South Ural State University, Series: Mathematical Modelling, Programming and Computer Software";journal;"20710216, 23080256";"South Ural State University";No;No;0,170;Q4;16;26;110;531;44;110;0,21;20,42;26,67;0;Russian Federation;Eastern Europe;"South Ural State University";"2014-2026";"Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Modeling and Simulation (Q4); Software (Q4)";"Computer Science; Mathematics" +23913;21101044919;"China Economist";journal;"16738837";"China Economist editorial department";No;No;0,170;Q4;8;29;95;1163;52;94;0,42;40,10;31,88;0;China;Asiatic Region;"China Economist editorial department";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +23914;21483;"Chinese Journal of Pathology";journal;"05295807";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,170;Q4;19;226;845;5294;246;841;0,27;23,42;53,23;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1985-2026";"Medicine (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4)";"Medicine" +23915;19324;"Chinese Journal of Surgery";journal;"05295815";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,170;Q4;21;148;467;3998;236;466;0,54;27,01;27,22;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1957, 1959-1964, 1979-2016, 2019-2026";"Surgery (Q4)";"Medicine" +23916;20000195079;"Commentationes Mathematicae Universitatis Carolinae";journal;"00102628, 12137243";"Charles University, Faculty of Mathematics and Physics";Yes;No;0,170;Q4;29;0;72;0;14;72;0,25;0,00;0,00;0;Czech Republic;Eastern Europe;"Charles University, Faculty of Mathematics and Physics";"1996-2024";"Mathematics (miscellaneous) (Q4)";"Mathematics" +23917;21101254067;"Ecopersia";journal;"23222700, 25382152";"Tarbiat Modares University";Yes;Yes;0,170;Q4;6;24;84;1171;60;84;0,59;48,79;35,56;0;Iran;Middle East;"Tarbiat Modares University";"2015, 2021-2025";"Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +23918;21101176024;"GeoFocus";journal;"15785157";"";Yes;Yes;0,170;Q4;4;13;38;578;16;34;0,40;44,46;47,62;0;Spain;Western Europe;"";"2019-2025";"Environmental Engineering (Q4); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science; Social Sciences" +23919;21992;"Herpetological Review";journal;"0018084X";"Society for the Study of Amphibians and Reptiles";No;No;0,170;Q4;39;3;70;0;11;35;0,07;0,00;30,00;0;United States;Northern America;"Society for the Study of Amphibians and Reptiles";"1988, 1996-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +23920;3300147408;"IEEJ Transactions on Fundamentals and Materials";journal;"13475533, 03854205";"The Institute of Electrical Engineers of Japan";No;No;0,170;Q4;25;75;235;1019;34;222;0,17;13,59;10,16;0;Japan;Asiatic Region;"The Institute of Electrical Engineers of Japan";"1972-1989, 2003-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +23921;21100305250;"Indian Journal of Geo-Marine Sciences";journal;"25826727, 25826506";"National Institute of Science Communication and Policy Research";Yes;No;0,170;Q4;45;0;237;0;125;237;0,33;0,00;0,00;0;India;Asiatic Region;"National Institute of Science Communication and Policy Research";"2007-2010, 2012-2024";"Oceanography (Q4)";"Earth and Planetary Sciences" +23922;21100394268;"International Journal of Advanced Operations Management";journal;"1758938X, 17589398";"Inderscience Enterprises Ltd";No;No;0,170;Q4;18;20;39;1215;51;39;1,84;60,75;32,50;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2011, 2014-2025";"Management Science and Operations Research (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Decision Sciences" +23923;21100239240;"Journal of Chinese Institute of Food Science and Technology";journal;"10097848";"Chinese Institute of Food Science and Technology";No;No;0,170;Q4;17;474;1565;20285;1316;1565;0,87;42,80;48,50;0;China;Asiatic Region;"Chinese Institute of Food Science and Technology";"2013-2025";"Food Science (Q4)";"Agricultural and Biological Sciences" +23924;21101251253;"Journal of Diabetology";journal;"20787685, 25433288";"Wolters Kluwer Medknow Publications";Yes;Yes;0,170;Q4;8;56;204;2037;80;177;0,37;36,38;36,75;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2020-2026";"Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +23925;17211;"Journal of Diagnostic Medical Sonography";journal;"15525430, 87564793";"SAGE Publications Inc.";No;No;0,170;Q4;24;118;280;2096;114;213;0,40;17,76;48,46;0;United States;Northern America;"SAGE Publications Inc.";"1985-2026";"Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine" +23926;21101038735;"Journal of Evolutionary Studies in Business";journal;"23857137";"Universitat de Barcelona, Facultad de Economia y Empresa";Yes;Yes;0,170;Q4;8;13;49;839;43;49;0,68;64,54;52,63;1;Spain;Western Europe;"Universitat de Barcelona, Facultad de Economia y Empresa";"2019-2025";"Business and International Management (Q4); Development (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +23927;21101385355;"Journal of Trauma Studies in Education";journal;"28321731, 28321723";"Appalachian State University, Center for Appalachian Studies";No;No;0,170;Q4;5;26;70;1338;44;64;0,49;51,46;79,73;0;United States;Northern America;"Appalachian State University, Center for Appalachian Studies";"2022-2025";"Education (Q4)";"Social Sciences" +23928;12378;"Key Engineering Materials";book series;"10139826, 16629795";"Trans Tech Publications Ltd";No;No;0,170;Q4;67;382;2567;7114;1569;946;0,62;18,62;26,04;0;Switzerland;Western Europe;"Trans Tech Publications Ltd";"1982, 1986-1989, 1991, 1994-2026";"Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +23929;21101211210;"Lesnoy Zhurnal";journal;"05361036";"Northern Arctic Federal University named after M V Lomonosov";Yes;Yes;0,170;Q4;4;88;177;2724;60;177;0,34;30,95;40,00;0;Russian Federation;Eastern Europe;"Northern Arctic Federal University named after M V Lomonosov";"2023-2025";"Forestry (Q4)";"Agricultural and Biological Sciences" +23930;21101058816;"Nanobiotechnology Reports";journal;"26351684, 26351676";"Pleiades Publishing";No;No;0,170;Q4;30;107;461;4255;256;452;0,56;39,77;47,14;0;United States;Northern America;"Pleiades Publishing";"2021-2025";"Bioengineering (Q4); Biomedical Engineering (Q4); Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Engineering; Materials Science; Physics and Astronomy" +23931;12288;"Nonlinear Optics Quantum Optics";journal;"15430537, 19448325";"Old City Publishing";No;No;0,170;Q4;24;39;122;1364;67;122;0,40;34,97;28,99;0;United States;Northern America;"Old City Publishing";"2003-2025";"Atomic and Molecular Physics, and Optics (Q4); Computer Science (miscellaneous) (Q4); Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4); Statistical and Nonlinear Physics (Q4)";"Computer Science; Materials Science; Physics and Astronomy" +23932;21100929724;"Palliative Medicine in Practice";journal;"25450425, 25451359";"Via Medica";Yes;Yes;0,170;Q4;9;41;102;1416;75;87;0,89;34,54;61,40;0;Poland;Eastern Europe;"Via Medica";"2018-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +23933;21101257956;"Physical Therapy Journal of Indonesia";journal;"27220125, 27226034";"Udayana University";No;No;0,170;Q4;5;41;102;1397;47;102;0,43;34,07;46,28;0;Indonesia;Asiatic Region;"Udayana University";"2020-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions" +23934;19700186895;"Progress in Superconductivity and Cryogenics (PSAC)";journal;"22876251, 12293008";"Korea Institute of Applied Superconductivity and Cryogenics";No;No;0,170;Q4;10;20;106;368;26;106;0,20;18,40;16,07;0;South Korea;Asiatic Region;"Korea Institute of Applied Superconductivity and Cryogenics";"2009-2025";"Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science" +23935;12100157171;"Psychiatria";journal;"17329841, 17334594";"Via Medica";No;No;0,170;Q4;11;9;75;363;28;68;0,38;40,33;56,41;0;Poland;Eastern Europe;"Via Medica";"2008-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +23936;21101169100;"RUDN Journal of Medicine";journal;"23130261, 23130245";"RUDN University";Yes;Yes;0,170;Q4;5;40;117;1844;62;117;0,58;46,10;61,27;0;Russian Federation;Eastern Europe;"RUDN University";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +23937;19700174650;"Rynek Energii";journal;"14255960";"Kaprint";Yes;No;0,170;Q4;18;23;214;610;66;214;0,39;26,52;27,69;0;Poland;Eastern Europe;"Kaprint";"2008-2025";"Energy (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)";"Energy; Mathematics" +23938;21101274394;"Sakarya University Journal of Science";journal;"13014048, 2147835X";"Sakarya University";Yes;Yes;0,170;Q4;10;59;359;2385;246;359;0,67;40,42;42,15;0;Turkey;Middle East;"Sakarya University";"2020-2025";"Atomic and Molecular Physics, and Optics (Q4); Nuclear and High Energy Physics (Q4)";"Physics and Astronomy" +23939;21100206210;"Scopus: Journal of East African Ornithology";journal;"23131799, 02504162";"Bird Committee of the East Africa Natural History Society";Yes;No;0,170;Q4;7;0;30;0;4;17;0,00;0,00;0,00;0;Kenya;Africa;"Bird Committee of the East Africa Natural History Society";"2009-2011, 2013-2024";"Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23940;28607;"South African Journal of Obstetrics and Gynaecology";journal;"23058862, 00382329";"South African Medical Association";Yes;No;0,170;Q4;13;7;32;122;15;27;0,40;17,43;50,00;0;South Africa;Africa;"South African Medical Association";"1968, 1970-1972, 1999-2025";"Obstetrics and Gynecology (Q4)";"Medicine" +23941;21100874739;"Systemes d'Information et Management";journal;"12604984, 22717188";"Editions ESKA";No;No;0,170;Q4;8;5;52;317;27;40;0,28;63,40;50,00;0;France;Western Europe;"Editions ESKA";"2018-2025";"Management Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting" +23942;24973;"Vestnik Dermatologii i Venerologii";journal;"00424609, 23136294";"Russian Society for Dermatologists and Cosmetologists";Yes;No;0,170;Q4;8;54;164;1860;84;164;0,50;34,44;68,79;0;Russian Federation;Eastern Europe;"Russian Society for Dermatologists and Cosmetologists";"1950, 1957-1995, 2019-2025";"Dermatology (Q4); Infectious Diseases (Q4)";"Medicine" +23943;21100218015;"Vibrations in Physical Systems";journal;"08606897";"Poznan University of Technology";No;No;0,170;Q4;9;37;167;743;55;167;0,33;20,08;29,07;0;Poland;Eastern Europe;"Poznan University of Technology";"2012, 2014, 2016-2025";"Civil and Structural Engineering (Q4); Computational Mechanics (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +23944;20884;"Virologie";journal;"12678694, 19506961";"John Libbey";No;No;0,170;Q4;13;49;121;1432;62;93;0,60;29,22;42,40;0;France;Western Europe;"John Libbey";"1997-2025";"Infectious Diseases (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +23945;21100218356;"CEUR Workshop Proceedings";conference and proceedings;"16130073";"CEUR-WS";Yes;No;0,170;-;74;3278;16206;75155;6194;14769;0,40;22,93;33,14;0;Germany;Western Europe;"CEUR-WS";"1989, 1994-1995, 1998, 2000-2025";"Computer Science (miscellaneous)";"Computer Science" +23946;19534;"INTELEC, International Telecommunications Energy Conference (Proceedings)";conference and proceedings;"02750473";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,170;-;47;45;96;652;54;94;0,56;14,49;13,86;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1979, 1981-1990, 1992-2014, 2016-2019, 2024-2025";"Electrical and Electronic Engineering; Energy Engineering and Power Technology";"Energy; Engineering" +23947;21100901430;"Proceedings - European Council for Modelling and Simulation, ECMS";conference and proceedings;"25222414";"European Council for Modelling and Simulation";No;No;0,170;-;11;95;208;1791;115;202;0,53;18,85;26,75;0;Germany;Western Europe;"European Council for Modelling and Simulation";"2018-2025";"Modeling and Simulation";"Mathematics" +23948;21101052918;"Proceedings of the International Ship Control Systems Symposium";conference and proceedings;"26318741";"Institute of Marine Engineering, Science and Technology";No;No;0,170;-;5;0;62;0;38;60;0,78;0,00;0,00;0;United Kingdom;Western Europe;"Institute of Marine Engineering, Science and Technology";"2018, 2020, 2022, 2024";"Control and Systems Engineering; Electrical and Electronic Engineering; Human-Computer Interaction; Ocean Engineering";"Computer Science; Engineering" +23949;21100944571;"Al-'Arabiyya";journal;"23754036, 08898731";"Georgetown University Press";No;No;0,169;Q1;4;7;18;332;9;15;0,50;47,43;50,00;0;United States;Northern America;"Georgetown University Press";"2019-2021, 2023-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +23950;18615;"Renaissance Quarterly";journal;"19350236, 00344338";"University of Chicago Press";No;No;0,169;Q1;29;21;72;1957;48;72;0,54;93,19;50,00;0;United States;Northern America;"University of Chicago Press";"1967-1969, 1971-1972, 1975-1979, 1981-1985, 1987-1991, 1993-1994, 1996, 1998-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); History (Q2)";"Arts and Humanities" +23951;19600166215;"Tydskrif vir Letterkunde";journal;"23099070, 0041476X";"Tydskrif vir Letterkunde Association";Yes;No;0,169;Q1;10;25;83;858;17;77;0,20;34,32;62,50;0;South Africa;Africa;"Tydskrif vir Letterkunde Association";"2008-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +23952;27739;"Atenea";journal;"07161840, 07180462";"Universidad de Concepcion";Yes;Yes;0,169;Q2;10;51;85;1319;15;81;0,10;25,86;53,85;0;Chile;Latin America;"Universidad de Concepcion";"1979, 1984, 2000-2001, 2007-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +23953;21101102040;"Baltic Worlds";journal;"20017308, 20002955";"Sodertorn University Centre for Baltic and East European Studies";Yes;Yes;0,169;Q2;6;46;144;1852;32;104;0,30;40,26;73,17;0;Sweden;Western Europe;"Sodertorn University Centre for Baltic and East European Studies";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +23954;22290;"Business and Professional Ethics Journal";journal;"21537828, 02772027";"Philosophy Documentation Center";No;No;0,169;Q2;7;5;53;373;29;50;0,59;74,60;12,50;0;United States;Northern America;"Philosophy Documentation Center";"1979, 1985, 1990-1993, 1996, 1998-1999, 2001, 2012, 2018-2025";"Philosophy (Q2); Business and International Management (Q4); Economics and Econometrics (Q4)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance" +23955;21100891787;"Ecclesial Practices";journal;"22144471, 22144463";"Brill Academic Publishers";No;No;0,169;Q2;10;0;44;0;9;38;0,27;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2024";"Religious Studies (Q2)";"Arts and Humanities" +23956;21101333306;"Historical Searches";journal;"27441180, 18403875";"University of Sarajevo - Institute of History";No;No;0,169;Q2;2;13;25;547;8;22;0,39;42,08;36,36;0;Bosnia and Herzegovina;Eastern Europe;"University of Sarajevo - Institute of History";"2021-2025";"History (Q2)";"Arts and Humanities" +23957;5600156881;"Intellectual Discourse";journal;"22895639, 01284878";"International Islamic University Malaysia";Yes;No;0,169;Q2;15;45;73;1998;42;66;0,58;44,40;42,86;0;Malaysia;Asiatic Region;"International Islamic University Malaysia";"2011-2026";"Philosophy (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +23958;14000155247;"Intellectual History Review";journal;"17496977, 17496985";"Routledge";No;No;0,169;Q2;18;37;109;2559;58;102;0,48;69,16;30,56;0;United Kingdom;Western Europe;"Routledge";"2008, 2010-2026";"History (Q2); History and Philosophy of Science (Q3)";"Arts and Humanities" +23959;19700175233;"Journal for the Liberal Arts and Sciences";journal;"21673756";"School of Education,Oakland City University";No;No;0,169;Q2;5;0;18;0;24;18;1,33;0,00;0,00;0;United States;Northern America;"School of Education,Oakland City University";"2009-2017, 2019-2021, 2023";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +23960;5800208548;"Journal of Early Christian Studies";journal;"10863184, 10676341";"Johns Hopkins University Press";No;No;0,169;Q2;34;16;61;1854;37;61;0,50;115,88;15,38;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +23961;21101199905;"Kroatologija";journal;"18478050, 18489117";"University of Zagreb Faculty of Croatian Studies";Yes;Yes;0,169;Q2;2;23;76;750;12;72;0,15;32,61;37,93;0;Croatia;Eastern Europe;"University of Zagreb Faculty of Croatian Studies";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); History (Q2); Philosophy (Q2)";"Arts and Humanities" +23962;21100273223;"Revista de Investigacion en Logopedia";journal;"21745218";"Universidad de Castilla la Mancha";Yes;Yes;0,169;Q2;10;37;96;2513;43;96;0,42;67,92;70,64;0;Spain;Western Europe;"Universidad de Castilla la Mancha";"2011-2026";"Linguistics and Language (Q2); Speech and Hearing (Q4)";"Health Professions; Social Sciences" +23963;21100205956;"Studia Historica, Historia Moderna";journal;"02132079, 23863889";"Ediciones Universidad de Salamanca";Yes;Yes;0,169;Q2;10;32;87;1809;32;84;0,32;56,53;32,26;0;Spain;Western Europe;"Ediciones Universidad de Salamanca";"2001, 2011-2025";"History (Q2)";"Arts and Humanities" +23964;21101051701;"Transitions: Journal of Transient Migration";journal;"23977159, 23977140";"Intellect Ltd.";No;No;0,169;Q2;8;16;16;1020;12;16;0,70;63,75;62,96;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2026";"Cultural Studies (Q2); Demography (Q3); Gender Studies (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +23965;12100154831;"Universum";journal;"0716498X, 07182376";"Universidad de Talca";Yes;Yes;0,169;Q2;17;18;115;603;46;107;0,36;33,50;40,00;0;Chile;Latin America;"Universidad de Talca";"2008-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +23966;21101196157;"Zapiski Historyczne";journal;"24498637, 00441791";"Towarzystwo Naukowe w Toruniu";Yes;Yes;0,169;Q2;2;23;66;1009;12;65;0,21;43,87;29,17;0;Poland;Eastern Europe;"Towarzystwo Naukowe w Toruniu";"2019-2025";"History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +23967;21101186926;"Actualidad Civil";journal;"02137100, 22549412";"Karnov Group";No;No;0,169;Q3;3;36;159;1338;11;120;0,03;37,17;42,86;0;United Kingdom;Western Europe;"Karnov Group";"2019-2026";"Law (Q3)";"Social Sciences" +23968;21100838801;"African Evaluation Journal";journal;"23065133, 23104988";"AOSIS (Pty) Ltd";Yes;No;0,169;Q3;12;6;54;233;37;50;0,41;38,83;43,75;0;South Africa;Africa;"AOSIS (Pty) Ltd";"2017-2025";"Sociology and Political Science (Q3); Development (Q4)";"Social Sciences" +23969;19700170197;"Anthropology in Action";journal;"0967201X, 17522285";"Berghahn Journals";Yes;Yes;0,169;Q3;16;0;48;0;26;44;0,25;0,00;0,00;0;United Kingdom;Western Europe;"Berghahn Journals";"2011-2024";"Anthropology (Q3)";"Social Sciences" +23970;21100219313;"Asian Journal of WTO and International Health Law and Policy";journal;"18195164";"National Taiwan University (IEEB)";No;No;0,169;Q3;11;14;37;462;20;35;0,57;33,00;46,15;0;Taiwan;Asiatic Region;"National Taiwan University (IEEB)";"2009-2012, 2016-2025";"Law (Q3); Political Science and International Relations (Q3); Economics and Econometrics (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Economics, Econometrics and Finance; Medicine; Social Sciences" +23971;22934;"Chinese Pharmaceutical Journal";journal;"10012494";"Chinese Pharmaceutical Association";No;No;0,169;Q3;23;313;883;10567;593;883;0,81;33,76;49,65;0;China;Asiatic Region;"Chinese Pharmaceutical Association";"1993-2025";"Pharmaceutical Science (Q3); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +23972;22962;"Interciencia";journal;"22447776, 03781844";"Interciencia Association";Yes;No;0,169;Q3;42;80;264;2711;142;227;0,53;33,89;30,80;0;Venezuela;Latin America;"Interciencia Association";"1979, 1981-1982, 1986, 1993, 1996-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +23973;21101283808;"Jurnal Online Informatika";journal;"25281682, 25279165";"";Yes;No;0,169;Q3;6;40;91;1422;102;91;1,08;35,55;31,73;0;Indonesia;Asiatic Region;"";"2022-2025";"Media Technology (Q3); Artificial Intelligence (Q4); Computer Science (miscellaneous) (Q4); Information Systems (Q4)";"Computer Science; Engineering" +23974;20461;"Public Law";journal;"00333565, 2754219X";"Sweet and Maxwell-Thomson Reuters";No;No;0,169;Q3;4;10;79;200;43;53;0,51;20,00;42,86;0;United Kingdom;Western Europe;"Sweet and Maxwell-Thomson Reuters";"1967, 1976, 1982-1983, 1988, 1992, 2022-2025";"Law (Q3)";"Social Sciences" +23975;20546;"Ratio Juris";journal;"14679337, 09521917";"Basil Blackwell";No;No;0,169;Q3;18;15;61;577;43;61;0,49;38,47;27,27;0;United Kingdom;Western Europe;"Basil Blackwell";"1988-1995, 2004, 2011-2025";"Law (Q3)";"Social Sciences" +23976;21101274781;"Revista de Fisica Medica";journal;"15766632";"";No;No;0,169;Q3;2;6;31;104;6;25;0,22;17,33;30,77;0;Spain;Western Europe;"";"2021-2025";"Health Professions (miscellaneous) (Q3); Radiation (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine; Physics and Astronomy" +23977;21101315872;"Revista Juridica Digital Uandes";journal;"07197942";"University of the Andes";Yes;No;0,169;Q3;2;3;43;196;9;43;0,24;65,33;33,33;0;Chile;Latin America;"University of the Andes";"2021-2025";"Law (Q3)";"Social Sciences" +23978;100147340;"Socialism and Democracy";journal;"08854300, 17452635";"Taylor and Francis Ltd.";No;No;0,169;Q3;21;14;75;238;35;66;0,26;17,00;8,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-1992, 1995-1997, 1999-2002, 2004-2026";"Sociology and Political Science (Q3)";"Social Sciences" +23979;19900192427;"Academic Journal of Manufacturing Engineering";journal;"15837904";"Editura Politechnica";No;No;0,169;Q4;14;29;188;689;131;188;0,81;23,76;38,27;0;Romania;Eastern Europe;"Editura Politechnica";"2010-2011, 2013-2025";"Industrial and Manufacturing Engineering (Q4)";"Engineering" +23980;21100819201;"Arab Journal of Plant Protection";journal;"24125407, 0255982X";"Arab Society for Plant Protection";No;No;0,169;Q4;9;59;177;1788;68;177;0,38;30,31;25,77;0;Lebanon;Middle East;"Arab Society for Plant Protection";"2017-2025";"Agronomy and Crop Science (Q4); Ecology (Q4); Horticulture (Q4); Insect Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +23981;21100336102;"Atti della Societa Toscana di Scienze Naturali, Memorie Serie B";journal;"03657450";"Graphics Pacini Editore";Yes;No;0,169;Q4;18;3;21;103;9;20;0,36;34,33;25,00;0;Italy;Western Europe;"Graphics Pacini Editore";"1995-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +23982;19700183144;"Australian Geomechanics Journal";journal;"08189110";"Australian Geomechanics Society";No;No;0,169;Q4;24;35;84;792;23;77;0,23;22,63;16,05;0;Australia;Pacific Region;"Australian Geomechanics Society";"2000-2025";"Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +23983;17323;"Bothalia";journal;"23119284, 00068241";"South African National Biodiversity Institute";Yes;Yes;0,169;Q4;29;3;35;115;29;35;1,00;38,33;22,22;0;South Africa;Africa;"South African National Biodiversity Institute";"1978, 1993-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +23984;12928;"Control and Cybernetics";journal;"03248569";"Sciendo";No;No;0,169;Q4;43;0;67;0;35;63;0,42;0,00;0,00;0;Poland;Eastern Europe;"Sciendo";"1996-2024";"Applied Mathematics (Q4); Control and Systems Engineering (Q4); Modeling and Simulation (Q4)";"Engineering; Mathematics" +23985;20126;"Ekonomicky Casopis";journal;"00133035";"Institute of Geography of the Slovak Academy of Science";Yes;No;0,169;Q4;22;20;85;860;50;85;0,65;43,00;32,08;0;Slovakia;Eastern Europe;"Institute of Geography of the Slovak Academy of Science";"1978-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +23986;5400152702;"Estudos de Psicologia (Natal)";journal;"16784669, 1413294X";"Universidade Federal do Rio Grande do Norte";Yes;No;0,169;Q4;18;0;129;0;53;127;0,35;0,00;0,00;0;Brazil;Latin America;"Universidade Federal do Rio Grande do Norte";"2006-2024";"Psychology (miscellaneous) (Q4)";"Psychology" +23987;21101023213;"Exercise Science";journal;"12261726, 23840544";"Korean Society of Exercise Physiology";Yes;Yes;0,169;Q4;8;52;170;2160;68;158;0,31;41,54;31,75;0;South Korea;Asiatic Region;"Korean Society of Exercise Physiology";"2019-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q4); Physiology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine" +23988;82801;"Formosan Journal of Surgery";journal;"1682606X, 22135413";"Wolters Kluwer Medknow Publications";Yes;Yes;0,169;Q4;11;79;199;959;48;104;0,25;12,14;35,15;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1999-2003, 2011-2026";"Surgery (Q4)";"Medicine" +23989;29753;"HKIE Transactions Hong Kong Institution of Engineers";journal;"1023697X";"Hong Kong Institution of Engineers";No;No;0,169;Q4;21;11;82;198;44;78;0,52;18,00;21,05;0;Hong Kong;Asiatic Region;"Hong Kong Institution of Engineers";"1994-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +23990;21100905960;"Indian Journal of Gynecologic Oncology";journal;"23638400, 23638397";"Springer";No;No;0,169;Q4;11;133;317;3436;149;313;0,33;25,83;57,14;0;India;Asiatic Region;"Springer";"2016-2026";"Obstetrics and Gynecology (Q4); Oncology (Q4)";"Medicine" +23991;21101190210;"International Journal for Research in Learning Disabilities";journal;"2325565X, 23293764";"International Academy for Research in Learning Disabilities (IARLD)";No;No;0,169;Q4;4;2;16;115;11;15;0,60;57,50;57,14;0;United States;Northern America;"International Academy for Research in Learning Disabilities (IARLD)";"2019-2026";"Education (Q4); Medicine (miscellaneous) (Q4); Neuroscience (miscellaneous) (Q4); Psychology (miscellaneous) (Q4)";"Medicine; Neuroscience; Psychology; Social Sciences" +23992;21101316734;"International Journal of Banking and Finance";journal;"2590423X, 28113799";"Universiti Utara Malaysia Press";Yes;No;0,169;Q4;5;10;30;751;22;30;0,65;75,10;29,17;0;Malaysia;Asiatic Region;"Universiti Utara Malaysia Press";"2021-2026";"Economics, Econometrics and Finance (miscellaneous) (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +23993;21100855992;"International Journal of Computational Economics and Econometrics";journal;"17571170, 17571189";"Inderscience";No;No;0,169;Q4;10;20;66;795;40;65;0,54;39,75;28,95;0;United Kingdom;Western Europe;"Inderscience";"2017-2026";"Computer Science Applications (Q4); Economics and Econometrics (Q4)";"Computer Science; Economics, Econometrics and Finance" +23994;21100211105;"Internetworking Indonesia Journal";journal;"19429703";"Internetworking Indonesia";Yes;Yes;0,169;Q4;13;5;27;122;17;27;0,71;24,40;54,55;0;United States;Northern America;"Internetworking Indonesia";"2009-2025";"Computer Science (miscellaneous) (Q4)";"Computer Science" +23995;21042;"Japanese Journal of Applied Entomology and Zoology";journal;"00214914, 13476068";"Japanese Society of Applied Entomology and Zoology";No;No;0,169;Q4;24;19;31;438;13;31;0,37;23,05;16,95;0;Japan;Asiatic Region;"Japanese Society of Applied Entomology and Zoology";"1957-2026";"Insect Science (Q4)";"Agricultural and Biological Sciences" +23996;21100390160;"Journal of Biological Research (Italy)";journal;"18268838, 22840230";"Page Press Publications";Yes;No;0,169;Q4;13;30;85;1287;64;84;0,80;42,90;48,03;0;Italy;Western Europe;"Page Press Publications";"2011-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Biochemistry (medical) (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +23997;21100935773;"Journal of Cryptologic Research";journal;"20957025";"Chinese Association for Cryptologic Research";No;No;0,169;Q4;20;91;245;2904;155;243;0,54;31,91;33,46;0;China;Asiatic Region;"Chinese Association for Cryptologic Research";"2014-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Software (Q4)";"Computer Science; Engineering; Mathematics" +23998;21101133423;"Journal of Fluid Flow, Heat and Mass Transfer";journal;"23686111";"Avestia Publishing";No;No;0,169;Q4;7;51;84;1178;54;84;0,74;23,10;23,29;0;Canada;Northern America;"Avestia Publishing";"2019-2026";"Chemical Engineering (miscellaneous) (Q4); Fluid Flow and Transfer Processes (Q4); Fuel Technology (Q4)";"Chemical Engineering; Energy" +23999;21100846923;"Journal of Food Science and Biotechnology";journal;"16731689";"";No;No;0,169;Q4;9;204;486;7386;426;486;0,82;36,21;49,08;0;China;Asiatic Region;"";"2017-2025";"Biotechnology (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +24000;21101098813;"Journal of Medical Education Development";journal;"29807670, 22519521";"Zanjan University of Medical Sciences and Health Services";Yes;Yes;0,169;Q4;5;64;145;2299;60;132;0,40;35,92;57,38;0;Iran;Middle East;"Zanjan University of Medical Sciences and Health Services";"2019-2026";"Education (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +24001;21100218021;"Journal of Practice Teaching and Learning";journal;"17466113, 17595150";"Whiting and Birch";No;No;0,169;Q4;11;13;69;391;42;63;0,60;30,08;83,33;0;United Kingdom;Western Europe;"Whiting and Birch";"2009-2011, 2013-2014, 2017-2025";"Education (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +24002;21100247056;"Mitteilungen Klosterneuburg";journal;"00075922";"Hohere Bundeslehranstalt und Bundesamt fur Wein- und Obstbau Klosterneuburg";No;No;0,169;Q4;10;8;58;309;14;54;0,27;38,63;30,56;0;Austria;Western Europe;"Hohere Bundeslehranstalt und Bundesamt fur Wein- und Obstbau Klosterneuburg";"1989, 2011-2025";"Horticulture (Q4)";"Agricultural and Biological Sciences" +24003;21101167601;"Modern Electronic Materials";journal;"24522449, 24521779";"Pensoft Publishers";Yes;Yes;0,169;Q4;7;28;67;901;42;67;0,57;32,18;32,80;0;Bulgaria;Eastern Europe;"Pensoft Publishers";"2019-2025";"Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science; Physics and Astronomy" +24004;27270;"MPT Metallurgical Plant and Technology International";trade journal;"09357254";"Verlag Stahleisen GmbH";No;No;0,169;Q4;12;15;73;30;2;57;0,00;2,00;10,53;0;Germany;Western Europe;"Verlag Stahleisen GmbH";"1991, 1993-2019, 2022-2025";"Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +24005;21100826237;"Pakistan Journal of Phytopathology";journal;"23050284, 1019763X";"Pakistan Phytopathological Society";No;No;0,169;Q4;11;11;140;523;77;140;0,47;47,55;40,91;0;Pakistan;Asiatic Region;"Pakistan Phytopathological Society";"2017-2025";"Agronomy and Crop Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +24006;19600157208;"Pesquisas em Geociencias";journal;"18079806, 15182398";"Universidade Federal do Rio Grande do Sul";Yes;No;0,169;Q4;22;8;45;493;23;45;0,42;61,63;29,03;0;Brazil;Latin America;"Universidade Federal do Rio Grande do Sul";"1996-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +24007;19900192611;"Probability and Mathematical Statistics";journal;"02084147";"Wydawnictwo Uniwersytetu Wroclawskiego Sp. z o.o.";Yes;No;0,169;Q4;14;6;45;175;8;45;0,18;29,17;9,09;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Wroclawskiego Sp. z o.o.";"2011-2025";"Statistics and Probability (Q4)";"Mathematics" +24008;21100815316;"Rational Pharmacotherapy in Cardiology";journal;"18196446, 22253653";"Stolichnaya Izdatelskaya Kompaniya";Yes;Yes;0,169;Q4;16;66;240;1707;131;240;0,53;25,86;64,96;0;Russian Federation;Eastern Europe;"Stolichnaya Izdatelskaya Kompaniya";"2008, 2012-2025";"Cardiology and Cardiovascular Medicine (Q4); Pharmacology (medical) (Q4)";"Medicine" +24009;12534;"Revista Cartografica";journal;"00802085, 26633981";"Pan-American Institute of Geography and History";Yes;Yes;0,169;Q4;5;17;45;721;20;38;0,50;42,41;38,71;0;Mexico;Latin America;"Pan-American Institute of Geography and History";"1984, 1986-1987, 2019-2025";"Computers in Earth Sciences (Q4); Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +24010;19400157235;"Revista Colombiana de Ciencias Pecuarias";journal;"22562958, 01200690";"Universidad de Antioquia";Yes;No;0,169;Q4;23;29;65;1076;35;62;0,45;37,10;37,68;0;Colombia;Latin America;"Universidad de Antioquia";"2008-2025";"Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +24011;19200156966;"Revista MVZ Cordoba";journal;"01220268, 19090544";"Biblioteca Universidad de Cordoba";Yes;Yes;0,169;Q4;18;34;144;1086;64;141;0,35;31,94;37,82;0;Colombia;Latin America;"Biblioteca Universidad de Cordoba";"2008-2025";"Animal Science and Zoology (Q4); Aquatic Science (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +24012;15900154740;"Romanian Agricultural Research";journal;"20675720, 12224227";"National Agricultural Research and Development Institute";Yes;No;0,169;Q4;17;86;165;3136;108;165;0,72;36,47;46,93;0;Romania;Eastern Europe;"National Agricultural Research and Development Institute";"2008-2025";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +24013;58875;"Russian Metallurgy (Metally)";journal;"15556255, 00360295";"Pleiades Publishing";No;No;0,169;Q4;24;281;902;6263;299;902;0,32;22,29;34,03;0;United States;Northern America;"Pleiades Publishing";"1984-1989, 1996-2025";"Metals and Alloys (Q4)";"Materials Science" +24014;5700169467;"Sodobna Pedagogika/Journal of Contemporary Educational Studies";journal;"00380474";"Association of Slovenian Educationalists";No;No;0,169;Q4;9;37;120;1381;41;111;0,29;37,32;68,18;0;Slovenia;Eastern Europe;"Association of Slovenian Educationalists";"2015-2025";"Education (Q4)";"Social Sciences" +24015;19900192463;"Thai Journal of Mathematics";journal;"16860209";"";Yes;No;0,169;Q4;19;23;282;513;123;281;0,48;22,30;29,63;0;Thailand;Asiatic Region;"";"2011-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +24016;19923;"Tijdschrift voor Psychiatrie";journal;"03037339";"Uitgeverij Boom";No;No;0,169;Q4;19;130;442;1279;83;312;0,19;9,84;46,81;0;Netherlands;Western Europe;"Uitgeverij Boom";"1973-2026";"Psychiatry and Mental Health (Q4)";"Medicine" +24017;21101298383;"Watershed Engineering and Management";journal;"22519300, 2322536X";"Soil Conservation and Watershed Management Research Institute";No;No;0,169;Q4;4;30;114;1048;44;114;0,40;34,93;26,92;0;Iran;Middle East;"Soil Conservation and Watershed Management Research Institute";"2021-2026";"Earth-Surface Processes (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +24018;144808;"WSEAS Transactions on Information Science and Applications";journal;"17900832, 22243402";"World Scientific and Engineering Academy and Society";No;No;0,169;Q4;23;56;132;1875;136;132;1,15;33,48;39,60;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2005-2014, 2019, 2021-2026";"Computer Science Applications (Q4); Information Systems (Q4)";"Computer Science" +24019;26090;"Zhongguo shi yan xue ye xue za zhi / Zhongguo bing li sheng li xue hui = Journal of experimental hematology / Chinese Association of Pathophysiology";journal;"10092137";"Haidian-qu";No;No;0,169;Q4;15;280;756;0;276;756;0,35;0,00;49,59;0;China;Asiatic Region;"Haidian-qu";"2002-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +24020;21101215131;"Asia-Pacific Microwave Conference Proceedings, APMC";conference and proceedings;"26903946";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,169;-;9;0;822;0;357;820;0,44;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2006-2007, 2019-2020, 2022-2024";"Electrical and Electronic Engineering";"Engineering" +24021;21100239654;"Brazilian Symposium on Computing System Engineering, SBESC";conference and proceedings;"23247886, 23247894";"IEEE Computer Society";No;No;0,169;-;12;28;86;570;51;81;0,52;20,36;8,86;0;United States;Northern America;"IEEE Computer Society";"2012-2024";"Computer Networks and Communications; Software";"Computer Science" +24022;21100198208;"Engineering for Rural Development";conference and proceedings;"16915976, 16913043";"Latvia University of Life Sciences and Technologies";No;No;0,169;-;21;152;450;2901;231;447;0,60;19,09;30,33;0;Latvia;Eastern Europe;"Latvia University of Life Sciences and Technologies";"2011-2025";"Agricultural and Biological Sciences (miscellaneous); Automotive Engineering; Chemical Engineering (miscellaneous); Energy (miscellaneous); Food Science; Industrial and Manufacturing Engineering";"Agricultural and Biological Sciences; Chemical Engineering; Energy; Engineering" +24023;21101047185;"IEEE Advanced Information Technology, Electronic and Automation Control Conference (IAEAC)";conference and proceedings;"26896621";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,169;-;16;255;750;2913;418;746;0,55;11,42;34,99;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2021-2022, 2024-2025";"Applied Mathematics; Artificial Intelligence; Computer Networks and Communications; Computer Science Applications; Computer Vision and Pattern Recognition; Control and Systems Engineering; Electrical and Electronic Engineering; Information Systems";"Computer Science; Engineering; Mathematics" +24024;21101131209;"International Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management, IC3K - Proceedings";conference and proceedings;"21843228";"Science and Technology Publications, Lda";No;No;0,169;-;7;112;347;3131;191;337;0,56;27,96;34,47;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Management of Technology and Innovation; Software; Strategy and Management";"Business, Management and Accounting; Computer Science" +24025;145063;"Proceedings Elmar - International Symposium Electronics in Marine";conference and proceedings;"13342630";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,169;-;25;74;177;1022;104;171;0,57;13,81;25,24;0;Croatia;Eastern Europe;"Institute of Electrical and Electronics Engineers Inc.";"2004-2025";"Electrical and Electronic Engineering; Engineering (miscellaneous)";"Engineering" +24026;51851;"Papers of the British School at Rome";journal;"00682462, 2045239X";"Cambridge University Press";No;No;0,168;Q1;29;30;96;971;28;75;0,31;32,37;41,86;0;United Kingdom;Western Europe;"Cambridge University Press";"1902, 1904, 1906-1907, 1910, 1913-1914, 1916-1917, 1920, 1927, 1929, 1932, 1935, 1938-1939, 1948-2025";"Visual Arts and Performing Arts (Q1); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24027;21101054228;"South Asian Review";journal;"02759527, 25739476";"Taylor and Francis Ltd.";No;No;0,168;Q1;6;60;99;1959;24;80;0,31;32,65;67,86;1;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2004, 2006, 2011, 2017, 2019-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +24028;21100388414;"Crossings";journal;"20404352, 20404344";"Intellect Ltd.";No;No;0,168;Q2;15;14;47;655;27;46;0,41;46,79;80,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2014-2025";"Cultural Studies (Q2); Anthropology (Q3); Demography (Q3)";"Social Sciences" +24029;21101196158;"Devenir (Peru)";journal;"26164949, 23127562";"National University of Engineering Faculty of Architecture, Urban Planning and Arts";Yes;Yes;0,168;Q2;4;16;55;471;16;51;0,19;29,44;25,00;0;Peru;Latin America;"National University of Engineering Faculty of Architecture, Urban Planning and Arts";"2019-2025";"History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Architecture (Q3)";"Arts and Humanities; Engineering; Social Sciences" +24030;5600155637;"English Historical Review";journal;"00138266, 14774534";"Oxford University Press";No;No;0,168;Q2;36;29;126;4126;72;124;0,54;142,28;32,26;0;United Kingdom;Western Europe;"Oxford University Press";"1886-2025";"History (Q2)";"Arts and Humanities" +24031;21101041532;"Global Chinese";journal;"21994382, 21994374";"Walter de Gruyter GmbH";No;No;0,168;Q2;11;21;53;797;22;53;0,41;37,95;71,79;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2015-2025";"Linguistics and Language (Q2)";"Social Sciences" +24032;29373;"Jewish Quarterly Review";journal;"00216682, 15530604";"University of Pennsylvania Press";No;No;0,168;Q2;16;22;116;2117;39;111;0,28;96,23;36,00;0;United States;Northern America;"University of Pennsylvania Press";"1953-1995, 1998-1999, 2010-2025";"Cultural Studies (Q2); History (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +24033;21101047128;"Journal of Epigraphic Studies";journal;"26123517, 2611979X";"Fabrizio Serra Editore Srl";No;No;0,168;Q2;4;13;34;601;6;34;0,20;46,23;31,25;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2018-2025";"Arts and Humanities (miscellaneous) (Q2); History (Q2); Archeology (arts and humanities) (Q3)";"Arts and Humanities" +24034;21101293999;"Journal of Tropical Biology and Conservation";journal;"18233902, 25501909";"Universiti Malaysia Sabah, Institute for Tropical Biology and Conservation";No;No;0,168;Q2;4;16;42;554;26;41;0,58;34,63;50,00;0;Malaysia;Asiatic Region;"Universiti Malaysia Sabah, Institute for Tropical Biology and Conservation";"2021-2025";"Conservation (Q2); Ecology, Evolution, Behavior and Systematics (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Arts and Humanities; Environmental Science; Social Sciences" +24035;21101030339;"Korean Journal of English Language and Linguistics";journal;"25867474, 15981398";"The Korean Association for the Study of English Language and Linguistics";No;No;0,168;Q2;9;82;214;3617;85;214;0,46;44,11;55,56;0;South Korea;Asiatic Region;"The Korean Association for the Study of English Language and Linguistics";"2019-2026";"Linguistics and Language (Q2); Education (Q4)";"Social Sciences" +24036;21101369236;"Muzyka";journal;"00275344, 27207021";"Institute of Art, Polish Academy of Sciences";Yes;No;0,168;Q2;2;31;91;932;10;86;0,09;30,06;33,33;0;Poland;Eastern Europe;"Institute of Art, Polish Academy of Sciences";"2022-2025";"Music (Q2)";"Arts and Humanities" +24037;21100847284;"Oido Pensante";journal;"22507116";"CAICYT-CONICET";Yes;Yes;0,168;Q2;6;14;50;400;7;41;0,17;28,57;42,86;0;Argentina;Latin America;"CAICYT-CONICET";"2017-2025";"Music (Q2)";"Arts and Humanities" +24038;21100228048;"Panacea";journal;"15371964";"Tremedica";Yes;Yes;0,168;Q2;8;16;75;288;15;56;0,13;18,00;64,29;0;Spain;Western Europe;"Tremedica";"2012-2025";"Linguistics and Language (Q2)";"Social Sciences" +24039;5800207703;"Studia Slavica Academiae Scientiarum Hungaricae";journal;"00393363, 1588290X";"Akademiai Kiado";No;No;0,168;Q2;4;72;51;1875;4;51;0,08;26,04;67,11;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2020, 2022-2026";"Cultural Studies (Q2); History (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +24040;15024;"Africa Today";journal;"15271978, 00019887";"Indiana University Press";No;No;0,168;Q3;42;13;68;699;46;65;0,74;53,77;52,94;0;United States;Northern America;"Indiana University Press";"1981, 1984, 1993, 1996-2025";"Sociology and Political Science (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +24041;21100891788;"African Renaissance";journal;"25165305, 17442532";"Adonis and Abbey Publishers Ltd";No;No;0,168;Q3;11;99;263;4471;113;249;0,40;45,16;30,60;0;United Kingdom;Western Europe;"Adonis and Abbey Publishers Ltd";"2004-2025";"Political Science and International Relations (Q3); Sociology and Political Science (Q3); Development (Q4); Public Administration (Q4)";"Social Sciences" +24042;17300154738;"Current Trends in Biotechnology and Pharmacy";journal;"22307303, 09738916";"Association of Biotechnology and Pharmacy";No;No;0,168;Q3;19;105;283;4244;180;282;0,65;40,42;50,53;0;India;Asiatic Region;"Association of Biotechnology and Pharmacy";"2009-2026";"Pharmaceutical Science (Q3); Biotechnology (Q4); Drug Discovery (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +24043;21101039156;"Encontros Bibli";journal;"15182924";"Universidade Federal de Santa Catarina";Yes;Yes;0,168;Q3;10;50;122;1791;56;121;0,53;35,82;46,53;0;Brazil;Latin America;"Universidade Federal de Santa Catarina";"2019-2025";"Library and Information Sciences (Q3); Information Systems (Q4); Management Information Systems (Q4)";"Business, Management and Accounting; Computer Science; Social Sciences" +24044;21101045275;"Iranian Journal of Health Education and Health Promotion";journal;"2345346X, 23453265";"Iranian Association of Health Education and Health Promotion";Yes;Yes;0,168;Q3;10;32;88;1181;45;88;0,52;36,91;62,39;0;Iran;Middle East;"Iranian Association of Health Education and Health Promotion";"2019-2026";"Health Professions (miscellaneous) (Q3); Education (Q4); Health Informatics (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine; Social Sciences" +24045;19700183012;"Iranian Journal of Pharmaceutical Sciences";journal;"17352444, 22520457";"Pharmaceutical Sciences Research Center at Shahid Beheshti University of Medical Sciences";No;No;0,168;Q3;18;17;100;607;67;100;0,72;35,71;37,10;0;Iran;Middle East;"Pharmaceutical Sciences Research Center at Shahid Beheshti University of Medical Sciences";"2010-2014, 2016-2025";"Pharmaceutical Science (Q3); Bioengineering (Q4)";"Chemical Engineering; Pharmacology, Toxicology and Pharmaceutics" +24046;12700154704;"Journal of Emergency Medicine, Trauma and Acute Care";journal;"19997086, 19997094";"HBKU Press";Yes;Yes;0,168;Q3;9;46;220;1244;156;211;0,57;27,04;28,82;0;Qatar;Middle East;"HBKU Press";"2008-2009, 2012-2017, 2020-2026";"Emergency Medicine (Q3); Critical Care and Intensive Care Medicine (Q4)";"Medicine" +24047;21101268970;"Jurnal Hukum Bisnis Bonum Commune";journal;"2622982X, 26229668";"Fakultas Hukum Universitas 17 Agustus 1945 Surabaya";No;No;0,168;Q3;4;25;47;1152;30;47;0,73;46,08;42,31;0;Indonesia;Asiatic Region;"Fakultas Hukum Universitas 17 Agustus 1945 Surabaya";"2020-2025";"Law (Q3)";"Social Sciences" +24048;21101080461;"Lasers in Dental Science";journal;"23672587";"Springer International Publishing AG";No;No;0,168;Q3;11;43;112;1532;68;109;0,55;35,63;49,69;0;Switzerland;Western Europe;"Springer International Publishing AG";"2017-2026";"Dentistry (miscellaneous) (Q3); Oral Surgery (Q3); Orthodontics (Q3); Periodontics (Q3)";"Dentistry" +24049;5200153010;"Revista Espanola de Cirugia Oral y Maxilofacial";journal;"11300558";"Ediciones Ergon SA";Yes;No;0,168;Q3;10;11;95;128;17;84;0,15;11,64;40,00;0;Spain;Western Europe;"Ediciones Ergon SA";"2006-2025";"Oral Surgery (Q3); Otorhinolaryngology (Q4); Surgery (Q4)";"Dentistry; Medicine" +24050;21100902543;"Science and Technology Asia";journal;"25869027, 25869000";"Thammasat University";No;No;0,168;Q3;11;92;273;2391;175;273;0,63;25,99;39,15;0;Thailand;Asiatic Region;"Thammasat University";"2018-2025";"Multidisciplinary (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Mathematics; Multidisciplinary" +24051;5800178213;"Strategic Analysis";journal;"09700161, 17540054";"Routledge";No;No;0,168;Q3;24;35;134;1108;97;115;0,64;31,66;45,16;0;United Kingdom;Western Europe;"Routledge";"1978-1984, 1998-2004, 2007-2026";"Political Science and International Relations (Q3); Safety Research (Q4)";"Social Sciences" +24052;21100244940;"Studia Regionalne i Lokalne";journal;"15094995, 27198049";"University of Warsaw";Yes;Yes;0,168;Q3;10;18;96;837;45;95;0,34;46,50;44,44;0;Poland;Eastern Europe;"University of Warsaw";"2013-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +24053;24217;"Acta Dermatovenerologica Croatica";journal;"18476538, 1330027X";"Croatian Dermatovenerological Society";No;No;0,168;Q4;31;10;144;0;71;101;0,41;0,00;65,63;0;Croatia;Eastern Europe;"Croatian Dermatovenerological Society";"1994-2025";"Dermatology (Q4); Infectious Diseases (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +24054;21101194561;"Advances in Cosmetic Surgery";journal;"25424327, 25424793";"Elsevier Inc.";No;No;0,168;Q4;5;20;62;601;26;56;0,36;30,05;65,00;0;United States;Northern America;"Elsevier Inc.";"2018-2025";"Dermatology (Q4); Surgery (Q4)";"Medicine" +24055;21100199735;"Arxius de Miscellania Zoologica";journal;"16980476";"Museu de Ciencies Naturals";Yes;Yes;0,168;Q4;9;15;43;607;22;43;0,47;40,47;28,26;0;Spain;Western Europe;"Museu de Ciencies Naturals";"2011-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +24056;30024;"Breastfeeding Review";journal;"07292759";"Australian Breastfeeding Association";No;No;0,168;Q4;28;8;34;370;13;29;0,23;46,25;73,68;0;Australia;Pacific Region;"Australian Breastfeeding Association";"1997-2025";"Maternity and Midwifery (Q4); Medicine (miscellaneous) (Q4); Obstetrics and Gynecology (Q4)";"Medicine; Nursing" +24057;21101292645;"Business Performance Review";journal;"30056829, 30056810";"Virtus Interpress";No;No;0,168;Q4;4;23;13;1257;22;9;1,69;54,65;33,93;0;Ukraine;Eastern Europe;"Virtus Interpress";"2023-2026";"Business and International Management (Q4); Finance (Q4); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +24058;21101289895;"Chinese Journal of Blood Transfusion";journal;"1004549X";"Institute of Blood Transfusion Chinese Academy of Medical Sciences Peking Union Medical College";No;No;0,168;Q4;6;268;823;7758;276;823;0,34;28,95;49,87;0;China;Asiatic Region;"Institute of Blood Transfusion Chinese Academy of Medical Sciences Peking Union Medical College";"2021-2026";"Hematology (Q4); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +24059;19700188396;"Chinese Journal of Otorhinolaryngology Head and Neck Surgery";journal;"16730860";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,168;Q4;20;248;744;4919;260;741;0,27;19,83;45,37;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2005-2016, 2018-2026";"Otorhinolaryngology (Q4)";"Medicine" +24060;21101146394;"Digital Diagnostics";journal;"27128490, 27128962";"Eco-Vector LLC";Yes;Yes;0,168;Q4;9;48;175;2085;105;166;0,63;43,44;56,15;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2020-2025";"Health Informatics (Q4); Internal Medicine (Q4); Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine" +24061;25940;"Dynamics of Continuous, Discrete and Impulsive Systems Series A: Mathematical Analysis";journal;"12013390, 19182538";"Watam Press";No;No;0,168;Q4;31;16;77;430;25;77;0,46;26,88;33,33;0;Canada;Northern America;"Watam Press";"2003-2025";"Analysis (Q4); Applied Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)";"Mathematics" +24062;21100805329;"ERS Monograph";journal;"2312508X, 23125098";"European Respiratory Society";Yes;No;0,168;Q4;18;110;276;9182;92;241;0,32;83,47;42,81;0;United Kingdom;Western Europe;"European Respiratory Society";"2015-2025";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +24063;17700156411;"Fenmo Yejin Cailiao Kexue yu Gongcheng/Materials Science and Engineering of Powder Metallurgy";journal;"16730224";"Central South University";No;No;0,168;Q4;13;25;166;888;83;166;0,52;35,52;35,40;0;China;Asiatic Region;"Central South University";"2009-2025";"Metals and Alloys (Q4)";"Materials Science" +24064;21101039664;"Health Education and Health Promotion";journal;"25885715, 23452897";"Tarbiat Modares University";No;No;0,168;Q4;8;101;323;3174;161;315;0,43;31,43;48,00;0;Iran;Middle East;"Tarbiat Modares University";"2019-2025";"Education (Q4); Health Informatics (Q4); Health Information Management (Q4); Health Policy (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine; Social Sciences" +24065;19700190317;"Inorganic Materials: Applied Research";journal;"2075115X, 20751133";"Pleiades Publishing";No;No;0,168;Q4;23;271;684;6214;303;684;0,43;22,93;40,87;0;United States;Northern America;"Pleiades Publishing";"2010-2025";"Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +24066;11600153305;"International Journal of Electric and Hybrid Vehicles";journal;"17514096, 17514088";"Inderscience Enterprises Ltd";No;No;0,168;Q4;23;0;55;0;54;55;0,95;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2024";"Automotive Engineering (Q4); Fuel Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering" +24067;20000195040;"Iranian Journal of Medical Physics";journal;"23453672, 22520309";"Mashhad University of Medical Sciences";Yes;No;0,168;Q4;16;39;149;1279;64;148;0,41;32,79;35,86;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2011-2025";"Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine" +24068;21100905904;"Iranian Journal of War and Public Health";journal;"2980969X, 20082622";"Janbazan Medical and Engineering Research Center";Yes;No;0,168;Q4;8;35;168;1317;102;168;0,64;37,63;31,94;0;Iran;Middle East;"Janbazan Medical and Engineering Research Center";"2019-2025";"Health Policy (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +24069;17500155131;"Journal of Business Valuation and Economic Loss Analysis";journal;"19329156";"Walter de Gruyter GmbH";No;No;0,168;Q4;10;2;7;53;9;7;0,33;26,50;50,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2009-2025";"Accounting (Q4); Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +24070;21100926810;"Journal of Chemistry and Technologies";journal;"26632934, 26632942";"Oles Honchar Dnipro National University";No;No;0,168;Q4;9;124;274;4115;239;274;0,81;33,19;45,45;0;Ukraine;Eastern Europe;"Oles Honchar Dnipro National University";"2018-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +24071;21100456867;"Journal of Clinical and Translational Endocrinology: Case Reports";journal;"22146245";"Elsevier Inc.";Yes;No;0,168;Q4;7;25;68;370;33;67;0,58;14,80;46,24;0;United States;Northern America;"Elsevier Inc.";"2015-2026";"Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +24072;12487;"Journal of Engineering Technology";journal;"07479964";"American Society for Engineering Education";No;No;0,168;Q4;12;0;26;0;16;22;0,72;0,00;0,00;0;United States;Northern America;"American Society for Engineering Education";"1985, 1989-1991, 1996-2024";"Engineering (miscellaneous) (Q4)";"Engineering" +24073;66835;"Journal of the Korean Medical Association";journal;"20935951, 19758456";"Korean Medical Association";Yes;No;0,168;Q4;24;104;290;3101;121;288;0,43;29,82;33,15;0;South Korea;Asiatic Region;"Korean Medical Association";"2008-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +24074;22849;"L'Orthodontie Française";journal;"19543395, 19665202";"John Libbey Eurotext";No;No;0,168;Q4;13;32;75;0;35;75;0,33;0,00;45,33;0;France;Western Europe;"John Libbey Eurotext";"1964-1971, 1973-1992, 1997-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +24075;21100932750;"Neurology and Clinical Neuroscience";journal;"20494173";"John Wiley and Sons Inc";No;No;0,168;Q4;14;93;207;1474;73;190;0,34;15,85;29,22;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"2013-2026";"Cellular and Molecular Neuroscience (Q4); Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +24076;21100821149;"Profilakticheskaya Meditsina";journal;"23054948, 2309513X";"Media Sphera Publishing Group";No;No;0,168;Q4;16;220;618;5611;363;616;0,60;25,50;68,78;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2016-2025";"Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +24077;21101256283;"Radiation Physics and Engineering";journal;"26456397, 26455188";"KN Toosi University of Technology";Yes;Yes;0,168;Q4;5;32;88;738;34;88;0,39;23,06;29,79;0;Iran;Middle East;"KN Toosi University of Technology";"2020-2025";"Instrumentation (Q4); Nuclear and High Energy Physics (Q4); Radiation (Q4)";"Physics and Astronomy" +24078;21100264366;"Revista Brasileira de Ciencias do Esporte";journal;"01013289, 21793255";"Colegio Brasileiro de Ciencias do Esporte";Yes;Yes;0,168;Q4;13;38;133;1271;41;131;0,37;33,45;30,09;0;Brazil;Latin America;"Colegio Brasileiro de Ciencias do Esporte";"2013-2026";"Health (social science) (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Social Sciences" +24079;21101213851;"Southern African Journal of Environmental Education";journal;"24115959, 02567504";"EEASA, Environmental Learning Research Centre, Department of Education, Rhodes University";Yes;Yes;0,168;Q4;10;25;25;925;27;24;1,13;37,00;55,32;0;South Africa;Africa;"EEASA, Environmental Learning Research Centre, Department of Education, Rhodes University";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Education (Q4)";"Earth and Planetary Sciences; Social Sciences" +24080;21100925826;"Specijalna Edukacija i Rehabilitacija";journal;"14527367, 24061328";"University of Belgrade - Faculty of Special Education and Rehabilitation";Yes;Yes;0,168;Q4;4;26;63;1034;35;63;0,36;39,77;87,10;0;Serbia;Eastern Europe;"University of Belgrade - Faculty of Special Education and Rehabilitation";"2018-2025";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +24081;5200152834;"Torture";journal;"10188185, 19973322";"International Rehabilitation Council for Torture Victims";Yes;Yes;0,168;Q4;28;28;100;1044;43;75;0,48;37,29;50,00;0;Denmark;Western Europe;"International Rehabilitation Council for Torture Victims";"1991-2025";"Clinical Psychology (Q4); Health (social science) (Q4); Psychiatry and Mental Health (Q4); Public Health, Environmental and Occupational Health (Q4); Rehabilitation (Q4)";"Medicine; Psychology; Social Sciences" +24082;21101183611;"Advances in Science and Technology";conference and proceedings;"16628969, 16620356";"Trans Tech Publications Ltd";No;No;0,168;-;7;246;578;4232;366;538;0,64;17,20;24,84;0;Switzerland;Western Europe;"Trans Tech Publications Ltd";"2020-2026";"Energy (miscellaneous); Engineering (miscellaneous); Environmental Science (miscellaneous)";"Energy; Engineering; Environmental Science" +24083;21101204690;"Eurographics Italian Chapter Proceedings - Smart Tools and Applications in Graphics, STAG";conference and proceedings;"26174855";"Eurographics Association";No;No;0,168;-;5;26;65;831;39;60;0,67;31,96;35,53;0;Switzerland;Western Europe;"Eurographics Association";"2021-2025";"Computer Graphics and Computer-Aided Design; Computer Science Applications; Software";"Computer Science" +24084;21100902135;"IEEE Region 10 Humanitarian Technology Conference, R10-HTC";conference and proceedings;"25727621";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,168;-;17;0;339;0;271;330;0,67;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2018-2024";"Development; Environmental Engineering; Geography, Planning and Development; Pollution; Renewable Energy, Sustainability and the Environment; Waste Management and Disposal";"Energy; Environmental Science; Social Sciences" +24085;21100296212;"International Conference on Advanced Mechatronic Systems, ICAMechS";conference and proceedings;"23250682, 23250690";"IEEE Computer Society";No;No;0,168;-;19;54;154;920;81;151;0,56;17,04;33,11;0;United States;Northern America;"IEEE Computer Society";"2013-2025";"Electrical and Electronic Engineering; Mechanical Engineering";"Engineering" +24086;21100229106;"Lecture Notes in Informatics (LNI), Proceedings - Series of the Gesellschaft fur Informatik (GI)";conference and proceedings;"29447682, 16175468";"Gesellschaft fur Informatik (GI)";No;No;0,168;-;36;180;1595;3947;433;1519;0,26;21,93;34,09;0;Germany;Western Europe;"Gesellschaft fur Informatik (GI)";"2001-2025";"Computer Science Applications";"Computer Science" +24087;21100222926;"Proceedings of International Seminar/Workshop on Direct and Inverse Problems of Electromagnetic and Acoustic Wave Theory, DIPED";conference and proceedings;"21653585, 21653593";"IEEE Computer Society";No;No;0,168;-;11;64;101;1116;46;99;0,46;17,44;15,44;0;United States;Northern America;"IEEE Computer Society";"1998-1999, 2002-2003, 2012-2016, 2018-2021, 2023-2025";"Acoustics and Ultrasonics; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Engineering; Materials Science; Physics and Astronomy" +24088;16000154705;"Ceska Literatura";journal;"00090468";"Czech Academy of Sciences";Yes;Yes;0,167;Q1;6;30;120;834;16;65;0,09;27,80;45,00;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"2002-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +24089;21101060471;"East/West: Journal of Ukrainian Studies";journal;"22927956";"University of Alberta";Yes;Yes;0,167;Q1;6;6;35;261;28;27;0,10;43,50;60,00;0;Canada;Northern America;"University of Alberta";"2016, 2019-2023, 2025";"Literature and Literary Theory (Q1); History (Q2); Linguistics and Language (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24090;28908;"Meander";journal;"00256285";"Polska Akademia Nauk";Yes;Yes;0,167;Q1;2;22;51;479;3;49;0,03;21,77;38,71;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1974, 2019-2025";"Classics (Q1); History (Q2); Linguistics and Language (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24091;21100921165;"Mitologias Hoy";journal;"20141130";"Universitat Autonoma de Barcelona";Yes;Yes;0,167;Q1;5;18;116;406;25;109;0,19;22,56;81,25;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2019-2026";"Literature and Literary Theory (Q1)";"Arts and Humanities" +24092;21100202949;"New Voices in Translation Studies";journal;"18195644";"International Association of Translation and Intercultural Studies";No;No;0,167;Q1;12;13;46;255;23;40;0,52;19,62;41,67;0;South Korea;Asiatic Region;"International Association of Translation and Intercultural Studies";"2011-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +24093;21100826246;"Przekladaniec";journal;"14256851, 16891864";"Jagiellonian University Press";Yes;Yes;0,167;Q1;4;29;87;810;14;84;0,18;27,93;70,97;0;Poland;Eastern Europe;"Jagiellonian University Press";"2016-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +24094;19900191991;"Signa";journal;"22549307, 11333634";"Universidad Nacional de Educacion a Distancia (UNED)";Yes;Yes;0,167;Q1;9;30;148;1264;40;148;0,21;42,13;60,00;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2010-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +24095;62985;"Art Bulletin";journal;"00043079, 15596478";"Routledge";No;No;0,167;Q2;36;28;87;1270;36;71;0,18;45,36;86,36;0;United Kingdom;Western Europe;"Routledge";"1945-1959, 1961-2025";"History (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +24096;25073;"Dialog";journal;"15406385, 00122033";"John Wiley and Sons Inc";No;No;0,167;Q2;11;37;127;747;18;93;0,19;20,19;56,00;0;United States;Northern America;"John Wiley and Sons Inc";"1980, 1994, 1996, 2010-2026";"Religious Studies (Q2)";"Arts and Humanities" +24097;21101345300;"English Language Teaching Educational Journal";journal;"26216485";"Universitas Ahmad Dahlan";Yes;No;0,167;Q2;3;23;50;1018;39;50;0,65;44,26;40,54;0;Indonesia;Asiatic Region;"Universitas Ahmad Dahlan";"2022-2025";"Linguistics and Language (Q2); Education (Q4)";"Social Sciences" +24098;82562;"European Review of History/Revue Europeenne d'Histoire";journal;"13507486, 14698293";"Routledge";No;No;0,167;Q2;22;42;129;2891;88;116;0,45;68,83;40,82;0;United Kingdom;Western Europe;"Routledge";"1994-1998, 2001, 2009-2026";"History (Q2)";"Arts and Humanities" +24099;19900193544;"Foucault Studies";journal;"18325203";"Copenhagen Business School, Department of International Business Communication";Yes;Yes;0,167;Q2;32;9;41;256;27;37;0,70;28,44;10,00;0;Denmark;Western Europe;"Copenhagen Business School, Department of International Business Communication";"2004-2005, 2007-2025";"Philosophy (Q2)";"Arts and Humanities" +24100;19177;"History of Political Thought";journal;"0143781X";"Imprint Academic";No;No;0,167;Q2;32;29;93;1915;31;90;0,14;66,03;23,08;0;United Kingdom;Western Europe;"Imprint Academic";"1984, 1987, 1996-2025";"History (Q2); Philosophy (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24101;21101162633;"International Journal of Eurasian Linguistics";journal;"25898825, 25898833";"Brill Academic Publishers";No;No;0,167;Q2;6;12;38;547;23;32;0,65;45,58;38,46;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2025";"History (Q2); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +24102;21100833806;"Journal of the Korean Society of Clothing and Textiles";journal;"22340793, 12251151";"Korean Society of Clothing and Textiles";No;No;0,167;Q2;10;80;223;3506;98;223;0,45;43,83;75,00;0;South Korea;Asiatic Region;"Korean Society of Clothing and Textiles";"2016-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3); Human Factors and Ergonomics (Q4); Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4); Polymers and Plastics (Q4)";"Arts and Humanities; Engineering; Materials Science; Social Sciences" +24103;16903;"Labour/Le Travail";journal;"07003862, 19114842";"Athabasca University";No;No;0,167;Q2;21;19;158;1358;38;153;0,24;71,47;29,41;0;Canada;Northern America;"Athabasca University";"1978, 1985, 1994-2025";"History (Q2); Industrial Relations (Q4); Organizational Behavior and Human Resource Management (Q4)";"Arts and Humanities; Business, Management and Accounting" +24104;21101158606;"Liquid Blackness";journal;"26923874";"Duke University Press";Yes;Yes;0,167;Q2;5;14;53;365;18;45;0,24;26,07;50,00;0;United States;Northern America;"Duke University Press";"2021-2025";"Cultural Studies (Q2); Social Sciences (miscellaneous) (Q3)";"Social Sciences" +24105;21101302027;"Malaysian Journal of Qualitative Research";journal;"18238521, 30090237";"Qualitative Research Association of Malaysia (QRAM)";No;No;0,167;Q2;4;20;60;806;34;59;0,48;40,30;47,73;0;Malaysia;Asiatic Region;"Qualitative Research Association of Malaysia (QRAM)";"2021-2025";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3); Health (social science) (Q4)";"Arts and Humanities; Social Sciences" +24106;21101076712;"Medievalismo";journal;"11318155, 19898312";"Universidad de Murcia Servicio de Publicaciones";Yes;Yes;0,167;Q2;4;14;36;740;7;36;0,26;52,86;9,09;0;Spain;Western Europe;"Universidad de Murcia Servicio de Publicaciones";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +24107;67153;"Notizie di Politeia";journal;"11282401";"Politeia";No;No;0,167;Q2;7;82;231;1714;22;225;0,07;20,90;52,63;0;Italy;Western Europe;"Politeia";"2001-2002, 2004, 2015-2025";"Philosophy (Q2)";"Arts and Humanities" +24108;21101323845;"Theatre. Fine Arts. Cinema. Music";journal;"19988745, 25880144";"Russian Institute of Theatre Arts GITIS";No;No;0,167;Q2;3;44;147;851;24;144;0,21;19,34;48,89;0;Russian Federation;Eastern Europe;"Russian Institute of Theatre Arts GITIS";"2021-2025";"Arts and Humanities (miscellaneous) (Q2); Music (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +24109;21100844047;"Alaska Journal of Anthropology";journal;"15449793";"Alaska Anthropological Association";No;No;0,167;Q3;5;0;12;0;2;9;0,00;0,00;0,00;0;United States;Northern America;"Alaska Anthropological Association";"2017-2020, 2022";"Anthropology (Q3)";"Social Sciences" +24110;24796;"Asia Pacific Issues";journal;"15220966";"East-West Center";No;No;0,167;Q3;17;5;18;159;14;17;1,08;31,80;50,00;0;United States;Northern America;"East-West Center";"1994-2007, 2009-2025";"Political Science and International Relations (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +24111;21101149697;"Emergency Care Journal";journal;"22822054, 18269826";"Page Press Publications";Yes;Yes;0,167;Q3;3;77;110;1559;42;81;0,38;20,25;44,88;0;Italy;Western Europe;"Page Press Publications";"2022-2025";"Emergency Medical Services (Q3); Emergency Medicine (Q4); Emergency Nursing (Q4)";"Health Professions; Medicine; Nursing" +24112;21100245722;"European Food and Feed Law Review";journal;"21908214, 18622720";"Lexxion";Yes;No;0,167;Q3;13;59;196;781;52;100;0,24;13,24;56,25;0;Germany;Western Europe;"Lexxion";"2013-2025";"Law (Q3); Food Science (Q4)";"Agricultural and Biological Sciences; Social Sciences" +24113;4000148203;"Handbook of Experimental Pharmacology";book series;"18650325, 01712004";"Springer Science and Business Media Deutschland GmbH";No;No;0,167;Q3;119;37;297;4127;837;1;1,74;111,54;0,00;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2004-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +24114;21100853929;"International Journal of Systematic Innovation";journal;"20778767, 20777973";"Society of Sytematic Innovation";No;No;0,167;Q3;8;45;80;1715;75;80;0,98;38,11;29,17;0;Taiwan;Asiatic Region;"Society of Sytematic Innovation";"2010-2025";"Multidisciplinary (Q3); Artificial Intelligence (Q4); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Information Systems and Management (Q4); Management of Technology and Innovation (Q4); Mechanical Engineering (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering; Multidisciplinary" +24115;21101017894;"Journal of Forensic Science and Medicine";journal;"23495014, 24550094";"Wolters Kluwer Medknow Publications";Yes;Yes;0,167;Q3;11;48;133;1651;57;129;0,45;34,40;45,35;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2015-2025";"Law (Q3); Pathology and Forensic Medicine (Q4)";"Medicine; Social Sciences" +24116;21101020095;"Krytyka Prawa";journal;"24507938, 20801084";"";Yes;Yes;0,167;Q3;6;58;216;1532;48;180;0,23;26,41;57,89;0;Poland;Eastern Europe;"";"2019-2025";"Law (Q3)";"Social Sciences" +24117;21100228053;"Law and Development Review";journal;"19433867, 21946523";"Walter de Gruyter GmbH";No;No;0,167;Q3;13;18;47;1317;55;45;1,03;73,17;45,45;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2012-2026";"Law (Q3); Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +24118;21100936540;"Obrana a Strategie";journal;"18027199, 12146463";"University of Defence";Yes;Yes;0,167;Q3;5;13;42;667;26;42;0,77;51,31;19,23;0;Czech Republic;Eastern Europe;"University of Defence";"2019-2025";"Political Science and International Relations (Q3); Safety Research (Q4)";"Social Sciences" +24119;17600154906;"Pouvoirs: Revue d'Etudes Constitutionnelles et Politiques";journal;"21010390, 01520768";"Editions du Seuil";No;No;0,167;Q3;12;0;88;0;10;83;0,11;0,00;0,00;0;France;Western Europe;"Editions du Seuil";"2001-2024";"Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +24120;19900193554;"Revista de Derecho Comunitario Europeo";journal;"19895569, 11384026";"Centro de Estudios Politicos y Constitucionales";No;Yes;0,167;Q3;9;27;75;803;31;62;0,38;29,74;29,63;1;Spain;Western Europe;"Centro de Estudios Politicos y Constitucionales";"2008-2025";"Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +24121;21101183723;"Southeastern Philippines Journal of Research and Development";journal;"01176293, 27189201";"University of Southeastern Philippines";No;No;0,167;Q3;4;21;38;994;28;37;0,79;47,33;40,00;0;Philippines;Asiatic Region;"University of Southeastern Philippines";"2021-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +24122;21100200605;"Acta Polytechnica";journal;"18052363, 12102709";"Czech Technical University in Prague";Yes;Yes;0,167;Q4;21;67;167;2350;125;165;0,92;35,07;23,94;0;Czech Republic;Eastern Europe;"Czech Technical University in Prague";"2009, 2011-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +24123;21101312191;"Advanced Manufacturing";journal;"29593271, 29593263";"ELSP";Yes;No;0,167;Q4;3;11;18;642;18;17;1,00;58,36;26,32;0;Hong Kong;Asiatic Region;"ELSP";"2024-2026";"Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +24124;21101201215;"Amerta Nutrition";journal;"25809776, 25801163";"Airlangga University Faculty of Public Health";Yes;No;0,167;Q4;5;133;297;5269;186;293;0,63;39,62;70,96;0;Indonesia;Asiatic Region;"Airlangga University Faculty of Public Health";"2023-2025";"Food Science (Q4); Nutrition and Dietetics (Q4); Public Health, Environmental and Occupational Health (Q4)";"Agricultural and Biological Sciences; Medicine; Nursing" +24125;21100842803;"Astronomical and Astrophysical Transactions";journal;"14763540, 10556796";"Cambridge Scientific Publishers";No;No;0,167;Q4;6;66;59;1334;30;50;0,50;20,21;30,53;0;United Kingdom;Western Europe;"Cambridge Scientific Publishers";"1999, 2017-2025";"Astronomy and Astrophysics (Q4); Instrumentation (Q4)";"Physics and Astronomy" +24126;21100229103;"Biharean Biologist";journal;"18435637, 20651155";"Universitatea din Oradea";Yes;No;0,167;Q4;14;8;53;387;21;52;0,48;48,38;31,03;0;Romania;Eastern Europe;"Universitatea din Oradea";"2012-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +24127;19700190322;"Brazilian Journal of Veterinary Pathology";journal;"19830246";"Brazilian Association of Veterinary Pathology";Yes;No;0,167;Q4;16;49;117;640;38;91;0,32;13,06;52,07;0;Brazil;Latin America;"Brazilian Association of Veterinary Pathology";"2010-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +24128;21100948959;"Communications in Statistics Case Studies Data Analysis and Applications";journal;"23737484";"Taylor and Francis Ltd.";Yes;No;0,167;Q4;12;26;81;916;61;81;0,48;35,23;23,81;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Analysis (Q4); Applied Mathematics (Q4); Statistics and Probability (Q4)";"Mathematics" +24129;24283;"Dianzi Keji Daxue Xuebao/Journal of the University of Electronic Science and Technology of China";journal;"10010548";"University of Electronic Science and Technology of China";No;No;0,167;Q4;25;85;346;2576;216;345;0,61;30,31;33,85;0;China;Asiatic Region;"University of Electronic Science and Technology of China";"1998, 2001-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +24130;21100199523;"Direccion y Organizacion";journal;"1132175X, 21716323";"ADINGOR – Asociación para el Desarrollo de la Ingeniería de Organización";No;Yes;0,167;Q4;12;21;59;869;41;59;0,69;41,38;36,36;0;Spain;Western Europe;"ADINGOR – Asociación para el Desarrollo de la Ingeniería de Organización";"2011-2025";"Business, Management and Accounting (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4)";"Business, Management and Accounting; Engineering" +24131;28087;"Documents d'Analisi Geografica";journal;"20144512, 02121573";"Universitat Autonoma de Barcelona";Yes;Yes;0,167;Q4;27;15;72;939;47;68;0,57;62,60;35,29;1;Spain;Western Europe;"Universitat Autonoma de Barcelona";"1988-2025";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +24132;21100860444;"Dog Behavior";journal;"24210684, 24215678";"Edizioni ETS";No;No;0,167;Q4;12;7;37;230;18;37;0,59;32,86;68,75;0;Italy;Western Europe;"Edizioni ETS";"2015-2026";"Animal Science and Zoology (Q4); Applied Psychology (Q4); Small Animals (Q4)";"Agricultural and Biological Sciences; Psychology; Veterinary" +24133;15633;"Fortschritte der Neurologie Psychiatrie";journal;"14393522, 07204299";"Georg Thieme Verlag";No;No;0,167;Q4;36;117;366;1380;92;195;0,25;11,79;31,90;0;Germany;Western Europe;"Georg Thieme Verlag";"1955-1963, 1973-2026";"Medicine (miscellaneous) (Q4); Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience" +24134;27945;"Geophysica";journal;"03674231";"Finish Environment Institute";Yes;No;0,167;Q4;23;1;7;61;6;7;0,80;61,00;100,00;0;Finland;Western Europe;"Finish Environment Institute";"1978-1985, 1988, 1990-2024";"Geophysics (Q4)";"Earth and Planetary Sciences" +24135;19600157924;"Hacettepe Egitim Dergisi";journal;"13005340";"Hacettepe University";Yes;No;0,167;Q4;24;6;162;272;68;154;0,56;45,33;53,85;0;Turkey;Middle East;"Hacettepe University";"2008-2025";"Education (Q4)";"Social Sciences" +24136;21101184419;"Indonesian Journal of Occupational Safety and Health";journal;"23018046, 25407872";"Airlangga University Faculty of Public Health";Yes;Yes;0,167;Q4;7;37;155;1292;79;151;0,48;34,92;52,22;0;Indonesia;Asiatic Region;"Airlangga University Faculty of Public Health";"2019-2025";"Applied Psychology (Q4); Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4)";"Environmental Science; Medicine; Psychology" +24137;21101070993;"International Journal of Exploration Geophysics, Remote Sensing and Environment";journal;"18031447, 18052266";"CAAG - Czech Association of Geophysicists";No;No;0,167;Q4;2;11;30;195;6;30;0,30;17,73;25,81;0;Czech Republic;Eastern Europe;"CAAG - Czech Association of Geophysicists";"2019-2025";"Computers in Earth Sciences (Q4); Environmental Engineering (Q4); Geophysics (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Environmental Science" +24138;21100379254;"International Journal of Project Organisation and Management";journal;"17402905, 17402891";"Inderscience";No;No;0,167;Q4;20;20;62;1371;40;62;0,69;68,55;20,37;0;Switzerland;Western Europe;"Inderscience";"2008-2025";"Strategy and Management (Q4)";"Business, Management and Accounting" +24139;21100198223;"International Journal of Reasoning-based Intelligent Systems";journal;"17550556, 17550564";"Inderscience";No;No;0,167;Q4;17;68;127;1347;113;127;0,90;19,81;47,00;0;Switzerland;Western Europe;"Inderscience";"2009-2026";"Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)";"Computer Science; Engineering" +24140;19700186954;"Iranian Journal of Epidemiology";journal;"17357489";"Iranian Epidemiological Association";Yes;Yes;0,167;Q4;17;31;89;786;40;85;0,54;25,35;51,46;0;Iran;Middle East;"Iranian Epidemiological Association";"2010-2025";"Epidemiology (Q4)";"Medicine" +24141;21101197401;"Journal of Animal Ethics";journal;"21601267, 21565414";"University of Illinois Press";No;No;0,167;Q4;5;18;52;619;21;47;0,31;34,39;80,00;0;United States;Northern America;"University of Illinois Press";"2019-2025";"Animal Science and Zoology (Q4); Issues, Ethics and Legal Aspects (Q4)";"Agricultural and Biological Sciences; Nursing" +24142;21101068033;"Journal of Environmental and Occupational Medicine";journal;"20959982";"Shanghai Municipal Center for Disease Control and Prevention";Yes;No;0,167;Q4;9;211;590;7487;344;590;0,62;35,48;50,00;0;China;Asiatic Region;"Shanghai Municipal Center for Disease Control and Prevention";"2019-2026";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +24143;21101323190;"Journal of Mathematical Research with Applications";journal;"20952651";"Dalian University of Technology";No;No;0,167;Q4;4;60;189;1284;40;189;0,22;21,40;44,19;0;China;Asiatic Region;"Dalian University of Technology";"2021-2026";"Applied Mathematics (Q4)";"Mathematics" +24144;29991;"Journal of Radiation Research and Radiation Processing";journal;"10003436";"Science Press";Yes;Yes;0,167;Q4;8;60;210;2058;115;210;0,57;34,30;36,55;0;China;Asiatic Region;"Science Press";"1998, 2001-2006, 2019-2025";"Nuclear Energy and Engineering (Q4); Radiation (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Energy; Medicine; Physics and Astronomy" +24145;19700176606;"Malaysian Journal of Consumer and Family Economics";journal;"15112802";"Malaysian Consumer and Family Economics Association";Yes;No;0,167;Q4;13;37;130;2683;115;130;0,81;72,51;42,86;0;Malaysia;Asiatic Region;"Malaysian Consumer and Family Economics Association";"2007-2013, 2015-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +24146;17856;"Neiranji Gongcheng/Chinese Internal Combustion Engine Engineering";journal;"10000925";"Chinese Society for Internal Combustion Engines";No;No;0,167;Q4;16;79;229;1879;118;229;0,48;23,78;30,62;0;China;Asiatic Region;"Chinese Society for Internal Combustion Engines";"1984-1988, 1991-1992, 2003-2025";"Automotive Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +24147;13018;"Pirineos";journal;"19884281, 03732568";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,167;Q4;18;0;24;0;16;24;0,19;0,00;0,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1973, 1981-2002, 2004-2024";"Earth and Planetary Sciences (miscellaneous) (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science; Social Sciences" +24148;18583;"Power Technology and Engineering";trade journal;"15701468, 1570145X";"Springer New York";No;No;0,167;Q4;16;81;462;1090;118;462;0,31;13,46;27,15;0;United States;Northern America;"Springer New York";"1996, 1998, 2000-2025";"Energy Engineering and Power Technology (Q4)";"Energy" +24149;21100218382;"Progress on Chemistry and Application of Chitin and its Derivatives";journal;"18965644";"Polish Chitin Society";No;No;0,167;Q4;17;23;58;845;43;58;0,90;36,74;64,00;0;Poland;Eastern Europe;"Polish Chitin Society";"2012-2025";"Biochemistry (Q4); Organic Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +24150;21101136890;"Revista Medica Clinica Las Condes";journal;"07168640, 25310186";"Elsevier Espana S.L.U";Yes;Yes;0,167;Q4;22;76;197;1889;129;180;0,36;24,86;40,59;0;Spain;Western Europe;"Elsevier Espana S.L.U";"2010-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +24151;17700155712;"Revue Francaise de Gestion";journal;"03384551";"John Libbey";No;No;0,167;Q4;27;53;127;2824;72;114;0,52;53,28;41,76;0;France;Western Europe;"John Libbey";"2002-2024";"Business and International Management (Q4); Economics and Econometrics (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +24152;21101030114;"Scientific and Technical Journal of Information Technologies, Mechanics and Optics";journal;"22261494, 25000373";"ITMO University";Yes;No;0,167;Q4;11;132;410;3233;182;410;0,49;24,49;25,13;0;Russian Federation;Eastern Europe;"ITMO University";"2015, 2019-2025";"Atomic and Molecular Physics, and Optics (Q4); Computer Science Applications (Q4); Electronic, Optical and Magnetic Materials (Q4); Information Systems (Q4); Mechanical Engineering (Q4)";"Computer Science; Engineering; Materials Science; Physics and Astronomy" +24153;21101193870;"Seed and Plant Journal";journal;"27834409";"Seed and Plant Improvement Research Institute";No;No;0,167;Q4;4;10;64;375;18;64;0,26;37,50;17,65;0;Iran;Middle East;"Seed and Plant Improvement Research Institute";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Horticulture (Q4)";"Agricultural and Biological Sciences" +24154;54207;"Tekstil ve Muhendis";journal;"13007599, 21470510";"Chamber of Textile Engineers";Yes;No;0,167;Q4;9;31;105;1434;54;105;0,55;46,26;52,86;0;Turkey;Middle East;"Chamber of Textile Engineers";"1991-1992, 2012-2025";"Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +24155;19600162013;"The gulf journal of oncology";journal;"20782101";"Gulf Federation for Cancer Control";No;No;0,167;Q4;15;21;96;0;42;96;0,40;0,00;47,19;0;Kuwait;Middle East;"Gulf Federation for Cancer Control";"2007-2013, 2016-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +24156;21101186994;"Tianran Chanwu Yanjiu yu Kaifa";journal;"10016880";"Science Press";Yes;No;0,167;Q4;12;252;714;7184;471;714;0,78;28,51;49,45;0;China;Asiatic Region;"Science Press";"2019-2026";"Chemistry (miscellaneous) (Q4); Organic Chemistry (Q4)";"Chemistry" +24157;21101059489;"Trends in Immunotherapy";journal;"25735985";"UK Scientific Publishing Limited";No;No;0,167;Q4;6;64;85;3711;53;79;0,70;57,98;32,99;0;United Kingdom;Western Europe;"UK Scientific Publishing Limited";"2017-2025";"Immunology (Q4); Immunology and Allergy (Q4); Oncology (Q4); Pharmacology (medical) (Q4)";"Immunology and Microbiology; Medicine" +24158;39636;"Tropical Agriculture";journal;"00413216";"University of the West Indies";No;No;0,167;Q4;21;56;96;2345;54;90;0,55;41,88;28,65;0;Trinidad and Tobago;Latin America;"University of the West Indies";"1979-1980, 1982-1983, 1985, 1987-2025";"Agronomy and Crop Science (Q4); Development (Q4)";"Agricultural and Biological Sciences; Social Sciences" +24159;4700152851;"Turk Geriatri Dergisi";journal;"13079948, 13042947";"Turkish Geriatrics Society";Yes;No;0,167;Q4;20;60;168;1285;58;156;0,32;21,42;55,84;0;Turkey;Middle East;"Turkish Geriatrics Society";"1998-2002, 2006-2025";"Geriatrics and Gerontology (Q4)";"Medicine" +24160;12700154752;"Ukrainian Botanical Journal";journal;"03724123, 24158860";"Publishing House Akademperiodyka";Yes;Yes;0,167;Q4;6;46;105;2083;60;104;0,60;45,28;48,87;0;Ukraine;Eastern Europe;"Publishing House Akademperiodyka";"2001, 2020-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Ecology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +24161;21101023659;"U.S. Geological Survey Fact Sheet";journal;"23276916, 23276932";"US Geological Survey";No;No;0,167;Q4;9;59;107;546;31;73;0,26;9,25;40,56;51;United States;Northern America;"US Geological Survey";"2019-2026";"Ecology (Q4); Geology (Q4); Water Science and Technology (Q4)";"Earth and Planetary Sciences; Environmental Science" +24162;22332;"USDA Forest Service - General Technical Report PNW-GTR";journal;"08874840";"USDA Forest Service";No;No;0,167;Q4;25;5;70;555;22;65;0,17;111,00;51,61;0;United States;Northern America;"USDA Forest Service";"1996-2025";"Ecology (Q4); Forestry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24163;21101199453;"Water Saving Irrigation";journal;"10074929";"";Yes;No;0,167;Q4;9;131;731;3797;291;731;0,37;28,98;34,98;0;China;Asiatic Region;"";"2020-2025";"Agronomy and Crop Science (Q4); Aquatic Science (Q4); Plant Science (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24164;35948;"Zhejiang Daxue Xuebao (Nongye yu Shengming Kexue Ban)/Journal of the Zhejiang University - Agriculture and Life Science";journal;"10089209";"Zhejiang University";No;No;0,167;Q4;14;100;209;4517;138;208;0,71;45,17;40,85;0;China;Asiatic Region;"Zhejiang University";"2001-2006, 2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Food Science (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Veterinary" +24165;10300153337;"Brazilian Symposium of Computer Graphic and Image Processing";conference and proceedings;"15301834";"IEEE Computer Society";No;No;0,167;-;35;91;105;2455;67;99;0,64;26,98;16,78;0;United States;Northern America;"IEEE Computer Society";"2000-2006, 2012-2015, 2023-2025";"Computer Graphics and Computer-Aided Design; Engineering (miscellaneous); Signal Processing; Software";"Computer Science; Engineering" +24166;21101222664;"National Radio Science Conference, NRSC, Proceedings";conference and proceedings;"11106972";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,167;-;18;41;39;661;38;37;0,95;16,12;35,51;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1996, 1998, 2000-2009, 2011-2016, 2022, 2024-2025";"Condensed Matter Physics; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Engineering; Materials Science; Physics and Astronomy" +24167;21101178641;"Proceedings - International Symposium on Asynchronous Circuits and Systems";conference and proceedings;"26431483, 26431394";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,167;-;33;21;16;411;9;14;0,56;19,57;11,54;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2001-2003, 2005-2021, 2023, 2025";"Electrical and Electronic Engineering";"Engineering" +24168;21101060113;"Boletin de la Academia Peruana de la Lengua";journal;"27082644, 05676002";"Academia Peruana de la Lengua";Yes;Yes;0,166;Q1;6;5;101;136;22;97;0,12;27,20;50,00;0;Peru;Latin America;"Academia Peruana de la Lengua";"2020-2024";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +24169;21100386858;"Electrum";journal;"18973426, 20843909";"Jagiellonian University Press";Yes;Yes;0,166;Q1;8;23;46;1002;17;45;0,30;43,57;45,45;0;Poland;Eastern Europe;"Jagiellonian University Press";"2014-2025";"Classics (Q1); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24170;21101047932;"Yearbook of Langland Studies";journal;"08902917, 20310242";"Brepols Publishers";No;No;0,166;Q1;3;0;28;0;6;27;0,09;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2019-2024";"Literature and Literary Theory (Q1)";"Arts and Humanities" +24171;6500153171;"Contemporary Buddhism";journal;"14767953, 14639947";"Routledge";No;No;0,166;Q2;15;6;24;222;8;21;0,33;37,00;28,57;0;United Kingdom;Western Europe;"Routledge";"2010-2025";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +24172;14724;"Gender and History";journal;"09535233, 14680424";"Wiley-Blackwell Publishing Ltd";No;No;0,166;Q2;42;88;183;0;106;181;0,60;0,00;73,79;1;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1989-2026";"Arts and Humanities (miscellaneous) (Q2); History (Q2); Gender Studies (Q3); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +24173;21101039081;"International Journal of Sociology of Agriculture and Food";journal;"25241982, 07981759";"";No;No;0,166;Q2;7;15;43;1184;28;43;0,69;78,93;40,00;0;United States;Northern America;"";"2019-2025";"Cultural Studies (Q2); Sociology and Political Science (Q3); Food Science (Q4)";"Agricultural and Biological Sciences; Social Sciences" +24174;21100202141;"International Review of Mission";journal;"00208582, 17586631";"Wiley-Blackwell";No;No;0,166;Q2;14;9;81;180;19;59;0,27;20,00;87,50;0;United States;Northern America;"Wiley-Blackwell";"1912-1929, 1931-1935, 1937-1939, 1941-1942, 1944-2025";"Religious Studies (Q2)";"Arts and Humanities" +24175;20067;"Irish Economic and Social History";journal;"03324893, 20504918";"SAGE Publications Inc.";No;No;0,166;Q2;9;7;25;346;7;25;0,29;49,43;11,11;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1975-1976, 1979, 1999-2025";"History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24176;5700162134;"Journal of Modern Jewish Studies";journal;"14725886, 14725894";"Routledge";No;No;0,166;Q2;13;41;93;2006;28;88;0,32;48,93;44,19;0;United Kingdom;Western Europe;"Routledge";"2002, 2010-2026";"Cultural Studies (Q2); History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24177;19700183032;"Journal of the Musical Arts in Africa";journal;"2070626X, 18121004";"Routledge";No;No;0,166;Q2;8;9;28;355;15;24;0,33;39,44;22,22;0;United Kingdom;Western Europe;"Routledge";"2004-2005, 2007-2025";"Music (Q2)";"Arts and Humanities" +24178;21101142416;"Journal of Underrepresented and Minority Progress";journal;"25743465, 25743481";"STAR Scholars Network";No;No;0,166;Q2;6;41;61;1775;46;59;0,80;43,29;63,41;0;United States;Northern America;"STAR Scholars Network";"2019-2025";"Cultural Studies (Q2); Philosophy (Q2); Sociology and Political Science (Q3); Education (Q4); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology; Social Sciences" +24179;21100467353;"Materiale si Cercetari Arheologice";journal;"00765147";"Editura Academiei Romane";Yes;Yes;0,166;Q2;7;21;38;1027;7;38;0,25;48,90;27,91;0;Romania;Eastern Europe;"Editura Academiei Romane";"2015-2025";"History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24180;21101277896;"Proceedings of the International Society for Music Information Retrieval Conference";book series;"30063094";"";No;No;0,166;Q2;9;97;228;3811;237;38;1,04;39,29;0,00;0;Canada;Northern America;"";"2020-2025";"Music (Q2); Artificial Intelligence (Q4); Human-Computer Interaction (Q4); Signal Processing (Q4)";"Arts and Humanities; Computer Science" +24181;21101028389;"Res Mobilis";journal;"22552057";"Universidad de Oviedo";Yes;Yes;0,166;Q2;3;10;74;454;26;73;0,37;45,40;38,46;0;Spain;Western Europe;"Universidad de Oviedo";"2019-2025";"History (Q2); Visual Arts and Performing Arts (Q2); Anthropology (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +24182;21100877822;"Revista Argentina de Ciencias del Comportamiento";journal;"18524206";"Universidad Nacional de Cordoba - Facultad de Psicologia";Yes;Yes;0,166;Q2;10;24;100;1286;45;99;0,43;53,58;50,62;0;Argentina;Latin America;"Universidad Nacional de Cordoba - Facultad de Psicologia";"2018-2025";"Linguistics and Language (Q2); Behavioral Neuroscience (Q4); Developmental and Educational Psychology (Q4); Experimental and Cognitive Psychology (Q4)";"Neuroscience; Psychology; Social Sciences" +24183;21100814517;"Space and Culture, India";journal;"20528396";"ACCB Publishing";Yes;No;0,166;Q2;17;35;96;1703;52;89;0,56;48,66;42,86;0;United Kingdom;Western Europe;"ACCB Publishing";"2013-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Gender Studies (Q3); Sociology and Political Science (Q3); Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Education (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +24184;16200154718;"Theatre History Studies";journal;"07332033, 21669953";"Mid-America Theatre Conference";No;No;0,166;Q2;7;0;39;0;9;34;0,12;0,00;0,00;0;United States;Northern America;"Mid-America Theatre Conference";"2002-2012, 2014-2019, 2021-2024";"Cultural Studies (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities; Social Sciences" +24185;21100945723;"Transnational Screens";journal;"25785265, 25785273";"Taylor and Francis Ltd.";No;No;0,166;Q2;16;19;50;839;25;48;0,45;44,16;63,64;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2020-2026";"Visual Arts and Performing Arts (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +24186;21101070364;"Advanced Ultrasound in Diagnosis and Therapy";journal;"25762516, 25762508";"Pringma, LLC";Yes;Yes;0,166;Q3;9;49;125;2583;70;122;0,64;52,71;52,59;0;United States;Northern America;"Pringma, LLC";"2018-2025";"Medical Laboratory Technology (Q3); Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine" +24187;21101152130;"Al-Anbar Medical Journal";journal;"26643154, 27066207";"University of Anbar";Yes;No;0,166;Q3;5;46;92;1378;61;76;0,71;29,96;47,47;0;Iraq;Middle East;"University of Anbar";"2019-2026";"Dentistry (miscellaneous) (Q3)";"Dentistry" +24188;21100245913;"Bilgi Dunyasi";journal;"13023217, 2148354X";"University and Research Librarians Association (UNAK)";Yes;Yes;0,166;Q3;7;20;34;1033;14;33;0,42;51,65;48,48;0;Turkey;Middle East;"University and Research Librarians Association (UNAK)";"2013-2025";"Library and Information Sciences (Q3)";"Social Sciences" +24189;21101375575;"International Journal of Narrative Therapy and Community Work";journal;"29818818";"Dulwich Centre Foundation";Yes;No;0,166;Q3;3;19;53;334;19;51;0,21;17,58;70,59;0;Australia;Pacific Region;"Dulwich Centre Foundation";"2023-2025";"Health Professions (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Psychology (miscellaneous) (Q4)";"Health Professions; Psychology; Social Sciences" +24190;16227;"Journal of Law and Medicine";journal;"1320159X";"Thomson Reuters (Professional) Australia Ltd";No;No;0,166;Q3;23;40;175;0;88;172;0,58;0,00;44,59;0;Australia;Pacific Region;"Thomson Reuters (Professional) Australia Ltd";"1994, 2001-2025";"Law (Q3); Health Policy (Q4); Issues, Ethics and Legal Aspects (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Nursing; Social Sciences" +24191;21101105750;"Jurnal Keperawatan Soedirman";journal;"25799320, 19076673";"Universitas Jenderal Soedirman";Yes;No;0,166;Q3;4;30;75;1066;52;75;0,72;35,53;63,44;0;Indonesia;Asiatic Region;"Universitas Jenderal Soedirman";"2022-2025";"Medical and Surgical Nursing (Q3); Community and Home Care (Q4); Maternity and Midwifery (Q4); Pediatrics (Q4)";"Nursing" +24192;21101199909;"Memleket: Siyaset Ve Yonetim";journal;"13068202";"Yerel Yonetim Arastirma Yardim ve Egitim Dernegi";No;No;0,166;Q3;2;16;67;846;17;65;0,21;52,88;13,04;0;Turkey;Middle East;"Yerel Yonetim Arastirma Yardim ve Egitim Dernegi";"2019-2025";"Sociology and Political Science (Q3); Public Administration (Q4)";"Social Sciences" +24193;23005;"Notes and Records";journal;"00359149, 17430178";"Royal Society Publishing";No;No;0,166;Q3;28;21;112;2178;52;105;0,45;103,71;33,33;0;United Kingdom;Western Europe;"Royal Society Publishing";"1970-1973, 1975-2025";"History and Philosophy of Science (Q3)";"Arts and Humanities" +24194;19157;"South African Law Journal";journal;"19962177, 02582503";"Juta and Company Ltd";No;No;0,166;Q3;6;37;93;277;23;85;0,23;7,49;54,84;0;South Africa;Africa;"Juta and Company Ltd";"1977-1978, 1997, 2001-2002, 2019-2025";"Law (Q3)";"Social Sciences" +24195;21100894848;"sub\urban";journal;"21972567";"suburban eV";Yes;Yes;0,166;Q3;14;29;127;1267;26;116;0,25;43,69;71,43;0;Germany;Western Europe;"suburban eV";"2013-2025";"Urban Studies (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +24196;21101190205;"Acta Biologica Slovenica";journal;"18543073";"Univerza v Ljubljani";Yes;Yes;0,166;Q4;5;47;40;2098;29;39;0,87;44,64;51,39;0;Slovenia;Eastern Europe;"Univerza v Ljubljani";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Animal Science and Zoology (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +24197;21101238563;"Advance Sustainable Science, Engineering and Technology";journal;"27154211";"University of PGRI Semarang";No;No;0,166;Q4;9;94;154;3360;170;154;1,10;35,74;36,44;0;Indonesia;Asiatic Region;"University of PGRI Semarang";"2020-2025";"Chemistry (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Chemistry; Engineering" +24198;21101193860;"African Journal of Applied Research";journal;"24087920";"Cape Coast Technical University";Yes;No;0,166;Q4;6;157;153;6971;174;153;1,16;44,40;26,89;0;Ghana;Africa;"Cape Coast Technical University";"2019-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +24199;24816;"Bolleti de la Societat d'Historia Natural de les Balears";journal;"24448192, 0212260X";"Societat d'Historia Natural de les Balears";No;No;0,166;Q4;13;13;48;440;23;48;0,37;33,85;27,78;0;Spain;Western Europe;"Societat d'Historia Natural de les Balears";"1992-1996, 2000-2012, 2014-2015, 2020-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4); Geology (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +24200;21101257827;"Chinese Journal of Behavioral Medicine and Brain Science";journal;"16746554";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,166;Q4;8;146;540;4676;307;540;0,66;32,03;51,86;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Medicine (miscellaneous) (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine" +24201;21101330158;"Chinese Journal of Infection Control";journal;"16719638, 20969244";"Hunan Xiangya Medical Periodical Press Co.Ltd";No;No;0,166;Q4;9;243;640;6672;304;640;0,50;27,46;52,41;0;China;Asiatic Region;"Hunan Xiangya Medical Periodical Press Co.Ltd";"2021-2026";"Genetics (Q4); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +24202;4000152131;"Global Economy Journal";journal;"15535304, 21945659";"World Scientific";No;No;0,166;Q4;25;10;25;374;31;25;0,33;37,40;25,00;0;Singapore;Asiatic Region;"World Scientific";"2006-2026";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +24203;28569;"Gulhane Medical Journal";journal;"13020471, 21468052";"Galenos Publishing House";Yes;No;0,166;Q4;16;46;132;1132;56;117;0,46;24,61;43,51;0;Turkey;Middle East;"Galenos Publishing House";"1998-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +24204;21101144886;"Indonesian Journal of Public Health";journal;"25408836, 18297005";"Airlangga University Faculty of Public Health";Yes;Yes;0,166;Q4;5;48;139;1935;67;136;0,53;40,31;69,57;0;Indonesia;Asiatic Region;"Airlangga University Faculty of Public Health";"2019-2025";"Epidemiology (Q4); Health Policy (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +24205;21101344619;"International Journal of Artificial Intelligence and Machine Learning";journal;"27892557";"SvedbergOpen";No;No;0,166;Q4;4;12;35;244;33;35;0,88;20,33;11,76;0;South Africa;Africa;"SvedbergOpen";"2021-2026";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Human-Computer Interaction (Q4)";"Computer Science" +24206;21100236611;"International Journal of Business and Globalisation";journal;"17533627, 17533635";"Inderscience";No;No;0,166;Q4;26;65;263;4121;176;259;0,56;63,40;39,24;0;Switzerland;Western Europe;"Inderscience";"2007-2025";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +24207;21100223333;"International Journal of Distributed Systems and Technologies";journal;"19473540, 19473532";"IGI Publishing";No;No;0,166;Q4;18;3;71;86;94;71;1,40;28,67;42,86;0;United States;Northern America;"IGI Publishing";"2010-2025";"Computer Networks and Communications (Q4); Hardware and Architecture (Q4)";"Computer Science" +24208;3900148221;"International Journal of Services and Standards";journal;"17408857, 17408849";"Inderscience Enterprises Ltd";No;No;0,166;Q4;20;5;17;270;14;17;0,82;54,00;36,36;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2020, 2023-2025";"Management of Technology and Innovation (Q4)";"Business, Management and Accounting" +24209;19130;"International Journal on Algae";journal;"15219429";"Begell House Inc.";No;No;0,166;Q4;14;29;79;1230;27;78;0,48;42,41;45,71;0;United States;Northern America;"Begell House Inc.";"2004-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +24210;19700174704;"ITEA Informacion Tecnica Economica Agraria";journal;"16996887";"Asociacion Interprofesional para el Desarrollo Agrario";Yes;No;0,166;Q4;14;22;82;1020;39;82;0,46;46,36;34,72;0;Spain;Western Europe;"Asociacion Interprofesional para el Desarrollo Agrario";"2005-2025";"Agronomy and Crop Science (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Horticulture (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Veterinary" +24211;19700188154;"Journal of Biopesticides";journal;"22308385, 0974391X";"Crop Protection Research Centre";Yes;No;0,166;Q4;31;18;57;660;32;57;0,54;36,67;37,93;0;India;Asiatic Region;"Crop Protection Research Centre";"2010-2025";"Agronomy and Crop Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +24212;21100199727;"Journal of Computing and Information Technology";journal;"13301136, 18463908";"University of Zagreb Faculty of Electrical Engineering and Computing";Yes;No;0,166;Q4;31;20;65;397;41;53;0,63;19,85;47,06;0;Croatia;Eastern Europe;"University of Zagreb Faculty of Electrical Engineering and Computing";"1996-2025";"Computer Science (miscellaneous) (Q4)";"Computer Science" +24213;21100843323;"Journal of Health and Pollution";journal;"21569614";"Pure Earth";Yes;Yes;0,166;Q4;32;3;8;107;8;6;1,00;35,67;37,25;0;United States;Northern America;"Pure Earth";"2011, 2017-2021, 2024-2025";"Health, Toxicology and Mutagenesis (Q4); Pollution (Q4); Public Health, Environmental and Occupational Health (Q4)";"Environmental Science; Medicine" +24214;21101131471;"Jurnal Keperawatan Padjadjaran";journal;"23385324, 24427276";"Faculty of Nursing, University of Padjadjaran";Yes;No;0,166;Q4;6;37;96;1337;44;96;0,46;36,14;46,79;0;Indonesia;Asiatic Region;"Faculty of Nursing, University of Padjadjaran";"2019-2025";"Community and Home Care (Q4); Critical Care Nursing (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Nursing" +24215;21100818926;"Kappa Delta Pi Record";journal;"21631611, 00228958";"Routledge";No;No;0,166;Q4;15;0;58;0;27;49;0,67;0,00;0,00;0;United Kingdom;Western Europe;"Routledge";"1976-1977, 1996, 2003, 2013, 2015-2023";"Education (Q4)";"Social Sciences" +24216;110087;"Mikrobiolohichnyi Zhurnal";journal;"10280987, 26169258";"Zabolotny Institute of Microbiology and Virology, NAS of Ukraine";No;No;0,166;Q4;14;42;149;1792;110;149;0,82;42,67;57,76;0;Ukraine;Eastern Europe;"Zabolotny Institute of Microbiology and Virology, NAS of Ukraine";"1993-2025";"Biotechnology (Q4); Immunology (Q4); Microbiology (Q4); Microbiology (medical) (Q4); Molecular Biology (Q4); Virology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +24217;16465;"Mineralia Slovaca";journal;"13383523, 03692086";"State Geological Institute of Dionyz Stur";Yes;Yes;0,166;Q4;7;3;31;129;15;31;0,38;43,00;23,08;0;Slovakia;Eastern Europe;"State Geological Institute of Dionyz Stur";"1981-1985, 1989, 2017-2025";"Geochemistry and Petrology (Q4); Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +24218;20600195601;"Revista Cientifica de la Sociedad Espanola de Enfermeria Neurologica";journal;"20135246, 21739153";"Ediciones Doyma, S.L.";No;No;0,166;Q4;7;27;43;553;20;41;0,46;20,48;70,16;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2010-2026";"Nursing (miscellaneous) (Q4)";"Nursing" +24219;21100872121;"Revista Portuguesa de Educacao";journal;"21830452, 08719187";"Center for Research in Education, Institute of Education of the University of Minho";Yes;Yes;0,166;Q4;7;39;133;1471;57;127;0,37;37,72;71,91;0;Portugal;Western Europe;"Center for Research in Education, Institute of Education of the University of Minho";"2018-2026";"Education (Q4)";"Social Sciences" +24220;21100262296;"SEPM Special Publications";book series;"1060071X";"SEPM Society for Sedimentary Geology";No;No;0,166;Q4;29;0;34;0;14;30;0,50;0,00;0,00;0;United States;Northern America;"SEPM Society for Sedimentary Geology";"2004-2005, 2007, 2011-2014, 2016-2017, 2019, 2022-2023";"Geology (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +24221;21101102001;"SKIN: Journal of Cutaneous Medicine";journal;"25741624";"National Society for Cutaneous Medicine";Yes;Yes;0,166;Q4;10;156;542;1804;103;416;0,21;11,56;54,30;0;United States;Northern America;"National Society for Cutaneous Medicine";"2017-2026";"Dermatology (Q4)";"Medicine" +24222;21101041814;"St. Petersburg State Polytechnical University Journal: Physics and Mathematics";journal;"26188686, 23049782";"St. Petersburg Polytechnic University of Peter the Great";No;No;0,166;Q4;7;63;606;1296;122;604;0,21;20,57;27,64;0;Russian Federation;Eastern Europe;"St. Petersburg Polytechnic University of Peter the Great";"2019-2025";"Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Mathematical Physics (Q4); Statistical and Nonlinear Physics (Q4)";"Mathematics; Physics and Astronomy" +24223;75884;"American Society of Mechanical Engineers, Fluids Engineering Division (Publication) FEDSM";conference and proceedings;"08888116";"American Society of Mechanical Engineers (ASME)";No;No;0,166;-;28;156;265;3615;124;259;0,53;23,17;21,05;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1983-2006, 2010, 2012-2014, 2016-2022, 2024-2025";"Engineering (miscellaneous); Mechanical Engineering";"Engineering" +24224;21100228702;"Chinese Control Conference, CCC";conference and proceedings;"21612927, 19341768";"IEEE Computer Society";No;No;0,166;-;45;1554;4298;28600;1974;4292;0,44;18,40;34,47;0;United States;Northern America;"IEEE Computer Society";"2012-2025";"Applied Mathematics; Computer Science Applications; Control and Systems Engineering; Modeling and Simulation";"Computer Science; Engineering; Mathematics" +24225;21101280297;"IEEE International Symposium on Phased Array Systems and Technology";conference and proceedings;"27671909, 15548422";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,166;-;3;0;160;0;64;159;0,40;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Electrical and Electronic Engineering";"Engineering" +24226;21101131210;"International Conference on Computer-Human Interaction Research and Applications, CHIRA - Proceedings";conference and proceedings;"21843244";"Science and Technology Publications, Lda";No;No;0,166;-;5;0;31;0;22;29;0,00;0,00;0,00;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2022";"Human-Computer Interaction";"Computer Science" +24227;21101131213;"Proceedings - International Workshop on Electric Drives, IWED";conference and proceedings;"27677834, 27677842";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,166;-;5;0;23;0;23;22;0,00;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2022";"Control and Optimization; Electrical and Electronic Engineering; Mechanical Engineering; Safety, Risk, Reliability and Quality";"Engineering; Mathematics" +24228;20300195012;"Proceedings - RoEduNet IEEE International Conference";conference and proceedings;"20681038";"IEEE Computer Society";No;No;0,166;-;15;98;98;1805;77;94;0,79;18,42;25,11;0;United States;Northern America;"IEEE Computer Society";"2011, 2013-2014, 2019-2025";"Computer Networks and Communications; Education";"Computer Science; Social Sciences" +24229;21101062496;"Cuadernos de Ilustracion y Romanticismo";journal;"11328304, 21730687";"Universidad de Cadiz";Yes;Yes;0,165;Q1;4;32;139;1529;13;122;0,11;47,78;39,39;0;Spain;Western Europe;"Universidad de Cadiz";"2019-2025";"Literature and Literary Theory (Q1); History (Q2); Linguistics and Language (Q2); Philosophy (Q2); History and Philosophy of Science (Q3)";"Arts and Humanities; Social Sciences" +24230;5700188156;"Postmodern Culture";journal;"10531920";"Johns Hopkins University Press";Yes;No;0,165;Q1;14;0;39;0;9;37;0,13;0,00;0,00;0;United States;Northern America;"Johns Hopkins University Press";"2002-2024";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities; Social Sciences" +24231;21100877012;"Slovenska Literatura";journal;"00376973";"Institute of Slovak Literature SAS";Yes;Yes;0,165;Q1;4;45;140;1221;21;129;0,17;27,13;51,28;0;Slovakia;Eastern Europe;"Institute of Slovak Literature SAS";"2018-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +24232;21100904782;"Studia Litterarum";journal;"25004247, 25418564";"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";Yes;Yes;0,165;Q1;5;77;228;1463;28;228;0,14;19,00;71,25;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";"2016-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +24233;5800209323;"Acta Linguistica Hafniensia";journal;"03740463, 19490763";"Routledge";No;No;0,165;Q2;19;4;49;251;13;46;0,29;62,75;40,00;0;United Kingdom;Western Europe;"Routledge";"1939-1940, 1942, 1944-1945, 1951-1952, 1960, 1965-1966, 1968-1969, 1971, 1973-1974, 1978, 1982-1983, 1985, 1987-1988, 1990-1994, 1996-2025";"Linguistics and Language (Q2)";"Social Sciences" +24234;21100207633;"Ge-Conservacion";journal;"19898568";"Grupo Espanol International Institute for Conservation";Yes;Yes;0,165;Q2;8;28;101;1067;39;101;0,38;38,11;58,00;0;Spain;Western Europe;"Grupo Espanol International Institute for Conservation";"2009-2025";"Museology (Q2); Visual Arts and Performing Arts (Q2); Conservation (Q3)";"Arts and Humanities" +24235;21100908544;"Global Intellectual History";journal;"23801883, 23801891";"Taylor and Francis Ltd.";No;No;0,165;Q2;10;64;140;3550;68;130;0,49;55,47;20,41;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2016-2026";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); History (Q2); Library and Information Sciences (Q3)";"Arts and Humanities; Social Sciences" +24236;26797;"History of Religions";journal;"15456935, 00182710";"University of Chicago Press";No;No;0,165;Q2;31;11;31;134;16;30;0,40;12,18;30,00;0;United States;Northern America;"University of Chicago Press";"1966, 1979, 1982, 1996-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +24237;21101090158;"Journal of Sound and Music in Games";journal;"25783432";"University of California Press";No;No;0,165;Q2;8;18;58;520;17;58;0,16;28,89;35,00;0;United States;Northern America;"University of California Press";"2020-2025";"Music (Q2); Computer Science Applications (Q4)";"Arts and Humanities; Computer Science" +24238;6000152799;"Journal of Visual Culture";journal;"17412994, 14704129";"SAGE Publications Ltd";No;No;0,165;Q2;35;19;53;672;36;51;0,71;35,37;70,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2002-2025";"Visual Arts and Performing Arts (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +24239;21100868101;"Loquens";journal;"23862637";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,165;Q2;5;10;34;558;11;34;0,34;55,80;63,16;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2014, 2018-2025";"Linguistics and Language (Q2); Communication (Q3); Speech and Hearing (Q4)";"Health Professions; Social Sciences" +24240;21100945724;"Muzealnictwo";journal;"23914815, 04641086";"National Institute for Museums and Public Collections";Yes;No;0,165;Q2;4;34;69;854;14;68;0,19;25,12;64,10;0;Poland;Eastern Europe;"National Institute for Museums and Public Collections";"2019-2025";"Museology (Q2); Conservation (Q3)";"Arts and Humanities" +24241;16400154751;"Problemos";journal;"13921126, 24246158";"Vilnius University Press";Yes;Yes;0,165;Q2;8;25;100;741;24;91;0,25;29,64;38,46;0;Lithuania;Eastern Europe;"Vilnius University Press";"2002-2025";"Philosophy (Q2)";"Arts and Humanities" +24242;21100805774;"Acta Politologica";journal;"18038220, 18041302";"";Yes;Yes;0,165;Q3;8;0;28;0;16;26;0,65;0,00;0,00;0;Czech Republic;Eastern Europe;"";"2016-2024";"Sociology and Political Science (Q3)";"Social Sciences" +24243;21101203742;"Asia Pacific Journal of Social Work and Development";journal;"29949769, 21650993";"Routledge";No;No;0,165;Q3;4;60;29;2889;19;25;0,66;48,15;48,91;0;United Kingdom;Western Europe;"Routledge";"2012, 2014, 2024-2026";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +24244;21100904989;"Atencion Primaria Practica";journal;"26050730";"Elsevier Espana S.L.U";Yes;No;0,165;Q3;6;0;96;0;45;67;0,69;0,00;0,00;0;Spain;Western Europe;"Elsevier Espana S.L.U";"2019-2024";"Family Practice (Q3)";"Medicine" +24245;66079;"Australian Journal of Anthropology";journal;"10358811, 17576547";"John Wiley and Sons Inc";No;No;0,165;Q3;34;40;69;1418;44;60;0,63;35,45;43,24;0;United States;Northern America;"John Wiley and Sons Inc";"1990-2026";"Anthropology (Q3)";"Social Sciences" +24246;21101248688;"Chinese Journal of Hospital Pharmacy";journal;"10015213";"";No;No;0,165;Q3;9;202;1462;5221;540;1462;0,38;25,85;50,63;0;China;Asiatic Region;"";"2020-2025";"Pharmacy (Q3); Pharmacology (Q4); Pharmacology (medical) (Q4)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +24247;21100242265;"International Journal of Intellectual Property Management";journal;"14789647, 14789655";"Inderscience";No;No;0,165;Q3;15;30;85;1856;73;85;0,54;61,87;50,85;0;Switzerland;Western Europe;"Inderscience";"2006-2016, 2019-2025";"Law (Q3); Business and International Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +24248;21101041818;"International Journal of Statistics in Medical Research";journal;"19296029";"Lifescience Global";No;No;0,165;Q3;6;83;100;2513;56;100;0,55;30,28;40,35;0;Canada;Northern America;"Lifescience Global";"2015, 2019-2026";"Health Professions (miscellaneous) (Q3); Health Informatics (Q4); Health Information Management (Q4); Statistics and Probability (Q4)";"Health Professions; Mathematics; Medicine" +24249;19400157005;"Journal of Hard Tissue Biology";journal;"13417649, 1880828X";"Society of Hard Tissue Regenerative Biology";No;No;0,165;Q3;18;31;98;1035;46;92;0,48;33,39;29,73;0;Japan;Asiatic Region;"Society of Hard Tissue Regenerative Biology";"2003-2005, 2007-2026";"Dentistry (miscellaneous) (Q3); Biochemistry (Q4); Biomaterials (Q4); Cell Biology (Q4); Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Dentistry; Materials Science; Medicine" +24250;21101075274;"Revista de Direito Economico e Socioambiental";journal;"2179345X, 21798214";"Pontificia Universidade Catolica do Parana";Yes;Yes;0,165;Q3;5;40;71;2234;11;71;0,16;55,85;42,86;0;Brazil;Latin America;"Pontificia Universidade Catolica do Parana";"2019-2026";"Law (Q3)";"Social Sciences" +24251;21100913566;"Revista de Gestao Ambiental e Sustentabilidade";journal;"23169834";"Universidade Nove de Julho-UNINOVE";Yes;No;0,165;Q3;6;9;75;429;41;74;0,61;47,67;36,00;0;Brazil;Latin America;"Universidade Nove de Julho-UNINOVE";"2019-2025";"Urban Studies (Q3); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +24252;5200152619;"Revista de Sociologia e Politica";journal;"01044478, 16789873";"Universidade Federal do Parana";Yes;No;0,165;Q3;22;6;73;337;24;73;0,31;56,17;50,00;0;Brazil;Latin America;"Universidade Federal do Parana";"2006-2025";"Sociology and Political Science (Q3)";"Social Sciences" +24253;144725;"Shenyang Jianzhu Daxue Xuebao (Ziran Kexue Ban)/Journal of Shenyang Jianzhu University (Natural Science)";journal;"20951922";"Editorial Department of Journal of Shenyang Jianzhu University (Natural Sciences)";No;No;0,165;Q3;17;0;404;0;189;404;0,46;0,00;0,00;0;China;Asiatic Region;"Editorial Department of Journal of Shenyang Jianzhu University (Natural Sciences)";"2005-2024";"Multidisciplinary (Q3)";"Multidisciplinary" +24254;5600152906;"Szociologiai Szemle";journal;"12162051";"Hungarian Sociological Association";No;No;0,165;Q3;10;19;61;1039;21;56;0,18;54,68;51,61;0;Hungary;Eastern Europe;"Hungarian Sociological Association";"2009-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +24255;19400156820;"Tijdschrift voor Communicatiewetenschap";journal;"18757286, 13846930";"Amsterdam University Press";No;No;0,165;Q3;9;11;69;393;20;57;0,26;35,73;59,09;0;Netherlands;Western Europe;"Amsterdam University Press";"2008-2025";"Communication (Q3)";"Social Sciences" +24256;21101180044;"Undergraduate Research in Natural and Clinical Science and Technology Journal";journal;"25615637";"";No;No;0,165;Q3;6;70;192;2283;77;191;0,36;32,61;69,81;0;Canada;Northern America;"";"2017-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +24257;10100153330;"Acta Periodica Technologica";journal;"14507188, 2406095X";"University of Novi Sad, Faculty of Technology";Yes;Yes;0,165;Q4;23;33;72;1335;55;72;0,96;40,45;46,46;0;Serbia;Eastern Europe;"University of Novi Sad, Faculty of Technology";"2007-2008, 2010-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +24258;21100928092;"Aging Medicine and Healthcare";journal;"26638851";"Full Universe Integrated Marketing Limited";Yes;Yes;0,165;Q4;26;51;98;1831;86;85;1,04;35,90;41,34;0;Taiwan;Asiatic Region;"Full Universe Integrated Marketing Limited";"2019-2025";"Geriatrics and Gerontology (Q4)";"Medicine" +24259;21100255514;"Change Management";journal;"2327798X, 23279176";"Common Ground Research Networks";No;No;0,165;Q4;6;9;19;586;15;19;0,45;65,11;45,16;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Strategy and Management (Q4)";"Business, Management and Accounting" +24260;19071;"Chinese Journal of Medical Genetics";journal;"10039406";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,165;Q4;20;194;869;4487;274;859;0,33;23,13;54,50;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1998-2026";"Genetics (clinical) (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +24261;21100408200;"Comparative Economic Research";journal;"15082008, 20826737";"Lodz University Press";Yes;No;0,165;Q4;19;32;102;1488;63;102;0,66;46,50;40,32;0;Poland;Eastern Europe;"Lodz University Press";"2009-2013, 2015-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +24262;21100205929;"Comunicata Scientiae";journal;"21775133, 21769079";"Federal University ofPiauI";Yes;No;0,165;Q4;20;74;223;2273;91;223;0,37;30,72;41,86;0;Brazil;Latin America;"Federal University ofPiauI";"2010-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +24263;13415;"Contemporary Psychoanalysis";journal;"00107530, 23309091";"Taylor and Francis Ltd.";No;No;0,165;Q4;37;0;90;0;30;75;0,21;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1964-2024";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +24264;19200156705;"Current Allergy and Clinical Immunology";journal;"16093607";"Allergy Society of South Africa";No;No;0,165;Q4;13;40;121;764;31;88;0,21;19,10;65,91;0;South Africa;Africa;"Allergy Society of South Africa";"2008-2025";"Immunology and Allergy (Q4)";"Medicine" +24265;20702;"Dalian Ligong Daxue Xuebao/Journal of Dalian University of Technology";journal;"10008608";"Dalian University of Technology";No;No;0,165;Q4;21;77;237;1639;107;237;0,37;21,29;31,25;0;China;Asiatic Region;"Dalian University of Technology";"1994-2026";"Applied Mathematics (Q4); Engineering (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Engineering; Mathematics; Physics and Astronomy" +24266;21101214769;"Environment Conservation Journal";journal;"09723099, 22785124";"";Yes;No;0,165;Q4;8;157;426;6930;258;426;0,59;44,14;49,26;0;India;Asiatic Region;"";"2021-2025";"Environmental Science (miscellaneous) (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science" +24267;21101152126;"Food and Fermentation Industries";journal;"0253990X";"China National Research Institute of Food and Fermentation Industries Co. Ltd";No;No;0,165;Q4;15;1180;3305;38739;2486;3304;0,80;32,83;44,37;0;China;Asiatic Region;"China National Research Institute of Food and Fermentation Industries Co. Ltd";"2019-2026";"Applied Microbiology and Biotechnology (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology" +24268;21100845615;"Geogaceta";journal;"21736545, 0213683X";"Sociedad Geologica de Espana";Yes;Yes;0,165;Q4;7;45;135;549;40;135;0,35;12,20;33,89;0;Spain;Western Europe;"Sociedad Geologica de Espana";"2017-2025";"Geology (Q4)";"Earth and Planetary Sciences" +24269;29715;"Guangxue Jishu/Optical Technique";journal;"10021582";"Optical Technique";No;No;0,165;Q4;21;92;342;1999;135;342;0,45;21,73;33,52;0;China;Asiatic Region;"Optical Technique";"1992-2025";"Atomic and Molecular Physics, and Optics (Q4)";"Physics and Astronomy" +24270;21101049618;"Health Biotechnology and Biopharma";journal;"25384414";"Health Biotechnology And Biopharma";No;No;0,165;Q4;6;41;66;1589;61;66;1,14;38,76;42,37;0;Iran;Middle East;"Health Biotechnology And Biopharma";"2019-2026";"Biotechnology (Q4); Pharmacology (medical) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +24271;21101045333;"IIUM Medical Journal Malaysia";journal;"27352285";"International Islamic University Malaysia";No;No;0,165;Q4;16;81;235;2328;108;226;0,41;28,74;54,26;0;Malaysia;Asiatic Region;"International Islamic University Malaysia";"2018-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +24272;21101059734;"Indonesian Journal of Obstetrics and Gynecology";journal;"23387335, 23386401";"Indonesian Society of Obstetrics and Gynecology";Yes;No;0,165;Q4;3;43;126;984;48;115;0,38;22,88;45,59;0;Indonesia;Asiatic Region;"Indonesian Society of Obstetrics and Gynecology";"2019-2025";"Obstetrics and Gynecology (Q4); Oncology (Q4); Pathology and Forensic Medicine (Q4); Urology (Q4)";"Medicine" +24273;21101156891;"International Journal of Advances in Applied Sciences";journal;"27222594, 22528814";"Intelektual Pustaka Media Utama";No;No;0,165;Q4;10;141;193;5013;180;193;0,94;35,55;40,11;0;Indonesia;Asiatic Region;"Intelektual Pustaka Media Utama";"2012, 2019-2025";"Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Energy (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)";"Computer Science; Energy; Engineering" +24274;75950;"International Journal of Agricultural Resources, Governance and Ecology";journal;"14624605, 17415004";"Inderscience Publishers";No;No;0,165;Q4;29;11;39;522;22;38;0,56;47,45;55,26;0;United Kingdom;Western Europe;"Inderscience Publishers";"2000-2009, 2011-2012, 2014-2023, 2025";"Agronomy and Crop Science (Q4); Ecology (Q4); Management, Monitoring, Policy and Law (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24275;19700186849;"International Journal of Ambient Computing and Intelligence";journal;"19416245, 19416237";"IGI Global Publishing";No;No;0,165;Q4;28;5;51;144;52;51;0,80;28,80;80,00;0;United States;Northern America;"IGI Global Publishing";"2009-2014, 2016-2025";"Software (Q4)";"Computer Science" +24276;18700156724;"International Journal of Computing Science and Mathematics";journal;"17525063, 17525055";"Inderscience Enterprises Ltd";No;No;0,165;Q4;24;45;175;1185;140;175;0,79;26,33;35,62;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2010, 2012-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +24277;10900153304;"International Journal of Gerontology";journal;"18739598, 1873958X";"Taiwan Society of Geriatric Emergency and Critical Care Medicine (TSGECM)";Yes;No;0,165;Q4;30;62;222;1514;94;188;0,44;24,42;45,70;0;Taiwan;Asiatic Region;"Taiwan Society of Geriatric Emergency and Critical Care Medicine (TSGECM)";"2007-2026";"Geriatrics and Gerontology (Q4)";"Medicine" +24278;21100788963;"International Journal of High Risk Behaviors and Addiction";journal;"2251872X, 22518711";"Brieflands";Yes;No;0,165;Q4;21;29;83;947;43;78;0,39;32,66;46,39;0;Netherlands;Western Europe;"Brieflands";"2012, 2014-2026";"Clinical Psychology (Q4); Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +24279;21101066172;"Izvestiya Vuzov. Poroshkovaya Metallurgiya i Funktsional'nye Pokrytiya";journal;"24128767, 1997308X";"Izdatel'stvo Kalvis";No;No;0,165;Q4;5;40;107;1319;53;106;0,49;32,98;30,08;0;Russian Federation;Eastern Europe;"Izdatel'stvo Kalvis";"2019-2025";"Ceramics and Composites (Q4); Materials Science (miscellaneous) (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science" +24280;28119;"Johns Hopkins APL Technical Digest (Applied Physics Laboratory)";journal;"19300530, 02705214";"John Hopkins University";No;No;0,165;Q4;39;11;70;154;20;69;0,16;14,00;22,58;0;United States;Northern America;"John Hopkins University";"1981-1994, 1996-2025";"Engineering (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Engineering; Physics and Astronomy" +24281;5100155075;"Journal for Vascular Ultrasound";journal;"15443175, 15443167";"Society of Vascular Ultrasound";No;No;0,165;Q4;14;34;100;385;18;65;0,18;11,32;41,05;0;United States;Northern America;"Society of Vascular Ultrasound";"2005-2026";"Cardiology and Cardiovascular Medicine (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +24282;21100200201;"Journal of Educational Media, Memory, and Society";journal;"20416946, 20416938";"Berghahn Journals";No;No;0,165;Q4;16;6;39;263;12;38;0,38;43,83;63,64;0;United Kingdom;Western Europe;"Berghahn Journals";"2009-2025";"Education (Q4)";"Social Sciences" +24283;21101184510;"Journal of Mechanics of Continua and Mathematical Sciences";journal;"24547190, 09738975";"Institute of Mechanics of Continua and Mathematical Sciences";Yes;No;0,165;Q4;6;148;176;3721;125;176;0,71;25,14;34,60;0;India;Asiatic Region;"Institute of Mechanics of Continua and Mathematical Sciences";"2023-2026";"Engineering (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)";"Engineering; Mathematics" +24284;21100844907;"Journal of Renal Injury Prevention";journal;"23452781";"Nickan Research Institute";Yes;No;0,165;Q4;16;31;99;854;57;99;0,69;27,55;51,47;0;Iran;Middle East;"Nickan Research Institute";"2017-2025";"Nephrology (Q4); Urology (Q4)";"Medicine" +24285;21101369926;"Jurnal Nasional Teknik Elektro";journal;"24077267, 23022949";"Andalas University Faculty of Engineering";Yes;No;0,165;Q4;5;24;80;728;43;80;0,66;30,33;29,82;0;Indonesia;Asiatic Region;"Andalas University Faculty of Engineering";"2021-2025";"Artificial Intelligence (Q4); Biomedical Engineering (Q4); Electrical and Electronic Engineering (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Computer Science; Energy; Engineering" +24286;21101146415;"Jurnal Pengukuran Psikologi dan Pendidikan Indonesia";journal;"20896247, 26545713";"Syarif Hidayatullah State Islamic University (UIN) Jakarta";Yes;Yes;0,165;Q4;4;13;43;744;25;42;0,56;57,23;40,63;0;Indonesia;Asiatic Region;"Syarif Hidayatullah State Islamic University (UIN) Jakarta";"2019-2025";"Applied Psychology (Q4); Developmental and Educational Psychology (Q4); Education (Q4); Psychology (miscellaneous) (Q4)";"Psychology; Social Sciences" +24287;4000148006;"Laeknabladid";journal;"16704959, 00237213";"Icelandic Medical Association";Yes;Yes;0,165;Q4;18;76;228;576;55;112;0,17;7,58;47,73;0;Iceland;Western Europe;"Icelandic Medical Association";"1945-1946, 1948, 1955-1964, 1973-1974, 1983, 2005-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +24288;21100901469;"Lecture Notes in Networks and Systems";book series;"23673370, 23673389";"Springer International Publishing AG";No;No;0,165;Q4;57;14894;46949;300819;25581;44133;0,56;20,20;36,50;6;Switzerland;Western Europe;"Springer International Publishing AG";"2016-2026";"Computer Networks and Communications (Q4); Control and Systems Engineering (Q4); Signal Processing (Q4)";"Computer Science; Engineering" +24289;21101337321;"Life Research";journal;"26240548";"TMR Publishing Group";No;No;0,165;Q4;5;28;74;1854;43;70;0,84;66,21;38,94;0;New Zealand;Pacific Region;"TMR Publishing Group";"2021-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +24290;17758;"Medecine/Sciences";journal;"07670974, 19585381";"EDP Sciences";No;No;0,165;Q4;33;250;640;4532;235;568;0,37;18,13;51,52;0;France;Western Europe;"EDP Sciences";"1990-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +24291;4700152865;"Psicologia e Sociedade";journal;"18070310, 01027182";"Associacao Brasileira de Psicologia Social";Yes;Yes;0,165;Q4;24;49;109;1645;15;107;0,10;33,57;60,00;0;Brazil;Latin America;"Associacao Brasileira de Psicologia Social";"2006-2025";"Social Psychology (Q4)";"Psychology" +24292;21101213849;"REGEPE Entrepreneurship and Small Business Journal";journal;"29651506";"Associacao Nacional de Estudos em Empreendedorismo e Gestao de Pequenas Empresas - ANEGEPE";Yes;Yes;0,165;Q4;5;8;67;387;49;61;0,95;48,38;47,37;0;Brazil;Latin America;"Associacao Nacional de Estudos em Empreendedorismo e Gestao de Pequenas Empresas - ANEGEPE";"2020-2026";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +24293;21100944283;"Review of Economic Analysis";journal;"19733909";"International Centre for Economic Analysis";Yes;Yes;0,165;Q4;8;19;64;969;33;61;0,44;51,00;20,00;0;Canada;Northern America;"International Centre for Economic Analysis";"2019-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +24294;21101133555;"Sonography";journal;"20546750, 22028323";"John Wiley and Sons Inc";No;No;0,165;Q4;11;96;135;2082;60;113;0,38;21,69;38,71;0;United States;Northern America;"John Wiley and Sons Inc";"2014-2026";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +24295;21101064205;"South African Orthopaedic Journal";journal;"1681150X, 23098309";"Medpharm Publications";Yes;Yes;0,165;Q4;6;31;97;869;30;78;0,33;28,03;29,41;0;South Africa;Africa;"Medpharm Publications";"2010, 2019-2025";"Orthopedics and Sports Medicine (Q4)";"Medicine" +24296;18800156708;"Tropical Journal of Pharmaceutical Research";journal;"15965996, 15969827";"University of Benin";Yes;No;0,165;Q4;56;154;935;3438;386;935;0,40;22,32;43,05;0;Nigeria;Africa;"University of Benin";"2008-2026";"Pharmaceutical Science (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +24297;21100411629;"Web Intelligence";journal;"24056464, 24056456";"SAGE Publications Ltd";No;No;0,165;Q4;27;35;88;1415;82;87;1,13;40,43;43,21;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2015-2025";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Software (Q4)";"Computer Science" +24298;21100198435;"Proceedings of Technical Papers - International Microsystems, Packaging, Assembly, and Circuits Technology Conference, IMPACT";conference and proceedings;"21505942, 21505934";"IEEE Computer Society";No;No;0,165;-;15;128;263;977;86;245;0,32;7,63;25,64;0;United States;Northern America;"IEEE Computer Society";"2011-2013, 2016-2024";"Control and Systems Engineering; Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering" +24299;120139;"SPE International Oilfield Chemistry Symposium Proceedings";conference and proceedings;"10461779";"Society of Petroleum Engineers (SPE)";No;No;0,165;-;45;84;85;1747;51;84;0,60;20,80;27,00;0;United States;Northern America;"Society of Petroleum Engineers (SPE)";"1973, 1975, 1995, 1997, 1999, 2001, 2003, 2005, 2007, 2009, 2011, 2013, 2015, 2017, 2019, 2021, 2023, 2025";"Chemical Engineering (miscellaneous); Chemistry (miscellaneous); Energy Engineering and Power Technology";"Chemical Engineering; Chemistry; Energy" +24300;15466;"Neophilologus";journal;"15728668, 00282677";"Springer Netherlands";No;No;0,164;Q1;14;36;123;1515;30;123;0,27;42,08;30,00;0;Netherlands;Western Europe;"Springer Netherlands";"1916-1946, 1948-2002, 2004-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q2)";"Arts and Humanities; Social Sciences" +24301;21100845670;"Studies in American Humor";journal;"23339934, 0095280X";"Penn State University Press";No;No;0,164;Q1;7;9;43;346;13;33;0,36;38,44;33,33;0;United States;Northern America;"Penn State University Press";"2017-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Linguistics and Language (Q2); Visual Arts and Performing Arts (Q2); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology; Social Sciences" +24302;21100310657;"Anthropology Southern Africa";journal;"23323264, 23323256";"Taylor and Francis Ltd.";No;No;0,164;Q2;17;10;69;303;35;57;0,47;30,30;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013-2025";"Cultural Studies (Q2); Anthropology (Q3)";"Social Sciences" +24303;13484;"Costume";journal;"05908876, 17496306";"Edinburgh University Press";No;No;0,164;Q2;11;11;32;748;8;26;0,19;68,00;75,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"1965, 1967-2025";"History (Q2); Business, Management and Accounting (miscellaneous) (Q4)";"Arts and Humanities; Business, Management and Accounting" +24304;21100881003;"FormAkademisk";journal;"18909515";"Oslo Metropolitan University";Yes;Yes;0,164;Q2;9;13;131;575;42;112;0,31;44,23;78,79;0;Norway;Western Europe;"Oslo Metropolitan University";"2018-2026";"Visual Arts and Performing Arts (Q2); Urban Studies (Q3)";"Arts and Humanities; Social Sciences" +24305;19556;"Holocaust and Genocide Studies";journal;"14767937, 87566583";"Oxford University Press";No;No;0,164;Q2;26;25;63;2456;30;60;0,41;98,24;55,56;0;United Kingdom;Western Europe;"Oxford University Press";"1986-2025";"History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24306;21101061921;"Krakowskie Studia z Historii Panstwa i Prawa";journal;"20844131, 20844115";"Jagiellonian University Press";Yes;Yes;0,164;Q2;4;37;109;1753;14;109;0,03;47,38;36,67;0;Poland;Eastern Europe;"Jagiellonian University Press";"2019-2025";"History (Q2); Law (Q3); Political Science and International Relations (Q3); Public Administration (Q4)";"Arts and Humanities; Social Sciences" +24307;21101075056;"Redescriptions: Political Thought, Conceptual History and Feminist Theory";journal;"23080914, 23080906";"Helsinki University Press";Yes;Yes;0,164;Q2;4;11;33;573;16;27;0,30;52,09;42,86;0;Finland;Western Europe;"Helsinki University Press";"2021-2025";"History (Q2); Gender Studies (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24308;21100774309;"Religion and Theology";journal;"15743012, 10230807";"Brill Academic Publishers";No;No;0,164;Q2;13;16;52;680;14;49;0,12;42,50;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"1996-2025";"Religious Studies (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +24309;5800207560;"Romani Studies";journal;"17572274, 15280748";"Liverpool University Press";Yes;No;0,164;Q2;12;13;35;780;14;33;0,36;60,00;40,00;0;United Kingdom;Western Europe;"Liverpool University Press";"2012-2025";"Cultural Studies (Q2); Anthropology (Q3)";"Social Sciences" +24310;19900191876;"Transinformacao";journal;"01033786";"Pontificia Universidade Catolica de Campinas";Yes;Yes;0,164;Q2;15;31;99;1253;57;99;0,51;40,42;49,32;0;Brazil;Latin America;"Pontificia Universidade Catolica de Campinas";"2010-2025";"Museology (Q2); Communication (Q3); Library and Information Sciences (Q3); Information Systems (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +24311;21100841277;"Archivio Penale";journal;"00040304, 23849479";"Pisa University Press";No;No;0,164;Q3;4;63;398;4866;15;391;0,04;77,24;46,03;0;Italy;Western Europe;"Pisa University Press";"2017-2026";"Law (Q3)";"Social Sciences" +24312;21101131182;"Bulletin of the History of Archaeology";journal;"20476930, 10624740";"Ubiquity Press";Yes;No;0,164;Q3;6;5;25;296;19;21;0,76;59,20;25,00;0;United Kingdom;Western Europe;"Ubiquity Press";"1997, 2019-2026";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24313;21101336773;"Economic and Business Review";journal;"15800466, 23354216";"University of Ljubljana School of Economics and Business";Yes;No;0,164;Q3;3;15;17;1303;21;16;1,24;86,87;48,72;1;Slovenia;Eastern Europe;"University of Ljubljana School of Economics and Business";"2024-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +24314;21100896336;"Ex Aequo";journal;"21840385, 08745560";"Associacao Portuguesa de Estudos sobre as Mulheres";Yes;Yes;0,164;Q3;6;25;89;911;29;81;0,26;36,44;85,00;0;Portugal;Western Europe;"Associacao Portuguesa de Estudos sobre as Mulheres";"2018-2025";"Gender Studies (Q3)";"Social Sciences" +24315;19383;"Fluoride";journal;"22534083, 00154725";"International Society for Fluoride Research";Yes;Yes;0,164;Q3;54;127;131;4417;106;119;0,80;34,78;45,53;0;New Zealand;Pacific Region;"International Society for Fluoride Research";"1973-2025";"Dentistry (miscellaneous) (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry (Q4); Chemistry (miscellaneous) (Q4); Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4); Toxicology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Dentistry; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +24316;21101387481;"Human Rights in the Global South";journal;"29625556";"Serikat Pengajar Hak Asasi Manusia Indonesia";No;No;0,164;Q3;3;2;13;151;12;13;0,67;75,50;66,67;0;Indonesia;Asiatic Region;"Serikat Pengajar Hak Asasi Manusia Indonesia";"2022-2025";"Gender Studies (Q3); Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Social Sciences" +24317;21101072517;"International Journal of Social Quality (United States)";journal;"17570352, 17570344";"Berghahn Journals";Yes;Yes;0,164;Q3;6;0;25;0;18;19;0,29;0,00;0,00;0;United Kingdom;Western Europe;"Berghahn Journals";"2019, 2021-2024";"Sociology and Political Science (Q3); Geography, Planning and Development (Q4); Health (social science) (Q4)";"Social Sciences" +24318;21101210511;"New Trends in Qualitative Research";journal;"21847770";"Ludomedia EN";Yes;Yes;0,164;Q3;7;63;396;1955;123;389;0,29;31,03;74,86;0;Portugal;Western Europe;"Ludomedia EN";"2020-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +24319;21101267548;"Polish Review of International and European Law";journal;"25447432, 22992170";"Cardinal Stefan Wyszynski University in Warsaw";No;No;0,164;Q3;3;12;45;829;16;42;0,44;69,08;38,89;0;Poland;Eastern Europe;"Cardinal Stefan Wyszynski University in Warsaw";"2020-2025";"Law (Q3)";"Social Sciences" +24320;21100205109;"Scire";journal;"11353716";"Facultad de Filosofia y Letras - Universidad de Zaragoza";Yes;No;0,164;Q3;7;0;33;0;9;33;0,36;0,00;0,00;0;Spain;Western Europe;"Facultad de Filosofia y Letras - Universidad de Zaragoza";"2011-2024";"Communication (Q3); Library and Information Sciences (Q3)";"Social Sciences" +24321;21101257829;"Acta Agriculturae Boreali-Sinica";journal;"10007091";"";No;No;0,164;Q4;8;104;619;3667;247;619;0,41;35,26;41,36;0;China;Asiatic Region;"";"2020-2025";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +24322;20397;"Acta Chirurgiae Plasticae";journal;"00015423, 18054404";"Czech Medical Association J.E. Purkyne";No;No;0,164;Q4;22;23;89;492;26;71;0,25;21,39;45,10;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1959-2025";"Surgery (Q4)";"Medicine" +24323;22671;"Afinidad";journal;"23399686, 00019704";"Asociacion de Quimicos del Instituto Quimico de Sarria";No;No;0,164;Q4;20;17;111;794;53;106;0,49;46,71;35,09;0;Spain;Western Europe;"Asociacion de Quimicos del Instituto Quimico de Sarria";"1996-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +24324;21101038737;"ASEAN Journal on Science and Technology for Development";journal;"22249028, 02175460";"University of Brunei Darussalam";Yes;Yes;0,164;Q4;9;28;86;1259;68;85;0,58;44,96;36,84;0;Brunei Darussalam;Asiatic Region;"University of Brunei Darussalam";"2019-2026";"Atmospheric Science (Q4); Management, Monitoring, Policy and Law (Q4); Oceanography (Q4); Waste Management and Disposal (Q4)";"Earth and Planetary Sciences; Environmental Science" +24325;21101046165;"Boletin de la Asociacion Espanola de Entomologia";journal;"02108984";"Asociacion espanola de Entomologia";Yes;No;0,164;Q4;7;34;106;1324;21;64;0,21;38,94;17,86;0;Spain;Western Europe;"Asociacion espanola de Entomologia";"1994-1997, 2019-2025";"Ecology (Q4); Food Science (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24326;21101347007;"Bulletin of the Institute of Mathematics";journal;"21819483";"Romanovsky Institute of Mathematics of the Academy of Sciences of the Republic of Uzbekistan";No;No;0,164;Q4;5;61;275;1209;48;275;0,17;19,82;31,82;0;Uzbekistan;Asiatic Region;"Romanovsky Institute of Mathematics of the Academy of Sciences of the Republic of Uzbekistan";"2021-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Mathematical Physics (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics" +24327;21101300344;"Cailiao Baohu/Materials Protection";journal;"10011560";"China Academy of Machinery Wuhan Research Institute of Materials Protection Co., Ltd";No;No;0,164;Q4;6;209;935;6982;508;935;0,60;33,41;30,46;0;China;Asiatic Region;"China Academy of Machinery Wuhan Research Institute of Materials Protection Co., Ltd";"2022-2026";"Surfaces, Coatings and Films (Q4)";"Materials Science" +24328;27149;"Chinese Astronomy and Astrophysics";journal;"02751062";"Elsevier Ltd";No;No;0,164;Q4;16;40;120;1644;44;119;0,36;41,10;30,96;0;United Kingdom;Western Europe;"Elsevier Ltd";"1981-2025";"Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Physics and Astronomy" +24329;21100287325;"Chinese Journal of Environmental Engineering";journal;"16739108";"Science Press";No;No;0,164;Q4;18;278;1139;10827;582;1137;0,48;38,95;42,84;0;China;Asiatic Region;"Science Press";"2013-2025";"Environmental Chemistry (Q4); Environmental Engineering (Q4); Pollution (Q4); Waste Management and Disposal (Q4); Water Science and Technology (Q4)";"Environmental Science" +24330;19800188005;"Composites: Mechanics, Computations, Applications";journal;"21522057, 21522073";"Begell House Inc.";No;No;0,164;Q4;14;24;72;905;47;70;0,72;37,71;22,95;0;United States;Northern America;"Begell House Inc.";"2010-2025";"Ceramics and Composites (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +24331;21101027394;"El-Cezeri Journal of Science and Engineering";journal;"21483736";"TUBITAK";Yes;No;0,164;Q4;14;32;220;1399;186;220;1,12;43,72;12,68;0;Turkey;Middle East;"TUBITAK";"2019-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Computer Science; Engineering; Physics and Astronomy" +24332;21101058081;"Himia, Fizika ta Tehnologia Poverhni";journal;"25181238, 20791704";"Chuiko Institute of Surface Chemistry of National Academy of Sciences of Ukraine";Yes;Yes;0,164;Q4;9;51;142;1852;79;142;0,51;36,31;52,98;0;Ukraine;Eastern Europe;"Chuiko Institute of Surface Chemistry of National Academy of Sciences of Ukraine";"2019-2025";"Ceramics and Composites (Q4); Colloid and Surface Chemistry (Q4); Materials Chemistry (Q4); Physical and Theoretical Chemistry (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)";"Chemical Engineering; Chemistry; Materials Science; Physics and Astronomy" +24333;21100902603;"Informatsionno-Upravliaiushchie Sistemy";journal;"25418610, 16848853";"Saint Petersburg State University of Aerospace Instrumentation";No;No;0,164;Q4;11;18;96;431;35;96;0,28;23,94;26,83;0;Russian Federation;Eastern Europe;"Saint Petersburg State University of Aerospace Instrumentation";"2018-2025";"Computer Science Applications (Q4); Control and Optimization (Q4); Control and Systems Engineering (Q4); Human-Computer Interaction (Q4); Information Systems (Q4); Software (Q4)";"Computer Science; Engineering; Mathematics" +24334;21101272039;"International Computer Science and Engineering Conference";journal;"23815035";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,164;Q4;2;0;65;0;40;64;0,62;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Control and Optimization (Q4); Information Systems (Q4); Information Systems and Management (Q4); Renewable Energy, Sustainability and the Environment (Q4); Software (Q4)";"Computer Science; Decision Sciences; Energy; Mathematics" +24335;21100981168;"International Journal of Body, Mind and Culture";journal;"23455802";"Behi Academy Publications";Yes;Yes;0,164;Q4;8;227;223;6498;141;211;0,65;28,63;53,11;0;Iran;Middle East;"Behi Academy Publications";"2019-2026";"Applied Psychology (Q4); Care Planning (Q4); Psychiatry and Mental Health (Q4); Social Psychology (Q4)";"Medicine; Nursing; Psychology" +24336;21100855995;"International Journal of Cloud Computing";journal;"20439997, 20439989";"Inderscience Enterprises Ltd";No;No;0,164;Q4;11;20;104;622;67;104;0,83;31,10;38,64;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2013-2014, 2017-2025";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Computer Science (miscellaneous) (Q4); Software (Q4)";"Computer Science" +24337;21100891789;"International Journal of Economics and Finance Studies";journal;"13098055";"Social Sciences Research Society";Yes;No;0,164;Q4;19;68;245;2718;167;245;0,69;39,97;43,75;0;Turkey;Middle East;"Social Sciences Research Society";"2018-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +24338;21101000284;"International Journal of Engineering Trends and Technology";journal;"23490918, 22315381";"Seventh Sense Research Group";No;No;0,164;Q4;23;394;1383;13606;1020;1383;0,71;34,53;35,32;0;India;Asiatic Region;"Seventh Sense Research Group";"2019-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +24339;21100836591;"International Journal of Powertrains";journal;"17424275, 17424267";"Inderscience Enterprises Ltd";No;No;0,164;Q4;10;20;62;606;41;61;0,49;30,30;15,25;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2017-2025";"Automotive Engineering (Q4); Energy Engineering and Power Technology (Q4); Mechanical Engineering (Q4)";"Energy; Engineering" +24340;17100154706;"International Journal of Revenue Management";journal;"14747332, 17418186";"Inderscience Enterprises Ltd";No;No;0,164;Q4;15;10;31;651;27;31;0,73;65,10;42,86;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2025";"Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +24341;21100202715;"International Journal of Systems, Control and Communications";journal;"17559359, 17559340";"Inderscience";No;No;0,164;Q4;17;24;63;662;46;63;0,86;27,58;35,53;0;Switzerland;Western Europe;"Inderscience";"2008-2026";"Control and Systems Engineering (Q4)";"Engineering" +24342;32555;"Japan Agricultural Research Quarterly";journal;"00213551";"Japan International Research Center for Agricultural Sciences";No;No;0,164;Q4;42;34;101;1074;62;101;0,45;31,59;14,85;0;Japan;Asiatic Region;"Japan International Research Center for Agricultural Sciences";"1973-1974, 1977-1978, 1983, 1987, 1993-2025";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Biotechnology (Q4); Ecology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +24343;21101108008;"Journal of Ceramics";journal;"2095784X";"";No;No;0,164;Q4;9;125;337;4435;208;337;0,72;35,48;34,40;0;China;Asiatic Region;"";"2019-2026";"Ceramics and Composites (Q4); Materials Chemistry (Q4)";"Materials Science" +24344;21101210875;"Journal of Clinical Otorhinolaryngology Head and Neck Surgery";journal;"20967993";"";No;No;0,164;Q4;14;213;612;4117;205;612;0,32;19,33;44,17;0;China;Asiatic Region;"";"2017, 2019-2026";"Otorhinolaryngology (Q4); Surgery (Q4)";"Medicine" +24345;21100894186;"Journal of Health Sciences";journal;"19868049, 22327576";"University of Sarajevo - Faculty of Health Studies";Yes;Yes;0,164;Q4;9;28;93;816;59;93;0,69;29,14;54,03;0;Bosnia and Herzegovina;Eastern Europe;"University of Sarajevo - Faculty of Health Studies";"2018-2025";"Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)";"Medicine; Nursing" +24346;21100197923;"Journal of Military Medicine";journal;"17357667, 17351537";"Baqiyatallah University of Medical Sciences";No;No;0,164;Q4;20;61;176;1994;71;166;0,38;32,69;30,92;0;Iran;Middle East;"Baqiyatallah University of Medical Sciences";"2011-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +24347;21101052763;"Kliniceskaa Mikrobiologia i Antimikrobnaa Himioterapia";journal;"26869586, 16844386";"Interregional Association for Clinical Microbiology and Antimicrobial Chemotherapy";Yes;Yes;0,164;Q4;11;41;144;1571;114;143;0,75;38,32;66,82;0;Russian Federation;Eastern Europe;"Interregional Association for Clinical Microbiology and Antimicrobial Chemotherapy";"2019-2025";"Epidemiology (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4); Pharmacology (medical) (Q4)";"Medicine" +24348;17206;"Marmara Medical Journal";journal;"13099469, 10191941";"Marmara University";No;No;0,164;Q4;15;42;177;1177;79;177;0,47;28,02;57,71;0;Turkey;Middle East;"Marmara University";"1996-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +24349;5100152301;"Milli Egitim";journal;"13025600";"T.C. Milli Egitim Bakanligi";No;No;0,164;Q4;11;105;349;6412;100;349;0,30;61,07;49,16;0;Turkey;Middle East;"T.C. Milli Egitim Bakanligi";"2006-2026";"Education (Q4)";"Social Sciences" +24350;14178;"Molekulyarnaya Biologiya";journal;"00268984";"Russian Academy of Sciences";No;No;0,164;Q4;25;48;199;0;68;199;0,25;0,00;52,53;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"1973-2025";"Medicine (miscellaneous) (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +24351;18000156708;"Neuropsychiatria i Neuropsychologia";journal;"20849885, 18966764";"Termedia Publishing House Ltd.";No;No;0,164;Q4;11;14;66;601;41;65;0,63;42,93;54,29;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2009-2025";"Behavioral Neuroscience (Q4); Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience; Psychology" +24352;21101153196;"Pain, Joints, Spine";journal;"23071133, 22241507";"Zaslavsky Publishing House";Yes;No;0,164;Q4;4;29;96;870;54;84;0,69;30,00;35,38;0;Ukraine;Eastern Europe;"Zaslavsky Publishing House";"2022-2025";"Anesthesiology and Pain Medicine (Q4); Rheumatology (Q4)";"Medicine" +24353;21100898620;"Poincare Journal of Analysis and Applications";journal;"23496789, 23496797";"Poincare Publisher";Yes;No;0,164;Q4;7;28;88;558;30;87;0,42;19,93;27,08;0;India;Asiatic Region;"Poincare Publisher";"2018-2026";"Analysis (Q4); Applied Mathematics (Q4)";"Mathematics" +24354;24921;"Przeglad Dermatologiczny";journal;"00332526, 20849893";"Termedia Publishing House Ltd.";Yes;Yes;0,164;Q4;15;52;175;1272;49;144;0,32;24,46;57,95;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"1951-2025";"Dermatology (Q4)";"Medicine" +24355;21101144405;"Psicogente";journal;"2027212X, 01240137";"Simon Bolivar University (Barranquilla)";Yes;Yes;0,164;Q4;8;18;55;1078;31;55;0,39;59,89;45,00;0;Colombia;Latin America;"Simon Bolivar University (Barranquilla)";"2019-2025";"Applied Psychology (Q4); Experimental and Cognitive Psychology (Q4)";"Psychology" +24356;12300154705;"Research Journal of Biotechnology";journal;"22784535, 09736263";"World Researchers Associations";No;No;0,164;Q4;26;394;751;14195;382;751;0,61;36,03;32,29;0;India;Asiatic Region;"World Researchers Associations";"2008-2026";"Applied Microbiology and Biotechnology (Q4); Bioengineering (Q4); Biotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +24357;21101279730;"Reviews and Advances in Chemistry";journal;"26348284, 26348276";"Pleiades Publishing";No;No;0,164;Q4;5;13;75;568;47;75;0,56;43,69;46,67;0;United States;Northern America;"Pleiades Publishing";"2021-2025";"Chemical Engineering (miscellaneous) (Q4); Chemical Health and Safety (Q4); Fluid Flow and Transfer Processes (Q4); Materials Chemistry (Q4)";"Chemical Engineering; Materials Science" +24358;26285;"Revue d'Economie du Developpement";journal;"17821517, 12454060";"De Boeck Supérieur";No;No;0,164;Q4;12;0;60;0;14;58;0,28;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"1993-2024";"Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +24359;21100821112;"Russian Journal of Infection and Immunity";journal;"22207619, 23137398";"Saint Petersburg Pasteur Institute";Yes;Yes;0,164;Q4;14;90;363;3211;189;363;0,47;35,68;67,16;0;Russian Federation;Eastern Europe;"Saint Petersburg Pasteur Institute";"2017-2026";"Immunology (Q4); Immunology and Allergy (Q4); Infectious Diseases (Q4)";"Immunology and Microbiology; Medicine" +24360;11700154609;"UPB Scientific Bulletin, Series C: Electrical Engineering and Computer Science";journal;"22863540, 22863559";"Politechnica University of Bucharest";No;No;0,164;Q4;19;127;318;2720;161;313;0,55;21,42;31,16;0;Romania;Eastern Europe;"Politechnica University of Bucharest";"2008-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +24361;21101101853;"Vietnam Journal of Science and Technology";journal;"25252518, 28155874";"Publishing House of Natural Science and Technology, VAST";No;No;0,164;Q4;9;76;273;2994;182;273;0,72;39,39;23,77;0;Viet Nam;Asiatic Region;"Publishing House of Natural Science and Technology, VAST";"2019-2025";"Chemistry (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4); Environmental Science (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Chemistry; Engineering; Environmental Science; Materials Science" +24362;20500195429;"International Conference on Applied Electronics";conference and proceedings;"18037232";"IEEE Computer Society";No;No;0,164;-;16;39;102;580;36;96;0,40;14,87;14,00;0;United States;Northern America;"IEEE Computer Society";"2011-2025";"Electrical and Electronic Engineering";"Engineering" +24363;21100298636;"International Symposium on Ocean Electronics, SYMPOL";conference and proceedings;"23265566, 23265558";"IEEE Computer Society";No;No;0,164;-;10;0;19;0;13;16;0,68;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2013, 2016, 2019, 2021, 2023";"Electrical and Electronic Engineering; Ocean Engineering; Oceanography";"Earth and Planetary Sciences; Engineering" +24364;16300154707;"Dickens Quarterly";journal;"21695377, 07425473";"Johns Hopkins University Press";No;No;0,163;Q1;8;21;101;653;30;97;0,21;31,10;37,50;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +24365;17447;"Roczniki Humanistyczne";journal;"25445200, 00357707";"Towarzystwo Naukowe KUL";No;No;0,163;Q1;4;179;567;5621;38;549;0,07;31,40;56,41;0;Poland;Eastern Europe;"Towarzystwo Naukowe KUL";"1983, 2018-2026";"Literature and Literary Theory (Q1); History (Q2); Visual Arts and Performing Arts (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24366;21100826812;"Acta Archaeologica Lodziensia";journal;"24510300, 00650986";"Lodzkie Towarzystwo Naukowe";No;No;0,163;Q2;5;0;34;0;9;33;0,29;0,00;0,00;0;Poland;Eastern Europe;"Lodzkie Towarzystwo Naukowe";"2016-2017, 2019-2024";"History (Q2); Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24367;21101190204;"Artivate";journal;"21647747";"University of Arkansas Press";Yes;Yes;0,163;Q2;7;2;21;74;18;13;0,85;37,00;85,71;0;United States;Northern America;"University of Arkansas Press";"2019-2025";"Visual Arts and Performing Arts (Q2); Management of Technology and Innovation (Q4)";"Arts and Humanities; Business, Management and Accounting" +24368;21100914235;"Asian Cinema";journal;"1059440X, 20496710";"Intellect Ltd.";No;No;0,163;Q2;5;12;34;408;18;32;0,26;34,00;66,67;0;United Kingdom;Western Europe;"Intellect Ltd.";"2013, 2017, 2019-2025";"Visual Arts and Performing Arts (Q2); Communication (Q3)";"Arts and Humanities; Social Sciences" +24369;21101266479;"Asian Journal of Interdisciplinary Research";journal;"25818430";"Asian Research Association";No;No;0,163;Q2;3;47;47;2813;25;47;0,64;59,85;35,34;0;India;Asiatic Region;"Asian Research Association";"2022-2026";"Arts and Humanities (miscellaneous) (Q2); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Linguistics and Language (Q3); Business, Management and Accounting (miscellaneous) (Q4); Education (Q4)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +24370;21101196742;"Clio. Revista de Historia, Ciencias Humanas y Pensamiento Critico.";journal;"26609037";"Ediciones Clio";Yes;Yes;0,163;Q2;4;161;99;5774;44;85;0,54;35,86;49,65;0;Mexico;Latin America;"Ediciones Clio";"2021-2026";"Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +24371;14214;"Critical Horizons";journal;"14409917, 15685160";"Maney Publishing";No;No;0,163;Q2;25;7;74;258;44;71;0,75;36,86;16,67;0;United Kingdom;Western Europe;"Maney Publishing";"2003-2026";"Philosophy (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24372;21100932723;"Documenti Geografici";journal;"22817549";"Universita degli Studi di Roma Tor Vergata";Yes;No;0,163;Q2;6;58;283;1653;47;281;0,17;28,50;47,83;0;Italy;Western Europe;"Universita degli Studi di Roma Tor Vergata";"2019-2025";"History (Q2); Economics, Econometrics and Finance (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +24373;21101123952;"Food Studies";journal;"21601933, 21601941";"Common Ground Research Networks";No;No;0,163;Q2;5;12;33;588;27;32;0,64;49,00;69,23;0;United States;Northern America;"Common Ground Research Networks";"2019-2025";"Cultural Studies (Q2); Environmental Science (miscellaneous) (Q4); Food Science (Q4); Nutrition and Dietetics (Q4); Public Health, Environmental and Occupational Health (Q4)";"Agricultural and Biological Sciences; Environmental Science; Medicine; Nursing; Social Sciences" +24374;14973;"Histoire Sociale";journal;"19186576, 00182257";"University of Toronto Press";No;No;0,163;Q2;15;15;51;1369;14;46;0,31;91,27;23,53;0;Canada;Northern America;"University of Toronto Press";"1976-1977, 1979, 1981, 1983-1987, 1996-2025";"History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24375;19900191907;"International Journal of Asia-Pacific Studies";journal;"18236243";"Penerbit Universiti Sains Malaysia";Yes;No;0,163;Q2;13;26;54;1806;41;54;0,68;69,46;39,13;0;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2011-2025";"Cultural Studies (Q2); Sociology and Political Science (Q3)";"Social Sciences" +24376;5600152970;"Japanese Studies";journal;"10371397, 14699338";"Routledge";No;No;0,163;Q2;25;17;56;955;32;53;0,55;56,18;36,84;0;United Kingdom;Western Europe;"Routledge";"1981-2025";"Cultural Studies (Q2); History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24377;21100833032;"Opus";journal;"15177017, 01037412";"National Association of Music Research and Postgraduates";Yes;Yes;0,163;Q2;4;48;84;2314;10;82;0,06;48,21;42,31;0;Brazil;Latin America;"National Association of Music Research and Postgraduates";"2017-2025";"Music (Q2)";"Arts and Humanities" +24378;21100856605;"Paginas";journal;"1851992X";"Universidad Nacional de Rosario - Facultad de Humanidades y Artes, Escuela de Historia";Yes;Yes;0,163;Q2;4;45;149;1656;25;147;0,20;36,80;44,44;0;Argentina;Latin America;"Universidad Nacional de Rosario - Facultad de Humanidades y Artes, Escuela de Historia";"2017-2025";"History (Q2)";"Arts and Humanities" +24379;21101196039;"Avicenna Journal of Dental Research";journal;"24237582";"Hamadan University of Medical Sciences";No;No;0,163;Q3;2;34;68;1142;30;68;0,44;33,59;53,72;0;Iran;Middle East;"Hamadan University of Medical Sciences";"2023-2025";"Dentistry (miscellaneous) (Q3)";"Dentistry" +24380;21101263946;"Chinese Journal of General Practice";journal;"16744152";"";No;No;0,163;Q3;9;452;1552;10475;667;1552;0,46;23,17;54,03;0;China;Asiatic Region;"";"2019-2025";"Family Practice (Q3); Internal Medicine (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +24381;21101164614;"Color Culture and Science";journal;"23849568";"Gruppo del Colore - Associazione Italiana Colore";Yes;Yes;0,163;Q3;4;9;44;418;23;41;0,52;46,44;52,63;0;Italy;Western Europe;"Gruppo del Colore - Associazione Italiana Colore";"2023-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +24382;21101126462;"Erasmus Law Review";journal;"22102671";"Boom Uitgevers";Yes;Yes;0,163;Q3;9;9;67;577;46;61;0,75;64,11;85,71;0;Netherlands;Western Europe;"Boom Uitgevers";"2019-2025";"Law (Q3)";"Social Sciences" +24383;21101066328;"Eurasian Journal of Family Medicine";journal;"21473161, 21473404";"Eurasian Society of Family Medicine";Yes;No;0,163;Q3;5;26;85;721;37;81;0,28;27,73;53,73;0;Turkey;Middle East;"Eurasian Society of Family Medicine";"2019-2025";"Family Practice (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +24384;19763;"Federal Probation";journal;"00149128";"Administrative Office of the United States Courts";No;No;0,163;Q3;42;1;46;0;19;44;0,47;0,00;0,00;0;United States;Northern America;"Administrative Office of the United States Courts";"1974-1982, 1996-2024";"Law (Q3); Pathology and Forensic Medicine (Q4)";"Medicine; Social Sciences" +24385;21101176032;"International Journal of Language and Law";journal;"21947414";"";Yes;Yes;0,163;Q3;6;15;26;685;18;25;0,59;45,67;53,85;0;Germany;Western Europe;"";"2019-2025";"Law (Q3); Linguistics and Language (Q3)";"Social Sciences" +24386;21101090587;"Investigacion en Educacion Medica";journal;"20075057, 2007865X";"Universidad Nacional Autonoma de Mexico";No;Yes;0,163;Q3;12;59;183;1364;81;135;0,35;23,12;45,30;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2019-2026";"Health Professions (miscellaneous) (Q3); Education (Q4); Health Informatics (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine; Social Sciences" +24387;11600154152;"Iranian Journal of Pediatrics";journal;"20082150, 20082142";"Brieflands";Yes;No;0,163;Q3;37;27;246;887;95;238;0,40;32,85;54,76;1;Netherlands;Western Europe;"Brieflands";"2008-2025";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +24388;21100202140;"Italian Journal of Linguistics";journal;"11202726";"Pacini Editore Srl";Yes;No;0,163;Q3;31;19;41;549;13;39;0,25;28,89;57,89;0;Italy;Western Europe;"Pacini Editore Srl";"1996-2025";"Linguistics and Language (Q3)";"Social Sciences" +24389;21101152541;"Ius et Veritas";journal;"19952929, 24118834";"Pontificia Universidad Catolica del Peru";No;Yes;0,163;Q3;5;16;91;937;22;86;0,12;58,56;53,33;0;Peru;Latin America;"Pontificia Universidad Catolica del Peru";"2019-2025";"Law (Q3)";"Social Sciences" +24390;21101171696;"Journal of Asian Scientific Research";journal;"22231331, 22265724";"Asian Economic and Social Society";No;No;0,163;Q3;4;72;65;3548;56;65;0,86;49,28;45,07;0;Pakistan;Asiatic Region;"Asian Economic and Social Society";"2023-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +24391;21101210517;"Journal of Civil Law Studies";journal;"19443749";"Louisiana State University, Center of Civil Law Studies";No;No;0,163;Q3;4;23;41;1730;12;28;0,36;75,22;25,00;0;United States;Northern America;"Louisiana State University, Center of Civil Law Studies";"2020, 2022-2025";"Law (Q3)";"Social Sciences" +24392;21100200022;"Journal of Korean Studies";journal;"07311613";"Center for Korea Studies, University of Washington";No;No;0,163;Q3;14;17;44;1618;20;36;0,61;95,18;57,14;0;United States;Northern America;"Center for Korea Studies, University of Washington";"2011-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +24393;21101087366;"Market and Competition Law Review";journal;"21840008";"Universidade Catolica Editora";Yes;Yes;0,163;Q3;6;13;34;358;17;29;0,67;27,54;66,67;0;Portugal;Western Europe;"Universidade Catolica Editora";"2019-2025";"Law (Q3)";"Social Sciences" +24394;21101204530;"National Health Care (Russia)";journal;"27130703, 2713069X";"I.M. Sechenov First Moscow State Medical University";No;No;0,163;Q3;6;25;60;440;38;60;0,80;17,60;56,07;0;Russian Federation;Eastern Europe;"I.M. Sechenov First Moscow State Medical University";"2020-2025";"Health Professions (miscellaneous) (Q3); Health Informatics (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine" +24395;5600152895;"Osterreichische Zeitschrift fur Soziologie";journal;"10110070, 18622585";"Springer VS";No;No;0,163;Q3;16;39;90;2395;40;78;0,55;61,41;63,93;0;Germany;Western Europe;"Springer VS";"2001-2026";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +24396;21747;"Pirogov Russian Journal of Surgery";journal;"00231207, 23095628";"Media Sphera Publishing Group";No;No;0,163;Q3;14;212;622;4578;242;616;0,36;21,59;29,53;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"1945-2026";"History and Philosophy of Science (Q3); Medicine (miscellaneous) (Q4); Surgery (Q4)";"Arts and Humanities; Medicine" +24397;21101039257;"Revista Brasileira de Estudos Politicos";journal;"23595736, 00347191";"Universidade Federal de Minas Gerais, Faculdade de Letras";Yes;Yes;0,163;Q3;5;20;96;730;12;93;0,15;36,50;26,92;0;Brazil;Latin America;"Universidade Federal de Minas Gerais, Faculdade de Letras";"2019-2025";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +24398;21100812584;"Revista Republicana";journal;"19094450, 22565027";"Corporacion Universitaria Republicana";Yes;No;0,163;Q3;9;18;60;664;13;60;0,23;36,89;21,88;0;Colombia;Latin America;"Corporacion Universitaria Republicana";"2016-2025";"Law (Q3); Sociology and Political Science (Q3)";"Social Sciences" +24399;3900148502;"Songklanakarin Journal of Science and Technology";journal;"01253395";"Prince of Songkla University";Yes;Yes;0,163;Q3;48;60;352;1865;245;352;0,65;31,08;47,06;0;Thailand;Asiatic Region;"Prince of Songkla University";"2006-2025";"Multidisciplinary (Q3)";"Multidisciplinary" +24400;24735;"American Review of Canadian Studies";journal;"02722011, 19439954";"Routledge";No;No;0,163;Q4;20;10;82;440;36;75;0,32;44,00;22,22;0;United Kingdom;Western Europe;"Routledge";"1971-2025";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +24401;21101097038;"Animal Production Research";journal;"22520872, 25386107";"University of Guilan";Yes;Yes;0,163;Q4;3;14;91;663;32;91;0,21;47,36;26,32;0;Iran;Middle East;"University of Guilan";"2020-2025";"Animal Science and Zoology (Q4); Food Science (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +24402;5200152705;"Avances en Psicologia Latinoamericana";journal;"17944724, 21454515";"Fundacion para el Avance de la Psicologia";Yes;Yes;0,163;Q4;19;16;89;849;30;85;0,27;53,06;72,55;0;Colombia;Latin America;"Fundacion para el Avance de la Psicologia";"1983, 2006-2025";"Clinical Psychology (Q4)";"Psychology" +24403;19700182145;"Biologie Aujourd'hui";journal;"21050686, 21050678";"EDP Sciences";No;No;0,163;Q4;25;14;73;982;26;69;0,38;70,14;41,67;0;France;Western Europe;"EDP Sciences";"2010-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology" +24404;22908;"Chinese Pharmacological Bulletin";journal;"10011978";"Editorial Office of Chinese Pharmacological Bulletin";No;No;0,163;Q4;20;336;965;6872;580;965;0,66;20,45;49,70;0;China;Asiatic Region;"Editorial Office of Chinese Pharmacological Bulletin";"1993-2026";"Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +24405;13209;"European Journal of Anatomy";journal;"2340311X, 11364890";"Sociedad Anatomica Espanola";No;No;0,163;Q4;24;90;229;3024;82;227;0,30;33,60;41,96;0;Spain;Western Europe;"Sociedad Anatomica Espanola";"1999-2025";"Anatomy (Q4)";"Medicine" +24406;21100856013;"Forum Geografic";journal;"15831523, 20674635";"University of Craiova, Faculty of Social Sciences, Department of Geography";Yes;Yes;0,163;Q4;7;8;55;490;28;55;0,58;61,25;41,18;0;Romania;Eastern Europe;"University of Craiova, Faculty of Social Sciences, Department of Geography";"2017-2025";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4); Global and Planetary Change (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +24407;19900193628;"Functional Materials";journal;"22182993, 10275495";"Scientific and Technological Corporation";Yes;No;0,163;Q4;20;81;247;2370;125;247;0,48;29,26;39,00;0;Ukraine;Eastern Europe;"Scientific and Technological Corporation";"2007, 2010-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +24408;13751;"High Temperature";journal;"0018151X, 16083156";"Pleiades Publishing";No;No;0,163;Q4;40;0;409;0;218;406;0,42;0,00;0,00;0;United States;Northern America;"Pleiades Publishing";"1968-1990, 1996-2024";"Condensed Matter Physics (Q4); Engineering (miscellaneous) (Q4)";"Engineering; Physics and Astronomy" +24409;20812;"Immunologiya";journal;"02064952";"Geotar Media Publishing Group";No;No;0,163;Q4;14;61;195;2250;152;192;0,78;36,89;62,08;0;Russian Federation;Eastern Europe;"Geotar Media Publishing Group";"1987-2001, 2009-2010, 2012-2025";"Immunology (Q4)";"Immunology and Microbiology" +24410;21100793179;"Indian Journal of Nematology";journal;"09744444, 03036960";"Nematological Society of India";No;No;0,163;Q4;7;11;87;321;37;79;0,35;29,18;36,36;0;India;Asiatic Region;"Nematological Society of India";"2016-2025";"Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +24411;21100878578;"International Journal of Cyber Warfare and Terrorism";journal;"19473435, 19473443";"IGI Global Publishing";No;No;0,163;Q4;10;0;28;0;56;28;6,67;0,00;0,00;0;United States;Northern America;"IGI Global Publishing";"2018-2024";"Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Information Systems and Management (Q4); Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4); Software (Q4)";"Computer Science; Decision Sciences; Engineering; Social Sciences" +24412;23996;"International Journal of Environment and Pollution";journal;"09574352, 17415101";"Inderscience Publishers";No;No;0,163;Q4;53;16;70;609;40;70;0,40;38,06;47,83;0;United Kingdom;Western Europe;"Inderscience Publishers";"1991-2025";"Management, Monitoring, Policy and Law (Q4); Pollution (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +24413;26679;"International Journal of Global Energy Issues";journal;"17415128, 09547118";"Inderscience Publishers";No;No;0,163;Q4;30;34;112;1063;65;111;0,55;31,26;36,79;0;United Kingdom;Western Europe;"Inderscience Publishers";"1989-2026";"Energy Engineering and Power Technology (Q4); Nuclear Energy and Engineering (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +24414;21100397338;"International Journal of Modern Manufacturing Technologies";journal;"20673604";"ModTech Publishing House";No;No;0,163;Q4;14;45;221;956;117;220;0,55;21,24;21,70;0;Romania;Eastern Europe;"ModTech Publishing House";"2015-2025";"Industrial and Manufacturing Engineering (Q4)";"Engineering" +24415;5800179615;"International Journal of Vehicle Systems Modelling and Testing";journal;"17456436, 17456444";"Inderscience Enterprises Ltd";No;No;0,163;Q4;20;20;51;731;34;51;0,53;36,55;23,17;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2025";"Automotive Engineering (Q4); Modeling and Simulation (Q4)";"Engineering; Mathematics" +24416;21101057018;"Journal of Engineering Geology";journal;"22877169, 12265268";"Korean Society of Engineering Geology";No;No;0,163;Q4;5;56;143;1331;39;143;0,27;23,77;30,00;0;South Korea;Asiatic Region;"Korean Society of Engineering Geology";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Environmental Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering; Environmental Science" +24417;21101030454;"Journal of Health Science and Medical Research";journal;"25869981, 26300559";"Prince of Songkla University";Yes;Yes;0,163;Q4;8;129;264;3972;121;264;0,52;30,79;49,00;0;Thailand;Asiatic Region;"Prince of Songkla University";"2018-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +24418;19700177120;"Journal of the Australian and New Zealand Student Services Association";journal;"22078460, 13202480";"Australian and New Zealand Student Services Association";Yes;Yes;0,163;Q4;11;9;40;234;19;34;0,49;26,00;84,00;0;Australia;Pacific Region;"Australian and New Zealand Student Services Association";"2009-2013, 2016-2025";"Education (Q4)";"Social Sciences" +24419;19900191980;"Korean Journal of Food Science and Technology";journal;"03676293";"The Korean Society of Food Science and Technology";Yes;No;0,163;Q4;25;98;289;3490;133;287;0,39;35,61;55,25;0;South Korea;Asiatic Region;"The Korean Society of Food Science and Technology";"2007-2025";"Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +24420;21100298603;"Mechanisms and Machine Science";book series;"22110984, 22110992";"Springer Netherlands";Yes;No;0,163;Q4;32;866;3591;14869;1257;3366;0,35;17,17;26,23;0;Netherlands;Western Europe;"Springer Netherlands";"2010-2026";"Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +24421;21101044942;"Minerva Biotechnology and Biomolecular Research";journal;"27245934, 2724542X";"Edizioni Minerva Medica S.p.A.";No;No;0,163;Q4;22;24;75;1030;51;64;0,73;42,92;53,47;0;Italy;Western Europe;"Edizioni Minerva Medica S.p.A.";"2021-2025";"Applied Microbiology and Biotechnology (Q4); Bioengineering (Q4); Biotechnology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +24422;21101089058;"Nativa";journal;"23187670";"Federal University of Mato Grosso";Yes;No;0,163;Q4;10;77;256;2887;154;256;0,65;37,49;38,79;2;Brazil;Latin America;"Federal University of Mato Grosso";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Environmental Science (miscellaneous) (Q4); Forestry (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24423;13361;"Nutrition Today";journal;"0029666X, 15389839";"Lippincott Williams and Wilkins Ltd.";No;No;0,163;Q4;35;47;134;1454;62;125;0,32;30,94;71,11;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1966-2026";"Nutrition and Dietetics (Q4)";"Nursing" +24424;21101066399;"Pakistan Journal of Nematology";journal;"23131942, 02557576";"ResearchersLinks Ltd";No;No;0,163;Q4;8;11;55;432;43;55;0,63;39,27;38,46;0;United Kingdom;Western Europe;"ResearchersLinks Ltd";"2019-2025";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +24425;21101087775;"Palestinian Medical and Pharmaceutical Journal";journal;"24138568, 27900231";"An-Najah National University";Yes;No;0,163;Q4;6;49;140;2186;75;136;0,60;44,61;51,49;0;Palestine;Middle East;"An-Najah National University";"2022-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +24426;21101327441;"Philippine Journal of Otolaryngology Head and Neck Surgery";journal;"20941501, 19084889";"Philippine Society of Otolaryngology Head and Neck Surgery";Yes;No;0,163;Q4;2;46;89;549;18;66;0,20;11,93;28,57;0;Philippines;Asiatic Region;"Philippine Society of Otolaryngology Head and Neck Surgery";"2021-2025";"Surgery (Q4)";"Medicine" +24427;21100901576;"Polyolefins Journal";journal;"23456868, 23222212";"Iran Polymer and Petrochemical Institute";Yes;Yes;0,163;Q4;10;23;65;865;49;63;0,67;37,61;29,58;0;Iran;Middle East;"Iran Polymer and Petrochemical Institute";"2019-2025";"Catalysis (Q4); Chemistry (miscellaneous) (Q4); Polymers and Plastics (Q4)";"Chemical Engineering; Chemistry; Materials Science" +24428;21101257853;"Proceeding of the IEEE International Conference on Smart Instrumentation, Measurement and Applications, ICSIMA";journal;"26406543, 26406535";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,163;Q4;3;65;61;959;47;59;0,77;14,75;30,50;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Instrumentation (Q4)";"Computer Science; Physics and Astronomy" +24429;21101259012;"Research in Sport Education and Sciences";journal;"28223527";"Ataturk Universitesi";Yes;Yes;0,163;Q4;2;29;60;1304;21;60;0,30;44,97;24,14;0;Turkey;Middle East;"Ataturk Universitesi";"2020-2025";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Medicine" +24430;21100894742;"Revista Baiana de Enfermagem";journal;"21788650, 01025430";"Universidade Federal da Bahia";Yes;No;0,163;Q4;8;28;214;688;62;209;0,26;24,57;85,37;0;Brazil;Latin America;"Universidade Federal da Bahia";"2018-2025";"Nursing (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Nursing" +24431;5000157109;"Revista Cubana de Hematologia, Inmunologia y Hemoterapia";journal;"08640289, 15612996";"Editorial Ciencias Medicas";Yes;Yes;0,163;Q4;11;30;125;668;10;110;0,07;22,27;70,42;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1999-2003, 2006-2026";"Hematology (Q4); Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +24432;12607;"Romanian Journal of Geography";journal;"12205311, 22859675";"Publishing House of the Romanian Academy";Yes;Yes;0,163;Q4;7;24;46;1244;22;45;0,41;51,83;42,31;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"1996, 2016-2025";"Geography, Planning and Development (Q4)";"Social Sciences" +24433;26828;"Studia Quaternaria";journal;"16415558";"Scientific Publishers OWN";Yes;No;0,163;Q4;18;8;26;252;9;24;0,50;31,50;36,67;0;Poland;Eastern Europe;"Scientific Publishers OWN";"2000-2025";"Earth-Surface Processes (Q4); Geology (Q4)";"Earth and Planetary Sciences" +24434;19700170833;"Yingyong Kexue Xuebao/Journal of Applied Sciences";journal;"02558297";"";No;No;0,163;Q4;14;74;253;1998;147;253;0,64;27,00;41,57;0;China;Asiatic Region;"";"1988, 2010-2026";"Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Engineering; Mathematics" +24435;21101207002;"Proceedings - International Conference on Smart-Green Technology in Electrical and Information Systems, ICSGTEIS";conference and proceedings;"28313992, 2831400X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,163;-;3;76;42;1675;36;40;0,86;22,04;34,38;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2023";"Artificial Intelligence; Computer Networks and Communications; Control and Optimization; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Information Systems; Renewable Energy, Sustainability and the Environment";"Computer Science; Energy; Engineering; Mathematics" +24436;21101220918;"Proceedings of the IEEE Southwest Symposium on Image Analysis and Interpretation";conference and proceedings;"15505782, 24733598";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,163;-;28;0;35;0;21;34;0,60;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1996, 1998, 2000, 2002, 2004, 2006, 2008, 2010, 2012, 2014, 2016, 2024";"Computer Science Applications; Computer Vision and Pattern Recognition; Software";"Computer Science" +24437;20600195641;"Proceedings of the International Spring Seminar on Electronics Technology";conference and proceedings;"21612528, 21612536";"IEEE Computer Society";No;No;0,163;-;20;99;271;1517;139;268;0,54;15,32;23,22;0;United States;Northern America;"IEEE Computer Society";"2001, 2003-2004, 2011-2013, 2015-2025";"Electrical and Electronic Engineering; Safety, Risk, Reliability and Quality";"Engineering" +24438;20300195057;"Babesch";journal;"17831369, 01659367";"Peeters Publishers";No;No;0,162;Q1;9;10;34;1475;7;34;0,18;147,50;38,46;0;Belgium;Western Europe;"Peeters Publishers";"2011-2018, 2020-2025";"Classics (Q1); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24439;19700200918;"English Text Construction";journal;"18748775, 18748767";"John Benjamins Publishing Company";No;No;0,162;Q1;21;1;30;56;14;28;0,48;56,00;100,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2008-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24440;21101210636;"Jurnal Kajian Bali";journal;"25800698, 20884443";"Udayana University";Yes;Yes;0,162;Q1;6;47;88;2973;63;88;0,84;63,26;38,05;0;Indonesia;Asiatic Region;"Udayana University";"2019-2025";"Literature and Literary Theory (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); History (Q2); Music (Q2); Tourism, Leisure and Hospitality Management (Q4)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +24441;21100834359;"Methis";journal;"17366852, 22284745";"University of Tartu Press";Yes;Yes;0,162;Q1;5;22;63;951;19;56;0,13;43,23;67,74;0;Estonia;Eastern Europe;"University of Tartu Press";"2017-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Visual Arts and Performing Arts (Q2); Library and Information Sciences (Q3)";"Arts and Humanities; Social Sciences" +24442;21100876478;"Studia Metrica et Poetica";journal;"2346691X, 23466901";"University of Tartu Press";Yes;Yes;0,162;Q1;7;1;34;31;12;34;0,43;31,00;0,00;0;Estonia;Eastern Europe;"University of Tartu Press";"2018-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24443;18303;"Acta Poloniae Historica";journal;"00016829, 24508462";"Polska Akademia Nauk";Yes;No;0,162;Q2;9;0;53;0;18;52;0,30;0,00;0,00;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1968, 1999, 2001-2024";"Cultural Studies (Q2); History (Q2); Gender Studies (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24444;21100782413;"Architecture and Culture";journal;"20507836, 20507828";"Taylor and Francis Ltd.";No;No;0,162;Q2;8;10;84;395;35;73;0,19;39,50;54,55;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Cultural Studies (Q2); Visual Arts and Performing Arts (Q2); Architecture (Q3); Urban Studies (Q3)";"Arts and Humanities; Engineering; Social Sciences" +24445;21101133572;"Atlanti+";journal;"26704560, 26704579";"International Institute for Archival Science Trieste - Maribor";No;No;0,162;Q2;3;7;43;191;7;38;0,15;27,29;57,14;0;Italy;Western Europe;"International Institute for Archival Science Trieste - Maribor";"2019-2025";"History (Q2); Library and Information Sciences (Q3)";"Arts and Humanities; Social Sciences" +24446;29243;"Christian Bioethics";journal;"17444195, 13803603";"Oxford University Press";No;No;0,162;Q2;12;18;58;635;20;58;0,28;35,28;19,05;0;United Kingdom;Western Europe;"Oxford University Press";"1995-2025";"Philosophy (Q2); Religious Studies (Q2); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +24447;21100421902;"Iberoamerican Journal of Development Studies";journal;"22542035";"University of Zaragoza";Yes;Yes;0,162;Q2;11;20;66;1461;42;66;0,56;73,05;47,62;0;Spain;Western Europe;"University of Zaragoza";"2012-2025";"History (Q2); Law (Q3); Sociology and Political Science (Q3); Development (Q4); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +24448;21101039842;"Interreligious Studies and Intercultural Theology";journal;"23973471, 2397348X";"Equinox Publishing Ltd";No;No;0,162;Q2;5;0;28;0;10;25;0,13;0,00;0,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2017-2024";"Religious Studies (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +24449;19300157026;"Journal of Chinese Overseas";journal;"17930391, 17932548";"Brill Academic Publishers";No;No;0,162;Q2;13;11;42;477;20;40;0,26;43,36;70,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2025";"Cultural Studies (Q2); History (Q2); Anthropology (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24450;15640;"Journal of Family History";journal;"15525473, 03631990";"SAGE Publications Inc.";No;No;0,162;Q2;30;28;72;888;47;71;0,74;31,71;51,28;0;United States;Northern America;"SAGE Publications Inc.";"1976-2026";"Arts and Humanities (miscellaneous) (Q2); Anthropology (Q3); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +24451;16254;"Mexican Studies/Estudios Mexicanos";journal;"07429797";"University of California Press";No;No;0,162;Q2;20;13;54;526;18;47;0,26;40,46;77,78;0;United States;Northern America;"University of California Press";"1985-2025";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +24452;21101021469;"ReOrient";journal;"20555601, 2055561X";"Pluto Journals";Yes;Yes;0,162;Q2;8;13;34;717;16;33;0,19;55,15;46,15;0;United Kingdom;Western Europe;"Pluto Journals";"2019-2025";"Cultural Studies (Q2); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +24453;21100312001;"Res Philosophica";journal;"21689105, 21689113";"Saint Louis University";No;No;0,162;Q2;22;27;91;888;46;90;0,61;32,89;20,00;0;Spain;Western Europe;"Saint Louis University";"2013-2025";"Philosophy (Q2)";"Arts and Humanities" +24454;21101338470;"Revista de Historia de America";journal;"2663371X, 00348325";"Pan-American Institute of Geography and History";Yes;No;0,162;Q2;4;26;75;1172;14;69;0,13;45,08;17,39;0;Mexico;Latin America;"Pan-American Institute of Geography and History";"2021-2026";"History (Q2)";"Arts and Humanities" +24455;21101067745;"Sport i Turystyka";journal;"26574322, 25453211";"Jan Dlugosz University Publishing House";Yes;Yes;0,162;Q2;5;33;99;1356;65;98;0,71;41,09;23,46;0;Poland;Eastern Europe;"Jan Dlugosz University Publishing House";"2018-2025";"History (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Arts and Humanities; Business, Management and Accounting; Health Professions" +24456;21101037317;"Acta Geographica Universitatis Comenianae";journal;"13386034";"Comenius University in Bratislava";Yes;Yes;0,162;Q3;5;5;34;220;17;34;0,57;44,00;18,18;0;Slovakia;Eastern Europe;"Comenius University in Bratislava";"2019-2025";"Urban Studies (Q3); Computers in Earth Sciences (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +24457;21101114008;"Anuario Electronico de Estudios en Comunicacion Social Disertaciones";journal;"18569536";"Universidad del Rosario";Yes;Yes;0,162;Q3;5;24;95;994;46;89;0,35;41,42;57,14;0;Colombia;Latin America;"Universidad del Rosario";"2019-2026";"Communication (Q3); Library and Information Sciences (Q3)";"Social Sciences" +24458;29266;"Buffalo Law Review";journal;"00239356";"State University of New York at Buffalo Law School";No;No;0,162;Q3;23;23;70;4808;18;67;0,19;209,04;29,17;0;United States;Northern America;"State University of New York at Buffalo Law School";"1973-1976, 1978-1979, 1982, 1990-1994, 1996, 1999-2000, 2002-2025";"Law (Q3)";"Social Sciences" +24459;21100211749;"Cumhuriyet Dental Journal";journal;"21462852";"Cumhuriyet University Faculty of Dentistry";Yes;Yes;0,162;Q3;11;36;170;1215;67;170;0,45;33,75;64,89;0;Turkey;Middle East;"Cumhuriyet University Faculty of Dentistry";"2010-2025";"Dentistry (miscellaneous) (Q3)";"Dentistry" +24460;19700169852;"Indiana Journal of Global Legal Studies";journal;"10800727, 15430367";"Indiana University Press";No;No;0,162;Q3;21;0;67;0;69;66;1,18;0,00;0,00;0;United States;Northern America;"Indiana University Press";"2013-2024";"Law (Q3)";"Social Sciences" +24461;21100867438;"International Journal of High-Rise Buildings";journal;"22889930, 22347224";"Korean Council on Tall Buildings and Urban Habitat";Yes;No;0,162;Q3;16;0;80;0;45;79;0,56;0,00;0,00;0;South Korea;Asiatic Region;"Korean Council on Tall Buildings and Urban Habitat";"2018-2024";"Architecture (Q3); Urban Studies (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4)";"Engineering; Social Sciences" +24462;21101259362;"Journal of Korean Biological Nursing Science";journal;"23836423, 23836415";"";No;No;0,162;Q3;5;63;91;2359;48;90;0,60;37,44;77,70;0;South Korea;Asiatic Region;"";"2020-2025";"Embryology (Q3); Psychology (miscellaneous) (Q4)";"Medicine; Psychology" +24463;21100903449;"Revista de la Academia Colombiana de Ciencias Exactas, Fisicas y Naturales";journal;"23824980, 03703908";"Colombian Academy of Exact, Physical and Natural Sciences";Yes;Yes;0,162;Q3;14;68;248;2269;98;217;0,37;33,37;23,81;0;Colombia;Latin America;"Colombian Academy of Exact, Physical and Natural Sciences";"2016-2025";"History and Philosophy of Science (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Energy (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Arts and Humanities; Biochemistry, Genetics and Molecular Biology; Chemistry; Earth and Planetary Sciences; Energy; Mathematics; Physics and Astronomy" +24464;21100939610;"Russian Journal of Human Reproduction";journal;"10257217, 23094885";"Media Sphera Publishing Group";No;No;0,162;Q3;12;63;275;2187;192;271;0,75;34,71;76,63;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2012-2025";"Embryology (Q3); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)";"Medicine" +24465;21100934560;"Science, Engineering and Health Studies";journal;"26300087";"Silpakorn University";No;No;0,162;Q3;9;60;184;2315;127;181;0,76;38,58;52,45;0;Thailand;Asiatic Region;"Silpakorn University";"2018-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +24466;5800169741;"Social Work and Society";journal;"16138953";"University of Duisburg";Yes;Yes;0,162;Q3;18;18;82;948;32;82;0,25;52,67;63,33;0;Germany;Western Europe;"University of Duisburg";"2012-2025";"Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)";"Social Sciences" +24467;21395;"Acta Anaesthesiologica Belgica";journal;"27365239, 00015164";"BeSARPP";No;No;0,162;Q4;32;36;176;1037;57;166;0,34;28,81;43,48;0;Belgium;Western Europe;"BeSARPP";"1950-1951, 1959-1961, 1963-2018, 2020-2025";"Anesthesiology and Pain Medicine (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +24468;26209;"Acta Horticulturae";book series;"05677572, 24066168";"International Society for Horticultural Science";No;No;0,162;Q4;77;1414;4175;28433;1512;4171;0,33;20,11;43,58;0;Belgium;Western Europe;"International Society for Horticultural Science";"1976, 1982, 1984, 1988, 1996-2026";"Horticulture (Q4)";"Agricultural and Biological Sciences" +24469;19700174662;"Acta Physica Polonica B, Proceedings Supplement";journal;"18992358";"Jagiellonian University";No;No;0,162;Q4;22;144;435;2673;100;433;0,23;18,56;23,37;0;Poland;Eastern Europe;"Jagiellonian University";"2008-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +24470;25760;"Advances in Organometallic Chemistry";book series;"00653055";"Academic Press Inc.";No;No;0,162;Q4;59;11;37;1353;50;7;1,25;123,00;0,00;0;United States;Northern America;"Academic Press Inc.";"1964-1977, 1979-2001, 2003-2008, 2010-2025";"Organic Chemistry (Q4)";"Chemistry" +24471;24722;"Annals of Mathematics Studies";book series;"00662313";"Princeton University";No;No;0,162;Q4;27;0;1;0;2;1;0,00;0,00;0,00;0;United States;Northern America;"Princeton University";"2001-2010, 2012-2020, 2022";"Mathematics (miscellaneous) (Q4)";"Mathematics" +24472;21100981104;"Applicationes Mathematicae";journal;"17306280, 12337234";"Institute of Mathematics. Polish Academy of Sciences";No;No;0,162;Q4;3;5;31;127;9;31;0,38;25,40;22,22;0;Poland;Eastern Europe;"Institute of Mathematics. Polish Academy of Sciences";"1999, 2019-2025";"Applied Mathematics (Q4)";"Mathematics" +24473;21101192676;"ASEAN Journal of Scientific and Technological Reports";journal;"27738752";"Thaksin University";No;No;0,162;Q4;5;118;124;3731;82;124;0,78;31,62;45,27;0;Thailand;Asiatic Region;"Thaksin University";"2021-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Chemical Engineering (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Chemical Engineering" +24474;21101104837;"Asian Review of Financial Research";journal;"27136531, 12290351";"Korean Finance Association";No;No;0,162;Q4;4;17;50;731;15;50;0,31;43,00;14,29;0;South Korea;Asiatic Region;"Korean Finance Association";"2019-2025";"Finance (Q4)";"Economics, Econometrics and Finance" +24475;13218;"Bandaoti Guangdian/Semiconductor Optoelectronics";journal;"10015868";"China National Publishing Industry Trading Corporation";No;No;0,162;Q4;13;153;486;3275;205;486;0,49;21,41;32,25;0;China;Asiatic Region;"China National Publishing Industry Trading Corporation";"1998, 2001-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +24476;17751;"Beijing Youdian Xueyuan Xuebao/Journal of Beijing University of Posts And Telecommunications";journal;"10075321";"Beijing University of Posts and Telecommunications";No;No;0,162;Q4;18;101;355;1554;225;355;0,65;15,39;38,62;0;China;Asiatic Region;"Beijing University of Posts and Telecommunications";"1998-2025";"Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +24477;20564;"Ceska a Slovenska Farmacie";journal;"12107816, 18054439";"Czech Medical Association J.E. Purkyne";No;No;0,162;Q4;19;49;103;983;47;98;0,43;20,06;63,89;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1994-2025";"Pharmaceutical Science (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +24478;21101241990;"Chinese Journal of Nuclear Medicine and Molecular Imaging";journal;"20952848";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,162;Q4;9;114;472;2551;232;468;0,59;22,38;45,21;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +24479;16066;"Electrical Engineering in Japan (English translation of Denki Gakkai Ronbunshi)";journal;"04247760, 15206416";"John Wiley & Sons Inc.";No;No;0,162;Q4;35;46;107;794;53;107;0,34;17,26;10,56;0;United States;Northern America;"John Wiley & Sons Inc.";"1968-2026";"Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4)";"Energy; Engineering" +24480;21101039233;"Engineering Project Organization Journal";journal;"21573727, 21573735";"Engineering Project Organization Society (EPOS)";No;No;0,162;Q4;7;10;18;349;7;17;0,55;34,90;35,29;0;United States;Northern America;"Engineering Project Organization Society (EPOS)";"2019-2022, 2024-2026";"Building and Construction (Q4); Engineering (miscellaneous) (Q4); Information Systems and Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering" +24481;28168;"Finisterra";journal;"04305027";"Universidade de Lisboa";Yes;Yes;0,162;Q4;17;24;89;1380;40;86;0,45;57,50;60,78;0;Portugal;Western Europe;"Universidade de Lisboa";"1978-1990, 1992-2002, 2007, 2012-2026";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +24482;5900153302;"Future Neurology";journal;"14796708, 17486971";"Taylor and Francis Ltd.";No;No;0,162;Q4;41;17;29;351;18;27;0,62;20,65;44,66;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +24483;19700174970;"Hacettepe University Journal of the Faculty of Pharmacy";journal;"13000608, 24588806";"Hacettepe University, Faculty of Pharmacy";No;No;0,162;Q4;10;32;95;1566;64;95;0,54;48,94;60,19;0;Turkey;Middle East;"Hacettepe University, Faculty of Pharmacy";"2008-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +24484;21100470629;"High Temperature Material Processes";journal;"10933611, 19404360";"Begell House Inc.";No;No;0,162;Q4;20;31;97;894;50;97;0,47;28,84;24,21;0;United States;Northern America;"Begell House Inc.";"1997-2025";"Condensed Matter Physics (Q4); Energy Engineering and Power Technology (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Physical and Theoretical Chemistry (Q4); Spectroscopy (Q4)";"Chemistry; Energy; Engineering; Materials Science; Physics and Astronomy" +24485;21101053567;"Indian Journal of Economics and Development";journal;"22775412, 23220430";"The Society of Economics and Development";No;No;0,162;Q4;8;83;306;2414;90;306;0,21;29,08;33,91;0;India;Asiatic Region;"The Society of Economics and Development";"2019-2025";"Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4); Finance (Q4); Geography, Planning and Development (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +24486;21101257834;"International IEEE Conference proceedings, IS";journal;"28324145, 27679802";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,162;Q4;5;0;112;0;110;110;0,98;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Information Systems (Q4)";"Computer Science" +24487;15700154703;"International Journal of Intelligent Information and Database Systems";journal;"17515866, 17515858";"Inderscience Enterprises Ltd";No;No;0,162;Q4;16;25;39;823;30;39;0,74;32,92;40,38;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2026";"Information Systems (Q4)";"Computer Science" +24488;21100200818;"International Journal of Microwave and Optical Technology";journal;"15530396";"International Academy of Microwave and Optical Technology (IAMOT)";No;No;0,162;Q4;19;82;217;2089;150;217;0,76;25,48;27,84;0;United States;Northern America;"International Academy of Microwave and Optical Technology (IAMOT)";"2006-2026";"Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science" +24489;21100207622;"International Journal of Social Ecology and Sustainable Development";journal;"19478410, 19478402";"IGI Global Publishing";No;No;0,162;Q4;16;0;209;0;178;209;1,65;0,00;0,00;0;United States;Northern America;"IGI Global Publishing";"2010-2024";"Development (Q4); Ecology (Q4); Environmental Engineering (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +24490;21101295546;"Journal of Clinical Psychology Research";journal;"26024438";"Association for Clinical Psychology Research";Yes;No;0,162;Q4;5;26;83;2055;27;83;0,28;79,04;70,69;0;Turkey;Middle East;"Association for Clinical Psychology Research";"2021-2026";"Applied Psychology (Q4); Clinical Psychology (Q4); Developmental and Educational Psychology (Q4)";"Psychology" +24491;21101149220;"Journal of Engineering Sciences";journal;"23568550, 16870530";"Assiut University, Faculty of Engineering";Yes;No;0,162;Q4;9;83;174;3044;105;174;0,61;36,67;25,45;0;Egypt;Africa/Middle East;"Assiut University, Faculty of Engineering";"2006-2026";"Civil and Structural Engineering (Q4); Electrical and Electronic Engineering (Q4); Environmental Engineering (Q4); Mechanical Engineering (Q4); Metals and Alloys (Q4)";"Engineering; Environmental Science; Materials Science" +24492;63269;"Journal of Surface Investigation";journal;"10274510, 18197094";"Pleiades Publishing";No;No;0,162;Q4;27;187;784;5118;305;784;0,41;27,37;28,66;0;United States;Northern America;"Pleiades Publishing";"1997-2001, 2007-2025";"Nanoscience and Nanotechnology (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science" +24493;21100228011;"Journal of the Serbian Society for Computational Mechanics";journal;"18206530";"Serbian Society of Computational Mechanics";Yes;No;0,162;Q4;15;31;55;644;26;55;0,53;20,77;21,13;0;Serbia;Eastern Europe;"Serbian Society of Computational Mechanics";"2012-2025";"Computational Mechanics (Q4)";"Engineering" +24494;11300153737;"Malaysian Journal of Medicine and Health Sciences";journal;"26369346, 16758544";"Universiti Putra Malaysia Press";No;No;0,162;Q4;18;615;2094;18978;859;2069;0,38;30,86;56,18;0;Malaysia;Asiatic Region;"Universiti Putra Malaysia Press";"2007-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +24495;21100818503;"Nauchno-Prakticheskaya Revmatologiya";journal;"19954484, 19954492";"Ima-Press Publishing House";Yes;Yes;0,162;Q4;20;34;244;1220;158;244;0,75;35,88;63,72;0;Russian Federation;Eastern Europe;"Ima-Press Publishing House";"2017-2025";"Immunology (Q4); Immunology and Allergy (Q4); Rheumatology (Q4)";"Immunology and Microbiology; Medicine" +24496;21343;"Nippon Shokuhin Kagaku Kogaku Kaishi";journal;"1341027X";"Japanese Society for Food Science and Technology";No;No;0,162;Q4;26;53;179;1056;35;169;0,16;19,92;34,87;0;Japan;Asiatic Region;"Japanese Society for Food Science and Technology";"1995-2026";"Food Science (Q4)";"Agricultural and Biological Sciences" +24497;4000148906;"NPG Neurologie - Psychiatrie - Geriatrie";journal;"16274830";"Elsevier Masson s.r.l.";No;No;0,162;Q4;11;36;153;1182;51;135;0,32;32,83;34,72;0;France;Western Europe;"Elsevier Masson s.r.l.";"2004-2026";"Geriatrics and Gerontology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine" +24498;21100817112;"Polytrauma";journal;"18191495, 2541867X";"The Charity Fund of Clinical Center of Miners' Health Protection";No;No;0,162;Q4;7;33;122;765;37;122;0,37;23,18;36,61;0;Russian Federation;Eastern Europe;"The Charity Fund of Clinical Center of Miners' Health Protection";"2016-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +24499;21100371975;"Problemy Radiatsiinoi Medytsyny ta Radiobiolohii";journal;"23048336, 23134607";"Naukovyi tsentr radiatsiinoi medytsyny AMN Ukrainy";Yes;No;0,162;Q4;11;32;102;1062;41;100;0,36;33,19;63,64;0;Ukraine;Eastern Europe;"Naukovyi tsentr radiatsiinoi medytsyny AMN Ukrainy";"2013, 2015-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +24500;21100871683;"Revista de Psicologia de la Salud";journal;"02146118, 23862300";"Universidad Miguel Hernandez";No;No;0,162;Q4;5;41;50;1486;22;47;0,19;36,24;51,61;0;Spain;Western Europe;"Universidad Miguel Hernandez";"2018-2025";"Clinical Psychology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Psychology" +24501;21101186336;"Revista Portuguesa de Enfermagem de Reabilitacao";journal;"21843023, 2184965X";"Associacao Portuguesa dos Enfermeiros de Reabilitacao";Yes;Yes;0,162;Q4;5;23;66;656;20;63;0,39;28,52;72,09;0;Portugal;Western Europe;"Associacao Portuguesa dos Enfermeiros de Reabilitacao";"2019-2025";"Nursing (miscellaneous) (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine; Nursing" +24502;20331;"Science for Conservation";book series;"11732946";"Department of Conservation";No;No;0,162;Q4;18;1;5;27;8;3;2,00;27,00;0,00;0;New Zealand;Pacific Region;"Department of Conservation";"1999-2014, 2016-2019, 2022-2025";"Ecology (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science" +24503;19361;"Sigurnost";journal;"03506886";"";Yes;Yes;0,162;Q4;7;36;136;590;25;88;0,15;16,39;43,86;0;Croatia;Eastern Europe;"";"1992, 2009-2025";"Public Health, Environmental and Occupational Health (Q4); Safety Research (Q4)";"Medicine; Social Sciences" +24504;21100931378;"Southeast Asian Journal of Economics";journal;"22868984, 24655120";"Chulalongkorn University Department of Biology";No;No;0,162;Q4;5;24;58;1139;37;58;0,49;47,46;36,36;0;Thailand;Asiatic Region;"Chulalongkorn University Department of Biology";"2019-2025";"Business, Management and Accounting (miscellaneous) (Q4); Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +24505;20868;"Telecommunications and Radio Engineering (English translation of Elektrosvyaz and Radiotekhnika)";journal;"00402508, 19436009";"Begell House Inc.";Yes;No;0,162;Q4;25;59;180;1629;115;180;0,72;27,61;35,37;0;United States;Northern America;"Begell House Inc.";"1971-1985, 1987-1993, 1995-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +24506;21101041837;"Materials Research Proceedings";conference and proceedings;"24743941, 2474395X";"Association of American Publishers";No;No;0,162;-;12;797;1835;14358;826;1808;0,47;18,02;23,18;0;United States;Northern America;"Association of American Publishers";"2019-2026";"Materials Science (miscellaneous)";"Materials Science" +24507;21100235606;"OpenAccess Series in Informatics";conference and proceedings;"21906807";"Schloss Dagstuhl- Leibniz-Zentrum fur Informatik GmbH, Dagstuhl Publishing";Yes;No;0,162;-;25;115;387;2851;148;329;0,37;24,79;23,08;0;Germany;Western Europe;"Schloss Dagstuhl- Leibniz-Zentrum fur Informatik GmbH, Dagstuhl Publishing";"2006-2025";"Geography, Planning and Development; Modeling and Simulation";"Mathematics; Social Sciences" +24508;21101393097;"Proceedings - 2024 IEEE International Conference on Big Data, BigData 2024";conference and proceedings;"26391589, 25732978";"";No;No;0,162;-;8;0;1143;0;807;1142;0,71;0,00;0,00;0;United States;Northern America;"";"2024";"Artificial Intelligence; Computer Networks and Communications; Computer Science Applications; Information Systems; Information Systems and Management; Modeling and Simulation; Safety, Risk, Reliability and Quality";"Computer Science; Decision Sciences; Engineering; Mathematics" +24509;5100152902;"SEG Technical Program Expanded Abstracts";conference and proceedings;"10523812, 19494645";"Society of Exploration Geophysicists";No;No;0,162;-;77;0;1716;0;499;1713;0,26;0,00;0,00;0;United States;Northern America;"Society of Exploration Geophysicists";"2000-2004, 2006-2009, 2011-2024";"Geophysics; Geotechnical Engineering and Engineering Geology";"Earth and Planetary Sciences" +24510;29680;"English Language Notes";journal;"25733575, 00138282";"Duke University Press";No;No;0,161;Q1;15;11;65;691;18;58;0,27;62,82;45,45;0;United States;Northern America;"Duke University Press";"1969, 1977, 1982, 2000, 2002-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +24511;5700166780;"Parallax";journal;"13534645, 1460700X";"Routledge";No;No;0,161;Q1;37;8;95;281;38;91;0,57;35,13;33,33;0;United Kingdom;Western Europe;"Routledge";"1995-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Philosophy (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities; Social Sciences" +24512;6400153188;"Women";journal;"14701367, 09574042";"Informa UK Ltd";No;No;0,161;Q1;19;1;48;36;23;40;0,63;36,00;100,00;0;United Kingdom;Western Europe;"Informa UK Ltd";"1990-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +24513;21100867251;"Architectural Histories";journal;"20505833";"Open Library of Humanities";Yes;Yes;0,161;Q2;7;15;111;505;29;110;0,20;33,67;64,52;0;United Kingdom;Western Europe;"Open Library of Humanities";"2016, 2018-2025";"History (Q2); Visual Arts and Performing Arts (Q2); Architecture (Q3)";"Arts and Humanities; Engineering" +24514;21100825856;"Arenal";journal;"11346396";"Universidad de Granada";Yes;Yes;0,161;Q2;7;12;72;695;18;72;0,10;57,92;54,55;0;Spain;Western Europe;"Universidad de Granada";"2017-2025";"Cultural Studies (Q2); History (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +24515;5700158136;"Arete";journal;"1016913X, 22233741";"Pontifica Universidad Catolica del Peru";Yes;Yes;0,161;Q2;5;13;79;383;12;78;0,24;29,46;41,67;0;Peru;Latin America;"Pontifica Universidad Catolica del Peru";"2013-2025";"Philosophy (Q2)";"Arts and Humanities" +24516;21101071124;"Argumenta";journal;"24652334";"University of Sassari";Yes;Yes;0,161;Q2;5;26;96;1075;24;92;0,22;41,35;42,31;0;Italy;Western Europe;"University of Sassari";"2019-2025";"Philosophy (Q2); Linguistics and Language (Q3); Logic (Q4)";"Arts and Humanities; Mathematics; Social Sciences" +24517;16000154750;"Cahiers du Monde Russe";journal;"12526576, 17775388";"College de France, Ecole des Hautes Etudes en Sciences Sociales (E H E S S)";No;No;0,161;Q2;17;0;119;0;15;111;0,19;0,00;0,00;0;France;Western Europe;"College de France, Ecole des Hautes Etudes en Sciences Sociales (E H E S S)";"1999, 2001-2024";"History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24518;21100916527;"Empedocles";journal;"17571960, 17571952";"Intellect Ltd.";No;No;0,161;Q2;3;2;27;79;9;23;0,19;39,50;50,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Philosophy (Q2); Communication (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24519;21100909465;"Feminist Media Histories";journal;"23737492";"University of California Press";No;No;0,161;Q2;9;27;102;1047;49;94;0,29;38,78;72,00;0;United States;Northern America;"University of California Press";"2019-2025";"History (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +24520;6000162994;"Folk Life";journal;"04308778, 1759670X";"Taylor and Francis Ltd.";No;No;0,161;Q2;7;8;25;300;15;24;0,75;37,50;75,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1963-1995, 2002-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +24521;21101066338;"Journal of African Films and Diaspora Studies";journal;"25162705, 25162713";"Adonis and Abbey Publishers Ltd";No;No;0,161;Q2;5;36;99;1363;41;97;0,41;37,86;36,84;0;United Kingdom;Western Europe;"Adonis and Abbey Publishers Ltd";"2018-2025";"Cultural Studies (Q2); Visual Arts and Performing Arts (Q2); Communication (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24522;5600155520;"Journal of Church and State";journal;"0021969X, 20404867";"Oxford University Press";No;No;0,161;Q2;21;19;70;1602;30;67;0,43;84,32;39,13;0;United States;Northern America;"Oxford University Press";"1959-1978, 1980-1996, 1998-2026";"History (Q2); Religious Studies (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24523;11600153445;"Journal of Mathematics and the Arts";journal;"17513480, 17513472";"Taylor and Francis Ltd.";No;No;0,161;Q2;15;11;58;223;20;55;0,50;20,27;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2026";"Visual Arts and Performing Arts (Q2); Computer Graphics and Computer-Aided Design (Q4); Mathematics (miscellaneous) (Q4)";"Arts and Humanities; Computer Science; Mathematics" +24524;21101256265;"Music Theory And Analysis";journal;"22955917, 22955925";"Leuven University Press";No;No;0,161;Q2;2;3;31;32;4;30;0,05;10,67;33,33;0;Belgium;Western Europe;"Leuven University Press";"2020-2025";"Music (Q2)";"Arts and Humanities" +24525;20100195049;"SATS";journal;"18697577, 16001974";"Walter de Gruyter GmbH";No;No;0,161;Q2;11;6;32;254;20;30;0,60;42,33;16,67;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2000-2025";"Philosophy (Q2)";"Arts and Humanities" +24526;17799;"War and Society";journal;"07292473, 20424345";"Taylor and Francis Ltd.";No;No;0,161;Q2;12;41;74;2758;33;70;0,41;67,27;37,21;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2003, 2008, 2010-2026";"History (Q2)";"Arts and Humanities" +24527;21100903229;"Forma y Funcion";journal;"0120338X, 22565469";"Universidad Nacional de Colombia";Yes;Yes;0,161;Q3;4;19;45;880;22;43;0,39;46,32;54,84;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +24528;21101339732;"Invention Disclosure";journal;"27724441";"Elsevier B.V.";Yes;No;0,161;Q3;3;13;30;227;26;30;0,96;17,46;33,33;0;Netherlands;Western Europe;"Elsevier B.V.";"2021-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +24529;4700152734;"Journal of Hospital Librarianship";journal;"15323277, 15323269";"Routledge";No;No;0,161;Q3;16;26;110;535;35;81;0,36;20,58;36,73;0;United Kingdom;Western Europe;"Routledge";"2001-2026";"Library and Information Sciences (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +24530;4700152422;"Journal of Map and Geography Libraries";journal;"15420353, 15420361";"Routledge";No;No;0,161;Q3;17;13;40;173;19;30;0,41;13,31;69,23;0;United States;Northern America;"Routledge";"2004-2026";"Library and Information Sciences (Q3)";"Social Sciences" +24531;21100255429;"Journal of Pediatric Surgery Case Reports";journal;"22135766";"Elsevier Inc.";Yes;No;0,161;Q3;16;198;772;2765;205;771;0,25;13,96;42,29;0;United States;Northern America;"Elsevier Inc.";"2013-2026";"Pediatrics, Perinatology and Child Health (Q3); Surgery (Q4)";"Medicine" +24532;21101048553;"Jurnal Keperawatan Indonesia";journal;"14104490, 23549203";"Faculty of Nursing of Universitas Indonesia";Yes;Yes;0,161;Q3;5;21;51;683;30;51;0,57;32,52;54,00;0;Indonesia;Asiatic Region;"Faculty of Nursing of Universitas Indonesia";"2021-2025";"Health Professions (miscellaneous) (Q3); Advanced and Specialized Nursing (Q4); Nursing (miscellaneous) (Q4); Research and Theory (Q4)";"Health Professions; Nursing" +24533;21101167510;"Reviews on Clinical Pharmacology and Drug Therapy";journal;"16834100, 25421875";"Eco-Vector LLC";No;No;0,161;Q3;8;37;104;1942;73;104;0,86;52,49;58,17;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Drug Guides (Q3); Biochemistry (medical) (Q4); Complementary and Manual Therapy (Q4); Occupational Therapy (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +24534;21101052245;"Revista Electronica de Estudios Internacionales";journal;"16975197";"Asociacion Espanola de Profesores de Derecho internacional y Relaciones internacionales";Yes;Yes;0,161;Q3;5;29;98;3207;26;98;0,27;110,59;66,67;0;Spain;Western Europe;"Asociacion Espanola de Profesores de Derecho internacional y Relaciones internacionales";"2019-2025";"Law (Q3)";"Social Sciences" +24535;21101052925;"Russian Journal of Forensic Medicine";journal;"24118729, 24094161";"Eco-Vector LLC";Yes;No;0,161;Q3;7;35;140;1174;41;139;0,32;33,54;45,16;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Law (Q3); Anatomy (Q4); Pathology and Forensic Medicine (Q4)";"Medicine; Social Sciences" +24536;12007;"Statisztikai Szemle";journal;"00390690";"Hungarian Central Statistical Office";No;No;0,161;Q3;6;38;131;1554;52;131;0,42;40,89;25,00;0;Hungary;Eastern Europe;"Hungarian Central Statistical Office";"1946, 1948, 1977-1999, 2019-2025";"Demography (Q3); Social Sciences (miscellaneous) (Q3); Applied Mathematics (Q4); Economics and Econometrics (Q4); Statistics and Probability (Q4)";"Economics, Econometrics and Finance; Mathematics; Social Sciences" +24537;25421;"Acta Haematologica Polonica";journal;"23007117, 00015814";"Via Medica";Yes;Yes;0,161;Q4;14;78;184;2735;88;166;0,44;35,06;68,67;0;Poland;Eastern Europe;"Via Medica";"1971-2025";"Hematology (Q4); Oncology (Q4)";"Medicine" +24538;21101057624;"Acta Scientiarum - Education";journal;"21785198, 21785201";"Universidade Estadual de Maringa";Yes;Yes;0,161;Q4;4;51;145;1940;32;142;0,23;38,04;66,28;0;Brazil;Latin America;"Universidade Estadual de Maringa";"2019-2026";"Education (Q4)";"Social Sciences" +24539;21101325994;"African Transport Studies";journal;"29501962";"Elsevier Ltd";No;No;0,161;Q4;3;55;12;2754;11;12;0,92;50,07;20,51;0;United Kingdom;Western Europe;"Elsevier Ltd";"2023-2026";"Transportation (Q4)";"Social Sciences" +24540;19700173106;"Argumenta Oeconomica";journal;"12335835";"Wroclaw University of Economics";No;No;0,161;Q4;12;30;78;1720;49;78;0,61;57,33;41,43;0;Poland;Eastern Europe;"Wroclaw University of Economics";"2009-2018, 2020-2026";"Economics and Econometrics (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +24541;21101314093;"Buletin Peternakan";journal;"2407876X, 01264400";"Gadjah Mada University";Yes;No;0,161;Q4;4;30;116;1082;59;116;0,52;36,07;49,32;0;Indonesia;Asiatic Region;"Gadjah Mada University";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Animal Science and Zoology (Q4); Food Animals (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Veterinary" +24542;21100207012;"China's Refractories";journal;"10044493";"Editorial Board of CHINA'S REFRACTORIES";No;No;0,161;Q4;6;30;92;534;31;91;0,30;17,80;35,86;0;China;Asiatic Region;"Editorial Board of CHINA'S REFRACTORIES";"2012-2025";"Ceramics and Composites (Q4)";"Materials Science" +24543;21100943315;"Composites Theory and Practice";journal;"20846096, 2299128X";"Polish Society of Composite Materials";No;No;0,161;Q4;9;30;99;748;66;98;0,62;24,93;28,70;0;Poland;Eastern Europe;"Polish Society of Composite Materials";"2019-2025";"Ceramics and Composites (Q4); Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +24544;20300195003;"Donald School Journal of Ultrasound in Obstetrics and Gynecology";journal;"0973614X, 09751912";"Jaypee Brothers Medical Publishers (P) Ltd";No;No;0,161;Q4;18;35;132;976;28;131;0,20;27,89;36,78;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2011-2025";"Geriatrics and Gerontology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +24545;21101223503;"Ecologia Aplicada";journal;"19939507, 17262216";"Universidad Nacional Agraria La Molina";No;Yes;0,161;Q4;5;15;44;518;18;44;0,39;34,53;37,93;0;Peru;Latin America;"Universidad Nacional Agraria La Molina";"2020-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Ecology (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24546;21101363648;"Environmental Stresses in Crop Sciences";journal;"23833084, 22287604";"University of Birjand";No;No;0,161;Q4;5;40;216;1742;77;216;0,35;43,55;19,83;0;Iran;Middle East;"University of Birjand";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Biotechnology (Q4); Physiology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +24547;21101048047;"Ethiopian Journal of Reproductive Health";journal;"25200283, 25200275";"Ethiopian Society of Obstetricians and Gynecologists (ESOG)";No;No;0,161;Q4;8;24;83;663;25;82;0,19;27,63;21,43;0;Ethiopia;Africa;"Ethiopian Society of Obstetricians and Gynecologists (ESOG)";"2019-2025";"Reproductive Medicine (Q4)";"Medicine" +24548;21101039843;"Eurasian Journal of Physics and Functional Materials";journal;"26168537, 25229869";"L.N. Gumilyov Eurasian National University";Yes;Yes;0,161;Q4;8;24;74;926;46;74;0,80;38,58;36,00;0;Kazakhstan;Asiatic Region;"L.N. Gumilyov Eurasian National University";"2018-2025";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Nuclear and High Energy Physics (Q4); Physics and Astronomy (miscellaneous) (Q4); Radiation (Q4)";"Materials Science; Physics and Astronomy" +24549;34132;"Indian Journal of Agronomy";journal;"09744460, 0537197X";"Indian Society of Agronomy";No;No;0,161;Q4;30;0;120;0;70;117;0,88;0,00;0,00;0;India;Asiatic Region;"Indian Society of Agronomy";"1993-2023";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +24550;19900193629;"International Journal Bioautomation";journal;"13142321, 13141902";"Institute of Biophysics and Biomedical Engineering";Yes;Yes;0,161;Q4;17;18;55;742;37;54;0,44;41,22;42,55;0;Bulgaria;Eastern Europe;"Institute of Biophysics and Biomedical Engineering";"2011-2025";"Biochemistry (Q4); Biotechnology (Q4); Ecological Modeling (Q4); Food Science (Q4); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +24551;21100902105;"International Journal of Agricultural Technology";journal;"26300192";"Association of Agricultural Technology in Southeast Asia";No;No;0,161;Q4;14;179;558;5446;261;558;0,42;30,42;47,97;0;Thailand;Asiatic Region;"Association of Agricultural Technology in Southeast Asia";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +24552;21100787766;"International Journal of Intelligent Systems and Applications";journal;"20749058, 2074904X";"Modern Education and Computer Science Press";Yes;No;0,161;Q4;29;42;34;1438;36;34;1,06;34,24;23,42;0;Hong Kong;Asiatic Region;"Modern Education and Computer Science Press";"2016-2018, 2024-2026";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Control and Optimization (Q4); Human-Computer Interaction (Q4); Modeling and Simulation (Q4); Signal Processing (Q4)";"Computer Science; Mathematics" +24553;31912;"International Journal of Transport Economics";journal;"03035247, 17242185";"Fabrizio Serra Editore Srl";No;No;0,161;Q4;27;16;39;992;23;38;0,60;62,00;31,82;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"1979-1981, 1987, 1989-2026";"Geography, Planning and Development (Q4); Transportation (Q4)";"Social Sciences" +24554;12152;"Jiguang Jishu/Laser Technology";journal;"10013806";"";No;No;0,161;Q4;10;134;41;3573;30;41;0,73;26,66;36,46;0;China;Asiatic Region;"";"1991-1999, 2001-2003, 2024-2026";"Atomic and Molecular Physics, and Optics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +24555;21100827462;"Journal of Advanced Manufacturing Technology";journal;"19853157, 22898107";"Penerbit Universiti Teknikal Malaysia Melaka";Yes;Yes;0,161;Q4;12;22;83;465;46;82;0,54;21,14;39,22;0;Malaysia;Asiatic Region;"Penerbit Universiti Teknikal Malaysia Melaka";"2017-2025";"Automotive Engineering (Q4); Computer Networks and Communications (Q4); Control and Optimization (Q4); Hardware and Architecture (Q4); Industrial and Manufacturing Engineering (Q4); Management of Technology and Innovation (Q4); Software (Q4)";"Business, Management and Accounting; Computer Science; Engineering; Mathematics" +24556;21101204528;"Journal of Dental Materials and Techniques";journal;"22520317, 23224150";"Mashhad University of Medical Sciences";Yes;Yes;0,161;Q4;5;33;97;936;47;95;0,45;28,36;56,70;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2020-2025";"Biomedical Engineering (Q4)";"Engineering" +24557;70192;"Journal of Rural Development";journal;"25824295, 09703357";"National Institute of Rural Development";No;No;0,161;Q4;12;18;99;621;32;99;0,15;34,50;50,00;0;India;Asiatic Region;"National Institute of Rural Development";"1982-1994, 2000-2025";"Development (Q4)";"Social Sciences" +24558;21101146400;"Journal of Stratigraphy and Sedimentology Researches";journal;"20087888, 24238007";"University of Isfahan";Yes;No;0,161;Q4;4;12;52;767;19;52;0,49;63,92;37,50;0;Iran;Middle East;"University of Isfahan";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +24559;23349;"Journal of the Chemical Society of Pakistan";journal;"02535106";"Chemical Society of Pakistan";No;No;0,161;Q4;34;46;182;2203;107;182;0,65;47,89;33,71;0;Pakistan;Asiatic Region;"Chemical Society of Pakistan";"1996-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +24560;21100239236;"Journal of the Chinese Cereals and Oils Association";journal;"10030174";"Editorial Department, Chinese Cereals and Oils Association";No;No;0,161;Q4;15;251;1070;8563;689;1070;0,66;34,12;46,30;0;China;Asiatic Region;"Editorial Department, Chinese Cereals and Oils Association";"2013-2025";"Food Science (Q4)";"Agricultural and Biological Sciences" +24561;21100775055;"Journal of Theoretical and Applied Physics";journal;"22517227, 22517235";"OICC Press";Yes;Yes;0,161;Q4;36;62;201;2201;121;200;0,68;35,50;33,11;0;United Kingdom;Western Europe;"OICC Press";"2012-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +24562;21100927904;"Journal of Tropical Pathology";journal;"19808178, 03010406";"Brazilian Society of Parasitology";Yes;Yes;0,161;Q4;5;20;78;662;24;78;0,33;33,10;56,00;0;Brazil;Latin America;"Brazilian Society of Parasitology";"2019-2025";"Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)";"Immunology and Microbiology; Medicine" +24563;21101037326;"Jurnal Ilmu Ternak dan Veteriner";journal;"08537380, 2252696X";"Indonesian Center for Animal Research and Development";Yes;No;0,161;Q4;7;20;81;726;41;80;0,45;36,30;34,78;0;Indonesia;Asiatic Region;"Indonesian Center for Animal Research and Development";"2019-2025";"Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +24564;21100367702;"Koroze a Ochrana Materialu";journal;"0452599X, 18041213";"Walter de Gruyter GmbH";Yes;No;0,161;Q4;12;8;35;307;29;35;1,20;38,38;44,44;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2012-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +24565;24740;"Latin American Applied Research";journal;"18518796, 03270793";"Plapiqui";Yes;Yes;0,161;Q4;31;52;185;1642;111;185;0,55;31,58;32,46;0;Argentina;Latin America;"Plapiqui";"1996-2026";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Chemical Engineering; Chemistry; Engineering" +24566;21100223804;"Magnetic Resonance in Solids";journal;"20725981";"Kazan Federal University";Yes;Yes;0,161;Q4;11;13;47;358;15;45;0,28;27,54;29,55;0;Russian Federation;Eastern Europe;"Kazan Federal University";"2012-2025";"Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4); Nuclear and High Energy Physics (Q4); Spectroscopy (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +24567;21100204913;"Moscow University Biological Sciences Bulletin";journal;"1934791X, 00963925";"";No;No;0,161;Q4;17;38;139;1118;62;136;0,44;29,42;62,07;0;Russian Federation;Eastern Europe;"";"1980, 1988, 2009, 2011-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +24568;21100942914;"Organizatsionnaya Psikhologiya";journal;"23125942";"National Research University Higher School of Economics (HSE University)";Yes;No;0,161;Q4;8;42;153;2381;76;151;0,36;56,69;60,44;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2019-2025";"Applied Psychology (Q4); Organizational Behavior and Human Resource Management (Q4); Social Psychology (Q4)";"Business, Management and Accounting; Psychology" +24569;21101160716;"Plant Protection Bulletin (Turkey)";journal;"13088122, 04063597";"Plant Protection Central Research Institute";No;No;0,161;Q4;4;29;61;1413;29;61;0,49;48,72;38,67;0;Turkey;Middle East;"Plant Protection Central Research Institute";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Health, Toxicology and Mutagenesis (Q4); Insect Science (Q4); Molecular Biology (Q4); Toxicology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +24570;21101270118;"Plant Protection (Iran)";journal;"25885936, 25885421";"Shahid Chamran University of Ahvaz";Yes;Yes;0,161;Q4;5;17;99;692;27;99;0,27;40,71;45,71;0;Iran;Middle East;"Shahid Chamran University of Ahvaz";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +24571;21101050072;"Proceedings of the Shevchenko Scientific Society. Medical Sciences";journal;"27088642, 27088634";"Danylo Halytskyi Lviv National Medical University";Yes;Yes;0,161;Q4;7;47;123;1171;89;115;0,83;24,91;54,22;0;Ukraine;Eastern Europe;"Danylo Halytskyi Lviv National Medical University";"2019-2025";"Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology" +24572;22063;"Rengong Jingti Xuebao/Journal of Synthetic Crystals";journal;"1000985X";"Chinese Ceramic Society";No;No;0,161;Q4;19;212;699;7324;412;696;0,62;34,55;33,86;0;China;Asiatic Region;"Chinese Ceramic Society";"2003-2025";"Ceramics and Composites (Q4); Condensed Matter Physics (Q4); Materials Chemistry (Q4)";"Materials Science; Physics and Astronomy" +24573;19700187810;"Revista Enfermagem UERJ";journal;"01043552, 27646149";"Centro de Estudos da Faculdade de Enfermagem da UERJ";Yes;No;0,161;Q4;16;0;263;0;70;260;0,17;0,00;0,00;0;Brazil;Latin America;"Centro de Estudos da Faculdade de Enfermagem da UERJ";"2010-2024";"Nursing (miscellaneous) (Q4)";"Nursing" +24574;13061;"Shengxue Xuebao/Acta Acustica";journal;"03710025";"Science Press";No;No;0,161;Q4;23;147;327;4297;181;327;0,56;29,23;33,20;0;China;Asiatic Region;"Science Press";"1993-2026";"Acoustics and Ultrasonics (Q4)";"Physics and Astronomy" +24575;21101210867;"Suma de Negocios";journal;"2215910X, 20275692";"Fundacion Universitaria Konrad Lorenz";Yes;Yes;0,161;Q4;7;17;49;979;46;49;1,21;57,59;28,57;0;Colombia;Latin America;"Fundacion Universitaria Konrad Lorenz";"2020-2026";"Business, Management and Accounting (miscellaneous) (Q4); Marketing (Q4)";"Business, Management and Accounting" +24576;21101107947;"International Conference on Information and Communication Technologies for Ageing Well and e-Health, ICT4AWE - Proceedings";conference and proceedings;"21844984";"Science and Technology Publications, Lda";No;No;0,161;-;6;46;104;1193;69;101;0,51;25,93;42,38;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Computer Networks and Communications; Computer Science Applications; Health Informatics";"Computer Science; Medicine" +24577;21100800099;"International Conference on Virtual Rehabilitation, ICVR";conference and proceedings;"23319569";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,161;-;15;0;66;0;46;64;0,00;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015, 2017, 2019, 2021-2022";"Computer Networks and Communications; Computer Science Applications; Electrical and Electronic Engineering; Tourism, Leisure and Hospitality Management";"Business, Management and Accounting; Computer Science; Engineering" +24578;21101070215;"International Workshop on Visual Analytics";conference and proceedings;"26644487";"Eurographics Association";No;No;0,161;-;12;12;40;376;29;37;0,85;31,33;30,77;0;Germany;Western Europe;"Eurographics Association";"2011-2025";"Computer Graphics and Computer-Aided Design; Computer Vision and Pattern Recognition; Signal Processing; Software";"Computer Science" +24579;21101134664;"Proceedings, International Conference on Electrical, Control and Instrumentation Engineering, ICECIE";conference and proceedings;"28329848, 28329821";"Institute of Electrical and Electronics Engineers";No;No;0,161;-;6;0;130;0;86;125;0,65;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2022-2024";"Control and Optimization; Control and Systems Engineering; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Instrumentation";"Energy; Engineering; Mathematics; Physics and Astronomy" +24580;77392;"Proceedings of the International Offshore and Polar Engineering Conference";conference and proceedings;"15551792, 10986189";"International Society of Offshore and Polar Engineers";No;No;0,161;-;56;652;1809;11250;505;1803;0,33;17,25;25,64;0;United States;Northern America;"International Society of Offshore and Polar Engineers";"1990, 1994-2025";"Energy Engineering and Power Technology; Mechanical Engineering; Ocean Engineering";"Energy; Engineering" +24581;20300195056;"Ancient Near Eastern Studies";journal;"13784641, 17831326";"Peeters Publishers";No;No;0,160;Q1;10;0;54;0;17;53;0,23;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"2011-2024";"Classics (Q1); Literature and Literary Theory (Q1); History (Q2); Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24582;5700164353;"Critique";journal;"17488605, 03017605";"Taylor and Francis Ltd.";No;No;0,160;Q1;13;29;93;1403;29;90;0,32;48,38;13,79;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1973-1980, 1982, 1984, 1986, 1988-1989, 1991, 1993-1999, 2001-2003, 2005-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +24583;21100903448;"NALANS: Journal of Narrative and Language Studies";journal;"21484066";"Karadeniz Technical University";Yes;Yes;0,160;Q1;5;20;85;547;31;82;0,33;27,35;50,00;0;Turkey;Middle East;"Karadeniz Technical University";"2018-2025";"Literature and Literary Theory (Q1); Communication (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24584;21101196739;"Acervo";journal;"22378723, 0102700X";"Arquivo Nacional";Yes;Yes;0,160;Q2;2;67;177;2459;11;161;0,07;36,70;46,67;0;Brazil;Latin America;"Arquivo Nacional";"2019-2025";"History (Q2); Library and Information Sciences (Q3)";"Arts and Humanities; Social Sciences" +24585;21100821156;"Cinta de Moebio";journal;"0717554X";"Universidad de Chile, Facultad de Ciencias Sociales";Yes;Yes;0,160;Q2;9;3;46;30;20;46;0,19;10,00;0,00;0;Chile;Latin America;"Universidad de Chile, Facultad de Ciencias Sociales";"2016-2025";"Philosophy (Q2); Social Sciences (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +24586;21101199377;"Estudios de Historia Novohispana";journal;"24486922, 18709060";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,160;Q2;5;17;39;736;18;39;0,37;43,29;61,54;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1991, 2019-2026";"Arts and Humanities (miscellaneous) (Q2); History (Q2)";"Arts and Humanities" +24587;21100201034;"Etikk i Praksis";journal;"18904009, 18903991";"Akademika Publishing";Yes;No;0,160;Q2;12;13;34;518;17;27;0,52;39,85;22,22;0;Norway;Western Europe;"Akademika Publishing";"2011-2025";"Philosophy (Q2)";"Arts and Humanities" +24588;21101188858;"Farmaceuticos Comunitarios";journal;"18858619, 21739218";"Sociedad Espanola de Farmacia Clinica Familiar y Comunitaria";Yes;Yes;0,160;Q2;5;34;130;585;32;80;0,47;17,21;65,63;0;Spain;Western Europe;"Sociedad Espanola de Farmacia Clinica Familiar y Comunitaria";"2019-2026";"Pharmacology (nursing) (Q2); Pharmacy (Q3); Pharmaceutical Science (Q4); Pharmacology (Q4)";"Health Professions; Nursing; Pharmacology, Toxicology and Pharmaceutics" +24589;23597;"Feminist Studies";journal;"00463663";"Feminist Studies Inc.";No;No;0,160;Q2;53;3;79;185;42;71;0,43;61,67;75,00;0;United States;Northern America;"Feminist Studies Inc.";"1975, 1978-1981, 1983, 1986-1987, 1991, 1994, 1996-2025";"Arts and Humanities (miscellaneous) (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +24590;6500153237;"Fontes Artis Musicae";journal;"00156191";"Music Library Association";No;No;0,160;Q2;7;16;67;686;12;64;0,24;42,88;44,44;0;United States;Northern America;"Music Library Association";"2002-2025";"Music (Q2); Library and Information Sciences (Q3)";"Arts and Humanities; Social Sciences" +24591;21101152762;"Huarte de San Juan. Geografia e Historia";journal;"23410809";"Public University of Navarre";Yes;Yes;0,160;Q2;3;13;37;632;9;35;0,21;48,62;25,00;0;Spain;Western Europe;"Public University of Navarre";"2019-2025";"History (Q2)";"Arts and Humanities" +24592;6000152729;"Leonardo";journal;"0024094X";"MIT Press";No;No;0,160;Q2;33;39;289;695;141;247;0,51;17,82;48,44;0;United States;Northern America;"MIT Press";"2002-2025";"Music (Q2); Visual Arts and Performing Arts (Q2); Computer Science Applications (Q4); Engineering (miscellaneous) (Q4)";"Arts and Humanities; Computer Science; Engineering" +24593;21100423330;"Osmanli Arastirmalari - Journal of Ottoman Studies";journal;"2822292X, 02550636";"Istanbul 29 Mayis University - ISAM, TDV Centre for Islamic Studies";No;No;0,160;Q2;8;16;62;1185;12;61;0,15;74,06;47,06;0;Turkey;Middle East;"Istanbul 29 Mayis University - ISAM, TDV Centre for Islamic Studies";"2015-2025";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +24594;24625;"Utopian Studies";journal;"1045991X, 21549648";"Penn State University Press";No;No;0,160;Q2;12;31;120;1336;33;90;0,18;43,10;38,46;0;United States;Northern America;"Penn State University Press";"1990, 1999, 2001, 2011, 2014-2025";"Philosophy (Q2)";"Arts and Humanities" +24595;21100456703;"Vinculos de Historia";journal;"22546901";"Universidad de CastillaLa Mancha, Departamento de Historia";Yes;Yes;0,160;Q2;8;29;73;1208;17;72;0,16;41,66;17,65;0;Spain;Western Europe;"Universidad de CastillaLa Mancha, Departamento de Historia";"2012-2025";"History (Q2)";"Arts and Humanities" +24596;21101338711;"Al-Bahir Journal for Engineering and Pure Sciences";journal;"23130083, 23125721";"University of AlKafeel";Yes;No;0,160;Q3;5;32;74;1102;56;74;0,77;34,44;36,25;0;Iraq;Middle East;"University of AlKafeel";"2022-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +24597;21100321371;"Anthropologie (Czech Republic)";journal;"03231119";"Anthropos Institute";Yes;No;0,160;Q3;12;15;75;628;17;70;0,17;41,87;47,54;0;Czech Republic;Eastern Europe;"Anthropos Institute";"2014-2025";"Anthropology (Q3)";"Social Sciences" +24598;21100446527;"Childhood in the Past";journal;"20408528, 17585716";"Taylor and Francis Ltd.";No;No;0,160;Q3;12;22;28;1395;20;23;0,56;63,41;61,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Anthropology (Q3); Life-span and Life-course Studies (Q4)";"Social Sciences" +24599;21101149321;"Egyptian Journal of Community Medicine";journal;"20902611, 11101865";"Egyptian Community Medicine Association";Yes;No;0,160;Q3;5;35;101;960;34;96;0,37;27,43;71,74;0;Egypt;Africa/Middle East;"Egyptian Community Medicine Association";"2015-2026";"Pediatrics, Perinatology and Child Health (Q3); Epidemiology (Q4); Health Policy (Q4); Infectious Diseases (Q4); Psychiatry and Mental Health (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +24600;5800163562;"Incontri Linguistici";journal;"03902412, 17241669";"Fabrizio Serra Editore Srl";No;No;0,160;Q3;4;7;27;364;2;27;0,08;52,00;45,45;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2011-2013, 2015-2025";"Linguistics and Language (Q3)";"Social Sciences" +24601;15135;"Information Services and Use";journal;"01675265, 18758789";"SAGE Publications Ltd";No;No;0,160;Q3;28;16;116;368;62;112;0,63;23,00;34,38;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1981-2025";"Library and Information Sciences (Q3); Computer Science Applications (Q4); Information Systems (Q4)";"Computer Science; Social Sciences" +24602;25845;"International Studies";journal;"09730702, 00208817";"Sage Publications India Pvt. Ltd";No;No;0,160;Q3;23;8;66;323;54;64;0,53;40,38;0,00;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1959-1969, 1973-1982, 1985-2025";"Political Science and International Relations (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +24603;21101124730;"Neonatology";journal;"23082402, 26587424";"Geotar Media Publishing Group";No;No;0,160;Q3;7;21;131;435;54;119;0,34;20,71;67,47;0;Russian Federation;Eastern Europe;"Geotar Media Publishing Group";"2019-2025";"Family Practice (Q3); Pediatrics, Perinatology and Child Health (Q3); Education (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +24604;15655;"Paediatrica Indonesiana";journal;"00309311";"Indonesian Society of Pediatrician";Yes;Yes;0,160;Q3;6;70;210;1801;84;208;0,39;25,73;55,56;0;Indonesia;Asiatic Region;"Indonesian Society of Pediatrician";"1964-1991, 2019-2025";"Pediatrics, Perinatology and Child Health (Q3)";"Medicine" +24605;21101043440;"Polish Yearbook of International Law";journal;"0554498X";"Institute of Law Studies of the Polish Academy of Sciences and the Committee on Legal Sciences of the Polish Academy of Sciences";Yes;Yes;0,160;Q3;3;1;36;91;11;35;0,20;91,00;100,00;0;Poland;Eastern Europe;"Institute of Law Studies of the Polish Academy of Sciences and the Committee on Legal Sciences of the Polish Academy of Sciences";"2011, 2020-2023, 2025-2026";"Law (Q3)";"Social Sciences" +24606;21101039229;"Revista de Direito";journal;"25270389, 18068790";"Universidade Federal de Vicosa";Yes;Yes;0,160;Q3;3;45;81;1428;14;80;0,22;31,73;44,44;0;Brazil;Latin America;"Universidade Federal de Vicosa";"2019-2026";"Law (Q3)";"Social Sciences" +24607;27889;"Stanovnistvo";journal;"0038982X, 22173986";"Demographic Research Centre";Yes;Yes;0,160;Q3;10;25;63;880;22;43;0,43;35,20;49,06;0;Serbia;Eastern Europe;"Demographic Research Centre";"1978, 2007-2025";"Social Sciences (miscellaneous) (Q3)";"Social Sciences" +24608;21100855910;"Voprosy Leksikografii";journal;"22274200, 23113758";"Tomsk State University";Yes;No;0,160;Q3;6;15;59;454;13;59;0,25;30,27;84,00;0;Russian Federation;Eastern Europe;"Tomsk State University";"2017-2025";"Linguistics and Language (Q3)";"Social Sciences" +24609;21101108505;"Actualidades en Psicologia";journal;"02586444, 22153535";"Universidad de Costa Rica";Yes;Yes;0,160;Q4;4;5;52;285;26;52;0,47;57,00;42,86;0;Costa Rica;Latin America;"Universidad de Costa Rica";"2019, 2022-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +24610;19882;"Advanced Materials and Processes";trade journal;"08827958";"ASM International";No;No;0,160;Q4;43;67;166;268;27;86;0,21;4,00;18,07;0;United States;Northern America;"ASM International";"1985-2025";"Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +24611;21100199343;"Agricultural Engineering International: CIGR Journal";journal;"16821130";"International Commission of Agricultural and Biosystems Engineering";Yes;No;0,160;Q4;34;87;260;2824;167;258;0,60;32,46;23,35;0;United States;Northern America;"International Commission of Agricultural and Biosystems Engineering";"2011-2025";"Agronomy and Crop Science (Q4); Automotive Engineering (Q4); Energy (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4)";"Agricultural and Biological Sciences; Energy; Engineering" +24612;21101333417;"Applied Chemistry Today";journal;"29812437";"Semnan University";No;No;0,160;Q4;5;39;170;1323;83;170;0,54;33,92;42,57;0;Iran;Middle East;"Semnan University";"2021-2026";"Analytical Chemistry (Q4); Catalysis (Q4); Inorganic Chemistry (Q4); Organic Chemistry (Q4)";"Chemical Engineering; Chemistry" +24613;27572;"Arkhiv Patologii";journal;"23091266, 00041955";"Media Sphera Publishing Group";No;No;0,160;Q4;15;65;196;1521;92;192;0,52;23,40;58,85;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"1950-2025";"Pathology and Forensic Medicine (Q4)";"Medicine" +24614;21101387480;"Azerbaijan Astronomical Journal";journal;"20784163, 20784171";"Azerbaijan National Academy of Sciences";No;No;0,160;Q4;2;7;19;159;5;19;0,45;22,71;38,10;0;Azerbaijan;Eastern Europe;"Azerbaijan National Academy of Sciences";"2022-2025";"Astronomy and Astrophysics (Q4)";"Physics and Astronomy" +24615;21101341413;"Bleeding, Thrombosis and Vascular Biology";journal;"27855309";"Page Press Publications";Yes;No;0,160;Q4;3;25;112;657;28;72;0,29;26,28;59,62;0;Italy;Western Europe;"Page Press Publications";"2022-2025";"Hematology (Q4); Internal Medicine (Q4)";"Medicine" +24616;21101036137;"Bulletin of the Institute of Combinatorics and its Applications";journal;"26890674, 11831278";"Institute of Combinatorics and its Applications";No;No;0,160;Q4;7;15;56;232;16;56;0,32;15,47;14,81;0;United States;Northern America;"Institute of Combinatorics and its Applications";"2019-2026";"Applied Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)";"Mathematics" +24617;144782;"e-Journal of Surface Science and Nanotechnology";journal;"13480391";"The Japan Society of Vacuum and Surface Science";Yes;No;0,160;Q4;27;52;150;1420;80;147;0,65;27,31;21,05;0;Japan;Asiatic Region;"The Japan Society of Vacuum and Surface Science";"2005-2025";"Bioengineering (Q4); Biotechnology (Q4); Condensed Matter Physics (Q4); Mechanics of Materials (Q4); Nanoscience and Nanotechnology (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Materials Science; Physics and Astronomy" +24618;21100824863;"Electronic Communications of the EASST";journal;"18632122";"Universitatsbibliothek TU Berlin";Yes;Yes;0,160;Q4;25;53;18;1443;19;17;4,00;27,23;22,86;0;Germany;Western Europe;"Universitatsbibliothek TU Berlin";"2006-2023, 2025";"Computational Theory and Mathematics (Q4); Software (Q4)";"Computer Science" +24619;21101215125;"Environmental and Occupational Health Practice";journal;"24344931";"Japan Society for Occupational Health";Yes;No;0,160;Q4;7;14;37;368;22;33;0,57;26,29;30,23;0;Japan;Asiatic Region;"Japan Society for Occupational Health";"2020-2025";"Epidemiology (Q4); Health, Toxicology and Mutagenesis (Q4); Human Factors and Ergonomics (Q4); Public Health, Environmental and Occupational Health (Q4)";"Environmental Science; Medicine; Social Sciences" +24620;21101179173;"Environmental Sanitation Engineering";journal;"10058206";"";No;No;0,160;Q4;10;57;336;1303;112;333;0,34;22,86;38,70;0;China;Asiatic Region;"";"2019-2025";"Environmental Engineering (Q4); Management, Monitoring, Policy and Law (Q4); Pollution (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +24621;12847;"Frontiers of Health Services Management";journal;"24752797, 07488157";"Lippincott Williams and Wilkins";No;No;0,160;Q4;26;24;50;0;28;48;0,46;0,00;29,03;0;United States;Northern America;"Lippincott Williams and Wilkins";"1984-2025";"Business, Management and Accounting (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Business, Management and Accounting; Medicine" +24622;21101170037;"Innere Medizin (Germany)";journal;"27317080, 27317099";"Springer Medizin";No;No;0,160;Q4;24;157;500;3625;233;424;0,48;23,09;30,90;1;Germany;Western Europe;"Springer Medizin";"2022-2026";"Internal Medicine (Q4)";"Medicine" +24623;21100266696;"International Journal of Environmental Sustainability";journal;"23251077, 23251085";"Common Ground Research Networks";No;No;0,160;Q4;9;7;29;571;15;29;0,91;81,57;71,43;0;United States;Northern America;"Common Ground Research Networks";"2012-2025";"Environmental Science (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Environmental Science" +24624;21100301444;"International Journal of Fuzzy System Applications";journal;"2156177X, 21561761";"IGI Publishing";No;No;0,160;Q4;25;16;93;624;68;93;0,96;39,00;34,78;0;United States;Northern America;"IGI Publishing";"2011-2013, 2015-2026";"Computer Science (miscellaneous) (Q4)";"Computer Science" +24625;21100198706;"International Journal on Electrical Engineering and Informatics";journal;"20856830, 20875886";"The School of Electrical Engineering and Informatics, Institut Teknologi Bandung";Yes;Yes;0,160;Q4;28;48;130;1438;85;130;0,63;29,96;25,47;0;Indonesia;Asiatic Region;"The School of Electrical Engineering and Informatics, Institut Teknologi Bandung";"2009-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +24626;21101048989;"Journal of Food Science and Technology (Iran)";journal;"20088787";"Tarbiat Modares University";Yes;No;0,160;Q4;9;218;700;8721;357;700;0,59;40,00;44,69;0;Iran;Middle East;"Tarbiat Modares University";"2019-2026";"Food Science (Q4)";"Agricultural and Biological Sciences" +24627;21100268428;"Journal of ICT Research and Applications";journal;"23375787, 23385499";"Institute for Research and Community Services, Institut Teknologi Bandung";Yes;No;0,160;Q4;19;12;53;396;59;53;1,24;33,00;32,14;0;Indonesia;Asiatic Region;"Institute for Research and Community Services, Institut Teknologi Bandung";"2013-2025";"Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences; Engineering" +24628;19900193684;"Journal of Multiscale Modelling";journal;"17569737, 17569745";"World Scientific";No;No;0,160;Q4;13;9;48;267;37;47;1,03;29,67;33,33;0;Singapore;Asiatic Region;"World Scientific";"2009-2010, 2019-2026";"Computational Mechanics (Q4); Computer Science Applications (Q4); Modeling and Simulation (Q4)";"Computer Science; Engineering; Mathematics" +24629;21101049613;"Journal of Occupational Health and Epidemiology";journal;"22520902, 22518096";"Rafsanjan University of Medical Sciences";No;No;0,160;Q4;8;38;107;1370;53;102;0,35;36,05;46,67;0;Iran;Middle East;"Rafsanjan University of Medical Sciences";"2019-2025";"Epidemiology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +24630;21100228743;"Journal of the Bombay Natural History Society";journal;"00066982";"Bombay Natural History Society";No;No;0,160;Q4;9;50;191;951;25;48;0,16;19,02;26,83;0;India;Asiatic Region;"Bombay Natural History Society";"1981, 1984, 1990-1993, 2011-2025";"Ecology (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science" +24631;19700201418;"Journal of the Earth and Space Physics";journal;"25383906, 2538371X";"Institute of Geophysics";Yes;No;0,160;Q4;11;57;168;2031;76;168;0,55;35,63;17,53;0;Iran;Middle East;"Institute of Geophysics";"2009-2025";"Atmospheric Science (Q4); Earth-Surface Processes (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +24632;21101140404;"Journal of Turkish Spinal Surgery";journal;"13010336, 21475903";"Galenos Publishing House";No;No;0,160;Q4;4;34;101;676;31;87;0,37;19,88;18,68;0;Turkey;Middle East;"Galenos Publishing House";"2019-2026";"Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +24633;21100850732;"Khimiya Rastitel'nogo Syr'ya";journal;"10295143, 10295151";"Altai State University";Yes;No;0,160;Q4;11;121;445;3932;181;445;0,33;32,50;61,89;0;Russian Federation;Eastern Europe;"Altai State University";"2017-2025";"Biomaterials (Q4); Organic Chemistry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Chemistry; Materials Science" +24634;145255;"Matematicki Vesnik";journal;"00255165, 24060682";"Drustvo Matematicara Srbije";Yes;Yes;0,160;Q4;23;26;79;458;34;79;0,38;17,62;16,28;0;Serbia;Eastern Europe;"Drustvo Matematicara Srbije";"1999-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +24635;21100851239;"Mechatronic Systems and Control";journal;"25611771, 2561178X";"Acta Press";No;No;0,160;Q4;20;58;100;1324;102;100;0,94;22,83;42,97;0;Canada;Northern America;"Acta Press";"2018-2025";"Computer Science Applications (Q4); Control and Systems Engineering (Q4)";"Computer Science; Engineering" +24636;21101129623;"NED University Journal of Research";journal;"27065758, 2304716X";"NED University Press";No;No;0,160;Q4;4;24;25;747;11;25;0,59;31,13;33,33;0;Pakistan;Asiatic Region;"NED University Press";"2019-2025";"Applied Mathematics (Q4); Artificial Intelligence (Q4); Computer Science Applications (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Computer Science; Engineering; Materials Science; Mathematics" +24637;19700201343;"Nephro-Urology Monthly";journal;"22517014, 22517006";"Brieflands";Yes;No;0,160;Q4;27;25;99;896;35;98;0,36;35,84;31,91;0;Netherlands;Western Europe;"Brieflands";"2011-2026";"Urology (Q4)";"Medicine" +24638;21101072122;"OBM Transplantation";journal;"25775820";"LIDSEN Publishing Inc";No;No;0,160;Q4;6;30;67;1439;28;63;0,46;47,97;41,28;0;United States;Northern America;"LIDSEN Publishing Inc";"2019-2026";"Biochemistry (medical) (Q4); Immunology (Q4); Surgery (Q4); Transplantation (Q4)";"Immunology and Microbiology; Medicine" +24639;21101210854;"Obozrenie Psihiatrii i Medicinskoj Psihologii Imeni V.M. Bekhtereva";journal;"2713055X, 23137053";"FSBI V M Bekhterev National Research Medical Center for Psychiatry and Neurology of of the Russian Federation Ministry of Health";Yes;Yes;0,160;Q4;8;54;130;2158;66;129;0,59;39,96;50,29;0;Russian Federation;Eastern Europe;"FSBI V M Bekhterev National Research Medical Center for Psychiatry and Neurology of of the Russian Federation Ministry of Health";"2020-2025";"Clinical Psychology (Q4); Physiology (medical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +24640;21101185806;"Pedagogie Medicale";journal;"16256484, 16274784";"EDP Sciences";No;No;0,160;Q4;6;9;84;126;24;69;0,23;14,00;54,55;0;France;Western Europe;"EDP Sciences";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +24641;145261;"Petrochemical Equipment";journal;"10007466";"Lanzhou Petroleum Machinery Research Institute";No;No;0,160;Q4;9;65;263;923;39;263;0,14;14,20;30,58;0;China;Asiatic Region;"Lanzhou Petroleum Machinery Research Institute";"1998, 2001-2004, 2006-2025";"Chemical Engineering (miscellaneous) (Q4); Energy Engineering and Power Technology (Q4); Fuel Technology (Q4)";"Chemical Engineering; Energy" +24642;19700180913;"Psicologia USP";journal;"01036564, 16785177";"Instituto de Psicologia da Universidade de Sao Paulo";Yes;Yes;0,160;Q4;14;67;119;2453;26;119;0,18;36,61;66,39;0;Brazil;Latin America;"Instituto de Psicologia da Universidade de Sao Paulo";"2006-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +24643;18741;"Psychodynamic Practice";journal;"14753634, 14753626";"Routledge";No;No;0,160;Q4;23;39;79;1184;43;57;0,46;30,36;37,14;0;United Kingdom;Western Europe;"Routledge";"2002-2026";"Clinical Psychology (Q4)";"Psychology" +24644;19700172222;"Recent Patents on Mechanical Engineering";journal;"1874477X, 22127976";"Bentham Science Publishers";No;No;0,160;Q4;18;61;110;3213;92;107;1,05;52,67;26,29;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2009-2026";"Mechanical Engineering (Q4)";"Engineering" +24645;21101018943;"Reinwardtia";journal;"0034365X, 23378824";"Herbarium Bogoriense, Botany Division, Research Center For Biology";Yes;Yes;0,160;Q4;7;12;31;429;24;31;0,76;35,75;44,44;0;Indonesia;Asiatic Region;"Herbarium Bogoriense, Botany Division, Research Center For Biology";"2019-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +24646;19287;"Revista Ecuatoriana de Neurologia";journal;"10198113";"Fundacion para la difusion neurologica en Ecuador - FUNDINE";Yes;No;0,160;Q4;11;43;171;690;36;122;0,18;16,05;40,43;0;Ecuador;Latin America;"Fundacion para la difusion neurologica en Ecuador - FUNDINE";"1992-2012, 2014-2025";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +24647;21100392550;"Revista Mexicana de Trastornos Alimentarios";journal;"20071523";"Elsevier B.V.";Yes;Yes;0,160;Q4;14;24;51;961;21;51;0,41;40,04;70,59;0;Netherlands;Western Europe;"Elsevier B.V.";"2011, 2014-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +24648;21100197363;"Revista Virtual de Quimica";journal;"19846835";"Sociedade Brasileira de Quimica";Yes;Yes;0,160;Q4;27;85;292;4640;150;274;0,47;54,59;48,99;1;Brazil;Latin America;"Sociedade Brasileira de Quimica";"2011-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +24649;21100244880;"Salute e Societa";journal;"19724845, 17239427";"FrancoAngeli";No;No;0,160;Q4;7;58;117;1756;28;112;0,24;30,28;63,21;0;Italy;Western Europe;"FrancoAngeli";"2013-2025";"Health Policy (Q4); Health (social science) (Q4)";"Medicine; Social Sciences" +24650;21100199736;"Technische Mechanik";journal;"02323869, 21999244";"Magdeburger Verein fur Technische Mechanik e. V.";Yes;Yes;0,160;Q4;15;9;46;505;37;45;0,88;56,11;13,51;0;Germany;Western Europe;"Magdeburger Verein fur Technische Mechanik e. V.";"1981-1982, 1985, 2011-2026";"Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +24651;144879;"Toxicology International";journal;"09716580, 09765131";"Informatics Publishing Limited";Yes;No;0,160;Q4;38;69;165;3349;100;165;0,59;48,54;47,21;0;India;Asiatic Region;"Informatics Publishing Limited";"2005-2025";"Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +24652;27686;"Xi'an Dianzi Keji Daxue Xuebao/Journal of Xidian University";journal;"10012400";"Science Press";No;No;0,160;Q4;20;92;378;2666;242;378;0,76;28,98;32,63;0;China;Asiatic Region;"Science Press";"2001-2025";"Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +24653;14500154707;"Zhongguo gu shang = China journal of orthopaedics and traumatology";journal;"10030034";"Zhongguo gu Shang";No;No;0,160;Q4;13;199;596;0;232;596;0,35;0,00;26,61;0;China;Asiatic Region;"Zhongguo gu Shang";"2008-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +24654;21101136249;"IEEE Conference on Antenna Measurements and Applications, CAMA";conference and proceedings;"26436795, 24741760";"Institute of Electrical and Electronics Engineers";No;No;0,160;-;6;0;588;0;202;582;0,37;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2022-2024";"Computer Networks and Communications; Instrumentation; Radiation";"Computer Science; Physics and Astronomy" +24655;21100197517;"IEEE International Conference on Industrial Engineering and Engineering Management";conference and proceedings;"2157362X, 21573611";"IEEE Computer Society";No;No;0,160;-;33;0;600;0;309;598;0,24;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2011-2012, 2014-2020, 2022, 2024";"Business, Management and Accounting (miscellaneous); Industrial and Manufacturing Engineering; Safety, Risk, Reliability and Quality";"Business, Management and Accounting; Engineering" +24656;21100201976;"Proceedings of International Conference on ASIC";conference and proceedings;"2162755X, 21627541";"IEEE Computer Society";No;No;0,160;-;16;0;244;0;140;242;0,57;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"1992, 2011, 2013, 2017, 2019, 2021, 2023";"Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering" +24657;21100975546;"Proceedings of the International Symposium on Radiative Transfer";conference and proceedings;"26425629";"Begell House Inc.";No;No;0,160;-;5;67;61;1148;12;60;0,20;17,13;16,85;0;United States;Northern America;"Begell House Inc.";"2019, 2023, 2025";"Electrical and Electronic Engineering; Mechanical Engineering; Nuclear Energy and Engineering; Radiation";"Energy; Engineering; Physics and Astronomy" +24658;28320;"Arethusa";journal;"00040975, 10806504";"Johns Hopkins University Press";No;No;0,159;Q1;28;16;50;1024;17;43;0,33;64,00;53,33;0;United States;Northern America;"Johns Hopkins University Press";"1974-1975, 2002-2026";"Classics (Q1); Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +24659;21101120354;"Bibliotekarz Podlaski";journal;"25448900, 16407806";"Ksiaznica Podlaska";No;No;0,159;Q1;2;93;247;2103;19;243;0,09;22,61;63,74;0;Poland;Eastern Europe;"Ksiaznica Podlaska";"2019-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Library and Information Sciences (Q3)";"Arts and Humanities; Social Sciences" +24660;16000154723;"Comparative Literature";journal;"00104124, 19458517";"Duke University Press";No;No;0,159;Q1;21;29;75;1267;55;74;0,76;43,69;64,29;0;United States;Northern America;"Duke University Press";"2002-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +24661;21101264309;"Journal of Studies in the English Language";journal;"2672989X";"Thammasat University";No;No;0,159;Q1;5;26;34;1017;20;31;0,43;39,12;42,42;0;Thailand;Asiatic Region;"Thammasat University";"2020-2025";"Literature and Literary Theory (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24662;16400154707;"Symposium - Quarterly Journal in Modern Literatures";journal;"00397709, 19310676";"Routledge";No;No;0,159;Q1;7;35;56;1033;6;55;0,05;29,51;53,13;0;United States;Northern America;"Routledge";"1946-1954, 1956-2025";"Literature and Literary Theory (Q1)";"Arts and Humanities" +24663;21101039867;"Theoretical Studies in Literature and Art";journal;"02570254";"East China Normal University Press";No;No;0,159;Q1;3;110;373;3923;19;371;0,03;35,66;29,46;0;China;Asiatic Region;"East China Normal University Press";"2012-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Visual Arts and Performing Arts (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +24664;21101042151;"Acta Asiatica Varsoviensia";journal;"24498653, 08606102";"Institute of Mediterranean and Oriental Cultures of the Polish Academy of Sciences";Yes;Yes;0,159;Q2;2;10;27;515;7;27;0,22;51,50;66,67;0;Poland;Eastern Europe;"Institute of Mediterranean and Oriental Cultures of the Polish Academy of Sciences";"2019-2025";"Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); History (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +24665;21100286403;"Acta Historiae Artis Slovenica";journal;"14080419";"ZRC SAZU, Zalozba ZRC";Yes;Yes;0,159;Q2;6;11;38;574;6;37;0,21;52,18;80,00;0;Slovenia;Eastern Europe;"ZRC SAZU, Zalozba ZRC";"2013-2025";"Cultural Studies (Q2); History (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities; Social Sciences" +24666;13351;"American Historical Review";journal;"00028762, 19375239";"Oxford University Press";No;No;0,159;Q2;89;56;544;3155;151;523;0,48;56,34;41,89;0;United States;Northern America;"Oxford University Press";"1934, 1951, 1953, 1955-1956, 1958-1959, 1961, 1963-2025";"History (Q2); Museology (Q2); Archeology (Q3)";"Arts and Humanities; Social Sciences" +24667;21100201764;"Belleten";journal;"00414255";"Turkish Historical Society";Yes;Yes;0,159;Q2;6;22;91;1266;36;91;0,44;57,55;19,23;0;Turkey;Middle East;"Turkish Historical Society";"1971, 1979-1980, 1999, 2002, 2011-2025";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +24668;21100935905;"Boyhood Studies";journal;"23759240, 23759267";"Berghahn Journals";No;No;0,159;Q2;8;13;39;588;11;38;0,37;45,23;57,89;0;United Kingdom;Western Europe;"Berghahn Journals";"2007, 2018-2025";"Cultural Studies (Q2); Gender Studies (Q3); Developmental and Educational Psychology (Q4); Education (Q4); Life-span and Life-course Studies (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +24669;22910;"Dialogue-Canadian Philosophical Review";journal;"00122173, 17590949";"Cambridge University Press";No;No;0,159;Q2;18;36;101;1424;20;99;0,07;39,56;25,58;0;United Kingdom;Western Europe;"Cambridge University Press";"1962-2026";"Philosophy (Q2)";"Arts and Humanities" +24670;21100202942;"E-Journal of Portuguese History";journal;"16456432";"Brill Academic Publishers";Yes;No;0,159;Q2;9;25;47;1287;14;42;0,19;51,48;45,16;0;Portugal;Western Europe;"Brill Academic Publishers";"2011-2025";"History (Q2)";"Arts and Humanities" +24671;21101037300;"Explorations in Media Ecology";journal;"15397785, 20480717";"Intellect Ltd.";No;No;0,159;Q2;6;35;98;827;20;77;0,23;23,63;23,33;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Cultural Studies (Q2); Education (Q4)";"Social Sciences" +24672;21100901130;"International Journal of Humanities and Arts Computing";journal;"17538548, 17551706";"Edinburgh University Press";No;No;0,159;Q2;16;6;49;206;35;40;0,59;34,33;28,57;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996, 1999-2001, 2007-2025";"Arts and Humanities (miscellaneous) (Q2); Computer Science (miscellaneous) (Q4); Human-Computer Interaction (Q4)";"Arts and Humanities; Computer Science" +24673;21101192305;"Journal of Research on History of Medicine";journal;"2251886X";"Shiraz University of Medical Sciences";Yes;Yes;0,159;Q2;2;62;65;1011;16;48;0,25;16,31;38,55;0;Iran;Middle East;"Shiraz University of Medical Sciences";"2023-2025";"History (Q2); History and Philosophy of Science (Q3); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +24674;21100944137;"Plural. History. Culture. Society";journal;"2345184X, 23451262";"Ion Creanga State Pedagogical University";Yes;Yes;0,159;Q2;4;6;42;295;14;42;0,29;49,17;11,11;0;Moldova;Eastern Europe;"Ion Creanga State Pedagogical University";"2018-2025";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24675;16400154769;"Recherches de Theologie et Philosophie Medievales";journal;"13707493, 17831717";"Peeters Publishers";No;No;0,159;Q2;15;7;43;675;20;41;0,19;96,43;57,14;0;Belgium;Western Europe;"Peeters Publishers";"1996-2025";"History (Q2); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +24676;19700180585;"Spiritus";journal;"15353117, 15331709";"Johns Hopkins University Press";No;No;0,159;Q2;9;38;64;740;16;59;0,30;19,47;35,29;0;United States;Northern America;"Johns Hopkins University Press";"2009-2025";"History (Q2); Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +24677;21101053521;"Asparkia";journal;"11328231, 23404795";"Universitat Jaume I";Yes;Yes;0,159;Q3;5;29;114;1370;29;113;0,23;47,24;65,22;0;Spain;Western Europe;"Universitat Jaume I";"2019-2026";"Arts and Humanities (miscellaneous) (Q3); Gender Studies (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +24678;21101147606;"Bratislava Law Review";journal;"25857088, 26446359";"Comenius University in Bratislava Faculty of Law";Yes;Yes;0,159;Q3;4;30;89;1254;38;89;0,46;41,80;53,49;0;Slovakia;Eastern Europe;"Comenius University in Bratislava Faculty of Law";"2019-2025";"Law (Q3)";"Social Sciences" +24679;21101087773;"International Journal of Child Health and Nutrition";journal;"19294247";"Lifescience Global";No;No;0,159;Q3;6;39;68;1446;29;68;0,44;37,08;54,20;0;Canada;Northern America;"Lifescience Global";"2019-2026";"Pediatrics, Perinatology and Child Health (Q3); Maternity and Midwifery (Q4)";"Medicine; Nursing" +24680;21101252471;"Italian Journal of Computational Linguistics";journal;"24994553";"";Yes;Yes;0,159;Q3;6;0;30;0;13;29;0,38;0,00;0,00;0;Italy;Western Europe;"";"2020-2024";"Linguistics and Language (Q3); Artificial Intelligence (Q4); Computational Theory and Mathematics (Q4); Human-Computer Interaction (Q4)";"Computer Science; Social Sciences" +24681;21101192891;"Journal of Research in Dental and Maxillofacial Sciences";journal;"23832754";"Islamic Azad University";Yes;Yes;0,159;Q3;5;40;116;1221;51;116;0,48;30,53;58,39;0;Iran;Middle East;"Islamic Azad University";"2019-2025";"Dental Hygiene (Q3); Dentistry (miscellaneous) (Q3); Oral Surgery (Q3); Orthodontics (Q3)";"Dentistry" +24682;5600152870;"Langage et Societe";journal;"01814095";"Editions de la Maison des Sciences de l'Homme";No;No;0,159;Q3;22;0;65;0;26;61;0,11;0,00;0,00;0;France;Western Europe;"Editions de la Maison des Sciences de l'Homme";"2000-2024";"Linguistics and Language (Q3)";"Social Sciences" +24683;19700200934;"Language and History";journal;"17597536, 17597544";"Maney Publishing";No;No;0,159;Q3;10;23;41;1049;9;41;0,14;45,61;36,00;0;United Kingdom;Western Europe;"Maney Publishing";"2011-2026";"Linguistics and Language (Q3)";"Social Sciences" +24684;5800207559;"Language and Linguistics";journal;"1606822X";"Academia Sinica, Institute of Linguistics";No;No;0,159;Q3;22;26;74;1443;21;72;0,27;55,50;25,00;0;Taiwan;Asiatic Region;"Academia Sinica, Institute of Linguistics";"2008-2026";"Linguistics and Language (Q3)";"Social Sciences" +24685;21101265520;"Logopaedica Lodziensia";journal;"25447238, 26574381";"Lodz University Press";Yes;Yes;0,159;Q3;1;19;26;672;4;25;0,15;35,37;90,00;0;Poland;Eastern Europe;"Lodz University Press";"2019, 2024-2025";"Linguistics and Language (Q3); Developmental and Educational Psychology (Q4); Psychology (miscellaneous) (Q4); Speech and Hearing (Q4)";"Health Professions; Psychology; Social Sciences" +24686;21101237953;"Markets, Globalization and Development Review";journal;"24734055";"University of Rhode Island";Yes;Yes;0,159;Q3;7;14;45;432;33;28;0,86;30,86;55,00;0;United States;Northern America;"University of Rhode Island";"2020-2025";"Arts and Humanities (miscellaneous) (Q3); Marketing (Q4)";"Arts and Humanities; Business, Management and Accounting" +24687;21101172239;"Palabra Clave (La Plata)";journal;"18539912, 16662938";"Universidad Nacional de La Plata";Yes;Yes;0,159;Q3;3;23;67;597;25;58;0,33;25,96;63,33;0;Argentina;Latin America;"Universidad Nacional de La Plata";"2022-2025";"Library and Information Sciences (Q3)";"Social Sciences" +24688;21100942411;"Przeglad Archeologiczny";journal;"00797138, 26574004";"Institute of Archaeology and Ethnology, Polish Academy of Sciences";Yes;Yes;0,159;Q3;4;11;39;855;9;38;0,27;77,73;30,77;0;Poland;Eastern Europe;"Institute of Archaeology and Ethnology, Polish Academy of Sciences";"2019-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24689;21101146538;"Revista Electronica de Linguistica Aplicada";journal;"18859089";"Asociacion Espanola de Linguistica Aplicada";Yes;Yes;0,159;Q3;14;11;34;516;19;34;0,41;46,91;77,78;0;Spain;Western Europe;"Asociacion Espanola de Linguistica Aplicada";"2008-2016, 2018-2025";"Linguistics and Language (Q3); Social Sciences (miscellaneous) (Q3); Education (Q4)";"Social Sciences" +24690;21101152620;"Revista Iberoamericana de la Propiedad Intelectual";journal;"2422569X";"Austral University";Yes;Yes;0,159;Q3;2;26;42;1369;8;37;0,15;52,65;34,78;0;Argentina;Latin America;"Austral University";"2019-2025";"Law (Q3)";"Social Sciences" +24691;21101244203;"Yearbook of International Disaster Law";journal;"25900846, 26662531";"Brill Nijhoff";No;No;0,159;Q3;6;32;60;2504;20;60;0,18;78,25;48,78;0;Netherlands;Western Europe;"Brill Nijhoff";"2018-2019, 2021-2025";"Law (Q3)";"Social Sciences" +24692;16636;"Acta Botanica Malacitana";journal;"02109506, 23405074";"Universidad de Malaga";No;Yes;0,159;Q4;21;26;56;855;12;44;0,28;32,88;19,40;0;Spain;Western Europe;"Universidad de Malaga";"1995-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Ecology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24693;21100235603;"Acta Mathematica Sinica, Chinese Series";journal;"05831431";"Chinese Academy of Sciences";No;No;0,159;Q4;14;69;277;1628;50;277;0,17;23,59;42,04;0;China;Asiatic Region;"Chinese Academy of Sciences";"2012-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +24694;100922;"Asian Textile Journal";trade journal;"09713425";"G P S Kwatra";No;No;0,159;Q4;12;78;178;1294;22;88;0,18;16,59;57,14;0;India;Asiatic Region;"G P S Kwatra";"1992-2013, 2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4)";"Agricultural and Biological Sciences; Business, Management and Accounting; Engineering" +24695;21100200207;"Biologie in Unserer Zeit";journal;"0045205X, 1521415X";"Wiley-VCH Verlag";No;No;0,159;Q4;12;51;165;327;15;106;0,09;6,41;38,10;0;Germany;Western Europe;"Wiley-VCH Verlag";"1971-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +24696;15513;"Biotechnology Law Report";journal;"0730031X, 15578704";"Mary Ann Liebert Inc.";No;No;0,159;Q4;12;39;102;907;36;100;0,41;23,26;27,27;0;United States;Northern America;"Mary Ann Liebert Inc.";"1982-1984, 1990, 1992-1993, 1999-2025";"Biotechnology (Q4); Management, Monitoring, Policy and Law (Q4)";"Biochemistry, Genetics and Molecular Biology; Environmental Science" +24697;19900193564;"Bulgarian Journal of Veterinary Medicine";journal;"13111477, 13133543";"Trakia University";Yes;Yes;0,159;Q4;20;60;184;2297;71;184;0,37;38,28;38,56;0;Bulgaria;Eastern Europe;"Trakia University";"2011-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +24698;21101016799;"Farmakoekonomika";journal;"20704933, 20704909";"IRBIS LLC";Yes;No;0,159;Q4;11;48;132;1288;71;132;0,60;26,83;59,26;0;Russian Federation;Eastern Europe;"IRBIS LLC";"2017-2025";"Health Policy (Q4); Pharmacology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +24699;12968;"Gaofenzi Cailiao Kexue Yu Gongcheng/Polymeric Materials Science and Engineering";journal;"10007555";"Chengdu University of Science and Technology";No;No;0,159;Q4;15;161;796;3800;391;796;0,51;23,60;36,85;0;China;Asiatic Region;"Chengdu University of Science and Technology";"1993-1995, 1998, 2001-2025";"Polymers and Plastics (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering; Materials Science" +24700;19700183035;"Indian Journal of Horticulture";journal;"09740112, 09728538";"Indian Academy of Horticultural Sciences";No;No;0,159;Q4;19;67;191;1449;93;191;0,37;21,63;34,27;0;India;Asiatic Region;"Indian Academy of Horticultural Sciences";"2009-2025";"Horticulture (Q4)";"Agricultural and Biological Sciences" +24701;21101257846;"International Journal of Biology and Chemistry";journal;"2409370X, 22187979";"al-Farabi Kazakh State National University";No;No;0,159;Q4;5;16;82;627;66;82;0,84;39,19;66,67;0;Kazakhstan;Asiatic Region;"al-Farabi Kazakh State National University";"2022-2025";"Aging (Q4); Agricultural and Biological Sciences (miscellaneous) (Q4); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry" +24702;21101021876;"International Journal of Environmental Health Engineering";journal;"22779183";"Wolters Kluwer Medknow Publications";Yes;No;0,159;Q4;19;37;84;1263;60;83;0,65;34,14;29,01;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2012-2025";"Biochemistry (Q4); Health, Toxicology and Mutagenesis (Q4); Pollution (Q4); Public Health, Environmental and Occupational Health (Q4)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine" +24703;20400195008;"IWMI Working Papers";book series;"24781134, 20125763";"International Water Management Institute";No;No;0,159;Q4;12;1;2;45;3;2;0,00;45,00;0,00;1;Sri Lanka;Asiatic Region;"International Water Management Institute";"2011-2023, 2025";"Water Science and Technology (Q4)";"Environmental Science" +24704;21101056811;"Journal of Health Sciences and Surveillance System";journal;"23452218, 23453893";"Shriaz University of Medical Sciences";Yes;Yes;0,159;Q4;9;50;231;1644;85;215;0,29;32,88;49,44;0;Iran;Middle East;"Shriaz University of Medical Sciences";"2019-2026";"Health Policy (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +24705;21101297188;"Journal of Preventive Epidemiology";journal;"24763934";"Society of Diabetic Nephropathy Prevention";Yes;No;0,159;Q4;3;18;55;283;20;51;0,24;15,72;60,27;0;Iran;Middle East;"Society of Diabetic Nephropathy Prevention";"2022-2026";"Epidemiology (Q4); Immunology (Q4)";"Immunology and Microbiology; Medicine" +24706;21000195014;"Journal of South Asian Federation of Obstetrics and Gynaecology";journal;"09751920, 09748938";"Jaypee Brothers Medical Publishers (P) Ltd";Yes;No;0,159;Q4;11;207;588;3768;150;557;0,22;18,20;73,06;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2011-2025";"Obstetrics and Gynecology (Q4)";"Medicine" +24707;21101048343;"Neilreichia";journal;"16815947";"Austrian Association for Floristic Research";No;No;0,159;Q4;4;0;18;0;6;16;0,33;0,00;0,00;0;Austria;Western Europe;"Austrian Association for Floristic Research";"2019-2021, 2023-2024";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24708;21100886219;"Neurological Sciences and Neurophysiology";journal;"2636865X";"Wolters Kluwer Medknow Publications";Yes;Yes;0,159;Q4;12;31;110;904;38;92;0,32;29,16;53,01;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2018-2025";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +24709;17714;"Nippon Suisan Gakkaishi";journal;"00215392, 1349998X";"Nihon Suisan Gakkai";No;No;0,159;Q4;30;80;339;1163;51;221;0,13;14,54;13,44;0;Japan;Asiatic Region;"Nihon Suisan Gakkai";"1932-1944, 1947-2026";"Aquatic Science (Q4)";"Agricultural and Biological Sciences" +24710;21100244002;"Note di Matematica";journal;"11232536, 15900932";"University of Salento";Yes;Yes;0,159;Q4;23;26;42;689;24;42;0,58;26,50;13,16;0;Italy;Western Europe;"University of Salento";"1996-1999, 2001-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +24711;5700161162;"Papeles de Poblacion";journal;"14057425, 24487147";"Universidad Autonoma del Estado de Mexico";Yes;Yes;0,159;Q4;18;20;80;811;26;68;0,30;40,55;50,00;0;Mexico;Latin America;"Universidad Autonoma del Estado de Mexico";"1997-1998, 2002-2003, 2008-2026";"Demography (Q4)";"Social Sciences" +24712;21100277902;"Pediatric emergency medicine practice";journal;"15499650, 15499669";"EB Practice";No;No;0,159;Q4;14;13;43;0;19;42;0,44;0,00;76,00;0;United States;Northern America;"EB Practice";"2013-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +24713;23033;"Proceedings of the Royal Society of Victoria";journal;"00359211";"Royal Society of Victoria";No;No;0,159;Q4;23;0;33;0;17;29;0,48;0,00;0,00;0;Australia;Pacific Region;"Royal Society of Victoria";"1980-2011, 2014-2018, 2020-2024";"Ecology (Q4); Geology (Q4)";"Earth and Planetary Sciences; Environmental Science" +24714;21100979264;"Public Finance Quarterly";journal;"20648278, 0031496X";"Corvinus University of Budapest";No;No;0,159;Q4;9;32;148;966;73;131;0,49;30,19;45,83;0;Hungary;Eastern Europe;"Corvinus University of Budapest";"2019-2025";"Finance (Q4); Public Administration (Q4)";"Economics, Econometrics and Finance; Social Sciences" +24715;21100874702;"Punjab University Journal of Zoology";journal;"23138556, 10161597";"ResearchersLinks Ltd";Yes;No;0,159;Q4;14;25;71;1056;47;71;0,69;42,24;32,65;0;United Kingdom;Western Europe;"ResearchersLinks Ltd";"2010-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +24716;21100200412;"Revista Mexicana de Ingenieria Biomedica";journal;"23959126, 01889532";"Sociedad Mexicana de Ingenieria Biomedica";Yes;No;0,159;Q4;10;10;56;475;43;55;0,68;47,50;32,35;0;Mexico;Latin America;"Sociedad Mexicana de Ingenieria Biomedica";"2011-2026";"Biomedical Engineering (Q4)";"Engineering" +24717;21100848431;"Russian Journal of Forest Science";journal;"00241148";"Izdatel'stvo Nauka";No;No;0,159;Q4;9;56;161;2270;45;161;0,23;40,54;47,02;0;Russian Federation;Eastern Europe;"Izdatel'stvo Nauka";"2017-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24718;21101108187;"Sports Medicine: Research and Practice";journal;"25879014, 22232524";"National Electronic-Information Consortium (NEICON)";Yes;Yes;0,159;Q4;5;18;107;502;38;107;0,43;27,89;45,90;0;Russian Federation;Eastern Europe;"National Electronic-Information Consortium (NEICON)";"2019-2025";"Biochemistry (medical) (Q4); Orthopedics and Sports Medicine (Q4); Rehabilitation (Q4)";"Medicine" +24719;16360;"Tidsskrift for den Norske Legeforening";journal;"00292001, 08077096";"Den norske legeforening";Yes;Yes;0,159;Q4;37;590;1818;3717;271;1785;0,13;6,30;41,26;1;Norway;Western Europe;"Den norske legeforening";"1946-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +24720;12636;"Transactions of the Atomic Energy Society of Japan";journal;"13472879, 21862931";"Atomic Energy Society of Japan";No;No;0,159;Q4;16;11;43;202;9;43;0,13;18,36;2,78;0;Japan;Asiatic Region;"Atomic Energy Society of Japan";"2002-2026";"Nuclear Energy and Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Energy; Engineering" +24721;21100808405;"Tropicultura";journal;"07713312, 22958010";"Agri Overseas";Yes;Yes;0,159;Q4;11;0;24;0;19;24;0,56;0,00;0,00;0;Belgium;Western Europe;"Agri Overseas";"2016-2024";"Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24722;21101360987;"Turkish Journal of Colorectal Disease";journal;"25364901, 25364898";"Galenos Publishing House";Yes;No;0,159;Q4;4;18;92;500;42;84;0,43;27,78;31,71;0;Turkey;Middle East;"Galenos Publishing House";"2021-2025";"Gastroenterology (Q4)";"Medicine" +24723;21101024226;"WikiJournal of Medicine";journal;"20024436";"";Yes;Yes;0,159;Q4;6;0;10;0;5;10;0,67;0,00;0,00;0;United States;Northern America;"";"2019-2024";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +24724;21101147596;"Zeszyty Teoretyczne Rachunkowosci";journal;"2391677X, 16414381";"Scientific Council of the Accountants Association in Poland";Yes;No;0,159;Q4;7;46;128;1783;94;118;0,68;38,76;64,00;0;Poland;Eastern Europe;"Scientific Council of the Accountants Association in Poland";"2022-2025";"Accounting (Q4); Business, Management and Accounting (miscellaneous) (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +24725;23139;"Zuckerindustrie";journal;"03448657";"Verlag Dr. Albert Bartens KG";No;No;0,159;Q4;21;39;139;627;26;113;0,14;16,08;28,72;0;Germany;Western Europe;"Verlag Dr. Albert Bartens KG";"1977-1985, 1987-1989, 1996-2013, 2017-2026";"Food Science (Q4)";"Agricultural and Biological Sciences" +24726;29726;"Conference Digest - IEEE International Semiconductor Laser Conference";conference and proceedings;"08999406";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,159;-;16;0;204;0;74;201;0,56;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1990, 1992, 1994, 1996, 1998, 2000, 2002, 2004, 2006, 2008, 2010, 2012, 2014, 2016, 2018, 2021-2022, 2024";"Atomic and Molecular Physics, and Optics; Electrical and Electronic Engineering";"Engineering; Physics and Astronomy" +24727;21101115665;"Eurasia Proceedings of Science, Technology, Engineering and Mathematics";conference and proceedings;"26023199";"";No;No;0,159;-;9;319;618;6808;371;602;0,58;21,34;34,89;0;Turkey;Middle East;"";"2019-2025";"Engineering (miscellaneous)";"Engineering" +24728;21100856637;"International Conference on Electrical Engineering, Computer Science and Informatics (EECSI)";conference and proceedings;"2407439X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,159;-;18;0;337;0;227;331;0,63;0,00;0,00;0;Indonesia;Asiatic Region;"Institute of Electrical and Electronics Engineers Inc.";"2014-2024";"Computer Science (miscellaneous); Electrical and Electronic Engineering; Information Systems";"Computer Science; Engineering" +24729;21101107940;"International Conference on Evaluation of Novel Approaches to Software Engineering, ENASE - Proceedings";conference and proceedings;"21844895";"Science and Technology Publications, Lda";No;No;0,159;-;9;9;222;161;134;218;0,63;17,89;29,41;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2020-2025";"Computer Science Applications; Software";"Computer Science" +24730;21100879012;"International Conference on Software, Knowledge Information, Industrial Management and Applications, SKIMA";conference and proceedings;"25733214, 2373082X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,159;-;11;0;112;0;74;109;0,80;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017-2018, 2022-2023";"Computer Science Applications; Information Systems; Information Systems and Management; Software";"Computer Science; Decision Sciences" +24731;21101129708;"Optical Characterization of Materials";conference and proceedings;"25107240";"KIT Scientific Publishing";No;No;0,159;-;3;31;18;377;8;16;0,44;12,16;21,57;0;Germany;Western Europe;"KIT Scientific Publishing";"2019, 2021, 2023, 2025";"Materials Science (miscellaneous)";"Materials Science" +24732;27593;"ANQ - Quarterly Journal of Short Articles Notes and Reviews";journal;"19403364, 0895769X";"Routledge";No;No;0,158;Q1;10;172;328;3051;27;74;0,08;17,74;37,80;0;United States;Northern America;"Routledge";"1988-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +24733;21100208058;"Bellaterra Journal of Teaching and Learning Language and Literature";journal;"20136196";"Universitat Autonoma de Barcelona";Yes;Yes;0,158;Q1;11;16;69;491;38;65;0,62;30,69;58,33;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2016-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +24734;21100810884;"Boletin de Literatura Oral";journal;"21730695";"Universidad de Jaen, Departamento de Filologia Espanola";Yes;Yes;0,158;Q1;4;24;62;1179;17;62;0,30;49,13;45,45;0;Spain;Western Europe;"Universidad de Jaen, Departamento de Filologia Espanola";"2016-2025";"Literature and Literary Theory (Q1); History (Q2); Anthropology (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24735;21101042016;"Cartagine. Studi e Ricerche";journal;"25321110, 25323563";"UNICApress - University of Cagliari";Yes;Yes;0,158;Q1;4;12;31;638;6;31;0,21;53,17;14,29;0;Italy;Western Europe;"UNICApress - University of Cagliari";"2019-2026";"Classics (Q1); History (Q2); Archeology (arts and humanities) (Q3)";"Arts and Humanities" +24736;21101079408;"Journal of English Language and Literature";journal;"10162283, 24658545";"English Language and Literature Association of Korea";No;No;0,158;Q1;3;37;113;900;7;113;0,06;24,32;64,00;0;South Korea;Asiatic Region;"English Language and Literature Association of Korea";"2019-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +24737;24268;"Korean Studies";journal;"0145840X, 15291529";"University of Hawaii Press";No;No;0,158;Q1;7;14;48;1436;14;44;0,33;102,57;41,67;0;United States;Northern America;"University of Hawaii Press";"1991-1998, 2017-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Visual Arts and Performing Arts (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Sociology and Political Science (Q3); Geography, Planning and Development (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +24738;21100916899;"Librosdelacorte.es";journal;"19896425";"Instituto Universitario "La Corte en Europa"";Yes;Yes;0,158;Q1;4;32;91;1252;17;91;0,22;39,13;70,37;0;Spain;Western Europe;"Instituto Universitario "La Corte en Europa"";"2019-2025";"Literature and Literary Theory (Q1); History (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +24739;5800207851;"Onoma";journal;"17831644, 0078463X";"Mega Publishing House";No;No;0,158;Q1;6;19;49;541;17;46;0,41;28,47;58,33;0;Belgium;Western Europe;"Mega Publishing House";"2011-2012, 2021-2025";"Literature and Literary Theory (Q1); History (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24740;21101132409;"Zoophilologica";journal;"27192687, 24513849";"Wydawnictwo Uniwersytetu Slaskiego";Yes;Yes;0,158;Q1;3;34;94;1193;19;86;0,20;35,09;66,67;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Slaskiego";"2019-2025";"Classics (Q1); Literature and Literary Theory (Q1); History (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24741;21101313385;"Concept: Philosophy, Religion, Culture";journal;"26190540, 25418831";"Moscow State Institute of International Relations University of the Ministry of Foreign Affairs of the Russian Federation";Yes;No;0,158;Q2;1;35;43;925;5;41;0,12;26,43;58,00;0;Russian Federation;Eastern Europe;"Moscow State Institute of International Relations University of the Ministry of Foreign Affairs of the Russian Federation";"2024-2025";"Philosophy (Q2); Religious Studies (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +24742;21100202737;"Folklore (Estonia)";journal;"14060949, 14060957";"FB and Media Group of Estonian Literary Museum";Yes;No;0,158;Q2;14;27;102;1396;30;99;0,39;51,70;58,82;0;Estonia;Eastern Europe;"FB and Media Group of Estonian Literary Museum";"2009-2025";"Cultural Studies (Q2); Anthropology (Q3)";"Social Sciences" +24743;21101180708;"Journal of Universal History Studies";journal;"26674432";"";Yes;Yes;0,158;Q2;2;12;40;776;16;40;0,26;64,67;45,45;0;Turkey;Middle East;"";"2022-2025";"History (Q2); Archeology (Q3); Aquatic Science (Q4); Political Science and International Relations (Q4)";"Agricultural and Biological Sciences; Arts and Humanities; Social Sciences" +24744;26274;"Metiers de la Petite Enfance";journal;"1258780X";"Elsevier Masson s.r.l.";No;No;0,158;Q2;4;143;411;387;11;345;0,04;2,71;91,18;0;France;Western Europe;"Elsevier Masson s.r.l.";"2002-2026";"Pharmacology (nursing) (Q2); Developmental and Educational Psychology (Q4)";"Nursing; Psychology" +24745;27980;"Modern Judaism";journal;"10863273, 02761114";"Oxford University Press";No;No;0,158;Q2;19;12;42;1019;14;42;0,36;84,92;40,00;0;United Kingdom;Western Europe;"Oxford University Press";"1981-2025";"Cultural Studies (Q2); History (Q2); Religious Studies (Q2); Sociology and Political Science (Q3); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +24746;19900191837;"Parliaments, Estates and Representation";journal;"1947248X, 02606755";"Taylor and Francis Ltd.";No;No;0,158;Q2;11;32;62;1473;18;56;0,34;46,03;43,90;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2026";"History (Q2); Sociology and Political Science (Q3)";"Arts and Humanities; Social Sciences" +24747;21100970263;"Religious Inquiries";journal;"23224894, 25386271";"University of Religions and Denominations (URD)";Yes;Yes;0,158;Q2;3;7;52;307;16;52;0,41;43,86;0,00;0;Iran;Middle East;"University of Religions and Denominations (URD)";"2017-2025";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +24748;21100394703;"RomanoArabica";journal;"15826953";"Bucharest University Press";No;No;0,158;Q2;6;0;26;0;3;26;0,00;0,00;0,00;0;Romania;Eastern Europe;"Bucharest University Press";"2014-2020, 2022, 2024";"Cultural Studies (Q2); Linguistics and Language (Q3)";"Social Sciences" +24749;16000154770;"Tijdschrift voor Sociale en Economische Geschiedenis";journal;"15721701";"Netherlands Institute of International Relations";Yes;Yes;0,158;Q2;16;16;63;996;25;60;0,33;62,25;35,29;0;Netherlands;Western Europe;"Netherlands Institute of International Relations";"2004-2025";"History (Q2); Sociology and Political Science (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +24750;91302;"Vernacular Architecture";journal;"03055477, 17496292";"Maney Publishing";No;No;0,158;Q2;14;11;22;341;8;17;0,25;31,00;26,67;0;United Kingdom;Western Europe;"Maney Publishing";"1971-2025";"History (Q2); Visual Arts and Performing Arts (Q2); Architecture (Q3); Conservation (Q3)";"Arts and Humanities; Engineering" +24751;21101241162;"Vjesnik Dalmatinskih Arhiva";journal;"27570932, 28068459";"State Archives in Sibenik";Yes;Yes;0,158;Q2;2;20;41;619;5;41;0,17;30,95;31,82;0;Croatia;Eastern Europe;"State Archives in Sibenik";"2020-2025";"History (Q2); Arts and Humanities (miscellaneous) (Q3); Library and Information Sciences (Q3)";"Arts and Humanities; Social Sciences" +24752;19700202712;"Acta Academica";journal;"05872405";"";Yes;Yes;0,158;Q3;16;7;65;267;45;55;0,55;38,14;50,00;0;South Africa;Africa;"";"2009-2025";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +24753;21100899952;"Body, Space and Technology";journal;"14709120";"Open Library of Humanities";Yes;Yes;0,158;Q3;7;10;48;234;26;47;0,70;23,40;50,00;0;United Kingdom;Western Europe;"Open Library of Humanities";"2018-2025";"Arts and Humanities (miscellaneous) (Q3); Computer Graphics and Computer-Aided Design (Q4); Human-Computer Interaction (Q4)";"Arts and Humanities; Computer Science" +24754;21235;"Endeavour";journal;"18731929, 01609327";"Elsevier Ltd";No;No;0,158;Q3;33;20;57;876;36;52;0,49;43,80;51,72;0;United Kingdom;Western Europe;"Elsevier Ltd";"1947-1949, 1958-2025";"History and Philosophy of Science (Q3)";"Arts and Humanities" +24755;21101202300;"EQA";journal;"20399898, 22814485";"Department of Agricultural and Food Sciences, University of Bologna";Yes;Yes;0,158;Q3;9;53;96;2455;69;96;0,70;46,32;39,88;0;Italy;Western Europe;"Department of Agricultural and Food Sciences, University of Bologna";"2019-2026";"Multidisciplinary (Q3)";"Multidisciplinary" +24756;21101121920;"Estudios de Derecho";journal;"21456151, 01201867";"Universidad de Antioquia";Yes;Yes;0,158;Q3;4;13;52;576;12;50;0,26;44,31;31,25;0;Colombia;Latin America;"Universidad de Antioquia";"2019-2025";"Law (Q3); Political Science and International Relations (Q4)";"Social Sciences" +24757;21100202734;"Hermes (Denmark)";journal;"19031785, 09041699";"Aarhus University";Yes;Yes;0,158;Q3;17;8;47;398;28;45;0,69;49,75;71,43;0;Denmark;Western Europe;"Aarhus University";"1994-2025";"Communication (Q3); Linguistics and Language (Q3)";"Social Sciences" +24758;21100795043;"Journal of Natural Remedies";journal;"23203358, 09725547";"Informatics Publishing Limited";Yes;No;0,158;Q3;28;240;450;12562;227;449;0,49;52,34;43,52;0;India;Asiatic Region;"Informatics Publishing Limited";"2002-2026";"Pharmacy (Q3); Complementary and Alternative Medicine (Q4); Drug Discovery (Q4); Multidisciplinary (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Health Professions; Medicine; Multidisciplinary; Pharmacology, Toxicology and Pharmaceutics" +24759;21100451196;"Online Journal Modelling the New Europe";journal;"22470514";"Faculty of European Studies";Yes;Yes;0,158;Q3;11;26;65;1134;29;65;0,40;43,62;45,71;0;Romania;Eastern Europe;"Faculty of European Studies";"2015-2025";"Sociology and Political Science (Q3); Political Science and International Relations (Q4)";"Social Sciences" +24760;56171;"Paper Asia";trade journal;"02184540";"IPMEDIA SDN BHD";No;No;0,158;Q3;9;245;391;11816;157;156;0,59;48,23;41,87;0;Malaysia;Asiatic Region;"IPMEDIA SDN BHD";"1997-2014, 2016-2019, 2021-2025";"Media Technology (Q3); Marketing (Q4); Materials Science (miscellaneous) (Q4)";"Business, Management and Accounting; Engineering; Materials Science" +24761;21101033878;"Philologia Hispalensis";journal;"11320265, 22538321";"Universidad de Sevilla";Yes;Yes;0,158;Q3;5;23;59;1049;23;57;0,54;45,61;43,75;0;Spain;Western Europe;"Universidad de Sevilla";"2019-2026";"Linguistics and Language (Q3)";"Social Sciences" +24762;5600155284;"Revista de Antropologia Social";journal;"19882831, 1131558X";"Universidad Complutense Madrid";Yes;Yes;0,158;Q3;13;20;66;990;20;58;0,29;49,50;62,50;0;Spain;Western Europe;"Universidad Complutense Madrid";"2001, 2009-2025";"Anthropology (Q3)";"Social Sciences" +24763;21101267556;"Tanta Dental Journal";journal;"16878574, 25369644";"Wolters Kluwer Health";No;No;0,158;Q3;2;100;119;3895;43;119;0,36;38,95;57,29;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2023-2025";"Dentistry (miscellaneous) (Q3); Oral Surgery (Q3); Orthodontics (Q3); Periodontics (Q3)";"Dentistry" +24764;145513;"Acta Scientiarum - Biological Sciences";journal;"16799283, 1807863X";"Universidade Estadual de Maringa";Yes;Yes;0,158;Q4;29;59;167;2135;72;167;0,42;36,19;55,41;0;Brazil;Latin America;"Universidade Estadual de Maringa";"2003-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +24765;5400152618;"American Journal of Biochemistry and Biotechnology";journal;"15533468, 15586332";"Science Publications";Yes;No;0,158;Q4;39;50;127;1876;60;127;0,36;37,52;48,24;0;United States;Northern America;"Science Publications";"2007-2026";"Biochemistry (Q4); Biotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology" +24766;21100829239;"Applied Econometrics";journal;"19937601, 24106445";"Russian Presidential Academy of National Economy and Public Administration";No;No;0,158;Q4;15;24;78;1189;32;77;0,40;49,54;61,22;0;Russian Federation;Eastern Europe;"Russian Presidential Academy of National Economy and Public Administration";"2006-2025";"Economics and Econometrics (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +24767;21101211211;"Asian Journal of Agriculture";journal;"25804537";"Smujo International";No;No;0,158;Q4;7;89;48;4342;52;48;1,03;48,79;44,13;0;Indonesia;Asiatic Region;"Smujo International";"2020-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Food Science (Q4)";"Agricultural and Biological Sciences" +24768;21100922607;"Audiology and Speech Research";journal;"26355019, 26355027";"Korean Academy of Audiology";Yes;No;0,158;Q4;6;21;82;764;21;82;0,31;36,38;71,43;0;South Korea;Asiatic Region;"Korean Academy of Audiology";"2019-2025";"Health (social science) (Q4); Otorhinolaryngology (Q4); Speech and Hearing (Q4)";"Health Professions; Medicine; Social Sciences" +24769;21100842827;"Bank i Kredyt";journal;"01375520";"Narodowy Bank Polski";No;No;0,158;Q4;6;29;85;1603;31;85;0,47;55,28;23,81;0;Poland;Eastern Europe;"Narodowy Bank Polski";"2017-2025";"Finance (Q4)";"Economics, Econometrics and Finance" +24770;11300153743;"Biochemistry (Moscow) Supplement Series B: Biomedical Chemistry";journal;"19907516, 19907508";"Pleiades Publishing";No;No;0,158;Q4;18;39;107;1570;38;107;0,36;40,26;55,17;0;United States;Northern America;"Pleiades Publishing";"2007-2025";"Biochemistry (Q4); Clinical Biochemistry (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology" +24771;28678;"British Columbia Medical Journal";journal;"00070556";"British Columbia Medical Association";No;No;0,158;Q4;21;119;338;1142;62;97;0,19;9,60;62,77;0;Canada;Northern America;"British Columbia Medical Association";"1973-1975, 2004-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +24772;21100204921;"Bulletin of Pharmaceutical Sciences. Assiut";journal;"11100052";"Assiut University";Yes;Yes;0,158;Q4;11;105;291;5265;175;291;0,59;50,14;57,91;0;Egypt;Africa/Middle East;"Assiut University";"1978-2025";"Analytical Chemistry (Q4); Biochemistry (Q4); Immunology (Q4); Microbiology (Q4); Molecular Biology (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +24773;21101242005;"Chinese Journal of Burns and Wounds";journal;"20971109";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,158;Q4;13;120;310;5685;157;310;0,51;47,38;34,91;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2023-2026";"Advanced and Specialized Nursing (Q4); Critical Care and Intensive Care Medicine (Q4); Dermatology (Q4)";"Medicine; Nursing" +24774;21101209901;"Chinese Journal of Primary Medicine and Pharmacy";journal;"10086706";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,158;Q4;4;277;1150;5784;202;1147;0,24;20,88;53,25;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +24775;21101121578;"Commagene Journal of Biology";journal;"2602456X";"";No;No;0,158;Q4;6;27;79;859;44;74;0,49;31,81;42,42;0;Turkey;Middle East;"";"2019-2026";"Biochemistry (Q4); Ecology (Q4); Microbiology (Q4); Molecular Biology (Q4); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Immunology and Microbiology" +24776;144954;"Computational Mathematics and Modeling";journal;"1046283X, 1573837X";"Springer";No;No;0,158;Q4;19;43;66;1359;32;66;0,11;31,60;30,59;0;United States;Northern America;"Springer";"1990-2002, 2005-2026";"Computational Mathematics (Q4)";"Mathematics" +24777;14000156183;"Croatian Journal of Education";journal;"18485197, 18485189";"Faculty of Teacher Education, University of Zagreb";Yes;No;0,158;Q4;17;33;131;1639;52;120;0,37;49,67;55,84;0;Croatia;Eastern Europe;"Faculty of Teacher Education, University of Zagreb";"2011-2025";"Education (Q4)";"Social Sciences" +24778;6700153287;"Economics Bulletin";journal;"15452921";"Economics Bulletin";Yes;No;0,158;Q4;43;179;472;4387;182;472;0,34;24,51;25,30;0;United States;Northern America;"Economics Bulletin";"2001-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +24779;21101089397;"Ecosystem Transformation";journal;"26190931, 2619094X";"Cherepovets State University";Yes;Yes;0,158;Q4;4;50;107;2349;33;106;0,33;46,98;61,70;0;Russian Federation;Eastern Europe;"Cherepovets State University";"2019-2025";"Ecology (Q4); Environmental Science (miscellaneous) (Q4); Pollution (Q4); Water Science and Technology (Q4)";"Environmental Science" +24780;145694;"Ethical Human Psychology and Psychiatry";journal;"15594343, 19389000";"Springer Publishing Company";No;No;0,158;Q4;18;13;35;627;23;31;0,76;48,23;51,52;0;United States;Northern America;"Springer Publishing Company";"2004-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +24781;4700152807;"Foundations and Trends in Electronic Design Automation";journal;"15513947, 15513939";"Now Publishers Inc";No;No;0,158;Q4;19;3;2;143;3;2;1,50;47,67;41,67;0;United States;Northern America;"Now Publishers Inc";"2006-2020, 2023-2025";"Computer Graphics and Computer-Aided Design (Q4); Hardware and Architecture (Q4)";"Computer Science" +24782;21101097255;"Frontier Materials and Technologies";journal;"27824039, 27826074";"Togliatti State University";Yes;Yes;0,158;Q4;5;35;128;817;62;128;0,42;23,34;30,77;0;Russian Federation;Eastern Europe;"Togliatti State University";"2022-2025";"Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +24783;28609;"Geodezia es Kartografia";journal;"00167118";"Hungarian Society of Surveying, Mapping and Remote sensing";No;No;0,158;Q4;8;20;70;269;4;58;0,07;13,45;20,00;0;Hungary;Eastern Europe;"Hungarian Society of Surveying, Mapping and Remote sensing";"1979-1981, 1988-1989, 1991-1992, 1995-2025";"Computers in Earth Sciences (Q4); Earth-Surface Processes (Q4); Geography, Planning and Development (Q4); Geophysics (Q4)";"Earth and Planetary Sciences; Social Sciences" +24784;6200180183;"Guti Lixue Xuebao/Acta Mechanica Solida Sinica";journal;"02547805";"Huazhong University of Science and Technology";No;No;0,158;Q4;18;32;175;953;87;175;0,56;29,78;22,52;0;China;Asiatic Region;"Huazhong University of Science and Technology";"2007-2025";"Mechanics of Materials (Q4)";"Engineering" +24785;74433;"Hornero";journal;"18504884, 00733407";"Aves Argentinas - Asociacion Ornitologica del Plata";Yes;Yes;0,158;Q4;23;20;65;768;29;64;0,31;38,40;28,36;0;Argentina;Latin America;"Aves Argentinas - Asociacion Ornitologica del Plata";"1995-1998, 2000-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +24786;21101192889;"Indian Journal of Animal Reproduction";journal;"09702997, 25837583";"ACS Publisher";No;No;0,158;Q4;4;89;143;2012;42;143;0,28;22,61;24,50;0;India;Asiatic Region;"ACS Publisher";"2019-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +24787;4700152482;"International Journal of Dairy Science";journal;"18119743, 18119751";"Asian Network for Scientific Information";No;No;0,158;Q4;24;4;16;188;10;16;0,63;47,00;50,00;0;Pakistan;Asiatic Region;"Asian Network for Scientific Information";"2006-2026";"Animal Science and Zoology (Q4); Food Animals (Q4)";"Agricultural and Biological Sciences; Veterinary" +24788;23268;"International Journal of Global Environmental Issues";journal;"14666650, 17415136";"Inderscience Publishers";No;No;0,158;Q4;31;11;65;610;47;63;0,66;55,45;35,29;0;United Kingdom;Western Europe;"Inderscience Publishers";"2001-2025";"Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +24789;54666;"International Journal of Networking and Virtual Organisations";journal;"14709503, 17415225";"Inderscience Publishers";No;No;0,158;Q4;24;31;123;831;97;122;0,81;26,81;53,06;0;United Kingdom;Western Europe;"Inderscience Publishers";"2002-2025";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems and Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences" +24790;12400154724;"IRBM News";journal;"19597568";"Elsevier Masson s.r.l.";No;No;0,158;Q4;6;22;51;123;7;51;0,06;5,59;42,37;0;France;Western Europe;"Elsevier Masson s.r.l.";"2007-2026";"Biomedical Engineering (Q4); Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering" +24791;19700173242;"Journal of Ocean Technology";journal;"17183200";"Fisheries and Marine Institute of Memorial University of Newfoundland";No;No;0,158;Q4;15;63;158;250;31;58;0,18;3,97;32,88;0;Canada;Northern America;"Fisheries and Marine Institute of Memorial University of Newfoundland";"2009-2025";"Ocean Engineering (Q4)";"Engineering" +24792;21100201917;"Journal of University of Science and Technology of China";journal;"02532778";"China University of Science and Technology";No;No;0,158;Q4;14;48;231;1910;124;224;0,48;39,79;32,14;0;China;Asiatic Region;"China University of Science and Technology";"2010-2025";"Mechanical Engineering (Q4)";"Engineering" +24793;21101196038;"Jurnal Biometrika dan Kependudukan";journal;"25408828, 2302707X";"Airlangga University Faculty of Public Health";Yes;No;0,158;Q4;5;22;71;810;36;71;0,40;36,82;61,22;0;Indonesia;Asiatic Region;"Airlangga University Faculty of Public Health";"2019-2025";"Demography (Q4); Health Informatics (Q4); Reproductive Medicine (Q4); Statistics and Probability (Q4)";"Mathematics; Medicine; Social Sciences" +24794;12227;"Lasers in Engineering";journal;"1029029X, 08981507";"Old City Publishing";No;No;0,158;Q4;20;42;161;1322;90;159;0,52;31,48;24,58;0;United States;Northern America;"Old City Publishing";"1996-2025";"Atomic and Molecular Physics, and Optics (Q4); Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4)";"Engineering; Physics and Astronomy" +24795;21101149236;"MEJ Mansoura Engineering Journal";journal;"11100923, 27354202";"Mansoura University, Faculty of Engineering";Yes;No;0,158;Q4;7;108;257;4503;166;257;0,75;41,69;33,21;0;Egypt;Africa/Middle East;"Mansoura University, Faculty of Engineering";"1967, 1977-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +24796;7100153149;"Model Assisted Statistics and Applications";journal;"15741699";"SAGE Publications Ltd";No;No;0,158;Q4;17;21;94;662;42;89;0,50;31,52;26,47;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005, 2007-2026";"Applied Mathematics (Q4); Modeling and Simulation (Q4); Statistics and Probability (Q4)";"Mathematics" +24797;19900191752;"Motricidade";journal;"21822972, 1646107X";"Universidade da Beira Interior";Yes;No;0,158;Q4;18;50;168;1789;66;164;0,30;35,78;28,57;0;Portugal;Western Europe;"Universidade da Beira Interior";"2011-2025";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Medicine" +24798;21100873926;"Natural History Bulletin of the Siam Society";journal;"00809462";"Siam Society under Royal Patronage";No;No;0,158;Q4;10;0;16;0;4;10;0,31;0,00;0,00;0;Thailand;Asiatic Region;"Siam Society under Royal Patronage";"2008, 2011-2020, 2022-2024";"Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +24799;12900154728;"New Educational Review";journal;"17326729";"Adam Marszalek Publishing House";No;No;0,158;Q4;18;81;207;2020;97;201;0,35;24,94;60,00;0;Poland;Eastern Europe;"Adam Marszalek Publishing House";"2008-2025";"Education (Q4)";"Social Sciences" +24800;3200147836;"Norsk Epidemiologi";journal;"08032491";"Norwegian Epidemiological Society";Yes;Yes;0,158;Q4;25;0;37;0;15;33;0,13;0,00;0,00;0;Norway;Western Europe;"Norwegian Epidemiological Society";"2005-2017, 2019, 2021-2023";"Epidemiology (Q4)";"Medicine" +24801;21101347031;"Numerical Methods in Civil Engineering";journal;"27833941, 23454296";"KN Toosi University of Technology";Yes;No;0,158;Q4;6;32;96;1256;52;96;0,48;39,25;12,50;0;Iran;Middle East;"KN Toosi University of Technology";"2021-2025";"Artificial Intelligence (Q4); Building and Construction (Q4); Civil and Structural Engineering (Q4); Control and Optimization (Q4)";"Computer Science; Engineering; Mathematics" +24802;21100824612;"Oftalmologiya";journal;"18165095, 25000845";"Ophthalmology Publishing Group";Yes;Yes;0,158;Q4;11;94;345;2482;117;345;0,27;26,40;60,82;0;Russian Federation;Eastern Europe;"Ophthalmology Publishing Group";"2017-2025";"Ophthalmology (Q4)";"Medicine" +24803;21100255552;"Organizational Cultures";journal;"23278013, 2327932X";"Common Ground Research Networks";No;No;0,158;Q4;6;16;31;652;22;31;0,59;40,75;45,16;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +24804;4700152417;"Ornitologia Neotropical";journal;"10754377";"Neotropical Ornithological Society";No;No;0,158;Q4;27;7;78;324;32;77;0,34;46,29;29,17;0;United States;Northern America;"Neotropical Ornithological Society";"2005-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +24805;21101291269;"Palawan Scientist";journal;"24675903, 16564707";"Western Philippines University";No;No;0,158;Q4;4;25;53;1041;29;53;0,50;41,64;43,48;0;Philippines;Asiatic Region;"Western Philippines University";"2021-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +24806;21101285753;"Proceedings of the International Middle East Power System Conference, MEPCON";journal;"29945747, 25733044";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,158;Q4;5;0;157;0;110;156;0,70;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Control and Optimization (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Mechanical Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Computer Science; Energy; Engineering; Mathematics" +24807;700147004;"Psicoterapia e Scienze Umane";journal;"03942864, 19725043";"FrancoAngeli";No;No;0,158;Q4;12;38;124;1523;5;115;0,05;40,08;18,75;0;Italy;Western Europe;"FrancoAngeli";"2005-2025";"Clinical Psychology (Q4)";"Psychology" +24808;21101204644;"Rehabilitation and Recreation";journal;"27868354, 27868346";"Publishing House Helvetica";No;No;0,158;Q4;6;94;294;2154;101;294;0,39;22,91;53,68;0;Ukraine;Eastern Europe;"Publishing House Helvetica";"2022-2025";"Education (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine; Social Sciences" +24809;20000195063;"Revista em Agronegocio e Meio Ambiente";journal;"21769168, 19819951";"University Center of Maringa";Yes;Yes;0,158;Q4;10;18;284;557;82;283;0,27;30,94;37,93;0;Brazil;Latin America;"University Center of Maringa";"2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24810;21101174377;"Rivista Italiana di Ornitologia";journal;"23850833, 00356875";"Page Press Publications";Yes;Yes;0,158;Q4;4;30;55;879;17;55;0,28;29,30;24,72;0;Italy;Western Europe;"Page Press Publications";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24811;18170;"Rubber World";journal;"00359572";"Lippincott and Peto Inc.";No;No;0,158;Q4;16;55;258;402;7;166;0,02;7,31;12,82;0;United States;Northern America;"Lippincott and Peto Inc.";"1969-2026";"Materials Chemistry (Q4); Polymers and Plastics (Q4)";"Materials Science" +24812;21101245328;"Sichuan Jingshen Weisheng";journal;"10073256";"";Yes;No;0,158;Q4;5;72;300;2277;92;300;0,32;31,63;42,52;0;China;Asiatic Region;"";"2020-2025";"Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4)";"Medicine; Psychology" +24813;21100937108;"Smart and Sustainable Manufacturing Systems";journal;"25206478, 25723928";"ASTM International";No;No;0,158;Q4;15;7;31;395;35;31;1,38;56,43;10,00;0;United States;Northern America;"ASTM International";"2017-2026";"Computer Science Applications (Q4); Control and Systems Engineering (Q4); Industrial and Manufacturing Engineering (Q4)";"Computer Science; Engineering" +24814;20364;"Sports Orthopaedics and Traumatology";journal;"0949328X, 18764339";"Elsevier GmbH";No;No;0,158;Q4;16;56;138;1130;32;100;0,29;20,18;24,50;0;Germany;Western Europe;"Elsevier GmbH";"2001-2025";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Medicine" +24815;21101245219;"Statistics and Applications";journal;"24547395";"Society of Statistics, Computer and Applications";No;No;0,158;Q4;6;42;145;1012;49;142;0,33;24,10;30,86;0;India;Asiatic Region;"Society of Statistics, Computer and Applications";"2020-2025";"Statistics and Probability (Q4)";"Mathematics" +24816;21101042007;"Studia Universitatis Babes-Bolyai Biologia";journal;"12218103, 20659512";"Babes-Bolyai University";Yes;Yes;0,158;Q4;4;25;45;1115;28;45;0,71;44,60;46,25;0;Romania;Eastern Europe;"Babes-Bolyai University";"2019-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Cell Biology (Q4); Ecology (Q4); Environmental Science (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Environmental Science" +24817;21101133428;"Surgery Open Digestive Advance";journal;"26670089";"Elsevier Masson s.r.l.";Yes;No;0,158;Q4;4;23;114;363;40;105;0,38;15,78;21,67;0;France;Western Europe;"Elsevier Masson s.r.l.";"2021-2026";"Education (Q4); Surgery (Q4)";"Medicine; Social Sciences" +24818;5700191202;"WIT Transactions on Ecology and the Environment";journal;"1746448X, 17433541";"WITPress";No;No;0,158;Q4;33;68;278;1948;136;271;0,34;28,65;49,75;0;United Kingdom;Western Europe;"WITPress";"2006-2015, 2017-2025";"Environmental Science (miscellaneous) (Q4)";"Environmental Science" +24819;7200153137;"Zbornik Instituta za Pedagoska Istrazivanja";journal;"05796431";"Institute for Educational Research";Yes;Yes;0,158;Q4;9;13;49;728;19;49;0,30;56,00;85,71;0;Serbia;Eastern Europe;"Institute for Educational Research";"2007-2025";"Education (Q4)";"Social Sciences" +24820;21100232809;"Asia Communications and Photonics Conference, ACP";conference and proceedings;"2162108X";"Optica Publishing Group (formerly OSA)";No;No;0,158;-;16;0;1200;0;446;1197;0,30;0,00;0,00;0;United States;Northern America;"Optica Publishing Group (formerly OSA)";"2012-2014, 2016-2019, 2021-2022, 2024";"Computer Networks and Communications; Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering" +24821;21100228069;"IEEE Symposium on Wireless Technology and Applications, ISWTA";conference and proceedings;"23247843, 23247851";"IEEE Computer Society";No;No;0,158;-;17;0;112;0;88;109;0,80;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012-2014, 2021-2024";"Computer Networks and Communications; Computer Science Applications; Signal Processing";"Computer Science" +24822;21101260456;"International Symposium on Technology and Society, Proceedings";conference and proceedings;"21583412, 21583404";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,158;-;3;55;43;1747;46;42;1,07;31,76;40,35;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1998, 2024-2025";"Engineering (miscellaneous); Social Sciences (miscellaneous)";"Engineering; Social Sciences" +24823;15535;"LEOS Summer Topical Meeting";conference and proceedings;"23768614, 10994742";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,158;-;17;76;156;598;61;152;0,39;7,87;18,73;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1991-1992, 1994-2009, 2021, 2023-2025";"Atomic and Molecular Physics, and Optics; Electrical and Electronic Engineering";"Engineering; Physics and Astronomy" +24824;21100239657;"Proceedings - International Symposium on Parallel Architectures, Algorithms and Programming, PAAP";conference and proceedings;"21683042, 21683034";"IEEE Computer Society";No;No;0,158;-;13;0;60;0;37;58;0,42;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012, 2014, 2016, 2018, 2021-2023";"Computational Theory and Mathematics; Hardware and Architecture";"Computer Science" +24825;21100783589;"Proceedings of the European Conference on Innovation and Entrepreneurship, ECIE";conference and proceedings;"20491050";"Academic Conferences and Publishing International Limited";No;No;0,158;-;12;109;353;3342;236;345;0,72;30,66;46,98;0;United Kingdom;Western Europe;"Academic Conferences and Publishing International Limited";"2015, 2017-2025";"Business and International Management; Electrical and Electronic Engineering; Management of Technology and Innovation; Mechanical Engineering; Strategy and Management";"Business, Management and Accounting; Engineering" +24826;21100983207;"Proceedings of the IEEE International Conference Image Information Processing";conference and proceedings;"2640074X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,158;-;20;0;179;0;237;166;1,32;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2019, 2021, 2023";"Computer Graphics and Computer-Aided Design; Computer Vision and Pattern Recognition; Health Informatics; Radiology, Nuclear Medicine and Imaging; Signal Processing";"Computer Science; Medicine" +24827;21100274216;"Proceedings of the IEEE International Conference on Software Engineering and Service Sciences, ICSESS";conference and proceedings;"23270586, 23270594";"IEEE Computer Society";No;No;0,158;-;34;0;169;0;105;163;0,59;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2013-2024";"Software";"Computer Science" +24828;21101172912;"Proceedings of the International Conference on Virtual Learning";conference and proceedings;"18448933, 29719291";"National Institute for R and D in Informatics";No;No;0,158;-;6;38;84;754;44;81;0,53;19,84;42,19;0;Romania;Eastern Europe;"National Institute for R and D in Informatics";"2019-2025";"Artificial Intelligence; Computer Science Applications; Computer Vision and Pattern Recognition; Human-Computer Interaction";"Computer Science" +24829;7200153164;"Antik Tanulmanyok";journal;"0003567X, 15882748";"Akademiai Kiado";No;No;0,157;Q1;4;15;39;417;2;39;0,11;27,80;30,77;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2025";"Classics (Q1); Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Visual Arts and Performing Arts (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24830;21506;"Eighteenth-Century Life";journal;"10863192, 00982601";"Duke University Press";No;No;0,157;Q1;17;27;72;743;9;68;0,09;27,52;50,00;0;United States;Northern America;"Duke University Press";"1977, 1980, 1982, 1984-1985, 1987, 2001-2026";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities; Social Sciences" +24831;23018;"Logos (The Netherlands)";journal;"18784712, 09579656";"Brill Academic Publishers";No;No;0,157;Q1;9;14;66;461;15;55;0,22;32,93;64,29;0;Netherlands;Western Europe;"Brill Academic Publishers";"1994, 1996-2025";"Literature and Literary Theory (Q1); Communication (Q3); Library and Information Sciences (Q3); Media Technology (Q3); Computer Science Applications (Q4); Education (Q4)";"Arts and Humanities; Computer Science; Engineering; Social Sciences" +24832;16800154732;"Acta Musicologica";journal;"00016241";"International Musicological Society";No;No;0,157;Q2;10;7;33;322;11;26;0,38;46,00;37,50;0;Switzerland;Western Europe;"International Musicological Society";"2002-2025";"Music (Q2)";"Arts and Humanities" +24833;21100900373;"Asian International Studies Review";journal;"12268240";"Brill Academic Publishers";No;No;0,157;Q2;7;9;29;666;18;29;0,53;74,00;54,55;0;Netherlands;Western Europe;"Brill Academic Publishers";"2018-2025";"Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3); Business and International Management (Q4); Industrial Relations (Q4)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +24834;19700201036;"Craft Research";journal;"20404697, 20404689";"Intellect Ltd.";No;No;0,157;Q2;12;9;54;159;25;46;0,23;17,67;57,14;0;United Kingdom;Western Europe;"Intellect Ltd.";"2014-2026";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +24835;21100900553;"Cultural Studies and Transdisciplinarity in Education";book series;"23457708, 23457716";"Springer";No;No;0,157;Q2;8;0;33;0;12;1;0,11;0,00;0,00;0;Singapore;Asiatic Region;"Springer";"2014-2023";"Cultural Studies (Q2); Education (Q4); Sociology and Political Science (Q4)";"Social Sciences" +24836;21101045759;"Encuentros (Maracaibo)";journal;"26108046, 23436131";"Universidad Nacional Experimental Rafael Maria Baralt";Yes;Yes;0,157;Q2;6;107;256;3372;100;246;0,46;31,51;45,27;0;Venezuela;Latin America;"Universidad Nacional Experimental Rafael Maria Baralt";"2019-2025";"History (Q2); Philosophy (Q2); Anthropology (Q3); Sociology and Political Science (Q3); Education (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +24837;62581;"Istoricheski Pregled";journal;"03239748, 28153391";"Institute for Historical Studies Bulgarian Academy of Sciences";No;No;0,157;Q2;2;35;72;1145;5;72;0,08;32,71;55,88;0;Bulgaria;Eastern Europe;"Institute for Historical Studies Bulgarian Academy of Sciences";"1976, 1978, 1986, 2019-2025";"History (Q2)";"Arts and Humanities" +24838;15709;"Journal of Canadian Studies";journal;"19110251, 00219495";"University of Toronto Press";No;No;0,157;Q2;22;19;64;1223;40;63;0,37;64,37;39,13;0;Canada;Northern America;"University of Toronto Press";"1968, 1979, 1981-1984, 1986, 1994, 2002-2025";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +24839;15976;"Mariner's Mirror";journal;"00253359, 2049680X";"Taylor and Francis Ltd.";No;No;0,157;Q2;16;37;97;768;26;61;0,25;20,76;27,27;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1911-1914, 1919-2025";"History (Q2); Oceanography (Q4)";"Arts and Humanities; Earth and Planetary Sciences" +24840;16800154750;"Middle East Journal of Culture and Communication";journal;"18739857, 18739865";"Brill Academic Publishers";No;No;0,157;Q2;18;10;73;422;56;70;0,81;42,20;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2025";"Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Communication (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +24841;28510;"Numen";journal;"00295973, 15685276";"Brill Academic Publishers";No;No;0,157;Q2;30;23;61;1206;25;60;0,50;52,43;37,50;0;Netherlands;Western Europe;"Brill Academic Publishers";"1954-2026";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +24842;21100241784;"Oceanide";journal;"19896328";"Sociedad Espanola de Estudios Literarios de Cultura Popular";Yes;Yes;0,157;Q2;4;11;21;482;11;21;0,29;43,82;78,57;0;Spain;Western Europe;"Sociedad Espanola de Estudios Literarios de Cultura Popular";"2013-2025";"Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +24843;21100888252;"Perspektivy Nauki i Obrazovania";journal;"23072334";"LLC Ecological Help";No;No;0,157;Q2;12;136;789;5575;310;789;0,43;40,99;71,57;0;Russian Federation;Eastern Europe;"LLC Ecological Help";"2018-2025";"Philosophy (Q2); Developmental and Educational Psychology (Q4); Education (Q4)";"Arts and Humanities; Psychology; Social Sciences" +24844;21100446532;"Studia Mythologica Slavica";journal;"1581128X, 14086271";"Zalozba ZRC";Yes;Yes;0,157;Q2;4;9;28;449;7;28;0,29;49,89;70,59;0;Slovenia;Eastern Europe;"Zalozba ZRC";"2015-2025";"Cultural Studies (Q2); Anthropology (Q3)";"Social Sciences" +24845;21101136677;"Aesthetic Cosmetology and Medicine";journal;"27193241";"INDYGO Zahir Media";No;No;0,157;Q3;7;29;96;797;42;96;0,53;27,48;75,00;0;Poland;Eastern Europe;"INDYGO Zahir Media";"2020-2025";"Health Professions (miscellaneous) (Q3); Dermatology (Q4); Medicine (miscellaneous) (Q4); Pharmaceutical Science (Q4)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +24846;27718;"Archiwum Medycyny Sadowej i Kryminologii";journal;"16891716, 03248267";"Polskie Towarzystwo Medycyny Sadowej i Kryminologii";Yes;Yes;0,157;Q3;10;24;67;468;19;61;0,32;19,50;60,71;0;Poland;Eastern Europe;"Polskie Towarzystwo Medycyny Sadowej i Kryminologii";"1974-1983, 2002-2025";"Law (Q3); Pathology and Forensic Medicine (Q4)";"Medicine; Social Sciences" +24847;21100970293;"European Procurement and Public Private Partnership Law Review";journal;"21947384, 21947376";"Lexxion Verlagsgesellschaft mbH";No;No;0,157;Q3;5;45;103;758;27;70;0,29;16,84;37,21;0;Germany;Western Europe;"Lexxion Verlagsgesellschaft mbH";"2019-2025";"Law (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +24848;3900148601;"Georgian Medical News";journal;"15120112";"";No;No;0,157;Q3;26;401;946;8523;426;944;0,51;21,25;54,48;0;Georgia;Eastern Europe;"";"2005-2025";"Pharmacy (Q3)";"Health Professions" +24849;5800207697;"Hermeneus";journal;"11397489, 2530609X";"Universidad de Valladolid";Yes;Yes;0,157;Q3;11;24;107;768;18;103;0,13;32,00;52,17;0;Spain;Western Europe;"Universidad de Valladolid";"2011-2019, 2021-2025";"Linguistics and Language (Q3)";"Social Sciences" +24850;15908;"Journal of Family Practice";journal;"15337294, 00943509";"Frontline Medical Communications Inc.";Yes;No;0,157;Q3;104;0;275;0;106;231;0,34;0,00;0,00;0;United States;Northern America;"Frontline Medical Communications Inc.";"1974-2023";"Family Practice (Q3); Medicine (miscellaneous) (Q4)";"Medicine" +24851;5800222692;"Magyar Nyelv";journal;"15881210, 00250228";"Magyar Neprajzi Tarsasag";No;No;0,157;Q3;5;40;142;961;18;133;0,14;24,03;14,29;0;Hungary;Eastern Europe;"Magyar Neprajzi Tarsasag";"2011-2025";"Linguistics and Language (Q3)";"Social Sciences" +24852;21101339731;"New Techno Humanities";journal;"26643294";"Elsevier Ltd";Yes;No;0,157;Q3;5;13;48;260;34;46;0,35;20,00;42,31;0;United Kingdom;Western Europe;"Elsevier Ltd";"2021-2025";"Linguistics and Language (Q3); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +24853;22952;"Revue d'Histoire des Sciences";journal;"01514105, 19696582";"Cairn France";No;No;0,157;Q3;7;0;31;0;3;28;0,07;0,00;0,00;0;France;Western Europe;"Cairn France";"1973-1976, 1978-1984, 1986-1987, 1989-1991, 1994-2002, 2019-2022, 2024";"History and Philosophy of Science (Q3)";"Arts and Humanities" +24854;36303;"Annals of Arid Zone";journal;"05701791";"Arid Zone Research Association of India";No;No;0,157;Q4;23;0;117;0;59;117;0,51;0,00;0,00;0;India;Asiatic Region;"Arid Zone Research Association of India";"1976, 1978-1983, 1996-2014, 2016-2018, 2020, 2022-2024";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +24855;21100828135;"Aquaculture Science";journal;"03714217, 21850194";"Japanese Society for Aquaculture Research, Nishimura Toushadou Ltd.";No;No;0,157;Q4;8;0;60;0;25;60;0,45;0,00;0,00;0;Japan;Asiatic Region;"Japanese Society for Aquaculture Research, Nishimura Toushadou Ltd.";"2016-2024";"Animal Science and Zoology (Q4); Aquatic Science (Q4)";"Agricultural and Biological Sciences" +24856;21101113609;"Asian Journal of Economic Modelling";journal;"23123656";"Asian Economic and Social Society";No;No;0,157;Q4;8;37;47;2181;33;47;0,66;58,95;32,95;0;United States;Northern America;"Asian Economic and Social Society";"2019-2025";"Development (Q4); Economics and Econometrics (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +24857;20300195074;"ASM Science Journal";journal;"18236782";"Akademi Sains Malaysia";Yes;Yes;0,157;Q4;15;80;212;2531;124;212;0,56;31,64;41,72;0;Malaysia;Asiatic Region;"Akademi Sains Malaysia";"2011-2015, 2017-2026";"Multidisciplinary (Q4)";"Multidisciplinary" +24858;12570;"BELGEO";journal;"13772368, 22949135";"Societe Royale Belge de Geographie";Yes;Yes;0,157;Q4;20;22;92;904;34;85;0,31;41,09;62,96;0;Belgium;Western Europe;"Societe Royale Belge de Geographie";"2002-2026";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +24859;21100199515;"Biopesticides International";journal;"0973483X, 09769412";"Connect Journals";No;No;0,157;Q4;12;20;90;798;82;90;0,97;39,90;41,51;0;India;Asiatic Region;"Connect Journals";"2011-2025";"Agronomy and Crop Science (Q4); Management, Monitoring, Policy and Law (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24860;21101059300;"Biophysical Bulletin";journal;"20753829, 20753810";"V N Karazin Kharkiv National University";Yes;Yes;0,157;Q4;4;13;25;456;21;24;1,18;35,08;45,45;0;Ukraine;Eastern Europe;"V N Karazin Kharkiv National University";"2019-2025";"Applied Mathematics (Q4); Biochemistry (Q4); Biophysics (Q4); Modeling and Simulation (Q4); Molecular Biology (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Mathematics; Physics and Astronomy" +24861;21100247022;"Bradleya";journal;"0265086X";"British Cactus and Succulent Society";No;No;0,157;Q4;17;23;60;575;21;57;0,35;25,00;35,71;0;United Kingdom;Western Europe;"British Cactus and Succulent Society";"2010-2025";"Horticulture (Q4)";"Agricultural and Biological Sciences" +24862;21101244201;"Control and Optimization in Applied Mathematics";journal;"25385615, 23833130";"Payame Noor University (PNU)";Yes;Yes;0,157;Q4;4;24;48;716;28;48;0,61;29,83;24,00;0;Iran;Middle East;"Payame Noor University (PNU)";"2020-2026";"Applied Mathematics (Q4); Control and Optimization (Q4); Mathematics (miscellaneous) (Q4); Modeling and Simulation (Q4)";"Mathematics" +24863;21101264202;"Energy Equipment and Systems";journal;"23831111, 2345251X";"University of Tehran";Yes;Yes;0,157;Q4;4;22;79;794;45;79;0,56;36,09;25,00;0;Iran;Middle East;"University of Tehran";"2022-2025";"Energy (miscellaneous) (Q4)";"Energy" +24864;21101170211;"European Journal of Musculoskeletal Diseases";journal;"20384106";"Biolife Publisher";No;No;0,157;Q4;11;33;189;2926;127;169;0,73;88,67;35,56;0;Italy;Western Europe;"Biolife Publisher";"2019-2026";"Biochemistry (Q4); Immunology (Q4); Internal Medicine (Q4); Molecular Biology (Q4); Orthopedics and Sports Medicine (Q4); Rheumatology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +24865;20000195005;"Floresta";journal;"19824688, 00153826";"Universidade Federal do Parana";Yes;Yes;0,157;Q4;20;20;186;478;71;186;0,27;23,90;35,94;0;Brazil;Latin America;"Universidade Federal do Parana";"1969, 2011-2025";"Ecology (Q4); Forestry (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24866;4900152302;"Forestry Studies";journal;"17368723, 14069954";"";Yes;No;0,157;Q4;17;0;46;0;18;44;0,26;0,00;0,00;0;Poland;Eastern Europe;"";"2006-2024";"Forestry (Q4)";"Agricultural and Biological Sciences" +24867;4900152413;"Gastrointestinal Nursing";journal;"14795248, 20522835";"MA Healthcare Ltd";Yes;No;0,157;Q4;19;76;291;1515;79;197;0,28;19,93;68,82;0;United Kingdom;Western Europe;"MA Healthcare Ltd";"2006-2025";"Advanced and Specialized Nursing (Q4); Medical and Surgical Nursing (Q4)";"Nursing" +24868;21101055893;"Geosfernye Issledovaniya";journal;"25419943, 25421379";"Faculty of Geology and Geography, Tomsk State University";No;No;0,157;Q4;5;35;119;1240;30;119;0,26;35,43;45,71;0;Russian Federation;Eastern Europe;"Faculty of Geology and Geography, Tomsk State University";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Ecology (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +24869;21101094859;"Healthbook TIMES Oncology Hematology";journal;"26732106, 26732092";"The HealthBook Company Ltd";Yes;Yes;0,157;Q4;4;14;106;517;27;79;0,35;36,93;42,86;0;Switzerland;Western Europe;"The HealthBook Company Ltd";"2019-2025";"Hematology (Q4); Oncology (Q4)";"Medicine" +24870;60486;"Himalaya";journal;"19352212";"Macalester College";Yes;No;0,157;Q4;15;9;80;374;24;69;0,33;41,56;71,43;0;United States;Northern America;"Macalester College";"1981, 2006, 2008-2011, 2013-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +24871;21611;"Indian Journal of Surgery";journal;"09739793, 09722068";"Springer India";Yes;No;0,157;Q4;35;359;1266;5671;400;1062;0,31;15,80;27,31;0;India;Asiatic Region;"Springer India";"1945-1952, 1958, 1965, 1967, 1973-1983, 2004-2026";"Surgery (Q4)";"Medicine" +24872;17700156776;"International Journal of Information and Communication Technology";journal;"14666642, 17418070";"Inderscience Enterprises Ltd";No;No;0,157;Q4;15;332;240;9024;201;240;0,98;27,18;42,88;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2026";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems (Q4); Software (Q4)";"Computer Science" +24873;15657;"International Journal of Web Engineering and Technology";journal;"17419212, 14761289";"Inderscience Enterprises Ltd";No;No;0,157;Q4;18;20;54;555;34;54;0,57;27,75;48,48;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2003-2025";"Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Information Systems (Q4)";"Computer Science" +24874;21100980113;"Iranian Journal of Pediatric Hematology and Oncology";journal;"20088892, 22286993";"Shahid Sadoughi University of Medical Sciences";Yes;No;0,157;Q4;9;24;95;879;39;95;0,37;36,63;48,21;0;Iran;Middle East;"Shahid Sadoughi University of Medical Sciences";"2019-2026";"Hematology (Q4); Oncology (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +24875;25574;"Jisuanji Fuzhu Sheji Yu Tuxingxue Xuebao/Journal of Computer-Aided Design and Computer Graphics";journal;"10039775";"Institute of Computing Technology";No;No;0,157;Q4;32;77;563;3082;379;562;0,61;40,03;35,12;0;China;Asiatic Region;"Institute of Computing Technology";"2001-2025";"Computer Graphics and Computer-Aided Design (Q4); Software (Q4)";"Computer Science" +24876;21100871853;"Jordan Journal of Physics";journal;"19947607, 19947615";"Yarmouk University";No;No;0,157;Q4;12;60;175;2239;109;175;0,61;37,32;23,08;0;Jordan;Middle East;"Yarmouk University";"2008-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +24877;21101257828;"Journal of Clinical Ophthalmology and Research";journal;"23203900, 23203897";"Wolters Kluwer Medknow Publications";Yes;Yes;0,157;Q4;4;76;193;1016;44;169;0,24;13,37;52,20;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2020-2025";"Ophthalmology (Q4)";"Medicine" +24878;6400153154;"Journal of Control Science and Engineering";journal;"16875249, 16875257";"John Wiley and Sons Ltd";Yes;No;0,157;Q4;31;9;27;500;23;27;0,92;55,56;12,90;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2007-2026";"Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Modeling and Simulation (Q4)";"Computer Science; Engineering; Mathematics" +24879;18400156721;"Journal of Economic Cooperation and Development";journal;"13087800";"Statistical Economic and Social Research and Training Centre for Islamic Countries";No;No;0,157;Q4;24;39;92;2114;50;91;0,44;54,21;23,46;0;Turkey;Middle East;"Statistical Economic and Social Research and Training Centre for Islamic Countries";"2009-2025";"Business and International Management (Q4); Economics and Econometrics (Q4); Political Science and International Relations (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +24880;21100200639;"Journal of Gaming and Virtual Worlds";journal;"1757191X, 17571928";"Intellect Ltd.";No;No;0,157;Q4;21;21;56;937;26;51;0,28;44,62;25,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2009-2025";"Computer Graphics and Computer-Aided Design (Q4); Computer Science Applications (Q4); Human-Computer Interaction (Q4)";"Computer Science" +24881;21101029506;"Journal of Network Intelligence";journal;"24148105";"Taiwan Ubiquitous Information";No;No;0,157;Q4;14;176;336;5162;152;336;0,31;29,33;37,60;0;Taiwan;Asiatic Region;"Taiwan Ubiquitous Information";"2018-2026";"Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Information Systems (Q4); Software (Q4)";"Computer Science; Engineering; Mathematics" +24882;32655;"Keikinzoku Yosetsu/Journal of Light Metal Welding";journal;"03685306";"Japan Light Metal Welding and Construction Assoc.";No;No;0,157;Q4;9;1;12;9;7;12;0,83;9,00;0,00;0;Japan;Asiatic Region;"Japan Light Metal Welding and Construction Assoc.";"1975, 1978-1994, 1996-2002, 2005-2025";"Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +24883;19700186897;"Micro and Nanosystems";journal;"18764037, 18764029";"Bentham Science Publishers";No;No;0,157;Q4;20;44;101;3122;104;92;0,85;70,95;31,19;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2010-2026";"Building and Construction (Q4); Nanoscience and Nanotechnology (Q4)";"Engineering; Materials Science" +24884;21100197180;"Novi Sad Journal of Mathematics";journal;"14505444, 24062014";"Institute of Mathematics";Yes;No;0,157;Q4;15;24;87;560;27;87;0,14;23,33;17,39;0;Serbia;Eastern Europe;"Institute of Mathematics";"2011-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +24885;21101176038;"Philanthropy and Education";journal;"24707694, 24707686";"Indiana University Press";No;No;0,157;Q4;7;7;22;455;10;21;0,47;65,00;63,64;0;United States;Northern America;"Indiana University Press";"2019-2025";"Education (Q4)";"Social Sciences" +24886;37851;"Philippine Agricultural Scientist";journal;"00317454";"College of Agriculture and Food Science, University of the Philippines Los Banos";No;No;0,157;Q4;22;20;123;933;59;118;0,54;46,65;38,60;0;Philippines;Asiatic Region;"College of Agriculture and Food Science, University of the Philippines Los Banos";"1996-2025";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Biotechnology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +24887;5300152224;"Research Journal of Chemistry and Environment";journal;"22784527, 09720626";"World Researchers Associations";No;No;0,157;Q4;26;181;633;5666;398;633;0,74;31,30;37,70;0;India;Asiatic Region;"World Researchers Associations";"2007-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry (Q4); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Earth and Planetary Sciences; Energy; Environmental Science" +24888;21100204111;"Smart Innovation, Systems and Technologies";book series;"21903026, 21903018";"Springer Science and Business Media Deutschland GmbH";No;No;0,157;Q4;42;2156;7614;44818;3737;6850;0,47;20,79;37,26;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2010-2026";"Computer Science (miscellaneous) (Q4); Decision Sciences (miscellaneous) (Q4)";"Computer Science; Decision Sciences" +24889;21100790117;"South-Western Journal of Horticulture, Biology and Environment";journal;"20687958, 20679874";"Editura Universitaria Craiova";Yes;No;0,157;Q4;9;9;31;451;15;31;0,52;50,11;50,00;0;Romania;Eastern Europe;"Editura Universitaria Craiova";"2016-2025";"Agronomy and Crop Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +24890;21101248371;"Sportis: Scientific Technical Journal of School Sport, Physical Education and Psychomotricity";journal;"23868333";"Campus EDUCA SPORTIS S.L.";Yes;Yes;0,157;Q4;4;147;34;6764;33;34;0,97;46,01;26,98;0;Spain;Western Europe;"Campus EDUCA SPORTIS S.L.";"2024-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions" +24891;21101079618;"Texas Water Journal";journal;"21605319";"Texas A&M University Texas Water Resources Institute";Yes;Yes;0,157;Q4;10;5;19;338;5;15;0,29;67,60;54,55;0;United States;Northern America;"Texas A&M University Texas Water Resources Institute";"2010-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Engineering (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4); Ocean Engineering (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Engineering; Environmental Science" +24892;19600166213;"Thaiszia Journal of Botany";journal;"12100420";"Pavol Jozef Safarik University in Kosice";No;No;0,157;Q4;11;9;31;399;14;31;0,35;44,33;13,04;0;Slovakia;Eastern Europe;"Pavol Jozef Safarik University in Kosice";"2009-2025";"Plant Science (Q4)";"Agricultural and Biological Sciences" +24893;21101257877;"Veterinary Evidence";journal;"23969776";"Royal College of Veterinary Surgeons";Yes;Yes;0,157;Q4;4;18;88;412;31;84;0,38;22,89;68,00;0;United Kingdom;Western Europe;"Royal College of Veterinary Surgeons";"2020-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +24894;21101155632;"World Journal of Science, Technology and Sustainable Development";journal;"20425953, 20425945";"World Association for Sustainable Development";No;No;0,157;Q4;18;21;20;454;13;19;0,60;21,62;51,72;0;United Kingdom;Western Europe;"World Association for Sustainable Development";"2019-2025";"Business and International Management (Q4); Industrial Relations (Q4); Management of Technology and Innovation (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +24895;22881;"Yaoxue Xuebao";journal;"05134870";"Chinese Pharmaceutical Association";No;No;0,157;Q4;38;366;1128;18820;713;1128;0,66;51,42;45,55;0;China;Asiatic Region;"Chinese Pharmaceutical Association";"1960, 1962-1966, 1979-2026";"Molecular Medicine (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +24896;21101169025;"Zhongguo Ertong Baojian Zazhi";journal;"10086579";"";Yes;No;0,157;Q4;9;148;766;4606;244;766;0,35;31,12;55,72;0;China;Asiatic Region;"";"2019-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +24897;21100203125;"Proceedings of the European Conference on Knowledge Management, ECKM";conference and proceedings;"20488963, 20488971";"Academic Conferences and Publishing International Limited";No;No;0,157;-;15;168;534;5211;309;525;0,59;31,02;48,75;0;United Kingdom;Western Europe;"Academic Conferences and Publishing International Limited";"2005-2025";"Information Systems and Management; Management Science and Operations Research";"Decision Sciences" +24898;16800154755;"Ancient Civilizations from Scythia to Siberia";journal;"0929077X, 15700577";"Brill Academic Publishers";No;No;0,156;Q1;15;6;34;483;8;34;0,28;80,50;22,22;0;Netherlands;Western Europe;"Brill Academic Publishers";"1995-2025";"Classics (Q1); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24899;21100825350;"Kervan";journal;"1825263X";"Universita degli Studi di Torino, Facolta di Lingue e Letterature Straniere";Yes;Yes;0,156;Q1;6;62;124;2492;27;100;0,19;40,19;46,67;0;Italy;Western Europe;"Universita degli Studi di Torino, Facolta di Lingue e Letterature Straniere";"2017-2026";"Literature and Literary Theory (Q1); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +24900;20600195616;"MELUS";journal;"19463170, 0163755X";"Society for the Study of the Multi-Ethnic Literature of the United States";No;No;0,156;Q1;15;8;108;373;28;106;0,11;46,63;71,43;0;United States;Northern America;"Society for the Study of the Multi-Ethnic Literature of the United States";"1974-1975, 1977-1985, 1987, 1989-1990, 1992-1995, 1998-1999, 2001, 2005, 2007, 2009, 2011-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +24901;21100788470;"Novoe Literaturnoe Obozrenie";journal;"08696365";"Novoe Literaturnoe Obozrenie Ltd.";Yes;No;0,156;Q1;4;94;423;2097;29;409;0,07;22,31;38,96;0;Russian Federation;Eastern Europe;"Novoe Literaturnoe Obozrenie Ltd.";"2016-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2)";"Arts and Humanities; Social Sciences" +24902;21100901577;"Enrahonar";journal;"0211402X, 2014881X";"Universitat Autonoma de Barcelona";Yes;Yes;0,156;Q2;6;15;88;297;30;86;0,35;19,80;41,67;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2018-2025";"Philosophy (Q2)";"Arts and Humanities" +24903;21100449126;"Global Environment";journal;"19733739, 20537352";"White Horse Press";Yes;Yes;0,156;Q2;10;25;83;1475;28;69;0,31;59,00;50,00;1;United Kingdom;Western Europe;"White Horse Press";"2014-2026";"History (Q2); Global and Planetary Change (Q4); Management, Monitoring, Policy and Law (Q4)";"Arts and Humanities; Environmental Science" +24904;21000196004;"History of Philosophy Quarterly";journal;"07400675, 21521026";"University of Illinois Press";No;No;0,156;Q2;13;15;60;606;26;59;0,41;40,40;12,50;0;United States;Northern America;"University of Illinois Press";"2011-2025";"Philosophy (Q2)";"Arts and Humanities" +24905;21101034466;"Issues in Language Studies";journal;"21802726";"Universiti Malaysia Sarawak";Yes;No;0,156;Q2;5;14;75;644;43;75;0,60;46,00;64,52;0;Malaysia;Asiatic Region;"Universiti Malaysia Sarawak";"2019-2025";"Cultural Studies (Q2); Linguistics and Language (Q3); Communication (Q4)";"Social Sciences" +24906;21101291390;"Journal of College of Sharia and Islamic Studies";journal;"23055545, 25231715";"Qatar University Press";Yes;No;0,156;Q2;3;24;50;875;21;44;0,42;36,46;21,05;0;Qatar;Middle East;"Qatar University Press";"2022-2026";"Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Law (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +24907;23724;"Journal of Women's History";journal;"10427961, 15272036";"Johns Hopkins University Press";No;No;0,156;Q2;31;26;103;2064;34;89;0,38;79,38;80,77;0;United States;Northern America;"Johns Hopkins University Press";"1996, 1999-2025";"History (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +24908;21100786529;"Mezhdunarodnye Protsessy";journal;"17282756, 18112773";"Academic Educational Forum on International Relations";Yes;Yes;0,156;Q2;9;0;73;0;21;73;0,39;0,00;0,00;0;Russian Federation;Eastern Europe;"Academic Educational Forum on International Relations";"2015-2024";"Cultural Studies (Q2); History (Q2); Law (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +24909;23425;"Politicka Misao";journal;"18468721, 00323241";"Faculty of Political Sciences, University of Zagreb";Yes;No;0,156;Q2;13;24;84;1108;33;76;0,40;46,17;20,00;0;Croatia;Eastern Europe;"Faculty of Political Sciences, University of Zagreb";"1985, 2015-2026";"History (Q2); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +24910;21100874343;"Politics and Religion Journal";journal;"18206581, 1820659X";"Center for Study of Religion and Religious Tolerance";Yes;Yes;0,156;Q2;10;23;58;843;14;47;0,28;36,65;24,00;0;Serbia;Eastern Europe;"Center for Study of Religion and Religious Tolerance";"2007-2025";"Religious Studies (Q2); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +24911;21100943382;"Shedet";journal;"25369954, 23568704";"Fayoum University - Faculty of Archaeology";Yes;No;0,156;Q2;4;18;79;900;21;78;0,28;50,00;28,57;0;Egypt;Africa/Middle East;"Fayoum University - Faculty of Archaeology";"2014-2026";"Museology (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Conservation (Q3)";"Arts and Humanities; Social Sciences" +24912;21100851818;"Anales de Geografia de la Universidad Complutense";journal;"19882378, 02119803";"Universidad Complutense Madrid";Yes;Yes;0,156;Q3;14;9;73;421;35;73;0,53;46,78;33,33;0;Spain;Western Europe;"Universidad Complutense Madrid";"2011-2025";"Urban Studies (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +24913;21101105297;"Comunicacion y Medios";journal;"07163991, 07191529";"Universidad de Chile";Yes;Yes;0,156;Q3;6;26;89;1019;27;79;0,31;39,19;53,19;0;Chile;Latin America;"Universidad de Chile";"2019-2025";"Communication (Q3); Linguistics and Language (Q3)";"Social Sciences" +24914;21100945716;"Croatian and Comparative Public Administration";journal;"18480357, 18492150";"Institute for Public Administration, Croatian and Comparative Public Administration";No;No;0,156;Q3;6;26;75;1323;34;68;0,34;50,88;33,93;0;Croatia;Eastern Europe;"Institute for Public Administration, Croatian and Comparative Public Administration";"2019-2026";"Law (Q3); Public Administration (Q4)";"Social Sciences" +24915;9500154001;"Italian Journal of Anatomy and Embryology";journal;"11226714, 20385129";"Firenze University Press";No;No;0,156;Q3;33;13;115;304;54;109;0,51;23,38;53,13;0;Italy;Western Europe;"Firenze University Press";"1992-2026";"Embryology (Q3); Anatomy (Q4)";"Medicine" +24916;21100839128;"Journal of Information and Communication Convergence Engineering";journal;"22348883, 22348255";"Korea Institute of Information and Communication Engineering";Yes;No;0,156;Q3;12;39;132;1117;64;132;0,46;28,64;33,33;0;South Korea;Asiatic Region;"Korea Institute of Information and Communication Engineering";"2008, 2017-2025";"Media Technology (Q3); Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Information Systems (Q4)";"Computer Science; Engineering" +24917;21100429175;"Northwestern Journal of International Law and Business";journal;"01963228";"Northwestern University School of Law";No;No;0,156;Q3;11;4;34;139;17;27;0,48;34,75;25,00;0;United States;Northern America;"Northwestern University School of Law";"2015-2025";"Law (Q3); Business and International Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +24918;21101390799;"Online Learning In Educational Research";journal;"27989763, 27982351";"FoundAE (Foundation of Advanced Education)";No;No;0,156;Q3;6;32;36;1697;46;36;1,19;53,03;35,53;0;Indonesia;Asiatic Region;"FoundAE (Foundation of Advanced Education)";"2021-2025";"Media Technology (Q3); Education (Q4); Human-Computer Interaction (Q4)";"Computer Science; Engineering; Social Sciences" +24919;21101264986;"Review of European and Comparative Law";journal;"2545384X";"John Paul II Catholic University of Lublin";Yes;Yes;0,156;Q3;3;48;103;1406;45;102;0,44;29,29;42,11;0;Poland;Eastern Europe;"John Paul II Catholic University of Lublin";"2023-2025";"Law (Q3)";"Social Sciences" +24920;21100203701;"Stem-, Spraak- en Taalpathologie";journal;"09247025";"Secretariaat cluster Nederlands - Rijksuniversiteit Groningen";Yes;Yes;0,156;Q3;4;4;23;249;11;21;0,20;62,25;53,85;0;Netherlands;Western Europe;"Secretariaat cluster Nederlands - Rijksuniversiteit Groningen";"2011-2025";"Linguistics and Language (Q3); Developmental and Educational Psychology (Q4); Otorhinolaryngology (Q4); Speech and Hearing (Q4)";"Health Professions; Medicine; Psychology; Social Sciences" +24921;19900193215;"Accounting and the Public Interest";journal;"15309320";"American Accounting Association";No;No;0,156;Q4;14;7;14;424;10;14;0,77;60,57;52,63;0;United States;Northern America;"American Accounting Association";"2009-2025";"Accounting (Q4)";"Business, Management and Accounting" +24922;19900192001;"Advanced Series on Ocean Engineering";book series;"1793074X";"World Scientific";No;No;0,156;Q4;7;0;16;0;1;2;0,07;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2008-2010, 2014, 2016-2024";"Ocean Engineering (Q4); Oceanography (Q4)";"Earth and Planetary Sciences; Engineering" +24923;21101364772;"Alexandria Journal of Veterinary Sciences";journal;"25369520, 11102047";"Alexandria University, Faculty of Veterinary Medicine";No;No;0,156;Q4;5;64;242;2750;97;242;0,41;42,97;51,16;0;Egypt;Africa/Middle East;"Alexandria University, Faculty of Veterinary Medicine";"2019-2026";"Veterinary (miscellaneous) (Q4)";"Veterinary" +24924;21101205771;"Annals of Health Research";journal;"25366149, 24768642";"Medical and Dental Consultants Association of Nigeria, Olabisi Onabanjo University Teaching Hospital";Yes;No;0,156;Q4;2;45;81;1319;29;79;0,36;29,31;41,44;0;Nigeria;Africa;"Medical and Dental Consultants Association of Nigeria, Olabisi Onabanjo University Teaching Hospital";"2023-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +24925;22182;"Arkivoc";journal;"15517004, 15517012";"Arkat";Yes;Yes;0,156;Q4;71;40;340;1876;185;338;0,50;46,90;27,86;0;United States;Northern America;"Arkat";"2000-2025";"Organic Chemistry (Q4)";"Chemistry" +24926;4000151706;"Chinese Journal of Infection and Chemotherapy";journal;"10097708";"Editorial Department of Chinese Journal of Infection";No;No;0,156;Q4;15;110;390;2550;150;300;0,46;23,18;50,83;0;China;Asiatic Region;"Editorial Department of Chinese Journal of Infection";"2006-2026";"Infectious Diseases (Q4); Microbiology (medical) (Q4); Pharmacology (medical) (Q4)";"Medicine" +24927;21101038686;"Chinese Journal of Ultrasonography";journal;"10044477";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,156;Q4;9;121;502;3038;205;501;0,42;25,11;54,15;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2026";"Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine" +24928;73135;"Ciencia del Suelo";journal;"18502067, 03263169";"Asociacion Argentina de la Ciencia del Suelo";Yes;No;0,156;Q4;21;28;69;1228;24;64;0,40;43,86;39,02;0;Argentina;Latin America;"Asociacion Argentina de la Ciencia del Suelo";"1994-2025";"Soil Science (Q4)";"Agricultural and Biological Sciences" +24929;21101073954;"CLEI Eletronic Journal (CLEIej)";journal;"07175000";"Latin American Center for Informatics Studies";Yes;Yes;0,156;Q4;6;51;58;1755;34;52;0,71;34,41;32,08;0;Chile;Latin America;"Latin American Center for Informatics Studies";"2019-2025";"Computational Mathematics (Q4); Computer Science Applications (Q4); Computer Science (miscellaneous) (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +24930;21100976171;"Colombian Journal of Anesthesiology";journal;"24220248, 22562087";"Sociedad Colombiana de Anestesiologia y Reanimacion";Yes;Yes;0,156;Q4;9;41;113;908;51;96;0,54;22,15;38,46;0;Colombia;Latin America;"Sociedad Colombiana de Anestesiologia y Reanimacion";"2018-2025";"Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4)";"Medicine" +24931;21100275828;"Comptabilite Controle Audit";journal;"12622788";"Francophone Association of Accounting";No;No;0,156;Q4;14;0;18;0;9;18;0,40;0,00;0,00;0;France;Western Europe;"Francophone Association of Accounting";"2012-2024";"Accounting (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +24932;30053;"Current Topics in Nutraceutical Research";journal;"15407535";"New Century Health Publishers";No;No;0,156;Q4;23;9;334;431;104;334;0,22;47,89;45,16;0;United States;Northern America;"New Century Health Publishers";"2004-2016, 2018-2025";"Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +24933;28124;"Estudios Geograficos";journal;"00141496, 19888546";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,156;Q4;17;0;77;0;38;76;0,26;0,00;0,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1979-2024";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +24934;21101152700;"Food Systems";journal;"26187272, 26189771";"V.M. Gorbatov Federal Research Center for Food Systems of the Russian Academy of Sciences";Yes;Yes;0,156;Q4;8;71;181;4208;138;181;0,88;59,27;56,71;0;Russian Federation;Eastern Europe;"V.M. Gorbatov Federal Research Center for Food Systems of the Russian Academy of Sciences";"2019-2025";"Food Science (Q4)";"Agricultural and Biological Sciences" +24935;21100903451;"Foro de Educacion";journal;"16987802";"FahrenHouse";Yes;Yes;0,156;Q4;11;40;109;1662;50;108;0,39;41,55;60,42;0;Spain;Western Europe;"FahrenHouse";"2018-2026";"Education (Q4)";"Social Sciences" +24936;144940;"Fuss und Sprunggelenk";journal;"16199987, 16199995";"Elsevier GmbH";No;No;0,156;Q4;12;27;84;687;23;73;0,33;25,44;30,99;0;Germany;Western Europe;"Elsevier GmbH";"2005-2026";"Orthopedics and Sports Medicine (Q4)";"Medicine" +24937;28485;"Gesundheitsokonomie und Qualitatsmanagement";journal;"14322625, 14394049";"Georg Thieme Verlag";No;No;0,156;Q4;14;99;343;523;20;201;0,07;5,28;38,89;0;Germany;Western Europe;"Georg Thieme Verlag";"1999-2026";"Health Policy (Q4)";"Medicine" +24938;22240;"Human Biology";journal;"15346617, 00187143";"Wayne State University Press";No;No;0,156;Q4;62;0;35;0;17;34;0,36;0,00;0,00;0;United States;Northern America;"Wayne State University Press";"1945-2023";"Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4); Genetics (clinical) (Q4); Medicine (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +24939;21101064932;"International Explorations in Outdoor and Environmental Education";book series;"22144218, 22144226";"Springer Nature";No;No;0,156;Q4;8;1;71;860;33;1;0,53;860,00;0,00;0;Netherlands;Western Europe;"Springer Nature";"2016, 2018-2026";"Education (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +24940;12100154841;"Journal of Applied Biological Chemistry";journal;"19760442, 22347941";"Korean Society for Applied Biological Chemistry";No;No;0,156;Q4;27;64;190;2442;90;189;0,45;38,16;39,55;0;South Korea;Asiatic Region;"Korean Society for Applied Biological Chemistry";"2008-2026";"Bioengineering (Q4); Organic Chemistry (Q4)";"Chemical Engineering; Chemistry" +24941;21100840076;"Journal of Economic Development";journal;"02548372";"Economic Research Institute of Chung-Ang University";Yes;No;0,156;Q4;12;24;83;920;40;83;0,45;38,33;29,41;0;South Korea;Asiatic Region;"Economic Research Institute of Chung-Ang University";"2017-2025";"Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +24942;21101341258;"Journal of Education and Training Studies";journal;"23248068, 2324805X";"Redfame Publishing Inc.";No;No;0,156;Q4;7;24;96;919;48;96;0,31;38,29;47,92;0;United States;Northern America;"Redfame Publishing Inc.";"2021-2026";"Education (Q4)";"Social Sciences" +24943;21100464774;"Journal of Operational Risk";journal;"17446740, 17552710";"Incisive Media Ltd.";No;No;0,156;Q4;15;17;49;1030;35;49;0,59;60,59;31,43;0;United Kingdom;Western Europe;"Incisive Media Ltd.";"2011-2025";"Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +24944;28388;"Journal of the Society of Leather Technologists and Chemists";journal;"01440322";"Society of Leather Technologists and Chemists";No;No;0,156;Q4;29;3;110;50;18;100;0,16;16,67;55,56;0;United Kingdom;Western Europe;"Society of Leather Technologists and Chemists";"1994-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Materials Science" +24945;21101054414;"Journal of Xiangya Medicine";journal;"25199390";"AME Publishing Company";No;No;0,156;Q4;7;9;64;317;27;56;0,47;35,22;45,16;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2016-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +24946;21100220348;"Lecture Notes of the Institute for Computer Sciences, Social-Informatics and Telecommunications Engineering, LNICST";book series;"1867822X, 18678211";"Springer Science and Business Media Deutschland GmbH";Yes;No;0,156;Q4;58;949;4839;20997;1867;4503;0,39;22,13;31,02;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2009-2026";"Computer Networks and Communications (Q4)";"Computer Science" +24947;20763;"Listy Cukrovarnicke a Reparske";journal;"12103306, 18059708";"VUC Praha, a.s.";Yes;No;0,156;Q4;12;71;207;659;16;126;0,11;9,28;24,68;0;Czech Republic;Eastern Europe;"VUC Praha, a.s.";"1996-2026";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +24948;21100242238;"Mass Spectrometry Letters";journal;"20938950, 22334203";"Korean Society Mass Spectrometry";Yes;Yes;0,156;Q4;13;15;61;427;38;60;0,68;28,47;22,45;0;South Korea;Asiatic Region;"Korean Society Mass Spectrometry";"2010-2025";"Analytical Chemistry (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Spectroscopy (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +24949;19892;"Medicina dello Sport";journal;"00257826, 18271863";"Edizioni Minerva Medica";No;No;0,156;Q4;18;0;146;0;37;141;0,21;0,00;0,00;0;Italy;Western Europe;"Edizioni Minerva Medica";"1965, 1973-1982, 1996-2024";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)";"Health Professions; Medicine" +24950;13195;"Nanjing Li Gong Daxue Xuebao/Journal of Nanjing University of Science and Technology";journal;"10059830";"University of Science and Technology";No;No;0,156;Q4;17;73;226;1772;119;226;0,53;24,27;35,44;0;China;Asiatic Region;"University of Science and Technology";"1994-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +24951;3900148501;"North American Journal of Psychology";journal;"15277143";"North American Journal of Psychology";No;No;0,156;Q4;35;94;159;3625;70;155;0,38;38,56;54,19;0;United States;Northern America;"North American Journal of Psychology";"2005-2025";"Developmental and Educational Psychology (Q4); Education (Q4); Psychology (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Psychology; Social Sciences" +24952;21100979261;"Obstetrics, Gynecology and Reproduction";journal;"23137347, 25003194";"IRBIS LLC";Yes;No;0,156;Q4;9;78;209;3016;126;209;0,64;38,67;72,02;0;Russian Federation;Eastern Europe;"IRBIS LLC";"2017-2025";"Embryology (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)";"Medicine" +24953;12289;"Optica Applicata";journal;"00785466, 18997015";"Wroclaw University of Science and Technology";Yes;No;0,156;Q4;35;8;137;266;74;137;0,49;33,25;29,73;0;Poland;Eastern Europe;"Wroclaw University of Science and Technology";"1988, 1996-2025";"Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Materials Science; Physics and Astronomy" +24954;21101117184;"Postcolonial Directions in Education";journal;"23045388";"University of Malta";No;No;0,156;Q4;4;3;32;98;10;26;0,33;32,67;75,00;0;Malta;Western Europe;"University of Malta";"2019-2025";"Education (Q4)";"Social Sciences" +24955;17134;"Prakticky Lekar";journal;"18054544, 00326739";"Czech Medical Association J.E. Purkyne";No;No;0,156;Q4;8;21;125;320;10;110;0,08;15,24;50,88;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1949, 1951-1955, 1962, 1996-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +24956;21101089333;"Proceedings on Engineering Sciences";journal;"26202832, 26834111";"Faculty of Engineering, University of Kragujevac";Yes;Yes;0,156;Q4;13;268;372;6944;278;372;0,74;25,91;41,80;0;Serbia;Eastern Europe;"Faculty of Engineering, University of Kragujevac";"2019-2025";"Engineering (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Management Information Systems (Q4); Materials Science (miscellaneous) (Q4)";"Business, Management and Accounting; Engineering; Materials Science" +24957;19700173159;"Reforma y Democracia";journal;"13152378";"Centro Latinoamericano de Administracion para el Desarrollo";No;No;0,156;Q4;9;23;63;917;24;63;0,39;39,87;39,02;0;Venezuela;Latin America;"Centro Latinoamericano de Administracion para el Desarrollo";"2008-2025";"Public Administration (Q4); Sociology and Political Science (Q4)";"Social Sciences" +24958;21101088441;"Review of Computer Engineering Research";journal;"24124281, 24109142";"Conscientia Beam";No;No;0,156;Q4;8;22;45;649;40;45;0,63;29,50;36,17;0;United States;Northern America;"Conscientia Beam";"2019-2026";"Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4)";"Computer Science; Engineering" +24959;21101049092;"Revista Brasileira de Cirurgia Plastica";journal;"19835175, 21771235";"Sociedade Brasileira de Cirurgia Plastica";Yes;Yes;0,156;Q4;6;40;232;758;54;218;0,23;18,95;37,50;0;Brazil;Latin America;"Sociedade Brasileira de Cirurgia Plastica";"2019-2026";"Surgery (Q4)";"Medicine" +24960;5000160208;"Revista Cubana de Educacion Medica Superior";journal;"08642141, 15612902";"Editorial Ciencias Medicas";Yes;Yes;0,156;Q4;18;73;185;1635;56;163;0,36;22,40;51,88;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1996-2002, 2006-2007, 2009-2026";"Education (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +24961;21100928091;"Revista de Enfermagem Referencia";journal;"21822883, 08740283";"Escola Superior de Enfermagem de Coimbra";Yes;Yes;0,156;Q4;18;23;215;518;69;205;0,29;22,52;77,11;0;Portugal;Western Europe;"Escola Superior de Enfermagem de Coimbra";"2010-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +24962;21101144798;"Revista de Geociencias do Nordeste";journal;"24473359";"Universidade Federal do Rio Grande do Norte";Yes;Yes;0,156;Q4;6;103;127;3338;52;127;0,36;32,41;37,32;0;Brazil;Latin America;"Universidade Federal do Rio Grande do Norte";"2019-2026";"Atmospheric Science (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Earth-Surface Processes (Q4); Geology (Q4)";"Earth and Planetary Sciences" +24963;27163;"Russian Microelectronics";journal;"10637397, 16083415";"Pleiades Publishing";No;No;0,156;Q4;21;90;373;2254;147;372;0,43;25,04;24,64;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4)";"Engineering; Materials Science; Physics and Astronomy" +24964;21101253655;"Russian Military Medical Academy Reports";journal;"27132315, 27132323";"Eco-Vector LLC";No;No;0,156;Q4;4;50;152;1116;51;152;0,38;22,32;32,57;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2020-2025";"Epidemiology (Q4); Medicine (miscellaneous) (Q4); Pharmacology (medical) (Q4); Surgery (Q4)";"Medicine" +24965;21100869509;"SCMS Journal of Indian Management";journal;"09733167";"SCMS Group of Educational Institutions";No;No;0,156;Q4;8;31;130;1643;61;115;0,28;53,00;51,61;0;India;Asiatic Region;"SCMS Group of Educational Institutions";"2018-2025";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +24966;18192;"Soziale Welt";journal;"00386073";"Nomos Verlagsgesellschaft mbH und Co KG";No;No;0,156;Q4;20;14;67;648;35;64;0,44;46,29;64,29;0;Germany;Western Europe;"Nomos Verlagsgesellschaft mbH und Co KG";"1996-2025";"Sociology and Political Science (Q4)";"Social Sciences" +24967;21375;"Turkish Journal of Immunology";journal;"1301109X";"Turkish Society of Immunology";Yes;Yes;0,156;Q4;7;21;67;787;26;55;0,51;37,48;58,33;0;Turkey;Middle East;"Turkish Society of Immunology";"1998-1999, 2003-2005, 2008, 2010-2025";"Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +24968;21101251261;"Ukrains'kij Zurnal Vijskovoi Medicini";journal;"27086623, 27086615";"";Yes;Yes;0,156;Q4;6;95;214;2057;72;214;0,43;21,65;50,80;0;Ukraine;Eastern Europe;"";"2020-2025";"Drug Discovery (Q4); Medicine (miscellaneous) (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +24969;144813;"WSEAS Transactions on Systems";journal;"22242678, 11092777";"World Scientific and Engineering Academy and Society";No;No;0,156;Q4;30;63;180;2287;149;180;0,91;36,30;42,25;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2005-2014, 2019, 2021-2025";"Computer Science Applications (Q4); Control and Systems Engineering (Q4)";"Computer Science; Engineering" +24970;21101102121;"IEEE Joint International Information Technology and Artificial Intelligence Conference (ITAIC)";conference and proceedings;"26932865";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,156;-;15;268;868;3377;408;865;0,47;12,60;34,52;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2020, 2022-2023, 2025";"Artificial Intelligence; Information Systems";"Computer Science" +24971;21101121706;"New Trends in Civil Aviation";conference and proceedings;"26947854";"Czech Technical University in Prague";No;No;0,156;-;5;0;77;0;44;73;0,53;0,00;0,00;0;Czech Republic;Eastern Europe;"Czech Technical University in Prague";"2022, 2024";"Aerospace Engineering";"Engineering" +24972;21100400012;"Proceedings of International Conference of the Learning Sciences, ICLS";conference and proceedings;"18149316";"International Society of the Learning Sciences (ISLS)";No;No;0,156;-;20;0;1966;0;540;1954;0,29;0,00;0,00;0;United States;Northern America;"International Society of the Learning Sciences (ISLS)";"2014, 2016, 2018, 2021-2024";"Computer Science (miscellaneous); Education";"Computer Science; Social Sciences" +24973;21100222906;"Proceedings of the International Conference on Anti-Counterfeiting, Security and Identification, ASID";conference and proceedings;"21635048, 21635056";"IEEE Computer Society";No;No;0,156;-;17;0;105;0;66;99;0,53;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012-2013, 2016-2024";"Computer Graphics and Computer-Aided Design; Computer Science Applications; Computer Vision and Pattern Recognition; Software";"Computer Science" +24974;21101189100;"Proceedings of the International Conference on Simulation and Modeling Methodologies, Technologies and Applications";conference and proceedings;"21842841";"Science and Technology Publications, Lda";No;No;0,156;-;6;43;149;980;73;146;0,42;22,79;18,55;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2019-2025";"Computational Theory and Mathematics; Computer Science Applications; Modeling and Simulation; Safety, Risk, Reliability and Quality";"Computer Science; Engineering; Mathematics" +24975;5700162519;"American Nineteenth Century History";journal;"17437903, 14664658";"Routledge";No;No;0,155;Q2;8;18;45;1204;13;36;0,30;66,89;46,67;0;United States;Northern America;"Routledge";"2010-2025";"History (Q2)";"Arts and Humanities" +24976;21101070304;"Anais do Museu Paulista";journal;"01014714, 19820267";"Universidade De Sao Paulo";Yes;Yes;0,155;Q2;5;46;120;2363;21;116;0,11;51,37;45,88;0;Brazil;Latin America;"Universidade De Sao Paulo";"2019-2025";"History (Q2); Museology (Q2); Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +24977;16300154787;"Biblical Interpretation";journal;"09272569, 15685152";"Brill Academic Publishers";No;No;0,155;Q2;24;22;59;1908;18;59;0,18;86,73;40,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1988, 1993-2025";"Religious Studies (Q2)";"Arts and Humanities" +24978;19900193975;"Dance Research Journal";journal;"01497677, 1940509X";"Cambridge University Press";No;No;0,155;Q2;29;0;50;0;18;42;0,22;0,00;0,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1975-1985, 1987-2024";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +24979;5700179464;"Ethics and the Environment";journal;"15355306, 10856633";"Indiana University Press";No;No;0,155;Q2;16;8;30;538;15;29;0,37;67,25;62,50;0;United States;Northern America;"Indiana University Press";"2013-2025";"Philosophy (Q2); Environmental Science (miscellaneous) (Q4)";"Arts and Humanities; Environmental Science" +24980;21101030202;"International Journal of Film and Media Arts";journal;"21839271";"Lusofona University";Yes;Yes;0,155;Q2;5;23;53;791;28;44;0,70;34,39;65,52;0;Portugal;Western Europe;"Lusofona University";"2019-2025";"Visual Arts and Performing Arts (Q2); Communication (Q4)";"Arts and Humanities; Social Sciences" +24981;21101158889;"Iraq";journal;"00210889, 20534744";"Cambridge University Press";No;No;0,155;Q2;8;10;34;699;13;32;0,27;69,90;44,44;0;United Kingdom;Western Europe;"Cambridge University Press";"2019-2025";"Classics (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +24982;27322;"Journal of Ecumenical Studies";journal;"00220558, 21623937";"University of Pennsylvania Press";No;No;0,155;Q2;8;30;94;1227;9;91;0,08;40,90;20,83;0;United States;Northern America;"University of Pennsylvania Press";"1979, 2011-2025";"Religious Studies (Q2)";"Arts and Humanities" +24983;21100858112;"Journal on European History of Law";journal;"20426402, 30499089";"STS Science Centre Ltd";Yes;Yes;0,155;Q2;5;44;139;1715;73;129;0,50;38,98;28,57;0;United Kingdom;Western Europe;"STS Science Centre Ltd";"2017-2025";"History (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +24984;21100202957;"KRITERION – Journal of Philosophy";journal;"10198288, 2750977X";"Walter de Gruyter GmbH";No;No;0,155;Q2;7;15;31;569;12;30;0,33;37,93;50,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2011-2026";"Philosophy (Q2)";"Arts and Humanities" +24985;21101193866;"Mutefekkir";journal;"21488134, 21485631";"Aksaray University, Faculty of Islamic Sciences";Yes;No;0,155;Q2;1;26;79;1176;9;76;0,15;45,23;0,00;0;Turkey;Middle East;"Aksaray University, Faculty of Islamic Sciences";"2022-2024";"Cultural Studies (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +24986;21101176853;"Projeto Historia";journal;"01024442, 21762767";"Pontifícia Universidade Católica de São Paulo";Yes;Yes;0,155;Q2;3;62;131;2168;16;118;0,16;34,97;47,06;0;Brazil;Latin America;"Pontifícia Universidade Católica de São Paulo";"2019-2025";"History (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +24987;21101274768;"PuntOorg International Journal";journal;"24991333";"";No;No;0,155;Q2;5;14;42;891;27;38;0,46;63,64;65,38;0;Italy;Western Europe;"";"2021-2026";"Cultural Studies (Q2); Gender Studies (Q3); Communication (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Social Sciences" +24988;21100923615;"Rivista Internazionale di Filosofia e Psicologia";journal;"20394667, 22392629";"MIMESIS EDIZIONI";Yes;Yes;0,155;Q2;6;12;52;605;18;50;0,24;50,42;15,38;0;Italy;Western Europe;"MIMESIS EDIZIONI";"2019-2025";"Philosophy (Q2); Experimental and Cognitive Psychology (Q4); Social Psychology (Q4)";"Arts and Humanities; Psychology" +24989;21100886374;"Alam Cipta";journal;"18237231, 22893687";"Universiti Putra Malaysia Press";No;No;0,155;Q3;8;71;65;2648;35;60;0,47;37,30;50,00;0;Malaysia;Asiatic Region;"Universiti Putra Malaysia Press";"2018-2025";"Urban Studies (Q3); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science; Social Sciences" +24990;21100940690;"Cultural Management: Science and Education";journal;"25126962";"Logos Verlag Berlin GmbH";No;No;0,155;Q3;8;12;46;454;25;40;0,48;37,83;41,67;0;Germany;Western Europe;"Logos Verlag Berlin GmbH";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Business and International Management (Q4); Education (Q4); Strategy and Management (Q4)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +24991;4000148821;"International Journal of Pharmaceutical Compounding";journal;"10924221";"";No;No;0,155;Q3;18;77;350;1329;69;226;0,17;17,26;44,57;0;United States;Northern America;"";"2006-2025";"Pharmacology (nursing) (Q3); Pharmacy (Q3); Medicine (miscellaneous) (Q4); Pharmaceutical Science (Q4); Pharmacology (medical) (Q4)";"Health Professions; Medicine; Nursing; Pharmacology, Toxicology and Pharmaceutics" +24992;4700152762;"Journal of Archival Organization";journal;"15332748, 15332756";"Routledge";No;No;0,155;Q3;15;10;12;411;5;12;0,20;41,10;61,54;0;United States;Northern America;"Routledge";"2002, 2004-2025";"Library and Information Sciences (Q3)";"Social Sciences" +24993;4700152748;"Journal of Electronic Resources in Medical Libraries";journal;"15424065, 15424073";"Routledge";No;No;0,155;Q3;17;12;43;167;26;36;0,68;13,92;45,83;0;United States;Northern America;"Routledge";"2003-2026";"Library and Information Sciences (Q3); Health (social science) (Q4)";"Social Sciences" +24994;21101284607;"Journal of Inonu University Vocational School of Health Services";journal;"21477892";"Inonu University";Yes;No;0,155;Q3;3;62;134;2320;40;134;0,30;37,42;62,20;0;Turkey;Middle East;"Inonu University";"2023-2026";"Health Professions (miscellaneous) (Q3); Emergency Medical Services (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions" +24995;21101039901;"Journal of Language Modelling";journal;"2299856X, 22998470";"Institute of Computer Science, Polish Academy of Sciences";Yes;Yes;0,155;Q3;6;5;22;375;12;20;0,31;75,00;37,50;0;Poland;Eastern Europe;"Institute of Computer Science, Polish Academy of Sciences";"2020-2025";"Linguistics and Language (Q3); Computer Science Applications (Q4); Modeling and Simulation (Q4)";"Computer Science; Mathematics; Social Sciences" +24996;63767;"Midcontinental Journal of Archaeology";journal;"23274271, 01461109";"University of Illinois Press";No;No;0,155;Q3;8;6;32;440;12;32;0,32;73,33;17,65;0;United States;Northern America;"University of Illinois Press";"1980, 1989, 2000, 2015-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24997;21101184723;"Ophiussa";journal;"1645653X, 2184173X";"University of Lisbon Centre for Archaeology";No;Yes;0,155;Q3;4;10;30;901;6;29;0,16;90,10;17,86;0;Portugal;Western Europe;"University of Lisbon Centre for Archaeology";"2019-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +24998;21101107169;"Romanian Journal of Stomatology";journal;"18430805, 20696078";"Amaltea Medical Publishing House";Yes;No;0,155;Q3;4;66;128;1907;50;127;0,37;28,89;47,83;0;Romania;Eastern Europe;"Amaltea Medical Publishing House";"2019-2025";"Oral Surgery (Q3); Orthodontics (Q3); Periodontics (Q3); Dentistry (miscellaneous) (Q4)";"Dentistry" +24999;21100794750;"Zeitschrift fur Angewandte Linguistik";journal;"14339889, 21900191";"De Gruyter Mouton";No;No;0,155;Q3;7;12;28;612;13;28;0,58;51,00;60,00;0;Germany;Western Europe;"De Gruyter Mouton";"2016-2026";"Linguistics and Language (Q3)";"Social Sciences" +25000;19900191821;"Acta Scientiae Veterinariae";journal;"16780345, 16799216";"Universidade Federal do Rio Grande do Sul";No;No;0,155;Q4;20;87;355;1907;101;355;0,23;21,92;50,27;0;Brazil;Latin America;"Universidade Federal do Rio Grande do Sul";"2002-2026";"Veterinary (miscellaneous) (Q4)";"Veterinary" +25001;17500154910;"Afro-Asian Journal of Finance and Accounting";journal;"17516455, 17516447";"Inderscience Enterprises Ltd";No;No;0,155;Q4;17;37;120;2324;76;120;0,67;62,81;36,49;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2008-2026";"Accounting (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +25002;21100801184;"Analitika i Kontrol";journal;"20731442, 20731450";"Ural Federal University";Yes;No;0,155;Q4;10;21;75;1270;28;74;0,48;60,48;50,00;0;Russian Federation;Eastern Europe;"Ural Federal University";"2016-2025";"Analytical Chemistry (Q4)";"Chemistry" +25003;79082;"Canadian Biosystems Engineering / Le Genie des biosystems au Canada";journal;"14929058";"Canadian Biosystems Engineering";No;No;0,155;Q4;37;0;9;0;8;9;0,00;0,00;0,00;0;Canada;Northern America;"Canadian Biosystems Engineering";"1997, 1999-2022";"Mechanical Engineering (Q4)";"Engineering" +25004;14553;"Cesko-Slovenska Pediatrie";journal;"00692328, 18054501";"Czech Medical Association J.E. Purkyne";No;No;0,155;Q4;9;29;223;542;18;174;0,09;18,69;47,95;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1955-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +25005;21101179185;"Chinese Journal of Antituberculosis";journal;"10006621";"";No;No;0,155;Q4;12;359;565;8579;245;564;0,44;23,90;44,38;0;China;Asiatic Region;"";"2019-2026";"Infectious Diseases (Q4); Internal Medicine (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +25006;16320;"Critical Reviews in Physical and Rehabilitation Medicine";journal;"21626553, 08962960";"Begell House Inc.";No;No;0,155;Q4;19;19;64;759;21;59;0,36;39,95;47,22;0;United States;Northern America;"Begell House Inc.";"1995-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +25007;145059;"CTyF - Ciencia, Tecnologia y Futuro";journal;"23824581, 01225383";"Ecopetrol S.A.";Yes;Yes;0,155;Q4;21;0;37;0;24;37;0,52;0,00;0,00;0;Colombia;Latin America;"Ecopetrol S.A.";"1996-2024";"Chemical Engineering (miscellaneous) (Q4); Energy (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Fuel Technology (Q4); Geology (Q4); Geophysics (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Chemical Engineering; Earth and Planetary Sciences; Energy; Engineering" +25008;12445;"Deutsche Medizinische Wochenschrift";journal;"00120472, 14394413";"Georg Thieme Verlag";No;No;0,155;Q4;45;332;1173;3243;257;676;0,21;9,77;40,55;0;Germany;Western Europe;"Georg Thieme Verlag";"1875-1944, 1946-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25009;21100841273;"Ecological Genetics";journal;"18110932, 24119202";"Eco-Vector LLC";Yes;No;0,155;Q4;11;31;130;1754;55;129;0,43;56,58;59,66;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2017-2025";"Biochemistry (Q4); Biotechnology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4); Genetics (clinical) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine" +25010;20620;"Ekonomski Pregled";journal;"04247558";"Hrvatsko Drustvo Ekonomista";No;No;0,155;Q4;14;20;101;847;51;99;0,49;42,35;48,72;0;Croatia;Eastern Europe;"Hrvatsko Drustvo Ekonomista";"1971, 1981-1983, 2000-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +25011;21100437628;"Foundations of Management";journal;"23005661, 20807279";"Warsaw University of Technology";Yes;No;0,155;Q4;18;17;50;897;45;50;0,70;52,76;17,95;0;Poland;Eastern Europe;"Warsaw University of Technology";"2009-2012, 2015-2025";"Strategy and Management (Q4)";"Business, Management and Accounting" +25012;21100332451;"Genes and Cells";journal;"23131829";"Human Stem Cell Institute";No;No;0,155;Q4;9;28;114;1333;47;114;0,40;47,61;64,96;0;Russian Federation;Eastern Europe;"Human Stem Cell Institute";"2014-2025";"Biomedical Engineering (Q4); Biotechnology (Q4); Cell Biology (Q4); Molecular Biology (Q4); Surgery (Q4); Transplantation (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +25013;21100815425;"Geographia Cassoviensis";journal;"13376748, 24540005";"Pavol Jozef Safarik University";No;No;0,155;Q4;8;7;27;340;17;27;0,72;48,57;22,22;0;Slovakia;Eastern Europe;"Pavol Jozef Safarik University";"2016-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +25014;19700177546;"Industria";journal;"19738137, 00197416";"Societa Editrice Il Mulino";No;No;0,155;Q4;13;18;74;742;30;74;0,47;41,22;28,95;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2010-2025";"Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +25015;25764;"Internasjonal Politikk";journal;"18911757, 0020577X";"Cappelen Damm Akademisk";Yes;Yes;0,155;Q4;10;40;96;1878;29;93;0,29;46,95;56,25;0;Norway;Western Europe;"Cappelen Damm Akademisk";"1996-2026";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25016;21100198723;"International Journal of Economic Policy in Emerging Economies";journal;"17520452, 17520460";"Inderscience";No;No;0,155;Q4;22;37;159;2023;96;158;0,54;54,68;34,15;0;Switzerland;Western Europe;"Inderscience";"2007-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +25017;21108;"International Journal of Materials and Product Technology";journal;"17415209, 02681900";"Inderscience Publishers";No;No;0,155;Q4;37;11;135;265;70;135;0,40;24,09;22,73;0;United Kingdom;Western Europe;"Inderscience Publishers";"1986-2026";"Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering" +25018;21100200807;"International Journal of Monetary Economics and Finance";journal;"17520487, 17520479";"Inderscience";No;No;0,155;Q4;17;32;98;1369;63;97;0,49;42,78;28,57;0;Switzerland;Western Europe;"Inderscience";"2007-2025";"Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +25019;21101257953;"Iranian Conference on Electrical Engineering, ICEE";journal;"26429527, 21647054";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,155;Q4;4;216;211;4222;145;210;0,69;19,55;24,80;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Artificial Intelligence (Q4); Control and Optimization (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4)";"Computer Science; Engineering; Materials Science; Mathematics; Physics and Astronomy" +25020;21101196446;"Journal of Groundwater Hydrology";journal;"09134182, 21855943";"Japanese Association of Groundwater Hydrology";No;No;0,155;Q4;3;33;60;790;10;37;0,14;23,94;17,54;0;Japan;Asiatic Region;"Japanese Association of Groundwater Hydrology";"2019-2025";"Civil and Structural Engineering (Q4); Earth-Surface Processes (Q4); Water Science and Technology (Q4)";"Earth and Planetary Sciences; Engineering; Environmental Science" +25021;21100812113;"Journal of Rangeland Science";journal;"2423642X, 20089996";"OICC Press";Yes;No;0,155;Q4;14;39;99;1626;38;99;0,37;41,69;29,31;0;United Kingdom;Western Europe;"OICC Press";"2016-2026";"Ecology (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science" +25022;21100225839;"Journal of the International Society for Southeast Asian Agricultural Sciences";journal;"08593132";"International Society for Southeast Asian Agricultural Sciences";No;No;0,155;Q4;15;24;73;1141;44;73;0,57;47,54;48,48;0;Philippines;Asiatic Region;"International Society for Southeast Asian Agricultural Sciences";"2012-2025";"Plant Science (Q4)";"Agricultural and Biological Sciences" +25023;20690;"Journalism History";journal;"00947679, 26412071";"Routledge";No;No;0,155;Q4;4;37;80;1479;15;56;0,11;39,97;41,67;0;United Kingdom;Western Europe;"Routledge";"1975, 1978, 1980, 1982, 1984-1988, 1993, 1995, 1998, 2001, 2007-2008, 2019-2026";"Communication (Q4)";"Social Sciences" +25024;16567;"Kurume Medical Journal";journal;"18812090, 00235679";"Kurume University School of Medicine";No;No;0,155;Q4;25;0;80;0;37;80;0,36;0,00;0,00;0;Japan;Asiatic Region;"Kurume University School of Medicine";"1954-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +25025;21101202297;"Limnology and Freshwater Biology";journal;"26583518";"Limnological Institute SB RAS";No;No;0,155;Q4;5;92;349;3154;106;345;0,37;34,28;55,93;0;Russian Federation;Eastern Europe;"Limnological Institute SB RAS";"2022-2025";"Aquatic Science (Q4); Oceanography (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +25026;5700165166;"Malaysian Journal of Science";journal;"13943065, 26008688";"Faculty of Science, Universiti Malaya";No;No;0,155;Q4;18;53;118;2170;81;118;0,69;40,94;40,00;0;Malaysia;Asiatic Region;"Faculty of Science, Universiti Malaya";"2006-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +25027;28700;"Materials Science Forum";book series;"02555476, 16629752";"Trans Tech Publications Ltd";No;No;0,155;Q4;93;395;1999;7669;1023;606;0,50;19,42;27,93;0;Switzerland;Western Europe;"Trans Tech Publications Ltd";"1984-1986, 1991, 1994-2026";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +25028;21101224875;"Migracijske i Etnicke Teme";journal;"18489184, 13332546";"";Yes;Yes;0,155;Q4;3;11;28;602;13;27;0,55;54,73;43,75;0;Croatia;Eastern Europe;"";"2020-2025";"Demography (Q4); Political Science and International Relations (Q4)";"Social Sciences" +25029;22255;"National Institute Economic Review";journal;"17413036, 00279501";"Cambridge University Press";No;No;0,155;Q4;43;10;80;256;89;76;1,47;25,60;27,78;0;United Kingdom;Western Europe;"Cambridge University Press";"1960-2026";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +25030;22134;"Ornis Svecica";journal;"20032633, 11026812";"BirdLife Sweden";Yes;No;0,155;Q4;17;8;26;279;8;24;0,38;34,88;17,39;2;Sweden;Western Europe;"BirdLife Sweden";"1991-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +25031;16841;"Podravina";journal;"13335286";"Hrvatski Zemljopis";No;No;0,155;Q4;8;11;58;286;14;58;0,27;26,00;36,36;0;Croatia;Eastern Europe;"Hrvatski Zemljopis";"2003-2025";"Geography, Planning and Development (Q4)";"Social Sciences" +25032;85449;"Polish Journal of Soil Science";journal;"24498254, 00792985";"";No;No;0,155;Q4;15;0;10;0;8;10;0,50;0,00;0,00;0;Poland;Eastern Europe;"";"1976, 1978-1979, 1987-2023";"Earth-Surface Processes (Q4); Ecology (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +25033;21101140402;"Reproductive Health of Woman";journal;"27088731, 27088723";"Publishing House Professional-Event";Yes;No;0,155;Q4;8;120;260;4387;222;260;0,94;36,56;68,82;0;Ukraine;Eastern Europe;"Publishing House Professional-Event";"2020-2025";"Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)";"Medicine" +25034;15100;"Revista Brasileira de Oftalmologia";journal;"19828551, 00347280";"Sociedade Brasileira de Oftalmologia";Yes;Yes;0,155;Q4;15;96;214;1998;61;203;0,27;20,81;40,79;0;Brazil;Latin America;"Sociedade Brasileira de Oftalmologia";"1947-1971, 1973-2026";"Ophthalmology (Q4); Surgery (Q4)";"Medicine" +25035;21100831466;"Revista de Ciencias Agroveterinarias";journal;"22381171, 16769732";"State University of Santa Catarina";Yes;Yes;0,155;Q4;11;51;238;1861;96;238;0,33;36,49;42,31;0;Brazil;Latin America;"State University of Santa Catarina";"2017-2025";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Food Science (Q4); Plant Science (Q4); Soil Science (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +25036;19400157258;"Salud Uninorte";journal;"20117531, 01205552";"Universidad del Norte";Yes;Yes;0,155;Q4;16;65;207;2210;58;192;0,32;34,00;53,89;0;Colombia;Latin America;"Universidad del Norte";"2002-2003, 2005-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25037;21100843362;"Stochastics and Quality Control";journal;"23672390, 23672404";"Walter de Gruyter GmbH";No;No;0,155;Q4;17;15;35;383;18;34;0,40;25,53;26,67;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2001-2013, 2017-2026";"Applied Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4); Safety, Risk, Reliability and Quality (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Engineering; Mathematics" +25038;19900192125;"Strategic Comments";journal;"13567888";"Routledge";No;No;0,155;Q4;5;40;120;0;25;108;0,25;0,00;0,00;3;United Kingdom;Western Europe;"Routledge";"2001-2005, 2007-2026";"Political Science and International Relations (Q4)";"Social Sciences" +25039;21100227015;"Studies of Transition States and Societies";journal;"17368758, 1736874X";"Tallinn University";Yes;Yes;0,155;Q4;17;8;21;460;13;16;0,67;57,50;66,67;0;Estonia;Eastern Europe;"Tallinn University";"2009-2025";"Sociology and Political Science (Q4)";"Social Sciences" +25040;21101187705;"Underwater Acoustic Conference and Exhibition Series";conference and proceedings;"24080195";"";No;No;0,155;-;7;78;87;786;18;86;0,21;10,08;20,28;0;Greece;Western Europe;"";"2019, 2023, 2025";"Acoustics and Ultrasonics; Environmental Engineering; Geophysics; Oceanography";"Earth and Planetary Sciences; Environmental Science; Physics and Astronomy" +25041;10300153365;"English Literary Renaissance";journal;"14756757, 00138312";"University of Chicago Press";No;No;0,154;Q1;24;17;54;288;23;38;0,39;16,94;77,78;0;United Kingdom;Western Europe;"University of Chicago Press";"1971-2026";"Literature and Literary Theory (Q1)";"Arts and Humanities" +25042;21100876243;"Itinerarios";journal;"15077241";"University of Warsaw";No;No;0,154;Q1;5;12;91;532;9;90;0,06;44,33;50,00;0;Poland;Eastern Europe;"University of Warsaw";"2018-2025";"Literature and Literary Theory (Q1); History (Q2); Anthropology (Q3); Linguistics and Language (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25043;21101115403;"Ming Qing Yanjiu";journal;"24684791, 17248574";"Brill Academic Publishers";No;No;0,154;Q1;7;7;22;421;7;21;0,14;60,14;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1992-2003, 2005-2007, 2011-2013, 2015-2025";"Literature and Literary Theory (Q1); History (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25044;21101030206;"Revista de Cancioneros Impresos y Manuscritos";journal;"22547444";"Universidad de Alicante";Yes;Yes;0,154;Q1;3;17;33;1116;11;32;0,40;65,65;66,67;0;Spain;Western Europe;"Universidad de Alicante";"2017, 2019-2026";"Literature and Literary Theory (Q1); Library and Information Sciences (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25045;21100899305;"SARE";journal;"0127046X";"University of Malaya";Yes;Yes;0,154;Q1;4;14;71;325;15;49;0,19;23,21;70,00;0;Malaysia;Asiatic Region;"University of Malaya";"2018-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +25046;21101042152;"Semitica et Classica";journal;"22959041, 20315937";"Brepols Publishers";No;No;0,154;Q1;5;0;70;0;8;60;0,15;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2019-2024";"Literature and Literary Theory (Q1); History (Q2); Religious Studies (Q2); Archeology (arts and humanities) (Q3)";"Arts and Humanities" +25047;17700155415;"Sungkyun Journal of East Asian Studies";journal;"25860380, 15982661";"Duke University Press";Yes;Yes;0,154;Q1;8;11;34;617;16;33;0,46;56,09;33,33;0;South Korea;Asiatic Region;"Duke University Press";"2010-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Religious Studies (Q2); Anthropology (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25048;21100967846;"Ankara Universitesi Ilahiyat Fakultesi Dergisi";journal;"13010522, 13092057";"Ankara University, Journal of the Faculty of Divinity";Yes;Yes;0,154;Q2;3;43;95;2367;10;91;0,05;55,05;23,26;0;Turkey;Middle East;"Ankara University, Journal of the Faculty of Divinity";"2019-2025";"Religious Studies (Q2)";"Arts and Humanities" +25049;15735;"Australian Journal of Politics and History";journal;"00049522, 14678497";"Wiley-Blackwell Publishing Ltd";No;No;0,154;Q2;29;61;156;2685;59;96;0,37;44,02;36,76;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1955-2026";"History (Q2); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +25050;5700162095;"Cold War History";journal;"14682745, 17437962";"Routledge";No;No;0,154;Q2;29;50;93;0;68;85;0,61;0,00;38,33;0;United Kingdom;Western Europe;"Routledge";"2000-2026";"History (Q2); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +25051;21101186338;"Estudios de Filosofia (Colombia)";journal;"01213628, 2256358X";"Universidad de Antioquia";Yes;Yes;0,154;Q2;5;23;67;754;37;62;0,20;32,78;17,24;0;Colombia;Latin America;"Universidad de Antioquia";"2022-2026";"Philosophy (Q2)";"Arts and Humanities" +25052;21100876932;"Intersections (Australia)";journal;"14409151";"Australian National University, Dept. of Gender, Media and Cultural Studies";Yes;No;0,154;Q2;5;10;40;488;28;25;0,81;48,80;73,33;0;Australia;Pacific Region;"Australian National University, Dept. of Gender, Media and Cultural Studies";"2018-2025";"Cultural Studies (Q2); History (Q2); Gender Studies (Q3)";"Arts and Humanities; Social Sciences" +25053;21100900136;"Perspectiva Teologica";journal;"21768757, 01024469";"Faculdade Jesuita de Filosofia e Teologia";Yes;Yes;0,154;Q2;4;42;134;1279;13;120;0,06;30,45;27,59;0;Brazil;Latin America;"Faculdade Jesuita de Filosofia e Teologia";"2018-2025";"Philosophy (Q2); Religious Studies (Q2); Education (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25054;21101040618;"Polish Journal of Aesthetics";journal;"25448242, 25448234";"Jagiellonian University - Institute of Philosophy";Yes;Yes;0,154;Q2;4;19;49;592;13;43;0,41;31,16;59,26;0;Poland;Eastern Europe;"Jagiellonian University - Institute of Philosophy";"2017-2025";"Philosophy (Q2); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +25055;5700168298;"Souls";journal;"10999949, 15483843";"Taylor and Francis Ltd.";No;No;0,154;Q2;28;5;14;221;11;13;0,50;44,20;84,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1999-2000, 2002-2022, 2025";"Cultural Studies (Q2); Sociology and Political Science (Q4)";"Social Sciences" +25056;21101052922;"Arab Journal of Forensic Sciences and Forensic Medicine";journal;"16586786, 16586794";"Naif University Publishing House";Yes;Yes;0,154;Q3;5;7;55;209;24;55;0,53;29,86;47,62;0;Saudi Arabia;Middle East;"Naif University Publishing House";"2019-2026";"Law (Q3); Biochemistry (medical) (Q4); Epidemiology (Q4); Pathology and Forensic Medicine (Q4); Toxicology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +25057;21101038745;"Cognitive Semiotics";journal;"22352066";"De Gruyter Mouton";No;No;0,154;Q3;16;7;27;345;15;25;0,43;49,29;46,67;0;Germany;Western Europe;"De Gruyter Mouton";"2009, 2014-2025";"Linguistics and Language (Q3); Communication (Q4)";"Social Sciences" +25058;21101032706;"European Competition and Regulatory Law Review";journal;"25103148";"Lexxion Verlagsgesellschaft mbH";No;No;0,154;Q3;6;54;134;1577;21;72;0,12;29,20;52,50;0;Germany;Western Europe;"Lexxion Verlagsgesellschaft mbH";"2017-2025";"Law (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +25059;21101238418;"InfoDesign";journal;"18085377";"Sociedade Brasileira de Design da Informacao";Yes;Yes;0,154;Q3;3;24;85;550;13;76;0,12;22,92;50,00;0;Brazil;Latin America;"Sociedade Brasileira de Design da Informacao";"2021-2025";"Arts and Humanities (miscellaneous) (Q3); Communication (Q4); Computer Graphics and Computer-Aided Design (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +25060;21101186199;"Journal of Learning Spaces";journal;"21586195";"University of North Carolina at Greensboro";No;Yes;0,154;Q3;10;0;28;0;22;28;0,70;0,00;0,00;0;United States;Northern America;"University of North Carolina at Greensboro";"2019-2023";"Library and Information Sciences (Q3); Education (Q4); Public Administration (Q4)";"Social Sciences" +25061;5700190690;"Nueva Revista de Filologia Hispanica";journal;"01850121, 24486558";"Colegio de Mexico, A.C., Departamento de Publicaciones";Yes;Yes;0,154;Q3;8;23;86;1007;19;86;0,20;43,78;40,91;0;Mexico;Latin America;"Colegio de Mexico, A.C., Departamento de Publicaciones";"2011-2026";"Linguistics and Language (Q3)";"Social Sciences" +25062;21101062500;"Review of European Administrative Law";journal;"18747973, 18747981";"Uitgeverij Paris";No;No;0,154;Q3;10;18;59;1781;21;49;0,30;98,94;63,16;0;Netherlands;Western Europe;"Uitgeverij Paris";"2019-2025";"Law (Q3)";"Social Sciences" +25063;21100847298;"Sagvntvm";journal;"2174517X, 02103729";"Universitat de Valencia";Yes;Yes;0,154;Q3;6;11;48;737;12;48;0,24;67,00;50,00;0;Spain;Western Europe;"Universitat de Valencia";"2017-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +25064;21100396507;"Algorithmic Finance";journal;"21576203, 21585571";"SAGE Publications Ltd";No;No;0,154;Q4;14;0;9;0;10;9;2,00;0,00;0,00;0;Netherlands;Western Europe;"SAGE Publications Ltd";"2011-2023";"Computational Mathematics (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Finance (Q4)";"Computer Science; Economics, Econometrics and Finance; Mathematics" +25065;20981;"American Ceramic Society Bulletin";trade journal;"00027812";"American Ceramic Society";No;No;0,154;Q4;47;82;162;483;28;122;0,20;5,89;26,32;0;United States;Northern America;"American Ceramic Society";"1969-1990, 1993-2026";"Ceramics and Composites (Q4)";"Materials Science" +25066;21100903715;"Annals of Clinical and Experimental Neurology";journal;"24092533, 20755473";"Eco-Vector LLC";Yes;Yes;0,154;Q4;8;43;133;1775;71;133;0,51;41,28;60,22;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2018-2025";"Cellular and Molecular Neuroscience (Q4); Cognitive Neuroscience (Q4); Multidisciplinary (Q4); Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Multidisciplinary; Neuroscience" +25067;21101252467;"Annual of Sofia University ";journal;"26035529, 13139215";"";No;No;0,154;Q4;2;12;27;226;8;26;0,10;18,83;37,50;0;Bulgaria;Eastern Europe;"";"2020-2025";"Algebra and Number Theory (Q4); Applied Mathematics (Q4); Artificial Intelligence (Q4); Computer Science Applications (Q4)";"Computer Science; Mathematics" +25068;21100871804;"Asia-Pacific Journal of Science and Technology";journal;"25396293";"Khon Kaen University,Research and Technology Transfer Affairs Division";Yes;No;0,154;Q4;14;100;317;3172;176;317;0,43;31,72;45,93;0;Thailand;Asiatic Region;"Khon Kaen University,Research and Technology Transfer Affairs Division";"2017-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Engineering; Medicine" +25069;21101270639;"Avicenna Journal of Clinical Microbiology and Infection";journal;"23830301, 23830298";"Hamadan University of Medical Sciences";No;No;0,154;Q4;6;31;88;1264;45;85;0,60;40,77;38,46;0;Iran;Middle East;"Hamadan University of Medical Sciences";"2021-2025";"Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4)";"Immunology and Microbiology; Medicine" +25070;5800207504;"Cell and Tissue Biology";journal;"1990519X, 19905203";"Pleiades Publishing";No;No;0,154;Q4;23;82;338;3282;112;338;0,35;40,02;66,90;0;United States;Northern America;"Pleiades Publishing";"2007-2026";"Cell Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +25071;17700155009;"Comprehensive Analytical Chemistry";book series;"0166526X";"Elsevier B.V.";No;No;0,154;Q4;41;99;156;9238;293;41;1,53;93,31;52,47;0;Netherlands;Western Europe;"Elsevier B.V.";"1979-1980, 1982-1984, 1991-1992, 1996, 1999-2009, 2011-2026";"Analytical Chemistry (Q4); Spectroscopy (Q4)";"Chemistry" +25072;21101274715;"Environmental Problems";journal;"25224417, 24145955";"Lviv Polytechnic National University";Yes;Yes;0,154;Q4;4;49;105;1113;48;105;0,55;22,71;53,37;0;Ukraine;Eastern Europe;"Lviv Polytechnic National University";"2021-2025";"Environmental Science (miscellaneous) (Q4)";"Environmental Science" +25073;20700195034;"European Journal of Computational Mechanics";journal;"26422085, 26422050";"";No;No;0,154;Q4;32;6;68;168;35;68;0,50;28,00;30,77;0;United Kingdom;Western Europe;"";"2006-2025";"Mechanical Engineering (Q4); Mechanics of Materials (Q4); Modeling and Simulation (Q4)";"Engineering; Mathematics" +25074;7400153103;"Frontiers of Business Research in China";journal;"16737326, 16737431";"Higher Education Press Limited Company";Yes;No;0,154;Q4;27;20;66;921;36;62;0,61;46,05;34,62;0;Singapore;Asiatic Region;"Higher Education Press Limited Company";"2007-2025";"Business, Management and Accounting (miscellaneous) (Q4); Public Administration (Q4)";"Business, Management and Accounting; Social Sciences" +25075;19800188011;"Geriatrie et Psychologie Neuropsychiatrie du Vieillissement";journal;"21158789, 21157863";"John Libbey";No;No;0,154;Q4;23;57;180;2018;55;160;0,32;35,40;56,49;0;France;Western Europe;"John Libbey";"2011-2025";"Biological Psychiatry (Q4); Geriatrics and Gerontology (Q4); Medicine (miscellaneous) (Q4); Neurology (clinical) (Q4); Neuropsychology and Physiological Psychology (Q4)";"Medicine; Neuroscience; Psychology" +25076;21101042488;"IMAGING";journal;"27320960";"Akademiai Kiado";Yes;Yes;0,154;Q4;24;28;54;666;19;54;0,47;23,79;37,06;0;Hungary;Eastern Europe;"Akademiai Kiado";"2020-2026";"Medicine (miscellaneous) (Q4); Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine" +25077;21101067228;"Infection, Epidemiology and Microbiology";journal;"25884115, 25884107";"Tarbiat Modares University";Yes;Yes;0,154;Q4;6;24;107;960;48;107;0,45;40,00;47,25;0;Iran;Middle East;"Tarbiat Modares University";"2019-2025";"Epidemiology (Q4); Immunology (Q4); Infectious Diseases (Q4); Parasitology (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +25078;19700186845;"Ingenieria y Universidad";journal;"01232126, 20112769";"Pontificia Universidad Javeriana";Yes;Yes;0,154;Q4;14;10;40;354;26;38;0,21;35,40;23,81;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2008-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +25079;28477;"International Journal of Computational Geometry and Applications";journal;"17936357, 02181959";"World Scientific";No;No;0,154;Q4;43;5;24;128;12;23;0,35;25,60;33,33;0;Singapore;Asiatic Region;"World Scientific";"1995-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Geometry and Topology (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +25080;21100258851;"International Journal of Interdisciplinary Global Studies";journal;"2324755X, 23247568";"Common Ground Research Networks";No;No;0,154;Q4;6;20;33;1087;20;33;0,67;54,35;39,39;0;United States;Northern America;"Common Ground Research Networks";"2013-2026";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +25081;21100242240;"International Journal of Internet Technology and Secured Transactions";journal;"17485703, 1748569X";"Inderscience";No;No;0,154;Q4;17;1;48;16;33;48;0,30;16,00;33,33;0;Switzerland;Western Europe;"Inderscience";"2007, 2009-2025";"Computer Networks and Communications (Q4); Computer Science Applications (Q4)";"Computer Science" +25082;20500195092;"International Journal of Sustainable Society";journal;"17562546, 17562538";"Inderscience Enterprises Ltd";No;No;0,154;Q4;21;15;60;832;43;60;0,34;55,47;37,84;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2008-2025";"Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Sociology and Political Science (Q4)";"Environmental Science; Social Sciences" +25083;21101308313;"JCEM Case Reports";journal;"27551520";"Oxford University Press";Yes;No;0,154;Q4;2;213;19;3472;15;19;0,79;16,30;50,54;0;United Kingdom;Western Europe;"Oxford University Press";"2022, 2024-2026";"Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +25084;21101283318;"Journal of Contemporary Medical Sciences";journal;"24130516, 24151629";"Nab'a Al-Hayat Foundation for Medical Sciences and Health Care";Yes;No;0,154;Q4;6;62;223;2649;129;220;0,57;42,73;47,70;0;Iraq;Middle East;"Nab'a Al-Hayat Foundation for Medical Sciences and Health Care";"2021-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +25085;21101244195;"Journal of Dental Specialities";journal;"23939834, 23207302";"IP Innovative Publication Pvt. Ltd.";No;No;0,154;Q4;2;50;75;1153;25;69;0,39;23,06;56,91;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2020-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +25086;21101161481;"Journal of Functional Polymers";journal;"10089357";"Editorial Department of Journal of Functional Polymers";No;No;0,154;Q4;9;53;183;1909;113;183;0,65;36,02;38,46;0;China;Asiatic Region;"Editorial Department of Journal of Functional Polymers";"2019-2026";"Materials Science (miscellaneous) (Q4); Polymers and Plastics (Q4)";"Materials Science" +25087;21100792112;"Journal of Pediatric and Neonatal Individualized Medicine";journal;"22810692";"Hygeia Press di Corridori Marinella";Yes;Yes;0,154;Q4;12;20;109;640;41;105;0,30;32,00;58,75;0;Italy;Western Europe;"Hygeia Press di Corridori Marinella";"2016-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +25088;24386;"Journal of the Canadian Dental Association";journal;"14882159, 07098936";"Canadian Dental Association";No;No;0,154;Q4;74;14;109;457;30;74;0,47;32,64;55,10;0;Canada;Northern America;"Canadian Dental Association";"1946-1949, 1979-2025";"Dentistry (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Dentistry; Medicine" +25089;11000153705;"Journal of Transnational Management";journal;"15475778, 15475786";"Taylor and Francis Ltd.";No;No;0,154;Q4;22;0;24;0;24;19;1,33;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2023";"Development (Q4); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +25090;4000148103;"Kathmandu University Medical Journal";journal;"18122078, 18122027";"Kathmandu University";No;No;0,154;Q4;35;78;336;1653;99;325;0,21;21,19;34,63;0;Nepal;Asiatic Region;"Kathmandu University";"2003-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25091;7200153172;"Korean Journal of Materials Research";journal;"12250562";"Korea Federation of Science and Technology";No;No;0,154;Q4;15;62;230;1993;107;230;0,55;32,15;28,42;0;South Korea;Asiatic Region;"Korea Federation of Science and Technology";"2007-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +25092;19900193611;"Malaysian Journal of Microbiology";journal;"22317538, 18238262";"Universiti Sains Malaysia";Yes;No;0,154;Q4;24;62;306;2341;163;306;0,43;37,76;53,49;0;Malaysia;Asiatic Region;"Universiti Sains Malaysia";"2010-2025";"Applied Microbiology and Biotechnology (Q4); Infectious Diseases (Q4); Microbiology (Q4); Microbiology (medical) (Q4)";"Immunology and Microbiology; Medicine" +25093;21100262314;"Mathematical Reports";journal;"15823067, 22853898";"Publishing House of the Romanian Academy";No;No;0,154;Q4;15;8;111;188;32;110;0,23;23,50;33,33;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2012-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4)";"Mathematics" +25094;21101126901;"Medical Journal of Tabriz University of Medical Sciences";journal;"27832031, 2783204X";"Tabriz University of Medical Sciences";Yes;Yes;0,154;Q4;4;59;154;1493;63;153;0,42;25,31;47,37;0;Iran;Middle East;"Tabriz University of Medical Sciences";"2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25095;5000154505;"Memoir of the Fukui Prefectural Dinosaur Museum";journal;"13475622";"Fukui Prefectual Dinosaur Museum";No;No;0,154;Q4;12;0;9;0;2;9;0,29;0,00;0,00;0;Japan;Asiatic Region;"Fukui Prefectual Dinosaur Museum";"2005-2011, 2013-2024";"Paleontology (Q4)";"Earth and Planetary Sciences" +25096;87936;"Moshi Shibie yu Rengong Zhineng/Pattern Recognition and Artificial Intelligence";journal;"10036059";"Science Press";No;No;0,154;Q4;28;78;255;2942;199;255;0,74;37,72;32,65;0;China;Asiatic Region;"Science Press";"2001-2025";"Artificial Intelligence (Q4); Computer Vision and Pattern Recognition (Q4); Software (Q4)";"Computer Science" +25097;21101154818;"Neuro-Fuzzy Modeling Techniques in Economics";journal;"24153516, 23063289";"Vadym Hetman Kyiv National University of Economics";No;No;0,154;Q4;6;0;15;0;11;15;0,78;0,00;0,00;0;Ukraine;Eastern Europe;"Vadym Hetman Kyiv National University of Economics";"2019, 2021-2024";"Applied Mathematics (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Management Science and Operations Research (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Economics, Econometrics and Finance; Mathematics" +25098;19900193879;"Neuropsychological Trends";journal;"19703201, 1970321X";"LED Edizioni Universitarie";Yes;Yes;0,154;Q4;13;13;38;744;21;38;0,71;57,23;54,29;0;Italy;Western Europe;"LED Edizioni Universitarie";"2011-2025";"Cellular and Molecular Neuroscience (Q4); Neuropsychology and Physiological Psychology (Q4)";"Neuroscience; Psychology" +25099;21101041843;"Novosti Sistematiki Vysshikh Rastenii";journal;"05685443, 26871564";"Komarov Botanical Institute of the Russian Academy of Sciences";No;No;0,154;Q4;4;9;43;297;10;43;0,24;33,00;47,37;0;Russian Federation;Eastern Europe;"Komarov Botanical Institute of the Russian Academy of Sciences";"2019-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +25100;19900192150;"Pacific Rim Property Research Journal";journal;"14445921, 22016716";"Pacific Rim Real Estate Society";No;No;0,154;Q4;24;11;22;526;9;21;0,43;47,82;32,00;0;Australia;Pacific Region;"Pacific Rim Real Estate Society";"2000-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +25101;21101081512;"Paediatric Surgery (Ukraine)";journal;"25211358, 23040041";"Group of Companies Med Expert, LLC";Yes;Yes;0,154;Q4;5;56;173;1371;61;173;0,41;24,48;35,00;0;Ukraine;Eastern Europe;"Group of Companies Med Expert, LLC";"2019-2025";"Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)";"Medicine" +25102;22932;"Pakistan Development Review";journal;"00309729";"Pakistan Institute of Development Economics";No;No;0,154;Q4;38;5;115;221;53;112;0,42;44,20;42,86;0;Pakistan;Asiatic Region;"Pakistan Institute of Development Economics";"1964, 1966, 1969, 1973-2012, 2014-2025";"Development (Q4); Geography, Planning and Development (Q4)";"Social Sciences" +25103;17036;"Phlebologie";journal;"25675826, 0939978X";"Georg Thieme Verlag";No;No;0,154;Q4;29;60;74;754;9;35;0,12;12,57;53,57;0;Germany;Western Europe;"Georg Thieme Verlag";"1991-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +25104;21100244949;"Psicologia della Salute";journal;"17210321, 19725167";"FrancoAngeli Edizioni";No;No;0,154;Q4;17;30;93;1022;26;83;0,23;34,07;75,00;0;Italy;Western Europe;"FrancoAngeli Edizioni";"2000-2025";"Applied Psychology (Q4); Health (social science) (Q4)";"Psychology; Social Sciences" +25105;22595;"Revista de Salud Publica";journal;"01240064, 25393596";"Universidad Nacional de Colombia";Yes;No;0,154;Q4;30;28;205;786;46;202;0,21;28,07;51,46;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2003-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +25106;14774;"Sante Mentale au Quebec";journal;"17083923, 03836320";"";No;No;0,154;Q4;15;38;84;1144;23;67;0,15;30,11;71,26;0;Canada;Northern America;"";"1990-1998, 2004-2025";"Clinical Psychology (Q4); Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +25107;21101038808;"Sorbtsionnye i Khromatograficheskie Protsessy";journal;"16800613";"Voronezh State University";Yes;Yes;0,154;Q4;7;85;276;2047;83;276;0,34;24,08;54,49;0;Russian Federation;Eastern Europe;"Voronezh State University";"2019-2025";"Analytical Chemistry (Q4); Colloid and Surface Chemistry (Q4); Physical and Theoretical Chemistry (Q4); Polymers and Plastics (Q4)";"Chemical Engineering; Chemistry; Materials Science" +25108;19530;"Sportverletzung-Sportschaden";journal;"14391236, 09320555";"Georg Thieme Verlag";No;No;0,154;Q4;26;76;226;878;22;73;0,08;11,55;30,85;0;Germany;Western Europe;"Georg Thieme Verlag";"1987-2026";"Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4); Sports Science (Q4)";"Health Professions; Medicine" +25109;15355;"Travail Humain";journal;"00411868";"";No;No;0,154;Q4;27;0;30;0;13;29;0,38;0,00;0,00;0;France;Western Europe;"";"1947-1949, 1972-1993, 1996-2024";"Applied Psychology (Q4); Human Factors and Ergonomics (Q4); Industrial Relations (Q4); Psychology (miscellaneous) (Q4)";"Business, Management and Accounting; Psychology; Social Sciences" +25110;21101186890;"Turkish Journal of Vascular Surgery";journal;"26675080";"Turkish National Vascular and Endovascular Surgery Society";Yes;Yes;0,154;Q4;4;39;105;926;27;101;0,32;23,74;18,40;0;Turkey;Middle East;"Turkish National Vascular and Endovascular Surgery Society";"2022-2025";"Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4)";"Medicine" +25111;144806;"WSEAS Transactions on Circuits and Systems";journal;"11092734, 2224266X";"World Scientific and Engineering Academy and Society";No;No;0,154;Q4;19;35;99;712;63;99;0,66;20,34;19,23;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2005-2014, 2019, 2021-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +25112;21101047714;"Building Simulation Conference Proceedings";conference and proceedings;"25222708";"International Building Performance Simulation Association";No;No;0,154;-;15;0;997;0;322;995;0,30;0,00;0,00;0;Canada;Northern America;"International Building Performance Simulation Association";"2017, 2019-2023";"Architecture; Building and Construction; Computer Science Applications; Modeling and Simulation";"Computer Science; Engineering; Mathematics" +25113;21100199567;"International Conference on ICT and Knowledge Engineering";conference and proceedings;"2157099X, 21570981";"IEEE Computer Society";No;No;0,154;-;21;44;89;528;35;80;0,38;12,00;25,00;0;United States;Northern America;"IEEE Computer Society";"2011-2013, 2015-2016, 2018-2025";"Computer Networks and Communications; Computer Science Applications; Information Systems";"Computer Science" +25114;21100223105;"International Workshop on Cellular Nanoscale Networks and their Applications";conference and proceedings;"21650179, 21650160";"IEEE Computer Society";No;No;0,154;-;12;0;36;0;19;35;0,53;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012, 2014, 2016, 2018, 2021, 2023";"Computer Networks and Communications; Electrical and Electronic Engineering";"Computer Science; Engineering" +25115;5800207558;"International Journal of English Studies";journal;"15787044, 19896131";"Universidad de Murcia";Yes;No;0,153;Q1;17;21;49;911;28;49;0,53;43,38;60,00;0;Spain;Western Europe;"Universidad de Murcia";"2013-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); Linguistics and Language (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +25116;5600153617;"Irish Studies Review";journal;"14699303, 09670882";"Routledge";No;No;0,153;Q1;15;28;91;1197;53;82;0,55;42,75;56,76;0;United Kingdom;Western Europe;"Routledge";"1992-2002, 2010-2025";"Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25117;21101045279;"Lublin Studies in Modern Languages and Literature";journal;"24504580";"Faculty of Humanities, Maria Curie-Sklodowska University Press";No;No;0,153;Q1;5;37;122;1030;35;114;0,33;27,84;72,22;0;Poland;Eastern Europe;"Faculty of Humanities, Maria Curie-Sklodowska University Press";"2019-2025";"Literature and Literary Theory (Q1); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25118;21100886526;"AICCM Bulletin";journal;"10344233, 22044183";"Taylor and Francis Ltd.";No;No;0,153;Q2;12;2;37;59;10;32;0,41;29,50;33,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1984-1997, 1999-2003, 2005-2006, 2008, 2011-2025";"Museology (Q2); Conservation (Q3)";"Arts and Humanities" +25119;11600153683;"A/Z ITU Journal of the Faculty of Architecture";journal;"25647474, 25647571";"Istanbul Teknik Universitesi, Faculty of Architecture";Yes;Yes;0,153;Q2;14;46;135;2531;56;125;0,32;55,02;62,20;0;Turkey;Middle East;"Istanbul Teknik Universitesi, Faculty of Architecture";"2011-2025";"Visual Arts and Performing Arts (Q2); Architecture (Q3); Urban Studies (Q3); Civil and Structural Engineering (Q4)";"Arts and Humanities; Engineering; Social Sciences" +25120;20286;"Central European History";journal;"00089389, 15691616";"Cambridge University Press";No;No;0,153;Q2;27;22;73;2958;32;72;0,46;134,45;29,63;0;United Kingdom;Western Europe;"Cambridge University Press";"1968-2026";"History (Q2)";"Arts and Humanities" +25121;22828;"Cultural Dynamics";journal;"14617048, 09213740";"SAGE Publications Ltd";No;No;0,153;Q2;33;25;72;917;33;66;0,39;36,68;84,62;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"1988-1993, 1995-2025";"Cultural Studies (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +25122;21100790708;"Culture and History Digital Journal";journal;"2253797X";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,153;Q2;10;21;77;1235;23;73;0,35;58,81;35,71;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2016-2025";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +25123;21100204105;"Daimon";journal;"11300507, 19894651";"Universidad de Murcia Servicio de Publicaciones";Yes;Yes;0,153;Q2;10;36;164;1274;79;160;0,54;35,39;19,44;0;Spain;Western Europe;"Universidad de Murcia Servicio de Publicaciones";"2011-2026";"Philosophy (Q2)";"Arts and Humanities" +25124;21100889706;"Ekonomiaz";journal;"23404051, 02133865";"Servicio Central Publicaciones. Gobierno vasco";Yes;Yes;0,153;Q2;8;27;54;752;12;51;0,10;27,85;46,34;0;Spain;Western Europe;"Servicio Central Publicaciones. Gobierno vasco";"2016-2025";"Cultural Studies (Q2); Economics, Econometrics and Finance (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +25125;21101363749;"Falah: Jurnal Ekonomi Syariah";journal;"25023918, 25027824";"University of Muhammadiyah Malang";Yes;No;0,153;Q2;4;10;24;551;21;24;0,95;55,10;42,86;0;Indonesia;Asiatic Region;"University of Muhammadiyah Malang";"2021-2026";"Cultural Studies (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +25126;21100283375;"Investigaciones Historicas";journal;"02109425, 25306472";"Universidad de Valladolid";Yes;Yes;0,153;Q2;6;64;190;1876;40;187;0,21;29,31;33,33;0;Spain;Western Europe;"Universidad de Valladolid";"2013-2015, 2017-2025";"History (Q2)";"Arts and Humanities" +25127;21101149180;"Journal of Chinese Film Studies";journal;"27022285, 27022277";"Walter de Gruyter GmbH";No;No;0,153;Q2;4;29;88;966;29;84;0,31;33,31;36,36;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2021-2026";"Cultural Studies (Q2); History (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities; Social Sciences" +25128;21101033328;"Journal of Daoist Studies";journal;"19415524, 19415516";"University of Hawaii Press";No;No;0,153;Q2;4;13;38;318;6;30;0,12;24,46;30,00;0;United States;Northern America;"University of Hawaii Press";"2019-2026";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +25129;21101171601;"Journal of Education in Muslim Societies";journal;"26410044, 26410052";"Indiana University Press";No;No;0,153;Q2;4;18;48;433;24;36;0,56;24,06;60,00;0;United States;Northern America;"Indiana University Press";"2019-2025";"Cultural Studies (Q2); Education (Q4)";"Social Sciences" +25130;21100847304;"Journal of Print and Media Technology Research";journal;"22238905, 24146250";"iarigai";Yes;Yes;0,153;Q2;5;3;44;72;18;39;0,32;24,00;53,85;0;Germany;Western Europe;"iarigai";"2017-2025";"Visual Arts and Performing Arts (Q2); Media Technology (Q3); Communication (Q4)";"Arts and Humanities; Engineering; Social Sciences" +25131;21101197368;"Limite (Chile)";journal;"07185065";"Universidad de Tarapaca";No;Yes;0,153;Q2;3;25;69;1257;25;69;0,33;50,28;39,06;0;Chile;Latin America;"Universidad de Tarapaca";"2019-2026";"Philosophy (Q2); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology" +25132;21101154815;"Rocznik Teologii Katolickiej";journal;"16448855";"Department of Catholic Theology, University of Bialystok";No;No;0,153;Q2;2;8;46;204;6;44;0,19;25,50;7,69;0;Poland;Eastern Europe;"Department of Catholic Theology, University of Bialystok";"2019-2025";"History (Q2); Philosophy (Q2); Religious Studies (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +25133;21100215942;"Social Sciences and Missions";journal;"18748945, 18748937";"Brill Academic Publishers";No;No;0,153;Q2;7;15;39;696;14;36;0,27;46,40;22,22;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2025";"Cultural Studies (Q2); Religious Studies (Q2); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25134;21101017733;"Topoi (Brazil)";journal;"15183319, 2237101X";"Universidade Federal do Rio de Janeiro";Yes;Yes;0,153;Q2;5;26;139;808;31;136;0,22;31,08;40,91;0;Brazil;Latin America;"Universidade Federal do Rio de Janeiro";"2019-2025";"History (Q2)";"Arts and Humanities" +25135;21100860057;"Acta Linguistica Asiatica";journal;"22323317";"University of Ljubljana Press";Yes;Yes;0,153;Q3;4;16;36;376;8;32;0,21;23,50;57,14;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2018-2026";"Linguistics and Language (Q3)";"Social Sciences" +25136;5000153802;"Anthropological Linguistics";journal;"00035483";"Indiana University Anthropological Linguistics";No;No;0,153;Q3;19;0;13;0;4;13;0,00;0,00;0,00;0;United States;Northern America;"Indiana University Anthropological Linguistics";"2005-2022";"Anthropology (Q3); Linguistics and Language (Q3)";"Social Sciences" +25137;21100863712;"English Australia Journal";journal;"22026169, 14444496";"English Australia Ltd.";No;No;0,153;Q3;6;12;41;178;12;38;0,35;14,83;56,25;0;Australia;Pacific Region;"English Australia Ltd.";"2014, 2018-2025";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +25138;21100927251;"International Journal of Practice-Based Learning in Health and Social Care";journal;"20516223";"Coventry University";No;No;0,153;Q3;10;7;50;191;26;45;0,59;27,29;69,23;0;United Kingdom;Western Europe;"Coventry University";"2019-2025";"Health Professions (miscellaneous) (Q3); Education (Q4); Fundamentals and Skills (Q4); Medicine (miscellaneous) (Q4); Research and Theory (Q4)";"Health Professions; Medicine; Nursing; Social Sciences" +25139;21101146362;"International Transfer Pricing Journal";journal;"23529172, 13853074";"International Bureau of Fiscal Documentation (IBFD)";No;No;0,153;Q3;3;39;182;374;19;181;0,13;9,59;46,03;0;Netherlands;Western Europe;"International Bureau of Fiscal Documentation (IBFD)";"2019-2025";"Law (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +25140;21101259372;"Journal of Coaching and Sports Science";journal;"29631483, 29631459";"FoundAE (Foundation of Advanced Education)";Yes;No;0,153;Q3;3;27;33;1103;33;33;1,17;40,85;25,29;0;Indonesia;Asiatic Region;"FoundAE (Foundation of Advanced Education)";"2022-2025";"Health Professions (miscellaneous) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions" +25141;21101262994;"Kinesiologia Slovenica";journal;"13182269, 22324062";"University of Ljubljana";No;No;0,153;Q3;4;25;104;958;39;104;0,33;38,32;28,83;0;Slovenia;Eastern Europe;"University of Ljubljana";"2020-2025";"Anthropology (Q3); Education (Q4); Health (social science) (Q4)";"Social Sciences" +25142;21100287304;"Manchester Journal of International Economic Law";journal;"17423945";"Electronicpublications.org Ltd";No;No;0,153;Q3;7;19;65;1493;15;61;0,21;78,58;25,00;0;United Kingdom;Western Europe;"Electronicpublications.org Ltd";"2013-2025";"Law (Q3); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +25143;21101021436;"Per Linguam";journal;"22240012, 02592312";"Department of General Linguistics, Stellenbosch University";Yes;No;0,153;Q3;5;8;46;358;26;39;0,57;44,75;30,00;0;South Africa;Africa;"Department of General Linguistics, Stellenbosch University";"2020-2025";"Linguistics and Language (Q3); Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +25144;19914;"Pravny Obzor";journal;"00326984, 27299228";"Slovak Academic Press Ltd";No;No;0,153;Q3;3;36;109;736;12;97;0,09;20,44;27,27;0;Slovakia;Eastern Europe;"Slovak Academic Press Ltd";"1979-1991, 2019-2025";"Law (Q3)";"Social Sciences" +25145;5800207577;"Revista Internacional de Linguistica Iberoamericana";journal;"15799425, 22555218";"Vervuert Verlag";No;No;0,153;Q3;18;22;68;819;17;64;0,28;37,23;61,90;0;Germany;Western Europe;"Vervuert Verlag";"2003-2025";"Linguistics and Language (Q3)";"Social Sciences" +25146;5600155086;"Rhetoric and Public Affairs";journal;"10948392, 15345238";"Michigan State University Press";No;No;0,153;Q3;21;4;59;569;27;58;0,21;142,25;80,00;0;United States;Northern America;"Michigan State University Press";"2010-2025";"Linguistics and Language (Q3); Communication (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25147;25902;"South African Journal on Human Rights";journal;"02587203, 19962126";"Taylor and Francis Ltd.";No;No;0,153;Q3;19;6;51;293;25;49;0,31;48,83;40,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1986, 1992-1994, 2008-2026";"Law (Q3); Sociology and Political Science (Q4)";"Social Sciences" +25148;21100868396;"Urbanism. Architecture. Constructions";journal;"20696469, 20690509";"NIRD URBAN-INCERC";Yes;Yes;0,153;Q3;7;6;49;272;32;49;0,64;45,33;73,33;0;Romania;Eastern Europe;"NIRD URBAN-INCERC";"2018-2025";"Architecture (Q3); Urban Studies (Q3); Building and Construction (Q4); Geography, Planning and Development (Q4)";"Engineering; Social Sciences" +25149;144841;"Acta Angiologica";journal;"1234950X, 16443276";"Via Medica";Yes;Yes;0,153;Q4;9;20;58;548;18;57;0,35;27,40;38,78;0;Poland;Eastern Europe;"Via Medica";"2005-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +25150;19700186882;"Advances in Transportation Studies";journal;"18245463";"Aracne Editrice";No;No;0,153;Q4;22;102;327;3024;136;326;0,45;29,65;34,69;0;Italy;Western Europe;"Aracne Editrice";"2004-2025";"Automotive Engineering (Q4); Civil and Structural Engineering (Q4); Safety, Risk, Reliability and Quality (Q4); Transportation (Q4)";"Engineering; Social Sciences" +25151;21101134739;"Annals of Vascular Surgery - Brief Reports and Innovations";journal;"27726878";"Elsevier Inc.";Yes;No;0,153;Q4;5;65;316;1026;88;308;0,27;15,78;31,54;0;United States;Northern America;"Elsevier Inc.";"2021-2025";"Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4)";"Medicine" +25152;21101061922;"Bulgarian Journal of Psychiatry";journal;"2367881X, 23678828";"Bulgarian Psychiatric Association (BPA)";No;No;0,153;Q4;4;28;75;679;9;70;0,09;24,25;48,39;0;Bulgaria;Eastern Europe;"Bulgarian Psychiatric Association (BPA)";"2019-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +25153;21101019768;"Chinese Journal of Orthopaedic Trauma";journal;"16717600";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,153;Q4;10;137;505;4021;197;499;0,45;29,35;25,86;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2026";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4); Surgery (Q4)";"Health Professions; Medicine" +25154;21101048275;"Chinese Journal of Practical Nursing";journal;"16727088";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,153;Q4;6;280;1246;8583;331;1246;0,29;30,65;65,53;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2026";"Nursing (miscellaneous) (Q4)";"Nursing" +25155;21101342175;"Computer Science (China)";journal;"1002137X";"Editorial office of Computer Science";No;No;0,153;Q4;18;774;2439;26362;1372;2439;0,59;34,06;33,50;0;China;Asiatic Region;"Editorial office of Computer Science";"2021-2026";"Artificial Intelligence (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences" +25156;21100898990;"Dynamic Relationships Management Journal";journal;"2350367X, 22325867";"Slovenian Academy of Management";Yes;Yes;0,153;Q4;5;8;41;544;31;38;0,57;68,00;30,00;0;Slovenia;Eastern Europe;"Slovenian Academy of Management";"2018-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Organizational Behavior and Human Resource Management (Q4); Social Psychology (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Psychology" +25157;21100323400;"Ekologiya Cheloveka (Human Ecology)";journal;"17280869";"Eco-Vector LLC";No;No;0,153;Q4;17;71;215;2245;87;214;0,34;31,62;64,24;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2012-2026";"Ecology (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Environmental Science; Medicine; Social Sciences" +25158;21101161055;"Entomologia Hellenica";journal;"24593885, 02545381";"National Documentation Centre";No;No;0,153;Q4;5;16;23;564;11;23;0,40;35,25;43,33;0;Greece;Western Europe;"National Documentation Centre";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +25159;38677;"Ernahrungs Umschau";journal;"01740008";"Umschau Zeitschriftenverlag Breidenstein GmbH";No;No;0,153;Q4;20;151;398;1339;71;269;0,18;8,87;72,37;0;Germany;Western Europe;"Umschau Zeitschriftenverlag Breidenstein GmbH";"1973-1978, 1981-1982, 2003-2026";"Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +25160;21840;"Folia Pharmacologica Japonica";journal;"00155691, 13478397";"Japanese Pharmacological Society";No;No;0,153;Q4;19;91;319;1736;65;247;0,24;19,08;21,05;0;Japan;Asiatic Region;"Japanese Pharmacological Society";"1944, 1947-1948, 1951-1956, 1958-2026";"Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +25161;21100855812;"Genij Ortopedii";journal;"10284427, 2542131X";"Russian Ilizarov Scientific Center for Restorative Traumatology and Orthopaedics";Yes;Yes;0,153;Q4;11;87;294;2910;130;287;0,52;33,45;25,95;0;Russian Federation;Eastern Europe;"Russian Ilizarov Scientific Center for Restorative Traumatology and Orthopaedics";"2017-2025";"Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +25162;21100248905;"Green Energy and Technology";book series;"18653537, 18653529";"Springer Science + Business Media";No;No;0,153;Q4;47;728;1802;34969;1190;604;0,67;48,03;37,27;1;United States;Northern America;"Springer Science + Business Media";"2009-2026";"Energy Engineering and Power Technology (Q4); Industrial and Manufacturing Engineering (Q4); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering; Environmental Science" +25163;21100242251;"International Journal of Critical Computer-Based Systems";journal;"17578779, 17578787";"Inderscience";No;No;0,153;Q4;14;0;19;0;11;19;0,53;0,00;0,00;0;Switzerland;Western Europe;"Inderscience";"2010-2024";"Computer Science (miscellaneous) (Q4)";"Computer Science" +25164;21101199360;"International Journal of Informatics and Communication Technology";journal;"22528776, 27222616";"Intelektual Pustaka Media Utama";No;No;0,153;Q4;7;84;92;2954;104;92;1,13;35,17;30,73;0;Indonesia;Asiatic Region;"Intelektual Pustaka Media Utama";"2023-2025";"Computer Science (miscellaneous) (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +25165;21100207616;"International Journal of Sociotechnology and Knowledge Development";journal;"19416253, 19416261";"IGI Global Publishing";No;No;0,153;Q4;19;1;58;33;55;58;2,00;33,00;0,00;0;United States;Northern America;"IGI Global Publishing";"2009-2026";"Computer Science Applications (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences" +25166;13236;"Investigaciones Geograficas";journal;"24487279, 01884611";"Instituto de Geografia";Yes;Yes;0,153;Q4;23;19;158;818;51;135;0,27;43,05;33,33;0;Mexico;Latin America;"Instituto de Geografia";"1969, 1984, 1990-1993, 1995-1996, 2001, 2003-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +25167;21101042491;"Journal of Neuroanaesthesiology and Critical Care";journal;"23480548";"Georg Thieme Verlag";Yes;Yes;0,153;Q4;6;42;150;712;38;115;0,27;16,95;38,98;0;Germany;Western Europe;"Georg Thieme Verlag";"2016, 2019-2026";"Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4); Neurology (clinical) (Q4)";"Medicine" +25168;21101060131;"Journal of Organizational Behavior Education";journal;"16497627, 20479999";"Istanbul Universitesi";No;No;0,153;Q4;2;29;51;809;10;50;0,24;27,90;52,46;0;United Kingdom;Western Europe;"Istanbul Universitesi";"2019-2025";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Industrial Relations (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +25169;21101310072;"Journal of Rare Diseases";journal;"2731085X, 20970501";"";Yes;No;0,153;Q4;6;127;276;4262;109;271;0,45;33,56;53,06;0;China;Asiatic Region;"";"2022-2026";"Drug Guides (Q4); Genetics (clinical) (Q4); Health Policy (Q4); Internal Medicine (Q4)";"Medicine" +25170;21101285761;"Journal of Science and Mathematics Letters";journal;"26008718, 24622052";"Universiti Pendidikan Sultan Idris";No;No;0,153;Q4;5;30;96;1274;67;96;0,79;42,47;48,33;0;Malaysia;Asiatic Region;"Universiti Pendidikan Sultan Idris";"2021-2026";"Multidisciplinary (Q4)";"Multidisciplinary" +25171;21101288811;"Journal of the Civil Engineering Forum";journal;"25811037, 25495925";"Department of Civil and Environmental Engineering, Faculty of Engineering, Universitas Gadjah Mada";Yes;No;0,153;Q4;3;30;30;1053;25;30;0,83;35,10;28,40;0;Indonesia;Asiatic Region;"Department of Civil and Environmental Engineering, Faculty of Engineering, Universitas Gadjah Mada";"2024-2026";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Environmental Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering; Environmental Science" +25172;21101138526;"Journal of Wound Management and Research";journal;"25860402, 25860410";"Korean Wound Management Society";No;No;0,153;Q4;6;24;119;530;45;116;0,45;22,08;21,43;0;South Korea;Asiatic Region;"Korean Wound Management Society";"2019-2025";"Medical and Surgical Nursing (Q4); Surgery (Q4)";"Medicine; Nursing" +25173;21101264304;"Jurnal Mekanikal";journal;"22893873";"Penerbit UTM Press";No;No;0,153;Q4;4;27;55;1045;35;55;0,57;38,70;30,00;0;Malaysia;Asiatic Region;"Penerbit UTM Press";"2020-2025";"Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Engineering; Materials Science" +25174;21100421887;"Lecture Notes in Information Systems and Organisation";book series;"21954968, 21954976";"Springer Science and Business Media Deutschland GmbH";No;No;0,153;Q4;27;211;537;8710;313;464;0,60;41,28;34,12;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2013-2025";"Computer Science Applications (Q4); Information Systems (Q4); Information Systems and Management (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences" +25175;21101216646;"Logistique et Management";journal;"23779640, 12507970";"Informa UK Ltd";No;No;0,153;Q4;6;25;62;1407;31;50;0,33;56,28;56,25;0;United Kingdom;Western Europe;"Informa UK Ltd";"2020-2026";"Management Information Systems (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +25176;35635;"Magyar Onkologia";journal;"00250244, 20600399";"Magyar Onkologusok Tarsasaga";No;No;0,153;Q4;13;44;122;2227;36;101;0,16;50,61;31,20;0;Hungary;Eastern Europe;"Magyar Onkologusok Tarsasaga";"1961-1964, 1973-1985, 1987-1991, 1996-1997, 1999-2025";"Medicine (miscellaneous) (Q4); Oncology (Q4)";"Medicine" +25177;21100861095;"Medical Radiology and Radiation Safety";journal;"10246177, 26189615";"A.I. Burnazyan Federal Medical Biophysical Center";Yes;No;0,153;Q4;8;96;246;2470;68;241;0,32;25,73;53,22;0;Russian Federation;Eastern Europe;"A.I. Burnazyan Federal Medical Biophysical Center";"2018-2026";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +25178;6800153105;"Mentalhigiene es Pszichoszomatika";journal;"17863759, 14198126";"Akademiai Kiado";No;No;0,153;Q4;17;14;53;1101;19;52;0,33;78,64;51,61;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2025";"Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +25179;21546;"Neiranji Xuebao/Transactions of CSICE (Chinese Society for Internal Combustion Engines)";journal;"10000909";"Chinese Society for Internal Combustion Engines";No;No;0,153;Q4;19;52;204;1178;102;204;0,55;22,65;28,57;0;China;Asiatic Region;"Chinese Society for Internal Combustion Engines";"1983-1989, 2001-2025";"Automotive Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +25180;21100833041;"Nervno-Myshechnye Bolezni";journal;"24130443, 22228721";"ABV-press Publishing House";Yes;Yes;0,153;Q4;7;17;107;542;47;105;0,33;31,88;68,09;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2017-2025";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +25181;21794;"Northwest Science";journal;"0029344X";"Washington State University Press";No;No;0,153;Q4;42;13;45;679;17;42;0,37;52,23;39,13;0;United States;Northern America;"Washington State University Press";"1975, 1977-2025";"Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +25182;21101108653;"NTP Developmental and Reproductive Toxicity Technical Report Series";book series;"26902052";"United States National Toxicology Program";No;No;0,153;Q4;2;0;7;0;2;3;0,00;0,00;0,00;0;United States;Northern America;"United States National Toxicology Program";"2020, 2022";"Developmental Biology (Q4); Pharmacology (Q4); Toxicology (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +25183;14582;"Oftalmologicheskii Zhurnal";journal;"24138746, 00300675";"Phosphen Ltd.";Yes;No;0,153;Q4;9;61;207;1513;73;207;0,36;24,80;66,67;0;Ukraine;Eastern Europe;"Phosphen Ltd.";"1959, 1961-1993, 2015-2025";"Ophthalmology (Q4)";"Medicine" +25184;21100264818;"Pakistan Journal of Scientific and Industrial Research Series B: Biological Sciences";journal;"22232567, 22216421";"PCSIR-Scientific Information Centre";No;No;0,153;Q4;10;37;121;1352;65;121;0,48;36,54;39,61;0;Pakistan;Asiatic Region;"PCSIR-Scientific Information Centre";"2011-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +25185;20500195028;"Phuket Marine Biological Center Research Bulletin";journal;"08581088";"Phuket Marine Biological Center";No;No;0,153;Q4;9;1;14;43;6;14;0,42;43,00;0,00;0;Thailand;Asiatic Region;"Phuket Marine Biological Center";"2011-2013, 2016-2025";"Aquatic Science (Q4); Oceanography (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +25186;21101257984;"Proceedings of the International Conference on Electromagnetics in Advanced Applications, ICEAA";journal;"28351355, 27662284";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,153;Q4;4;335;295;3976;136;293;0,46;11,87;22,93;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Instrumentation (Q4); Radiation (Q4)";"Computer Science; Engineering; Physics and Astronomy" +25187;21100330713;"Psychoanalytic Perspectives";journal;"1551806X, 21636958";"Routledge";No;No;0,153;Q4;15;46;102;717;19;76;0,19;15,59;58,33;0;United States;Northern America;"Routledge";"2003-2026";"Psychology (miscellaneous) (Q4)";"Psychology" +25188;21100197731;"Revista Catalana d'Ornitologia";journal;"16974697, 23403764";"Institut Catala d'Ornitologia";No;Yes;0,153;Q4;8;1;20;21;9;18;0,53;21,00;17,65;0;Spain;Western Europe;"Institut Catala d'Ornitologia";"2011-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +25189;21101369340;"Romanian Journal of Mathematics and Computer Science";journal;"2247689X";"Technical University of Civil Engineering of Bucharest";No;No;0,153;Q4;3;19;42;456;14;42;0,37;24,00;13,79;0;Romania;Eastern Europe;"Technical University of Civil Engineering of Bucharest";"2021-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4)";"Mathematics" +25190;21101028164;"Scientia Paedagogica Experimentalis";journal;"05822351";"";No;No;0,153;Q4;4;12;27;369;9;26;0,47;30,75;71,43;0;Belgium;Western Europe;"";"2018-2025";"Education (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +25191;21100811516;"Serie Correlacion Geologica";journal;"15144186, 16669479";"Instituto Superior de Correlacion Geologica";Yes;Yes;0,153;Q4;6;6;26;373;6;26;0,38;62,17;44,44;0;Argentina;Latin America;"Instituto Superior de Correlacion Geologica";"2016-2025";"Geochemistry and Petrology (Q4); Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +25192;19456;"Shiyou Huagong Gaodeng Xuexiao Xuebao/Journal of Petrochemical Universities";journal;"1006396X";"Fushun Petroleum Institute";Yes;No;0,153;Q4;11;55;173;1758;86;173;0,45;31,96;36,32;0;China;Asiatic Region;"Fushun Petroleum Institute";"2001-2026";"Chemical Engineering (miscellaneous) (Q4); Energy Engineering and Power Technology (Q4); Fuel Technology (Q4)";"Chemical Engineering; Energy" +25193;21101038707;"Siberian Journal of Life Sciences and Agriculture";journal;"26586649, 26586657";"Science and Innovation Center Publishing House";Yes;No;0,153;Q4;11;168;433;5141;141;433;0,28;30,60;58,58;0;Russian Federation;Eastern Europe;"Science and Innovation Center Publishing House";"2018-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +25194;5800207367;"Transactions of the Korean Society of Mechanical Engineers, A";journal;"12264873, 22885226";"Korean Society of Mechanical Engineers";No;No;0,153;Q4;13;108;341;2113;85;341;0,25;19,56;19,87;0;South Korea;Asiatic Region;"Korean Society of Mechanical Engineers";"2007-2026";"Mechanical Engineering (Q4)";"Engineering" +25195;21101050380;"Turkish Journal of Plastic Surgery";journal;"25288644";"Wolters Kluwer Medknow Publications";Yes;Yes;0,153;Q4;5;33;40;879;9;37;0,23;26,64;18,09;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2016-2021, 2023-2026";"Surgery (Q4)";"Medicine" +25196;12491;"Vakuum in Forschung und Praxis";journal;"15222454, 0947076X";"Wiley-VCH Verlag";No;No;0,153;Q4;16;0;70;0;30;35;0,24;0,00;0,00;0;Germany;Western Europe;"Wiley-VCH Verlag";"1989-2024";"Condensed Matter Physics (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science; Physics and Astronomy" +25197;110421;"ASHRAE Transactions";conference and proceedings;"00012505";"American Society of Heating Refrigerating and Air-Conditioning Engineers";No;No;0,153;-;73;86;549;1458;132;543;0,27;16,95;23,05;0;United States;Northern America;"American Society of Heating Refrigerating and Air-Conditioning Engineers";"1969-1987, 1989-2025";"Building and Construction; Mechanical Engineering";"Engineering" +25198;21101157205;"BIO Web of Conferences";conference and proceedings;"21174458, 22731709";"EDP Sciences";Yes;Yes;0,153;-;21;2782;6893;52665;3328;6711;0,50;18,93;49,19;0;France;Western Europe;"EDP Sciences";"2019-2026";"Agricultural and Biological Sciences (miscellaneous); Agronomy and Crop Science; Horticulture; Plant Science";"Agricultural and Biological Sciences" +25199;21100225801;"Brazilian Symposium on Games and Digital Entertainment, SBGAMES";conference and proceedings;"21596662, 21596654";"IEEE Computer Society";No;No;0,153;-;15;0;23;0;17;20;0,00;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2011, 2014, 2016-2022";"Artificial Intelligence; Computer Graphics and Computer-Aided Design; Human-Computer Interaction; Software";"Computer Science" +25200;21101209157;"International Joint Conference on Computational Intelligence";conference and proceedings;"21843236";"Science and Technology Publications, Lda";No;No;0,153;-;5;0;171;0;81;168;0,61;0,00;0,00;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2010-2024";"Artificial Intelligence; Computational Theory and Mathematics";"Computer Science" +25201;21100992210;"Proceedings of the International Conference on Electrical Engineering and Informatics";conference and proceedings;"21556830";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,153;-;14;0;249;0;169;242;0,65;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2019-2024";"Electrical and Electronic Engineering; Information Systems";"Computer Science; Engineering" +25202;21101185513;"Proceedings of the International Conference on Informatics in Control, Automation and Robotics";conference and proceedings;"21842809";"Science and Technology Publications, Lda";No;No;0,153;-;7;129;351;2726;165;346;0,45;21,13;16,25;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2019-2025";"Artificial Intelligence; Signal Processing";"Computer Science" +25203;6100153026;"Revista Chilena de Literatura";journal;"00487651, 07182295";"Universidad de Chile, Facultad de Filosofia y Humanidades, Departamento de Literatura";Yes;Yes;0,152;Q1;13;0;153;0;16;146;0,14;0,00;0,00;0;Chile;Latin America;"Universidad de Chile, Facultad de Filosofia y Humanidades, Departamento de Literatura";"2007-2024";"Literature and Literary Theory (Q1)";"Arts and Humanities" +25204;21101190203;"Rotura: Journal of Communication, Culture and Arts";journal;"21848661";"University of Algarve Research Centre for Arts and Communication";Yes;Yes;0,152;Q1;3;47;84;1605;22;76;0,28;34,15;65,00;0;Portugal;Western Europe;"University of Algarve Research Centre for Arts and Communication";"2021-2025";"Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25205;5800155417;"Studia Anglica Posnaniensia";journal;"00816272";"De Gruyter Open Ltd.";Yes;Yes;0,152;Q1;8;0;17;0;7;17;0,17;0,00;0,00;0;Germany;Western Europe;"De Gruyter Open Ltd.";"2009-2023";"Literature and Literary Theory (Q1); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25206;79684;"Acta Ethnographica Hungarica";journal;"15882586, 12169803";"Akademiai Kiado";No;No;0,152;Q2;10;11;66;543;20;64;0,30;49,36;50,00;0;Hungary;Eastern Europe;"Akademiai Kiado";"1996-2021, 2023-2026";"Cultural Studies (Q2); Music (Q2); Demography (Q4)";"Arts and Humanities; Social Sciences" +25207;21100198903;"Bogoslovska Smotra";journal;"03523101";"University of Zagreb";Yes;Yes;0,152;Q2;5;48;148;1756;10;127;0,07;36,58;34,62;0;Croatia;Eastern Europe;"University of Zagreb";"2011-2025";"Religious Studies (Q2)";"Arts and Humanities" +25208;16300154708;"College Music Symposium";journal;"00695696, 2334203X";"";No;No;0,152;Q2;11;0;39;0;5;20;0,13;0,00;0,00;0;United States;Northern America;"";"1995-2008, 2011-2024";"Music (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +25209;21100322909;"Ethnologia Fennica";book series;"03551776";"Suomen Kansatieteilijoiden Yhdistys Ethnos";No;No;0,152;Q2;7;9;49;232;27;39;0,72;25,78;54,55;0;Finland;Western Europe;"Suomen Kansatieteilijoiden Yhdistys Ethnos";"2012-2025";"Cultural Studies (Q2); Anthropology (Q3)";"Social Sciences" +25210;21100867680;"Gosudarstvo, Religiia, Tserkov' v Rossii i za Rubezhom/State, Religion and Church in Russia and Worldwide";journal;"20737211, 20737203";"Russian Presidential Academy of National Economy and Public Administration";Yes;No;0,152;Q2;9;34;168;890;24;167;0,09;26,18;64,29;0;Russian Federation;Eastern Europe;"Russian Presidential Academy of National Economy and Public Administration";"2012-2026";"Religious Studies (Q2); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25211;26331;"Harvard Theological Review";journal;"14754517, 00178160";"Cambridge University Press";No;No;0,152;Q2;36;35;93;4087;35;93;0,34;116,77;32,43;0;United Kingdom;Western Europe;"Cambridge University Press";"1908-2025";"Religious Studies (Q2)";"Arts and Humanities" +25212;21100278321;"International Journal of China Studies";journal;"21803250";"Institute of China Studies";No;No;0,152;Q2;15;8;39;196;23;38;0,59;24,50;42,86;0;Malaysia;Asiatic Region;"Institute of China Studies";"2010-2025";"Cultural Studies (Q2); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25213;21100258856;"International Journal of Interdisciplinary Cultural Studies";journal;"23272554, 2327008X";"Common Ground Research Networks";No;No;0,152;Q2;5;38;44;1678;24;44;0,41;44,16;47,06;0;United States;Northern America;"Common Ground Research Networks";"2012-2025";"Cultural Studies (Q2)";"Social Sciences" +25214;28956;"Jahrbuch fur Wirtschaftsgeschichte";journal;"00752800, 21966842";"Walter de Gruyter GmbH";Yes;Yes;0,152;Q2;10;19;61;2293;46;60;0,80;120,68;30,77;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1960-1996, 1999-2025";"History (Q2); Economics and Econometrics (Q4)";"Arts and Humanities; Economics, Econometrics and Finance" +25215;21101054227;"Musicologist";journal;"26185652";"Trabzon University State Conservatory";No;No;0,152;Q2;5;35;31;1173;13;31;0,29;33,51;51,02;0;Turkey;Middle East;"Trabzon University State Conservatory";"2019-2025";"Music (Q2)";"Arts and Humanities" +25216;21100862240;"Pasado y Memoria";journal;"15793311, 23864745";"Universidad de Alicante";Yes;Yes;0,152;Q2;6;22;117;934;19;113;0,16;42,45;45,45;0;Spain;Western Europe;"Universidad de Alicante";"2017-2025";"History (Q2)";"Arts and Humanities" +25217;21100857773;"Quest. Issues in Contemporary Jewish History";journal;"2037741X";"Fondazione Centro di Documentazione Ebraica Contemporanea";Yes;Yes;0,152;Q2;4;10;36;185;7;34;0,08;18,50;50,00;0;Italy;Western Europe;"Fondazione Centro di Documentazione Ebraica Contemporanea";"2017-2025";"History (Q2)";"Arts and Humanities" +25218;21100813711;"Ragion Pratica";journal;"17202396, 26121441";"Societa Editrice Il Mulino";No;No;0,152;Q2;6;20;84;1128;10;83;0,06;56,40;22,73;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2016-2025";"Philosophy (Q2); Law (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25219;6500153138;"Studies in the History of Gardens and Designed Landscapes";journal;"14601176";"Taylor and Francis Ltd.";No;No;0,152;Q2;13;8;58;352;22;52;0,46;44,00;20,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Visual Arts and Performing Arts (Q2); Nature and Landscape Conservation (Q4)";"Arts and Humanities; Environmental Science" +25220;21101064948;"Substantia";journal;"25323997";"Firenze University Press";Yes;Yes;0,152;Q2;10;19;55;987;43;50;0,95;51,95;20,69;0;Italy;Western Europe;"Firenze University Press";"2019-2025";"History (Q2); History and Philosophy of Science (Q3); Chemistry (miscellaneous) (Q4)";"Arts and Humanities; Chemistry" +25221;16300154764;"Tijdschrift Voor Nederlandse Taal-en Letterkunde";journal;"00407550, 22120521";"Amsterdam University Press";No;No;0,152;Q2;10;16;44;722;14;36;0,23;45,13;68,18;0;Netherlands;Western Europe;"Amsterdam University Press";"2002-2017, 2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25222;21101246928;"Udayana Journal of Law and Culture";journal;"25490680";"Udayana University";Yes;Yes;0,152;Q2;4;10;35;754;22;35;0,74;75,40;46,43;0;Indonesia;Asiatic Region;"Udayana University";"2020-2025";"Cultural Studies (Q2); Gender Studies (Q3); Law (Q3); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +25223;19321;"Annals of Science";journal;"1464505X, 00033790";"Taylor and Francis Ltd.";No;No;0,152;Q3;26;49;55;2692;25;53;0,50;54,94;22,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1936-1939, 1941-1942, 1945, 1947-2026";"History and Philosophy of Science (Q3)";"Arts and Humanities" +25224;5800207569;"Casopis pro Moderni Filologii";journal;"00087386, 23366591";"Charles University, Faculty of Arts";Yes;Yes;0,152;Q3;5;15;48;401;10;40;0,29;26,73;61,29;0;Czech Republic;Eastern Europe;"Charles University, Faculty of Arts";"2011-2025";"Linguistics and Language (Q3)";"Social Sciences" +25225;21100925733;"International Journal of Public Administration in the Digital Age";journal;"23344539, 23344520";"IGI Global Publishing";No;No;0,152;Q3;10;2;5;155;9;5;1,80;77,50;0,00;0;United States;Northern America;"IGI Global Publishing";"2019-2021, 2023-2025";"Library and Information Sciences (Q3); Computer Science Applications (Q4); Public Administration (Q4)";"Computer Science; Social Sciences" +25226;21101076302;"Journal of Associated Medical Sciences";journal;"25396056";"Faculty of Associated Medical Sciences, Chiang Mai University";Yes;Yes;0,152;Q3;5;109;166;3367;60;162;0,34;30,89;62,06;0;Thailand;Asiatic Region;"Faculty of Associated Medical Sciences, Chiang Mai University";"2019-2026";"Health Professions (miscellaneous) (Q3); Medical Laboratory Technology (Q3); Health Information Management (Q4); Occupational Therapy (Q4)";"Health Professions" +25227;21101181957;"Journal of Sex- and Gender- Specific Medicine";journal;"29748194, 29748623";"Il Pensiero Scientifico Editore s.r.l.";No;No;0,152;Q3;10;23;71;927;34;53;0,22;40,30;51,05;0;Italy;Western Europe;"Il Pensiero Scientifico Editore s.r.l.";"2023-2025";"Gender Studies (Q3); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +25228;21101321299;"Journal of Uralic Linguistics";journal;"27723720";"John Benjamins Publishing Company";No;No;0,152;Q3;4;10;33;511;18;28;0,36;51,10;25,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2022-2025";"Linguistics and Language (Q3)";"Social Sciences" +25229;21101061829;"Law, Environment and Development Journal";journal;"17465893";"University of London";Yes;Yes;0,152;Q3;5;12;14;965;7;14;0,54;80,42;66,67;0;United Kingdom;Western Europe;"University of London";"2019-2025";"Law (Q3); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +25230;25631;"New Review of Hypermedia and Multimedia";journal;"17407842, 13614568";"Taylor and Francis Ltd.";No;No;0,152;Q3;37;23;33;1197;32;29;0,79;52,04;27,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Media Technology (Q3); Computer Science Applications (Q4); Information Systems (Q4)";"Computer Science; Engineering" +25231;21101391511;"Pacific Asia Conference on Information Systems";book series;"26896354";"Association for Information Systems";No;No;0,152;Q3;13;261;805;11155;244;802;0,18;42,74;38,56;0;United States;Northern America;"Association for Information Systems";"2021-2025";"Library and Information Sciences (Q3); Management Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Social Sciences" +25232;21101186343;"Peking University Law Journal";journal;"20525907, 20517483";"Informa UK Ltd";No;No;0,152;Q3;4;9;37;307;14;37;0,24;34,11;50,00;0;United Kingdom;Western Europe;"Informa UK Ltd";"2013-2025";"Law (Q3)";"Social Sciences" +25233;21100312401;"Revista Cubana de Informacion en Ciencias de la Salud";journal;"23072113";"Centro Nacional de Informacion de Ciencias Medicas";Yes;Yes;0,152;Q3;17;42;185;1180;44;167;0,23;28,10;51,81;0;Cuba;Latin America;"Centro Nacional de Informacion de Ciencias Medicas";"2013-2026";"Library and Information Sciences (Q3); Health Information Management (Q4); Health Policy (Q4)";"Health Professions; Medicine; Social Sciences" +25234;21101165612;"Revista Medica Electronica";journal;"16841824";"Editorial Ciencias Medicas";Yes;Yes;0,152;Q3;6;97;310;1966;76;291;0,22;20,27;53,30;0;Cuba;Latin America;"Editorial Ciencias Medicas";"2019-2025";"Health Professions (miscellaneous) (Q3); Dentistry (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Dentistry; Health Professions; Medicine" +25235;21100940511;"Territorios";journal;"01238418, 22157484";"Universidad del Rosario";Yes;Yes;0,152;Q3;6;29;93;1354;33;87;0,30;46,69;46,15;1;Colombia;Latin America;"Universidad del Rosario";"2019-2025";"Urban Studies (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +25236;10300153373;"Agroalimentaria";journal;"13160354";"Centro de Investigaciones Agroalimentarias (CIAAL)";Yes;Yes;0,152;Q4;9;18;62;622;16;55;0,34;34,56;45,00;0;Venezuela;Latin America;"Centro de Investigaciones Agroalimentarias (CIAAL)";"2007-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Food Science (Q4); Social Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Social Sciences" +25237;21100241803;"Amme Idaresi Dergisi";journal;"13001795";"Turkiye ve Orta Dogu Amme Idaresi Enstitusu";No;No;0,152;Q4;8;24;56;1366;21;56;0,41;56,92;31,25;0;Turkey;Middle East;"Turkiye ve Orta Dogu Amme Idaresi Enstitusu";"2008-2025";"Public Administration (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25238;19700177537;"Anali Hrvatskog Politoloskog Drustva";journal;"18456707, 18475299";"Croatia Political Science Association";Yes;Yes;0,152;Q4;7;3;53;242;8;41;0,24;80,67;0,00;0;Croatia;Eastern Europe;"Croatia Political Science Association";"2016-2025";"Sociology and Political Science (Q4)";"Social Sciences" +25239;25193;"Applied Sciences";journal;"14545101";"Balkan Society of Geometers";Yes;Yes;0,152;Q4;25;0;18;0;8;18;0,00;0,00;0,00;0;Romania;Eastern Europe;"Balkan Society of Geometers";"1999-2022";"Applied Mathematics (Q4); Computer Science Applications (Q4); Engineering (miscellaneous) (Q4); Fluid Flow and Transfer Processes (Q4); Instrumentation (Q4); Materials Science (miscellaneous) (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering; Computer Science; Engineering; Materials Science; Mathematics; Physics and Astronomy" +25240;21101128471;"Asian Development Policy Review";journal;"23138343, 25182544";"Asian Economic and Social Society";No;No;0,152;Q4;8;30;66;1486;50;66;0,89;49,53;33,93;0;United States;Northern America;"Asian Economic and Social Society";"2019-2025";"Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +25241;21100903868;"Assistive Technology Outcomes and Benefits";journal;"19387261";"Assistive Technology Industry Association";No;No;0,152;Q4;6;11;39;207;19;35;0,52;18,82;72,41;0;United States;Northern America;"Assistive Technology Industry Association";"2018-2025";"Biomedical Engineering (Q4); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Engineering; Health Professions; Medicine" +25242;21101165011;"Asten Journal of Teacher Education";journal;"25078100, 24677825";"Association of Southeast Asian Teacher Education Network (AsTEN)";No;No;0,152;Q4;3;27;29;782;24;27;0,70;28,96;57,50;0;Philippines;Asiatic Region;"Association of Southeast Asian Teacher Education Network (AsTEN)";"2019, 2021-2025";"Education (Q4)";"Social Sciences" +25243;21101213853;"Bangladesh Journal of Multidisciplinary Scientific Research";journal;"26878518, 2687850X";"Centre for Research on Islamic Banking and Finance and Business";No;No;0,152;Q4;6;34;49;1540;52;49;1,18;45,29;39,33;0;United States;Northern America;"Centre for Research on Islamic Banking and Finance and Business";"2020-2026";"Multidisciplinary (Q4)";"Multidisciplinary" +25244;17600155231;"Biopolymers and Cell";journal;"19936842, 02337657";"National Academy of Sciences of Ukraine";Yes;No;0,152;Q4;19;14;65;521;65;65;1,20;37,21;40,54;0;Ukraine;Eastern Europe;"National Academy of Sciences of Ukraine";"1996-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology" +25245;21100773812;"Chemistry Journal of Moldova";journal;"18571727, 23451688";"Institute of Chemistry, Academy of Sciences of Moldova";Yes;Yes;0,152;Q4;14;22;71;678;45;69;0,52;30,82;51,72;0;Moldova;Eastern Europe;"Institute of Chemistry, Academy of Sciences of Moldova";"2016-2025";"Chemistry (miscellaneous) (Q4); Environmental Chemistry (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering; Chemistry; Environmental Science" +25246;21101298382;"Chinese Journal of Geriatrics";journal;"02549026";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,152;Q4;12;236;828;7330;358;828;0,43;31,06;47,99;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2021-2026";"Geriatrics and Gerontology (Q4)";"Medicine" +25247;21101021191;"Chinese Journal of Obstetrics and Gynecology and Pediatrics";journal;"16735250";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,152;Q4;6;68;358;1791;117;358;0,09;26,34;53,67;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2025";"Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +25248;19500157818;"Cuadernos de Desarrollo Rural";journal;"01221450, 22157727";"Pontificia Universidad Javeriana";Yes;Yes;0,152;Q4;16;7;28;319;13;28;0,27;45,57;27,78;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2008-2025";"Agronomy and Crop Science (Q4); Economics and Econometrics (Q4); Geography, Planning and Development (Q4)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance; Social Sciences" +25249;21101268315;"Digital Medicine";journal;"2542629X, 22268561";"Wolters Kluwer Health";No;No;0,152;Q4;5;6;60;229;39;55;0,76;38,17;47,06;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2016-2018, 2020-2025";"Health Informatics (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +25250;21100305345;"Encyclopaideia";journal;"18258670, 1590492X";"Bononia University Press";Yes;Yes;0,152;Q4;11;15;88;600;43;78;0,52;40,00;80,00;0;Italy;Western Europe;"Bononia University Press";"2013-2025";"Education (Q4); E-learning (Q4)";"Social Sciences" +25251;21101042951;"Estonian Discussions on Economic Policy";journal;"22281878, 17365597";"Federation of State Medical Boards";Yes;Yes;0,152;Q4;3;17;87;296;14;67;0,26;17,41;32,14;0;United States;Northern America;"Federation of State Medical Boards";"2019-2025";"Development (Q4); Economics and Econometrics (Q4); Finance (Q4); Public Administration (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +25252;21100820707;"Estudos em Comunicacao";journal;"16464974";"Universidade da Beira Interior";Yes;Yes;0,152;Q4;9;12;79;577;20;79;0,30;48,08;40,00;0;Portugal;Western Europe;"Universidade da Beira Interior";"2017-2025";"Communication (Q4)";"Social Sciences" +25253;21101343525;"Eurasian Otorhinolaryngology and Audiology";journal;"31048773";"Professionalnye Izdaniya";No;No;0,152;Q4;1;56;110;1140;15;109;0,14;20,36;53,80;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2025";"Medicine (miscellaneous) (Q4); Otorhinolaryngology (Q4)";"Medicine" +25254;21101115405;"European Journal of Clinical and Experimental Medicine";journal;"25442406, 25441361";"Rzeszow University Press";Yes;Yes;0,152;Q4;7;122;293;5096;124;291;0,44;41,77;53,38;0;Poland;Eastern Europe;"Rzeszow University Press";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25255;21100945962;"Genetics of Aquatic Organisms";journal;"24591831, 25872265";"Central Fisheries Research Institute";Yes;No;0,152;Q4;8;16;46;1170;20;46;0,34;73,13;44,07;0;Turkey;Middle East;"Central Fisheries Research Institute";"2017-2026";"Aquatic Science (Q4); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +25256;110104;"Giornale Italiano di Medicina del Lavoro ed Ergonomia";journal;"15927830";"Tipografia PI-ME Editrice Srl";No;No;0,152;Q4;27;0;19;0;11;19;0,00;0,00;0,00;0;Italy;Western Europe;"Tipografia PI-ME Editrice Srl";"1997-2022";"Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +25257;15751;"Heron";journal;"15744078, 00467316";"Technische Universiteit Delft/Delft University of Technology";Yes;No;0,152;Q4;30;0;20;0;6;18;0,36;0,00;0,00;0;Netherlands;Western Europe;"Technische Universiteit Delft/Delft University of Technology";"1970, 1972-1994, 1996-2024";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +25258;19700181115;"ICIC Express Letters, Part B: Applications";journal;"21852766";"ICIC Express Letters Office";No;No;0,152;Q4;16;156;453;2857;194;451;0,42;18,31;33,33;0;Japan;Asiatic Region;"ICIC Express Letters Office";"2010-2026";"Computer Science (miscellaneous) (Q4)";"Computer Science" +25259;23440;"Indian Journal of Physiology and Pharmacology";journal;"00195499";"Scientific Scholar";No;No;0,152;Q4;59;58;132;1495;62;123;0,46;25,78;40,34;0;India;Asiatic Region;"Scientific Scholar";"1959-2025";"Pharmacology (Q4); Physiology (Q4); Physiology (medical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +25260;21101320738;"Innovative Food Technologies";journal;"27831760, 2783350X";"Iranian Research Organization for Science and Technology";No;No;0,152;Q4;4;24;72;1030;39;72;0,65;42,92;28,57;0;Iran;Middle East;"Iranian Research Organization for Science and Technology";"2021-2026";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Food Science (Q4); Process Chemistry and Technology (Q4)";"Agricultural and Biological Sciences; Chemical Engineering; Chemistry" +25261;10900153321;"International Journal of Agriculture and Biology";journal;"15608530, 18149596";"Friends Science Publishers";Yes;No;0,152;Q4;59;168;352;6894;192;352;0,58;41,04;35,67;0;Pakistan;Asiatic Region;"Friends Science Publishers";"2008-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +25262;17500155011;"International Journal of Intelligent Enterprise";journal;"17453232, 17453240";"Inderscience Enterprises Ltd";No;No;0,152;Q4;15;21;75;952;47;75;0,49;45,33;34,85;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007, 2009, 2012-2026";"Business and International Management (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +25263;21100206221;"International Journal of Technoethics";journal;"19473451, 1947346X";"IGI Global Publishing";No;No;0,152;Q4;16;2;13;87;15;13;1,71;43,50;50,00;0;United States;Northern America;"IGI Global Publishing";"2010-2025";"Engineering (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Engineering; Social Sciences" +25264;27764;"Observatory";journal;"00297704";"Rutherford Appleton Laboratory";No;No;0,152;Q4;16;0;97;0;14;72;0,13;0,00;0,00;0;United Kingdom;Western Europe;"Rutherford Appleton Laboratory";"1996-2013, 2015, 2017-2024";"Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Physics and Astronomy" +25265;21100942420;"Opera Medica et Physiologica";journal;"25002295, 25002287";"Lobachevsky State University of Nizhny Novgorod";Yes;No;0,152;Q4;8;57;148;2219;98;148;0,83;38,93;65,12;0;Russian Federation;Eastern Europe;"Lobachevsky State University of Nizhny Novgorod";"2015-2025";"Pathology and Forensic Medicine (Q4); Physiology (Q4); Physiology (medical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +25266;12434;"Operative Techniques in Orthopaedics";journal;"10486666, 15583848";"W.B. Saunders";No;No;0,152;Q4;33;20;94;1010;29;82;0,33;50,50;19,61;0;United States;Northern America;"W.B. Saunders";"1991-2025";"Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +25267;18800156712;"Optoelectronics and Advanced Materials, Rapid Communications";journal;"18426573, 20653824";"National Institute of Optoelectronics";No;No;0,152;Q4;37;63;220;1981;127;219;0,73;31,44;33,68;0;Romania;Eastern Europe;"National Institute of Optoelectronics";"2008-2025";"Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science" +25268;5600153144;"Polis (Italy)";journal;"11209488";"Societa Editrice Il Mulino";No;No;0,152;Q4;16;15;44;642;23;43;0,47;42,80;54,55;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1990, 1997, 2000-2008, 2010-2025";"Sociology and Political Science (Q4)";"Social Sciences" +25269;21100980105;"Proceedings on Applied Botany, Genetics and Breeding";journal;"22278834, 26190982";"N.I. Vavilov All-Russian Institute of Plant Genetic Resources";Yes;Yes;0,152;Q4;8;90;264;2649;82;262;0,32;29,43;63,80;0;Russian Federation;Eastern Europe;"N.I. Vavilov All-Russian Institute of Plant Genetic Resources";"2017, 2019-2025";"Biochemistry (Q4); Biotechnology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4); Molecular Biology (Q4); Physiology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +25270;21101067386;"Revista U.D.C.A Actualidad and Divulgacion Cientifica";journal;"26192551, 01234226";"Universidad de Ciencias Aplicadas y Ambientales U.D.C.A";Yes;Yes;0,152;Q4;8;33;136;1428;66;131;0,36;43,27;39,45;0;Colombia;Latin America;"Universidad de Ciencias Aplicadas y Ambientales U.D.C.A";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Social Sciences" +25271;144988;"Revue Francaise de Photogrammetrie et de Teledetection";journal;"17689791";"Soc. Francaise de Photogrammetrie et de Teledetection";Yes;Yes;0,152;Q4;11;3;16;35;6;14;0,33;11,67;25,00;0;France;Western Europe;"Soc. Francaise de Photogrammetrie et de Teledetection";"2004-2015, 2017-2025";"Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +25272;21101360402;"Revue Internationale PME";journal;"07765436, 19189699";"";No;No;0,152;Q4;6;27;74;1816;29;59;0,33;67,26;46,00;0;France;Western Europe;"";"2020-2025";"Business, Management and Accounting (miscellaneous) (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +25273;19700188357;"Scientia Medica";journal;"19806108, 18065562";"Editora Universitaria da PUCRS";Yes;Yes;0,152;Q4;12;14;56;297;25;56;0,50;21,21;63,27;0;Brazil;Latin America;"Editora Universitaria da PUCRS";"2011-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25274;21101290588;"Shahroud Journal of Medical Sciences";journal;"27832023, 24236594";"Shahroud University of Medical Sciences";No;No;0,152;Q4;3;37;96;1261;29;95;0,28;34,08;59,52;0;Iran;Middle East;"Shahroud University of Medical Sciences";"2022-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25275;21100909466;"Slovak Journal of Political Sciences";journal;"13359096";"University of Saints Cyril and Methodius in Trnava - Faculty of Social Sciences";Yes;No;0,152;Q4;9;5;26;322;15;26;0,13;64,40;50,00;0;Slovakia;Eastern Europe;"University of Saints Cyril and Methodius in Trnava - Faculty of Social Sciences";"2019-2025";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25276;4700153602;"Sociologias";journal;"15174522";"Instituto de Filosofia e Ciencias Humanas-UFRGS";Yes;Yes;0,152;Q4;24;1;105;67;39;103;0,25;67,00;100,00;0;Brazil;Latin America;"Instituto de Filosofia e Ciencias Humanas-UFRGS";"2000-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +25277;21100255398;"Springer Proceedings in Mathematics and Statistics";book series;"21941009, 21941017";"Springer";No;No;0,152;Q4;35;1040;2428;20284;730;2258;0,30;19,50;35,55;0;United States;Northern America;"Springer";"2012-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +25278;21101042996;"Translational Science of Rare Diseases";journal;"22146512, 22146490";"SAGE Publications Ltd";No;No;0,152;Q4;3;10;16;392;8;15;0,25;39,20;61,76;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2019-2020, 2022-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25279;21100197524;"Trauma Monthly";journal;"22517472, 22517464";"";Yes;No;0,152;Q4;27;36;140;1023;53;135;0,49;28,42;34,53;0;Iran;Middle East;"";"2011-2026";"Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4); Medicine (miscellaneous) (Q4); Surgery (Q4)";"Medicine" +25280;21101201501;"Turkish Journal of Child and Adolescent Mental Health";journal;"26873532";"Galenos Publishing House";No;No;0,152;Q4;4;31;106;1062;36;92;0,39;34,26;67,06;0;Turkey;Middle East;"Galenos Publishing House";"2020-2025";"Epidemiology (Q4); Experimental and Cognitive Psychology (Q4); Genetics (clinical) (Q4); Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4)";"Medicine; Psychology" +25281;21101238426;"Ukrainian Neurosurgical Journal";journal;"26639092, 26639084";"SI Romodanov Neurosurgery Institute of the National Academy of Medical Sciences of Ukraine";Yes;Yes;0,152;Q4;3;36;81;1342;17;81;0,28;37,28;29,13;0;Ukraine;Eastern Europe;"SI Romodanov Neurosurgery Institute of the National Academy of Medical Sciences of Ukraine";"2022-2025";"Cellular and Molecular Neuroscience (Q4); Critical Care and Intensive Care Medicine (Q4); Neurology (clinical) (Q4); Surgery (Q4)";"Medicine; Neuroscience" +25282;21100879714;"International Conference on Advanced Robotics and Intelligent Systems, ARIS";conference and proceedings;"25726919, 23743255";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,152;-;10;18;83;277;44;80;0,51;15,39;30,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017, 2020, 2022-2025";"Artificial Intelligence; Control and Systems Engineering";"Computer Science; Engineering" +25283;120046;"International Conference on Signal Processing Proceedings, ICSP";conference and proceedings;"21645221, 2164523X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,152;-;40;0;276;0;133;270;0,23;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1996, 1998, 2002, 2004, 2006-2008, 2010, 2012, 2014-2016, 2018-2020, 2022, 2024";"Computer Science Applications; Signal Processing; Software";"Computer Science" +25284;21101201072;"Proceedings of the IEEE International Conference on Intelligent Data Acquisition and Advanced Computing Systems: Technology and Applications, IDAACS";conference and proceedings;"27704262, 27704254";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,152;-;6;0;225;0;181;220;0,80;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2023";"Artificial Intelligence; Computer Science Applications; Computer Vision and Pattern Recognition; Control and Optimization; Information Systems; Information Systems and Management; Instrumentation; Modeling and Simulation";"Computer Science; Decision Sciences; Mathematics; Physics and Astronomy" +25285;21101077468;"Springer Proceedings in Business and Economics";conference and proceedings;"21987246, 21987254";"Springer Nature";No;No;0,152;-;29;1356;2731;44714;1461;2577;0,54;32,97;48,82;2;Switzerland;Western Europe;"Springer Nature";"2014-2026";"Business, Management and Accounting (miscellaneous); Economics, Econometrics and Finance (miscellaneous)";"Business, Management and Accounting; Economics, Econometrics and Finance" +25286;21100259543;"Anuario Colombiano de Historia Social y de la Cultura";journal;"01202456, 22565647";"Universidad Nacional de Colombia";Yes;Yes;0,151;Q2;11;41;118;1802;24;114;0,20;43,95;35,14;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2013-2025";"Cultural Studies (Q2); History (Q2)";"Arts and Humanities; Social Sciences" +25287;21100373236;"Boletin Cientifico del Centro de Museos";journal;"01233068";"Universidad de Caldas";Yes;No;0,151;Q2;11;10;79;512;21;79;0,18;51,20;38,71;0;Colombia;Latin America;"Universidad de Caldas";"2014-2025";"Museology (Q2); Conservation (Q3)";"Arts and Humanities" +25288;5800208080;"Bulletin of Spanish Studies";journal;"14753820, 14783428";"Routledge";No;No;0,151;Q2;10;71;181;2801;31;180;0,15;39,45;55,07;0;United States;Northern America;"Routledge";"2009-2026";"Cultural Studies (Q2); Literature and Literary Theory (Q2)";"Arts and Humanities; Social Sciences" +25289;21100854772;"Cuadernos Europeos de Deusto";journal;"11308354, 24453587";"Universidad de Deusto";Yes;Yes;0,151;Q2;6;12;65;569;36;64;0,44;47,42;45,45;0;Spain;Western Europe;"Universidad de Deusto";"2017-2025";"Cultural Studies (Q2); History (Q2); Law (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +25290;16800154749;"European Journal of Jewish Studies";journal;"10259996, 1872471X";"Brill Academic Publishers";No;No;0,151;Q2;8;10;42;939;13;38;0,33;93,90;41,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2026";"Cultural Studies (Q2); History (Q2); Literature and Literary Theory (Q2); Religious Studies (Q2)";"Arts and Humanities; Social Sciences" +25291;21100258855;"International Journal of Architectonic, Spatial, and Environmental Design";journal;"23251662, 23251670";"Common Ground Research Networks";No;No;0,151;Q2;7;22;52;1024;21;51;0,38;46,55;74,36;0;United States;Northern America;"Common Ground Research Networks";"2012-2025";"Visual Arts and Performing Arts (Q2); Architecture (Q3); Urban Studies (Q3)";"Arts and Humanities; Engineering; Social Sciences" +25292;21100285458;"International Journal of Public Theology";journal;"15697320, 18725171";"Brill Academic Publishers";No;No;0,151;Q2;9;33;92;2162;20;75;0,20;65,52;20,69;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2025";"Religious Studies (Q2); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25293;21101115667;"Journal of Early Christian History";journal;"24714054, 2222582X";"Taylor and Francis Ltd.";No;No;0,151;Q2;8;12;44;525;19;41;0,41;43,75;35,71;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +25294;16100154757;"Journal of Feminist Studies in Religion";journal;"87554178, 15533913";"Indiana University Press";No;No;0,151;Q2;20;32;113;660;27;97;0,22;20,63;66,67;0;United States;Northern America;"Indiana University Press";"2002-2008, 2011-2025";"Religious Studies (Q2); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +25295;5600155201;"Journal of Religion";journal;"00224189, 15496538";"University of Chicago Press";No;No;0,151;Q2;26;16;61;366;18;57;0,29;22,88;31,25;0;United States;Northern America;"University of Chicago Press";"1982, 1996-2025";"Religious Studies (Q2)";"Arts and Humanities" +25296;5800208085;"Organon F";journal;"13350668, 25857150";"Slovak Academy of Sciences - Inst of Philosophy";Yes;Yes;0,151;Q2;12;15;67;512;15;65;0,24;34,13;25,00;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences - Inst of Philosophy";"2002-2025";"Philosophy (Q2)";"Arts and Humanities" +25297;21100205962;"Tempo (Brazil)";journal;"14137704";"Universidade Federal Fluminense";Yes;No;0,151;Q2;12;30;129;939;22;128;0,18;31,30;46,15;0;Brazil;Latin America;"Universidade Federal Fluminense";"1999, 2001, 2007-2025";"History (Q2)";"Arts and Humanities" +25298;7100153140;"Vivarium";journal;"15685349, 00427543";"Brill Academic Publishers";No;No;0,151;Q2;20;14;30;511;8;30;0,37;36,50;15,38;0;Netherlands;Western Europe;"Brill Academic Publishers";"1963-1965, 1967-1982, 1984, 1986-2004, 2006-2026";"History (Q2); Philosophy (Q2)";"Arts and Humanities" +25299;21101048988;"Ankara Medical Journal";journal;"13032283, 21484570";"Ankara Yildirim Beyazit University";Yes;Yes;0,151;Q3;7;39;125;946;55;123;0,42;24,26;44,33;0;Turkey;Middle East;"Ankara Yildirim Beyazit University";"2019-2025";"Family Practice (Q3); Health Policy (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +25300;5800172268;"Boletin Mexicano de Derecho Comparado";journal;"00418633";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,151;Q3;12;30;96;1427;19;96;0,14;47,57;51,72;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1991, 2009-2026";"Law (Q3)";"Social Sciences" +25301;21100239836;"Digital Evidence and Electronic Signature Law Review";journal;"17564611";"Vlex";No;No;0,151;Q3;6;0;23;0;20;17;0,93;0,00;0,00;0;United Kingdom;Western Europe;"Vlex";"2012, 2019-2024";"Law (Q3)";"Social Sciences" +25302;21100447819;"Estudos do Quaternario";journal;"08740801, 21828660";"APEQ - Associacao Portuguesa para o Estudo do Quaternario";No;No;0,151;Q3;9;4;14;276;6;14;0,50;69,00;57,14;0;Portugal;Western Europe;"APEQ - Associacao Portuguesa para o Estudo do Quaternario";"2015-2019, 2021-2025";"Anthropology (Q3); Archeology (Q3); Archeology (arts and humanities) (Q3); Earth-Surface Processes (Q4); Geology (Q4); Paleontology (Q4)";"Arts and Humanities; Earth and Planetary Sciences; Social Sciences" +25303;15584;"Evolution Psychiatrique";journal;"17696674, 00143855";"Elsevier Masson s.r.l.";No;No;0,151;Q3;16;72;196;2920;45;173;0,16;40,56;46,60;1;France;Western Europe;"Elsevier Masson s.r.l.";"1948-1979, 1996-2026";"Arts and Humanities (miscellaneous) (Q3); Psychiatry and Mental Health (Q4)";"Arts and Humanities; Medicine" +25304;21101079410;"Kutafin Law Review";journal;"27130525, 27130533";"Kutafin Moscow State Law University (MSAL)";No;No;0,151;Q3;4;22;110;583;49;103;0,39;26,50;41,86;0;Russian Federation;Eastern Europe;"Kutafin Moscow State Law University (MSAL)";"2021-2025";"Law (Q3)";"Social Sciences" +25305;21100837220;"Revista Latinoamericana de Derecho Social";journal;"24487899, 18704670";"Universidad Nacional Autonoma de Mexico, Instituto de Astronomia";Yes;Yes;0,151;Q3;6;53;65;1705;14;65;0,13;32,17;33,33;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico, Instituto de Astronomia";"2016-2025";"Law (Q3)";"Social Sciences" +25306;21101039841;"Signata";journal;"25657097, 20329806";"Universite de Liege, Centre de Semiotique et Rhetorique";Yes;Yes;0,151;Q3;5;18;58;921;20;51;0,42;51,17;37,50;0;France;Western Europe;"Universite de Liege, Centre de Semiotique et Rhetorique";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +25307;21101393120;"Treballs de Sociolinguistica Catalana";journal;"20139136, 02110784";"Catalan Society of Sociolinguistics";No;No;0,151;Q3;2;11;40;305;9;31;0,26;27,73;41,67;0;Spain;Western Europe;"Catalan Society of Sociolinguistics";"2022-2025";"Linguistics and Language (Q3)";"Social Sciences" +25308;21100845376;"Veredas do Direito";journal;"18063845, 21798699";"Editora Dom Helder";Yes;Yes;0,151;Q3;5;17;95;735;19;93;0,26;43,24;51,85;0;Brazil;Latin America;"Editora Dom Helder";"2017-2025";"Law (Q3); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +25309;145512;"Acta Scientiarum - Health Sciences";journal;"18078648, 16799291";"Eduem - Editora da Universidade Estadual de Maringa";Yes;Yes;0,151;Q4;14;30;125;906;45;125;0,41;30,20;65,77;0;Brazil;Latin America;"Eduem - Editora da Universidade Estadual de Maringa";"2003-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +25310;16020;"Administration";journal;"00018325, 24499471";"De Gruyter Open Ltd.";Yes;Yes;0,151;Q4;12;20;84;798;30;80;0,32;39,90;56,25;0;Germany;Western Europe;"De Gruyter Open Ltd.";"2015-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Public Administration (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +25311;21435;"Anestezi Dergisi";journal;"13000578";"Anestezi Dergisi";Yes;No;0,151;Q4;7;28;183;635;47;170;0,21;22,68;56,82;0;Turkey;Middle East;"Anestezi Dergisi";"2002-2025";"Anesthesiology and Pain Medicine (Q4)";"Medicine" +25312;19600157016;"Annales Mathematicae et Informaticae";journal;"17875021, 17876117";"Eszterhazy Karoly College";Yes;No;0,151;Q4;18;1;88;23;38;88;0,49;23,00;0,00;0;Hungary;Eastern Europe;"Eszterhazy Karoly College";"1997-2025";"Computer Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Mathematics" +25313;19587;"Arbeitsmedizin Sozialmedizin Umweltmedizin";journal;"23634669, 09446052";"Alfons W. Gentner Verlag GmbH & Co. KG";No;No;0,151;Q4;15;110;424;840;35;359;0,09;7,64;45,50;0;Germany;Western Europe;"Alfons W. Gentner Verlag GmbH & Co. KG";"1994-2026";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +25314;21100855507;"Bulletin of the International Association for Paleodontology";journal;"18466273";"University of Zagreb, International Association for Paleodontology";Yes;Yes;0,151;Q4;5;19;36;649;19;36;0,71;34,16;39,13;0;Croatia;Eastern Europe;"University of Zagreb, International Association for Paleodontology";"2017-2025";"Dentistry (miscellaneous) (Q4); Paleontology (Q4)";"Dentistry; Earth and Planetary Sciences" +25315;21101027491;"Case Reports in Pulmonology";journal;"20906854, 20906846";"John Wiley and Sons Ltd";Yes;No;0,151;Q4;9;21;39;393;18;39;0,33;18,71;42,57;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2013, 2018-2026";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +25316;21100980695;"Central European Journal of Sport Sciences and Medicine";journal;"23009705, 23532807";"Wydawnictwo Naukowe Uniwersytetu Szczecinskiego";Yes;Yes;0,151;Q4;7;9;90;376;40;90;0,36;41,78;40,00;0;Poland;Eastern Europe;"Wydawnictwo Naukowe Uniwersytetu Szczecinskiego";"2019-2025";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Physiology (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Biochemistry, Genetics and Molecular Biology; Business, Management and Accounting; Health Professions; Medicine" +25317;21100379744;"Contaduria y Administracion";journal;"24488410, 01861042";"Universidad Nacional Autonoma de Mexico";Yes;No;0,151;Q4;27;55;188;3063;108;188;0,56;55,69;40,00;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2014-2026";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +25318;4700152435;"Current Respiratory Medicine Reviews";journal;"1573398X, 18756387";"Bentham Science Publishers";No;No;0,151;Q4;16;72;128;4357;40;113;0,28;60,51;53,47;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2006-2026";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +25319;21100207641;"European Oncology and Haematology";journal;"20455275, 20455283";"Touch Briefings";Yes;No;0,151;Q4;9;0;50;0;13;46;0,22;0,00;0,00;0;United Kingdom;Western Europe;"Touch Briefings";"2012-2024";"Hematology (Q4); Oncology (Q4)";"Medicine" +25320;15601;"Gayana - Botanica";journal;"00165301, 07176643";"Universidad de Concepcion";Yes;No;0,151;Q4;23;1;41;20;15;41;0,38;20,00;66,67;0;Chile;Latin America;"Universidad de Concepcion";"1981-1982, 1984, 2002-2025";"Ecology (Q4); Horticulture (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +25321;21100924752;"Geology and Mineral Resources of Siberia";journal;"23119594, 20780575";"Siberian Research Institute of Geology, Geophysics and Mineral Resources";No;No;0,151;Q4;6;5;141;87;38;140;0,32;17,40;36,36;0;Russian Federation;Eastern Europe;"Siberian Research Institute of Geology, Geophysics and Mineral Resources";"2019-2024";"Geochemistry and Petrology (Q4); Geology (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +25322;21101119528;"Humanities (Switzerland)";journal;"20760787";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,151;Q4;14;243;441;9854;172;428;0,39;40,55;56,25;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2011-2013, 2015-2026";"Multidisciplinary (Q4)";"Multidisciplinary" +25323;21101307725;"Hydrogen, Fuel Cell and Energy Storage";journal;"29808537, 29808863";"Iranian Research Organization for Science and Technology";No;No;0,151;Q4;5;24;60;733;37;60;0,60;30,54;10,00;0;Iran;Middle East;"Iranian Research Organization for Science and Technology";"2021-2025";"Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +25324;13735;"Indian Journal of Otology";journal;"22499520, 09717749";"Wolters Kluwer Medknow Publications";Yes;No;0,151;Q4;16;65;177;1229;38;176;0,21;18,91;38,67;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"1999-2025";"Otorhinolaryngology (Q4)";"Medicine" +25325;21101309937;"Indian Journal of Pain";journal;"23217820, 09705333";"Wolters Kluwer Medknow Publications";Yes;No;0,151;Q4;3;25;118;371;36;100;0,31;14,84;41,27;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2020, 2023-2025";"Anesthesiology and Pain Medicine (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +25326;12100154404;"International Journal of Dynamical Systems and Differential Equations";journal;"17523591, 17523583";"Inderscience Enterprises Ltd";No;No;0,151;Q4;16;23;60;668;18;60;0,34;29,04;37,50;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2009, 2011-2012, 2015-2025";"Control and Optimization (Q4); Discrete Mathematics and Combinatorics (Q4); Engineering (miscellaneous) (Q4)";"Engineering; Mathematics" +25327;21100228019;"International Journal of Embedded and Real-Time Communication Systems";journal;"19473184, 19473176";"IGI Global Publishing";No;No;0,151;Q4;14;0;17;0;10;17;1,00;0,00;0,00;0;United States;Northern America;"IGI Global Publishing";"2010-2023";"Computer Science (miscellaneous) (Q4)";"Computer Science" +25328;7500153107;"International Journal of Vehicle Noise and Vibration";journal;"14791471, 1479148X";"Inderscience Enterprises Ltd";No;No;0,151;Q4;24;3;41;72;26;41;0,56;24,00;12,50;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2025";"Automotive Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +25329;21100394018;"Journal of Algebra and Applied Mathematics";journal;"23197234";"SAS International Publications";No;No;0,151;Q4;8;8;26;171;9;25;0,47;21,38;7,69;0;India;Asiatic Region;"SAS International Publications";"2012-2025";"Algebra and Number Theory (Q4); Applied Mathematics (Q4); Computational Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)";"Mathematics" +25330;21100981341;"Journal of Applied Hematology";journal;"24546976, 16585127";"Wolters Kluwer Medknow Publications";Yes;No;0,151;Q4;7;63;172;1830;64;154;0,39;29,05;37,44;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2025";"Hematology (Q4)";"Medicine" +25331;21101207464;"Journal of Boron";journal;"21499020, 26678438";"Turkish Energy, Nuclear and Mining Research Agency";No;No;0,151;Q4;6;16;66;822;38;66;0,59;51,38;45,00;0;Turkey;Middle East;"Turkish Energy, Nuclear and Mining Research Agency";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Energy (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Chemistry; Energy; Materials Science; Medicine; Physics and Astronomy" +25332;5900152897;"Journal of Design Research";journal;"17483050, 15691551";"Inderscience Enterprises Ltd";No;No;0,151;Q4;26;4;29;420;15;29;0,54;105,00;80,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2025";"Computer Graphics and Computer-Aided Design (Q4); Engineering (miscellaneous) (Q4)";"Computer Science; Engineering" +25333;21101155530;"Journal of Health System Research";journal;"27834093, 23225564";"Isfahan University of Medical Sciences(IUMS)";Yes;No;0,151;Q4;4;63;129;2099;46;127;0,25;33,32;53,02;0;Iran;Middle East;"Isfahan University of Medical Sciences(IUMS)";"2019-2026";"Environmental Engineering (Q4); Epidemiology (Q4); Health Policy (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Environmental Science; Medicine; Social Sciences" +25334;21101168874;"Journal of Meat Science";journal;"09755209";"ACS Publisher";No;No;0,151;Q4;4;11;54;498;23;54;0,34;45,27;25,00;0;India;Asiatic Region;"ACS Publisher";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +25335;21101012343;"Journal of Plantation Crops";journal;"24548480, 03045242";"";Yes;No;0,151;Q4;8;7;54;252;24;54;0,39;36,00;29,41;0;India;Asiatic Region;"";"2017-2025";"Agronomy and Crop Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +25336;21101112531;"Journal of Taiyuan University of Technology";journal;"10079432";"Taiyuan University of Technology";Yes;No;0,151;Q4;9;127;379;3299;181;379;0,40;25,98;37,38;0;China;Asiatic Region;"Taiyuan University of Technology";"2019-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +25337;21101197191;"Military Operations Research (United States)";journal;"10825983, 21632758";"Military Operations Research Society";No;No;0,151;Q4;4;19;41;612;11;38;0,29;32,21;17,95;0;United States;Northern America;"Military Operations Research Society";"2020-2025";"Political Science and International Relations (Q4); Safety Research (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25338;12990;"Periodicum Biologorum";journal;"00315362, 18490964";"Croatian Society of Natural Sciences";Yes;No;0,151;Q4;29;23;63;686;26;61;0,37;29,83;73,08;0;Croatia;Eastern Europe;"Croatian Society of Natural Sciences";"1980, 1984, 1986, 1990-2018, 2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +25339;21101017014;"Russian Journal of Clinical Ophthalmology";journal;"23117729, 26191571";"";Yes;Yes;0,151;Q4;7;40;113;1102;41;113;0,26;27,55;55,03;0;Russian Federation;Eastern Europe;"";"2019-2025";"Ophthalmology (Q4)";"Medicine" +25340;21101121566;"Scripta Medica (Banja Luka)";journal;"23037954, 03508218";"Faculty of Medicine, University of Banja Luka";Yes;Yes;0,151;Q4;8;119;195;5055;120;188;0,74;42,48;49,60;0;Bosnia and Herzegovina;Eastern Europe;"Faculty of Medicine, University of Banja Luka";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25341;21101052703;"Shanghai Chest";journal;"25213768";"AME Publishing Company";No;No;0,151;Q4;9;5;95;165;47;80;0,59;33,00;16,67;0;Hong Kong;Asiatic Region;"AME Publishing Company";"2017-2025";"Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4); Surgery (Q4)";"Medicine" +25342;5600153115;"Tempo Social";journal;"18094554, 01032070";"Universidade de Sao Paulo. Museu de Zoologia";Yes;Yes;0,151;Q4;21;11;111;300;39;111;0,32;27,27;45,45;0;Brazil;Latin America;"Universidade de Sao Paulo. Museu de Zoologia";"2007-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +25343;21101377432;"Turkish Endodontic Journal";journal;"24591726";"Turkish Endodontic Society";Yes;No;0,151;Q4;3;34;67;1129;19;67;0,22;33,21;69,41;0;Turkey;Middle East;"Turkish Endodontic Society";"2021-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +25344;21101066744;"Vestnik Vosstanovitel'noj Mediciny";journal;"20781962, 27132625";"National Medical Research Center of Rehabilitation and Balneology of the Ministry";Yes;Yes;0,151;Q4;8;78;249;2901;106;239;0,44;37,19;61,09;0;Russian Federation;Eastern Europe;"National Medical Research Center of Rehabilitation and Balneology of the Ministry";"2019-2025";"Health Policy (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +25345;21100232209;"India International Conference on Power Electronics, IICPE";conference and proceedings;"21603170, 21603162";"IEEE Computer Society";No;No;0,151;-;18;0;111;0;78;110;0,70;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2011-2012, 2015-2018, 2023";"Control and Systems Engineering; Electrical and Electronic Engineering; Energy Engineering and Power Technology";"Energy; Engineering" +25346;20600195647;"Mediterranean Microwave Symposium";conference and proceedings;"21579830, 21579822";"IEEE Computer Society";No;No;0,151;-;17;0;188;0;92;185;0,50;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2011, 2013, 2015-2019, 2022-2023";"Electrical and Electronic Engineering";"Engineering" +25347;21101189301;"Proceedings of the International Food Operations and Processing Simulation Workshop, FOODOPS";conference and proceedings;"27240355";"Cal-Tek srl";No;No;0,151;-;3;0;27;0;16;25;0,59;0,00;0,00;0;Italy;Western Europe;"Cal-Tek srl";"2023-2024";"Biotechnology; Food Science";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +25348;21101212280;"Textile Bioengineering and Informatics Symposium Proceedings, TBIS";conference and proceedings;"19423438";"";No;No;0,151;-;5;157;292;3316;46;264;0,24;21,12;46,70;0;Hong Kong;Asiatic Region;"";"2014-2025";"Bioengineering; Biomaterials; Health Informatics";"Chemical Engineering; Materials Science; Medicine" +25349;21101024199;"Disparidades. Revista de Antropologia";journal;"26596881";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,150;Q2;16;11;94;964;35;90;0,25;87,64;50,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2019-2025";"Cultural Studies (Q2); Anthropology (Q3); Linguistics and Language (Q3)";"Social Sciences" +25350;21100248009;"Ecclesiology";journal;"17455316, 17441366";"Brill Academic Publishers";No;No;0,150;Q2;5;17;56;796;9;48;0,19;46,82;35,71;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2025";"Religious Studies (Q2)";"Arts and Humanities" +25351;21100206009;"European Journal of Theology";journal;"26669730, 09602720";"Amsterdam University Press";No;No;0,150;Q2;4;15;42;543;10;38;0,17;36,20;9,09;0;Netherlands;Western Europe;"Amsterdam University Press";"2011-2025";"Religious Studies (Q2)";"Arts and Humanities" +25352;16400154727;"European Romantic Review";journal;"17404657, 10509585";"Routledge";No;No;0,150;Q2;18;32;118;1392;21;110;0,14;43,50;48,15;0;United Kingdom;Western Europe;"Routledge";"1990-2025";"Cultural Studies (Q2); Literature and Literary Theory (Q2)";"Arts and Humanities; Social Sciences" +25353;21101302103;"International Journal of Armenian Genocide Studies";journal;"18294405, 27382931";"Armenian Genocide Museum-Institute";Yes;No;0,150;Q2;3;13;26;627;11;25;0,47;48,23;33,33;0;Armenia;Eastern Europe;"Armenian Genocide Museum-Institute";"2021-2025";"Cultural Studies (Q2); History (Q2); Religious Studies (Q2); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +25354;5700168551;"International Journal of Media and Cultural Politics";journal;"20400918, 17408296";"Intellect Ltd.";No;No;0,150;Q2;17;3;33;137;16;32;0,43;45,67;50,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2009, 2013-2025";"Cultural Studies (Q2); Communication (Q4)";"Social Sciences" +25355;21101064974;"Journal for Continental Philosophy of Religion";journal;"25889605, 25889613";"Brill Academic Publishers";No;No;0,150;Q2;3;13;36;341;9;31;0,16;26,23;23,08;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2026";"Philosophy (Q2); Religious Studies (Q2)";"Arts and Humanities" +25356;21101190206;"Journal of Islamic and Muslim Studies";journal;"24707074, 24707066";"Indiana University Press";No;No;0,150;Q2;3;5;31;317;13;26;0,50;63,40;33,33;0;United States;Northern America;"Indiana University Press";"2019-2025";"Cultural Studies (Q2); Anthropology (Q3); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25357;21101053100;"Neizvestnyi Dostoevskii";journal;"24095788";"Petrozavodsk State University";Yes;Yes;0,150;Q2;5;8;89;252;19;89;0,28;31,50;90,91;0;Russian Federation;Eastern Europe;"Petrozavodsk State University";"2019-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25358;5800207642;"Oralia";journal;"15751430";"Arco Libros S.L.";No;No;0,150;Q2;9;0;8;0;4;8;1,00;0,00;0,00;0;Spain;Western Europe;"Arco Libros S.L.";"2011-2012, 2015-2023";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25359;5700153838;"Philosophy and Rhetoric";journal;"15272079, 00318213";"Penn State University Press";No;No;0,150;Q2;28;8;79;118;49;73;0,39;14,75;33,33;0;United States;Northern America;"Penn State University Press";"2002-2025";"Philosophy (Q2)";"Arts and Humanities" +25360;16566;"Radical History Review";journal;"15341453, 01636545";"Duke University Press";No;No;0,150;Q2;34;35;121;1645;75;101;0,55;47,00;61,29;0;United States;Northern America;"Duke University Press";"1979, 1984, 1986, 1999-2025";"History (Q2)";"Arts and Humanities" +25361;5800207568;"Scando-Slavica";journal;"00806765, 1600082X";"Routledge";No;No;0,150;Q2;12;16;53;562;15;46;0,33;35,13;77,27;0;United Kingdom;Western Europe;"Routledge";"1954, 1956-1995, 1997-2025";"Cultural Studies (Q2); History (Q2); Literature and Literary Theory (Q2); Archeology (arts and humanities) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25362;5600156254;"Slavonica";journal;"17458145, 13617427";"Taylor and Francis Ltd.";No;No;0,150;Q2;5;6;28;115;5;24;0,18;19,17;25,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1994-1995, 2012-2014, 2016-2026";"Cultural Studies (Q2); History (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Linguistics and Language (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25363;21101098863;"Southeast of Now";journal;"24249947, 24250147";"NUS Press Pte Ltd";Yes;Yes;0,150;Q2;4;22;60;1022;8;40;0,17;46,45;21,05;0;Singapore;Asiatic Region;"NUS Press Pte Ltd";"2019-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +25364;21100202945;"Tempo e Argumento";journal;"21751803";"State University of Santa Catarina";Yes;Yes;0,150;Q2;10;16;117;528;26;104;0,16;33,00;36,84;0;Brazil;Latin America;"State University of Santa Catarina";"2009-2026";"History (Q2)";"Arts and Humanities" +25365;21100896997;"Zagadnienia Filozoficzne w Nauce";journal;"24510602, 08678286";"Copernicus Center Press";Yes;Yes;0,150;Q2;5;4;65;166;23;62;0,46;41,50;0,00;0;Poland;Eastern Europe;"Copernicus Center Press";"2018-2025";"Philosophy (Q2); History and Philosophy of Science (Q3)";"Arts and Humanities" +25366;21101180440;"Ceridap";journal;"27239195";"Universita degli Studi di Milano";Yes;Yes;0,150;Q3;5;53;158;1484;55;158;0,46;28,00;44,05;0;Italy;Western Europe;"Universita degli Studi di Milano";"2020-2025";"Law (Q3); Public Administration (Q4)";"Social Sciences" +25367;21100898836;"ExELL";journal;"23034858";"";Yes;Yes;0,150;Q3;7;0;14;0;10;14;1,29;0,00;0,00;0;Germany;Western Europe;"";"2017-2023";"Linguistics and Language (Q3)";"Social Sciences" +25368;21100922188;"Farmatsiya i Farmakologiya";journal;"23079266, 24132241";"Volgograd State Medical University, Pyatigorsk Medical and Pharmaceutical Institute";Yes;Yes;0,150;Q3;10;31;108;1449;47;108;0,55;46,74;53,55;0;Russian Federation;Eastern Europe;"Volgograd State Medical University, Pyatigorsk Medical and Pharmaceutical Institute";"2019-2025";"Pharmacology (nursing) (Q3); Pharmacy (Q3); Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4)";"Health Professions; Medicine; Nursing; Pharmacology, Toxicology and Pharmaceutics" +25369;38850;"Industrial Archaeology Review";journal;"17458196, 03090728";"Maney Publishing";No;No;0,150;Q3;9;13;36;278;9;30;0,26;21,38;25,00;0;United Kingdom;Western Europe;"Maney Publishing";"1976-1982, 1984-1996, 2002-2026";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +25370;21100259507;"International Journal of Public Law and Policy";journal;"20447671, 20447663";"Inderscience";No;No;0,150;Q3;11;27;80;1676;60;80;0,92;62,07;40,00;0;Switzerland;Western Europe;"Inderscience";"2011-2017, 2019-2026";"Law (Q3); Sociology and Political Science (Q4)";"Social Sciences" +25371;19900188395;"Revista de Direito Sanitario";journal;"15164179, 23169044";"Universidade De Sao Paulo";Yes;Yes;0,150;Q3;5;18;76;777;16;75;0,05;43,17;40,63;0;Brazil;Latin America;"Universidade De Sao Paulo";"2016-2025";"Law (Q3); Health (social science) (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +25372;7200153147;"Territoire en Mouvement";journal;"19505698, 19544863";"Universite des Sciences et Technologiques de Lille";Yes;Yes;0,150;Q3;9;19;76;892;18;70;0,09;46,95;31,58;0;France;Western Europe;"Universite des Sciences et Technologiques de Lille";"2006-2008, 2011-2025";"Urban Studies (Q3); Geography, Planning and Development (Q4)";"Social Sciences" +25373;26559;"Acta Medica Iranica";journal;"00446025, 17359694";"Medical Sciences University of Teheran";Yes;Yes;0,150;Q4;40;51;294;1530;114;282;0,29;30,00;45,60;0;Iran;Middle East;"Medical Sciences University of Teheran";"1956-1960, 1974-1978, 1988, 2005-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25374;34601;"Acta Microbiologica Bulgarica";journal;"02048809, 26033755";"";No;No;0,150;Q4;7;65;169;2539;86;168;0,58;39,06;55,71;0;Bulgaria;Eastern Europe;"";"1978-1990, 1993, 2017-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Microbiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +25375;94905;"Aktuelle Urologie";journal;"00017868, 14388820";"Georg Thieme Verlag";No;No;0,150;Q4;15;137;406;1292;49;216;0,13;9,43;25,64;0;Germany;Western Europe;"Georg Thieme Verlag";"1972-2026";"Urology (Q4)";"Medicine" +25376;54360;"Akusherstvo i Ginekologiya (Russian Federation)";journal;"24125679, 03009092";"Bionika Media Ltd.";No;No;0,150;Q4;18;263;752;9559;381;744;0,51;36,35;75,78;0;Russian Federation;Eastern Europe;"Bionika Media Ltd.";"1945-1996, 2016-2026";"Obstetrics and Gynecology (Q4)";"Medicine" +25377;27464;"Annales de Geographie";journal;"17775884, 00034010";"Armand Colin";No;No;0,150;Q4;23;31;81;1542;18;78;0,17;49,74;45,83;0;France;Western Europe;"Armand Colin";"1979-2025";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +25378;21101160673;"Chinese Journal of Modern Applied Pharmacy";journal;"10077693";"Chinese Journal of Modern Applied Pharmacy Publishing House";No;No;0,150;Q4;9;517;1230;16327;569;1230;0,50;31,58;50,06;0;China;Asiatic Region;"Chinese Journal of Modern Applied Pharmacy Publishing House";"2019-2025";"Drug Discovery (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +25379;21100239601;"Chinese Rare Earths";journal;"10040277";"Editorial Office of Chinese Rare Earths";No;No;0,150;Q4;19;86;214;2708;108;214;0,48;31,49;35,14;0;China;Asiatic Region;"Editorial Office of Chinese Rare Earths";"2013-2025";"Materials Chemistry (Q4); Metals and Alloys (Q4)";"Materials Science" +25380;21100995058;"Condensed Matter and Interphases";journal;"26870711, 1606867X";"Voronezh State University";Yes;Yes;0,150;Q4;9;64;186;1968;89;186;0,50;30,75;36,21;0;Russian Federation;Eastern Europe;"Voronezh State University";"2019-2025";"Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Electrochemistry (Q4); Electronic, Optical and Magnetic Materials (Q4); Inorganic Chemistry (Q4); Materials Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +25381;13203;"Contemporary Pacific";journal;"1043898X, 15279464";"University of Hawaii Press";No;No;0,150;Q4;39;6;68;306;20;50;0,15;51,00;54,55;0;United States;Northern America;"University of Hawaii Press";"1992, 1996-2025";"Geography, Planning and Development (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25382;21101018315;"Edelweiss Applied Science and Technology";journal;"25768484";"Learning Gate";No;No;0,150;Q4;14;1068;1203;37399;884;1203;0,74;35,02;38,26;1;United States;Northern America;"Learning Gate";"2019-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +25383;21101173101;"Future Rare Diseases";journal;"23995270";"Taylor and Francis Ltd.";No;No;0,150;Q4;6;43;62;579;25;55;0,38;13,47;46,01;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2021-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25384;24057;"Gaodeng Xuexiao Huaxue Xuebao/Chemical Journal of Chinese Universities";journal;"02510790";"Higher Education Press Limited Company";No;No;0,150;Q4;27;176;719;6916;339;717;0,44;39,30;40,25;0;China;Asiatic Region;"Higher Education Press Limited Company";"1996-2026";"Chemistry (miscellaneous) (Q4)";"Chemistry" +25385;22371;"Hitotsubashi Journal of Economics";journal;"2436097X";"Hitotsubashi University";No;No;0,150;Q4;15;7;23;300;10;23;0,40;42,86;50,00;0;Japan;Asiatic Region;"Hitotsubashi University";"1996-2025";"Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +25386;21101021752;"Indonesian Journal of Forestry Research";journal;"23557079, 24068195";"Research, Development and Innovation Agency, Ministry of Environment and Forestry";Yes;No;0,150;Q4;8;12;55;498;33;55;0,57;41,50;38,64;0;Indonesia;Asiatic Region;"Research, Development and Innovation Agency, Ministry of Environment and Forestry";"2019-2025";"Ecology (Q4); Forestry (Q4)";"Agricultural and Biological Sciences; Environmental Science" +25387;25069;"Ingegneria Ferroviaria";journal;"00200956";"Collegio Ingegneria Ferroviaria Italiani";No;No;0,150;Q4;16;38;86;444;20;57;0,25;11,68;30,00;0;Italy;Western Europe;"Collegio Ingegneria Ferroviaria Italiani";"1972-1994, 1996-2025";"Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4); Transportation (Q4)";"Engineering; Social Sciences" +25388;21101208813;"Ingenieria (Colombia)";journal;"23448393, 0121750X";"Universidad Distrital Francisco Jose de Caldas";Yes;Yes;0,150;Q4;7;26;104;815;61;94;0,61;31,35;20,00;0;Colombia;Latin America;"Universidad Distrital Francisco Jose de Caldas";"2020-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +25389;11600153630;"Innovar";journal;"22486968, 01215051";"Universidad Nacional de Colombia";Yes;Yes;0,150;Q4;20;46;133;3058;91;120;0,61;66,48;49,48;1;Colombia;Latin America;"Universidad Nacional de Colombia";"2008-2026";"Accounting (Q4); Marketing (Q4); Public Administration (Q4); Sociology and Political Science (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +25390;21101189037;"International Journal of Advancement in Life Sciences Research";journal;"25814877";"Dr Tarak Nath Podder Memorial Foundation";No;No;0,150;Q4;9;65;98;2495;74;98;0,84;38,38;50,32;0;India;Asiatic Region;"Dr Tarak Nath Podder Memorial Foundation";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Health, Toxicology and Mutagenesis (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +25391;21100202505;"International Journal of Power Electronics";journal;"1756638X, 17566398";"Inderscience";No;No;0,150;Q4;16;22;120;813;71;120;0,67;36,95;30,19;0;Switzerland;Western Europe;"Inderscience";"2008-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +25392;19699;"International Journal of Services Technology and Management";journal;"14606720, 1741525X";"Inderscience Publishers";No;No;0,150;Q4;30;18;39;872;31;39;0,79;48,44;48,89;0;United Kingdom;Western Europe;"Inderscience Publishers";"2000-2025";"Computer Science Applications (Q4); E-learning (Q4); Engineering (miscellaneous) (Q4); Marketing (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science; Engineering; Social Sciences" +25393;19700174946;"Iranian Journal of Radiology";journal;"20082711, 17351065";"Brieflands";Yes;No;0,150;Q4;25;17;108;457;42;108;0,18;26,88;48,75;0;Netherlands;Western Europe;"Brieflands";"2008-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +25394;26570;"Journal of Cosmetic Science";journal;"15257886";"Society of Cosmetic Chemists";No;No;0,150;Q4;46;14;99;399;31;98;0,29;28,50;61,11;0;United States;Northern America;"Society of Cosmetic Chemists";"1996-2025";"Chemistry (miscellaneous) (Q4); Dermatology (Q4); Medicine (miscellaneous) (Q4)";"Chemistry; Medicine" +25395;21100927900;"Journal of Food Distribution Research";journal;"26433354";"Food Distribution Research Society";Yes;No;0,150;Q4;7;4;53;154;24;53;0,32;38,50;61,54;0;United States;Northern America;"Food Distribution Research Society";"2019-2025";"Agronomy and Crop Science (Q4); Economics and Econometrics (Q4); Food Science (Q4); Management Science and Operations Research (Q4); Marketing (Q4)";"Agricultural and Biological Sciences; Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +25396;27767;"Journal of Forensic Medicine and Toxicology";journal;"09744568, 09711929";"ACS Publisher";No;No;0,150;Q4;20;80;194;1595;20;187;0,11;19,94;29,27;0;India;Asiatic Region;"ACS Publisher";"1997-2025";"Pathology and Forensic Medicine (Q4); Toxicology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +25397;21101162829;"Journal of Instrumental Analysis";journal;"10044957";"China Association for Instrumental Analysis";No;No;0,150;Q4;12;310;669;11348;390;669;0,66;36,61;42,45;0;China;Asiatic Region;"China Association for Instrumental Analysis";"2019-2026";"Analytical Chemistry (Q4); Electrochemistry (Q4); Spectroscopy (Q4)";"Chemistry" +25398;21100889404;"Lecture Notes in Civil Engineering";book series;"23662565, 23662557";"Springer Singapore";No;No;0,150;Q4;31;9585;18466;175626;6397;17617;0,33;18,32;31,29;5;Switzerland;Western Europe;"Springer Singapore";"1975, 2016-2026";"Civil and Structural Engineering (Q4)";"Engineering" +25399;21101387913;"Management of Sustainable Development";journal;"22470220, 20669380";"Lucian Blaga University of Sibiu";Yes;No;0,150;Q4;5;17;65;612;39;64;0,58;36,00;46,67;0;Romania;Eastern Europe;"Lucian Blaga University of Sibiu";"2022-2025";"Economics and Econometrics (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Energy; Environmental Science; Social Sciences" +25400;21101114178;"Poblacion y Salud en Mesoamerica";journal;"16590201";"Universidad de Costa Rica";Yes;Yes;0,150;Q4;6;8;105;317;36;102;0,39;39,63;43,48;0;Costa Rica;Latin America;"Universidad de Costa Rica";"2019-2025";"Demography (Q4); Epidemiology (Q4); Health Informatics (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +25401;11700154711;"Psicooncologia";journal;"19888287, 16967240";"Universidad Complutense Madrid";Yes;Yes;0,150;Q4;15;22;65;768;24;62;0,35;34,91;74,29;0;Spain;Western Europe;"Universidad Complutense Madrid";"2008-2025";"Clinical Psychology (Q4); Oncology (Q4)";"Medicine; Psychology" +25402;7200153136;"Revista Veterinaria";journal;"16696840, 16684834";"Universidad Nacional de Nordeste (UNNE)";Yes;No;0,150;Q4;10;47;112;1648;42;112;0,39;35,06;48,36;0;Argentina;Latin America;"Universidad Nacional de Nordeste (UNNE)";"2007-2026";"Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +25403;4100151614;"Sages-Femmes";journal;"16374088";"Elsevier Masson s.r.l.";No;No;0,150;Q4;5;76;212;844;14;176;0,07;11,11;81,05;0;France;Western Europe;"Elsevier Masson s.r.l.";"2004-2026";"Maternity and Midwifery (Q4)";"Nursing" +25404;21100848432;"Scientific Mining Journal";journal;"25647024, 25872613";"Chamber of Mining Engineers of Turkey";No;No;0,150;Q4;9;4;50;247;19;50;0,42;61,75;0,00;0;Turkey;Middle East;"Chamber of Mining Engineers of Turkey";"2017-2025";"Geotechnical Engineering and Engineering Geology (Q4); Industrial and Manufacturing Engineering (Q4)";"Earth and Planetary Sciences; Engineering" +25405;5600153364;"Sociologia, Problemas e Praticas";journal;"08736529";"Editora Mundos Sociais";Yes;Yes;0,150;Q4;22;21;64;1034;28;64;0,44;49,24;62,26;0;Portugal;Western Europe;"Editora Mundos Sociais";"1996-2025";"Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25406;24193;"Taiwan Journal of Forest Science";journal;"10264469";"Taiwan Forestry Research Institute";No;No;0,150;Q4;17;10;64;409;13;63;0,16;40,90;25,00;0;Taiwan;Asiatic Region;"Taiwan Forestry Research Institute";"1998-2025";"Forestry (Q4)";"Agricultural and Biological Sciences" +25407;12310;"Technical Physics";journal;"10637842, 10906525";"Pleiades Publishing";No;No;0,150;Q4;43;88;662;1920;182;662;0,26;21,82;27,41;0;United States;Northern America;"Pleiades Publishing";"1996-2026";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +25408;21101021578;"U.Porto Journal of Engineering";journal;"21836493";"Universidade do Porto - Faculdade de Engenharia";Yes;Yes;0,150;Q4;9;15;144;701;84;138;0,70;46,73;11,90;0;Portugal;Western Europe;"Universidade do Porto - Faculdade de Engenharia";"2015-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +25409;85085;"Urologiia";journal;"24149020, 17282985";"Bionika Media Ltd.";No;No;0,150;Q4;15;137;403;3744;143;402;0,32;27,33;29,59;0;Russian Federation;Eastern Europe;"Bionika Media Ltd.";"1999-2025";"Urology (Q4)";"Medicine" +25410;5600152811;"USDA Forest Service - Research Note RMRS-RN";journal;"05024994";"USDA Forest Service";No;No;0,150;Q4;8;3;11;54;8;11;0,88;18,00;70,59;0;United States;Northern America;"USDA Forest Service";"1998-2002, 2004-2014, 2016-2025";"Ecology (Q4); Forestry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +25411;17482;"Voprosy Kurortologii Fizioterapii i Lechebnoi Fizicheskoi Kultury / Problems of Balneology, Physiotherapy and Therapeutic Physical Culture";journal;"00428787, 23091355";"Media Sphera Publishing Group";No;No;0,150;Q4;11;60;203;1785;87;201;0,45;29,75;57,14;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"1955, 1961-1963, 1965-2025";"Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +25412;12100154403;"WSEAS Transactions on Signal Processing";journal;"17905052, 22243488";"World Scientific and Engineering Academy and Society";No;No;0,150;Q4;21;19;63;454;42;63;0,26;23,89;32,26;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2008-2015, 2022-2026";"Computer Networks and Communications (Q4); Computer Vision and Pattern Recognition (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Signal Processing (Q4); Software (Q4)";"Computer Science; Engineering" +25413;63118;"Yerbilimleri/ Earth Sciences";journal;"13012894, 26872978";"Hacettepe Universitesi Yerbilmleri";No;No;0,150;Q4;17;8;40;327;22;40;0,60;40,88;35,71;0;Turkey;Middle East;"Hacettepe Universitesi Yerbilmleri";"1980-1982, 1984, 1996-1999, 2001-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +25414;61342;"Zhonghua nan ke xue = National journal of andrology";journal;"10093591";"Nanjing Jun Qu Nanjing Zong Yi Yuan zhu ban, Zhonghua Nan Ke Xue Za Zhi Bian Ji Bu Bian Ji Chu Ban";No;No;0,150;Q4;22;105;396;0;119;396;0,28;0,00;38,14;0;China;Asiatic Region;"Nanjing Jun Qu Nanjing Zong Yi Yuan zhu ban, Zhonghua Nan Ke Xue Za Zhi Bian Ji Bu Bian Ji Chu Ban";"2002-2017, 2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25415;19700173167;"Zywnosc. Nauka. Technologia. Jakosc/Food. Science Technology. Quality";journal;"24510777, 24510769";"Polish Society of Food Technologists";No;No;0,150;Q4;18;37;118;1799;51;118;0,39;48,62;70,69;0;Poland;Eastern Europe;"Polish Society of Food Technologists";"2009-2025";"Food Science (Q4); Industrial and Manufacturing Engineering (Q4)";"Agricultural and Biological Sciences; Engineering" +25416;52214;"CPEM Digest (Conference on Precision Electromagnetic Measurements)";conference and proceedings;"05891485";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,150;-;19;0;202;0;104;200;0,51;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1980, 1984, 1988, 1990, 1994, 1996, 1998, 2000, 2002, 2004, 2008, 2010, 2012, 2014, 2016, 2020, 2024";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Instrumentation";"Engineering; Materials Science; Physics and Astronomy" +25417;21100247050;"Frascati Physics Series";conference and proceedings;"11225157";"Istituto Nazionale di Fisica Nucleare";No;No;0,150;-;9;0;91;0;9;82;0,05;0,00;0,00;0;Italy;Western Europe;"Istituto Nazionale di Fisica Nucleare";"2005-2019, 2022, 2024";"Nuclear and High Energy Physics";"Physics and Astronomy" +25418;21100219921;"Iberian Conference on Information Systems and Technologies, CISTI";conference and proceedings;"21660735, 21660727";"IEEE Computer Society";No;No;0,150;-;25;0;803;0;388;799;0,47;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2008, 2012-2014, 2016-2023";"Computer Networks and Communications; Information Systems";"Computer Science" +25419;31517;"IEEE Region 10 Annual International Conference, Proceedings/TENCON";conference and proceedings;"21593450, 21593442";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,150;-;50;0;966;0;507;958;0,49;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1991-1993, 1995-1997, 1999-2000, 2002-2013, 2015-2024";"Computer Science Applications; Electrical and Electronic Engineering";"Computer Science; Engineering" +25420;19700177043;"Proceedings of the International Conference on Optimisation of Electrical and Electronic Equipment, OPTIM";conference and proceedings;"18420133";"Transilvania University of Brasov 1";No;No;0,150;-;25;64;59;1255;26;58;0,44;19,61;18,35;0;Romania;Eastern Europe;"Transilvania University of Brasov 1";"2010, 2012, 2023, 2025";"Electrical and Electronic Engineering";"Engineering" +25421;21101132401;"Proceedings of World Multi-Conference on Systemics, Cybernetics and Informatics, WMSCI";conference and proceedings;"27710947";"International Institute of Informatics and Cybernetics";No;No;0,150;-;4;76;224;2087;65;216;0,35;27,46;51,55;0;United States;Northern America;"International Institute of Informatics and Cybernetics";"2022-2025";"Artificial Intelligence; Computer Networks and Communications; Information Systems";"Computer Science" +25422;21101287733;"Academic Journal of Modern Philology";journal;"22997164, 23533218";"College for Interdisciplinary Studies, University of Wroclaw";No;No;0,149;Q2;2;112;54;3154;6;54;0,11;28,16;70,83;0;Poland;Eastern Europe;"College for Interdisciplinary Studies, University of Wroclaw";"2024-2025";"Literature and Literary Theory (Q2); Religious Studies (Q2); Anthropology (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25423;21100838211;"Applied Theatre Research";journal;"20493010, 20493029";"Intellect Ltd.";No;No;0,149;Q2;8;11;33;323;14;28;0,45;29,36;60,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2017-2025";"Cultural Studies (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities; Social Sciences" +25424;21100930076;"ArcHistoR";journal;"23848898";"Universita Mediterranea di Reggio Calabria";Yes;Yes;0,149;Q2;6;13;66;705;12;66;0,15;54,23;30,00;0;Italy;Western Europe;"Universita Mediterranea di Reggio Calabria";"2017-2025";"History (Q2); Visual Arts and Performing Arts (Q2); Architecture (Q3)";"Arts and Humanities; Engineering" +25425;21101266476;"Australian and New Zealand Journal of European Studies";journal;"18361803, 18372147";"European Studies Association of Australia and New Zealand (ESAANZ)";Yes;Yes;0,149;Q2;5;13;66;554;30;58;0,45;42,62;58,33;0;Australia;Pacific Region;"European Studies Association of Australia and New Zealand (ESAANZ)";"2020-2025";"Cultural Studies (Q2); History (Q2); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +25426;21101194974;"Bandung: Journal of the Global South";journal;"25900013, 21983534";"Brill Academic Publishers";No;No;0,149;Q2;12;16;58;806;37;55;0,36;50,38;31,82;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +25427;21100943915;"Cracow Indological Studies";journal;"17320917";"Ksiegarnia Akademicka Publishing Ltd";Yes;Yes;0,149;Q2;3;19;58;697;13;54;0,27;36,68;66,67;0;Poland;Eastern Europe;"Ksiegarnia Akademicka Publishing Ltd";"2019-2025";"History (Q2); Literature and Literary Theory (Q2); Religious Studies (Q2); Visual Arts and Performing Arts (Q2); Linguistics and Language (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +25428;21100872376;"Critical Historical Studies";journal;"23264462, 23264470";"University of Chicago Press";No;No;0,149;Q2;13;14;32;246;11;32;0,38;17,57;33,33;0;United States;Northern America;"University of Chicago Press";"2015-2025";"History (Q2)";"Arts and Humanities" +25429;21100199530;"Etnolog";journal;"23858729, 03540316";"Slovenski Etnografski Muzej";Yes;No;0,149;Q2;8;0;39;0;1;36;0,06;0,00;0,00;0;Slovenia;Eastern Europe;"Slovenski Etnografski Muzej";"1996-2024";"Cultural Studies (Q2); History (Q2); Museology (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +25430;21100223517;"Historia del Presente";journal;"15798135";"Asociacion Historiadores del Presente";No;No;0,149;Q2;4;10;75;954;10;73;0,13;95,40;50,00;0;Spain;Western Europe;"Asociacion Historiadores del Presente";"2012-2016, 2018-2025";"History (Q2)";"Arts and Humanities" +25431;27887;"Horizons";journal;"20508557, 03609669";"Cambridge University Press";No;No;0,149;Q2;9;13;60;893;13;53;0,22;68,69;25,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1970, 1974-2025";"Religious Studies (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +25432;21100782392;"International Journal of African Renaissance Studies";journal;"17537274, 18186874";"Taylor and Francis Ltd.";No;No;0,149;Q2;11;19;57;736;29;51;0,48;38,74;41,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2025";"History (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +25433;21100199535;"International Journal of Arts and Technology";journal;"17548861, 17548853";"Inderscience";No;No;0,149;Q2;23;12;30;400;22;30;0,71;33,33;45,83;0;Switzerland;Western Europe;"Inderscience";"2008-2017, 2019-2025";"Visual Arts and Performing Arts (Q2); Computer Science Applications (Q4)";"Arts and Humanities; Computer Science" +25434;21100814519;"Jewish Film and New Media";journal;"21690324, 21690332";"Wayne State University Press";No;No;0,149;Q2;7;0;27;0;3;24;0,00;0,00;0,00;0;United States;Northern America;"Wayne State University Press";"2013-2017, 2019-2023";"Visual Arts and Performing Arts (Q2); Anthropology (Q3); Cultural Studies (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +25435;19900191971;"Kemanusiaan";journal;"21804257, 13949330";"Penerbit Universiti Sains Malaysia";Yes;No;0,149;Q2;9;16;67;869;24;67;0,43;54,31;48,15;0;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2008-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +25436;21101377435;"Masalah-Masalah Hukum";journal;"20862695, 25274716";"Diponegoro University";Yes;No;0,149;Q2;4;22;95;975;29;95;0,23;44,32;21,21;0;Indonesia;Asiatic Region;"Diponegoro University";"2021-2025";"Philosophy (Q2); Law (Q3); Political Science and International Relations (Q4); Public Administration (Q4)";"Arts and Humanities; Social Sciences" +25437;24448;"Meta (Canada)";journal;"14921421, 00260452";"Presses de l'Universite de Montreal";No;No;0,149;Q2;48;0;86;0;18;81;0,09;0,00;0,00;0;Canada;Northern America;"Presses de l'Universite de Montreal";"1974, 2002-2024";"Philosophy (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25438;21101064979;"Revista Historia Social y de las Mentalidades";journal;"07175248, 07194749";"Universidad de Santiago de Chile";Yes;Yes;0,149;Q2;5;23;66;906;11;60;0,17;39,39;60,00;0;Chile;Latin America;"Universidad de Santiago de Chile";"2019-2025";"History (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +25439;144972;"Design Issues";journal;"15314790, 07479360";"MIT Press";No;No;0,149;Q3;50;22;93;0;86;68;0,65;0,00;62,16;0;United States;Northern America;"MIT Press";"2005-2025";"Arts and Humanities (miscellaneous) (Q3); Computer Graphics and Computer-Aided Design (Q4)";"Arts and Humanities; Computer Science" +25440;21100244843;"International Journal of Humanities Education";journal;"23272457, 23270063";"Common Ground Research Networks";No;No;0,149;Q3;5;13;39;505;18;38;0,63;38,85;50,00;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Arts and Humanities (miscellaneous) (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +25441;21101264206;"Journal of South Asian Association of Pediatric Dentistry";journal;"25821024";"Jaypee Brothers Medical Publishers (P) Ltd";Yes;No;0,149;Q3;5;57;103;1172;34;92;0,25;20,56;60,76;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2021-2025";"Periodontics (Q3); Dentistry (miscellaneous) (Q4)";"Dentistry" +25442;5800208054;"Linguistica Pragensia";journal;"08628432, 18059635";"";Yes;Yes;0,149;Q3;7;9;29;238;10;29;0,44;26,44;62,50;0;Germany;Western Europe;"";"2007-2025";"Linguistics and Language (Q3)";"Social Sciences" +25443;21101023184;"Momento";journal;"01214470, 25008013";"Universidad Nacional de Colombia";Yes;Yes;0,149;Q3;5;12;44;381;18;41;0,25;31,75;25,00;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2019-2026";"History and Philosophy of Science (Q3); Electronic, Optical and Magnetic Materials (Q4); Geophysics (Q4); Physical and Theoretical Chemistry (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Arts and Humanities; Chemistry; Earth and Planetary Sciences; Materials Science; Physics and Astronomy" +25444;21100239827;"Monatsschrift fur Kriminologie und Strafrechtsreform";journal;"00269301, 23661968";"Walter de Gruyter GmbH";No;No;0,149;Q3;11;17;75;1028;26;72;0,30;60,47;50,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1904, 1943, 2010-2026";"Law (Q3)";"Social Sciences" +25445;21100945170;"Plato Journal";journal;"20797567, 21834105";"Coimbra University Press";Yes;Yes;0,149;Q3;4;2;28;155;3;28;0,05;77,50;0,00;0;Portugal;Western Europe;"Coimbra University Press";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +25446;21100812388;"Revista Criminalidad";journal;"17943108, 22565531";"Policia Nacional de Colombia";Yes;Yes;0,149;Q3;9;26;98;1397;38;94;0,30;53,73;27,27;0;Colombia;Latin America;"Policia Nacional de Colombia";"2015-2025";"Arts and Humanities (miscellaneous) (Q3); Law (Q3); Social Psychology (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Psychology; Social Sciences" +25447;21101141651;"Revista Guillermo de Ockham";journal;"1794192X, 22563202";"University of San Buenaventura - Cali";Yes;Yes;0,149;Q3;6;20;108;1022;39;98;0,34;51,10;41,03;0;Colombia;Latin America;"University of San Buenaventura - Cali";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Psychology (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Psychology; Social Sciences" +25448;21101152765;"Revista Justicia y Derecho";journal;"07199392";"Universidad Autonoma de Chile";Yes;Yes;0,149;Q3;5;29;41;1331;12;40;0,23;45,90;39,39;0;Chile;Latin America;"Universidad Autonoma de Chile";"2019-2025";"Law (Q3); Political Science and International Relations (Q4)";"Social Sciences" +25449;21100920645;"Revista Numismatica Hecate";journal;"23868643";"Ediciones Hecate";Yes;Yes;0,149;Q3;4;8;47;448;5;47;0,08;56,00;28,57;0;Spain;Western Europe;"Ediciones Hecate";"2014-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +25450;21101204529;"Russian Journal of Stomatology";journal;"23095156, 20726406";"Media Sphera Publishing Group";No;No;0,149;Q3;4;41;70;718;18;70;0,31;17,51;62,99;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2011-2025";"Oral Surgery (Q3); Orthodontics (Q3); Dentistry (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Dentistry; Medicine" +25451;21100901214;"Writing and Pedagogy";journal;"17565847, 17565839";"University of Toronto Press";No;No;0,149;Q3;7;10;37;449;23;33;0,23;44,90;76,47;0;Canada;Northern America;"University of Toronto Press";"2014, 2018-2023, 2025";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +25452;21101113620;"Acta Zoologica Lilloana";journal;"00651729, 18526098";"Fundacion Miguel Lillo";Yes;Yes;0,149;Q4;3;53;112;2048;41;111;0,35;38,64;31,51;0;Argentina;Latin America;"Fundacion Miguel Lillo";"2019-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +25453;21101321445;"Al-Nahrain Journal for Engineering Sciences";journal;"25219162, 25219154";"Al-Nahrain University College of Engineering";Yes;No;0,149;Q4;6;62;113;2773;74;113;0,70;44,73;36,29;0;Iraq;Middle East;"Al-Nahrain University College of Engineering";"2021-2025";"Biomedical Engineering (Q4); Civil and Structural Engineering (Q4); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4); Software (Q4)";"Computer Science; Engineering" +25454;21100814515;"Arterial Hypertension (Russian Federation)";journal;"1607419X, 24118524";"All-Russian Public Organization Antihypertensive League";Yes;No;0,149;Q4;11;39;166;1333;66;166;0,46;34,18;65,71;0;Russian Federation;Eastern Europe;"All-Russian Public Organization Antihypertensive League";"2017-2025";"Cardiology and Cardiovascular Medicine (Q4); Internal Medicine (Q4)";"Medicine" +25455;21028;"Cirugia Plastica Ibero-Latinoamericana";journal;"03767892, 19892055";"Sociedad Espanola de Cirugia Plastica Reparadora y Estetica (SECPRE)";Yes;Yes;0,149;Q4;12;14;176;261;19;150;0,07;18,64;34,69;0;Spain;Western Europe;"Sociedad Espanola de Cirugia Plastica Reparadora y Estetica (SECPRE)";"1975-2002, 2004-2025";"Surgery (Q4)";"Medicine" +25456;5800173390;"Current Signal Transduction Therapy";journal;"2212389X, 15743624";"Bentham Science Publishers";No;No;0,149;Q4;24;15;55;1524;34;50;0,68;101,60;36,51;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2007-2025";"Endocrinology (Q4); Pharmacology (medical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +25457;19700169501;"Defect and Diffusion Forum";journal;"10120386, 16629507";"Trans Tech Publications Ltd";No;No;0,149;Q4;38;136;425;3133;235;412;0,57;23,04;29,14;0;Switzerland;Western Europe;"Trans Tech Publications Ltd";"1996-2026";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Radiation (Q4)";"Materials Science; Physics and Astronomy" +25458;21100967064;"Defence Life Science Journal";journal;"24560537";"Defence Scientific Information and Documentation Centre";Yes;No;0,149;Q4;11;41;115;1676;69;114;0,44;40,88;50,36;0;India;Asiatic Region;"Defence Scientific Information and Documentation Centre";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +25459;21100804474;"European Pharmaceutical Journal";journal;"24536725";"";Yes;Yes;0,149;Q4;11;10;48;426;18;46;0,38;42,60;43,24;0;Germany;Western Europe;"";"2016-2025";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +25460;29665;"Funtai Oyobi Fummatsu Yakin/Journal of the Japan Society of Powder and Powder Metallurgy";journal;"18809014, 05328799";"Journal of the Japan Society of Powder and Powder Metallurgy";No;No;0,149;Q4;24;298;206;4837;79;196;0,35;16,23;20,89;0;Japan;Asiatic Region;"Journal of the Japan Society of Powder and Powder Metallurgy";"1949-1950, 1956, 1958-2026";"Industrial and Manufacturing Engineering (Q4); Materials Chemistry (Q4); Mechanical Engineering (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +25461;21101315245;"International Journal of Innovative Technology and Interdisciplinary Sciences";journal;"26137305";"Association of Talent under Liberty in Technology (TULTECH)";No;No;0,149;Q4;4;38;32;1540;29;32;0,91;40,53;41,35;0;Estonia;Eastern Europe;"Association of Talent under Liberty in Technology (TULTECH)";"2023-2026";"Automotive Engineering (Q4); Civil and Structural Engineering (Q4); Control and Systems Engineering (Q4)";"Engineering" +25462;21100915395;"Journal of Asian Sociology";journal;"26718200, 26714574";"Institute of Social Development and Policy Research, Seoul National University";No;No;0,149;Q4;12;13;44;699;23;44;0,53;53,77;52,17;0;South Korea;Asiatic Region;"Institute of Social Development and Policy Research, Seoul National University";"2019-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +25463;24415;"Journal of Cave and Karst Studies";journal;"10906924";"National Speleological Society Inc.";No;No;0,149;Q4;50;18;23;1316;12;23;0,31;73,11;22,64;0;United States;Northern America;"National Speleological Society Inc.";"1996-2025";"Earth-Surface Processes (Q4)";"Earth and Planetary Sciences" +25464;19900192126;"Journal of Comparative Asian Development";journal;"15339114, 21505403";"IGI Global Publishing";No;No;0,149;Q4;16;3;5;174;5;5;1,00;58,00;25,00;0;United States;Northern America;"IGI Global Publishing";"2010-2019, 2021, 2023-2025";"Economics and Econometrics (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +25465;19700183048;"Journal of Electrical and Electronics Engineering";journal;"18446035, 20672128";"Editura Universitatii din Oradea";Yes;Yes;0,149;Q4;12;27;69;467;32;69;0,17;17,30;26,32;0;Romania;Eastern Europe;"Editura Universitatii din Oradea";"2008-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +25466;21101365668;"Journal of European Economy";journal;"25194089, 25194070";"West Ukrainian National University";Yes;No;0,149;Q4;6;33;89;1090;45;89;0,44;33,03;56,41;0;Ukraine;Eastern Europe;"West Ukrainian National University";"2021-2025";"Economics and Econometrics (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +25467;21100197966;"Medicina Naturista";journal;"2386463X, 15763080";"Sociedad Europea De Medicina Naturista Clasica. Seccion Espanola";Yes;No;0,149;Q4;7;18;58;460;16;51;0,18;25,56;41,86;0;Spain;Western Europe;"Sociedad Europea De Medicina Naturista Clasica. Seccion Espanola";"2000, 2002, 2004-2025";"Chiropractics (Q4); Complementary and Alternative Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Medicine" +25468;21100942865;"Mindanao Journal of Science and Technology";journal;"24493686, 22440410";"University of Science and Technology of Southern Philippines";No;No;0,149;Q4;8;27;104;1060;51;103;0,37;39,26;41,67;0;Philippines;Asiatic Region;"University of Science and Technology of Southern Philippines";"2019-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +25469;14182;"NeuroSignals";journal;"14248638, 1424862X";"Cell Physiol Biochem Press GmbH & Co KG";Yes;No;0,149;Q4;75;3;5;0;5;5;1,00;0,00;0,00;0;Switzerland;Western Europe;"Cell Physiol Biochem Press GmbH & Co KG";"1992-2016, 2018-2022, 2024-2025";"Cellular and Molecular Neuroscience (Q4); Developmental Neuroscience (Q4); Neurology (Q4)";"Neuroscience" +25470;15697;"Pediatria Polska";journal;"00313939";"Termedia Publishing House Ltd.";Yes;Yes;0,149;Q4;14;45;181;1208;59;179;0,33;26,84;77,36;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"1949-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +25471;21100915391;"Radical Teacher";journal;"19410832";"University Library System, University of Pittsburgh";Yes;Yes;0,149;Q4;9;13;112;262;44;69;0,33;20,15;66,67;0;United States;Northern America;"University Library System, University of Pittsburgh";"2016, 2019-2025";"Education (Q4)";"Social Sciences" +25472;32478;"Radioelectronics and Communications Systems";journal;"19348061, 07352727";"Allerton Press Inc.";No;No;0,149;Q4;20;0;164;0;94;164;0,60;0,00;0,00;0;United States;Northern America;"Allerton Press Inc.";"1984-1990, 2005-2024";"Electrical and Electronic Engineering (Q4)";"Engineering" +25473;16164;"Review of Pacific Basin Financial Markets and Policies";journal;"17936705, 02190915";"World Scientific";No;No;0,149;Q4;23;31;94;1720;59;93;0,45;55,48;41,11;0;Singapore;Asiatic Region;"World Scientific";"2003-2026";"Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +25474;21100913339;"Revista de Informatica Teorica e Aplicada";journal;"21752745, 01034308";"Federal University of Rio Grande do Sul, Institute of Informatics";No;Yes;0,149;Q4;6;52;53;1393;29;53;0,41;26,79;22,15;0;Brazil;Latin America;"Federal University of Rio Grande do Sul, Institute of Informatics";"2019-2025";"Computer Science (miscellaneous) (Q4)";"Computer Science" +25475;19200157102;"Revista de la Facultad de Agronomia";journal;"24779407, 03787818";"Universidad del Zulia";Yes;Yes;0,149;Q4;10;69;150;2008;59;146;0,44;29,10;37,26;0;Venezuela;Latin America;"Universidad del Zulia";"2008-2026";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Food Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +25476;10400153309;"Revista de Metodos Cuantitativos para la Economia y la Empresa";journal;"1886516X";"Universidad Pablo de Olavide";Yes;Yes;0,149;Q4;13;39;120;1652;51;120;0,38;42,36;37,50;0;Spain;Western Europe;"Universidad Pablo de Olavide";"2006-2025";"Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +25477;21100197926;"Revista Portuguesa de Estomatologia, Medicina Dentaria e Cirurgia Maxilofacial";journal;"16462890, 16476700";"Sociedade Portguesa de Estomatologia e Medicina Dentaria";Yes;Yes;0,149;Q4;13;111;98;807;36;88;0,27;7,27;59,21;0;Portugal;Western Europe;"Sociedade Portguesa de Estomatologia e Medicina Dentaria";"2007-2026";"Dentistry (miscellaneous) (Q4); Surgery (Q4)";"Dentistry; Medicine" +25478;21100921057;"Ricerche di Pedagogia e Didattica";journal;"19702221";"University of Bologna";Yes;Yes;0,149;Q4;7;28;80;1366;30;78;0,53;48,79;69,81;0;Italy;Western Europe;"University of Bologna";"2019-2025";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +25479;21101270641;"Tasmimgiri va Tahqiq dar Amaliyyat";journal;"26766159, 25385097";"Research Expansion Alliance (REA)";Yes;Yes;0,149;Q4;5;36;191;1749;96;191;0,61;48,58;25,00;0;Serbia;Eastern Europe;"Research Expansion Alliance (REA)";"2021-2026";"Control and Optimization (Q4); Decision Sciences (miscellaneous) (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences; Mathematics" +25480;5800173404;"Transactions of the Korean Society of Mechanical Engineers, B";journal;"22885234, 12264881";"Korean Society of Mechanical Engineers";No;No;0,149;Q4;9;62;260;1315;45;259;0,17;21,21;20,11;0;South Korea;Asiatic Region;"Korean Society of Mechanical Engineers";"2007-2026";"Mechanical Engineering (Q4)";"Engineering" +25481;21101166823;"Travmatologiya i Ortopediya Rossii";journal;"25420933, 23112905";"Eco-Vector LLC";Yes;Yes;0,149;Q4;8;59;186;1911;90;174;0,51;32,39;30,65;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2021-2025";"Microbiology (medical) (Q4); Oncology (Q4); Orthopedics and Sports Medicine (Q4); Rehabilitation (Q4)";"Medicine" +25482;21101133410;"Vestnik Urologii/Urology Herald";journal;"23086424";"Rostovskii Gosudarstvennyi Meditsinskii Universitet";Yes;Yes;0,149;Q4;7;80;229;2137;90;227;0,39;26,71;24,91;0;Russian Federation;Eastern Europe;"Rostovskii Gosudarstvennyi Meditsinskii Universitet";"2019-2025";"Urology (Q4)";"Medicine" +25483;21101227055;"Visible Language";journal;"00222224, 26915529";"University of Cincinnati";No;No;0,149;Q4;8;0;27;0;15;25;0,47;0,00;0,00;0;United States;Northern America;"University of Cincinnati";"2019-2024";"Computational Theory and Mathematics (Q4); Education (Q4); Human-Computer Interaction (Q4); Software (Q4)";"Computer Science; Social Sciences" +25484;91096;"Proceedings of the IEEE International Conference on Electronics, Circuits, and Systems";conference and proceedings;"29945755, 29950589";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,149;-;36;0;214;0;105;213;0,49;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1996, 1998-2003, 2005-2007, 2013, 2016, 2024";"Electrical and Electronic Engineering; Engineering (miscellaneous)";"Engineering" +25485;5800222465;"Acta Orientalia";journal;"00016446, 15882667";"Akademiai Kiado ZRt.";No;No;0,148;Q2;11;42;60;3075;13;60;0,21;73,21;43,64;0;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"2007-2026";"History (Q2); Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25486;21101323188;"Al-Mazaahib";journal;"23027355, 28091019";"UIN Sunan Kalijag";Yes;No;0,148;Q2;3;11;31;447;15;31;0,43;40,64;46,15;0;Indonesia;Asiatic Region;"UIN Sunan Kalijag";"2021-2025";"Religious Studies (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +25487;12687;"American Journal of Legal History";journal;"00029319, 2161797X";"Oxford University Press";No;No;0,148;Q2;16;4;51;466;19;49;0,50;116,50;25,00;0;United States;Northern America;"Oxford University Press";"1960, 1965, 1971, 1973-1974, 1976, 1980, 1985-1988, 1990-1999, 2004-2008, 2011-2025";"History (Q2); Law (Q3)";"Arts and Humanities; Social Sciences" +25488;21100454915;"Cliodynamics";journal;"23737530";"eScholarship";Yes;Yes;0,148;Q2;12;4;14;199;7;13;0,42;49,75;0,00;0;United States;Northern America;"eScholarship";"2012, 2015-2025";"History (Q2); Cultural Studies (Q3); Modeling and Simulation (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Mathematics; Social Sciences" +25489;16800154740;"Dead Sea Discoveries";journal;"09290761, 15685179";"Brill Academic Publishers";No;No;0,148;Q2;34;14;42;847;16;40;0,52;60,50;28,57;0;Netherlands;Western Europe;"Brill Academic Publishers";"1994-2026";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +25490;21100247035;"Estudios Biblicos";journal;"00141437";"Facultad de Teologia de San Damaso";No;No;0,148;Q2;4;11;46;1014;6;46;0,13;92,18;9,09;0;Spain;Western Europe;"Facultad de Teologia de San Damaso";"2010-2025";"Religious Studies (Q2)";"Arts and Humanities" +25491;14974;"Explorations in Renaissance Culture";journal;"00982474, 23526963";"Brill Academic Publishers";No;No;0,148;Q2;8;5;21;146;3;20;0,17;29,20;75,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1974, 1976, 1996-2025";"History (Q2); Literature and Literary Theory (Q2); Music (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +25492;21100211306;"Hamdard Islamicus";journal;"02507196";"Hamdard National Foundation";Yes;Yes;0,148;Q2;8;4;57;221;60;53;0,56;55,25;22,22;0;Pakistan;Asiatic Region;"Hamdard National Foundation";"1987, 2012-2025";"History (Q2); Religious Studies (Q2); Cultural Studies (Q3); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +25493;21101122806;"Historia Actual Online";journal;"16962060";"Asociacion de Historia Actual";Yes;Yes;0,148;Q2;5;37;106;1451;26;104;0,32;39,22;22,86;0;Spain;Western Europe;"Asociacion de Historia Actual";"2019-2025";"History (Q2)";"Arts and Humanities" +25494;21101020141;"Indiana";journal;"03418642, 23652225";"";Yes;Yes;0,148;Q2;4;10;63;550;14;60;0,19;55,00;35,71;0;Germany;Western Europe;"";"2019-2025";"History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25495;21100855751;"International Bulletin of Mission Research";journal;"23969407, 23969393";"SAGE Publications Ltd";No;No;0,148;Q2;8;25;143;968;36;128;0,21;38,72;21,74;0;United States;Northern America;"SAGE Publications Ltd";"2017-2026";"Religious Studies (Q2)";"Arts and Humanities" +25496;21101160577;"Iranian Journal of Medical Ethics and History of Medicine";journal;"27834840";"Tehran University of Medical Sciences";No;No;0,148;Q2;6;26;91;999;27;80;0,25;38,42;39,73;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2025";"History (Q2); History and Philosophy of Science (Q3); Health Policy (Q4); Health (social science) (Q4); Issues, Ethics and Legal Aspects (Q4); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine; Nursing; Social Sciences" +25497;21101079113;"Journal of Advanced Military Studies";journal;"27702596, 2770260X";"Marine Corps University Press";No;No;0,148;Q2;5;6;75;373;46;73;0,55;62,17;0,00;1;United States;Northern America;"Marine Corps University Press";"2020-2025";"History (Q2); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25498;5800214230;"Medieval Encounters";journal;"15700674, 13807854";"Brill Academic Publishers";No;No;0,148;Q2;23;18;57;2033;19;53;0,37;112,94;45,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1995-2025";"History (Q2); Religious Studies (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25499;21101220432;"Miscellanea Hadriatica et Mediterranea";journal;"18490670, 27181170";"University of Zadar";Yes;Yes;0,148;Q2;3;0;18;0;1;15;0,00;0,00;0,00;0;Croatia;Eastern Europe;"University of Zadar";"2020-2024";"Religious Studies (Q2); Anthropology (Q3); Archeology (arts and humanities) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25500;21100828129;"Musicologica Brunensia";journal;"2336436X, 12120391";"Masaryk University";Yes;Yes;0,148;Q2;4;10;56;346;4;56;0,11;34,60;60,00;0;Czech Republic;Eastern Europe;"Masaryk University";"2017-2025";"Music (Q2)";"Arts and Humanities" +25501;5700159284;"Narrative";journal;"1538974X, 10633685";"Ohio State University Press";No;No;0,148;Q2;43;18;84;841;59;77;0,79;46,72;66,67;0;United States;Northern America;"Ohio State University Press";"2002-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25502;21101116675;"Prohistoria. Historia, Politicas de la Historia";journal;"18519504";"Scientific Technological Center CONICET-Rosario";Yes;Yes;0,148;Q2;4;10;78;447;11;78;0,06;44,70;23,08;0;Argentina;Latin America;"Scientific Technological Center CONICET-Rosario";"2019-2025";"History (Q2)";"Arts and Humanities" +25503;14098;"Studia Islamica";journal;"05855292, 19585705";"Brill Academic Publishers";No;No;0,148;Q2;17;7;33;764;10;31;0,26;109,14;22,22;0;France;Western Europe;"Brill Academic Publishers";"1970-1971, 1981, 1989, 1994, 2001-2007, 2013-2025";"History (Q2); Literature and Literary Theory (Q2); Religious Studies (Q2); Law (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25504;19600161821;"Transylvanian Review";journal;"15849422, 12211249";"Center Transylvanian Studies";No;No;0,148;Q2;7;68;213;1358;28;202;0,07;19,97;33,78;0;Romania;Eastern Europe;"Center Transylvanian Studies";"2008-2025";"History (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25505;5800158153;"Vox Romanica";journal;"0042899X";"Narr Francke Verlag";No;No;0,148;Q2;5;6;49;351;2;48;0,07;58,50;33,33;0;Germany;Western Europe;"Narr Francke Verlag";"2011-2023, 2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25506;21100825530;"Danish Yearbook of Philosophy";book series;"00702749, 24689300";"Brill Academic Publishers";No;No;0,148;Q3;6;16;35;815;21;29;0,39;50,94;55,56;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2013, 2015-2025";"Philosophy (Q3)";"Arts and Humanities" +25507;21101209908;"Estoa";journal;"13907263, 13909274";"";Yes;Yes;0,148;Q3;3;38;58;1357;18;54;0,31;35,71;60,92;0;Ecuador;Latin America;"";"2023-2026";"Architecture (Q3); Urban Studies (Q3); Building and Construction (Q4)";"Engineering; Social Sciences" +25508;19700174811;"European Journal of Parenteral and Pharmaceutical Sciences";journal;"17406277, 26336588";"Pharmaceutical and Healthcare Sciences Society";No;No;0,148;Q3;9;39;47;1177;9;36;0,19;30,18;39,68;0;United Kingdom;Western Europe;"Pharmaceutical and Healthcare Sciences Society";"2010-2025";"Pharmacy (Q3); Pharmaceutical Science (Q4)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +25509;21101053425;"Indian Law Review";journal;"24730599, 24730580";"Taylor and Francis Ltd.";No;No;0,148;Q3;10;19;60;0;38;59;0,68;0,00;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Law (Q3)";"Social Sciences" +25510;21100258616;"International Journal of Community Diversity";journal;"23272147, 23270004";"Common Ground Research Networks";No;No;0,148;Q3;4;4;18;135;12;18;0,73;33,75;33,33;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Anthropology (Q3); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Social Sciences" +25511;21100829149;"Lawyer Quarterly";journal;"18058396, 1805840X";"Institute of State and Law of the Academy of Sciences of the Czech Republic";Yes;No;0,148;Q3;7;44;91;583;21;89;0,28;13,25;39,29;0;Czech Republic;Eastern Europe;"Institute of State and Law of the Academy of Sciences of the Czech Republic";"2017-2025";"Law (Q3)";"Social Sciences" +25512;21100304230;"Lengua y Habla";journal;"2244811X, 13161180";"Universidad de Los Andes";Yes;Yes;0,148;Q3;8;31;47;1254;6;46;0,18;40,45;44,74;0;Venezuela;Latin America;"Universidad de Los Andes";"2013-2025";"Linguistics and Language (Q3)";"Social Sciences" +25513;82216;"Protetyka Stomatologiczna";journal;"00331783, 2391601X";"Polish Dental Society";Yes;No;0,148;Q3;7;41;106;1234;42;105;0,39;30,10;64,76;0;Poland;Eastern Europe;"Polish Dental Society";"1967-1990, 2017-2025";"Oral Surgery (Q3); Dentistry (miscellaneous) (Q4)";"Dentistry" +25514;21100268081;"Revista de Hispanismo Filosofico";journal;"11368071";"Fondo de Cultura Economica";No;No;0,148;Q3;3;0;32;0;4;31;0,10;0,00;0,00;0;Spain;Western Europe;"Fondo de Cultura Economica";"2013-2014, 2016, 2018-2024";"Philosophy (Q3)";"Arts and Humanities" +25515;21100216568;"Revista d'Estudis Autonomics i Federals";journal;"18862632, 20148658";"Institut d'Estudis de l'Autogovern";Yes;Yes;0,148;Q3;9;15;77;553;14;73;0,19;36,87;53,85;0;Spain;Western Europe;"Institut d'Estudis de l'Autogovern";"2012-2025";"Law (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25516;5800210325;"Sendebar";journal;"11305509";"Universidad de Granada";Yes;Yes;0,148;Q3;10;0;41;0;9;41;0,11;0,00;0,00;0;Spain;Western Europe;"Universidad de Granada";"2011-2024";"Linguistics and Language (Q3)";"Social Sciences" +25517;4000152139;"Advances in Insect Physiology";book series;"22136800, 00652806";"Academic Press Inc.";No;No;0,148;Q4;59;10;25;1086;180;2;5,13;108,60;26,67;0;United States;Northern America;"Academic Press Inc.";"1963-1964, 1966-1968, 1970, 1972, 1974-1976, 1978-1980, 1982-1983, 1985, 1987-1988, 1990-1991, 1994-1996, 1998, 2001-2003, 2005-2025";"Insect Science (Q4)";"Agricultural and Biological Sciences" +25518;21101044913;"Cardiovascular Medicine";journal;"16642031, 1664204X";"Multidisciplinary Digital Publishing Institute (MDPI)";No;No;0,148;Q4;5;6;61;134;9;48;0,15;22,33;46,15;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2019-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +25519;29138;"Casopis Lekaru Ceskych";journal;"18054420, 00087335";"Czech Medical Association J.E. Purkyne";No;No;0,148;Q4;18;53;171;421;52;136;0,37;7,94;50,00;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1948-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25520;21100983359;"CERN IdeaSquare Journal of Experimental Innovation";journal;"24139505";"CERN Publishing";Yes;Yes;0,148;Q4;8;14;60;383;34;51;0,59;27,36;38,46;0;Switzerland;Western Europe;"CERN Publishing";"2017-2025";"Information Systems and Management (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Decision Sciences" +25521;14861;"Ceska a Slovenska Neurologie a Neurochirurgie";journal;"18024041, 12107859";"Czech Medical Association J.E. Purkyne";Yes;No;0,148;Q4;20;41;208;1345;52;145;0,24;32,80;30,17;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1973-2025";"Neurology (clinical) (Q4); Surgery (Q4)";"Medicine" +25522;4700152719;"Ciencia y Enfermeria";journal;"07172079, 07179553";"Universidad de Concepcion";Yes;Yes;0,148;Q4;20;18;108;590;30;102;0,22;32,78;67,80;0;Chile;Latin America;"Universidad de Concepcion";"2002, 2006-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +25523;21101313386;"Finance Controle Strategie";journal;"22615512";"OpenEditions Journals";No;No;0,148;Q4;3;6;66;290;19;53;0,16;48,33;37,50;0;France;Western Europe;"OpenEditions Journals";"2021-2025";"Accounting (Q4); Business, Management and Accounting (miscellaneous) (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +25524;21101339664;"General Thoracic and Cardiovascular Surgery Cases";journal;"27316203";"BioMed Central Ltd";No;No;0,148;Q4;3;50;175;606;62;173;0,36;12,12;10,65;0;United Kingdom;Western Europe;"BioMed Central Ltd";"2022-2026";"Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4)";"Medicine" +25525;21049;"Gongneng Cailiao/Journal of Functional Materials";journal;"10019731";"Journal of Functional Materials";No;No;0,148;Q4;22;248;1051;8324;455;1051;0,45;33,56;38,48;0;China;Asiatic Region;"Journal of Functional Materials";"1993-2025";"Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4)";"Engineering; Materials Science; Physics and Astronomy" +25526;21100875939;"Hirurgia Pozvonochnika";journal;"18108997, 23131497";"Editorial Office of The Journal Hirurgia Pozvonochnika";Yes;Yes;0,148;Q4;8;42;126;976;43;111;0,23;23,24;14,47;0;Russian Federation;Eastern Europe;"Editorial Office of The Journal Hirurgia Pozvonochnika";"2005, 2016-2025";"Anesthesiology and Pain Medicine (Q4); Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +25527;21101297253;"International Conference on Emerging Technologies, ICET";journal;"29945801, 29945798";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,148;Q4;7;68;62;1516;47;61;0,76;22,29;25,46;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Modeling and Simulation (Q4)";"Computer Science; Energy; Engineering; Mathematics" +25528;21100824048;"International Journal of Climate Change: Impacts and Responses";journal;"28334140, 18357156";"Common Ground Research Networks";No;No;0,148;Q4;7;15;43;863;23;43;0,71;57,53;22,22;0;United States;Northern America;"Common Ground Research Networks";"2009, 2017-2025";"Atmospheric Science (Q4); Global and Planetary Change (Q4); Management, Monitoring, Policy and Law (Q4)";"Earth and Planetary Sciences; Environmental Science" +25529;19400157401;"International Journal of Enterprise Network Management";journal;"17481252, 17481260";"Inderscience Enterprises Ltd";No;No;0,148;Q4;16;20;64;981;38;64;0,58;49,05;25,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2012, 2014-2025";"Business and International Management (Q4); Management of Technology and Innovation (Q4); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences" +25530;19152;"Israel Journal of Plant Sciences";journal;"07929978, 22238980";"Brill Academic Publishers";No;No;0,148;Q4;42;25;57;1155;23;57;0,33;46,20;34,15;0;United Kingdom;Western Europe;"Brill Academic Publishers";"1994-2013, 2015-2026";"Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +25531;90906;"Jisuan Wuli/Chinese Journal of Computational Physics";journal;"1001246X";"Editorial Board of Chinese Journal of Computational";No;No;0,148;Q4;19;69;217;2032;78;217;0,37;29,45;29,91;0;China;Asiatic Region;"Editorial Board of Chinese Journal of Computational";"2004-2025";"Applied Mathematics (Q4); Modeling and Simulation (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Mathematics; Physics and Astronomy" +25532;21101176845;"Journal of Engineering and Technology for Industrial Applications";journal;"24470228";"Galileo Institute of Technology and Education of the Amazon (ITEGAM)";Yes;Yes;0,148;Q4;9;189;191;5378;148;191;0,85;28,46;24,19;0;Brazil;Latin America;"Galileo Institute of Technology and Education of the Amazon (ITEGAM)";"2019-2026";"Artificial Intelligence (Q4); Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4)";"Computer Science; Engineering" +25533;19700188281;"Journal of Kerman University of Medical Sciences";journal;"20082843, 10239510";"Kerman University of Medical Sciences";Yes;Yes;0,148;Q4;14;82;185;2740;70;183;0,30;33,41;47,59;0;Iran;Middle East;"Kerman University of Medical Sciences";"2008, 2010-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25534;21101093567;"Journal of Pediatric Emergency and Intensive Care Medicine (Turkey)";journal;"27179206";"Galenos Publishing House";Yes;No;0,148;Q4;4;15;93;265;33;90;0,27;17,67;47,73;0;Turkey;Middle East;"Galenos Publishing House";"2021-2025";"Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +25535;21100431311;"Lecture Notes in Mechanical Engineering";book series;"21954356, 21954364";"Springer Verlag";No;No;0,148;Q4;40;4315;15742;74753;5733;15116;0,35;17,32;27,79;0;Germany;Western Europe;"Springer Verlag";"2012-2026";"Aerospace Engineering (Q4); Automotive Engineering (Q4); Fluid Flow and Transfer Processes (Q4); Mechanical Engineering (Q4)";"Chemical Engineering; Engineering" +25536;61482;"Liaoning Gongcheng Jishu Daxue Xuebao (Ziran Kexue Ban)/Journal of Liaoning Technical University (Natural Science Edition)";journal;"10080562";"Editorial Office of Journal of Liaoning Technical University";No;No;0,148;Q4;22;89;272;2071;123;272;0,53;23,27;30,42;0;China;Asiatic Region;"Editorial Office of Journal of Liaoning Technical University";"2001-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +25537;17801;"Materials Evaluation";trade journal;"00255327";"American Society for Nondestructive Testing";No;No;0,148;Q4;35;55;159;841;79;158;0,37;15,29;19,80;0;United States;Northern America;"American Society for Nondestructive Testing";"1970-1990, 1993-2026";"Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +25538;21101094523;"Mathematics in Industry";book series;"21983283, 16123956";"Springer Medizin";No;No;0,148;Q4;9;38;112;193;37;29;0,31;5,08;0,00;0;Germany;Western Europe;"Springer Medizin";"2004-2005, 2007-2008, 2010, 2013, 2016-2017, 2021-2022, 2024-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Computer Science Applications (Q4); Industrial and Manufacturing Engineering (Q4)";"Computer Science; Engineering; Mathematics" +25539;21101287779;"Medicine, Law and Society";journal;"26302535, 24637955";"University of Maribor Press";No;No;0,148;Q4;3;17;48;690;11;48;0,24;40,59;46,15;0;Slovenia;Eastern Europe;"University of Maribor Press";"2021-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +25540;21100855909;"Methods and Objects of Chemical Analysis";journal;"19910290, 24136166";"Taras Shevchenko National University of Kyiv";Yes;No;0,148;Q4;8;43;67;1168;45;67;0,76;27,16;52,27;0;Ukraine;Eastern Europe;"Taras Shevchenko National University of Kyiv";"2017-2025";"Analytical Chemistry (Q4)";"Chemistry" +25541;21101000287;"Mexican Journal of Biotechnology";journal;"24486590";"Universidad Autonoma de Tlaxcala";No;Yes;0,148;Q4;11;17;36;907;23;36;0,75;53,35;43,06;0;Mexico;Latin America;"Universidad Autonoma de Tlaxcala";"2016-2026";"Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +25542;25139;"New Mexico Geology";journal;"0196948X";"New Mexico Bureau of Mines & Mineral Resources";No;No;0,148;Q4;14;3;4;170;1;4;0,25;56,67;16,67;0;United States;Northern America;"New Mexico Bureau of Mines & Mineral Resources";"1979-1987, 1992-2021, 2023-2025";"Geology (Q4)";"Earth and Planetary Sciences" +25543;21101174381;"Northeast Journal of Complex Systems";journal;"25778439";"Binghamton University Libraries";Yes;Yes;0,148;Q4;6;28;20;884;11;19;0,60;31,57;25,00;0;United States;Northern America;"Binghamton University Libraries";"2019-2025";"Applied Mathematics (Q4); Modeling and Simulation (Q4); Statistical and Nonlinear Physics (Q4)";"Mathematics; Physics and Astronomy" +25544;15400154700;"Progress in Neurology and Psychiatry";journal;"13677543, 1931227X";"John Wiley and Sons Ltd";No;No;0,148;Q4;18;2;114;68;38;97;0,22;34,00;55,56;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1946-1948, 1952-1957, 1961, 1963, 1965-1972, 2008-2026";"Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience" +25545;25774;"Quaternaire";journal;"11422904";"Association Francaise pour l'Etude du Quaternaire";No;No;0,148;Q4;37;6;62;461;23;60;0,38;76,83;56,00;0;France;Western Europe;"Association Francaise pour l'Etude du Quaternaire";"1990-1994, 1996-2025";"Earth-Surface Processes (Q4); Geology (Q4)";"Earth and Planetary Sciences" +25546;20156;"Revista Alergia Mexico";journal;"24489190, 00025151";"Colegio Mexicano de Inmunologia Clinica y Alergia A.C";Yes;Yes;0,148;Q4;22;84;169;1076;56;166;0,28;12,81;56,80;0;Mexico;Latin America;"Colegio Mexicano de Inmunologia Clinica y Alergia A.C";"1961, 1964-2025";"Immunology and Allergy (Q4)";"Medicine" +25547;13565;"Revista de Biologia Marina y Oceanografia";journal;"07173326, 07181957";"Faculty of Marine Sciences and Natural Resources, University of Valparaiso";Yes;Yes;0,148;Q4;34;13;91;729;36;85;0,41;56,08;33,33;0;Chile;Latin America;"Faculty of Marine Sciences and Natural Resources, University of Valparaiso";"1996-2025";"Aquatic Science (Q4); Oceanography (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +25548;21101066247;"SAE International Journal of Advances and Current Practices in Mobility";journal;"26419645";"SAE International";No;No;0,148;Q4;6;0;594;0;221;594;0,58;0,00;0,00;0;United States;Northern America;"SAE International";"2019-2020, 2022-2024";"Aerospace Engineering (Q4); Artificial Intelligence (Q4); Automotive Engineering (Q4); Fuel Technology (Q4); Mechanical Engineering (Q4)";"Computer Science; Energy; Engineering" +25549;15129;"Spektrum der Augenheilkunde";journal;"16137523, 09304282";"Springer Medizin";No;No;0,148;Q4;10;22;61;603;15;54;0,27;27,41;35,16;0;Austria;Western Europe;"Springer Medizin";"1987-2026";"Ophthalmology (Q4)";"Medicine" +25550;21100873452;"Springer Proceedings in Complexity";book series;"22138692, 22138684";"Springer Science and Business Media B.V.";No;No;0,148;Q4;22;153;745;3346;260;711;0,41;21,87;31,05;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2013-2026";"Applied Mathematics (Q4); Computer Science Applications (Q4); Modeling and Simulation (Q4)";"Computer Science; Mathematics" +25551;19700174883;"Turk Onkoloji Dergisi";journal;"13007467";"Istanbul Tip Fakultesi";No;No;0,148;Q4;11;49;198;1653;58;185;0,28;33,73;45,16;0;Turkey;Middle East;"Istanbul Tip Fakultesi";"2007-2025";"Oncology (Q4)";"Medicine" +25552;21101200223;"Moratuwa Engineering Research Conference, MERCon";conference and proceedings;"2691364X, 28315537";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,148;-;4;153;273;3096;128;263;0,47;20,24;33,65;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2023-2025";"Ceramics and Composites; Civil and Structural Engineering; Computational Mechanics; Computer Networks and Communications; Electrical and Electronic Engineering; Information Systems and Management; Instrumentation; Waste Management and Disposal";"Computer Science; Decision Sciences; Engineering; Environmental Science; Materials Science; Physics and Astronomy" +25553;61068;"Proceedings - SPE Annual Technical Conference and Exhibition";conference and proceedings;"26386712";"Society of Petroleum Engineers (SPE)";No;No;0,148;-;102;0;2075;0;1007;2069;0,53;0,00;0,00;0;United States;Northern America;"Society of Petroleum Engineers (SPE)";"1976-1986, 1990-2024";"Energy Engineering and Power Technology; Fuel Technology";"Energy" +25554;21101190450;"Proceedings of the International Workshop on Simulation for Energy, Sustainable Development and Environment, SESDE";conference and proceedings;"27240061";"Cal-Tek srl";No;No;0,148;-;3;0;28;0;11;26;0,39;0,00;0,00;0;Italy;Western Europe;"Cal-Tek srl";"2023-2024";"Modeling and Simulation; Renewable Energy, Sustainability and the Environment";"Energy; Mathematics" +25555;21101229234;"African Journal of Religion, Philosophy and Culture";journal;"26347636, 26347644";"Adonis and Abbey Publishers Ltd";No;No;0,147;Q2;3;63;35;2479;12;35;0,34;39,35;24,44;0;United Kingdom;Western Europe;"Adonis and Abbey Publishers Ltd";"2023-2025";"Religious Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Philosophy (Q3)";"Arts and Humanities" +25556;18835;"Anuario de Estudios Medievales";journal;"19884230, 00665061";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,147;Q2;14;4;97;245;30;93;0,25;61,25;33,33;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1965-1966, 1968, 1996-1997, 2000-2025";"History (Q2)";"Arts and Humanities" +25557;21100200617;"Comedy Studies";journal;"2040610X, 20406118";"Taylor and Francis Ltd.";No;No;0,147;Q2;8;53;61;2399;19;49;0,37;45,26;45,83;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25558;16600154708;"Contemporary Literature";journal;"00107484, 15489949";"University of Wisconsin Press";No;No;0,147;Q2;25;23;67;1087;14;63;0,26;47,26;50,00;0;United States;Northern America;"University of Wisconsin Press";"2002-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25559;21100407608;"Cultura de los Cuidados";journal;"11381728, 16996003";"Universidad de Alicante";Yes;Yes;0,147;Q2;10;51;197;1414;35;197;0,16;27,73;60,68;0;Spain;Western Europe;"Universidad de Alicante";"2014-2026";"History (Q2); Anthropology (Q3); Cultural Studies (Q3); Nursing (miscellaneous) (Q4)";"Arts and Humanities; Nursing; Social Sciences" +25560;21100276782;"Journal of European Integration History";journal;"09479511";"Nomos Verlagsgesellschaft mbH und Co KG";No;No;0,147;Q2;7;10;56;121;13;52;0,26;12,10;11,11;0;Germany;Western Europe;"Nomos Verlagsgesellschaft mbH und Co KG";"2013-2025";"History (Q2); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +25561;21101037320;"Journal of Interdisciplinary Voice Studies";journal;"2057035X, 20570341";"Intellect Ltd.";No;No;0,147;Q2;5;15;35;427;13;30;0,05;28,47;75,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2015, 2019-2026";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25562;21100875677;"Modern Africa";journal;"25707558, 23363274";"University of Hradec Kralove, Philosophical Faculty";Yes;Yes;0,147;Q2;6;13;26;690;19;25;0,64;53,08;11,76;0;Czech Republic;Eastern Europe;"University of Hradec Kralove, Philosophical Faculty";"2018-2025";"History (Q2); Anthropology (Q3); Cultural Studies (Q3); Development (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25563;21091;"NTM International Journal of History and Ethics of Natural Sciences, Technology and Medicine";journal;"00366978, 14209144";"Springer International Publishing";No;No;0,147;Q2;15;25;89;1107;27;77;0,22;44,28;17,86;0;Switzerland;Western Europe;"Springer International Publishing";"1969-1991, 1993-2026";"History (Q2)";"Arts and Humanities" +25564;21101089399;"Southern Semiotic Review";journal;"22022783, 22022775";"";No;No;0,147;Q2;2;21;49;596;8;47;0,18;28,38;50,00;0;Australia;Pacific Region;"";"2020-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +25565;28203;"Biomedical Engineering";journal;"00063398, 15738256";"Springer";No;No;0,147;Q3;20;94;291;1401;122;291;0,41;14,90;36,31;0;United States;Northern America;"Springer";"1967-2026";"Medical Laboratory Technology (Q3); Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)";"Engineering; Health Professions; Medicine" +25566;21101196443;"European Journal of Privacy Law and Technologies";journal;"27048012";"Suor Orsola Benincasa University of Naples";Yes;Yes;0,147;Q3;4;32;122;781;34;120;0,23;24,41;65,91;0;Italy;Western Europe;"Suor Orsola Benincasa University of Naples";"2020-2025";"Law (Q3); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +25567;21101138044;"Irish Jurist";journal;"00211273";"Thomson Round Hall";No;No;0,147;Q3;4;0;57;0;15;56;0,30;0,00;0,00;0;Ireland;Western Europe;"Thomson Round Hall";"2019-2024";"Law (Q3)";"Social Sciences" +25568;21101021921;"Journal of Property Tax Assessment and Administration";journal;"15483606, 13571419";"International Association of Assessing Officers";No;No;0,147;Q3;5;6;23;227;16;23;0,20;37,83;14,29;0;United States;Northern America;"International Association of Assessing Officers";"2019-2025";"Law (Q3); Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +25569;21101300616;"Kharkiv Dental Journal";journal;"30835607";"V N Karazin Kharkiv National University";No;No;0,147;Q3;4;61;20;1592;22;20;1,10;26,10;66,67;0;Ukraine;Eastern Europe;"V N Karazin Kharkiv National University";"2024-2025";"Orthodontics (Q3); Periodontics (Q3); Dentistry (miscellaneous) (Q4); Oral Surgery (Q4)";"Dentistry" +25570;21100847474;"Language and Sociocultural Theory";journal;"20519699, 20519702";"University of Toronto Press";No;No;0,147;Q3;15;10;12;334;12;12;1,00;33,40;50,00;0;Canada;Northern America;"University of Toronto Press";"2014-2023, 2025";"Cultural Studies (Q3); Linguistics and Language (Q3)";"Social Sciences" +25571;21100205945;"Quartar International Yearbook for Ice Age and Stone Age Research";book series;"03757471";"Hugo Obermaier-Society for Quaternary Research and Archaeology of the Stone Age";No;No;0,147;Q3;20;0;13;0;3;13;0,00;0,00;0,00;0;Germany;Western Europe;"Hugo Obermaier-Society for Quaternary Research and Archaeology of the Stone Age";"2011-2023";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +25572;21100901898;"Revista Digital de Biblioteconomia e Ciencia da Informacao";journal;"1678765X";"Universidade Estadual de Campinas UNICAMP";Yes;Yes;0,147;Q3;7;40;105;1335;45;102;0,35;33,38;55,56;0;Brazil;Latin America;"Universidade Estadual de Campinas UNICAMP";"2018-2026";"Library and Information Sciences (Q3); Education (Q4); Information Systems (Q4); Public Administration (Q4)";"Computer Science; Social Sciences" +25573;21101152859;"Revista Kawsaypacha: Sociedad y Medio Ambiente";journal;"27093689, 25232894";"Pontificia Universidad Catolica del Peru";Yes;Yes;0,147;Q3;4;46;80;1697;43;76;0,56;36,89;41,10;0;Peru;Latin America;"Pontificia Universidad Catolica del Peru";"2019-2025";"Cultural Studies (Q3); Ecology (Q4); Environmental Science (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science; Social Sciences" +25574;21101213848;"Sequencia";journal;"21777055, 01019562";"Universidade Federal de Santa Catarina";Yes;Yes;0,147;Q3;4;32;97;1177;12;96;0,05;36,78;57,14;0;Brazil;Latin America;"Universidade Federal de Santa Catarina";"2020-2025";"Law (Q3)";"Social Sciences" +25575;21101152065;"Archives of Anesthesiology and Critical Care";journal;"24235849";"Tehran University of Medical Sciences";Yes;Yes;0,147;Q4;3;135;221;3404;74;207;0,33;25,21;41,87;0;Iran;Middle East;"Tehran University of Medical Sciences";"2023-2026";"Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4); Critical Care Nursing (Q4)";"Medicine; Nursing" +25576;21101280300;"Artificial Life Conference Proceedings";book series;"26931508";"MIT Press";No;No;0,147;Q4;10;0;224;0;70;221;0,36;0,00;0,00;0;United States;Northern America;"MIT Press";"2020-2023";"Modeling and Simulation (Q4)";"Mathematics" +25577;21100226830;"BiD";journal;"15755886";"Universitat de Barcelona";Yes;Yes;0,147;Q4;9;15;70;576;22;61;0,38;38,40;33,33;0;Spain;Western Europe;"Universitat de Barcelona";"2012-2025";"Library and Information Sciences (Q4)";"Social Sciences" +25578;17287;"Botanica Complutensis";journal;"02144565, 19882874";"Universidad Complutense Madrid";Yes;Yes;0,147;Q4;14;0;12;0;7;12;0,40;0,00;0,00;0;Spain;Western Europe;"Universidad Complutense Madrid";"2001-2023";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +25579;21100464634;"Chemical Data Collections";journal;"24058300";"Elsevier B.V.";No;No;0,147;Q4;45;37;368;1659;1077;1;3,04;44,84;16,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2026";"Chemistry (miscellaneous) (Q4)";"Chemistry" +25580;21101019713;"EAI/Springer Innovations in Communication and Computing";book series;"25228595, 25228609";"Springer International Publishing";No;No;0,147;Q4;37;244;1458;5224;1359;485;0,75;21,41;34,14;0;Switzerland;Western Europe;"Springer International Publishing";"2018-2026";"Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Health Informatics (Q4); Information Systems (Q4)";"Computer Science; Engineering; Medicine" +25581;21101196033;"East African Journal of Science, Technology and Innovation";journal;"27070425";"East African Science and Technology Commission - EASTECO KG";No;No;0,147;Q4;6;28;167;1102;79;167;0,53;39,36;34,85;0;Rwanda;Africa;"East African Science and Technology Commission - EASTECO KG";"2019-2026";"Multidisciplinary (Q4)";"Multidisciplinary" +25582;21101288929;"Emergent Scientist";journal;"25568779";"EDP Sciences";Yes;No;0,147;Q4;1;3;8;61;4;8;0,60;20,33;25,00;0;France;Western Europe;"EDP Sciences";"2021-2025";"Applied Mathematics (Q4); Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Instrumentation (Q4)";"Mathematics; Physics and Astronomy" +25583;28756;"Geographische Rundschau";journal;"00167460";"Westermann Schulbuchverlag GmbH";No;No;0,147;Q4;14;133;406;1054;25;318;0,07;7,92;33,90;0;Germany;Western Europe;"Westermann Schulbuchverlag GmbH";"1975, 1977-2014, 2018-2025";"Atmospheric Science (Q4); Energy (miscellaneous) (Q4); Geography, Planning and Development (Q4); Water Science and Technology (Q4)";"Earth and Planetary Sciences; Energy; Environmental Science; Social Sciences" +25584;21100222537;"Intelligent Systems Reference Library";book series;"18684394, 18684408";"Springer Science + Business Media";No;No;0,147;Q4;49;161;691;9668;763;17;1,15;60,05;0,00;0;United States;Northern America;"Springer Science + Business Media";"2009-2026";"Computer Science (miscellaneous) (Q4); Information Systems and Management (Q4); Library and Information Sciences (Q4)";"Computer Science; Decision Sciences; Social Sciences" +25585;21101258141;"International Conference on eDemocracy and eGovernment, ICEDEG";journal;"25731998, 25732005";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,147;Q4;2;45;38;1277;20;36;0,53;28,38;37,70;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Artificial Intelligence (Q4); Communication (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems and Management (Q4); Political Science and International Relations (Q4)";"Computer Science; Decision Sciences; Social Sciences" +25586;18700156711;"International Journal of Energy, Environment and Economics";journal;"1054853X";"Nova Science Publishers, Inc.";No;No;0,147;Q4;12;22;108;1034;61;108;0,44;47,00;19,05;0;United States;Northern America;"Nova Science Publishers, Inc.";"2007, 2009-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Energy (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Energy; Environmental Science" +25587;21101039815;"International Journal of Gastrointestinal Intervention";journal;"26360012, 26360004";"Society of Gastrointestinal Intervention";Yes;Yes;0,147;Q4;5;37;161;892;31;136;0,18;24,11;21,76;0;Netherlands;Western Europe;"Society of Gastrointestinal Intervention";"2017, 2019-2026";"Gastroenterology (Q4); Hepatology (Q4); Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +25588;21100258632;"International Journal of Pedagogy and Curriculum";journal;"23277963, 23279133";"Common Ground Research Networks";No;No;0,147;Q4;7;22;45;1045;25;45;0,76;47,50;47,50;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +25589;21100255406;"Iranian Economic Review";journal;"10266542";"University of Teheran";Yes;No;0,147;Q4;15;60;174;3196;81;174;0,41;53,27;30,56;0;Iran;Middle East;"University of Teheran";"2013-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +25590;15268;"Issues in Law and Medicine";journal;"23776463, 87568160";"National Legal Center Medically Dependent and Disabled Inc.";No;No;0,147;Q4;18;4;41;312;18;39;0,25;78,00;0,00;0;United States;Northern America;"National Legal Center Medically Dependent and Disabled Inc.";"1985-2012, 2014-2025";"Health Policy (Q4); Issues, Ethics and Legal Aspects (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Nursing" +25591;19600165300;"Italian Journal of Medicine";journal;"18779352, 18779344";"Page Press Publications";Yes;No;0,147;Q4;14;77;147;1876;57;138;0,39;24,36;42,42;0;Italy;Western Europe;"Page Press Publications";"2007-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25592;21100405446;"Journal of Assessment and Institutional Effectiveness";journal;"21606757, 21606765";"Penn State University Press";No;No;0,147;Q4;7;10;27;350;7;18;0,29;35,00;35,00;0;United States;Northern America;"Penn State University Press";"2014-2025";"Education (Q4)";"Social Sciences" +25593;19400158812;"Journal of Biorheology";journal;"18670474, 18670466";"Japanese Society of Biorheology";No;No;0,147;Q4;12;11;49;237;22;45;0,45;21,55;16,22;0;Japan;Asiatic Region;"Japanese Society of Biorheology";"2009-2011, 2013-2025";"Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +25594;19700180520;"Journal of Mazandaran University of Medical Sciences";journal;"17359260, 17359279";"Mazandaran University of Medical Sciences";Yes;No;0,147;Q4;30;207;735;6767;236;729;0,32;32,69;50,31;0;Iran;Middle East;"Mazandaran University of Medical Sciences";"2010-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25595;21101294934;"Journal of Obstetric Anaesthesia and Critical Care";journal;"22499539, 22494472";"Wolters Kluwer Medknow Publications";Yes;No;0,147;Q4;3;43;84;701;33;68;0,39;16,30;50,47;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2023-2025";"Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4); Obstetrics and Gynecology (Q4)";"Medicine" +25596;21101178113;"Journal of Pediatrics Review";journal;"23224401, 23224398";"";Yes;Yes;0,147;Q4;3;40;80;1230;31;76;0,39;30,75;51,13;0;Iran;Middle East;"";"2023-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +25597;145514;"Journal of Textile and Apparel, Technology and Management";journal;"15330915";"North Carolina State University";No;No;0,147;Q4;34;12;37;652;27;28;0,72;54,33;45,16;0;United States;Northern America;"North Carolina State University";"2000-2002, 2004-2007, 2009-2016, 2018-2023, 2025";"Management of Technology and Innovation (Q4)";"Business, Management and Accounting" +25598;21101298328;"Journal of Vasyl Stefanyk Precarpathian National University";journal;"24132349, 23110155";"Precarpathian National University";Yes;No;0,147;Q4;4;47;109;1490;63;109;0,58;31,70;60,71;0;Ukraine;Eastern Europe;"Precarpathian National University";"2023-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Education (Q4)";"Economics, Econometrics and Finance; Social Sciences" +25599;13574;"Kagaku Kogaku Ronbunshu";journal;"0386216X, 13499203";"Society of Chemical Engineers, Japan";No;No;0,147;Q4;21;24;78;417;14;78;0,21;17,38;20,91;0;Japan;Asiatic Region;"Society of Chemical Engineers, Japan";"1975-2026";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +25600;19700180817;"Modern Cartography Series";book series;"13630814";"Elsevier B.V.";No;No;0,147;Q4;11;0;61;0;35;27;0,57;0,00;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1991, 1994, 1998, 2005, 2014-2015, 2019-2021, 2024";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +25601;19200156707;"Neurology Asia";journal;"18236138";"ASEAN Neurological Association";Yes;No;0,147;Q4;19;149;410;4046;135;404;0,30;27,15;45,25;0;Malaysia;Asiatic Region;"ASEAN Neurological Association";"2008-2025";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +25602;100437;"Population Review";journal;"0032471X, 15490955";"Sociological Demography Press";No;No;0,147;Q4;17;0;35;0;20;35;0,50;0,00;0,00;0;United States;Northern America;"Sociological Demography Press";"1988, 2009-2024";"Demography (Q4)";"Social Sciences" +25603;21101313962;"Proceedings of the IEEE International Multi Topic Conference, INMIC";journal;"28358848, 28358864";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,147;Q4;3;0;100;0;50;98;0,50;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Ceramics and Composites (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Control and Optimization (Q4); Energy Engineering and Power Technology (Q4); Instrumentation (Q4); Modeling and Simulation (Q4)";"Computer Science; Energy; Materials Science; Mathematics; Physics and Astronomy" +25604;144678;"Revija Za Socijalnu Politiku";journal;"18456014, 13302965";"Faculty of Political Sciences, University of Zagreb";Yes;Yes;0,147;Q4;16;10;54;458;25;52;0,27;45,80;55,56;0;Croatia;Eastern Europe;"Faculty of Political Sciences, University of Zagreb";"2005-2025";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25605;21101290953;"Revue de Gestion des Ressources Humaines";journal;"22712186, 1163913X";"Editions ESKA";No;No;0,147;Q4;3;19;46;1251;15;46;0,26;65,84;53,33;0;France;Western Europe;"Editions ESKA";"2021-2025";"Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +25606;21101083977;"Rossijskij Psihiatriceskij Zurnal";journal;"1560957X";"V. Serbsky National Medical Research Centre for Psychiatry and Narcology";No;No;0,147;Q4;7;50;177;1941;62;175;0,34;38,82;57,04;0;Russian Federation;Eastern Europe;"V. Serbsky National Medical Research Centre for Psychiatry and Narcology";"2019-2025";"Applied Psychology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Psychology" +25607;22246;"Rozhledy v Chirurgii";journal;"18054579, 00359351";"Czech Medical Association J.E. Purkyne";No;No;0,147;Q4;14;62;210;0;69;210;0,25;0,00;20,75;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1950-1952, 1954-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25608;18128;"Sociologisk Forskning";journal;"00380342";"Sociologisk Forskning";Yes;Yes;0,147;Q4;14;31;101;1060;31;85;0,31;34,19;44,12;0;Sweden;Western Europe;"Sociologisk Forskning";"1996-2025";"Sociology and Political Science (Q4)";"Social Sciences" +25609;21101150690;"SSRG International Journal of Electronics and Communication Engineering";journal;"23488549";"Seventh Sense Research Group";No;No;0,147;Q4;8;291;336;8830;239;336;0,71;30,34;42,98;0;India;Asiatic Region;"Seventh Sense Research Group";"2023-2026";"Computer Networks and Communications (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +25610;21100992338;"Turkderm Turkish Archives of Dermatology and Venereology";journal;"27176398, 26515164";"Istanbul Assoc. of Dermatology and Venerology";Yes;Yes;0,147;Q4;13;27;123;320;27;108;0,17;11,85;59,38;0;Turkey;Middle East;"Istanbul Assoc. of Dermatology and Venerology";"2018-2025";"Dermatology (Q4); Infectious Diseases (Q4)";"Medicine" +25611;21101017189;"Turkish Journal of Nephrology";journal;"26674440";"Turkish Society of Nephrology";Yes;Yes;0,147;Q4;7;38;153;925;53;144;0,40;24,34;41,09;0;Turkey;Middle East;"Turkish Society of Nephrology";"2019-2025";"Nephrology (Q4); Surgery (Q4); Transplantation (Q4)";"Medicine" +25612;21454;"UPB Scientific Bulletin, Series B: Chemistry and Materials Science";journal;"14542331, 22863680";"Politechnica University of Bucharest";Yes;No;0,147;Q4;26;92;257;2574;99;257;0,42;27,98;56,43;0;Romania;Eastern Europe;"Politechnica University of Bucharest";"1999-2025";"Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Chemistry; Materials Science" +25613;19578;"Vlaams Diergeneeskundig Tijdschrift";journal;"03039021";"Universiteit Gent";Yes;No;0,147;Q4;23;38;125;979;26;108;0,15;25,76;63,64;0;Belgium;Western Europe;"Universiteit Gent";"1996-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +25614;20824;"Vnitrni Lekarstvi";journal;"0042773X, 18017592";"SOLEN s.r.o.";No;No;0,147;Q4;21;104;359;2444;99;322;0,19;23,50;42,24;0;Czech Republic;Eastern Europe;"SOLEN s.r.o.";"1955, 1961-2026";"Cardiology and Cardiovascular Medicine (Q4); Internal Medicine (Q4)";"Medicine" +25615;21101102019;"World Cancer Research Journal";journal;"23723416";"Verduci International";Yes;Yes;0,147;Q4;16;15;120;782;41;115;0,32;52,13;50,00;0;United States;Northern America;"Verduci International";"2019-2025";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +25616;29246;"ASTM Special Technical Publication";conference and proceedings;"00660558";"ASTM International";No;No;0,147;-;53;0;301;0;89;261;0,39;0,00;0,00;0;United States;Northern America;"ASTM International";"1931-1932, 1935-1937, 1940-1941, 1943-2024";"Engineering (miscellaneous); Materials Science (miscellaneous)";"Engineering; Materials Science" +25617;21101151802;"International Computer Music Conference, ICMC Proceedings";conference and proceedings;"22233881";"";No;No;0,147;-;41;150;137;1760;27;129;0,19;11,73;24,07;0;United States;Northern America;"";"1993, 1995-2004, 2011, 2022-2025";"Computer Science Applications; Media Technology; Music";"Arts and Humanities; Computer Science; Engineering" +25618;21100218002;"Lecture Notes in Engineering and Computer Science";conference and proceedings;"20780958, 20780966";"Newswood Limited";No;No;0,147;-;29;0;50;0;38;47;0,85;0,00;0,00;0;China;Asiatic Region;"Newswood Limited";"2006-2007, 2012-2019, 2021-2023";"Computer Science (miscellaneous)";"Computer Science" +25619;21100228510;"Proceedings of International Conference on Harmonics and Quality of Power, ICHQP";conference and proceedings;"21640610, 15406008";"IEEE Computer Society";No;No;0,147;-;35;0;285;0;128;280;0,33;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"1998, 2000, 2002, 2012, 2014, 2016, 2018, 2020, 2022, 2024";"Computer Networks and Communications; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Fuel Technology; Signal Processing";"Computer Science; Energy; Engineering" +25620;21100258766;"Proceedings of the International School of Physics ""Enrico Fermi""";conference and proceedings;"18798195, 0074784X";"IOS Press BV";No;No;0,147;-;16;24;29;1595;6;25;0,21;66,46;18,52;0;Netherlands;Western Europe;"IOS Press BV";"2006-2016, 2018-2021, 2023-2025";"Physics and Astronomy (miscellaneous)";"Physics and Astronomy" +25621;21100829208;"Acta Linguistica Academica";journal;"25598201";"Akademiai Kiado ZRt.";No;No;0,146;Q2;16;18;69;1188;30;66;0,44;66,00;59,26;0;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"2017-2026";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25622;16957;"Analise Social";journal;"00032573, 21822999";"Instituto de Ciencias Sociais da Universidade de Lisboa";Yes;Yes;0,146;Q2;21;54;118;1972;35;112;0,38;36,52;48,00;0;Portugal;Western Europe;"Instituto de Ciencias Sociais da Universidade de Lisboa";"1977-1978, 1981-1984, 1990, 1993-1994, 1996-2025";"History (Q2); Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25623;21100265080;"Anuario Calderoniano";journal;"18888046";"Universidad de Navarra";Yes;No;0,146;Q2;6;25;59;557;9;54;0,10;22,28;47,62;0;Spain;Western Europe;"Universidad de Navarra";"2013-2015, 2017-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25624;6500153206;"Archaeological Reports";journal;"05706084, 20414102";"Cambridge University Press";No;No;0,146;Q2;13;10;26;785;9;26;0,41;78,50;53,85;0;United Kingdom;Western Europe;"Cambridge University Press";"1955-2025";"Classics (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +25625;5700170927;"Atlantis";journal;"19896840, 02106124";"Spanish Association of Anglo-American Studies";Yes;Yes;0,146;Q2;19;14;83;706;24;79;0,27;50,43;57,89;0;Spain;Western Europe;"Spanish Association of Anglo-American Studies";"2000-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25626;16400154747;"Biblical Theology Bulletin";journal;"19457596, 01461079";"SAGE Publications Inc.";No;No;0,146;Q2;21;25;75;1103;22;75;0,30;44,12;23,08;0;United States;Northern America;"SAGE Publications Inc.";"1973-2025";"Religious Studies (Q2)";"Arts and Humanities" +25627;21100242833;"Black Theology";journal;"17431670, 14769948";"Taylor and Francis Ltd.";No;No;0,146;Q2;9;15;58;437;19;51;0,10;29,13;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2008, 2010, 2012-2026";"Religious Studies (Q2)";"Arts and Humanities" +25628;75696;"Catholic University Law Review";journal;"00088390";"Catholic University of America Press";No;No;0,146;Q2;13;26;55;4615;10;54;0,14;177,50;28,00;0;United States;Northern America;"Catholic University of America Press";"1973-1974, 1979, 1982, 1988, 1998-1999, 2002-2003, 2005-2025";"Religious Studies (Q2); Law (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +25629;21100874728;"In Esse: English Studies in Albania";journal;"20787413";"Albanian Society for the Study of English";No;No;0,146;Q2;3;6;32;145;4;28;0,18;24,17;85,71;0;Albania;Eastern Europe;"Albanian Society for the Study of English";"2017-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +25630;16300154730;"Insula";journal;"00204536";"Insula: Libreria Ediciones y Publicaciones, S.A.";Yes;No;0,146;Q2;7;80;360;831;30;318;0,07;10,39;53,85;0;Spain;Western Europe;"Insula: Libreria Ediciones y Publicaciones, S.A.";"2002-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25631;7200153149;"Journal of Jewish Thought and Philosophy";journal;"1053699X, 1477285X";"Brill Academic Publishers";No;No;0,146;Q2;13;10;35;1195;9;32;0,14;119,50;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"1993-1995, 1997-2004, 2006-2025";"Literature and Literary Theory (Q2); Religious Studies (Q2); Anthropology (Q3); Cultural Studies (Q3); Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25632;5800227547;"Journal of Theological Studies";journal;"14774607, 00225185";"Oxford University Press";No;No;0,146;Q2;24;30;69;2471;24;69;0,38;82,37;21,43;0;United Kingdom;Western Europe;"Oxford University Press";"1899-1913, 1915-1995, 2002-2025";"Religious Studies (Q2)";"Arts and Humanities" +25633;21100944295;"Literatura: Teoria, Historia, Critica";journal;"01235931, 22565450";"Universidad Nacional de Colombia";Yes;Yes;0,146;Q2;4;21;79;548;13;65;0,10;26,10;38,89;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2019-2026";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25634;21101243355;"Slavic Literatures";journal;"29503965";"Elsevier B.V.";No;No;0,146;Q2;10;36;118;1697;33;109;0,22;47,14;50,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2024-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25635;5600153982;"Acta Koreana";journal;"15207412, 27335348";"Academia Koreana";No;No;0,146;Q3;10;16;40;732;11;32;0,33;45,75;21,43;0;South Korea;Asiatic Region;"Academia Koreana";"2009-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25636;21100832754;"Acta Universitatis Sapientiae, Philologica";journal;"23918179, 20675151";"Sciendo";Yes;Yes;0,146;Q3;6;0;53;0;17;53;0,30;0,00;0,00;0;Poland;Eastern Europe;"Sciendo";"2017-2023";"Linguistics and Language (Q3)";"Social Sciences" +25637;145624;"Black Scholar";journal;"00064246, 21625387";"Taylor and Francis Ltd.";No;No;0,146;Q3;26;23;76;358;37;58;0,30;15,57;61,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1969-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25638;21101369253;"Computational Engineering and Physical Modeling";journal;"25886959";"Pouyan Press";No;No;0,146;Q3;2;12;48;468;24;48;0,50;39,00;12,50;0;Iran;Middle East;"Pouyan Press";"2023-2025";"Architecture (Q3); Civil and Structural Engineering (Q4); Computational Mechanics (Q4); Engineering (miscellaneous) (Q4)";"Engineering" +25639;21101026991;"Disputatio (Spain)";journal;"22540601";"Ediciones Universidad de Salamanca";Yes;No;0,146;Q3;6;0;68;0;15;68;0,25;0,00;0,00;0;Spain;Western Europe;"Ediciones Universidad de Salamanca";"2017-2024";"Philosophy (Q3)";"Arts and Humanities" +25640;21101251521;"Estudios en Derecho a la Informacion";journal;"25940082, 26832038";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,146;Q3;3;12;38;539;12;35;0,35;44,92;30,77;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2019-2026";"Law (Q3); Education (Q4); Public Administration (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25641;21100228017;"Fichte-Studien";book series;"18795811, 09250166";"Editions Rodopi B.V.";No;No;0,146;Q3;4;0;63;0;5;59;0,10;0,00;0,00;0;Netherlands;Western Europe;"Editions Rodopi B.V.";"2003, 2009, 2012-2014, 2016-2024";"Philosophy (Q3)";"Arts and Humanities" +25642;21101060641;"Hacia la Promocion de la Salud";journal;"01217577, 24628425";"Universidad de Caldas";Yes;Yes;0,146;Q3;8;18;85;615;23;75;0,08;34,17;58,33;0;Colombia;Latin America;"Universidad de Caldas";"2019-2025";"Health Professions (miscellaneous) (Q3); Community and Home Care (Q4); Health Policy (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine; Nursing; Social Sciences" +25643;21100932444;"International Journal of Chinese Linguistics";journal;"22138706, 22138714";"John Benjamins Publishing Company";No;No;0,146;Q3;5;12;28;771;12;27;0,50;64,25;60,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +25644;21101260415;"Iranian Journal of Archaeological Studies";journal;"2251743X, 26762919";"University of Sistan and Baluchestan";Yes;Yes;0,146;Q3;2;14;55;683;6;52;0,11;48,79;37,50;0;Iran;Middle East;"University of Sistan and Baluchestan";"2020-2025";"Anthropology (Q3); Archeology (Q3); Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +25645;21100432483;"ITE Transactions on Media Technology and Applications";journal;"21867364";"Institute of Image Information and Television Engineers";No;No;0,146;Q3;21;48;82;1171;30;73;0,33;24,40;9,60;0;Japan;Asiatic Region;"Institute of Image Information and Television Engineers";"2013-2026";"Media Technology (Q3); Computer Graphics and Computer-Aided Design (Q4); Signal Processing (Q4)";"Computer Science; Engineering" +25646;21101071827;"Journal for Foreign Languages";journal;"23504269, 18558453";"University of Ljubljana Press";Yes;Yes;0,146;Q3;4;12;64;298;14;61;0,22;24,83;86,67;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2019-2024";"Linguistics and Language (Q3)";"Social Sciences" +25647;21100854799;"Journal of Islamic Archaeology";journal;"20519729, 20519710";"Equinox Publishing Ltd";No;No;0,146;Q3;11;8;26;639;8;24;0,29;79,88;33,33;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2014-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +25648;21100975919;"Journal of World Philosophies";journal;"24741795";"Indiana University Press";Yes;Yes;0,146;Q3;9;22;57;721;13;57;0,18;32,77;36,00;0;United States;Northern America;"Indiana University Press";"2016-2025";"Philosophy (Q3)";"Arts and Humanities" +25649;5800207596;"Linguistica";journal;"2079312X, 11320214";"Asociacion de Linguistica y Filologia de la America Latina";Yes;Yes;0,146;Q3;8;5;57;177;8;52;0,14;35,40;40,00;0;Uruguay;Latin America;"Asociacion de Linguistica y Filologia de la America Latina";"2012-2025";"Linguistics and Language (Q3); Artificial Intelligence (Q4)";"Computer Science; Social Sciences" +25650;21101048552;"Pravnik";journal;"02316625";"Academy of Sciences of the Czech Republic, Institute of State and Law";No;No;0,146;Q3;3;70;209;1106;21;187;0,11;15,80;33,33;0;Czech Republic;Eastern Europe;"Academy of Sciences of the Czech Republic, Institute of State and Law";"2019-2026";"Law (Q3)";"Social Sciences" +25651;21100207202;"Principia";journal;"14144247, 18081711";"Federal University of Santa Catarina";Yes;Yes;0,146;Q3;8;24;102;1118;22;100;0,23;46,58;10,00;0;Brazil;Latin America;"Federal University of Santa Catarina";"2012-2025";"History and Philosophy of Science (Q3); Philosophy (Q3)";"Arts and Humanities" +25652;21101133217;"Russian Cardiology Bulletin";journal;"2712889X, 20776764";"Media Sphera Publishing Group";No;No;0,146;Q3;5;52;137;1295;61;137;0,47;24,90;52,82;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2019-2025";"Family Practice (Q3); Cardiology and Cardiovascular Medicine (Q4); Internal Medicine (Q4); Surgery (Q4)";"Medicine" +25653;21101021754;"Slovensky Narodopis";journal;"13399357, 13351303";"Slovak Academy of Sciences";Yes;No;0,146;Q3;7;29;89;1156;34;80;0,20;39,86;57,58;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences";"2019-2025";"Anthropology (Q3)";"Social Sciences" +25654;16100154762;"Studia Phaenomenologica";journal;"20690061, 15825647";"Romanian Society for Phenomenology";No;No;0,146;Q3;13;17;49;883;13;46;0,29;51,94;26,67;0;Romania;Eastern Europe;"Romanian Society for Phenomenology";"2001-2025";"Philosophy (Q3)";"Arts and Humanities" +25655;14000155884;"Taiwan Journal of Linguistics";journal;"17294649, 19942559";"Crane Publishing Co.";Yes;Yes;0,146;Q3;9;0;28;0;10;27;0,45;0,00;0,00;0;Taiwan;Asiatic Region;"Crane Publishing Co.";"2009-2024";"Linguistics and Language (Q3)";"Social Sciences" +25656;21101176861;"Yearbook of Polar Law";book series;"18768814";"Brill Nijhoff";No;No;0,146;Q3;11;0;29;0;18;24;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"2009-2017, 2019-2020, 2022";"Law (Q3); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +25657;21101260451;"Advances in Science and Engineering Technology International Conferences, ASET";journal;"28316886, 28316878";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,146;Q4;5;0;138;0;120;137;0,87;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Civil and Structural Engineering (Q4); Energy Engineering and Power Technology (Q4); Mechanics of Materials (Q4); Renewable Energy, Sustainability and the Environment (Q4); Safety, Risk, Reliability and Quality (Q4); Waste Management and Disposal (Q4); Water Science and Technology (Q4)";"Energy; Engineering; Environmental Science" +25658;20958;"Alauda";journal;"00024619";"Societe d'Etudes Ornithologiques";No;No;0,146;Q4;17;18;89;622;5;82;0,03;34,56;26,19;0;France;Western Europe;"Societe d'Etudes Ornithologiques";"1981-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +25659;13010;"Annales de Pathologie";journal;"02426498";"Elsevier Masson s.r.l.";No;No;0,146;Q4;29;110;276;1815;71;236;0,19;16,50;56,03;0;France;Western Europe;"Elsevier Masson s.r.l.";"1981-2026";"Pathology and Forensic Medicine (Q4)";"Medicine" +25660;144914;"Arthroskopie";journal;"09337946, 14343924";"Springer Medizin";No;No;0,146;Q4;9;77;201;2463;56;172;0,33;31,99;16,47;0;Germany;Western Europe;"Springer Medizin";"2002-2003, 2005-2026";"Orthopedics and Sports Medicine (Q4)";"Medicine" +25661;26496;"Bulletin de l'Academie Nationale de Medecine";journal;"00014079";"Elsevier Masson s.r.l.";No;No;0,146;Q4;26;169;536;4884;116;407;0,24;28,90;31,00;0;France;Western Europe;"Elsevier Masson s.r.l.";"1947-1949, 1951-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25662;21101200234;"Cardiologia Hungarica";journal;"01335596, 15880230";"Promenade Publishing House Kft";Yes;Yes;0,146;Q4;5;57;203;1478;61;187;0,38;25,93;30,95;0;Hungary;Eastern Europe;"Promenade Publishing House Kft";"2020-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +25663;21101019760;"Chinese Journal of Orthopaedics";journal;"02532352";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,146;Q4;11;165;573;5857;223;573;0,34;35,50;24,67;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2025";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Surgery (Q4)";"Health Professions; Medicine" +25664;19313;"Clinical Neurology";journal;"18820654, 0009918X";"Societas Neurologica Japonica";No;No;0,146;Q4;23;146;434;2008;91;389;0,26;13,75;20,55;0;Japan;Asiatic Region;"Societas Neurologica Japonica";"1972-2026";"Neurology (clinical) (Q4)";"Medicine" +25665;17700155819;"Croatian Economic Survey";journal;"13304860, 18463878";"Institute of Economics (Zagreb)";Yes;Yes;0,146;Q4;11;4;17;183;11;17;0,82;45,75;50,00;0;Croatia;Eastern Europe;"Institute of Economics (Zagreb)";"2008, 2010-2025";"Economics and Econometrics (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +25666;24676;"Crystallography Reports";journal;"10637745, 1562689X";"Pleiades Publishing";No;No;0,146;Q4;45;141;504;4631;192;498;0,32;32,84;37,90;0;United States;Northern America;"Pleiades Publishing";"1996-2025";"Chemistry (miscellaneous) (Q4); Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +25667;12638;"Eastern Journal of Medicine";journal;"13093886, 13010883";"Yuzuncu Yil Universitesi Tip Fakultesi";Yes;No;0,146;Q4;14;98;305;2597;109;305;0,32;26,50;35,47;0;Turkey;Middle East;"Yuzuncu Yil Universitesi Tip Fakultesi";"2002-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25668;23426;"Equilibrium Research";journal;"03855716";"Japan Society for Equilibrium Research";No;No;0,146;Q4;13;36;97;771;13;97;0,13;21,42;23,08;0;Japan;Asiatic Region;"Japan Society for Equilibrium Research";"1971-1974, 1978-2025";"Neurology (clinical) (Q4); Otorhinolaryngology (Q4)";"Medicine" +25669;21100868929;"Exploratory Animal and Medical Research";journal;"2277470X, 2319247X";"West Bengal Veterinary Alumni Association";Yes;Yes;0,146;Q4;10;0;160;0;58;155;0,31;0,00;0,00;0;India;Asiatic Region;"West Bengal Veterinary Alumni Association";"2018-2024";"Ecology (Q4); Health, Toxicology and Mutagenesis (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4); Veterinary (miscellaneous) (Q4)";"Environmental Science; Medicine; Veterinary" +25670;21100839186;"Gender a Vyzkum / Gender and Research";journal;"25706586, 25706578";"Academy of Sciences of the Czech Republic, Institute of Sociology";Yes;Yes;0,146;Q4;9;16;50;621;18;45;0,39;38,81;68,75;0;Czech Republic;Eastern Europe;"Academy of Sciences of the Czech Republic, Institute of Sociology";"2017-2025";"Gender Studies (Q4)";"Social Sciences" +25671;19297;"Grekov's Bulletin of Surgery";journal;"00424625, 26867370";"Pavlov University";Yes;Yes;0,146;Q4;9;65;267;1215;60;261;0,19;18,69;22,11;0;Russian Federation;Eastern Europe;"Pavlov University";"1946, 1949-2015, 2018-2025";"Medicine (miscellaneous) (Q4); Surgery (Q4)";"Medicine" +25672;19509;"Health Care of the Russian Federation";journal;"0044197X, 24120723";"Meditsina Publishers";No;No;0,146;Q4;8;86;258;1989;101;256;0,40;23,13;57,63;0;Russian Federation;Eastern Europe;"Meditsina Publishers";"1965-1980, 2016-2025";"Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +25673;15079;"Hearing Journal";journal;"23336218, 07457472";"Lippincott Williams and Wilkins Ltd.";No;No;0,146;Q4;23;29;256;332;49;182;0,25;11,45;51,61;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1999, 2001-2026";"Speech and Hearing (Q4)";"Health Professions" +25674;22375;"Indian Drugs";journal;"0019462X";"Indian Drug Manufacturers' Association";No;No;0,146;Q4;33;104;378;3173;164;342;0,51;30,51;48,26;0;India;Asiatic Region;"Indian Drug Manufacturers' Association";"1989-2025";"Drug Discovery (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +25675;21101243608;"Industrial Water Treatment";journal;"1005829X";"";Yes;No;0,146;Q4;7;302;932;8532;480;932;0,55;28,25;37,00;0;China;Asiatic Region;"";"1996, 2021-2026";"Water Science and Technology (Q4)";"Environmental Science" +25676;19700186872;"International Journal of Cognitive Informatics and Natural Intelligence";journal;"15573958, 15573966";"IGI Global Publishing";No;No;0,146;Q4;30;47;57;1354;49;57;1,02;28,81;53,25;0;United States;Northern America;"IGI Global Publishing";"2007-2026";"Artificial Intelligence (Q4); Human-Computer Interaction (Q4); Software (Q4)";"Computer Science" +25677;21100867370;"International Journal of eBusiness and eGovernment Studies";journal;"21460744";"Social Sciences Research Society";Yes;No;0,146;Q4;15;19;190;889;113;190;0,46;46,79;34,48;0;Turkey;Middle East;"Social Sciences Research Society";"2018-2025";"Business and International Management (Q4); Computer Science Applications (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Computer Science" +25678;20500195026;"International Journal of High Dilution Research";journal;"19826206";"Groupe International de Recherche sur l'Infinitesimal";Yes;Yes;0,146;Q4;10;36;152;950;22;147;0,18;26,39;48,33;0;Brazil;Latin America;"Groupe International de Recherche sur l'Infinitesimal";"2011-2025";"Complementary and Alternative Medicine (Q4)";"Medicine" +25679;8300153137;"International Journal of Metadata, Semantics and Ontologies";journal;"1744263X, 17442621";"Inderscience Enterprises Ltd";No;No;0,146;Q4;23;0;29;0;19;29;0,32;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2024";"Computer Science Applications (Q4); E-learning (Q4); Information Systems (Q4); Library and Information Sciences (Q4)";"Computer Science; Social Sciences" +25680;21100821197;"Iranian Journal of Ichthyology";journal;"23831561, 23830964";"Iranian Society of Ichthyology";Yes;No;0,146;Q4;17;15;179;882;103;179;0,37;58,80;32,65;0;Iran;Middle East;"Iranian Society of Ichthyology";"2014-2025";"Aquatic Science (Q4)";"Agricultural and Biological Sciences" +25681;21101047723;"Journal of Arrhythmology";journal;"15618641, 26587327";"NJSC Institute of Cardiological Technology (INCART)";Yes;Yes;0,146;Q4;5;31;134;901;50;126;0,38;29,06;38,74;0;Russian Federation;Eastern Europe;"NJSC Institute of Cardiological Technology (INCART)";"2019-2026";"Cardiology and Cardiovascular Medicine (Q4); Emergency Medicine (Q4); Pharmacology (medical) (Q4)";"Medicine" +25682;22541;"Journal of Camel Practice and Research";journal;"22778934, 09716777";"Camel Publishing House";No;No;0,146;Q4;25;39;119;1215;40;116;0,32;31,15;39,51;0;India;Asiatic Region;"Camel Publishing House";"1996-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +25683;21101200274;"Journal of Cancer Research Updates";journal;"19292279, 19292260";"Neoplasia Research";No;No;0,146;Q4;3;28;33;935;15;33;0,50;33,39;41,84;0;Canada;Northern America;"Neoplasia Research";"2012-2013, 2019-2026";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +25684;21101230574;"Journal of Korea Society of Waste Management";journal;"20932332, 22875638";"Korea Society of Waste Management";No;No;0,146;Q4;6;33;176;899;39;176;0,22;27,24;30,23;0;South Korea;Asiatic Region;"Korea Society of Waste Management";"2020-2025";"Environmental Engineering (Q4); Management, Monitoring, Policy and Law (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +25685;21101361235;"Jurnal Ilmu dan Teknologi Kelautan Tropis";journal;"20879423, 2620309X";"IPB University Faculty of Fisheries and Marine";No;No;0,146;Q4;3;12;51;431;26;51;0,51;35,92;33,33;0;Indonesia;Asiatic Region;"IPB University Faculty of Fisheries and Marine";"2023-2025";"Ocean Engineering (Q4); Oceanography (Q4)";"Earth and Planetary Sciences; Engineering" +25686;19700174716;"Klimik Dergisi";journal;"13091484, 1301143X";"DOC Design and Informatics Co. Ltd.";No;No;0,146;Q4;13;34;141;1124;53;137;0,43;33,06;53,28;0;Turkey;Middle East;"DOC Design and Informatics Co. Ltd.";"2010-2025";"Infectious Diseases (Q4); Microbiology (medical) (Q4)";"Medicine" +25687;21100316048;"Korean Chemical Engineering Research";journal;"0304128X, 22339558";"Korean Institute of Chemical Engineers";No;No;0,146;Q4;17;50;204;2099;79;204;0,48;41,98;31,88;0;South Korea;Asiatic Region;"Korean Institute of Chemical Engineers";"2014-2026";"Chemical Engineering (miscellaneous) (Q4)";"Chemical Engineering" +25688;21101181929;"Mathematics and Education in Mathematics";journal;"13133330, 28154002";"Union of Bulgarian Mathematicians";No;No;0,146;Q4;3;23;60;276;13;57;0,26;12,00;57,89;0;Bulgaria;Eastern Europe;"Union of Bulgarian Mathematicians";"2019-2025";"Applied Mathematics (Q4); Computer Science (miscellaneous) (Q4); Education (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Mathematics; Social Sciences" +25689;21100239243;"Modern Food Science and Technology";journal;"16739078";"South China University of Technology";No;No;0,146;Q4;15;307;1476;11986;817;1476;0,57;39,04;47,87;0;China;Asiatic Region;"South China University of Technology";"2013-2026";"Food Science (Q4)";"Agricultural and Biological Sciences" +25690;17992;"Neurophysiology";journal;"15739007, 00902977";"Springer";No;No;0,146;Q4;21;8;50;350;25;47;0,44;43,75;51,43;0;United States;Northern America;"Springer";"1969-2022, 2025-2026";"Neuroscience (miscellaneous) (Q4); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Neuroscience" +25691;4300151403;"Nobel Medicus";journal;"13052381";"Nobelmedicus";No;No;0,146;Q4;10;16;83;512;14;81;0,15;32,00;56,60;0;Turkey;Middle East;"Nobelmedicus";"2005-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25692;21101039258;"Political Economy of Communication";journal;"23571705";"International Association of Media Communication Research";No;No;0,146;Q4;13;5;14;267;9;12;0,64;53,40;25,00;0;New Zealand;Pacific Region;"International Association of Media Communication Research";"2013-2018, 2020-2021, 2023-2026";"Communication (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25693;13329;"Pratiques Psychologiques";journal;"1878092X, 12691763";"Elsevier Masson s.r.l.";No;No;0,146;Q4;17;26;51;1549;22;48;0,40;59,58;62,20;0;France;Western Europe;"Elsevier Masson s.r.l.";"2004-2026";"Psychology (miscellaneous) (Q4)";"Psychology" +25694;21101272547;"Proceedings of the International Congress on Environmental Geotechnics";book series;"30057531";"Argo-E Group";No;No;0,146;Q4;3;0;246;0;69;245;0,28;0,00;0,00;0;Greece;Western Europe;"Argo-E Group";"2023";"Civil and Structural Engineering (Q4); Environmental Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering; Environmental Science" +25695;21100891786;"Produccion y Limpia";journal;"23230703, 19090455";"Corporacion Universitaria Lasallista";Yes;Yes;0,146;Q4;6;20;56;640;25;51;0,50;32,00;34,62;0;Colombia;Latin America;"Corporacion Universitaria Lasallista";"2018-2025";"Environmental Science (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science" +25696;21101304252;"Psychiatry Research Case Reports";journal;"27730212";"Elsevier B.V.";No;No;0,146;Q4;3;44;46;1298;25;46;0,54;29,50;49,70;0;Netherlands;Western Europe;"Elsevier B.V.";"2022, 2024-2026";"Psychiatry and Mental Health (Q4)";"Medicine" +25697;145267;"Rendiconti del Seminario Matematico";journal;"2704999X, 03731243";"Rendiconti del Seminario Matematico";Yes;No;0,146;Q4;22;0;11;0;3;9;0,10;0,00;0,00;0;Italy;Western Europe;"Rendiconti del Seminario Matematico";"1999-2024";"Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics" +25698;20000195056;"Revista Cubana de Fisica";journal;"22247939, 02539268";"Sociedad Cubana de Fisica";Yes;Yes;0,146;Q4;9;23;64;604;11;64;0,12;26,26;23,68;0;Cuba;Latin America;"Sociedad Cubana de Fisica";"2011-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +25699;21100815532;"Revista de Osteoporosis y Metabolismo Mineral";journal;"21732345, 1889836X";"Sociedad Espanola de Investigacion Osea y del Metabolismo Mineral (SEIOMM)";Yes;Yes;0,146;Q4;7;11;68;462;15;62;0,07;42,00;53,85;0;Spain;Western Europe;"Sociedad Espanola de Investigacion Osea y del Metabolismo Mineral (SEIOMM)";"2013-2025";"Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +25700;21100199339;"Romanian Journal of Diabetes, Nutrition and Metabolic Diseases";journal;"15838609";"Romanian Society of Diabetes, Nutrition and Metabolic Diseases";Yes;No;0,146;Q4;13;53;205;1376;76;204;0,38;25,96;60,39;0;Romania;Eastern Europe;"Romanian Society of Diabetes, Nutrition and Metabolic Diseases";"2011-2025";"Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)";"Medicine" +25701;90979;"Shanghai Kou Qiang Yi Xue / Shanghai Journal of Stomatology";journal;"10067248";"";No;No;0,146;Q4;13;115;367;1136;122;367;0,28;9,88;44,31;0;China;Asiatic Region;"";"2003-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +25702;7500153128;"Universitas Psychologica";journal;"16579267, 20112777";"Pontificia Universidad Javeriana";Yes;No;0,146;Q4;37;28;77;1691;32;77;0,21;60,39;44,74;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2007-2026";"Psychology (miscellaneous) (Q4); Social Psychology (Q4)";"Psychology" +25703;21100783507;"Vestnik Transplantologii i Iskusstvennykh Organov";journal;"19951191, 24126160";"Russian Transplant Society";Yes;Yes;0,146;Q4;11;82;209;2777;91;200;0,45;33,87;38,30;0;Russian Federation;Eastern Europe;"Russian Transplant Society";"2015-2025";"Immunology and Allergy (Q4); Transplantation (Q4)";"Medicine" +25704;20828;"Vojnosanitetski Pregled";journal;"24060720, 00428450";"Inst. Sci. inf., Univ. Defence in Belgrade";Yes;No;0,146;Q4;27;89;427;2649;117;414;0,26;29,76;51,72;0;Serbia;Eastern Europe;"Inst. Sci. inf., Univ. Defence in Belgrade";"1949-2026";"Medicine (miscellaneous) (Q4); Pharmacology (medical) (Q4)";"Medicine" +25705;19319;"Zentralblatt fur Chirurgie";journal;"14389592, 0044409X";"Georg Thieme Verlag";No;No;0,146;Q4;35;137;355;2401;83;220;0,25;17,53;25,66;0;Germany;Western Europe;"Georg Thieme Verlag";"1947-1948, 1950-1961, 1963-2026";"Medicine (miscellaneous) (Q4); Surgery (Q4)";"Medicine" +25706;26916;"AIP Conference Proceedings";conference and proceedings;"0094243X, 15517616";"American Institute of Physics";No;No;0,146;-;96;13346;61320;294281;23081;59749;0,37;22,05;36,96;1;United States;Northern America;"American Institute of Physics";"1972-2026";"Physics and Astronomy (miscellaneous)";"Physics and Astronomy" +25707;21101111525;"International Conference on Harbour, Maritime and Multimodal Logistics Modelling and Simulation";conference and proceedings;"27240339";"I3M Conference";No;No;0,146;-;5;0;35;0;13;32;0,36;0,00;0,00;0;Spain;Western Europe;"I3M Conference";"2019-2024";"Business and International Management; Computer Science Applications; Management Science and Operations Research; Strategy and Management; Transportation";"Business, Management and Accounting; Computer Science; Decision Sciences; Social Sciences" +25708;21101189272;"Proceedings of the International Workshop on Innovative Simulation for Health Care, IWISH";conference and proceedings;"27240371";"Cal-Tek srl";No;No;0,146;-;3;0;28;0;10;26;0,36;0,00;0,00;0;Italy;Western Europe;"Cal-Tek srl";"2023-2024";"Health Informatics; Modeling and Simulation";"Mathematics; Medicine" +25709;16200154767;"Asian Theatre Journal";journal;"07425457, 15272109";"University of Hawaii Press";No;No;0,145;Q2;16;22;61;763;13;55;0,23;34,68;34,48;0;United States;Northern America;"University of Hawaii Press";"2002-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +25710;21100465146;"Atalanta";journal;"23401176";"Departamento de Literatura Espanola-Universidad de Sevilla";Yes;Yes;0,145;Q2;5;13;52;546;5;50;0,14;42,00;38,46;0;Spain;Western Europe;"Departamento de Literatura Espanola-Universidad de Sevilla";"2016-2025";"History (Q2); Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25711;21100896901;"Benjamins Translation Library";book series;"09297316";"John Benjamins Publishing Company";No;No;0,145;Q2;55;2;66;115;27;1;0,41;57,50;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1994-2016, 2018-2021, 2023-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +25712;19900191813;"English Academy Review";journal;"10131752, 17535360";"Taylor and Francis Ltd.";No;No;0,145;Q2;13;17;73;273;26;45;0,35;16,06;60,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-1985, 1987-2026";"History (Q2); Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25713;16800154728;"Foreign Literature Studies";journal;"10037519";"Central China Normal University";No;No;0,145;Q2;11;0;192;0;26;192;0,04;0,00;0,00;0;China;Asiatic Region;"Central China Normal University";"2005-2024";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25714;26605;"Historia Mathematica";journal;"03150860, 1090249X";"Academic Press Inc.";No;No;0,145;Q2;24;23;48;981;22;42;0,44;42,65;13,33;0;United States;Northern America;"Academic Press Inc.";"1974-2026";"History (Q2); Mathematics (miscellaneous) (Q4)";"Arts and Humanities; Mathematics" +25715;19900193213;"IUP Journal of English Studies";journal;"09733728";"IUP Publications";No;No;0,145;Q2;5;44;150;931;12;145;0,06;21,16;62,50;0;India;Asiatic Region;"IUP Publications";"2009-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25716;21100845655;"Journal of Africana Religions";journal;"21655405, 21655413";"Penn State University Press";No;No;0,145;Q2;8;14;31;657;13;31;0,24;46,93;33,33;0;United States;Northern America;"Penn State University Press";"2012, 2015, 2017-2025";"Religious Studies (Q2); Anthropology (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25717;21100407408;"Journal of Law, Religion and State";journal;"22126465, 22124810";"Brill Academic Publishers";No;No;0,145;Q2;11;0;16;0;6;14;0,46;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2024";"Religious Studies (Q2); Law (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25718;19700168708;"Militargeschichtliche Zeitschrift";journal;"21966850, 21932336";"De Gruyter Oldenbourg";No;No;0,145;Q2;5;15;54;1493;12;51;0,20;99,53;21,43;0;Germany;Western Europe;"De Gruyter Oldenbourg";"2000-2001, 2009-2025";"History (Q2)";"Arts and Humanities" +25719;21101087786;"Nauchnyy Vestnik Moskovskoy Konservatorii";journal;"27131807, 20799438";"Moscow State Tchaikovsky Conservatory";No;No;0,145;Q2;3;24;81;682;11;81;0,15;28,42;62,50;0;Russian Federation;Eastern Europe;"Moscow State Tchaikovsky Conservatory";"2019-2025";"Music (Q2)";"Arts and Humanities" +25720;21101199358;"Poligramas";journal;"25909207";"Universidad del Valle";Yes;Yes;0,145;Q2;2;24;77;469;7;71;0,06;19,54;50,00;0;Colombia;Latin America;"Universidad del Valle";"2019-2026";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25721;21101122882;"Review of Religion and Chinese Society";journal;"22143955, 22143947";"Brill Academic Publishers";No;No;0,145;Q2;10;0;30;0;10;29;0,35;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2024";"Religious Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25722;21100899304;"Revista de Demografia Historica";journal;"1696702X";"Asociación de Demografía Histórica";No;No;0,145;Q2;6;0;26;0;6;26;0,20;0,00;0,00;0;Spain;Western Europe;"Asociación de Demografía Histórica";"2018-2024";"History (Q2); Demography (Q4)";"Arts and Humanities; Social Sciences" +25723;16400154742;"Revista de Literatura Medieval";journal;"26604574, 11303611";"Universidad de Alcala";Yes;Yes;0,145;Q2;6;15;34;648;10;33;0,21;43,20;60,00;0;Spain;Western Europe;"Universidad de Alcala";"2002-2005, 2007-2013, 2015, 2017-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25724;21100245925;"Revista Letral";journal;"19893302";"Department of Spanish Literature of the University of Granada";Yes;Yes;0,145;Q2;7;30;96;987;14;94;0,09;32,90;64,29;0;Spain;Western Europe;"Department of Spanish Literature of the University of Granada";"2013-2026";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25725;21101196450;"Traduction et Langues";journal;"11123974, 26006235";"University of Oran 2 Mohamed Ben Ahmed";Yes;No;0,145;Q2;3;31;74;976;30;74;0,41;31,48;60,47;0;Algeria;Africa;"University of Oran 2 Mohamed Ben Ahmed";"2023-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +25726;21101291059;"Vienna Journal of East Asian Studies";journal;"2521702X, 25217038";"Brill Academic Publishers";No;No;0,145;Q2;6;8;32;426;15;30;0,54;53,25;37,50;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2022, 2024-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +25727;21100842664;"Archives of Orofacial Sciences";journal;"22317163, 18238602";"Penerbit Universiti Sains Malaysia";Yes;No;0,145;Q3;6;15;66;547;22;64;0,43;36,47;52,73;0;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2017-2025";"Orthodontics (Q3); Oral Surgery (Q4)";"Dentistry" +25728;23113;"Differences";journal;"10407391";"Duke University Press";No;No;0,145;Q3;38;19;96;745;29;93;0,15;39,21;47,37;0;United States;Northern America;"Duke University Press";"1994, 1998, 2001-2025";"Cultural Studies (Q3); Gender Studies (Q4)";"Social Sciences" +25729;21100862242;"Discurso y Sociedad";journal;"18874606";"Universidad Pompeu Fabra";Yes;Yes;0,145;Q3;8;10;78;351;24;78;0,21;35,10;75,00;0;Spain;Western Europe;"Universidad Pompeu Fabra";"2018-2025";"Linguistics and Language (Q3)";"Social Sciences" +25730;12616;"Dynamis";journal;"02119536";"Editorial Universidad de Granada";Yes;No;0,145;Q3;19;19;72;1123;15;72;0,25;59,11;45,83;0;Spain;Western Europe;"Editorial Universidad de Granada";"1981-1985, 1987, 1989-2025";"History and Philosophy of Science (Q3); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +25731;21100839116;"Journal of Contemporary Archaeology";journal;"20513437, 20513429";"Equinox Publishing Ltd";No;No;0,145;Q3;18;8;45;400;22;45;0,41;50,00;47,06;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2014-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +25732;21101211361;"Onomastica desde America Latina";journal;"26752719";"Universidade Estadual do Oeste do Parana";Yes;Yes;0,145;Q3;5;22;55;454;6;55;0,13;20,64;65,00;0;Brazil;Latin America;"Universidade Estadual do Oeste do Parana";"2020-2026";"Anthropology (Q3); Linguistics and Language (Q3); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +25733;21101146385;"Revista Direito e Sexualidade";journal;"26753596";"Universidade Federal da Bahia";Yes;Yes;0,145;Q3;3;25;95;838;9;55;0,07;33,52;47,83;0;Brazil;Latin America;"Universidade Federal da Bahia";"2020-2025";"Law (Q3); Gender Studies (Q4)";"Social Sciences" +25734;4700153007;"Rivista Italiana della Medicina di Laboratorio";journal;"20396821, 1825859X";"Edizioni Minerva Medica";No;No;0,145;Q3;13;40;120;1734;37;108;0,36;43,35;63,56;0;Italy;Western Europe;"Edizioni Minerva Medica";"2005-2025";"Medical Laboratory Technology (Q3); Biochemistry (medical) (Q4)";"Health Professions; Medicine" +25735;21100197738;"Teoria";journal;"11221259";"Dipartimento di Filosofia dell Universita di Pisa";No;No;0,145;Q3;6;25;52;605;12;51;0,15;24,20;28,57;0;Italy;Western Europe;"Dipartimento di Filosofia dell Universita di Pisa";"2011-2012, 2014-2015, 2017-2026";"Philosophy (Q3)";"Arts and Humanities" +25736;14000155926;"Transactions of the Charles S Peirce Society";journal;"00091774";"Indiana University Press";No;No;0,145;Q3;23;14;65;615;16;64;0,07;43,93;28,57;0;United States;Northern America;"Indiana University Press";"2002-2025";"Philosophy (Q3)";"Arts and Humanities" +25737;21101023658;"Tsinghua China Law Review";journal;"21602379, 21518904";"Tsinghua University";No;No;0,145;Q3;3;12;52;939;13;50;0,26;78,25;28,57;0;China;Asiatic Region;"Tsinghua University";"2019-2025";"Law (Q3)";"Social Sciences" +25738;21101057019;"University of Western Australia Law Review";journal;"00420328";"Centre for Studies in Australian Literature";No;No;0,145;Q3;6;23;66;4131;20;65;0,39;179,61;52,00;0;Australia;Pacific Region;"Centre for Studies in Australian Literature";"2019-2025";"Law (Q3)";"Social Sciences" +25739;21101073719;"AIS Transactions on Replication Research";journal;"24733458";"Association for Information Systems";No;No;0,145;Q4;5;0;19;0;12;19;0,50;0,00;0,00;0;United States;Northern America;"Association for Information Systems";"2014, 2018-2019, 2021-2024";"Information Systems (Q4); Management Information Systems (Q4)";"Business, Management and Accounting; Computer Science" +25740;21101160597;"Archives of Epilepsy";journal;"27920550";"Galenos Publishing House";Yes;Yes;0,145;Q4;4;32;82;736;36;78;0,33;23,00;63,24;0;Turkey;Middle East;"Galenos Publishing House";"2022-2025";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +25741;21101294476;"Area Abierta";journal;"25307592, 15788393";"Universidad Complutense Madrid";Yes;No;0,145;Q4;4;29;59;922;23;53;0,34;31,79;43,24;0;Spain;Western Europe;"Universidad Complutense Madrid";"2019, 2022-2026";"Communication (Q4); Marketing (Q4)";"Business, Management and Accounting; Social Sciences" +25742;28125;"Bahrain Medical Bulletin";journal;"10128298";"Bahrain Medical Bulletin";No;No;0,145;Q4;16;161;365;5668;174;358;0,55;35,20;41,15;0;Bahrain;Middle East;"Bahrain Medical Bulletin";"1990, 1995-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25743;21100390408;"Bulgarian Astronomical Journal";journal;"13145592, 13132709";"Institute of Astronomy and Rozhen NAO";No;No;0,145;Q4;7;19;54;510;23;51;0,63;26,84;30,43;0;Bulgaria;Eastern Europe;"Institute of Astronomy and Rozhen NAO";"2014-2026";"Astronomy and Astrophysics (Q4)";"Physics and Astronomy" +25744;88850;"Chemistry and Industry of Forest Products";journal;"02532417";"Editorial Board of Chemistry and Industry of Forest Products";No;No;0,145;Q4;13;111;333;2979;166;333;0,52;26,84;41,41;0;China;Asiatic Region;"Editorial Board of Chemistry and Industry of Forest Products";"1997-2006, 2013-2026";"Fluid Flow and Transfer Processes (Q4); Forestry (Q4)";"Agricultural and Biological Sciences; Chemical Engineering" +25745;21101239191;"China Brewing";journal;"02545071";"Editorial Department of China Brewing";Yes;No;0,145;Q4;6;368;991;8844;554;991;0,56;24,03;43,15;0;China;Asiatic Region;"Editorial Department of China Brewing";"2023-2025";"Applied Microbiology and Biotechnology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +25746;21101020033;"Chinese Journal of Digestive Surgery";journal;"16739752";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,145;Q4;13;191;575;9515;364;567;0,78;49,82;31,62;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2025";"Gastroenterology (Q4); Surgery (Q4)";"Medicine" +25747;23096;"Cor et Vasa";journal;"00108650, 18037712";"Czech Society of Cardiology Z.S";No;No;0,145;Q4;19;90;266;2147;74;248;0,26;23,86;37,75;0;Czech Republic;Eastern Europe;"Czech Society of Cardiology Z.S";"1961-1994, 2006-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +25748;19711;"Education Next";journal;"15399672, 15399664";"Hoover Institution";Yes;No;0,145;Q4;27;32;148;2;48;24;0,32;0,06;26,09;0;United States;Northern America;"Hoover Institution";"2004-2025";"Education (Q4)";"Social Sciences" +25749;21100896203;"Finance India";journal;"09703772";"Indian Institute of Finance";No;No;0,145;Q4;9;49;190;2367;64;190;0,43;48,31;36,67;0;India;Asiatic Region;"Indian Institute of Finance";"2018-2025";"Accounting (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +25750;14173;"Forum der Psychoanalyse";journal;"14370751, 01787667";"Springer Verlag";No;No;0,145;Q4;13;37;111;933;13;93;0,15;25,22;41,67;0;Germany;Western Europe;"Springer Verlag";"1987-2026";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +25751;23945;"Gefahrstoffe Reinhaltung der Luft";journal;"09498036";"VDI Fachmedien GmbH & Co. KG";No;No;0,145;Q4;21;58;183;754;13;100;0,08;13,00;36,04;0;Germany;Western Europe;"VDI Fachmedien GmbH & Co. KG";"1996-2026";"Health, Toxicology and Mutagenesis (Q4); Management, Monitoring, Policy and Law (Q4); Pollution (Q4)";"Environmental Science" +25752;21100199333;"Groups, Complexity, Cryptology";journal;"18696104, 18671144";"Episciences";Yes;Yes;0,145;Q4;16;6;16;108;6;16;0,27;18,00;11,11;0;United States;Northern America;"Episciences";"2009-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Networks and Communications (Q4)";"Computer Science; Mathematics" +25753;19700201684;"Haseki Tip Bulteni";journal;"21472688, 13020072";"Galenos Publishing House";Yes;Yes;0,145;Q4;8;47;181;1089;61;180;0,37;23,17;38,89;0;Turkey;Middle East;"Galenos Publishing House";"2011-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25754;11200153547;"Interface Science and Technology";book series;"15734285";"Elsevier B.V.";No;No;0,145;Q4;38;20;64;776;234;9;1,23;38,80;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2004-2009, 2011, 2013, 2017-2025";"Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4); Surfaces, Coatings and Films (Q4)";"Chemistry; Materials Science" +25755;15345;"Journal of Donghua University (English Edition)";journal;"16725220";"";No;No;0,145;Q4;13;59;231;1665;94;231;0,44;28,22;34,87;0;China;Asiatic Region;"";"1986-2025";"Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)";"Engineering; Materials Science" +25756;19700177035;"Journal of the Yamashina Institute for Ornithology";journal;"18820999, 13485032";"Yamashina Institute for Ornithology";No;No;0,145;Q4;7;13;51;308;11;37;0,06;23,69;18,75;0;Japan;Asiatic Region;"Yamashina Institute for Ornithology";"2005-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +25757;19700186945;"Journal of Urban and Environmental Engineering";journal;"19823932";"Universidade Federal da Paraiba";Yes;Yes;0,145;Q4;22;6;41;260;10;41;0,19;43,33;35,71;0;Brazil;Latin America;"Universidade Federal da Paraiba";"2007-2025";"Environmental Engineering (Q4); Urban Studies (Q4)";"Environmental Science; Social Sciences" +25758;24066;"LC-GC North America";journal;"15275949";"UBM Medica Healthcare Publications";No;No;0,145;Q4;36;0;221;0;83;153;0,54;0,00;0,00;0;United States;Northern America;"UBM Medica Healthcare Publications";"1999-2023";"Analytical Chemistry (Q4)";"Chemistry" +25759;21100211372;"Life Span and Disability";journal;"20355963";"Oasi Editrice";Yes;Yes;0,145;Q4;19;8;35;370;18;35;0,52;46,25;58,82;0;Italy;Western Europe;"Oasi Editrice";"2005, 2009-2025";"Developmental and Educational Psychology (Q4); Health (social science) (Q4); Life-span and Life-course Studies (Q4)";"Psychology; Social Sciences" +25760;21100933892;"Mathematical Gazette";journal;"00255572, 20566328";"Cambridge University Press";No;No;0,145;Q4;6;94;302;500;34;195;0,12;5,32;8,47;0;United Kingdom;Western Europe;"Cambridge University Press";"1937, 1939, 1949, 1998, 2005, 2009, 2019-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +25761;21101257955;"Media Gizi Indonesia";journal;"16937228, 25408410";"Airlangga University";Yes;No;0,145;Q4;5;41;167;1366;70;166;0,44;33,32;71,43;0;Indonesia;Asiatic Region;"Airlangga University";"2020-2026";"Food Science (Q4); Health Professions (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Health Professions; Nursing" +25762;21101152585;"Miznarodnij Endokrinologicnij Zurnal";journal;"23071427, 22240721";"Zaslavsky Publishing House";Yes;No;0,145;Q4;9;134;265;4154;182;261;0,71;31,00;63,96;0;Ukraine;Eastern Europe;"Zaslavsky Publishing House";"2019-2025";"Endocrinology (Q4); Pathology and Forensic Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +25763;22166;"Osteuropa";journal;"25093444, 00306428";"Berliner Wissenschafts-Verlag";No;No;0,145;Q4;13;80;318;3334;26;293;0,06;41,68;28,00;0;Germany;Western Europe;"Berliner Wissenschafts-Verlag";"1974, 1976, 1978-1979, 1984, 1986, 1996-2025";"Sociology and Political Science (Q4)";"Social Sciences" +25764;21100903047;"Patologiya Krovoobrashcheniya i Kardiokhirurgiya";journal;"16813472, 25003119";"Meshalkin National Medical Research Center";Yes;Yes;0,145;Q4;9;8;99;234;24;99;0,26;29,25;36,67;0;Russian Federation;Eastern Europe;"Meshalkin National Medical Research Center";"2018-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +25765;21101048273;"Pelviperineology";journal;"19734905, 19734913";"Galenos Publishing House";No;No;0,145;Q4;5;18;74;294;12;65;0,16;16,33;48,28;0;Turkey;Middle East;"Galenos Publishing House";"2019-2025";"Internal Medicine (Q4); Medicine (miscellaneous) (Q4); Obstetrics and Gynecology (Q4)";"Medicine" +25766;5800170451;"Politologija";journal;"13921681, 24246034";"Vilnius University Press";Yes;Yes;0,145;Q4;6;17;55;923;19;55;0,21;54,29;15,79;0;Lithuania;Eastern Europe;"Vilnius University Press";"2012-2026";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25767;22061;"Refractories and Industrial Ceramics";journal;"10834877, 15739139";"Springer New York";No;No;0,145;Q4;23;0;276;0;100;276;0,38;0,00;0,00;0;United States;Northern America;"Springer New York";"1996-2024";"Ceramics and Composites (Q4); Materials Chemistry (Q4)";"Materials Science" +25768;19037;"Results and Problems in Cell Differentiation";book series;"00801844, 18610412";"Springer Science and Business Media Deutschland GmbH";No;No;0,145;Q4;57;16;98;2335;189;12;1,69;145,94;0,00;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1972, 1977-1978, 1980, 1986-1987, 1989, 1991-1992, 1994, 1998-2002, 2006-2012, 2014-2020, 2022, 2024-2026";"Cell Biology (Q4); Developmental Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +25769;21828;"Revista Cubana de Farmacia";journal;"00347515, 15612988";"Editorial Ciencias Medicas";Yes;No;0,145;Q4;10;16;106;364;11;104;0,06;22,75;56,41;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1980-1991, 1996-2000, 2002, 2004-2025";"Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacy (Q4)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +25770;23661;"Revista de Odontologia da UNESP";journal;"18072577, 01011774";"Universidade Estadual Paulista (UNESP)";Yes;No;0,145;Q4;4;26;79;667;27;79;0,41;25,65;62,89;0;Brazil;Latin America;"Universidade Estadual Paulista (UNESP)";"1970, 1984, 1988, 1990, 2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25771;21100857526;"Russian Sklifosovsky Journal of Emergency Medical Care";journal;"22239022, 25418017";"Sklifosovsky Research Institute for Emergency Medicine";Yes;Yes;0,145;Q4;11;90;245;2477;75;242;0,32;27,52;36,32;0;Russian Federation;Eastern Europe;"Sklifosovsky Research Institute for Emergency Medicine";"2017-2025";"Emergency Medicine (Q4)";"Medicine" +25772;21101080116;"Siberian Journal of Clinical and Experimental Medicine";journal;"27132927, 2713265X";"Tomsk State University";No;No;0,145;Q4;7;98;298;2159;116;292;0,42;22,03;54,37;0;Russian Federation;Eastern Europe;"Tomsk State University";"2020-2025";"Cardiology and Cardiovascular Medicine (Q4); Internal Medicine (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +25773;21100423705;"Studies in Public and Non-Profit Governance";book series;"20516630, 20516649";"Emerald Group Publishing Ltd.";No;No;0,145;Q4;11;8;7;209;9;1;1,29;26,13;14,29;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2013-2016, 2018, 2023, 2025-2026";"Public Administration (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25774;23730;"Suo";journal;"00395471";"Suoseura - Finnish Peatland Society";Yes;No;0,145;Q4;20;3;23;110;9;23;0,19;36,67;36,36;0;Finland;Western Europe;"Suoseura - Finnish Peatland Society";"1983, 1986, 1992-1994, 1996-2016, 2018-2025";"Ecology (Q4); Geology (Q4); Soil Science (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +25775;21101043801;"Urban Social Work";journal;"24748684, 24748692";"Springer Publishing Company";No;No;0,145;Q4;5;11;50;515;11;41;0,24;46,82;63,16;0;United States;Northern America;"Springer Publishing Company";"2017-2025";"Health (social science) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25776;21101131202;"Proceedings - International Ural Conference on Measurements, UralCon";conference and proceedings;"27680797, 27680789";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,145;-;7;0;78;0;36;77;0,00;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2021-2022";"Instrumentation";"Physics and Astronomy" +25777;21101049145;"Proceedings of International Structural Engineering and Construction";conference and proceedings;"2644108X";"ISEC Press";No;No;0,145;-;9;207;529;2492;195;524;0,38;12,04;21,69;0;United States;Northern America;"ISEC Press";"2014-2018, 2020-2025";"Architecture; Building and Construction; Civil and Structural Engineering; Safety, Risk, Reliability and Quality";"Engineering" +25778;21101071950;"Antichnaya Drevnost' i Srednie Veka";journal;"26870398, 03204472";"Ural Federal University";Yes;Yes;0,144;Q2;3;44;76;1919;8;76;0,08;43,61;52,54;0;Russian Federation;Eastern Europe;"Ural Federal University";"2019-2025";"Classics (Q2); History (Q2); Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +25779;5900152782;"Architectural Design";journal;"00038504, 15542769";"Conde Nast Publications, Inc.";No;No;0,144;Q2;35;0;295;0;106;263;0,24;0,00;0,00;0;United States;Northern America;"Conde Nast Publications, Inc.";"2002-2024";"Visual Arts and Performing Arts (Q2); Architecture (Q3)";"Arts and Humanities; Engineering" +25780;21100400851;"Aries";journal;"15700593, 15679896";"Brill Academic Publishers";No;No;0,144;Q2;15;14;37;1322;30;21;0,81;94,43;14,29;0;Netherlands;Western Europe;"Brill Academic Publishers";"2001-2026";"History (Q2); Religious Studies (Q2); Philosophy (Q3)";"Arts and Humanities" +25781;21475;"East Central Europe";journal;"00943037, 18763308";"Brill Academic Publishers";No;No;0,144;Q2;12;13;44;806;17;43;0,43;62,00;58,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"1975-1987, 1989-1990, 1992-1993, 1999-2006, 2009-2025";"History (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25782;21101190431;"European Journal for the History of Medicine and Health";journal;"26667703, 26667711";"Brill Academic Publishers";No;No;0,144;Q2;13;21;40;2480;13;37;0,35;118,10;78,95;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2025";"History (Q2)";"Arts and Humanities" +25783;5700166475;"European Journal of East Asian Studies";journal;"15700615, 15680584";"Brill Academic Publishers";No;No;0,144;Q2;18;16;38;1211;16;35;0,48;75,69;31,58;0;Netherlands;Western Europe;"Brill Academic Publishers";"2001, 2003, 2007-2026";"History (Q2); Cultural Studies (Q3); Development (Q4); Geography, Planning and Development (Q4); Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +25784;28844;"Glotta - Zeitschrift fur Griechische und Lateinische Sprache";journal;"00171298";"Vandenhoeck and Ruprecht GmbH and Co. KG";No;No;0,144;Q2;12;12;43;778;10;43;0,28;64,83;7,14;0;Germany;Western Europe;"Vandenhoeck and Ruprecht GmbH and Co. KG";"1975, 1979-1981, 1986, 1995, 2002-2005, 2007-2025";"Classics (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25785;21100932724;"Historical Studies in Industrial Relations";journal;"20494459, 13621572";"Liverpool University Press";No;No;0,144;Q2;4;10;29;935;6;26;0,18;93,50;12,50;0;United Kingdom;Western Europe;"Liverpool University Press";"2018-2025";"History (Q2); Economics and Econometrics (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +25786;21100218392;"Humanities Diliman";journal;"16551532, 20120788";"University of the Philippines";Yes;Yes;0,144;Q2;6;8;53;269;13;47;0,22;33,63;45,45;0;Philippines;Asiatic Region;"University of the Philippines";"2012-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25787;14000155925;"Journal of Musicology";journal;"15338347, 02779269";"University of California Press";No;No;0,144;Q2;22;12;45;1261;9;45;0,23;105,08;33,33;0;United States;Northern America;"University of California Press";"1982-1999, 2001-2025";"Music (Q2)";"Arts and Humanities" +25788;21101169020;"Mythlore";journal;"01469339";"The Mythopoeic Society";No;No;0,144;Q2;4;22;94;765;20;78;0,22;34,77;12,50;0;United States;Northern America;"The Mythopoeic Society";"2019-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +25789;19600157207;"Perichoresis";journal;"22847308, 1224984X";"";Yes;No;0,144;Q2;6;24;97;766;9;97;0,11;31,92;4,17;0;Poland;Eastern Europe;"";"2009-2025";"Religious Studies (Q2)";"Arts and Humanities" +25790;21100898966;"Punk and Post-Punk";journal;"20443706, 20441983";"Intellect Ltd.";No;No;0,144;Q2;7;26;61;801;11;48;0,20;30,81;41,67;0;United Kingdom;Western Europe;"Intellect Ltd.";"2018-2026";"History (Q2); Music (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25791;21101313384;"Quarterly Journal of St. Philaret's Institute";journal;"27133141, 26587599";"St Philaret's Institute";Yes;No;0,144;Q2;3;41;100;787;13;95;0,14;19,20;46,51;0;Russian Federation;Eastern Europe;"St Philaret's Institute";"2022-2025";"Religious Studies (Q2)";"Arts and Humanities" +25792;28953;"Religious Studies Review";journal;"17480922, 0319485X";"John Wiley and Sons Inc";No;No;0,144;Q2;4;14;100;58;19;63;0,24;4,14;28,57;0;United States;Northern America;"John Wiley and Sons Inc";"1976-1978, 1980-1982, 1989-1990, 1996, 2005-2025";"Religious Studies (Q2)";"Arts and Humanities" +25793;21100898992;"Res Musica";journal;"23828080, 17368553";"Estonian Academy of Music and Theatre, Estonian Musicological Society";No;No;0,144;Q2;3;13;34;328;8;25;0,29;25,23;100,00;0;Estonia;Eastern Europe;"Estonian Academy of Music and Theatre, Estonian Musicological Society";"2018-2025";"Music (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25794;24925;"Rivista degli Studi Orientali";journal;"17241863, 03924866";"Fabrizio Serra Editore Srl";No;No;0,144;Q2;6;37;99;1251;10;94;0,05;33,81;52,78;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"1971-1972, 2012-2025";"History (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25795;6500153132;"Scottish Historical Review";journal;"17500222, 00369241";"Edinburgh University Press";No;No;0,144;Q2;21;19;58;579;19;48;0,36;30,47;47,62;0;United Kingdom;Western Europe;"Edinburgh University Press";"1978, 1982, 1996-2025";"History (Q2)";"Arts and Humanities" +25796;21100815331;"Vestnik Drevnei Istorii";journal;"03210391";"Izdatel'stvo Nauka";Yes;No;0,144;Q2;7;51;138;2335;15;135;0,10;45,78;20,45;0;Russian Federation;Eastern Europe;"Izdatel'stvo Nauka";"2016-2025";"Classics (Q2); History (Q2); Archeology (arts and humanities) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25797;17795;"Vierteljahrshefte fur Zeitgeschichte";journal;"00425702, 21967121";"Walter de Gruyter GmbH";No;No;0,144;Q2;18;17;76;2216;16;73;0,22;130,35;21,05;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1967, 1972, 1976-1977, 1981, 1984, 1986, 1998-1999, 2001-2026";"History (Q2)";"Arts and Humanities" +25798;21101329570;"Administrative and Environmental Law Review";journal;"27232484, 27459330";"";Yes;No;0,144;Q3;4;11;36;419;20;36;0,54;38,09;33,33;0;Indonesia;Asiatic Region;"";"2021-2025";"Law (Q3); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +25799;21100239828;"Allgemeine Zeitschrift fur Philosophie";journal;"03407969";"Frommann-holzboog";No;No;0,144;Q3;3;16;58;365;8;55;0,17;22,81;40,00;0;Germany;Western Europe;"Frommann-holzboog";"2009, 2013-2025";"Philosophy (Q3)";"Arts and Humanities" +25800;21101044706;"Archivio Antropologico Mediterraneo";journal;"20383215";"University of Palermo - Department of Culture and Societies";Yes;Yes;0,144;Q3;7;29;76;1387;17;68;0,14;47,83;69,23;0;Italy;Western Europe;"University of Palermo - Department of Culture and Societies";"2019-2025";"Anthropology (Q3); Education (Q4); Gender Studies (Q4); Urban Studies (Q4)";"Social Sciences" +25801;21100868564;"Dialogue Studies";book series;"18751792";"John Benjamins Publishing Company";No;No;0,144;Q3;6;0;10;0;7;1;0,70;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2018, 2021, 2023-2024";"Linguistics and Language (Q3)";"Social Sciences" +25802;19900192618;"History of Education and Children's Literature";journal;"19711093, 19711131";"eum - Edizioni Universita di Macerata";No;No;0,144;Q3;7;68;189;2878;31;187;0,12;42,32;60,00;0;Italy;Western Europe;"eum - Edizioni Universita di Macerata";"2011-2025";"History and Philosophy of Science (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +25803;21100400180;"Law and Economics Yearly Review";journal;"20509014";"Fondazione Gerardo Capriglione Onlus";No;No;0,144;Q3;8;7;65;728;8;62;0,07;104,00;30,77;0;United Kingdom;Western Europe;"Fondazione Gerardo Capriglione Onlus";"2012-2025";"Law (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +25804;21100933803;"Manusya";journal;"26659077, 08599920";"Chulalongkorn University Department of Biology";No;No;0,144;Q3;6;18;73;685;23;70;0,28;38,06;16,67;0;Thailand;Asiatic Region;"Chulalongkorn University Department of Biology";"2019-2025";"Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +25805;21101124071;"Mizan Law Review";journal;"2309902X, 19989881";"St Mary's University";Yes;Yes;0,144;Q3;5;14;46;489;22;45;0,43;34,93;12,50;0;Ethiopia;Africa;"St Mary's University";"2019-2025";"Law (Q3)";"Social Sciences" +25806;21100286900;"Nashim";journal;"07938934, 15655288";"Indiana University Press";No;No;0,144;Q3;9;15;51;1301;6;44;0,26;86,73;73,33;0;United States;Northern America;"Indiana University Press";"2012-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +25807;21101023427;"Open Philosophy";journal;"25438875";"Walter de Gruyter GmbH";Yes;No;0,144;Q3;11;44;152;1675;66;146;0,30;38,07;14,58;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2018-2025";"Philosophy (Q3)";"Arts and Humanities" +25808;21100228083;"Philosophia Scientiae";book series;"12812463, 17754283";"Numdam (Numerisation de Documents Anciens Mathematiques)";Yes;Yes;0,144;Q3;9;0;38;0;16;37;0,42;0,00;0,00;0;France;Western Europe;"Numdam (Numerisation de Documents Anciens Mathematiques)";"2012-2024";"History and Philosophy of Science (Q3)";"Arts and Humanities" +25809;5800223977;"Slovo a Slovesnost";journal;"25710885, 00377031";"Czech Language Institute of the Academy of Sciences";No;No;0,144;Q3;9;11;50;608;15;40;0,31;55,27;53,33;0;Czech Republic;Eastern Europe;"Czech Language Institute of the Academy of Sciences";"2004-2025";"Linguistics and Language (Q3)";"Social Sciences" +25810;20345;"Sydney Law Review";journal;"14449528, 00820512";"University of Sydney Law School";No;No;0,144;Q3;9;14;60;655;30;60;0,58;46,79;40,00;0;Australia;Pacific Region;"University of Sydney Law School";"1990, 1999, 2001-2002, 2004, 2019-2025";"Law (Q3)";"Social Sciences" +25811;21100794824;"Yearbook of Phraseology";journal;"18686338, 1868632X";"De Gruyter Mouton";No;No;0,144;Q3;8;8;24;373;21;19;0,67;46,63;55,56;0;Germany;Western Europe;"De Gruyter Mouton";"2014-2025";"Linguistics and Language (Q3); Communication (Q4)";"Social Sciences" +25812;21100283763;"Acta Geotechnica Slovenica";journal;"18540171";"University of Maribor";No;No;0,144;Q4;18;0;10;0;5;10;0,00;0,00;0,00;0;Slovenia;Eastern Europe;"University of Maribor";"2008-2022";"Geology (Q4); Geophysics (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +25813;16560;"Applied Radiology";journal;"01609963, 18792898";"Anderson Publishing Ltd";Yes;No;0,144;Q4;18;52;260;693;46;102;0,18;13,33;29,41;0;United States;Northern America;"Anderson Publishing Ltd";"1973-1991, 1996-2026";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +25814;8600153122;"Archives of Veterinary Science";journal;"1517784X";"Universidade Federal do Parana";Yes;Yes;0,144;Q4;11;30;96;787;26;96;0,31;26,23;36,00;0;Brazil;Latin America;"Universidade Federal do Parana";"2007-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +25815;15233;"Australasian Journal of Disaster and Trauma Studies";journal;"11744707";"Massey University";Yes;No;0,144;Q4;24;0;30;0;21;30;0,78;0,00;0,00;0;New Zealand;Pacific Region;"Massey University";"1997, 2004-2008, 2010-2024";"Applied Psychology (Q4)";"Psychology" +25816;21100855926;"Australian Journal of Herbal and Naturopathic Medicine";journal;"22091203, 2209119X";"Naturopaths and Herbalists Association of Australia";No;No;0,144;Q4;14;26;55;482;13;31;0,20;18,54;60,00;0;Australia;Pacific Region;"Naturopaths and Herbalists Association of Australia";"2018-2025";"Complementary and Alternative Medicine (Q4); Pharmacology (nursing) (Q4)";"Medicine; Nursing" +25817;21101274718;"AUT Journal of Electrical Engineering";journal;"25882910, 25882929";"Amirkabir University of Technology";Yes;Yes;0,144;Q4;5;39;98;1233;44;97;0,51;31,62;23,86;0;Iran;Middle East;"Amirkabir University of Technology";"2021-2026";"Biomedical Engineering (Q4); Computer Science (miscellaneous) (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +25818;21100782200;"Biological Letters";journal;"16447700, 17347467";"De Gruyter Open Ltd";Yes;No;0,144;Q4;12;0;2;0;2;2;0,00;0,00;0,00;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2009-2017, 2019, 2022";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +25819;21100936542;"Biomedical and Biopharmaceutical Research";journal;"21822379, 21822360";"ALIES";Yes;No;0,144;Q4;6;16;53;579;15;49;0,37;36,19;64,91;0;Portugal;Western Europe;"ALIES";"2019-2025";"Food Science (Q4); Pharmacology (medical) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4); Pharmacy (Q4)";"Agricultural and Biological Sciences; Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +25820;21100983353;"Chinese Journal of Pediatric Surgery";journal;"02533006";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,144;Q4;9;171;621;5030;124;620;0,20;29,42;38,06;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2026";"Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)";"Medicine" +25821;21100317201;"Cirugia Cardiovascular";journal;"11340096";"Sociedad Espanola de Cirugia Cardiovascular y Endovascular (SECCE)";Yes;No;0,144;Q4;12;106;226;2372;57;225;0,23;22,38;35,53;0;Spain;Western Europe;"Sociedad Espanola de Cirugia Cardiovascular y Endovascular (SECCE)";"2012-2026";"Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4)";"Medicine" +25822;19700175009;"Cocuk Enfeksiyon Dergisi";journal;"13071068, 13085271";"Bilimsel Tip Yayinevi";No;No;0,144;Q4;11;55;167;984;38;128;0,22;17,89;65,81;0;Turkey;Middle East;"Bilimsel Tip Yayinevi";"2009-2025";"Infectious Diseases (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +25823;21101363385;"Ecological Safety and Balanced Use of Resources";journal;"24153184, 25229508";"Ivano Frankivsk National Technical University of Oil and Gas";No;No;0,144;Q4;5;20;63;694;44;63;0,92;34,70;55,56;0;Ukraine;Eastern Europe;"Ivano Frankivsk National Technical University of Oil and Gas";"2021-2025";"Ecology (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4); Pollution (Q4)";"Environmental Science" +25824;21101337823;"Economy: strategy and practice";journal;"2663550X, 19979967";"Institute of Economics Committee of Science MSHE RK";Yes;No;0,144;Q4;6;37;164;1268;59;164;0,41;34,27;61,62;0;Kazakhstan;Asiatic Region;"Institute of Economics Committee of Science MSHE RK";"2021-2025";"Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +25825;21100409309;"Egyptian Journal of Ear, Nose, Throat and Allied Sciences";journal;"20900740, 20903405";"Egyptian Society of Ear Nose Throat and Allied Sciences";Yes;No;0,144;Q4;14;30;138;838;36;138;0,23;27,93;42,70;0;Egypt;Africa/Middle East;"Egyptian Society of Ear Nose Throat and Allied Sciences";"2011-2026";"Otorhinolaryngology (Q4); Surgery (Q4)";"Medicine" +25826;110297;"Fibre Chemistry";journal;"00150541, 15738493";"Springer";No;No;0,144;Q4;25;81;288;1278;46;287;0,15;15,78;52,14;0;United States;Northern America;"Springer";"1969-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Materials Science" +25827;21100875598;"Fizika Nizkikh Temperatur";journal;"01326414, 18160328";"B.Verkin Institute for Low Temperature Physics and Engineering of the NAS of Ukraine";No;No;0,144;Q4;25;136;481;4699;111;465;0,26;34,55;27,13;0;Ukraine;Eastern Europe;"B.Verkin Institute for Low Temperature Physics and Engineering of the NAS of Ukraine";"1987-1989, 1996-2026";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +25828;28006;"Gaceta Medica de Caracas";journal;"03674762, 27390012";"National Academy of Medicine";No;No;0,144;Q4;8;146;545;4664;175;533;0,37;31,95;45,34;0;Venezuela;Latin America;"National Academy of Medicine";"1954-1957, 1959-1965, 1971-1976, 1978-1988, 2008-2014, 2017-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25829;21101302442;"Genel Tip Dergisi";journal;"26023741";"Selcuk University";Yes;No;0,144;Q4;4;155;422;4176;102;418;0,21;26,94;46,39;0;Turkey;Middle East;"Selcuk University";"2021-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +25830;21101347009;"Geographic Information Systems Odyssey Journal";journal;"27202682";"SILGIS Association";No;No;0,144;Q4;4;30;64;721;20;64;0,33;24,03;44,23;0;Poland;Eastern Europe;"SILGIS Association";"2021-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +25831;21101158857;"Hematology in Clinical Practice";journal;"27202690, 27201015";"Via Medica";No;No;0,144;Q4;5;15;36;394;11;35;0,28;26,27;51,25;0;Poland;Eastern Europe;"Via Medica";"2021-2025";"Hematology (Q4); Oncology (Q4)";"Medicine" +25832;21101295544;"HNPS Advances in Nuclear Physics";journal;"26540088, 2654007X";"National Documentation Centre";No;No;0,144;Q4;4;27;90;302;20;86;0,22;11,19;31,75;0;Greece;Western Europe;"National Documentation Centre";"1995-1996, 1998-1999, 2002-2006, 2008-2021, 2023-2025";"Astronomy and Astrophysics (Q4); Atomic and Molecular Physics, and Optics (Q4); Nuclear and High Energy Physics (Q4); Radiation (Q4)";"Physics and Astronomy" +25833;21101065892;"Improved Oil and Gas Recovery";journal;"26888246";"Smart Science and Technology LLC";Yes;Yes;0,144;Q4;4;50;44;1414;27;44;0,55;28,28;24,07;0;United States;Northern America;"Smart Science and Technology LLC";"2019-2025";"Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4); Fuel Technology (Q4)";"Energy" +25834;21101254072;"Indian Journal of Cardiovascular Disease in Women - WINCARS";journal;"24557854, 28354982";"Scientific Scholar LLC";No;No;0,144;Q4;4;54;142;1646;57;112;0,57;30,48;54,95;0;United States;Northern America;"Scientific Scholar LLC";"2020-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +25835;11600154153;"Ingeniare";journal;"07183291, 07183305";"Universidad de Tarapaca";Yes;Yes;0,144;Q4;18;4;155;157;74;150;0,25;39,25;0,00;0;Chile;Latin America;"Universidad de Tarapaca";"2008-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +25836;21101164928;"Innovaciencia";journal;"2346075X";"Universidad de Santander";Yes;Yes;0,144;Q4;5;20;50;743;34;48;0,92;37,15;49,25;0;Colombia;Latin America;"Universidad de Santander";"2019-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Chemistry" +25837;21101038719;"International Journal of Biomedicine";journal;"21580510, 21580529";"International Medical Research and Development Corporation";Yes;No;0,144;Q4;8;131;373;3652;120;372;0,32;27,88;46,96;0;United States;Northern America;"International Medical Research and Development Corporation";"2019-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Immunology and Microbiology (miscellaneous) (Q4); Neuroscience (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Neuroscience" +25838;21100258631;"International Journal of Early Childhood Learning";journal;"23278722, 23277939";"Common Ground Research Networks";No;No;0,144;Q4;5;13;26;898;17;26;0,84;69,08;65,52;0;United States;Northern America;"Common Ground Research Networks";"2012-2025";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +25839;21100199726;"Iranian Journal of Dermatology";journal;"27170721";"Iranian Society of Dermatology";No;No;0,144;Q4;14;50;145;1147;31;129;0,18;22,94;62,21;0;Iran;Middle East;"Iranian Society of Dermatology";"2011-2025";"Dermatology (Q4)";"Medicine" +25840;29241;"Irish Geography";journal;"19394055, 00750778";"Geographical Society of Ireland";No;No;0,144;Q4;26;0;22;0;11;22;0,60;0,00;0,00;0;United Kingdom;Western Europe;"Geographical Society of Ireland";"1954-1965, 1969-2024";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +25841;21100846160;"Jahr";journal;"18487874, 18476376";"University of Rijeka, Faculty of Medicine";Yes;Yes;0,144;Q4;6;25;76;851;24;63;0,22;34,04;59,09;0;Croatia;Eastern Europe;"University of Rijeka, Faculty of Medicine";"2017-2025";"Health Policy (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +25842;24153;"Jingxi Huagong/Fine Chemicals";journal;"10035214";"Fine Chemicals";No;No;0,144;Q4;9;241;198;10351;144;198;0,73;42,95;40,57;0;China;Asiatic Region;"Fine Chemicals";"2001-2003, 2016, 2024-2025";"Catalysis (Q4); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4)";"Chemical Engineering; Chemistry; Materials Science" +25843;21100936376;"Journal Global Policy and Governance";journal;"21947759, 21947740";"Transition Academia Press";No;No;0,144;Q4;5;0;14;0;12;14;0,00;0,00;0,00;0;Germany;Western Europe;"Transition Academia Press";"2017, 2019-2022";"Economics and Econometrics (Q4); Political Science and International Relations (Q4)";"Economics, Econometrics and Finance; Social Sciences" +25844;21100241716;"Journal of Chinese Mass Spectrometry Society";journal;"10042997";"Chinese Society for Mass Spectrometry";Yes;No;0,144;Q4;13;80;245;2548;128;244;0,59;31,85;39,91;0;China;Asiatic Region;"Chinese Society for Mass Spectrometry";"2013-2025";"Atomic and Molecular Physics, and Optics (Q4)";"Physics and Astronomy" +25845;21100781873;"Journal of Drug and Alcohol Research";journal;"20908342, 20908334";"Ashdin Publishing";No;No;0,144;Q4;13;50;177;3007;78;173;0,57;60,14;38,93;0;Egypt;Africa/Middle East;"Ashdin Publishing";"2012, 2015-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +25846;21100787752;"Journal of Experimental and Clinical Medicine (Turkey)";journal;"13095129, 13094483";"Ondokuz Mayis Universitesi";Yes;No;0,144;Q4;11;80;536;2472;162;527;0,30;30,90;41,47;0;Turkey;Middle East;"Ondokuz Mayis Universitesi";"2014-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +25847;21101179099;"Journal of Henan University of Technology: Natural Science Edition";journal;"16732383";"";No;No;0,144;Q4;7;89;306;2942;152;306;0,46;33,06;45,70;0;China;Asiatic Region;"";"2019-2025";"Food Science (Q4)";"Agricultural and Biological Sciences" +25848;21100933317;"Journal of Information Systems Security";journal;"15510123, 15510808";"Information Institute";No;No;0,144;Q4;3;10;41;222;9;29;0,24;22,20;15,00;0;United States;Northern America;"Information Institute";"2019-2025";"Education (Q4); Information Systems (Q4); Information Systems and Management (Q4); Management Information Systems (Q4); Safety Research (Q4); Software (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences; Social Sciences" +25849;19700174646;"Journal of King Abdulaziz University, Islamic Economics";journal;"10187383, 16584244";"King Abdulaziz University Scientific Publishing Center";No;No;0,144;Q4;19;6;54;317;33;54;0,39;52,83;45,45;0;Saudi Arabia;Middle East;"King Abdulaziz University Scientific Publishing Center";"2009-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +25850;7700153238;"Journal of Pediatric Infectious Diseases";journal;"13057707, 13057693";"Georg Thieme Verlag";No;No;0,144;Q4;18;0;157;0;51;155;0,26;0,00;0,00;0;Netherlands;Western Europe;"Georg Thieme Verlag";"2006-2024";"Infectious Diseases (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +25851;21101297859;"Journal of University of Anbar for Pure Science";journal;"19918941, 27066703";"University of Anbar";Yes;No;0,144;Q4;6;66;159;2345;89;159;0,42;35,53;43,08;0;Iraq;Middle East;"University of Anbar";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Fuel Technology (Q4); Mathematics (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Energy; Engineering; Mathematics" +25852;19700176607;"Malaysian Journal of Microscopy";journal;"18237010, 26007444";"Microscopy Society of Malaysia";No;No;0,144;Q4;9;58;169;1265;86;168;0,50;21,81;39,62;0;Malaysia;Asiatic Region;"Microscopy Society of Malaysia";"2009-2025";"Histology (Q4); Instrumentation (Q4); Pathology and Forensic Medicine (Q4)";"Medicine; Physics and Astronomy" +25853;21100212321;"Mathematical Biology and Bioinformatics";journal;"19946538";"Russian Academy of Sciences,Department of the Earth Sciences";No;No;0,144;Q4;12;44;94;1730;42;94;0,55;39,32;40,63;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences,Department of the Earth Sciences";"2012-2026";"Applied Mathematics (Q4); Biomedical Engineering (Q4)";"Engineering; Mathematics" +25854;27817;"Naihuo Cailiao/Refractories";journal;"10011935";"Institute of Refractories Research";No;No;0,144;Q4;11;64;287;1441;76;287;0,28;22,52;32,47;0;China;Asiatic Region;"Institute of Refractories Research";"1998, 2001-2010, 2013-2015, 2017-2025";"Ceramics and Composites (Q4); Condensed Matter Physics (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4)";"Materials Science; Physics and Astronomy" +25855;21100267041;"NTU Management Review";journal;"10181601";"College of Management Press";Yes;No;0,144;Q4;6;8;47;530;15;47;0,39;66,25;50,00;0;Taiwan;Asiatic Region;"College of Management Press";"2012-2025";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +25856;19700174997;"ONdrugDelivery";trade journal;"2049145X, 20491468";"Frederick Furness Publishing";No;No;0,144;Q4;8;157;384;688;31;235;0,10;4,38;31,58;0;United Kingdom;Western Europe;"Frederick Furness Publishing";"2009-2026";"Pharmaceutical Science (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +25857;19700201627;"Open Urology and Nephrology Journal";journal;"1874303X";"Bentham Science Publishers";Yes;No;0,144;Q4;9;5;17;133;9;17;0,60;26,60;33,33;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2011-2025";"Nephrology (Q4); Urology (Q4)";"Medicine" +25858;21100922616;"Pesticide Research Journal";journal;"2249524X, 09706763";"Society of Pesticide Science India";No;No;0,144;Q4;7;44;105;946;21;104;0,23;21,50;51,00;0;India;Asiatic Region;"Society of Pesticide Science India";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Biochemistry (Q4); Biotechnology (Q4); Food Science (Q4); Pollution (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +25859;21101112830;"Plastic and Aesthetic Nursing";journal;"27703517, 27703509";"Wolters Kluwer Health";No;No;0,144;Q4;26;63;162;294;53;126;0,35;4,67;51,95;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2022-2026";"Advanced and Specialized Nursing (Q4); Medical and Surgical Nursing (Q4); Surgery (Q4)";"Medicine; Nursing" +25860;21100860907;"Proceedings of the I-ESA Conferences";book series;"21992533, 21992541";"Springer Science and Business Media Deutschland GmbH";No;No;0,144;Q4;12;19;54;387;19;50;0,35;20,37;25,00;0;United Kingdom;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2008, 2012, 2014, 2016, 2019, 2023-2025";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Control and Systems Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Information Systems (Q4)";"Computer Science; Engineering" +25861;21100229197;"Rendiconti dell'Istituto di Matematica dell'Universita di Trieste";journal;"24648728, 00494704";"EUT Edizioni Universita di Trieste";Yes;No;0,144;Q4;19;26;33;717;12;33;0,24;27,58;25,00;0;Italy;Western Europe;"EUT Edizioni Universita di Trieste";"1996-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +25862;21101048270;"Revista Colombiana de Cirugia";journal;"20117582, 26196107";"Asociacion Colombiana de Cirugia";Yes;Yes;0,144;Q4;8;138;253;2825;78;217;0,28;20,47;33,90;0;Colombia;Latin America;"Asociacion Colombiana de Cirugia";"2015, 2019-2026";"Surgery (Q4)";"Medicine" +25863;20265;"Revista Facultad de Medicina";journal;"23573848, 01200011";"Universidad Nacional de Colombia";Yes;Yes;0,144;Q4;17;21;145;702;54;122;0,21;33,43;34,41;0;Colombia;Latin America;"Universidad Nacional de Colombia";"1945-1949, 1951-1966, 1972-1974, 2007-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25864;21101149135;"Russian Journal of Woman and Child Health";journal;"26867184, 26188430";"Meditsina-Inform LLC";Yes;Yes;0,144;Q4;7;56;145;1570;76;144;0,55;28,04;77,67;0;Russian Federation;Eastern Europe;"Meditsina-Inform LLC";"2019-2025";"Obstetrics and Gynecology (Q4); Oncology (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +25865;110141;"Sangyo eiseigaku zasshi = Journal of occupational health";journal;"13410725";"Nihon Sangyo Eisei Gakkai";No;No;0,144;Q4;16;18;72;0;19;72;0,24;0,00;32,95;0;Japan;Asiatic Region;"Nihon Sangyo Eisei Gakkai";"1995-2026";"Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4); Toxicology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +25866;21100861547;"Suranaree Journal of Science and Technology";journal;"25870009, 0858849X";"Suranaree University of Technology";No;No;0,144;Q4;9;150;494;4205;194;494;0,40;28,03;41,75;0;Thailand;Asiatic Region;"Suranaree University of Technology";"2018-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +25867;21101342176;"Trends in Computational and Applied Mathematics";journal;"26760029";"Sociedade Brasileira de Matematica Aplicada e Computacional";Yes;No;0,144;Q4;5;19;118;444;32;118;0,19;23,37;21,21;0;Brazil;Latin America;"Sociedade Brasileira de Matematica Aplicada e Computacional";"2021-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Modeling and Simulation (Q4); Numerical Analysis (Q4)";"Mathematics" +25868;21101216647;"Turismo y Sociedad";journal;"2346206X, 01207555";"Universidad Externado de Colombia";Yes;Yes;0,144;Q4;7;25;91;1351;38;88;0,34;54,04;43,40;0;Colombia;Latin America;"Universidad Externado de Colombia";"2020-2026";"Geography, Planning and Development (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +25869;21101216645;"Turkish Journal of Agricultural Economics";journal;"13030183";"";No;No;0,144;Q4;4;33;50;1663;31;50;0,56;50,39;33,93;0;Turkey;Middle East;"";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +25870;21101164606;"Conference Proceedings of the European sCO2 Conference";conference and proceedings;"25107852";"DuEPublico - Duisburg-Essen Publications Online";No;No;0,144;-;9;43;31;996;18;30;0,58;23,16;10,87;0;Germany;Western Europe;"DuEPublico - Duisburg-Essen Publications Online";"2019, 2021, 2023, 2025";"Energy Engineering and Power Technology; Energy (miscellaneous); Engineering (miscellaneous); Nuclear Energy and Engineering";"Energy; Engineering" +25871;21101107948;"International Conference on Smart Cities and Green ICT Systems, SMARTGREENS - Proceedings";conference and proceedings;"21844968";"Science and Technology Publications, Lda";No;No;0,144;-;5;25;46;622;22;42;0,56;24,88;23,17;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Computer Networks and Communications; Information Systems";"Computer Science" +25872;21100878565;"Proceedings of the European Conference on Research Methods in Business and Management Studies";conference and proceedings;"20490976, 20490968";"Academic Conferences and Publishing International Limited";No;No;0,144;-;9;23;74;688;37;68;0,49;29,91;50,00;0;United Kingdom;Western Europe;"Academic Conferences and Publishing International Limited";"2017, 2019-2025";"Business and International Management; Education; Strategy and Management";"Business, Management and Accounting; Social Sciences" +25873;21100255701;"Proceedings of the International Astronautical Congress, IAC";conference and proceedings;"00741795";"International Astronautical Federation, IAF";No;No;0,144;-;22;537;6011;10735;597;5981;0,10;19,99;32,47;0;United States;Northern America;"International Astronautical Federation, IAF";"2012-2024";"Aerospace Engineering; Astronomy and Astrophysics; Space and Planetary Science";"Earth and Planetary Sciences; Engineering; Physics and Astronomy" +25874;13385;"Archiv fur Papyrusforschung und Verwandte Gebiete";journal;"18671551, 00666459";"Walter de Gruyter GmbH";No;No;0,143;Q2;13;10;70;334;13;70;0,12;33,40;27,27;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1901, 1903, 1906, 1908, 1913, 1920, 1924, 1927, 1930, 1932, 1935, 1937, 1939, 1941, 1953, 1958, 1960, 1966, 1970-1971, 1974, 1976, 1978, 1980, 1982-1998, 2000-2025";"History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +25875;21100205318;"Asiatic";journal;"19853106";"International Islamic University Malaysia";No;No;0,143;Q2;7;30;69;636;26;63;0,33;21,20;52,94;0;Malaysia;Asiatic Region;"International Islamic University Malaysia";"2012-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25876;21100851998;"Axon";journal;"18388973";"Faculty of Arts and Design, University of Canberra";No;No;0,143;Q2;3;58;17;1068;1;14;0,06;18,41;66,67;0;Australia;Pacific Region;"Faculty of Arts and Design, University of Canberra";"2017-2021, 2023-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +25877;28717;"Bulletin of the History of Medicine";journal;"10863176, 00075140";"Johns Hopkins University Press";No;No;0,143;Q2;41;19;82;1991;31;66;0,34;104,79;78,26;0;United States;Northern America;"Johns Hopkins University Press";"1945-2025";"History (Q2); Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)";"Arts and Humanities; Medicine; Nursing" +25878;16400154753;"Contemporary French and Francophone Studies";journal;"17409292";"Taylor and Francis Ltd.";No;No;0,143;Q2;12;60;199;1889;40;182;0,19;31,48;43,64;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1997-2026";"History (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25879;21100897782;"Education and Culture";journal;"10854908, 15591786";"Purdue University Press";No;No;0,143;Q2;5;7;35;209;11;29;0,21;29,86;75,00;0;United States;Northern America;"Purdue University Press";"2018-2025";"History (Q2); Cultural Studies (Q3); Philosophy (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +25880;14766;"Histoire et Mesure";journal;"09821783, 19577745";"College de France, Ecole des Hautes Etudes en Sciences Sociales (E H E S S)";No;No;0,143;Q2;12;0;39;0;12;37;0,55;0,00;0,00;0;France;Western Europe;"College de France, Ecole des Hautes Etudes en Sciences Sociales (E H E S S)";"1986, 1989, 1991, 1993, 1999, 2001-2024";"History (Q2)";"Arts and Humanities" +25881;20203;"International Labor and Working-Class History";journal;"14716445, 01475479";"Cambridge University Press";No;No;0,143;Q2;32;34;91;2817;50;88;0,57;82,85;46,67;0;United Kingdom;Western Europe;"Cambridge University Press";"1976-2026";"History (Q2); Organizational Behavior and Human Resource Management (Q4)";"Arts and Humanities; Business, Management and Accounting" +25882;21100934788;"Journal of Creative Music Systems";journal;"23997656";"University of Huddersfield Press";Yes;Yes;0,143;Q2;6;1;16;40;14;16;1,00;40,00;60,00;0;United Kingdom;Western Europe;"University of Huddersfield Press";"2017-2026";"Music (Q2)";"Arts and Humanities" +25883;21101041535;"Journal of Islamic Ethics";journal;"24685534, 24685542";"Brill Academic Publishers";Yes;Yes;0,143;Q2;6;11;25;550;12;24;0,41;50,00;27,27;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2025";"Religious Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Philosophy (Q3)";"Arts and Humanities" +25884;21100456194;"Journal of Japanese and Korean Cinema";journal;"17564913, 17564905";"Taylor and Francis Ltd.";No;No;0,143;Q2;9;6;35;213;19;33;0,05;35,50;25,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2013, 2015-2026";"Visual Arts and Performing Arts (Q2); Communication (Q4)";"Arts and Humanities; Social Sciences" +25885;6000152941;"Journal of the History of Collections";journal;"14778564, 09546650";"Oxford University Press";No;No;0,143;Q2;18;24;107;2084;34;104;0,34;86,83;64,52;0;United Kingdom;Western Europe;"Oxford University Press";"1989-1994, 1996-2025";"History (Q2); Museology (Q2); Visual Arts and Performing Arts (Q2); Conservation (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25886;15889;"Journal of World History";journal;"10456007, 15278050";"University of Hawaii Press";No;No;0,143;Q2;50;22;62;1666;33;60;0,38;75,73;33,33;0;United States;Northern America;"University of Hawaii Press";"1990-2025";"History (Q2)";"Arts and Humanities" +25887;21101163375;"Kul'tura Slavan i Kul'tura Evreev: Dialog, Shodstva, Razlicia";book series;"26583356";"Institute for Slavic Studies of the Russian Academy of Sciences";No;No;0,143;Q2;2;17;52;427;8;36;0,13;25,12;56,25;0;Russian Federation;Eastern Europe;"Institute for Slavic Studies of the Russian Academy of Sciences";"2019-2025";"History (Q2); Religious Studies (Q2); Anthropology (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25888;19700170277;"Nova Prisutnost";journal;"13342312";"Christian Academic Circle";Yes;Yes;0,143;Q2;7;36;123;1447;23;117;0,18;40,19;59,57;0;Croatia;Eastern Europe;"Christian Academic Circle";"2011-2025";"Religious Studies (Q2); Philosophy (Q3)";"Arts and Humanities" +25889;6500153145;"Proceedings of the Society of Antiquaries of Scotland";journal;"2056743X, 00811564";"Society of Antiquaries of Scotland";No;No;0,143;Q2;11;15;40;957;8;39;0,17;63,80;45,83;0;United Kingdom;Western Europe;"Society of Antiquaries of Scotland";"2010-2016, 2018-2025";"History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +25890;19700169117;"Social History of Alcohol and Drugs";journal;"26407329, 19308418";"University of Chicago Press";No;No;0,143;Q2;10;14;36;521;10;28;0,17;37,21;60,00;0;United States;Northern America;"University of Chicago Press";"2005-2025";"History (Q2); Cultural Studies (Q3); Law (Q4); Public Health, Environmental and Occupational Health (Q4)";"Arts and Humanities; Medicine; Social Sciences" +25891;6800153102;"Canadian Journal of Speech-Language Pathology and Audiology";journal;"1913200X, 19132018";"Canadian Association of Speech-Language Pathologists and Audiologists";Yes;Yes;0,143;Q3;23;2;41;117;16;41;0,41;58,50;77,78;0;Canada;Northern America;"Canadian Association of Speech-Language Pathologists and Audiologists";"2007-2025";"Linguistics and Language (Q3); Speech and Hearing (Q4)";"Health Professions; Social Sciences" +25892;21100823215;"Chinese as a Second Language Research";journal;"21932263, 21932271";"De Gruyter Mouton";No;No;0,143;Q3;6;12;35;539;12;35;0,35;44,92;40,00;0;Germany;Western Europe;"De Gruyter Mouton";"2015, 2017-2025";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +25893;145731;"Communication and Medicine";journal;"16121783, 16133625";"University of Toronto Press";No;No;0,143;Q3;27;9;46;0;25;39;0,31;0,00;63,16;0;Canada;Northern America;"University of Toronto Press";"2004-2026";"Linguistics and Language (Q3); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +25894;21101243077;"Discourses on Culture";journal;"24500402";"Sciendo";Yes;Yes;0,143;Q3;4;20;38;954;33;33;1,00;47,70;38,10;0;Poland;Eastern Europe;"Sciendo";"2022-2025";"Cultural Studies (Q3); Linguistics and Language (Q3); Business and International Management (Q4); Communication (Q4)";"Business, Management and Accounting; Social Sciences" +25895;21101111533;"Ethiopian Renaissance Journal of Social Sciences and Humanities";journal;"24096377, 24096385";"University of Gondar";No;No;0,143;Q3;5;19;60;850;30;59;0,37;44,74;30,23;0;Ethiopia;Africa;"University of Gondar";"2019-2026";"Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Demography (Q4); Developmental and Educational Psychology (Q4); Gender Studies (Q4)";"Arts and Humanities; Psychology; Social Sciences" +25896;21101224866;"Fundamina";journal;"1021545X, 24117870";"Juta and Company Ltd";No;No;0,143;Q3;3;6;22;411;8;22;0,40;68,50;75,00;0;South Africa;Africa;"Juta and Company Ltd";"2020-2025";"Law (Q3)";"Social Sciences" +25897;16200154736;"Germania";book series;"00168874";"Verlag Philipp von Zabern GmbHs";No;No;0,143;Q3;14;6;59;588;8;49;0,27;98,00;0,00;0;Germany;Western Europe;"Verlag Philipp von Zabern GmbHs";"1934-1939, 2002-2023, 2025";"Anthropology (Q3); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +25898;21100903864;"Hunter Gatherer Research";journal;"20563264";"Liverpool University Press";No;No;0,143;Q3;12;9;37;649;13;34;0,38;72,11;50,00;0;United Kingdom;Western Europe;"Liverpool University Press";"2016, 2018-2025";"Anthropology (Q3); Archeology (Q3); Archeology (arts and humanities) (Q3); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Arts and Humanities; Social Sciences" +25899;21100790721;"Italian Journal of Planning Practice";journal;"2239267X";"University of Rome La Sapienza";Yes;Yes;0,143;Q3;10;4;15;248;8;15;0,60;62,00;66,67;0;Italy;Western Europe;"University of Rome La Sapienza";"2011-2025";"Architecture (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Engineering; Social Sciences" +25900;145650;"Journal of Chinese Linguistics";journal;"00913723, 24113484";"Chinese University of Hong Kong Press";No;No;0,143;Q3;20;23;84;1062;21;78;0,22;46,17;40,00;0;Hong Kong;Asiatic Region;"Chinese University of Hong Kong Press";"1996-2025";"Arts and Humanities (miscellaneous) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25901;21101050346;"Language, Discourse and Society";journal;"22394192";"International Sociological Association";Yes;Yes;0,143;Q3;6;24;53;1238;26;49;0,32;51,58;62,86;0;Spain;Western Europe;"International Sociological Association";"2019-2025";"Anthropology (Q3); Communication (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +25902;15455;"Louisiana Law Review";journal;"00246859";"The LSU Scholarly Repository";No;No;0,143;Q3;20;37;86;9691;12;81;0,11;261,92;31,03;0;United States;Northern America;"The LSU Scholarly Repository";"1974-1976, 1979-1980, 1983-1985, 1991-1993, 1997-2025";"Law (Q3)";"Social Sciences" +25903;20600195013;"Mandenkan";journal;"07525443, 2104371X";"Langage, Langues et Cultures d'Afrique Nolre";Yes;Yes;0,143;Q3;4;4;16;136;6;16;0,22;34,00;60,00;0;France;Western Europe;"Langage, Langues et Cultures d'Afrique Nolre";"2018-2025";"Linguistics and Language (Q3)";"Social Sciences" +25904;17439;"Nervenheilkunde";journal;"07221541, 25675788";"Georg Thieme Verlag";Yes;No;0,143;Q3;19;76;274;2546;51;229;0,23;33,50;41,71;1;Germany;Western Europe;"Georg Thieme Verlag";"1982-2026";"Family Practice (Q3); Neurology (clinical) (Q4)";"Medicine" +25905;19900192005;"Onomazein";journal;"07171285, 07185758";"Pontificia Universidad Catolica de Chile";Yes;No;0,143;Q3;18;55;191;1933;53;186;0,30;35,15;52,63;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2011-2025";"Linguistics and Language (Q3)";"Social Sciences" +25906;18821;"Pferdeheilkunde";journal;"01777726";"Hippiatrika Verlagsgesellschaf";No;No;0,143;Q3;28;0;125;0;28;125;0,26;0,00;0,00;0;Germany;Western Europe;"Hippiatrika Verlagsgesellschaf";"1996-2024";"Equine (Q3)";"Veterinary" +25907;20600195063;"Slovenska Rec";journal;"13384279, 00376981";"Slovak Academy of Sciences";No;No;0,143;Q3;5;19;113;767;12;107;0,07;40,37;61,90;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences";"2011-2025";"Linguistics and Language (Q3)";"Social Sciences" +25908;17600155121;"Acta Botanica Venezuelica";journal;"24434264, 00845906";"Universidad Central de Venezuela";Yes;No;0,143;Q4;9;0;13;0;4;10;0,25;0,00;0,00;0;Venezuela;Latin America;"Universidad Central de Venezuela";"2008-2011, 2013-2023";"Plant Science (Q4)";"Agricultural and Biological Sciences" +25909;21101196090;"Acta Medica Peruana";journal;"10188800, 17285917";"Colegio Medico del Peru";Yes;Yes;0,143;Q4;12;42;164;1024;42;135;0,24;24,38;34,13;0;Peru;Latin America;"Colegio Medico del Peru";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25910;21101128459;"Aibi, Revista de Investigacion Administracion e Ingenierias";journal;"2346030X";"Universidad de Santander";Yes;Yes;0,143;Q4;8;80;151;3604;96;151;0,75;45,05;33,88;0;Colombia;Latin America;"Universidad de Santander";"2019-2026";"Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4); Engineering (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4)";"Computer Science; Engineering" +25911;21100469513;"American Journalism";journal;"23262486, 08821127";"Taylor and Francis Ltd.";No;No;0,143;Q4;14;28;101;1342;29;75;0,32;47,93;28,57;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-2026";"Communication (Q4)";"Social Sciences" +25912;25775;"Annales de Demographie Historique";journal;"00662062";"Editions Belin et Herscher";No;No;0,143;Q4;19;0;39;0;15;39;0,38;0,00;0,00;0;France;Western Europe;"Editions Belin et Herscher";"1968, 1970, 1972-1973, 1976-1996, 1999, 2001-2014, 2016-2022, 2024";"Demography (Q4)";"Social Sciences" +25913;5300152205;"Applied Chemistry for Engineering";journal;"12250112, 22884505";"Korean Society of Industrial Engineering Chemistry";No;No;0,143;Q4;16;86;270;2825;125;270;0,44;32,85;33,33;0;South Korea;Asiatic Region;"Korean Society of Industrial Engineering Chemistry";"2007-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +25914;21100259129;"Archives and Manuscripts";journal;"01576895, 21646058";"Australian Society of Archivists";No;No;0,143;Q4;17;0;47;0;15;39;0,06;0,00;0,00;0;Australia;Pacific Region;"Australian Society of Archivists";"2013-2024";"Communication (Q4); Library and Information Sciences (Q4)";"Social Sciences" +25915;21100322966;"Articulo - Journal of Urban Research";journal;"16614941";"Articulo - Journal of Urban Research";Yes;Yes;0,143;Q4;13;0;15;0;6;14;0,45;0,00;0,00;0;Luxembourg;Western Europe;"Articulo - Journal of Urban Research";"2014-2024, 2026";"Urban Studies (Q4)";"Social Sciences" +25916;14964;"Asia-Pacific Journal of Molecular Biology and Biotechnology";journal;"01287451";"Universiti Putra Malaysia";Yes;No;0,143;Q4;24;110;164;5184;85;164;0,48;47,13;50,60;0;Malaysia;Asiatic Region;"Universiti Putra Malaysia";"2002-2025";"Biotechnology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +25917;21101176727;"Babcock University Medical Journal";journal;"27564657, 24656666";"Babcock Medical Society";Yes;No;0,143;Q4;4;104;92;3447;40;88;0,44;33,14;42,79;0;Nigeria;Africa;"Babcock Medical Society";"2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25918;21100842802;"Bulletin of Educational Research";journal;"10288708";"Department of Education, National Taiwan Normal University";Yes;No;0,143;Q4;3;19;42;1407;7;40;0,16;74,05;50,00;0;Taiwan;Asiatic Region;"Department of Education, National Taiwan Normal University";"2017-2025";"Education (Q4)";"Social Sciences" +25919;21101365823;"Caspian Journal of Mathematical Sciences";journal;"26767260";"University of Mazandaran";No;No;0,143;Q4;3;29;107;537;11;107;0,06;18,52;25,49;0;Iran;Middle East;"University of Mazandaran";"2021-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics" +25920;21100981409;"Chinese Journal of Applied Clinical Pediatrics";journal;"2095428X";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,143;Q4;12;154;744;4953;275;741;0,39;32,16;53,31;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2026";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +25921;14924;"Confinia Cephalalgica";journal;"30350670, 11220279";"Page Press Publications";No;No;0,143;Q4;6;11;62;501;20;54;0,36;45,55;56,06;0;Italy;Western Europe;"Page Press Publications";"1993-2026";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +25922;19700188358;"Current Psychiatry";journal;"15378276";"Frontline Medical Communications Inc.";No;No;0,143;Q4;16;0;216;0;34;149;0,16;0,00;0,00;0;United States;Northern America;"Frontline Medical Communications Inc.";"2011-2023";"Psychiatry and Mental Health (Q4)";"Medicine" +25923;13000154717;"Current Topics in Toxicology";journal;"09728228";"Research Trends";No;No;0,143;Q4;9;0;38;0;14;38;0,47;0,00;0,00;0;India;Asiatic Region;"Research Trends";"2007-2009, 2011-2024";"Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +25924;12578;"Douleurs";journal;"16245687";"Elsevier Masson s.r.l.";No;No;0,143;Q4;12;54;111;1061;29;106;0,27;19,65;50,41;0;France;Western Europe;"Elsevier Masson s.r.l.";"2001-2026";"Anesthesiology and Pain Medicine (Q4); Neurology (clinical) (Q4)";"Medicine" +25925;21101045281;"Economic Alternatives";journal;"23679409, 13127462";"University of National and World Economy";No;No;0,143;Q4;10;58;137;3399;76;137;0,43;58,60;35,04;0;Bulgaria;Eastern Europe;"University of National and World Economy";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +25926;29765;"European Journal of Oncology";journal;"11286598";"Mattioli 1885";No;No;0,143;Q4;12;2;6;55;2;5;0,67;27,50;71,43;0;Italy;Western Europe;"Mattioli 1885";"2002-2018, 2020, 2022-2025";"Oncology (Q4)";"Medicine" +25927;21101045764;"European Studies: The Review of European Law, Economics and Politics";journal;"24646695, 18058809";"Palacky University Olomouc";No;No;0,143;Q4;5;0;72;0;36;72;0,23;0,00;0,00;0;Czech Republic;Eastern Europe;"Palacky University Olomouc";"2019-2024";"Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4); Political Science and International Relations (Q4)";"Economics, Econometrics and Finance; Social Sciences" +25928;21100204509;"Exceptionality Education International";journal;"19185227";"Scholarship at Western";No;No;0,143;Q4;17;5;30;299;13;30;0,24;59,80;83,33;0;Canada;Northern America;"Scholarship at Western";"2012-2026";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +25929;144783;"Fruits";journal;"1625967X, 02481294";"International Society for Horticultural Science";No;No;0,143;Q4;44;0;60;0;27;60;0,44;0,00;0,00;0;France;Western Europe;"International Society for Horticultural Science";"1995, 2001-2024";"Agronomy and Crop Science (Q4); Food Science (Q4); Horticulture (Q4)";"Agricultural and Biological Sciences" +25930;21100287101;"GeoPlanet: Earth and Planetary Sciences";book series;"21905193, 21905207";"Springer Science + Business Media";No;No;0,143;Q4;16;0;62;0;31;2;0,60;0,00;0,00;0;United States;Northern America;"Springer Science + Business Media";"2010-2016, 2018-2022, 2024";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +25931;21101055924;"Indian Spine Journal";journal;"25895079, 25895087";"Wolters Kluwer Medknow Publications";Yes;Yes;0,143;Q4;6;39;96;911;23;90;0,25;23,36;17,71;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2018-2026";"Neurology (clinical) (Q4); Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +25932;16133;"Information Psychiatrique";journal;"19524056, 00200204";"John Libbey";No;No;0,143;Q4;12;56;326;1162;31;276;0,11;20,75;60,00;1;France;Western Europe;"John Libbey";"1965, 1973-1980, 1982-1988, 2005-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +25933;21101050125;"International Journal of Pharmaceutical Sciences and Nanotechnology";journal;"09743278";"Pharma Book Syndicate";No;No;0,143;Q4;8;71;188;2622;85;167;0,45;36,93;46,81;0;India;Asiatic Region;"Pharma Book Syndicate";"2019-2025";"Clinical Biochemistry (Q4); Pharmacology (medical) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4); Pharmacy (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +25934;13300154707;"International Journal of Postharvest Technology and Innovation";journal;"17447550, 17447569";"Inderscience Enterprises Ltd";No;No;0,143;Q4;15;7;38;330;18;38;0,29;47,14;48,15;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006, 2008-2017, 2019-2025";"Agronomy and Crop Science (Q4); Food Science (Q4)";"Agricultural and Biological Sciences" +25935;14457;"International Journal of the Society of Materials Engineering for Resources";journal;"18846629, 13479725";"Society of Materials Engineering for Resources of Japan";No;No;0,143;Q4;14;0;43;0;23;43;0,50;0,00;0,00;0;Japan;Asiatic Region;"Society of Materials Engineering for Resources of Japan";"1993-2007, 2009-2014, 2016, 2018, 2020, 2022, 2024";"Chemical Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Chemical Engineering; Engineering; Materials Science" +25936;21101039077;"Journal of Alternative and Community Media";journal;"22065857";"Intellect Ltd.";No;No;0,143;Q4;8;6;38;263;15;34;0,26;43,83;40,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Communication (Q4)";"Social Sciences" +25937;21101284211;"Journal of Applied Science, Engineering, Technology, and Education";journal;"26850591";"PT Mattawang Mediatama Solution";No;No;0,143;Q4;4;47;74;1870;47;74;0,57;39,79;46,49;0;Indonesia;Asiatic Region;"PT Mattawang Mediatama Solution";"2022-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Decision Sciences (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Statistics, Probability and Uncertainty (Q4)";"Agricultural and Biological Sciences; Decision Sciences; Engineering; Environmental Science" +25938;21101027487;"Journal of Cultural Marketing Strategy";journal;"20568002, 20568010";"Henry Stewart Publications";No;No;0,143;Q4;5;15;47;1093;27;42;0,64;72,87;45,83;0;United Kingdom;Western Europe;"Henry Stewart Publications";"2020-2025";"Management Information Systems (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +25939;21100778010;"Journal of Oral Research";journal;"07192460, 07192479";"Universidad de Concepcion";Yes;Yes;0,143;Q4;11;40;141;1130;35;136;0,19;28,25;44,52;0;Chile;Latin America;"Universidad de Concepcion";"2016-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +25940;21101163372;"Journal of University Medical and Dental College";journal;"23105542, 22217827";"University of Faisalabad";Yes;No;0,143;Q4;4;48;143;1043;42;123;0,24;21,73;52,87;0;Pakistan;Asiatic Region;"University of Faisalabad";"2019-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +25941;21100218072;"Metodoloski Zvezki";journal;"18540031, 18540023";"Univerza v Ljubljani";No;No;0,143;Q4;11;0;10;0;2;10;0,00;0,00;0,00;0;Slovenia;Eastern Europe;"Univerza v Ljubljani";"2011-2023";"Social Sciences (miscellaneous) (Q4); Statistics and Probability (Q4)";"Mathematics; Social Sciences" +25942;4400151413;"Nanjing Youdian Daxue Xuebao (Ziran Kexue Ban)/Journal of Nanjing University of Posts and Telecommunications (Natural Science)";journal;"16735439";"Journal of Nanjing Institute of Posts and Telecommunications";No;No;0,143;Q4;16;75;214;2057;100;214;0,44;27,43;37,85;0;China;Asiatic Region;"Journal of Nanjing Institute of Posts and Telecommunications";"2006-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +25943;4700152643;"Nephrologe";journal;"18620418, 1862040X";"Springer Medizin";No;No;0,143;Q4;7;0;34;0;3;24;0,00;0,00;0,00;0;Germany;Western Europe;"Springer Medizin";"2006-2022";"Nephrology (Q4)";"Medicine" +25944;21101238126;"North-Western European Journal of Mathematics";journal;"2824074X, 24965170";"Universite de Lille III (Charles de Gaulle)";Yes;Yes;0,143;Q4;4;4;18;75;4;18;0,30;18,75;0,00;0;France;Western Europe;"Universite de Lille III (Charles de Gaulle)";"2020-2025";"Applied Mathematics (Q4)";"Mathematics" +25945;21100880984;"Pakistan Journal of Analytical and Environmental Chemistry";journal;"1996918X, 22215255";"University of Sindh";Yes;No;0,143;Q4;11;25;76;1040;47;76;0,44;41,60;44,21;0;Pakistan;Asiatic Region;"University of Sindh";"2018-2025";"Analytical Chemistry (Q4); Environmental Chemistry (Q4)";"Chemistry; Environmental Science" +25946;21101050035;"Plastic Surgery and Aesthetic Medicine";journal;"26867346, 27133389";"Media Sphera Publishing Group";No;No;0,143;Q4;6;86;166;2532;66;166;0,41;29,44;45,67;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2019-2025";"Dermatology (Q4); Surgery (Q4)";"Medicine" +25947;21101333305;"Point of View. East-West";journal;"30343089, 24101257";"Ophthalmology Publishing house";No;No;0,143;Q4;3;57;133;1573;30;133;0,17;27,60;58,62;0;Russian Federation;Eastern Europe;"Ophthalmology Publishing house";"2021-2025";"Ophthalmology (Q4)";"Medicine" +25948;18200156705;"Polish Journal of Natural Sciences";journal;"16439953";"University of Warmia and Mazury";Yes;No;0,143;Q4;18;5;68;214;31;68;0,51;42,80;66,67;0;Poland;Eastern Europe;"University of Warmia and Mazury";"2009-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Ecology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +25949;21101285880;"Proceedings of the International Conference on Big Data Computing and Communications, BIGCOM";journal;"27672174, 27672182";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,143;Q4;2;0;39;0;10;38;0,26;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Health Informatics (Q4); Information Systems (Q4); Information Systems and Management (Q4); Statistics, Probability and Uncertainty (Q4)";"Computer Science; Decision Sciences; Medicine" +25950;21100902946;"Proceedings of the Pakistan Academy of Sciences: Part A";journal;"25184245, 25184253";"Pakistan Academy of Sciences";No;No;0,143;Q4;11;29;97;1169;56;97;0,38;40,31;27,68;0;Pakistan;Asiatic Region;"Pakistan Academy of Sciences";"2016-2025";"Computer Science (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Computer Science; Materials Science; Physics and Astronomy" +25951;21101192303;"Record and Library Journal";journal;"24425168";"Airlangga University Faculty of Vocational Studies";Yes;Yes;0,143;Q4;4;30;90;1310;24;90;0,30;43,67;51,72;0;Indonesia;Asiatic Region;"Airlangga University Faculty of Vocational Studies";"2019-2025";"Human Factors and Ergonomics (Q4); Library and Information Sciences (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Social Sciences" +25952;19700182724;"Revista General de Informacion y Documentacion";journal;"19882858, 11321873";"Universidad Complutense Madrid";Yes;Yes;0,143;Q4;10;24;76;936;23;76;0,33;39,00;53,85;0;Spain;Western Europe;"Universidad Complutense Madrid";"2009-2025";"Library and Information Sciences (Q4)";"Social Sciences" +25953;21101016920;"Revista Juridica";journal;"2316753X";"Centro Universitario Curitiba - UNICURITIBA";Yes;Yes;0,143;Q4;7;72;449;2000;87;449;0,28;27,78;29,79;0;Brazil;Latin America;"Centro Universitario Curitiba - UNICURITIBA";"2020-2025";"Law (Q4)";"Social Sciences" +25954;21101124069;"SSRG International Journal of Electrical and Electronics Engineering";journal;"23488379";"Seventh Sense Research Group";No;No;0,143;Q4;9;254;603;7357;310;603;0,53;28,96;31,01;0;India;Asiatic Region;"Seventh Sense Research Group";"2019-2026";"Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4)";"Energy; Engineering" +25955;21101034439;"Studia Sportiva";journal;"25708783, 18027679";"Masaryk University";No;No;0,143;Q4;5;34;106;1321;34;106;0,33;38,85;34,31;0;Czech Republic;Eastern Europe;"Masaryk University";"2019-2026";"Applied Psychology (Q4); Education (Q4); Health (social science) (Q4); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Health Professions; Medicine; Psychology; Social Sciences" +25956;21100867682;"Surgery, Gastroenterology and Oncology";journal;"26011700, 2559723X";"Editura Celsius";No;No;0,143;Q4;6;56;149;1404;41;148;0,26;25,07;29,95;0;Romania;Eastern Europe;"Editura Celsius";"2017-2025";"Gastroenterology (Q4); Oncology (Q4); Surgery (Q4)";"Medicine" +25957;12411;"Tijdschrift voor Gerontologie en Geriatrie";journal;"01679228, 18756832";"Radboud University Press";Yes;Yes;0,143;Q4;20;28;74;297;12;52;0,17;10,61;73,08;0;Netherlands;Western Europe;"Radboud University Press";"1982-2025";"Geriatrics and Gerontology (Q4); Gerontology (Q4)";"Medicine; Nursing" +25958;20168;"Tokai Journal of Experimental and Clinical Medicine";journal;"03850005, 21852243";"Tokai University School of Medicine";No;No;0,143;Q4;26;19;102;157;45;100;0,37;8,26;20,93;0;Japan;Asiatic Region;"Tokai University School of Medicine";"1976-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +25959;5700167234;"Verfassung und Recht in Ubersee";journal;"05067286";"Nomos Verlagsgesellschaft mbH und Co KG";No;No;0,143;Q4;5;1;81;20;25;77;0,26;20,00;100,00;0;Germany;Western Europe;"Nomos Verlagsgesellschaft mbH und Co KG";"1977-1978, 2019-2025";"Law (Q4)";"Social Sciences" +25960;21101067699;"International Conference on Embedded Wireless Systems and Networks";conference and proceedings;"25622331";"Junction Publishing";No;No;0,143;-;19;30;175;687;56;172;0,33;22,90;15,05;0;Canada;Northern America;"Junction Publishing";"2016-2024";"Computer Networks and Communications; Electrical and Electronic Engineering; Information Systems";"Computer Science; Engineering" +25961;21100840034;"Mechanical Technology and Structural Materials";conference and proceedings;"18477917";"Croatian Society for Mechanical Technologies";No;No;0,143;-;5;36;110;733;16;107;0,17;20,36;26,13;0;Croatia;Eastern Europe;"Croatian Society for Mechanical Technologies";"2017-2019, 2021-2025";"Civil and Structural Engineering; Materials Science (miscellaneous); Mechanical Engineering";"Engineering; Materials Science" +25962;21100903487;"Proceedings - International Conference on Computational Intelligence and Networks";conference and proceedings;"23755822";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,143;-;8;0;98;0;58;89;0,37;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2016, 2022, 2024";"Artificial Intelligence; Computer Networks and Communications";"Computer Science" +25963;6000152751;"African Arts";journal;"19372108, 00019933";"MIT Press";No;No;0,142;Q2;16;33;98;602;24;50;0,25;18,24;51,61;0;United States;Northern America;"MIT Press";"2002-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +25964;21101038534;"Afriques";journal;"21086796";"Institut des Mondes Africains (IMAF)";Yes;Yes;0,142;Q2;3;0;21;0;5;20;0,24;0,00;0,00;0;France;Western Europe;"Institut des Mondes Africains (IMAF)";"2020-2024";"History (Q2)";"Arts and Humanities" +25965;21100332241;"Aussiger Beitrage";journal;"18026419";"Jan-Evangelista-Purkyne-University";No;No;0,142;Q2;4;10;50;234;5;48;0,11;23,40;69,23;0;Czech Republic;Eastern Europe;"Jan-Evangelista-Purkyne-University";"2013-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +25966;28396;"Classical Journal";journal;"00098353";"Johns Hopkins University Press";No;No;0,142;Q2;20;14;58;936;14;57;0,18;66,86;33,33;0;United States;Northern America;"Johns Hopkins University Press";"1970, 1974, 1982, 2002-2025";"Classics (Q2)";"Arts and Humanities" +25967;21100901131;"Cultural History";journal;"20452918, 2045290X";"Edinburgh University Press";No;No;0,142;Q2;9;11;42;520;10;32;0,22;47,27;22,22;0;United Kingdom;Western Europe;"Edinburgh University Press";"2012-2025";"History (Q2); Cultural Studies (Q3); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +25968;21101068956;"Diferents";journal;"26599252, 25301330";"Museu d'Art Contemporani Vicente Aguilera Cerni de Vilafames";Yes;Yes;0,142;Q2;2;7;23;256;7;23;0,33;36,57;63,64;0;Spain;Western Europe;"Museu d'Art Contemporani Vicente Aguilera Cerni de Vilafames";"2019-2025";"Museology (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +25969;21100903063;"Edinburgh Law Review";journal;"17551692, 13649809";"Edinburgh University Press";No;No;0,142;Q2;17;45;103;1853;38;55;0,48;41,18;70,59;2;United Kingdom;Western Europe;"Edinburgh University Press";"1997-2026";"History (Q2); Cultural Studies (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +25970;21100948918;"Ekphrasis";journal;"25592068";"Babes-Bolyai University";Yes;No;0,142;Q2;4;26;50;824;10;49;0,19;31,69;45,83;0;Romania;Eastern Europe;"Babes-Bolyai University";"2019-2025";"Visual Arts and Performing Arts (Q2); Communication (Q4)";"Arts and Humanities; Social Sciences" +25971;5800207563;"European Journal of English Studies";journal;"17444233, 13825577";"Routledge";No;No;0,142;Q2;18;30;77;1215;47;67;0,58;40,50;72,73;0;United Kingdom;Western Europe;"Routledge";"2008, 2010-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25972;16400154705;"Hudebni Veda";journal;"00187003, 26946998";"Institute of Art History of the Academy of Sciences of the Czech Republic";No;No;0,142;Q2;6;13;50;577;10;42;0,11;44,38;50,00;0;Czech Republic;Eastern Europe;"Institute of Art History of the Academy of Sciences of the Czech Republic";"2002-2025";"Music (Q2)";"Arts and Humanities" +25973;21101048050;"Jerusalem Studies in Arabic and Islam";journal;"03344118";"The Max Schloessinger Memorial Foundation, The Hebrew University of Jerusalem";No;No;0,142;Q2;5;0;36;0;8;16;0,10;0,00;0,00;0;Israel;Middle East;"The Max Schloessinger Memorial Foundation, The Hebrew University of Jerusalem";"2019-2024";"History (Q2); Literature and Literary Theory (Q2); Religious Studies (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +25974;21100212127;"Neotestamentica";journal;"25184628, 02548356";"New Testament Society of Southern Africa";No;No;0,142;Q2;13;25;44;1290;6;44;0,14;51,60;42,11;0;South Africa;Africa;"New Testament Society of Southern Africa";"2001-2024";"Religious Studies (Q2)";"Arts and Humanities" +25975;21101108619;"Pamietnik Teatralny";journal;"00310522, 26582899";"Institute of Art, Polish Academy of Sciences";Yes;Yes;0,142;Q2;3;42;113;891;11;104;0,11;21,21;71,79;0;Poland;Eastern Europe;"Institute of Art, Polish Academy of Sciences";"2019-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +25976;21101029448;"Rocznik Teologiczny";journal;"02392550";"Christian Theological Academy in Warsaw, Faculty of Theology";Yes;Yes;0,142;Q2;3;24;95;765;9;94;0,14;31,88;17,39;0;Poland;Eastern Europe;"Christian Theological Academy in Warsaw, Faculty of Theology";"2009, 2019-2025";"History (Q2); Religious Studies (Q2); Linguistics and Language (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +25977;6500153212;"Screen";journal;"00369543, 14602474";"Oxford University Press";No;No;0,142;Q2;39;28;88;1359;40;85;0,39;48,54;39,29;0;United Kingdom;Western Europe;"Oxford University Press";"1969-2025";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +25978;21100821140;"Studia Historica Nitriensia";journal;"13387219, 25858661";"Univerzita Konstantina Filozofa v Nitre";Yes;Yes;0,142;Q2;5;20;92;917;10;92;0,10;45,85;18,52;0;Slovakia;Eastern Europe;"Univerzita Konstantina Filozofa v Nitre";"2016-2025";"History (Q2); Museology (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25979;16200154716;"Thomist";journal;"00406325";"Catholic University of America Press";No;No;0,142;Q2;16;20;59;1614;13;59;0,12;80,70;6,25;0;United States;Northern America;"Catholic University of America Press";"1973, 1975-1978, 1985, 1987, 1990-1992, 2002-2025";"Religious Studies (Q2); Philosophy (Q3)";"Arts and Humanities" +25980;21101126441;"UcoArte. Revista de Teoria e Historia del Arte";journal;"22551905";"UCOPress. Editorial Universidad de Cordoba";Yes;Yes;0,142;Q2;2;17;45;691;9;45;0,15;40,65;31,25;0;Spain;Western Europe;"UCOPress. Editorial Universidad de Cordoba";"2022-2025";"History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +25981;21100898768;"Vestnik Pravoslavnogo Sviato-Tikhonovskogo Gumanitarnogo Universiteta, Seria I. Bogoslovie, Filosofia, Religiovedenie";journal;"24094692, 1991640X";"St. Tikhon's Orthodox University";Yes;Yes;0,142;Q2;4;42;121;1398;15;121;0,11;33,29;28,57;0;Russian Federation;Eastern Europe;"St. Tikhon's Orthodox University";"2018-2025";"History (Q2); Religious Studies (Q2); Philosophy (Q3)";"Arts and Humanities" +25982;21100218527;"AUS";journal;"07187262, 0718204X";"Universidad Austral de Chile";Yes;No;0,142;Q3;8;13;80;408;24;75;0,27;31,38;48,00;0;Chile;Latin America;"Universidad Austral de Chile";"2012-2025";"Architecture (Q3); Urban Studies (Q4)";"Engineering; Social Sciences" +25983;19700200909;"Concentric: Studies in Linguistics";journal;"18107478, 25895230";"National Taiwan Normal University";No;No;0,142;Q3;5;12;29;482;10;29;0,15;40,17;30,77;0;Taiwan;Asiatic Region;"National Taiwan Normal University";"2014-2025";"Linguistics and Language (Q3)";"Social Sciences" +25984;12810;"Journal of Information Ethics";journal;"10619321";"McFarland and Company, Inc";No;No;0,142;Q3;13;8;42;181;14;29;0,47;22,63;83,33;0;United States;Northern America;"McFarland and Company, Inc";"1992, 1994, 1996-2019, 2021-2025";"Philosophy (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +25985;21101251540;"Journal of the International Clinical Dental Research Organization";journal;"22315357, 22310754";"Wolters Kluwer Medknow Publications";Yes;No;0,142;Q3;3;30;53;732;19;49;0,36;24,40;55,45;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2021, 2023-2025";"Orthodontics (Q3); Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Periodontics (Q4)";"Dentistry" +25986;18500158300;"Logos (Spain)";journal;"19883242, 15756866";"Universidad Complutense Madrid";Yes;Yes;0,142;Q3;7;15;79;396;8;77;0,14;26,40;21,43;0;Spain;Western Europe;"Universidad Complutense Madrid";"1996-1998, 2000-2025";"Philosophy (Q3)";"Arts and Humanities" +25987;5100154602;"Mana: Estudos de Antropologia Social";journal;"16784944, 01049313";"Universidade Federal do Rio de Janeiro";Yes;Yes;0,142;Q3;20;0;113;0;36;113;0,15;0,00;0,00;0;Brazil;Latin America;"Universidade Federal do Rio de Janeiro";"2006-2024";"Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +25988;20222;"Narodna Umjetnost";journal;"05472504";"Institute of Ethnology and Folklore Research";Yes;Yes;0,142;Q3;12;12;66;474;19;61;0,27;39,50;72,73;0;Croatia;Eastern Europe;"Institute of Ethnology and Folklore Research";"1981, 2009-2026";"Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +25989;21100818726;"Sententiae";journal;"20756461, 23088915";"Vinnytsia National Technical University";No;No;0,142;Q3;5;63;128;1157;36;118;0,28;18,37;34,55;0;Ukraine;Eastern Europe;"Vinnytsia National Technical University";"2015-2025";"Philosophy (Q3)";"Arts and Humanities" +25990;21100815491;"Studia Orientalia Slovaca";journal;"13363786";"Comenius University in Bratislava";No;No;0,142;Q3;4;12;27;481;7;26;0,28;40,08;53,33;0;Slovakia;Eastern Europe;"Comenius University in Bratislava";"2016-2025";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +25991;21100860048;"Studijne Zvesti Archeologickeho Ustavu Slovenskej Akademie Vied";journal;"05602793";"Archeologicky Ustav Slovenskej Akdemie Vied";No;No;0,142;Q3;5;0;69;0;12;68;0,14;0,00;0,00;0;Slovakia;Eastern Europe;"Archeologicky Ustav Slovenskej Akdemie Vied";"2017-2024";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +25992;21101301816;"Ukrainian Dental Almanac";journal;"24090255, 24101427";"Poltava State Medical University";Yes;No;0,142;Q3;3;58;174;1075;40;174;0,23;18,53;62,86;0;Ukraine;Eastern Europe;"Poltava State Medical University";"2021-2025";"Orthodontics (Q3); Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Periodontics (Q4)";"Dentistry" +25993;21101276930;"Zeitschrift fur Empirische Kulturwissenschaft";journal;"27521591, 27521605";"Waxmann Verlag GmbH";No;No;0,142;Q3;9;26;63;456;5;24;0,06;17,54;71,43;0;Germany;Western Europe;"Waxmann Verlag GmbH";"2022-2025";"Cultural Studies (Q3)";"Social Sciences" +25994;21100211112;"Activitas Nervosa Superior Rediviva";journal;"1337933X, 13384015";"Slovak Academy of Sciences";No;No;0,142;Q4;13;9;55;383;15;54;0,23;42,56;43,86;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences";"2009-2026";"Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +25995;15588;"Agrochimica";journal;"00021857";"Pisa University Press";No;No;0,142;Q4;23;0;46;0;21;44;0,24;0,00;0,00;0;Italy;Western Europe;"Pisa University Press";"1973, 1981, 1983-1984, 1986-1989, 1993-2023";"Agronomy and Crop Science (Q4); Food Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +25996;21101128616;"Apuntes del Cenes";journal;"01203053, 22565779";"Universidad Pedagogica y Tecnologica de Colombia";Yes;Yes;0,142;Q4;5;20;61;922;39;54;0,68;46,10;23,53;0;Colombia;Latin America;"Universidad Pedagogica y Tecnologica de Colombia";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +25997;21100945755;"Archives of Psychiatry Research";journal;"26711079, 26712008";"Dr. Mladen Stojanovic University Hospital";Yes;Yes;0,142;Q4;11;29;101;1025;30;87;0,32;35,34;49,17;0;Croatia;Eastern Europe;"Dr. Mladen Stojanovic University Hospital";"2019-2025";"Clinical Psychology (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology; Social Sciences" +25998;21101267689;"AUT Journal of Modeling and Simulation";journal;"25882953, 25882961";"Amirkabir University of Technology";No;No;0,142;Q4;4;8;54;289;26;54;0,44;36,13;10,53;0;Iran;Middle East;"Amirkabir University of Technology";"2020-2025";"Applied Mathematics (Q4); Computer Science Applications (Q4); Engineering (miscellaneous) (Q4); Modeling and Simulation (Q4)";"Computer Science; Engineering; Mathematics" +25999;21100830486;"Bulletin of Russian State Medical University";journal;"25421204, 25001094";"Pirogov Russian National Research Medical University";Yes;No;0,142;Q4;9;83;204;1998;62;203;0,25;24,07;60,57;0;Russian Federation;Eastern Europe;"Pirogov Russian National Research Medical University";"2017-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26000;16395;"Chemical Engineering Education";journal;"00092479, 21656428";"American Society for Engineering Education";No;No;0,142;Q4;29;27;37;533;9;30;0,24;19,74;42,86;0;United States;Northern America;"American Society for Engineering Education";"1970-1975, 1977-1979, 1981-1990, 1993, 1996-2019, 2021, 2024-2025";"Chemical Engineering (miscellaneous) (Q4); Education (Q4)";"Chemical Engineering; Social Sciences" +26001;21100944569;"Comparative Law Review";journal;"08669449, 23917644";"";Yes;Yes;0,142;Q4;6;10;36;963;15;33;0,17;96,30;27,27;0;Poland;Eastern Europe;"";"2017-2025";"Law (Q4)";"Social Sciences" +26002;130071;"Concepts in Magnetic Resonance Part A: Bridging Education and Research";journal;"15466086, 15525023";"John Wiley and Sons Inc";Yes;No;0,142;Q4;56;3;21;68;13;21;0,30;22,67;25,00;0;China;Asiatic Region;"John Wiley and Sons Inc";"2002-2026";"Spectroscopy (Q4)";"Chemistry" +26003;21101081522;"Cooperativismo e Economia Social";journal;"26606348, 11302682";"Faculty of Legal Sciences and Labor, University of Vigo";No;No;0,142;Q4;2;12;36;542;9;32;0,25;45,17;66,67;0;Spain;Western Europe;"Faculty of Legal Sciences and Labor, University of Vigo";"2019-2021, 2023-2025";"Business and International Management (Q4); Economics and Econometrics (Q4); Law (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +26004;21101043235;"Criminologie";journal;"03160041, 14921367";"Presses de l'Universite de Montreal";Yes;No;0,142;Q4;5;25;98;1221;25;90;0,25;48,84;78,00;0;Canada;Northern America;"Presses de l'Universite de Montreal";"2019-2025";"Law (Q4)";"Social Sciences" +26005;19700188800;"Electronics and Communications in Japan";journal;"19429541, 19429533";"John Wiley and Sons Inc";No;No;0,142;Q4;31;43;112;699;47;112;0,40;16,26;11,49;0;United States;Northern America;"John Wiley and Sons Inc";"1975, 2008-2026";"Applied Mathematics (Q4); Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Physics and Astronomy (miscellaneous) (Q4); Signal Processing (Q4)";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +26006;21323;"Flux";journal;"11542721";"Association Metropolis";No;No;0,142;Q4;17;0;53;0;13;48;0,24;0,00;0,00;0;France;Western Europe;"Association Metropolis";"1996-1998, 2002-2024";"Geography, Planning and Development (Q4)";"Social Sciences" +26007;21100935101;"Food Engineering Progress";journal;"22881247, 12264768";"Korean Society for Food Engineering";No;No;0,142;Q4;6;34;122;1130;38;122;0,30;33,24;44,64;0;South Korea;Asiatic Region;"Korean Society for Food Engineering";"2019-2025";"Food Science (Q4)";"Agricultural and Biological Sciences" +26008;21101246230;"Health Problems of Civilization";journal;"23536942, 23540265";"Termedia Publishing House Ltd.";Yes;No;0,142;Q4;5;49;132;1345;48;115;0,41;27,45;53,29;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"2020-2025";"Health (social science) (Q4); Immunology (Q4); Immunology and Microbiology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Immunology and Microbiology; Medicine; Social Sciences" +26009;21101201955;"Indian Journal of Neurosurgery";journal;"22779167, 2277954X";"Georg Thieme Verlag";Yes;Yes;0,142;Q4;6;86;171;1398;41;154;0,22;16,26;24,54;0;Germany;Western Europe;"Georg Thieme Verlag";"2015-2017, 2019-2026";"Neurology (clinical) (Q4); Surgery (Q4)";"Medicine" +26010;21100945964;"Indonesian Aquaculture Journal";journal;"02150883, 25026577";"Center for Fisheries Research";Yes;No;0,142;Q4;5;19;58;852;24;55;0,42;44,84;36,21;0;Indonesia;Asiatic Region;"Center for Fisheries Research";"2019-2025";"Aquatic Science (Q4); Genetics (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +26011;21101057379;"International Comparative Jurisprudence";journal;"23516674";"Mykolo Romerio Universitetas";Yes;Yes;0,142;Q4;4;21;54;1095;25;54;0,53;52,14;40,48;0;Lithuania;Eastern Europe;"Mykolo Romerio Universitetas";"2019-2025";"Law (Q4)";"Social Sciences" +26012;21100217635;"International Insolvency Review";journal;"10991107, 11800518";"John Wiley and Sons Ltd";No;No;0,142;Q4;12;36;68;30;53;59;0,77;0,83;42,11;1;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"1990-1991, 1993-2026";"Finance (Q4); Law (Q4)";"Economics, Econometrics and Finance; Social Sciences" +26013;20447;"International Journal of Fluid Mechanics Research";journal;"21525110, 21525102";"Begell House Inc.";No;No;0,142;Q4;27;40;86;1142;56;83;0,76;28,55;18,28;0;United States;Northern America;"Begell House Inc.";"1996-2025";"Mechanical Engineering (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Engineering; Physics and Astronomy" +26014;20449;"International Journal of Manufacturing Technology and Management";journal;"13682148, 17415195";"Inderscience Publishers";No;No;0,142;Q4;27;33;90;997;38;90;0,44;30,21;36,99;0;United Kingdom;Western Europe;"Inderscience Publishers";"2000-2026";"Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Information Systems and Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering" +26015;21101089142;"Istanbul Tip Fakultesi Dergisi";journal;"13056441, 13056433";"Istanbul University Press";Yes;Yes;0,142;Q4;6;49;187;1247;55;182;0,26;25,45;48,00;0;Turkey;Middle East;"Istanbul University Press";"2019, 2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26016;21100967512;"Journal of Advances in Medical and Biomedical Research";journal;"26766264";"Farname Inc.";Yes;No;0,142;Q4;15;20;216;616;59;205;0,30;30,80;43,75;0;Iran;Middle East;"Farname Inc.";"2018-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26017;21101180528;"Journal of Applied Pharmaceutical Research";journal;"23480335";"Creative Pharma Assent";Yes;No;0,142;Q4;4;119;128;4995;100;128;0,78;41,97;39,80;0;India;Asiatic Region;"Creative Pharma Assent";"2023-2026";"Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +26018;21100211321;"Journal of East Asia and International Law";journal;"22879218, 19769229";"Yijun Institute of International Law";No;No;0,142;Q4;11;22;76;489;26;68;0,36;22,23;30,00;0;South Korea;Asiatic Region;"Yijun Institute of International Law";"2011-2025";"Law (Q4)";"Social Sciences" +26019;21101274045;"Journal of Hospitality and Tourism Cases";journal;"21649987";"SAGE Publications Inc.";No;No;0,142;Q4;4;58;58;2073;39;56;0,79;35,74;54,37;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2011, 2013-2026";"Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting" +26020;21100223160;"Journal of Japan Institute of Electronics Packaging";journal;"13439677, 1884121X";"The Japan Institute of Electronics Packaging";No;No;0,142;Q4;12;106;345;995;22;293;0,07;9,39;10,64;0;Japan;Asiatic Region;"The Japan Institute of Electronics Packaging";"1998-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +26021;24878;"Journal of Pakistan Association of Dermatologists";journal;"15609014, 24137650";"Pakistan Association of Dermatologists";Yes;No;0,142;Q4;19;60;613;1065;118;601;0,19;17,75;65,07;0;Pakistan;Asiatic Region;"Pakistan Association of Dermatologists";"1999-2025";"Dermatology (Q4)";"Medicine" +26022;4000152109;"Journal of Pediatric Neurosciences";journal;"19983948, 18171745";"Wolters Kluwer Medknow Publications";Yes;No;0,142;Q4;29;51;175;770;52;153;0,08;15,10;31,45;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2006-2025";"Neuroscience (miscellaneous) (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine; Neuroscience" +26023;4000148212;"Kinesitherapie";journal;"17790123, 22131566";"Elsevier Masson s.r.l.";No;No;0,142;Q4;11;109;327;2298;42;286;0,13;21,08;42,39;0;France;Western Europe;"Elsevier Masson s.r.l.";"2006-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +26024;21100201732;"Malaysian Construction Research Journal";journal;"19853807, 25904140";"Construction Research Institute of Malaysia";Yes;No;0,142;Q4;16;89;280;2604;78;254;0,31;29,26;40,66;0;Malaysia;Asiatic Region;"Construction Research Institute of Malaysia";"2011-2025";"Building and Construction (Q4)";"Engineering" +26025;21100874945;"Malaysian Journal of Chemistry";journal;"15112292, 25501658";"Malaysian Institute of Chemistry";Yes;No;0,142;Q4;11;155;410;5764;212;409;0,50;37,19;45,12;0;Malaysia;Asiatic Region;"Malaysian Institute of Chemistry";"2018-2026";"Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4)";"Chemistry; Materials Science" +26026;6400153169;"Medecine des Maladies Metaboliques";journal;"22148477, 19572557";"Elsevier Masson s.r.l.";No;No;0,142;Q4;14;122;312;2249;67;259;0,25;18,43;48,84;0;France;Western Europe;"Elsevier Masson s.r.l.";"2007-2026";"Cardiology and Cardiovascular Medicine (Q4); Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +26027;12100155516;"MolBank";journal;"14228599";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;0,142;Q4;13;171;632;4053;225;559;0,33;23,70;37,29;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2002-2025";"Biochemistry (Q4); Organic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +26028;16374;"Notarzt";journal;"14388693, 01772309";"Georg Thieme Verlag";No;No;0,142;Q4;13;64;219;660;27;123;0,07;10,31;23,70;0;Germany;Western Europe;"Georg Thieme Verlag";"1985-1993, 1999-2026";"Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4)";"Medicine" +26029;21100792739;"Psychiatry, Psychotherapy and Clinical Psychology";journal;"24142212, 22201122";"Professionalnye Izdaniya";No;No;0,142;Q4;6;67;127;1880;37;127;0,38;28,06;59,43;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2016-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +26030;21100842850;"Quaternary and Environmental Geosciences";journal;"21766142";"Associacao Brasileira de Estudos do Quaternario";Yes;Yes;0,142;Q4;8;6;21;321;8;21;0,40;53,50;35,71;0;Brazil;Latin America;"Associacao Brasileira de Estudos do Quaternario";"2017-2025";"Earth-Surface Processes (Q4); Geology (Q4); Global and Planetary Change (Q4)";"Earth and Planetary Sciences; Environmental Science" +26031;4900153207;"Revista Cubana de Ortopedia y Traumatologia";journal;"0864215X";"Editorial Ciencias Medicas";Yes;No;0,142;Q4;5;45;162;883;10;149;0,05;19,62;13,43;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1996-2003, 2006-2025";"Orthopedics and Sports Medicine (Q4); Rehabilitation (Q4); Surgery (Q4)";"Medicine" +26032;21100432496;"Revista de Derecho Privado";journal;"01234366, 23462442";"Universidad Externado de Colombia";Yes;Yes;0,142;Q4;9;22;70;1394;14;69;0,27;63,36;52,38;0;Colombia;Latin America;"Universidad Externado de Colombia";"2015-2026";"Law (Q4)";"Social Sciences" +26033;19267;"Revista de Neuro-Psiquiatria";journal;"00348597, 16097394";"Universidad Peruana Cayetano Heredia, Facultad de Medicina Alberto Hurtado";Yes;Yes;0,142;Q4;9;32;121;853;33;96;0,20;26,66;41,56;0;Peru;Latin America;"Universidad Peruana Cayetano Heredia, Facultad de Medicina Alberto Hurtado";"1960-1961, 1964-1980, 2019-2026";"Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine" +26034;21100202735;"Revista Lasallista de Investigacion";journal;"22563938, 17944449";"Corporacion Universitaria Lasallista";Yes;Yes;0,142;Q4;13;42;107;1454;39;103;0,39;34,62;37,23;0;Colombia;Latin America;"Corporacion Universitaria Lasallista";"2011, 2013-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +26035;146188;"Revue Medicale Suisse";journal;"16609379";"Editions Medecine et Hygiene";Yes;No;0,142;Q4;21;669;1989;7068;302;1297;0,15;10,57;50,59;0;Switzerland;Western Europe;"Editions Medecine et Hygiene";"2005-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +26036;21101163152;"Science and Technology of Cereals, Oils and Foods";journal;"10077561";"";Yes;No;0,142;Q4;8;168;461;3956;222;461;0,53;23,55;37,87;0;China;Asiatic Region;"";"2019-2025";"Food Science (Q4)";"Agricultural and Biological Sciences" +26037;21101121572;"SciEnggJ";journal;"2799189X";"Philippine-American Academy of Science and Engineering";No;No;0,142;Q4;5;81;117;3927;58;109;0,55;48,48;41,06;0;Philippines;Asiatic Region;"Philippine-American Academy of Science and Engineering";"2021-2026";"Animal Science and Zoology (Q4); Biochemistry (Q4); Cancer Research (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +26038;21101188712;"Springer International Handbooks of Education";book series;"21971951, 2197196X";"Springer International Publishing";No;No;0,142;Q4;27;144;446;8754;373;2;0,84;60,79;0,00;0;Netherlands;Western Europe;"Springer International Publishing";"1997, 2007-2009, 2011-2015, 2017-2025";"Education (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26039;3900148511;"Stomatologija";journal;"1822301X, 13928589";"";Yes;No;0,142;Q4;34;17;48;304;19;48;0,19;17,88;48,44;0;Lithuania;Eastern Europe;"";"2005-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26040;20131;"Therapeutische Umschau. Revue therapeutique";journal;"00405930, 16642864";"Hogrefe Publishing";No;No;0,142;Q4;21;30;200;0;59;178;0,28;0,00;53,03;0;Switzerland;Western Europe;"Hogrefe Publishing";"1947-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26041;145264;"Transactions of the Japanese Society for Artificial Intelligence";journal;"13468030, 13460714";"Japanese Society for Artificial Intelligence";No;No;0,142;Q4;19;32;113;844;37;113;0,36;26,38;11,58;0;Japan;Asiatic Region;"Japanese Society for Artificial Intelligence";"2001-2026";"Artificial Intelligence (Q4); Software (Q4)";"Computer Science" +26042;21100834345;"Voprosy Sovremennoi Pediatrii - Current Pediatrics";journal;"16825535, 16825527";"Publishing House of the Union of Pediatricians";Yes;Yes;0,142;Q4;11;53;157;1780;71;157;0,43;33,58;71,57;0;Russian Federation;Eastern Europe;"Publishing House of the Union of Pediatricians";"2014-2026";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26043;21100826363;"WT Werkstattstechnik";journal;"14364980";"VDI Fachmedien GmbH & Co. KG";No;No;0,142;Q4;12;128;372;2858;75;347;0,24;22,33;14,96;0;Germany;Western Europe;"VDI Fachmedien GmbH & Co. KG";"2012-2025";"Automotive Engineering (Q4); Control and Systems Engineering (Q4)";"Engineering" +26044;20694;"Zeitschrift fur Herz-, Thorax- und Gefasschirurgie";journal;"09309225, 14351277";"D. Steinkopff-Verlag";No;No;0,142;Q4;8;64;173;1334;33;124;0,24;20,84;17,82;0;Germany;Western Europe;"D. Steinkopff-Verlag";"1997-2026";"Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4); Surgery (Q4)";"Medicine" +26045;2300147403;"Final Program and Proceedings - IS and T/SID Color Imaging Conference";conference and proceedings;"21692629, 21669635";"Society for Imaging Science and Technology";No;No;0,142;-;46;0;146;0;52;141;0,29;0,00;0,00;0;United States;Northern America;"Society for Imaging Science and Technology";"1994-2024";"Atomic and Molecular Physics, and Optics; Computer Vision and Pattern Recognition; Electronic, Optical and Magnetic Materials; Software";"Computer Science; Materials Science; Physics and Astronomy" +26046;21100325444;"Komp'juternaja Lingvistika i Intellektual'nye Tehnologii";conference and proceedings;"20757182, 22217932";"ABBYY PRODUCTION LLC";No;No;0,142;-;19;0;110;0;36;108;0,24;0,00;0,00;0;Russian Federation;Eastern Europe;"ABBYY PRODUCTION LLC";"2014-2023";"Computer Science Applications; Linguistics and Language";"Computer Science; Social Sciences" +26047;20100195043;"Proceedings of the International Conference on Numerical Simulation of Optoelectronic Devices, NUSOD";conference and proceedings;"21583234";"IEEE Computer Society";No;No;0,142;-;9;69;227;460;76;223;0,38;6,67;19,46;0;United States;Northern America;"IEEE Computer Society";"2011-2012, 2014-2015, 2017-2025";"Electrical and Electronic Engineering; Modeling and Simulation";"Engineering; Mathematics" +26048;28313;"Antichthon";journal;"00664774, 20568819";"Cambridge University Press";No;No;0,141;Q2;11;0;31;0;8;30;0,16;0,00;0,00;0;Australia;Pacific Region;"Cambridge University Press";"1986, 2011-2024, 2026";"Classics (Q2)";"Arts and Humanities" +26049;21101066394;"Central Eurasia Studies";journal;"20080867, 23453117";"University of Tehran";No;No;0,141;Q2;6;16;96;416;24;96;0,25;26,00;30,43;0;Iran;Middle East;"University of Tehran";"2020-2026";"History (Q2); Cultural Studies (Q3); Geography, Planning and Development (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +26050;21101090843;"Ebre 38";journal;"18852580, 16962672";"Universitat de Barcelona";Yes;Yes;0,141;Q2;3;23;55;1292;6;52;0,13;56,17;36,11;0;Spain;Western Europe;"Universitat de Barcelona";"2017-2025";"History (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +26051;21100205710;"Estudios Romanicos";journal;"1989614X, 02104911";"Universidad de Murcia Servicio de Publicaciones";Yes;Yes;0,141;Q2;5;0;91;0;20;88;0,10;0,00;0,00;0;Spain;Western Europe;"Universidad de Murcia Servicio de Publicaciones";"2011-2024";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26052;5800224219;"Evangelische Theologie";journal;"00143502, 21980470";"Guetersloher Verlagshaus";No;No;0,141;Q2;6;40;129;2062;8;120;0,07;51,55;36,59;0;Germany;Western Europe;"Guetersloher Verlagshaus";"2000, 2005, 2009-2026";"Religious Studies (Q2)";"Arts and Humanities" +26053;21100936541;"Folia Linguistica et Litteraria";journal;"23370955, 18008542";"University of Montenegro";Yes;No;0,141;Q2;4;43;177;1121;26;175;0,13;26,07;84,75;0;Montenegro;Eastern Europe;"University of Montenegro";"2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26054;5700166220;"Iberoamericana";journal;"15773388, 2255520X";"Ibero-Amerikanisches Institut Preußischer Kulturbesitz";Yes;Yes;0,141;Q2;7;34;131;1216;28;126;0,20;35,76;43,64;0;Germany;Western Europe;"Ibero-Amerikanisches Institut Preußischer Kulturbesitz";"2002, 2017-2025";"History (Q2); Literature and Literary Theory (Q2); Anthropology (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26055;21101169124;"Izvestiya RAN. Seriya Literatury i Yazyka";journal;"16057880, 24137715";"Russian Academy of Sciences";No;No;0,141;Q2;4;0;202;0;18;202;0,10;0,00;0,00;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2019-2024";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26056;21100812237;"Journal of Italian Cinema and Media Studies";journal;"20477376, 20477368";"Intellect Ltd.";No;No;0,141;Q2;8;51;118;1956;14;106;0,08;38,35;60,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2013-2026";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +26057;5700153831;"Journal of Legal History";journal;"17440564, 01440365";"Routledge";No;No;0,141;Q2;19;19;36;681;18;31;0,13;35,84;44,44;0;United Kingdom;Western Europe;"Routledge";"1980-2026";"History (Q2); Law (Q4)";"Arts and Humanities; Social Sciences" +26058;21101392300;"Journal of Shariah Law Research";journal;"24622206";"University of Malaya";No;No;0,141;Q2;4;10;33;391;15;33;0,42;39,10;47,06;0;Malaysia;Asiatic Region;"University of Malaya";"2021-2025";"Religious Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Law (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26059;21101199387;"Journal of the Association for Music and Imagery";journal;"10988009";"Association for Music and Imagery";No;No;0,141;Q2;2;6;15;222;4;15;0,30;37,00;64,00;0;United States;Northern America;"Association for Music and Imagery";"2020-2025";"Music (Q2); Clinical Psychology (Q4); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology" +26060;21100945293;"Journal of World Literature";journal;"24056472, 24056480";"Brill Academic Publishers";No;No;0,141;Q2;12;36;98;1144;31;90;0,24;31,78;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2019-2026";"Literature and Literary Theory (Q2)";"Arts and Humanities" +26061;21101165758;"Latvijas Universitates Zurnals Vesture";journal;"25009621, 25929593";"University of Latvia";Yes;Yes;0,141;Q2;1;11;27;500;1;25;0,00;45,45;63,64;0;Latvia;Eastern Europe;"University of Latvia";"2019-2025";"History (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26062;5800170561;"Mediterranean Historical Review";journal;"1743940X, 09518967";"Routledge";No;No;0,141;Q2;24;7;30;667;11;29;0,40;95,29;42,11;0;United Kingdom;Western Europe;"Routledge";"1986-2025";"History (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26063;21100976122;"Museum History Journal";journal;"19369824, 19369816";"Taylor and Francis Ltd.";No;No;0,141;Q2;10;8;33;224;11;29;0,26;28,00;37,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2008-2026";"History (Q2); Conservation (Q3); Museology (Q3)";"Arts and Humanities" +26064;21101041824;"Prism";journal;"25783505, 25783491";"Duke University Press";No;No;0,141;Q2;6;0;106;0;36;105;0,21;0,00;0,00;0;United States;Northern America;"Duke University Press";"2019-2024";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26065;16400154745;"Romanische Forschungen";journal;"00358126, 18640737";"Vittorio Klostermann GmbH";No;No;0,141;Q2;7;11;44;663;3;44;0,08;60,27;37,50;0;Germany;Western Europe;"Vittorio Klostermann GmbH";"2002-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26066;21101151856;"RUDN Journal of Studies in Literature and Journalism";journal;"23129220, 23129247";"RUDN University";Yes;Yes;0,141;Q2;4;75;221;1328;31;212;0,14;17,71;70,63;0;Russian Federation;Eastern Europe;"RUDN University";"2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +26067;25974;"Social History";journal;"03071022, 14701200";"Taylor and Francis Ltd.";No;No;0,141;Q2;38;19;55;0;39;52;0,46;0,00;33,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1976-2025";"History (Q2)";"Arts and Humanities" +26068;21101034403;"Studies in African Languages and Cultures";journal;"25452134, 26574187";"University of Warsaw";Yes;Yes;0,141;Q2;5;10;28;382;10;26;0,30;38,20;23,08;0;Poland;Eastern Europe;"University of Warsaw";"2018-2025";"History (Q2); Literature and Literary Theory (Q2); Religious Studies (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26069;21100447122;"Theologica Xaveriana";journal;"01203649, 2011219X";"Pontificia Universidad Javeriana";Yes;Yes;0,141;Q2;6;11;51;412;5;51;0,12;37,45;18,18;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2015-2026";"Religious Studies (Q2)";"Arts and Humanities" +26070;21100202934;"CTBUH Journal";journal;"19461194, 19461186";"Council on Tall Buildings and Urban Habitat";No;No;0,141;Q3;11;0;57;0;21;37;0,21;0,00;0,00;0;United States;Northern America;"Council on Tall Buildings and Urban Habitat";"2011-2017, 2019-2023";"Architecture (Q3); Building and Construction (Q4); Urban Studies (Q4)";"Engineering; Social Sciences" +26071;21100915262;"Linguistique Balkanique";journal;"03241653";"Institute for Bulgarian Language";No;No;0,141;Q3;2;15;43;444;4;38;0,12;29,60;53,33;0;Bulgaria;Eastern Europe;"Institute for Bulgarian Language";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +26072;21100464312;"Metode";journal;"21749221, 21743487";"Universitat de Valencia";Yes;Yes;0,141;Q3;9;49;74;715;31;62;0,22;14,59;31,94;0;Spain;Western Europe;"Universitat de Valencia";"2015-2025";"History and Philosophy of Science (Q3); Multidisciplinary (Q4)";"Arts and Humanities; Multidisciplinary" +26073;21100244213;"Mind and Matter";journal;"16118812, 20513003";"Imprint Academic";No;No;0,141;Q3;21;5;38;485;15;29;0,38;97,00;14,29;0;United Kingdom;Western Europe;"Imprint Academic";"2003-2025";"Philosophy (Q3); Neuroscience (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Neuroscience; Social Sciences" +26074;21101333418;"Rodnoy Yazyk";journal;"23135816";"Institute of Linguistic";No;No;0,141;Q3;2;19;49;414;6;47;0,14;21,79;55,56;0;Russian Federation;Eastern Europe;"Institute of Linguistic";"2021-2025";"Linguistics and Language (Q3)";"Social Sciences" +26075;21101204527;"Russian Journal of Operative Surgery and Clinical Anatomy";journal;"2588042X, 25877755";"Media Sphera Publishing Group";No;No;0,141;Q3;6;42;107;916;40;106;0,45;21,81;48,08;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2017-2025";"Pathophysiology (Q3); Anatomy (Q4); Pathology and Forensic Medicine (Q4); Surgery (Q4)";"Medicine; Nursing" +26076;99334;"Zeitschrift fur Ethnologie";journal;"00442666";"Reimer Verlag";No;No;0,141;Q3;13;0;55;0;34;41;0,87;0,00;0,00;0;Germany;Western Europe;"Reimer Verlag";"1981, 2005-2015, 2017-2024";"Cultural Studies (Q3); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26077;19700182336;"Advances in Astronomy";journal;"16877977, 16877969";"John Wiley and Sons Ltd";Yes;No;0,141;Q4;35;10;28;321;22;28;0,67;32,10;21,43;0;United Kingdom;Western Europe;"John Wiley and Sons Ltd";"2010-2026";"Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Physics and Astronomy" +26078;21100258758;"African Finance Journal";journal;"16059786";"";No;No;0,141;Q4;8;8;26;660;20;26;0,71;82,50;19,05;0;South Africa;Africa;"";"2013-2025";"Finance (Q4)";"Economics, Econometrics and Finance" +26079;20464;"Angiologiya i Sosudistaya Khirurgiya";journal;"10276661";"Geotar Media Publishing Group";No;No;0,141;Q4;13;66;203;2256;49;201;0,24;34,18;22,92;0;Russian Federation;Eastern Europe;"Geotar Media Publishing Group";"2003-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +26080;21100784824;"Applied and Computational Mechanics";journal;"23361182, 1802680X";"University of West Bohemia";Yes;Yes;0,141;Q4;9;10;32;354;18;32;0,41;35,40;19,23;0;Czech Republic;Eastern Europe;"University of West Bohemia";"2016-2025";"Biophysics (Q4); Civil and Structural Engineering (Q4); Computational Mathematics (Q4); Computational Mechanics (Q4); Fluid Flow and Transfer Processes (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Mathematics" +26081;11700154375;"Archivos de Zootecnia";journal;"18854494, 00040592";"UCOPress. Editorial Universidad de Cordoba";Yes;Yes;0,141;Q4;22;29;115;1052;28;108;0,17;36,28;32,93;0;Spain;Western Europe;"UCOPress. Editorial Universidad de Cordoba";"1981-1984, 2008-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +26082;30026;"Cahiers de Nutrition et de Dietetique";journal;"00079960";"Elsevier Masson s.r.l.";No;No;0,141;Q4;16;44;116;1976;34;97;0,29;44,91;65,00;1;France;Western Europe;"Elsevier Masson s.r.l.";"1973-1991, 1994-2026";"Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +26083;21100934920;"Christian Journal for Global Health";journal;"21672415";"Center for Health in Mission";Yes;Yes;0,141;Q4;6;44;63;943;26;51;0,33;21,43;55,81;0;United States;Northern America;"Center for Health in Mission";"2019-2025";"Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +26084;21100812618;"Comunicazione Politica";journal;"19725094, 15946061";"Societa Editrice Il Mulino";No;No;0,141;Q4;11;1;93;46;26;93;0,28;46,00;50,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2016-2025";"Communication (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26085;21101306749;"Eurasian Journal of Pulmonology";journal;"21483620, 21485402";"Kare Publishing";No;No;0,141;Q4;3;31;85;610;24;84;0,29;19,68;61,32;0;Turkey;Middle East;"Kare Publishing";"2021-2026";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +26086;21101041501;"European Journal of Translational and Clinical Medicine";journal;"26573148, 26573156";"Medical University of Gdansk";Yes;Yes;0,141;Q4;6;11;68;494;24;67;0,41;44,91;40,00;0;Poland;Eastern Europe;"Medical University of Gdansk";"2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26087;15117;"Geo-Eco-Trop";journal;"13706071";"Geo-Eco-Trop";No;No;0,141;Q4;16;0;22;0;11;22;0,00;0,00;0,00;0;Belgium;Western Europe;"Geo-Eco-Trop";"1978-1988, 1990-2020, 2022";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +26088;4300151405;"Hippokratia";journal;"11084189, 17908019";"Lithografia Antoniadis I - Psarras Th G.P.";Yes;No;0,141;Q4;42;8;102;172;31;81;0,26;21,50;55,56;0;Greece;Western Europe;"Lithografia Antoniadis I - Psarras Th G.P.";"1999-2002, 2006-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26089;21100888250;"IBIMA Business Review";journal;"19473788";"IBIMA Publishing";No;No;0,141;Q4;13;52;113;2014;63;113;0,48;38,73;45,00;0;United States;Northern America;"IBIMA Publishing";"2012, 2018-2026";"Business, Management and Accounting (miscellaneous) (Q4); Education (Q4)";"Business, Management and Accounting; Social Sciences" +26090;4700152416;"International Journal of Environment, Workplace and Employment";journal;"17418437, 17418445";"Inderscience Enterprises Ltd";No;No;0,141;Q4;15;16;45;892;35;45;0,78;55,75;35,29;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2008, 2016-2025";"Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +26091;21101184716;"International Research Journal of Multidisciplinary Scope";journal;"2582631X";"Iquz Galaxy Publisher";No;No;0,141;Q4;8;475;395;18824;304;395;0,79;39,63;40,17;1;India;Asiatic Region;"Iquz Galaxy Publisher";"2020-2026";"Multidisciplinary (Q4)";"Multidisciplinary" +26092;21101190202;"IP Indian Journal of Clinical and Experimental Dermatology";journal;"25814710, 25814729";"IP Innovative Publication Pvt. Ltd.";No;No;0,141;Q4;5;102;206;2016;52;187;0,26;19,76;55,56;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2019-2025";"Dermatology (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +26093;21101393337;"Iranian Journal of Accounting, Auditing and Finance";journal;"27174131, 25886142";"Ferdowsi University of Mashhad";No;No;0,141;Q4;4;40;83;1901;37;83;0,51;47,53;12,20;0;Iran;Middle East;"Ferdowsi University of Mashhad";"2022-2026";"Accounting (Q4); Artificial Intelligence (Q4); Business, Management and Accounting (miscellaneous) (Q4); Finance (Q4); Information Systems and Management (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences; Economics, Econometrics and Finance" +26094;21101286158;"Iranian Journal of Medicinal and Aromatic Plants Research";journal;"23831243, 17350905";"Research Institute of Forests and Rangelands of Iran";No;No;0,141;Q4;5;43;145;1872;54;145;0,39;43,53;32,76;0;Iran;Middle East;"Research Institute of Forests and Rangelands of Iran";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +26095;21101021451;"Iranian Journal of Polymer Science and Technology";journal;"10163255, 20080883";"";Yes;Yes;0,141;Q4;6;12;100;546;32;100;0,30;45,50;22,86;0;Iran;Middle East;"";"2019-2025";"Materials Chemistry (Q4); Organic Chemistry (Q4); Polymers and Plastics (Q4)";"Chemistry; Materials Science" +26096;21100910935;"Journal of Accounting Review";journal;"10181687";"Journal Of Accounting Review";No;No;0,141;Q4;3;8;25;583;11;25;0,47;72,88;28,57;0;Taiwan;Asiatic Region;"Journal Of Accounting Review";"2018-2026";"Accounting (Q4); Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +26097;21101282682;"Journal of Law, Technology and Policy";journal;"15301931";"University of Illinois College of Law";No;No;0,141;Q4;7;11;37;3722;22;34;0,68;338,36;41,67;0;United States;Northern America;"University of Illinois College of Law";"2020-2025";"Law (Q4)";"Social Sciences" +26098;94365;"Journal of Phytomedicine and Therapeutics";journal;"26365448";"Nat. Inst. for Pharmaceutical Research and Development";No;No;0,141;Q4;7;34;79;1558;38;76;0,41;45,82;35,82;0;Nigeria;Africa;"Nat. Inst. for Pharmaceutical Research and Development";"2000-2007, 2009, 2015-2017, 2019-2025";"Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +26099;21100200205;"Journal of the Iranian Statistical Society";journal;"17264057, 2538189X";"Iranian Statistical Society";Yes;No;0,141;Q4;12;0;59;0;17;59;0,09;0,00;0,00;0;Iran;Middle East;"Iranian Statistical Society";"2011-2024";"Statistics and Probability (Q4)";"Mathematics" +26100;21101039609;"Korean Accounting Review";journal;"25087193, 12293288";"Korean Accounting Association";No;No;0,141;Q4;5;39;108;2570;48;108;0,34;65,90;46,03;0;South Korea;Asiatic Region;"Korean Accounting Association";"2019-2025";"Accounting (Q4)";"Business, Management and Accounting" +26101;21101373169;"Landscape Review";journal;"22531440";"Lincoln University";No;No;0,141;Q4;2;14;24;343;5;19;0,12;24,50;40,91;0;New Zealand;Pacific Region;"Lincoln University";"2022-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +26102;21101032718;"LEARNing Landscapes";journal;"19135688";"Leading English Education and Resource Network (LEARN)";No;No;0,141;Q4;9;17;66;542;24;62;0,30;31,88;73,81;0;Canada;Northern America;"Leading English Education and Resource Network (LEARN)";"2019-2025";"Education (Q4)";"Social Sciences" +26103;15152;"Medico e Bambino";journal;"15913090";"Medico e Bambino";No;No;0,141;Q4;9;167;501;1222;32;269;0,07;7,32;65,77;0;Italy;Western Europe;"Medico e Bambino";"2000-2026";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26104;21101211362;"Mercados y Negocios";journal;"16657039, 25940163";"Universidad de Guadalajara";Yes;Yes;0,141;Q4;5;21;58;777;31;42;0,65;37,00;29,41;0;Mexico;Latin America;"Universidad de Guadalajara";"2020-2026";"Business, Management and Accounting (miscellaneous) (Q4); Marketing (Q4)";"Business, Management and Accounting" +26105;26238;"Monographs in Oral Science";book series;"16623843, 00770892";"S. Karger AG";No;No;0,141;Q4;58;21;59;1825;80;1;1,60;86,90;0,00;0;Switzerland;Western Europe;"S. Karger AG";"1972, 1974-1975, 1977-1978, 1980-1983, 1989-1991, 1996, 2000-2001, 2006, 2009, 2011, 2013-2014, 2017-2025";"Dentistry (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Dentistry; Medicine" +26106;27112;"Nihon Enerugi Gakkaishi/Journal of the Japan Institute of Energy";journal;"09168753, 18826121";"Japan Institute of Energy";No;No;0,141;Q4;19;18;62;475;20;62;0,36;26,39;25,40;0;Japan;Asiatic Region;"Japan Institute of Energy";"1990-2010, 2013, 2015-2026";"Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4); Fuel Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +26107;21101093583;"NTP Technical Report on the Toxicity Studies Series";book series;"23788984, 23788992";"United States National Toxicology Program";No;No;0,141;Q4;6;0;6;0;4;5;0,33;0,00;0,00;0;United States;Northern America;"United States National Toxicology Program";"1991-2000, 2002, 2004, 2006-2007, 2011, 2015-2024";"Cancer Research (Q4); Health, Toxicology and Mutagenesis (Q4); Oncology (Q4); Toxicology (Q4)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +26108;5300152733;"Obere Extremitat";journal;"18626599, 18626602";"Springer Medizin";No;No;0,141;Q4;18;50;144;906;28;115;0,16;18,12;23,14;0;Germany;Western Europe;"Springer Medizin";"2007-2026";"Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +26109;12351;"Optics and Spectroscopy (English translation of Optika i Spektroskopiya)";journal;"0030400X, 15626911";"Pleiades Publishing";No;No;0,141;Q4;47;10;326;140;113;326;0,25;14,00;32,26;0;United States;Northern America;"Pleiades Publishing";"1972-1975, 1991-1992, 1994-2025";"Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Materials Science; Physics and Astronomy" +26110;21101342179;"Pan-American Journal of Ophthalmology";journal;"26664909";"Wolters Kluwer Medknow Publications";Yes;No;0,141;Q4;5;54;176;999;35;163;0,24;18,50;48,95;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2021-2025";"Ophthalmology (Q4)";"Medicine" +26111;21101210858;"Postgraduate Medical Journal of Ghana";journal;"23436921, 20266790";"Ghana College of Physicians and Surgeons";No;No;0,141;Q4;3;25;66;544;16;58;0,30;21,76;30,84;0;Ghana;Africa;"Ghana College of Physicians and Surgeons";"2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26112;67619;"Problems of Forensic Sciences";journal;"12307483";"Instytut Ekspertyz Sadowych";No;No;0,141;Q4;16;10;60;410;15;60;0,25;41,00;50,00;0;Poland;Eastern Europe;"Instytut Ekspertyz Sadowych";"1999-2025";"Pathology and Forensic Medicine (Q4)";"Medicine" +26113;21101257855;"Proceedings of the IEEE International Conference on Computer Communication and the Internet, ICCCI";journal;"28332342, 28332350";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,141;Q4;2;34;40;599;22;38;0,55;17,62;16,48;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems and Management (Q4); Signal Processing (Q4)";"Computer Science; Decision Sciences" +26114;19174;"Psychoterapia";journal;"23915862, 02394170";"Komitet Redakcyjno Wydawniczy Polskiego Towarzystwa Psychiatrycznego";Yes;No;0,141;Q4;8;17;64;425;7;55;0,09;25,00;71,43;0;Poland;Eastern Europe;"Komitet Redakcyjno Wydawniczy Polskiego Towarzystwa Psychiatrycznego";"2001-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +26115;78240;"Revista Argentina de Cardiologia";journal;"00347000, 18503748";"Sociedad Argentina de Cardiologia";Yes;Yes;0,141;Q4;14;74;289;1158;48;146;0,18;15,65;35,67;1;Argentina;Latin America;"Sociedad Argentina de Cardiologia";"1945, 1947, 1957, 1960, 1973-1982, 2008-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +26116;21100945166;"Roczniki Naukowe Zootechniki";journal;"01371657";"National Research Institute of Animal Production";No;No;0,141;Q4;4;12;58;460;20;58;0,23;38,33;48,28;0;Poland;Eastern Europe;"National Research Institute of Animal Production";"2019-2025";"Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +26117;21101050071;"Russian Journal of Pain";journal;"22195297, 26189860";"Media Sphera Publishing Group";No;No;0,141;Q4;9;46;128;1683;56;125;0,47;36,59;64,56;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2010-2025";"Anesthesiology and Pain Medicine (Q4)";"Medicine" +26118;21101289422;"Sibirskii Vestnik Psikhiatrii i Narkologii";journal;"18103111, 25876716";"Mental Health Research Institute";No;No;0,141;Q4;5;36;122;1461;40;122;0,33;40,58;59,48;0;Russian Federation;Eastern Europe;"Mental Health Research Institute";"2021-2025";"Biological Psychiatry (Q4); Cellular and Molecular Neuroscience (Q4); Cognitive Neuroscience (Q4)";"Neuroscience" +26119;16835;"Social Security Bulletin";journal;"00377910";"US Social Security Administration";No;No;0,141;Q4;31;6;20;197;8;20;0,21;32,83;46,15;0;United States;Northern America;"US Social Security Administration";"1946-1947, 1971, 1973-2025";"Public Administration (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26120;19700201460;"Sylvia";journal;"02317796";"Czech Society for Ornithology";No;No;0,141;Q4;7;1;24;0;4;21;0,20;0,00;0,00;0;Czech Republic;Eastern Europe;"Czech Society for Ornithology";"2010-2024";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +26121;21101257879;"Viral Hepatitis Journal";journal;"13079441, 21472939";"Galenos Publishing House";Yes;No;0,141;Q4;3;16;52;509;9;51;0,17;31,81;54,79;0;Turkey;Middle East;"Galenos Publishing House";"2020-2025";"Hepatology (Q4); Infectious Diseases (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +26122;24566;"Zoologicheskii Zhurnal";journal;"00445134";"Izdatel'stvo Nauka";No;No;0,141;Q4;23;102;286;3824;57;286;0,21;37,49;41,34;0;Russian Federation;Eastern Europe;"Izdatel'stvo Nauka";"1950-1951, 1982-1983, 1996-2025";"Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +26123;21100220408;"Asia-Pacific Power and Energy Engineering Conference, APPEEC";conference and proceedings;"21574847, 21574839";"IEEE Computer Society";No;No;0,141;-;34;0;760;0;223;744;0,19;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2009-2014, 2016-2024";"Energy Engineering and Power Technology";"Energy" +26124;21100244866;"Australasian Conference on Robotics and Automation, ACRA";conference and proceedings;"14482053";"Australasian Robotics and Automation Association";No;No;0,141;-;22;0;106;0;23;103;0,21;0,00;0,00;0;Australia;Pacific Region;"Australasian Robotics and Automation Association";"2012-2024";"Artificial Intelligence; Control and Systems Engineering";"Computer Science; Engineering" +26125;21100900305;"International Conference on Civil, Structural and Transportation Engineering";conference and proceedings;"23693002";"Avestia Publishing";No;No;0,141;-;8;120;174;1674;55;171;0,32;13,95;27,48;0;Canada;Northern America;"Avestia Publishing";"2015-2016, 2018-2025";"Civil and Structural Engineering; Materials Chemistry; Transportation";"Engineering; Materials Science; Social Sciences" +26126;21100274701;"International Multidisciplinary Scientific GeoConference Surveying Geology and Mining Ecology Management, SGEM";conference and proceedings;"13142704";"International Multidisciplinary Scientific Geoconference";No;No;0,141;-;28;344;1719;4558;372;1668;0,23;13,25;45,17;0;Bulgaria;Eastern Europe;"International Multidisciplinary Scientific Geoconference";"2006, 2013-2025";"Geology; Geotechnical Engineering and Engineering Geology";"Earth and Planetary Sciences" +26127;21100813726;"Acta Baltica Historiae et Philosophiae Scientiarum";journal;"22282009, 22282017";"Estonian Association for the History and Philosophy of Science";Yes;Yes;0,140;Q2;9;9;42;370;11;39;0,33;41,11;76,92;0;Estonia;Eastern Europe;"Estonian Association for the History and Philosophy of Science";"2013-2025";"History (Q2); Philosophy (Q3)";"Arts and Humanities" +26128;18800156714;"CLCWeb - Comparative Literature and Culture";journal;"14814374";"Purdue University Press";Yes;Yes;0,140;Q2;17;0;115;0;42;109;0,10;0,00;0,00;0;United States;Northern America;"Purdue University Press";"2009-2024";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26129;19600156826;"Cuadernos de Historia Moderna";journal;"02144018, 19882475";"Universidad Complutense Madrid";Yes;Yes;0,140;Q2;3;23;62;788;13;59;0,19;34,26;26,32;0;Spain;Western Europe;"Universidad Complutense Madrid";"1999, 2001, 2022-2025";"History (Q2)";"Arts and Humanities" +26130;21100829711;"ELOPE: English Language Overseas Perspectives and Enquiries";journal;"15818918, 23860316";"University of Ljubljana Press";Yes;Yes;0,140;Q2;7;13;61;537;28;57;0,53;41,31;53,57;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2015-2026";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +26131;21100899913;"Espacio, Tiempo y Educacion";journal;"23407263";"FahrenHouse";Yes;Yes;0,140;Q2;7;31;73;1477;13;73;0,20;47,65;52,94;0;Spain;Western Europe;"FahrenHouse";"2018-2026";"History (Q2); Philosophy (Q3); Education (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26132;21100455666;"Fieldwork in Religion";journal;"17430615, 17430623";"Equinox Publishing Ltd";No;No;0,140;Q2;8;0;40;0;17;37;0,29;0,00;0,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2010, 2014-2024";"Religious Studies (Q2)";"Arts and Humanities" +26133;86049;"Helios";journal;"19350228, 01600923";"Texas Tech University Press";No;No;0,140;Q2;19;3;25;207;11;25;0,26;69,00;50,00;0;United States;Northern America;"Texas Tech University Press";"1984, 2002-2024";"Classics (Q2); Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26134;21100258858;"International Journal of Design in Society";journal;"23251360, 23251328";"Common Ground Research Networks";No;No;0,140;Q2;5;26;34;1084;18;34;0,61;41,69;55,77;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +26135;6500153131;"Irish Historical Studies";journal;"20564139, 00211214";"Cambridge University Press";No;No;0,140;Q2;17;12;53;1635;17;53;0,14;136,25;42,86;0;Ireland;Western Europe;"Cambridge University Press";"1983, 1986-1987, 2001-2026";"History (Q2)";"Arts and Humanities" +26136;19700188310;"Italian Culture";journal;"15590909, 01614622";"Maney Publishing";No;No;0,140;Q2;8;8;39;275;13;36;0,27;34,38;66,67;0;United Kingdom;Western Europe;"Maney Publishing";"1978, 1980-1981, 1983-1986, 1990-1995, 2009-2026";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26137;21100888602;"Jeunesse: Young People, Texts, Cultures";journal;"1920261X, 19202601";"University of Toronto Press";No;No;0,140;Q2;6;13;48;560;13;42;0,38;43,08;83,33;0;Canada;Northern America;"University of Toronto Press";"2018-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26138;16800154738;"Journal of Ancient Near Eastern Religions";journal;"15692124, 15692116";"Brill Academic Publishers";No;No;0,140;Q2;19;7;24;671;8;23;0,30;95,86;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2001-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +26139;21101277754;"Journal of Arts and Thai Studies";journal;"27741419";"Silpakorn University Faculty of Arts";No;No;0,140;Q2;2;63;127;2195;11;127;0,08;34,84;53,49;0;Thailand;Asiatic Region;"Silpakorn University Faculty of Arts";"2021-2025";"Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26140;21100897743;"Journal of Chinese Humanities";journal;"23521333, 23521341";"Brill Academic Publishers";Yes;Yes;0,140;Q2;5;19;67;657;20;56;0,16;34,58;25,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2025";"History (Q2); Literature and Literary Theory (Q2); Cultural Studies (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +26141;21100829504;"Journal of Holy Land and Palestine Studies";journal;"20541996, 20541988";"Edinburgh University Press";No;No;0,140;Q2;13;12;35;431;17;33;0,58;35,92;26,67;0;United Kingdom;Western Europe;"Edinburgh University Press";"2002-2008, 2010, 2012, 2014-2025";"History (Q2); Literature and Literary Theory (Q2); Religious Studies (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26142;19700201438;"Journal of Research on Christian Education";journal;"19344945, 10656219";"Taylor and Francis Ltd.";No;No;0,140;Q2;14;1;32;67;13;32;0,44;67,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-1995, 1997-2025";"Religious Studies (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +26143;5800207636;"Miscelanea";journal;"11376368";"Prensas de la Universidad de Zaragoza";Yes;Yes;0,140;Q2;7;20;59;906;16;59;0,24;45,30;73,91;0;Spain;Western Europe;"Prensas de la Universidad de Zaragoza";"2011, 2014-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26144;21101033195;"Ochrona Zabytkow";journal;"29566606, 00298247";"Narodowy Instytut Dziedzictwa";No;No;0,140;Q2;1;25;66;812;7;56;0,13;32,48;54,05;0;Poland;Eastern Europe;"Narodowy Instytut Dziedzictwa";"2019-2025";"History (Q2); Visual Arts and Performing Arts (Q2); Archeology (arts and humanities) (Q3); Architecture (Q3); Conservation (Q3); Nature and Landscape Conservation (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Environmental Science; Social Sciences" +26145;14000155810;"Photography and Culture";journal;"17514525, 17514517";"Taylor and Francis Ltd.";No;No;0,140;Q2;11;32;84;826;19;76;0,09;25,81;66,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2025";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26146;29205;"Physics in Perspective";journal;"14226960, 14226944";"Springer International Publishing";No;No;0,140;Q2;19;17;32;964;9;23;0,29;56,71;40,91;0;Switzerland;Western Europe;"Springer International Publishing";"1999-2025";"History (Q2); Physics and Astronomy (miscellaneous) (Q4)";"Arts and Humanities; Physics and Astronomy" +26147;20000195064;"Taller de Letras";journal;"07160798";"Pontificia Universidad Catolica de Chile";No;No;0,140;Q2;5;23;79;481;8;76;0,10;20,91;52,38;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2011-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +26148;21100900060;"Tekst, Kniga, Knigoizdaniye";journal;"23062061, 23113774";"Tomsk State University - Faculty of Philology";Yes;No;0,140;Q2;3;25;88;605;7;86;0,05;24,20;74,19;0;Russian Federation;Eastern Europe;"Tomsk State University - Faculty of Philology";"2018-2025";"Visual Arts and Performing Arts (Q2); Media Technology (Q3); Communication (Q4); Information Systems (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Computer Science; Engineering; Social Sciences" +26149;21100283747;"Word and Text";journal;"20699271, 22479163";"Universitatea Petrol-Gaze din Ploiesti";Yes;Yes;0,140;Q2;8;11;35;426;9;33;0,25;38,73;45,45;0;Romania;Eastern Europe;"Universitatea Petrol-Gaze din Ploiesti";"2011-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26150;21101185531;"Anthropological Researches and Studies";journal;"23603445";"Romanian Academy Francisc I Rainer Institute of Anthropology";Yes;No;0,140;Q3;2;32;73;1524;14;73;0,13;47,63;73,63;0;Romania;Eastern Europe;"Romanian Academy Francisc I Rainer Institute of Anthropology";"2022-2026";"Anthropology (Q3); Biological Psychiatry (Q4); Epidemiology (Q4); Experimental and Cognitive Psychology (Q4); Neuropsychology and Physiological Psychology (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Psychiatry and Mental Health (Q4)";"Health Professions; Medicine; Neuroscience; Psychology; Social Sciences" +26151;21101214783;"Archaeologia Adriatica";journal;"18464807, 18489281";"University of Zadar";Yes;Yes;0,140;Q3;3;15;20;878;4;20;0,44;58,53;74,07;0;Croatia;Eastern Europe;"University of Zadar";"2020-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +26152;21101295709;"ARTEKS : Jurnal Teknik Arsitektur";journal;"25410598, 25411217";"Program Studi Arsitektur Fakultas Teknik Universitas Katolik Widya Mandira";Yes;No;0,140;Q3;3;55;90;1650;37;90;0,41;30,00;32,18;0;Indonesia;Asiatic Region;"Program Studi Arsitektur Fakultas Teknik Universitas Katolik Widya Mandira";"2023-2025";"Architecture (Q3)";"Engineering" +26153;21100858127;"Balkan Journal of Philosophy";journal;"23675438, 1313888X";"Bulgarska Akademiya na Naukite";No;No;0,140;Q3;5;18;57;527;12;56;0,26;29,28;10,53;0;Bulgaria;Eastern Europe;"Bulgarska Akademiya na Naukite";"2017-2025";"Philosophy (Q3)";"Arts and Humanities" +26154;22811;"Critica-Revista Hispanoamericana de Filosofia";journal;"18704905, 00111503";"Universidad Nacional Autonoma de Mexico, Instituto de Investigaciones Filosoficas";Yes;Yes;0,140;Q3;9;26;35;771;8;34;0,27;29,65;27,59;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico, Instituto de Investigaciones Filosoficas";"1977, 2002-2025";"Philosophy (Q3)";"Arts and Humanities" +26155;5800207617;"Govor";journal;"03527565";"Croatian Philological Society";Yes;No;0,140;Q3;6;8;24;323;5;22;0,13;40,38;84,62;0;Croatia;Eastern Europe;"Croatian Philological Society";"2008-2025";"Linguistics and Language (Q3)";"Social Sciences" +26156;19600156850;"Journal of Radiology Case Reports";journal;"19430922";"EduRad";Yes;No;0,140;Q3;28;68;144;1042;45;143;0,17;15,32;32,91;0;United States;Northern America;"EduRad";"2008-2026";"Medical Laboratory Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine" +26157;23662;"Science in Context";journal;"02698897, 14740664";"Cambridge University Press";No;No;0,140;Q3;37;0;40;0;6;38;0,05;0,00;0,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1987-1989, 1991-2023, 2026";"History and Philosophy of Science (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26158;21101295710;"Voprosy Istorii Estestvoznaniia i Tekhniki";journal;"02059606, 2713041X";"Russian Academy of Sciences";No;No;0,140;Q3;3;34;112;805;5;106;0,04;23,68;41,94;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"1980-1985, 1987, 1989-1990, 2001-2002, 2022-2025";"History and Philosophy of Science (Q3)";"Arts and Humanities" +26159;21101346357;"Acta Veterinaria et Zootechnica Sinica";journal;"03666964";"Editorial Board, Institute of Animal Science of the Chinese Academy of Agricultural Sciences";No;No;0,140;Q4;10;552;1434;25406;667;1434;0,50;46,03;44,76;0;China;Asiatic Region;"Editorial Board, Institute of Animal Science of the Chinese Academy of Agricultural Sciences";"2021-2026";"Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +26160;21100891790;"African Journal of Business and Economic Research";journal;"17504554, 17504562";"Adonis & Abbey Publishers Ltd.";No;No;0,140;Q4;13;86;225;4118;101;224;0,35;47,88;23,94;0;United Kingdom;Western Europe;"Adonis & Abbey Publishers Ltd.";"2006-2025";"Business and International Management (Q4); Economics and Econometrics (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +26161;21101094852;"Anales de la Facultad de Medicina";journal;"10255583, 16099419";"Universidad Nacional Mayor de San Marcos, Facultad de Medicina";Yes;Yes;0,140;Q4;10;73;234;2025;89;185;0,29;27,74;35,63;0;Peru;Latin America;"Universidad Nacional Mayor de San Marcos, Facultad de Medicina";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26162;19486;"Antibiotiki i Khimioterapiya";journal;"02352990";"Publishing House OKI";Yes;Yes;0,140;Q4;16;58;202;2123;77;201;0,39;36,60;61,92;0;Russian Federation;Eastern Europe;"Publishing House OKI";"1988-2025";"Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Microbiology (Q4); Microbiology (medical) (Q4)";"Immunology and Microbiology; Medicine" +26163;29996;"Archivos Latinoamericanos de Nutricion";journal;"23095806, 00040622";"Archivos Latinoamericanos Nutricion";Yes;No;0,140;Q4;40;28;153;1255;46;149;0,18;44,82;66,67;0;Venezuela;Latin America;"Archivos Latinoamericanos Nutricion";"1971-2025";"Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +26164;21101207439;"Biologica Nyssana";journal;"22174478, 22174605";"University of Nis Faculty of Science and Mathematics";Yes;Yes;0,140;Q4;5;52;48;2158;22;48;0,41;41,50;48,63;0;Serbia;Eastern Europe;"University of Nis Faculty of Science and Mathematics";"2019-2025";"Animal Science and Zoology (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +26165;21101124746;"CardioSomatics";journal;"22217185, 26585707";"Eco-Vector LLC";Yes;Yes;0,140;Q4;4;25;84;1018;24;84;0,28;40,72;50,37;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Cardiology and Cardiovascular Medicine (Q4); Internal Medicine (Q4); Rehabilitation (Q4)";"Medicine" +26166;21101091129;"China Biotechnology";journal;"16718135";"";No;No;0,140;Q4;7;79;441;4354;160;440;0,32;55,11;46,33;0;China;Asiatic Region;"";"2019-2025";"Accounting (Q4); Business, Management and Accounting (miscellaneous) (Q4); Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +26167;21101256322;"China Pharmacy";journal;"10010408";"";Yes;No;0,140;Q4;8;534;1605;13220;556;1605;0,35;24,76;49,41;0;China;Asiatic Region;"";"2020-2026";"Drug Discovery (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +26168;3900148613;"Chinese Journal of Rehabilitation Medicine";journal;"10011242";"China-Japan Friendship Hospital";No;No;0,140;Q4;12;133;532;4169;157;531;0,28;31,35;45,65;0;China;Asiatic Region;"China-Japan Friendship Hospital";"2006-2026";"Rehabilitation (Q4)";"Medicine" +26169;21101041556;"Complex Issues of Cardiovascular Diseases";journal;"23061278, 25879537";"NII KPSSZ";No;No;0,140;Q4;9;124;317;3804;113;316;0,30;30,68;52,41;0;Russian Federation;Eastern Europe;"NII KPSSZ";"2019-2025";"Cardiology and Cardiovascular Medicine (Q4); Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4); Rehabilitation (Q4); Surgery (Q4)";"Medicine" +26170;21101308310;"CTU Journal of Innovation and Sustainable Development";journal;"25881418, 28156412";"Can Tho University";Yes;No;0,140;Q4;5;74;174;2157;99;174;0,60;29,15;25,93;0;Viet Nam;Asiatic Region;"Can Tho University";"2021-2025";"Business, Management and Accounting (miscellaneous) (Q4); Energy (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Business, Management and Accounting; Energy; Environmental Science" +26171;19400158662;"Curriculo sem Fronteiras";journal;"16451384";"Curriculo sem Fronteiras";Yes;Yes;0,140;Q4;13;49;151;2219;17;148;0,14;45,29;55,56;0;Portugal;Western Europe;"Curriculo sem Fronteiras";"2009-2026";"Education (Q4)";"Social Sciences" +26172;21100293800;"Electronics";journal;"14505843";"University of Banja Luka, Faculty of Electrical Engineering";Yes;Yes;0,140;Q4;12;10;30;243;14;23;0,32;24,30;41,67;0;Bosnia and Herzegovina;Eastern Europe;"University of Banja Luka, Faculty of Electrical Engineering";"2012-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +26173;21100934789;"Fuentes el Reventon Energetico";journal;"21458502, 16576527";"Universidad Industrial de Santander";Yes;Yes;0,140;Q4;6;7;49;249;17;44;0,41;35,57;18,18;0;Colombia;Latin America;"Universidad Industrial de Santander";"2019-2025";"Energy (miscellaneous) (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Energy" +26174;21100245708;"Global Media Journal, Canadian Edition";journal;"19185901";"Department of Communication, University of Ottawa";Yes;Yes;0,140;Q4;9;0;20;0;9;17;0,00;0,00;0,00;0;Canada;Northern America;"Department of Communication, University of Ottawa";"2013-2017, 2021-2023";"Communication (Q4)";"Social Sciences" +26175;19700175001;"Guncel Pediatri";journal;"13086308, 13049054";"Galenos Publishing House";Yes;Yes;0,140;Q4;8;33;85;911;27;85;0,24;27,61;60,68;0;Turkey;Middle East;"Galenos Publishing House";"2009-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26176;21101313968;"IEEE/ACM International Conference on Software Engineering - Software Engineering in Practice";journal;"28327659, 28327640";"Institute of Electrical and Electronics Engineers";No;No;0,140;Q4;3;59;45;2664;26;44;0,58;45,15;27,19;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2024-2025";"Safety, Risk, Reliability and Quality (Q4); Software (Q4)";"Computer Science; Engineering" +26177;21101162960;"IET Conference Proceedings";journal;"27324494";"Institution of Engineering and Technology";No;No;0,140;Q4;16;2446;10808;35659;3177;10700;0,30;14,58;25,55;0;United Kingdom;Western Europe;"Institution of Engineering and Technology";"2004, 2006, 2008-2015, 2018, 2020-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +26178;21101117187;"Integrative and Complementary Therapies";journal;"27683192, 27683206";"Mary Ann Liebert Inc.";No;No;0,140;Q4;22;51;154;975;35;129;0,20;19,12;61,70;0;United States;Northern America;"Mary Ann Liebert Inc.";"2022-2026";"Complementary and Alternative Medicine (Q4)";"Medicine" +26179;21101091649;"International Journal of Public Policy and Administration Research";journal;"23126515, 23130423";"Conscientia Beam";No;No;0,140;Q4;6;22;29;1046;18;29;0,40;47,55;47,83;0;United States;Northern America;"Conscientia Beam";"2019-2026";"Business, Management and Accounting (miscellaneous) (Q4); Development (Q4); Economics and Econometrics (Q4); Organizational Behavior and Human Resource Management (Q4); Public Administration (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +26180;144784;"International Journal of Water";journal;"17415322, 14656620";"Inderscience Enterprises Ltd";No;No;0,140;Q4;20;7;37;388;16;37;0,46;55,43;38,89;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2000-2005, 2007-2025";"Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Water Science and Technology (Q4)";"Environmental Science; Social Sciences" +26181;21101244200;"Iranian Journal of Animal Biosystematics";journal;"24234222, 1735434X";"Ferdowsi University of Mashhad";Yes;Yes;0,140;Q4;3;12;37;608;11;37;0,27;50,67;17,95;0;Iran;Middle East;"Ferdowsi University of Mashhad";"2020-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences" +26182;4700153506;"Iranian Journal of Nuclear Medicine";journal;"20082509, 16812824";"Tehran University of Medical Sciences";Yes;No;0,140;Q4;14;27;86;624;26;86;0,41;23,11;47,19;0;Iran;Middle East;"Tehran University of Medical Sciences";"2006-2026";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +26183;21101176856;"Jordan Journal of Chemistry";journal;"18149111, 20797249";"Yarmouk University";No;No;0,140;Q4;5;23;46;1004;21;46;0,39;43,65;27,84;0;Jordan;Middle East;"Yarmouk University";"2020-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +26184;21100364622;"Journal of Arthroscopy and Joint Surgery";journal;"22149635";"Wolters Kluwer Health";No;No;0,140;Q4;11;32;100;790;20;94;0,19;24,69;15,24;0;India;Asiatic Region;"Wolters Kluwer Health";"2015-2026";"Orthopedics and Sports Medicine (Q4)";"Medicine" +26185;21100201958;"Journal of Chinese Pharmaceutical Sciences";journal;"10031057";"Chinese Pharmaceutical Association";Yes;No;0,140;Q4;18;1;193;80;65;186;0,32;80,00;16,67;0;China;Asiatic Region;"Chinese Pharmaceutical Association";"2011-2025";"Pharmaceutical Science (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +26186;21101075017;"Journal of Clinical Hepatology";journal;"10015256";"Editorial Board of Jilin University";No;No;0,140;Q4;20;345;1394;11614;574;1360;0,49;33,66;45,02;0;China;Asiatic Region;"Editorial Board of Jilin University";"2019-2025";"Endocrinology, Diabetes and Metabolism (Q4); Gastroenterology (Q4); Hepatology (Q4)";"Medicine" +26187;21101037169;"Journal of Community Positive Practices";journal;"22476571, 15828344";"Catalactica Association";No;No;0,140;Q4;4;18;101;723;40;101;0,44;40,17;62,07;0;Romania;Eastern Europe;"Catalactica Association";"2019-2025";"Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26188;21100886225;"Journal of Literary and Cultural Disability Studies";journal;"17576458, 17576466";"Liverpool University Press";No;No;0,140;Q4;10;31;93;861;63;72;0,65;27,77;71,43;0;United Kingdom;Western Europe;"Liverpool University Press";"2017-2026";"Health Professions (miscellaneous) (Q4); Health (social science) (Q4); Social Sciences (miscellaneous) (Q4)";"Health Professions; Social Sciences" +26189;21100268424;"Journal of Mathematical and Fundamental Sciences";journal;"23375760, 23385510";"Institute for Research and Community Services, Institut Teknologi Bandung";Yes;No;0,140;Q4;21;9;52;279;26;52;0,32;31,00;31,25;0;Indonesia;Asiatic Region;"Institute for Research and Community Services, Institut Teknologi Bandung";"2011, 2013-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Multidisciplinary (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Earth and Planetary Sciences; Mathematics; Medicine; Multidisciplinary; Physics and Astronomy" +26190;5000158601;"Journal of Pediatric Neurology";journal;"18759041, 13042580";"Georg Thieme Verlag";No;No;0,140;Q4;21;0;248;0;53;237;0,23;0,00;0,00;0;Germany;Western Europe;"Georg Thieme Verlag";"2003-2024";"Neurology (clinical) (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26191;21100790112;"Jurnal Infektologii";journal;"24999865, 20726732";"Interregional public organization Association of infectious disease specialists of Saint-Petersburg and Leningrad region (IPO AIDSSPbR)";Yes;Yes;0,140;Q4;11;80;211;2016;70;211;0,41;25,20;67,16;0;Russian Federation;Eastern Europe;"Interregional public organization Association of infectious disease specialists of Saint-Petersburg and Leningrad region (IPO AIDSSPbR)";"2015-2025";"Infectious Diseases (Q4)";"Medicine" +26192;20252;"Klinicka Mikrobiologie a Infekcni Lekarstvi";journal;"1211264X";"Trios spol. s.r.o.";No;No;0,140;Q4;10;23;64;357;9;47;0,05;15,52;51,22;0;Czech Republic;Eastern Europe;"Trios spol. s.r.o.";"2001-2025";"Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Microbiology (medical) (Q4)";"Medicine" +26193;21101277819;"Maskana";journal;"13906143, 24778893";"University of Cuenca";Yes;Yes;0,140;Q4;3;39;57;1505;8;51;0,17;38,59;60,00;0;Ecuador;Latin America;"University of Cuenca";"2021-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +26194;16183;"Melbourne University Law Review";journal;"00258938";"Melbourne Law School";No;No;0,140;Q4;22;13;41;4550;27;41;0,72;350,00;35,71;0;Australia;Pacific Region;"Melbourne Law School";"1983, 1989, 1991-1993, 1996, 1999, 2001, 2006, 2008-2019, 2021-2025";"Law (Q4)";"Social Sciences" +26195;31273;"Memoirs of the Queensland Museum";journal;"00798835";"Queensland Museum";No;No;0,140;Q4;38;8;15;235;4;15;0,25;29,38;14,29;0;Australia;Pacific Region;"Queensland Museum";"1987-2009, 2011-2022, 2024-2026";"Ecology (Q4); Paleontology (Q4)";"Earth and Planetary Sciences; Environmental Science" +26196;21100894208;"Otolaryngology Case Reports";journal;"24685488";"Elsevier Inc.";Yes;No;0,140;Q4;7;70;241;851;56;241;0,24;12,16;38,28;0;Netherlands;Western Europe;"Elsevier Inc.";"2017-2026";"Otorhinolaryngology (Q4)";"Medicine" +26197;19700201450;"Pediatrie pro Praxi";journal;"12130494, 18035264";"SOLEN s.r.o.";No;No;0,140;Q4;5;86;254;1379;10;239;0,05;16,03;60,73;0;Czech Republic;Eastern Europe;"SOLEN s.r.o.";"2011-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26198;24737;"Polish Journal of Ecology";journal;"15052249";"Polish Academy of Sciences";Yes;No;0,140;Q4;35;0;33;0;13;33;0,38;0,00;0,00;0;Poland;Eastern Europe;"Polish Academy of Sciences";"1996, 1998-2024, 2026";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +26199;21101257837;"Proceedings of the IEEE-APS Topical Conference on Antennas and Propagation in Wireless Communications, APWC";journal;"28352378, 2766287X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,140;Q4;3;71;66;929;33;64;0,50;13,08;22,54;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Instrumentation (Q4); Radiation (Q4)";"Computer Science; Engineering; Physics and Astronomy" +26200;21100913651;"REC: CardioClinics";journal;"26051532, 26051575";"Elsevier Espana S.L.U";No;No;0,140;Q4;8;74;218;1313;58;215;0,31;17,74;45,97;0;Spain;Western Europe;"Elsevier Espana S.L.U";"2019-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +26201;21101021411;"Regioni";journal;"2612050X, 03917576";"Societa Editrice Il Mulino";No;No;0,140;Q4;3;75;205;1242;14;187;0,06;16,56;47,62;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2019-2025";"Law (Q4)";"Social Sciences" +26202;25356;"Revista de Gastroenterologia del Peru";journal;"1609722X, 10225129";"Sociedad De Gastroenterologia Del Peru";Yes;No;0,140;Q4;19;58;156;0;38;145;0,27;0,00;31,11;0;Peru;Latin America;"Sociedad De Gastroenterologia Del Peru";"1989-1996, 2001-2025";"Gastroenterology (Q4)";"Medicine" +26203;28003;"Revista Espanola de Nutricion Comunitaria";journal;"11353074";"Ediciones Doyma, S.L.";No;No;0,140;Q4;12;37;111;1144;21;109;0,14;30,92;59,32;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2001-2010, 2012-2025";"Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +26204;21100228747;"Revista General de Derecho Administrativo";journal;"16969650";"Iustel";No;No;0,140;Q4;7;0;204;0;24;194;0,14;0,00;0,00;0;Spain;Western Europe;"Iustel";"2012-2024";"Law (Q4)";"Social Sciences" +26205;21356;"Russian Journal of Immunology";journal;"10287221, 27827291";"";No;No;0,140;Q4;11;155;312;1892;109;312;0,36;12,21;69,43;0;Russian Federation;Eastern Europe;"";"2002-2004, 2019-2026";"Immunology (Q4); Immunology and Allergy (Q4); Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Oncology (Q4)";"Immunology and Microbiology; Medicine" +26206;21100827186;"Socialni Prace";journal;"1805885X, 12136204";"Association of Educators in Social Work";No;No;0,140;Q4;8;48;157;1749;18;123;0,06;36,44;69,70;0;Czech Republic;Eastern Europe;"Association of Educators in Social Work";"2017-2025";"Applied Psychology (Q4); Health (social science) (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Psychology; Social Sciences" +26207;95079;"Studia Pneumologica et Phthiseologica";journal;"1213810X";"Trios spol. s.r.o.";No;No;0,140;Q4;6;34;108;607;8;67;0,07;17,85;40,63;0;Czech Republic;Eastern Europe;"Trios spol. s.r.o.";"1993-2025";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +26208;21101155401;"Trends in Earth Observation";book series;"26127148, 26127911";"Italian Society of Remote Sensing";No;No;0,140;Q4;4;3;36;265;14;34;0,39;88,33;46,15;0;Italy;Western Europe;"Italian Society of Remote Sensing";"2019, 2021, 2024-2025";"Control and Systems Engineering (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4)";"Earth and Planetary Sciences; Engineering" +26209;21100920048;"Uchenye Zapiski Kazanskogo Universiteta. Seriya Estestvennye Nauki";journal;"2542064X, 2500218X";"Kazan Federal University";Yes;Yes;0,140;Q4;10;43;122;1514;53;121;0,43;35,21;44,19;0;Russian Federation;Eastern Europe;"Kazan Federal University";"2013-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Earth and Planetary Sciences" +26210;18324;"Vestnik Rossiiskoi Akademii Meditsinskikh Nauk";journal;"08696047, 24143545";"Publishing House of the Union of Pediatricians";No;No;0,140;Q4;22;21;130;458;64;129;0,40;21,81;48,84;0;Russian Federation;Eastern Europe;"Publishing House of the Union of Pediatricians";"1992-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26211;22728;"Zhongshan Daxue Xuebao/Acta Scientiarum Natralium Universitatis Sunyatseni";journal;"20970137";"Journal of Zhongshan University";No;No;0,140;Q4;17;114;318;3516;111;318;0,38;30,84;43,22;0;China;Asiatic Region;"Journal of Zhongshan University";"1980, 2001-2026";"Multidisciplinary (Q4)";"Multidisciplinary" +26212;21101188200;"European Conference on Turbomachinery Fluid Dynamics and Thermodynamics, ETC";conference and proceedings;"24104833, 23130067";"European Turbomachinery Society";No;No;0,140;-;18;0;145;0;61;144;0,42;0,00;0,00;0;Italy;Western Europe;"European Turbomachinery Society";"1997, 2013-2015, 2017, 2019, 2021, 2023";"Condensed Matter Physics; Mechanical Engineering; Mechanics of Materials";"Engineering; Physics and Astronomy" +26213;21101058059;"International Scientific and Technical Conference on Computer Sciences and Information Technologies";conference and proceedings;"27663639, 27663655";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,140;-;26;0;401;0;217;397;0,41;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2015-2024";"Computer Networks and Communications; Information Systems; Information Systems and Management";"Computer Science; Decision Sciences" +26214;21101083423;"Proceedings of the Hamburg International Conference of Logistics";conference and proceedings;"23654430, 23655070";"Institute of Business Logistics and General Management, Hamburg University of Technology";No;No;0,140;-;6;0;32;0;12;30;0,00;0,00;0,00;0;Germany;Western Europe;"Institute of Business Logistics and General Management, Hamburg University of Technology";"2019, 2021-2022";"Business, Management and Accounting (miscellaneous); Management Science and Operations Research";"Business, Management and Accounting; Decision Sciences" +26215;6000170740;"American Literary History";journal;"14684365, 08967148";"Oxford University Press";No;No;0,139;Q2;41;34;165;945;48;159;0,28;27,79;50,00;0;United States;Northern America;"Oxford University Press";"1989-2025";"History (Q2); Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26216;21100891034;"Asian Review of World Histories";journal;"22879811, 2287965X";"Brill Academic Publishers";No;No;0,139;Q2;9;18;46;971;7;39;0,19;53,94;55,56;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2026";"History (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26217;21100197144;"Atalante";journal;"23406992, 18853730";"Asoc Cineforum L Atalante";Yes;Yes;0,139;Q2;6;21;81;766;16;80;0,09;36,48;42,86;0;Spain;Western Europe;"Asoc Cineforum L Atalante";"2011-2025";"History (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26218;21101071897;"CIAN-Revista de Historia de las Universidades";journal;"11396628, 19888503";"Universidad Carlos III de Madrid";No;Yes;0,139;Q2;4;16;45;718;9;45;0,20;44,88;43,48;0;Spain;Western Europe;"Universidad Carlos III de Madrid";"2019-2025";"History (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +26219;21100838726;"Glossae";journal;"22552707";"Institute for Social, Political and Legal Studies";No;Yes;0,139;Q2;5;11;69;1229;5;64;0,10;111,73;25,00;0;Spain;Western Europe;"Institute for Social, Political and Legal Studies";"2017-2025";"History (Q2); Law (Q4)";"Arts and Humanities; Social Sciences" +26220;21101131745;"Gnosis";journal;"2451859X, 24518581";"Brill Academic Publishers";No;No;0,139;Q2;6;8;32;599;5;27;0,28;74,88;14,29;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +26221;21100945294;"Greek and Roman Musical Studies";journal;"22129758, 2212974X";"Brill Academic Publishers";No;No;0,139;Q2;7;16;46;752;5;40;0,14;47,00;64,29;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2018-2026";"Classics (Q2); Music (Q3)";"Arts and Humanities" +26222;5800210947;"Heythrop Journal - Quarterly Review of Philosophy and Theology";journal;"14682265, 00181196";"John Wiley and Sons Inc";No;No;0,139;Q2;16;35;182;1236;47;178;0,30;35,31;16,67;0;United States;Northern America;"John Wiley and Sons Inc";"1960-2026";"Religious Studies (Q2); Philosophy (Q3); Neurology (Q4); Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Waste Management and Disposal (Q4); Water Science and Technology (Q4)";"Arts and Humanities; Environmental Science; Health Professions; Medicine; Neuroscience" +26223;21100826242;"Hispania Nova";journal;"11387319";"Universidad Carlos III de Madrid";Yes;No;0,139;Q2;6;23;77;721;22;77;0,31;31,35;19,05;0;Spain;Western Europe;"Universidad Carlos III de Madrid";"2017-2025";"History (Q2)";"Arts and Humanities" +26224;21100924303;"Indo-European Linguistics";journal;"22125892, 22125884";"Brill Academic Publishers";Yes;Yes;0,139;Q2;9;6;24;442;7;23;0,20;73,67;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2025";"History (Q2); Cultural Studies (Q3); Linguistics and Language (Q3); Communication (Q4); Experimental and Cognitive Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +26225;6500153184;"Italian Studies";journal;"00751634, 17486181";"Maney Publishing";No;No;0,139;Q2;16;36;96;0;22;91;0,14;0,00;44,44;0;United Kingdom;Western Europe;"Maney Publishing";"1937-1939, 1946-1947, 1949-1995, 1999, 2002-2026";"History (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26226;21101321965;"Journal of Early Modern Studies (Romania)";journal;"22856382, 22860290";"Zeta Books";No;No;0,139;Q2;3;4;39;208;9;35;0,16;52,00;50,00;0;Romania;Eastern Europe;"Zeta Books";"2021-2025";"History (Q2); Literature and Literary Theory (Q2); History and Philosophy of Science (Q3); Philosophy (Q3)";"Arts and Humanities" +26227;21100449127;"Journal of Modern Turkish History";journal;"21471592, 13051458";"Hacettepe University";Yes;No;0,139;Q2;3;42;114;1962;12;114;0,13;46,71;30,95;0;Turkey;Middle East;"Hacettepe University";"2015-2025";"History (Q2)";"Arts and Humanities" +26228;20300195060;"Journal of Song-Yuan Studies";journal;"21546665, 10593152";"Journal of Song-Yuan Studies (JSYS)";No;No;0,139;Q2;8;8;33;388;7;31;0,30;48,50;25,00;0;United States;Northern America;"Journal of Song-Yuan Studies (JSYS)";"2010-2012, 2014-2015, 2019-2025";"History (Q2); Literature and Literary Theory (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26229;21100891825;"Komunikacija i Kultura Online";journal;"22174257";"FOKUS – Forum za interkulturnu komunikaciju";Yes;Yes;0,139;Q2;2;19;40;636;4;38;0,08;33,47;65,38;0;Serbia;Eastern Europe;"FOKUS – Forum za interkulturnu komunikaciju";"2018-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +26230;21101040205;"Miedzy Oryginalem a Przekladem";journal;"16899121, 23916745";"Ksiegarnia Akademicka Publishing Ltd";Yes;Yes;0,139;Q2;4;30;84;886;10;76;0,06;29,53;86,67;0;Poland;Eastern Europe;"Ksiegarnia Akademicka Publishing Ltd";"2019-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26231;4700152636;"Mind and Society";journal;"15937879, 18601839";"Springer Science and Business Media Deutschland GmbH";No;No;0,139;Q2;25;52;27;3228;26;27;0,94;62,08;28,24;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2005-2025";"History (Q2); Cultural Studies (Q3); Philosophy (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Experimental and Cognitive Psychology (Q4); Social Psychology (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Psychology; Social Sciences" +26232;6500153197;"Musical Quarterly";journal;"17418399, 00274631";"Oxford University Press";No;No;0,139;Q2;24;0;32;0;4;26;0,04;0,00;0,00;0;United States;Northern America;"Oxford University Press";"1915-1986, 1989-2002, 2004-2007, 2009-2024";"Music (Q2)";"Arts and Humanities" +26233;22412;"Northern History";journal;"17458706, 0078172X";"Maney Publishing";No;No;0,139;Q2;13;5;48;271;9;38;0,16;54,20;40,00;0;United Kingdom;Western Europe;"Maney Publishing";"1966-2026";"History (Q2)";"Arts and Humanities" +26234;19900191815;"Proceedings of the Royal Irish Academy, Section C: Archaeology, Celtic Studies, History, Linguistics and Literature";journal;"20090048, 00358991";"Royal Irish Academy";No;No;0,139;Q2;12;11;33;899;6;31;0,06;81,73;26,32;0;Ireland;Western Europe;"Royal Irish Academy";"1977, 1987, 2001, 2010-2025";"History (Q2); Literature and Literary Theory (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26235;21100904421;"Respectus Philologicus";journal;"13928295, 23352388";"Vilnius University Press";Yes;Yes;0,139;Q2;5;11;76;270;22;76;0,24;24,55;95,45;0;Lithuania;Eastern Europe;"Vilnius University Press";"2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +26236;5800207797;"Revista de Filologia Romanica";journal;"0212999X, 19882815";"Universidad Complutense Madrid";Yes;Yes;0,139;Q2;8;12;31;572;9;31;0,29;47,67;72,73;0;Spain;Western Europe;"Universidad Complutense Madrid";"1996-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26237;21100304266;"Russkaia Literatura";journal;"01316095";"Rossiiskaya Akademiya Nauk Institut Russkoi Literatury (Pushkinskii Dom)";No;No;0,139;Q2;4;109;235;1659;18;209;0,08;15,22;56,63;0;Russian Federation;Eastern Europe;"Rossiiskaya Akademiya Nauk Institut Russkoi Literatury (Pushkinskii Dom)";"2013-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +26238;21101287867;"Studi Lockiani";journal;"27244016";"Edizioni ETS";No;No;0,139;Q2;2;12;41;395;3;37;0,05;32,92;16,67;0;Italy;Western Europe;"Edizioni ETS";"2021-2025";"Classics (Q2); Religious Studies (Q2); History and Philosophy of Science (Q3); Philosophy (Q3)";"Arts and Humanities" +26239;21101043578;"Transmodernity";journal;"21541361";"University of California, Merced";Yes;Yes;0,139;Q2;6;23;63;1020;10;57;0,04;44,35;60,00;0;United States;Northern America;"University of California, Merced";"2018-2026";"Literature and Literary Theory (Q2); Anthropology (Q3); Cultural Studies (Q3); Geography, Planning and Development (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26240;21100407831;"Turkish Historical Review";journal;"18775462, 18775454";"Brill Academic Publishers";No;No;0,139;Q2;10;15;48;1274;22;46;0,29;84,93;23,08;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2026";"History (Q2)";"Arts and Humanities" +26241;26737;"Zeitschrift fur Romanische Philologie";journal;"00498661, 18659063";"Walter de Gruyter GmbH";No;No;0,139;Q2;11;45;141;2528;25;138;0,21;56,18;38,30;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1877-1913, 1917, 1919-1944, 1949-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26242;21101073711;"Acta Linguistica Petropolitana";journal;"26584069, 23065737";"Institute for Linguistic Studies RAS";No;No;0,139;Q3;4;27;108;954;15;106;0,15;35,33;73,33;0;Russian Federation;Eastern Europe;"Institute for Linguistic Studies RAS";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +26243;26967;"Akademiska Dzive";journal;"25929429, 05163145";"University of Latvia";No;No;0,139;Q3;2;16;41;552;6;38;0,19;34,50;78,57;0;Latvia;Eastern Europe;"University of Latvia";"1984, 2021-2025";"Arts and Humanities (miscellaneous) (Q3); History and Philosophy of Science (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26244;19700170150;"Estudos de Linguistica Galega";journal;"18892566, 1989578X";"Universidad de Santiago de Compostela";Yes;Yes;0,139;Q3;8;6;17;360;3;17;0,17;60,00;44,44;0;Spain;Western Europe;"Universidad de Santiago de Compostela";"2009-2025";"Linguistics and Language (Q3)";"Social Sciences" +26245;21101074583;"Instructed Second Language Acquisition";journal;"23984163, 23984155";"University of Toronto Press";No;No;0,139;Q3;7;16;37;929;13;31;0,29;58,06;60,00;0;Canada;Northern America;"University of Toronto Press";"2019-2025";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +26246;21100792504;"Journal of Cognitive Science";journal;"15982327, 19766939";"Seoul National University, Institute for Cognitive Science";Yes;No;0,139;Q3;9;16;52;749;14;52;0,29;46,81;42,31;0;South Korea;Asiatic Region;"Seoul National University, Institute for Cognitive Science";"2016-2025";"Linguistics and Language (Q3); Artificial Intelligence (Q4); Cognitive Neuroscience (Q4); Experimental and Cognitive Psychology (Q4)";"Computer Science; Neuroscience; Psychology; Social Sciences" +26247;21101206083;"Journal of Contemporary Orthodontics";journal;"25820478";"IP Innovative Publication Pvt. Ltd.";No;No;0,139;Q3;4;81;178;2049;41;171;0,22;25,30;40,75;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2020-2026";"Orthodontics (Q3)";"Dentistry" +26248;21101257864;"Journal of Global Faultlines";journal;"20542089, 23977825";"Pluto Journals";Yes;Yes;0,139;Q3;6;17;59;823;23;52;0,25;48,41;33,33;0;United Kingdom;Western Europe;"Pluto Journals";"2020-2025";"History and Philosophy of Science (Q3); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +26249;21100226406;"Journal of Transnational American Studies";journal;"19400764";"University of California, Santa Barbara";Yes;Yes;0,139;Q3;16;48;88;1775;17;61;0,23;36,98;54,35;0;United States;Northern America;"University of California, Santa Barbara";"2009-2013, 2015-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +26250;21101263159;"Lietuvos Etnologija";journal;"13924028, 25386522";"Lithuanian Institute of History";No;No;0,139;Q3;2;10;23;372;4;17;0,14;37,20;80,00;0;Lithuania;Eastern Europe;"Lithuanian Institute of History";"2020-2025";"Anthropology (Q3); Cultural Studies (Q3)";"Social Sciences" +26251;5800209355;"Lingua Posnaniensis";journal;"00794740, 20836090";"Uniwersytet im. Adama Mickiewicza w Poznaniu";Yes;No;0,139;Q3;9;6;33;228;6;33;0,17;38,00;16,67;0;Germany;Western Europe;"Uniwersytet im. Adama Mickiewicza w Poznaniu";"2009-2025";"Linguistics and Language (Q3)";"Social Sciences" +26252;5800212844;"Linguistica Silesiana";journal;"02084228";"Polska Akademia Nauk";No;No;0,139;Q3;6;11;54;377;9;54;0,06;34,27;78,57;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2011-2013, 2016-2025";"Linguistics and Language (Q3)";"Social Sciences" +26253;21100316036;"Signo y Pensamiento";journal;"01204823, 20272731";"Pontificia Universidad Javeriana";Yes;Yes;0,139;Q3;9;14;68;682;13;68;0,14;48,71;56,52;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2014-2025";"Linguistics and Language (Q3); Communication (Q4)";"Social Sciences" +26254;16400154743;"University of Toronto Quarterly";journal;"00420247, 17125278";"University of Toronto Press";No;No;0,139;Q3;19;20;199;1072;8;178;0,06;53,60;20,00;0;Canada;Northern America;"University of Toronto Press";"2001-2025";"Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +26255;21100981040;"Adelaide Law Review";journal;"00651915";"University of Adelaide";No;No;0,139;Q4;6;26;90;3001;22;69;0,13;115,42;50,00;0;Australia;Pacific Region;"University of Adelaide";"2019-2025";"Law (Q4)";"Social Sciences" +26256;21100897789;"Advances in Business Related Scientific Research Journal";journal;"1855931X";"GEA College – Faculty of Entrepreneurship";Yes;No;0,139;Q4;6;12;33;517;18;33;0,43;43,08;34,48;0;Slovenia;Eastern Europe;"GEA College – Faculty of Entrepreneurship";"2018-2025";"Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Gender Studies (Q4); Law (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +26257;21100793198;"Analele Universitatii din Oradea, Fascicula Biologie";journal;"12245119, 18447589";"Universitatea din Oradea";Yes;No;0,139;Q4;6;8;63;392;23;63;0,28;49,00;59,38;0;Romania;Eastern Europe;"Universitatea din Oradea";"2016-2025";"Agronomy and Crop Science (Q4); Biotechnology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4); Molecular Biology (Q4); Physiology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +26258;35223;"Annali di Stomatologia";journal;"18240852, 19711441";"PublyMed srls";Yes;No;0,139;Q4;23;62;61;2078;22;53;0,40;33,52;42,79;0;Italy;Western Europe;"PublyMed srls";"1965-1975, 2012-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +26259;21101090035;"Ars Interpretandi";journal;"17228352, 27049019";"Carocci Editore";No;No;0,139;Q4;4;14;43;760;9;37;0,09;54,29;50,00;0;Italy;Western Europe;"Carocci Editore";"2020-2025";"Law (Q4)";"Social Sciences" +26260;21101180569;"Chinese Journal of Nephrology";journal;"10017097";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,139;Q4;8;110;438;4134;130;437;0,23;37,58;52,61;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2026";"Internal Medicine (Q4); Nephrology (Q4)";"Medicine" +26261;21101020034;"Chinese Journal of Ocular Fundus Diseases";journal;"10051015";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,139;Q4;6;100;436;3663;107;434;0,30;36,63;49,36;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Ophthalmology (Q4)";"Medicine" +26262;21101019773;"Chinese Journal of Radiological Medicine and Protection";journal;"02545098";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,139;Q4;9;128;277;3607;60;276;0,12;28,18;42,23;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2022, 2024-2026";"Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine" +26263;12642;"Clinica e Investigacion en Ginecologia y Obstetricia";journal;"0210573X, 15789349";"Elsevier Espana S.L.U";No;No;0,139;Q4;8;38;162;1286;36;159;0,21;33,84;51,96;0;Spain;Western Europe;"Elsevier Espana S.L.U";"1976-2026";"Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)";"Medicine" +26264;20542;"Corrosion Management";trade journal;"13555243";"Square One Advertising and Design Limited";No;No;0,139;Q4;6;22;81;199;7;70;0,10;9,05;28,00;0;United Kingdom;Western Europe;"Square One Advertising and Design Limited";"1994-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Materials Science" +26265;21100201063;"Defence S and T Technical Bulletin";journal;"19856571, 30091896";"Science and Technology Research Institute for Defence (STRIDE)";Yes;No;0,139;Q4;14;18;68;772;27;68;0,41;42,89;27,87;0;Malaysia;Asiatic Region;"Science and Technology Research Institute for Defence (STRIDE)";"2008-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +26266;13294;"Dela";book series;"18541089, 03540596";"University of Ljubljana Press";Yes;Yes;0,139;Q4;12;3;30;372;12;30;0,56;124,00;40,00;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"1992-1993, 1995, 1997, 2006-2025";"Geography, Planning and Development (Q4)";"Social Sciences" +26267;21101183489;"Epidemiology and Health System Journal";journal;"29807891";"Shahrekord University of Medical Sciences";Yes;Yes;0,139;Q4;3;24;64;852;24;57;0,38;35,50;44,14;0;Iran;Middle East;"Shahrekord University of Medical Sciences";"2023-2025";"Epidemiology (Q4)";"Medicine" +26268;21101098811;"Extreme Medicine";journal;"27132757, 27132765";"Centre for Strategic Planning of the Federal Medical and Biological Agency";No;No;0,139;Q4;5;65;182;1861;58;182;0,33;28,63;52,20;0;Russian Federation;Eastern Europe;"Centre for Strategic Planning of the Federal Medical and Biological Agency";"2019-2025";"Genetics (clinical) (Q4); Immunology and Allergy (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4); Orthopedics and Sports Medicine (Q4); Public Health, Environmental and Occupational Health (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Toxicology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +26269;21101074774;"Folia Amazonica";journal;"24101184, 10185674";"Institute of Investigations of The Peruvian Amazon - IIAP";No;Yes;0,139;Q4;4;10;60;477;21;60;0,26;47,70;17,19;0;Peru;Latin America;"Institute of Investigations of The Peruvian Amazon - IIAP";"2019-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +26270;21101196037;"Health Technology Assessment in Action";journal;"26453835";"Tehran University of Medical Sciences";Yes;Yes;0,139;Q4;4;31;74;979;32;69;0,44;31,58;31,58;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2025";"Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine" +26271;21101199902;"Heart Science Journal";journal;"27219984, 27219976";"Brawijaya University";No;No;0,139;Q4;3;84;121;2222;41;108;0,37;26,45;35,42;0;Indonesia;Asiatic Region;"Brawijaya University";"2020-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +26272;25864;"Heterocycles";journal;"03855414, 18810942";"Japan Institute of Heterocyclic Chemistry";No;No;0,139;Q4;71;0;84;0;50;83;0,00;0,00;0,00;0;Japan;Asiatic Region;"Japan Institute of Heterocyclic Chemistry";"1981, 1983-2022";"Analytical Chemistry (Q4); Organic Chemistry (Q4); Pharmacology (Q4)";"Chemistry; Pharmacology, Toxicology and Pharmaceutics" +26273;21101297187;"Indonesian Journal of Tropical and Infectious Disease";journal;"23560991, 20851103";"Airlangga University";Yes;No;0,139;Q4;4;24;72;948;28;72;0,42;39,50;55,00;0;Indonesia;Asiatic Region;"Airlangga University";"2021-2025";"Biochemistry (Q4); Epidemiology (Q4); Microbiology (Q4); Molecular Biology (Q4); Pharmacology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +26274;21101019366;"Interactive Entertainment Law Review";journal;"25153870, 25153889";"Edward Elgar Publishing Ltd.";No;No;0,139;Q4;6;16;31;373;16;26;0,57;23,31;47,06;1;United Kingdom;Western Europe;"Edward Elgar Publishing Ltd.";"2018-2025";"Law (Q4)";"Social Sciences" +26275;19900188035;"International Journal of Conflict and Violence";journal;"18641385";"Universitaet Bielefeld";Yes;Yes;0,139;Q4;30;0;21;0;21;20;0,88;0,00;0,00;0;Germany;Western Europe;"Universitaet Bielefeld";"2010-2023";"Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26276;14411;"International Journal of Information Technology and Management";journal;"14614111, 17415179";"Inderscience Publishers";No;No;0,139;Q4;21;20;70;393;43;70;0,76;19,65;47,06;0;United Kingdom;Western Europe;"Inderscience Publishers";"2002-2025";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Hardware and Architecture (Q4); Software (Q4)";"Computer Science" +26277;21101026989;"International Real Estate Review";journal;"21548919";"Global Social Science Institute";No;No;0,139;Q4;20;11;63;460;22;61;0,24;41,82;33,33;0;United States;Northern America;"Global Social Science Institute";"1998-2025";"Accounting (Q4); Demography (Q4); Economics and Econometrics (Q4); Finance (Q4); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +26278;21101141648;"Iranian Journal of Health and Environment";journal;"20083718, 20082029";"Tehran University of Medical Sciences";Yes;Yes;0,139;Q4;7;48;144;1797;67;144;0,49;37,44;38,37;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2025";"Environmental Science (miscellaneous) (Q4); Health Policy (Q4); Immunology and Allergy (Q4); Infectious Diseases (Q4)";"Environmental Science; Medicine" +26279;21101266527;"Iranian Journal of Orthodontics";journal;"17355087, 23833491";"Iranian Association of Orthodontists";Yes;Yes;0,139;Q4;3;24;72;663;17;72;0,23;27,63;37,97;0;Iran;Middle East;"Iranian Association of Orthodontists";"2020-2025";"Orthodontics (Q4)";"Dentistry" +26280;17700156710;"Japan Journal of Food Engineering";journal;"13457942";"Japan Society for Food Engineering";No;No;0,139;Q4;18;14;38;421;10;35;0,30;30,07;17,14;0;Japan;Asiatic Region;"Japan Society for Food Engineering";"2000-2025";"Food Science (Q4); Industrial and Manufacturing Engineering (Q4)";"Agricultural and Biological Sciences; Engineering" +26281;22976;"Journal de Pharmacie Clinique";journal;"02911981, 19524064";"John Libbey";No;No;0,139;Q4;16;29;77;364;22;64;0,37;12,55;62,35;0;France;Western Europe;"John Libbey";"1982-2025";"Pharmacology (medical) (Q4)";"Medicine" +26282;19868;"Journal de Traumatologie du Sport";journal;"17730465, 0762915X";"Elsevier Masson s.r.l.";No;No;0,139;Q4;11;85;162;2249;51;145;0,34;26,46;25,48;0;France;Western Europe;"Elsevier Masson s.r.l.";"2003-2026";"Orthopedics and Sports Medicine (Q4); Rehabilitation (Q4); Sports Science (Q4); Surgery (Q4)";"Health Professions; Medicine" +26283;20314;"Journal of Institutional and Theoretical Economics";journal;"09324569, 16140559";"Mohr Siebeck GmbH and Co. KG";No;No;0,139;Q4;43;31;85;835;28;61;0,30;26,94;21,43;0;Germany;Western Europe;"Mohr Siebeck GmbH and Co. KG";"1992-1993, 1996-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +26284;21100863063;"Journal of Korean Ophthalmological Society";journal;"20929374, 03786471";"Korean Ophthalmological Society (KOS)";No;No;0,139;Q4;6;65;430;1284;49;430;0,10;19,75;39,36;0;South Korea;Asiatic Region;"Korean Ophthalmological Society (KOS)";"2018-2025";"Ophthalmology (Q4)";"Medicine" +26285;130011;"Journal of Medical Sciences (Taiwan)";journal;"10114564";"Wolters Kluwer Medknow Publications";Yes;Yes;0,139;Q4;16;45;173;833;34;158;0,22;18,51;42,07;0;Taiwan;Asiatic Region;"Wolters Kluwer Medknow Publications";"1963, 2005-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +26286;19700174963;"Journal of Nepal Paediatric Society";journal;"19907974, 19907982";"Nepal Paediatric Society (NEPAS)";Yes;Yes;0,139;Q4;13;38;161;667;32;161;0,13;17,55;47,46;0;Nepal;Asiatic Region;"Nepal Paediatric Society (NEPAS)";"2008-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26287;21100877177;"Journal of the National Academy of Forensic Engineers";journal;"23793244, 23793252";"National Academy of Forensic Engineers";No;No;0,139;Q4;3;12;40;272;6;40;0,09;22,67;8,00;0;United States;Northern America;"National Academy of Forensic Engineers";"2016-2025";"Automotive Engineering (Q4); Building and Construction (Q4); Civil and Structural Engineering (Q4); Law (Q4); Pathology and Forensic Medicine (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering; Medicine; Social Sciences" +26288;10600153341;"Journal of Tropical Agriculture";journal;"0971636X, 09735399";"Kerala Agricultural University";Yes;No;0,139;Q4;22;45;126;1130;50;124;0,35;25,11;61,82;0;India;Asiatic Region;"Kerala Agricultural University";"2007-2011, 2013-2025";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +26289;28933;"Judicature";journal;"00225800";"American Judicature Society";No;No;0,139;Q4;22;6;99;104;28;78;0,35;17,33;66,67;0;United States;Northern America;"American Judicature Society";"1990, 1996-2025";"Law (Q4)";"Social Sciences" +26290;21100899292;"List Forum fur Wirtschafts- und Finanzpolitik";journal;"09370862, 23643943";"Springer Gabler";No;No;0,139;Q4;6;0;49;0;15;45;0,33;0,00;0,00;0;Germany;Western Europe;"Springer Gabler";"2005-2024";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +26291;21101337824;"Managing Global Transitions";journal;"18546935";"University of Primorska";Yes;No;0,139;Q4;2;16;16;951;11;16;0,69;59,44;36,36;0;Slovenia;Eastern Europe;"University of Primorska";"2024-2025";"Business and International Management (Q4); Organizational Behavior and Human Resource Management (Q4); Sociology and Political Science (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +26292;25016;"Mercian Geologist";journal;"0025990X";"East Midlands Geological Society";No;No;0,139;Q4;11;11;39;231;5;27;0,08;21,00;21,43;0;United Kingdom;Western Europe;"East Midlands Geological Society";"1979-1989, 1991-2001, 2003, 2005-2006, 2010-2025";"Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +26293;19900193603;"Nano Biomedicine";journal;"21854734, 18835198";"Nano Biomedical Society";No;No;0,139;Q4;12;11;34;339;9;34;0,30;30,82;30,19;0;Japan;Asiatic Region;"Nano Biomedical Society";"2009-2016, 2018-2026";"Biomedical Engineering (Q4)";"Engineering" +26294;21100205764;"Nigerian Journal of Parasitology";journal;"11174145";"";No;No;0,139;Q4;7;47;146;1369;40;144;0,25;29,13;38,32;0;South Africa;Africa;"";"2010-2011, 2017-2025";"Infectious Diseases (Q4); Parasitology (Q4)";"Immunology and Microbiology; Medicine" +26295;21101138045;"NTP Technical Report on the Toxicology and Carcinogenesis Studies Series";book series;"23788925, 23788917";"United States National Toxicology Program";No;No;0,139;Q4;9;0;3;0;1;3;0,33;0,00;0,00;0;United States;Northern America;"United States National Toxicology Program";"1995-2019, 2021, 2023";"Cancer Research (Q4); Health, Toxicology and Mutagenesis (Q4); Oncology (Q4); Toxicology (Q4)";"Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine; Pharmacology, Toxicology and Pharmaceutics" +26296;145190;"Online Brazilian Journal of Nursing";journal;"16764285";"Universidade Federal Fluminense";Yes;Yes;0,139;Q4;11;69;195;1755;43;185;0,19;25,43;76,98;0;Brazil;Latin America;"Universidade Federal Fluminense";"2004-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +26297;21101254073;"Pediatricheskaya Farmakologiya";journal;"25003089, 17275776";"Publishing House of the Union of Pediatricians";Yes;Yes;0,139;Q4;7;77;180;2642;63;167;0,35;34,31;70,08;0;Russian Federation;Eastern Europe;"Publishing House of the Union of Pediatricians";"2020-2026";"Immunology (Q4); Medicine (miscellaneous) (Q4); Pediatrics, Perinatology and Child Health (Q4); Pharmacology (medical) (Q4)";"Immunology and Microbiology; Medicine" +26298;21101259015;"Pediomaternal Nursing Journal";journal;"26564629, 23551577";"Airlangga University";Yes;Yes;0,139;Q4;3;19;43;638;22;42;0,59;33,58;64,86;0;Indonesia;Asiatic Region;"Airlangga University";"2020-2025";"Nursing (miscellaneous) (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine; Nursing" +26299;23461;"Politique Africaine";journal;"02447827, 22645047";"Editions Karthala";No;No;0,139;Q4;7;0;80;0;40;76;0,33;0,00;0,00;0;France;Western Europe;"Editions Karthala";"1984-1985, 1991, 1997, 2019-2024";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26300;21101053589;"Problems of the Regional Energetics";journal;"18570070";"Institute of Power Engineering";Yes;Yes;0,139;Q4;7;48;150;1527;61;150;0,42;31,81;22,50;0;Moldova;Eastern Europe;"Institute of Power Engineering";"2019-2026";"Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4); Fuel Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +26301;21100886538;"Quadernos de Psicologia";journal;"02113481, 20144520";"Universitat Autonoma de Barcelona";Yes;Yes;0,139;Q4;8;36;105;1541;29;104;0,25;42,81;60,00;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2018-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +26302;21101257223;"RAICS - IEEE Recent Advances in Intelligent Computational Systems";journal;"27695565";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,139;Q4;4;0;121;0;108;119;0,89;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Control and Optimization (Q4); Information Systems (Q4); Instrumentation (Q4); Modeling and Simulation (Q4)";"Computer Science; Mathematics; Physics and Astronomy" +26303;21827;"Revista Colombiana de Ciencias Quimico-Farmaceuticas (Colombia)";journal;"00347418, 19096356";"Universidad Nacional de Colombia";Yes;No;0,139;Q4;9;41;173;1884;61;173;0,28;45,95;52,42;0;Colombia;Latin America;"Universidad Nacional de Colombia";"1974, 1980, 2019-2026";"Pharmacology (medical) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +26304;21100784205;"Revista de la Educacion Superior";journal;"23959037, 01852760";"Asociacion Nacional de Universidad e Instituciones de Educacion Superior";Yes;Yes;0,139;Q4;19;24;89;768;32;89;0,28;32,00;54,29;0;Mexico;Latin America;"Asociacion Nacional de Universidad e Instituciones de Educacion Superior";"2006, 2014-2025";"Education (Q4)";"Social Sciences" +26305;21101196447;"Revista Oficial del Poder Judicial";journal;"19976682, 26639130";"Poder Judicial del Peru";Yes;Yes;0,139;Q4;3;29;83;1143;16;76;0,26;39,41;45,00;0;Peru;Latin America;"Poder Judicial del Peru";"2020-2025";"Law (Q4)";"Social Sciences" +26306;21101314568;"Technology Audit and Production Reserves";journal;"27065448, 26649969";"Technology Center";No;No;0,139;Q4;10;228;500;5760;275;500;0,60;25,26;43,63;0;Ukraine;Eastern Europe;"Technology Center";"2020-2025";"Chemical Engineering (miscellaneous) (Q4); Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Chemical Engineering; Computer Science" +26307;21639;"UPB Scientific Bulletin, Series D: Mechanical Engineering";journal;"22863699, 14542358";"Politechnica University of Bucharest";Yes;No;0,139;Q4;22;90;231;1826;90;231;0,38;20,29;29,50;0;Romania;Eastern Europe;"Politechnica University of Bucharest";"1999-2025";"Mechanical Engineering (Q4)";"Engineering" +26308;21101214479;"Energy Proceedings";conference and proceedings;"20042965";"Scanditale AB";No;No;0,139;-;5;226;650;3482;130;630;0,20;15,41;26,20;1;Sweden;Western Europe;"Scanditale AB";"2019-2025";"Energy Engineering and Power Technology; Energy (miscellaneous); Fuel Technology; Renewable Energy, Sustainability and the Environment";"Energy" +26309;21101222663;"National Conference with International Participation, TELECOM";conference and proceedings;"28375246, 28375238";"Institute of Electrical and Electronics Engineers";No;No;0,139;-;2;80;62;1150;37;61;0,60;14,38;30,66;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2023-2024";"Computer Networks and Communications; Computer Science Applications; Human-Computer Interaction; Information Systems and Management";"Computer Science; Decision Sciences" +26310;21100415037;"Proceedings of the Annual Precise Time and Time Interval Systems and Applications Meeting, PTTI";conference and proceedings;"23332085";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,139;-;11;4;108;64;24;105;0,29;16,00;50,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2014, 2016-2025";"Chemical Health and Safety; Computer Science Applications; Control and Systems Engineering; Electrical and Electronic Engineering; Mechanical Engineering; Safety Research; Safety, Risk, Reliability and Quality";"Chemical Engineering; Computer Science; Engineering; Social Sciences" +26311;17658;"American Imago";journal;"10857931, 0065860X";"Johns Hopkins University Press";No;No;0,138;Q2;20;22;94;956;17;76;0,18;43,45;43,48;0;United States;Northern America;"Johns Hopkins University Press";"1946-1953, 1964-1980, 1996-2025";"Literature and Literary Theory (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Music (Q3); Experimental and Cognitive Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +26312;21100943967;"Anglica";journal;"08605734";"University of Warsaw";Yes;Yes;0,138;Q2;4;17;71;701;29;67;0,42;41,24;78,57;0;Poland;Eastern Europe;"University of Warsaw";"2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26313;16400154729;"Bronte Studies";journal;"17458226, 14748932";"Maney Publishing";No;No;0,138;Q2;8;35;80;815;14;67;0,21;23,29;75,00;0;United Kingdom;Western Europe;"Maney Publishing";"2002-2026";"Literature and Literary Theory (Q2)";"Arts and Humanities" +26314;21100324366;"Culture et Musees";book series;"17662923, 21114528";"Avignon University";Yes;No;0,138;Q2;5;37;103;720;6;89;0,05;19,46;55,26;0;France;Western Europe;"Avignon University";"2011, 2013-2025";"Visual Arts and Performing Arts (Q2); Conservation (Q3); Cultural Studies (Q3); Museology (Q3)";"Arts and Humanities; Social Sciences" +26315;5600153254;"Dirasat: Human and Social Sciences";journal;"10263721, 26636190";"University of Jordan,Deanship of Scientific Research";No;No;0,138;Q2;10;333;970;10591;254;969;0,25;31,80;31,64;0;Jordan;Middle East;"University of Jordan,Deanship of Scientific Research";"2007-2026";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Health (social science) (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26316;21101028201;"Divergencia";journal;"07192398";"Taller de Historia Politica O.C.F.";No;Yes;0,138;Q2;4;22;47;908;12;45;0,22;41,27;11,76;0;Chile;Latin America;"Taller de Historia Politica O.C.F.";"2019-2025";"History (Q2); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26317;21100890301;"Folklor/Edebiyat";journal;"13007491, 27916057";"Cyprus International University";Yes;No;0,138;Q2;5;58;203;1997;24;202;0,14;34,43;54,10;0;Cyprus;Western Europe;"Cyprus International University";"2018-2026";"History (Q2); Anthropology (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26318;5700178130;"German History";journal;"02663554, 1477089X";"Oxford University Press";No;No;0,138;Q2;26;23;78;2780;29;73;0,33;120,87;36,00;1;United Kingdom;Western Europe;"Oxford University Press";"1984-1994, 1996-2025";"History (Q2)";"Arts and Humanities" +26319;21100225018;"Ilha do Desterro";journal;"01014846, 21758026";"Universidade Federal de Santa Catarina";Yes;Yes;0,138;Q2;12;55;123;1920;21;119;0,18;34,91;73,91;0;Brazil;Latin America;"Universidade Federal de Santa Catarina";"2012-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +26320;21101274395;"Literature, Critique, and Empire Today";journal;"30333962, 30333970";"SAGE Publications Ltd";No;No;0,138;Q2;23;43;169;4754;54;162;0,28;110,56;65,96;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2024-2026";"Literature and Literary Theory (Q2)";"Arts and Humanities" +26321;21100877342;"Problemi";journal;"05552419";"Society for Theoretical Psychoanalysis";No;No;0,138;Q2;5;48;121;959;13;47;0,09;19,98;15,38;0;Slovenia;Eastern Europe;"Society for Theoretical Psychoanalysis";"2017-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Philosophy (Q3); Applied Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +26322;21100936536;"Rassegna Iberistica";journal;"03924777, 20376588";"Edizioni Ca' Foscari";Yes;Yes;0,138;Q2;3;13;94;372;9;94;0,07;28,62;41,67;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2018-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26323;21100464540;"Review of Croatian History";journal;"18454380, 18489095";"Hrvatski Institut za Povijest";No;No;0,138;Q2;4;10;38;418;7;36;0,25;41,80;33,33;0;Croatia;Eastern Europe;"Hrvatski Institut za Povijest";"2015-2025";"History (Q2)";"Arts and Humanities" +26324;21100936795;"Revista de Historia Moderna";journal;"02125862, 19899823";"Universidad de Alicante";Yes;Yes;0,138;Q2;4;11;48;671;13;46;0,32;61,00;33,33;0;Spain;Western Europe;"Universidad de Alicante";"2018-2025";"History (Q2); Religious Studies (Q2)";"Arts and Humanities" +26325;21101085528;"Suvannabhumi: Multidisciplinary Journal of Southeast Asian Studies";journal;"27997839, 2092738X";"Busan University of Foreign Studies";No;No;0,138;Q2;4;20;64;885;32;59;0,52;44,25;45,16;0;South Korea;Asiatic Region;"Busan University of Foreign Studies";"2019-2025";"History (Q2); Literature and Literary Theory (Q2); Anthropology (Q3); Archeology (Q3); Archeology (arts and humanities) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26326;16000154784;"Tijdschrift Voor Geschiedenis";journal;"00407518";"Koninklijke Van Gorcum BV (Royal Van Gorcum BV)";No;No;0,138;Q2;9;22;80;1325;8;69;0,07;60,23;30,43;0;Netherlands;Western Europe;"Koninklijke Van Gorcum BV (Royal Van Gorcum BV)";"1983, 1987-1988, 1999, 2001-2025";"History (Q2)";"Arts and Humanities" +26327;21100286804;"Avant";journal;"20827598, 20826710";"";Yes;Yes;0,138;Q3;14;22;65;783;15;63;0,12;35,59;37,93;0;Poland;Eastern Europe;"";"2010-2025";"Arts and Humanities (miscellaneous) (Q3); Cognitive Neuroscience (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Neuroscience; Social Sciences" +26328;21101074854;"Brazilian English Language Teaching Journal";journal;"21783640";"Editora Universitaria da PUCRS";Yes;Yes;0,138;Q3;4;0;13;0;9;13;0,75;0,00;0,00;0;Brazil;Latin America;"Editora Universitaria da PUCRS";"2019-2023";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +26329;145411;"Centro Journal";journal;"21632960, 15386279";"Hunter College Center for Puerto Rican Studies";No;Yes;0,138;Q3;19;15;83;717;36;79;0,36;47,80;55,00;0;United States;Northern America;"Hunter College Center for Puerto Rican Studies";"2005-2025";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26330;32878;"Collegium Antropologicum";journal;"03506134, 18489486";"Croatian Anthropological Society";Yes;No;0,138;Q3;54;0;108;0;29;107;0,21;0,00;0,00;0;Croatia;Eastern Europe;"Croatian Anthropological Society";"1978-1985, 1987, 1993, 1996-2024";"Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine; Social Sciences" +26331;21100992225;"Cuadernos Electronicos de Filosofia del Derecho";journal;"11389877";"University of Valencia, Human Rights Institute.";Yes;Yes;0,138;Q3;4;5;145;189;31;144;0,23;37,80;25,00;0;Spain;Western Europe;"University of Valencia, Human Rights Institute.";"2019-2025";"Philosophy (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +26332;21101125526;"Docomomo Journal";journal;"27731634, 13803204";"Docomomo International";Yes;No;0,138;Q3;4;26;86;584;20;74;0,23;22,46;64,86;0;Netherlands;Western Europe;"Docomomo International";"2010, 2019-2025";"Architecture (Q3); Urban Studies (Q4)";"Engineering; Social Sciences" +26333;22582;"Earth Sciences History";journal;"0736623X, 19446187";"History of the Earth Sciences Society";No;No;0,138;Q3;12;15;75;1206;17;62;0,19;80,40;20,00;0;United States;Northern America;"History of the Earth Sciences Society";"1983, 1985, 1988, 1991, 1994, 1996-2025";"History and Philosophy of Science (Q3); Earth and Planetary Sciences (miscellaneous) (Q4)";"Arts and Humanities; Earth and Planetary Sciences" +26334;21100937582;"Economia y Politica";journal;"07194714, 07194803";"Universidad Adolfo Ibanez";Yes;Yes;0,138;Q3;5;8;30;467;7;30;0,05;58,38;22,22;0;Chile;Latin America;"Universidad Adolfo Ibanez";"2019-2025";"Cultural Studies (Q3); Economics and Econometrics (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +26335;33154;"Journal of Architectural and Planning Research";journal;"07380895";"Locke Science Publishing Company Inc.";No;No;0,138;Q3;36;0;6;0;2;6;0,00;0,00;0,00;0;United States;Northern America;"Locke Science Publishing Company Inc.";"1984-2019, 2022";"Architecture (Q3); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Engineering; Environmental Science; Social Sciences" +26336;93217;"Korean Journal of Medical History";journal;"1225505X, 20935609";"Korean Society for the History of Medicine";Yes;No;0,138;Q3;9;19;67;693;18;67;0,28;36,47;46,67;0;South Korea;Asiatic Region;"Korean Society for the History of Medicine";"1992-1995, 1998-2025";"History and Philosophy of Science (Q3); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +26337;21100866742;"Kritike";journal;"19087330";"University of Santo Tomas - Department of Philosophy";Yes;Yes;0,138;Q3;5;33;56;949;14;56;0,20;28,76;20,83;0;Philippines;Asiatic Region;"University of Santo Tomas - Department of Philosophy";"2018-2025";"Philosophy (Q3)";"Arts and Humanities" +26338;11200153522;"Law, Culture and the Humanities";journal;"17439752, 17438721";"SAGE Publications Ltd";No;No;0,138;Q3;20;65;132;3084;74;100;0,43;47,45;55,84;1;United Kingdom;Western Europe;"SAGE Publications Ltd";"2005-2026";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +26339;21100905998;"Middle Kingdom Studies";book series;"25150944";"Golden House Publications";No;No;0,138;Q3;4;0;55;0;6;27;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Golden House Publications";"2018-2024";"Anthropology (Q3); Archeology (Q3); Arts and Humanities (miscellaneous) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26340;21100921059;"Prometeica";journal;"18529488";"CONICET - Emiliano Aldegani";Yes;Yes;0,138;Q3;4;70;239;2668;47;221;0,21;38,11;31,00;0;Argentina;Latin America;"CONICET - Emiliano Aldegani";"2019-2026";"History and Philosophy of Science (Q3); Philosophy (Q3)";"Arts and Humanities" +26341;19700200928;"Research in Language";journal;"20834616, 17317533";"Lodz University Press";Yes;Yes;0,138;Q3;18;0;56;0;25;56;0,33;0,00;0,00;0;Poland;Eastern Europe;"Lodz University Press";"2007, 2009-2024";"Linguistics and Language (Q3)";"Social Sciences" +26342;21101023107;"Reti Saperi Linguaggi";journal;"22797777, 18268889";"Societa Editrice Il Mulino";No;No;0,138;Q3;6;11;75;436;20;74;0,31;39,64;58,82;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2019-2025";"Linguistics and Language (Q3); Behavioral Neuroscience (Q4); Communication (Q4); Developmental Biology (Q4); Experimental and Cognitive Psychology (Q4)";"Biochemistry, Genetics and Molecular Biology; Neuroscience; Psychology; Social Sciences" +26343;21101053554;"Studia Heideggeriana";journal;"22508740, 22508767";"Sociedad Iberoamericana de Estudios Heideggerianos";Yes;Yes;0,138;Q3;3;9;40;308;11;40;0,33;34,22;11,11;0;Spain;Western Europe;"Sociedad Iberoamericana de Estudios Heideggerianos";"2019, 2021-2025";"Philosophy (Q3)";"Arts and Humanities" +26344;5800159116;"Studies in African Linguistics";journal;"00393533, 2154428X";"University of Florida Press";Yes;Yes;0,138;Q3;7;5;60;667;25;58;0,42;133,40;37,50;0;United States;Northern America;"University of Florida Press";"2011-2025";"Linguistics and Language (Q3)";"Social Sciences" +26345;21100920648;"Taiwan International ESP Journal";journal;"20797761";"Taiwan English for Specific Purposes Association";No;No;0,138;Q3;3;5;18;205;6;18;0,46;41,00;58,33;0;Taiwan;Asiatic Region;"Taiwan English for Specific Purposes Association";"2019-2025";"Linguistics and Language (Q3); Communication (Q4); Education (Q4)";"Social Sciences" +26346;21101220032;"Advances in Family Practice Nursing";book series;"2589420X, 25894722";"Elsevier B.V.";No;No;0,138;Q4;3;18;45;543;17;42;0,38;30,17;90,32;0;Netherlands;Western Europe;"Elsevier B.V.";"2019-2021, 2023-2025";"Advanced and Specialized Nursing (Q4)";"Nursing" +26347;21101044883;"Agricultural Research Journal";journal;"2395146X, 23951435";"Punjab Agricultural University";No;No;0,138;Q4;9;45;405;1351;100;358;0,19;30,02;33,33;0;India;Asiatic Region;"Punjab Agricultural University";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Food Science (Q4); Horticulture (Q4)";"Agricultural and Biological Sciences" +26348;21101363384;"AMPLITUDO: Journal of Science and Technology Innovation";journal;"28306171, 28306902";"Balai Publikasi Indonesia";No;No;0,138;Q4;3;22;58;575;25;58;0,57;26,14;35,14;0;Indonesia;Asiatic Region;"Balai Publikasi Indonesia";"2022-2025";"Education (Q4); Nuclear and High Energy Physics (Q4); Radiation (Q4)";"Physics and Astronomy; Social Sciences" +26349;21100905494;"Analytical Science and Technology";journal;"12250163, 22888985";"Korea Society of Analytical Science";No;No;0,138;Q4;6;33;99;1375;50;99;0,62;41,67;42,15;0;South Korea;Asiatic Region;"Korea Society of Analytical Science";"2019-2025";"Agronomy and Crop Science (Q4); Analytical Chemistry (Q4); Environmental Chemistry (Q4); Food Science (Q4); Materials Chemistry (Q4); Pharmacology (Q4)";"Agricultural and Biological Sciences; Chemistry; Environmental Science; Materials Science; Pharmacology, Toxicology and Pharmaceutics" +26350;27465;"Annales Universitatis Mariae Curie-Sklodowska. Sectio B";journal;"01371983";"Wydawnictwo Uniwersytetu Marii Curie-Sklodowskiej w Lublinie";Yes;No;0,138;Q4;10;9;26;407;12;26;0,38;45,22;52,94;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Marii Curie-Sklodowskiej w Lublinie";"1975, 1977, 1979-1980, 1982, 1986, 1991, 1994-2000, 2002-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Water Science and Technology (Q4)";"Earth and Planetary Sciences; Environmental Science" +26351;21101393102;"Applied Human Factors and Ergonomics International";book series;"27710718";"";No;No;0,138;Q4;12;1211;2889;21513;1100;3;0,38;17,76;0,00;4;United States;Northern America;"";"2025-2026";"Artificial Intelligence (Q4); Engineering (miscellaneous) (Q4); Human-Computer Interaction (Q4); Management Science and Operations Research (Q4); Safety, Risk, Reliability and Quality (Q4)";"Computer Science; Decision Sciences; Engineering" +26352;4100151601;"Arab World Geographer";journal;"14806800";"University of Akron";No;No;0,138;Q4;14;3;56;110;27;56;0,47;36,67;16,67;0;United States;Northern America;"University of Akron";"2001, 2005-2014, 2016-2025";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +26353;21101201500;"Archivos Peruanos de Cardiologia y Cirugia Cardiovascular";journal;"27087212";"National Cardiovascular Institute - INCOR";Yes;Yes;0,138;Q4;5;44;108;913;38;103;0,36;20,75;30,82;0;Peru;Latin America;"National Cardiovascular Institute - INCOR";"2020-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +26354;22703;"Asian Journal of Chemistry";journal;"09707077";"Asian Publication Corporation";Yes;No;0,138;Q4;46;372;1232;16033;546;1232;0,49;43,10;36,17;0;India;Asiatic Region;"Asian Publication Corporation";"1996-2026";"Chemistry (miscellaneous) (Q4)";"Chemistry" +26355;21101092543;"Australian Journal of Asian Law";journal;"18394191, 14430738";"Melbourne Law School";No;No;0,138;Q4;9;22;54;1496;28;54;0,46;68,00;40,63;0;Australia;Pacific Region;"Melbourne Law School";"2019-2020, 2022-2025";"Law (Q4)";"Social Sciences" +26356;21101295905;"AUT Journal of Mechanical Engineering";journal;"25882945, 25882937";"Amirkabir University of Technology";No;No;0,138;Q4;6;25;85;826;32;85;0,20;33,04;17,24;0;Iran;Middle East;"Amirkabir University of Technology";"2021-2026";"Computational Mechanics (Q4); Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +26357;21101278530;"Berkala Ilmu Kesehatan Kulit dan Kelamin";journal;"25494082, 19784279";"Airlangga University";Yes;Yes;0,138;Q4;5;35;108;873;37;108;0,29;24,94;58,67;0;Indonesia;Asiatic Region;"Airlangga University";"2021-2025";"Dermatology (Q4); Infectious Diseases (Q4)";"Medicine" +26358;19900193610;"Boletin de Malariologia y Salud Ambiental";journal;"16904648";"Instituto de Altos Estudios de Salud Publica";Yes;No;0,138;Q4;12;0;224;0;42;220;0,10;0,00;0,00;0;Venezuela;Latin America;"Instituto de Altos Estudios de Salud Publica";"2010-2023";"Infectious Diseases (Q4); Parasitology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Immunology and Microbiology; Medicine" +26359;13098;"BSGLg";journal;"07707576, 25070711";"Societe Geographique de Liege";Yes;Yes;0,138;Q4;8;11;67;535;24;65;0,35;48,64;39,13;0;Belgium;Western Europe;"Societe Geographique de Liege";"1979, 1981-1986, 1988-1994, 2012-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +26360;23390;"Chemist";journal;"00093025";"American Institute of Chemists";No;No;0,138;Q4;7;13;32;407;15;30;0,42;31,31;50,00;0;United States;Northern America;"American Institute of Chemists";"1996-1999, 2001-2007, 2012-2018, 2021-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +26361;21101121671;"China Journal of General Surgery";journal;"10056947, 20969252";"Central South University";No;No;0,138;Q4;9;119;562;5239;240;562;0,50;44,03;31,47;0;China;Asiatic Region;"Central South University";"2019-2025";"Surgery (Q4)";"Medicine" +26362;21101175280;"Current Research in Dental Sciences";journal;"28222555";"Ataturk Universitesi";Yes;Yes;0,138;Q4;2;63;149;1879;37;149;0,30;29,83;60,36;0;Turkey;Middle East;"Ataturk Universitesi";"2022-2026";"Dentistry (miscellaneous) (Q4)";"Dentistry" +26363;16023;"Dissent";journal;"00123846";"Foundation for the Study of Independent Social Ideas";No;No;0,138;Q4;26;45;165;40;58;158;0,35;0,89;42,86;0;United States;Northern America;"Foundation for the Study of Independent Social Ideas";"1976-1977, 1979, 1981, 1983, 1986-1988, 1994, 1996-2026";"Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26364;19900191976;"DLSU Business and Economics Review";journal;"01167111, 2243786X";"De la Salle University";No;No;0,138;Q4;16;19;69;820;35;68;0,36;43,16;43,75;0;Philippines;Asiatic Region;"De la Salle University";"2008-2025";"Accounting (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Marketing (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +26365;21101092871;"Drug Evaluation Research";journal;"16746376";"Tianjin Press of Chinese Herbal Medicines";No;No;0,138;Q4;10;346;850;13178;349;850;0,50;38,09;50,71;0;China;Asiatic Region;"Tianjin Press of Chinese Herbal Medicines";"2019-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +26366;21101176854;"Endokrynologia";journal;"16801466, 25240439";"Publishing House Medknyha";No;No;0,138;Q4;4;39;104;1213;57;104;0,67;31,10;67,07;0;Ukraine;Eastern Europe;"Publishing House Medknyha";"2022-2025";"Endocrinology (Q4)";"Biochemistry, Genetics and Molecular Biology" +26367;21101151814;"Energy Environment Efficiency Resources Globalization";journal;"26687003, 24575011";"General Association of the Engineers in Romania (AGIR)";No;No;0,138;Q4;4;34;101;578;22;101;0,21;17,00;26,51;0;Romania;Eastern Europe;"General Association of the Engineers in Romania (AGIR)";"2019-2025";"Energy (miscellaneous) (Q4); Fuel Technology (Q4); Nuclear Energy and Engineering (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +26368;21100820129;"Fruit Growing Research";journal;"23443723, 22860304";"Research Institute for Fruit Growing Pitesti";Yes;Yes;0,138;Q4;4;22;82;602;20;82;0,24;27,36;50,98;0;Romania;Eastern Europe;"Research Institute for Fruit Growing Pitesti";"2012-2024";"Agronomy and Crop Science (Q4); Horticulture (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +26369;19900193866;"Gedrag en Organisatie";journal;"09215077, 18757235";"Amsterdam University Press";No;No;0,138;Q4;15;16;53;843;14;48;0,29;52,69;45,95;0;Netherlands;Western Europe;"Amsterdam University Press";"2008-2025";"Organizational Behavior and Human Resource Management (Q4); Social Psychology (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Psychology" +26370;21101224874;"Indian Journal of Animal Production and Management";journal;"23500182, 09701524";"ACS Publisher";No;No;0,138;Q4;3;38;134;785;30;134;0,24;20,66;21,88;0;India;Asiatic Region;"ACS Publisher";"2020-2026";"Veterinary (miscellaneous) (Q4)";"Veterinary" +26371;21101340491;"Innovative Technologies and Scientific Solutions for Industries";journal;"25229818, 25242296";"Kharkiv National University of Radio Electronics";Yes;No;0,138;Q4;4;55;158;1237;64;158;0,44;22,49;31,82;0;Ukraine;Eastern Europe;"Kharkiv National University of Radio Electronics";"2022-2025";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Computer Science" +26372;21100862487;"International Journal of Language and Culture";journal;"22143157, 22143165";"John Benjamins Publishing Company";No;No;0,138;Q4;12;4;37;240;25;36;0,52;60,00;55,56;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2014-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +26373;21100258629;"International Journal of Science, Mathematics and Technology Learning";journal;"2327915X, 23277971";"Common Ground Research Networks";No;No;0,138;Q4;6;19;49;1040;19;49;0,35;54,74;47,37;0;United States;Northern America;"Common Ground Research Networks";"2012-2025";"Education (Q4); Engineering (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Engineering; Physics and Astronomy; Social Sciences" +26374;21100903765;"Journal of Airport Management";journal;"17501946, 17501938";"Henry Stewart Publications";No;No;0,138;Q4;8;32;103;517;46;90;0,42;16,16;34,15;0;United Kingdom;Western Europe;"Henry Stewart Publications";"2018-2025";"Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Transportation (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +26375;19700181105;"Journal of Babol University of Medical Sciences";journal;"22517170, 15614107";"Babol University of Medical Sciences";Yes;Yes;0,138;Q4;21;85;195;2276;59;195;0,25;26,78;49,08;0;Iran;Middle East;"Babol University of Medical Sciences";"2010-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +26376;21100305268;"Journal of Educational Multimedia and Hypermedia";journal;"19435916, 10558896";"Association for the Advancement of Computing in Education";No;No;0,138;Q4;14;5;14;162;7;14;0,67;32,40;46,67;0;United States;Northern America;"Association for the Advancement of Computing in Education";"2004, 2010, 2013-2023, 2025";"Computer Science Applications (Q4); Education (Q4)";"Computer Science; Social Sciences" +26377;23459;"Journal of Exercise Physiology Online";journal;"10979751";"American Society of Exercise Physiologists";Yes;No;0,138;Q4;32;1;117;34;31;117;0,28;34,00;57,14;0;United States;Northern America;"American Society of Exercise Physiologists";"1999-2025";"Physiology (medical) (Q4)";"Medicine" +26378;21101185954;"Journal of Research and Applications in Mechanical Engineering";journal;"2697424X, 22292152";"Thai Society of Mechanical Engineers (TSME)";No;No;0,138;Q4;5;47;54;1174;23;54;0,43;24,98;17,46;0;Thailand;Asiatic Region;"Thai Society of Mechanical Engineers (TSME)";"2019-2026";"Automotive Engineering (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +26379;21100810660;"Journal of Time Series Econometrics";journal;"19411928, 21946507";"Walter de Gruyter GmbH";No;No;0,138;Q4;7;4;18;261;7;18;0,50;65,25;25,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2016-2026";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +26380;21101390797;"Jurnal Presipitasi";journal;"25500023";"Diponegoro University";No;No;0,138;Q4;3;75;211;3161;72;211;0,31;42,15;44,31;0;Indonesia;Asiatic Region;"Diponegoro University";"2022-2025";"Ecology (Q4); Environmental Engineering (Q4); Environmental Science (miscellaneous) (Q4); Pollution (Q4)";"Environmental Science" +26381;27986;"Juvenile and Family Court Journal";journal;"01617109";"Wiley-Blackwell";No;No;0,138;Q4;24;18;48;811;21;46;0,38;45,06;56,52;0;United States;Northern America;"Wiley-Blackwell";"1953-1954, 1961-1969, 1971, 1977-2026";"Law (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26382;21101037321;"Khyber Medical University Journal";journal;"23052643, 23052651";"Khyber Medical University";Yes;No;0,138;Q4;6;94;159;2126;60;137;0,47;22,62;55,44;0;Pakistan;Asiatic Region;"Khyber Medical University";"2004, 2019-2025";"Dentistry (miscellaneous) (Q4); Health Professions (miscellaneous) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Dentistry; Health Professions; Pharmacology, Toxicology and Pharmaceutics" +26383;14076;"Libres";journal;"10586768";"Nanyang Technological University";Yes;Yes;0,138;Q4;16;5;15;219;10;15;0,67;43,80;62,50;0;Singapore;Asiatic Region;"Nanyang Technological University";"1996-2025";"Library and Information Sciences (Q4)";"Social Sciences" +26384;21100239659;"Maltrattamento e Abuso all'Infanzia";journal;"15914267, 19725140";"FrancoAngeli";No;No;0,138;Q4;13;12;72;587;13;67;0,13;48,92;92,59;0;Italy;Western Europe;"FrancoAngeli";"2000-2005, 2013-2025";"Developmental and Educational Psychology (Q4); Health (social science) (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +26385;21101276719;"Market-Trziste";journal;"18491383";"";Yes;Yes;0,138;Q4;12;22;44;1148;29;38;0,67;52,18;62,16;0;Croatia;Eastern Europe;"";"2016-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Marketing (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +26386;21101251288;"Mathematical Proceedings of the Royal Irish Academy";journal;"20090021, 13937197";"Royal Irish Academy";No;No;0,138;Q4;3;2;20;47;9;20;0,42;23,50;0,00;0;Ireland;Western Europe;"Royal Irish Academy";"2020-2025";"Algebra and Number Theory (Q4); Applied Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)";"Mathematics" +26387;21101176724;"Media Kesehatan Masyarakat Indonesia";journal;"23564067, 02162482";"Fakultas Kesehatan Masyarakat Universitas Hasanuddin";No;No;0,138;Q4;5;36;59;1220;23;59;0,33;33,89;43,64;0;Indonesia;Asiatic Region;"Fakultas Kesehatan Masyarakat Universitas Hasanuddin";"2019-2025";"Epidemiology (Q4); Health Informatics (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +26388;21100778036;"Medical Immunology (Russia)";journal;"2313741X, 15630625";"Russian Association of Allergologists and Clinical Immunologists, St. Petersburg Regional Branch (SPb RAACI)";Yes;Yes;0,138;Q4;14;120;420;4668;142;420;0,32;38,90;65,44;0;Russian Federation;Eastern Europe;"Russian Association of Allergologists and Clinical Immunologists, St. Petersburg Regional Branch (SPb RAACI)";"2015-2026";"Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +26389;21101044782;"Medical Journal of Dr. D.Y. Patil Vidyapeeth";journal;"25898302, 25898310";"Wolters Kluwer Medknow Publications";Yes;Yes;0,138;Q4;14;282;867;4846;197;658;0,23;17,18;47,14;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2018-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26390;21100213100;"Medicine (Spain)";journal;"15788822, 03045412";"Ediciones Doyma, S.L.";Yes;No;0,138;Q4;12;183;670;4074;144;670;0,27;22,26;28,99;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2007-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +26391;21101045046;"Minerva Orthopedics";journal;"27848469, 2784871X";"Edizioni Minerva Medica S.p.A.";No;No;0,138;Q4;8;46;185;1642;63;173;0,45;35,70;26,47;0;Italy;Western Europe;"Edizioni Minerva Medica S.p.A.";"2021-2025";"Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +26392;19700175003;"Open Cardiovascular Medicine Journal";journal;"18741924";"Bentham Science Publishers";Yes;No;0,138;Q4;34;8;17;257;8;17;0,20;32,13;38,71;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2009-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +26393;21100855752;"Open Neuroimaging Journal";journal;"18744400";"Bentham Science Publishers";Yes;No;0,138;Q4;12;13;15;738;10;15;0,77;56,77;51,06;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2016-2018, 2020-2025";"Neurology (clinical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +26394;21100945158;"Opuholi Golovy i Sei";journal;"22221468, 24114634";"ABV-press Publishing House";Yes;Yes;0,138;Q4;6;37;137;851;33;137;0,16;23,00;41,98;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2018-2025";"Cancer Research (Q4); Oncology (Q4); Otorhinolaryngology (Q4); Pharmacology (medical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +26395;21101145678;"Plant Pest Research";journal;"25386123, 23222409";"University of Guilan";Yes;Yes;0,138;Q4;5;26;84;828;18;84;0,16;31,85;23,21;0;Iran;Middle East;"University of Guilan";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Insect Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +26396;21101023685;"Polish Otorhinolaryngology Review";journal;"23007338, 20845308";"Index Copernicus International";No;No;0,138;Q4;4;28;108;753;28;108;0,28;26,89;43,84;0;Poland;Eastern Europe;"Index Copernicus International";"2019-2025";"Otorhinolaryngology (Q4)";"Medicine" +26397;12100155426;"Practice Nurse";trade journal;"09536612";"Medical Education Solutions Ltd";No;No;0,138;Q4;5;35;114;450;4;103;0,06;12,86;91,67;0;United Kingdom;Western Europe;"Medical Education Solutions Ltd";"2007-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +26398;18500157500;"Praxis";journal;"16618157, 16618165";"Hogrefe Publishing GmbH & Co. KG";No;No;0,138;Q4;19;101;337;0;86;292;0,20;0,00;45,82;0;Switzerland;Western Europe;"Hogrefe Publishing GmbH & Co. KG";"1992-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26399;21101077476;"Recherche et Applications en Marketing";journal;"20512821, 07673701";"SAGE Publications Ltd";No;No;0,138;Q4;5;20;71;2121;34;63;0,46;106,05;53,66;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2020-2026";"Marketing (Q4)";"Business, Management and Accounting" +26400;19737;"Rehabilitace a Fyzikalni Lekarstvi";journal;"18054552, 12112658";"Czech Medical Association J.E. Purkyne";No;No;0,138;Q4;12;8;69;318;13;67;0,14;39,75;70,00;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1999-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +26401;18955;"Revista Cientifica de la Facultad de Veterinaria";journal;"25219715, 07982259";"Universidad del Zulia, Facultad de Ciencias Veterinarias";Yes;Yes;0,138;Q4;16;164;449;5622;114;443;0,26;34,28;36,94;0;Venezuela;Latin America;"Universidad del Zulia, Facultad de Ciencias Veterinarias";"1997, 1999-2026";"Animal Science and Zoology (Q4); Food Science (Q4); Immunology and Microbiology (miscellaneous) (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology; Veterinary" +26402;21951;"Revista Mexicana de Anestesiologia";journal;"01851012";"Colegio Mexicano de Anestesiologia A.C.";No;No;0,138;Q4;9;51;165;986;28;136;0,14;19,33;49,08;0;Mexico;Latin America;"Colegio Mexicano de Anestesiologia A.C.";"1984-2026";"Anesthesiology and Pain Medicine (Q4)";"Medicine" +26403;19700174984;"Revista Portuguesa de Imunoalergologia";journal;"08719721";"Sociedade Portuguesa de Alergologia e Imunologia Clinica";Yes;Yes;0,138;Q4;7;24;72;532;13;49;0,17;22,17;71,43;0;Portugal;Western Europe;"Sociedade Portuguesa de Alergologia e Imunologia Clinica";"2009-2025";"Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +26404;29946;"Soins: La Revue de Reference Infirmiere";journal;"00380814";"Elsevier Masson s.r.l.";No;No;0,138;Q4;9;151;460;1789;42;373;0,09;11,85;63,14;4;France;Western Europe;"Elsevier Masson s.r.l.";"1965-1973, 1976-2026";"Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)";"Medicine; Nursing" +26405;29215;"Transactions of the Institute of Indian Geographers";journal;"09709851";"Institute of Indian Geographers";No;No;0,138;Q4;8;22;70;537;21;68;0,27;24,41;28,85;0;India;Asiatic Region;"Institute of Indian Geographers";"1980-2025";"Geography, Planning and Development (Q4); Ocean Engineering (Q4); Water Science and Technology (Q4)";"Engineering; Environmental Science; Social Sciences" +26406;21101390798;"World Sci-Tech R and D";journal;"10066055";"Science Press";No;No;0,138;Q4;6;87;204;1670;65;204;0,36;19,20;48,03;0;China;Asiatic Region;"Science Press";"2020-2025";"Business, Management and Accounting (miscellaneous) (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting" +26407;21100983205;"Eceee Summer Study Proceedings";conference and proceedings;"16537025, 20017960";"European Council for an Energy Efficient Economy";No;No;0,138;-;9;0;281;0;54;270;0,13;0,00;0,00;0;Sweden;Western Europe;"European Council for an Energy Efficient Economy";"2019, 2021-2022, 2024";"Energy Engineering and Power Technology; Industrial and Manufacturing Engineering; Renewable Energy, Sustainability and the Environment";"Energy; Engineering" +26408;21100819033;"International Symposium on Project Approaches in Engineering Education";conference and proceedings;"21831378";"University of Minho";No;No;0,138;-;8;75;176;1391;30;170;0,14;18,55;51,76;0;Portugal;Western Europe;"University of Minho";"2016-2025";"Education; Engineering (miscellaneous); Environmental Engineering; Pollution; Waste Management and Disposal";"Engineering; Environmental Science; Social Sciences" +26409;21101131212;"Proceedings - Ivannikov ISPRAS Open Conference";conference and proceedings;"27679535";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,138;-;5;0;70;0;31;67;0,38;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2021-2024";"Artificial Intelligence; Computational Mathematics; Modeling and Simulation; Software";"Computer Science; Mathematics" +26410;21101023397;"Proceedings of International Conference on Computational Thinking Education";conference and proceedings;"26645661";"The Education University of Hong Kong";No;No;0,138;-;10;42;99;401;26;93;0,10;9,55;42,50;0;Hong Kong;Asiatic Region;"The Education University of Hong Kong";"2017-2025";"Computer Science Applications; Education";"Computer Science; Social Sciences" +26411;40067;"Proceedings of SPIE - The International Society for Optical Engineering";conference and proceedings;"1996756X, 0277786X";"SPIE";Yes;No;0,138;-;205;20667;60287;292207;14799;59074;0,25;14,14;30,04;0;United States;Northern America;"SPIE";"1963-2026";"Applied Mathematics; Computer Science Applications; Condensed Matter Physics; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Instrumentation";"Computer Science; Engineering; Materials Science; Mathematics; Physics and Astronomy" +26412;21100228125;"Proceedings of the Biennial Baltic Electronics Conference, BEC";conference and proceedings;"17363705";"IEEE Computer Society";No;No;0,138;-;13;0;64;0;33;62;0,53;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012, 2014, 2016, 2018, 2020, 2022, 2024";"Electrical and Electronic Engineering";"Engineering" +26413;21101064976;"Acta Universitatis Carolinae Studia Territorialia";journal;"12134449, 23363231";"Karolinum - Nakladatelstvi Univerzity Karlovy";Yes;Yes;0,137;Q2;3;4;26;304;7;20;0,24;76,00;66,67;0;Czech Republic;Eastern Europe;"Karolinum - Nakladatelstvi Univerzity Karlovy";"2019, 2021-2025";"History (Q2); Cultural Studies (Q3); Geography, Planning and Development (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26414;21100793180;"Annali di Studi Religiosi";book series;"15925927, 22843892";"Fondazione Bruno Kessler";Yes;No;0,137;Q2;3;32;69;876;14;51;0,23;27,38;29,17;0;Italy;Western Europe;"Fondazione Bruno Kessler";"2011-2016, 2019-2025";"Religious Studies (Q2)";"Arts and Humanities" +26415;21100857443;"ArchiDOCT";journal;"23090103";"Scholastica";No;No;0,137;Q2;4;0;39;0;6;34;0,20;0,00;0,00;0;Belgium;Western Europe;"Scholastica";"2017-2024";"Visual Arts and Performing Arts (Q2); Architecture (Q3); Conservation (Q3); Nature and Landscape Conservation (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Environmental Science; Social Sciences" +26416;21101163011;"Arte Nuevo. Revista de Estudios Aureos";journal;"22972692";"Universite de Neuchatel";Yes;Yes;0,137;Q2;3;14;31;800;2;31;0,09;57,14;42,86;0;Switzerland;Western Europe;"Universite de Neuchatel";"2019-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26417;21101131061;"Atrio";journal;"02148293, 26595230";"Pablo de Olavide University Department of Geography History and Philosophy";Yes;Yes;0,137;Q2;2;23;60;792;9;60;0,20;34,43;57,14;0;Spain;Western Europe;"Pablo de Olavide University Department of Geography History and Philosophy";"2019-2025";"History (Q2); Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +26418;21101152753;"Baltic Journal of English Language, Literature and Culture";journal;"25010395, 16919971";"University of Latvia";Yes;Yes;0,137;Q2;2;10;20;279;7;20;0,35;27,90;91,67;0;Latvia;Eastern Europe;"University of Latvia";"2023-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26419;21100244941;"Crusades";journal;"28327861, 14765276";"Routledge";No;No;0,137;Q2;10;13;40;1135;14;37;0,38;87,31;26,67;0;United Kingdom;Western Europe;"Routledge";"2002, 2004, 2006, 2008, 2011-2026";"History (Q2); Religious Studies (Q2); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +26420;16200154763;"ELH - English Literary History";journal;"10806547, 00138304";"Johns Hopkins University Press";No;No;0,137;Q2;31;45;121;3255;29;120;0,20;72,33;48,94;0;United States;Northern America;"Johns Hopkins University Press";"2001-2025";"History (Q2); Literature and Literary Theory (Q2)";"Arts and Humanities" +26421;40068;"Ethnohistory";journal;"15275477, 00141801";"Duke University Press";No;No;0,137;Q2;32;11;70;1439;20;67;0,17;130,82;36,36;0;United States;Northern America;"Duke University Press";"1970, 1974-1977, 1981, 1983-1986, 1991, 1996-2025";"History (Q2); Anthropology (Q3)";"Arts and Humanities; Social Sciences" +26422;21100878047;"Hiperboreea";journal;"22845666";"Balkan History Association";No;No;0,137;Q2;4;4;29;149;7;29;0,26;37,25;33,33;0;Romania;Eastern Europe;"Balkan History Association";"2018-2025";"History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26423;19700183029;"Historia Unisinos";journal;"22361782, 15193861";"Universidade do Vale do Rio dos Sinos";No;No;0,137;Q2;8;14;115;605;16;114;0,10;43,21;38,89;0;Brazil;Latin America;"Universidade do Vale do Rio dos Sinos";"2010-2025";"History (Q2)";"Arts and Humanities" +26424;6500153173;"Historical Journal of Film, Radio and Television";journal;"01439685";"Taylor and Francis Ltd.";No;No;0,137;Q2;24;53;115;3264;39;110;0,34;61,58;44,64;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1981-2026";"History (Q2); Visual Arts and Performing Arts (Q2); Communication (Q4)";"Arts and Humanities; Social Sciences" +26425;19079;"International Journal of African Historical Studies";journal;"03617882";"Boston University";No;No;0,137;Q2;28;11;53;204;14;51;0,25;18,55;30,00;0;United States;Northern America;"Boston University";"1976, 1979-1981, 1985-1989, 1999-2025";"History (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26426;19700169113;"International Journal of Maritime History";journal;"08438714, 20527756";"SAGE Publications Ltd";No;No;0,137;Q2;12;34;120;1216;29;102;0,26;35,76;39,47;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2001-2002, 2006, 2010-2026";"History (Q2); Transportation (Q4)";"Arts and Humanities; Social Sciences" +26427;21100398822;"Journal of Design";journal;"16068327";"Chinese Institute of Design";No;No;0,137;Q2;7;15;39;720;9;39;0,30;48,00;44,12;0;Taiwan;Asiatic Region;"Chinese Institute of Design";"2015-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +26428;16800154754;"Journal of Early Modern History";journal;"15700658, 13853783";"Brill Academic Publishers";No;No;0,137;Q2;31;25;62;2355;36;62;0,66;94,20;40,74;0;Netherlands;Western Europe;"Brill Academic Publishers";"1997-2025";"History (Q2)";"Arts and Humanities" +26429;17300154807;"Muqarnas";journal;"07322992";"Brill Academic Publishers";No;No;0,137;Q2;31;0;24;0;9;24;0,08;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1985, 1987-1991, 1996-2024";"History (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26430;16100154710;"Poetica";journal;"03034178, 25890530";"Brill Academic Publishers";No;No;0,137;Q2;10;10;37;983;3;37;0,08;98,30;63,64;0;Germany;Western Europe;"Brill Academic Publishers";"2002-2016, 2018-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26431;21100386856;"Romanica Cracoviensia";journal;"20843917, 17328705";"Jagiellonian University Press";Yes;Yes;0,137;Q2;4;47;151;1155;18;150;0,07;24,57;50,94;0;Poland;Eastern Europe;"Jagiellonian University Press";"2014-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26432;16100154705;"South African Historical Journal";journal;"17261686, 02582473";"Taylor and Francis Ltd.";No;No;0,137;Q2;24;26;87;1173;21;70;0,25;45,12;41,18;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1969-2026";"History (Q2)";"Arts and Humanities" +26433;16200154764;"Studia Liturgica";journal;"25174797, 00393207";"Societas Liturgica";No;No;0,137;Q2;8;17;56;452;10;52;0,15;26,59;23,08;0;Germany;Western Europe;"Societas Liturgica";"2002-2025";"Religious Studies (Q2)";"Arts and Humanities" +26434;16400154766;"Sub-Stance";journal;"00492426, 15272095";"Johns Hopkins University Press";No;No;0,137;Q2;29;48;116;1608;21;113;0,20;33,50;47,73;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +26435;21101266540;"Veleia";journal;"02132095, 24443565";"UPV/EHU Press";Yes;Yes;0,137;Q2;4;14;54;665;15;52;0,11;47,50;14,29;0;Spain;Western Europe;"UPV/EHU Press";"2020-2025";"Classics (Q2); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26436;21101128566;"Educacion y Humanismo";journal;"26652420, 01242121";"Simon Bolivar University (Barranquilla)";Yes;Yes;0,137;Q3;4;26;69;1274;29;67;0,32;49,00;41,67;0;Colombia;Latin America;"Simon Bolivar University (Barranquilla)";"2022-2026";"Cultural Studies (Q3); History and Philosophy of Science (Q3); Education (Q4); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +26437;21100258854;"International Journal of Interdisciplinary Social and Community Studies";journal;"23247584, 23247576";"Common Ground Research Networks";No;No;0,137;Q3;7;33;62;1512;27;62;0,56;45,82;44,93;0;United States;Northern America;"Common Ground Research Networks";"2012-2025";"Cultural Studies (Q3); Sociology and Political Science (Q4)";"Social Sciences" +26438;21100925893;"Metodo";journal;"22819177";"Svdig Press";No;No;0,137;Q3;4;0;54;0;11;49;0,07;0,00;0,00;0;Switzerland;Western Europe;"Svdig Press";"2019-2024";"Philosophy (Q3)";"Arts and Humanities" +26439;5600153158;"Revue d'Histoire des Sciences Humaines";journal;"1622468X, 19631022";"Editions Of The Sorbonne";Yes;Yes;0,137;Q3;12;23;91;714;20;80;0,26;31,04;37,50;0;France;Western Europe;"Editions Of The Sorbonne";"1999-2011, 2015-2025";"Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +26440;21100920053;"Spool";journal;"22150900, 22150897";"TU Delft";Yes;Yes;0,137;Q3;4;18;38;433;17;33;0,25;24,06;36,36;0;Netherlands;Western Europe;"TU Delft";"2019-2025";"Architecture (Q3); Geography, Planning and Development (Q4); Renewable Energy, Sustainability and the Environment (Q4); Urban Studies (Q4)";"Energy; Engineering; Social Sciences" +26441;21101032721;"Acta Biomedica Scientifica";journal;"25419420, 25879596";"Scientific Centre for Family Health and Human Reproduction Problems";Yes;No;0,137;Q4;8;150;498;4194;183;480;0,38;27,96;64,76;0;Russian Federation;Eastern Europe;"Scientific Centre for Family Health and Human Reproduction Problems";"2017-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Immunology and Microbiology (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +26442;17900156708;"Acta Facultatis Medicae Naissensis";journal;"03516083, 22172521";"University of Nis, Faculty of Medicine";Yes;No;0,137;Q4;17;27;152;952;56;152;0,19;35,26;49,62;0;Serbia;Eastern Europe;"University of Nis, Faculty of Medicine";"2009-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26443;52741;"Advances in gerontology = Uspekhi gerontologii / Rossiiskaia akademiia nauk, Gerontologicheskoe obshchestvo";journal;"15619125";"Eskulap";No;No;0,137;Q4;18;70;268;0;66;268;0,26;0,00;52,78;0;Russian Federation;Eastern Europe;"Eskulap";"2001-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26444;21101186907;"Archiwum Kryminologii";journal;"27194280, 00666890";"Institute of Law Studies of the Polish Academy of Sciences and the Committee on Legal Sciences of the Polish Academy of Sciences";Yes;Yes;0,137;Q4;5;0;56;0;27;56;0,41;0,00;0,00;0;Poland;Eastern Europe;"Institute of Law Studies of the Polish Academy of Sciences and the Committee on Legal Sciences of the Polish Academy of Sciences";"2019-2024";"Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26445;21100403825;"Avaliacao Psicologica";journal;"21753431, 16770471";"Instituto Brasileiro de Avaliacao Psicologica";Yes;No;0,137;Q4;13;42;117;1715;26;109;0,12;40,83;57,69;0;Brazil;Latin America;"Instituto Brasileiro de Avaliacao Psicologica";"2015-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +26446;21101330831;"Basrah Journal of Science";journal;"26648296, 26648288";"Basrah University College of Science and Technology";No;No;0,137;Q4;5;41;110;1396;52;110;0,42;34,05;46,91;0;Iraq;Middle East;"Basrah University College of Science and Technology";"2021-2025";"Biochemistry (medical) (Q4); Computer Science (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Computer Science; Earth and Planetary Sciences; Medicine; Physics and Astronomy" +26447;25100;"Boletin Geologico y Minero";journal;"03660176, 22536167";"Instituto Geologico y Minero de Espana";Yes;Yes;0,137;Q4;26;10;56;610;14;54;0,28;61,00;32,50;0;Spain;Western Europe;"Instituto Geologico y Minero de Espana";"1980-2025";"Geochemistry and Petrology (Q4); Geology (Q4)";"Earth and Planetary Sciences" +26448;20071;"Canadian Field-Naturalist";journal;"00083550";"Ottawa Field-Naturalists' Club";No;No;0,137;Q4;33;7;110;191;21;105;0,09;27,29;31,58;0;Canada;Northern America;"Ottawa Field-Naturalists' Club";"1979, 1981-1985, 1987-1988, 1992-2025";"Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +26449;16380;"Chemical and Petroleum Engineering";journal;"00092355, 15738329";"Springer Science and Business Media, LLC";No;No;0,137;Q4;26;0;272;0;89;272;0,36;0,00;0,00;0;United States;Northern America;"Springer Science and Business Media, LLC";"1965-1998, 2000-2024";"Chemical Engineering (miscellaneous) (Q4); Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Geochemistry and Petrology (Q4)";"Chemical Engineering; Earth and Planetary Sciences; Energy" +26450;23372;"Chemicke Listy";journal;"12137103, 00092770";"Czech Society of Chemical Engineering";Yes;No;0,137;Q4;31;83;293;2970;73;233;0,28;35,78;41,77;0;Czech Republic;Eastern Europe;"Czech Society of Chemical Engineering";"1996-2026";"Chemistry (miscellaneous) (Q4)";"Chemistry" +26451;21101067505;"China Tropical Medicine";journal;"10099727";"Editorial Department of China Tropical Medicine";No;No;0,137;Q4;9;265;741;6722;191;741;0,29;25,37;48,17;1;China;Asiatic Region;"Editorial Department of China Tropical Medicine";"2019-2026";"Biochemistry (medical) (Q4); Immunology and Allergy (Q4); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +26452;21101161413;"Chinese Journal of Health Management";journal;"16740815";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,137;Q4;8;126;493;3445;123;483;0,25;27,34;51,73;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2026";"Family Practice (Q4); Health Information Management (Q4)";"Health Professions; Medicine" +26453;21101140500;"Clinical Dentistry (Russia)";journal;"27132846, 1811153X";"";Yes;No;0,137;Q4;5;109;261;2262;67;261;0,28;20,75;55,56;0;Russian Federation;Eastern Europe;"";"2019-2025";"Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Orthodontics (Q4); Periodontics (Q4)";"Dentistry" +26454;21101128564;"Delta Journal of Ophthalmology";journal;"20904835, 11109173";"Wolters Kluwer Medknow Publications";Yes;No;0,137;Q4;4;37;119;906;28;119;0,24;24,49;43,65;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2025";"Ophthalmology (Q4)";"Medicine" +26455;24963;"Dental Update";journal;"03055000";"George Warman Publications";No;No;0,137;Q4;41;14;408;316;71;322;0,18;22,57;43,75;0;United Kingdom;Western Europe;"George Warman Publications";"1973-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +26456;12100157211;"Diabetologie und Stoffwechsel";journal;"18619002, 18619010";"Georg Thieme Verlag";No;No;0,137;Q4;18;199;669;2579;71;248;0,12;12,96;34,80;1;Germany;Western Europe;"Georg Thieme Verlag";"2006-2025";"Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +26457;15695;"Ecology Law Quarterly";journal;"00461121";"University of California Boalt Law Business";No;No;0,137;Q4;30;0;85;0;22;83;0,20;0,00;0,00;0;United States;Northern America;"University of California Boalt Law Business";"1973, 1978-1987, 1996, 1999-2024";"Environmental Science (miscellaneous) (Q4); Law (Q4)";"Environmental Science; Social Sciences" +26458;9500153948;"Fiziolohichnyi zhurnal (Kiev, Ukraine : 1994)";journal;"25229036, 25229028";"Naukova Dumka";No;No;0,137;Q4;15;91;205;2602;90;204;0,51;28,59;56,25;0;Ukraine;Eastern Europe;"Naukova Dumka";"1960-1978, 1994-2016, 2019-2025";"Physiology (Q4); Physiology (medical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +26459;12969;"Gao Xiao Hua Xue Gong Cheng Xue Bao/Journal of Chemical Engineering of Chinese Universities";journal;"10039015";"Zhejiang University";No;No;0,137;Q4;20;91;321;3131;136;321;0,42;34,41;37,07;0;China;Asiatic Region;"Zhejiang University";"1990-1994, 2000-2025";"Chemical Engineering (miscellaneous) (Q4)";"Chemical Engineering" +26460;21101291258;"Gumushane Universitesi Fen Bilimleri Dergisi";journal;"2146538X";"Gumushane University";No;No;0,137;Q4;7;90;283;3255;119;283;0,45;36,17;32,96;0;Turkey;Middle East;"Gumushane University";"2021-2026";"Civil and Structural Engineering (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Engineering" +26461;21101264203;"International Journal of Advanced Science and Engineering";journal;"23495359";"Mahendra Publications";No;No;0,137;Q4;6;120;156;4991;78;156;0,47;41,59;38,32;0;India;Asiatic Region;"Mahendra Publications";"2021-2025";"Civil and Structural Engineering (Q4); Drug Discovery (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Engineering; Materials Science; Pharmacology, Toxicology and Pharmaceutics" +26462;21100207607;"International Journal of Applied Geospatial Research";journal;"19479662, 19479654";"IGI Global Publishing";No;No;0,137;Q4;15;3;19;183;8;19;0,43;61,00;23,08;0;United States;Northern America;"IGI Global Publishing";"2010-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +26463;10700153302;"International Journal of Data Mining and Bioinformatics";journal;"17485681, 17485673";"Inderscience Enterprises Ltd";No;No;0,137;Q4;26;25;49;849;30;49;0,66;33,96;38,37;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Information Systems (Q4); Library and Information Sciences (Q4)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Social Sciences" +26464;21100865401;"International Journal on E-Learning: Corporate, Government, Healthcare, and Higher Education";journal;"15372456, 19435932";"Association for the Advancement of Computing in Education";No;No;0,137;Q4;19;14;62;748;25;60;0,53;53,43;50,00;0;United States;Northern America;"Association for the Advancement of Computing in Education";"2011-2025";"Computer Science Applications (Q4); Education (Q4)";"Computer Science; Social Sciences" +26465;21101146370;"International VAT Monitor";journal;"09250832, 23529210";"International Bureau of Fiscal Documentation (IBFD)";No;No;0,137;Q4;3;37;118;503;10;110;0,11;13,59;62,50;0;Netherlands;Western Europe;"International Bureau of Fiscal Documentation (IBFD)";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4)";"Economics, Econometrics and Finance; Social Sciences" +26466;21101234811;"IP International Journal of Medical Microbiology and Tropical Diseases";journal;"25814753, 25814761";"IP Innovative Publication Pvt. Ltd.";No;No;0,137;Q4;3;64;122;1380;34;114;0,28;21,56;57,05;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2023-2025";"Infectious Diseases (Q4); Microbiology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +26467;21100920213;"Iranian Journal of Geophysics";journal;"20080336";"Iranian Geophyisical Society";No;No;0,137;Q4;6;46;119;1632;39;119;0,40;35,48;31,11;0;Iran;Middle East;"Iranian Geophyisical Society";"2019-2025";"Geophysics (Q4)";"Earth and Planetary Sciences" +26468;12268;"Iron and Steel Technology";journal;"15470423";"Association for Iron and Steel Technology";No;No;0,137;Q4;32;122;267;1000;30;254;0,13;8,20;13,13;0;United States;Northern America;"Association for Iron and Steel Technology";"2004-2025";"Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +26469;21100305002;"Janus.net";journal;"16477251";"OBSERVARE - Observatorio de Relacoes Exteriores (Observatory for External Relations)";Yes;Yes;0,137;Q4;6;113;180;4831;50;157;0,28;42,75;41,22;0;Portugal;Western Europe;"OBSERVARE - Observatorio de Relacoes Exteriores (Observatory for External Relations)";"2014-2026";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +26470;4000151903;"Journal of Community Nursing";journal;"02634465";"Wound Care People Ltd";Yes;No;0,137;Q4;13;33;237;641;30;220;0,14;19,42;88,89;0;United Kingdom;Western Europe;"Wound Care People Ltd";"1998-2002, 2006-2025";"Community and Home Care (Q4)";"Nursing" +26471;21101371114;"Journal of Environmental Science International";journal;"22873503, 12254517";"The Korean Environmental Sciences Society";No;No;0,137;Q4;5;77;294;2075;57;292;0,20;26,95;31,91;0;South Korea;Asiatic Region;"The Korean Environmental Sciences Society";"2021-2026";"Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Earth and Planetary Sciences; Environmental Science" +26472;21101196445;"Journal of Midwifery and Health Sciences";journal;"26872110";"Ataturk Universitesi";Yes;Yes;0,137;Q4;6;40;108;1267;29;108;0,28;31,68;87,78;0;Turkey;Middle East;"Ataturk Universitesi";"2019-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +26473;21101043316;"Journal of Oncological Science";journal;"26514532, 24523364";"Turkiye Klinikleri";Yes;Yes;0,137;Q4;3;38;73;931;16;72;0,18;24,50;39,27;0;Turkey;Middle East;"Turkiye Klinikleri";"2018-2025";"Oncology (Q4)";"Medicine" +26474;21101276711;"Journal of Radiological Science";journal;"25213342";"Radiological Society of the Republic of China";No;No;0,137;Q4;4;13;46;335;10;46;0,25;25,77;33,33;0;Taiwan;Asiatic Region;"Radiological Society of the Republic of China";"2011-2012, 2014, 2017-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +26475;19600166219;"Koomesh";journal;"23453699, 16087046";"Brieflands";Yes;No;0,137;Q4;18;40;219;1408;40;216;0,13;35,20;55,71;0;Netherlands;Western Europe;"Brieflands";"2006-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26476;19700186822;"Lecture Notes in Electrical Engineering";book series;"18761119, 18761100";"Springer Verlag";Yes;No;0,137;Q4;56;9894;29725;153056;9251;28442;0,28;15,47;32,41;0;Germany;Western Europe;"Springer Verlag";"2007-2026";"Industrial and Manufacturing Engineering (Q4)";"Engineering" +26477;21101381158;"Materialy Budowlane";journal;"01372971, 2449951X";"Wydawnictwo SIGMA-NOT";No;No;0,137;Q4;5;407;1018;4681;127;533;0,13;11,50;31,85;0;Poland;Eastern Europe;"Wydawnictwo SIGMA-NOT";"2021-2025";"Chemical Engineering (miscellaneous) (Q4)";"Chemical Engineering" +26478;21101301815;"Media Konservasi";journal;"02151677, 25026313";"Department of Forest Resources Conservation and Ecotourism, Faculty of Forestry, IPB University";Yes;No;0,137;Q4;5;42;108;1659;46;108;0,38;39,50;43,04;0;Indonesia;Asiatic Region;"Department of Forest Resources Conservation and Ecotourism, Faculty of Forestry, IPB University";"2021-2026";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +26479;19700201451;"Medical Journal of Bakirkoy";journal;"13059319, 13059327";"Galenos Publishing House";No;No;0,137;Q4;11;67;186;1510;47;183;0,29;22,54;44,40;0;Turkey;Middle East;"Galenos Publishing House";"2011-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26480;21100373285;"Nova Biotechnologica et Chimica";journal;"1339004X, 13386905";"SciCell s.r.o.";Yes;Yes;0,137;Q4;15;0;53;0;20;53;0,38;0,00;0,00;0;Germany;Western Europe;"SciCell s.r.o.";"2012-2024";"Analytical Chemistry (Q4); Biotechnology (Q4); Food Science (Q4); Health, Toxicology and Mutagenesis (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Chemistry; Environmental Science" +26481;21101041528;"Oncology Issues";journal;"10463356, 25731777";"Slack Incorporated";No;No;0,137;Q4;8;0;188;0;20;75;0,09;0,00;0,00;0;United States;Northern America;"Slack Incorporated";"1989-2001, 2004-2007, 2009-2010, 2012, 2014-2018, 2020-2024";"Health Policy (Q4); Health (social science) (Q4); Oncology (nursing) (Q4)";"Medicine; Nursing; Social Sciences" +26482;21101297182;"Opto-Electronics and Communications Conference, OECC";journal;"21668892, 21668884";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,137;Q4;3;605;340;5813;77;338;0,23;9,61;22,65;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Atomic and Molecular Physics, and Optics (Q4); Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering; Physics and Astronomy" +26483;3900148507;"Organization Development Journal";journal;"08896402";"Organization Development Institute";No;No;0,137;Q4;26;0;70;0;31;59;0,29;0,00;0,00;0;United States;Northern America;"Organization Development Institute";"2005-2013, 2017-2024";"Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +26484;21100239608;"Pediatric Hematology/Oncology and Immunopathology";journal;"17261708, 24149314";"D. Rogachev NMRCPHOI";No;No;0,137;Q4;8;78;245;2189;76;245;0,28;28,06;67,27;0;Russian Federation;Eastern Europe;"D. Rogachev NMRCPHOI";"2002-2025";"Hematology (Q4); Immunology (Q4); Immunology and Allergy (Q4); Oncology (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Immunology and Microbiology; Medicine" +26485;4700152863;"Psicologia em Estudo";journal;"18070329, 14137372";"Universidade Estadual de Maringa";Yes;Yes;0,137;Q4;20;15;128;449;29;128;0,17;29,93;59,38;0;Brazil;Latin America;"Universidade Estadual de Maringa";"2006-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +26486;21101104871;"Reabilitacijos Mokslai: Slauga, Kineziterapija, Ergoterapija";journal;"25388673, 20293194";"Lithuanian Sports University";Yes;Yes;0,137;Q4;4;25;60;637;34;60;0,75;25,48;63,77;0;Lithuania;Eastern Europe;"Lithuanian Sports University";"2019-2025";"Orthopedics and Sports Medicine (Q4); Pediatrics, Perinatology and Child Health (Q4); Public Health, Environmental and Occupational Health (Q4); Rehabilitation (Q4)";"Medicine" +26487;12100154811;"Revista Colombiana de Gastroenterologia";journal;"01209957";"Asociacion Colombiana de Gastroenterologia";Yes;Yes;0,137;Q4;15;86;226;1824;65;202;0,25;21,21;33,92;0;Colombia;Latin America;"Asociacion Colombiana de Gastroenterologia";"2008-2025";"Gastroenterology (Q4)";"Medicine" +26488;7900153125;"Rocky Mountain Geology";journal;"15557340, 15557332";"University of Wyoming";No;No;0,137;Q4;14;0;6;0;1;6;0,17;0,00;0,00;0;United States;Northern America;"University of Wyoming";"1989, 1998, 2001, 2007-2021, 2023-2024";"Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +26489;21101312749;"Romanian Journal of Regional Science";journal;"18438520";"ROMANIAN REGIONAL SCIENCE ASSOCIATION";Yes;No;0,137;Q4;2;8;20;343;6;20;0,27;42,88;40,00;0;Romania;Eastern Europe;"ROMANIAN REGIONAL SCIENCE ASSOCIATION";"2022-2025";"Economics and Econometrics (Q4); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Economics, Econometrics and Finance; Social Sciences" +26490;21100201998;"Scientia Agriculturae Bohemica";journal;"18059430, 12113174";"Czech University of Life Sciences Prague";Yes;No;0,137;Q4;18;20;24;1075;8;22;0,33;53,75;46,03;0;Czech Republic;Eastern Europe;"Czech University of Life Sciences Prague";"2012-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +26491;19863;"Socijalna Psihijatrija";journal;"03037908";"Medicinska Naklada Zagreb";No;No;0,137;Q4;8;8;59;613;19;58;0,40;76,63;75,00;0;Croatia;Eastern Europe;"Medicinska Naklada Zagreb";"2000-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +26492;21101028600;"Statistica Applicata";journal;"11251964, 20385587";"ASA Associazione per la Statistica Applicata";No;No;0,137;Q4;5;0;105;0;28;102;0,20;0,00;0,00;0;Italy;Western Europe;"ASA Associazione per la Statistica Applicata";"2019-2024";"Applied Mathematics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics" +26493;21100913650;"Teaching of Mathematics";journal;"14514966, 24061077";"Drustvo Matematicara Srbije";Yes;Yes;0,137;Q4;10;10;31;107;8;29;0,21;10,70;21,05;0;Serbia;Eastern Europe;"Drustvo Matematicara Srbije";"1998-2025";"Education (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics; Social Sciences" +26494;21101389652;"Tirtayasa Journal of International Law";journal;"29618355, 29618061";"Sultan Ageng Tirtayasa University";No;No;0,137;Q4;2;14;34;375;9;34;0,35;26,79;54,55;0;Indonesia;Asiatic Region;"Sultan Ageng Tirtayasa University";"2022-2025";"Law (Q4); Political Science and International Relations (Q4); Public Administration (Q4)";"Social Sciences" +26495;31440;"Turk Hijyen ve Deneysel Biyoloji Dergisi";journal;"13082523, 03779777";"Refik Saydam National Public Health Agency (RSNPHA)";Yes;No;0,137;Q4;11;55;163;1793;51;163;0,27;32,60;57,49;0;Turkey;Middle East;"Refik Saydam National Public Health Agency (RSNPHA)";"1964-1978, 2012-2025";"Infectious Diseases (Q4); Microbiology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +26496;21100261934;"CERN-Proceedings";conference and proceedings;"20788835";"CERN";No;No;0,137;-;6;0;68;0;8;66;0,00;0,00;0,00;0;Switzerland;Western Europe;"CERN";"2010, 2012-2013, 2018, 2021-2022";"Nuclear and High Energy Physics";"Physics and Astronomy" +26497;2900147401;"Proceedings - IEEE International Symposium on Distributed Simulation and Real-Time Applications, DS-RT";conference and proceedings;"15506525";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,137;-;25;31;30;709;14;28;0,47;22,87;16,22;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1997, 2000-2003, 2005-2007, 2009-2014, 2016, 2024-2025";"Engineering (miscellaneous)";"Engineering" +26498;145377;"Proceedings - International Carnahan Conference on Security Technology";conference and proceedings;"10716572";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,137;-;34;0;93;0;54;85;0,60;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1992, 1997-1998, 2004-2014, 2016-2019, 2021-2023";"Electrical and Electronic Engineering; Engineering (miscellaneous); Law";"Engineering; Social Sciences" +26499;21101132429;"Proceedings of the International Multi-Conference on Society, Cybernetics and Informatics, IMSCI";conference and proceedings;"2831722X";"International Institute of Informatics and Cybernetics";No;No;0,137;-;4;23;82;486;27;74;0,36;21,13;42,22;0;United States;Northern America;"International Institute of Informatics and Cybernetics";"2022-2025";"Artificial Intelligence; Information Systems";"Computer Science" +26500;21101060129;"Anadolu Arastirmalari";journal;"05699746, 2667629X";"Istanbul Universitesi";Yes;Yes;0,136;Q2;3;13;66;786;11;66;0,16;60,46;54,55;0;Turkey;Middle East;"Istanbul Universitesi";"2019-2025";"History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +26501;21101156036;"Brill's Companions to Classical Studies";book series;"18723357";"Brill Academic Publishers";No;No;0,136;Q2;34;44;85;4893;59;1;0,69;111,20;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2002-2003, 2006-2016, 2018-2021, 2023, 2025-2026";"Classics (Q2)";"Arts and Humanities" +26502;5800170177;"Byzantine and Modern Greek Studies";journal;"1749625X, 03070131";"Cambridge University Press";No;No;0,136;Q2;20;33;48;1962;23;48;0,44;59,45;45,71;0;United Kingdom;Western Europe;"Cambridge University Press";"1975-1982, 1984, 1986-1995, 2002-2026";"History (Q2); Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26503;21100199852;"Crkva u Svijetu";journal;"03524000";"University of Split";Yes;Yes;0,136;Q2;5;45;140;1449;17;126;0,12;32,20;31,11;0;Croatia;Eastern Europe;"University of Split";"2011-2025";"Religious Studies (Q2)";"Arts and Humanities" +26504;21100868562;"Cuadernos Dieciochistas";journal;"23411902, 15767914";"Ediciones Universidad de Salamanca";Yes;Yes;0,136;Q2;4;24;75;1132;9;72;0,11;47,17;19,23;0;Spain;Western Europe;"Ediciones Universidad de Salamanca";"2017-2025";"History (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Philosophy (Q3)";"Arts and Humanities" +26505;6000155454;"Fabrications";journal;"21644756, 10331867";"Routledge";No;No;0,136;Q2;8;23;86;926;13;72;0,16;40,26;47,62;0;United Kingdom;Western Europe;"Routledge";"1989, 1991, 1993-1995, 2015-2025";"Visual Arts and Performing Arts (Q2); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +26506;5700153863;"Germanic Review";journal;"00168890, 19306962";"Routledge";No;No;0,136;Q2;14;28;92;776;19;89;0,14;27,71;48,15;0;United States;Northern America;"Routledge";"1962-1964, 1974-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26507;21100899003;"Humanitas";journal;"08711569, 21831718";"University of Coimbra";Yes;Yes;0,136;Q2;2;18;42;480;7;42;0,19;26,67;15,00;0;Portugal;Western Europe;"University of Coimbra";"2018-2025";"Classics (Q2); History (Q2); Religious Studies (Q2); Archeology (arts and humanities) (Q3); Philosophy (Q3)";"Arts and Humanities" +26508;21100322429;"Ilahiyat Studies";journal;"13091786, 13091719";"Bursa IlahIyat Foundation";No;No;0,136;Q2;4;7;37;258;11;34;0,31;36,86;25,00;0;Turkey;Middle East;"Bursa IlahIyat Foundation";"2013-2025";"Religious Studies (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26509;21100244842;"International Journal of Critical Cultural Studies";journal;"23272376, 23270055";"Common Ground Research Networks";No;No;0,136;Q2;5;36;45;1288;12;45;0,31;35,78;60,00;0;United States;Northern America;"Common Ground Research Networks";"2013-2026";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26510;21101049617;"International Review of Environmental History";journal;"22053212, 22053204";"ANU Press";Yes;Yes;0,136;Q2;5;5;43;479;25;37;0,64;95,80;20,00;0;Australia;Pacific Region;"ANU Press";"2019-2025";"History (Q2); Environmental Science (miscellaneous) (Q4)";"Arts and Humanities; Environmental Science" +26511;21101196035;"Islas";journal;"00471542, 19976720";"Central University Marta Abreu de las Villas";Yes;Yes;0,136;Q2;3;31;100;1228;6;96;0,04;39,61;51,72;0;Cuba;Latin America;"Central University Marta Abreu de las Villas";"2019-2026";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26512;21100913308;"Journal of Ancient History and Archaeology";journal;"2360266X";"Mega Publishing House";Yes;Yes;0,136;Q2;6;77;162;3791;38;161;0,25;49,23;29,46;0;Romania;Eastern Europe;"Mega Publishing House";"2019-2025";"Classics (Q2); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +26513;21101287734;"Jurnal Ilmiah Mizani";journal;"26569477, 23555173";"Fatmawati Sukarno Bengkulu State Islamic University";No;No;0,136;Q2;4;54;103;2011;36;103;0,39;37,24;30,83;0;Indonesia;Asiatic Region;"Fatmawati Sukarno Bengkulu State Islamic University";"2021-2026";"Religious Studies (Q2); Law (Q4)";"Arts and Humanities; Social Sciences" +26514;21101146389;"Mediterranea";journal;"24452378";"UCOPress. Editorial Universidad de Cordoba";Yes;Yes;0,136;Q2;4;12;50;786;11;42;0,19;65,50;33,33;0;Spain;Western Europe;"UCOPress. Editorial Universidad de Cordoba";"2019-2025";"Classics (Q2); Religious Studies (Q2); History and Philosophy of Science (Q3); Philosophy (Q3)";"Arts and Humanities" +26515;21101000295;"Metacritic Journal for Comparative Studies and Theory";journal;"24578827";"Babes-Bolyai University of Cluj, Faculty of Letters";Yes;Yes;0,136;Q2;6;9;74;307;21;74;0,24;34,11;44,44;0;Romania;Eastern Europe;"Babes-Bolyai University of Cluj, Faculty of Letters";"2019-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26516;16200154795;"MFS - Modern Fiction Studies";journal;"1080658X, 00267724";"Johns Hopkins University Press";No;No;0,136;Q2;30;27;94;1012;26;92;0,13;37,48;46,15;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +26517;28917;"Mnemosyne";journal;"00267074, 1568525X";"Brill Academic Publishers";No;No;0,136;Q2;25;92;153;4652;24;149;0,15;50,57;28,41;0;Netherlands;Western Europe;"Brill Academic Publishers";"1948-1991, 1993-2026";"Classics (Q2); History (Q2); Literature and Literary Theory (Q2); Archeology (arts and humanities) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26518;21101061827;"Revista Alicantina de Estudios Ingleses";journal;"2171861X, 02144808";"Universidad de Alicante";Yes;Yes;0,136;Q2;7;16;55;730;19;54;0,41;45,63;76,92;0;Spain;Western Europe;"Universidad de Alicante";"2019-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26519;21100922615;"Studies in Eastern European Cinema";journal;"2040350X, 20403518";"Gardiner-Caldwell Communications Ltd";No;No;0,136;Q2;9;4;95;143;36;82;0,41;35,75;75,00;0;United Kingdom;Western Europe;"Gardiner-Caldwell Communications Ltd";"2010-2025";"Visual Arts and Performing Arts (Q2); Communication (Q4)";"Arts and Humanities; Social Sciences" +26520;5600153103;"Tocqueville Review";journal;"0730479X";"University of Toronto";No;No;0,136;Q2;8;19;67;540;11;62;0,19;28,42;12,50;0;Canada;Northern America;"University of Toronto";"2009-2025";"History (Q2); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26521;16200154715;"Translation Review";journal;"07374836";"Taylor and Francis Ltd.";No;No;0,136;Q2;11;15;82;347;16;45;0,08;23,13;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1978-1989, 1992-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26522;21101163378;"Trasvases Entre la Literatura y el Cine";journal;"2695639X";"Universidad de Malaga";Yes;Yes;0,136;Q2;3;16;38;577;5;34;0,15;36,06;37,50;0;Spain;Western Europe;"Universidad de Malaga";"2019-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26523;21101021406;"Zeithistorische Forschungen";journal;"16126033, 16126041";"Vandenhoeck und Ruprecht Verlage";Yes;Yes;0,136;Q2;5;9;52;814;16;51;0,21;90,44;46,15;0;Germany;Western Europe;"Vandenhoeck und Ruprecht Verlage";"2019-2025";"History (Q2)";"Arts and Humanities" +26524;21101107571;"Anales de Investigacion en Arquitectura";journal;"23011505, 23011513";"Universidad ORT Uruguay";Yes;Yes;0,136;Q3;3;17;72;469;13;70;0,18;27,59;44,00;0;Uruguay;Latin America;"Universidad ORT Uruguay";"2019-2026";"Architecture (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Engineering; Social Sciences" +26525;24770;"Arbor";journal;"02101963, 1988303X";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,136;Q3;23;22;107;760;36;99;0,26;34,55;69,23;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1973-1974, 1977, 1982, 1996-2026";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26526;21101040210;"Archaeologia Polona";journal;"00665924, 27196542";"Institute of Archaeology and Ethnology, Polish Academy of Sciences";Yes;Yes;0,136;Q3;5;0;43;0;7;39;0,06;0,00;0,00;0;Poland;Eastern Europe;"Institute of Archaeology and Ethnology, Polish Academy of Sciences";"2018-2024, 2026";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +26527;19900191970;"Dialectologia";journal;"20132247";"Universitat de Barcelona";Yes;Yes;0,136;Q3;11;11;119;494;20;118;0,17;44,91;65,00;0;Spain;Western Europe;"Universitat de Barcelona";"2008-2025";"Linguistics and Language (Q3)";"Social Sciences" +26528;21100892768;"Filozofija i Drustvo";journal;"03535738, 23348577";"University of Belgrade - Institute for Philosophy and Social Theory";Yes;Yes;0,136;Q3;6;52;150;2457;47;138;0,26;47,25;35,59;0;Serbia;Eastern Europe;"University of Belgrade - Institute for Philosophy and Social Theory";"2018-2025";"Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26529;21101033194;"Fontes Linguae Vasconum";journal;"25305832, 0046435X";"";Yes;Yes;0,136;Q3;4;14;68;783;11;68;0,22;55,93;93,75;1;Spain;Western Europe;"";"2019-2024";"Linguistics and Language (Q3)";"Social Sciences" +26530;21101222862;"Journal of Nonprofit Education and Leadership";journal;"23747838, 21570604";"Sagamore Publishing LLC";No;No;0,136;Q3;6;0;72;0;27;55;0,33;0,00;0,00;0;United States;Northern America;"Sagamore Publishing LLC";"2014, 2020-2024";"Arts and Humanities (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +26531;21100783506;"Narodopisna Revue";journal;"08628351";"National Institute of Folk Culture";No;No;0,136;Q3;4;18;87;1046;13;83;0,13;58,11;55,56;0;Czech Republic;Eastern Europe;"National Institute of Folk Culture";"2016-2025";"Anthropology (Q3); Cultural Studies (Q3)";"Social Sciences" +26532;21100202711;"Norsk Antropologisk Tidsskrift";journal;"15042898, 08027285";"Scandinavian University Press";Yes;Yes;0,136;Q3;8;21;70;647;11;54;0,18;30,81;37,50;0;Norway;Western Europe;"Scandinavian University Press";"2011-2025";"Anthropology (Q3)";"Social Sciences" +26533;5700189006;"Revue Roumaine de Linguistique";journal;"00353957";"Editura Academiei Romane";No;No;0,136;Q3;12;23;73;994;7;70;0,08;43,22;63,64;0;Romania;Eastern Europe;"Editura Academiei Romane";"2010-2025";"Linguistics and Language (Q3)";"Social Sciences" +26534;5600155298;"Trans/Form/Acao";journal;"1980539X, 01013173";"Universidade Estadual Paulista (UNESP)";Yes;Yes;0,136;Q3;8;215;615;3019;178;373;0,31;14,04;29,63;0;Brazil;Latin America;"Universidade Estadual Paulista (UNESP)";"2007-2025";"Philosophy (Q3)";"Arts and Humanities" +26535;21394;"Anasthesiologie, Intensivmedizin, Notfallmedizin, Schmerztherapie : AINS";journal;"14391074, 09392661";"Georg Thieme Verlag";Yes;No;0,136;Q4;31;56;293;1463;59;179;0,17;26,13;35,83;0;Germany;Western Europe;"Georg Thieme Verlag";"1980-2026";"Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +26536;21100853550;"Case Reports in Perinatal Medicine";journal;"21928959";"Walter de Gruyter GmbH";No;No;0,136;Q4;6;15;73;225;23;73;0,30;15,00;64,47;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2012-2025";"Embryology (Q4); Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26537;21100979310;"Central European Journal of Paediatrics";journal;"24903671, 24903639";"";Yes;No;0,136;Q4;6;0;68;0;20;65;0,22;0,00;0,00;0;Bosnia and Herzegovina;Eastern Europe;"";"2017-2024";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26538;21101221512;"Chinese Journal of Pharmacovigilance";journal;"16728629";"";No;No;0,136;Q4;8;244;793;6608;266;793;0,40;27,08;46,81;0;China;Asiatic Region;"";"2020-2025";"Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4); Toxicology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +26539;15416;"Computers in Libraries";trade journal;"10417915";"Information Today";No;No;0,136;Q4;20;103;274;83;39;65;0,15;0,81;54,05;0;United States;Northern America;"Information Today";"1996-2026";"Computer Science (miscellaneous) (Q4); Library and Information Sciences (Q4)";"Computer Science; Social Sciences" +26540;21100237213;"Danube";journal;"18048285, 18046746";"De Gruyter Open Ltd";Yes;No;0,136;Q4;13;20;57;893;40;57;0,65;44,65;50,00;0;Germany;Western Europe;"De Gruyter Open Ltd";"2010-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4)";"Economics, Econometrics and Finance; Social Sciences" +26541;21100298210;"Developments in Corporate Governance and Responsibility";book series;"20430531, 20430523";"Emerald Group Publishing Ltd.";No;No;0,136;Q4;13;28;91;1252;92;12;0,86;44,71;28,57;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2018, 2020-2026";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +26542;21100464746;"Fronteiras";journal;"22388869";"Centro Universitario de Anapolis";Yes;Yes;0,136;Q4;10;89;213;3587;76;205;0,40;40,30;36,43;0;Brazil;Latin America;"Centro Universitario de Anapolis";"2015-2025";"Environmental Science (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Environmental Science; Social Sciences" +26543;21101039167;"Geocarrefour";journal;"1960601X, 16274873";"Association des amis de la revue de geographie de Lyon";No;No;0,136;Q4;7;4;116;201;24;111;0,08;50,25;40,00;0;France;Western Europe;"Association des amis de la revue de geographie de Lyon";"2018-2025";"Geography, Planning and Development (Q4); Global and Planetary Change (Q4); Urban Studies (Q4)";"Environmental Science; Social Sciences" +26544;21101047668;"Head and Neck Russian Journal";journal;"23105194, 24149713";"All-Russian Federation of the Specialists in Head and Neck Diseases";No;No;0,136;Q4;5;71;141;2022;42;141;0,31;28,48;50,97;0;Russian Federation;Eastern Europe;"All-Russian Federation of the Specialists in Head and Neck Diseases";"2019-2025";"Oral Surgery (Q4); Otorhinolaryngology (Q4); Surgery (Q4)";"Dentistry; Medicine" +26545;21101186196;"Health of Man";journal;"27867315, 27867323";"Publishing House Professional-Event";No;No;0,136;Q4;2;20;107;591;21;106;0,24;29,55;34,67;0;Ukraine;Eastern Europe;"Publishing House Professional-Event";"2022-2025";"Oncology (Q4); Psychiatry and Mental Health (Q4); Reproductive Medicine (Q4); Urology (Q4)";"Medicine" +26546;17519;"Indian Journal of Agricultural Biochemistry";journal;"09706399, 09744479";"Indian Society of Agricultural Biochemists";No;No;0,136;Q4;10;16;105;513;40;104;0,29;32,06;53,57;0;India;Asiatic Region;"Indian Society of Agricultural Biochemists";"2003-2025";"Agronomy and Crop Science (Q4); Biochemistry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +26547;21100207605;"International Journal of Agricultural and Environmental Information Systems";journal;"19473206, 19473192";"IGI Global Publishing";No;No;0,136;Q4;23;77;12;2456;8;12;0,88;31,90;40,58;0;United States;Northern America;"IGI Global Publishing";"2010-2026";"Information Systems (Q4)";"Computer Science" +26548;19600166211;"International Journal of High Performance Systems Architecture";journal;"17516536, 17516528";"Inderscience Enterprises Ltd";No;No;0,136;Q4;16;0;26;0;16;26;0,50;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2024";"Hardware and Architecture (Q4)";"Computer Science" +26549;21101090588;"Journal of Army Medical University";journal;"20970927";"Editorial Office of Journal of Third Military Medical University";Yes;No;0,136;Q4;6;248;927;7837;285;927;0,32;31,60;44,89;0;China;Asiatic Region;"Editorial Office of Journal of Third Military Medical University";"2022-2025";"Clinical Psychology (Q4); Medicine (miscellaneous) (Q4); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience; Psychology" +26550;4700153604;"Journal of China Universities of Posts and Telecommunications";journal;"22105123, 10058885";"Beijing University of Posts and Telecommunications";No;No;0,136;Q4;29;33;175;898;54;171;0,21;27,21;31,97;0;China;Asiatic Region;"Beijing University of Posts and Telecommunications";"2006-2025";"Computer Networks and Communications (Q4); Information Systems (Q4); Signal Processing (Q4)";"Computer Science" +26551;21100790777;"Journal of Computing Science and Engineering";journal;"19764677, 20938020";"Korean Institute of Information Scientists and Engineers";Yes;No;0,136;Q4;20;9;62;350;43;62;0,69;38,89;47,83;0;South Korea;Asiatic Region;"Korean Institute of Information Scientists and Engineers";"2008, 2012-2025";"Computer Science Applications (Q4); Engineering (miscellaneous) (Q4)";"Computer Science; Engineering" +26552;19600162201;"Journal of Institutional Research South East Asia";journal;"16756061";"SEAAIR,S. E. Asian Association for Institutional Res.";Yes;Yes;0,136;Q4;8;51;80;2466;34;76;0,42;48,35;45,45;0;Australia;Pacific Region;"SEAAIR,S. E. Asian Association for Institutional Res.";"2002-2025";"Education (Q4)";"Social Sciences" +26553;21100916534;"Journal of Library and Information Studies";journal;"16067509, 23099119";"National Taiwan University, Department of Library and Information Science";Yes;Yes;0,136;Q4;4;16;44;961;19;44;0,48;60,06;34,21;0;Taiwan;Asiatic Region;"National Taiwan University, Department of Library and Information Science";"2019-2025";"Library and Information Sciences (Q4)";"Social Sciences" +26554;21100857889;"Journal of the Society of Powder Technology, Japan";journal;"03866157, 18837239";"Society of Powder Technology";No;No;0,136;Q4;6;58;189;1310;26;182;0,13;22,59;13,43;0;Japan;Asiatic Region;"Society of Powder Technology";"2017-2026";"Catalysis (Q4); Filtration and Separation (Q4); Fluid Flow and Transfer Processes (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering" +26555;21101153017;"Journal of Vibration Testing and System Dynamics";journal;"2475482X, 24754811";"L and H Scientific Publishing, LLC";No;No;0,136;Q4;3;29;40;921;19;40;0,48;31,76;24,64;0;United States;Northern America;"L and H Scientific Publishing, LLC";"2023-2026";"Computational Mechanics (Q4); Control and Systems Engineering (Q4); Mechanical Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering" +26556;21100217212;"Journal of Zhejiang University, Science Edition";journal;"10089497";"Zhejiang University";Yes;No;0,136;Q4;13;73;261;2274;105;261;0,35;31,15;45,83;0;China;Asiatic Region;"Zhejiang University";"2012-2026";"Multidisciplinary (Q4)";"Multidisciplinary" +26557;21100939599;"Kardiologiya i Serdechno-Sosudistaya Khirurgiya";journal;"23094737, 19966385";"Media Sphera Publishing Group";No;No;0,136;Q4;11;99;281;2420;66;281;0,24;24,44;41,08;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2012-2025";"Cardiology and Cardiovascular Medicine (Q4); Emergency Medicine (Q4); Surgery (Q4)";"Medicine" +26558;21101176721;"Korean Journal of Sport Science";journal;"22337938, 15982920";"Korea Institute of Sport Science";Yes;Yes;0,136;Q4;5;58;189;2631;40;189;0,19;45,36;32,17;0;South Korea;Asiatic Region;"Korea Institute of Sport Science";"2019-2025";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine" +26559;21101186342;"Kuban Scientific Medical Bulletin";journal;"25419544, 16086228";"";Yes;Yes;0,136;Q4;3;43;94;1548;40;94;0,43;36,00;58,43;0;Russian Federation;Eastern Europe;"";"2020, 2023-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26560;16589;"Lakartidningen";journal;"00237205, 16527518";"Swedish Medical Association";No;No;0,136;Q4;25;10;348;0;63;344;0,19;0,00;42,86;0;Sweden;Western Europe;"Swedish Medical Association";"1965-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26561;21100834881;"Lecture Notes in Educational Technology";book series;"21964971, 21964963";"Springer International Publishing AG";No;No;0,136;Q4;26;538;1028;8737;556;25;0,45;16,24;0,00;9;Switzerland;Western Europe;"Springer International Publishing AG";"2014-2026";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Education (Q4)";"Computer Science; Social Sciences" +26562;5700167337;"Medijska Istrazivanja";journal;"18466605, 13306928";"";Yes;Yes;0,136;Q4;9;7;39;297;20;33;0,44;42,43;60,00;0;Croatia;Eastern Europe;"";"2011-2025";"Communication (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26563;31822;"Mining Engineering";trade journal;"00265187";"Society for Mining, Metallurgy and Exploration";No;No;0,136;Q4;25;59;173;192;41;166;0,20;3,25;29,69;1;United States;Northern America;"Society for Mining, Metallurgy and Exploration";"1969-2026";"Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +26564;21100980645;"Nigerian Journal of Nutritional Sciences";journal;"01890913, 28054008";"Nutrition Society of Nigeria";No;No;0,136;Q4;4;65;97;2112;26;97;0,25;32,49;44,44;0;Nigeria;Africa;"Nutrition Society of Nigeria";"2019-2025";"Endocrinology, Diabetes and Metabolism (Q4); Food Science (Q4); Public Health, Environmental and Occupational Health (Q4)";"Agricultural and Biological Sciences; Medicine" +26565;21100859996;"Oftalmologija. Vostochnaja Evropa";journal;"24143642, 22260803";"Professionalnye Izdaniya";No;No;0,136;Q4;4;47;136;1195;21;135;0,10;25,43;66,67;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2017-2025";"Ophthalmology (Q4)";"Medicine" +26566;21101146371;"Ophthalmology Journal";journal;"19987102, 24125423";"Eco-Vector LLC";No;No;0,136;Q4;6;42;127;1108;25;127;0,22;26,38;59,75;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Ophthalmology (Q4); Surgery (Q4)";"Medicine" +26567;21100858516;"Philippine Journal of Systematic Biology";journal;"25080342, 19086865";"Association of Systematic Biologists of the Philippines";No;No;0,136;Q4;10;4;41;132;14;41;0,39;33,00;18,18;0;Philippines;Asiatic Region;"Association of Systematic Biologists of the Philippines";"2017-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +26568;19600165500;"Politica y Gobierno";journal;"14051060, 16652037";"Centro de Investigacion y Docencia Economicas A.C.";Yes;No;0,136;Q4;17;7;47;326;17;40;0,26;46,57;28,57;0;Mexico;Latin America;"Centro de Investigacion y Docencia Economicas A.C.";"2000-2003, 2005-2025";"Political Science and International Relations (Q4)";"Social Sciences" +26569;28146;"Progresos de Obstetricia y Ginecologia";journal;"15781453, 03045013";"Sociedad Espanola de Ginecologia y Obstetricia";No;Yes;0,136;Q4;13;14;75;429;6;64;0,02;30,64;55,81;0;Spain;Western Europe;"Sociedad Espanola de Ginecologia y Obstetricia";"1972-1976, 1978-1980, 1986-1990, 1992-1999, 2005-2025";"Obstetrics and Gynecology (Q4)";"Medicine" +26570;21101019778;"Progress in Plant Protection";journal;"14274337, 20844883";"";No;No;0,136;Q4;5;33;84;1289;29;84;0,36;39,06;53,73;0;Poland;Eastern Europe;"";"2019-2025";"Agronomy and Crop Science (Q4); Biochemistry (Q4); Plant Science (Q4); Pollution (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +26571;5600155187;"Reseaux";journal;"17775809, 07517971";"Lavoisier";No;No;0,136;Q4;24;0;104;0;31;99;0,24;0,00;0,00;0;France;Western Europe;"Lavoisier";"2001-2024";"Communication (Q4); Electrical and Electronic Engineering (Q4)";"Engineering; Social Sciences" +26572;16698;"Revista Brasileira de Plantas Medicinais";journal;"1983084X, 15160572";"Instituto de Biociencias";Yes;No;0,136;Q4;36;4;40;227;10;40;0,42;56,75;64,71;0;Brazil;Latin America;"Instituto de Biociencias";"1999-2025";"Complementary and Alternative Medicine (Q4); Pharmacology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +26573;19700187504;"Scientific Journal of King Faisal University Basic and Applied Sciences";journal;"16580311";"King Faisal University";Yes;No;0,136;Q4;11;22;69;692;30;69;0,33;31,45;36,96;0;Saudi Arabia;Middle East;"King Faisal University";"2009-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +26574;14040;"Shanghai Ligong Daxue Xuebao/Journal of University of Shanghai for Science and Technology";journal;"10076735";"Shanghai Institute of Mechanical Engineering";No;No;0,136;Q4;14;73;228;1804;109;228;0,44;24,71;41,90;0;China;Asiatic Region;"Shanghai Institute of Mechanical Engineering";"1998, 2001-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +26575;21101208548;"Social and Health Sciences";journal;"29573645";"Unisa Press";No;No;0,136;Q4;4;15;51;688;20;46;0,28;45,87;57,14;0;South Africa;Africa;"Unisa Press";"2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26576;20000195026;"Surgical and Cosmetic Dermatology";journal;"19845510, 19848773";"Sociedade Brasileira de Dermatologia 1";Yes;Yes;0,136;Q4;19;72;133;1331;30;132;0,19;18,49;63,96;0;Brazil;Latin America;"Sociedade Brasileira de Dermatologia 1";"2009-2025";"Dermatology (Q4); Surgery (Q4)";"Medicine" +26577;22854;"Yakugaku Zasshi";journal;"13475231, 00316903";"Pharmaceutical Society of Japan";No;No;0,136;Q4;49;121;461;3250;161;428;0,34;26,86;30,15;0;Japan;Asiatic Region;"Pharmaceutical Society of Japan";"1961-2026";"Pharmaceutical Science (Q4); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +26578;18200156701;"Zeitschrift Kunststofftechnik/Journal of Plastics Technology";journal;"18642217";"Walter de Gruyter GmbH";No;No;0,136;Q4;10;2;28;32;9;28;0,42;16,00;11,11;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2005-2025";"Polymers and Plastics (Q4)";"Materials Science" +26579;21100856779;"Proceedings of the World Congress on Mechanical, Chemical, and Material Engineering";conference and proceedings;"23698136";"Avestia Publishing";No;No;0,136;-;11;206;346;2381;94;343;0,24;11,56;23,77;0;Canada;Northern America;"Avestia Publishing";"2015-2025";"Chemical Engineering (miscellaneous); Mechanical Engineering; Mechanics of Materials";"Chemical Engineering; Engineering" +26580;55551;"Acta Musei Napocensis";journal;"14541513, 27344487";"National Museum of History of Transylvania";No;No;0,135;Q2;3;10;36;414;11;36;0,42;41,40;23,81;0;Romania;Eastern Europe;"National Museum of History of Transylvania";"1970, 1975, 1978, 2017-2024";"Classics (Q2); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +26581;21100228735;"Aisthesis";journal;"07187181, 05683939";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,135;Q2;6;27;127;819;29;122;0,21;30,33;25,00;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2012-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Philosophy (Q3)";"Arts and Humanities" +26582;21100235602;"American Catholic Philosophical Quarterly";journal;"21538441, 10513558";"Philosophy Documentation Center";No;No;0,135;Q2;18;16;48;1033;18;45;0,58;64,56;20,00;0;United States;Northern America;"Philosophy Documentation Center";"1996-2025";"Religious Studies (Q2); Philosophy (Q3)";"Arts and Humanities" +26583;22776;"Arabica";journal;"15700585, 05705398";"Brill Academic Publishers";No;No;0,135;Q2;26;19;46;1481;14;45;0,17;77,95;31,58;0;Netherlands;Western Europe;"Brill Academic Publishers";"1954-1981, 1983-1993, 1996-2025";"Literature and Literary Theory (Q2); Religious Studies (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26584;21101155435;"Didaskalia (Poland)";journal;"27200043";"Grotowski Institute in Wroclaw";No;No;0,135;Q2;3;111;364;994;5;133;0,00;8,95;72,22;0;Poland;Eastern Europe;"Grotowski Institute in Wroclaw";"2019-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26585;21100201711;"Forum for World Literature Studies";journal;"21546711, 19498519";"Knowledge Hub Publishing Company Limited (Hong Kong)";No;No;0,135;Q2;6;45;188;840;19;188;0,09;18,67;49,02;0;China;Asiatic Region;"Knowledge Hub Publishing Company Limited (Hong Kong)";"2009-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26586;21101370214;"Journal for the History of Knowledge";journal;"2632282X";"Gewina";Yes;No;0,135;Q2;6;14;47;957;20;45;0,37;68,36;53,85;0;Belgium;Western Europe;"Gewina";"2021-2025";"History (Q2); History and Philosophy of Science (Q3)";"Arts and Humanities" +26587;21100262230;"Journal of Anglican Studies";journal;"17455278, 17403553";"Cambridge University Press";No;No;0,135;Q2;11;33;70;1853;16;61;0,21;56,15;26,32;0;United Kingdom;Western Europe;"Cambridge University Press";"2003-2014, 2016-2026";"Religious Studies (Q2)";"Arts and Humanities" +26588;5800208299;"Journal of English and Germanic Philology";journal;"03636941";"University of Illinois Press";No;No;0,135;Q2;17;15;58;1387;8;58;0,08;92,47;30,77;0;United States;Northern America;"University of Illinois Press";"2002-2026";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26589;21100371223;"Memorias";journal;"17948886";"Universidad del Norte";Yes;Yes;0,135;Q2;6;18;77;919;18;70;0,24;51,06;51,61;0;Colombia;Latin America;"Universidad del Norte";"2009, 2014-2025";"History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +26590;21100206619;"Postmedieval";journal;"20405979, 20405960";"Palgrave Macmillan Ltd.";No;No;0,135;Q2;15;30;126;1288;35;113;0,24;42,93;52,94;0;United Kingdom;Western Europe;"Palgrave Macmillan Ltd.";"2012-2026";"History (Q2); Literature and Literary Theory (Q2); Cultural Studies (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +26591;21100200031;"Religio";journal;"23364475, 12103640";"Masaryk University";Yes;No;0,135;Q2;9;5;57;374;20;54;0,40;74,80;75,00;0;Czech Republic;Eastern Europe;"Masaryk University";"2011-2025";"Religious Studies (Q2)";"Arts and Humanities" +26592;21100942908;"Revista Notas Historicas y Geograficas";journal;"07194404, 0717036X";"Universidad de Playa Ancha -Departamento De Historia";Yes;Yes;0,135;Q2;6;31;118;1228;27;114;0,13;39,61;41,54;0;Chile;Latin America;"Universidad de Playa Ancha -Departamento De Historia";"2019-2025";"History (Q2); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +26593;21101089502;"Vichiana";journal;"00425079, 2035262X";"Fabrizio Serra Editore";No;No;0,135;Q2;2;21;50;709;3;50;0,09;33,76;15,79;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2025";"Classics (Q2); History (Q2); Literature and Literary Theory (Q2); Linguistics and Language (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +26594;5700169025;"Women's Writing";journal;"17475848, 09699082";"Routledge";No;No;0,135;Q2;18;35;98;1280;23;90;0,15;36,57;78,79;0;United Kingdom;Western Europe;"Routledge";"1994-2005, 2010-2026";"Literature and Literary Theory (Q2); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +26595;21101138545;"Acta Universitatis Lodziensis. Folia Archaeologica";journal;"02086034, 24498300";"Lodz University Press";Yes;Yes;0,135;Q3;3;21;35;670;4;35;0,14;31,90;26,47;0;Poland;Eastern Europe;"Lodz University Press";"2019-2025";"Archeology (arts and humanities) (Q3)";"Arts and Humanities" +26596;21100848051;"Beitrage zur Mittelalterarchaologie in Osterreich";journal;"10110062";"Austrian Society for Medieval Archeology";No;No;0,135;Q3;3;0;33;0;3;31;0,06;0,00;0,00;0;Austria;Western Europe;"Austrian Society for Medieval Archeology";"1993, 2018-2024";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +26597;21101062042;"Dikaion";journal;"01208942, 20275366";"Universidad de La Sabana";Yes;Yes;0,135;Q3;4;13;53;483;10;45;0,21;37,15;18,18;0;Colombia;Latin America;"Universidad de La Sabana";"2019-2026";"Philosophy (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +26598;23506;"Ethical Perspectives";journal;"13700049, 17831431";"Peeters Publishers";No;No;0,135;Q3;16;6;45;285;17;42;0,13;47,50;12,50;0;Belgium;Western Europe;"Peeters Publishers";"1997, 1999, 2001-2005, 2011-2025";"Philosophy (Q3)";"Arts and Humanities" +26599;4700152269;"Journal of Japanese Studies";journal;"00956848, 15494721";"Society for Japanese Studies";No;No;0,135;Q3;24;13;36;835;14;33;0,41;64,23;33,33;0;United States;Northern America;"Society for Japanese Studies";"1988, 1998-2002, 2005-2026";"Anthropology (Q3); Cultural Studies (Q3); Linguistics and Language (Q3); Social Psychology (Q4)";"Psychology; Social Sciences" +26600;21101285718;"Journal of V. N. Karazin Kharkiv National University. Series 'Medicine'";journal;"23136693, 23132396";"V N Karazin Kharkiv National University";Yes;No;0,135;Q3;4;74;84;2285;52;84;0,65;30,88;58,87;0;Ukraine;Eastern Europe;"V N Karazin Kharkiv National University";"2021-2025";"Reviews and References (medical) (Q3); Critical Care Nursing (Q4); Education (Q4); Health Policy (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Nursing; Social Sciences" +26601;19700170258;"Linguamatica";journal;"16470818";"Universidade do Minho";Yes;Yes;0,135;Q3;9;17;37;719;12;36;0,36;42,29;38,33;0;Portugal;Western Europe;"Universidade do Minho";"2015-2025";"Linguistics and Language (Q3)";"Social Sciences" +26602;5800167966;"Logique et Analyse";journal;"00245836";"Nationaal Centrum voor Navorsingen in de Logica (Centre National de Recherches de Logique)";Yes;No;0,135;Q3;20;12;32;624;5;32;0,07;52,00;30,77;0;Belgium;Western Europe;"Nationaal Centrum voor Navorsingen in de Logica (Centre National de Recherches de Logique)";"2002-2025";"Philosophy (Q3)";"Arts and Humanities" +26603;21100325441;"Przeglad Wschodnioeuropejski";journal;"20811128";"University of Warmia and Mazury in Olsztyn";Yes;No;0,135;Q3;5;20;141;706;22;140;0,21;35,30;44,00;0;Poland;Eastern Europe;"University of Warmia and Mazury in Olsztyn";"2014-2025";"Arts and Humanities (miscellaneous) (Q3); Economics and Econometrics (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +26604;21101157248;"Radical Philosophy Review";journal;"15691659";"Philosophy Documentation Center";No;No;0,135;Q3;5;0;57;0;13;51;0,10;0,00;0,00;0;United States;Northern America;"Philosophy Documentation Center";"2019-2024";"Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26605;21100841853;"SKASE Journal of Theoretical Linguistics";journal;"1336782X";"Slovak Association for the Study of English";Yes;No;0,135;Q3;7;10;50;509;19;48;0,42;50,90;44,44;0;Slovakia;Eastern Europe;"Slovak Association for the Study of English";"2017-2025";"Linguistics and Language (Q3)";"Social Sciences" +26606;21100910623;"Slovenscina 2.0";journal;"23352736";"Ljubljana University Press, Faculty of Arts";Yes;Yes;0,135;Q3;6;15;48;534;13;42;0,26;35,60;52,94;0;Slovenia;Eastern Europe;"Ljubljana University Press, Faculty of Arts";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +26607;21101058223;"Society and Culture in South Asia";journal;"23938617, 23949872";"Sage Publications India Pvt. Ltd";No;No;0,135;Q3;11;17;41;588;16;33;0,44;34,59;45,00;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2015-2026";"Anthropology (Q3); Cultural Studies (Q3); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26608;21100858388;"ZARCH";journal;"23870346, 23410531";"Prensas de la Universidad de Zaragoza";Yes;Yes;0,135;Q3;4;15;102;286;22;94;0,22;19,07;41,18;0;Spain;Western Europe;"Prensas de la Universidad de Zaragoza";"2017-2025";"Architecture (Q3); Urban Studies (Q4)";"Engineering; Social Sciences" +26609;21101264431;"Amirkabir Journal of Civil Engineering";journal;"2588297X, 25882988";"Amirkabir University of Technology";No;No;0,135;Q4;7;90;486;3421;132;486;0,32;38,01;12,09;0;Iran;Middle East;"Amirkabir University of Technology";"2020-2025";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Environmental Engineering (Q4)";"Engineering; Environmental Science" +26610;21101224006;"Anales de la Academia de Ciencias de Cuba";journal;"23040106";"Editorial Ciencias Medicas";Yes;Yes;0,135;Q4;11;52;279;1533;31;253;0,09;29,48;52,28;0;Cuba;Latin America;"Editorial Ciencias Medicas";"2011-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +26611;21100228079;"Analise Psicologica";journal;"16466020, 08708231";"Instituto Superior de Psicologia Aplicada";Yes;No;0,135;Q4;16;11;48;534;17;48;0,13;48,55;75,76;0;Portugal;Western Europe;"Instituto Superior de Psicologia Aplicada";"2010-2026";"Education (Q4); Psychology (miscellaneous) (Q4)";"Psychology; Social Sciences" +26612;78747;"Beijing Huagong Daxue Xuebao (Ziran Kexueban)/Journal of Beijing University of Chemical Technology (Natural Science Edition)";journal;"16714628";"Beijing University of Chemical Technology";No;No;0,135;Q4;14;92;255;2415;95;255;0,43;26,25;37,47;0;China;Asiatic Region;"Beijing University of Chemical Technology";"2003-2025";"Chemical Engineering (miscellaneous) (Q4)";"Chemical Engineering" +26613;19700175454;"Bulgarian Chemical Communications";journal;"25349899, 08619808";"Bulgarska Akademiya na Naukite";Yes;No;0,135;Q4;25;106;325;3891;107;321;0,31;36,71;58,02;0;Bulgaria;Eastern Europe;"Bulgarska Akademiya na Naukite";"2008-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +26614;21101020021;"Chinese Journal of Endocrinology and Metabolism";journal;"10006699";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,135;Q4;12;148;458;4888;142;457;0,38;33,03;51,11;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +26615;21101192897;"Chulalongkorn Medical Journal";journal;"26512343, 2673060X";"Chulalongkorn University Printing House";No;No;0,135;Q4;5;50;131;1195;28;131;0,22;23,90;51,79;0;Thailand;Asiatic Region;"Chulalongkorn University Printing House";"2019-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +26616;51442;"CONCAWE Reports";journal;"01660810";"Concawe";No;No;0,135;Q4;6;6;43;330;8;43;0,16;55,00;25,00;0;Belgium;Western Europe;"Concawe";"1999-2019, 2021-2025";"Energy (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Process Chemistry and Technology (Q4); Safety, Risk, Reliability and Quality (Q4)";"Chemical Engineering; Energy; Engineering; Environmental Science" +26617;21100847479;"Contemporary Education Dialogue";journal;"09731849, 22495320";"Sage Publications India Pvt. Ltd";No;No;0,135;Q4;12;19;46;642;31;35;0,53;33,79;77,78;1;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2003, 2010, 2015-2026";"Education (Q4)";"Social Sciences" +26618;21100932468;"Counselling Psychology Review";journal;"17572142, 23968672";"The British Psychological Society";No;No;0,135;Q4;4;0;31;0;9;25;0,11;0,00;0,00;0;United Kingdom;Western Europe;"The British Psychological Society";"2019-2024";"Applied Psychology (Q4); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +26619;21100902690;"Credit and Capital Markets";journal;"21991227, 21991235";"Duncker und Humblot GmbH";No;No;0,135;Q4;7;1;47;109;11;36;0,04;109,00;0,00;0;Germany;Western Europe;"Duncker und Humblot GmbH";"2016-2025";"Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +26620;17700156215;"Cuadernos de Administracion";journal;"19007205, 01203592";"Pontificia Universidad Javeriana";Yes;Yes;0,135;Q4;15;5;27;265;16;26;0,44;53,00;58,33;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2008-2025";"Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +26621;21101164956;"Ethiopian Journal of Pediatrics and Child Health";journal;"24132640, 25190334";"Ethiopian Pediatric Society";No;No;0,135;Q4;4;18;46;395;18;40;0,38;21,94;33,33;0;Ethiopia;Africa;"Ethiopian Pediatric Society";"2019-2026";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26622;21101180647;"Experimed";journal;"26675846";"Istanbul University Press";Yes;Yes;0,135;Q4;5;34;105;1252;36;104;0,33;36,82;60,98;0;Turkey;Middle East;"Istanbul University Press";"2019-2025";"Biochemistry (medical) (Q4); Genetics (clinical) (Q4); Medicine (miscellaneous) (Q4); Oncology (Q4)";"Medicine" +26623;25950;"Gematologiya i Transfuziologiya";journal;"02345730";"Meditsina Publishers";No;No;0,135;Q4;11;29;107;1254;60;105;0,44;43,24;66,07;0;Russian Federation;Eastern Europe;"Meditsina Publishers";"1983-2025";"Hematology (Q4)";"Medicine" +26624;21101122724;"Heart, Vessels and Transplantation";journal;"16947894, 16947886";"Bishkek: Center for Scientific Research and Development of Education";Yes;No;0,135;Q4;4;59;186;1263;31;134;0,16;21,41;41,24;0;Kyrgyzstan;Asiatic Region;"Bishkek: Center for Scientific Research and Development of Education";"2018-2025";"Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4); Transplantation (Q4)";"Medicine" +26625;21101186259;"Indonesian Journal of Medical Laboratory Science and Technology";journal;"26569825, 26846748";"Universitas Nahdlatul Ulama Surabaya";Yes;No;0,135;Q4;5;16;48;628;25;48;0,72;39,25;65,31;0;Indonesia;Asiatic Region;"Universitas Nahdlatul Ulama Surabaya";"2019-2025";"Biochemistry (medical) (Q4); Histology (Q4); Immunology and Microbiology (miscellaneous) (Q4); Parasitology (Q4)";"Immunology and Microbiology; Medicine" +26626;15234;"Investigacion Clinica (Venezuela)";journal;"05355133, 24779393";"Instituto de Investigaciones Clinicas";Yes;No;0,135;Q4;25;39;185;1286;46;172;0,34;32,97;52,48;0;Venezuela;Latin America;"Instituto de Investigaciones Clinicas";"1961, 1972-1986, 1988-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26627;21101153192;"Iranian South Medical Journal";journal;"17354374, 17356954";"Bushehr University of Medical Sciences";Yes;Yes;0,135;Q4;6;42;85;1494;22;84;0,29;35,57;45,77;0;Iran;Middle East;"Bushehr University of Medical Sciences";"2019-2025";"Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Pharmacy (Q4)";"Health Professions; Medicine" +26628;29518;"Japanese Journal of Limnology";journal;"18824897, 00215104";"Japanese Society of Limnology";No;No;0,135;Q4;16;3;27;104;4;23;0,24;34,67;0,00;0;Japan;Asiatic Region;"Japanese Society of Limnology";"1931, 1934-1944, 1949-1950, 1952, 1955-2014, 2016-2025";"Aquatic Science (Q4); Ecology (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +26629;14139;"Journal of Clinical Outcomes Management";journal;"10796533";"Frontline Medical Communications Inc.";No;No;0,135;Q4;26;0;60;0;10;33;0,40;0,00;0,00;0;United States;Northern America;"Frontline Medical Communications Inc.";"2004-2023";"Health Policy (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +26630;144674;"Journal of Geomatics";journal;"20956045";"Editorial Board of Journal of Geomatics, Wuhan University";No;No;0,135;Q4;14;143;432;3327;123;432;0,33;23,27;35,37;0;China;Asiatic Region;"Editorial Board of Journal of Geomatics, Wuhan University";"2005-2011, 2013-2025";"Computer Science (miscellaneous) (Q4); Earth-Surface Processes (Q4)";"Computer Science; Earth and Planetary Sciences" +26631;21101210641;"Journal of Korean Institute of Communications and Information Sciences";journal;"12264717, 22873880";"Korean Institute of Communications and Information Sciences";No;No;0,135;Q4;6;210;650;3574;140;650;0,24;17,02;28,95;0;South Korea;Asiatic Region;"Korean Institute of Communications and Information Sciences";"2020-2026";"Computer Networks and Communications (Q4); Computer Science (miscellaneous) (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences" +26632;21101042317;"Journal of Systems Science and Information";journal;"14789906, 25126660";"Science China Press";No;No;0,135;Q4;12;50;121;2090;45;121;0,32;41,80;43,28;0;China;Asiatic Region;"Science China Press";"2019-2026";"Applied Mathematics (Q4); Computer Networks and Communications (Q4); Control and Systems Engineering (Q4); Decision Sciences (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Statistics and Probability (Q4)";"Computer Science; Decision Sciences; Economics, Econometrics and Finance; Engineering; Mathematics" +26633;21100391300;"Journal of Xi'an Jiaotong University (Medical Sciences)";journal;"16718259";"Xi'an Medical University";No;No;0,135;Q4;10;142;448;3567;124;448;0,28;25,12;43,33;0;China;Asiatic Region;"Xi'an Medical University";"2002-2026";"Clinical Biochemistry (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +26634;93545;"Mari Papel y Corrugado";journal;"17943396";"Latin Press Inc.";No;No;0,135;Q4;3;13;32;458;19;32;0,66;35,23;23,81;0;United States;Northern America;"Latin Press Inc.";"1999-2000, 2002-2010, 2016, 2020-2025";"Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +26635;21101284806;"Oral Sciences Reports";journal;"30276411";"Chiang Mai University Faculty of Dentistry";No;No;0,135;Q4;3;24;32;871;14;32;0,44;36,29;52,94;0;Thailand;Asiatic Region;"Chiang Mai University Faculty of Dentistry";"2023-2026";"Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Orthodontics (Q4); Periodontics (Q4)";"Dentistry" +26636;12948;"Osteologie";journal;"25675818, 10191291";"Georg Thieme Verlag";No;No;0,135;Q4;12;28;124;779;31;106;0,29;27,82;25,76;0;Germany;Western Europe;"Georg Thieme Verlag";"1999-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +26637;21101253114;"Pajouhan Scientific Journal";journal;"24236276, 10297863";"Hamadan University of Medical Sciences";Yes;Yes;0,135;Q4;4;24;99;830;19;99;0,22;34,58;60,24;0;Iran;Middle East;"Hamadan University of Medical Sciences";"2020-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26638;19600157002;"Pediatria de Atencion Primaria";journal;"11397632";"Spanish Association of Primary Care Pediatrics";Yes;Yes;0,135;Q4;13;60;235;852;32;226;0,18;14,20;73,99;0;Spain;Western Europe;"Spanish Association of Primary Care Pediatrics";"2009-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26639;21101285757;"Proceedings of the International Conference on Soft Computing and Machine Intelligence, ISCMI";journal;"26400146, 26400154";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,135;Q4;3;0;67;0;43;65;0,64;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Modeling and Simulation (Q4)";"Computer Science; Mathematics" +26640;21100786325;"Przeglad Strategiczny";journal;"20846991";"Wydawnictwo Naukowe WNPiD UAM";No;No;0,135;Q4;5;25;73;995;31;72;0,42;39,80;37,21;0;Poland;Eastern Europe;"Wydawnictwo Naukowe WNPiD UAM";"2016-2025";"Political Science and International Relations (Q4)";"Social Sciences" +26641;21457;"Przemysl Chemiczny";journal;"00332496";"Wydawnictwo SIGMA - N O T Sp. z o.o.";No;No;0,135;Q4;24;171;350;3618;62;301;0,19;21,16;48,69;0;Poland;Eastern Europe;"Wydawnictwo SIGMA - N O T Sp. z o.o.";"1973, 1975-1988, 1990, 1996-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +26642;73467;"RA'E GA - O Espaco Geografico em Analise";journal;"21772738, 15164136";"Universidade Federal do Parana";Yes;Yes;0,135;Q4;12;44;87;1503;26;76;0,28;34,16;29,57;0;Brazil;Latin America;"Universidade Federal do Parana";"2002-2006, 2008-2025";"Geography, Planning and Development (Q4)";"Social Sciences" +26643;61052;"Recherche en Soins Infirmiers";journal;"22718362, 02972964";"";No;No;0,135;Q4;14;52;55;0;16;55;0,13;0,00;72,17;0;France;Western Europe;"";"1996-2022, 2024-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26644;16981;"Rehabilitacia";journal;"03750922";"LIECREH GUTH";No;No;0,135;Q4;9;30;92;836;17;83;0,26;27,87;63,24;0;Slovakia;Eastern Europe;"LIECREH GUTH";"1980-1990, 1995-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +26645;21101222236;"Revista de la Facultad de Medicina Humana";journal;"18145469, 23080531";"Universidad Ricardo Palma, Instituto de Investigaciones en Ciencias Biomedicas, Facultad de Medicina Humana";Yes;Yes;0,135;Q4;13;56;299;1302;92;246;0,26;23,25;39,74;0;Peru;Latin America;"Universidad Ricardo Palma, Instituto de Investigaciones en Ciencias Biomedicas, Facultad de Medicina Humana";"2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26646;21100376681;"Revista de Senologia y Patologia Mamaria";journal;"15781399, 02141582";"Spanish Society of Senology and Breast Pathology";No;No;0,135;Q4;6;56;200;1451;35;178;0,18;25,91;56,16;0;Spain;Western Europe;"Spanish Society of Senology and Breast Pathology";"2012-2026";"Obstetrics and Gynecology (Q4); Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)";"Medicine" +26647;21100827878;"Revista UNISCI";journal;"23869453";"UNISCI";Yes;Yes;0,135;Q4;5;31;88;1600;24;87;0,22;51,61;31,25;0;Spain;Western Europe;"UNISCI";"2015-2026";"Political Science and International Relations (Q4)";"Social Sciences" +26648;21101363484;"Safety and Risk of Pharmacotherapy";journal;"26191164, 23127821";"FSBI Scientific Centre for Expert Evaluation of Medicinal Products of the Ministry of Health of the Russian Federation";Yes;No;0,135;Q4;5;30;112;1016;43;110;0,44;33,87;66,96;0;Russian Federation;Eastern Europe;"FSBI Scientific Centre for Expert Evaluation of Medicinal Products of the Ministry of Health of the Russian Federation";"2021-2025";"Health Professions (miscellaneous) (Q4); Pharmacology (nursing) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4); Pharmacy (Q4)";"Health Professions; Nursing; Pharmacology, Toxicology and Pharmaceutics" +26649;19507;"South Dakota journal of medicine";journal;"00383317";"South Dakota State Medical Association";No;No;0,135;Q4;21;81;351;0;68;309;0,12;0,00;44,28;0;United States;Northern America;"South Dakota State Medical Association";"1948-1949, 1965-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26650;21101337821;"Sri Lanka Journal of Forensic Medicine, Science and Law";journal;"24656089, 20127081";"University of Peradeniya";Yes;No;0,135;Q4;3;20;58;265;12;52;0,06;13,25;47,06;0;Sri Lanka;Asiatic Region;"University of Peradeniya";"2022-2025";"Law (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +26651;26826;"Studia Geologica Polonica";book series;"00816426";"Polska Akademia Nauk";No;No;0,135;Q4;18;0;1;0;1;1;1,00;0,00;0,00;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1977, 1979-1997, 2005-2013, 2023";"Geology (Q4)";"Earth and Planetary Sciences" +26652;21101331264;"Thai Journal of Public Health";journal;"2697584X, 26975866";"Mahidol University Faculty of Public Health";No;No;0,135;Q4;3;19;73;585;24;68;0,41;30,79;44,83;0;Thailand;Asiatic Region;"Mahidol University Faculty of Public Health";"2021-2025";"Environmental Science (miscellaneous) (Q4); Food Science (Q4); Public Health, Environmental and Occupational Health (Q4)";"Agricultural and Biological Sciences; Environmental Science; Medicine" +26653;21101175740;"Veterinary Sciences and Practices";journal;"28223608";"Ataturk Universitesi";Yes;Yes;0,135;Q4;7;21;64;768;23;64;0,44;36,57;42,86;0;Turkey;Middle East;"Ataturk Universitesi";"2022-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +26654;21100855863;"Wuhan Ligong Daxue Xuebao/Journal of Wuhan University of Technology";journal;"16714431";"Wuhan University of Technology";No;No;0,135;Q4;22;0;168;0;49;168;0,00;0,00;0,00;0;China;Asiatic Region;"Wuhan University of Technology";"2002-2022";"Engineering (miscellaneous) (Q4)";"Engineering" +26655;21101041861;"ASHRAE and IBPSA-USA Building Simulation Conference";conference and proceedings;"25746308";"American Society of Heating Refrigerating and Air-Conditioning Engineers";No;No;0,135;-;11;0;45;0;12;44;0,00;0,00;0,00;0;United States;Northern America;"American Society of Heating Refrigerating and Air-Conditioning Engineers";"2016, 2018, 2022";"Architecture; Modeling and Simulation";"Engineering; Mathematics" +26656;21100880189;"Ancient Asia";journal;"20425937";"ARF India";Yes;No;0,134;Q2;4;13;26;734;6;26;0,06;56,46;42,31;0;India;Asiatic Region;"ARF India";"2018-2025";"History (Q2); Visual Arts and Performing Arts (Q2); Anthropology (Q3); Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +26657;21100838560;"Buddhist-Christian Studies";journal;"15279472, 08820945";"University of Hawaii Press";No;No;0,134;Q2;4;1;59;76;11;56;0,08;76,00;100,00;0;United States;Northern America;"University of Hawaii Press";"2017-2026";"History (Q2); Religious Studies (Q3)";"Arts and Humanities" +26658;21101021416;"ES Review";journal;"25311654, 25311646";"Ediciones Universidad de Valladolid";Yes;Yes;0,134;Q2;4;14;35;536;8;34;0,23;38,29;52,94;0;Spain;Western Europe;"Ediciones Universidad de Valladolid";"2017-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26659;21100887850;"Estudos Historicos";journal;"01032186, 21781494";"Fundacao Getulio Vargas";Yes;Yes;0,134;Q2;7;26;102;1124;20;89;0,21;43,23;39,29;0;Brazil;Latin America;"Fundacao Getulio Vargas";"2018-2025";"History (Q2); Literature and Literary Theory (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26660;21100972603;"History of Retailing and Consumption";journal;"2373518X, 23735171";"Routledge";No;No;0,134;Q2;5;6;45;387;17;44;0,48;64,50;50,00;0;United Kingdom;Western Europe;"Routledge";"2019-2026";"History (Q2); Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance" +26661;21100894628;"Journal of Historical Research in Music Education";journal;"15366006, 23282525";"SAGE Publications Ltd";No;No;0,134;Q2;6;15;41;1037;9;34;0,27;69,13;28,57;0;United States;Northern America;"SAGE Publications Ltd";"2008-2011, 2013-2026";"History (Q2); Music (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +26662;19900192529;"Journal of Iberian and Latin American Research";journal;"21519668, 13260219";"Routledge";No;No;0,134;Q2;13;0;49;0;19;45;0,19;0,00;0,00;0;United Kingdom;Western Europe;"Routledge";"1995-2008, 2010-2024";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26663;21100978907;"Journal of Iberian Women Writers/Revista de Escritoras Ibericas";journal;"23409029";"Universidad Nacional de Educacion a Distancia (UNED)";Yes;No;0,134;Q2;4;0;43;0;2;42;0,00;0,00;0,00;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2019-2020, 2022-2024";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +26664;5600156706;"Journal of Religious History";journal;"14679809, 00224227";"John Wiley and Sons Inc";No;No;0,134;Q2;18;29;85;1348;34;80;0,25;46,48;57,14;0;United States;Northern America;"John Wiley and Sons Inc";"1960-2026";"History (Q2); Religious Studies (Q3)";"Arts and Humanities" +26665;21100377480;"Koers";journal;"0023270X, 23048557";"";Yes;No;0,134;Q2;11;13;26;601;9;26;0,13;46,23;7,14;0;South Africa;Africa;"";"1999, 2006, 2014-2026";"Religious Studies (Q2); Philosophy (Q3)";"Arts and Humanities" +26666;21101233918;"Ojkumena Regional Researches";journal;"19986785";"Vladivostok State University";No;No;0,134;Q2;3;68;198;1442;13;182;0,06;21,21;49,52;0;Russian Federation;Eastern Europe;"Vladivostok State University";"2020-2025";"History (Q2); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26667;27106;"Revue des Sciences Philosophiques et Theologiques";journal;"00352209";"Librairie Philosophique J. Vrin";No;No;0,134;Q2;9;0;57;0;10;54;0,23;0,00;0,00;0;France;Western Europe;"Librairie Philosophique J. Vrin";"1980, 2002-2019, 2021-2024";"Religious Studies (Q2); Philosophy (Q3)";"Arts and Humanities" +26668;21100856537;"Street Art and Urban Creativity";journal;"21833869, 21839956";"VisualCOM Scientific Publications";Yes;No;0,134;Q2;7;107;76;4205;31;73;0,53;39,30;44,51;0;Spain;Western Europe;"VisualCOM Scientific Publications";"2015-2026";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +26669;6500153148;"Year's Work in Critical and Cultural Theory";journal;"1471681X, 10774254";"Oxford University Press";No;No;0,134;Q2;6;13;55;211;16;53;0,32;16,23;71,43;0;United Kingdom;Western Europe;"Oxford University Press";"1991-1996, 2007-2024";"History (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Linguistics and Language (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +26670;6500153231;"Anthropology of the Middle East";journal;"17460727, 17460719";"Berghahn Journals";Yes;Yes;0,134;Q3;9;14;46;491;17;46;0,40;35,07;76,92;0;United Kingdom;Western Europe;"Berghahn Journals";"2011-2025";"Anthropology (Q3)";"Social Sciences" +26671;30013;"Journal of Mind and Behavior";journal;"29949602, 02710137";"Institute of Mind and Behavior Inc.";No;No;0,134;Q3;21;43;43;1946;13;41;0,41;45,26;44,29;0;United States;Northern America;"Institute of Mind and Behavior Inc.";"1996-2025";"Arts and Humanities (miscellaneous) (Q3); Experimental and Cognitive Psychology (Q4)";"Arts and Humanities; Psychology" +26672;6500153175;"Journal of Musicological Research";journal;"01411896";"Taylor and Francis Ltd.";No;No;0,134;Q3;17;16;38;0;22;27;0,63;0,00;75,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1979, 1981-2025";"Music (Q3)";"Arts and Humanities" +26673;21100851336;"Manuscrito";journal;"01006045, 2317630X";"Universidade Estadual de Campinas - UNICAMP, Centro de Logica, Epistemologia e Historia da Ciencia";Yes;Yes;0,134;Q3;8;15;74;330;10;71;0,16;22,00;27,27;0;Brazil;Latin America;"Universidade Estadual de Campinas - UNICAMP, Centro de Logica, Epistemologia e Historia da Ciencia";"1997, 2017-2025";"Philosophy (Q3)";"Arts and Humanities" +26674;21100202751;"Neurodiagnostic Journal";journal;"21646821, 23758627";"Taylor and Francis Ltd.";No;No;0,134;Q3;25;33;78;653;18;68;0,16;19,79;45,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2026";"Medical Laboratory Technology (Q3); Neurology (clinical) (Q4)";"Health Professions; Medicine" +26675;21100244857;"Per Musi";journal;"15177599, 23176377";"Universidade Federal of Minas Gerais";Yes;Yes;0,134;Q3;5;27;83;1067;15;82;0,16;39,52;48,78;0;Brazil;Latin America;"Universidade Federal of Minas Gerais";"2012-2025";"Music (Q3)";"Arts and Humanities" +26676;21100206257;"Quaderns";journal;"11385790, 20149735";"Universitat Autonoma de Barcelona";Yes;Yes;0,134;Q3;10;18;52;509;10;50;0,17;28,28;50,00;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2011-2018, 2020-2025";"Linguistics and Language (Q3)";"Social Sciences" +26677;21100200602;"Revista de Humanidades";journal;"07170491";"Universidad Andres Bello";No;No;0,134;Q3;7;36;102;1235;11;98;0,09;34,31;50,00;0;Chile;Latin America;"Universidad Andres Bello";"2011-2026";"Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +26678;21101291058;"Acta Biologica Marisiensis";journal;"26016141, 26685124";"Walter de Gruyter GmbH";Yes;No;0,134;Q4;4;0;25;0;11;25;0,40;0,00;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2021-2024";"Agricultural and Biological Sciences (miscellaneous) (Q4); Plant Science (Q4); Social Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Social Sciences" +26679;21101194991;"Advances in Transdisciplinary Engineering";book series;"23527528, 2352751X";"IOS Press BV";No;No;0,134;Q4;19;1435;3827;21771;1105;3737;0,27;15,17;32,82;0;Netherlands;Western Europe;"IOS Press BV";"2014-2026";"Algebra and Number Theory (Q4); Computer Science Applications (Q4); Industrial and Manufacturing Engineering (Q4); Software (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science; Engineering; Mathematics" +26680;21100265065;"AFTE Journal";journal;"10489959";"Association of Firearm and Tool Mark Examiners";No;No;0,134;Q4;13;9;57;66;12;54;0,09;7,33;20,00;0;United States;Northern America;"Association of Firearm and Tool Mark Examiners";"2013-2025";"Health (social science) (Q4); Law (Q4); Mechanics of Materials (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering; Social Sciences" +26681;16154;"Annals of Agri Bio Research";journal;"09719660";"Agri Bio Research Publishers";No;No;0,134;Q4;13;18;143;615;52;143;0,33;34,17;59,57;0;India;Asiatic Region;"Agri Bio Research Publishers";"2004-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +26682;19465;"Annual Reports in Medicinal Chemistry";book series;"00657743, 15578437";"Academic Press Inc.";No;No;0,134;Q4;43;8;40;888;51;4;0,96;111,00;0,00;0;United States;Northern America;"Academic Press Inc.";"1966-2014, 2017-2025";"Biochemistry (Q4); Organic Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +26683;20600195533;"Baltic Journal of Law and Politics";journal;"20290454";"Sciendo";Yes;Yes;0,134;Q4;10;11;62;487;36;62;0,65;44,27;57,14;0;Poland;Eastern Europe;"Sciendo";"2012-2025";"Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26684;21101360988;"BIOpreparations. Prevention, Diagnosis, Treatment";journal;"26191156, 2221996X";"National Electronic-Information Consortium (NEICON)";Yes;No;0,134;Q4;5;40;97;1082;37;94;0,34;27,05;62,50;0;Russian Federation;Eastern Europe;"National Electronic-Information Consortium (NEICON)";"2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26685;21101204535;"Boletin de Ciencias de la Tierra";journal;"01203630, 23573740";"Universidad Nacional de Colombia";Yes;Yes;0,134;Q4;4;10;35;298;13;31;0,43;29,80;22,73;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +26686;21101126084;"China Condiment";journal;"10009973";"Editorial Department of China Condiment";No;No;0,134;Q4;4;305;287;5072;114;287;0,36;16,63;46,06;0;China;Asiatic Region;"Editorial Department of China Condiment";"2022-2025";"Food Science (Q4)";"Agricultural and Biological Sciences" +26687;21101045703;"China Surfactant Detergent and Cosmetics";journal;"20972806";"Editorial Office China Surfactant Detergent and Cosmetics";No;No;0,134;Q4;6;171;576;4933;128;576;0,26;28,85;41,53;0;China;Asiatic Region;"Editorial Office China Surfactant Detergent and Cosmetics";"2019-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Colloid and Surface Chemistry (Q4)";"Chemical Engineering; Chemistry" +26688;21101171877;"Chinese Journal of Pathophysiology";journal;"10004718";"";No;No;0,134;Q4;8;219;851;7641;323;851;0,40;34,89;48,17;0;China;Asiatic Region;"";"2019-2025";"Medicine (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4); Physiology (medical) (Q4)";"Medicine" +26689;21101020096;"Chinese Journal of Perinatal Medicine";journal;"10079408";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,134;Q4;11;192;538;5539;126;507;0,25;28,85;55,37;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4); Reproductive Medicine (Q4)";"Medicine" +26690;21100792113;"Clinical and Experimental Surgery";journal;"23081198";"Geotar Media Publishing Group";Yes;No;0,134;Q4;7;49;220;901;53;214;0,25;18,39;33,79;0;Russian Federation;Eastern Europe;"Geotar Media Publishing Group";"2013-2025";"Surgery (Q4)";"Medicine" +26691;11500153302;"Coluna/ Columna";journal;"18081851";"Oficial da Sociedade Brasileira de Coluna";Yes;Yes;0,134;Q4;11;52;175;1402;32;172;0,11;26,96;18,52;0;Brazil;Latin America;"Oficial da Sociedade Brasileira de Coluna";"2008-2026";"Neurology (clinical) (Q4); Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +26692;21101378325;"Cultivos Tropicales";journal;"18194087";"National Institute of Agricultural Sciences";No;No;0,134;Q4;4;43;118;1112;26;118;0,21;25,86;53,85;0;Cuba;Latin America;"National Institute of Agricultural Sciences";"2022-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +26693;21101241159;"Endodontics Today";journal;"17267242, 16832981";"";Yes;Yes;0,134;Q4;4;92;163;1808;65;163;0,45;19,65;56,16;0;Russian Federation;Eastern Europe;"";"2022-2025";"Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Orthodontics (Q4); Periodontics (Q4)";"Dentistry" +26694;21100879934;"Environmental Science and Engineering";book series;"18635520, 18635539";"Springer Science and Business Media Deutschland GmbH";No;No;0,134;Q4;34;1064;2694;41993;1556;2028;0,56;39,47;39,22;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2007-2026";"Environmental Engineering (Q4); Information Systems (Q4)";"Computer Science; Environmental Science" +26695;21101185477;"Experimental and Applied Biomedical Research (EABR)";journal;"29560454, 29562090";"";No;No;0,134;Q4;12;59;164;2272;58;163;0,31;38,51;57,26;0;Germany;Western Europe;"";"2022-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +26696;21101058281;"Frontiers in Emergency Medicine";journal;"27173593";"Tehran University of Medical Sciences";No;No;0,134;Q4;9;37;139;910;74;110;0,67;24,59;33,04;0;Iran;Middle East;"Tehran University of Medical Sciences";"2021-2025";"Emergency Medical Services (Q4); Emergency Medicine (Q4); Emergency Nursing (Q4)";"Health Professions; Medicine; Nursing" +26697;21101162974;"Gastroenterology (Ukraine)";journal;"23082097, 25187880";"Zaslavsky Publishing House";Yes;Yes;0,134;Q4;6;38;121;1256;51;119;0,43;33,05;53,42;0;Ukraine;Eastern Europe;"Zaslavsky Publishing House";"2019-2025";"Gastroenterology (Q4); Hepatology (Q4)";"Medicine" +26698;19900193573;"Hong Kong Journal of Radiology";journal;"22236619, 23074620";"Hong Kong Academy of Medicine Press";Yes;Yes;0,134;Q4;10;29;119;592;24;114;0,16;20,41;36,00;0;Hong Kong;Asiatic Region;"Hong Kong Academy of Medicine Press";"2011-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +26699;21101144304;"Horticultura Argentina";journal;"03273431, 18519342";"";Yes;No;0,134;Q4;2;31;63;1155;13;63;0,24;37,26;50,91;0;Argentina;Latin America;"";"2022-2025";"Horticulture (Q4)";"Agricultural and Biological Sciences" +26700;21101209913;"Indonesian Journal of Clinical Pathology and Medical Laboratory";journal;"24774685";"Indonesian Association of Clinical Pathology and Laboratory Medicine";No;No;0,134;Q4;3;64;173;1263;41;173;0,23;19,73;55,30;0;Indonesia;Asiatic Region;"Indonesian Association of Clinical Pathology and Laboratory Medicine";"2020-2025";"Histology (Q4); Medical Laboratory Technology (Q4); Microbiology (medical) (Q4); Pathology and Forensic Medicine (Q4)";"Health Professions; Medicine" +26701;26693;"International Journal for Engineering Modelling";journal;"13301365, 18498671";"University of Split";Yes;No;0,134;Q4;13;11;37;364;18;37;0,35;33,09;4,55;0;Croatia;Eastern Europe;"University of Split";"1991-1992, 1994-2025";"Computer Science Applications (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Modeling and Simulation (Q4); Software (Q4)";"Computer Science; Engineering; Mathematics" +26702;21100220382;"International Journal of Computer Aided Engineering and Technology";journal;"17572665, 17572657";"Inderscience";No;No;0,134;Q4;18;0;81;0;60;81;0,68;0,00;0,00;0;Switzerland;Western Europe;"Inderscience";"2008-2024";"Computer Science Applications (Q4); Engineering (miscellaneous) (Q4); Software (Q4)";"Computer Science; Engineering" +26703;20400195016;"International Journal of Computers and their Applications";journal;"10765204";"International Society for Computers and Their Applications (ISCA)";No;No;0,134;Q4;9;24;92;788;41;91;0,49;32,83;31,34;0;United States;Northern America;"International Society for Computers and Their Applications (ISCA)";"2011-2025";"Computer Science (miscellaneous) (Q4)";"Computer Science" +26704;21101251263;"International Journal of Ecosystems and Ecology Science";journal;"22244980";"";No;No;0,134;Q4;7;274;234;7452;92;234;0,55;27,20;57,67;0;United States;Northern America;"";"2020-2025";"Ecology (Q4); Health, Toxicology and Mutagenesis (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science" +26705;21100364636;"International Journal of Epilepsy";journal;"22136320";"Georg Thieme Verlag";No;No;0,134;Q4;9;19;39;433;10;34;0,19;22,79;39,29;0;India;Asiatic Region;"Georg Thieme Verlag";"2014-2018, 2020-2021, 2023-2026";"Neurology (clinical) (Q4)";"Medicine" +26706;23688;"International Journal of Healthcare Technology and Management";journal;"13682156, 17415144";"Inderscience Publishers";No;No;0,134;Q4;21;0;50;0;23;50;0,44;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Publishers";"1999-2024";"Health Informatics (Q4); Leadership and Management (Q4)";"Medicine; Nursing" +26707;4700152436;"International Journal of Human Resources Development and Management";journal;"14656612, 17415160";"Inderscience Enterprises Ltd";No;No;0,134;Q4;22;5;30;311;20;30;0,61;62,20;38,46;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2000-2025";"Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +26708;17800156773;"International Journal of Innovative Computing and Applications";journal;"17516498, 1751648X";"Inderscience Enterprises Ltd";No;No;0,134;Q4;21;15;59;523;31;58;0,40;34,87;34,38;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2025";"Hardware and Architecture (Q4); Software (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +26709;21100258750;"International Journal of Interdisciplinary Civic and Political Studies";journal;"23272481, 23270071";"Common Ground Research Networks";No;No;0,134;Q4;4;9;44;407;13;44;0,25;45,22;57,89;0;United States;Northern America;"Common Ground Research Networks";"2012-2025";"Sociology and Political Science (Q4)";"Social Sciences" +26710;32265;"Issledovanie Zemli iz Kosmosa, (Earth Research from Space)";journal;"02059614";"Harwood Academic Publishers";No;No;0,134;Q4;9;0;14;0;4;14;0,00;0,00;0,00;0;Switzerland;Western Europe;"Harwood Academic Publishers";"1980-1983, 1985, 1992-1995, 2001-2005, 2019-2022";"Atmospheric Science (Q4); Computers in Earth Sciences (Q4); Control and Systems Engineering (Q4); Geology (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Engineering" +26711;62568;"Italian Journal of Vascular and Endovascular Surgery";journal;"18244777, 18271847";"Edizioni Minerva Medica S.p.A.";No;No;0,134;Q4;8;19;75;401;12;73;0,22;21,11;38,41;0;Italy;Western Europe;"Edizioni Minerva Medica S.p.A.";"2004-2025";"Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4)";"Medicine" +26712;21101300539;"Journal of Behavioural Sciences";journal;"10289097";"Institute of Applied Psychology, University of the Punjab Quaid-eAzam Campus";No;No;0,134;Q4;5;11;48;416;17;48;0,17;37,82;80,00;0;Pakistan;Asiatic Region;"Institute of Applied Psychology, University of the Punjab Quaid-eAzam Campus";"2021-2026";"Behavioral Neuroscience (Q4)";"Neuroscience" +26713;21101249033;"Journal of Beijing University of Traditional Chinese Medicine";journal;"10062157";"";No;No;0,134;Q4;6;126;669;4481;230;666;0,34;35,56;46,44;0;China;Asiatic Region;"";"2020-2025";"Complementary and Alternative Medicine (Q4)";"Medicine" +26714;28190;"Journal of Christian Nursing";journal;"07432550, 19317662";"Lippincott Williams and Wilkins";No;No;0,134;Q4;16;83;278;0;47;276;0,14;0,00;81,18;0;United States;Northern America;"Lippincott Williams and Wilkins";"1984-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +26715;21101056822;"Journal of Clinical Pediatric Surgery";journal;"16716353";"Science and Technology Association of Hunan Province";No;No;0,134;Q4;7;111;616;2532;113;612;0,13;22,81;31,98;0;China;Asiatic Region;"Science and Technology Association of Hunan Province";"2019-2025";"Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)";"Medicine" +26716;22422;"Journal of Communicable Diseases";journal;"00195138";"Indian Society for Malaria and Communicable Diseases";No;No;0,134;Q4;30;111;284;3287;103;278;0,36;29,61;45,02;0;India;Asiatic Region;"Indian Society for Malaria and Communicable Diseases";"1973-1977, 1979-2025";"Infectious Diseases (Q4)";"Medicine" +26717;21100982275;"Journal of Emergency Practice and Trauma";journal;"23834544";"Kerman University of Medical Sciences";Yes;Yes;0,134;Q4;6;3;83;111;21;76;0,20;37,00;35,71;0;Iran;Middle East;"Kerman University of Medical Sciences";"2019-2025";"Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4); Emergency Nursing (Q4)";"Medicine; Nursing" +26718;18613;"Journal of insurance medicine (New York, N.Y.)";journal;"07436661";"American Academy of Insurance Medicine";No;No;0,134;Q4;24;23;46;0;17;43;0,40;0,00;20,83;0;United States;Northern America;"American Academy of Insurance Medicine";"1991-2014, 2016-2019, 2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26719;21101087367;"Journal of Payavard Salamat";journal;"17358132, 20082665";"Tehran University of Medical Sciences";Yes;Yes;0,134;Q4;7;40;147;1374;41;143;0,17;34,35;49,32;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2025";"Health Informatics (Q4); Health Professions (miscellaneous) (Q4); Library and Information Sciences (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine; Social Sciences" +26720;19700174910;"Journal of Shanghai Jiaotong University (Medical Science)";journal;"16748115";"Editorial Department of Journal of Shanghai Second Medical University";Yes;No;0,134;Q4;9;190;627;6701;183;627;0,29;35,27;49,33;0;China;Asiatic Region;"Editorial Department of Journal of Shanghai Second Medical University";"2009-2026";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +26721;21100890298;"Journal of the Australasian Tax Teachers Association";journal;"1832911X";"Australasian Tax Teachers' Association";Yes;No;0,134;Q4;6;11;22;562;8;18;0,25;51,09;62,50;0;Australia;Pacific Region;"Australasian Tax Teachers' Association";"2018-2025";"Accounting (Q4); Finance (Q4); Law (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +26722;21101311352;"Juntendo Medical Journal";journal;"27597504, 21879737";"Juntendo Medical Society";Yes;No;0,134;Q4;2;21;6;575;4;6;0,67;27,38;17,09;0;Japan;Asiatic Region;"Juntendo Medical Society";"2024-2025";"Internal Medicine (Q4); Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +26723;21101267550;"Jurnal Pengabdian Hukum Indonesia";journal;"26548305, 26548313";"Universitas Negeri Semarang";No;No;0,134;Q4;3;23;50;1025;14;50;0,28;44,57;35,53;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2020-2025";"Development (Q4); Law (Q4); Public Administration (Q4)";"Social Sciences" +26724;21101207442;"Larus - Godisnjak Zavoda za Ornitologiju Hrvatske Akademije Znanosti i Umjetnosti";journal;"18499198, 03505189";"Croatian Academy of Sciences and Arts";No;No;0,134;Q4;1;6;16;64;6;16;0,38;10,67;23,53;0;Croatia;Eastern Europe;"Croatian Academy of Sciences and Arts";"1981, 2023-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +26725;21100943551;"Mathematica Applicanda";journal;"17302668, 22994009";"Polish Mathematical Society";No;No;0,134;Q4;5;0;48;0;18;48;0,48;0,00;0,00;0;Poland;Eastern Europe;"Polish Mathematical Society";"2018-2024";"Decision Sciences (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)";"Decision Sciences; Mathematics" +26726;21101284803;"Medical Journal of Shree Birendra Hospital";journal;"20910193, 20910185";"Nepalese Army Institute of Health Sciences";Yes;No;0,134;Q4;3;21;77;357;19;77;0,18;17,00;44,12;0;Nepal;Asiatic Region;"Nepalese Army Institute of Health Sciences";"2020-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +26727;21101043307;"Medical Visualization";journal;"24089516, 16070763";"VIDAR Publishing House";No;No;0,134;Q4;5;39;158;1038;54;158;0,39;26,62;42,47;0;Russian Federation;Eastern Europe;"VIDAR Publishing House";"2019-2025";"Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine" +26728;21101037906;"Meditsinskiy Sovet";journal;"2079701X, 26585790";"Remedium Group Ltd";Yes;Yes;0,134;Q4;12;536;1606;19737;557;1599;0,33;36,82;68,57;0;Russian Federation;Eastern Europe;"Remedium Group Ltd";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26729;21101041554;"Messenger of Anesthesiology and Resuscitation";journal;"20785658, 25418653";"New Terra Publishing House";Yes;Yes;0,134;Q4;8;73;225;2472;86;224;0,38;33,86;40,23;0;Russian Federation;Eastern Europe;"New Terra Publishing House";"2019-2025";"Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4)";"Medicine" +26730;145594;"Military Operations Research";journal;"02755823";"Military Operations Research Society";No;No;0,134;Q4;18;0;28;0;15;26;0,36;0,00;0,00;0;United States;Northern America;"Military Operations Research Society";"2005-2024";"Civil and Structural Engineering (Q4); Management Science and Operations Research (Q4); Mechanical Engineering (Q4)";"Decision Sciences; Engineering" +26731;19700174929;"New Armenian Medical Journal";journal;"18290825";"Yerevan State Medical University";No;No;0,134;Q4;10;58;164;1673;44;164;0,30;28,84;48,13;0;Armenia;Eastern Europe;"Yerevan State Medical University";"2009-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26732;21101210856;"Phytotherapy Journal";journal;"25229680";"V.I. Vernadsky Taurida National University";No;No;0,134;Q4;4;102;190;3031;75;188;0,48;29,72;66,99;0;Ukraine;Eastern Europe;"V.I. Vernadsky Taurida National University";"2020-2025";"Complementary and Alternative Medicine (Q4); Pharmacology (medical) (Q4); Plant Science (Q4); Rehabilitation (Q4)";"Agricultural and Biological Sciences; Medicine" +26733;21101070991;"Pravni Zapisi";journal;"24061387, 22172815";"Faculty of Law, Union University in Belgrade";Yes;Yes;0,134;Q4;5;11;68;489;19;61;0,33;44,45;58,33;0;Serbia;Eastern Europe;"Faculty of Law, Union University in Belgrade";"2019-2025";"Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26734;21101257833;"Proceedings - International Seminar on Intelligent Technology and its Applications, ISITIA";journal;"27695492";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,134;Q4;4;150;138;3088;99;136;0,72;20,59;26,74;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Instrumentation (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Computer Science; Energy; Physics and Astronomy" +26735;16167;"Proceedings of the Institution of Civil Engineers: Water Management";journal;"17517729, 17417589";"ICE Publishing";No;No;0,134;Q4;41;12;78;480;90;75;1,25;40,00;19,57;0;United Kingdom;Western Europe;"ICE Publishing";"1994, 2001-2002, 2004-2025";"Water Science and Technology (Q4)";"Environmental Science" +26736;21101000291;"Rakenteiden Mekaniikka";journal;"17975301, 07836104";"Rakenteiden Mekaniikan Seura ry - Finnish Association for Structural Mechanics";Yes;Yes;0,134;Q4;4;13;39;302;9;34;0,21;23,23;33,33;0;Finland;Western Europe;"Rakenteiden Mekaniikan Seura ry - Finnish Association for Structural Mechanics";"2019-2025";"Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +26737;17760;"Recenti Progressi in Medicina";journal;"20381840, 00341193";"Il Pensiero Scientifico Editore s.r.l.";No;No;0,134;Q4;24;205;523;2502;82;453;0,15;12,20;51,07;0;Italy;Western Europe;"Il Pensiero Scientifico Editore s.r.l.";"1948, 1957-1958, 1960-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +26738;21100903867;"Reproductive Endocrinology";journal;"24111295, 23094117";"LTD Trilist";Yes;No;0,134;Q4;7;46;148;1375;58;147;0,36;29,89;79,07;0;Ukraine;Eastern Europe;"LTD Trilist";"2019-2025";"Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)";"Medicine" +26739;21101123075;"Revista Brasileira de Alternative Dispute Resolution";journal;"25963201, 26748835";"EDITORA FORUM LTDA";No;No;0,134;Q4;8;28;93;1009;69;86;0,83;36,04;62,96;0;Brazil;Latin America;"EDITORA FORUM LTDA";"2019-2025";"Law (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26740;21100201317;"Revista de Analisis Economico";journal;"07165927, 07188870";"Universidad Alberto Hurtado";Yes;Yes;0,134;Q4;10;10;28;470;12;28;0,35;47,00;27,27;0;Chile;Latin America;"Universidad Alberto Hurtado";"2011-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +26741;21101040207;"Revista Facultad Nacional de Salud Publica";journal;"22563334, 0120386X";"Universidad de Antioquia";Yes;Yes;0,134;Q4;17;31;113;1013;33;97;0,20;32,68;62,07;0;Colombia;Latin America;"Universidad de Antioquia";"2008-2026";"Epidemiology (Q4); Health Information Management (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine" +26742;21100285049;"Rwanda Medical Journal";journal;"2079097X, 24108626";"Rwanda Biomedical Centre (RBC)";Yes;Yes;0,134;Q4;9;34;124;955;46;122;0,35;28,09;33,83;0;Rwanda;Africa;"Rwanda Biomedical Centre (RBC)";"2013-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26743;21101030333;"Sovremennaya Revmatologiya";journal;"19967012, 2310158X";"Ima-Press Publishing House";Yes;Yes;0,134;Q4;12;101;300;3517;125;300;0,47;34,82;72,48;0;Russian Federation;Eastern Europe;"Ima-Press Publishing House";"2019-2026";"Immunology (Q4); Immunology and Allergy (Q4); Pharmacology (medical) (Q4); Rheumatology (Q4)";"Immunology and Microbiology; Medicine" +26744;19544;"Srpski Arhiv za Celokupno Lekarstvo";journal;"24060895, 03708179";"Serbia Medical Society";Yes;Yes;0,134;Q4;25;81;341;2039;78;335;0,20;25,17;45,11;0;Serbia;Eastern Europe;"Serbia Medical Society";"1950-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26745;21100254486;"Studia Politica";journal;"15824551";"Universitatea din Bucuresti";No;No;0,134;Q4;7;10;33;471;12;31;0,50;47,10;7,14;0;Romania;Eastern Europe;"Universitatea din Bucuresti";"2013-2025";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26746;36395;"Taiwan Journal of Public Health";journal;"10232141";"Chinese Public Health Association of Taiwan";No;No;0,134;Q4;18;58;174;2080;32;147;0,14;35,86;52,94;0;Taiwan;Asiatic Region;"Chinese Public Health Association of Taiwan";"1997-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +26747;21101066747;"Transplantologiya. The Russian Journal of Transplantation";journal;"25420909, 20740506";"N.V. Sklifosovsky Research Institute for Emergency Medicine";Yes;Yes;0,134;Q4;5;39;127;1144;37;118;0,30;29,33;38,32;0;Russian Federation;Eastern Europe;"N.V. Sklifosovsky Research Institute for Emergency Medicine";"2018-2025";"Immunology (Q4); Immunology and Allergy (Q4); Surgery (Q4); Transplantation (Q4)";"Immunology and Microbiology; Medicine" +26748;21101160579;"Trends in Pediatrics";journal;"27920429";"Galenos Publishing House";Yes;Yes;0,134;Q4;4;43;95;1162;28;95;0,32;27,02;54,55;0;Turkey;Middle East;"Galenos Publishing House";"2020-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +26749;19700175019;"Turkiye Klinikleri Dermatoloji";journal;"13000330, 21469016";"Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.";No;No;0,134;Q4;5;17;66;328;11;61;0,11;19,29;57,69;0;Turkey;Middle East;"Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.";"2010-2025";"Dermatology (Q4)";"Medicine" +26750;12482;"Uspekhi Fiziologicheskikh Nauk";journal;"03011798";"Izdatel'stvo Nauka";No;No;0,134;Q4;17;24;92;2479;36;91;0,40;103,29;58,93;0;Russian Federation;Eastern Europe;"Izdatel'stvo Nauka";"1971-2018, 2020-2025";"Medicine (miscellaneous) (Q4); Physiology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +26751;21101033127;"Utrecht Journal of International and European Law";journal;"20535341";"Ubiquity Press";Yes;No;0,134;Q4;7;5;14;522;6;11;0,56;104,40;20,00;0;United Kingdom;Western Europe;"Ubiquity Press";"2020-2025";"Law (Q4)";"Social Sciences" +26752;21100861555;"Vascular Access";journal;"19136692";"Canadian Vascular Access Association";No;No;0,134;Q4;4;4;39;94;6;26;0,23;23,50;61,11;0;Canada;Northern America;"Canadian Vascular Access Association";"2017-2025";"Advanced and Specialized Nursing (Q4)";"Nursing" +26753;21101211357;"IEEE International Symposium for Design and Technology of Electronics Packages, SIITME - Conference Proceedings";conference and proceedings;"26427036, 2641287X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,134;-;3;93;180;1269;60;176;0,33;13,65;25,12;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2023-2024";"Artificial Intelligence; Control and Optimization; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Instrumentation; Safety, Risk, Reliability and Quality";"Computer Science; Engineering; Materials Science; Mathematics; Physics and Astronomy" +26754;21101107956;"International Conference on Complexity, Future Information Systems and Risk, COMPLEXIS - Proceedings";conference and proceedings;"21845034";"Science and Technology Publications, Lda";No;No;0,134;-;3;0;43;0;14;39;0,34;0,00;0,00;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2024";"Information Systems";"Computer Science" +26755;144852;"Proceedings - International Conference of the Chilean Computer Science Society, SCCC";conference and proceedings;"15224902";"IEEE Computer Society";No;No;0,134;-;19;0;143;0;44;137;0,34;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"1999-2003, 2005, 2007-2013, 2016-2024";"Computer Science (miscellaneous); Engineering (miscellaneous)";"Computer Science; Engineering" +26756;21101134686;"Proceedings - International Conference on Education and Technology, ICET";conference and proceedings;"27704807";"Institute of Electrical and Electronics Engineers";No;No;0,134;-;6;0;132;0;84;129;0,47;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2022-2024";"Computer Networks and Communications; Education; Information Systems and Management; Instrumentation; Management Information Systems; Media Technology";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering; Physics and Astronomy; Social Sciences" +26757;21100223112;"World Automation Congress Proceedings";conference and proceedings;"21544832, 21544824";"IEEE Computer Society";No;No;0,134;-;19;0;126;0;51;125;0,00;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012, 2014, 2016, 2018, 2021-2022";"Control and Systems Engineering";"Engineering" +26758;5800170732;"American Communist History";journal;"14743892, 14743906";"Taylor and Francis Ltd.";No;No;0,133;Q2;6;15;25;871;4;24;0,15;58,07;53,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2025";"History (Q2); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26759;21101168046;"Amsterdamer Beitrage zur Neueren Germanistik";book series;"1875726X, 03046257";"Brill Academic Publishers";No;No;0,133;Q2;2;1;15;322;0;1;0,00;322,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2018, 2020-2021, 2024-2026";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26760;21101145384;"Approaches to Translation Studies";book series;"01690523";"Brill Academic Publishers";No;No;0,133;Q2;28;11;40;541;7;1;0,09;49,18;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1977-1978, 1985, 1988-1989, 1991, 1993-1994, 1996-1997, 2000, 2002-2010, 2012-2018, 2021-2023, 2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26761;21101175396;"Australian Playwrights";book series;"09212531";"Brill Academic Publishers";No;No;0,133;Q2;5;1;1;606;0;1;0,00;606,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1988, 1993-1994, 1998, 2000, 2003-2004, 2008, 2011, 2013, 2015, 2018, 2020, 2024-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +26762;21101147939;"Brill's Companions to Classical Reception";book series;"22131426";"Brill Academic Publishers";No;No;0,133;Q2;12;25;104;1333;34;1;0,20;53,32;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2019, 2021-2026";"Classics (Q2)";"Arts and Humanities" +26763;21100427821;"Brill's Inner Asian Library";book series;"15667162";"Brill Academic Publishers";No;No;0,133;Q2;11;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2009, 2011-2013, 2015, 2017-2018, 2020-2021, 2024";"Visual Arts and Performing Arts (Q2); History (Q3); Linguistics and Language (Q3); Philosophy (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26764;58823;"Byzantinoslavica";journal;"00077712";"Slovansky Ustav AV CR";Yes;No;0,133;Q2;9;14;29;584;7;25;0,11;41,71;45,45;0;Czech Republic;Eastern Europe;"Slovansky Ustav AV CR";"1972, 2008-2025";"History (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26765;21101227197;"Ca' Foscari Japanese Studies: Arts and Literature";book series;"26109425, 26108992";"Edizioni Ca' Foscari";No;No;0,133;Q2;1;0;27;0;0;1;0,00;0,00;0,00;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2021-2024";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +26766;21101173102;"Chiasma";book series;"13807811";"Brill Academic Publishers";No;No;0,133;Q2;1;6;1;345;0;1;0,00;57,50;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1994-1995, 1997-2000, 2002, 2004-2014, 2016-2018, 2020, 2024-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +26767;16400154765;"Chiron";book series;"00693715";"Walter de Gruyter GmbH";No;No;0,133;Q2;18;11;19;1069;9;1;0,13;97,18;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2002-2010, 2013-2014, 2017-2019, 2021-2023, 2025";"Classics (Q2); Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities" +26768;21101170613;"Collection Monographique Rodopi en Litterature Francaise Contemporaine";book series;"01690078";"Brill: Rodopi";No;No;0,133;Q2;0;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill: Rodopi";"1984-1986, 1988-1994, 1996-1997, 1999-2001, 2003-2011, 2016, 2019-2020, 2022";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +26769;21101181767;"Contemporary Cinema";book series;"15723070";"Brill Rodopi";No;No;0,133;Q2;1;13;1;830;0;1;0,00;63,85;100,00;0;Netherlands;Western Europe;"Brill Rodopi";"2005, 2008, 2010, 2017, 2020, 2023, 2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +26770;21101199246;"Critical Posthumanisms";book series;"18720943";"Brill Academic Publishers";No;No;0,133;Q2;1;19;15;1015;1;1;0,07;53,42;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015, 2019, 2024-2026";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Human-Computer Interaction (Q4)";"Arts and Humanities; Computer Science" +26771;21101155647;"Cross/Cultures";book series;"09241426";"Brill: Rodopi";No;No;0,133;Q2;13;13;94;1024;9;1;0,00;78,77;0,00;0;Netherlands;Western Europe;"Brill: Rodopi";"2000-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26772;21101041936;"Eikon Imago";journal;"22548718";"Universidad Complutense Madrid";Yes;Yes;0,133;Q2;4;34;78;1764;17;78;0,22;51,88;58,06;0;Spain;Western Europe;"Universidad Complutense Madrid";"2019-2026";"History (Q2); Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3); Religious Studies (Q3)";"Arts and Humanities" +26773;21101028122;"Esbocos";journal;"1414722X, 21757976";"Universidade Federal de Santa Catarina";Yes;Yes;0,133;Q2;5;9;100;349;9;93;0,12;38,78;40,00;0;Brazil;Latin America;"Universidade Federal de Santa Catarina";"2019-2026";"History (Q2); Anthropology (Q3); History and Philosophy of Science (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26774;16200154750;"European Joyce Studies";book series;"18757340, 09239855";"Editions Rodopi B.V.";No;No;0,133;Q2;5;13;1;531;0;1;0,00;40,85;0,00;0;Netherlands;Western Europe;"Editions Rodopi B.V.";"2002-2006, 2009, 2011-2014, 2016, 2018, 2020-2022, 2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +26775;21100202710;"German Monitor";book series;"18757391, 09271910";"Editions Rodopi B.V.";No;No;0,133;Q2;4;0;21;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Editions Rodopi B.V.";"2011-2014, 2018, 2020, 2023-2024";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +26776;13142;"Germanisch-Romanische Monatsschrift";journal;"00168904";"Universitaetsverlag Winter GmbH";No;No;0,133;Q2;6;0;1;0;0;1;0,00;0,00;0,00;0;Germany;Western Europe;"Universitaetsverlag Winter GmbH";"1972, 2002-2022";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26777;21100787379;"Glottotheory";journal;"21966907, 13377892";"Walter de Gruyter GmbH";No;No;0,133;Q2;6;13;27;455;6;26;0,10;35,00;28,57;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2015-2025";"History (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26778;21101196745;"Grammars and Sketches of the World's Languages";book series;"23529342";"Brill Academic Publishers";No;No;0,133;Q2;5;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2016, 2018-2020, 2023";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26779;21101170615;"Internationale Forschungen zur Allgemeinen und Vergleichenden Literaturwissenschaft";book series;"09296999";"Brill: Rodopi";No;No;0,133;Q2;11;1;47;444;0;1;0,00;444,00;100,00;0;Netherlands;Western Europe;"Brill: Rodopi";"1993-2022, 2024-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +26780;21101040216;"Internationale Neerlandistiek";journal;"18769071, 22145729";"Amsterdam University Press";Yes;Yes;0,133;Q2;3;18;46;512;9;46;0,21;28,44;40,91;0;Netherlands;Western Europe;"Amsterdam University Press";"2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +26781;21101198444;"Islamic Literatures: Texts and Studies";book series;"22146601";"Brill Academic Publishers";No;No;0,133;Q2;4;0;26;0;1;1;0,04;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017, 2020, 2023-2024";"Literature and Literary Theory (Q2); Religious Studies (Q3)";"Arts and Humanities" +26782;5700163717;"Japan Forum";journal;"1469932X, 09555803";"Routledge";No;No;0,133;Q2;24;42;77;2043;29;75;0,33;48,64;35,71;0;United Kingdom;Western Europe;"Routledge";"1989-2003, 2005-2026";"History (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26783;21100428408;"Japanese Visual Culture";book series;"22102868";"Brill Academic Publishers";No;No;0,133;Q2;2;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2015, 2019-2020, 2023";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26784;21101042995;"Jordan Journal for History and Archaeology";journal;"19969546";"Deanship of Academic Research, The University of Jordan";No;No;0,133;Q2;3;24;71;1215;11;71;0,06;50,63;16,13;0;Jordan;Middle East;"Deanship of Academic Research, The University of Jordan";"2019-2025";"History (Q2); Archeology (arts and humanities) (Q3)";"Arts and Humanities" +26785;5800226359;"Journal of the Society of Architectural Historians";journal;"00379808";"University of California Press";No;No;0,133;Q2;23;15;71;1963;21;63;0,20;130,87;52,94;0;United States;Northern America;"University of California Press";"1970-1995, 2002-2012, 2014-2026";"History (Q2); Visual Arts and Performing Arts (Q2); Architecture (Q3)";"Arts and Humanities; Engineering" +26786;21101147942;"Languages of Asia";book series;"24522961";"Brill Academic Publishers";No;No;0,133;Q2;4;0;56;0;10;1;0,30;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2010, 2013-2014, 2016-2024, 2026";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26787;16992;"Literature and Medicine";journal;"02789671, 10806571";"Johns Hopkins University Press";No;No;0,133;Q2;25;5;86;0;19;78;0,20;0,00;80,00;0;United States;Northern America;"Johns Hopkins University Press";"1986-2009, 2011-2025";"Literature and Literary Theory (Q2); Health (social science) (Q4)";"Arts and Humanities; Social Sciences" +26788;21101175398;"Ludus";book series;"13850393";"Brill Academic Publishers";No;No;0,133;Q2;8;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1996-1997, 1999, 2001-2002, 2004, 2007, 2012, 2014, 2018, 2021, 2024";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); History (Q3)";"Arts and Humanities" +26789;21101199219;"Mediterranean Art Histories";book series;"22133399";"Brill Academic Publishers";No;No;0,133;Q2;4;0;26;0;4;1;0,29;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014, 2016, 2021-2023";"Visual Arts and Performing Arts (Q2); Archeology (arts and humanities) (Q3); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +26790;21100407160;"Mittellateinische Studien und Texte";book series;"00769754";"Brill Academic Publishers";No;No;0,133;Q2;2;0;2;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2017, 2019-2020, 2022, 2024";"Literature and Literary Theory (Q2); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26791;21100419360;"Monumenta Graeca et Romana";book series;"01698850";"Brill Academic Publishers";No;No;0,133;Q2;5;16;1;1294;0;1;0,00;80,88;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2011, 2013, 2015, 2020-2021, 2024-2026";"Classics (Q2); Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Museology (Q3)";"Arts and Humanities; Social Sciences" +26792;21100927153;"Music, Sound and the Moving Image";journal;"17530776, 17530768";"Liverpool University Press";No;No;0,133;Q2;5;6;25;346;6;23;0,18;57,67;66,67;0;United Kingdom;Western Europe;"Liverpool University Press";"2018-2025";"Visual Arts and Performing Arts (Q2); Music (Q3); Communication (Q4); Computer Graphics and Computer-Aided Design (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +26793;21101181768;"Nature, Culture and Literature";book series;"15724344";"Brill Academic Publishers";No;No;0,133;Q2;4;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2010, 2012-2015, 2018-2020, 2023, 2026";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26794;21101294313;"NIKI Studies in Netherlandish-Italian Art History";book series;"25425382";"Brill Academic Publishers";No;No;0,133;Q2;2;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2021, 2024";"Visual Arts and Performing Arts (Q2); History (Q3)";"Arts and Humanities" +26795;6000152898;"Performance Research";journal;"13528165";"Taylor and Francis Ltd.";No;No;0,133;Q2;26;0;393;0;77;373;0,16;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2024";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +26796;21100408160;"Philo of Alexandria Commentary Series";book series;"1570095X";"Brill Academic Publishers";No;No;0,133;Q2;3;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011, 2013, 2019, 2021, 2024";"Classics (Q2); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +26797;21101119578;"Philological Class";journal;"20712405, 26585235";"Ural State Pedagogical University";Yes;Yes;0,133;Q2;4;88;253;2083;25;252;0,08;23,67;75,00;0;Russian Federation;Eastern Europe;"Ural State Pedagogical University";"2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +26798;21101145394;"Philological Encounters Monographs";book series;"24519200";"Brill Academic Publishers";No;No;0,133;Q2;1;0;11;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2018, 2022-2023";"Literature and Literary Theory (Q2); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26799;21100455427;"Renaissance Society of America";book series;"22123105, 22123091";"Brill Academic Publishers";No;No;0,133;Q2;7;0;57;0;18;1;0,31;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012, 2014, 2016-2024, 2026";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +26800;24313;"Revista de Historia Americana y Argentina";journal;"05565960, 23141549";"Universidad Nacional de Cuyo";Yes;Yes;0,133;Q2;2;19;52;693;5;50;0,09;36,47;44,44;0;Argentina;Latin America;"Universidad Nacional de Cuyo";"1980, 1983, 1985, 2002, 2021-2025";"History (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26801;16060;"Shakespeare Studies";journal;"05829399";"Associated University Presses";No;No;0,133;Q2;14;0;13;0;11;1;0,00;0,00;0,00;0;United States;Northern America;"Associated University Presses";"1979, 1983, 2002-2013, 2018-2019, 2021-2022";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26802;21101155960;"St Andrews Studies in Reformation History";book series;"24684317";"Brill Academic Publishers";No;No;0,133;Q2;3;1;40;467;8;1;0,11;467,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2023, 2025";"Visual Arts and Performing Arts (Q2); History (Q3)";"Arts and Humanities" +26803;21101170612;"Studia Imagologica";book series;"22114181, 09274065";"Brill Academic Publishers";No;No;0,133;Q2;8;1;37;185;8;1;0,07;185,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1992, 1994-1996, 2001, 2003, 2006-2007, 2009-2014, 2018-2019, 2021-2023, 2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26804;21101290587;"Studies in Art and Materiality";book series;"24682977";"Brill Academic Publishers";No;No;0,133;Q2;4;1;33;468;6;1;0,22;468,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019, 2021-2023, 2025";"Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3); History (Q3)";"Arts and Humanities" +26805;21101170616;"Studies in Netherlandish Art and Cultural History";book series;"18729932";"Brill Academic Publishers";No;No;0,133;Q2;2;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2011, 2015, 2017, 2019-2020, 2022";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +26806;21100442224;"Studies in Persian Cultural History";book series;"22103554";"Brill Academic Publishers";No;No;0,133;Q2;4;16;1;939;0;1;0,00;58,69;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2012, 2014, 2016, 2018, 2020-2021, 2023, 2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +26807;21101181975;"Studies on Performing Arts and Literature of the Islamicate World";book series;"22146563";"Brill Academic Publishers";No;No;0,133;Q2;2;1;1;208;0;1;0,00;208,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2016, 2018-2020, 2022, 2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +26808;16600154709;"Theatre Research in Canada-Recherches Theatrales au Canada";journal;"11961198";"University of Toronto Press";No;No;0,133;Q2;8;9;60;256;13;48;0,03;28,44;44,44;0;Canada;Northern America;"University of Toronto Press";"2002-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +26809;21101047450;"Transfer (Spain)";journal;"18865542";"CRET (University of Barcelona)";Yes;Yes;0,133;Q2;3;16;41;438;9;38;0,30;27,38;78,57;0;Spain;Western Europe;"CRET (University of Barcelona)";"2019-2026";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26810;16100154768;"War in History";journal;"09683445, 14770385";"SAGE Publications Ltd";No;No;0,133;Q2;25;41;77;2536;20;76;0,28;61,85;7,14;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1994-2026";"History (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26811;21101170617;"Women Writers in History";book series;"23528354";"Brill: Rodopi";No;No;0,133;Q2;3;0;13;0;1;1;0,08;0,00;0,00;0;Netherlands;Western Europe;"Brill: Rodopi";"2014, 2018, 2020, 2022-2023";"Literature and Literary Theory (Q2); History (Q3)";"Arts and Humanities" +26812;21101174249;"Word and Music Studies";book series;"15660958";"Brill: Rodopi";No;No;0,133;Q2;8;0;37;0;1;1;0,03;0,00;0,00;0;Netherlands;Western Europe;"Brill: Rodopi";"1999-2001, 2004-2006, 2008, 2010-2011, 2014-2017, 2019, 2022-2024";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Music (Q3)";"Arts and Humanities" +26813;21101176862;"Yearbook of Ancient Greek Epic";book series;"2405450X";"Brill Academic Publishers";No;No;0,133;Q2;5;0;6;0;1;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2022";"Classics (Q2); Literature and Literary Theory (Q2)";"Arts and Humanities" +26814;21101032300;"Advances in Science, Technology and Innovation";book series;"25228714, 25228722";"Springer International Publishing";No;No;0,133;Q3;25;1790;4142;50558;1420;2460;0,36;28,24;38,19;1;Switzerland;Western Europe;"Springer International Publishing";"2018-2026";"Architecture (Q3); Environmental Chemistry (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Engineering; Environmental Science" +26815;21100406879;"African Social Studies Series";book series;"15681203";"Brill Academic Publishers";No;No;0,133;Q3;11;1;16;280;2;1;0,13;280,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2009-2013, 2015, 2017-2020, 2023-2026";"Anthropology (Q3); Education (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26816;21100407305;"Afrika-Studiecentrum Series";book series;"15709310";"Brill Academic Publishers";No;No;0,133;Q3;11;1;3;202;0;1;0,00;202,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2013, 2015, 2018-2020, 2022-2023, 2025";"Anthropology (Q3); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26817;21100407684;"Ancient Magic and Divination";book series;"15667952";"Brill Academic Publishers";No;No;0,133;Q3;8;0;11;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2011, 2013, 2016-2021, 2023-2024";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +26818;18365;"Anglo-Saxon England";journal;"14740532, 02636751";"Cambridge University Press";No;No;0,133;Q3;27;0;1;0;0;1;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1972-2010, 2012-2021, 2023-2024";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +26819;21101277844;"Anselm Studies and Texts";book series;"24684333";"Brill Academic Publishers";No;No;0,133;Q3;1;24;28;1202;1;1;0,00;50,08;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2018, 2020, 2022, 2024-2025";"History (Q3)";"Arts and Humanities" +26820;21101040669;"Argumentation in Context";book series;"18776884";"John Benjamins Publishing Company";No;No;0,133;Q3;1;0;15;0;2;1;0,07;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2024";"Linguistics and Language (Q3); Communication (Q4)";"Social Sciences" +26821;21100408148;"Aristoteles Semitico-Latinus";book series;"09274103";"Brill Academic Publishers";No;No;0,133;Q3;4;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2003, 2010, 2012, 2016, 2019-2020, 2023";"Philosophy (Q3)";"Arts and Humanities" +26822;21100253181;"Arti Musices";journal;"05875455, 18489303";"Hrvatsko Muzikolosko Drustvo";Yes;Yes;0,133;Q3;4;7;55;372;4;51;0,11;53,14;75,00;0;Croatia;Eastern Europe;"Hrvatsko Muzikolosko Drustvo";"2008-2025";"Music (Q3)";"Arts and Humanities" +26823;21100425319;"Brill's Series in the History of the Environment";book series;"18766595";"Brill Academic Publishers";No;No;0,133;Q3;4;15;14;744;1;1;0,07;49,60;0,00;0;United States;Northern America;"Brill Academic Publishers";"2010, 2013, 2015, 2017, 2024-2025";"History (Q3); Environmental Science (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Environmental Science; Social Sciences" +26824;21101196752;"Brill's Studies in Catholic Theology";book series;"23525746";"Brill Academic Publishers";No;No;0,133;Q3;2;0;12;0;2;1;0,17;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2017, 2019-2020, 2023-2024";"Religious Studies (Q3)";"Arts and Humanities" +26825;21101148504;"Brill's Studies in Maritime History";book series;"24054917";"Brill Academic Publishers";No;No;0,133;Q3;3;2;36;1076;8;1;0,22;538,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2019, 2023-2025";"History (Q3); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +26826;21100407719;"Brill's Studies in South and Southwest Asian Languages";book series;"18774083";"Brill Academic Publishers";No;No;0,133;Q3;5;1;1;94;0;1;0,00;94,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2013, 2017-2020, 2022, 2025";"Linguistics and Language (Q3)";"Social Sciences" +26827;16000154735;"Bulletin de la Societe Prehistorique Francaise";journal;"02497638";"Societe Prehistorique Francaise";No;No;0,133;Q3;27;19;39;592;7;1;0,10;31,16;12,50;0;France;Western Europe;"Societe Prehistorique Francaise";"2002-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +26828;21101284716;"Byzantina Australiensia";book series;"07253079, 25432281";"Brill Academic Publishers";No;No;0,133;Q3;5;0;12;0;1;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2018, 2021-2022, 2024";"History (Q3)";"Arts and Humanities" +26829;21101227199;"Ca' Foscari Japanese Studies: Linguistics and Language Education";book series;"27242285, 27241203";"Edizioni Ca' Foscari";No;No;0,133;Q3;2;0;2;0;0;1;0,00;0,00;0,00;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2020-2022, 2024";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +26830;21100860759;"Caplletra";journal;"23867159, 02148188";"Institut Interuniversitari de Filologia Valenciana (IIFV)";Yes;Yes;0,133;Q3;5;29;71;1046;12;71;0,20;36,07;67,86;0;Spain;Western Europe;"Institut Interuniversitari de Filologia Valenciana (IIFV)";"2018-2025";"Linguistics and Language (Q3)";"Social Sciences" +26831;21101156477;"Catholic Christendom, 1300-1700";book series;"24684279";"Brill Academic Publishers";No;No;0,133;Q3;7;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2018, 2024";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +26832;21101185618;"Cognitive Linguistic Studies in Cultural Contexts";book series;"18798047";"John Benjamins Publishing Company";No;No;0,133;Q3;5;0;14;0;17;1;1,21;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2021, 2024";"Linguistics and Language (Q3)";"Social Sciences" +26833;21101147938;"Contemporary Psychoanalytic Studies";book series;"15714977";"Brill Academic Publishers";No;No;0,133;Q3;3;1;22;122;4;1;0,00;122,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2004-2006, 2008-2013, 2015-2019, 2021-2023, 2025";"Cultural Studies (Q3)";"Social Sciences" +26834;21101198442;"Critical Cultural Studies of Childhood";book series;"2731636X, 27316378";"Palgrave Macmillan";No;No;0,133;Q3;8;0;72;0;36;1;0,50;0,00;0,00;0;United Kingdom;Western Europe;"Palgrave Macmillan";"2006, 2009-2012, 2014-2016, 2018-2019, 2023-2024";"Cultural Studies (Q3); Education (Q4); Life-span and Life-course Studies (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26835;21101197411;"Critical Plant Studies";book series;"22130659";"Brill Rodopi";No;No;0,133;Q3;4;23;2;821;1;1;0,50;35,70;0,00;0;Netherlands;Western Europe;"Brill Rodopi";"2013, 2016, 2018-2020, 2024-2025";"Cultural Studies (Q3); History and Philosophy of Science (Q3)";"Arts and Humanities; Social Sciences" +26836;12100157018;"Cuadernos de Economia (Colombia)";journal;"22484337, 01214772";"Universidad Nacional de Colombia";Yes;Yes;0,133;Q3;14;46;82;2124;23;82;0,27;46,17;45,45;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2007-2025";"Arts and Humanities (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +26837;21101284645;"Cultural Interactions in the Mediterranean";book series;"24054771";"Brill Academic Publishers";No;No;0,133;Q3;8;1;27;1092;3;1;0,00;1092,00;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2018-2019, 2022, 2024-2025";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +26838;21101175747;"Currents of Encounter";book series;"09236201";"Brill: Rodopi";No;No;0,133;Q3;7;1;1;200;0;1;0,00;200,00;0,00;0;Netherlands;Western Europe;"Brill: Rodopi";"1989-1992, 1994-1997, 1999-2000, 2002-2008, 2010-2013, 2015-2022, 2025-2026";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +26839;21100902943;"Discourse Approaches to Politics, Society and Culture";book series;"15699463";"John Benjamins Publishing Company";No;No;0,133;Q3;9;13;65;878;49;1;0,12;67,54;100,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2018-2023, 2025";"Linguistics and Language (Q3); Communication (Q4); Gender Studies (Q4); Social Psychology (Q4); Sociology and Political Science (Q4)";"Psychology; Social Sciences" +26840;21101163254;"Early American History Series";book series;"18770215";"Brill Academic Publishers";No;No;0,133;Q3;4;0;32;0;3;1;0,17;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2014, 2016-2018, 2020, 2022-2023";"History (Q3)";"Arts and Humanities" +26841;21100425845;"Early Americas: History and Culture";book series;"18753264";"Brill Academic Publishers";No;No;0,133;Q3;5;0;27;0;2;1;0,14;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2012, 2014, 2017, 2019, 2022-2024";"Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +26842;21101264440;"East and West";book series;"24679704";"Brill Academic Publishers";No;No;0,133;Q3;2;0;106;0;3;1;0,02;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2024";"Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +26843;18354;"EBU Technical Review";trade journal;"16091469, 10196587";"European Broadcasting Union";No;No;0,133;Q3;16;1;1;4;0;1;0,00;4,00;0,00;0;Switzerland;Western Europe;"European Broadcasting Union";"1970, 1972-1991, 1995-2017, 2019-2022, 2025";"Media Technology (Q3); Electrical and Electronic Engineering (Q4)";"Engineering" +26844;21100407234;"Education and Society in the Middle Ages and Renaissance";book series;"09266070";"Brill Academic Publishers";No;No;0,133;Q3;5;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2017, 2019, 2021, 2023";"Cultural Studies (Q3); History (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +26845;5800207698;"English Linguistics";journal;"09183701, 18843107";"English Linguistic Society of Japan";No;No;0,133;Q3;10;0;2;0;0;1;0,00;0,00;0,00;0;Japan;Asiatic Region;"English Linguistic Society of Japan";"1984-2022";"Linguistics and Language (Q3)";"Social Sciences" +26846;85152;"Ethnologia Scandinavica";journal;"03489698";"";No;No;0,133;Q3;6;0;30;0;6;28;0,21;0,00;0,00;0;Sweden;Western Europe;"";"1984, 2008-2011, 2019-2024";"Anthropology (Q3); Cultural Studies (Q3)";"Social Sciences" +26847;21100407615;"European Expansion and Indigenous Response";book series;"18738974";"Brill Academic Publishers";No;No;0,133;Q3;5;21;16;2163;1;1;0,07;103,00;25,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2012, 2014-2023, 2025";"History (Q3); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +26848;21101181771;"Explokart Studies in the History of Cartography";book series;"24683019";"Brill Academic Publishers";No;No;0,133;Q3;1;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2019, 2021-2022";"Arts and Humanities (miscellaneous) (Q3); History (Q3)";"Arts and Humanities" +26849;21101290595;"Facing Contemporary Terrorism";book series;"27491188";"Walter de Gruyter GmbH";No;No;0,133;Q3;1;0;7;0;1;1;0,14;0,00;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2021, 2023-2024";"Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26850;21101070218;"Figurative Thought and Language";book series;"24056944";"John Benjamins Publishing Company";No;No;0,133;Q3;10;0;29;0;13;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2017-2018, 2022-2023";"Linguistics and Language (Q3)";"Social Sciences" +26851;21100812553;"Filosofia Theoretica";journal;"22768386, 24085987";"Calabar School of Philosophy";No;No;0,133;Q3;16;14;78;515;33;77;0,41;36,79;23,08;0;South Africa;Africa;"Calabar School of Philosophy";"2014-2025";"Cultural Studies (Q3); Philosophy (Q3); Religious Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26852;19900192583;"Footprint";journal;"18751490, 18751504";"TU Delft";Yes;Yes;0,133;Q3;12;16;72;642;14;63;0,24;40,13;24,00;0;Netherlands;Western Europe;"TU Delft";"2007-2025";"Architecture (Q3); Philosophy (Q3)";"Arts and Humanities; Engineering" +26853;21101148500;"Gonda Indological Studies";book series;"13823442";"Brill Academic Publishers";No;No;0,133;Q3;5;14;1;1005;0;1;0,00;71,79;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1995-1997, 2000-2001, 2004-2005, 2007, 2011, 2014, 2018-2020, 2022, 2025";"Cultural Studies (Q3); Linguistics and Language (Q3)";"Social Sciences" +26854;21100426620;"Handbook of Oriental Studies. Section 2, South Asia";book series;"01699377";"Brill Academic Publishers";No;No;0,133;Q3;5;0;2;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2009, 2011-2012, 2014, 2016-2018, 2020, 2022-2023";"Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +26855;21100407168;"History of Science and Medicine Library";book series;"18720684";"Brill Academic Publishers";No;No;0,133;Q3;10;0;1;0;1;1;1,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2017, 2019, 2023";"History (Q3); History and Philosophy of Science (Q3); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +26856;21101148501;"Iberian Religious World";book series;"22139141";"Brill Academic Publishers";No;No;0,133;Q3;3;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2016, 2018-2020, 2022";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +26857;21101306752;"ICOFOM Study Series";journal;"23064161, 23091290";"";No;No;0,133;Q3;4;18;51;590;13;43;0,20;32,78;75,00;0;France;Western Europe;"";"2021-2025";"Museology (Q3)";"Arts and Humanities" +26858;21100406913;"International Studies in Sociology and Social Anthropology";book series;"00748684";"Brill Academic Publishers";No;No;0,133;Q3;9;3;29;1683;10;1;0,14;561,00;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"1969, 2007-2012, 2014-2015, 2017-2022, 2024-2026";"Anthropology (Q3); Sociology and Political Science (Q4)";"Social Sciences" +26859;21100408135;"Islam in Africa";book series;"15703754";"Brill Academic Publishers";No;No;0,133;Q3;2;0;10;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2009, 2011-2012, 2014-2016, 2018, 2020, 2023-2024";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +26860;21100868860;"Issues in Hispanic and Lusophone Linguistics";book series;"22133887";"John Benjamins Publishing Company";No;No;0,133;Q3;9;0;48;0;27;1;0,71;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2014, 2018-2024";"Linguistics and Language (Q3)";"Social Sciences" +26861;21100435898;"Jewish Latin America";book series;"22110968, 22110976";"Brill Academic Publishers";No;No;0,133;Q3;4;12;33;513;1;1;0,03;42,75;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2016, 2018-2021, 2024-2025";"Cultural Studies (Q3); History (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26862;21101210863;"Journal of Advocacy, Research and Education";journal;"24104981, 25081055";"Centre for Behaviour and Wellness Advocacy";No;No;0,133;Q3;4;15;65;621;26;55;0,44;41,40;39,62;0;Ghana;Africa;"Centre for Behaviour and Wellness Advocacy";"2020-2025";"Cultural Studies (Q3); Education (Q4); Health (social science) (Q4)";"Social Sciences" +26863;21101232976;"Knowledge Hegemonies in the Early Modern World";book series;"27241394, 27241572";"Fondazione Universita Ca Foscari";No;No;0,133;Q3;1;0;2;0;0;1;0,00;0,00;0,00;0;Italy;Western Europe;"Fondazione Universita Ca Foscari";"2020, 2023";"History and Philosophy of Science (Q3); Philosophy (Q3); Physics and Astronomy (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Physics and Astronomy; Social Sciences" +26864;5700169140;"Kodikas/ Code";journal;"01710834";"Narr Francke Verlag";No;No;0,133;Q3;2;0;1;0;0;1;0,00;0,00;0,00;0;Germany;Western Europe;"Narr Francke Verlag";"2011-2021, 2024";"Linguistics and Language (Q3); Communication (Q4)";"Social Sciences" +26865;21100903064;"Language Acquisition and Language Disorders";book series;"09250123";"John Benjamins Publishing Company";No;No;0,133;Q3;6;0;41;0;14;1;0,14;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2001, 2018-2024";"Linguistics and Language (Q3); Developmental and Educational Psychology (Q4); Speech and Hearing (Q4)";"Health Professions; Psychology; Social Sciences" +26866;21101037322;"Latin-American Journal of Discourse Studies";journal;"24479543";"Latinamerican Association of Discourse Studies";Yes;Yes;0,133;Q3;4;20;61;679;12;56;0,11;33,95;53,33;0;Brazil;Latin America;"Latinamerican Association of Discourse Studies";"2019-2025";"Linguistics and Language (Q3); Communication (Q4)";"Social Sciences" +26867;21101271745;"Legal Transformation in Muslim Societies";journal;"3029097X, 30290961";"Revival Press";No;No;0,133;Q3;1;28;27;1110;6;27;0,22;39,64;40,91;0;United Kingdom;Western Europe;"Revival Press";"2024-2025";"Religious Studies (Q3); Law (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26868;21101147941;"Leonardo Studies";book series;"23528052";"Brill Academic Publishers";No;No;0,133;Q3;2;1;1;220;0;1;0,00;220,00;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2019, 2023, 2025";"Cultural Studies (Q3); History (Q3); History and Philosophy of Science (Q3)";"Arts and Humanities; Social Sciences" +26869;21100407612;"Library of Economic History";book series;"18773206";"Brill Academic Publishers";No;No;0,133;Q3;6;2;13;123;2;1;0,00;61,50;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2010, 2012-2015, 2017-2019, 2021-2022, 2025";"History (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Arts and Humanities; Economics, Econometrics and Finance" +26870;21101121672;"London Oriental and African Language Library";book series;"13823485";"John Benjamins Publishing Company";No;No;0,133;Q3;0;0;2;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2022";"Linguistics and Language (Q3)";"Social Sciences" +26871;21101291006;"Maimonides Library for Philosophy and Religion";book series;"26668777";"Brill Academic Publishers";No;No;0,133;Q3;1;8;53;788;2;1;0,04;98,50;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021, 2023-2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +26872;21100457421;"Medieval Franciscans";book series;"15726991";"Brill Academic Publishers";No;No;0,133;Q3;6;12;35;1247;2;1;0,06;103,92;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2009, 2012-2013, 2015-2017, 2019-2020, 2023-2025";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +26873;21101066327;"MedUNAB";journal;"01237047, 23824603";"Universidad Autonoma de Bucaramanga";Yes;Yes;0,133;Q3;6;8;101;190;18;86;0,04;23,75;70,00;0;Colombia;Latin America;"Universidad Autonoma de Bucaramanga";"2019-2025";"Nurse Assisting (Q3); Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4); Psychology (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine; Nursing; Psychology" +26874;21100406786;"National Cultivation of Culture";book series;"18765645";"Brill Academic Publishers";No;No;0,133;Q3;8;0;28;0;10;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2013, 2015-2022, 2024, 2026";"Anthropology (Q3); Cultural Studies (Q3)";"Social Sciences" +26875;21101197413;"New Perspectives on the Cold War";book series;"24522260";"Brill Academic Publishers";No;No;0,133;Q3;4;13;13;742;1;1;0,08;57,08;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2018-2021, 2023-2026";"History (Q3); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +26876;21100897528;"Origini";book series;"04746805";"Edizioni Quasar";No;No;0,133;Q3;7;0;29;0;3;24;0,09;0,00;0,00;0;Italy;Western Europe;"Edizioni Quasar";"2017-2024";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +26877;21100406832;"Oudtestamentische Studien, Old Testament Studies";book series;"01697226";"Brill Academic Publishers";No;No;0,133;Q3;7;0;4;0;1;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1991, 2007, 2009-2020, 2022, 2024, 2026";"History (Q3); Linguistics and Language (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +26878;21101292835;"Perspectives on Islamicate South Asia";book series;"26660202";"Brill Academic Publishers";No;No;0,133;Q3;1;1;1;348;0;1;0,00;348,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021, 2024-2025";"Cultural Studies (Q3); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26879;21100426042;"Philosophical Studies in Science and Religion";book series;"18778542";"Brill Academic Publishers";No;No;0,133;Q3;4;13;1;693;0;1;0,00;53,31;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2011, 2015, 2017-2018, 2021, 2024-2025";"History and Philosophy of Science (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +26880;21101038809;"Philosophy and Politics - Critical Explorations";book series;"23528389, 23528370";"Springer Science and Business Media B.V.";No;No;0,133;Q3;8;2;165;784;43;1;0,29;392,00;0,00;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2016-2025";"Philosophy (Q3); Law (Q4); Political Science and International Relations (Q4); Public Administration (Q4)";"Arts and Humanities; Social Sciences" +26881;21100425874;"Philosophy of History and Culture";book series;"09226001";"Brill Academic Publishers";No;No;0,133;Q3;7;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2009, 2011, 2013-2014, 2016-2018, 2021, 2024";"Philosophy (Q3)";"Arts and Humanities" +26882;21101292830;"Photography in Asia";book series;"24057800";"Brill Academic Publishers";No;No;0,133;Q3;0;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2023";"History (Q3)";"Arts and Humanities" +26883;21101289836;"Prognostication in History";book series;"25894404";"Brill Academic Publishers";No;No;0,133;Q3;3;0;28;0;6;1;0,31;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2024";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +26884;5600155213;"Religion and the Social Order";book series;"10615210";"Brill Academic Publishers";No;No;0,133;Q3;11;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2015, 2020-2021, 2024, 2026";"Religious Studies (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26885;26755;"Review of Metaphysics";journal;"15494853, 00346632";"Philosophy Education Society, Inc.";No;No;0,133;Q3;26;17;52;1665;22;52;0,12;97,94;11,76;0;United States;Northern America;"Philosophy Education Society, Inc.";"1975, 1992, 1996-2025";"Philosophy (Q3)";"Arts and Humanities" +26886;21100427160;"Rulers and Elites";book series;"22114629, 22114610";"Brill Academic Publishers";No;No;0,133;Q3;13;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011, 2013-2014, 2016-2021, 2023";"History (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +26887;21101147940;"Scientific and Learned Cultures and Their Institutions";book series;"23521325";"Brill Academic Publishers";No;No;0,133;Q3;6;1;10;1090;2;1;0,20;1090,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2021, 2023-2025";"History (Q3); History and Philosophy of Science (Q3)";"Arts and Humanities" +26888;21101157251;"Selected Works of Juan Luis Vives";book series;"09210717";"Brill Academic Publishers";No;No;0,133;Q3;0;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1987, 1989, 1991, 1996, 1998, 2000, 2006, 2012, 2017-2019, 2022";"Arts and Humanities (miscellaneous) (Q3); History (Q3)";"Arts and Humanities" +26889;21100856758;"Series on Contemporary China";book series;"17930847";"World Scientific";No;No;0,133;Q3;3;0;2;0;0;1;0,00;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2017-2021, 2023";"Anthropology (Q3); Cultural Studies (Q3); History (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +26890;21100425312;"Social and Critical Theory";book series;"1572459X";"Brill Academic Publishers";No;No;0,133;Q3;13;4;11;390;1;1;0,09;97,50;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2009-2015, 2017-2021, 2023, 2025-2026";"Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26891;21100836285;"Sociologia e Antropologia";journal;"22383875";"Universidade Federal do Rio de Janeiro";Yes;Yes;0,133;Q3;8;37;116;1802;19;116;0,15;48,70;48,98;0;Brazil;Latin America;"Universidade Federal do Rio de Janeiro";"2017-2025";"Anthropology (Q3); Cultural Studies (Q3); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26892;21100902322;"Studia Gilsoniana";journal;"23000066, 25770314";"International Etienne Gilson Society";Yes;Yes;0,133;Q3;5;34;75;1073;10;73;0,16;31,56;32,35;0;United States;Northern America;"International Etienne Gilson Society";"2018-2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +26893;21100406811;"Studia Judaeoslavica";book series;"18766153";"Brill Academic Publishers";No;No;0,133;Q3;5;1;2;225;0;1;0,00;225,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009, 2012-2014, 2016-2017, 2020, 2022-2023, 2025";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +26894;21100409601;"Studien und Texte zur Geistesgeschichte des Mittelalters";book series;"01698028";"Brill Academic Publishers";No;No;0,133;Q3;11;17;1;1759;0;1;0,00;103,47;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2020, 2024-2025";"History (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +26895;21100868884;"Studies in Chinese Language and Discourse";book series;"18795382";"John Benjamins Publishing Company";No;No;0,133;Q3;3;0;2;0;2;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2018-2022";"Linguistics and Language (Q3)";"Social Sciences" +26896;21100406934;"Studies in Global Social History";book series;"18746705";"Brill Academic Publishers";No;No;0,133;Q3;12;16;103;1729;21;1;0,17;108,06;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2025";"Cultural Studies (Q3); History (Q3); Demography (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +26897;21101053574;"Studies in Language Variation";book series;"18729592";"John Benjamins Publishing Company";No;No;0,133;Q3;7;9;25;490;31;1;0,18;54,44;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2012, 2019-2025";"Linguistics and Language (Q3); Communication (Q4)";"Social Sciences" +26898;21100427033;"Studies in Reformed Theology";book series;"15714799";"Brill Academic Publishers";No;No;0,133;Q3;5;22;36;1945;3;1;0,07;88,41;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2008, 2010-2016, 2018-2023, 2025";"Religious Studies (Q3)";"Arts and Humanities" +26899;21100425766;"Studies in Systematic Theology";book series;"18761518";"Brill Academic Publishers";No;No;0,133;Q3;3;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2016, 2019-2021, 2024, 2026";"Philosophy (Q3); Religious Studies (Q3); Mechanics of Materials (Q4)";"Arts and Humanities; Engineering" +26900;21100406932;"Studies in the History and Society of the Maghrib";book series;"18779808";"Brill Academic Publishers";No;No;0,133;Q3;2;0;3;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2013, 2015-2018, 2021-2022, 2024, 2026";"Anthropology (Q3); Cultural Studies (Q3); History (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26901;21100427145;"Studies in Theology and Religion";book series;"1566208X";"Brill Academic Publishers";No;No;0,133;Q3;7;17;42;1211;0;1;0,00;71,24;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2018, 2020, 2022-2026";"Religious Studies (Q3)";"Arts and Humanities" +26902;21101196743;"Supplements to the Textual History of the Bible";book series;"22145958";"Brill Academic Publishers";No;No;0,133;Q3;6;1;12;917;2;1;0,17;917,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2019-2020, 2023-2025";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +26903;5800207789;"Suvremena Lingvistika";journal;"05860296";"Croatian Philological Society";Yes;Yes;0,133;Q3;8;10;35;514;12;32;0,35;51,40;92,86;0;Croatia;Eastern Europe;"Croatian Philological Society";"2011-2025";"Linguistics and Language (Q3)";"Social Sciences" +26904;21100406821;"Texts and Editions for New Testament Study";book series;"15747085";"Brill Academic Publishers";No;No;0,133;Q3;8;0;33;0;7;1;0,21;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2005, 2007, 2010, 2012-2014, 2018-2021, 2023-2024, 2026";"Cultural Studies (Q3); History (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +26905;21101292833;"Theory Workshop";book series;"25901869";"Brill Academic Publishers";No;No;0,133;Q3;0;1;1;651;0;1;0,00;651,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021, 2023, 2025";"Philosophy (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26906;21100437632;"Time, Astronomy, and Calendars";book series;"22116338, 2211632X";"Brill Academic Publishers";No;No;0,133;Q3;7;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012, 2014-2016, 2019-2021, 2023";"History and Philosophy of Science (Q3); Philosophy (Q3)";"Arts and Humanities" +26907;21100463586;"Transcultural Studies";journal;"21916411";"Universitaet Heidelberg";Yes;Yes;0,133;Q3;9;0;23;0;4;20;0,05;0,00;0,00;0;Germany;Western Europe;"Universitaet Heidelberg";"2015-2024";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +26908;21101145385;"Utrecht Studies in Language and Communication";book series;"09277706";"Brill Academic Publishers";No;No;0,133;Q3;12;1;42;324;2;1;0,05;324,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1997-2000, 2003-2005, 2007-2008, 2010, 2012-2014, 2016, 2018-2020, 2022-2025";"Linguistics and Language (Q3); Communication (Q4); Education (Q4)";"Social Sciences" +26909;21101198702;"Verhandelingen van het Koninklijk Instituut voor Taal-, Land- en Volkenkunde";book series;"15721892";"Brill Academic Publishers";No;No;0,133;Q3;4;0;12;0;1;1;0,08;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2021, 2023";"Archeology (arts and humanities) (Q3); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +26910;19400158702;"Water History";journal;"18777236, 18777244";"Springer Science and Business Media B.V.";No;No;0,133;Q3;10;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2009-2014, 2023";"History (Q3); Geography, Planning and Development (Q4); Water Science and Technology (Q4)";"Arts and Humanities; Environmental Science; Social Sciences" +26911;21101147937;"Yearbook of the Research Centre for German and Austrian Exile Studies";book series;"13883720";"Brill Rodopi";No;No;0,133;Q3;6;16;27;294;1;1;0,04;18,38;0,00;0;Netherlands;Western Europe;"Brill Rodopi";"1999-2003, 2005, 2007-2009, 2011-2015, 2017, 2019-2020, 2022-2025";"History (Q3); Demography (Q4)";"Arts and Humanities; Social Sciences" +26912;26532;"Advances in Catalysis";book series;"03600564";"Academic Press Inc.";No;No;0,133;Q4;60;10;36;1144;48;1;0,95;114,40;39,13;0;United States;Northern America;"Academic Press Inc.";"1948, 1950-1960, 1962-1963, 1965-1970, 1972-1973, 1975-1977, 1979-1983, 1985-1987, 1989-1990, 1992-1994, 1996, 1998-2002, 2004, 2006-2007, 2009-2025";"Catalysis (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +26913;25758;"Advances in Heterocyclic Chemistry";book series;"00652725";"Academic Press Inc.";No;No;0,133;Q4;56;19;55;3596;141;1;2,17;189,26;56,52;0;United States;Northern America;"Academic Press Inc.";"1963-2026";"Biochemistry (Q4); Organic Chemistry (Q4); Polymers and Plastics (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry; Materials Science" +26914;5300152530;"Advances in Hospitality and Leisure";book series;"17453542";"Emerald Group Publishing Ltd.";No;No;0,133;Q4;19;16;19;404;17;1;0,89;25,25;38,46;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2004, 2006-2019, 2021, 2023-2026";"Geography, Planning and Development (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Social Sciences" +26915;21100268073;"Advances in Motivation and Achievement";book series;"07497423";"Emerald Group Publishing Ltd.";No;No;0,133;Q4;24;11;8;609;4;1;0,50;55,36;33,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010, 2012, 2014, 2016, 2019, 2021, 2023, 2025-2026";"Applied Psychology (Q4); Social Psychology (Q4)";"Psychology" +26916;19700180820;"Advances in Parallel Computing";book series;"1879808X, 09275452";"Elsevier";No;No;0,133;Q4;22;0;94;0;77;93;1,00;0,00;0,00;0;Netherlands;Western Europe;"Elsevier";"1990, 1992, 1995, 1998, 2004-2005, 2008-2023";"Computer Science (miscellaneous) (Q4)";"Computer Science" +26917;21100406907;"Africa Yearbook";book series;"18729037, 18712525";"Brill Academic Publishers";No;No;0,133;Q4;3;0;57;0;1;1;0,02;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2020, 2022, 2024";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26918;21100406910;"Africa-Europe Group for Interdisciplinary Studies";book series;"15746925";"Brill Academic Publishers";No;No;0,133;Q4;14;7;100;323;43;1;0,11;46,14;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2009-2011, 2013-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26919;21101127316;"AJSP: Reviews and Reports";journal;"23815949, 2381652X";"Wolters Kluwer Health";No;No;0,133;Q4;8;0;58;0;8;51;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Wolters Kluwer Health";"2016-2022";"Pathology and Forensic Medicine (Q4)";"Medicine" +26920;20434;"Ambulatory Surgery";journal;"09666532";"International Association for Ambulatory Surgery";No;No;0,133;Q4;18;14;41;207;6;31;0,09;14,79;52,00;0;United Kingdom;Western Europe;"International Association for Ambulatory Surgery";"1993-2025";"Anesthesiology and Pain Medicine (Q4); Medical and Surgical Nursing (Q4); Surgery (Q4)";"Medicine; Nursing" +26921;21101062809;"Anatolian Journal of Family Medicine";journal;"26305593, 26513455";"Kare Publishing";Yes;No;0,133;Q4;5;20;97;374;19;86;0,23;18,70;51,11;0;Turkey;Middle East;"Kare Publishing";"2018-2025";"Family Practice (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +26922;21100826677;"Applications of NMR Spectroscopy";book series;"24054682, 24054674";"Bentham Science Publishers";No;No;0,133;Q4;4;0;6;0;6;1;0,00;0,00;0,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2015, 2019-2020, 2022";"Atomic and Molecular Physics, and Optics (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Spectroscopy (Q4)";"Chemistry; Medicine; Physics and Astronomy" +26923;19700166616;"Archives of Cardiovascular Diseases Supplements";journal;"18786480, 18786502";"Elsevier Masson s.r.l.";No;No;0,133;Q4;4;0;12;0;0;1;0,00;0,00;0,00;0;France;Western Europe;"Elsevier Masson s.r.l.";"2009-2023";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +26924;21100825849;"Archivio di Studi Urbani e Regionali";journal;"00040177, 19718519";"FrancoAngeli";Yes;No;0,133;Q4;7;10;78;340;22;76;0,29;34,00;66,67;0;Italy;Western Europe;"FrancoAngeli";"2017-2025";"Sociology and Political Science (Q4); Urban Studies (Q4)";"Social Sciences" +26925;21101303302;"Beta";journal;"15043134";"Scandinavian University Press";No;No;0,133;Q4;2;4;17;288;7;16;0,20;72,00;50,00;0;Norway;Western Europe;"Scandinavian University Press";"2021-2025";"Accounting (Q4); Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +26926;21101057637;"Biosalud";journal;"16579550";"Universidad de Caldas";Yes;Yes;0,133;Q4;2;0;1;0;0;1;0,00;0,00;0,00;0;Colombia;Latin America;"Universidad de Caldas";"2019-2020, 2023";"Medicine (miscellaneous) (Q4)";"Medicine" +26927;900147101;"Boissiera";book series;"03732975";"Universite de Geneve";No;No;0,133;Q4;6;0;1;0;1;1;1,00;0,00;0,00;0;Switzerland;Western Europe;"Universite de Geneve";"2005, 2009-2011, 2015-2017, 2024";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +26928;21101181974;"Brill's Asian Law Series";book series;"22146547";"Brill Nijhoff";No;No;0,133;Q4;3;12;12;1186;12;1;1,09;98,83;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"2014-2020, 2022, 2024-2026";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +26929;21101289474;"Buletin Ilmiah Sarjana Teknik Elektro";journal;"26857936, 26859572";"Universitas Ahmad Dahlan";No;No;0,133;Q4;7;72;115;4474;113;115;1,01;62,14;27,62;0;Indonesia;Asiatic Region;"Universitas Ahmad Dahlan";"2021-2025";"Artificial Intelligence (Q4); Electrical and Electronic Engineering (Q4); Information Systems (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Computer Science; Energy; Engineering" +26930;29038;"Cailiao Kexue yu Gongyi/Material Science and Technology";journal;"10050299";"Harbin Institute of Technology";No;No;0,133;Q4;17;62;202;1781;68;202;0,31;28,73;31,42;0;China;Asiatic Region;"Harbin Institute of Technology";"1998, 2000-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +26931;21100839216;"Catalytic Science Series";book series;"23994495, 17931398";"World Scientific";No;No;0,133;Q4;2;0;36;0;5;1;0,18;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2017-2019, 2021-2023";"Catalysis (Q4)";"Chemical Engineering" +26932;21101078107;"Children: Global Posthumanist Perspectives and Materialist Theories";book series;"25233416, 25233408";"Springer Nature";No;No;0,133;Q4;5;1;41;299;16;1;0,00;299,00;0,00;0;Singapore;Asiatic Region;"Springer Nature";"2019-2023, 2025";"Education (Q4); Sociology and Political Science (Q4)";"Social Sciences" +26933;19400157109;"China Nonprofit Review";journal;"18765149, 18765092";"Tsinghua University Press";No;No;0,133;Q4;7;0;5;0;2;5;0,00;0,00;0,00;0;Netherlands;Western Europe;"Tsinghua University Press";"2009-2022";"Economics and Econometrics (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +26934;21101389659;"Chinese Journal of Stroke";journal;"16735765";"Editorial Office of Chinese Journal of Stroke";No;No;0,133;Q4;8;192;628;6122;183;581;0,31;31,89;46,43;0;China;Asiatic Region;"Editorial Office of Chinese Journal of Stroke";"2022-2025";"Cardiology and Cardiovascular Medicine (Q4); Epidemiology (Q4); Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience" +26935;21100286440;"Communication Booknotes Quarterly";journal;"15326896, 10948007";"Taylor and Francis Ltd.";No;No;0,133;Q4;1;0;3;0;0;1;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2022";"Communication (Q4)";"Social Sciences" +26936;21101277850;"Comparative and International Education: Diversity of Voices";book series;"22149880";"Brill Academic Publishers";No;No;0,133;Q4;11;0;58;0;6;1;0,03;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2024";"Education (Q4)";"Social Sciences" +26937;21101019367;"Competition Law Journal";journal;"25165771, 14769085";"Edward Elgar Publishing Ltd.";No;No;0,133;Q4;4;13;61;206;10;61;0,13;15,85;44,44;0;United Kingdom;Western Europe;"Edward Elgar Publishing Ltd.";"2018-2026";"Law (Q4)";"Social Sciences" +26938;21100824045;"Computational and Experimental Methods in Structures";book series;"20449283";"World Scientific";No;No;0,133;Q4;5;0;31;0;8;1;0,36;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2015, 2018, 2022-2024";"Ceramics and Composites (Q4); Civil and Structural Engineering (Q4); Computational Mechanics (Q4); Electronic, Optical and Magnetic Materials (Q4); Mechanical Engineering (Q4)";"Engineering; Materials Science" +26939;4100151528;"Contemporary Studies in Economic and Financial Analysis";book series;"15693759";"Emerald Group Publishing Ltd.";No;No;0,133;Q4;15;68;154;1677;197;1;1,25;24,66;59,09;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2002, 2005-2007, 2009, 2011-2012, 2014, 2016, 2018-2026";"Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +26940;21101037909;"Contemporary Trends and Issues in Science Education";book series;"18780482, 18780784";"Springer Science and Business Media Deutschland GmbH";No;No;0,133;Q4;16;62;180;2642;112;1;0,63;42,61;0,00;0;Netherlands;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2010, 2012, 2014, 2016-2020, 2022-2025";"Education (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26941;21100904665;"Contributions to Management Science";book series;"2197716X, 14311941";"Springer International Publishing";No;No;0,133;Q4;30;219;1032;11079;1126;1;1,26;50,59;0,00;0;Switzerland;Western Europe;"Springer International Publishing";"2005-2026";"Business and International Management (Q4); Management of Technology and Innovation (Q4); Management Science and Operations Research (Q4); Marketing (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences" +26942;21101198588;"Crime and City in History";book series;"24682268";"Brill Academic Publishers";No;No;0,133;Q4;0;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2020-2021, 2024";"Safety Research (Q4); Urban Studies (Q4)";"Social Sciences" +26943;21101281533;"Critical Issues in the Future of Learning and Teaching";book series;"25428721";"Brill Academic Publishers";No;No;0,133;Q4;7;5;103;216;18;1;0,00;43,20;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008, 2010, 2012-2016, 2018-2020, 2022-2023, 2025";"Education (Q4)";"Social Sciences" +26944;21101096646;"De Gruyter Studies in Tourism";book series;"25701657, 25701665";"Walter de Gruyter GmbH";No;No;0,133;Q4;9;54;80;2877;16;1;0,43;53,28;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2019-2022, 2024-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +26945;19700180735;"Developments in Clay Science";book series;"15724352";"Elsevier B.V.";No;No;0,133;Q4;52;16;12;1604;33;1;0,00;100,25;45,45;0;Netherlands;Western Europe;"Elsevier B.V.";"2006, 2011-2013, 2015-2018, 2022, 2024-2025";"Geochemistry and Petrology (Q4); Geology (Q4)";"Earth and Planetary Sciences" +26946;11600153638;"Early Modern Women";journal;"23784776, 19330065";"University of Chicago Press";No;No;0,133;Q4;9;15;49;411;5;15;0,16;27,40;71,43;0;United States;Northern America;"University of Chicago Press";"2010-2011, 2015-2025";"Gender Studies (Q4)";"Social Sciences" +26947;21101186190;"Eastern Ukrainian Medical Journal";journal;"26644231, 26635909";"Sumy State University";Yes;No;0,133;Q4;4;115;205;3796;98;205;0,53;33,01;57,07;0;Ukraine;Eastern Europe;"Sumy State University";"2022-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26948;21101280282;"Educational Futures";book series;"22149872, 22149864";"Brill Academic Publishers";No;No;0,133;Q4;8;0;33;0;5;1;0,15;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2017, 2019-2021, 2023-2024";"Education (Q4)";"Social Sciences" +26949;21100937407;"Environmental Footprints and Eco-Design of Products and Processes";book series;"23457651, 2345766X";"Springer International Publishing";No;No;0,133;Q4;23;40;448;2161;452;1;1,07;54,03;0,00;0;Switzerland;Western Europe;"Springer International Publishing";"2015-2026";"Industrial and Manufacturing Engineering (Q4); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4); Waste Management and Disposal (Q4); Water Science and Technology (Q4)";"Energy; Engineering; Environmental Science" +26950;21100407747;"Erik Castren Institute Monographs on International Law and Human Rights";book series;"15682765";"Brill Academic Publishers";No;No;0,133;Q4;2;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2010-2015, 2022";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +26951;21101371015;"European Competition Law Review";journal;"01443054, 27541711";"Thomson Reuters";No;No;0,133;Q4;3;121;363;3499;31;1;0,09;28,92;50,00;0;United Kingdom;Western Europe;"Thomson Reuters";"2021-2025";"Law (Q4)";"Social Sciences" +26952;21101020026;"Frontiers in Anti-infective Drug Discovery";book series;"1879663X, 24519162";"Bentham Science Publishers";No;No;0,133;Q4;4;0;1;0;0;1;0,00;0,00;0,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2019-2021, 2023";"Drug Discovery (Q4); Infectious Diseases (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +26953;21100982469;"Frontiers in Clinical Drug Research - Anti Allergy Agents";book series;"22146938, 24523194";"Bentham Science Publishers";No;No;0,133;Q4;2;0;6;0;2;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Bentham Science Publishers";"2019-2020, 2022";"Drug Discovery (Q4); Immunology and Allergy (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +26954;21101053535;"Frontiers in Clinical Drug Research - CNS and Neurological Disorders";book series;"22147527, 24518883";"Bentham Science Publishers";No;No;0,133;Q4;2;0;10;0;4;1;0,00;0,00;0,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2020-2024";"Neurology (clinical) (Q4); Pharmaceutical Science (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +26955;21101048854;"Frontiers in Stem Cell and Regenerative Medicine Research";book series;"24679593, 23527633";"Bentham Science Publishers";No;No;0,133;Q4;1;0;6;0;0;1;0,00;0,00;0,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2020, 2022";"Cell Biology (Q4); Developmental Biology (Q4); Genetics (Q4)";"Biochemistry, Genetics and Molecular Biology" +26956;21147;"Gefasschirurgie";journal;"09487034, 14343932";"Springer Medizin";No;No;0,133;Q4;20;100;276;2123;66;200;0,23;21,23;29,17;0;Germany;Western Europe;"Springer Medizin";"1996-2026";"Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4)";"Medicine" +26957;22190;"Genetics and Molecular Research";journal;"16765680";"Fundacao de Pesquisas Cientificas de Ribeirao Preto";Yes;No;0,133;Q4;66;58;125;1689;43;125;0,37;29,12;36,41;0;Brazil;Latin America;"Fundacao de Pesquisas Cientificas de Ribeirao Preto";"2002-2026";"Genetics (Q4); Medicine (miscellaneous) (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +26958;21100389305;"Geneva Reports on the World Economy";book series;"16078616";"Centre for Economic Policy Research";No;No;0,133;Q4;14;7;11;298;0;1;0,00;42,57;0,00;0;United Kingdom;Western Europe;"Centre for Economic Policy Research";"2014-2019, 2022-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +26959;17700156533;"Handbook of Behavioral Neuroscience";book series;"15697339";"Elsevier B.V.";No;No;0,133;Q4;31;75;1;8899;0;1;0,00;118,65;46,34;0;Netherlands;Western Europe;"Elsevier B.V.";"1991, 1993-1994, 2006, 2008, 2010, 2013, 2016, 2018-2020, 2024-2026";"Behavioral Neuroscience (Q4); Cognitive Neuroscience (Q4)";"Neuroscience" +26960;21100406775;"Immigration and Asylum Law and Policy in Europe";book series;"15682749";"Brill Academic Publishers";No;No;0,133;Q4;16;3;1;1643;0;1;0,00;547,67;66,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2017, 2019-2021, 2023, 2025";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +26961;21101038734;"Infectious Diseases: News, Opinions, Training";journal;"26587394, 23053496";"Geotar Media Publishing Group";No;No;0,133;Q4;8;61;211;1648;52;206;0,29;27,02;63,67;0;Russian Federation;Eastern Europe;"Geotar Media Publishing Group";"2019-2025";"Education (Q4); Immunology and Allergy (Q4); Infectious Diseases (Q4)";"Medicine; Social Sciences" +26962;21101152614;"International Arab Journal of Dentistry";journal;"27094774, 22180885";"Saint Joseph University of Beirut, Faculty of Dental Medicine";No;No;0,133;Q4;2;35;81;1049;22;79;0,30;29,97;48,48;0;Lebanon;Middle East;"Saint Joseph University of Beirut, Faculty of Dental Medicine";"2022-2025";"Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Orthodontics (Q4); Periodontics (Q4)";"Dentistry" +26963;21113;"International Journal of Nanotechnology";journal;"14757435";"Inderscience Enterprises Ltd";No;No;0,133;Q4;41;0;212;0;103;212;0,58;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2024";"Bioengineering (Q4); Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Materials Chemistry (Q4); Nanoscience and Nanotechnology (Q4)";"Chemical Engineering; Engineering; Materials Science; Physics and Astronomy" +26964;21101039871;"International Journal of Nuclear Security";journal;"23769955";"University of Tennessee Institute for Nuclear Security";Yes;No;0,133;Q4;5;3;51;160;10;43;0,21;53,33;33,33;0;United States;Northern America;"University of Tennessee Institute for Nuclear Security";"2019-2025";"Chemical Engineering (miscellaneous) (Q4); Nuclear Energy and Engineering (Q4); Physical and Theoretical Chemistry (Q4); Radiation (Q4); Safety Research (Q4)";"Chemical Engineering; Chemistry; Energy; Physics and Astronomy; Social Sciences" +26965;21101192801;"International Journal of Nutrology";journal;"25952854, 19843011";"ABRAN - Brazilian Association of Nutrology";No;No;0,133;Q4;6;79;149;2440;40;149;0,26;30,89;50,00;0;Brazil;Latin America;"ABRAN - Brazilian Association of Nutrology";"2019-2026";"Food Science (Q4); Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Medicine; Nursing" +26966;21100258751;"International Journal of Sustainability in Economic, Social, and Cultural Context";journal;"2325114X, 23251115";"Common Ground Research Networks";No;No;0,133;Q4;8;23;35;1100;19;35;0,64;47,83;65,71;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)";"Environmental Science; Social Sciences" +26967;19700186854;"International Journal of Web Portals";journal;"19380208, 19380194";"IGI Global Publishing";No;No;0,133;Q4;12;2;1;110;0;1;0,00;55,00;66,67;0;United States;Northern America;"IGI Global Publishing";"2009-2022, 2025";"Computer Science Applications (Q4)";"Computer Science" +26968;21101180712;"International Labour Law Reports";book series;"01686526";"Brill Nijhoff";No;No;0,133;Q4;0;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"1979, 1992-1995, 1997, 1999, 2002-2005, 2007-2008, 2010-2022";"Law (Q4)";"Social Sciences" +26969;8300153114;"International Perspectives on Inclusive Education";book series;"14793636";"Emerald Group Publishing Ltd.";No;No;0,133;Q4;15;6;56;92;15;1;0,29;15,33;20,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001, 2012, 2014-2017, 2019-2026";"Education (Q4)";"Social Sciences" +26970;21100461499;"International Straits of the World";book series;"09244867";"Brill Academic Publishers";No;No;0,133;Q4;1;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010, 2017-2019, 2022";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +26971;21101287782;"International Technology Education Studies";book series;"18798748";"Brill Academic Publishers";No;No;0,133;Q4;9;37;34;883;20;1;0,59;23,86;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006, 2008-2009, 2011-2013, 2016, 2019, 2021, 2023-2025";"Education (Q4)";"Social Sciences" +26972;23049;"Issues in Science and Technology";journal;"07485492";"Arizona State University";No;No;0,133;Q4;36;21;162;5;120;49;0,77;0,24;18,18;0;United States;Northern America;"Arizona State University";"1985-1999, 2001-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +26973;38604;"Japanese Journal of Crop Science";journal;"00111848, 13490990";"Crop Science Society of Japan";No;No;0,133;Q4;27;45;96;1252;20;90;0,15;27,82;22,32;0;Japan;Asiatic Region;"Crop Science Society of Japan";"1930-1944, 1947-2026";"Agronomy and Crop Science (Q4); Food Science (Q4); Genetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +26974;30239;"Japanese Journal of Human Geography";journal;"00187216, 18834086";"Human Geographical Society of Japan";No;No;0,133;Q4;8;19;87;889;10;87;0,18;46,79;5,56;0;Japan;Asiatic Region;"Human Geographical Society of Japan";"1950-2025";"Geography, Planning and Development (Q4)";"Social Sciences" +26975;15967;"JMS - Journal of Medical Society";journal;"09724958, 2321662X";"Regional Institute of Medical Sciences";No;No;0,133;Q4;9;45;116;857;28;98;0,19;19,04;50,00;0;India;Asiatic Region;"Regional Institute of Medical Sciences";"2003-2012, 2014-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26976;21101194102;"Journal of Cancer Rehabilitation";journal;"27046494";"Edisciences Publisher";Yes;No;0,133;Q4;4;4;53;110;10;52;0,13;27,50;55,00;0;Italy;Western Europe;"Edisciences Publisher";"2019-2025";"Health Professions (miscellaneous) (Q4); Oncology (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +26977;19700173238;"Journal of Cellular Automata";journal;"15575977, 15575969";"Old City Publishing";No;No;0,133;Q4;17;0;38;0;10;36;0,26;0,00;0,00;0;United States;Northern America;"Old City Publishing";"2008-2024";"Computer Science (miscellaneous) (Q4); Control and Systems Engineering (Q4)";"Computer Science; Engineering" +26978;21101320339;"Journal of Child and Adolescent Substance Use";journal;"29973376";"Taylor and Francis Ltd.";No;No;0,133;Q4;39;22;2;1343;0;1;0,00;61,05;62,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2025-2026";"Education (Q4); Psychology (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4); Social Psychology (Q4)";"Medicine; Psychology; Social Sciences" +26979;22906;"Journal of China Pharmaceutical University";journal;"10005048";"China Pharmaceutical University";No;No;0,133;Q4;16;63;250;2361;92;248;0,44;37,48;50,76;0;China;Asiatic Region;"China Pharmaceutical University";"1989-1991, 2002-2025";"Pharmaceutical Science (Q4); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +26980;12326;"Journal of Corrosion Science and Engineering";journal;"14668858";"University of Manchester";No;No;0,133;Q4;11;0;1;0;0;1;0,00;0,00;0,00;0;United Kingdom;Western Europe;"University of Manchester";"1997-2004, 2006, 2008-2022";"Materials Chemistry (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science" +26981;21101059784;"Journal of Cyber Security";journal;"20961146";"Chinese Academy of Sciences";No;No;0,133;Q4;13;75;190;3616;100;189;0,47;48,21;37,32;0;China;Asiatic Region;"Chinese Academy of Sciences";"2019-2025";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Hardware and Architecture (Q4); Information Systems (Q4); Safety Research (Q4); Software (Q4)";"Computer Science; Social Sciences" +26982;21100218073;"Journal of Datta Meghe Institute of Medical Sciences University";journal;"09743901, 22501231";"Wolters Kluwer Medknow Publications";No;No;0,133;Q4;16;173;617;3686;119;539;0,22;21,31;55,02;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2012-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26983;19700166621;"Journal of Mammalian Ova Research";journal;"13475878, 13417738";"Japanese Society of Mammalian Ova Research";No;No;0,133;Q4;15;0;1;0;0;1;0,00;0,00;0,00;0;Japan;Asiatic Region;"Japanese Society of Mammalian Ova Research";"1995-2018, 2022";"Cell Biology (Q4); Reproductive Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +26984;21100786234;"Journal of the Geothermal Research Society of Japan";journal;"03886735, 18835775";"Geothermal Research Society of Japan";No;No;0,133;Q4;8;6;27;201;7;27;0,21;33,50;14,29;0;Japan;Asiatic Region;"Geothermal Research Society of Japan";"1979-2010, 2016-2025";"Geophysics (Q4)";"Earth and Planetary Sciences" +26985;21101102056;"J-Reading";journal;"22814310, 22815694";"Edizioni Nuova Cultura";No;No;0,133;Q4;6;9;44;406;10;43;0,17;45,11;40,00;0;Italy;Western Europe;"Edizioni Nuova Cultura";"2020-2025";"Computers in Earth Sciences (Q4); Demography (Q4); Education (Q4); Geography, Planning and Development (Q4); Social Sciences (miscellaneous) (Q4); Urban Studies (Q4)";"Earth and Planetary Sciences; Social Sciences" +26986;21100406369;"Law in Eastern Europe";book series;"0075823X";"Brill Academic Publishers";No;No;0,133;Q4;6;0;14;0;2;1;1,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2009, 2011-2012, 2014-2015, 2018, 2021-2022, 2024";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +26987;21101292996;"Leadership and Best Practices in Educational Technology Management";book series;"26667010";"Brill Academic Publishers";No;No;0,133;Q4;3;0;65;0;4;1;0,06;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2023";"Education (Q4)";"Social Sciences" +26988;21100380994;"Lecture Notes in Computational Vision and Biomechanics";book series;"22129391, 22129413";"Springer International Publishing AG";No;No;0,133;Q4;27;10;101;219;83;1;0,82;21,90;0,00;0;Switzerland;Western Europe;"Springer International Publishing AG";"2012-2020, 2023-2025";"Artificial Intelligence (Q4); Biomedical Engineering (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Mechanical Engineering (Q4); Signal Processing (Q4)";"Computer Science; Engineering" +26989;21100406327;"Legal Aspects of International Organization";book series;"09244883";"Brill Academic Publishers";No;No;0,133;Q4;10;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006, 2009-2010, 2015-2016, 2018, 2020-2021, 2024";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +26990;21100405524;"Legal Aspects of Sustainable Development";book series;"18750923";"Brill Academic Publishers";No;No;0,133;Q4;8;1;19;375;11;1;0,58;375,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2017, 2020-2021, 2023, 2025";"Law (Q4); Management, Monitoring, Policy and Law (Q4); Political Science and International Relations (Q4)";"Environmental Science; Social Sciences" +26991;11600153405;"Malta Medical Journal";journal;"23084103, 18133339";"University of Malta";Yes;No;0,133;Q4;9;63;119;1268;24;109;0,12;20,13;50,30;0;Malta;Western Europe;"University of Malta";"2008-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26992;21101196746;"Maritime Cooperation in East Asia";book series;"2405934X";"Brill Academic Publishers";No;No;0,133;Q4;3;0;12;0;2;1;0,17;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2020, 2024";"Law (Q4); Management, Monitoring, Policy and Law (Q4); Political Science and International Relations (Q4)";"Environmental Science; Social Sciences" +26993;96929;"Maydica";journal;"00256153, 22798013";"Crea Journals";Yes;No;0,133;Q4;43;12;24;788;10;24;0,42;65,67;28,81;0;Italy;Western Europe;"Crea Journals";"1993-2022, 2024-2025";"Agronomy and Crop Science (Q4); Genetics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +26994;27777;"Medecine et Droit";journal;"17775612, 12467391";"Elsevier Masson s.r.l.";No;No;0,133;Q4;8;26;57;440;11;52;0,26;16,92;42,31;0;France;Western Europe;"Elsevier Masson s.r.l.";"1995-2026";"Law (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +26995;21100886212;"Medecine Intensive Reanimation";journal;"24966142";"Societe de Reanimation de Langue Francaise";No;No;0,133;Q4;5;0;1;0;0;1;0,00;0,00;0,00;0;France;Western Europe;"Societe de Reanimation de Langue Francaise";"2018-2022";"Emergency Medicine (Q4); Emergency Nursing (Q4)";"Medicine; Nursing" +26996;21101058913;"Medicni Perspektivi";journal;"27864804, 23070404";"Dnipro State Medical University";Yes;No;0,133;Q4;10;106;336;3188;138;336;0,49;30,08;63,84;0;Ukraine;Eastern Europe;"Dnipro State Medical University";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +26997;12100157137;"Monografies de la Societat d'Historia Natural de les Balears";book series;"16965426";"Societat d'Historia Natural de les Balears";No;No;0,133;Q4;10;33;1;1822;0;1;0,00;55,21;0,00;0;Spain;Western Europe;"Societat d'Historia Natural de les Balears";"2005, 2010-2012, 2015-2017, 2019-2022, 2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +26998;21100853558;"New Developments in Mass Spectrometry";book series;"20457553";"Royal Society of Chemistry";No;No;0,133;Q4;7;0;41;0;9;1;0,22;0,00;0,00;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2015, 2017, 2020-2021, 2023-2024";"Analytical Chemistry (Q4); Spectroscopy (Q4)";"Chemistry" +26999;21100426622;"Nijhoff International Trade Law Series";book series;"18777392";"Brill Academic Publishers";No;No;0,133;Q4;2;0;30;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2013, 2015, 2017, 2021, 2023";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +27000;21101141652;"NTP Research Report Series";book series;"24734756";"United States National Toxicology Program";No;No;0,133;Q4;4;0;1;0;0;1;0,00;0,00;0,00;0;United States;Northern America;"United States National Toxicology Program";"2016-2021, 2023";"Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +27001;21100201318;"Nuclear Magnetic Resonance";book series;"03059804, 14651882";"Royal Society of Chemistry";No;No;0,133;Q4;6;0;30;0;1;1;0,06;0,00;0,00;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2011-2016, 2021, 2023-2024";"Analytical Chemistry (Q4); Biochemistry (Q4); Spectroscopy (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +27002;21101198383;"Nuclear Medicine Seminars";journal;"21496447";"Galenos Publishing House";No;No;0,133;Q4;3;26;85;895;16;83;0,11;34,42;63,33;0;Turkey;Middle East;"Galenos Publishing House";"2020-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +27003;21101292649;"On (De)Coloniality: Curriculum Within and Beyond the West";book series;"26663775";"Brill Academic Publishers";No;No;0,133;Q4;1;0;14;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2018, 2020, 2022-2023";"Education (Q4); Sociology and Political Science (Q4)";"Social Sciences" +27004;9000153103;"Optica Pura y Aplicada";journal;"21718814, 00303917";"Sociedad Espanola de Optica";Yes;No;0,133;Q4;14;35;98;804;19;89;0,27;22,97;32,71;0;Spain;Western Europe;"Sociedad Espanola de Optica";"2007-2025";"Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Engineering; Materials Science; Physics and Astronomy" +27005;21100218381;"Organic Reactions";book series;"00786179";"John Wiley & Sons Inc.";No;No;0,133;Q4;25;2;19;2145;11;1;0,36;1072,50;0,00;0;United States;Northern America;"John Wiley & Sons Inc.";"2011-2025";"Organic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry" +27006;21101044977;"Pakistan Heart Journal";journal;"22279199, 00482706";"Pakistan Cardiac Society";Yes;No;0,133;Q4;5;150;210;2924;52;201;0,21;19,49;34,32;0;Pakistan;Asiatic Region;"Pakistan Cardiac Society";"2019-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +27007;21101154263;"Pamukkale Medical Journal";journal;"13099833, 13080865";"Pamukkale University";No;No;0,133;Q4;5;86;267;2372;62;263;0,24;27,58;43,98;0;Turkey;Middle East;"Pamukkale University";"2019-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27008;21101277848;"plaNext-Next Generation Planning";journal;"24680648";"Association of European Schools of Planning";Yes;Yes;0,133;Q4;4;14;20;398;11;15;0,25;28,43;65,00;0;Italy;Western Europe;"Association of European Schools of Planning";"2021-2026";"Geography, Planning and Development (Q4); Urban Studies (Q4)";"Social Sciences" +27009;14353;"Plastics Engineering";journal;"00919578, 19419635";"Society of Plastics Engineers";No;No;0,133;Q4;15;0;21;0;0;1;0,00;0,00;0,00;0;United States;Northern America;"Society of Plastics Engineers";"1973-1991, 1993-2021, 2023";"Chemical Engineering (miscellaneous) (Q4); Materials Chemistry (Q4); Polymers and Plastics (Q4)";"Chemical Engineering; Materials Science" +27010;21100248904;"Power Systems";book series;"18604676, 16121287";"Springer Science + Business Media";No;No;0,133;Q4;26;37;288;3769;253;1;1,10;101,86;0,00;0;United States;Northern America;"Springer Science + Business Media";"2007-2026";"Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4)";"Energy; Engineering" +27011;21100456758;"Prilozi";journal;"18579345, 18578985";"";No;No;0,133;Q4;16;0;1;0;0;1;0,00;0,00;0,00;0;United States;Northern America;"";"2013-2016, 2019-2020, 2022";"Medicine (miscellaneous) (Q4)";"Medicine" +27012;11400153304;"Progress in Heterocyclic Chemistry";book series;"09596380";"Elsevier Ltd";No;No;0,133;Q4;26;17;48;2666;13;1;0,27;156,82;0,00;0;United Kingdom;Western Europe;"Elsevier Ltd";"1989-1991, 1993-2003, 2005, 2007-2009, 2011-2018, 2020-2021, 2023-2025";"Organic Chemistry (Q4)";"Chemistry" +27013;4000151203;"Propagation of Ornamental Plants";journal;"13119109";"SEJANI Ltd.";No;No;0,133;Q4;21;6;21;227;8;21;0,38;37,83;27,78;0;Bulgaria;Eastern Europe;"SEJANI Ltd.";"2005-2021, 2023-2025";"Forestry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +27014;21101070989;"Psychiatry (Moscow)";journal;"26186667, 16838319";"Medicinskoe Informacionnoe agentstvo";No;No;0,133;Q4;7;67;270;2396;74;269;0,46;35,76;59,73;0;Russian Federation;Eastern Europe;"Medicinskoe Informacionnoe agentstvo";"2019-2025";"Biological Psychiatry (Q4); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience; Psychology" +27015;21100904807;"Revista Conhecimento Online";journal;"21768501";"UNIVERSIDADE FEEVALE";Yes;Yes;0,133;Q4;5;25;80;946;28;77;0,31;37,84;43,75;0;Brazil;Latin America;"UNIVERSIDADE FEEVALE";"2019-2025";"Education (Q4); Multidisciplinary (Q4)";"Multidisciplinary; Social Sciences" +27016;21101067418;"Revista de Direito da Faculdade Guanambi";journal;"24476536";"Centro Universitario FG (UNIFG)";Yes;Yes;0,133;Q4;3;0;1;0;0;1;0,00;0,00;0,00;0;Brazil;Latin America;"Centro Universitario FG (UNIFG)";"2019-2022";"Law (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +27017;23593;"Revue Forestiere Francaise";journal;"00352829";"Ecole Nationale du Genie Rural des Eaux et des Forets";Yes;Yes;0,133;Q4;16;27;79;910;14;70;0,18;33,70;20,37;0;France;Western Europe;"Ecole Nationale du Genie Rural des Eaux et des Forets";"1974, 1976-1977, 1979, 1984, 1988-1989, 1998-2000, 2002-2021, 2023-2025";"Forestry (Q4)";"Agricultural and Biological Sciences" +27018;21100298656;"RSC Green Chemistry";book series;"17577047, 17577039";"Royal Society of Chemistry";No;No;0,133;Q4;23;22;49;1502;18;1;0,43;68,27;0,00;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2008-2025";"Biochemistry (Q4); Environmental Chemistry (Q4); Management, Monitoring, Policy and Law (Q4); Pollution (Q4)";"Biochemistry, Genetics and Molecular Biology; Environmental Science" +27019;21101028161;"Russian Bulletin of Obstetrician-Gynecologist";journal;"17266122, 23095148";"Media Sphera Publishing Group";No;No;0,133;Q4;11;83;279;2835;89;279;0,30;34,16;71,73;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2010-2025";"Obstetrics and Gynecology (Q4)";"Medicine" +27020;21100819609;"Schedae Informaticae";journal;"17323916, 20838476";"Jagiellonian University";No;No;0,133;Q4;5;0;1;0;0;1;0,00;0,00;0,00;0;Poland;Eastern Europe;"Jagiellonian University";"2013-2019, 2021, 2023";"Computer Science (miscellaneous) (Q4)";"Computer Science" +27021;21100905630;"Series on Chinese Economics Research";book series;"22511644";"World Scientific";No;No;0,133;Q4;2;0;7;0;0;1;0,00;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2019-2021, 2023";"Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +27022;21100823806;"Series on Concrete and Applicable Mathematics";book series;"17931142";"World Scientific";No;No;0,133;Q4;2;0;3;0;0;1;0,00;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2017, 2022-2023";"Algebra and Number Theory (Q4); Applied Mathematics (Q4); Computational Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4); Management Science and Operations Research (Q4); Mathematical Physics (Q4); Modeling and Simulation (Q4); Statistics and Probability (Q4)";"Decision Sciences; Mathematics" +27023;21100823807;"Series on Number Theory and Its Applications";book series;"17933161";"World Scientific";No;No;0,133;Q4;1;0;2;0;0;1;0,00;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2016-2019, 2021, 2023";"Algebra and Number Theory (Q4); Control and Optimization (Q4)";"Mathematics" +27024;19900193224;"Social Medicine";journal;"15577112";"Social Medicine Publishing Group";Yes;Yes;0,133;Q4;11;40;65;1134;16;54;0,28;28,35;56,76;0;United States;Northern America;"Social Medicine Publishing Group";"2012-2026";"Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +27025;21101039099;"Societies and Political Orders in Transition";book series;"25112201, 2511221X";"Springer Science and Business Media Deutschland GmbH";No;No;0,133;Q4;21;16;111;919;144;1;0,31;57,44;0,00;0;Netherlands;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2017-2023, 2025";"Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +27026;14135;"South African Statistical Journal";journal;"0038271X, 19968450";"South African Statistical Association";No;No;0,133;Q4;12;5;18;148;7;18;0,58;29,60;36,36;0;South Africa;Africa;"South African Statistical Association";"1996-2025";"Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics" +27027;5000158508;"Springer Tracts in Modern Physics";book series;"00813869, 16150430";"Springer Verlag";No;No;0,133;Q4;18;0;75;0;8;1;0,07;0,00;0,00;0;Germany;Western Europe;"Springer Verlag";"2005-2024";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +27028;21100405752;"Studies in EU External Relations";book series;"18750451";"Brill Academic Publishers";No;No;0,133;Q4;9;18;30;3215;8;1;0,27;178,61;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008, 2010, 2012-2017, 2019-2020, 2023, 2025";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +27029;21100983212;"Studies in Mechanobiology, Tissue Engineering and Biomaterials";book series;"18682014, 18682006";"Springer International Publishing";No;No;0,133;Q4;20;0;37;0;33;1;1,29;0,00;0,00;0;Switzerland;Western Europe;"Springer International Publishing";"2009-2017, 2019-2020, 2022-2023";"Biomaterials (Q4); Biomedical Engineering (Q4); Biophysics (Q4); Biotechnology (Q4); Mechanics of Materials (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science; Medicine" +27030;21100828949;"Studies in Systems, Decision and Control";book series;"21984182, 21984190";"Springer International Publishing AG";Yes;No;0,133;Q4;51;2417;4991;69304;4193;1;0,95;28,67;0,00;1;Switzerland;Western Europe;"Springer International Publishing AG";"2014-2026";"Automotive Engineering (Q4); Computer Science (miscellaneous) (Q4); Control and Optimization (Q4); Control and Systems Engineering (Q4); Decision Sciences (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Computer Science; Decision Sciences; Economics, Econometrics and Finance; Engineering; Mathematics; Social Sciences" +27031;21100457062;"Studies in Territorial and Cultural Diversity Governance";book series;"22132570";"Brill Academic Publishers";No;No;0,133;Q4;5;0;32;0;4;1;0,13;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2013, 2015-2018, 2021, 2023-2024, 2026";"Law (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +27032;11800154586;"Summa Phytopathologica";journal;"01005405, 19805454";"Universidade Estadual Paulista (UNESP)";Yes;No;0,133;Q4;22;8;50;170;22;42;0,36;21,25;30,77;0;Brazil;Latin America;"Universidade Estadual Paulista (UNESP)";"2006-2025";"Plant Science (Q4)";"Agricultural and Biological Sciences" +27033;21101089954;"Surgery Eastern Europe";journal;"22265384, 24141992";"Professionalnye Izdaniya";No;No;0,133;Q4;4;60;141;1233;32;141;0,20;20,55;30,63;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2019-2025";"Surgery (Q4)";"Medicine" +27034;21101038801;"Sustainable Civil Infrastructures";book series;"23663405, 23663413";"Springer Science and Business Media B.V.";No;No;0,133;Q4;15;632;408;10591;116;333;0,29;16,76;27,89;0;Switzerland;Western Europe;"Springer Science and Business Media B.V.";"2018-2026";"Civil and Structural Engineering (Q4); Computational Mechanics (Q4); Environmental Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering; Environmental Science" +27035;21100212331;"Tethys";journal;"16971523, 11393394";"Associacio Catalana de Meteorologia (ACAM)";Yes;Yes;0,133;Q4;7;2;2;84;1;2;0,00;42,00;0,00;0;Spain;Western Europe;"Associacio Catalana de Meteorologia (ACAM)";"2012-2023, 2025";"Atmospheric Science (Q4)";"Earth and Planetary Sciences" +27036;28481;"Tezhong Zhuzao Ji Youse Hejin/Special Casting and Nonferrous Alloys";journal;"10012249";"Journal Office of Special Casting and Nonferrous Alloys";No;No;0,133;Q4;12;295;783;7337;221;783;0,30;24,87;27,60;0;China;Asiatic Region;"Journal Office of Special Casting and Nonferrous Alloys";"1994-1995, 1997, 2001-2025";"Condensed Matter Physics (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +27037;21101292643;"Transnational Migration and Education";book series;"25429779";"Brill Academic Publishers";No;No;0,133;Q4;8;1;22;0;18;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2016, 2018-2019, 2021-2023, 2025";"Education (Q4)";"Social Sciences" +27038;21974;"Update in Anaesthesia";journal;"13534882";"Roayal Devon and Exeter Healthcare NHS Trust";No;No;0,133;Q4;11;0;34;0;10;30;0,14;0,00;0,00;0;United Kingdom;Western Europe;"Roayal Devon and Exeter Healthcare NHS Trust";"1996-2012, 2014-2020, 2022-2024";"Anesthesiology and Pain Medicine (Q4)";"Medicine" +27039;4900152714;"USDA Forest Service - Research Paper PNW-RP";journal;"08825165";"USDA Forest Service";No;No;0,133;Q4;5;0;1;0;0;1;0,00;0,00;0,00;0;United States;Northern America;"USDA Forest Service";"2005-2021, 2024";"Ecology (Q4); Forestry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +27040;5000160304;"USDA Forest Service - Resource Bulletin PNW-RB";journal;"07481284";"USDA Forest Service";No;No;0,133;Q4;7;0;1;0;0;1;0,00;0,00;0,00;0;United States;Northern America;"USDA Forest Service";"1997-1999, 2002-2012, 2014-2016, 2018-2022";"Ecology (Q4); Forestry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +27041;19700201695;"Vascular Cell";journal;"2045824X";"Publiverse Online srl";Yes;No;0,133;Q4;40;1;1;63;0;1;0,00;63,00;66,67;0;United Kingdom;Western Europe;"Publiverse Online srl";"2011-2021, 2023, 2025";"Cell Biology (Q4); Computer Networks and Communications (Q4); Developmental Neuroscience (Q4); Neurology (Q4)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Neuroscience" +27042;21101388867;"World Conference on Earthquake Engineering proceedings";book series;"30065933";"";No;No;0,133;Q4;5;0;3140;0;498;41;0,16;0,00;0,00;0;Japan;Asiatic Region;"";"2021, 2024";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Engineering (miscellaneous) (Q4); Geophysics (Q4); Geotechnical Engineering and Engineering Geology (Q4); Safety, Risk, Reliability and Quality (Q4)";"Earth and Planetary Sciences; Engineering" +27043;21100892595;"World Scientific Series in Finance";book series;"20101082";"World Scientific";No;No;0,133;Q4;3;0;53;0;0;1;0,00;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2018-2024";"Finance (Q4)";"Economics, Econometrics and Finance" +27044;21100898632;"World Scientific-Now Publishers Series in Business";book series;"22513442";"World Scientific";No;No;0,133;Q4;3;0;31;0;1;1;0,03;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2018-2020, 2023-2024";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +27045;21101199245;"Yearbook of the European Convention for the Prevention of Torture and Inhuman or Degrading Treatment or Punishment/Annuaire de la convention europeenne pour la prevention de la torture et des peines ou traitements inhumain ou degradants";book series;"13699865";"Brill Nijhoff";No;No;0,133;Q4;0;0;1;0;0;1;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"2017, 2019, 2023";"Law (Q4)";"Social Sciences" +27046;21100944430;"COMPDYN Proceedings";conference and proceedings;"26233347";"National Technical University of Athens";No;No;0,133;-;10;0;428;0;90;427;0,21;0,00;0,00;0;Greece;Western Europe;"National Technical University of Athens";"2019, 2021, 2023";"Civil and Structural Engineering; Computational Mathematics; Computers in Earth Sciences; Geotechnical Engineering and Engineering Geology";"Earth and Planetary Sciences; Engineering; Mathematics" +27047;21101221559;"Proceedings of IEEE International Workshop on Variable Structure Systems";conference and proceedings;"21654816, 21654824";"IEEE Computer Society";No;No;0,133;-;1;454;1;7492;0;1;0,00;16,50;19,63;0;United States;Northern America;"IEEE Computer Society";"2015, 2023";"Control and Systems Engineering; Electrical and Electronic Engineering";"Engineering" +27048;21100223504;"Proceedings of the International Conference on Dublin Core and Metadata Applications";conference and proceedings;"19391358, 19391366";"Dublin Core metadata initiative";No;No;0,133;-;17;35;65;368;7;60;0,13;10,51;50,62;0;United States;Northern America;"Dublin Core metadata initiative";"2005-2019, 2022-2025";"Computer Science Applications; Computer Vision and Pattern Recognition; E-learning; Software";"Computer Science; Social Sciences" +27049;21101297250;"SPE Western Regional Meeting Proceedings";conference and proceedings;"26937131, 26937115";"Society of Petroleum Engineers (SPE)";No;No;0,133;-;2;81;1;2190;0;1;0,00;27,04;17,47;0;United States;Northern America;"Society of Petroleum Engineers (SPE)";"2024-2025";"Energy Engineering and Power Technology";"Energy" +27050;19700173007;"Anales Cervantinos";journal;"05699878, 19888325";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,132;Q2;8;0;65;0;8;64;0,09;0,00;0,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2009-2020, 2022-2024";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27051;21100903454;"Arab Media and Society";journal;"16877721";"American University in Cairo";Yes;Yes;0,132;Q2;6;0;61;0;23;60;0,44;0,00;0,00;0;Egypt;Africa/Middle East;"American University in Cairo";"2018-2024";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +27052;5700155727;"Brno Studies in English";journal;"18050867, 05246881";"Masaryk University";Yes;No;0,132;Q2;12;20;55;1059;16;54;0,34;52,95;62,50;0;Czech Republic;Eastern Europe;"Masaryk University";"2011-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27053;19400158904;"Cedille";journal;"16994949";"Facultad de Filologia - Universidad de La Laguna";Yes;Yes;0,132;Q2;6;32;170;719;14;165;0,10;22,47;70,37;0;Spain;Western Europe;"Facultad de Filologia - Universidad de La Laguna";"2009-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27054;28404;"Classical World";journal;"00098418, 15589234";"Johns Hopkins University Press";No;No;0,132;Q2;23;11;61;533;13;61;0,26;48,45;40,00;0;United States;Northern America;"Johns Hopkins University Press";"1972, 1977, 2002-2025";"Classics (Q2)";"Arts and Humanities" +27055;21101375101;"Journal of Architectural and Engineering Research";journal;"27382656";"National University of Architecture and Construction of Armenia";Yes;No;0,132;Q2;1;25;19;441;6;19;0,32;17,64;35,00;0;Armenia;Eastern Europe;"National University of Architecture and Construction of Armenia";"2024-2025";"Visual Arts and Performing Arts (Q2); Architecture (Q3); Civil and Structural Engineering (Q4); Engineering (miscellaneous) (Q4)";"Arts and Humanities; Engineering" +27056;21100845654;"Mark Twain Annual";journal;"15530981, 17562597";"Penn State University Press";No;No;0,132;Q2;3;5;38;211;8;33;0,38;42,20;33,33;0;United States;Northern America;"Penn State University Press";"2017-2024";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27057;15649;"Nineteenth-Century Contexts";journal;"14772663, 08905495";"Taylor and Francis Ltd.";No;No;0,132;Q2;18;10;107;334;26;101;0,22;33,40;55,56;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-1997, 1999-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +27058;21101047453;"Nordic Journal of Architectural Research";journal;"18935281, 11025824";"SINTEF Academic Press";No;No;0,132;Q2;5;7;35;399;11;33;0,22;57,00;53,33;0;Norway;Western Europe;"SINTEF Academic Press";"2019-2025";"Visual Arts and Performing Arts (Q2); Architecture (Q3); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +27059;6000152706;"October";journal;"1536013X, 01622870";"MIT Press";No;No;0,132;Q2;24;20;88;120;14;81;0,15;6,00;45,45;0;United States;Northern America;"MIT Press";"2002-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Music (Q3)";"Arts and Humanities" +27060;21101257865;"Philosophical Letters. Russian and European Dialogue";journal;"26585413";"National Research University Higher School of Economics (HSE University)";No;No;0,132;Q2;2;44;139;1022;10;129;0,10;23,23;48,84;0;Russian Federation;Eastern Europe;"National Research University Higher School of Economics (HSE University)";"2020-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); History (Q3); Philosophy (Q3)";"Arts and Humanities" +27061;16000154744;"Primerjalna Knjizevnost";journal;"03511189";"Slovensko Drustvo za Primerjalno Knjizevnost (Slovene Comparative Literature Association)";Yes;Yes;0,132;Q2;9;36;106;980;16;104;0,18;27,22;59,38;0;Slovenia;Eastern Europe;"Slovensko Drustvo za Primerjalno Knjizevnost (Slovene Comparative Literature Association)";"1996-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27062;5800207761;"Revue Romane";journal;"00353906";"John Benjamins Publishing Company";No;No;0,132;Q2;10;20;45;766;6;45;0,10;38,30;52,63;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1996-2026";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27063;5700168874;"Rhetorica - A Journal of the History of Rhetoric";journal;"07348584, 15338541";"Johns Hopkins University Press";No;No;0,132;Q2;22;0;13;0;5;13;0,00;0,00;0,00;0;United States;Northern America;"Johns Hopkins University Press";"1983-2022";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27064;6000152913;"Sculpture Journal";journal;"17569923, 13662724";"Liverpool University Press";No;No;0,132;Q2;6;25;95;1377;13;79;0,08;55,08;73,08;0;United Kingdom;Western Europe;"Liverpool University Press";"2002-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27065;21100967513;"SPAFA Journal";journal;"08581975, 25868721";"Southeast Asian Ministers of Education Organization Regional Centre for Archaeology and Fine Arts (SEAMEO SPAFA)";Yes;Yes;0,132;Q2;4;10;24;354;7;24;0,22;35,40;23,53;0;Thailand;Asiatic Region;"Southeast Asian Ministers of Education Organization Regional Centre for Archaeology and Fine Arts (SEAMEO SPAFA)";"2019-2025";"Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Conservation (Q3)";"Arts and Humanities; Social Sciences" +27066;17100154728;"African Diaspora";book series;"18725457, 18725465";"Brill Academic Publishers";Yes;No;0,132;Q3;22;0;22;0;11;19;0,67;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2016, 2018-2024";"Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27067;26596;"American Indian Culture and Research Journal";journal;"01616463";"UCLA American Indian Studies Center";Yes;Yes;0,132;Q3;24;22;71;1440;16;67;0,23;65,45;62,50;0;United States;Northern America;"UCLA American Indian Studies Center";"1986, 1988, 1992, 2000-2021, 2023-2025";"Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities; Social Sciences" +27068;21101234843;"An-Najah University Journal for Research - A (Natural Sciences)";journal;"23118865, 17272114";"An-Najah National University";Yes;Yes;0,132;Q3;4;25;41;1151;20;41;0,53;46,04;28,79;0;Palestine;Middle East;"An-Najah National University";"2020-2026";"Architecture (Q3); Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Industrial and Manufacturing Engineering (Q4)";"Agricultural and Biological Sciences; Engineering" +27069;21101325993;"Fashion Highlight";journal;"29750466";"Firenze University Press";Yes;No;0,132;Q3;3;67;60;1917;24;57;0,40;28,61;74,07;0;Italy;Western Europe;"Firenze University Press";"2023-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +27070;21100222908;"Filosofia Politica";journal;"26122189, 03947297";"Societa Editrice Il Mulino";No;No;0,132;Q3;4;30;99;1422;13;94;0,17;47,40;32,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2012-2025";"History (Q3); Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27071;18269;"French Historical Studies";journal;"00161071, 15275493";"Duke University Press";No;No;0,132;Q3;26;23;67;2254;19;63;0,20;98,00;37,50;0;United States;Northern America;"Duke University Press";"1978, 1983, 1989, 1999, 2001-2025";"History (Q3)";"Arts and Humanities" +27072;19700188131;"Gladius";journal;"19884168, 0436029X";"Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,132;Q3;8;1;39;55;12;39;0,35;55,00;0,00;0;Spain;Western Europe;"Consejo Superior de Investigaciones Cientificas";"2010-2025";"History (Q3)";"Arts and Humanities" +27073;21100941064;"Haser";journal;"2172055X, 23864761";"Universidad de Sevilla";Yes;Yes;0,132;Q3;3;5;19;187;5;18;0,21;37,40;75,00;0;Spain;Western Europe;"Universidad de Sevilla";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +27074;21101215783;"Journal of Bodies, Sexualities, and Masculinities";journal;"26888149, 26888157";"Berghahn Journals";No;No;0,132;Q3;5;0;36;0;14;31;0,23;0,00;0,00;0;United Kingdom;Western Europe;"Berghahn Journals";"2020-2024";"Cultural Studies (Q3); Gender Studies (Q4)";"Social Sciences" +27075;12826;"Journal of Negro Education";journal;"21676437, 00222984";"Howard University";No;No;0,132;Q3;54;0;118;0;36;110;0,24;0,00;0,00;0;United States;Northern America;"Howard University";"1972, 1976-1977, 1980-1982, 1984, 1996-2000, 2005-2024";"Anthropology (Q3); Education (Q4)";"Social Sciences" +27076;4700152790;"Journal of Religious and Theological Information";journal;"15286924, 10477845";"Routledge";No;No;0,132;Q3;8;16;31;634;47;28;0,30;39,63;47,06;0;United States;Northern America;"Routledge";"1993-1994, 1996, 2000-2004, 2006-2007, 2009-2026";"Religious Studies (Q3)";"Arts and Humanities" +27077;21100922989;"Journal of Spiritual Formation and Soul Care";journal;"23281030, 19397909";"SAGE Publications Ltd";No;No;0,132;Q3;8;22;57;859;10;50;0,23;39,05;40,63;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2008-2026";"History (Q3); Religious Studies (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +27078;21101393714;"Mawaddah: Jurnal Hukum Keluarga Islam";journal;"30266076, 30315247";"";No;No;0,132;Q3;2;18;19;689;5;18;0,26;38,28;41,18;0;Indonesia;Asiatic Region;"";"2023-2025";"Religious Studies (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +27079;21100936373;"Medicina e Morale";journal;"22825940, 00257834";"Page Press Publications";No;No;0,132;Q3;6;37;85;1162;26;77;0,36;31,41;58,14;0;Italy;Western Europe;"Page Press Publications";"2019-2025";"Philosophy (Q3); Health Policy (Q4); Issues, Ethics and Legal Aspects (Q4); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine; Nursing" +27080;21101186341;"Online Journal of Music Sciences";journal;"25364421";"";Yes;Yes;0,132;Q3;2;66;67;2149;16;67;0,26;32,56;44,44;0;Turkey;Middle East;"";"2019-2025";"Music (Q3)";"Arts and Humanities" +27081;20300195020;"Questions Liturgiques";journal;"07745524, 17831709";"Peeters Publishers";No;No;0,132;Q3;5;0;24;0;3;23;0,15;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"2011-2017, 2019-2024";"Religious Studies (Q3)";"Arts and Humanities" +27082;21100815472;"Region: Regional Studies of Russia, Eastern Europe, and Central Asia";journal;"21650659, 21664307";"Slavica Publishers";No;No;0,132;Q3;10;4;35;277;11;32;0,21;69,25;40,00;0;United States;Northern America;"Slavica Publishers";"2012-2025";"History (Q3); Economics and Econometrics (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +27083;5100155067;"Revista de Estudios Historico-Juridicos";journal;"07176260, 07165455";"Ediciones Universitarias de Valparaiso";Yes;Yes;0,132;Q3;10;0;96;0;10;96;0,02;0,00;0,00;0;Chile;Latin America;"Ediciones Universitarias de Valparaiso";"1997-2024";"History (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +27084;5700176869;"Revista Espanola de Antropologia Americana";journal;"05566533, 19882718";"Universidad Complutense Madrid";Yes;Yes;0,132;Q3;13;20;64;746;13;57;0,25;37,30;29,41;0;Spain;Western Europe;"Universidad Complutense Madrid";"1970-1971, 2009-2025";"Anthropology (Q3)";"Social Sciences" +27085;21101039807;"Revue de Philosophie Economique";journal;"21184852, 13760971";"";No;No;0,132;Q3;3;0;46;0;8;44;0,08;0,00;0,00;0;France;Western Europe;"";"2019-2023";"Philosophy (Q3); Economics and Econometrics (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +27086;21101007454;"Ruch Filozoficzny";journal;"25453173, 00359599";"";Yes;Yes;0,132;Q3;3;41;112;1109;9;107;0,07;27,05;34,15;0;Poland;Eastern Europe;"";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +27087;21101046690;"Z Badan nad Ksiazka i Ksiegozbiorami Historycznymi";journal;"25448730, 18970788";"University of Warsaw";Yes;Yes;0,132;Q3;3;29;90;1021;7;81;0,06;35,21;56,52;0;Poland;Eastern Europe;"University of Warsaw";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Communication (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +27088;5600153996;"Academic Questions";journal;"19364709, 08954852";"National Association of Scholars";No;No;0,132;Q4;14;39;130;314;19;108;0,16;8,05;12,12;0;United States;Northern America;"National Association of Scholars";"1988-2025";"Education (Q4)";"Social Sciences" +27089;21101093362;"Archiwum Filozofii Prawa i Filozofii Spolecznej";journal;"20823304";"Polish Section of the International Association for Philosophy of Law and Social Philosophy (IVR)";Yes;Yes;0,132;Q4;4;18;87;534;15;86;0,15;29,67;45,00;0;Poland;Eastern Europe;"Polish Section of the International Association for Philosophy of Law and Social Philosophy (IVR)";"2019-2025";"Law (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +27090;21100313916;"Boletin de Estadistica e Investigacion Operativa";journal;"23871725";"Sociedad de Estadistica e Investigacion Operativa";No;No;0,132;Q4;5;25;71;556;7;63;0,08;22,24;37,50;0;Spain;Western Europe;"Sociedad de Estadistica e Investigacion Operativa";"2014-2025";"Management Science and Operations Research (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences" +27091;21101047123;"Chinese Journal of Applied Chemistry";journal;"10000518";"Science China Press";Yes;No;0,132;Q4;8;148;490;5003;194;484;0,46;33,80;38,75;0;China;Asiatic Region;"Science China Press";"2019-2026";"Biochemistry (Q4); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Environmental Chemistry (Q4); Materials Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry; Environmental Science; Materials Science" +27092;21101241993;"Chinese Journal of Optometry Ophthalmology and Visual Science";journal;"1674845X";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,132;Q4;5;126;482;3061;92;482;0,19;24,29;50,31;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Ophthalmology (Q4)";"Medicine" +27093;53326;"Chinese Journal of Plastic Surgery";journal;"10094598";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,132;Q4;14;158;597;5527;123;595;0,21;34,98;41,40;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2000-2016, 2020-2026";"Surgery (Q4)";"Medicine" +27094;21101039621;"Clinical and Experimental Morphology";journal;"22265988, 26866749";"MDV Group";No;No;0,132;Q4;6;54;103;1560;32;103;0,38;28,89;59,01;0;Russian Federation;Eastern Europe;"MDV Group";"2019-2025";"Cancer Research (Q4); Cell Biology (Q4); Molecular Medicine (Q4); Pathology and Forensic Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27095;21101101240;"Clinical Trials in Dentistry";journal;"27853039, 27849015";"EDRA S.p.A";No;No;0,132;Q4;6;0;42;0;8;32;0,20;0,00;0,00;0;Italy;Western Europe;"EDRA S.p.A";"2019-2024";"Oral Surgery (Q4)";"Dentistry" +27096;21101241165;"Eye Glaz";journal;"22224408, 26868083";"Academy of Medical Optics and Optometry Non-State Educational Private Institution of Continuing Professional Education LLC";No;No;0,132;Q4;4;36;85;796;20;84;0,26;22,11;57,61;0;Russian Federation;Eastern Europe;"Academy of Medical Optics and Optometry Non-State Educational Private Institution of Continuing Professional Education LLC";"2020-2025";"Ophthalmology (Q4); Optometry (Q4)";"Health Professions; Medicine" +27097;12732;"Ginecologia y Obstetricia de Mexico";journal;"03009041";"Asociacion Mexicana de Ginecologia y Obstetricia";Yes;No;0,132;Q4;18;42;311;969;52;278;0,15;23,07;36,90;0;Mexico;Latin America;"Asociacion Mexicana de Ginecologia y Obstetricia";"1946-2025";"Medicine (miscellaneous) (Q4); Obstetrics and Gynecology (Q4)";"Medicine" +27098;21100239819;"Historia da Educacao";journal;"14143518, 22363459";"Associacao Sul Rio Grandense de Pesquisadores em Historia da Educacao";Yes;Yes;0,132;Q4;8;36;116;1152;10;112;0,09;32,00;57,58;0;Brazil;Latin America;"Associacao Sul Rio Grandense de Pesquisadores em Historia da Educacao";"2013-2025";"Education (Q4)";"Social Sciences" +27099;21101089392;"HJOG";journal;"22419551";"Hellenics Society of Obstetrics and Gynecology";No;No;0,132;Q4;3;32;87;826;16;78;0,18;25,81;48,67;0;Greece;Western Europe;"Hellenics Society of Obstetrics and Gynecology";"2019-2026";"Obstetrics and Gynecology (Q4)";"Medicine" +27100;21101258107;"ICMMT - International Conference on Microwave and Millimeter Wave Technology";journal;"29943124, 29943132";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,132;Q4;4;894;752;7182;176;749;0,23;8,03;31,47;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Instrumentation (Q4); Radiation (Q4); Signal Processing (Q4)";"Computer Science; Engineering; Physics and Astronomy" +27101;21100854157;"Indian Journal of Transplantation";journal;"22120017, 22120025";"Wolters Kluwer Medknow Publications";Yes;Yes;0,132;Q4;5;116;313;1855;68;270;0,22;15,99;31,02;0;Netherlands;Western Europe;"Wolters Kluwer Medknow Publications";"2016, 2020-2025";"Transplantation (Q4)";"Medicine" +27102;21100208021;"Infant Observation";journal;"17458943, 13698036";"Taylor and Francis Ltd.";No;No;0,132;Q4;8;10;35;147;12;30;0,38;14,70;72,73;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Applied Psychology (Q4); Clinical Psychology (Q4); Developmental and Educational Psychology (Q4); Social Psychology (Q4)";"Psychology" +27103;26677;"International Journal of Energy Technology and Policy";journal;"1741508X, 14728923";"Inderscience Publishers";No;No;0,132;Q4;21;29;45;644;16;45;0,42;22,21;38,37;0;United Kingdom;Western Europe;"Inderscience Publishers";"2002-2025";"Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Geography, Planning and Development (Q4)";"Energy; Social Sciences" +27104;19300157106;"International Journal of Internet Manufacturing and Services";journal;"17516056, 17516048";"Inderscience Enterprises Ltd";No;No;0,132;Q4;11;21;63;905;38;63;0,73;43,10;33,33;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2011, 2013-2025";"Computer Networks and Communications (Q4); Industrial and Manufacturing Engineering (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences; Engineering" +27105;19700186856;"International Journal of Materials and Structural Integrity";journal;"17450055, 17450063";"Inderscience Enterprises Ltd";No;No;0,132;Q4;14;0;16;0;6;16;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2020, 2022-2023";"Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +27106;21100239661;"Journal Globalization, Competitiveness and Governability";journal;"19887116";"Georgetown University";Yes;Yes;0,132;Q4;9;18;54;710;25;54;0,47;39,44;47,83;0;United States;Northern America;"Georgetown University";"2013-2026";"Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +27107;21101241149;"Journal of Business Law";journal;"2754205X, 00219460";"Sweet and Maxwell";No;No;0,132;Q4;4;20;100;481;29;99;0,24;24,05;33,33;0;United Kingdom;Western Europe;"Sweet and Maxwell";"2020-2025";"Law (Q4)";"Social Sciences" +27108;99234;"Journal of Environmental Studies";journal;"23456922, 10258620";"University of Tehran";Yes;No;0,132;Q4;12;20;85;846;24;85;0,24;42,30;35,09;0;Iran;Middle East;"University of Tehran";"2002-2025";"Ecology (Q4); Pollution (Q4); Waste Management and Disposal (Q4); Water Science and Technology (Q4)";"Environmental Science" +27109;19500157305;"Journal of Food Investigations";journal;"26768704, 04229576";"University of Szeged";No;No;0,132;Q4;4;3;74;82;17;67;0,12;27,33;76,92;0;Hungary;Eastern Europe;"University of Szeged";"2008-2025";"Food Science (Q4)";"Agricultural and Biological Sciences" +27110;21101114179;"Journal of Head and Neck Physicians and Surgeons";journal;"23478128";"Wolters Kluwer Medknow Publications";Yes;Yes;0,132;Q4;3;33;99;720;24;86;0,21;21,82;38,82;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2025";"Oncology (Q4); Oral Surgery (Q4); Otorhinolaryngology (Q4); Surgery (Q4)";"Dentistry; Medicine" +27111;19900193939;"Journal of Home Economics Research";journal;"11180021";"Home Economics Research Association of Nigeria";No;No;0,132;Q4;4;22;113;580;12;113;0,12;26,36;64,29;0;Nigeria;Africa;"Home Economics Research Association of Nigeria";"2009-2012, 2018-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +27112;21101294465;"Journal of Indian Library Association";journal;"2456513X, 22775145";"Indian Library Association";No;No;0,132;Q4;4;48;137;764;10;129;0,06;15,92;37,29;0;India;Asiatic Region;"Indian Library Association";"2021-2025";"Library and Information Sciences (Q4)";"Social Sciences" +27113;21101285769;"Journal of Management and Engineering Integration";journal;"30651433";"Association for Industry, Engineering, and Management Systems (AIEMS)";No;No;0,132;Q4;2;19;49;409;17;48;0,29;21,53;37,84;0;United States;Northern America;"Association for Industry, Engineering, and Management Systems (AIEMS)";"2022-2025";"Education (Q4)";"Social Sciences" +27114;21100379734;"Journal of Nephropathology";journal;"22518819, 22518363";"Society of Diabetic Nephropathy Prevention";Yes;No;0,132;Q4;37;25;102;680;28;99;0,29;27,20;48,51;0;Iran;Middle East;"Society of Diabetic Nephropathy Prevention";"2012-2025";"Nephrology (Q4)";"Medicine" +27115;145545;"Journal of Postgraduate Medical Institute";journal;"10135472, 18119387";"Postgraduate Medical Institute";Yes;No;0,132;Q4;14;49;153;1032;44;144;0,32;21,06;53,57;0;Pakistan;Asiatic Region;"Postgraduate Medical Institute";"2005-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27116;21101221555;"Journal of the Indian Academy of Echocardiography and Cardiovascular Imaging";journal;"25431471, 25431463";"Wolters Kluwer Medknow Publications";Yes;Yes;0,132;Q4;5;27;139;405;16;123;0,13;15,00;14,81;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2017-2025";"Cardiology and Cardiovascular Medicine (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +27117;21100820673;"Journal of the Korean Society for Precision Engineering";journal;"12259071, 22878769";"Korean Society for Precision Engineeing";No;No;0,132;Q4;12;118;351;2957;66;351;0,19;25,06;21,61;0;South Korea;Asiatic Region;"Korean Society for Precision Engineeing";"2017-2025";"Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering" +27118;4700153503;"Journal of the Liaquat University of Medical and Health Sciences";journal;"17290341, 23098627";"Liaquat University of Medical and Health Sciences";Yes;No;0,132;Q4;14;116;206;3178;60;192;0,28;27,40;60,70;0;Pakistan;Asiatic Region;"Liaquat University of Medical and Health Sciences";"2006-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27119;23516;"Journal of the Royal Society of Western Australia";journal;"0035922X";"Royal Society of Western Australia Inc.";No;No;0,132;Q4;30;8;15;396;4;14;0,30;49,50;36,36;0;Australia;Pacific Region;"Royal Society of Western Australia Inc.";"1981, 1983-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +27120;5700175216;"Magyar Pszichologiai Szemle";journal;"00250279, 15882799";"Akademiai Kiado";No;No;0,132;Q4;11;43;92;2442;29;88;0,34;56,79;75,45;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +27121;5900153314;"Malaysian Forester";journal;"03022935";"Forestry Department of Peninsular Malaysia";No;No;0,132;Q4;13;31;65;1003;22;65;0,42;32,35;43,55;0;Malaysia;Asiatic Region;"Forestry Department of Peninsular Malaysia";"1979, 2007-2026";"Forestry (Q4)";"Agricultural and Biological Sciences" +27122;21101216488;"Nigerian Health Journal";journal;"01899287, 2992345X";"Nigerian Medical Association";No;No;0,132;Q4;4;158;191;5042;48;189;0,25;31,91;43,21;0;Nigeria;Africa;"Nigerian Medical Association";"2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27123;21101260637;"OIDA International Journal of Sustainable Development";journal;"19236662, 19236654";"";Yes;No;0,132;Q4;3;237;160;9279;61;160;0,34;39,15;53,44;0;Canada;Northern America;"";"2020-2025";"Development (Q4); Gender Studies (Q4); Geography, Planning and Development (Q4); Health (social science) (Q4)";"Social Sciences" +27124;19700174966;"Pharmakeftiki";journal;"22413081, 11054999";"Zita Medical Management";No;No;0,132;Q4;7;141;60;1980;39;60;0,83;14,04;55,52;0;Greece;Western Europe;"Zita Medical Management";"2008-2010, 2012-2025";"Pharmaceutical Science (Q4); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +27125;21100241666;"Proceedings of the ICE - Engineering History and Heritage";journal;"17579430, 17579449";"ICE Publishing";No;No;0,132;Q4;8;9;44;250;12;32;0,29;27,78;31,25;0;United Kingdom;Western Europe;"ICE Publishing";"2013-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +27126;14348;"Progress in Biochemistry and Biophysics";journal;"10003282";"Science Press";Yes;No;0,132;Q4;25;150;697;11009;249;688;0,39;73,39;43,68;0;China;Asiatic Region;"Science Press";"1996-2025";"Biochemistry (Q4); Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology" +27127;21101393345;"Prospecting and Development of Oil and Gas Fields";journal;"19939973, 2415332X";"Ivano Frankivsk National Technical University of Oil and Gas";No;No;0,132;Q4;4;9;40;267;14;40;0,55;29,67;6,90;0;Ukraine;Eastern Europe;"Ivano Frankivsk National Technical University of Oil and Gas";"2024-2025";"Energy Engineering and Power Technology (Q4); Environmental Engineering (Q4); Fuel Technology (Q4); Geology (Q4); Geophysics (Q4); Industrial and Manufacturing Engineering (Q4)";"Earth and Planetary Sciences; Energy; Engineering; Environmental Science" +27128;60873;"Psychiatria Hungarica";journal;"02377896";"";No;No;0,132;Q4;17;7;73;0;21;73;0,32;0,00;58,33;0;Hungary;Eastern Europe;"";"1999-2000, 2005-2025";"Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)";"Medicine" +27129;21101037325;"Reserve Bank of India Occasional Papers";journal;"09727493";"Reserve Bank of India";No;No;0,132;Q4;4;0;16;0;6;16;0,00;0,00;0,00;0;India;Asiatic Region;"Reserve Bank of India";"2019-2024";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +27130;16911;"Revija za Sociologiju";journal;"18467954, 0350154X";"Croatian Sociological Association";Yes;Yes;0,132;Q4;12;3;39;176;25;37;0,46;58,67;40,00;0;Croatia;Eastern Europe;"Croatian Sociological Association";"1981-1982, 1987, 1989, 1995, 2009-2025";"Sociology and Political Science (Q4)";"Social Sciences" +27131;19264;"Revista Chilena de Neuro-Psiquiatria";journal;"07179227, 00347388";"Sociedad de Neurologia Psiquiatria y Neurocirugia";Yes;Yes;0,132;Q4;20;21;137;480;33;123;0,16;22,86;27,03;0;Chile;Latin America;"Sociedad de Neurologia Psiquiatria y Neurocirugia";"1948, 1974, 1979, 1981-1988, 1997-1998, 2000-2025";"Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4); Surgery (Q4)";"Medicine" +27132;21101280900;"Sadra Medical Sciences Journal";journal;"23224339";"Shiraz University of Medical Sciences";No;No;0,132;Q4;3;63;123;2296;25;123;0,24;36,44;47,87;0;Iran;Middle East;"Shiraz University of Medical Sciences";"2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27133;21101209201;"Shanghai Journal of Preventive Medicine";journal;"10049231";"";Yes;No;0,132;Q4;7;85;657;2045;162;656;0,24;24,06;48,35;0;China;Asiatic Region;"";"2020-2025";"Health Policy (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +27134;21100305259;"Solid State Phenomena";book series;"16629779, 10120394";"Trans Tech Publications Ltd";No;No;0,132;Q4;48;163;880;3570;457;88;0,60;21,90;17,93;0;Switzerland;Western Europe;"Trans Tech Publications Ltd";"1988, 1992-1993, 1995-2026";"Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4)";"Materials Science; Physics and Astronomy" +27135;21101257878;"Tradition and Modernity in Veterinary Medicine";journal;"25349333, 25349341";"Faculty of Veterinary Medicine, University of Forestry";No;No;0,132;Q4;4;30;95;831;25;95;0,32;27,70;58,73;0;Bulgaria;Eastern Europe;"Faculty of Veterinary Medicine, University of Forestry";"2019-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +27136;5600157612;"USDA Forest Service - General Technical Report RMRS-GTR";journal;"02775786";"USDA Forest Service";No;No;0,132;Q4;28;3;9;259;2;9;0,22;86,33;41,67;0;United States;Northern America;"USDA Forest Service";"1998-1999, 2002-2020, 2024-2025";"Ecology (Q4); Forestry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +27137;21101185266;"ICSBT International Conference on Smart Business Technologies";conference and proceedings;"2184772X";"Science and Technology Publications, Lda";No;No;0,132;-;4;0;61;0;29;58;0,59;0,00;0,00;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2022-2024";"Business, Management and Accounting (miscellaneous); Computer Networks and Communications; Computer Science Applications; Electrical and Electronic Engineering; Information Systems and Management";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering" +27138;21101124724;"International Seminar on ORC Power Systems";conference and proceedings;"27097609";"Knowledge Center on Organic Rankine Cycle Technology (KCORC)";No;No;0,132;-;6;0;77;0;14;76;0,18;0,00;0,00;0;Netherlands;Western Europe;"Knowledge Center on Organic Rankine Cycle Technology (KCORC)";"2021, 2024";"Energy Engineering and Power Technology; Engineering (miscellaneous); Mechanical Engineering; Renewable Energy, Sustainability and the Environment";"Energy; Engineering" +27139;21100253049;"Proceedings of Science";conference and proceedings;"18248039";"Sissa Medialab Srl";Yes;Yes;0,132;-;25;2357;7814;37372;1015;7740;0,15;15,86;24,06;0;Italy;Western Europe;"Sissa Medialab Srl";"1998-2025";"Multidisciplinary";"Multidisciplinary" +27140;21100429166;"Proceedings of the Summer School Francesco Turco";conference and proceedings;"22838996";"AIDI - Italian Association of Industrial Operations Professors";No;No;0,132;-;13;119;319;3168;88;316;0,23;26,62;43,52;0;Italy;Western Europe;"AIDI - Italian Association of Industrial Operations Professors";"2013-2025";"Business and International Management; Energy Engineering and Power Technology; Fuel Technology; Geochemistry and Petrology; Industrial and Manufacturing Engineering; Management of Technology and Innovation; Management Science and Operations Research; Organizational Behavior and Human Resource Management; Safety, Risk, Reliability and Quality; Strategy and Management; Waste Management and Disposal";"Business, Management and Accounting; Decision Sciences; Earth and Planetary Sciences; Energy; Engineering; Environmental Science" +27141;21100903457;"Boletin de Estetica";journal;"16687132, 24084417";"Centro de Investigaciones Filosoficas";No;Yes;0,131;Q2;2;13;46;547;5;43;0,06;42,08;16,67;0;Argentina;Latin America;"Centro de Investigaciones Filosoficas";"2018-2025";"Visual Arts and Performing Arts (Q2); Philosophy (Q3)";"Arts and Humanities" +27142;21101053114;"Ciceroniana On Line";journal;"25325353";"University of Torino";Yes;Yes;0,131;Q2;5;16;59;936;6;51;0,11;58,50;40,00;0;Italy;Western Europe;"University of Torino";"2017-2025";"Classics (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); History (Q3); Linguistics and Language (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +27143;21101257963;"IDA: International Design and Art Journal";journal;"26875373";"";Yes;Yes;0,131;Q2;2;23;43;890;10;43;0,23;38,70;58,97;0;Turkey;Middle East;"";"2023-2025";"Visual Arts and Performing Arts (Q2); Architecture (Q3); Arts and Humanities (miscellaneous) (Q3); Education (Q4)";"Arts and Humanities; Engineering; Social Sciences" +27144;16200154794;"JNT-Journal of Narrative Theory";journal;"15490815, 15489248";"Eastern Michigan University, Department of English Language and Literature";No;No;0,131;Q2;16;17;49;878;14;48;0,30;51,65;52,94;0;United States;Northern America;"Eastern Michigan University, Department of English Language and Literature";"2002-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +27145;5800208590;"Middle Eastern Literatures";journal;"1475262X, 14752638";"Routledge";No;No;0,131;Q2;12;9;53;366;16;48;0,30;40,67;16,67;0;United Kingdom;Western Europe;"Routledge";"2009-2026";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27146;11600153481;"New Review of Film and Television Studies";journal;"17400309, 17407923";"Routledge";No;No;0,131;Q2;17;18;115;693;53;107;0,41;38,50;50,00;0;United Kingdom;Western Europe;"Routledge";"2008, 2010-2026";"Visual Arts and Performing Arts (Q2); Communication (Q4)";"Arts and Humanities; Social Sciences" +27147;21101039072;"Praktyka Teoretyczna";journal;"20818130";"University of Wroclaw";Yes;Yes;0,131;Q2;6;17;103;684;25;100;0,16;40,24;25,00;0;Poland;Eastern Europe;"University of Wroclaw";"2019-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Philosophy (Q3); Anthropology (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27148;5700169459;"Review of English Studies";journal;"14716968, 00346551";"Oxford University Press";No;No;0,131;Q2;21;27;145;2205;42;144;0,25;81,67;32,26;0;United Kingdom;Western Europe;"Oxford University Press";"1925-1948, 1950-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27149;42008;"Anthropologica";journal;"00035459, 22923586";"University of Toronto";Yes;No;0,131;Q3;26;32;113;1148;29;100;0,27;35,88;62,50;0;Canada;Northern America;"University of Toronto";"1980, 1985, 1987, 1993-1994, 1999, 2002, 2005-2025";"Arts and Humanities (miscellaneous) (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +27150;21100870824;"Capitale Culturale";journal;"20392362";"eum - Edizioni Universita di Macerata";Yes;Yes;0,131;Q3;8;74;285;4327;38;266;0,13;58,47;63,37;0;Italy;Western Europe;"eum - Edizioni Universita di Macerata";"2018-2025";"Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3); Conservation (Q3); History (Q3); Museology (Q3); Tourism, Leisure and Hospitality Management (Q4)";"Arts and Humanities; Business, Management and Accounting" +27151;21101183655;"Cuestiones de Filosofia";journal;"23899441, 01235095";"Universidad Pedagogica y Tecnologica de Colombia";Yes;Yes;0,131;Q3;3;26;60;530;9;52;0,08;20,38;35,00;0;Colombia;Latin America;"Universidad Pedagogica y Tecnologica de Colombia";"2019-2026";"Philosophy (Q3)";"Arts and Humanities" +27152;5700163990;"Culture and Religion";journal;"14755629, 14755610";"Routledge";No;No;0,131;Q3;27;9;48;543;18;46;0,38;60,33;21,43;0;United Kingdom;Western Europe;"Routledge";"2009-2021, 2023-2026";"Cultural Studies (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27153;21100945768;"Journal of Contemporary Iraq and the Arab World";journal;"25158546, 25158538";"Intellect Ltd.";No;No;0,131;Q3;3;18;41;154;10;34;0,22;8,56;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +27154;21100892239;"Journal of Indian Council of Philosophical Research";journal;"23639962, 09707794";"Springer India";No;No;0,131;Q3;7;32;66;791;12;65;0,26;24,72;50,00;0;India;Asiatic Region;"Springer India";"2015-2026";"Philosophy (Q3)";"Arts and Humanities" +27155;21101371014;"LingBaW. Linguistics Beyond and Within";journal;"24505188";"John Paul II Catholic University of Lublin";Yes;No;0,131;Q3;3;16;44;496;11;44;0,23;31,00;62,96;0;Poland;Eastern Europe;"John Paul II Catholic University of Lublin";"2021-2025";"Linguistics and Language (Q3)";"Social Sciences" +27156;21100780472;"Memoria y Civilizacion";journal;"11390107, 22546367";"Servicio de Publicaciones de la Universidad de Navarra";Yes;Yes;0,131;Q3;6;33;77;1736;10;74;0,12;52,61;44,44;0;Spain;Western Europe;"Servicio de Publicaciones de la Universidad de Navarra";"2015-2025";"History (Q3)";"Arts and Humanities" +27157;21100322413;"Muzikoloski Zbornik";journal;"23504242, 0580373X";"University of Ljubljana Press";Yes;Yes;0,131;Q3;7;20;47;605;10;41;0,07;30,25;41,18;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2008-2025";"Music (Q3)";"Arts and Humanities" +27158;21101259370;"Nsukka Journal of the Humanities";journal;"07948107, 23610034";"";No;No;0,131;Q3;2;64;60;2203;15;60;0,20;34,42;41,04;0;Nigeria;Africa;"";"2020-2025";"Archeology (arts and humanities) (Q3); History (Q3); Multidisciplinary (Q4)";"Arts and Humanities; Multidisciplinary" +27159;21100811504;"Rivista di Filosofia del Diritto";journal;"2280482X";"Societa Editrice Il Mulino";No;No;0,131;Q3;7;36;81;1231;16;77;0,14;34,19;18,18;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2016-2025";"Philosophy (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +27160;5800208074;"Sintagma";journal;"02149141, 20136455";"Universitat de Lleida";Yes;Yes;0,131;Q3;8;7;25;228;9;25;0,32;32,57;77,78;0;Spain;Western Europe;"Universitat de Lleida";"2011-2026";"Linguistics and Language (Q3)";"Social Sciences" +27161;19400157214;"Studies on Ethno-Medicine";journal;"09735070";"Kamala-Raj Enterprises";No;No;0,131;Q3;25;10;56;460;16;56;0,26;46,00;38,89;0;India;Asiatic Region;"Kamala-Raj Enterprises";"2009-2025";"Cultural Studies (Q3); Anthropology (Q4); Complementary and Alternative Medicine (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +27162;21100797237;"Studii de Lingvistica";journal;"22845437, 22482547";"University of Oradea Publishing House";Yes;Yes;0,131;Q3;4;12;55;408;4;50;0,08;34,00;63,64;0;Romania;Eastern Europe;"University of Oradea Publishing House";"2016-2024";"Linguistics and Language (Q3)";"Social Sciences" +27163;27710;"Teaching Philosophy";journal;"21536619, 01455788";"Philosophy Documentation Center";No;No;0,131;Q3;19;23;80;963;23;78;0,25;41,87;30,77;1;United States;Northern America;"Philosophy Documentation Center";"1977, 1996-2025";"Philosophy (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +27164;21101151817;"Think (UK)";journal;"17551196, 14771756";"Cambridge University Press";No;No;0,131;Q3;4;21;100;39;30;99;0,37;1,86;31,82;0;United Kingdom;Western Europe;"Cambridge University Press";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +27165;21100838570;"Academia (Greece)";journal;"22411402";"Higher Education Policy Network";Yes;Yes;0,131;Q4;7;35;63;1276;49;56;1,24;36,46;50,00;0;Greece;Western Europe;"Higher Education Policy Network";"2017-2025";"Education (Q4)";"Social Sciences" +27166;27821;"Acta Gastroenterologica Latinoamericana";journal;"03009033";"Sociedad Argentina de Gastroenterologia";Yes;Yes;0,131;Q4;19;44;136;1073;23;110;0,17;24,39;39,47;0;Argentina;Latin America;"Sociedad Argentina de Gastroenterologia";"1970-1974, 1977-2025";"Gastroenterology (Q4)";"Medicine" +27167;21100255391;"Acta Phlebologica";journal;"1593232X, 18271766";"Edizioni Minerva Medica";No;No;0,131;Q4;11;19;90;362;16;66;0,15;19,05;31,03;0;Italy;Western Europe;"Edizioni Minerva Medica";"2013-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +27168;4400151603;"Advances in Inorganic Chemistry";book series;"08988838, 15578917";"Academic Press Inc.";No;No;0,131;Q4;61;18;62;1818;124;10;1,54;101,00;0,00;0;United States;Northern America;"Academic Press Inc.";"1982-1996, 1998-2006, 2008-2025";"Inorganic Chemistry (Q4)";"Chemistry" +27169;21100200825;"ARPN Journal of Engineering and Applied Sciences";journal;"24095656, 18196608";"Asian Research Publishing Network";Yes;No;0,131;Q4;46;167;698;4444;175;698;0,29;26,61;24,64;0;Pakistan;Asiatic Region;"Asian Research Publishing Network";"2009, 2011-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +27170;16873;"Biochimica Clinica";journal;"03930564";"Edizioni Minerva Medica";No;No;0,131;Q4;12;55;213;1950;55;176;0,36;35,45;63,82;0;Italy;Western Europe;"Edizioni Minerva Medica";"1987, 2010-2025";"Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Medical Laboratory Technology (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +27171;21101237688;"Brazilian Journal of Biosystems Engineering";journal;"19817061, 23596724";"Universidade Estadual Paulista (UNESP), Faculdade de Ciencias e Engenharia";Yes;No;0,131;Q4;5;12;67;372;22;67;0,35;31,00;35,14;0;Brazil;Latin America;"Universidade Estadual Paulista (UNESP), Faculdade de Ciencias e Engenharia";"2020-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +27172;21100775934;"British Journal of American Legal Studies";journal;"27195864, 20494092";"";Yes;No;0,131;Q4;6;7;37;2390;7;36;0,17;341,43;45,45;0;Poland;Eastern Europe;"";"2016-2025";"Law (Q4)";"Social Sciences" +27173;17434;"Castanea";journal;"00087475";"Southern Appalachian Botanical Survey";No;No;0,131;Q4;30;13;46;550;8;44;0,22;42,31;34,09;0;United States;Northern America;"Southern Appalachian Botanical Survey";"1982, 1990-2025";"Plant Science (Q4)";"Agricultural and Biological Sciences" +27174;21101064227;"Chemical Industry and Engineering";journal;"10049533";"Tianjin University";No;No;0,131;Q4;7;115;279;3684;102;278;0,36;32,03;36,76;0;China;Asiatic Region;"Tianjin University";"2019-2026";"Catalysis (Q4); Chemical Engineering (miscellaneous) (Q4); Fluid Flow and Transfer Processes (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering" +27175;21101020020;"Chinese Journal of Dermatology";journal;"04124030";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,131;Q4;11;223;662;6410;138;652;0,21;28,74;54,65;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Dermatology (Q4); Infectious Diseases (Q4)";"Medicine" +27176;21101046253;"Chinese Journal of Polar Research";journal;"10077073";"Editorial Office of Polar Research";No;No;0,131;Q4;5;67;154;2649;51;154;0,35;39,54;35,71;0;China;Asiatic Region;"Editorial Office of Polar Research";"2019-2025";"Atmospheric Science (Q4); Ecology (Q4); Geology (Q4)";"Earth and Planetary Sciences; Environmental Science" +27177;144788;"Chinese Journal of Sensors and Actuators";journal;"10041699";"Guojia Jiaowei Quanguo Gaoxiao Chuangan Jishu Yanjiuhui";No;No;0,131;Q4;21;152;779;3186;254;779;0,34;20,96;33,94;0;China;Asiatic Region;"Guojia Jiaowei Quanguo Gaoxiao Chuangan Jishu Yanjiuhui";"2004-2025";"Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Engineering" +27178;7200153131;"Fisioterapia";journal;"15782107, 02115638";"Ediciones Doyma, S.L.";No;No;0,131;Q4;14;47;149;1014;32;118;0,15;21,57;52,44;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2005-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions" +27179;21100814514;"Forestry Ideas";journal;"13143905";"Lesotekhnicheski Universitet (University of Forestry)";Yes;No;0,131;Q4;7;55;93;2270;34;93;0,48;41,27;43,45;0;Bulgaria;Eastern Europe;"Lesotekhnicheski Universitet (University of Forestry)";"2016-2026";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +27180;11900154344;"Foundations and Trends in Technology, Information and Operations Management";journal;"15719545";"Now Publishers Inc";No;No;0,131;Q4;18;13;26;958;7;26;0,35;73,69;24,14;0;United States;Northern America;"Now Publishers Inc";"2005, 2007-2014, 2016-2025";"Management Science and Operations Research (Q4)";"Decision Sciences" +27181;21100833040;"Geopolitica(s)";journal;"21727155, 21723958";"Universidad Complutense Madrid";Yes;Yes;0,131;Q4;14;17;59;871;13;57;0,18;51,24;17,86;1;Spain;Western Europe;"Universidad Complutense Madrid";"2010-2025";"Geography, Planning and Development (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +27182;21886;"Giornale Italiano di Farmacia Clinica";journal;"11203749";"Il Pensiero Scientifico Editore s.r.l.";No;No;0,131;Q4;8;20;52;335;4;43;0,08;16,75;67,44;0;Italy;Western Europe;"Il Pensiero Scientifico Editore s.r.l.";"1989-2012, 2014-2025";"Pharmacology (medical) (Q4)";"Medicine" +27183;21101169188;"Global Clinical Engineering Journal";journal;"25782762";"International Medical Sciences Group, LLC";No;No;0,131;Q4;3;32;40;986;17;33;0,43;30,81;35,48;0;United States;Northern America;"International Medical Sciences Group, LLC";"2023-2025";"Biomedical Engineering (Q4); Health Professions (miscellaneous) (Q4)";"Engineering; Health Professions" +27184;24112;"Indian Journal of Heterocyclic Chemistry";journal;"24564311, 09711627";"Connect Journals";No;No;0,131;Q4;32;104;205;3479;80;205;0,46;33,45;38,72;0;India;Asiatic Region;"Connect Journals";"1996-2025";"Biochemistry (Q4); Organic Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +27185;14678;"Infectious Diseases in Clinical Practice";journal;"10569103, 15369943";"Lippincott Williams and Wilkins Ltd.";No;No;0,131;Q4;26;95;344;2398;56;284;0,15;25,24;44,18;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"1992-2002, 2004-2026";"Infectious Diseases (Q4); Microbiology (medical) (Q4)";"Medicine" +27186;19700186848;"International Journal of Grid and High Performance Computing";journal;"19380259, 19380267";"IGI Global Publishing";No;No;0,131;Q4;17;6;44;142;25;44;0,88;23,67;36,36;0;United States;Northern America;"IGI Global Publishing";"2009-2025";"Computer Networks and Communications (Q4)";"Computer Science" +27187;6400153167;"International Journal of Microstructure and Materials Properties";journal;"17418410, 17418429";"Inderscience Enterprises Ltd";No;No;0,131;Q4;20;16;66;288;26;66;0,46;18,00;41,18;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +27188;19700173244;"International Journal of Unconventional Computing";journal;"15487199, 15487202";"Old City Publishing";No;No;0,131;Q4;22;15;39;734;16;37;0,46;48,93;21,21;0;United States;Northern America;"Old City Publishing";"2008-2025";"Computer Science (miscellaneous) (Q4)";"Computer Science" +27189;21101195677;"Iranian Journal of Neurosurgery";journal;"24236829, 24236497";"Guilan University of Medical Sciences";Yes;Yes;0,131;Q4;4;22;98;573;20;96;0,20;26,05;18,75;0;Iran;Middle East;"Guilan University of Medical Sciences";"2019-2025";"Neurology (clinical) (Q4); Surgery (Q4)";"Medicine" +27190;50023;"JAVA - Journal of the Association for Vascular Access";journal;"15571289, 15528855";"Allen Press Inc.";No;No;0,131;Q4;24;29;77;465;17;60;0,27;16,03;67,31;0;United States;Northern America;"Allen Press Inc.";"2003-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27191;81657;"Journal fur Reproduktionsmedizin und Endokrinologie";journal;"18102107, 18109292";"Krause und Pachernegg GmbH";Yes;No;0,131;Q4;13;6;36;130;7;20;0,20;21,67;35,71;0;Austria;Western Europe;"Krause und Pachernegg GmbH";"2002, 2004-2025";"Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)";"Medicine" +27192;21101162554;"Journal of Asian Midwives";journal;"24092290";"South Asian Midwives Association (SAMA)";No;No;0,131;Q4;4;1;58;41;10;47;0,18;41,00;100,00;0;Pakistan;Asiatic Region;"South Asian Midwives Association (SAMA)";"2019-2025";"Maternity and Midwifery (Q4)";"Nursing" +27193;21101192302;"Journal of Ear Nose Throat and Head Neck Surgery";journal;"13006525, 21490880";"Turkiye Klinikleri";Yes;No;0,131;Q4;1;27;62;782;11;59;0,18;28,96;46,99;0;Turkey;Middle East;"Turkiye Klinikleri";"2023-2025";"Otorhinolaryngology (Q4); Surgery (Q4)";"Medicine" +27194;21101298830;"Journal of Gorgan University of Medical Sciences";journal;"20084080, 15624765";"Golestan University of Medical Sciences";No;No;0,131;Q4;3;40;156;1102;36;156;0,20;27,55;41,54;0;Iran;Middle East;"Golestan University of Medical Sciences";"2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27195;19400156803;"Journal of Human Security";journal;"18353800";"";Yes;Yes;0,131;Q4;11;13;52;421;24;50;0,46;32,38;25,00;0;United Kingdom;Western Europe;"";"2009-2011, 2013-2017, 2019-2025";"Law (Q4); Political Science and International Relations (Q4); Safety Research (Q4); Sociology and Political Science (Q4)";"Social Sciences" +27196;21100943604;"Journal of Siberian Federal University: Chemistry";journal;"23136049, 19982836";"Siberian Federal University";Yes;No;0,131;Q4;8;59;172;1365;52;157;0,32;23,14;48,61;0;Russian Federation;Eastern Europe;"Siberian Federal University";"2019-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +27197;21100211765;"Korean Economic Review";journal;"02543737";"Korean Economic Association";No;No;0,131;Q4;9;11;43;268;11;43;0,21;24,36;45,45;0;South Korea;Asiatic Region;"Korean Economic Association";"2012-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +27198;54337;"La Mer";journal;"05031540, 24342882";"Societe Franco-Japonaise d'Oceanographie";Yes;No;0,131;Q4;13;3;31;62;6;30;0,17;20,67;22,22;0;Japan;Asiatic Region;"Societe Franco-Japonaise d'Oceanographie";"1992-2025";"Ocean Engineering (Q4); Oceanography (Q4)";"Earth and Planetary Sciences; Engineering" +27199;21101215782;"Management Review (Taiwan)";journal;"10219447, 24147354";"Kung-Hwa Management Foundation";No;No;0,131;Q4;3;16;38;695;8;38;0,26;43,44;36,36;0;Taiwan;Asiatic Region;"Kung-Hwa Management Foundation";"2021-2025";"Business and International Management (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +27200;19800188074;"Medicinal Plants - International Journal of Phytomedicines and Related Industries";journal;"09754261, 09756892";"IOS Press BV";No;No;0,131;Q4;15;83;236;3465;84;231;0,35;41,75;46,67;0;Netherlands;Western Europe;"IOS Press BV";"2010-2025";"Drug Discovery (Q4); Organic Chemistry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Chemistry; Pharmacology, Toxicology and Pharmaceutics" +27201;21101310687;"Methods and Applications of Analysis";journal;"10732772, 19450001";"International Press, Inc.";No;No;0,131;Q4;6;10;32;277;6;31;0,12;27,70;31,25;0;United States;Northern America;"International Press, Inc.";"2003, 2020-2025";"Analysis (Q4); Applied Mathematics (Q4); Computational Mathematics (Q4); Control and Optimization (Q4)";"Mathematics" +27202;21101145683;"Mexico y la Cuenca del Pacifico";journal;"16650174, 20075308";"Universidad de Guadalajara";No;Yes;0,131;Q4;5;12;46;621;19;46;0,44;51,75;35,00;0;Mexico;Latin America;"Universidad de Guadalajara";"2019-2026";"Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +27203;21101034071;"Neurographics";journal;"26378329";"American Society of Neuroradiology";No;No;0,131;Q4;5;37;82;1980;20;81;0,26;53,51;38,26;0;United States;Northern America;"American Society of Neuroradiology";"2019-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +27204;21101169864;"N.N. Priorov Journal of Traumatology and Orthopedics";journal;"26586738, 08698678";"Eco-Vector LLC";No;No;0,131;Q4;5;69;130;2344;43;130;0,30;33,97;29,07;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Surgery (Q4)";"Health Professions; Medicine" +27205;21100403186;"Pediatric Infection and Vaccine";journal;"23841087, 23841079";"The Korean Society of Pediatric Infectious Diseases";Yes;No;0,131;Q4;6;0;64;0;12;64;0,24;0,00;0,00;0;South Korea;Asiatic Region;"The Korean Society of Pediatric Infectious Diseases";"2015-2024";"Infectious Diseases (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +27206;21100781810;"Physician Assistant Clinics";journal;"24058009, 24057991";"Elsevier Inc.";No;No;0,131;Q4;9;68;216;1702;45;168;0,25;25,03;72,94;0;United States;Northern America;"Elsevier Inc.";"2016-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27207;21100877997;"Primate Biology";journal;"23634715, 23634707";"Copernicus Publications";Yes;No;0,131;Q4;11;3;13;112;4;13;0,29;37,33;27,27;0;Germany;Western Europe;"Copernicus Publications";"2014-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +27208;130167;"Psicoterapia Cognitiva e Comportamentale";journal;"11261072";"Edizioni Centro Studi Erickson";No;No;0,131;Q4;17;21;48;805;9;39;0,18;38,33;63,46;0;Italy;Western Europe;"Edizioni Centro Studi Erickson";"2004-2025";"Clinical Psychology (Q4)";"Psychology" +27209;21101066525;"RECMA";journal;"16261682, 22612599";"Association Recma";No;No;0,131;Q4;6;0;82;0;22;75;0,03;0,00;0,00;0;France;Western Europe;"Association Recma";"2019-2023";"Economics and Econometrics (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +27210;17363;"Revue Francaise de Sociologie";journal;"00352969";"Editions Ophrys";No;No;0,131;Q4;40;0;60;0;10;60;0,14;0,00;0,00;0;France;Western Europe;"Editions Ophrys";"1977-1978, 1981-1983, 1985-1991, 1994, 1996-2024";"Sociology and Political Science (Q4)";"Social Sciences" +27211;21100936537;"Romanian Astronomical Journal";journal;"22853758, 12205168";"Publishing House of the Romanian Academy";No;No;0,131;Q4;6;7;29;184;7;28;0,30;26,29;26,32;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2019-2025";"Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Physics and Astronomy" +27212;21101202298;"Russian Medical Inquiry";journal;"26869918, 25876821";"Meditsina-Inform LLC";Yes;Yes;0,131;Q4;8;126;293;3595;111;291;0,36;28,53;67,24;0;Russian Federation;Eastern Europe;"Meditsina-Inform LLC";"2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27213;21101163251;"Sechenov Medical Journal";journal;"26583348, 22187332";"I.M. Sechenov First Moscow State Medical University";Yes;Yes;0,131;Q4;5;16;66;346;28;61;0,46;21,63;42,47;0;Russian Federation;Eastern Europe;"I.M. Sechenov First Moscow State Medical University";"2019-2025";"Medicine (miscellaneous) (Q4); Obstetrics and Gynecology (Q4); Oncology (Q4); Surgery (Q4)";"Medicine" +27214;23093;"Southeast Asian Journal of Tropical Medicine and Public Health";journal;"26975718, 01251562";"SEAMEO TROPMED Network";Yes;No;0,131;Q4;61;33;184;1312;43;182;0,13;39,76;50,00;0;Thailand;Asiatic Region;"SEAMEO TROPMED Network";"1971-2026";"Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +27215;144807;"WSEAS Transactions on Electronics";journal;"24151513, 11099445";"World Scientific and Engineering Academy and Society";No;No;0,131;Q4;13;17;61;539;34;61;0,63;31,71;14,71;0;Greece;Western Europe;"World Scientific and Engineering Academy and Society";"2005-2009, 2019-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +27216;21100307486;"Bulletin of the International Dairy Federation";conference and proceedings;"02598434";"International Dairy Federation (I.N.P.A.)";No;No;0,131;-;6;0;43;0;20;24;0,19;0,00;0,00;0;Belgium;Western Europe;"International Dairy Federation (I.N.P.A.)";"2012-2024";"Animal Science and Zoology; Biochemistry; Food Animals; Food Science; Immunology";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Veterinary" +27217;21100856783;"World Congress on Civil, Structural, and Environmental Engineering";conference and proceedings;"23715294";"Avestia Publishing";No;No;0,131;-;12;133;341;1942;77;338;0,20;14,60;30,00;0;Canada;Northern America;"Avestia Publishing";"2016-2025";"Civil and Structural Engineering; Environmental Engineering";"Engineering; Environmental Science" +27218;5800227104;"Ancient Society";journal;"00661619, 17831334";"Peeters Publishers";No;No;0,130;Q2;13;0;24;0;4;24;0,20;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"2011-2013, 2015-2024";"Classics (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +27219;19700173009;"arq: Architectural Research Quarterly";journal;"13591355, 14740516";"Cambridge University Press";No;No;0,130;Q2;20;21;98;890;19;83;0,10;42,38;45,83;0;United Kingdom;Western Europe;"Cambridge University Press";"1995-1997, 1999-2025";"Visual Arts and Performing Arts (Q2); Architecture (Q3)";"Arts and Humanities; Engineering" +27220;21100887423;"Bulletin of Spanish Visual Studies";journal;"24741604, 24741612";"Taylor and Francis Ltd.";No;No;0,130;Q2;3;19;43;781;16;43;0,25;41,11;54,55;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2017-2026";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +27221;21100874725;"Ezikov Svyat";journal;"13120484";"South-West University Publishing House, Faculty of Philology";Yes;Yes;0,130;Q2;4;55;173;1444;31;173;0,17;26,25;74,65;0;Bulgaria;Eastern Europe;"South-West University Publishing House, Faculty of Philology";"2018-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27222;21100214710;"Interiors: Design, Architecture, Culture";journal;"20419112, 20419120";"Taylor and Francis Ltd.";No;No;0,130;Q2;9;9;59;588;17;56;0,13;65,33;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Architecture (Q4)";"Arts and Humanities; Engineering; Social Sciences" +27223;6400153190;"Journal of Jewish Studies";journal;"20566689, 00222097";"Oxford Centre for Hebrew and Jewish Studies";No;No;0,130;Q2;20;18;94;1241;8;94;0,06;68,94;25,00;0;United Kingdom;Western Europe;"Oxford Centre for Hebrew and Jewish Studies";"1978, 1981-1984, 1988-1989, 1997-1998, 2001-2012, 2014-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27224;16400154758;"Journal of Popular Film and Television";journal;"19306458, 01956051";"Routledge";No;No;0,130;Q2;25;8;40;292;21;35;0,40;36,50;40,00;0;United States;Northern America;"Routledge";"1978-2025";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +27225;21101176026;"Nordic Journal of African Studies";journal;"14599465";"";Yes;Yes;0,130;Q2;5;17;67;816;23;64;0,36;48,00;47,62;0;Denmark;Western Europe;"";"2019-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27226;6500153102;"Opera";journal;"00303526";"Opera magazine";No;No;0,130;Q2;1;0;3;0;1;3;0,33;0,00;0,00;0;United Kingdom;Western Europe;"Opera magazine";"2002-2014, 2017-2019, 2023";"Visual Arts and Performing Arts (Q2); Music (Q3)";"Arts and Humanities" +27227;21101122861;"Romanica Olomucensia";journal;"18034136, 25710966";"Palacky University Olomouc";Yes;Yes;0,130;Q2;4;23;71;588;15;66;0,23;25,57;50,00;0;Czech Republic;Eastern Europe;"Palacky University Olomouc";"2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27228;21100207007;"Scrinium";journal;"18177530, 18177565";"Brill Academic Publishers";Yes;No;0,130;Q2;8;17;64;1809;11;59;0,07;106,41;38,46;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011, 2013-2026";"Classics (Q2); History (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +27229;21100369402;"Studi Slavistici";journal;"18247601, 1824761X";"Firenze University Press";Yes;Yes;0,130;Q2;5;16;84;643;10;80;0,08;40,19;52,63;0;Italy;Western Europe;"Firenze University Press";"2013-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27230;21101028199;"Theleme";journal;"19898193, 11399368";"Universidad Complutense Madrid";Yes;Yes;0,130;Q2;3;40;70;1194;6;67;0,09;29,85;71,43;0;Spain;Western Europe;"Universidad Complutense Madrid";"2012, 2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27231;19700182411;"AIBR Revista de Antropologia Iberoamericana";journal;"15789705, 16959752";"Asociacion de Antropologos Iberoamericanos en Red";Yes;Yes;0,130;Q3;13;18;70;868;22;63;0,34;48,22;81,82;1;Spain;Western Europe;"Asociacion de Antropologos Iberoamericanos en Red";"2009-2026";"Cultural Studies (Q3); Anthropology (Q4)";"Social Sciences" +27232;21100857857;"Cumhuriyet Ilahiyat Dergisi";journal;"25289861, 2528987X";"Cumhuriyet University";Yes;Yes;0,130;Q3;6;19;176;900;21;168;0,09;47,37;14,29;0;Turkey;Middle East;"Cumhuriyet University";"2016-2025";"Philosophy (Q3); Religious Studies (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +27233;21100201733;"Diametros";journal;"17335566";"Jagiellonian University";Yes;Yes;0,130;Q3;12;23;60;911;24;56;0,36;39,61;32,00;0;Poland;Eastern Europe;"Jagiellonian University";"2004-2025";"Philosophy (Q3)";"Arts and Humanities" +27234;5800207836;"Fachsprache";journal;"10173285, 25239201";"Facultas Verlags- und Buchhandels AG";No;No;0,130;Q3;11;10;32;454;13;30;0,43;45,40;42,86;0;Austria;Western Europe;"Facultas Verlags- und Buchhandels AG";"2011-2013, 2015-2025";"Linguistics and Language (Q3)";"Social Sciences" +27235;5600152937;"French Politics, Culture and Society";journal;"15376370, 15585271";"Berghahn Journals";No;No;0,130;Q3;9;9;58;535;6;51;0,12;59,44;20,00;0;United Kingdom;Western Europe;"Berghahn Journals";"2005, 2015-2025";"Cultural Studies (Q3); History (Q3); Anthropology (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27236;26479;"Journal de la Societe des Oceanistes";journal;"17607256, 0300953X";"Societe des Oceanistes";No;No;0,130;Q3;11;0;44;0;5;40;0,06;0,00;0,00;0;France;Western Europe;"Societe des Oceanistes";"1968, 1986, 1999, 2001, 2011-2024";"Cultural Studies (Q3); History (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +27237;21101343413;"Journal of Central Asian History";journal;"2772865X, 27728668";"Brill Academic Publishers";No;No;0,130;Q3;2;9;22;336;11;21;0,21;37,33;20,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2022-2025";"Cultural Studies (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27238;21100940535;"Journal of Religion and Violence";journal;"21596808";"Philosophy Documentation Center";No;No;0,130;Q3;7;0;5;0;8;4;0,00;0,00;0,00;0;United States;Northern America;"Philosophy Documentation Center";"2019-2022";"Religious Studies (Q3); Law (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27239;21100241756;"Lud";journal;"00761435";"Polskie Towarzystwo Ludoznawcze";No;No;0,130;Q3;5;14;39;580;9;39;0,19;41,43;57,14;0;Poland;Eastern Europe;"Polskie Towarzystwo Ludoznawcze";"2012-2014, 2016-2025";"Cultural Studies (Q3); Anthropology (Q4)";"Social Sciences" +27240;21101330833;"Radical Americas";journal;"23994606";"UCL Press";Yes;No;0,130;Q3;6;11;12;604;5;10;0,33;54,91;40,00;0;United Kingdom;Western Europe;"UCL Press";"2021-2025";"Archeology (arts and humanities) (Q3); Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27241;21101152535;"Revista Espanola de Derecho Canonico";journal;"26609541, 00349372";"Universidad Pontificia de Salamanca, Servicio de Publicaciones";Yes;Yes;0,130;Q3;3;10;50;396;4;45;0,06;39,60;50,00;0;Spain;Western Europe;"Universidad Pontificia de Salamanca, Servicio de Publicaciones";"2019-2025";"Religious Studies (Q3); Law (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +27242;21100416283;"Shofar";journal;"15345165, 08828539";"Purdue University Press";No;No;0,130;Q3;8;29;92;2238;20;78;0,18;77,17;50,00;0;United States;Northern America;"Purdue University Press";"2014-2025";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27243;21100886216;"Strategic Design Research Journal";journal;"19842988";"Universidade do Vale do Rio dos Sinos";Yes;Yes;0,130;Q3;13;9;60;136;19;52;0,19;15,11;78,57;0;Brazil;Latin America;"Universidade do Vale do Rio dos Sinos";"2018-2023, 2025";"Arts and Humanities (miscellaneous) (Q3); Engineering (miscellaneous) (Q4); Modeling and Simulation (Q4)";"Arts and Humanities; Engineering; Mathematics" +27244;21101144517;"Studia Universitatis Hereditati";journal;"23505443";"University of Primorska";Yes;Yes;0,130;Q3;3;8;46;294;13;40;0,32;36,75;25,00;0;Slovenia;Eastern Europe;"University of Primorska";"2019-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3); Museology (Q3)";"Arts and Humanities; Social Sciences" +27245;21101237137;"TESOL in Context";journal;"10308385, 22090916";"Australian Council of TESOL Associations";Yes;Yes;0,130;Q3;2;22;9;964;6;7;0,67;43,82;61,90;0;Australia;Pacific Region;"Australian Council of TESOL Associations";"2024-2025";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +27246;6500153100;"Theology";journal;"20442696, 0040571X";"SAGE Publications Inc.";No;No;0,130;Q3;11;37;136;277;20;101;0,16;7,49;7,69;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1920-1922, 1924-1933, 1939-1946, 1968-1989, 1992-1993, 1995-2026";"Religious Studies (Q3)";"Arts and Humanities" +27247;19900191749;"Tyndale Bulletin";journal;"00827118";"Tyndale House Publishers";Yes;Yes;0,130;Q3;8;10;28;424;6;26;0,21;42,40;0,00;0;United States;Northern America;"Tyndale House Publishers";"2008-2012, 2014-2025";"Religious Studies (Q3)";"Arts and Humanities" +27248;25458;"Western Historical Quarterly";journal;"00433810, 19398603";"Oxford University Press";No;No;0,130;Q3;17;13;39;1428;13;39;0,39;109,85;33,33;0;United Kingdom;Western Europe;"Oxford University Press";"1970, 1972, 1974, 1976-1981, 1983-1986, 1988-1996, 1998-2026";"History (Q3)";"Arts and Humanities" +27249;87268;"Yorkshire Archaeological Journal";journal;"20450664, 00844276";"Taylor and Francis Ltd.";No;No;0,130;Q3;5;7;28;218;3;24;0,14;31,14;46,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980, 2010-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +27250;21100229171;"Zeitschrift fur Religionswissenschaft";journal;"2194508X, 09438610";"Walter de Gruyter GmbH";No;No;0,130;Q3;10;9;29;367;4;26;0,11;40,78;16,67;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1993-2010, 2012-2025";"Religious Studies (Q3)";"Arts and Humanities" +27251;21100897510;"Academia Economic Papers";journal;"18104851, 1018161X";"Institute of Economics Academia Sinica";No;No;0,130;Q4;4;12;37;450;7;37;0,13;37,50;23,53;0;Taiwan;Asiatic Region;"Institute of Economics Academia Sinica";"2018-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +27252;100850;"Archives of the Balkan Medical Union";journal;"2558815X, 15849244";"Balkan Medical Union";Yes;No;0,130;Q4;13;69;162;1892;35;148;0,20;27,42;54,51;0;Romania;Eastern Europe;"Balkan Medical Union";"2003-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27253;21101168048;"Austrian Review of International and European Law";book series;"13851306";"Brill Nijhoff";No;No;0,130;Q4;9;1;10;168;3;9;1,00;168,00;100,00;0;Netherlands;Western Europe;"Brill Nijhoff";"2001-2007, 2009-2011, 2013-2022, 2024-2025";"Law (Q4)";"Social Sciences" +27254;28155;"Bangladesh Medical Research Council Bulletin";journal;"03779238";"Bangladesh Medical Research Council";Yes;No;0,130;Q4;24;9;90;225;21;82;0,10;25,00;48,15;0;Bangladesh;Asiatic Region;"Bangladesh Medical Research Council";"1975-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27255;146164;"B-ENT";journal;"1781782X";"Koninklijke Belgische Vereniging voor ORL Gelaat en Halschirugie";Yes;No;0,130;Q4;38;18;152;434;28;151;0,17;24,11;32,14;0;Belgium;Western Europe;"Koninklijke Belgische Vereniging voor ORL Gelaat en Halschirugie";"2005-2025";"Medicine (miscellaneous) (Q4); Otorhinolaryngology (Q4)";"Medicine" +27256;21101012574;"Cell and Organ Transplantology";journal;"23083794, 2311021X";"Institute of Cell Therapy";No;No;0,130;Q4;4;12;41;509;15;41;0,46;42,42;62,22;0;Ukraine;Eastern Europe;"Institute of Cell Therapy";"2019-2025";"Biomedical Engineering (Q4); Biotechnology (Q4); Immunology and Allergy (Q4); Transplantation (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +27257;19700175156;"Cellular Therapy and Transplantation";journal;"1867416X, 18668836";"Universitatsklinikum Hamburg - Eppendorf";No;No;0,130;Q4;9;24;92;1163;21;89;0,18;48,46;61,20;0;Germany;Western Europe;"Universitatsklinikum Hamburg - Eppendorf";"2009-2011, 2015-2026";"Molecular Medicine (Q4); Transplantation (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27258;20454;"CEPAL Review";journal;"16840348, 02512920";"United Nations Publications";No;No;0,130;Q4;20;8;114;415;43;107;0,44;51,88;25,00;0;United States;Northern America;"United Nations Publications";"1977, 1981-1988, 1992-1993, 2007-2025";"Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +27259;21101019769;"Chinese Journal of Hepatobiliary Surgery";journal;"10078118";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,130;Q4;4;165;606;3927;115;606;0,24;23,80;36,16;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2025";"Gastroenterology (Q4); Hepatology (Q4); Surgery (Q4)";"Medicine" +27260;21101241979;"Chinese Journal of Neonatology";journal;"20962932";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,130;Q4;5;164;440;3880;97;440;0,23;23,66;52,98;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Advanced and Specialized Nursing (Q4); Pediatrics (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine; Nursing" +27261;6200180182;"Chinese Journal of Tissue Engineering Research";journal;"20954344";"Publishing House of Chinese Journal of Tissue Engineering Research";Yes;No;0,130;Q4;12;935;2657;45995;626;2655;0,26;49,19;36,12;0;China;Asiatic Region;"Publishing House of Chinese Journal of Tissue Engineering Research";"2007-2026";"Biomedical Engineering (Q4); Clinical Biochemistry (Q4); Orthopedics and Sports Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +27262;21100196111;"Emergency medicine practice";journal;"15241971, 15593908";"Pinnacle Publishing, LLC";No;No;0,130;Q4;22;16;41;0;11;41;0,26;0,00;54,05;0;United States;Northern America;"Pinnacle Publishing, LLC";"2011-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27263;28306;"Experimental and Clinical Gastroenterology";journal;"16828658";"Global Media Technologies";No;No;0,130;Q4;14;202;785;7093;216;778;0,28;35,11;61,61;0;Russian Federation;Eastern Europe;"Global Media Technologies";"2002-2016, 2020-2025";"Gastroenterology (Q4); Hepatology (Q4)";"Medicine" +27264;26112;"Frontiers of Hormone Research";book series;"16623762, 03013073";"S. Karger AG";Yes;No;0,130;Q4;50;0;17;0;7;16;0,41;0,00;0,00;0;Switzerland;Western Europe;"S. Karger AG";"1975, 1977, 1984, 1996-1997, 1999, 2001-2002, 2004-2010, 2013-2019, 2021, 2024";"Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27265;19700177121;"Helia";journal;"10181806, 21970483";"International Researcher Association";No;No;0,130;Q4;27;14;36;645;12;36;0,33;46,07;44,12;0;Turkey;Middle East;"International Researcher Association";"2000-2025";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +27266;21101291387;"Ikonion Journal of Mathematics";journal;"26876531";"Nihat AKGUNES";No;No;0,130;Q4;3;7;28;180;13;28;0,42;25,71;40,00;0;Turkey;Middle East;"Nihat AKGUNES";"2021-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4)";"Mathematics" +27267;4700152810;"International Journal of Business Process Integration and Management";journal;"17418771, 17418763";"Inderscience Enterprises Ltd";No;No;0,130;Q4;22;26;26;1513;20;26;0,93;58,19;33,80;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2015, 2017-2022, 2024-2025";"Business and International Management (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences" +27268;21101330832;"IP Indian Journal of Conservative and Endodontics";journal;"25819534, 25818988";"IP Innovative Publication Pvt. Ltd.";No;No;0,130;Q4;4;54;135;1327;30;129;0,17;24,57;62,31;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2021-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +27269;21100231621;"Journal of Coloproctology";journal;"22379363";"Georg Thieme Verlag";Yes;Yes;0,130;Q4;18;53;165;1216;36;158;0,25;22,94;41,71;0;Germany;Western Europe;"Georg Thieme Verlag";"2011-2019, 2021-2025";"Gastroenterology (Q4)";"Medicine" +27270;21100210901;"Journal of Medical Sciences (Peshawar)";journal;"19973446, 19973438";"Khyber Medical College";No;No;0,130;Q4;7;41;205;805;43;193;0,18;19,63;48,33;0;Pakistan;Asiatic Region;"Khyber Medical College";"2009-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27271;57103;"Journal of Mycology and Infection";journal;"30584302, 3058423X";"Korean Society for Medical Mycology";Yes;No;0,130;Q4;9;16;74;459;16;65;0,16;28,69;39,47;0;South Korea;Asiatic Region;"Korean Society for Medical Mycology";"2024-2025";"Infectious Diseases (Q4)";"Medicine" +27272;21101021403;"Mexican Law Review";journal;"18700578, 24485306";"Universidad Nacional Autonoma de Mexico";No;Yes;0,130;Q4;4;11;32;568;17;31;0,71;51,64;53,85;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2011, 2014, 2019-2026";"Law (Q4)";"Social Sciences" +27273;21101039226;"Opuholi Zenskoj Reproduktivnoj Sistemy";journal;"19998627, 19944098";"ABV-press Publishing House";Yes;Yes;0,130;Q4;5;58;179;1235;64;179;0,42;21,29;66,78;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2019-2025";"Obstetrics and Gynecology (Q4); Oncology (Q4); Pharmacology (medical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)";"Medicine" +27274;5000157804;"Ornis Norvegica";journal;"15020878";"Norwegian Ornithological Society";No;No;0,130;Q4;10;0;11;0;2;10;0,18;0,00;0,00;0;Norway;Western Europe;"Norwegian Ornithological Society";"1999-2020, 2023-2024";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +27275;21101185490;"Orthopaedics, Traumatology and Prosthetics";journal;"25181882, 00305987";"Sytenko Institute of Spine and Joint Pathology National Ukrainian Academy of Medical Sciences";No;No;0,130;Q4;4;59;149;1366;49;145;0,32;23,15;29,80;0;Ukraine;Eastern Europe;"Sytenko Institute of Spine and Joint Pathology National Ukrainian Academy of Medical Sciences";"1955-1991, 2022-2025";"Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +27276;21100791249;"Pakistan Journal of Information Management and Libraries";journal;"24097462";"University of the Punjab";Yes;No;0,130;Q4;13;0;17;0;8;15;0,67;0,00;0,00;0;Pakistan;Asiatic Region;"University of the Punjab";"2014-2024";"Computer Science Applications (Q4); Library and Information Sciences (Q4)";"Computer Science; Social Sciences" +27277;21101047448;"Proceedings of the National Academy of Sciences of Belarus. Physics and Mathematics Series";journal;"15612430, 25242415";"Belaruskaya Navuka";No;No;0,130;Q4;5;14;99;313;18;99;0,23;22,36;18,75;0;Belarus;Eastern Europe;"Belaruskaya Navuka";"2019-2025";"Computational Theory and Mathematics (Q4); Mathematics (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Computer Science; Mathematics; Physics and Astronomy" +27278;19700175090;"Rawal Medical Journal";journal;"03035212";"Pakistan Medical Association";No;No;0,130;Q4;16;258;758;5140;176;745;0,20;19,92;55,32;0;Pakistan;Asiatic Region;"Pakistan Medical Association";"2008-2025";"Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)";"Medicine; Nursing" +27279;28600;"Revista Brasileira de Geofisica";journal;"0102261X, 18094511";"Sociedade Brasileira de Geofisica";Yes;No;0,130;Q4;24;16;59;742;17;59;0,18;46,38;16,18;0;Brazil;Latin America;"Sociedade Brasileira de Geofisica";"1993-2025";"Geophysics (Q4)";"Earth and Planetary Sciences" +27280;21100506784;"Revista de Cirugia";journal;"24524549, 24524557";"Sociedad de Cirujanos de Chile";Yes;Yes;0,130;Q4;13;112;295;1829;48;254;0,11;16,33;35,27;0;Chile;Latin America;"Sociedad de Cirujanos de Chile";"1961, 2019-2026";"Surgery (Q4)";"Medicine" +27281;21101105025;"Revista de la Facultad de Ciencias";journal;"0121747X, 23575549";"Universidad Nacional de Colombia";Yes;Yes;0,130;Q4;4;14;39;497;10;38;0,21;35,50;36,67;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2019-2026";"Biophysics (Q4); Computational Theory and Mathematics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Computer Science" +27282;19900193218;"Revista Gerencia y Politicas de Salud";journal;"25006177, 16577027";"Pontificia Universidad Javeriana";Yes;Yes;0,130;Q4;12;10;61;477;17;60;0,20;47,70;57,69;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2011-2025";"Health Policy (Q4)";"Medicine" +27283;21101257206;"RusAutoCon - Proceedings of the International Russian Automation Conference";journal;"28366131, 2836614X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,130;Q4;4;197;204;4158;111;203;0,54;21,11;25,69;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Control and Optimization (Q4); Control and Systems Engineering (Q4); Mechanical Engineering (Q4)";"Engineering; Mathematics" +27284;21101038823;"Russian Archives of Internal Medicine";journal;"24116564, 22266704";"";Yes;Yes;0,130;Q4;7;43;147;1385;52;147;0,33;32,21;70,29;0;Russian Federation;Eastern Europe;"";"2019-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27285;21101067738;"Russian Journal of Neurosurgery";journal;"25877569, 16833295";"ABV-press Publishing House";No;No;0,130;Q4;5;42;161;1137;34;156;0,24;27,07;34,85;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2019-2026";"Neurology (Q4); Neurology (clinical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)";"Medicine; Neuroscience" +27286;21101168861;"Sarkomy Kostej, Magkih Tkanej i Opuholi Kozi";journal;"22194614, 27823687";"ABV-press Publishing House";No;No;0,130;Q4;5;35;85;946;19;82;0,16;27,03;43,51;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2019-2025";"Oncology (Q4); Orthopedics and Sports Medicine (Q4); Pathology and Forensic Medicine (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +27287;24959;"SKINmed";journal;"17517125, 15409740";"Pulse Marketing and Communications LLC";No;No;0,130;Q4;34;0;348;0;67;332;0,19;0,00;0,00;0;United States;Northern America;"Pulse Marketing and Communications LLC";"2003-2008, 2010-2024";"Dermatology (Q4); Immunology and Allergy (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +27288;25445;"Texas Journal of Science";journal;"00404403";"Texas Academy of Science";No;No;0,130;Q4;18;7;20;194;8;19;0,33;27,71;33,33;0;United States;Northern America;"Texas Academy of Science";"1975, 1980, 1983, 1985, 1993-2010, 2012-2013, 2018-2025";"Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +27289;21100975964;"Tichodroma";journal;"26444992, 1337026X";"Institute of Forest Ecology of the Slovak Academy of Sciences";Yes;Yes;0,130;Q4;3;10;32;246;7;32;0,38;24,60;15,38;0;Slovakia;Eastern Europe;"Institute of Forest Ecology of the Slovak Academy of Sciences";"2019-2025";"Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +27290;21101053556;"Ukrainian Journal of Nephrology and Dialysis";journal;"26167352, 23040238";"National Kidney Foundation of Ukraine";Yes;No;0,130;Q4;7;40;120;1573;54;118;0,51;39,33;56,14;0;Ukraine;Eastern Europe;"National Kidney Foundation of Ukraine";"2019-2025";"Biochemistry (medical) (Q4); Immunology and Allergy (Q4); Nephrology (Q4); Urology (Q4)";"Medicine" +27291;21100948930;"University of Bologna Law Review";journal;"25316133";"University of Bologna";Yes;Yes;0,130;Q4;7;7;29;783;12;26;0,50;111,86;66,67;0;Italy;Western Europe;"University of Bologna";"2016-2026";"Law (Q4)";"Social Sciences" +27292;5700165172;"World Review of Science, Technology and Sustainable Development";journal;"17412242, 17412234";"Inderscience Enterprises Ltd";No;No;0,130;Q4;21;0;60;0;35;58;0,21;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2010, 2012-2024";"Multidisciplinary (Q4)";"Multidisciplinary" +27293;15285;"Zeitschrift fur Padagogik";journal;"00443247";"Verlag Julius Beltz GmbH";No;No;0,130;Q4;30;0;142;0;36;132;0,18;0,00;0,00;0;Germany;Western Europe;"Verlag Julius Beltz GmbH";"1989, 1996-2024, 2026";"Education (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine; Social Sciences" +27294;21100285411;"International Conference on Geoinformatics";conference and proceedings;"2161024X, 21610258";"IEEE Computer Society";No;No;0,130;-;9;49;111;1117;34;109;0,34;22,80;37,89;0;United States;Northern America;"IEEE Computer Society";"2013, 2015-2018, 2022-2023, 2025";"Computer Networks and Communications; Computer Vision and Pattern Recognition; Electrical and Electronic Engineering; Geography, Planning and Development; Information Systems; Software";"Computer Science; Engineering; Social Sciences" +27295;21101271416;"PCIM Asia-International Conference for Power Electronics, Intelligent Motion, Renewable Energy and Energy Management";conference and proceedings;"25107704";"V D E Verlag GmbH";No;No;0,130;-;2;0;105;0;14;104;0,13;0,00;0,00;0;Germany;Western Europe;"V D E Verlag GmbH";"2024";"Artificial Intelligence; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Hardware and Architecture; Renewable Energy, Sustainability and the Environment";"Computer Science; Energy; Engineering" +27296;21101211866;"Proceedings - IEEE CHILEAN Conference on Electrical, Electronics Engineering, Information and Communication Technologies, ChileCon";conference and proceedings;"28321537, 28321529";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,130;-;3;0;157;0;59;153;0,38;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2023";"Artificial Intelligence; Computer Networks and Communications; Control and Optimization; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Hardware and Architecture; Information Systems; Information Systems and Management";"Computer Science; Decision Sciences; Energy; Engineering; Mathematics" +27297;21101181856;"Proceedings IMCIC - International Multi-Conference on Complexity, Informatics and Cybernetics";conference and proceedings;"27715914, 27715922";"International Institute of Informatics and Cybernetics";No;No;0,130;-;3;40;95;1093;30;91;0,32;27,33;51,56;0;United States;Northern America;"International Institute of Informatics and Cybernetics";"2023-2025";"Artificial Intelligence; Computer Networks and Communications; Information Systems";"Computer Science" +27298;21101171585;"Proceedings of the IAHR World Congress";conference and proceedings;"2521716X, 25217119";"International Association for Hydro-Environment Engineering and Research";No;No;0,130;-;8;1048;1414;9859;230;1411;0,20;9,41;29,84;0;Spain;Western Europe;"International Association for Hydro-Environment Engineering and Research";"2019, 2022-2023, 2025";"Civil and Structural Engineering; Engineering (miscellaneous); Ocean Engineering; Water Science and Technology";"Engineering; Environmental Science" +27299;21101120437;"Proceedings of the World Congress on Electrical Engineering and Computer Systems and Science";conference and proceedings;"2369811X";"Avestia Publishing";No;No;0,130;-;4;122;241;1622;63;238;0,27;13,30;34,85;0;Canada;Northern America;"Avestia Publishing";"2021-2025";"Artificial Intelligence; Biomedical Engineering; Computer Networks and Communications; Electrical and Electronic Engineering; Human-Computer Interaction; Information Systems";"Computer Science; Engineering" +27300;21101306834;"Bustan";journal;"18785301, 18785328";"Penn State University Press";No;No;0,129;Q2;1;6;8;89;1;8;0,00;14,83;20,00;0;United States;Northern America;"Penn State University Press";"2015, 2017-2018, 2020, 2022-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Linguistics and Language (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +27301;16000154734;"Canadian Review of Comparative Literature";journal;"19139659, 0319051X";"Academic Printing and Publishing";Yes;No;0,129;Q2;10;0;44;0;8;33;0,11;0,00;0,00;0;Canada;Northern America;"Academic Printing and Publishing";"2002-2023";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27302;21100842562;"Estudios de Literatura Colombiana";journal;"01234412";"Universidad de Antioquia";Yes;Yes;0,129;Q2;3;26;82;548;12;76;0,19;21,08;41,67;0;Colombia;Latin America;"Universidad de Antioquia";"2017-2026";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); History (Q3); Linguistics and Language (Q3); Electrical and Electronic Engineering (Q4)";"Arts and Humanities; Engineering; Social Sciences" +27303;12999;"French Studies";journal;"00161128, 14682931";"Liverpool University Press";No;No;0,129;Q2;14;19;111;1061;24;108;0,25;55,84;50,00;0;United Kingdom;Western Europe;"Liverpool University Press";"1947-2026";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27304;21101028200;"Gerion";journal;"02130181, 19883080";"Universidad Complutense Madrid";Yes;Yes;0,129;Q2;5;29;78;2096;16;73;0,19;72,28;34,48;0;Spain;Western Europe;"Universidad Complutense Madrid";"2019-2025";"Classics (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +27305;21101080113;"Hungarian Journal of English and American Studies";journal;"12187364, 27320421";"Sciendo";No;No;0,129;Q2;2;22;76;871;15;69;0,29;39,59;85,71;0;Poland;Eastern Europe;"Sciendo";"2019-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); History (Q3); Philosophy (Q3)";"Arts and Humanities" +27306;21100247019;"Iluminace";journal;"0862397X, 25709267";"National Film Archive";Yes;Yes;0,129;Q2;6;31;57;1245;15;48;0,30;40,16;38,24;0;Czech Republic;Eastern Europe;"National Film Archive";"2013-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27307;15036;"Internationales Archiv fuer Sozialgeschichte der Deutschen Literatur";journal;"18659128, 03404528";"Walter de Gruyter GmbH";No;No;0,129;Q2;9;17;75;1246;12;70;0,17;73,29;42,11;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1976, 1978-2025";"Literature and Literary Theory (Q2); History (Q3)";"Arts and Humanities" +27308;5600153217;"Journal of Islamic Studies";journal;"09552340, 14716917";"Oxford University Press";No;No;0,129;Q2;19;8;24;1093;11;24;0,47;136,63;0,00;0;United Kingdom;Western Europe;"Oxford University Press";"1990-1996, 2000, 2004, 2007-2026";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27309;11600153430;"Journal of Literary Studies";journal;"17535387, 02564718";"Unisa Press";Yes;No;0,129;Q2;14;22;68;762;14;65;0,19;34,64;56,52;0;United Kingdom;Western Europe;"Unisa Press";"1985-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27310;21100388304;"Journal of Scandinavian Cinema";journal;"20427891, 20427905";"Intellect Ltd.";No;No;0,129;Q2;8;10;63;445;17;53;0,21;44,50;33,33;0;United Kingdom;Western Europe;"Intellect Ltd.";"2014-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27311;21101196043;"Journal of Visual Art and Design";journal;"23385480, 23375795";"Institute for Research and Community Services, Institut Teknologi Bandung";No;No;0,129;Q2;2;7;37;197;10;35;0,13;28,14;50,00;0;Indonesia;Asiatic Region;"Institute for Research and Community Services, Institut Teknologi Bandung";"2022-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27312;21100936624;"Loggia, Arquitectura y Restauracion";journal;"24441619, 1136758X";"Universidad Politecnica de Valencia";Yes;Yes;0,129;Q2;3;6;21;125;6;21;0,29;20,83;50,00;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2019-2025";"Visual Arts and Performing Arts (Q2); Conservation (Q3); Architecture (Q4)";"Arts and Humanities; Engineering" +27313;16923;"Amerasia Journal";journal;"00447471";"Taylor and Francis Ltd.";No;No;0,129;Q3;18;17;83;586;14;58;0,04;34,47;82,14;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1971, 1980, 1984, 1986, 1999-2025";"Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +27314;21100901027;"Annali di Ca Foscari Serie Orientale";journal;"23853042";"Edizioni Ca' Foscari";Yes;Yes;0,129;Q3;6;28;92;1771;17;92;0,18;63,25;53,57;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2018-2025";"Cultural Studies (Q3); Linguistics and Language (Q3); Religious Studies (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27315;21101169016;"Convergencias: Revista de Investigacao e Ensino das Artes";journal;"16469054, 21840180";"Polytechnic Institute of Castelo Branco Higher School of Applied Arts";Yes;Yes;0,129;Q3;3;12;72;245;30;72;0,50;20,42;72,22;0;Portugal;Western Europe;"Polytechnic Institute of Castelo Branco Higher School of Applied Arts";"2022-2025";"Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +27316;21101037910;"East Asian Journal of Popular Culture";journal;"20517084, 20517092";"Intellect Ltd.";No;No;0,129;Q3;6;21;54;793;12;46;0,31;37,76;47,62;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +27317;21100203117;"Etnografica";journal;"21822891, 08736561";"Centro em Rede de Investigacao em Antropologia - CRIA";Yes;Yes;0,129;Q3;18;45;178;1510;33;128;0,20;33,56;62,22;0;Portugal;Western Europe;"Centro em Rede de Investigacao em Antropologia - CRIA";"2006-2025";"Cultural Studies (Q3); Anthropology (Q4)";"Social Sciences" +27318;21100432208;"Historia Caribe";journal;"23226889, 01228803";"Sello editorial Universidad del Atlantico";Yes;Yes;0,129;Q3;5;20;76;885;8;66;0,10;44,25;37,50;0;Colombia;Latin America;"Sello editorial Universidad del Atlantico";"2015-2025";"History (Q3)";"Arts and Humanities" +27319;21100275406;"Homme (Germany)";book series;"21945071, 1016362X";"Vandenhoeck and Ruprecht GmbH and Co. KG";No;No;0,129;Q3;7;23;70;961;7;57;0,14;41,78;87,50;0;Germany;Western Europe;"Vandenhoeck and Ruprecht GmbH and Co. KG";"1990-1995, 1999, 2001-2002, 2011-2025";"Cultural Studies (Q3); History (Q3); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +27320;17100154719;"International Philosophical Quarterly";journal;"00190365";"Philosophy Documentation Center";No;No;0,129;Q3;13;0;67;0;16;67;0,15;0,00;0,00;0;United States;Northern America;"Philosophy Documentation Center";"1974, 1985, 1988, 1992, 2002-2024";"Philosophy (Q3)";"Arts and Humanities" +27321;21100236835;"Italianist";journal;"1748619X, 02614340";"Maney Publishing";No;No;0,129;Q3;11;24;84;870;18;75;0,05;36,25;66,67;0;United Kingdom;Western Europe;"Maney Publishing";"1981-2001, 2003-2025";"History (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +27322;20370;"Journal of Gang Research";journal;"10793062";"National Gang Crime Research Center";No;No;0,129;Q3;12;7;23;283;5;22;0,31;40,43;42,86;0;United States;Northern America;"National Gang Crime Research Center";"2004-2025";"Arts and Humanities (miscellaneous) (Q3); Gender Studies (Q4); Law (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +27323;21101046209;"Journal of Muslim Philanthropy and Civil Society";journal;"25726544";"Indiana University Press";Yes;Yes;0,129;Q3;8;5;41;214;20;37;0,20;42,80;100,00;0;United States;Northern America;"Indiana University Press";"2017-2025";"Cultural Studies (Q3); Education (Q4); Political Science and International Relations (Q4)";"Social Sciences" +27324;21101033913;"Journal of the History of Analytical Philosophy";journal;"21590303";"University of Victoria";Yes;Yes;0,129;Q3;8;11;28;523;16;26;0,47;47,55;0,00;0;Canada;Northern America;"University of Victoria";"2019-2026";"Philosophy (Q3)";"Arts and Humanities" +27325;20788;"Kwartalnik Historii Kultury Materialnej";journal;"00235881, 27196496";"Institute of Archaeology and Ethnology, Polish Academy of Sciences";Yes;Yes;0,129;Q3;3;28;64;1765;12;62;0,17;63,04;48,72;0;Poland;Eastern Europe;"Institute of Archaeology and Ethnology, Polish Academy of Sciences";"1972, 1975-1977, 1979-1980, 1984, 1999, 2001, 2020-2025";"Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +27326;21100931308;"Labor: Studies in Working-Class History";journal;"15581454, 15476715";"Duke University Press";No;No;0,129;Q3;7;32;104;1354;18;89;0,18;42,31;33,33;0;United States;Northern America;"Duke University Press";"2017, 2019-2025";"History (Q3); Industrial Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +27327;21100889413;"Language and Psychoanalysis";journal;"2049324X";"University of Edinburgh";Yes;Yes;0,129;Q3;4;0;3;0;2;3;0,00;0,00;0,00;0;United Kingdom;Western Europe;"University of Edinburgh";"2018-2022";"Linguistics and Language (Q3); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology; Social Sciences" +27328;21101233952;"Salduie";journal;"15766454, 27940055";"Prensas de la Universidad de Zaragoza";Yes;Yes;0,129;Q3;2;9;41;463;6;41;0,19;51,44;28,57;0;Spain;Western Europe;"Prensas de la Universidad de Zaragoza";"2020, 2022-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +27329;21100291843;"Seoul Journal of Korean Studies";journal;"23314826, 12250201";"Kyujanggak Institute for Korean Studies";No;No;0,129;Q3;6;13;56;506;19;46;0,10;38,92;40,00;0;South Korea;Asiatic Region;"Kyujanggak Institute for Korean Studies";"2013-2025";"Archeology (Q3); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Linguistics and Language (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27330;19600157304;"Southeastern Europe";journal;"00944467, 18763332";"Brill Academic Publishers";No;No;0,129;Q3;16;18;38;1102;18;32;0,52;61,22;39,29;0;Netherlands;Western Europe;"Brill Academic Publishers";"1974, 1976-1980, 1982-1990, 2002, 2005, 2007, 2009-2026";"Cultural Studies (Q3); History (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27331;21100897230;"Studies in Church History";book series;"04242084, 20590644";"Cambridge University Press";No;No;0,129;Q3;6;28;68;2388;17;64;0,22;85,29;34,62;0;United Kingdom;Western Europe;"Cambridge University Press";"2018-2025";"History (Q3); Religious Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27332;21101123270;"Swiatowit";journal;"0082044X, 26576031";"University of Warsaw";No;No;0,129;Q3;4;19;38;860;6;34;0,07;45,26;40,54;0;Poland;Eastern Europe;"University of Warsaw";"2019-2022, 2024";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +27333;29439;"Advances in Child Development and Behavior";book series;"00652407";"Academic Press Inc.";No;No;0,129;Q4;60;19;63;2057;183;2;2,24;108,26;79,63;0;United States;Northern America;"Academic Press Inc.";"1964-1965, 1967, 1969-1971, 1973-1976, 1978-1980, 1982, 1984-1985, 1987, 1989, 1991, 1993-1994, 1996, 1999, 2002-2025";"Behavioral Neuroscience (Q4); Developmental and Educational Psychology (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine; Neuroscience; Psychology" +27334;21100910240;"Aesthetic Medicine";journal;"24217115";"Salus Internazionale ECM Srl";No;No;0,129;Q4;5;35;71;962;34;65;0,50;27,49;59,38;0;Italy;Western Europe;"Salus Internazionale ECM Srl";"2019-2025";"Dermatology (Q4); Medicine (miscellaneous) (Q4); Surgery (Q4)";"Medicine" +27335;21100229815;"Antropologia Portuguesa";journal;"08700990, 21827982";"Universidade de Coimbra";Yes;Yes;0,129;Q4;6;6;32;454;5;32;0,08;75,67;57,14;0;Portugal;Western Europe;"Universidade de Coimbra";"2011-2012, 2014, 2016-2025";"Anthropology (Q4)";"Social Sciences" +27336;21100401234;"Anuario Mexicano de Derecho Internacional";journal;"24487872, 18704654";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,129;Q4;8;15;73;967;17;72;0,18;64,47;15,38;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2014-2026";"Law (Q4)";"Social Sciences" +27337;21101121573;"Avicenna Journal of Clinical Medicine";journal;"2588722X, 25887238";"Hamadan University of Medical Sciences";Yes;Yes;0,129;Q4;5;32;96;814;27;96;0,17;25,44;51,26;0;Iran;Middle East;"Hamadan University of Medical Sciences";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27338;21100942831;"Bibliotecas, Anales de Investigacion";journal;"16838947, 0006176X";"Biblioteca Nacional de Cuba Jose Marti";Yes;Yes;0,129;Q4;9;6;173;249;38;171;0,19;41,50;38,46;0;Cuba;Latin America;"Biblioteca Nacional de Cuba Jose Marti";"2019-2025";"Library and Information Sciences (Q4)";"Social Sciences" +27339;21100858711;"Brazilian Journal of International Law";journal;"2236997X, 22371036";"Centro Universitario de Brasilia";Yes;Yes;0,129;Q4;7;34;169;1902;36;162;0,24;55,94;50,00;0;Brazil;Latin America;"Centro Universitario de Brasilia";"2016-2025";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +27340;21101268301;"Chinese Journal of Clinical Medicine";journal;"10086358";"Shanghai Chinese Clinical Medicine Press Co.,Ltd.";Yes;No;0,129;Q4;5;143;483;4060;101;482;0,24;28,39;47,32;0;United States;Northern America;"Shanghai Chinese Clinical Medicine Press Co.,Ltd.";"2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27341;4200151511;"Chinese Journal of Clinical Nutrition";journal;"1674635X";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,129;Q4;7;51;158;1933;40;157;0,25;37,90;55,85;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2006-2025";"Nutrition and Dietetics (Q4)";"Nursing" +27342;21101291262;"Chinese Journal of Clinical Thoracic and Cardiovascular Surgery";journal;"10074848";"West China Medical Publishers";No;No;0,129;Q4;6;248;786;8377;225;786;0,33;33,78;35,26;0;China;Asiatic Region;"West China Medical Publishers";"2021-2026";"Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4); Surgery (Q4)";"Medicine" +27343;21101262282;"Chinese Journal of Microecology";journal;"1005376X";"";No;No;0,129;Q4;7;203;772;6923;226;772;0,30;34,10;51,75;0;China;Asiatic Region;"";"2020-2026";"Gastroenterology (Q4); Microbiology (medical) (Q4)";"Medicine" +27344;21101242004;"Chinese Journal of Trauma";journal;"10018050";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,129;Q4;6;123;443;5002;133;443;0,29;40,67;32,15;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Emergency Medicine (Q4); Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +27345;21100228550;"Complex Systems";journal;"08912513";"Complex Systems Publications, Inc";No;No;0,129;Q4;13;16;51;446;22;51;0,38;27,88;25,81;0;United States;Northern America;"Complex Systems Publications, Inc";"2012-2025";"Computer Science (miscellaneous) (Q4); Control and Systems Engineering (Q4)";"Computer Science; Engineering" +27346;21101306832;"Economic and Regional Studies / Studia Ekonomiczne i Regionalne";journal;"20833725, 2451182X";"";Yes;No;0,129;Q4;5;30;121;954;37;120;0,25;31,80;35,00;0;Germany;Western Europe;"";"2019, 2022-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Geography, Planning and Development (Q4); Marketing (Q4); Social Sciences (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +27347;13193;"Ethiopian Medical Journal";journal;"00141755, 24152420";"Ethiopian Medical Association";No;No;0,129;Q4;34;16;157;287;34;140;0,20;17,94;29,41;0;Ethiopia;Africa;"Ethiopian Medical Association";"1970-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27348;21101046680;"Graduate Journal of Mathematics";journal;"27246841";"Mediterranean Institute for the Mathematical Sciences (MIMS)";No;No;0,129;Q4;4;11;28;168;5;28;0,20;15,27;23,08;0;United States;Northern America;"Mediterranean Institute for the Mathematical Sciences (MIMS)";"2019-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +27349;21101284798;"ICACC - International Conference on Advances in Computing and Communications";journal;"27662829, 27663248";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,129;Q4;2;0;67;0;36;65;0,54;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Hardware and Architecture (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences" +27350;21101284690;"IEEE Southern Power Electronics Conference, SPEC";journal;"28322983, 28322991";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,129;Q4;2;0;135;0;57;134;0,42;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Control and Optimization (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Mechanical Engineering (Q4)";"Energy; Engineering; Mathematics" +27351;21101058426;"International Journal of Anatomy and Research";journal;"23214287, 23218967";"IMED Research Publications";No;No;0,129;Q4;5;40;130;997;36;130;0,18;24,93;38,89;0;India;Asiatic Region;"IMED Research Publications";"2019-2025";"Anatomy (Q4); Cell Biology (Q4); Embryology (Q4); Histology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27352;19600161802;"International Journal of Computational Biology and Drug Design";journal;"17560764, 17560756";"Inderscience Publishers";No;No;0,129;Q4;17;10;36;480;14;36;0,54;48,00;46,15;0;United Kingdom;Western Europe;"Inderscience Publishers";"2008-2025";"Computer Science Applications (Q4); Drug Discovery (Q4)";"Computer Science; Pharmacology, Toxicology and Pharmaceutics" +27353;144949;"International Journal of Electronic Healthcare";journal;"17418461, 17418453";"Inderscience Enterprises Ltd";No;No;0,129;Q4;26;6;43;291;30;43;0,71;48,50;61,54;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2025";"Health Informatics (Q4); Health Policy (Q4)";"Medicine" +27354;19971;"International Journal of Emergency Management";journal;"17415071, 14714825";"Inderscience Publishers";No;No;0,129;Q4;28;0;29;0;11;29;0,29;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Publishers";"2003-2024";"Emergency Medicine (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Medicine" +27355;21100258857;"International Journal of Interdisciplinary Organizational Studies";journal;"23247649, 23247657";"Common Ground Research Networks";No;No;0,129;Q4;6;12;51;716;27;51;0,70;59,67;33,33;0;United States;Northern America;"Common Ground Research Networks";"2012-2025";"Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +27356;6700153285;"International Journal of Mobile Network Design and Innovation";journal;"17442869, 17442850";"Inderscience Enterprises Ltd";No;No;0,129;Q4;12;10;25;361;9;25;0,39;36,10;30,77;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2007, 2009-2025";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Management Information Systems (Q4); Software (Q4)";"Business, Management and Accounting; Computer Science" +27357;15253;"Irish Medical Journal";journal;"03323102";"Irish Medical Association";No;No;0,129;Q4;35;0;283;0;54;242;0,14;0,00;0,00;0;Ireland;Western Europe;"Irish Medical Association";"1974-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +27358;21101388472;"Journal of Dalian Jiaotong University";journal;"16739590";"Editorial Office of Journal of Dalian Jiaotong University";No;No;0,129;Q4;5;105;349;2026;82;349;0,23;19,30;33,13;0;China;Asiatic Region;"Editorial Office of Journal of Dalian Jiaotong University";"2021-2025";"Civil and Structural Engineering (Q4); Computational Mechanics (Q4); Mechanical Engineering (Q4); Transportation (Q4)";"Engineering; Social Sciences" +27359;16538;"Journal of Fiber Science and Technology";journal;"21897654";"Society of Fiber Science and Technology";Yes;No;0,129;Q4;24;23;298;612;34;270;0,12;26,61;30,00;0;Japan;Asiatic Region;"Society of Fiber Science and Technology";"1946-1948, 1951, 1954-2026";"Chemical Engineering (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4); Polymers and Plastics (Q4)";"Chemical Engineering; Engineering; Materials Science" +27360;21101303299;"Journal of Health and Rehabilitation Sciences";journal;"28205480";"Alma Mater Europaea University";No;No;0,129;Q4;3;14;32;435;9;31;0,31;31,07;56,82;0;Slovenia;Eastern Europe;"Alma Mater Europaea University";"2022-2026";"Health Professions (miscellaneous) (Q4); Occupational Therapy (Q4); Optometry (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions" +27361;21100981219;"Journal of Modern Oncology";journal;"18151434, 18151442";"Consilium MediCum";Yes;No;0,129;Q4;10;30;235;885;61;235;0,27;29,50;61,19;0;Russian Federation;Eastern Europe;"Consilium MediCum";"2018-2026";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27362;21101176847;"Journal of Multidisciplinary in Social Sciences";journal;"26730235";"Research and Development Institute Suan Dusit University";No;No;0,129;Q4;3;36;79;1573;29;79;0,35;43,69;57,69;0;Thailand;Asiatic Region;"Research and Development Institute Suan Dusit University";"2019-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +27363;17780;"Journal of the Medical Association of Thailand";journal;"24081981, 01252208";"Medical Association of Thailand";No;No;0,129;Q4;56;184;562;4348;98;562;0,17;23,63;54,76;0;Thailand;Asiatic Region;"Medical Association of Thailand";"1970-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27364;21101198384;"Journal of Turkish Society For Rheumatology";journal;"26512661, 26512653";"Galenos Publishing House";Yes;Yes;0,129;Q4;3;25;82;817;12;68;0,15;32,68;45,87;0;Turkey;Middle East;"Galenos Publishing House";"2020-2025";"Medicine (miscellaneous) (Q4); Rheumatology (Q4)";"Medicine" +27365;21101388876;"Juridica International";journal;"14065509, 14061082";"Sihtasutus Iuridicum";No;No;0,129;Q4;4;6;37;231;13;35;0,44;38,50;40,00;0;Estonia;Eastern Europe;"Sihtasutus Iuridicum";"2021-2024";"Law (Q4)";"Social Sciences" +27366;21101339667;"Lampung Journal of International Law";journal;"27232603, 26566532";"";Yes;No;0,129;Q4;4;5;30;272;15;30;0,40;54,40;50,00;0;Indonesia;Asiatic Region;"";"2021-2025";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +27367;5700168402;"Law and Literature";journal;"1535685X";"Taylor and Francis Ltd.";No;No;0,129;Q4;18;42;66;1819;28;65;0,47;43,31;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1989-2003, 2007, 2010-2026";"Law (Q4)";"Social Sciences" +27368;21101260623;"Medical Data Mining";journal;"26241587";"TMR Publishing Group";No;No;0,129;Q4;3;30;77;1249;15;75;0,15;41,63;43,52;0;New Zealand;Pacific Region;"TMR Publishing Group";"2020-2026";"Health Informatics (Q4)";"Medicine" +27369;27349;"Metallurgia Italiana";trade journal;"00260843";"Associazione Italiana di Metallurgia";No;No;0,129;Q4;22;41;196;654;44;196;0,18;15,95;35,90;0;Italy;Western Europe;"Associazione Italiana di Metallurgia";"1969-2026";"Condensed Matter Physics (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science; Physics and Astronomy" +27370;29932;"Mitteilungen der Osterreichischen Geographischen Gesellschaft";journal;"00299138";"Austrian Geographical Society";No;No;0,129;Q4;13;0;53;0;14;53;0,08;0,00;0,00;0;Austria;Western Europe;"Austrian Geographical Society";"1978-2008, 2011-2018, 2020-2024";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +27371;15155;"Monatsschrift fur Kinderheilkunde";journal;"14330474, 00269298";"Springer Medizin";No;No;0,129;Q4;23;196;621;3515;93;443;0,17;17,93;50,81;2;Germany;Western Europe;"Springer Medizin";"1952-2026";"Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)";"Medicine" +27372;21101264297;"NIPES - Journal of Science and Technology Research";journal;"26825821, 27342352";"Nigerian Institution of Professional Engineers and Scientists";No;No;0,129;Q4;7;598;288;22885;106;288;0,42;38,27;28,83;1;Nigeria;Africa;"Nigerian Institution of Professional Engineers and Scientists";"2020-2025";"Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +27373;19700201610;"Open Biochemistry Journal";journal;"1874091X";"Bentham Science Publishers";Yes;No;0,129;Q4;20;3;13;100;6;13;0,56;33,33;75,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2007, 2011-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology" +27374;21101302091;"Opinion Juridica";journal;"22484078";"University of Medellin";Yes;No;0,129;Q4;3;27;93;1170;8;93;0,02;43,33;37,04;0;Colombia;Latin America;"University of Medellin";"2021-2025";"Law (Q4)";"Social Sciences" +27375;21101229537;"Oralprophylaxe und Kinderzahnmedizin";journal;"30050782, 30050790";"Springer Medizin";No;No;0,129;Q4;4;52;109;642;15;82;0,15;12,35;53,57;0;Germany;Western Europe;"Springer Medizin";"2024-2026";"Dentistry (miscellaneous) (Q4)";"Dentistry" +27376;5700159257;"Peace and Conflict Studies";journal;"10827307";"Network of Peace and Conflict Studies";No;No;0,129;Q4;13;8;25;422;9;25;0,35;52,75;46,15;0;United States;Northern America;"Network of Peace and Conflict Studies";"2002, 2008-2025";"Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering; Social Sciences" +27377;21101258144;"Proceedings of the IEEE International Conference on Fog and Edge Computing, ICFEC";journal;"26943255, 26943263";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,129;Q4;3;12;18;236;16;16;0,89;19,67;20,59;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences" +27378;21101298357;"Proceedings of the IEEE International Conference on Trust, Security and Privacy in Computing and Communications, TrustCom";journal;"23249013, 2324898X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,129;Q4;3;0;365;0;76;349;0,21;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Information Systems and Management (Q4); Safety, Risk, Reliability and Quality (Q4)";"Computer Science; Decision Sciences; Engineering" +27379;21101054226;"Russian Journal of Evidence-Based Gastroenterology";journal;"23091363, 23052260";"Media Sphera Publishing Group";No;No;0,129;Q4;8;35;136;1279;40;135;0,31;36,54;48,73;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2012-2016, 2018-2025";"Family Practice (Q4); Gastroenterology (Q4)";"Medicine" +27380;27281;"Scandinavian Journal of Laboratory Animal Science";journal;"09013393, 20020112";"Swedish Research Council";Yes;No;0,129;Q4;23;4;7;107;2;7;0,33;26,75;21,74;0;Sweden;Western Europe;"Swedish Research Council";"1996-2012, 2014-2025";"Animal Science and Zoology (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +27381;21101300359;"Selcuk Dental Journal";journal;"21487529";"Selcuk University";Yes;No;0,129;Q4;4;94;331;3377;61;331;0,18;35,93;64,38;0;Turkey;Middle East;"Selcuk University";"2021-2025";"Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Orthodontics (Q4); Periodontics (Q4)";"Dentistry" +27382;4300151408;"Significance";journal;"17409713, 17409705";"Oxford University Press";No;No;0,129;Q4;31;53;199;187;55;97;0,15;3,53;33,33;1;United Kingdom;Western Europe;"Oxford University Press";"2004-2026";"Statistics and Probability (Q4)";"Mathematics" +27383;19400158636;"Sociologija i Prostor";journal;"18465226";"INST SOCIAL RES ZAGREB";Yes;No;0,129;Q4;12;11;76;250;32;70;0,43;22,73;50,00;0;Croatia;Eastern Europe;"INST SOCIAL RES ZAGREB";"2009-2025";"Education (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4); Urban Studies (Q4)";"Social Sciences" +27384;21100983209;"Structural Integrity";book series;"2522560X, 25225618";"Springer International Publishing";No;No;0,129;Q4;15;88;333;1127;217;30;0,23;12,81;0,00;0;Switzerland;Western Europe;"Springer International Publishing";"2018-2026";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +27385;19700174945;"Turkish Journal of Dermatology";journal;"13085255, 13077635";"Galenos Publishing House";Yes;No;0,129;Q4;10;38;77;908;18;64;0,25;23,89;61,90;0;Turkey;Middle East;"Galenos Publishing House";"2009-2025";"Dermatology (Q4)";"Medicine" +27386;22358;"U.S. Pharmacist";trade journal;"01484818";"Jobson Publishing Corporation";No;No;0,129;Q4;15;109;357;1577;55;240;0,17;14,47;68,49;0;United States;Northern America;"Jobson Publishing Corporation";"1979, 1990-1996, 2007-2025";"Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacy (Q4)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +27387;21100208082;"VacciMonitor";journal;"10250298, 1025028X";"Finlay Ediciones";Yes;Yes;0,129;Q4;7;17;48;392;13;42;0,24;23,06;53,52;0;Cuba;Latin America;"Finlay Ediciones";"2012-2025";"Drug Discovery (Q4); Immunology (Q4); Immunology and Allergy (Q4); Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +27388;21100894498;"Vestnik Tomskogo Gosudarstvennogo Universiteta, Biologiya";journal;"23112077, 19988591";"Tomsk State University";Yes;No;0,129;Q4;9;44;104;1093;19;103;0,18;24,84;66,24;0;Russian Federation;Eastern Europe;"Tomsk State University";"2018-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +27389;21100834311;"Waste Forum";journal;"18040195";"Czech Environment Management Center";No;No;0,129;Q4;6;35;76;943;17;68;0,31;26,94;44,44;0;Czech Republic;Eastern Europe;"Czech Environment Management Center";"2017-2026";"Environmental Chemistry (Q4); Environmental Engineering (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +27390;21100241614;"China International Conference on Electricity Distribution, CICED";conference and proceedings;"2161749X, 21617481";"IEEE Computer Society";No;No;0,129;-;17;0;574;0;144;572;0,18;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012, 2014, 2016, 2018, 2021-2022, 2024";"Control and Systems Engineering; Electrical and Electronic Engineering; Energy Engineering and Power Technology";"Energy; Engineering" +27391;21101146445;"European Modeling and Simulation Symposium, EMSS";conference and proceedings;"23052023";"Cal-Tek srl";No;No;0,129;-;6;0;136;0;44;133;0,40;0,00;0,00;0;Italy;Western Europe;"Cal-Tek srl";"2021-2024";"Modeling and Simulation";"Mathematics" +27392;21101131214;"International Conference on Sport Sciences Research and Technology Support, icSPORTS - Proceedings";conference and proceedings;"21843201";"Science and Technology Publications, Lda";No;No;0,129;-;5;35;86;765;26;81;0,27;21,86;22,81;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2021-2025";"Computer Science Applications; Software";"Computer Science" +27393;21100914700;"International Heat Transfer Conference";conference and proceedings;"2377424X";"Begell House Inc.";No;No;0,129;-;7;0;173;0;28;172;0,16;0,00;0,00;0;United States;Northern America;"Begell House Inc.";"2018, 2023";"Condensed Matter Physics; Fluid Flow and Transfer Processes; Mechanical Engineering";"Chemical Engineering; Engineering; Physics and Astronomy" +27394;21101070906;"World Congress in Computational Mechanics and ECCOMAS Congress";conference and proceedings;"26966999";"Scipedia S.L.";No;No;0,129;-;7;0;884;0;206;861;0,07;0,00;0,00;0;Spain;Western Europe;"Scipedia S.L.";"2021-2022, 2024";"Mechanical Engineering";"Engineering" +27395;5700153667;"College Literature";journal;"00933139, 15424286";"West Chester University";No;No;0,128;Q2;21;25;73;1164;14;71;0,19;46,56;50,00;0;United States;Northern America;"West Chester University";"2002-2026";"Literature and Literary Theory (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +27396;21100406697;"Current Writing";journal;"1013929X, 21599130";"Routledge";No;No;0,128;Q2;13;24;49;575;15;45;0,33;23,96;52,63;0;United Kingdom;Western Europe;"Routledge";"1989-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27397;21101087238;"ESPES";journal;"13391119";"University of Presov Faculty of Arts";Yes;Yes;0,128;Q2;3;33;57;1052;10;51;0,13;31,88;66,67;0;Slovakia;Eastern Europe;"University of Presov Faculty of Arts";"2021-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3); Music (Q3); Philosophy (Q3)";"Arts and Humanities" +27398;17900156712;"Jung Journal: Culture and Psyche";journal;"19342039, 19342047";"Taylor and Francis Ltd.";No;No;0,128;Q2;8;72;173;956;12;127;0,03;13,28;58,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2007-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Applied Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +27399;21101323183;"Jurnal Gramatika";journal;"24428485, 24606316";"Universitas PGRI Sumatera Barat";Yes;No;0,128;Q2;3;20;60;1009;17;60;0,40;50,45;57,14;0;Indonesia;Asiatic Region;"Universitas PGRI Sumatera Barat";"2022-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Education (Q4); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology; Social Sciences" +27400;21100886541;"Knygotyra";journal;"23450053, 02042061";"Vilnius University";Yes;Yes;0,128;Q2;4;8;65;395;8;58;0,13;49,38;70,00;0;Lithuania;Eastern Europe;"Vilnius University";"2018-2025";"Literature and Literary Theory (Q2); Communication (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +27401;5600154152;"Modernism - Modernity";journal;"10806601, 10716068";"Johns Hopkins University Press";No;No;0,128;Q2;29;10;98;400;17;97;0,14;40,00;50,00;0;United States;Northern America;"Johns Hopkins University Press";"1999, 2002-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3); Music (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27402;5700181592;"Philological Quarterly";journal;"00317977";"University of Iowa";No;No;0,128;Q2;12;0;46;0;7;25;0,12;0,00;0,00;0;United States;Northern America;"University of Iowa";"2002-2024";"Literature and Literary Theory (Q2); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27403;19700170142;"Romance Studies";journal;"17458153, 02639904";"Maney Publishing";No;No;0,128;Q2;10;6;57;161;11;52;0,18;26,83;40,00;0;United Kingdom;Western Europe;"Maney Publishing";"1983-1995, 2005-2026";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27404;21101061830;"Sanat Tarihi Yilligi";journal;"27176940, 05794080";"Istanbul University";Yes;Yes;0,128;Q2;2;17;51;909;11;50;0,18;53,47;38,89;0;Turkey;Middle East;"Istanbul University";"2019-2025";"Visual Arts and Performing Arts (Q2); Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities" +27405;16608;"Slavonic and East European Review";journal;"00376795";"Maney Publishing";No;No;0,128;Q2;21;18;87;1703;14;87;0,16;94,61;42,86;0;United Kingdom;Western Europe;"Maney Publishing";"1971, 1979-1981, 1999, 2002-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27406;21101131184;"Studies in Costume and Performance";journal;"20524013, 20524021";"Intellect Ltd.";No;No;0,128;Q2;7;23;47;425;21;41;0,47;18,48;64,29;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27407;21100787326;"Text Matters";journal;"20832931, 2084574X";"Lodz University Press";Yes;Yes;0,128;Q2;6;23;81;704;16;79;0,09;30,61;66,67;0;Poland;Eastern Europe;"Lodz University Press";"2016-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +27408;17154;"Textile Museum Journal";journal;"24758825, 00837407";"The George Washington University Museum and The Textile Museum";No;No;0,128;Q2;3;0;17;0;2;16;0,00;0,00;0,00;0;United States;Northern America;"The George Washington University Museum and The Textile Museum";"1984, 1990, 1992-1993, 2017-2023";"Visual Arts and Performing Arts (Q2); Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3); Museology (Q3)";"Arts and Humanities" +27409;21100943530;"Trends in Classics";journal;"18667481, 18667473";"Walter de Gruyter GmbH";No;No;0,128;Q2;13;18;54;939;19;54;0,18;52,17;57,89;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2009-2025";"Classics (Q2)";"Arts and Humanities" +27410;77701;"Aegyptus";journal;"18277888, 00019046";"Vita e Pensiero";No;No;0,128;Q3;8;15;43;480;3;43;0,08;32,00;64,29;0;Italy;Western Europe;"Vita e Pensiero";"1972, 1977, 2002-2018, 2022-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +27411;21101188796;"African Review (Tanzania)";journal;"1821889X, 08560056";"Brill Academic Publishers";No;No;0,128;Q3;5;31;106;1635;32;104;0,31;52,74;34,09;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2026";"History (Q3); Geography, Planning and Development (Q4); Political Science and International Relations (Q4); Public Administration (Q4)";"Arts and Humanities; Social Sciences" +27412;21100338503;"Analele Universitatii Ovidius Constanta, Seria Filologie";journal;"27347060, 12241768";"Ovidius University";No;No;0,128;Q3;3;42;172;1082;13;172;0,08;25,76;83,33;0;Romania;Eastern Europe;"Ovidius University";"2013-2025";"Linguistics and Language (Q3)";"Social Sciences" +27413;19343;"Archives of Natural History";journal;"17556260, 02609541";"Edinburgh University Press";No;No;0,128;Q3;16;28;95;1171;14;82;0,18;41,82;38,78;0;United Kingdom;Western Europe;"Edinburgh University Press";"1981-1983, 1985-1989, 1991-1992, 1994, 1996-2025";"History (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Anthropology (Q4)";"Agricultural and Biological Sciences; Arts and Humanities; Social Sciences" +27414;21100897143;"Brussels Studies";journal;"20310293";"Universite Saint-Louis Bruxelles";Yes;Yes;0,128;Q3;4;8;38;333;8;38;0,24;41,63;31,82;0;Belgium;Western Europe;"Universite Saint-Louis Bruxelles";"2018-2026";"Cultural Studies (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Social Sciences" +27415;15689;"Bulletin of the John Rylands Library";journal;"20549326, 20549318";"Manchester University Press";No;No;0,128;Q3;8;6;40;311;4;37;0,08;51,83;0,00;0;United Kingdom;Western Europe;"Manchester University Press";"1946-1948, 1971-1972, 1990, 1999, 2002-2006, 2012, 2014-2025";"Arts and Humanities (miscellaneous) (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +27416;21100247075;"Codrul Cosminului";journal;"1224032X, 20675860";"Universitatea "Stefan cel Mare" din Suceava";Yes;Yes;0,128;Q3;6;23;55;859;10;55;0,15;37,35;33,33;0;Romania;Eastern Europe;"Universitatea "Stefan cel Mare" din Suceava";"2013-2025";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27417;19900192456;"Culture, Theory and Critique";journal;"14735776, 14735784";"Routledge";No;No;0,128;Q3;20;8;50;361;31;48;0,34;45,13;60,00;0;United Kingdom;Western Europe;"Routledge";"2010-2026";"Cultural Studies (Q3); Sociology and Political Science (Q4)";"Social Sciences" +27418;21100933990;"Dialogue and Universalism";journal;"12345792, 16893816";"Polish Academy of Sciences - Institute of Philosophy and Sociology";No;No;0,128;Q3;4;42;139;1028;21;125;0,19;24,48;50,77;0;Poland;Eastern Europe;"Polish Academy of Sciences - Institute of Philosophy and Sociology";"2019-2025";"Philosophy (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +27419;21100390168;"Dutch Journal of Applied Linguistics";journal;"22117253, 22117245";"";Yes;Yes;0,128;Q3;15;7;28;253;20;27;0,90;36,14;33,33;0;Netherlands;Western Europe;"";"2012-2026";"Linguistics and Language (Q3)";"Social Sciences" +27420;21101053576;"Epoche";journal;"21538603, 10851968";"Philosophy Documentation Center";No;No;0,128;Q3;4;20;62;1584;13;61;0,15;79,20;25,00;0;United States;Northern America;"Philosophy Documentation Center";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +27421;5600154423;"French History";journal;"02691191, 14774542";"Oxford University Press";No;No;0,128;Q3;19;21;75;2301;28;73;0,45;109,57;44,00;0;United Kingdom;Western Europe;"Oxford University Press";"1987-2025";"History (Q3)";"Arts and Humanities" +27422;19051;"History in Africa";journal;"03615413, 15582744";"African Studies Association";No;No;0,128;Q3;9;9;42;423;21;39;0,48;47,00;57,14;0;United States;Northern America;"African Studies Association";"1974, 1982, 1988, 1997, 1999-2001, 2017-2025";"History (Q3)";"Arts and Humanities" +27423;21100244841;"International Journal of Communication and Linguistic Studies";journal;"23278617, 23277882";"Common Ground Research Networks";No;No;0,128;Q3;6;30;62;1181;30;61;0,34;39,37;44,44;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Linguistics and Language (Q3); Communication (Q4)";"Social Sciences" +27424;21100773744;"International Journal of Marketing Semiotics and Discourse Studies";journal;"21952280";"University of Kassel";No;No;0,128;Q3;7;4;9;195;2;9;0,29;48,75;50,00;0;Germany;Western Europe;"University of Kassel";"2013-2026";"Linguistics and Language (Q3); Communication (Q4); Marketing (Q4)";"Business, Management and Accounting; Social Sciences" +27425;21101064916;"Journal of African Military History";journal;"24680966, 24680958";"Brill Academic Publishers";No;No;0,128;Q3;4;7;14;596;5;14;0,11;85,14;20,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2018, 2021-2023, 2025";"History (Q3)";"Arts and Humanities" +27426;21101192684;"Journal of International Buddhist Studies";journal;"19066244, 25869620";"Mahachulalongkornrajavidyalaya University";Yes;Yes;0,128;Q3;3;10;43;456;5;43;0,19;45,60;37,50;0;Thailand;Asiatic Region;"Mahachulalongkornrajavidyalaya University";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +27427;21101262348;"Journal of Orthodox Christian Studies";journal;"2574495X, 25744968";"Johns Hopkins University Press";No;No;0,128;Q3;3;0;36;0;10;34;0,13;0,00;0,00;0;United States;Northern America;"Johns Hopkins University Press";"2020-2024";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +27428;21101176030;"Journal of Public Interest Communications";journal;"25734342";"";Yes;Yes;0,128;Q3;7;7;16;169;6;12;0,23;24,14;75,00;0;United States;Northern America;"";"2019-2025";"Cultural Studies (Q3); Gender Studies (Q4); Health (social science) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +27429;19700182674;"Journal of Speculative Philosophy";journal;"0891625X, 15279383";"Penn State University Press";No;No;0,128;Q3;17;27;94;1242;20;91;0,11;46,00;44,00;0;United States;Northern America;"Penn State University Press";"2006, 2010-2025";"Philosophy (Q3)";"Arts and Humanities" +27430;19700201334;"Journal of Transatlantic Studies";journal;"17541018, 14794012";"Taylor and Francis Ltd.";No;No;0,128;Q3;15;20;45;1077;15;42;0,15;53,85;9,52;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2007, 2010-2026";"History (Q3); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +27431;21101146416;"Journal on Ethnopolitics and Minority Issues in Europe";journal;"16175247";"European Centre for Minority Issues";Yes;Yes;0,128;Q3;5;18;34;1021;20;33;0,42;56,72;73,68;0;Germany;Western Europe;"European Centre for Minority Issues";"2010, 2019-2025";"Cultural Studies (Q3); Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +27432;21100826326;"Maetagused";journal;"1406992X, 14069938";"Eesti Keele Instituudi";Yes;Yes;0,128;Q3;6;25;71;956;8;70;0,04;38,24;68,75;0;Estonia;Eastern Europe;"Eesti Keele Instituudi";"2017-2025";"Cultural Studies (Q3); Anthropology (Q4)";"Social Sciences" +27433;21100836273;"Old Testament Essays";journal;"23123621, 10109919";"Old Testament Society of South Africa";Yes;No;0,128;Q3;7;6;78;390;28;73;0,33;65,00;40,00;0;South Africa;Africa;"Old Testament Society of South Africa";"2017-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3); Linguistics and Language (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27434;21101089621;"Pensiero Economico Italiano";journal;"11228784, 17240581";"Fabrizio Serra Editore";No;No;0,128;Q3;3;5;62;513;6;58;0,08;102,60;55,56;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2025";"History (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Arts and Humanities; Economics, Econometrics and Finance" +27435;16400154767;"Pomegranate";journal;"17431735, 15280268";"Equinox Publishing Ltd";No;No;0,128;Q3;13;0;18;0;1;18;0,13;0,00;0,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2004-2023";"Cultural Studies (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27436;21101028197;"Punctum International Journal of Semiotics";journal;"24592943";"Hellenic Semiotic Society";No;No;0,128;Q3;6;11;58;616;12;53;0,12;56,00;66,67;0;Greece;Western Europe;"Hellenic Semiotic Society";"2019-2025";"Linguistics and Language (Q3); Communication (Q4)";"Social Sciences" +27437;21101042997;"Religion and Society in Central and Eastern Europe";journal;"15539962";"International Study of Religion in Eastern and Central Europe Association";No;No;0,128;Q3;6;3;19;138;6;16;0,36;46,00;25,00;0;Croatia;Eastern Europe;"International Study of Religion in Eastern and Central Europe Association";"2019-2025";"Cultural Studies (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27438;21100781490;"Studies About Languages";journal;"16482824, 20297203";"Kauno Technologijos Universitetas";Yes;Yes;0,128;Q3;7;8;48;401;12;48;0,25;50,13;71,43;0;Lithuania;Eastern Europe;"Kauno Technologijos Universitetas";"2016-2025";"Archeology (arts and humanities) (Q3); Linguistics and Language (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +27439;21100407282;"Studii si Cercetari Fliologice, Seria Limbi Romanice";journal;"18433979, 23444851";"Editura Universitatii din Pitesti";Yes;No;0,128;Q3;2;5;31;62;4;27;0,18;12,40;80,00;0;Romania;Eastern Europe;"Editura Universitatii din Pitesti";"2015-2024";"Linguistics and Language (Q3)";"Social Sciences" +27440;21100219932;"Temas Americanistas";journal;"02124408, 19887868";"University of Sevilla";Yes;No;0,128;Q3;6;16;103;1102;12;101;0,12;68,88;77,78;0;Spain;Western Europe;"University of Sevilla";"2012-2025";"History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27441;65755;"Acta Agronomica";journal;"23230118, 01202812";"Universidad Nacional de Colombia";Yes;Yes;0,128;Q4;18;24;119;784;31;119;0,20;32,67;33,33;0;Colombia;Latin America;"Universidad Nacional de Colombia";"1968, 2012-2026";"Agronomy and Crop Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +27442;21100346235;"AIB Studi";journal;"22396152, 22809112";"Associazione Italiana Biblioteche";Yes;Yes;0,128;Q4;7;9;70;335;15;63;0,07;37,22;73,33;0;Italy;Western Europe;"Associazione Italiana Biblioteche";"2014-2025";"Library and Information Sciences (Q4)";"Social Sciences" +27443;27073;"Aide Soignante";journal;"11663413";"Elsevier Masson s.r.l.";No;No;0,128;Q4;3;112;324;645;11;264;0,03;5,76;69,70;0;France;Western Europe;"Elsevier Masson s.r.l.";"2002-2026";"Nursing (miscellaneous) (Q4)";"Nursing" +27444;66252;"Anesteziologie a Intenzivni Medicina";journal;"12142158, 18054412";"Czech Medical Association J.E. Purkyne";No;No;0,128;Q4;7;58;181;1563;18;116;0,13;26,95;35,71;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"2003-2025";"Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4)";"Medicine" +27445;21101212771;"Annals of Internal Medicine Clinical Cases";journal;"27677664";"American College of Physicians";Yes;No;0,128;Q4;5;257;555;2773;93;537;0,16;10,79;40,74;0;United States;Northern America;"American College of Physicians";"2022-2026";"Cardiology and Cardiovascular Medicine (Q4); Clinical Biochemistry (Q4); Internal Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27446;19200156940;"Asian Journal of Management Cases";journal;"09728201, 09730621";"Sage Publications India Pvt. Ltd";No;No;0,128;Q4;10;33;112;477;36;105;0,30;14,45;42,19;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"2004-2026";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +27447;93709;"Atoll Research Bulletin";journal;"00775630";"Smithsonian National Museum of Natural History";No;No;0,128;Q4;31;0;3;0;2;3;0,67;0,00;0,00;0;United States;Northern America;"Smithsonian National Museum of Natural History";"1979-1983, 1985, 1987-1994, 1996-2019, 2023-2024";"Oceanography (Q4)";"Earth and Planetary Sciences" +27448;21100874193;"Berichte Geographie und Landeskunde";journal;"21966184";"Franz Steiner Verlag GmbH";No;No;0,128;Q4;13;25;59;1099;13;55;0,26;43,96;42,86;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"2013-2018, 2020-2026";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +27449;66571;"Boletim Paranaense de Geosciencias";journal;"0067964X";"Universidade Federal do Parana";No;No;0,128;Q4;15;23;31;709;7;31;0,00;30,83;36,76;0;Brazil;Latin America;"Universidade Federal do Parana";"1996-2008, 2011-2015, 2017-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +27450;21100920133;"Casopis pro Pravni Vedu a Praxi";journal;"18052789, 12109126";"Masaryk University";Yes;Yes;0,128;Q4;4;33;98;2855;14;93;0,20;86,52;26,67;0;Czech Republic;Eastern Europe;"Masaryk University";"2018-2025";"Law (Q4)";"Social Sciences" +27451;20708;"Estudos Economicos";journal;"19805357, 01014161";"Instituto de Pesquisas Economicas da FEA-USP";Yes;Yes;0,128;Q4;15;22;65;1113;16;65;0,28;50,59;34,04;0;Brazil;Latin America;"Instituto de Pesquisas Economicas da FEA-USP";"1981, 1987, 1992, 2008-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +27452;21100239255;"EuroMediterranean Biomedical Journal";journal;"22797165";"Segretariato Italiano Giovani Medici - Associazione Italiana Medici";Yes;No;0,128;Q4;16;0;90;0;16;89;0,17;0,00;0,00;0;Italy;Western Europe;"Segretariato Italiano Giovani Medici - Associazione Italiana Medici";"2012-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +27453;21101151821;"Forum Prawnicze";journal;"2081688X, 2720488X";"Jagiellonian University";Yes;Yes;0,128;Q4;3;23;98;906;9;97;0,09;39,39;41,67;0;Poland;Eastern Europe;"Jagiellonian University";"2019-2025";"Law (Q4)";"Social Sciences" +27454;21101281060;"History of Economics Review";journal;"10370196, 18386318";"Taylor and Francis";No;No;0,128;Q4;13;7;44;305;14;34;0,41;43,57;25,00;0;Australia;Pacific Region;"Taylor and Francis";"1986-2026";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +27455;13026;"Huadong Ligong Daxue Xuebao /Journal of East China University of Science and Technology";journal;"10063080";"East China University of Science and Technology";No;No;0,128;Q4;14;91;321;2584;119;321;0,42;28,40;37,43;0;China;Asiatic Region;"East China University of Science and Technology";"1993-1995, 2001-2025";"Chemical Engineering (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Materials Chemistry (Q4)";"Chemical Engineering; Engineering; Materials Science" +27456;21101254929;"Ibom Medical Journal";journal;"27359964, 15977188";"";Yes;No;0,128;Q4;4;101;199;2990;53;199;0,27;29,60;28,96;0;Nigeria;Africa;"";"2020-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27457;21101285704;"IEEE International Conference on Robotics and Biomimetics, ROBIO";journal;"29943566, 29943574";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,128;Q4;3;0;392;0;99;390;0,25;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Control and Optimization (Q4); Information Systems (Q4); Mechanical Engineering (Q4)";"Computer Science; Engineering; Mathematics" +27458;21101199900;"Indian Journal of Clinical Anaesthesia";journal;"23944994, 23944781";"IP Innovative Publication Pvt. Ltd.";No;No;0,128;Q4;2;122;202;2282;38;169;0,19;18,70;48,52;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2023-2026";"Anesthesiology and Pain Medicine (Q4)";"Medicine" +27459;21101301729;"International Conference on Advanced Infocomm Technology, ICAIT";journal;"27701603";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,128;Q4;2;0;76;0;20;74;0,26;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Hardware and Architecture (Q4); Information Systems (Q4); Information Systems and Management (Q4); Signal Processing (Q4)";"Computer Science; Decision Sciences" +27460;21100903458;"International Journal of Geospatial and Environmental Research";journal;"23322047";"Korea-America Association for Geospatial and Environmental Sciences";Yes;No;0,128;Q4;5;1;10;10;2;10;0,33;10,00;40,00;0;United States;Northern America;"Korea-America Association for Geospatial and Environmental Sciences";"2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Information Systems (Q4)";"Computer Science; Earth and Planetary Sciences; Environmental Science; Social Sciences" +27461;21101134471;"Iranian Journal of Diabetes and Metabolism";journal;"23454008, 23454016";"Tehran University of Medical Sciences";No;No;0,128;Q4;6;55;113;1994;34;112;0,27;36,25;48,98;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2026";"Biochemistry (medical) (Q4); Endocrinology, Diabetes and Metabolism (Q4); Epidemiology (Q4); Internal Medicine (Q4)";"Medicine" +27462;21100384312;"Journal des Economistes et des Etudes Humaines";journal;"21945799, 21531552";"Walter de Gruyter GmbH";No;No;0,128;Q4;13;6;24;257;4;23;0,31;42,83;40,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1995-1996, 1998-2004, 2009-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +27463;19900193274;"Journal of King Abdulaziz University, Marine Science";journal;"10128840";"King Abdulaziz University Scientific Publishing Center";No;No;0,128;Q4;12;0;34;0;25;34;0,38;0,00;0,00;0;Saudi Arabia;Middle East;"King Abdulaziz University Scientific Publishing Center";"2009-2018, 2020-2024";"Aquatic Science (Q4); Environmental Chemistry (Q4); Oceanography (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +27464;21101219808;"Journal of Tropical Crop Science";journal;"23560169, 23560177";"IPB University Department of Agronomy and Horticulture";Yes;Yes;0,128;Q4;3;66;39;2428;17;39;0,44;36,79;38,24;0;Indonesia;Asiatic Region;"IPB University Department of Agronomy and Horticulture";"2024-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Horticulture (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +27465;21101160599;"Journal of Xinxiang Medical University";journal;"10047239";"";No;No;0,128;Q4;5;182;651;4964;158;651;0,32;27,27;48,33;0;China;Asiatic Region;"";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27466;21100842538;"Jusletter IT";journal;"1664848X";"Editions Weblaw";No;No;0,128;Q4;7;72;267;1967;11;254;0,04;27,32;29,60;0;Switzerland;Western Europe;"Editions Weblaw";"2017-2025";"Computer Science (miscellaneous) (Q4); Law (Q4)";"Computer Science; Social Sciences" +27467;21100942419;"Klinicheskaya Dermatologiya i Venerologiya";journal;"19972849, 23094877";"Media Sphera Publishing Group";No;No;0,128;Q4;9;106;315;2833;73;314;0,25;26,73;69,79;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2010-2025";"Dermatology (Q4); Family Practice (Q4); Infectious Diseases (Q4)";"Medicine" +27468;16852;"Klinische Neurophysiologie";journal;"14340275, 14394081";"Georg Thieme Verlag";No;No;0,128;Q4;9;40;136;812;16;98;0,11;20,30;38,89;0;Germany;Western Europe;"Georg Thieme Verlag";"1998-2025";"Neurology (clinical) (Q4); Physiology (medical) (Q4)";"Medicine" +27469;7100153148;"Korean Journal of Microbiology";journal;"04402413, 23839902";"The Korean Society for Mocrobiology / The Korean Society of Virology";Yes;No;0,128;Q4;15;60;164;1477;37;164;0,26;24,62;43,72;0;South Korea;Asiatic Region;"The Korean Society for Mocrobiology / The Korean Society of Virology";"2007-2025";"Microbiology (Q4)";"Immunology and Microbiology" +27470;21101117189;"Lujun Gongcheng Daxue Xuebao/Journal of Army Engineering University of PLA";journal;"20970730";"ARMY ENGINEERING UNIVERSITY OF PLA";No;No;0,128;Q4;4;75;208;1798;59;208;0,24;23,97;29,45;0;China;Asiatic Region;"ARMY ENGINEERING UNIVERSITY OF PLA";"2022-2025";"Civil and Structural Engineering (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Engineering (miscellaneous) (Q4); Information Systems (Q4); Mechanical Engineering (Q4)";"Computer Science; Engineering" +27471;17268;"Medecine Nucleaire";journal;"09281258, 18786820";"Elsevier Masson s.r.l.";No;No;0,128;Q4;10;45;106;657;19;98;0,21;14,60;46,15;0;France;Western Europe;"Elsevier Masson s.r.l.";"1993-2026";"Biophysics (Q4); Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +27472;21100304862;"Medical News of North Caucasus";journal;"20738137, 20738145";"Stavropol State Medical University";No;No;0,128;Q4;11;88;300;2004;58;300;0,19;22,77;50,69;0;Russian Federation;Eastern Europe;"Stavropol State Medical University";"2014-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27473;19905;"Medicina Paliativa";journal;"1134248X";"Sociedad Espanola de Cuidados Paliativos";No;Yes;0,128;Q4;16;8;76;147;15;57;0,13;18,38;76,47;0;Spain;Western Europe;"Sociedad Espanola de Cuidados Paliativos";"2000-2025";"Anesthesiology and Pain Medicine (Q4); Clinical Psychology (Q4); Medical and Surgical Nursing (Q4); Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)";"Medicine; Nursing; Psychology" +27474;5600152910;"Mens en Maatschappij";journal;"00259454, 18762816";"Amsterdam University Press";No;No;0,128;Q4;6;29;105;888;10;104;0,08;30,62;39,53;0;Netherlands;Western Europe;"Amsterdam University Press";"2016-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +27475;21101062818;"Micro and Macro Marketing";journal;"11214228, 26122073";"Il Mulino publishing house";No;No;0,128;Q4;6;28;88;1625;25;75;0,33;58,04;64,91;0;Italy;Western Europe;"Il Mulino publishing house";"2019-2025";"Marketing (Q4)";"Business, Management and Accounting" +27476;18580;"Microwave Journal";trade journal;"01926225";"Horizon House";No;No;0,128;Q4;32;81;213;585;41;202;0,20;7,22;17,11;0;United States;Northern America;"Horizon House";"1969-1989, 1994-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +27477;14890;"Mondes en Developpement";journal;"03023052, 17821444";"CAIRN Belgique";No;No;0,128;Q4;14;0;108;0;29;100;0,18;0,00;0,00;0;Belgium;Western Europe;"CAIRN Belgique";"1977-1979, 1982-2024";"Development (Q4); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +27478;21101363382;"Monitor Versorgungsforschung";journal;"18660533, 25098381";"eRelation AG";Yes;No;0,128;Q4;3;82;293;1040;20;149;0,09;12,68;50,00;0;Germany;Western Europe;"eRelation AG";"2021-2025";"Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +27479;95801;"Naturschutz und Landschaftsplanung";journal;"09406808, 18695191";"Verlag Eugen Ulmer";No;No;0,128;Q4;15;91;291;107;25;123;0,08;1,18;32,04;0;Germany;Western Europe;"Verlag Eugen Ulmer";"1995-2025";"Ecology (Q4); Environmental Science (miscellaneous) (Q4)";"Environmental Science" +27480;32829;"Nutritional Sciences Journal";journal;"10116958";"Nutrition Society in Taiwan";No;No;0,128;Q4;9;0;39;0;7;39;0,25;0,00;0,00;0;Taiwan;Asiatic Region;"Nutrition Society in Taiwan";"1994-2013, 2019-2024";"Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +27481;21101140552;"Onkologie";journal;"27317234, 27317226";"Springer Medizin";No;No;0,128;Q4;16;220;538;4945;85;451;0,18;22,48;45,89;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Hematology (Q4); Oncology (Q4)";"Medicine" +27482;12100155503;"Revista Latinoamericana de Hipertension";journal;"18564550";"Venezuelan Society of Pharmacology and Clinical and Therapeutic Pharmacology";Yes;Yes;0,128;Q4;13;111;235;3017;82;235;0,35;27,18;64,05;0;Venezuela;Latin America;"Venezuelan Society of Pharmacology and Clinical and Therapeutic Pharmacology";"2008-2025";"Cardiology and Cardiovascular Medicine (Q4); Internal Medicine (Q4)";"Medicine" +27483;21100820732;"Romanian Journal of Neurology/ Revista Romana de Neurologie";journal;"20696094, 18438148";"Amaltea Medical Publishing House";Yes;No;0,128;Q4;7;70;192;1864;36;192;0,18;26,63;45,96;0;Romania;Eastern Europe;"Amaltea Medical Publishing House";"2009-2025";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +27484;4000151503;"Russian Aeronautics";journal;"10687998, 19347901";"Pleiades Publishing";No;No;0,128;Q4;19;100;326;1997;69;326;0,22;19,97;23,56;0;United States;Northern America;"Pleiades Publishing";"2005-2025";"Aerospace Engineering (Q4)";"Engineering" +27485;21101126135;"Sibirskij Nauchnyj Medicinskij Zhurnal";journal;"24102520, 24102512";"Institute of Cytology and Genetics of Siberian Branch of the Russian Academy of Sciences";Yes;Yes;0,128;Q4;7;157;313;5193;90;313;0,27;33,08;58,99;0;Russian Federation;Eastern Europe;"Institute of Cytology and Genetics of Siberian Branch of the Russian Academy of Sciences";"2019-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology" +27486;21101030207;"Sportske Nauke i Zdravlje";journal;"2232822X, 22328211";"Pan - European University Apeiron";Yes;Yes;0,128;Q4;6;50;100;1472;23;100;0,26;29,44;33,58;0;Bosnia and Herzegovina;Eastern Europe;"Pan - European University Apeiron";"2019-2025";"Immunology and Allergy (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +27487;21100851482;"Statistica e Applicazioni";journal;"18246672, 22836659";"Vita e Pensiero";No;No;0,128;Q4;12;0;6;0;1;4;0,00;0,00;0,00;0;Italy;Western Europe;"Vita e Pensiero";"2003-2022";"Statistical and Nonlinear Physics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics; Physics and Astronomy" +27488;23579;"Stomatologiya (Russian Federation)";journal;"00391735, 23095318";"Media Sphera Publishing Group";No;No;0,128;Q4;11;81;267;0;75;267;0,23;0,00;59,90;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"1945-1947, 1949-1955, 1961, 1965-2025";"Dental Hygiene (Q4); Dentistry (miscellaneous) (Q4)";"Dentistry" +27489;14574;"Strength, Fracture and Complexity";journal;"15672069";"SAGE Publications Ltd";No;No;0,128;Q4;15;9;32;250;9;31;0,33;27,78;4,35;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2003-2007, 2009-2026";"Condensed Matter Physics (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Physics and Astronomy" +27490;21100238625;"Suomen Antropologi";journal;"03553930, 17998972";"Finnish Anthropological Society";Yes;Yes;0,128;Q4;14;21;75;618;27;65;0,36;29,43;70,37;0;Finland;Western Europe;"Finnish Anthropological Society";"2010-2025";"Anthropology (Q4)";"Social Sciences" +27491;144883;"Surgical Practice";journal;"17441625, 17441633";"Wiley-Blackwell Publishing Ltd";No;No;0,128;Q4;13;42;132;907;25;111;0,16;21,60;36,91;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"2005-2026";"Surgery (Q4)";"Medicine" +27492;8000153126;"Taiwanese Journal of Agricultural Chemistry and Food Science";journal;"16052471";"Chinese Agricultural Chemical Society";No;No;0,128;Q4;6;13;56;375;13;56;0,22;28,85;53,33;0;Taiwan;Asiatic Region;"Chinese Agricultural Chemical Society";"2007-2025";"Agronomy and Crop Science (Q4); Applied Microbiology and Biotechnology (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology" +27493;20494;"Victorian Naturalist";journal;"00425184";"Field Naturalists Club of Victoria";No;No;0,128;Q4;12;19;73;328;9;45;0,04;17,26;43,75;0;Australia;Pacific Region;"Field Naturalists Club of Victoria";"1980, 1984, 2008-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +27494;13638;"Xiandai Huagong/Modern Chemical Industry";journal;"02534320";"China National Chemical Information Center";No;No;0,128;Q4;17;677;1677;15773;486;1677;0,31;23,30;36,75;0;China;Asiatic Region;"China National Chemical Information Center";"1982, 1984-1989, 2000-2026";"Chemical Engineering (miscellaneous) (Q4)";"Chemical Engineering" +27495;25920;"Yuki Gosei Kagaku Kyokaishi/Journal of Synthetic Organic Chemistry";journal;"18836526, 00379980";"Society of Synthetic Organic Chemistry";No;No;0,128;Q4;34;92;306;3244;65;292;0,23;35,26;11,64;0;Japan;Asiatic Region;"Society of Synthetic Organic Chemistry";"1944, 1950-2026";"Organic Chemistry (Q4)";"Chemistry" +27496;4400151707;"Zhongbei Daxue Xuebao (Ziran Kexue Ban)/Journal of North University of China (Natural Science Edition)";journal;"16733193";"North China Institute of Technology";No;No;0,128;Q4;10;70;255;1646;59;255;0,25;23,51;43,40;0;China;Asiatic Region;"North China Institute of Technology";"2006-2025";"Management of Technology and Innovation (Q4)";"Business, Management and Accounting" +27497;19900194828;"American Society of Mechanical Engineers, Power Division (Publication) POWER";conference and proceedings;"-";"American Society of Mechanical Engineers (ASME)";No;No;0,128;-;14;0;154;0;37;148;0,27;0,00;0,00;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"2010-2011, 2013-2015, 2017-2024";"Energy Engineering and Power Technology; Mechanical Engineering";"Energy; Engineering" +27498;21100248890;"Conference on Millimeter-Wave and Terahertz Technologies, MMWaTT";conference and proceedings;"21570965, 21570973";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,128;-;8;0;25;0;18;24;0,00;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2012, 2015-2016, 2018, 2022";"Acoustics and Ultrasonics; Computer Networks and Communications; Electrical and Electronic Engineering; Media Technology";"Computer Science; Engineering; Physics and Astronomy" +27499;21100255386;"Eurographics Workshop on 3D Object Retrieval, EG 3DOR";conference and proceedings;"19970471, 19970463";"Eurographics Association";No;No;0,128;-;32;4;13;93;5;9;0,38;23,25;20,00;0;United States;Northern America;"Eurographics Association";"2008-2025";"Computer Graphics and Computer-Aided Design; Computer Vision and Pattern Recognition; Human-Computer Interaction";"Computer Science" +27500;21100228501;"International Conference on Infrared, Millimeter, and Terahertz Waves, IRMMW-THz";conference and proceedings;"21622027, 21622035";"IEEE Computer Society";No;No;0,128;-;20;0;1553;0;338;1548;0,22;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012-2014, 2016-2024";"Electrical and Electronic Engineering; Energy Engineering and Power Technology";"Energy; Engineering" +27501;21100903039;"International Symposium on Advances in Computational Heat Transfer";conference and proceedings;"25785486";"Begell House Inc.";No;No;0,128;-;9;0;56;0;16;55;0,29;0,00;0,00;0;United States;Northern America;"Begell House Inc.";"1997, 2004, 2008, 2012, 2014-2015, 2017, 2021, 2024";"Computer Science Applications; Condensed Matter Physics; Fluid Flow and Transfer Processes; Mechanical Engineering";"Chemical Engineering; Computer Science; Engineering; Physics and Astronomy" +27502;21101198490;"Proceedings - IEEE International Conference on Electronics and Nanotechnology, ELNANO";conference and proceedings;"23776935, 26933535";"Institute of Electrical and Electronics Engineers";No;No;0,128;-;14;0;257;0;111;255;0,24;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers";"2020, 2022, 2024";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Instrumentation; Surfaces, Coatings and Films";"Engineering; Materials Science; Physics and Astronomy" +27503;21101156916;"Proceedings II of the Conference Student EEICT";conference and proceedings;"27881334";"Brno University of Technology";No;No;0,128;-;2;136;485;1497;29;476;0,08;11,01;13,92;0;Czech Republic;Eastern Europe;"Brno University of Technology";"2021-2025";"Automotive Engineering; Biomedical Engineering; Electrical and Electronic Engineering; Energy (miscellaneous)";"Energy; Engineering" +27504;21101050032;"Proceedings of International Conference on Artificial Life and Robotics";conference and proceedings;"24359157";"ALife Robotics Corporation Ltd";No;No;0,128;-;7;192;597;1761;101;594;0,19;9,17;26,58;0;Japan;Asiatic Region;"ALife Robotics Corporation Ltd";"2020-2026";"Artificial Intelligence; Computer Vision and Pattern Recognition; Control and Systems Engineering; Electrical and Electronic Engineering; Hardware and Architecture; Information Systems; Modeling and Simulation";"Computer Science; Engineering; Mathematics" +27505;21100222564;"Proceedings of the Brazilian Symposium on GeoInformatics";conference and proceedings;"21794847";"National Institute for Space Research, INPE";No;No;0,128;-;8;41;126;673;8;122;0,08;16,41;30,63;0;Brazil;Latin America;"National Institute for Space Research, INPE";"2007-2008, 2010-2023, 2025";"Earth and Planetary Sciences (miscellaneous); Geography, Planning and Development; Information Systems";"Computer Science; Earth and Planetary Sciences; Social Sciences" +27506;21100943299;"America sin Nombre";journal;"19899831, 15773442";"Universidad de Alicante";Yes;Yes;0,127;Q2;4;35;78;720;12;78;0,10;20,57;45,16;0;Spain;Western Europe;"Universidad de Alicante";"2019-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27507;18400156710;"Contemporary Women's Writing";journal;"17541476, 17541484";"Oxford University Press";No;No;0,127;Q2;10;13;52;646;35;51;0,55;49,69;78,57;0;United Kingdom;Western Europe;"Oxford University Press";"2009-2025";"Literature and Literary Theory (Q2); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +27508;21101131497;"Dacoromania Litteraria";journal;"23605189";"Romanian Academy Branch Cluj-Napoca";Yes;Yes;0,127;Q2;4;16;41;1417;8;37;0,30;88,56;58,82;0;Romania;Eastern Europe;"Romanian Academy Branch Cluj-Napoca";"2019-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27509;5700169551;"Dress";journal;"03612112, 20421729";"Routledge";No;No;0,127;Q2;11;23;61;827;16;47;0,15;35,96;71,43;0;United Kingdom;Western Europe;"Routledge";"1975-1995, 2000-2008, 2010-2026";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27510;16200154749;"Eighteenth-Century Fiction";journal;"08406286";"University of Toronto Press";No;No;0,127;Q2;16;22;173;739;17;173;0,12;33,59;75,00;0;Canada;Northern America;"University of Toronto Press";"2002-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27511;28857;"Greek, Roman and Byzantine Studies";journal;"00173916";"Duke University Press";Yes;Yes;0,127;Q2;29;23;73;665;19;68;0,23;28,91;25,00;0;United States;Northern America;"Duke University Press";"1970-1972, 1976, 1979-1983, 1989, 2002-2025";"Classics (Q2); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +27512;16400154708;"Hortus Artium Mediaevalium";journal;"13307274";"Brepols Publishers";No;No;0,127;Q2;11;0;24;0;5;24;0,00;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2002-2022";"Visual Arts and Performing Arts (Q2); History (Q3)";"Arts and Humanities" +27513;21100449118;"International Journal of Islamic Architecture";journal;"20455895, 20455909";"Intellect Ltd.";No;No;0,127;Q2;10;16;54;302;12;50;0,12;18,88;42,86;0;United Kingdom;Western Europe;"Intellect Ltd.";"2012-2026";"Visual Arts and Performing Arts (Q2); Architecture (Q4); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +27514;16100154730;"Journal of Film and Video";journal;"07424671, 19346018";"University of Illinois Press";No;No;0,127;Q2;18;14;50;515;23;43;0,46;36,79;16,67;0;United States;Northern America;"University of Illinois Press";"2002-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27515;21234;"Melanges de la Casa de Velazquez";journal;"21731306, 0076230X";"Casa Velazquez";Yes;Yes;0,127;Q2;11;47;145;1801;23;140;0,16;38,32;48,94;0;Spain;Western Europe;"Casa Velazquez";"1972, 2008-2011, 2013-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Archeology (Q3); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +27516;21100815369;"Quiroga";journal;"22547037";"Universidad de Granada, Departamento de Historia del Arte";Yes;No;0,127;Q2;3;28;71;959;9;63;0,09;34,25;44,44;0;Spain;Western Europe;"Universidad de Granada, Departamento de Historia del Arte";"2016-2025";"Visual Arts and Performing Arts (Q2); Conservation (Q3); Museology (Q3)";"Arts and Humanities" +27517;21100238630;"Revista Proyecto, Progreso, Arquitectura";journal;"21716897, 21731616";"University of Sevilla, School of Architecture";Yes;Yes;0,127;Q2;6;11;60;320;6;60;0,06;29,09;42,11;0;Spain;Western Europe;"University of Sevilla, School of Architecture";"2010-2025";"Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3); History (Q3); Architecture (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +27518;21101076307;"Rocznik Przekladoznawczy";journal;"23921552, 18964362";"Nicolaus Copernicus University";Yes;Yes;0,127;Q2;2;0;37;0;2;37;0,00;0,00;0,00;0;Poland;Eastern Europe;"Nicolaus Copernicus University";"2019-2024";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27519;21100975556;"South African Theatre Journal";journal;"21637660, 10137548";"Taylor and Francis Ltd.";No;No;0,127;Q2;10;9;40;411;16;38;0,44;45,67;66,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2012, 2014-2026";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27520;21101075864;"Zhurnal Belorusskogo Gosudarstvennogo Universiteta. Istoriya";journal;"26174006, 25206338";"The Belarusian State University";Yes;Yes;0,127;Q2;2;31;95;624;3;91;0,05;20,13;48,48;0;Belarus;Eastern Europe;"The Belarusian State University";"2019-2025";"Classics (Q2); Archeology (arts and humanities) (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities" +27521;21101226103;"Acta Iadertina";journal;"18453392, 18491243";"University of Zadar";No;No;0,127;Q3;2;9;34;382;6;34;0,19;42,44;72,73;0;Croatia;Eastern Europe;"University of Zadar";"2020-2025";"Philosophy (Q3); Education (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +27522;21101354929;"Alphaville: Journal of Film and Screen Media";journal;"20094078";"University College Cork";Yes;No;0,127;Q3;4;20;65;789;17;56;0,19;39,45;40,00;0;Ireland;Western Europe;"University College Cork";"2012, 2021-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Linguistics and Language (Q3); Media Technology (Q3)";"Arts and Humanities; Engineering; Social Sciences" +27523;5700163861;"Austrian History Yearbook";book series;"15585255, 00672378";"Cambridge University Press";No;No;0,127;Q3;13;12;61;1381;24;58;0,46;115,08;30,77;0;United Kingdom;Western Europe;"Cambridge University Press";"1966, 1968, 1970, 1972-1973, 1975, 1977, 1983-1984, 1991, 1993, 1998-1999, 2001, 2003-2005, 2009, 2011-2026";"History (Q3)";"Arts and Humanities" +27524;19900193220;"Bioarchaeology of the Near East";journal;"18989403, 1899962X";"University of Warsaw";Yes;No;0,127;Q3;11;0;3;0;1;3;0,00;0,00;0,00;0;Poland;Eastern Europe;"University of Warsaw";"2009-2022";"Archeology (Q3); Archeology (arts and humanities) (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +27525;19700172901;"Cadmo";journal;"19725019, 11225165";"FrancoAngeli";No;No;0,127;Q3;7;7;46;183;5;41;0,13;26,14;71,43;0;Italy;Western Europe;"FrancoAngeli";"2005-2025";"Cultural Studies (Q3); History (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +27526;21101169890;"Choral Journal";journal;"00095028, 21632170";"American Choral Directors Association";No;No;0,127;Q3;7;53;133;618;16;51;0,05;11,66;80,95;0;United States;Northern America;"American Choral Directors Association";"2014-2025";"Music (Q3)";"Arts and Humanities" +27527;12634;"Early Science and Medicine";journal;"13837427, 15733823";"Brill Academic Publishers";No;No;0,127;Q3;31;26;66;2424;20;62;0,25;93,23;32,14;0;Netherlands;Western Europe;"Brill Academic Publishers";"1996-2025";"History (Q3); History and Philosophy of Science (Q4); Medicine (miscellaneous) (Q4); Multidisciplinary (Q4)";"Arts and Humanities; Medicine; Multidisciplinary" +27528;21100824648;"International Journal of Sino-Western Studies";journal;"22422471, 17998204";"Nordic Forum of Sino-Western Studies";Yes;No;0,127;Q3;3;14;83;416;8;81;0,05;29,71;25,00;0;Finland;Western Europe;"Nordic Forum of Sino-Western Studies";"2016-2025";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27529;17100154725;"Journal of Persianate Studies";journal;"18747094, 18747167";"Brill Academic Publishers";No;No;0,127;Q3;13;11;38;531;9;36;0,24;48,27;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2025";"Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27530;19900191625;"Journal of the Society for American Music";journal;"17521971, 17521963";"Cambridge University Press";No;No;0,127;Q3;16;7;48;462;8;48;0,17;66,00;60,00;0;United Kingdom;Western Europe;"Cambridge University Press";"2007-2025";"Music (Q3)";"Arts and Humanities" +27531;21101295942;"Jurnal Fiqh";journal;"1823089X, 22897518";"Department of Fiqh and Usul, Academy of Islamic Studies, University of Malaya";No;No;0,127;Q3;3;14;29;585;9;29;0,20;41,79;32,14;0;Malaysia;Asiatic Region;"Department of Fiqh and Usul, Academy of Islamic Studies, University of Malaya";"2021-2025";"Religious Studies (Q3)";"Arts and Humanities" +27532;21100410000;"Meta (Romania)";journal;"20673655";"Alexandru Ioan Cuza University of Iasi";Yes;Yes;0,127;Q3;9;17;80;767;11;80;0,14;45,12;30,00;0;Romania;Eastern Europe;"Alexandru Ioan Cuza University of Iasi";"2009-2025";"Philosophy (Q3)";"Arts and Humanities" +27533;21101323189;"MIDAS";journal;"21829543";"Centro Interdisciplinar de Historia Culturas e Sociedades da Universidade de Evora (CIDEHUS)";Yes;No;0,127;Q3;2;15;47;419;6;41;0,11;27,93;64,71;0;Portugal;Western Europe;"Centro Interdisciplinar de Historia Culturas e Sociedades da Universidade de Evora (CIDEHUS)";"2021-2025";"Museology (Q3)";"Arts and Humanities" +27534;5800207678;"Moderna Sprak";journal;"20003560, 00268577";"Foreningen Tidskriften Moderna sprak";Yes;Yes;0,127;Q3;11;30;77;1110;14;77;0,21;37,00;75,00;0;Sweden;Western Europe;"Foreningen Tidskriften Moderna sprak";"2002-2026";"Linguistics and Language (Q3)";"Social Sciences" +27535;21101064968;"Osmanli Bilimi Arastirmalari";journal;"24587982, 13033123";"Istanbul Universitesi";Yes;Yes;0,127;Q3;3;20;64;984;11;61;0,14;49,20;20,00;0;Turkey;Middle East;"Istanbul Universitesi";"2019-2025";"Cultural Studies (Q3); History (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities; Social Sciences" +27536;21101005534;"Palaeobulgarica";journal;"26032899, 02044021";"Cyrillo-Methodian Research Centre of BAS";No;No;0,127;Q3;5;9;89;364;9;89;0,12;40,44;63,64;0;Bulgaria;Eastern Europe;"Cyrillo-Methodian Research Centre of BAS";"2019-2025";"History (Q3)";"Arts and Humanities" +27537;23209;"Philobiblon";journal;"22478442, 12247448";"Cluj University Press";Yes;Yes;0,127;Q3;5;37;76;596;5;70;0,06;16,11;60,00;0;Romania;Eastern Europe;"Cluj University Press";"2011-2025";"Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +27538;21101079120;"Polish Libraries";journal;"23531835, 23009217";"National Library of Poland";No;No;0,127;Q3;2;14;19;658;3;19;0,16;47,00;57,89;0;Poland;Eastern Europe;"National Library of Poland";"2019-2021, 2023-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Museology (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +27539;21100464632;"Ramon Llull Journal of Applied Ethics";journal;"2229578X, 20138393";"Universitat Ramon Llull";No;No;0,127;Q3;8;8;28;332;11;28;0,35;41,50;60,00;0;Spain;Western Europe;"Universitat Ramon Llull";"2015-2019, 2021-2025";"Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27540;21101155947;"Revista Electronica Iberoamericana";journal;"19880618";"Universidad Carlos III de Madrid";Yes;Yes;0,127;Q3;2;23;75;614;16;57;0,29;26,70;38,46;0;Spain;Western Europe;"Universidad Carlos III de Madrid";"2022-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Philosophy (Q3); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +27541;19400157126;"Secuencia";journal;"23958464, 01860348";"Instituto de Investigaciones Dr. Jose Maria Luis Mora";Yes;Yes;0,127;Q3;6;30;125;1403;24;125;0,23;46,77;30,30;0;Mexico;Latin America;"Instituto de Investigaciones Dr. Jose Maria Luis Mora";"1987, 1989, 2001-2002, 2016-2025";"Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27542;21101067620;"Slavistica Vilnensis";journal;"23516895, 24246115";"Vilnius University Press";Yes;Yes;0,127;Q3;3;2;64;40;10;64;0,17;20,00;33,33;0;Lithuania;Eastern Europe;"Vilnius University Press";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +27543;17176;"Societa e Storia";journal;"03916987, 19725515";"FrancoAngeli";No;No;0,127;Q3;5;33;91;2471;6;84;0,08;74,88;57,14;0;Italy;Western Europe;"FrancoAngeli";"1978, 1983-1984, 1999, 2001-2002, 2017-2025";"History (Q3)";"Arts and Humanities" +27544;21100810656;"Studi e Saggi Linguistici";journal;"00856827, 22819142";"Edizioni ETS";No;No;0,127;Q3;7;12;27;905;7;27;0,33;75,42;78,57;0;Italy;Western Europe;"Edizioni ETS";"2016-2025";"Linguistics and Language (Q3)";"Social Sciences" +27545;21100800033;"Varia Historia";journal;"01048775, 19824343";"Universidade Federal de Minas Gerais";Yes;Yes;0,127;Q3;8;39;98;1379;11;90;0,11;35,36;33,33;0;Brazil;Latin America;"Universidade Federal de Minas Gerais";"2015-2025";"History (Q3)";"Arts and Humanities" +27546;21101058297;"Verba Theologica";journal;"26444844, 13361635";"VERBUM - Publishing House of CU";No;No;0,127;Q3;3;11;45;296;3;43;0,09;26,91;27,27;0;Slovakia;Eastern Europe;"VERBUM - Publishing House of CU";"2019-2025";"Religious Studies (Q3)";"Arts and Humanities" +27547;21000195312;"Agricultural Economics Review";journal;"11092580";"Greek Association of Agricultural Economists";No;No;0,127;Q4;17;21;22;806;9;22;0,44;38,38;41,94;0;Greece;Western Europe;"Greek Association of Agricultural Economists";"2011-2025";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +27548;21100202939;"Annales Francaises de Medecine d'Urgence";journal;"21086591, 21086524";"John Libbey";Yes;No;0,127;Q4;14;62;181;1302;24;126;0,12;21,00;34,62;0;France;Western Europe;"John Libbey";"2011-2025";"Emergency Medicine (Q4)";"Medicine" +27549;26757;"Astronomy and Geophysics";journal;"14684004, 13668781";"Oxford University Press";No;No;0,127;Q4;27;46;150;372;25;107;0,19;8,09;29,87;0;United Kingdom;Western Europe;"Oxford University Press";"1996-2026";"Astronomy and Astrophysics (Q4); Geochemistry and Petrology (Q4); Geophysics (Q4)";"Earth and Planetary Sciences; Physics and Astronomy" +27550;21101312742;"Built Environment Journal";journal;"26370395";"MARA University of Technology";No;No;0,127;Q4;4;60;74;2014;21;74;0,29;33,57;52,74;0;Malaysia;Asiatic Region;"MARA University of Technology";"2021-2026";"Architecture (Q4); Biophysics (Q4); Business, Management and Accounting (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Business, Management and Accounting; Engineering; Materials Science" +27551;12390;"Canadian Journal of Women and the Law";journal;"08328781, 19110235";"University of Toronto Press";No;No;0,127;Q4;24;4;22;348;8;22;0,50;87,00;100,00;0;Canada;Northern America;"University of Toronto Press";"1986-1987, 1989-1990, 1993-1994, 2003, 2009-2022, 2024-2025";"Gender Studies (Q4); Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +27552;21101101213;"Child's Health";journal;"23071168, 22240551";"Zaslavsky Publishing House";Yes;No;0,127;Q4;6;83;225;2606;81;225;0,41;31,40;71,56;0;Ukraine;Eastern Europe;"Zaslavsky Publishing House";"2019-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +27553;89083;"China Petroleum Processing and Petrochemical Technology";journal;"10086234";"John Wiley and Sons Inc";No;No;0,127;Q4;16;0;149;0;34;149;0,27;0,00;0,00;0;China;Asiatic Region;"John Wiley and Sons Inc";"1999-2024";"Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Mechanical Engineering (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering; Energy; Engineering" +27554;21101048279;"Chinese Journal of Anatomy and Clinics";journal;"20957041";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,127;Q4;5;130;381;3124;81;379;0,25;24,03;38,91;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2026";"Anatomy (Q4); Internal Medicine (Q4); Medicine (miscellaneous) (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)";"Medicine" +27555;21100983357;"Chinese Journal of Diabetes Mellitus";journal;"16745809";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,127;Q4;13;172;600;7137;138;600;0,19;41,49;53,42;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)";"Medicine" +27556;23598;"Chinese Journal of Experimental and Clinical Virology";journal;"10039279";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,127;Q4;15;122;342;3261;60;327;0,22;26,73;50,15;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1997-2013, 2019-2025";"Immunology (Q4); Infectious Diseases (Q4); Microbiology (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +27557;19700174922;"Chinese Journal of New Drugs";journal;"10033734";"Chinese Journal of New Drugs Co. Ltd.";No;No;0,127;Q4;15;313;1090;5257;329;1090;0,33;16,80;48,42;0;China;Asiatic Region;"Chinese Journal of New Drugs Co. Ltd.";"2008-2025";"Pharmacology (medical) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +27558;21101179114;"Clinical and Preventive Medicine";journal;"26164868";"State Institution of Science "Research and Practical Center of Preventive and Clinical Medicine" State Administration Department";Yes;Yes;0,127;Q4;5;154;299;3565;109;299;0,38;23,15;46,42;0;Ukraine;Eastern Europe;"State Institution of Science "Research and Practical Center of Preventive and Clinical Medicine" State Administration Department";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27559;21101274527;"Environment and Water Engineering";journal;"24763683";"Iranian Rainwater Catchment Systems Association";Yes;No;0,127;Q4;6;63;150;2268;49;150;0,45;36,00;30,81;0;Iran;Middle East;"Iranian Rainwater Catchment Systems Association";"2020-2026";"Environmental Engineering (Q4); Environmental Science (miscellaneous) (Q4); Water Science and Technology (Q4)";"Environmental Science" +27560;21101034122;"Espaces et Societes";journal;"00140481, 19618700";"ERES";No;No;0,127;Q4;4;0;102;0;22;96;0,22;0,00;0,00;0;France;Western Europe;"ERES";"1991, 2019-2024";"Demography (Q4); Geography, Planning and Development (Q4); Social Sciences (miscellaneous) (Q4); Urban Studies (Q4)";"Social Sciences" +27561;20707;"Estudios de Economia";journal;"07185286, 03042758";"Universidad de Chile";Yes;Yes;0,127;Q4;17;9;40;425;15;37;0,23;47,22;33,33;0;Chile;Latin America;"Universidad de Chile";"1977-1979, 1989, 2008-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +27562;110097;"Food and Drug Law Journal";journal;"1064590X";"Food and Drug Law Institute";No;No;0,127;Q4;25;3;27;613;9;26;0,19;204,33;50,00;0;United States;Northern America;"Food and Drug Law Institute";"1992-2018, 2021-2025";"Law (Q4); Medicine (miscellaneous) (Q4); Pharmacology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +27563;21100903184;"German Yearbook of International Law";book series;"03443094, 21957304";"Duncker und Humblot GmbH";No;No;0,127;Q4;7;9;113;22;12;67;0,08;2,44;57,14;0;Germany;Western Europe;"Duncker und Humblot GmbH";"2016-2017, 2019-2025";"Law (Q4)";"Social Sciences" +27564;21101158602;"Horizonte de Enfermeria";journal;"07196946, 07168861";"Escuela de Enfermeria Pontificia Universidad Catolica de Chile";No;No;0,127;Q4;3;90;184;3060;39;175;0,20;34,00;76,69;0;Chile;Latin America;"Escuela de Enfermeria Pontificia Universidad Catolica de Chile";"2019-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +27565;21101332008;"Indian Journal of Dental Sciences";journal;"09764003, 22312293";"Wolters Kluwer Medknow Publications";Yes;No;0,127;Q4;12;42;110;920;28;107;0,21;21,90;52,99;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2016-2026";"Dentistry (miscellaneous) (Q4)";"Dentistry" +27566;21101272786;"International Conference on Networking, Architecture and Storage, NAS";journal;"28353323, 2835334X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,127;Q4;1;0;32;0;5;29;0,16;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Information Systems (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences" +27567;21100391400;"International Eye Science";journal;"16725123";"International Journal of Ophthalmology (c/o Editorial Office)";Yes;No;0,127;Q4;11;239;1192;8461;209;1191;0,18;35,40;49,57;0;China;Asiatic Region;"International Journal of Ophthalmology (c/o Editorial Office)";"2012-2026";"Ophthalmology (Q4)";"Medicine" +27568;21100773816;"International Journal of Adult, Community and Professional Learning";journal;"23286318, 23286296";"Common Ground Research Networks";No;No;0,127;Q4;5;6;16;298;5;16;0,33;49,67;61,54;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Education (Q4)";"Social Sciences" +27569;21101267551;"International Law Discourse in Southeast Asia";journal;"28300297, 28299655";"Universitas Negeri Semarang";Yes;Yes;0,127;Q4;3;8;36;423;13;36;0,28;52,88;60,00;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2022-2025";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +27570;26816;"International Lawyer";journal;"21696578, 00207810";"American Bar Association";No;No;0,127;Q4;7;0;13;0;5;13;0,00;0,00;0,00;0;United States;Northern America;"American Bar Association";"1977-1978, 2017-2020, 2022";"Law (Q4)";"Social Sciences" +27571;21100792099;"International Sports Studies";journal;"14430770";"International Society for Comparative Physical Education and Sport (ISCPES)";No;No;0,127;Q4;7;18;40;786;17;34;0,39;43,67;40,43;0;Spain;Western Europe;"International Society for Comparative Physical Education and Sport (ISCPES)";"2015-2025";"Applied Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +27572;21100934918;"Iranian Journal of Nutrition Sciences and Food Technology";journal;"17357756, 22520694";"National Nutrition and Food Technology Research Institute";No;No;0,127;Q4;7;33;126;1377;37;125;0,34;41,73;45,54;0;Iran;Middle East;"National Nutrition and Food Technology Research Institute";"2019-2025";"Endocrinology, Diabetes and Metabolism (Q4); Food Science (Q4); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Medicine; Nursing" +27573;4700152877;"Journal of Agricultural and Food Information";journal;"15404722, 10496505";"Taylor and Francis Ltd.";No;No;0,127;Q4;21;1;16;189;3;9;0,11;189,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1993-1996, 2000, 2002-2004, 2006-2025";"Agronomy and Crop Science (Q4); Food Science (Q4); Information Systems and Management (Q4)";"Agricultural and Biological Sciences; Decision Sciences" +27574;21101048555;"Journal of Biostatistics and Epidemiology";journal;"23834196, 2383420X";"Tehran University of Medical Sciences";Yes;Yes;0,127;Q4;9;16;105;520;29;104;0,25;32,50;37,29;0;Iran;Middle East;"Tehran University of Medical Sciences";"2019-2025";"Epidemiology (Q4); Health Informatics (Q4); Public Health, Environmental and Occupational Health (Q4); Statistics and Probability (Q4)";"Mathematics; Medicine" +27575;21101254822;"Journal of Food Health and Bioenvironmental Science";journal;"26300311";"Research and Development Institute Suan Dusit University";No;No;0,127;Q4;3;28;72;1433;25;72;0,33;51,18;50,00;0;Thailand;Asiatic Region;"Research and Development Institute Suan Dusit University";"2020-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Food Science (Q4); Health Professions (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Environmental Science; Health Professions" +27576;21101315255;"Journal of Interventional Radiology (China)";journal;"1008794X";"Publishing House of the Journal of Interventional";No;No;0,127;Q4;7;11;153;164;13;153;0,11;14,91;28,85;0;China;Asiatic Region;"Publishing House of the Journal of Interventional";"2006-2019, 2021";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +27577;15671;"Journal of Political and Military Sociology";journal;"00472697, 26422190";"";No;No;0,127;Q4;24;0;27;0;8;27;0,32;0,00;0,00;0;United States;Northern America;"";"1996-2017, 2019-2024";"Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +27578;21100466834;"Journal of Risk Model Validation";journal;"17539587, 17539579";"Incisive Media Ltd.";No;No;0,127;Q4;11;12;45;696;21;45;0,55;58,00;37,50;0;United Kingdom;Western Europe;"Incisive Media Ltd.";"2012-2026";"Applied Mathematics (Q4); Economics and Econometrics (Q4); Finance (Q4); Modeling and Simulation (Q4)";"Economics, Econometrics and Finance; Mathematics" +27579;144648;"Journal of Tianjin Polytechnic University";journal;"1671024X";"Journal of Tianjin Polytechnic University";No;No;0,127;Q4;9;61;220;1742;72;220;0,36;28,56;37,26;0;China;Asiatic Region;"Journal of Tianjin Polytechnic University";"2005-2025";"Polymers and Plastics (Q4)";"Materials Science" +27580;19900193621;"Journal of Veterinary Research";journal;"20082525, 22516190";"Danishgah-i Tihran, danishkadah-i dampizishki";Yes;No;0,127;Q4;14;24;90;766;19;90;0,19;31,92;37,74;0;Iran;Middle East;"Danishgah-i Tihran, danishkadah-i dampizishki";"2008-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +27581;21100901471;"Lecture Notes in Bioengineering";book series;"2195271X, 21952728";"Springer International Publishing AG";No;No;0,127;Q4;18;160;584;5265;150;470;0,23;32,91;42,12;0;Germany;Western Europe;"Springer International Publishing AG";"2013, 2018-2026";"Applied Microbiology and Biotechnology (Q4); Bioengineering (Q4); Biomedical Engineering (Q4); Biotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Engineering; Immunology and Microbiology" +27582;21100838772;"Oncogematologiya";journal;"24134023, 18188346";"ABV-press Publishing House";Yes;Yes;0,127;Q4;8;54;183;1832;58;182;0,32;33,93;73,58;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2017-2025";"Hematology (Q4); Oncology (Q4)";"Medicine" +27583;21101083804;"Organ Transplantation";journal;"16747445";"Journal of Zhongshan University";No;No;0,127;Q4;10;112;271;5541;123;269;0,60;49,47;34,48;0;China;Asiatic Region;"Journal of Zhongshan University";"2019-2026";"Immunology and Allergy (Q4); Surgery (Q4); Transplantation (Q4)";"Medicine" +27584;21101100204;"Public Procurement Law Review";journal;"27542203, 09638245";"Sweet and Maxwell Ltd";No;No;0,127;Q4;2;51;160;1241;19;82;0,16;24,33;32,26;0;United Kingdom;Western Europe;"Sweet and Maxwell Ltd";"2022-2026";"Law (Q4)";"Social Sciences" +27585;21101186835;"Regional Anesthesia and Acute Pain Management";journal;"19936508, 26871394";"Eco-Vector LLC";No;No;0,127;Q4;4;31;83;1124;28;83;0,38;36,26;48,68;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2021-2025";"Anesthesiology and Pain Medicine (Q4); Emergency Medical Services (Q4); Emergency Medicine (Q4)";"Health Professions; Medicine" +27586;21101089568;"Reproductive Health Eastern Europe";journal;"22263276, 24143634";"Professionalnye Izdaniya";No;No;0,127;Q4;4;100;209;2427;21;208;0,11;24,27;68,18;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2019-2025";"Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4); Urology (Q4)";"Medicine" +27587;21101267541;"Researches in Earth Sciences";journal;"20088299, 25885898";"Shahid Beheshti University";No;No;0,127;Q4;3;45;108;1910;25;108;0,28;42,44;32,14;0;Iran;Middle East;"Shahid Beheshti University";"2020-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +27588;21101065652;"Revista del Cuerpo Medico Hospital Nacional Almanzor Aguinaga Asenjo";journal;"22255109, 22274731";"";No;No;0,127;Q4;9;74;309;1708;71;261;0,18;23,08;30,83;0;Peru;Latin America;"";"2019-2026";"Health Policy (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Social Sciences" +27589;21101150441;"Russian Family Doctor";journal;"20721668, 27132331";"Eco-Vector LLC";No;No;0,127;Q4;4;37;78;1018;23;78;0,34;27,51;76,34;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Family Practice (Q4); Geriatrics and Gerontology (Q4); Infectious Diseases (Q4); Internal Medicine (Q4)";"Medicine" +27590;21100201914;"Schweizerische Zeitschrift fur Forstwesen";journal;"22351469, 00367818";"Swiss Forestry Society";No;No;0,127;Q4;14;0;155;0;22;138;0,14;0,00;0,00;0;Switzerland;Western Europe;"Swiss Forestry Society";"1978-1979, 1982, 1984-1987, 1989, 2011-2024";"Forestry (Q4)";"Agricultural and Biological Sciences" +27591;19700187707;"Sensors and Transducers";journal;"17265479, 23068515";"International Frequency Sensor Association (IFSA)";Yes;No;0,127;Q4;18;38;32;1039;9;32;0,28;27,34;20,83;0;Spain;Western Europe;"International Frequency Sensor Association (IFSA)";"2011-2014, 2024-2025";"Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Engineering" +27592;21100850734;"Siberian Journal of Oncology";journal;"23123168, 18144861";"Tomsk National Research Medical Center of the Russian Academy of Sciences";Yes;Yes;0,127;Q4;10;110;321;3376;108;318;0,35;30,69;48,71;0;Russian Federation;Eastern Europe;"Tomsk National Research Medical Center of the Russian Academy of Sciences";"2017-2025";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27593;21100981177;"Silva Gabreta";journal;"12117420";"Sprava Narodniho parku sumava";No;No;0,127;Q4;5;8;23;296;6;23;0,24;37,00;40,00;0;Czech Republic;Eastern Europe;"Sprava Narodniho parku sumava";"2019-2024";"Earth-Surface Processes (Q4); Forestry (Q4); Geography, Planning and Development (Q4); Geology (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science; Social Sciences" +27594;22868;"THE JOURNAL of THE JAPANESE FORESTRY SOCIETY";journal;"0021485X";"Nihon Ringakkai";No;No;0,127;Q4;18;17;130;530;32;130;0,24;31,18;32,84;0;Japan;Asiatic Region;"Nihon Ringakkai";"1934-1944, 1948-2026";"Forestry (Q4)";"Agricultural and Biological Sciences" +27595;19900191877;"Tydskrif vir die Suid-Afrikaanse Reg";journal;"19962207, 02577747";"Juta and Company Ltd";No;No;0,127;Q4;6;51;125;2936;8;124;0,05;57,57;28,57;0;South Africa;Africa;"Juta and Company Ltd";"2009-2025";"Law (Q4)";"Social Sciences" +27596;20236;"Ugeskrift for Laeger";journal;"16036824, 00415782";"Almindelige Danske Laegeforening";No;No;0,127;Q4;31;399;2145;4722;227;2116;0,09;11,83;50,35;0;Denmark;Western Europe;"Almindelige Danske Laegeforening";"1945, 1947-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27597;87708;"University of Toronto Medical Journal";journal;"19135440, 08332207";"University of Toronto";Yes;No;0,127;Q4;8;15;94;309;16;51;0,21;20,60;26,67;0;Canada;Northern America;"University of Toronto";"1945-1950, 1960-1961, 1972-1978, 2011-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27598;21100202122;"Computer-Supported Collaborative Learning Conference, CSCL";conference and proceedings;"15734552";"International Society of the Learning Sciences (ISLS)";No;No;0,127;-;26;0;125;0;19;123;0,00;0,00;0,00;0;United States;Northern America;"International Society of the Learning Sciences (ISLS)";"2007-2008, 2013, 2015, 2017, 2019-2022";"Education; Human-Computer Interaction";"Computer Science; Social Sciences" +27599;21101027431;"International Conference on Efficient Building Design: Material and HVAC Equipment Technologies";conference and proceedings;"25725688";"American Society of Heating Refrigerating and Air-Conditioning Engineers";No;No;0,127;-;3;0;48;0;8;46;0,05;0,00;0,00;0;United States;Northern America;"American Society of Heating Refrigerating and Air-Conditioning Engineers";"2016, 2018, 2020, 2022, 2024";"Architecture; Building and Construction";"Engineering" +27600;21101023676;"International Conference on Quality Engineering and Management";conference and proceedings;"21843481";"Universidade do Minho";No;No;0,127;-;5;0;120;0;36;116;0,18;0,00;0,00;0;Portugal;Western Europe;"Universidade do Minho";"2014, 2016, 2018, 2020, 2022, 2024";"Management of Technology and Innovation; Management Science and Operations Research; Safety, Risk, Reliability and Quality; Strategy and Management";"Business, Management and Accounting; Decision Sciences; Engineering" +27601;21101029720;"NANOCON Conference Proceedings - International Conference on Nanomaterials";conference and proceedings;"2694930X";"TANGER Ltd.";No;No;0,127;-;5;49;114;718;26;112;0,23;14,65;40,59;0;Czech Republic;Eastern Europe;"TANGER Ltd.";"2020-2021, 2023-2025";"Biotechnology; Ceramics and Composites; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Biochemistry, Genetics and Molecular Biology; Engineering; Materials Science" +27602;90640;"Proceedings of the IEEE International Conference on Properties and Applications of Dielectric Materials";conference and proceedings;"-";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,127;-;29;0;111;0;34;109;0,31;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1994, 1997, 2000, 2003, 2006-2007, 2009, 2012, 2015, 2018, 2021, 2024";"Condensed Matter Physics; Electronic, Optical and Magnetic Materials; Materials Chemistry";"Materials Science; Physics and Astronomy" +27603;21101156107;"Proceedings of the International Conference on Statistics";conference and proceedings;"25627767";"Avestia Publishing";No;No;0,127;-;4;42;90;362;16;87;0,24;8,62;46,91;0;Canada;Northern America;"Avestia Publishing";"2019-2025";"Applied Mathematics; Computational Mathematics; Statistics and Probability; Theoretical Computer Science";"Mathematics" +27604;21000195302;"Progress in Electromagnetics Research Symposium";conference and proceedings;"19317360, 15599450";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,127;-;26;0;212;0;55;211;0,00;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2006-2015, 2017-2022";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Engineering; Materials Science" +27605;21100867683;"Sustainable Construction Materials and Technologies";conference and proceedings;"25153048, 25153056";"Coventry University";No;No;0,127;-;13;0;86;0;10;85;0,12;0,00;0,00;0;United Kingdom;Western Europe;"Coventry University";"2013, 2016, 2019, 2024";"Building and Construction; Civil and Structural Engineering; Materials Science (miscellaneous); Mechanics of Materials";"Engineering; Materials Science" +27606;21100201513;"Arqueologia de la Arquitectura";journal;"19895313, 16952731";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,126;Q2;12;5;34;253;11;34;0,16;50,60;33,33;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2011-2024";"Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Conservation (Q3); Architecture (Q4)";"Arts and Humanities; Engineering; Social Sciences" +27607;21100833894;"Baltic Journal of Art History";journal;"23465581, 17368812";"University of Tartu Press";Yes;No;0,126;Q2;4;13;31;665;3;29;0,08;51,15;57,89;0;Estonia;Eastern Europe;"University of Tartu Press";"2017-2025";"Visual Arts and Performing Arts (Q2); History (Q3)";"Arts and Humanities" +27608;21101054417;"Catedral Tomada";journal;"21690847";"University Library System, University of Pittsburgh";Yes;Yes;0,126;Q2;4;24;86;772;11;86;0,10;32,17;35,48;0;United States;Northern America;"University Library System, University of Pittsburgh";"2019-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27609;21100239260;"Graeco-Latina Brunensia";journal;"23364424, 18037402";"Masaryk University";Yes;Yes;0,126;Q2;7;13;55;756;12;55;0,09;58,15;28,57;0;Czech Republic;Eastern Europe;"Masaryk University";"2012-2025";"Classics (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27610;21100898523;"Images (Poland)";journal;"1731450X";"Uniwersytet im. Adama Mickiewicza w Poznaniu";Yes;Yes;0,126;Q2;3;26;134;838;16;129;0,12;32,23;55,56;0;Poland;Eastern Europe;"Uniwersytet im. Adama Mickiewicza w Poznaniu";"2018-2025";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +27611;21100200629;"Journal of Screenwriting";journal;"17597145, 17597137";"Intellect Ltd.";No;No;0,126;Q2;14;24;60;904;17;52;0,34;37,67;29,63;0;United Kingdom;Western Europe;"Intellect Ltd.";"2010-2011, 2013-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27612;16300154779;"Lion and the Unicorn";journal;"01472593, 10806563";"Johns Hopkins University Press";Yes;No;0,126;Q2;20;0;52;0;6;45;0,03;0,00;0,00;0;United States;Northern America;"Johns Hopkins University Press";"2002-2024";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27613;21101196044;"Mashriq and Mahjar";journal;"21694435";"North Carolina State University";Yes;Yes;0,126;Q2;5;11;38;658;13;34;0,32;59,82;72,73;0;United States;Northern America;"North Carolina State University";"2019-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3); History (Q3)";"Arts and Humanities" +27614;21101032724;"Modulo Arquitectura CUC";journal;"23897732, 01246542";"Universidad de la Costa";No;No;0,126;Q2;4;16;48;742;13;48;0,24;46,38;41,38;0;Colombia;Latin America;"Universidad de la Costa";"2019-2025";"Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3); Architecture (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +27615;21000196009;"Pamietnik Literacki";journal;"27195376, 00310514";"Institute of Literary Research Polish Academy of Sciences";No;No;0,126;Q2;5;53;191;590;13;178;0,06;11,13;66,00;0;Poland;Eastern Europe;"Institute of Literary Research Polish Academy of Sciences";"2010-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27616;21101277828;"Paykareh";journal;"23224622, 25886789";"Shahid Chamran University of Ahvaz";Yes;No;0,126;Q2;2;18;74;497;6;74;0,07;27,61;53,85;0;Iran;Middle East;"Shahid Chamran University of Ahvaz";"2020-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +27617;5800207759;"Revista de Filologia Espanola";journal;"02109174, 19888538";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,126;Q2;11;4;64;169;15;63;0,18;42,25;40,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1996-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27618;16300154792;"Revista de Literatura";journal;"19884192, 0034849X";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,126;Q2;10;21;85;933;9;85;0,10;44,43;30,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1996-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27619;11600153462;"Shakespeare";journal;"17450918, 17450926";"Taylor and Francis Ltd.";No;No;0,126;Q2;15;86;127;2753;26;119;0,23;32,01;52,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2005-2026";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27620;16000154756;"Twentieth Century Literature";journal;"0041462X";"Hofstra University Press";No;No;0,126;Q2;21;15;58;899;14;58;0,17;59,93;50,00;0;United States;Northern America;"Hofstra University Press";"2002-2014, 2016-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27621;19700182279;"Agypten und Levante";journal;"18135145, 10155104";"Verlag der Oesterreichischen Akademie der Wissenschaften";No;No;0,126;Q3;25;18;37;1735;12;35;0,21;96,39;50,00;0;Austria;Western Europe;"Verlag der Oesterreichischen Akademie der Wissenschaften";"2003-2012, 2014-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +27622;21101363748;"Archeion";journal;"00666041, 26581264";"The State Archives Head Office";Yes;No;0,126;Q3;3;11;40;482;10;32;0,35;43,82;73,33;0;Poland;Eastern Europe;"The State Archives Head Office";"2021-2025";"History (Q3); Library and Information Sciences (Q4); Public Administration (Q4)";"Arts and Humanities; Social Sciences" +27623;21100923520;"Avances del Cesor";journal;"15143899, 24226580";"Investigaciones-Sociohistoricas Regionales";Yes;Yes;0,126;Q3;5;7;52;239;4;51;0,09;34,14;25,00;0;Argentina;Latin America;"Investigaciones-Sociohistoricas Regionales";"2019-2025";"History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27624;21100218915;"Biblical Archaeology Review";journal;"00989444";"Biblical Archaeology Society";No;No;0,126;Q3;8;0;171;0;8;71;0,08;0,00;0,00;0;United States;Northern America;"Biblical Archaeology Society";"2011-2024";"Archeology (Q3); Archeology (arts and humanities) (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27625;21100944123;"Comma";journal;"20493355, 16801865";"Liverpool University Press";No;No;0,126;Q3;3;0;82;0;13;76;0,05;0,00;0,00;0;United Kingdom;Western Europe;"Liverpool University Press";"2019-2023";"Conservation (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +27626;21101312746;"Eastern European Holocaust Studies";journal;"27499030";"Walter de Gruyter GmbH";Yes;No;0,126;Q3;3;33;71;1016;21;60;0,30;30,79;78,26;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2023-2026";"History (Q3)";"Arts and Humanities" +27627;21101125543;"European Journal of Creative Practices in Cities and Landscapes";journal;"26120496";"Department of Architecture, University of Bologna";Yes;Yes;0,126;Q3;8;0;60;0;13;55;0,09;0,00;0,00;0;Italy;Western Europe;"Department of Architecture, University of Bologna";"2018-2024";"Cultural Studies (Q3); Architecture (Q4); Social Sciences (miscellaneous) (Q4); Urban Studies (Q4)";"Engineering; Social Sciences" +27628;21100942897;"Historia, Instituciones, Documentos";journal;"02107716, 22538291";"Universidad de Sevilla";Yes;Yes;0,126;Q3;4;0;49;0;6;48;0,06;0,00;0,00;0;Spain;Western Europe;"Universidad de Sevilla";"2019-2024";"Cultural Studies (Q3); History (Q3); Law (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27629;21101176678;"Hitit Theology Journal";journal;"27576949";"Hitit University";Yes;Yes;0,126;Q3;4;38;149;2665;13;148;0,13;70,13;36,59;0;Turkey;Middle East;"Hitit University";"2021-2025";"Cultural Studies (Q3); Religious Studies (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +27630;21100258625;"International Journal of Diverse Identities";journal;"23277866, 23278560";"Common Ground Research Networks";No;No;0,126;Q3;3;11;15;437;5;15;0,40;39,73;50,00;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Cultural Studies (Q3); Anthropology (Q4); Gender Studies (Q4); Sociology and Political Science (Q4)";"Social Sciences" +27631;56921;"International Journal of Speech, Language and the Law";journal;"17488885, 17488893";"Equinox Publishing Ltd";No;No;0,126;Q3;37;5;32;309;13;29;0,35;61,80;44,44;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"1999-2025";"Linguistics and Language (Q3); Law (Q4)";"Social Sciences" +27632;5700181457;"International Review of the Aesthetics and Sociology of Music";journal;"03515796";"Hrvatsko Muzikolosko Drustvo";No;No;0,126;Q3;9;7;50;414;16;50;0,31;59,14;37,50;0;Croatia;Eastern Europe;"Hrvatsko Muzikolosko Drustvo";"2009-2016, 2018-2025";"Music (Q3)";"Arts and Humanities" +27633;22763;"Journal of the American Oriental Society";journal;"00030279";"Lockwood Press";No;No;0,126;Q3;26;30;297;1905;32;297;0,11;63,50;34,62;0;United States;Northern America;"Lockwood Press";"1971, 1973, 1979, 1982, 1986, 1988, 1994, 1998, 2002-2008, 2010-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +27634;23473;"Music and Letters";journal;"14774631, 00274224";"Oxford University Press";No;No;0,126;Q3;21;19;57;2049;14;56;0,11;107,84;42,86;0;United Kingdom;Western Europe;"Oxford University Press";"1920-1987, 1989-2025";"Music (Q3)";"Arts and Humanities" +27635;4700152746;"Music Reference Services Quarterly";journal;"10588167, 15409503";"Routledge";No;No;0,126;Q3;11;15;35;172;15;21;0,52;11,47;75,00;0;United States;Northern America;"Routledge";"1992-1998, 2001-2002, 2004-2026";"Music (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +27636;5700183838;"Muttersprache";journal;"0027514X";"Gesellschaft für deutsche Sprache e.V.";No;No;0,126;Q3;7;16;76;676;11;74;0,20;42,25;31,25;0;Germany;Western Europe;"Gesellschaft für deutsche Sprache e.V.";"2002-2025";"Linguistics and Language (Q3)";"Social Sciences" +27637;21100201071;"Nietzsche-Studien";journal;"16130790, 03421422";"Walter de Gruyter GmbH";No;No;0,126;Q3;16;4;61;172;9;56;0,10;43,00;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1973-1980, 1982-2026";"Philosophy (Q3)";"Arts and Humanities" +27638;21101347026;"Politicas de la Memoria";journal;"16684885, 26837234";"Centro de Documentacian e Investigacian de la Cultura de Izquierdas";Yes;No;0,126;Q3;2;35;80;546;6;61;0,08;15,60;34,78;0;Argentina;Latin America;"Centro de Documentacian e Investigacian de la Cultura de Izquierdas";"2021-2025";"Cultural Studies (Q3); History (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities; Social Sciences" +27639;21100983134;"Przeglad Nauk Historycznych";journal;"24507660, 1644857X";"Lodz University";Yes;Yes;0,126;Q3;4;15;77;734;12;77;0,15;48,93;20,00;0;Poland;Eastern Europe;"Lodz University";"2016-2025";"History (Q3)";"Arts and Humanities" +27640;21100383406;"Reflexe";journal;"08626901, 25337637";"Oikoymenh";Yes;Yes;0,126;Q3;3;9;76;470;6;63;0,11;52,22;22,22;0;Czech Republic;Eastern Europe;"Oikoymenh";"2014-2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +27641;21100214706;"Review of Middle East Studies";journal;"23293225, 21513481";"Cambridge University Press";No;No;0,126;Q3;13;5;55;182;11;50;0,38;36,40;50,00;0;United States;Northern America;"Cambridge University Press";"1976, 2007-2025";"Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27642;21101321964;"Schutzian Research";journal;"22481907, 20670621";"Zeta Books";No;No;0,126;Q3;4;10;27;385;4;18;0,16;38,50;22,22;0;Romania;Eastern Europe;"Zeta Books";"2019-2025";"Philosophy (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +27643;21100205925;"Studies in Logic, Grammar and Rhetoric";journal;"0860150X";"University of Bialystok";Yes;Yes;0,126;Q3;18;0;64;0;15;64;0,22;0,00;0,00;0;Poland;Eastern Europe;"University of Bialystok";"2011-2023";"Philosophy (Q3)";"Arts and Humanities" +27644;21101287173;"Translation Studies: Theory and Practice";journal;"27382699, 27382826";"Yerevan State University Publishing House";Yes;No;0,126;Q3;3;11;80;333;9;80;0,10;30,27;70,59;0;Armenia;Eastern Europe;"Yerevan State University Publishing House";"2021-2025";"Linguistics and Language (Q3)";"Social Sciences" +27645;21100202142;"Usuteaduslik Ajakiri";journal;"14066564";"Akadeemiline Teoloogia Selts";No;No;0,126;Q3;3;4;36;321;5;32;0,21;80,25;20,00;0;Estonia;Eastern Europe;"Akadeemiline Teoloogia Selts";"2011-2025";"Religious Studies (Q3)";"Arts and Humanities" +27646;21100778081;"Veritas";journal;"07189273, 07174675";"Pontificio Seminario Mayor San Rafael";Yes;No;0,126;Q3;7;4;69;232;18;67;0,26;58,00;40,00;0;Chile;Latin America;"Pontificio Seminario Mayor San Rafael";"2016-2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +27647;27488;"Abhandlungen aus dem Mathematischen Seminar der Universitat Hamburg";journal;"18658784, 00255858";"Springer Science and Business Media Deutschland GmbH";No;No;0,126;Q4;22;8;32;189;7;32;0,23;23,63;28,57;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1922-1925, 1927-1929, 1931, 1933-1935, 1937, 1939, 1941, 1943, 1949, 1951-1952, 1954-1955, 1957-2006, 2008-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +27648;21100255102;"Acta Geologica Slovaca";journal;"13380044, 13385674";"Comenius University in Bratislava";Yes;No;0,126;Q4;11;8;31;229;11;31;0,25;28,63;22,22;0;Slovakia;Eastern Europe;"Comenius University in Bratislava";"2013-2025";"Geochemistry and Petrology (Q4); Geology (Q4); Geophysics (Q4); Geotechnical Engineering and Engineering Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +27649;21101284801;"Acta Neurologica Colombiana";journal;"24224022";"Colombian Association of Neurology";Yes;No;0,126;Q4;3;48;114;1495;39;90;0,26;31,15;46,94;0;Colombia;Latin America;"Colombian Association of Neurology";"2022-2026";"Neurology (clinical) (Q4)";"Medicine" +27650;33502;"Acupuncture and Electro-Therapeutics Research";journal;"03601293, 21679010";"SAGE Publications Ltd";No;No;0,126;Q4;29;0;49;0;15;49;0,14;0,00;0,00;0;United States;Northern America;"SAGE Publications Ltd";"1976-2024";"Anesthesiology and Pain Medicine (Q4); Complementary and Alternative Medicine (Q4); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience" +27651;19132;"Aktuelle Rheumatologie";journal;"14389940, 0341051X";"Georg Thieme Verlag";No;No;0,126;Q4;14;116;408;836;24;164;0,04;7,21;38,81;0;Germany;Western Europe;"Georg Thieme Verlag";"1978-2026";"Rheumatology (Q4)";"Medicine" +27652;27568;"Archives of Hellenic Medicine";journal;"11053992";"BETA Medical Publishers Ltd";Yes;No;0,126;Q4;14;123;356;4069;54;299;0,17;33,08;47,64;0;Greece;Western Europe;"BETA Medical Publishers Ltd";"1997-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27653;19700182317;"Arquiteturarevista";journal;"18085741";"Universidade do Vale do Rio dos Sinos";No;Yes;0,126;Q4;7;1;25;29;5;25;0,08;29,00;0,00;0;Brazil;Latin America;"Universidade do Vale do Rio dos Sinos";"2010-2024";"Architecture (Q4)";"Engineering" +27654;24084;"Chemistry Bulletin / Huaxue Tongbao";journal;"04413776";"";No;No;0,126;Q4;15;129;366;6755;125;366;0,37;52,36;43,05;0;China;Asiatic Region;"";"1996-2014, 2016, 2022-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +27655;21100241762;"Chiropractic Journal of Australia";journal;"22008012, 10360913";"Chiropractors' Association of Australia";No;No;0,126;Q4;6;0;22;0;6;21;0,38;0,00;0,00;0;Australia;Pacific Region;"Chiropractors' Association of Australia";"2010-2013, 2016-2018, 2021-2024";"Complementary and Alternative Medicine (Q4)";"Medicine" +27656;21100828026;"Comunicacao Midia e Consumo";journal;"19837070, 18064981";"Superior School of Advertising and Marketing";Yes;Yes;0,126;Q4;4;19;77;662;15;76;0,21;34,84;44,83;0;Brazil;Latin America;"Superior School of Advertising and Marketing";"2017-2025";"Communication (Q4)";"Social Sciences" +27657;87861;"Critical Care and Shock";journal;"14107767";"The Indonesian Foundation of Critical Care Medicine";No;No;0,126;Q4;13;34;102;640;15;95;0,11;18,82;25,64;0;Indonesia;Asiatic Region;"The Indonesian Foundation of Critical Care Medicine";"2002-2026";"Critical Care and Intensive Care Medicine (Q4)";"Medicine" +27658;21101260625;"Gedragstherapie: Tijdschrift voor Gedragstherapie en Cognitieve Therapie";journal;"2468953X, 01677454";"Boom Uitgevers";No;No;0,126;Q4;2;15;81;439;4;61;0,05;29,27;58,82;0;Netherlands;Western Europe;"Boom Uitgevers";"2020-2025";"Clinical Psychology (Q4); Developmental and Educational Psychology (Q4); Experimental and Cognitive Psychology (Q4); Psychology (miscellaneous) (Q4)";"Psychology" +27659;21100197167;"Govaresh";journal;"15607186, 2008756X";"Iranian Association of Gastroenterology and Hepatology";Yes;No;0,126;Q4;10;21;93;629;15;90;0,17;29,95;44,32;0;Iran;Middle East;"Iranian Association of Gastroenterology and Hepatology";"2011-2025";"Gastroenterology (Q4); Hepatology (Q4)";"Medicine" +27660;19900191606;"Icelandic Agricultural Sciences";journal;"1670567X";"Agricultural University of Iceland";Yes;No;0,126;Q4;14;0;17;0;5;17;0,27;0,00;0,00;0;Iceland;Western Europe;"Agricultural University of Iceland";"2010-2024";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +27661;21100815552;"Ideology and Politics Journal";journal;"22276068";"Foundation for Good Politics";Yes;Yes;0,126;Q4;6;21;51;1091;15;51;0,33;51,95;38,89;0;Italy;Western Europe;"Foundation for Good Politics";"2016-2025";"Sociology and Political Science (Q4)";"Social Sciences" +27662;21101278617;"Infectious Diseases and Tropical Medicine";journal;"23794054";"Verduci International";Yes;Yes;0,126;Q4;4;17;81;484;18;79;0,20;28,47;62,16;0;United States;Northern America;"Verduci International";"2021-2026";"Infectious Diseases (Q4); Parasitology (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +27663;95009;"International Journal of Anthropology";journal;"18243096, 03939383";"Angelo Pontecorboli Editore";No;No;0,126;Q4;8;9;46;311;6;46;0,12;34,56;44,44;0;Italy;Western Europe;"Angelo Pontecorboli Editore";"1986-2006, 2019, 2021-2025";"Anthropology (Q4)";"Social Sciences" +27664;21101112619;"International Journal of Legal Information";journal;"07311265, 23314117";"Cambridge University Press";No;No;0,126;Q4;4;21;52;1337;17;44;0,38;63,67;37,93;0;United Kingdom;Western Europe;"Cambridge University Press";"1995, 1999, 2008, 2010-2012, 2014-2025";"Law (Q4); Library and Information Sciences (Q4)";"Social Sciences" +27665;19600156908;"International Journal of Nano and Biomaterials";journal;"17528941, 17528933";"Inderscience Publishers";No;No;0,126;Q4;14;8;14;648;8;14;0,57;81,00;36,84;0;United Kingdom;Western Europe;"Inderscience Publishers";"2007-2012, 2014-2021, 2023-2025";"Atomic and Molecular Physics, and Optics (Q4); Biomaterials (Q4); Biomedical Engineering (Q4); Nanoscience and Nanotechnology (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Engineering; Materials Science; Physics and Astronomy" +27666;21101317655;"Iraqi Journal of Hematology";journal;"20728069, 25432702";"Wolters Kluwer Medknow Publications";Yes;No;0,126;Q4;4;9;130;222;43;126;0,30;24,67;63,16;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2021-2025";"Hematology (Q4)";"Medicine" +27667;78698;"Japanese Journal of Clinical Pharmacology and Therapeutics";journal;"18828272, 03881601";"Japanese Society of Clinical Pharmacology and Therapeutics";No;No;0,126;Q4;10;22;111;394;8;109;0,09;17,91;34,46;0;Japan;Asiatic Region;"Japanese Society of Clinical Pharmacology and Therapeutics";"1970-2025";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +27668;21100899600;"Journal of Automata, Languages and Combinatorics";journal;"25673785, 1430189X";"Institut fur Informatik, Justus-Liebig-Universitat Giessen";No;No;0,126;Q4;8;10;30;246;8;27;0,29;24,60;15,79;0;Germany;Western Europe;"Institut fur Informatik, Justus-Liebig-Universitat Giessen";"2001, 2018-2025";"Computational Theory and Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)";"Computer Science; Mathematics" +27669;21101236711;"Journal of Fudan University (Natural Science)";journal;"04277104";"Editorial Department of Jounral of Fudan University (Natural Science)";No;No;0,126;Q4;8;46;217;1228;72;217;0,36;26,70;45,63;0;China;Asiatic Region;"Editorial Department of Jounral of Fudan University (Natural Science)";"2020-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Ecology (Q4); Environmental Chemistry (Q4); Nature and Landscape Conservation (Q4); Water Science and Technology (Q4)";"Biochemistry, Genetics and Molecular Biology; Environmental Science" +27670;21101141433;"Journal of Health Policy and Outcomes Research";journal;"22991247, 2543604X";"Pro Medicina Foundation";Yes;Yes;0,126;Q4;3;9;36;373;13;36;0,46;41,44;48,78;0;Poland;Eastern Europe;"Pro Medicina Foundation";"2019-2025";"Health Policy (Q4); Pharmacology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4); Reviews and References (medical) (Q4)";"Medicine" +27671;21101329147;"Journal of Orthopedic and Spine Trauma";journal;"25382330, 25384600";"Tehran University of Medical Sciences";Yes;No;0,126;Q4;3;43;134;953;20;121;0,13;22,16;14,79;0;Iran;Middle East;"Tehran University of Medical Sciences";"2022-2025";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Surgery (Q4)";"Health Professions; Medicine" +27672;21100994463;"Korean Journal of Otorhinolaryngology-Head and Neck Surgery";journal;"20926529";"Korean Society of Otolaryngology";No;No;0,126;Q4;5;72;358;1574;44;355;0,12;21,86;28,19;0;South Korea;Asiatic Region;"Korean Society of Otolaryngology";"2019-2026";"Otorhinolaryngology (Q4); Surgery (Q4)";"Medicine" +27673;86787;"Malayan Nature Journal";journal;"00251291";"Malaysian Nature Society";No;No;0,126;Q4;12;1;98;6;27;96;0,21;6,00;0,00;0;Malaysia;Asiatic Region;"Malaysian Nature Society";"1977, 1982-1984, 2008-2015, 2017-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +27674;21101151818;"Medicina y Laboratorio";journal;"25007106, 01232576";"Universidad de Antioquia";Yes;Yes;0,126;Q4;4;0;62;0;16;50;0,28;0,00;0,00;0;Colombia;Latin America;"Universidad de Antioquia";"2020-2023";"Education (Q4); Medical Laboratory Technology (Q4); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine; Social Sciences" +27675;21101041550;"New Zealand Journal of Mathematics";journal;"11794984";"New Zealand Mathematical Society and Department of Mathematics, University of Auckland";Yes;Yes;0,126;Q4;6;7;22;139;7;22;0,47;19,86;15,38;0;New Zealand;Pacific Region;"New Zealand Mathematical Society and Department of Mathematics, University of Auckland";"2019-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4)";"Mathematics" +27676;21101163014;"Nigerian Journal of Basic and Clinical Sciences";journal;"24889288, 03318540";"Wolters Kluwer Medknow Publications";No;No;0,126;Q4;11;0;121;0;37;121;0,26;0,00;0,00;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2012-2024";"Health Policy (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +27677;21100790705;"Onkourologiya";journal;"19961812, 17269776";"ABV-press Publishing House";Yes;No;0,126;Q4;7;56;204;1614;51;197;0,27;28,82;38,20;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2005-2008, 2016-2025";"Nephrology (Q4); Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4); Urology (Q4)";"Medicine" +27678;21101064803;"Pakistan Armed Forces Medical Journal";journal;"24118842, 00309648";"Army Medical College";Yes;No;0,126;Q4;10;513;1761;10307;269;1735;0,13;20,09;41,18;0;Pakistan;Asiatic Region;"Army Medical College";"2019-2026";"Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine" +27679;21101260459;"Philippine Review of Economics";journal;"29848156, 16551516";"";No;No;0,126;Q4;4;12;44;322;14;39;0,39;26,83;50,00;0;Philippines;Asiatic Region;"";"2020-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +27680;130170;"Phytotherapie";journal;"17652847, 16248597";"John Libbey";No;No;0,126;Q4;28;35;133;1149;38;114;0,23;32,83;56,67;0;France;Western Europe;"John Libbey";"2005-2023";"Complementary and Alternative Medicine (Q4); Pharmacology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +27681;21101292642;"Plant Protection News";journal;"17271320, 23086459";"All-Russian Institute of Plant Protection";Yes;No;0,126;Q4;4;31;45;1623;14;45;0,19;52,35;58,82;0;Russian Federation;Eastern Europe;"All-Russian Institute of Plant Protection";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +27682;19700175274;"Pratique Neurologique - FMC";journal;"18787762, 18787770";"Elsevier Masson s.r.l.";No;No;0,126;Q4;4;42;132;1008;11;114;0,07;24,00;49,32;0;France;Western Europe;"Elsevier Masson s.r.l.";"2010-2026";"Neurology (clinical) (Q4)";"Medicine" +27683;8500153130;"Revista Espanola de Cardiologia Suplementos";journal;"15792250, 11313587";"Ediciones Doyma, S.L.";No;No;0,126;Q4;14;0;20;0;8;20;0,50;0,00;0,00;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2004-2017, 2019-2023";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +27684;21101150073;"Revista Peruana de Ginecologia y Obstetricia";journal;"23045124, 23045132";"Peruvian Society of Obstetrics and Gynecology";No;No;0,126;Q4;7;30;189;716;30;173;0,17;23,87;38,60;0;Peru;Latin America;"Peruvian Society of Obstetrics and Gynecology";"2017-2025";"Obstetrics and Gynecology (Q4)";"Medicine" +27685;19700201642;"Rheumatology (Bulgaria)";journal;"13100505, 2738831X";"";No;No;0,126;Q4;34;8;97;317;15;96;0,16;39,63;62,50;0;Bulgaria;Eastern Europe;"";"1996-2025";"Rheumatology (Q4)";"Medicine" +27686;21101104845;"Romanian Journal of Rheumatology";journal;"18430791, 20696086";"Amaltea Medical Publishing House";Yes;No;0,126;Q4;3;30;104;674;20;102;0,18;22,47;51,19;0;Romania;Eastern Europe;"Amaltea Medical Publishing House";"2019-2025";"Rheumatology (Q4)";"Medicine" +27687;21101169013;"Russian Journal of Pediatric Surgery, Anesthesia and Intensive Care";journal;"25876554, 22194061";"Eco-Vector LLC";No;No;0,126;Q4;5;49;157;1402;32;141;0,25;28,61;36,45;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Anesthesiology and Pain Medicine (Q4); Emergency Medicine (Q4); Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)";"Medicine" +27688;21101340496;"Russian Ophthalmology of Children";journal;"23076658, 30343070";"Ophthalmology Publishing house";No;No;0,126;Q4;3;27;86;570;9;85;0,15;21,11;68,00;0;Russian Federation;Eastern Europe;"Ophthalmology Publishing house";"2021-2025";"Ophthalmology (Q4)";"Medicine" +27689;12100156741;"Science of Tsunami Hazards";journal;"87556839";"Tsunami Society";Yes;No;0,126;Q4;19;0;38;0;14;38;0,31;0,00;0,00;0;United States;Northern America;"Tsunami Society";"2007-2023";"Geology (Q4); Oceanography (Q4)";"Earth and Planetary Sciences" +27690;21100430595;"Studies in Space Law";book series;"18717659";"Brill Academic Publishers";No;No;0,126;Q4;7;4;28;2084;9;4;0,32;521,00;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2009, 2011, 2013, 2015-2016, 2018-2021, 2023-2025";"Law (Q4)";"Social Sciences" +27691;21101292925;"Tanzania Veterinary Journal";journal;"08561451, 2714206X";"Tanzania Veterinary Association";No;No;0,126;Q4;2;14;29;525;7;29;0,27;37,50;32,00;0;Tanzania;Africa;"Tanzania Veterinary Association";"2021-2025";"Equine (Q4); Food Animals (Q4); Small Animals (Q4); Veterinary (miscellaneous) (Q4)";"Veterinary" +27692;21101156966;"Tuberculosis, Lung Diseases, HIV Infection";journal;"22205071, 25221094";"";No;No;0,126;Q4;3;57;108;1406;24;108;0,22;24,67;63,39;0;Ukraine;Eastern Europe;"";"2023-2025";"Infectious Diseases (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +27693;21101039108;"Uspehi Molekularnoj Onkologii";journal;"2313805X, 24133787";"ABV-press Publishing House";Yes;Yes;0,126;Q4;4;20;118;889;31;118;0,27;44,45;63,33;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2019-2025";"Biochemistry (medical) (Q4); Cancer Research (Q4); Genetics (clinical) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +27694;21000195015;"World Journal of Laparoscopic Surgery";journal;"09751955, 09745092";"Jaypee Brothers Medical Publishers (P) Ltd";No;No;0,126;Q4;7;33;170;536;18;161;0,10;16,24;33,64;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2011-2025";"Surgery (Q4)";"Medicine" +27695;9300153115;"Wulfenia";journal;"1561882X";"Landesmuseum Karnten";No;No;0,126;Q4;15;0;10;0;5;10;0,00;0,00;0,00;0;Austria;Western Europe;"Landesmuseum Karnten";"2007-2022";"Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +27696;21100433805;"Youth Voice Journal";journal;"20562969, 20492073";"RJ4All Publications";No;No;0,126;Q4;8;37;221;1389;51;209;0,27;37,54;62,11;0;United Kingdom;Western Europe;"RJ4All Publications";"2015-2025";"Social Psychology (Q4); Sociology and Political Science (Q4)";"Psychology; Social Sciences" +27697;19400157277;"IFMBE Proceedings";conference and proceedings;"14339277, 16800737";"Springer Science and Business Media Deutschland GmbH";No;No;0,126;-;40;1146;2207;21954;402;2142;0,20;19,16;38,15;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2006-2026";"Bioengineering; Biomedical Engineering";"Chemical Engineering; Engineering" +27698;21100854756;"International Conference on Fluid Flow, Heat and Mass Transfer";conference and proceedings;"23693029";"Avestia Publishing";No;No;0,126;-;9;71;146;863;28;143;0,10;12,15;16,76;0;Canada;Northern America;"Avestia Publishing";"2015-2025";"Fluid Flow and Transfer Processes";"Chemical Engineering" +27699;21101180049;"International Maritime Transport and Logistics Conference";conference and proceedings;"29743141, 29743133";"Academy Publishing Center, Arab Academy for Science, Technology and Maritime Transport";No;No;0,126;-;3;46;106;1357;27;103;0,18;29,50;33,03;0;Egypt;Africa/Middle East;"Academy Publishing Center, Arab Academy for Science, Technology and Maritime Transport";"2022-2025";"Business and International Management; Civil and Structural Engineering";"Business, Management and Accounting; Engineering" +27700;21100228517;"Proceedings of the International Conference on Electronic Business (ICEB)";conference and proceedings;"16830040";"International Consortium for Electronic Business";No;No;0,126;-;12;54;232;1710;65;226;0,32;31,67;46,09;0;Netherlands;Western Europe;"International Consortium for Electronic Business";"2005-2025";"Business, Management and Accounting (miscellaneous); Computer Science (miscellaneous)";"Business, Management and Accounting; Computer Science" +27701;21101166842;"Cuadernos del Cemyr";journal;"25308378";"University of La Laguna";Yes;Yes;0,125;Q2;2;16;53;933;14;51;0,30;58,31;33,33;0;Spain;Western Europe;"University of La Laguna";"2019-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27702;5700156387;"Diacritics";journal;"03007162, 10806539";"Johns Hopkins University Press";No;No;0,125;Q2;24;0;103;0;16;81;0,10;0,00;0,00;0;United States;Northern America;"Johns Hopkins University Press";"2002-2010, 2012-2024";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27703;5800207821;"Estudios Filologicos";journal;"00711713, 07176171";"Universidad Austral de Chile";Yes;Yes;0,125;Q2;12;13;87;440;19;86;0,21;33,85;50,00;0;Chile;Latin America;"Universidad Austral de Chile";"2007-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27704;21101075505;"Estudis de Literatura Oral Popular";journal;"20147996";"Publicacions URV";Yes;Yes;0,125;Q2;1;7;22;181;3;19;0,13;25,86;66,67;0;Spain;Western Europe;"Publicacions URV";"2019-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27705;28889;"Journal of Hellenic Studies";journal;"00754269, 20414099";"Cambridge University Press";No;No;0,125;Q2;44;15;43;1117;26;43;0,66;74,47;52,63;0;United Kingdom;Western Europe;"Cambridge University Press";"1880-1891, 1893-2025";"Classics (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27706;21100285044;"Medieval Sermon Studies";journal;"17496276, 13660691";"Maney Publishing";No;No;0,125;Q2;4;8;21;749;8;17;0,50;93,63;50,00;0;United Kingdom;Western Europe;"Maney Publishing";"2013-2025";"Literature and Literary Theory (Q2); Religious Studies (Q3)";"Arts and Humanities" +27707;16400154730;"Museon";journal;"07716494, 1783158X";"Peeters Publishers";No;No;0,125;Q2;15;17;55;987;12;55;0,18;58,06;22,22;0;Belgium;Western Europe;"Peeters Publishers";"1972, 1976-1977, 1996-2025";"Literature and Literary Theory (Q2); History (Q3); Linguistics and Language (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27708;12100157008;"Polis (United Kingdom)";journal;"20512996, 0142257X";"Brill Academic Publishers";No;No;0,125;Q2;11;20;73;1906;17;71;0,18;95,30;15,79;0;Netherlands;Western Europe;"Brill Academic Publishers";"1989-1990, 1992, 2009-2026";"Classics (Q2); History (Q3); Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27709;21100396508;"Scrutiny2";journal;"18125441, 17535409";"Taylor and Francis Ltd.";No;No;0,125;Q2;13;22;41;669;11;30;0,25;30,41;64,29;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2022, 2024-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27710;24844;"Studies in Philology";journal;"00393738";"University of North Carolina Press";No;No;0,125;Q2;17;20;66;938;12;63;0,19;46,90;29,41;0;United States;Northern America;"University of North Carolina Press";"1972, 1979-1980, 2002-2014, 2017-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27711;21101149926;"World Art";journal;"21500894, 21500908";"Taylor and Francis Ltd.";No;No;0,125;Q2;13;18;50;1025;21;46;0,36;56,94;35,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +27712;24923;"Zeitschrift fur Kunstgeschichte";journal;"25691619, 00442992";"Deutscher Kunstverlag GmbH";No;No;0,125;Q2;9;23;68;2200;15;65;0,26;95,65;45,45;0;Germany;Western Europe;"Deutscher Kunstverlag GmbH";"1975, 1987, 2001-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27713;21101061458;"Americania";journal;"21740178";"Universidad Pablo de Olavide";Yes;Yes;0,125;Q3;3;25;59;911;11;54;0,18;36,44;38,46;0;Spain;Western Europe;"Universidad Pablo de Olavide";"2019-2026";"History (Q3)";"Arts and Humanities" +27714;21100980650;"Asia Maior";journal;"23852526, 26126680";"Viella";Yes;Yes;0,125;Q3;4;0;83;0;16;76;0,12;0,00;0,00;0;Italy;Western Europe;"Viella";"2018-2024, 2026";"Cultural Studies (Q3); History (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27715;24471;"Civil War History";journal;"15336271, 00098078";"Kent State University";No;No;0,125;Q3;18;14;55;810;8;46;0,08;57,86;42,86;0;United States;Northern America;"Kent State University";"1963, 1970, 1978, 1982, 1985, 1987, 1992, 2000, 2002-2025";"History (Q3)";"Arts and Humanities" +27716;21101072519;"Connexe";journal;"26732750, 24065749";"University of Geneva";Yes;Yes;0,125;Q3;2;12;30;448;10;26;0,50;37,33;64,29;0;Switzerland;Western Europe;"University of Geneva";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27717;21101101867;"Culturales";journal;"2448539X, 18701191";"Universidad Autonoma de Baja California";Yes;Yes;0,125;Q3;3;11;28;539;12;25;0,15;49,00;50,00;0;Mexico;Latin America;"Universidad Autonoma de Baja California";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +27718;21100394195;"De Musica Disserenda";journal;"25362615, 18543405";"Zalozba ZRC";Yes;Yes;0,125;Q3;4;10;38;373;2;37;0,03;37,30;50,00;0;Slovenia;Eastern Europe;"Zalozba ZRC";"2013-2025";"Music (Q3)";"Arts and Humanities" +27719;21100981170;"Digital Studies/ Le Champ Numerique";journal;"19183666";"Open Library of Humanities";Yes;Yes;0,125;Q3;8;12;61;560;23;60;0,38;46,67;41,18;0;United Kingdom;Western Europe;"Open Library of Humanities";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Computer Science Applications (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +27720;21101164611;"Environment, Space, Place";journal;"20689616, 20665377";"University of Minnesota Press";No;No;0,125;Q3;4;0;33;0;9;31;0,19;0,00;0,00;0;United States;Northern America;"University of Minnesota Press";"2019-2024";"Arts and Humanities (miscellaneous) (Q3); Demography (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Environmental Science; Social Sciences" +27721;14394;"Etudes Rurales";journal;"00142182";"Editions EHESS: Ecole des Hautes Etudes en Sciences Sociales";No;No;0,125;Q3;16;0;56;0;11;56;0,12;0,00;0,00;0;France;Western Europe;"Editions EHESS: Ecole des Hautes Etudes en Sciences Sociales";"1973, 1978-1984, 1989-1990, 1992-1996, 1999-2023";"History (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Economics and Econometrics (Q4); Geography, Planning and Development (Q4)";"Agricultural and Biological Sciences; Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +27722;5800209601;"Folia Onomastica Croatica";journal;"18487858, 13300695";"Croatian Academy of Sciences and Arts";Yes;Yes;0,125;Q3;7;8;27;364;2;26;0,11;45,50;37,50;0;Croatia;Eastern Europe;"Croatian Academy of Sciences and Arts";"2011-2025";"Linguistics and Language (Q3)";"Social Sciences" +27723;21101059010;"International Journal of Asian Christianity";journal;"25424246, 25424238";"Brill Academic Publishers";No;No;0,125;Q3;3;15;44;415;9;39;0,26;27,67;11,11;0;Netherlands;Western Europe;"Brill Academic Publishers";"2018, 2021-2026";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27724;16800154745;"Journal for the Study of the Historical Jesus";journal;"14768690, 17455197";"Brill Academic Publishers";No;No;0,125;Q3;18;13;36;1358;9;31;0,23;104,46;8,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2003-2026";"History (Q3); Linguistics and Language (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27725;21101271732;"Journal of Applied Linguistics and Applied Literature";journal;"28208986, 28210204";"Azarbaijan Shahid Madani University";Yes;Yes;0,125;Q3;4;24;77;1269;22;71;0,40;52,88;36,36;0;Iran;Middle East;"Azarbaijan Shahid Madani University";"2021-2025";"Linguistics and Language (Q3)";"Social Sciences" +27726;6700153306;"Numismatic Chronicle";journal;"00782696";"Royal Numismatic Society";No;No;0,125;Q3;13;2;79;84;11;78;0,20;42,00;50,00;0;United Kingdom;Western Europe;"Royal Numismatic Society";"2002-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +27727;21100403903;"Oriens";journal;"18778372, 00786527";"Brill Academic Publishers";No;No;0,125;Q3;17;8;27;454;13;27;0,53;56,75;25,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1967, 1969, 1971, 1992, 2009-2025";"Cultural Studies (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27728;21100239823;"PentecoStudies";journal;"20413599, 18717691";"Equinox Publishing Ltd";No;No;0,125;Q3;9;0;31;0;3;25;0,05;0,00;0,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2013-2024";"Religious Studies (Q3)";"Arts and Humanities" +27729;21100285729;"Religions of South Asia";journal;"17512689, 17512697";"Equinox Publishing Ltd";No;No;0,125;Q3;7;10;50;393;14;43;0,24;39,30;77,78;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2013-2025";"Religious Studies (Q3)";"Arts and Humanities" +27730;21101061987;"Revista Chilena de Fonoaudiologia";journal;"07174659, 07194692";"Universidad de Chile";Yes;Yes;0,125;Q3;4;10;73;431;19;70;0,20;43,10;70,59;0;Chile;Latin America;"Universidad de Chile";"2019-2025";"Linguistics and Language (Q3); Otorhinolaryngology (Q4); Rehabilitation (Q4); Speech and Hearing (Q4)";"Health Professions; Medicine; Social Sciences" +27731;21100925892;"Revista de Humanidades de Valparaiso";journal;"07194242, 07194234";"Universidad De Valparaíso, Chile";Yes;Yes;0,125;Q3;5;16;107;447;26;103;0,14;27,94;23,53;0;Chile;Latin America;"Universidad De Valparaíso, Chile";"2018-2026";"Philosophy (Q3)";"Arts and Humanities" +27732;16000154709;"Revue Benedictine";journal;"00350893";"Brepols Publishers";No;No;0,125;Q3;11;0;44;0;3;42;0,10;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2002-2024";"Religious Studies (Q3)";"Arts and Humanities" +27733;5800161607;"Scottish Journal of Theology";journal;"00369306, 14753065";"Cambridge University Press";No;No;0,125;Q3;19;30;83;1974;25;83;0,33;65,80;14,29;0;United Kingdom;Western Europe;"Cambridge University Press";"1948-2026";"Religious Studies (Q3)";"Arts and Humanities" +27734;4000151906;"Acta Anatomica Sinica";journal;"05291356";"";No;No;0,125;Q4;8;49;318;1353;52;318;0,17;27,61;44,16;0;China;Asiatic Region;"";"2006-2017, 2019-2025";"Anatomy (Q4); Embryology (Q4); Histology (Q4); Structural Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27735;21101198719;"Adam Mickiewicz University Law Review";journal;"24500976, 20839782";"Adam Mickiewicz University Faculty of Law and Administration";Yes;Yes;0,125;Q4;2;12;47;392;12;46;0,34;32,67;46,67;0;Poland;Eastern Europe;"Adam Mickiewicz University Faculty of Law and Administration";"2014, 2020-2025";"Law (Q4)";"Social Sciences" +27736;21101018620;"Adverse Drug Reactions Journal";journal;"10085734";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,125;Q4;5;123;407;3326;77;405;0,22;27,04;51,72;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +27737;21101223875;"Bangabandhu Sheikh Mujib Medical University Journal";journal;"20742908, 22247750";"Bangabandhu Sheikh Mujib Medical University";Yes;Yes;0,125;Q4;3;65;147;1004;23;118;0,15;15,45;35,21;0;Bangladesh;Asiatic Region;"Bangabandhu Sheikh Mujib Medical University";"2020-2026";"Multidisciplinary (Q4)";"Multidisciplinary" +27738;28631;"Biophotonics International";trade journal;"10818693";"Laurin Publishing Co. Inc.";No;No;0,125;Q4;12;41;108;74;4;102;0,06;1,80;47,06;0;United States;Northern America;"Laurin Publishing Co. Inc.";"1995-2011, 2013-2014, 2018-2026";"Biotechnology (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27739;21101168847;"Bulgarian Cardiology";journal;"13107488, 26831015";"Bulgarian Society of Cardiology";Yes;Yes;0,125;Q4;3;37;149;1072;18;135;0,13;28,97;49,51;0;Bulgaria;Eastern Europe;"Bulgarian Society of Cardiology";"2020-2025";"Cardiology and Cardiovascular Medicine (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +27740;5600153164;"Cadernos Pagu";journal;"01048333";"Universidade Estadual de Campinas UNICAMP";Yes;Yes;0,125;Q4;23;31;135;1253;17;107;0,10;40,42;83,78;0;Brazil;Latin America;"Universidade Estadual de Campinas UNICAMP";"2008-2025";"Gender Studies (Q4)";"Social Sciences" +27741;21101058309;"Chinese Journal of Digestive Endoscopy";journal;"10075232";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,125;Q4;7;150;595;4532;126;595;0,20;30,21;45,29;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2025";"Gastroenterology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +27742;21100983354;"Chinese Journal of Laboratory Medicine";journal;"10099158";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,125;Q4;10;196;503;6185;110;502;0,21;31,56;48,32;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2013, 2019-2026";"Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Medical Laboratory Technology (Q4); Pathology and Forensic Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +27743;21101136251;"Coronaviruses";journal;"26667975, 26667967";"Bentham Science Publishers";No;No;0,125;Q4;11;98;122;6437;54;107;0,53;65,68;51,96;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2020-2026";"Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Pulmonary and Respiratory Medicine (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +27744;21100862474;"Diritto and Questioni Pubbliche";journal;"18250173";"Universita di Palermo";No;No;0,125;Q4;6;22;106;1100;15;103;0,12;50,00;43,48;0;Italy;Western Europe;"Universita di Palermo";"2017-2025";"Law (Q4)";"Social Sciences" +27745;21101186197;"Family Medicine. European Practices";journal;"27867218, 2786720X";"Publishing House Professional-Event";No;No;0,125;Q4;4;76;132;2503;48;132;0,43;32,93;66,83;0;Ukraine;Eastern Europe;"Publishing House Professional-Event";"2022-2025";"Family Practice (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +27746;21101047127;"Gaceta Medica Boliviana";journal;"10122966, 22273662";"Facultad de Medicina Dr. Aurelio Melean";Yes;Yes;0,125;Q4;5;72;132;1364;29;115;0,26;18,94;45,67;0;Bolivia;Latin America;"Facultad de Medicina Dr. Aurelio Melean";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27747;63769;"He-Huaxue yu Fangshe Huaxue/Journal of Nuclear and Radiochemistry";journal;"02539950";"Editorial Department of Journal of Nuclear and Radiochemistry";Yes;No;0,125;Q4;10;56;187;2419;59;187;0,33;43,20;36,93;0;China;Asiatic Region;"Editorial Department of Journal of Nuclear and Radiochemistry";"1998, 2000-2025";"Chemistry (miscellaneous) (Q4); Nuclear and High Energy Physics (Q4)";"Chemistry; Physics and Astronomy" +27748;21101329571;"Indonesia Private Law Review";journal;"2723259X, 27459284";"Universitas Lampung Faculty of Law";Yes;No;0,125;Q4;3;12;36;495;12;36;0,17;41,25;33,33;0;Indonesia;Asiatic Region;"Universitas Lampung Faculty of Law";"2021-2026";"Law (Q4)";"Social Sciences" +27749;5800179618;"International Journal of Internet Protocol Technology";journal;"17438209, 17438217";"Inderscience Enterprises Ltd";No;No;0,125;Q4;17;21;64;439;32;64;0,56;20,90;57,14;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2025";"Computer Networks and Communications (Q4)";"Computer Science" +27750;20500195069;"Jaen Journal on Approximation";journal;"18893066, 19897251";"Universidad de Jaen";No;No;0,125;Q4;10;0;3;0;2;3;0,00;0,00;0,00;0;Spain;Western Europe;"Universidad de Jaen";"2009-2019, 2021-2022";"Analysis (Q4); Numerical Analysis (Q4)";"Mathematics" +27751;15351;"Journal de Pediatrie et de Puericulture";journal;"09877983, 17775981";"Elsevier Masson s.r.l.";No;No;0,125;Q4;9;44;114;1617;15;114;0,15;36,75;51,22;0;France;Western Europe;"Elsevier Masson s.r.l.";"1988-2026";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +27752;19700181264;"Journal of Business Continuity and Emergency Planning";journal;"17499216, 17499224";"Henry Stewart Publications";No;No;0,125;Q4;19;33;90;912;30;86;0,40;27,64;43,08;0;United Kingdom;Western Europe;"Henry Stewart Publications";"2009-2026";"Business and International Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +27753;21101026988;"Journal of Clinical Obstetrics and Gynecology";journal;"26199467";"Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.";Yes;Yes;0,125;Q4;7;10;83;243;19;82;0,22;24,30;57,14;0;Turkey;Middle East;"Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.";"2019-2025";"Obstetrics and Gynecology (Q4)";"Medicine" +27754;19700180532;"Journal of Isfahan Medical School";journal;"10277595, 1735854X";"Isfahan University of Medical Sciences(IUMS)";Yes;No;0,125;Q4;16;199;416;4941;71;416;0,16;24,83;46,61;0;Iran;Middle East;"Isfahan University of Medical Sciences(IUMS)";"2006-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27755;21101038698;"Journal of Obstetrics and Women's Diseases";journal;"16839366, 16840461";"Eco-Vector LLC";No;No;0,125;Q4;7;77;236;2451;60;236;0,28;31,83;78,20;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"1892, 2019-2025";"Obstetrics and Gynecology (Q4)";"Medicine" +27756;29590;"Journal of Spacecraft Technology";journal;"09711600";"ISRO Satellite Centre";No;No;0,125;Q4;6;6;33;60;9;33;0,30;10,00;16,67;0;India;Asiatic Region;"ISRO Satellite Centre";"1994-2025";"Aerospace Engineering (Q4)";"Engineering" +27757;21101120452;"Korean Journal of Environmental Agriculture";journal;"22334173, 12253537";"The Korean Society of Environmental Agriculture";No;No;0,125;Q4;8;0;136;0;42;136;0,31;0,00;0,00;0;South Korea;Asiatic Region;"The Korean Society of Environmental Agriculture";"2019-2024";"Agronomy and Crop Science (Q4); Environmental Chemistry (Q4); Environmental Science (miscellaneous) (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +27758;21100893272;"Lecturas de Economia";journal;"23230622, 01202596";"Universidad de Antioquia";Yes;Yes;0,125;Q4;10;15;67;437;21;66;0,41;29,13;27,27;0;Colombia;Latin America;"Universidad de Antioquia";"2005-2026";"Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4); Finance (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4); Statistics, Probability and Uncertainty (Q4)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance; Social Sciences" +27759;21100793611;"Lecture Notes of TICMI";journal;"15120511";"Tbilisi International Centre of Mathematics and Informatics (TICMI)";No;No;0,125;Q4;3;5;18;100;2;17;0,12;20,00;25,00;0;Georgia;Eastern Europe;"Tbilisi International Centre of Mathematics and Informatics (TICMI)";"2016-2017, 2019-2025";"Applied Mathematics (Q4); Information Systems (Q4); Mathematics (miscellaneous) (Q4)";"Computer Science; Mathematics" +27760;4700152816;"Logistics Journal";journal;"18607977";"Wissenschaftliche Gesellschaft fur Technische Logistik";No;No;0,125;Q4;8;24;64;586;17;63;0,17;24,42;8,24;0;Germany;Western Europe;"Wissenschaftliche Gesellschaft fur Technische Logistik";"2006, 2009-2025";"Control and Systems Engineering (Q4); Management Information Systems (Q4); Management Science and Operations Research (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering" +27761;17802;"Materials Performance";trade journal;"00941492";"NACE International";No;No;0,125;Q4;30;100;348;514;11;280;0,04;5,14;26,14;0;United States;Northern America;"NACE International";"1974-2026";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +27762;21100898678;"Nephrology and Dialysis";journal;"16804422, 26189801";"JSC Vidal Rus";No;No;0,125;Q4;5;52;105;1185;31;98;0,36;22,79;52,52;0;Russian Federation;Eastern Europe;"JSC Vidal Rus";"2017-2025";"Nephrology (Q4)";"Medicine" +27763;21100923711;"Ochrona Przed Korozja";journal;"24499501, 04737733";"Wydawnictwo SIGMA - N O T Sp. z o.o.";No;No;0,125;Q4;5;45;137;933;28;104;0,26;20,73;42,11;0;Poland;Eastern Europe;"Wydawnictwo SIGMA - N O T Sp. z o.o.";"2019-2026";"Chemical Engineering (miscellaneous) (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)";"Chemical Engineering; Materials Science" +27764;5100155059;"Pediatria i Medycyna Rodzinna";journal;"24510742, 17341531";"Medical Communications";Yes;No;0,125;Q4;9;23;205;751;32;205;0,12;32,65;62,14;0;Poland;Eastern Europe;"Medical Communications";"2006-2025";"Family Practice (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +27765;21100456125;"Psiholoska Obzorja";journal;"13181874, 23505141";"Slovenian Psychologists' Association";Yes;Yes;0,125;Q4;14;21;52;1365;13;50;0,13;65,00;82,50;0;Slovenia;Eastern Europe;"Slovenian Psychologists' Association";"2000-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +27766;21101062566;"Recent Advances in Ophthalmology";journal;"10035141";"Xinxiang Medical University";No;No;0,125;Q4;7;171;584;6246;151;584;0,32;36,53;53,39;0;China;Asiatic Region;"Xinxiang Medical University";"2019-2026";"Ophthalmology (Q4)";"Medicine" +27767;21101058815;"Revista Argentina de Cirugia (Argentina)";journal;"00487600, 2250639X";"Argentine Association of Surgery";Yes;Yes;0,125;Q4;4;45;130;679;9;105;0,08;15,09;25,63;0;Argentina;Latin America;"Argentine Association of Surgery";"1961, 1964-1965, 1972-1977, 2019-2026";"Surgery (Q4)";"Medicine" +27768;25369;"Revista Critica de Ciencias Sociais";journal;"02541106, 21827435";"Centro de Estudos Sociais da Universidade de Coimbra";Yes;Yes;0,125;Q4;11;8;85;405;22;76;0,28;50,63;50,00;0;Portugal;Western Europe;"Centro de Estudos Sociais da Universidade de Coimbra";"2001, 2015-2025";"Psychology (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Psychology; Social Sciences" +27769;29387;"Revista Cubana de Enfermeria";journal;"08640319, 15612961";"Editorial Ciencias Medicas";Yes;No;0,125;Q4;13;12;247;181;53;215;0,23;15,08;71,43;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1985-2002, 2006-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +27770;144825;"Revista de Nefrologia, Dialisis y Trasplante";journal;"23468548, 03263428";"Asociacion Regional de Dialisi y Transplantes Renales de Capital Federal y Provincia de Buenos Aires";Yes;Yes;0,125;Q4;6;28;104;596;21;85;0,08;21,29;53,16;0;Argentina;Latin America;"Asociacion Regional de Dialisi y Transplantes Renales de Capital Federal y Provincia de Buenos Aires";"2005-2025";"Nephrology (Q4); Transplantation (Q4)";"Medicine" +27771;21100220152;"Revista Espanola de Drogodependencias";journal;"02137615";"Associacion Espanola de Estudio en Drogodependencias";Yes;No;0,125;Q4;9;19;81;1027;18;72;0,23;54,05;58,82;0;Spain;Western Europe;"Associacion Espanola de Estudio en Drogodependencias";"2012-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +27772;80799;"Revista Geografica Venezolana";journal;"22448853, 10121617";"Universidad de los Andes";Yes;No;0,125;Q4;11;14;95;494;14;87;0,13;35,29;21,88;0;Venezuela;Latin America;"Universidad de los Andes";"1981, 1985-2025";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +27773;26262;"Revue de Paleobiologie";journal;"16615468, 02536730";"Museum National d'Histoire Naturelle";Yes;No;0,125;Q4;39;0;49;0;9;47;0,19;0,00;0,00;0;France;Western Europe;"Museum National d'Histoire Naturelle";"1987, 1991-2024";"Ecology, Evolution, Behavior and Systematics (Q4); Paleontology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +27774;21101068936;"Russian Journal of Allergy";journal;"2686682X, 18108830";"Pharmarus Print Media";No;No;0,125;Q4;6;38;129;1290;44;127;0,33;33,95;70,89;0;Russian Federation;Eastern Europe;"Pharmarus Print Media";"2019-2025";"Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +27775;21101184499;"Russian Journal of Skin and Venereal Diseases";journal;"24129097, 15609588";"Eco-Vector LLC";No;No;0,125;Q4;3;71;186;1841;48;186;0,25;25,93;68,49;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2020-2025";"Dermatology (Q4); Infectious Diseases (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +27776;21100934661;"Russian Neurological Journal";journal;"26587947, 26867192";"Medicinskoe Informacionnoe agentstvo";No;No;0,125;Q4;9;33;172;900;40;172;0,18;27,27;59,22;0;Russian Federation;Eastern Europe;"Medicinskoe Informacionnoe agentstvo";"2019-2025";"Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience" +27777;21100829707;"Russkii Zhunal Detskoi Nevrologii";journal;"20738803, 24129178";"ABV-press Publishing House";Yes;Yes;0,125;Q4;5;12;68;331;21;68;0,26;27,58;61,76;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2017-2025";"Neurology (clinical) (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +27778;19700174940;"SA Pharmaceutical Journal";journal;"22201017, 22215875";"Medpharm Publications";Yes;No;0,125;Q4;10;72;199;1728;39;142;0,24;24,00;57,89;0;South Africa;Africa;"Medpharm Publications";"2009-2025";"Pharmaceutical Science (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +27779;19700174807;"Scientific Journal of Kurdistan University of Medical Sciences";journal;"1560652X, 23454040";"Kurdistan University of Medical Sciences";Yes;Yes;0,125;Q4;15;48;216;1454;44;211;0,21;30,29;42,41;0;Iran;Middle East;"Kurdistan University of Medical Sciences";"2009-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27780;21100902918;"Series on Analysis, Applications and Computation";book series;"17934702";"World Scientific";No;No;0,125;Q4;2;0;10;0;1;3;0,10;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2018, 2021, 2023";"Analysis (Q4); Applied Mathematics (Q4); Computational Mathematics (Q4)";"Mathematics" +27781;4400151734;"Trends in Biomaterials and Artificial Organs";journal;"09711198";"Society for Biomaterials and Artificial Organs - India";No;No;0,125;Q4;39;54;80;2408;28;79;0,43;44,59;42,45;0;India;Asiatic Region;"Society for Biomaterials and Artificial Organs - India";"2001, 2005-2025";"Biotechnology (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27782;21101052223;"Vestnik Sovremennoi Klinicheskoi Mediciny";journal;"20710240, 2079553X";"LLC "IMC" Modern Clinical Medicine";No;No;0,125;Q4;6;138;356;3136;73;356;0,20;22,72;63,59;0;Russian Federation;Eastern Europe;"LLC "IMC" Modern Clinical Medicine";"2019, 2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27783;21100866692;"Building Simulation Applications";conference and proceedings;"25316702";"Free University of Bozen Bolzano";No;No;0,125;-;9;76;67;1166;31;65;0,00;15,34;33,16;0;Italy;Western Europe;"Free University of Bozen Bolzano";"2013, 2015, 2017-2018, 2020, 2022, 2025";"Architecture; Building and Construction; Computer Science Applications; Modeling and Simulation";"Computer Science; Engineering; Mathematics" +27784;99585;"Digests of the Intermag Conference";conference and proceedings;"00746843";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,125;-;7;21;79;285;19;74;0,24;13,57;33,87;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1984, 1999-2000, 2002-2003, 2021, 2023-2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Surfaces and Interfaces; Surfaces, Coatings and Films";"Engineering; Materials Science; Physics and Astronomy" +27785;21100253380;"IEEE Workshop on Microelectronics and Electron Devices, WMED";conference and proceedings;"19473834, 19473842";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,125;-;5;7;20;54;6;14;0,40;7,71;16,67;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2013-2015, 2017, 2019, 2021-2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Hardware and Architecture";"Computer Science; Engineering; Materials Science" +27786;21101039095;"International Conference on Construction in the 21st Century";conference and proceedings;"26401177";"East Carolina University";No;No;0,125;-;4;84;285;1841;52;281;0,16;21,92;29,66;0;United States;Northern America;"East Carolina University";"2019, 2022-2025";"Building and Construction; Civil and Structural Engineering; Management of Technology and Innovation";"Business, Management and Accounting; Engineering" +27787;21100327720;"Olympiads in Informatics";conference and proceedings;"18227732";"Vilnius University";No;No;0,125;-;15;14;50;263;10;44;0,18;18,79;42,42;0;Lithuania;Eastern Europe;"Vilnius University";"2007-2025";"Computer Science Applications; Information Systems; Software";"Computer Science" +27788;21100464913;"Balkanistic Forum";journal;"13103970";"International University Seminar for Balkan Studies and Specializations, South West University Neofit Rilski - Blagoevgrad";No;No;0,124;Q2;3;49;167;1576;8;163;0,05;32,16;47,27;0;Bulgaria;Eastern Europe;"International University Seminar for Balkan Studies and Specializations, South West University Neofit Rilski - Blagoevgrad";"2015-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +27789;21100227034;"Ben Jonson Journal";journal;"10793453, 1755165X";"Edinburgh University Press";No;No;0,124;Q2;9;12;27;320;4;21;0,20;26,67;33,33;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27790;21100805795;"CHINOPERL: Journal of Chinese Oral and Performing Literature";journal;"2835317X, 28353188";"University of Hawaii Press";No;No;0,124;Q2;5;9;27;465;12;19;0,33;51,67;50,00;0;United Kingdom;Western Europe;"University of Hawaii Press";"2013-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27791;21100446411;"Collectanea Christiana Orientalia";journal;"16972104, 23867442";"Biblioteca Universidad de Cordoba";Yes;Yes;0,124;Q2;4;6;26;854;3;26;0,05;142,33;50,00;0;Spain;Western Europe;"Biblioteca Universidad de Cordoba";"2007, 2014-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27792;21101057309;"Critical Stages";journal;"24097411";"International Association of Theatre Critics";Yes;Yes;0,124;Q2;4;68;273;887;31;180;0,08;13,04;60,00;0;France;Western Europe;"International Association of Theatre Critics";"2019-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27793;21101155953;"Inmaterial";journal;"24625892";"BAU College of Arts and Design Barcelona";Yes;Yes;0,124;Q2;2;17;35;648;2;29;0,05;38,12;40,00;0;Spain;Western Europe;"BAU College of Arts and Design Barcelona";"2019-2025";"Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +27794;21101211870;"Napis";journal;"27194191, 15074153";"Institute of Literary Research Polish Academy of Sciences";Yes;Yes;0,124;Q2;1;24;52;704;5;48;0,19;29,33;55,00;0;Poland;Eastern Europe;"Institute of Literary Research Polish Academy of Sciences";"2022-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27795;21101393343;"Prilozi za orijentalnu filologiju";journal;"23038586, 05551153";"University of Sarajevo - Oriental Institute";No;No;0,124;Q2;2;13;32;573;5;30;0,14;44,08;76,92;0;Bosnia and Herzegovina;Eastern Europe;"University of Sarajevo - Oriental Institute";"2022-2023, 2025";"Literature and Literary Theory (Q2); History (Q3); Linguistics and Language (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27796;4900153503;"Projections";journal;"2638342X, 15356191";"MIT Department of Urban Studies and Planning";No;No;0,124;Q2;9;0;8;0;2;6;0,25;0,00;0,00;0;United States;Northern America;"MIT Department of Urban Studies and Planning";"2004, 2006-2008, 2010-2011, 2014, 2016-2017, 2019-2020, 2023-2024";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +27797;21101044939;"Revista de Poetica Medieval";journal;"2660891X, 11378905";"Alcala University";Yes;Yes;0,124;Q2;5;10;34;435;9;34;0,27;43,50;66,67;0;Spain;Western Europe;"Alcala University";"2019-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3); Music (Q3)";"Arts and Humanities" +27798;21100930164;"SCRIPTA";journal;"23404841";"Universitat de Valencia";Yes;Yes;0,124;Q2;3;28;141;1213;15;136;0,09;43,32;42,86;0;Spain;Western Europe;"Universitat de Valencia";"2019-2025";"Literature and Literary Theory (Q2); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27799;21100876295;"Tautosakos Darbai";journal;"13922831";"Institute of Lithuanian Literature and Folklore";No;No;0,124;Q2;5;9;61;266;12;59;0,19;29,56;87,50;0;Lithuania;Eastern Europe;"Institute of Lithuanian Literature and Folklore";"2018-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +27800;21101163016;"Theory Now";journal;"26052822";"Universidad de Granada";Yes;Yes;0,124;Q2;5;38;90;1215;11;86;0,13;31,97;34,38;0;Spain;Western Europe;"Universidad de Granada";"2019-2026";"Literature and Literary Theory (Q2); Philosophy (Q3)";"Arts and Humanities" +27801;5800152708;"Zeitschrift fur Anglistik und Amerikanistik";journal;"21964726, 00442305";"Walter de Gruyter GmbH";No;No;0,124;Q2;17;27;82;725;26;69;0,32;26,85;40,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2002-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27802;19900191766;"African Historical Review";journal;"17532523, 17532531";"Routledge, Taylor & Francis Group";No;No;0,124;Q3;10;5;24;226;3;24;0,15;45,20;50,00;0;United Kingdom;Western Europe;"Routledge, Taylor & Francis Group";"2010-2020, 2022-2025";"Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +27803;21101250406;"Arhivski Vjesnik";journal;"05709008, 18483143";"";No;No;0,124;Q3;3;12;40;375;5;35;0,12;31,25;53,85;0;Croatia;Eastern Europe;"";"2020-2025";"History (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +27804;21100793734;"Ars et Humanitas";journal;"18549632, 23504218";"Ljubljana University Press, Faculty of Arts";Yes;Yes;0,124;Q3;4;24;88;859;18;82;0,26;35,79;46,43;0;Slovenia;Eastern Europe;"Ljubljana University Press, Faculty of Arts";"2016-2025";"Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +27805;21101030123;"BELLETEN Yearbook of Turkic Studies";journal;"05645050, 26515113";"Turk Dil Kurumu";No;No;0,124;Q3;2;16;52;637;6;52;0,09;39,81;27,78;0;Turkey;Middle East;"Turk Dil Kurumu";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +27806;36166;"Cahiers d'Etudes Africaines";journal;"00080055, 17775353";"Cairn France";Yes;No;0,124;Q3;24;0;147;0;24;147;0,14;0,00;0,00;0;France;Western Europe;"Cairn France";"1975, 1977, 1980, 1983-2024";"History (Q3); Development (Q4); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +27807;21101054424;"Contemporary Southeastern Europe";journal;"23103612";"University of Graz";Yes;Yes;0,124;Q3;5;16;31;756;11;30;0,24;47,25;50,00;0;Austria;Western Europe;"University of Graz";"2019-2026";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3); Anthropology (Q4); Gender Studies (Q4); Law (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27808;21101175292;"Cuadernos AISPI";journal;"2283981X, 2785728X";"Ledizioni SRL";Yes;Yes;0,124;Q3;4;11;74;534;15;68;0,24;48,55;62,50;0;Italy;Western Europe;"Ledizioni SRL";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +27809;21101146383;"Historia Provinciae - Zurnal Regional'noj Istorii";journal;"25878344";"Cherepovets State University";Yes;Yes;0,124;Q3;2;33;122;745;9;121;0,09;22,58;41,03;0;Russian Federation;Eastern Europe;"Cherepovets State University";"2019-2025";"History (Q3)";"Arts and Humanities" +27810;15275;"Historische Zeitschrift";journal;"00182613, 2196680X";"De Gruyter Oldenbourg";Yes;Yes;0,124;Q3;19;24;106;2871;13;104;0,13;119,63;18,52;0;Germany;Western Europe;"De Gruyter Oldenbourg";"1859-1917, 1919-1943, 1950-2025";"History (Q3)";"Arts and Humanities" +27811;19526;"Historisk Tidsskrift";journal;"0018263X, 15042944";"Scandinavian University Press";Yes;Yes;0,124;Q3;11;17;104;612;14;91;0,08;36,00;33,33;0;Norway;Western Europe;"Scandinavian University Press";"1977, 1979-1980, 1982, 1987, 1999, 2001-2025";"Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +27812;5800207872;"Journal of African Languages and Linguistics";journal;"16133811, 01676164";"De Gruyter Mouton";No;No;0,124;Q3;19;11;26;692;10;23;0,31;62,91;29,41;0;Germany;Western Europe;"De Gruyter Mouton";"1979-1989, 1991-2025";"Linguistics and Language (Q3)";"Social Sciences" +27813;21100201524;"Journal of Coptic Studies";journal;"17831512, 10165584";"Peeters Publishers";No;No;0,124;Q3;8;12;39;347;7;39;0,15;28,92;28,57;0;Belgium;Western Europe;"Peeters Publishers";"2011-2025";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +27814;21101034087;"Journal of Skyscape Archaeology";journal;"20553498, 2055348X";"Equinox Publishing Ltd";No;No;0,124;Q3;5;3;43;130;7;21;0,12;43,33;100,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2015, 2019-2025";"Archeology (Q3); Archeology (arts and humanities) (Q3); Earth and Planetary Sciences (miscellaneous) (Q4)";"Arts and Humanities; Earth and Planetary Sciences; Social Sciences" +27815;15734;"Journal of the Warburg and Courtauld Institutes";journal;"00754390, 20440014";"University of Chicago Press";No;No;0,124;Q3;16;10;28;187;8;23;0,26;18,70;22,22;0;United States;Northern America;"University of Chicago Press";"1964, 1971-1972, 1974, 1978-1980, 1988, 2002-2014, 2016-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +27816;21101032777;"Kalbotyra";journal;"20298315, 13921517";"Vilnius University";Yes;Yes;0,124;Q3;4;11;20;259;5;19;0,33;23,55;60,00;0;Lithuania;Eastern Europe;"Vilnius University";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +27817;21101390656;"Lexicon Philosophicum";journal;"22837833";"Institute for the European intellectual lexicon and history of ideas";No;No;0,124;Q3;1;12;49;561;3;41;0,05;46,75;0,00;0;Italy;Western Europe;"Institute for the European intellectual lexicon and history of ideas";"2021-2022, 2024-2025";"Philosophy (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities" +27818;5700165111;"Media History";journal;"13688804, 14699729";"Taylor and Francis Ltd.";No;No;0,124;Q3;19;27;96;1268;37;96;0,39;46,96;32,35;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001, 2010-2025";"Cultural Studies (Q3); History (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +27819;21101034433;"Musical Art and Education";journal;"23091428";"Moscow Pedagogical State University";Yes;No;0,124;Q3;5;27;127;685;11;127;0,09;25,37;67,50;0;Russian Federation;Eastern Europe;"Moscow Pedagogical State University";"2019-2025";"Music (Q3); Developmental and Educational Psychology (Q4); Education (Q4)";"Arts and Humanities; Psychology; Social Sciences" +27820;9500154013;"NWIG New West Indian Guide";journal;"22134360, 13822373";"Brill Academic Publishers";Yes;Yes;0,124;Q3;10;10;24;334;12;24;0,50;33,40;46,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"1977-1978, 2001-2002, 2007, 2011-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +27821;21100291842;"Revus";journal;"18557112, 15817652";"Klub Revus";No;No;0,124;Q3;11;1;74;1;19;70;0,24;1,00;0,00;0;Slovenia;Eastern Europe;"Klub Revus";"2013-2025";"Philosophy (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +27822;21101060914;"Rivista di Psicolinguistica Applicata";journal;"17240646, 15921328";"Fabrizio Serra Editore Srl";No;No;0,124;Q3;3;6;38;291;10;35;0,24;48,50;71,43;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2025";"Linguistics and Language (Q3); Developmental and Educational Psychology (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +27823;21100923890;"Studi Culturali";journal;"1824369X, 26120917";"Societa Editrice Il Mulino";No;No;0,124;Q3;4;13;51;535;8;51;0,16;41,15;57,14;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +27824;21101185810;"Studia Biblica Slovaca";journal;"26444879, 13380141";"Comenius University in Bratislava";No;No;0,124;Q3;2;17;39;700;9;33;0,24;41,18;15,38;0;Slovakia;Eastern Europe;"Comenius University in Bratislava";"2022-2025";"Arts and Humanities (miscellaneous) (Q3); Religious Studies (Q3)";"Arts and Humanities" +27825;21101265945;"Suranaree Journal of Social Science";journal;"2651088X";"Suranaree University of Technology";No;No;0,124;Q3;3;38;48;986;13;48;0,28;25,95;60,00;0;Thailand;Asiatic Region;"Suranaree University of Technology";"2020-2025";"Philosophy (Q3); Management Information Systems (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +27826;17900156732;"Topicos";journal;"1666485X";"Asociacion Revista de Filosofia de Santa Fe";Yes;Yes;0,124;Q3;3;31;97;843;7;96;0,06;27,19;33,33;0;Argentina;Latin America;"Asociacion Revista de Filosofia de Santa Fe";"2008-2025";"Philosophy (Q3)";"Arts and Humanities" +27827;21100856632;"Zaranda de Ideas";journal;"24083801, 18531296";"Asociacion de Arqueologos Profesionales de la Republica Argentina";Yes;Yes;0,124;Q3;6;4;17;157;2;17;0,00;39,25;25,00;0;Argentina;Latin America;"Asociacion de Arqueologos Profesionales de la Republica Argentina";"2013-2022, 2024";"Archeology (Q3); Archeology (arts and humanities) (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +27828;26718;"Zeitschrift fur Dialektologie und Linguistik";journal;"23662395, 00441449";"Franz Steiner Verlag GmbH";No;No;0,124;Q3;11;11;41;713;4;40;0,12;64,82;28,57;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"2003-2025";"Linguistics and Language (Q3); Sociology and Political Science (Q4)";"Social Sciences" +27829;21101152871;"Analecta Veterinaria";journal;"15142590, 03655148";"National University of la Plata Faculty of Veterinary Sciences";Yes;Yes;0,124;Q4;3;11;27;458;4;25;0,11;41,64;56,41;0;Argentina;Latin America;"National University of la Plata Faculty of Veterinary Sciences";"2019-2025";"Equine (Q4); Food Animals (Q4); Small Animals (Q4); Veterinary (miscellaneous) (Q4)";"Veterinary" +27830;21100238636;"ATA Journal of Legal Tax Research";journal;"1543866X";"American Accounting Association";No;No;0,124;Q4;4;8;11;281;6;11;0,57;35,13;26,67;0;United States;Northern America;"American Accounting Association";"2011-2016, 2018-2025";"Accounting (Q4); Finance (Q4); Law (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +27831;12556;"Bangladesh Journal of Obstetrics and Gynecology";journal;"10184287";"Obstetrical and Gynaecological Society of Bangladesh";Yes;No;0,124;Q4;7;8;74;176;9;66;0,03;22,00;88,89;0;Bangladesh;Asiatic Region;"Obstetrical and Gynaecological Society of Bangladesh";"1997-2001, 2003, 2005-2016, 2019-2025";"Obstetrics and Gynecology (Q4)";"Medicine" +27832;21101201509;"Casopis Zdravotnickeho Prava a Bioetiky";journal;"18048137";"Academy of Sciences of the Czech Republic, Institute of State and Law";No;No;0,124;Q4;3;4;24;207;3;24;0,19;51,75;57,14;0;Czech Republic;Eastern Europe;"Academy of Sciences of the Czech Republic, Institute of State and Law";"2020-2025";"Law (Q4)";"Social Sciences" +27833;21101083192;"Chinese Journal of Biochemistry and Molecular Biology";journal;"10077626";"Chinese Society of Biochemistry and Molecular Biology, Peking University";No;No;0,124;Q4;7;136;531;6364;147;529;0,26;46,79;43,78;0;China;Asiatic Region;"Chinese Society of Biochemistry and Molecular Biology, Peking University";"2019-2025";"Biochemistry (Q4); Biotechnology (Q4); Cancer Research (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +27834;21100826392;"Coatings Tech";trade journal;"24751499, 24758469";"American Coatings Association";No;No;0,124;Q4;12;26;109;187;15;109;0,17;7,19;34,43;0;United States;Northern America;"American Coatings Association";"2004-2015, 2017-2026";"Chemistry (miscellaneous) (Q4); Colloid and Surface Chemistry (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)";"Chemical Engineering; Chemistry; Materials Science; Physics and Astronomy" +27835;28280;"Coloproctology";journal;"16156730, 01742442";"Springer Medizin";No;No;0,124;Q4;16;73;219;1421;29;169;0,16;19,47;30,71;0;Germany;Western Europe;"Springer Medizin";"1998-2026";"Gastroenterology (Q4); Surgery (Q4)";"Medicine" +27836;72646;"Contributions to Indian Sociology";journal;"00699659, 09730648";"Sage Publications India Pvt. Ltd";No;No;0,124;Q4;37;15;37;154;8;32;0,29;10,27;50,00;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1967, 1969-1980, 1982-2025";"Sociology and Political Science (Q4)";"Social Sciences" +27837;21101105772;"Craniomaxillofacial Research and Innovation";journal;"27528464";"SAGE Publications Ltd";No;No;0,124;Q4;2;0;28;0;7;28;0,42;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2022-2023";"Emergency Medicine (Q4); Oral Surgery (Q4); Otorhinolaryngology (Q4); Surgery (Q4)";"Dentistry; Medicine" +27838;11600153415;"Cuadernos de Bioetica";journal;"11321989, 23863773";"";Yes;No;0,124;Q4;10;16;66;0;24;58;0,45;0,00;50,00;0;Spain;Western Europe;"";"2008-2025";"Issues, Ethics and Legal Aspects (Q4)";"Nursing" +27839;21101340498;"Digital Technologies Research and Applications";journal;"27545687";"UK Scientific Publishing Limited";No;No;0,124;Q4;3;40;28;1638;15;27;0,63;40,95;29,11;0;United Kingdom;Western Europe;"UK Scientific Publishing Limited";"2022-2025";"Artificial Intelligence (Q4); Computer Science Applications (Q4); Human-Computer Interaction (Q4)";"Computer Science" +27840;21100216969;"East Asian Science, Technology, and Medicine";journal;"1562918X";"Brill Academic Publishers";No;No;0,124;Q4;8;10;23;593;6;19;0,29;59,30;42,86;0;Netherlands;Western Europe;"Brill Academic Publishers";"1999, 2011-2020, 2022-2026";"History and Philosophy of Science (Q4); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +27841;21101050038;"Endoscopic Surgery";journal;"23095636, 10257209";"Media Sphera Publishing Group";No;No;0,124;Q4;5;58;168;1239;33;166;0,17;21,36;29,58;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2019-2025";"Gastroenterology (Q4); Surgery (Q4)";"Medicine" +27842;27895;"Eos";journal;"00963941, 23249250";"Wiley-Blackwell";No;No;0,124;Q4;106;66;344;114;36;108;0,16;1,73;66,67;0;United States;Northern America;"Wiley-Blackwell";"1920-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +27843;17900156722;"Far East Journal of Mathematical Sciences";journal;"09720871, 25841246";"Pushpa Publishing House";No;No;0,124;Q4;25;38;20;588;3;20;0,15;15,47;24,68;0;India;Asiatic Region;"Pushpa Publishing House";"2008-2017, 2024-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +27844;21820;"Farmacja Polska";journal;"00148261";"Polish Pharmaceutical Society";Yes;No;0,124;Q4;6;27;217;1089;48;216;0,18;40,33;61,43;0;Poland;Eastern Europe;"Polish Pharmaceutical Society";"1953-1955, 1961-1962, 1973-1983, 1985-1993, 1995, 2019-2026";"Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +27845;21100825855;"Fatigue of Aircraft Structures";journal;"20817738, 23007591";"De Gruyter Open Ltd";Yes;Yes;0,124;Q4;7;3;34;71;12;34;0,24;23,67;16,67;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2016-2025";"Aerospace Engineering (Q4); Civil and Structural Engineering (Q4); Mechanics of Materials (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering" +27846;21100220499;"Field Actions Science Report";journal;"1867139X, 18678521";"Institut Veolia Environnement";Yes;Yes;0,124;Q4;21;29;72;303;39;51;0,45;10,45;59,38;0;France;Western Europe;"Institut Veolia Environnement";"2012-2025";"Development (Q4); Education (Q4); Geography, Planning and Development (Q4); Health (social science) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +27847;50135;"Fudan University Journal of Medical Sciences";journal;"16728467";"Fudan University";No;No;0,124;Q4;12;0;333;0;77;333;0,19;0,00;0,00;0;China;Asiatic Region;"Fudan University";"2001-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +27848;21101360401;"Hematology Transfusiology Eastern Europe";journal;"24143693, 24118966";"Professionalnye Izdaniya";No;No;0,124;Q4;1;43;41;1038;3;41;0,07;24,14;67,46;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2024-2025";"Hematology (Q4); Hepatology (Q4); Oncology (Q4)";"Medicine" +27849;21100215947;"Homeland Security Affairs";journal;"1558643X";"Naval Postgraduate School's Center for Homeland Defense and Security";Yes;Yes;0,124;Q4;9;0;7;0;1;7;0,00;0,00;0,00;0;United States;Northern America;"Naval Postgraduate School's Center for Homeland Defense and Security";"2012-2023";"Law (Q4); Public Administration (Q4); Safety Research (Q4)";"Social Sciences" +27850;21101263920;"International Conference on Computer, Control, Informatics and its Applications, IC3INA";journal;"29945933, 29945925";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,124;Q4;4;0;86;0;50;84;0,58;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Control and Optimization (Q4); Hardware and Architecture (Q4); Information Systems (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences; Mathematics" +27851;4000149502;"International Journal of Product Development";journal;"14779056, 17418178";"Inderscience Enterprises Ltd";No;No;0,124;Q4;34;23;66;791;24;66;0,40;34,39;47,92;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2004-2025";"Business and International Management (Q4); Economics and Econometrics (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +27852;21100199121;"Iran Occupational Health";journal;"17355133, 22287493";"Iran University of Medical Sciences";Yes;Yes;0,124;Q4;17;16;93;674;15;93;0,14;42,13;25,86;0;Iran;Middle East;"Iran University of Medical Sciences";"2011-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +27853;19700201519;"Iranian Journal of Physics Research";journal;"16826957, 23453664";"Isfahan University of Technology";Yes;No;0,124;Q4;7;74;242;2138;48;238;0,23;28,89;34,46;0;Iran;Middle East;"Isfahan University of Technology";"2010-2026";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +27854;4900152411;"IRRIGA";journal;"14137895, 18088546";"Universidade Estadual Paulista (UNESP)";No;No;0,124;Q4;20;0;152;0;36;152;0,22;0,00;0,00;0;Brazil;Latin America;"Universidade Estadual Paulista (UNESP)";"2002, 2006-2024";"Water Science and Technology (Q4)";"Environmental Science" +27855;21101180713;"Italian Yearbook of International Law";book series;"03915107";"Brill Academic Publishers";No;No;0,124;Q4;13;0;74;0;13;73;0,24;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2000-2001, 2003, 2005-2022, 2024";"Law (Q4)";"Social Sciences" +27856;21101280285;"Journal of Haemophilia Practice";journal;"20553390";"Sciendo";Yes;No;0,124;Q4;10;20;64;603;13;61;0,07;30,15;51,92;0;Poland;Eastern Europe;"Sciendo";"2013-2025";"Hematology (Q4)";"Medicine" +27857;21100920147;"Journal of Popular Television";journal;"2046987X, 20469861";"Intellect Ltd.";No;No;0,124;Q4;6;17;61;894;35;61;0,38;52,59;57,14;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Communication (Q4)";"Social Sciences" +27858;21101292998;"Journal of Tropical Resources and Sustainable Science";journal;"24622389, 22893946";"UMK Press";No;No;0,124;Q4;2;74;40;2959;14;40;0,35;39,99;50,00;0;Malaysia;Asiatic Region;"UMK Press";"2023-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Aquatic Science (Q4); Ecological Modeling (Q4)";"Agricultural and Biological Sciences; Environmental Science" +27859;21101295954;"Journal Orthopaedi and Traumatology Surabaya";journal;"24608742, 2722712X";"Airlangga University";Yes;No;0,124;Q4;2;15;38;338;12;38;0,27;22,53;33,33;0;Indonesia;Asiatic Region;"Airlangga University";"2021-2025";"Biomaterials (Q4); Biomedical Engineering (Q4); Orthopedics and Sports Medicine (Q4)";"Engineering; Materials Science; Medicine" +27860;21101272727;"Kidneys";journal;"23071257, 23071265";"Zaslavsky Publishing House";Yes;Yes;0,124;Q4;4;36;91;1098;32;79;0,37;30,50;47,44;0;Ukraine;Eastern Europe;"Zaslavsky Publishing House";"2022-2025";"Nephrology (Q4); Urology (Q4)";"Medicine" +27861;21101330834;"Kirkuk Journal of Medical Sciences";journal;"27900207, 27900215";"University of Kirkuk";Yes;No;0,124;Q4;3;26;56;578;21;53;0,38;22,23;50,00;0;Iraq;Middle East;"University of Kirkuk";"2021-2025";"Internal Medicine (Q4); Medicine (miscellaneous) (Q4); Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)";"Medicine" +27862;21101235559;"KoG";journal;"13311611, 18464068";"Croatian Society for Geometry and Graphics";No;No;0,124;Q4;3;8;18;100;4;18;0,25;12,50;20,00;0;Croatia;Eastern Europe;"Croatian Society for Geometry and Graphics";"2020-2025";"Geometry and Topology (Q4)";"Mathematics" +27863;21100208075;"Medical Journal of Chinese People's Liberation Army";journal;"05777402";"People's Military Medical Press";Yes;No;0,124;Q4;11;206;567;8612;136;567;0,23;41,81;37,01;0;China;Asiatic Region;"People's Military Medical Press";"2012-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27864;21100840040;"Methods of Functional Analysis and Topology";journal;"24157503, 10293531";"Institute of Mathematics";Yes;Yes;0,124;Q4;8;0;42;0;17;42;0,57;0,00;0,00;0;Ukraine;Eastern Europe;"Institute of Mathematics";"2017-2024";"Analysis (Q4); Geometry and Topology (Q4); Mathematical Physics (Q4)";"Mathematics" +27865;66030;"Pakistan Journal of Ophthalmology";journal;"08863067";"Journal Of Ophthalmology (Pjo)";Yes;No;0,124;Q4;6;85;222;1505;52;204;0,28;17,71;48,42;0;Pakistan;Asiatic Region;"Journal Of Ophthalmology (Pjo)";"1985-1989, 2019-2026";"Ophthalmology (Q4)";"Medicine" +27866;20545;"PDA Journal of Pharmaceutical Science and Technology";journal;"19482124, 10797440";"Parenteral Drug Association Inc.";No;No;0,124;Q4;48;0;14;0;11;13;0,00;0,00;0,00;0;United States;Northern America;"Parenteral Drug Association Inc.";"1994-2022";"Medicine (miscellaneous) (Q4); Pharmaceutical Science (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +27867;21102;"Pharmaceutical Journal";journal;"20536186, 00316873";"Pharmaceutical Press";No;No;0,124;Q4;30;78;885;896;93;743;0,15;11,49;70,45;0;United Kingdom;Western Europe;"Pharmaceutical Press";"1945-1949, 1994-2012, 2014-2025";"Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacy (Q4)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +27868;21101297189;"Pharmacotherapy in Psychiatry and Neurology";journal;"12348279, 24499315";"Institute of Psychiatry and Neurology in Warsaw";No;No;0,124;Q4;2;7;33;228;4;30;0,14;32,57;33,33;0;Poland;Eastern Europe;"Institute of Psychiatry and Neurology in Warsaw";"2021-2025";"Neurology (Q4); Neuroscience (miscellaneous) (Q4); Pharmacology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +27869;23020;"Problems of Infectious and Parasitic Diseases";journal;"02049155";"National Centre of Infectious and Parasitic Diseases";Yes;Yes;0,124;Q4;6;23;37;966;13;36;0,35;42,00;72,73;0;Bulgaria;Eastern Europe;"National Centre of Infectious and Parasitic Diseases";"1978-1981, 1983-1984, 1987, 1996-2016, 2023-2025";"Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Microbiology (Q4); Microbiology (medical) (Q4); Parasitology (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +27870;19400156822;"Proceedings of the Institution of Civil Engineers: Engineering and Computational Mechanics";journal;"17550785, 17550777";"ICE Publishing";No;No;0,124;Q4;20;10;31;306;10;30;0,32;30,60;21,43;0;United Kingdom;Western Europe;"ICE Publishing";"2009-2025";"Civil and Structural Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +27871;21100368857;"Revue Veterinaire Clinique";journal;"22145680, 22145672";"Elsevier Masson s.r.l.";No;No;0,124;Q4;15;49;107;730;14;107;0,07;14,90;47,67;0;France;Western Europe;"Elsevier Masson s.r.l.";"2014-2026";"Small Animals (Q4)";"Veterinary" +27872;21100935004;"Ri-Vista";journal;"17246768";"Firenze University Press";Yes;Yes;0,124;Q4;5;20;113;375;16;95;0,19;18,75;59,46;0;Italy;Western Europe;"Firenze University Press";"2019-2025";"Architecture (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4); Renewable Energy, Sustainability and the Environment (Q4); Urban Studies (Q4)";"Energy; Engineering; Environmental Science; Social Sciences" +27873;21101108636;"Romanian Journal of Pediatrics";journal;"14540398, 20696175";"Amaltea Medical Publishing House";Yes;No;0,124;Q4;3;42;130;1022;21;128;0,14;24,33;51,43;0;Romania;Eastern Europe;"Amaltea Medical Publishing House";"2019-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +27874;64744;"Salus";journal;"13167138, 2443440X";"Revista Salus";Yes;No;0,124;Q4;8;23;65;629;3;47;0,02;27,35;41,18;0;Venezuela;Latin America;"Revista Salus";"2002-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +27875;21101331689;"Saudi Journal of Oral Sciences";journal;"25427849";"Wolters Kluwer Medknow Publications";Yes;No;0,124;Q4;4;36;108;905;21;98;0,15;25,14;28,18;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2021-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +27876;14806;"Shinrigaku Kenkyu";journal;"00215236";"Japanese Psychological Association";No;No;0,124;Q4;23;39;134;1317;24;132;0,09;33,77;32,11;0;Japan;Asiatic Region;"Japanese Psychological Association";"1926-1938, 1941-1943, 1948-2026";"Psychology (miscellaneous) (Q4)";"Psychology" +27877;18775;"Sociologie du Travail";journal;"00380296";"Centre de sociologie des organisations";No;No;0,124;Q4;32;20;192;354;10;189;0,04;17,70;68,42;0;France;Western Europe;"Centre de sociologie des organisations";"1972, 1980, 1988, 1994-2025";"Industrial Relations (Q4); Sociology and Political Science (Q4)";"Business, Management and Accounting; Social Sciences" +27878;19900193609;"Sri Lanka Journal of Child Health";journal;"2386110X, 13915452";"Sri Lanka College of Paediatricians";Yes;Yes;0,124;Q4;11;82;320;1310;50;297;0,18;15,98;55,56;0;Sri Lanka;Asiatic Region;"Sri Lanka College of Paediatricians";"2011-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +27879;21101267687;"Stomatological Bulletin";journal;"20788916";"Publishing House Helvetica";No;No;0,124;Q4;4;56;304;938;46;304;0,17;16,75;66,34;0;Ukraine;Eastern Europe;"Publishing House Helvetica";"2020-2025";"Dental Assisting (Q4); Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Orthodontics (Q4)";"Dentistry" +27880;21100198505;"SUT Journal of Mathematics";journal;"09165746";"Tokyo University of Science";No;No;0,124;Q4;19;8;20;161;8;20;0,25;20,13;0,00;0;Japan;Asiatic Region;"Tokyo University of Science";"1995-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +27881;13173;"Tumor Diagnostik und Therapie";journal;"0722219X, 14391279";"Georg Thieme Verlag";No;No;0,124;Q4;6;170;556;1473;7;230;0,02;8,66;30,94;0;Germany;Western Europe;"Georg Thieme Verlag";"1983-2025";"Oncology (Q4)";"Medicine" +27882;21101168869;"Turkish Journal of Ear Nose and Throat";journal;"26024837";"Istanbul University Press";Yes;Yes;0,124;Q4;3;13;76;366;12;76;0,12;28,15;31,03;0;Turkey;Middle East;"Istanbul University Press";"2019-2025";"Otorhinolaryngology (Q4)";"Medicine" +27883;21101166962;"Urology Reports (St. Petersburg)";journal;"22259074, 26871416";"Eco-Vector LLC";No;No;0,124;Q4;4;46;86;1443;20;86;0,23;31,37;36,74;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2023-2025";"Urology (Q4)";"Medicine" +27884;13207;"Voprosy Onkologii";journal;"05073758";"";No;No;0,124;Q4;14;114;366;2886;105;363;0,30;25,32;54,46;0;Russian Federation;Eastern Europe;"";"1955-2026";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +27885;21100920050;"Water and Energy International";journal;"09744711, 09744207";"Central Board of Irrigation and Power";No;No;0,124;Q4;9;118;331;1233;53;239;0,09;10,45;19,51;0;India;Asiatic Region;"Central Board of Irrigation and Power";"2010, 2013-2016, 2018-2025";"Renewable Energy, Sustainability and the Environment (Q4); Water Science and Technology (Q4)";"Energy; Environmental Science" +27886;18038;"Wuhan Ligong Daxue Xuebao (Jiaotong Kexue Yu Gongcheng Ban)/Journal of Wuhan University of Technology (Transportation Science and Engineering)";journal;"20953844";"Wuhan University of Technology";No;No;0,124;Q4;15;174;633;1134;126;633;0,22;6,52;31,31;0;China;Asiatic Region;"Wuhan University of Technology";"2001-2025";"Electrical and Electronic Engineering (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Engineering" +27887;21101152504;"Zhongguo Dongmai Yinghua Zazhi";journal;"10073949";"Editorial Office of Chinese Journal of Arteriosclerosis";Yes;No;0,124;Q4;8;129;462;4895;187;462;0,47;37,95;50,64;0;China;Asiatic Region;"Editorial Office of Chinese Journal of Arteriosclerosis";"2019-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +27888;37303;"Zuchtungskunde";journal;"18674518, 00445401";"Verlag Eugen Ulmer";No;No;0,124;Q4;17;1;51;20;8;46;0,18;20,00;0,00;0;Germany;Western Europe;"Verlag Eugen Ulmer";"1977, 1996-2025";"Animal Science and Zoology (Q4); Food Animals (Q4)";"Agricultural and Biological Sciences; Veterinary" +27889;21101097336;"fib Symposium";conference and proceedings;"26174820";"fib. The International Federation for Structural Concrete";No;No;0,124;-;8;543;975;9429;121;964;0,08;17,36;23,71;0;Switzerland;Western Europe;"fib. The International Federation for Structural Concrete";"2015-2016, 2018-2025";"Building and Construction; Civil and Structural Engineering; Materials Science (miscellaneous)";"Engineering; Materials Science" +27890;20600195634;"International Conference on Optical MEMS and Nanophotonics";conference and proceedings;"21605033, 21605041";"IEEE Computer Society";No;No;0,124;-;11;42;146;235;24;143;0,16;5,60;19,88;0;United States;Northern America;"IEEE Computer Society";"2011-2019, 2023-2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Hardware and Architecture";"Computer Science; Engineering; Materials Science" +27891;21101058061;"International Conference on Perspective Technologies and Methods in MEMS Design";conference and proceedings;"25735357, 25735373";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,124;-;12;0;60;0;22;56;0,18;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2018-2022, 2024";"Electrical and Electronic Engineering; Instrumentation; Mechanical Engineering; Modeling and Simulation";"Engineering; Mathematics; Physics and Astronomy" +27892;21101261587;"Memorias de la Conferencia Iberoamericana de Complejidad, Informatica y Cibernetica, CICIC";conference and proceedings;"27716333";"International Institute of Informatics and Systemics, IIIS";No;No;0,124;-;2;57;59;1114;9;57;0,15;19,54;36,27;0;United States;Northern America;"International Institute of Informatics and Systemics, IIIS";"2024-2025";"Artificial Intelligence; Computer Networks and Communications; Information Systems";"Computer Science" +27893;21101177457;"Proceedings - Linear Accelerator Conference, LINAC";conference and proceedings;"22260366";"JACoW Publishing";No;No;0,124;-;6;0;465;0;76;461;0,14;0,00;0,00;0;Switzerland;Western Europe;"JACoW Publishing";"2022, 2024";"Atomic and Molecular Physics, and Optics";"Physics and Astronomy" +27894;21100970227;"Proceedings of the Thermal and Fluids Engineering Summer Conference";conference and proceedings;"23791748";"Begell House Inc.";No;No;0,124;-;8;163;558;2907;93;555;0,19;17,83;17,93;0;United States;Northern America;"Begell House Inc.";"2015, 2017-2025";"Condensed Matter Physics; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Fluid Flow and Transfer Processes; Mechanical Engineering; Renewable Energy, Sustainability and the Environment";"Chemical Engineering; Energy; Engineering; Physics and Astronomy" +27895;21100932834;"Acotaciones";journal;"24443948, 11307269";"Real Escuela Superior de Arte Dramatico";No;Yes;0,123;Q2;2;25;142;601;8;121;0,03;24,04;80,95;0;Spain;Western Europe;"Real Escuela Superior de Arte Dramatico";"2019-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27896;21101264205;"Alfred Nobel University Journal of Philology";journal;"3041217X, 30412188";"Alfred Nobel University";Yes;No;0,123;Q2;2;46;146;1901;19;134;0,13;41,33;82,81;0;Ukraine;Eastern Europe;"Alfred Nobel University";"2024-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27897;21100312021;"Antiguo Oriente";journal;"16679202";"Archaeopress";No;No;0,123;Q2;11;0;22;0;1;20;0,06;0,00;0,00;0;Argentina;Latin America;"Archaeopress";"2009-2024";"Classics (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +27898;8400155965;"Archivo Espanol de Arte";journal;"00040428, 19888511";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,123;Q2;8;53;100;1117;17;99;0,17;21,08;44,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1996-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27899;6500153158;"Cambridge Opera Journal";journal;"14740621, 09545867";"Cambridge University Press";No;No;0,123;Q2;19;10;47;1042;7;47;0,13;104,20;62,50;0;United Kingdom;Western Europe;"Cambridge University Press";"1989-2026";"Visual Arts and Performing Arts (Q2); Music (Q3)";"Arts and Humanities" +27900;21101049619;"Cuadernos Medievales";journal;"24227471, 24516821";"Universidad Nacional de Mar del Plata";Yes;Yes;0,123;Q2;2;5;38;535;6;38;0,14;107,00;33,33;0;Argentina;Latin America;"Universidad Nacional de Mar del Plata";"2019-2025";"Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27901;21100255511;"Dix-Neuf";journal;"14787318";"Taylor and Francis Ltd.";No;No;0,123;Q2;7;15;57;564;13;53;0,13;37,60;64,29;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3); Music (Q3)";"Arts and Humanities; Social Sciences" +27902;21101193868;"Ecumenica";journal;"19424558, 25782185";"Penn State University Press";No;No;0,123;Q2;2;10;28;158;5;20;0,11;15,80;53,85;0;United States;Northern America;"Penn State University Press";"2010, 2019-2025";"Visual Arts and Performing Arts (Q2); Music (Q3); Religious Studies (Q3)";"Arts and Humanities" +27903;16600154707;"Explicator";journal;"1939926X, 00144940";"Routledge";No;No;0,123;Q2;7;109;115;1665;12;115;0,10;15,28;35,51;0;United States;Northern America;"Routledge";"1958, 1965, 1974-1980, 1982-1983, 1985, 1987-2026";"Literature and Literary Theory (Q2); Education (Q4)";"Arts and Humanities; Social Sciences" +27904;21100197512;"Gripla";book series;"10185011";"Arni Magnusson Institute for Icelandic Studies";No;No;0,123;Q2;6;13;34;981;10;32;0,32;75,46;63,64;0;Iceland;Western Europe;"Arni Magnusson Institute for Icelandic Studies";"2011-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27905;21101090148;"Journal for Religion, Film and Media";journal;"26173697, 24140201";"University of Graz";Yes;Yes;0,123;Q2;4;22;53;464;6;42;0,08;21,09;36,84;0;Austria;Western Europe;"University of Graz";"2019-2025";"Visual Arts and Performing Arts (Q2); Religious Studies (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +27906;5800207946;"Journal of English Studies";journal;"16954300, 15766357";"University of La Rioja";Yes;Yes;0,123;Q2;9;15;34;644;7;34;0,22;42,93;56,25;0;Spain;Western Europe;"University of La Rioja";"2011-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27907;21101070995;"Journal of Foreign Languages and Cultures";journal;"20964374";"Hunan Normal University Press";No;No;0,123;Q2;3;24;76;644;15;69;0,10;26,83;37,04;0;China;Asiatic Region;"Hunan Normal University Press";"2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27908;21100255732;"Journal of Language, Literature and Culture";journal;"20512864, 20512856";"Maney Publishing";No;No;0,123;Q2;5;10;40;404;11;39;0,29;40,40;53,85;0;United Kingdom;Western Europe;"Maney Publishing";"2013-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27909;21101152749;"Lejana";journal;"20616678";"Eotvos Lorand Tudomanyegyetem";Yes;Yes;0,123;Q2;2;15;36;492;8;36;0,28;32,80;71,43;0;Hungary;Eastern Europe;"Eotvos Lorand Tudomanyegyetem";"2019-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27910;6400153199;"Literature and Theology";journal;"02691205";"Oxford University Press";No;No;0,123;Q2;15;21;68;1207;15;67;0,14;57,48;35,29;0;United Kingdom;Western Europe;"Oxford University Press";"1987-2025";"Literature and Literary Theory (Q2); Religious Studies (Q3)";"Arts and Humanities" +27911;21101139564;"Metafora";journal;"26174839";"Asociacion Peruana de Retorica";Yes;Yes;0,123;Q2;2;27;94;784;5;85;0,06;29,04;33,33;0;Peru;Latin America;"Asociacion Peruana de Retorica";"2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27912;21101264300;"Norba. Revista de Arte";journal;"02132214, 2660714X";"Universidad de Extremadura";Yes;Yes;0,123;Q2;3;25;59;704;4;57;0,05;28,16;36,36;0;Spain;Western Europe;"Universidad de Extremadura";"2021-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +27913;29376;"Philologus";journal;"21967008, 00317985";"Walter de Gruyter GmbH";No;No;0,123;Q2;13;19;54;942;4;54;0,09;49,58;31,58;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1846, 1848-1852, 1854-1860, 1863-1867, 1869-1870, 1872, 1874-1877, 1879-1880, 1882, 1887-1892, 1894-1908, 1911-1913, 1916-1918, 1920-1921, 1926-1929, 1931, 1933-1938, 1941, 1943-1944, 1948, 1954-2026";"Classics (Q2); Literature and Literary Theory (Q2); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +27914;21101167590;"Polin: Studies in Polish Jewry";book series;"25168681, 02681056";"Liverpool University Press";No;No;0,123;Q2;4;26;77;1451;14;51;0,16;55,81;62,50;0;United Kingdom;Western Europe;"Liverpool University Press";"2001, 2019-2026";"Literature and Literary Theory (Q2); History (Q3); Linguistics and Language (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27915;16300154772;"Queeste";journal;"26671689, 09298592";"Uitgeverij Verloren";No;No;0,123;Q2;7;12;36;582;4;33;0,13;48,50;30,77;0;Netherlands;Western Europe;"Uitgeverij Verloren";"2002-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27916;6000189362;"Romanticism";journal;"1354991X, 17500192";"Edinburgh University Press";No;No;0,123;Q2;14;21;65;816;11;61;0,12;38,86;40,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27917;21100388303;"Short Film Studies";journal;"20427824, 20427832";"Intellect Ltd.";No;No;0,123;Q2;3;25;58;345;8;44;0,17;13,80;47,62;0;United Kingdom;Western Europe;"Intellect Ltd.";"2014-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +27918;16300154739;"Spiegel der Letteren";journal;"00387479, 17831776";"Peeters Publishers";No;No;0,123;Q2;7;3;30;129;6;30;0,14;43,00;66,67;0;Belgium;Western Europe;"Peeters Publishers";"1996-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +27919;21100200616;"Studies in Russian and Soviet Cinema";journal;"17503132, 17503140";"Taylor and Francis Ltd.";No;No;0,123;Q2;9;20;54;490;19;42;0,25;24,50;60,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2006-2026";"Visual Arts and Performing Arts (Q2); Communication (Q4)";"Arts and Humanities; Social Sciences" +27920;19700176050;"Symbolae Osloenses";journal;"00397679, 15027805";"Taylor and Francis Ltd.";No;No;0,123;Q2;16;9;43;441;6;40;0,15;49,00;30,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1922, 1924-1930, 1932-1942, 1944-1945, 1947-1950, 1952-1953, 1955-1961, 1963-1966, 1968-1973, 1975-2008, 2010-2025";"Classics (Q2)";"Arts and Humanities" +27921;6000153223;"Technoetic Arts";journal;"1477965X, 17589533";"Intellect Ltd.";No;No;0,123;Q2;8;14;58;468;14;55;0,26;33,43;50,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2012-2025";"Visual Arts and Performing Arts (Q2); Philosophy (Q3); Computer Science Applications (Q4); Human-Computer Interaction (Q4)";"Arts and Humanities; Computer Science" +27922;14000155881;"Africana Linguistica";journal;"20348436, 00654124";"Peeters Publishers";No;No;0,123;Q3;15;6;19;264;6;19;0,31;44,00;33,33;0;Belgium;Western Europe;"Peeters Publishers";"2008-2018, 2020-2025";"Linguistics and Language (Q3)";"Social Sciences" +27923;21100259514;"Confluenze";journal;"20360967";"University of Bologna";Yes;Yes;0,123;Q3;5;35;156;1304;15;155;0,12;37,26;42,50;0;Italy;Western Europe;"University of Bologna";"2013-2025";"Cultural Studies (Q3); History (Q3); Anthropology (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27924;21100787378;"Culture Unbound";journal;"20001525";"Linkoping University Electronic Press";Yes;Yes;0,123;Q3;17;5;39;329;14;39;0,30;65,80;50,00;0;Sweden;Western Europe;"Linkoping University Electronic Press";"2015-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +27925;21100922756;"Dilbilim Arastirmalari Dergisi";journal;"13008552, 25870939";"Dilbilim Dernegi";Yes;Yes;0,123;Q3;3;16;36;942;10;36;0,25;58,88;54,55;0;Turkey;Middle East;"Dilbilim Dernegi";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +27926;16300154719;"Ephemerides Theologicae Lovanienses";journal;"17831423, 00139513";"Peeters Publishers";No;No;0,123;Q3;11;18;83;1800;13;80;0,09;100,00;16,67;0;Belgium;Western Europe;"Peeters Publishers";"1996-2025";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +27927;21100265641;"Etica e Politica";journal;"18255167";"Universita di Trieste";Yes;Yes;0,123;Q3;9;97;210;2077;34;210;0,18;21,41;35,64;0;Italy;Western Europe;"Universita di Trieste";"2013-2025";"Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27928;21101337820;"European Journal of Social Science Education and Research";journal;"23128429, 24119563";"Revistia Research and Publishing";No;No;0,123;Q3;4;56;126;1421;43;126;0,37;25,38;57,47;0;United Kingdom;Western Europe;"Revistia Research and Publishing";"2021-2025";"Cultural Studies (Q3); Philosophy (Q3); Education (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +27929;16800154730;"Filosoficky Casopis";journal;"00151831";"Czech Academy of Sciences";Yes;Yes;0,123;Q3;6;46;173;1803;11;138;0,07;39,20;30,77;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"2002-2025";"Religious Studies (Q3)";"Arts and Humanities" +27930;21101094601;"Forum Philosophicum";journal;"23537043, 14261898";"Akademia Ignatianum w Krakowie";Yes;Yes;0,123;Q3;5;33;55;983;17;47;0,33;29,79;10,34;0;Poland;Eastern Europe;"Akademia Ignatianum w Krakowie";"2019-2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +27931;21100905275;"History of Economic Thought and Policy";journal;"22409971, 2280188X";"FrancoAngeli Edizioni";No;No;0,123;Q3;4;14;32;714;5;32;0,09;51,00;18,75;0;Italy;Western Europe;"FrancoAngeli Edizioni";"2018-2025";"History (Q3); Economics and Econometrics (Q4); Public Administration (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +27932;4700152437;"International Journal of Advanced Media and Communication";journal;"17418003, 14624613";"Inderscience Publishers";No;No;0,123;Q3;15;0;4;0;2;4;0,50;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Publishers";"2005-2010, 2013-2017, 2019, 2024";"Cultural Studies (Q3); Communication (Q4)";"Social Sciences" +27933;21101194975;"International Journal of Islam in Asia";journal;"25899996, 25899988";"Brill Academic Publishers";No;No;0,123;Q3;3;0;19;0;7;18;0,40;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2023, 2026";"Religious Studies (Q3)";"Arts and Humanities" +27934;21101291379;"Istoriya i Arkhivy";journal;"26586541";"Russian State University for the Humanities";No;No;0,123;Q3;2;47;75;450;8;75;0,11;9,57;49,06;0;Russian Federation;Eastern Europe;"Russian State University for the Humanities";"2023-2025";"History (Q3)";"Arts and Humanities" +27935;21101292915;"Journal of Communication and Media Studies";journal;"24709255, 24709247";"Common Ground Research Networks";No;No;0,123;Q3;2;11;35;501;18;35;0,40;45,55;50,00;0;United States;Northern America;"Common Ground Research Networks";"2022-2026";"Linguistics and Language (Q3)";"Social Sciences" +27936;21101136682;"Journal of Latin Linguistics";journal;"21948739, 21948747";"De Gruyter Mouton";No;No;0,123;Q3;7;8;25;445;10;24;0,18;55,63;33,33;0;Germany;Western Europe;"De Gruyter Mouton";"2005, 2008, 2016-2025";"Linguistics and Language (Q3)";"Social Sciences" +27937;21100790506;"Kulturne Dejiny";journal;"13382209";"VERBUM - vydavatel'stvo KU";No;No;0,123;Q3;3;20;50;674;9;50;0,14;33,70;42,86;0;Slovakia;Eastern Europe;"VERBUM - vydavatel'stvo KU";"2016-2025";"Cultural Studies (Q3); History (Q3); Philosophy (Q3); Religious Studies (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +27938;21100235604;"Leibniz Review";journal;"15241556, 21539162";"Philosophy Documentation Center";No;No;0,123;Q3;8;0;16;0;4;14;0,33;0,00;0,00;0;United States;Northern America;"Philosophy Documentation Center";"2008-2012, 2014-2023";"Philosophy (Q3)";"Arts and Humanities" +27939;21100312206;"Lexia";book series;"17205298";"Universita di Torino";No;No;0,123;Q3;6;0;90;0;8;81;0,04;0,00;0,00;0;Italy;Western Europe;"Universita di Torino";"2008-2024";"Philosophy (Q3)";"Arts and Humanities" +27940;21100872362;"Lithics";journal;"02627817";"Lithic Studies Society";No;No;0,123;Q3;8;0;13;0;2;12;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Lithic Studies Society";"2011-2019, 2022, 2024";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +27941;21100242825;"Logos and Pneuma - Chinese Journal of Theology";journal;"10232583";"Institute of Sino-Christian Studies";No;No;0,123;Q3;3;22;38;781;2;38;0,07;35,50;22,73;0;China;Asiatic Region;"Institute of Sino-Christian Studies";"2008-2025";"Religious Studies (Q3)";"Arts and Humanities" +27942;21101044961;"One World Archaeology";book series;"2625865X, 26258641";"Springer International Publishing";No;No;0,123;Q3;13;0;43;0;11;3;0,26;0,00;0,00;0;Switzerland;Western Europe;"Springer International Publishing";"2011-2014, 2017-2019, 2021-2022, 2024";"Archeology (Q3); Archeology (arts and humanities) (Q3)";"Arts and Humanities; Social Sciences" +27943;21101041414;"Palimpsest";journal;"2545398X, 25453998";"Goce Delchev University of Shtip";No;No;0,123;Q3;2;20;141;302;8;138;0,07;15,10;84,00;0;Macedonia;Eastern Europe;"Goce Delchev University of Shtip";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +27944;21101093358;"Parthica";journal;"11286342, 17241928";"Fabrizio Serra Editore Srl";No;No;0,123;Q3;3;0;15;0;3;14;0,20;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2021, 2023-2024";"Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +27945;21100914960;"Quebec Studies";journal;"20521731, 07373759";"Liverpool University Press";No;No;0,123;Q3;2;13;50;658;5;39;0,15;50,62;16,67;0;United Kingdom;Western Europe;"Liverpool University Press";"1991, 2013, 2016, 2018-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +27946;21101169019;"Quien";journal;"2443972X, 29524946";"Asociacion Espanola de Personalismo";Yes;Yes;0,123;Q3;3;21;44;507;8;42;0,23;24,14;21,43;0;Spain;Western Europe;"Asociacion Espanola de Personalismo";"2020-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +27947;21100937889;"Scripta Mediaevalia";journal;"18518753, 23624868";"Editorial de la Facultad de Filosofia y Letras de la Universidad Nacional de Cuyo";Yes;Yes;0,123;Q3;2;21;34;679;7;34;0,20;32,33;25,00;0;Argentina;Latin America;"Editorial de la Facultad de Filosofia y Letras de la Universidad Nacional de Cuyo";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +27948;21101038743;"Shodoznavstvo";journal;"24158712, 1682671X";"A. Yu. Krymskyi Institute of Oriental Studies of the National Academy of Sciences of Ukraine";No;No;0,123;Q3;2;14;44;765;7;42;0,11;54,64;25,00;0;Ukraine;Eastern Europe;"A. Yu. Krymskyi Institute of Oriental Studies of the National Academy of Sciences of Ukraine";"2019-2025";"Archeology (arts and humanities) (Q3); History (Q3); Linguistics and Language (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +27949;17600155045;"Staps";journal;"17821568, 0247106X";"De Boeck Supérieur";No;No;0,123;Q3;13;21;82;940;17;77;0,18;44,76;29,17;0;Belgium;Western Europe;"De Boeck Supérieur";"2001-2022, 2024-2025";"Cultural Studies (Q3); History (Q3); Anthropology (Q4); Education (Q4); Multidisciplinary (Q4); Psychology (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Multidisciplinary; Psychology; Social Sciences" +27950;21100464920;"Storia del Pensiero Politico";journal;"26120968, 22799818";"Societa Editrice Il Mulino";No;No;0,123;Q3;3;21;112;1478;6;111;0,06;70,38;47,37;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2016-2025";"History (Q3); Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +27951;16100154796;"Studi Etruschi";journal;"22844821, 03917762";"Giorgio Bretschneider";No;No;0,123;Q3;7;10;35;677;5;32;0,17;67,70;76,92;0;Italy;Western Europe;"Giorgio Bretschneider";"2002-2009, 2014-2024";"Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +27952;21101007412;"Studia Universitatis Babes-Bolyai Theologia Reformata Transylvanica";journal;"20659482, 15825418";"Babes-Bolyai University";Yes;Yes;0,123;Q3;1;50;120;1504;4;117;0,01;30,08;39,29;0;Romania;Eastern Europe;"Babes-Bolyai University";"2019-2025";"Religious Studies (Q3)";"Arts and Humanities" +27953;21100938254;"Studies in Chinese Religions";journal;"23729988, 23729996";"Routledge";No;No;0,123;Q3;7;9;53;670;11;53;0,14;74,44;33,33;0;United Kingdom;Western Europe;"Routledge";"2015-2025";"Religious Studies (Q3)";"Arts and Humanities" +27954;5800224144;"Zeitschrift fur Evangelische Ethik";journal;"2197912X, 00442674";"Guetersloher Verlagshaus";No;No;0,123;Q3;5;24;97;813;3;69;0,02;33,88;26,09;0;Germany;Western Europe;"Guetersloher Verlagshaus";"2002-2026";"Religious Studies (Q3)";"Arts and Humanities" +27955;21101158852;"Almanac of Clinical Medicine";journal;"25879294, 20720505";"Moscow Regional Research and Clinical Institute";Yes;Yes;0,123;Q4;7;25;149;821;46;149;0,35;32,84;63,43;0;Russian Federation;Eastern Europe;"Moscow Regional Research and Clinical Institute";"2019-2025";"Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine" +27956;13673;"Biologist";journal;"25165151, 00063347";"Royal Society of Biology";No;No;0,123;Q4;26;29;71;114;2;21;0,02;3,93;0,00;0;United Kingdom;Western Europe;"Royal Society of Biology";"1988, 1991-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +27957;3100147503;"Bioscene";journal;"15392422";"Association of College and Univesity Biology Educators";No;No;0,123;Q4;11;0;21;0;4;19;0,15;0,00;0,00;0;United States;Northern America;"Association of College and Univesity Biology Educators";"2004-2024";"Agricultural and Biological Sciences (miscellaneous) (Q4); Education (Q4)";"Agricultural and Biological Sciences; Social Sciences" +27958;21100223327;"Calitatea Vietii";journal;"18445292, 10180389";"Publishing House of the Romanian Academy";Yes;No;0,123;Q4;8;16;49;600;21;43;0,34;37,50;55,56;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2012-2025";"Health (social science) (Q4); Life-span and Life-course Studies (Q4); Sociology and Political Science (Q4)";"Social Sciences" +27959;21101294937;"Chinese Journal of Clinical Pharmacology and Therapeutics";journal;"10092501";"";No;No;0,123;Q4;6;160;531;6112;121;530;0,24;38,20;47,02;0;China;Asiatic Region;"";"2021-2025";"Drug Discovery (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +27960;3200147821;"Chinese Journal of Emergency Medicine";journal;"16710282";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,123;Q4;8;114;442;2888;88;438;0,16;25,33;43,80;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2006-2026";"Emergency Medicine (Q4); Emergency Nursing (Q4)";"Medicine; Nursing" +27961;21101058177;"Chinese Journal of Endocrine Surgery";journal;"16746090";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,123;Q4;6;155;400;2624;72;400;0,20;16,93;45,25;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2026";"Endocrinology, Diabetes and Metabolism (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)";"Medicine" +27962;21101297246;"CISCI - Conferencia Iberoamericana en Sistemas, Cibernetica e Informatica";journal;"28317270";"International Institute of Informatics and Cybernetics";No;No;0,123;Q4;1;64;74;1110;2;72;0,03;17,34;33,61;0;United States;Northern America;"International Institute of Informatics and Cybernetics";"2024-2025";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Information Systems (Q4)";"Computer Science" +27963;21100427626;"East Asian Publishing and Society";journal;"22106278, 22106286";"Brill Academic Publishers";No;No;0,123;Q4;5;6;23;304;2;21;0,00;50,67;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2025";"Communication (Q4); Library and Information Sciences (Q4); Media Technology (Q4)";"Engineering; Social Sciences" +27964;21101301820;"Energy Systems Research";journal;"26189992";"FSBSI L A Melentiev Institute of Power Engineering Systems Siberian Branch of the Russian Academy of Sciences";No;No;0,123;Q4;5;36;96;1131;23;96;0,21;31,42;28,75;0;Russian Federation;Eastern Europe;"FSBSI L A Melentiev Institute of Power Engineering Systems Siberian Branch of the Russian Academy of Sciences";"2021-2025";"Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +27965;19700186953;"Enterprise Development and Microfinance";journal;"17551978, 17551986";"Practical Action Publishing";No;No;0,123;Q4;22;41;36;1306;18;29;0,00;31,85;40,00;0;United Kingdom;Western Europe;"Practical Action Publishing";"2007-2022, 2024-2025";"Development (Q4); Geography, Planning and Development (Q4)";"Social Sciences" +27966;21101056817;"Functional Differential Equations";journal;"07931786, 26178605";"Ariel University Press";No;No;0,123;Q4;3;9;39;151;4;39;0,07;16,78;14,29;0;Israel;Middle East;"Ariel University Press";"2019-2025";"Control and Optimization (Q4); Electronic, Optical and Magnetic Materials (Q4); Mathematical Physics (Q4); Numerical Analysis (Q4)";"Materials Science; Mathematics" +27967;18599;"Gorteria: Tijdschrift voor Onderzoek aan de Wilde Flora";journal;"25428578, 00172294";"Naturalis Biodiversity Center";No;No;0,123;Q4;9;7;29;232;5;28;0,26;33,14;14,29;0;Netherlands;Western Europe;"Naturalis Biodiversity Center";"1988-2020, 2022-2025";"Plant Science (Q4)";"Agricultural and Biological Sciences" +27968;60978;"Human Evolution";journal;"03939375, 1824310X";"Angelo Pontecorboli Editore";No;No;0,123;Q4;20;13;46;724;5;43;0,11;55,69;50,00;0;Italy;Western Europe;"Angelo Pontecorboli Editore";"1986-2017, 2019-2025";"Anthropology (Q4)";"Social Sciences" +27969;65029;"Hygiene + Medizin";journal;"01723790";"mhp-Verlag GmbH";No;No;0,123;Q4;13;56;271;362;9;196;0,03;6,46;58,33;0;Germany;Western Europe;"mhp-Verlag GmbH";"1980-2026";"Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +27970;21101264447;"IEEE Information Technology, Networking, Electronic and Automation Control Conference, ITNEC";journal;"26933128, 26933136";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,123;Q4;3;0;364;0;113;362;0,31;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Control and Optimization (Q4); Electrical and Electronic Engineering (Q4); Information Systems (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences; Engineering; Mathematics" +27971;21101095658;"Indian Journal of Law and Justice";journal;"09763570";"Department of Law, University of North Bengal";No;No;0,123;Q4;3;13;122;523;29;112;0,15;40,23;33,33;0;India;Asiatic Region;"Department of Law, University of North Bengal";"2019-2025";"Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +27972;5800208091;"Information Design Journal";journal;"01425471, 1569979X";"John Benjamins Publishing Company";No;No;0,123;Q4;24;1;47;4;16;40;0,07;4,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1979-1984, 1986-1987, 1989-1991, 1993-1996, 1998, 2000-2011, 2013-2014, 2016-2019, 2021-2026";"Library and Information Sciences (Q4)";"Social Sciences" +27973;21101284790;"International Conference on Engineering and Emerging Technologies, ICEET";journal;"28313682, 24092983";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,123;Q4;2;0;147;0;51;145;0,35;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Engineering (miscellaneous) (Q4); Hardware and Architecture (Q4); Instrumentation (Q4); Signal Processing (Q4); Software (Q4)";"Computer Science; Engineering; Physics and Astronomy" +27974;21101278422;"International Conference on Intelligent Informatics and BioMedical Sciences, ICIIBMS";journal;"30661110, 21898723";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,123;Q4;2;106;168;1791;63;167;0,38;16,90;32,41;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Biomedical Engineering (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Information Systems (Q4); Information Systems and Management (Q4); Safety, Risk, Reliability and Quality (Q4)";"Computer Science; Decision Sciences; Engineering" +27975;21101278424;"International Conference on Renewable Energy and Power Engineering, REPE";journal;"27717011, 2771702X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,123;Q4;2;0;70;0;19;68;0,27;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Control and Optimization (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4); Safety, Risk, Reliability and Quality (Q4)";"Energy; Engineering; Mathematics" +27976;21100198552;"International Journal of Applied Cryptography";journal;"17530571, 17530563";"Inderscience";No;No;0,123;Q4;20;5;16;149;4;16;0,33;29,80;21,43;0;Switzerland;Western Europe;"Inderscience";"2008-2010, 2012-2014, 2017, 2020, 2022, 2024-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Networks and Communications (Q4)";"Computer Science; Mathematics" +27977;21101300198;"IP Indian Journal of Immunology and Respiratory Medicine";journal;"25814214, 25814222";"IP Innovative Publication Pvt. Ltd.";No;No;0,123;Q4;3;33;106;804;27;88;0,29;24,36;38,38;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2021-2025";"Immunology and Allergy (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +27978;17300154983;"Israel Economic Review";journal;"07920385";"Bank of Israel";No;No;0,123;Q4;9;7;14;237;4;13;0,27;33,86;11,11;0;Israel;Middle East;"Bank of Israel";"2008-2016, 2018-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +27979;21101176794;"Journal of Molecular Science";journal;"10009035";"Department of Chemistry, Northeast Normal University";No;No;0,123;Q4;5;33;188;1098;41;188;0,29;33,27;53,15;0;China;Asiatic Region;"Department of Chemistry, Northeast Normal University";"2019-2025";"Chemistry (miscellaneous) (Q4); Inorganic Chemistry (Q4); Organic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry" +27980;19900191882;"Journal of Sciences, Islamic Republic of Iran";journal;"10161104";"University of Tehran";Yes;Yes;0,123;Q4;17;6;68;196;21;68;0,14;32,67;20,00;0;Iran;Middle East;"University of Tehran";"2011-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +27981;21101294504;"Journal of the Anthropological Society of Oxford";journal;"20401876";"University of Oxford School of Anthropology and Museum Ethnography";No;No;0,123;Q4;2;7;27;306;6;23;0,24;43,71;57,14;0;United Kingdom;Western Europe;"University of Oxford School of Anthropology and Museum Ethnography";"2021-2025";"Anthropology (Q4)";"Social Sciences" +27982;19700182652;"Journal of Tort Law";journal;"19329148, 21946515";"Walter de Gruyter GmbH";No;No;0,123;Q4;10;12;37;1906;14;37;0,37;158,83;41,18;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2006, 2010-2026";"Law (Q4)";"Social Sciences" +27983;19400157203;"Journal of WSCG";journal;"12136964, 12136972";"University of West Bohemia";Yes;No;0,123;Q4;14;11;73;393;30;73;0,59;35,73;18,18;0;Czech Republic;Eastern Europe;"University of West Bohemia";"2009-2025";"Computational Mathematics (Q4); Computer Graphics and Computer-Aided Design (Q4); Software (Q4)";"Computer Science; Mathematics" +27984;21101041821;"Kazan Medical Journal";journal;"03684814, 25879359";"Eco-Vector LLC";Yes;No;0,123;Q4;7;102;335;3236;91;335;0,31;31,73;50,69;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +27985;21101365824;"Law. Human. Environment";journal;"26631350, 26631369";"National University of Life and Environmental Sciences of Ukraine";Yes;No;0,123;Q4;6;35;96;1899;59;96;0,85;54,26;35,94;0;Ukraine;Eastern Europe;"National University of Life and Environmental Sciences of Ukraine";"2021-2025";"Law (Q4); Management, Monitoring, Policy and Law (Q4); Public Administration (Q4)";"Environmental Science; Social Sciences" +27986;11200153516;"Mathematische Semesterberichte";journal;"0720728X, 14321815";"Springer Verlag";No;No;0,123;Q4;8;12;25;328;8;25;0,54;27,33;13,64;0;Germany;Western Europe;"Springer Verlag";"1992-1994, 2005-2026";"Mathematics (miscellaneous) (Q4)";"Mathematics" +27987;21101088828;"Monitoring and Analysis of Manufacturing Processes in Automotive Production";book series;"26293161";"RAM-Verlag";No;No;0,123;Q4;1;6;12;74;2;7;0,00;12,33;0,00;0;Germany;Western Europe;"RAM-Verlag";"2019, 2021-2025";"Automotive Engineering (Q4); Control and Systems Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +27988;19700187910;"Neutron News";journal;"19317352, 10448632";"Gordon and Breach Science Publishers";No;No;0,123;Q4;28;8;66;110;11;53;0,06;13,75;6,06;0;Switzerland;Western Europe;"Gordon and Breach Science Publishers";"1990-2025";"Atomic and Molecular Physics, and Optics (Q4); Nuclear and High Energy Physics (Q4)";"Physics and Astronomy" +27989;19700174803;"Onkologia i Radioterapia";journal;"24499161, 18968961";"Medical Project Poland";Yes;No;0,123;Q4;6;51;446;1008;81;444;0,16;19,76;46,76;0;Poland;Eastern Europe;"Medical Project Poland";"2010-2025";"Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +27990;21101045278;"Otorhinolaryngology (Italy)";journal;"27246302, 27246760";"Edizioni Minerva Medica";No;No;0,123;Q4;9;20;87;576;10;82;0,08;28,80;38,04;0;Italy;Western Europe;"Edizioni Minerva Medica";"2020-2025";"Otorhinolaryngology (Q4); Surgery (Q4)";"Medicine" +27991;23317;"Polarforschung";journal;"00322490";"Copernicus Publications";Yes;Yes;0,123;Q4;31;0;20;0;2;20;0,08;0,00;0,00;0;Germany;Western Europe;"Copernicus Publications";"1978-1980, 1982, 1984-1985, 1988-1990, 1992-1997, 1999-2006, 2008-2014, 2016-2018, 2021-2024";"Oceanography (Q4)";"Earth and Planetary Sciences" +27992;21101034401;"Proceedings of the National Academy of Sciences of Belarus, Chemical Series";journal;"15618331, 25242342";"Publishing House Belaruskaya Navuka";No;No;0,123;Q4;5;33;112;718;20;112;0,19;21,76;50,78;0;Belarus;Eastern Europe;"Publishing House Belaruskaya Navuka";"2019-2025";"Analytical Chemistry (Q4); Chemistry (miscellaneous) (Q4); Inorganic Chemistry (Q4); Organic Chemistry (Q4)";"Chemistry" +27993;53718;"Rentgenologiya i Radiologiya";journal;"0486400X";"Izdatelstvo Medicina i Fizkultura";No;No;0,123;Q4;2;24;79;549;2;77;0,04;22,88;54,17;0;Bulgaria;Eastern Europe;"Izdatelstvo Medicina i Fizkultura";"1972-1991, 1996-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +27994;21101147597;"Revista Brasileira de Meio Ambiente";journal;"25954431";"Reativar Ambiental";Yes;Yes;0,123;Q4;5;25;111;1230;38;110;0,30;49,20;36,00;0;Brazil;Latin America;"Reativar Ambiental";"2019-2026";"Education (Q4); Environmental Science (miscellaneous) (Q4)";"Environmental Science; Social Sciences" +27995;7500153124;"Revista Ciencias de la Salud";journal;"21454507, 16927273";"Universidad del Rosario";Yes;Yes;0,123;Q4;15;38;102;1478;26;95;0,23;38,89;54,29;0;Colombia;Latin America;"Universidad del Rosario";"2007-2025";"Health Policy (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Social Sciences" +27996;19200157024;"Revista Latinoamericana de Psicopatologia Fundamental";journal;"19840381, 14154714";"Associacao Universitaria de Pesquisa em Psicopatologia Fundamental";Yes;Yes;0,123;Q4;11;46;127;1530;12;113;0,06;33,26;55,41;0;Brazil;Latin America;"Associacao Universitaria de Pesquisa em Psicopatologia Fundamental";"2008-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +27997;91409;"Revista Mexicana de Angiologia";journal;"2696130X, 03774740";"Permanyer Publications";Yes;Yes;0,123;Q4;5;26;69;410;12;63;0,16;15,77;40,71;0;Spain;Western Europe;"Permanyer Publications";"1976-1978, 2008-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +27998;90851;"Revista Mexicana de Urologia";journal;"20074085, 01854542";"Sociedad Mexicana de Urologia. Colegio de Profesionistas A.C.";No;Yes;0,123;Q4;6;31;130;686;8;120;0,05;22,13;25,60;0;Mexico;Latin America;"Sociedad Mexicana de Urologia. Colegio de Profesionistas A.C.";"1945-1946, 1948-1949, 1961-1965, 2014-2026";"Urology (Q4)";"Medicine" +27999;16900154705;"Revue du Podologue";journal;"17667313";"Elsevier Masson s.r.l.";No;No;0,123;Q4;2;57;170;477;3;116;0,02;8,37;36,73;1;France;Western Europe;"Elsevier Masson s.r.l.";"2007-2026";"Podiatry (Q4)";"Health Professions" +28000;100754;"Rinsan Shikenj Oha/Journal of the Hokkaido Forest Products Research Institute";journal;"0913140X";"Hoikkaido Forest Products Research Institute";No;No;0,123;Q4;5;3;17;22;2;17;0,09;7,33;20,00;0;Japan;Asiatic Region;"Hoikkaido Forest Products Research Institute";"1999-2013, 2015-2018, 2020-2025";"Forestry (Q4); Materials Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Materials Science" +28001;19200;"Semiconductors and Semimetals";book series;"00808784";"Academic Press Inc.";No;No;0,123;Q4;38;15;56;1727;43;9;0,94;115,13;21,74;0;United States;Northern America;"Academic Press Inc.";"1966-1968, 1970-1972, 1975, 1977-1979, 1981, 1983-1985, 1987-1988, 1990-1995, 1997-1999, 2001, 2003-2004, 2007-2008, 2010-2025";"Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science; Physics and Astronomy" +28002;21101201216;"South Sudan Medical Journal";journal;"23094613, 23094605";"Health and Social Sciences Research Institute - South Sudan (HSSRI-SS)";Yes;Yes;0,123;Q4;5;47;128;538;23;96;0,17;11,45;20,00;0;Sudan;Africa;"Health and Social Sciences Research Institute - South Sudan (HSSRI-SS)";"2020-2026";"Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine" +28003;144795;"Speciality Petrochemicals";journal;"10039384";"SINOPEC";No;No;0,123;Q4;6;69;321;735;61;321;0,23;10,65;36,63;0;China;Asiatic Region;"SINOPEC";"2005-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Energy Engineering and Power Technology (Q4); Fuel Technology (Q4)";"Chemical Engineering; Chemistry; Energy" +28004;21100216303;"Springer Series in Geomechanics and Geoengineering";book series;"18668755, 18668763";"Springer Verlag";No;No;0,123;Q4;19;1037;2356;16895;343;2305;0,16;16,29;32,22;0;Germany;Western Europe;"Springer Verlag";"2008, 2010-2011, 2013-2015, 2017-2026";"Geotechnical Engineering and Engineering Geology (Q4); Mechanics of Materials (Q4)";"Earth and Planetary Sciences; Engineering" +28005;25880;"Techniques - Sciences - Methodes";journal;"02997258";"Assoc. Generale des Hygienistes et Techniciens Municipaux";No;No;0,123;Q4;11;21;140;617;13;134;0,13;29,38;33,77;0;France;Western Europe;"Assoc. Generale des Hygienistes et Techniciens Municipaux";"1987-1989, 1991-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Fluid Flow and Transfer Processes (Q4); Ocean Engineering (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Chemical Engineering; Engineering; Environmental Science" +28006;28647;"Urogynaecologia International Journal";journal;"20388314, 11213086";"Page Press Publications";Yes;Yes;0,123;Q4;8;7;28;106;5;28;0,24;15,14;41,18;0;Italy;Western Europe;"Page Press Publications";"1995-2014, 2016-2017, 2019, 2021-2025";"Obstetrics and Gynecology (Q4); Urology (Q4)";"Medicine" +28007;19500157308;"Zeitschrift fur die gesamte Versicherungswissenschaft";journal;"00442585, 18659748";"Duncker und Humblot GmbH";Yes;Yes;0,123;Q4;13;14;51;579;15;50;0,17;41,36;27,27;0;Germany;Western Europe;"Duncker und Humblot GmbH";"1979-1996, 2005-2006, 2008-2025";"Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +28008;31921;"International SAMPE Technical Conference";conference and proceedings;"08922624";"Soc. for the Advancement of Material and Process Engineering";No;No;0,123;-;25;97;395;1550;62;390;0,17;15,98;19,80;0;United States;Northern America;"Soc. for the Advancement of Material and Process Engineering";"1988, 1991, 1994-2001, 2004-2014, 2016-2025";"Materials Science (miscellaneous); Mechanical Engineering; Mechanics of Materials";"Engineering; Materials Science" +28009;21101189817;"Proceedings of the International Conference on Modeling and Applied Simulation, MAS";conference and proceedings;"27240037";"Cal-Tek srl";No;No;0,123;-;2;0;48;0;15;46;0,31;0,00;0,00;0;Italy;Western Europe;"Cal-Tek srl";"2023-2024";"Modeling and Simulation";"Mathematics" +28010;21100900000;"Recent Advances in Slavonic Natural Language Processing";conference and proceedings;"23364289";"Tribun EU s. r. o.";No;No;0,123;-;6;20;61;270;10;55;0,11;13,50;29,63;0;Czech Republic;Eastern Europe;"Tribun EU s. r. o.";"2017-2025";"Artificial Intelligence; Computational Theory and Mathematics; Information Systems; Software";"Computer Science" +28011;5800207671;"Acta Baltico-Slavica";journal;"00651044, 23922389";"Polish Academy of Sciences, Institute of Slavic Studies";Yes;Yes;0,122;Q2;5;17;32;1099;6;32;0,05;64,65;73,91;0;Poland;Eastern Europe;"Polish Academy of Sciences, Institute of Slavic Studies";"2011-2025";"Literature and Literary Theory (Q2); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28012;5800207689;"Anglia";journal;"18658938, 03405222";"Walter de Gruyter GmbH";No;No;0,122;Q2;15;36;109;1577;11;107;0,08;43,81;51,28;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1878-1886, 1888-1889, 1891-1899, 1901-1942, 1944, 1950-1951, 1953-1999, 2001-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28013;5900152885;"Burlington Magazine";journal;"20449925, 00076287";"Burlington Magazine Publications Ltd.";No;No;0,122;Q2;12;75;173;3108;11;139;0,06;41,44;47,22;0;United Kingdom;Western Europe;"Burlington Magazine Publications Ltd.";"1980, 2002-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +28014;22942;"Byzantinische Zeitschrift";journal;"00077704, 18689027";"Walter de Gruyter GmbH";No;No;0,122;Q2;17;15;78;1538;21;78;0,20;102,53;33,33;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1892-1913, 1919, 1924-1928, 1930-1942, 1950-1972, 1974-1990, 1992, 1994-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); History (Q3)";"Arts and Humanities" +28015;21100935007;"Critical Studies in Men's Fashion";journal;"20500718, 2050070X";"Intellect Ltd.";No;No;0,122;Q2;5;15;47;410;6;40;0,06;27,33;56,25;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +28016;21101132308;"Cuadernos de Investigacion Filologica";journal;"02110547, 1699292X";"University of La Rioja";Yes;Yes;0,122;Q2;2;15;39;507;7;39;0,17;33,80;38,89;0;Spain;Western Europe;"University of La Rioja";"2019-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28017;21101027516;"Dancecult";journal;"19475403";"University of Huddersfield";Yes;Yes;0,122;Q2;15;8;29;346;10;23;0,40;43,25;54,55;0;United Kingdom;Western Europe;"University of Huddersfield";"2009-2025";"Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Music (Q3)";"Arts and Humanities; Social Sciences" +28018;16100154763;"Esprit Createur";journal;"00140767, 19310234";"Johns Hopkins University Press";No;No;0,122;Q2;13;31;126;772;17;120;0,14;24,90;56,25;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28019;5800207799;"Fluminensia";journal;"03534642";"University of Rijeka";Yes;Yes;0,122;Q2;10;11;77;433;14;71;0,17;39,36;80,00;0;Croatia;Eastern Europe;"University of Rijeka";"2011-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28020;21101181925;"Global South";journal;"19328656, 19328648";"Indiana University Press";No;No;0,122;Q2;3;15;98;900;10;28;0,44;60,00;78,57;0;United States;Northern America;"Indiana University Press";"2019-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +28021;19300156908;"Henry James Review";journal;"10806555, 02730340";"Johns Hopkins University Press";No;No;0,122;Q2;13;12;58;454;7;55;0,13;37,83;33,33;0;United States;Northern America;"Johns Hopkins University Press";"2002-2026";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28022;21100244834;"International Journal of Literary Humanities";journal;"23277912, 23278676";"Common Ground Research Networks";No;No;0,122;Q2;4;51;102;1689;18;102;0,22;33,12;62,07;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28023;13765;"Journal for Eighteenth-Century Studies";journal;"17540208, 17540194";"Wiley-Blackwell Publishing Ltd";No;No;0,122;Q2;16;25;75;0;19;74;0,30;0,00;65,38;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1972-1973, 1975-1995, 2009-2026";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28024;21100925891;"Journal of Early Modern Studies";journal;"22797149";"Firenze University Press";Yes;Yes;0,122;Q2;4;13;43;763;12;38;0,23;58,69;66,67;0;Italy;Western Europe;"Firenze University Press";"2019-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3); Religious Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28025;15707;"Journal of Popular Culture";journal;"15405931, 00223840";"Wiley-Blackwell Publishing Ltd";No;No;0,122;Q2;36;19;131;891;47;125;0,46;46,89;55,00;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1967-2026";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); History (Q3)";"Arts and Humanities" +28026;17700155703;"Revista 180";journal;"07182309";"Universidad Diego Portales";Yes;Yes;0,122;Q2;9;15;68;416;9;63;0,12;27,73;22,58;0;Chile;Latin America;"Universidad Diego Portales";"2005-2025";"Visual Arts and Performing Arts (Q2); Architecture (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +28027;5700153410;"Slavic and East European Journal";journal;"00376752";"American Association of Teachers of Slavic and East European Languages";No;No;0,122;Q2;11;17;165;744;12;164;0,05;43,76;58,82;0;United States;Northern America;"American Association of Teachers of Slavic and East European Languages";"2009-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28028;17867;"Studies in Romanticism";journal;"00393762";"John Hopkins University";No;No;0,122;Q2;20;8;88;221;23;83;0,16;27,63;42,86;0;United States;Northern America;"John Hopkins University";"1964, 1977, 2002-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28029;5800169338;"T'oung Pao";journal;"15685322, 00825433";"Brill Academic Publishers";No;No;0,122;Q2;14;17;47;2608;11;47;0,10;153,41;23,53;0;Netherlands;Western Europe;"Brill Academic Publishers";"1890-1891, 1897, 1899-1901, 1907, 1909, 1916, 1918, 1920, 1924-1925, 1929, 1931, 1933-1934, 1939-1940, 1947, 1950, 1953, 1956-1958, 1960, 1962-1966, 1968-1971, 1973-1979, 1981-1982, 1984-1993, 1995-1997, 2007-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities; Social Sciences" +28030;16300154768;"American Music";journal;"07344392";"University of Illinois Press";No;No;0,122;Q3;14;0;100;0;14;93;0,07;0,00;0,00;0;United States;Northern America;"University of Illinois Press";"2002-2024";"Music (Q3)";"Arts and Humanities" +28031;21100330730;"Archivum Franciscanum Historicum";book series;"00040665";"Collegio San Bonaventura";No;No;0,122;Q3;5;5;78;267;6;77;0,13;53,40;0,00;0;Italy;Western Europe;"Collegio San Bonaventura";"1978, 2011, 2013-2014, 2016-2025";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +28032;21101063834;"Arqueologia y Territorio Medieval";journal;"11343184, 23865423";"Universidad de Jaen";Yes;Yes;0,122;Q3;5;19;34;1097;10;34;0,28;57,74;26,67;0;Spain;Western Europe;"Universidad de Jaen";"2019-2025";"Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities" +28033;24053;"College English";journal;"00100994, 21618178";"National Council of Teachers of English";No;No;0,122;Q3;33;4;98;196;22;74;0,15;49,00;0,00;0;United States;Northern America;"National Council of Teachers of English";"2004-2025";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +28034;21100873331;"Debats";journal;"02120585, 25303074";"Institucio Alfons el Magnanim-Centre Valencia d'Estudis i d'Investigacio. Diputacio de Valencia";Yes;Yes;0,122;Q3;5;14;63;169;28;59;0,48;12,07;25,00;0;Spain;Western Europe;"Institucio Alfons el Magnanim-Centre Valencia d'Estudis i d'Investigacio. Diputacio de Valencia";"2018-2025";"Cultural Studies (Q3); Sociology and Political Science (Q4)";"Social Sciences" +28035;21101068031;"Emotions: History, Culture, Society";journal;"22067485, 2208522X";"Brill Academic Publishers";No;No;0,122;Q3;7;16;53;1348;28;50;0,44;84,25;30,77;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2026";"Cultural Studies (Q3); History (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28036;24967;"Estudios de Cultura Nahuatl";journal;"00711675";"Universidad Nacional Autonoma de Mexico";No;No;0,122;Q3;6;19;81;787;12;70;0,12;41,42;60,00;1;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1971-1972, 2014-2017, 2019-2026";"History (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +28037;21100202947;"History of Economic Ideas";journal;"11228792, 17242169";"Fabrizio Serra Editore Srl";No;No;0,122;Q3;10;9;90;841;16;85;0,20;93,44;11,11;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2011-2025";"History (Q3); Economics and Econometrics (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +28038;21100223127;"Intersezioni";journal;"03932451, 19738196";"Societa Editrice Il Mulino";No;No;0,122;Q3;5;21;62;1328;5;61;0,12;63,24;40,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1981-1983, 1987-1989, 1997-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +28039;21101295708;"IS and T Archiving Conference, ARCHIVING";journal;"21683204, 21618798";"Society for Imaging Science and Technology";No;No;0,122;Q3;3;7;75;19;21;71;0,28;2,71;50,00;0;United States;Northern America;"Society for Imaging Science and Technology";"2023-2025";"Archeology (arts and humanities) (Q3); Conservation (Q3); History (Q3); Museology (Q3); Electrical and Electronic Engineering (Q4); Software (Q4)";"Arts and Humanities; Computer Science; Engineering" +28040;36694;"Journal de la Societe des Americanistes";journal;"19577842, 00379174";"Maison Rene-Ginouves (Archeologie et Ethnologie)";Yes;Yes;0,122;Q3;11;4;69;322;8;68;0,06;80,50;33,33;0;France;Western Europe;"Maison Rene-Ginouves (Archeologie et Ethnologie)";"1980, 1984, 2011-2025";"Cultural Studies (Q3); Anthropology (Q4)";"Social Sciences" +28041;21101007465;"Journal of New Zealand Studies";journal;"1176306X, 23243740";"Stout Research Centre, Victoria University of Wellington";No;No;0,122;Q3;4;16;53;1402;12;46;0,19;87,63;21,43;0;New Zealand;Pacific Region;"Stout Research Centre, Victoria University of Wellington";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28042;19700187802;"Liturgy";journal;"0458063X, 15573001";"Taylor and Francis Ltd.";No;No;0,122;Q3;7;26;97;569;11;52;0,14;21,88;43,48;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2025";"Religious Studies (Q3)";"Arts and Humanities" +28043;21100239208;"Philosophie";journal;"02941805";"Les Editions de Minuit";No;No;0,122;Q3;4;0;42;0;5;37;0,15;0,00;0,00;0;France;Western Europe;"Les Editions de Minuit";"2011-2024";"Philosophy (Q3)";"Arts and Humanities" +28044;21101199903;"Revista Brasileira de Historia da Ciencia";journal;"19834713, 21763275";"Sociedade Brasileira de Historia da Ciencia";Yes;Yes;0,122;Q3;3;34;113;1519;14;103;0,06;44,68;38,24;0;Brazil;Latin America;"Sociedade Brasileira de Historia da Ciencia";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities" +28045;27133;"Rivista di Estetica";journal;"00356212";"Rosenberg and Sellier";Yes;Yes;0,122;Q3;11;13;117;427;13;108;0,11;32,85;84,62;0;Italy;Western Europe;"Rosenberg and Sellier";"1966, 2013-2025";"Philosophy (Q3)";"Arts and Humanities" +28046;21100265667;"Signos Historicos";journal;"16654420";"Universidad Autonoma Metropolitana";Yes;No;0,122;Q3;6;2;66;0;9;64;0,14;0,00;0,00;0;Mexico;Latin America;"Universidad Autonoma Metropolitana";"2013-2014, 2017-2025";"History (Q3)";"Arts and Humanities" +28047;5700160975;"Studia Ethnologica Croatica";journal;"13303627";"Department of Ethnology and Cultural Anthropology Faculty of Humanities and Social Sciences, Univeristy of Zagreb";Yes;Yes;0,122;Q3;6;19;41;670;10;39;0,24;35,26;55,00;0;Croatia;Eastern Europe;"Department of Ethnology and Cultural Anthropology Faculty of Humanities and Social Sciences, Univeristy of Zagreb";"2015-2025";"Cultural Studies (Q3); Anthropology (Q4)";"Social Sciences" +28048;21101040617;"Teanga";journal;"25656325, 0332205X";"The Irish Association for Applied Linguistics";Yes;Yes;0,122;Q3;5;15;34;549;6;27;0,16;36,60;76,19;0;Ireland;Western Europe;"The Irish Association for Applied Linguistics";"2018-2025";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +28049;21101048376;"Zeitschrift fur Praktische Philosophie";journal;"24099961";"University of Salzburg";Yes;Yes;0,122;Q3;4;19;113;720;27;107;0,25;37,89;50,00;0;Austria;Western Europe;"University of Salzburg";"2019-2026";"Philosophy (Q3)";"Arts and Humanities" +28050;21101115808;"Acta Colombiana de Cuidado Intensivo";journal;"01227262, 27730697";"Asociacion Colombiana de Medicina Critica y Cuidado lntensivo";No;No;0,122;Q4;7;84;184;2685;29;181;0,13;31,96;36,04;0;Spain;Western Europe;"Asociacion Colombiana de Medicina Critica y Cuidado lntensivo";"2015-2026";"Advanced and Specialized Nursing (Q4); Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4); Critical Care Nursing (Q4)";"Medicine; Nursing" +28051;12000154490;"Agora";journal;"15161498, 18094414";"Instituto de Psicologia da Universidade Federal do Rio de Janeiro - UFRJ";Yes;Yes;0,122;Q4;5;17;77;458;11;75;0,13;26,94;42,86;0;Brazil;Latin America;"Instituto de Psicologia da Universidade Federal do Rio de Janeiro - UFRJ";"2008-2025";"Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4)";"Medicine; Psychology" +28052;21101325316;"Archive of Ukrainian Ophthalmology";journal;"23098147, 23112999";"Zaslavsky Publishing House";No;No;0,122;Q4;2;34;89;851;14;89;0,16;25,03;65,38;0;Ukraine;Eastern Europe;"Zaslavsky Publishing House";"2021-2025";"Ophthalmology (Q4)";"Medicine" +28053;21101278637;"Asia Pacific Journal of International Humanitarian Law";journal;"27991725, 27191141";"Institute of International Legal Studies";No;No;0,122;Q4;2;5;16;180;4;12;0,33;36,00;33,33;0;Philippines;Asiatic Region;"Institute of International Legal Studies";"2021-2025";"Law (Q4)";"Social Sciences" +28054;21101059299;"Asian Journal of Legal Education";journal;"23482451, 23220058";"SAGE Publications Inc.";No;No;0,122;Q4;6;16;47;1037;28;46;0,69;64,81;62,50;0;United States;Northern America;"SAGE Publications Inc.";"2014-2026";"Development (Q4); Education (Q4); Law (Q4)";"Social Sciences" +28055;21100204309;"Avances en Quimica";journal;"18565301";"Universidad de Los Andes";Yes;Yes;0,122;Q4;7;15;36;576;5;34;0,17;38,40;34,09;0;Venezuela;Latin America;"Universidad de Los Andes";"2012-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +28056;17587;"Canadian Journal of Sociology";journal;"03186431";"University of Alberta Library";Yes;No;0,122;Q4;44;0;3;0;1;3;0,33;0,00;0,00;0;Canada;Northern America;"University of Alberta Library";"1977, 1979, 1981-1982, 1984-1985, 1987, 1993-2021, 2023";"Sociology and Political Science (Q4)";"Social Sciences" +28057;21101158890;"Cardiovascular and Metabolic Science";journal;"29543835, 26832828";"Asociacion Nacional de Cardiologos de Mexico";No;Yes;0,122;Q4;3;27;92;713;19;77;0,25;26,41;23,60;0;Mexico;Latin America;"Asociacion Nacional de Cardiologos de Mexico";"2019-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28058;21100945816;"CASE Journal";journal;"15449106";"Emerald Group Publishing Ltd.";No;No;0,122;Q4;6;109;163;2084;47;157;0,38;19,12;44,17;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2004-2006, 2009, 2012, 2017-2026";"Business, Management and Accounting (miscellaneous) (Q4); Education (Q4)";"Business, Management and Accounting; Social Sciences" +28059;16600;"Ceska Radiologie";journal;"12107883";"Galen s.r.o.";No;No;0,122;Q4;7;38;81;725;8;81;0,08;19,08;30,54;0;Czech Republic;Eastern Europe;"Galen s.r.o.";"2001-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +28060;21101343519;"Chinese Journal of Bone and Joint Surgery";journal;"20959958";"";No;No;0,122;Q4;5;165;486;5148;109;486;0,22;31,20;28,38;0;China;Asiatic Region;"";"2021-2025";"Orthopedics and Sports Medicine (Q4)";"Medicine" +28061;5700165167;"Chinese Journal of Cancer Prevention and Treatment";journal;"16735269";"Chinese Journal of Cancer Prevention and Treatment, Editorial board";No;No;0,122;Q4;9;140;651;4810;156;649;0,24;34,36;41,97;0;China;Asiatic Region;"Chinese Journal of Cancer Prevention and Treatment, Editorial board";"2007-2025";"Oncology (Q4)";"Medicine" +28062;21101033833;"Chinese Journal of Inflammatory Bowel Diseases";journal;"2096367X";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,122;Q4;9;67;209;2440;68;207;0,43;36,42;50,78;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2017-2025";"Gastroenterology (Q4); Surgery (Q4)";"Medicine" +28063;21101206078;"Clinical Review for General Practice";journal;"27132552, 27825671";"LLC MMA MediaMedika";Yes;Yes;0,122;Q4;5;204;432;3287;82;414;0,21;16,11;66,04;0;Russian Federation;Eastern Europe;"LLC MMA MediaMedika";"2020-2025";"Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Immunology and Allergy (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28064;21100930074;"Computer Science Research Notes";journal;"24644625, 24644617";"University of West Bohemia";No;No;0,122;Q4;7;39;138;995;25;135;0,21;25,51;14,85;0;Czech Republic;Eastern Europe;"University of West Bohemia";"2017-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Graphics and Computer-Aided Design (Q4); Computer Vision and Pattern Recognition (Q4); Human-Computer Interaction (Q4); Psychiatry and Mental Health (Q4)";"Computer Science; Mathematics; Medicine" +28065;24457;"Dental Cadmos";journal;"00118524";"EDRA S.p.A";No;No;0,122;Q4;12;87;348;2096;46;242;0,16;24,09;48,33;0;Italy;Western Europe;"EDRA S.p.A";"1965-1991, 2007-2025";"Oral Surgery (Q4); Orthodontics (Q4)";"Dentistry" +28066;21100840135;"Economic Thought";journal;"20493509, 20556314";"World Economics Association";Yes;Yes;0,122;Q4;5;0;9;0;1;9;0,11;0,00;0,00;0;United Kingdom;Western Europe;"World Economics Association";"2017-2021, 2023";"Economics and Econometrics (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +28067;21100903446;"E-Journal of International and Comparative Labour Studies";journal;"22804056";"ADAPT University Press";Yes;No;0,122;Q4;7;7;55;868;11;55;0,22;124,00;42,86;0;Italy;Western Europe;"ADAPT University Press";"2018-2025";"Industrial Relations (Q4); Law (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Social Sciences" +28068;28656;"Geografski Vestnik";journal;"1580335X, 03503895";"Zveza geografov Slovenije";No;No;0,122;Q4;14;0;34;0;7;34;0,30;0,00;0,00;0;Slovenia;Eastern Europe;"Zveza geografov Slovenije";"1992-2024";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +28069;21100370011;"GSA Field Guides";book series;"23330945, 23330937";"Geological Society of America";No;No;0,122;Q4;22;25;41;1881;20;23;0,49;75,24;0,00;0;United States;Northern America;"Geological Society of America";"1999-2000, 2003-2014, 2016-2021, 2023-2025";"Earth-Surface Processes (Q4); Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +28070;19700201134;"Hong Kong Journal of Social Sciences";journal;"10213619";"City University of Hong Kong Press";No;No;0,122;Q4;2;0;4;0;1;4;0,00;0,00;0,00;0;Hong Kong;Asiatic Region;"City University of Hong Kong Press";"2010-2014, 2016-2022";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +28071;33335;"Huaxue Gongcheng/Chemical Engineering (China)";journal;"10059954";"Editorial Office of Chemical Engineering (China)";No;No;0,122;Q4;14;185;547;2042;144;547;0,28;11,04;35,82;0;China;Asiatic Region;"Editorial Office of Chemical Engineering (China)";"1996-2025";"Chemical Engineering (miscellaneous) (Q4)";"Chemical Engineering" +28072;21100332447;"Hydroecologie Appliquee";journal;"1958556X, 11479213";"EDP Sciences";No;No;0,122;Q4;11;1;3;69;1;3;0,00;69,00;0,00;0;France;Western Europe;"EDP Sciences";"2010, 2014, 2016-2018, 2021-2025";"Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Environmental Science" +28073;22495;"Innovations";journal;"12674982";"De Boeck Supérieur";No;No;0,122;Q4;15;0;67;0;18;65;0,23;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"2001-2024";"Economics and Econometrics (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +28074;21101051698;"Innovative Medicine of Kuban";journal;"25419897, 25000268";"";Yes;Yes;0,122;Q4;6;72;180;1814;43;180;0,26;25,19;39,44;0;Russian Federation;Eastern Europe;"";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28075;19700186834;"International Journal of Abrasive Technology";journal;"1752265X, 17522641";"Inderscience Enterprises Ltd";No;No;0,122;Q4;18;0;41;0;12;41;0,32;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2007-2024";"Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +28076;21101221657;"Journal of African Population Studies (JAPS)";journal;"29610052";"Union for African Population Studies";No;No;0,122;Q4;26;4;16;187;5;16;0,31;46,75;22,22;0;South Africa;Africa;"Union for African Population Studies";"2023-2025";"Demography (Q4)";"Social Sciences" +28077;21101248526;"Journal of Clinical Hematology";journal;"10042806";"";No;No;0,122;Q4;4;160;554;4483;103;552;0,22;28,02;53,12;0;China;Asiatic Region;"";"2020-2026";"Hematology (Q4)";"Medicine" +28078;21100841704;"Journal of Cognitive Education and Psychology";journal;"18107621, 19458959";"Springer Publishing Company";No;No;0,122;Q4;10;0;13;0;5;13;0,00;0,00;0,00;0;United States;Northern America;"Springer Publishing Company";"2008, 2017-2022";"Developmental and Educational Psychology (Q4); Education (Q4); Experimental and Cognitive Psychology (Q4)";"Psychology; Social Sciences" +28079;21101283168;"Journal of Experimental Zoology India";journal;"09761780, 09720030";"";No;No;0,122;Q4;3;228;341;6837;82;340;0,24;29,99;40,93;0;India;Asiatic Region;"";"2024-2026";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +28080;12658;"Journal of Harbin Institute of Technology (New Series)";journal;"10059113";"Harbin Institute of Technology";No;No;0,122;Q4;17;50;154;1777;49;154;0,36;35,54;32,73;0;China;Asiatic Region;"Harbin Institute of Technology";"1986, 2000-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +28081;21101243618;"Journal of Quality Measurement and Analysis";journal;"26008602, 18235670";"Penerbit Universiti Kebangsaan Malaysia";No;No;0,122;Q4;4;80;92;2881;36;92;0,39;36,01;51,10;0;Malaysia;Asiatic Region;"Penerbit Universiti Kebangsaan Malaysia";"2020-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +28082;21101343522;"Journal of Sun Yat-sen University (Medical Sciences)";journal;"16723554";"Editorial Office of Journal of Sun Yat-sen University";No;No;0,122;Q4;4;110;373;4822;99;373;0,31;43,84;50,96;0;China;Asiatic Region;"Editorial Office of Journal of Sun Yat-sen University";"2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28083;21100861113;"Kardiologija v Belarusi";journal;"24142131, 2072912X";"Professionalnye Izdaniya";No;No;0,122;Q4;4;74;212;1897;27;211;0,14;25,64;54,19;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2018-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28084;17090;"Lekarsky Obzor";journal;"04574214";"Slovenska zdravotnicka univerzita";No;No;0,122;Q4;10;70;252;1798;20;249;0,08;25,69;48,26;0;Slovakia;Eastern Europe;"Slovenska zdravotnicka univerzita";"1952-1954, 1961-1964, 1972-1994, 1999-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28085;21101268309;"M2VIP - Proceedings of the International Conference on Mechatronics and Machine Vision in Practice";journal;"29964164, 29964156";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,122;Q4;2;53;119;979;28;118;0,24;18,47;33,33;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Computer Vision and Pattern Recognition (Q4); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4); Modeling and Simulation (Q4)";"Computer Science; Engineering; Mathematics" +28086;16456;"Man-Made Textiles in India";trade journal;"03777537";"The Synthetic and Art Silk Mills Research Association";No;No;0,122;Q4;12;74;176;978;12;145;0,08;13,22;48,19;0;India;Asiatic Region;"The Synthetic and Art Silk Mills Research Association";"1989-1992, 1994-2014, 2017-2025";"Chemistry (miscellaneous) (Q4); Geotechnical Engineering and Engineering Geology (Q4); Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)";"Chemistry; Earth and Planetary Sciences; Engineering; Materials Science" +28087;21101057613;"Nephrology (Saint-Petersburg)";journal;"25419439, 15616274";"Educational Autonomous Non-Profit Organization Nephrology";No;No;0,122;Q4;7;34;135;1134;28;134;0,22;33,35;42,61;0;Russian Federation;Eastern Europe;"Educational Autonomous Non-Profit Organization Nephrology";"2019-2025";"Nephrology (Q4)";"Medicine" +28088;17946;"Neurologie und Rehabilitation";journal;"18697003, 09472177";"Hippocampus Verlag";No;No;0,122;Q4;14;21;80;971;8;69;0,08;46,24;22,22;0;Germany;Western Europe;"Hippocampus Verlag";"1997-2025";"Neurology (clinical) (Q4); Rehabilitation (Q4)";"Medicine" +28089;21101248215;"New Zealand International Research in Early Childhood Education Journal";journal;"25377191";"Office of Early Childhood Education (OECE - NZ)";No;No;0,122;Q4;3;0;17;0;7;16;0,45;0,00;0,00;0;New Zealand;Pacific Region;"Office of Early Childhood Education (OECE - NZ)";"2021-2024";"Education (Q4)";"Social Sciences" +28090;21101200961;"Odesa Medical Journal";journal;"22262008";"Odesa National Medical University";No;No;0,122;Q4;4;80;182;1616;67;182;0,41;20,20;58,38;0;Ukraine;Eastern Europe;"Odesa National Medical University";"2019, 2021-2025";"Dentistry (miscellaneous) (Q4); Education (Q4); Medicine (miscellaneous) (Q4); Pharmacology (medical) (Q4)";"Dentistry; Medicine; Social Sciences" +28091;21100264813;"Pakistan Journal of Scientific and Industrial Research Series A: Physical Sciences";journal;"22216413, 22232559";"PCSIR-Scientific Information Centre";No;No;0,122;Q4;12;35;99;1356;39;99;0,36;38,74;36,36;0;Pakistan;Asiatic Region;"PCSIR-Scientific Information Centre";"2011-2025";"Materials Science (miscellaneous) (Q4); Mathematical Physics (Q4); Physical and Theoretical Chemistry (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Chemistry; Materials Science; Mathematics; Physics and Astronomy" +28092;21101293926;"Pan-African Journal of Education and Social Sciences";journal;"27890058, 27890066";"Adventist University of Africa";Yes;No;0,122;Q4;2;18;50;888;15;50;0,25;49,33;26,92;0;Kenya;Africa;"Adventist University of Africa";"2021-2025";"Accounting (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +28093;28123;"Practising Midwife";journal;"14613123, 26347407";"All4Holdings Ltd";No;No;0,122;Q4;13;49;215;464;25;164;0,13;9,47;87,76;0;United Kingdom;Western Europe;"All4Holdings Ltd";"1998-2025";"Maternity and Midwifery (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Nursing" +28094;21101257848;"Proceedings - International Conference on Electronics Technology, ICET";journal;"27686493, 27686515";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,122;Q4;2;0;212;0;59;210;0,28;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4); Modeling and Simulation (Q4)";"Engineering; Materials Science; Mathematics; Physics and Astronomy" +28095;19300156914;"Revista Andaluza de Medicina del Deporte";journal;"21725063, 18887546";"Centro Andaluz de Medicina del Deporte";Yes;Yes;0,122;Q4;21;17;77;457;16;76;0,08;26,88;47,62;0;Spain;Western Europe;"Centro Andaluz de Medicina del Deporte";"2008-2025";"Orthopedics and Sports Medicine (Q4); Physiology (medical) (Q4); Sports Science (Q4)";"Health Professions; Medicine" +28096;21101075272;"Revista Colombiana de Nefrologia";journal;"25005006, 23897708";"Asociacion Colombiana de Nefrologia e Hipertension Arterial";Yes;Yes;0,122;Q4;5;44;122;1381;24;109;0,23;31,39;40,36;0;Colombia;Latin America;"Asociacion Colombiana de Nefrologia e Hipertension Arterial";"2019-2026";"Nephrology (Q4)";"Medicine" +28097;21101219401;"Revista Medica Herediana";journal;"1018130X, 1729214X";"Universidad Peruana Cayetano Heredia, Facultad de Medicina Alberto Hurtado";Yes;Yes;0,122;Q4;7;67;137;1113;42;93;0,28;16,61;44,20;0;Peru;Latin America;"Universidad Peruana Cayetano Heredia, Facultad de Medicina Alberto Hurtado";"2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28098;21100857406;"Rossiyskiy Vestnik Perinatologii i Pediatrii";journal;"25002228, 10274065";"National Academy of Pediatric Science and Innovation";Yes;No;0,122;Q4;12;108;338;2496;72;338;0,16;23,11;74,67;0;Russian Federation;Eastern Europe;"National Academy of Pediatric Science and Innovation";"2017-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28099;20375;"Russian Journal of Nematology";journal;"08696918";"Russian Academy of Sciences";No;No;0,122;Q4;26;3;11;116;2;9;0,20;38,67;44,44;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"1996-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +28100;14370;"Tribologie und Schmierungstechnik";journal;"07243472";"Expert Verlag";No;No;0,122;Q4;12;0;95;0;21;78;0,20;0,00;0,00;0;Germany;Western Europe;"Expert Verlag";"1983-2024";"Mechanical Engineering (Q4); Mechanics of Materials (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science; Physics and Astronomy" +28101;21101146374;"Ukrainian Journal of Perinatology and Pediatrics";journal;"27071375, 27068757";"Group of Companies Med Expert, LLC";Yes;Yes;0,122;Q4;4;62;186;1450;34;186;0,20;23,39;67,83;0;Ukraine;Eastern Europe;"Group of Companies Med Expert, LLC";"2019-2025";"Medicine (miscellaneous) (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28102;21100431882;"Visual Journal of Emergency Medicine";journal;"24054690";"Elsevier Inc.";No;No;0,122;Q4;6;233;919;887;33;919;0,04;3,81;41,67;0;United States;Northern America;"Elsevier Inc.";"2015-2026";"Emergency Medicine (Q4)";"Medicine" +28103;29505;"Yosetsu Gakkai Shi/Journal of the Japan Welding Society";journal;"00214787";"Japan Welding Society";No;No;0,122;Q4;13;80;299;997;25;251;0,02;12,46;6,10;0;Japan;Asiatic Region;"Japan Welding Society";"1943, 1946-2026";"Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science" +28104;21100215116;"Proceedings of Forum Acusticum";conference and proceedings;"22213767";"European Acoustics Association, EAA";No;No;0,122;-;15;0;1043;0;137;1041;0,13;0,00;0,00;0;Spain;Western Europe;"European Acoustics Association, EAA";"2011, 2014, 2023";"Acoustics and Ultrasonics";"Physics and Astronomy" +28105;110699;"Proceedings of the Coastal Engineering Conference";conference and proceedings;"01613782";"American Society of Civil Engineers (ASCE)";No;No;0,122;-;35;0;440;0;46;438;0,10;0,00;0,00;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1964, 1967, 1969-1971, 1973, 1975, 1977-1980, 1982-1983, 1985-1988, 1991, 1993, 1995-1998, 2003, 2005, 2007-2010, 2012, 2014, 2016-2018, 2020, 2023";"Civil and Structural Engineering; Engineering (miscellaneous); Ocean Engineering; Oceanography";"Earth and Planetary Sciences; Engineering" +28106;21101042902;"Proceedings of the International Conference on Natural Hazards and Infrastructure";conference and proceedings;"26234513";"National Technical University of Athens";No;No;0,122;-;8;0;122;0;24;121;0,00;0,00;0,00;0;Greece;Western Europe;"National Technical University of Athens";"2019, 2022";"Building and Construction; Civil and Structural Engineering; Computers in Earth Sciences; Environmental Engineering; Geotechnical Engineering and Engineering Geology; Safety, Risk, Reliability and Quality";"Earth and Planetary Sciences; Engineering; Environmental Science" +28107;21100388305;"Choreographic Practices";journal;"20405669, 20405677";"Intellect Ltd.";No;No;0,121;Q2;7;14;41;350;5;35;0,10;25,00;75,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2014, 2016-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +28108;21100929401;"Con A de Animacion";journal;"21736049, 21733511";"Universidad Politecnica de Valencia";Yes;Yes;0,121;Q2;4;15;47;473;11;44;0,21;31,53;25,00;0;Spain;Western Europe;"Universidad Politecnica de Valencia";"2019-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +28109;21100199854;"Design Principles and Practices";journal;"18331874, 24735736";"Common Ground Research Networks";No;No;0,121;Q2;10;6;22;241;9;21;0,75;40,17;66,67;0;United States;Northern America;"Common Ground Research Networks";"2010-2012, 2014-2025";"Visual Arts and Performing Arts (Q2)";"Arts and Humanities" +28110;21101112544;"Laboratorio de Arte";journal;"11305762, 22538305";"University of Seville, Department of Art History";Yes;Yes;0,121;Q2;4;0;65;0;10;65;0,10;0,00;0,00;0;Spain;Western Europe;"University of Seville, Department of Art History";"2019-2024";"Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3); Conservation (Q3); Museology (Q3)";"Arts and Humanities" +28111;16200154702;"Parergon";journal;"03136221, 18328334";"Australian and New Zealand Association for Medieval and Early Modern Studies";No;No;0,121;Q2;13;16;56;1357;11;52;0,19;84,81;68,75;0;Australia;Pacific Region;"Australian and New Zealand Association for Medieval and Early Modern Studies";"2002-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28112;21100845669;"Reception: Texts, Readers, Audiences, History";journal;"21680604, 21557888";"Penn State University Press";No;No;0,121;Q2;3;0;22;0;4;19;0,24;0,00;0,00;0;United States;Northern America;"Penn State University Press";"2017-2023";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +28113;21100837990;"Slavia Meridionalis";journal;"23922400";"Polish Academy of Sciences, Institute of Slavic Studies";Yes;Yes;0,121;Q2;4;22;73;705;8;69;0,06;32,05;74,07;0;Poland;Eastern Europe;"Polish Academy of Sciences, Institute of Slavic Studies";"2017-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +28114;16200154735;"Studies in the Age of Chaucer";journal;"19490755, 01902407";"New Chaucer Society";No;No;0,121;Q2;16;14;93;797;11;90;0,10;56,93;57,14;0;United States;Northern America;"New Chaucer Society";"1997, 2002-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28115;21100258748;"Syria";book series;"20768435, 00397946";"Institut Francais du Proche-Orient";No;No;0,121;Q2;10;0;35;0;5;34;0,04;0,00;0,00;0;France;Western Europe;"Institut Francais du Proche-Orient";"2011-2024";"Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28116;85336;"Anthropos";journal;"02579774";"Nomos Verlagsgesellschaft mbH und Co";No;No;0,121;Q3;19;16;94;885;12;90;0,14;55,31;50,00;0;Switzerland;Western Europe;"Nomos Verlagsgesellschaft mbH und Co";"1983, 1987, 1996-2025";"Arts and Humanities (miscellaneous) (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +28117;29154;"Biography";journal;"15291456, 01624962";"University of Hawaii Press";No;No;0,121;Q3;26;0;122;0;19;114;0,08;0,00;0,00;0;United States;Northern America;"University of Hawaii Press";"1978, 1980-1982, 1984, 1986-1988, 1999-2024";"History (Q3)";"Arts and Humanities" +28118;6500153157;"Caribbean Quarterly";journal;"00086495, 24706302";"Taylor and Francis Ltd.";No;No;0,121;Q3;16;17;104;0;19;67;0,17;0,00;57,14;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2025";"Cultural Studies (Q3); History (Q3); Anthropology (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28119;21100432349;"Change Over Time";journal;"2153053X, 21530548";"University of Pennsylvania Press";Yes;No;0,121;Q3;11;0;40;0;12;40;0,12;0,00;0,00;0;United States;Northern America;"University of Pennsylvania Press";"2011-2024";"Conservation (Q3); History (Q3); Nature and Landscape Conservation (Q4); Urban Studies (Q4)";"Arts and Humanities; Environmental Science; Social Sciences" +28120;21101058362;"Darulfunun Ilahiyat";journal;"26515083, 26306069";"Istanbul Universitesi";Yes;Yes;0,121;Q3;3;34;75;1627;12;75;0,16;47,85;28,21;0;Turkey;Middle East;"Istanbul Universitesi";"2018-2025";"Religious Studies (Q3)";"Arts and Humanities" +28121;21101220434;"Disputatio Philosophica";journal;"18490174";"";No;No;0,121;Q3;3;0;16;0;7;16;0,50;0,00;0,00;0;Croatia;Eastern Europe;"";"2020-2024";"Arts and Humanities (miscellaneous) (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28122;16300154799;"Estudos Ibero-Americanos";journal;"1980864X, 01014064";"Editora da P U C R S";Yes;Yes;0,121;Q3;10;34;94;1505;12;89;0,15;44,26;35,00;0;Brazil;Latin America;"Editora da P U C R S";"1994, 2002-2025";"History (Q3)";"Arts and Humanities" +28123;5800170623;"Filosofia Unisinos";journal;"15195023, 19848234";"Universidade do Vale do Rio dos Sinos";Yes;Yes;0,121;Q3;7;42;112;1196;27;105;0,26;28,48;15,56;0;Brazil;Latin America;"Universidade do Vale do Rio dos Sinos";"2010-2025";"Philosophy (Q3)";"Arts and Humanities" +28124;26692;"Geschichte und Gesellschaft";journal;"0340613X";"Vandenhoeck and Ruprecht GmbH and Co. KG";No;No;0,121;Q3;26;0;72;0;18;70;0,13;0,00;0,00;0;Germany;Western Europe;"Vandenhoeck and Ruprecht GmbH and Co. KG";"1982, 1985, 1988, 1999-2012, 2014-2024";"History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28125;21100258630;"International Journal of Diversity in Education";journal;"23272163, 23270020";"Common Ground Research Networks";No;No;0,121;Q3;7;27;36;1420;13;36;0,44;52,59;63,08;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Cultural Studies (Q3); Education (Q4)";"Social Sciences" +28126;21100258633;"International Journal of Learner Diversity and Identities";journal;"23270128, 23272627";"Common Ground Research Networks";No;No;0,121;Q3;6;12;33;661;13;33;0,45;55,08;68,00;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Cultural Studies (Q3); Education (Q4)";"Social Sciences" +28127;21101098754;"Isonomia";journal;"14050218, 26832593";"Instituto Tecnologico Autonomo de Mexico";No;Yes;0,121;Q3;4;19;53;1090;11;51;0,21;57,37;29,63;0;Mexico;Latin America;"Instituto Tecnologico Autonomo de Mexico";"2019-2025";"Philosophy (Q3); Law (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28128;21100905325;"Italian Law Journal";journal;"24212156";"Edizioni Scientifiche Italiane SpA";Yes;Yes;0,121;Q3;5;1;119;64;23;117;0,14;64,00;0,00;0;Italy;Western Europe;"Edizioni Scientifiche Italiane SpA";"2018-2024";"Cultural Studies (Q3); Law (Q4)";"Social Sciences" +28129;21101163244;"Journal for the Cognitive Science of Religion";journal;"20497563, 20497555";"Equinox Publishing Ltd";No;No;0,121;Q3;8;19;31;665;12;26;0,83;35,00;17,39;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2019-2022, 2024-2025";"Religious Studies (Q3); Cognitive Neuroscience (Q4); Experimental and Cognitive Psychology (Q4); Neuropsychology and Physiological Psychology (Q4)";"Arts and Humanities; Neuroscience; Psychology" +28130;21101045757;"Journal of Magazine Media";journal;"25767887, 25767895";"University of Nebraska Press";No;No;0,121;Q3;5;0;34;0;4;19;0,27;0,00;0,00;0;United States;Northern America;"University of Nebraska Press";"2011, 2017-2024";"Cultural Studies (Q3); History (Q3); Communication (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28131;21100286366;"Journal of Pentecostal Theology";journal;"17455251, 09667369";"Brill Academic Publishers";No;No;0,121;Q3;17;20;54;1255;10;52;0,11;62,75;21,05;0;Netherlands;Western Europe;"Brill Academic Publishers";"1992-2011, 2013-2026";"Religious Studies (Q3)";"Arts and Humanities" +28132;21101242011;"Proverbium";journal;"28067568";"University of Osijek - Faculty of Humanities and Social Sciences";Yes;Yes;0,121;Q3;2;14;34;806;15;31;0,45;57,57;50,00;0;Croatia;Eastern Europe;"University of Osijek - Faculty of Humanities and Social Sciences";"2022-2025";"Linguistics and Language (Q3)";"Social Sciences" +28133;16546;"Public Historian";journal;"02723433, 15338576";"University of California Press";No;No;0,121;Q3;25;19;106;1293;25;91;0,21;68,05;55,56;0;United States;Northern America;"University of California Press";"1978-2025";"Conservation (Q3); History (Q3); Museology (Q3)";"Arts and Humanities" +28134;21101322600;"Russian Language Journal";journal;"00360252, 28319737";"";No;No;0,121;Q3;5;19;40;821;13;37;0,07;43,21;80,77;0;United States;Northern America;"";"2021-2025";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +28135;19700169104;"Vostok (Oriens)";journal;"08691908";"Russian Academy of Sciences";No;No;0,121;Q3;4;20;194;536;21;194;0,13;26,80;31,71;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"1999, 2001, 2019-2023, 2025";"Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3); Anthropology (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +28136;21101162620;"Yazyki i Fol'klor Korennykh Narodov Sibiri";journal;"23126337, 27129608";"Siberian Branch of the Russian Academy of Sciences, Institute of Philology";No;No;0,121;Q3;2;53;100;1236;8;96;0,09;23,32;75,71;0;Russian Federation;Eastern Europe;"Siberian Branch of the Russian Academy of Sciences, Institute of Philology";"2019-2025";"Cultural Studies (Q3); Linguistics and Language (Q3); Music (Q3)";"Arts and Humanities; Social Sciences" +28137;16400154718;"Yearbook for Traditional Music";journal;"23043857, 07401558";"Cambridge University Press";No;No;0,121;Q3;16;0;32;0;6;27;0,13;0,00;0,00;0;United States;Northern America;"Cambridge University Press";"2002-2024";"Music (Q3)";"Arts and Humanities" +28138;21101152119;"Academic Journal of Naval Medical University";journal;"20971338";"Second Military Medical University Press";No;No;0,121;Q4;13;234;693;7430;134;688;0,21;31,75;42,99;0;China;Asiatic Region;"Second Military Medical University Press";"2022-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +28139;21100202112;"Acta Veterinaria Brasilica";journal;"19815484";"Universidade Federal Rural do Semi-Arido";Yes;No;0,121;Q4;14;30;180;818;32;180;0,17;27,27;56,64;0;Brazil;Latin America;"Universidade Federal Rural do Semi-Arido";"2011-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +28140;21101183493;"African Human Rights Yearbook";journal;"2663323X, 25231367";"Pretoria University Law Press";No;No;0,121;Q4;4;0;62;0;11;60;0,11;0,00;0,00;0;South Africa;Africa;"Pretoria University Law Press";"2019-2024";"Law (Q4)";"Social Sciences" +28141;20158;"Alergia Astma Immunologia";journal;"14273101, 20832834";"Mediton Publishing House";Yes;No;0,121;Q4;11;7;47;196;7;47;0,18;28,00;60,00;0;Poland;Eastern Europe;"Mediton Publishing House";"2000-2025";"Immunology and Allergy (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +28142;21101392350;"Anatolian journal of emergency medicine";journal;"26514311";"Turkiye Acil Tıp Dernegi";No;No;0,121;Q4;2;32;105;744;16;103;0,16;23,25;29,41;0;Turkey;Middle East;"Turkiye Acil Tıp Dernegi";"2022-2025";"Emergency Medicine (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +28143;21101334494;"Annals of Tropical Research";journal;"01160710, 27043541";"Visayas State University";Yes;No;0,121;Q4;3;33;53;1083;18;53;0,34;32,82;44,44;0;Philippines;Asiatic Region;"Visayas State University";"2021-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Food Science (Q4); Social Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +28144;5700161424;"Asia Pacific Journal on Human Rights and the Law";journal;"13881906, 15718158";"Martinus Nijhoff Publishers";No;No;0,121;Q4;15;10;39;1138;16;37;0,48;113,80;15,38;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"2000-2025";"Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28145;21100373617;"Biblios";journal;"15624730";"University Library System, University of Pittsburgh";Yes;Yes;0,121;Q4;7;34;45;1304;10;42;0,20;38,35;53,23;0;United States;Northern America;"University Library System, University of Pittsburgh";"2013-2025";"Library and Information Sciences (Q4)";"Social Sciences" +28146;15543;"Biotecnologia Aplicada";journal;"10272852, 08644551";"Elfos Scientiae";Yes;Yes;0,121;Q4;19;0;15;0;4;15;0,00;0,00;0,00;0;Cuba;Latin America;"Elfos Scientiae";"1990-1992, 1998-2024";"Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +28147;21101278610;"Cadernos de Dereito Actual";journal;"2340860X, 23865229";"";Yes;Yes;0,121;Q4;3;39;183;1503;16;182;0,11;38,54;32,94;0;Spain;Western Europe;"";"2020-2025";"Law (Q4); Public Administration (Q4)";"Social Sciences" +28148;21101037288;"Cancer Research on Prevention and Treatment";journal;"10008578";"CHINA RESEARCH ON PREVENTION AND TREATMENT";Yes;No;0,121;Q4;7;147;549;5381;119;538;0,23;36,61;46,52;0;China;Asiatic Region;"CHINA RESEARCH ON PREVENTION AND TREATMENT";"2019-2026";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28149;21101259653;"China Journal of Oral and Maxillofacial Surgery";journal;"16723244";"";No;No;0,121;Q4;5;99;326;2726;61;326;0,22;27,54;43,37;0;China;Asiatic Region;"";"2020-2026";"Dentistry (miscellaneous) (Q4); Oral Surgery (Q4)";"Dentistry" +28150;21101179090;"Chinese Journal of Difficult and Complicated Cases";journal;"16716450";"Chinese Medical Doctor Association";No;No;0,121;Q4;3;0;344;0;36;343;0,10;0,00;0,00;0;China;Asiatic Region;"Chinese Medical Doctor Association";"2019-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +28151;21101020019;"Chinese Journal of Neuromedicine";journal;"16718925";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,121;Q4;6;146;529;5823;137;527;0,30;39,88;43,37;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Neurology (Q4); Neurology (clinical) (Q4); Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience; Psychology" +28152;21101034400;"Chinese Journal of Reproduction and Contraception";journal;"20962916";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,121;Q4;9;180;597;7916;94;593;0,16;43,98;53,70;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Cell Biology (Q4); Developmental Biology (Q4); Genetics (Q4); Genetics (clinical) (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28153;21100893284;"Conservacion Colombiana";journal;"19001592";"Fundacion ProAves Carrera";No;No;0,121;Q4;3;17;29;650;5;29;0,09;38,24;48,84;0;Colombia;Latin America;"Fundacion ProAves Carrera";"2018, 2022-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +28154;19700174746;"Custos e Agronegocio";journal;"18082882";"Universidade Federal Rural de Pernambuco";Yes;Yes;0,121;Q4;16;0;176;0;50;169;0,27;0,00;0,00;0;Brazil;Latin America;"Universidade Federal Rural de Pernambuco";"2009-2024";"Accounting (Q4); Agronomy and Crop Science (Q4); Business, Management and Accounting (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Business, Management and Accounting" +28155;17600155117;"Devenir";journal;"10158154";"Editions Medecine et Hygiene";No;No;0,121;Q4;15;0;20;0;6;20;0,08;0,00;0,00;0;Switzerland;Western Europe;"Editions Medecine et Hygiene";"2001-2024";"Developmental and Educational Psychology (Q4); Developmental Neuroscience (Q4); Life-span and Life-course Studies (Q4); Pediatrics (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine; Neuroscience; Nursing; Psychology; Social Sciences" +28156;21100923619;"Economic Research Guardian";journal;"22478531";"";Yes;Yes;0,121;Q4;6;14;27;847;10;27;0,37;60,50;31,25;0;Romania;Eastern Europe;"";"2019-2025";"Economics and Econometrics (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +28157;79659;"Gazzetta Medica Italiana Archivio per le Scienze Mediche";journal;"03933660, 18271812";"Edizioni Minerva Medica";No;No;0,121;Q4;11;176;479;4140;72;448;0,11;23,52;43,38;0;Italy;Western Europe;"Edizioni Minerva Medica";"1965, 1984-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28158;21100863627;"Gender Studies";book series;"22860134, 1583980X";"De Gruyter Open Ltd";Yes;Yes;0,121;Q4;4;0;31;0;12;31;0,41;0,00;0,00;0;Poland;Eastern Europe;"De Gruyter Open Ltd";"2017-2024";"Gender Studies (Q4)";"Social Sciences" +28159;65206;"Geographical Review of Japan, Series B";journal;"02896001";"Association of Japanese Geographers";No;No;0,121;Q4;12;13;11;776;5;11;0,63;59,69;23,53;0;Japan;Asiatic Region;"Association of Japanese Geographers";"1984-2003, 2009, 2011-2025";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +28160;21100427148;"Geoscience Research Reports";journal;"05148057, 23365757";"Czech Geological Survey";No;No;0,121;Q4;6;4;46;125;9;46;0,13;31,25;15,38;0;Czech Republic;Eastern Europe;"Czech Geological Survey";"2014, 2016-2025";"Geochemistry and Petrology (Q4); Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences" +28161;21101215128;"Ghana Dental Journal";journal;"08555311, 24087823";"Ghana Dental Association";No;No;0,121;Q4;2;20;32;587;6;28;0,23;29,35;37,21;0;Ghana;Africa;"Ghana Dental Association";"2021-2025";"Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Orthodontics (Q4); Periodontics (Q4)";"Dentistry" +28162;21101279761;"Indonesian Journal of Advocacy and Legal Services";journal;"26862611, 26862085";"Universitas Negeri Semarang";Yes;No;0,121;Q4;3;18;24;865;11;24;0,46;48,06;28,89;0;Indonesia;Asiatic Region;"Universitas Negeri Semarang";"2023-2025";"Law (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28163;21101284792;"International Computer Conference on Wavelet Active Media Technology and Information Processing, ICCWAMTIP";journal;"25768964, 25768972";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,121;Q4;4;0;142;0;52;140;0,37;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Science Applications (Q4); Information Systems (Q4); Media Technology (Q4); Safety, Risk, Reliability and Quality (Q4); Signal Processing (Q4)";"Computer Science; Engineering" +28164;21100258624;"International Journal of Assessment and Evaluation";journal;"23277920, 23278692";"Common Ground Research Networks";No;No;0,121;Q4;5;19;30;1012;12;30;0,35;53,26;65,96;0;United States;Northern America;"Common Ground Research Networks";"2013-2025";"Education (Q4)";"Social Sciences" +28165;21101392294;"International Journal of Emerging Research in Engineering, Science, and Management";journal;"25834894";"JPM Publishers";No;No;0,121;Q4;7;31;63;783;105;63;1,44;25,26;15,00;0;India;Asiatic Region;"JPM Publishers";"2022-2026";"Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +28166;19700188346;"International Journal of Infertility and Fetal Medicine";journal;"22293817, 22293833";"Jaypee Brothers Medical Publishers (P) Ltd";No;No;0,121;Q4;10;38;95;806;18;87;0,13;21,21;62,50;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2010-2025";"Reproductive Medicine (Q4)";"Medicine" +28167;21100258852;"International Journal of Interdisciplinary Educational Studies";journal;"2327011X, 23272570";"Common Ground Research Networks";No;No;0,121;Q4;6;42;55;2096;16;54;0,29;49,90;55,81;0;United States;Northern America;"Common Ground Research Networks";"2012-2026";"Education (Q4)";"Social Sciences" +28168;21101028160;"Journal for Modeling in Ophthalmology";journal;"24683930, 24683922";"Kugler Publications";No;No;0,121;Q4;3;7;11;157;5;11;0,40;22,43;48,15;0;Netherlands;Western Europe;"Kugler Publications";"2019-2025";"Ophthalmology (Q4)";"Medicine" +28169;21101174187;"Journal of Global Diaspora and Media";journal;"26325853, 26325861";"Intellect Ltd.";No;No;0,121;Q4;4;6;23;353;6;21;0,15;58,83;50,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2020-2025";"Communication (Q4); Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28170;19800188012;"Journal of Morphological Sciences";journal;"21770298";"Brazilian Society of Anatomy";Yes;No;0,121;Q4;18;9;196;167;24;191;0,17;18,56;58,82;0;Brazil;Latin America;"Brazilian Society of Anatomy";"2010-2025";"Anatomy (Q4); Cell Biology (Q4); Histology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28171;19700182809;"Journal of Private Enterprise";journal;"0890913X";"Fayetteville State University";No;No;0,121;Q4;14;14;54;553;12;53;0,18;39,50;12,50;0;United States;Northern America;"Fayetteville State University";"2008-2025";"Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +28172;21100203945;"Journal of the Hong Kong College of Cardiology";journal;"10277811";"Medcom Limited";No;No;0,121;Q4;3;21;67;546;10;62;0,10;26,00;27,27;0;Hong Kong;Asiatic Region;"Medcom Limited";"2012-2020, 2022-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28173;6600153104;"Kartografija i Geoinformacije";journal;"1333896X, 18480713";"Croatian Cartographic Society";Yes;Yes;0,121;Q4;9;5;37;115;13;31;0,26;23,00;12,50;0;Croatia;Eastern Europe;"Croatian Cartographic Society";"2002-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Geology (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +28174;14518;"Klinika Oczna";journal;"00232157";"Termedia Publishing House Ltd.";Yes;Yes;0,121;Q4;19;32;118;893;15;116;0,10;27,91;67,00;0;Poland;Eastern Europe;"Termedia Publishing House Ltd.";"1953-2025";"Medicine (miscellaneous) (Q4); Ophthalmology (Q4)";"Medicine" +28175;21100945769;"Mathematics Student";journal;"00255742";"";No;No;0,121;Q4;4;39;109;511;11;101;0,12;13,10;25,71;0;India;Asiatic Region;"";"2019-2026";"Education (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics; Social Sciences" +28176;21101038820;"Medialni Studia";journal;"18019978, 24644846";"Faculty of Social Sciences, Charles University";No;No;0,121;Q4;3;7;36;498;7;31;0,22;71,14;44,44;0;Czech Republic;Eastern Europe;"Faculty of Social Sciences, Charles University";"2019-2025";"Communication (Q4)";"Social Sciences" +28177;21101080102;"Modern Pediatrics. Ukraine";journal;"27066134, 26637553";"Group of Companies Med Expert, LLC";Yes;Yes;0,121;Q4;7;135;417;3521;93;417;0,25;26,08;76,36;0;Ukraine;Eastern Europe;"Group of Companies Med Expert, LLC";"2019-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28178;12295;"NIWA Biodiversity Memoirs";book series;"11740043";"National Institute of Water and Atmospheric Research";No;No;0,121;Q4;17;0;37;0;10;31;0,28;0,00;0,00;0;New Zealand;Pacific Region;"National Institute of Water and Atmospheric Research";"1998-2003, 2006-2007, 2009-2013, 2015-2016, 2018-2023";"Aquatic Science (Q4); Oceanography (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +28179;21101190434;"Notebooks: The Journal for Studies on Power";journal;"26667177, 26667185";"Brill Academic Publishers";No;No;0,121;Q4;3;7;39;250;19;31;0,33;35,71;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2025";"Anthropology (Q4); Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28180;4000149102;"Oxymag";journal;"09901310";"Elsevier Masson s.r.l.";No;No;0,121;Q4;2;43;141;687;6;88;0,03;15,98;44,58;0;France;Western Europe;"Elsevier Masson s.r.l.";"2006-2026";"Emergency Medicine (Q4); Emergency Nursing (Q4)";"Medicine; Nursing" +28181;21100206247;"Polish Annals of Medicine";journal;"22997016, 20835914";"";Yes;No;0,121;Q4;15;8;103;294;21;102;0,22;36,75;35,00;0;Poland;Eastern Europe;"";"2007-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28182;19700173204;"Potato Journal";journal;"09708235, 09735909";"Indian Potato Association";No;No;0,121;Q4;16;1;72;48;20;71;0,12;48,00;0,00;0;India;Asiatic Region;"Indian Potato Association";"2009-2025";"Agronomy and Crop Science (Q4)";"Agricultural and Biological Sciences" +28183;98352;"Praktische Tierarzt";journal;"0032681X";"Schluetersche GmbH und Co";Yes;No;0,121;Q4;18;177;411;1404;17;193;0,05;7,93;66,36;0;Germany;Western Europe;"Schluetersche GmbH und Co";"1976, 1980, 1996-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +28184;12000154413;"Quarterly Journal of Austrian Economics";journal;"19364806, 10983708";"Ludwig Von Mises Institute";Yes;Yes;0,121;Q4;17;8;43;322;14;38;0,22;40,25;11,11;0;United States;Northern America;"Ludwig Von Mises Institute";"2002, 2008-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +28185;21100329301;"Queen Mary Journal of Intellectual Property";journal;"20459815, 20459807";"Edward Elgar Publishing Ltd.";No;No;0,121;Q4;11;24;77;389;32;67;0,38;16,21;37,04;0;United Kingdom;Western Europe;"Edward Elgar Publishing Ltd.";"2011-2025";"Law (Q4)";"Social Sciences" +28186;4900153106;"Revista Cubana de Salud Publica";journal;"08643466, 15613127";"Editorial Ciencias Medicas";Yes;Yes;0,121;Q4;21;59;164;1286;27;150;0,16;21,80;40,43;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1996-2002, 2006-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +28187;21101056821;"Revista de Biologia Neotropical / Journal of Neotropical Biology";journal;"18079652, 21780579";"Universidade Federal De Goias (UFG)";Yes;Yes;0,121;Q4;3;13;35;523;11;34;0,32;40,23;25,93;0;Brazil;Latin America;"Universidade Federal De Goias (UFG)";"2019-2025";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4); Molecular Biology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +28188;28169;"Revista de Obstetricia y Ginecologia de Venezuela";journal;"00487732";"Sociedad de Obstetricia y Ginecologia de Venezuela";Yes;No;0,121;Q4;10;59;178;1612;21;165;0,13;27,32;52,07;0;Venezuela;Latin America;"Sociedad de Obstetricia y Ginecologia de Venezuela";"1945-1948, 1950-1957, 1959-1970, 1972-1995, 2008-2025";"Obstetrics and Gynecology (Q4)";"Medicine" +28189;77687;"Revista Mexicana de Pediatria";journal;"00350052";"Sociedad Mexicana de Pediatria";No;No;0,121;Q4;7;35;145;559;16;126;0,06;15,97;46,67;0;Mexico;Latin America;"Sociedad Mexicana de Pediatria";"1986-1992, 2010-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28190;21101045035;"Revista Opiniao Juridica";journal;"24476641, 18060420";"Centro Universitario Christus";Yes;Yes;0,121;Q4;5;26;72;1007;12;72;0,09;38,73;29,41;0;Brazil;Latin America;"Centro Universitario Christus";"2019-2025";"Law (Q4)";"Social Sciences" +28191;21101039876;"Russian Journal of Pediatric Hematology and Oncology";journal;"23111267, 24135496";"Graphica Ltd";No;No;0,121;Q4;5;52;171;1140;36;145;0,16;21,92;61,61;0;Russian Federation;Eastern Europe;"Graphica Ltd";"2019-2025";"Hematology (Q4); Oncology (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28192;21100984216;"Sahel Medical Journal";journal;"11188561, 23216689";"Wolters Kluwer Medknow Publications";Yes;No;0,121;Q4;6;0;22;0;3;21;0,00;0,00;0,00;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2017, 2019-2022";"Medicine (miscellaneous) (Q4)";"Medicine" +28193;21101055860;"Science and Technologies: Oil and Oil Products Pipeline Transportation";journal;"25419595, 22212701";"Pipeline Transport Institute, LLC";No;No;0,121;Q4;8;0;66;0;13;65;0,20;0,00;0,00;0;Russian Federation;Eastern Europe;"Pipeline Transport Institute, LLC";"2019-2023";"Civil and Structural Engineering (Q4); Ecology (Q4); Energy (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4); Safety, Risk, Reliability and Quality (Q4)";"Energy; Engineering; Environmental Science; Materials Science" +28194;19900192590;"Sport Science";journal;"18403662, 18403670";"Drustvo Pedagoga Tjelesne i Zdravstvene Kulture";Yes;No;0,121;Q4;26;0;67;0;10;65;0,19;0,00;0,00;0;Bosnia and Herzegovina;Eastern Europe;"Drustvo Pedagoga Tjelesne i Zdravstvene Kulture";"2008-2023";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Medicine" +28195;19700167102;"Waldokologie Online";journal;"1867710X, 16147103";"Arbeitsgemeinschaft";No;No;0,121;Q4;12;3;10;147;2;10;0,33;49,00;28,57;0;Germany;Western Europe;"Arbeitsgemeinschaft";"2008-2011, 2013-2014, 2016, 2018-2022, 2024-2025";"Ecological Modeling (Q4); Ecology (Q4); Forestry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +28196;21101049060;"Challenges to National Defence in Contemporary Geopolitical Situation";conference and proceedings;"25388959";"General Jonas Zemaitis Military Academy of Lithuania";No;No;0,121;-;7;0;118;0;66;115;0,49;0,00;0,00;0;Lithuania;Eastern Europe;"General Jonas Zemaitis Military Academy of Lithuania";"2018, 2020, 2022, 2024";"Artificial Intelligence; Computer Science Applications; Information Systems and Management; Mechanical Engineering; Political Science and International Relations; Safety Research; Safety, Risk, Reliability and Quality; Sociology and Political Science";"Computer Science; Decision Sciences; Engineering; Social Sciences" +28197;97855;"IEEE Conference Record of Annual Pulp and Paper Industry Technical Conference";conference and proceedings;"01902172";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,121;-;18;0;53;0;8;47;0,14;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1977-1984, 1986-2018, 2021-2024";"Electrical and Electronic Engineering; Industrial and Manufacturing Engineering";"Engineering" +28198;21100244939;"IEEE International Conference on Nano/Molecular Medicine and Engineering, NANOMED";conference and proceedings;"21596972, 21596964";"IEEE Computer Society";No;No;0,121;-;7;0;42;0;11;38;0,26;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2012-2013, 2016, 2018-2019, 2021, 2023-2024";"Biomedical Engineering; Microbiology (medical); Molecular Medicine";"Biochemistry, Genetics and Molecular Biology; Engineering; Medicine" +28199;21101180311;"International Conference on Photonics, Optics and Laser Technology";conference and proceedings;"21844364";"Science and Technology Publications, Lda";No;No;0,121;-;3;26;58;376;11;55;0,23;14,46;28,71;0;Portugal;Western Europe;"Science and Technology Publications, Lda";"2019-2025";"Atomic and Molecular Physics, and Optics; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Engineering; Materials Science; Physics and Astronomy" +28200;21101056949;"International Symposium on Graphic Engineering and Design";conference and proceedings;"26201437, 26201429";"University of Novi Sad - Faculty of Technical Sciences, Department of Graphic Engineering and Design";No;No;0,121;-;6;0;191;0;64;188;0,25;0,00;0,00;0;Serbia;Eastern Europe;"University of Novi Sad - Faculty of Technical Sciences, Department of Graphic Engineering and Design";"2020, 2022, 2024";"Computer Graphics and Computer-Aided Design; Computer Science Applications";"Computer Science" +28201;25994;"Proceedings of the IEEE/CPMT International Electronics Manufacturing Technology (IEMT) Symposium";conference and proceedings;"10898190";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,121;-;24;0;140;0;26;138;0,10;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1994-2000, 2002-2004, 2006-2008, 2010, 2012, 2015-2016, 2022, 2024";"Electrical and Electronic Engineering; Industrial and Manufacturing Engineering";"Engineering" +28202;16000154765;"American Literary Realism";journal;"00029823, 19405103";"University of Illinois Press";No;No;0,120;Q2;9;36;73;668;4;67;0,04;18,56;38,71;0;United States;Northern America;"University of Illinois Press";"2002-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28203;19700173013;"Co-herencia";journal;"17945887";"Universidad EAFIT";Yes;Yes;0,120;Q2;9;13;85;561;17;81;0,16;43,15;6,67;0;Colombia;Latin America;"Universidad EAFIT";"2009-2025";"Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); History (Q3); Music (Q3); Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28204;16000154780;"Die Welt der Slaven: Internationale Halbjahresschrift fur Slavistik";journal;"00432520";"Verlag Otto Sagner";No;No;0,120;Q2;7;17;60;954;7;60;0,11;56,12;72,00;0;Germany;Western Europe;"Verlag Otto Sagner";"2002-2015, 2017-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities; Social Sciences" +28205;21101188797;"e-Scripta Romanica";journal;"23920718";"Lodz University Press";Yes;Yes;0,120;Q2;1;14;25;378;1;25;0,04;27,00;61,54;0;Poland;Eastern Europe;"Lodz University Press";"2023-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28206;5700168701;"Etudes Anglaises";journal;"0014195X";"Klincksieck";No;No;0,120;Q2;6;0;55;0;6;52;0,00;0,00;0,00;0;France;Western Europe;"Klincksieck";"1968, 1979, 2001-2024";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28207;21101147582;"Hungarian Studies Yearbook";journal;"26687542";"Sciendo";Yes;Yes;0,120;Q2;3;4;30;82;4;30;0,20;20,50;66,67;0;Poland;Eastern Europe;"Sciendo";"2019-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28208;21101163006;"Journal of Jewish Identities";journal;"19397941, 19462522";"Johns Hopkins University Press";No;No;0,120;Q2;3;14;32;1666;11;31;0,24;119,00;46,15;0;United States;Northern America;"Johns Hopkins University Press";"2019-2026";"Literature and Literary Theory (Q2); Philosophy (Q3); Religious Studies (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities" +28209;21101199908;"Studia Slavica (Czech Republic)";journal;"18035663, 25710281";"University of Ostrava, Faculty of Arts";Yes;Yes;0,120;Q2;3;28;62;819;10;56;0,20;29,25;63,33;0;Czech Republic;Eastern Europe;"University of Ostrava, Faculty of Arts";"2022-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28210;16200154769;"Studies in American Fiction";journal;"00918083";"Johns Hopkins University Press";No;No;0,120;Q2;10;0;37;0;8;36;0,16;0,00;0,00;0;United States;Northern America;"Johns Hopkins University Press";"2002-2008, 2011-2024";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28211;21101252314;"Studies in the Fantastic";journal;"19427190, 24703486";"The University of Tampa Press";No;No;0,120;Q2;2;0;48;0;11;22;0,14;0,00;0,00;0;United States;Northern America;"The University of Tampa Press";"2020-2024";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28212;21101254824;"Age, Culture, Humanities";journal;"23735481";"";Yes;Yes;0,120;Q3;3;2;38;82;6;30;0,15;41,00;66,67;0;Denmark;Western Europe;"";"2020-2025";"Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +28213;21101185955;"Analecta Hermeneutica";journal;"19187351";"International Institute for Hermeneutics";No;No;0,120;Q3;2;0;62;0;6;36;0,11;0,00;0,00;0;United States;Northern America;"International Institute for Hermeneutics";"2019-2024";"Philosophy (Q3)";"Arts and Humanities" +28214;21101188860;"Argument (Romania)";journal;"25016334, 20674252";"Ion Mincu University of Architecture and Urbanism in Bucharest";Yes;Yes;0,120;Q3;1;16;39;386;5;38;0,13;24,13;56,52;0;Romania;Eastern Europe;"Ion Mincu University of Architecture and Urbanism in Bucharest";"2023-2025";"History (Q3); Visual Arts and Performing Arts (Q3); Architecture (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +28215;19700170193;"Aspasia";journal;"19332882, 19332890";"Berghahn Journals";Yes;Yes;0,120;Q3;10;6;33;481;26;30;0,48;80,17;60,00;0;United Kingdom;Western Europe;"Berghahn Journals";"2011-2025";"History (Q3); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +28216;21100903718;"Azafea";journal;"02133563, 24447072";"Ediciones Universidad de Salamanca";Yes;Yes;0,120;Q3;3;15;47;368;8;46;0,11;24,53;23,08;0;Spain;Western Europe;"Ediciones Universidad de Salamanca";"2018-2019, 2021-2025";"Philosophy (Q3)";"Arts and Humanities" +28217;21100805799;"Boletim do Arquivo da Universidade de Coimbra";journal;"21827974, 08725632";"Imprensa da Universidade de Coimbra";Yes;Yes;0,120;Q3;4;18;61;866;10;58;0,12;48,11;42,11;0;Portugal;Western Europe;"Imprensa da Universidade de Coimbra";"2016-2025";"Conservation (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +28218;5800207744;"Bulletin de la Societe de Linguistique de Paris";journal;"00379069, 17831385";"Peeters Publishers";No;No;0,120;Q3;14;0;35;0;3;35;0,08;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"1996-2013, 2015-2024";"Linguistics and Language (Q3)";"Social Sciences" +28219;21101057643;"Comparative Legilinguistics";journal;"20805926, 23914491";"Faculty of Modern Languages and Literatures, Adam Mickiewicz University";Yes;Yes;0,120;Q3;6;10;42;360;14;40;0,38;36,00;76,92;0;Poland;Eastern Europe;"Faculty of Modern Languages and Literatures, Adam Mickiewicz University";"2019-2025";"Linguistics and Language (Q3); Law (Q4)";"Social Sciences" +28220;14686;"Eighteenth-Century Studies";journal;"00132586, 1086315X";"Johns Hopkins University Press";No;No;0,120;Q3;31;34;204;1413;24;204;0,06;41,56;42,86;0;United States;Northern America;"Johns Hopkins University Press";"1969, 1972, 1975-1976, 1979-1980, 1983-1985, 1998, 2000, 2002-2026";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +28221;9500153998;"Frontiers of History in China";journal;"16733525, 16733401";"Higher Education Press Limited Company";No;No;0,120;Q3;11;19;65;1037;10;62;0,13;54,58;22,22;0;China;Asiatic Region;"Higher Education Press Limited Company";"2006-2025";"History (Q3)";"Arts and Humanities" +28222;26793;"Hispania Sacra";journal;"0018215X, 19884265";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,120;Q3;11;3;96;231;22;93;0,19;77,00;25,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1987, 1999, 2001, 2009-2025";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +28223;21100829709;"Historia Ecclesiastica";book series;"13384341";"University of Presov";No;No;0,120;Q3;5;34;111;1373;11;72;0,13;40,38;0,00;0;Slovakia;Eastern Europe;"University of Presov";"2017-2025";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +28224;21101108508;"IAFOR Journal of Cultural Studies";journal;"21874905";"The International Academic Forum (IAFOR)";Yes;Yes;0,120;Q3;3;17;36;943;13;36;0,23;55,47;65,38;0;Japan;Asiatic Region;"The International Academic Forum (IAFOR)";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Anthropology (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28225;21100868883;"IMPACT: Studies in Language and Society";book series;"13857908";"John Benjamins Publishing Company";No;No;0,120;Q3;5;0;3;0;2;2;1,00;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2018, 2020-2022, 2024";"Linguistics and Language (Q3)";"Social Sciences" +28226;13462;"Islamic Studies";journal;"05788072, 27105326";"Islamic Research Institute";No;No;0,120;Q3;5;12;63;335;16;59;0,26;27,92;28,57;0;Pakistan;Asiatic Region;"Islamic Research Institute";"1971, 1978, 1989, 2019-2025";"Cultural Studies (Q3); Religious Studies (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +28227;16300154715;"Journal of Architectural Education";journal;"10464883, 1531314X";"Taylor and Francis Ltd.";No;No;0,120;Q3;28;52;165;1394;40;81;0,20;26,81;53,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1966-1967, 1970-1971, 1973-2025";"Visual Arts and Performing Arts (Q3); Architecture (Q4); Education (Q4)";"Arts and Humanities; Engineering; Social Sciences" +28228;300147004;"Journal of Educational Media and Library Sciences";journal;"1013090X";"Tamkang University";Yes;Yes;0,120;Q3;10;14;37;607;6;31;0,08;43,36;52,38;0;Taiwan;Asiatic Region;"Tamkang University";"2005-2025";"Archeology (arts and humanities) (Q3); Conservation (Q3); Information Systems (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +28229;21101062039;"Journal of Posthuman Studies";journal;"24714461, 24724513";"Penn State University Press";No;No;0,120;Q3;5;8;45;346;11;39;0,30;43,25;22,22;0;United States;Northern America;"Penn State University Press";"2017, 2019-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Gender Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28230;21075;"Journal of Sport History";journal;"00941700, 21558450";"North American Society for Sport History";No;No;0,120;Q3;17;24;73;1248;19;70;0,34;52,00;34,48;0;United States;Northern America;"North American Society for Sport History";"1977-1979, 1981-1984, 1987, 1989, 1999-2002, 2010-2025";"Cultural Studies (Q3); History (Q3); Sports Science (Q4)";"Arts and Humanities; Health Professions; Social Sciences" +28231;21101121510;"Muzikologija";journal;"24060976, 14509814";"Institute of Musicology of the Serbian Academy of Sciences and Arts (SASA)";Yes;Yes;0,120;Q3;4;10;57;530;7;57;0,06;53,00;63,64;0;Serbia;Eastern Europe;"Institute of Musicology of the Serbian Academy of Sciences and Arts (SASA)";"2019-2026";"Music (Q3)";"Arts and Humanities" +28232;21101105300;"Revista Latinoamericana de Filosofia";journal;"03250725, 18527353";"Centro de Investigaciones Filosoficas";Yes;Yes;0,120;Q3;3;15;52;500;5;47;0,08;33,33;37,50;0;Argentina;Latin America;"Centro de Investigaciones Filosoficas";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +28233;21100890940;"Rural China";journal;"22136746, 22136738";"Brill Academic Publishers";No;No;0,120;Q3;9;20;40;713;7;39;0,22;35,65;16,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2025";"Cultural Studies (Q3); History (Q3); Anthropology (Q4); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +28234;21100200615;"Studies in European Cinema";journal;"17411548, 20400594";"Taylor and Francis Ltd.";No;No;0,120;Q3;15;40;70;1444;25;60;0,23;36,10;42,55;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2004-2026";"Visual Arts and Performing Arts (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +28235;17214;"Studies in History";journal;"02576430, 0973080X";"Sage Publications India Pvt. Ltd";No;No;0,120;Q3;19;0;29;0;2;27;0,10;0,00;0,00;0;India;Asiatic Region;"Sage Publications India Pvt. Ltd";"1985-2024";"History (Q3)";"Arts and Humanities" +28236;21100875776;"Studii de Preistorie";journal;"20652534, 20652526";"Romanian Association of Archaeology";Yes;Yes;0,120;Q3;8;0;28;0;3;28;0,13;0,00;0,00;0;Romania;Eastern Europe;"Romanian Association of Archaeology";"2013-2015, 2017-2024";"Archeology (arts and humanities) (Q3); History (Q3); Archeology (Q4)";"Arts and Humanities; Social Sciences" +28237;21101169884;"TOPIA";journal;"19160194, 12060143";"University of Toronto Press";No;No;0,120;Q3;6;8;123;201;32;117;0,27;25,13;54,55;0;Canada;Northern America;"University of Toronto Press";"2019-2025";"Cultural Studies (Q3)";"Social Sciences" +28238;21101049681;"Verbum (Lithuania)";journal;"20296223, 25388746";"Vilnius University Press";Yes;Yes;0,120;Q3;3;10;27;242;6;27;0,11;24,20;70,00;0;Lithuania;Eastern Europe;"Vilnius University Press";"2019-2025";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +28239;21101288928;"Amirkabir Journal of Mechanical Engineering";journal;"20086032, 24763446";"Amirkabir University of Technology";No;No;0,120;Q4;6;54;316;1602;41;316;0,12;29,67;12,50;0;Iran;Middle East;"Amirkabir University of Technology";"2021-2025";"Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Engineering; Materials Science" +28240;21100896996;"Anales de la Asociacion Fisica Argentina";journal;"18501168";"Centro de Investigaciones en Laseres y Aplicaciones";Yes;No;0,120;Q4;5;17;75;341;12;74;0,14;20,06;34,38;0;Argentina;Latin America;"Centro de Investigaciones en Laseres y Aplicaciones";"2018-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +28241;21100854880;"Annals of African Surgery";journal;"19999674, 25230816";"Surgical Society of Kenya";Yes;No;0,120;Q4;8;24;80;414;16;71;0,18;17,25;38,67;0;Kenya;Africa;"Surgical Society of Kenya";"2008-2017, 2019-2026";"Surgery (Q4)";"Medicine" +28242;21101300211;"Antiquitates Mathematicae";journal;"23538813";"Polish Mathematical Society";No;No;0,120;Q4;2;0;26;0;2;23;0,05;0,00;0,00;0;Poland;Eastern Europe;"Polish Mathematical Society";"2021-2024";"History and Philosophy of Science (Q4); Mathematics (miscellaneous) (Q4)";"Arts and Humanities; Mathematics" +28243;21101198701;"Applied Biological Research";journal;"09720979, 09744517";"ACS Publisher";No;No;0,120;Q4;5;53;180;1784;46;177;0,24;33,66;39,41;0;India;Asiatic Region;"ACS Publisher";"2020-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology" +28244;18300156729;"Applied Econometrics and International Development";journal;"15784487";"Euro-American Association of Economic Development Studies";No;No;0,120;Q4;17;0;51;0;24;51;0,38;0,00;0,00;0;Spain;Western Europe;"Euro-American Association of Economic Development Studies";"2009-2024";"Development (Q4); Economics and Econometrics (Q4); Finance (Q4); Political Science and International Relations (Q4)";"Economics, Econometrics and Finance; Social Sciences" +28245;21100933241;"Australian Universities Review";journal;"22085394, 08188068";"National Tertiary Education Union";No;No;0,120;Q4;10;0;22;0;4;18;0,11;0,00;0,00;0;Australia;Pacific Region;"National Tertiary Education Union";"2019-2022, 2024";"Education (Q4)";"Social Sciences" +28246;21101209164;"Bangladesh Journal of Infectious Diseases";journal;"24114820, 2411670X";"Bangladesh Infection Research Association";No;No;0,120;Q4;6;26;81;743;18;67;0,27;28,58;45,98;0;Bangladesh;Asiatic Region;"Bangladesh Infection Research Association";"2019-2025";"Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Parasitology (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +28247;21101158608;"Bibliotecas";journal;"14093049, 16593286";"Universidad Nacional";Yes;Yes;0,120;Q4;3;8;24;288;6;24;0,18;36,00;31,25;0;Costa Rica;Latin America;"Universidad Nacional";"2019-2025";"Library and Information Sciences (Q4)";"Social Sciences" +28248;23944;"Bunseki Kagaku";journal;"05251931";"Japan Society for Analytical Chemistry";No;No;0,120;Q4;21;83;195;2561;39;188;0,14;30,86;34,85;0;Japan;Asiatic Region;"Japan Society for Analytical Chemistry";"1952, 1954-1957, 1959-2026";"Analytical Chemistry (Q4)";"Chemistry" +28249;24473;"Cadernos do Laboratorio Xeoloxico de Laxe";journal;"02134497, 21736936";"Instituto Universitario de Xeoloxia Isidro Parga Pondal y Servizo de Publicacions, Universidade da Coruna";Yes;Yes;0,120;Q4;16;2;14;31;8;14;0,22;15,50;0,00;0;Spain;Western Europe;"Instituto Universitario de Xeoloxia Isidro Parga Pondal y Servizo de Publicacions, Universidade da Coruna";"1986-1999, 2001-2011, 2013, 2015, 2017-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +28250;21101144513;"Canadian Journal of Health History";journal;"28166477";"University of Toronto Press";No;No;0,120;Q4;3;19;36;821;10;35;0,22;43,21;66,67;0;Canada;Northern America;"University of Toronto Press";"2022-2025";"History and Philosophy of Science (Q4); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +28251;23447;"Chimica Oggi/Chemistry Today";journal;"0392839X, 19738250";"TeknoScienze";No;No;0,120;Q4;33;74;257;632;9;201;0,03;8,54;29,46;0;Italy;Western Europe;"TeknoScienze";"1990-1991, 1996-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +28252;21101034336;"Chinese Journal of Anesthesiology";journal;"02541416";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,120;Q4;6;253;932;7391;118;923;0,15;29,21;44,43;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2025";"Anesthesiology and Pain Medicine (Q4)";"Medicine" +28253;93618;"Chinese Journal of Gastroenterology";journal;"10087125";"Shanghai Institute of Digestive Diseases";No;No;0,120;Q4;10;28;315;1238;72;314;0,19;44,21;43,69;0;China;Asiatic Region;"Shanghai Institute of Digestive Diseases";"2001-2025";"Gastroenterology (Q4)";"Medicine" +28254;21101266013;"Environmental Resources Research";journal;"27834832, 27834670";"Gorgan University of Agricultural Sciences and Natural Resources";Yes;Yes;0,120;Q4;5;28;72;1364;20;72;0,21;48,71;35,71;0;Iran;Middle East;"Gorgan University of Agricultural Sciences and Natural Resources";"2020-2025";"Environmental Engineering (Q4); Environmental Science (miscellaneous) (Q4); Nature and Landscape Conservation (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +28255;28057;"Gazi Medical Journal";journal;"21472092";"Galenos Publishing House";Yes;Yes;0,120;Q4;10;77;278;2206;53;278;0,18;28,65;45,02;0;Turkey;Middle East;"Galenos Publishing House";"1992-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +28256;21100875938;"Geometry, Integrability and Quantization";journal;"23677147, 13143247";"Bulgarska Akademiya na Naukite";No;No;0,120;Q4;7;9;37;130;8;37;0,20;14,44;12,50;0;Bulgaria;Eastern Europe;"Bulgarska Akademiya na Naukite";"2018-2025";"Applied Mathematics (Q4); Geometry and Topology (Q4); Mathematical Physics (Q4)";"Mathematics" +28257;21101121550;"Indian Journal of Clinical and Experimental Ophthalmology";journal;"23951451, 23951443";"IP Innovative Publication Pvt. Ltd.";No;No;0,120;Q4;5;130;384;2843;39;365;0,12;21,87;58,25;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2019-2025";"Ophthalmology (Q4)";"Medicine" +28258;21101179086;"Indian Journal of Obstetrics and Gynecology Research";journal;"23942754, 23942746";"IP Innovative Publication Pvt. Ltd.";No;No;0,120;Q4;5;143;352;2777;50;334;0,09;19,42;67,25;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2019-2026";"Obstetrics and Gynecology (Q4)";"Medicine" +28259;21100227428;"International Cardiovascular Research Journal";journal;"22519149, 22519130";"";Yes;No;0,120;Q4;18;28;48;850;13;48;0,39;30,36;37,61;0;Netherlands;Western Europe;"";"2011-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28260;19511;"International Journal of Mobile Communications";journal;"17415217, 1470949X";"Inderscience Publishers";No;No;0,120;Q4;52;41;16;2799;5;16;0,31;68,27;37,11;0;United Kingdom;Western Europe;"Inderscience Publishers";"2003-2019, 2021, 2023-2026";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +28261;5800179617;"International Journal of Vehicle Safety";journal;"14793105, 14793113";"Inderscience Enterprises Ltd";No;No;0,120;Q4;19;0;13;0;4;13;0,31;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2005-2021, 2023-2024";"Automotive Engineering (Q4)";"Engineering" +28262;29700;"Japanese Journal of Geriatrics";journal;"03009173";"Japan Geriatrics Society";No;No;0,120;Q4;20;59;222;1019;21;211;0,09;17,27;36,49;0;Japan;Asiatic Region;"Japan Geriatrics Society";"1965-2025";"Geriatrics and Gerontology (Q4)";"Medicine" +28263;21100229117;"Journal for Advancement of Marketing Education";journal;"15375137, 23263296";"Marketing Management Association";No;Yes;0,120;Q4;12;0;17;0;5;17;0,31;0,00;0,00;0;United States;Northern America;"Marketing Management Association";"2012-2024";"Education (Q4); Marketing (Q4)";"Business, Management and Accounting; Social Sciences" +28264;21101326127;"Journal of Composites and Biodegradable Polymers";journal;"23118717";"Savvy Science Publisher";No;No;0,120;Q4;2;17;18;895;5;18;0,29;52,65;30,16;0;Pakistan;Asiatic Region;"Savvy Science Publisher";"2021-2026";"Biomaterials (Q4); Materials Science (miscellaneous) (Q4); Polymers and Plastics (Q4)";"Materials Science" +28265;21100928943;"Journal of Contextual Economics-Schmollers Jahrbuch";journal;"25687603, 2568762X";"Duncker und Humblot GmbH";No;No;0,120;Q4;4;0;44;0;7;42;0,07;0,00;0,00;0;Germany;Western Europe;"Duncker und Humblot GmbH";"2018, 2020-2023";"Economics, Econometrics and Finance (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4); Social Sciences (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +28266;5600156898;"Journal of Social Structure";journal;"15291227";"Sciendo";Yes;Yes;0,120;Q4;10;0;2;0;1;2;0,00;0,00;0,00;0;United States;Northern America;"Sciendo";"2012-2020, 2022";"Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28267;21101044728;"Journal of the Dow University of Health Sciences";journal;"19952198, 24102180";"Dow University of Health Sciences";Yes;Yes;0,120;Q4;4;18;93;414;19;84;0,18;23,00;54,55;0;Pakistan;Asiatic Region;"Dow University of Health Sciences";"2018-2025";"Health Professions (miscellaneous) (Q4)";"Health Professions" +28268;23171;"Korean Journal of Pharmacognosy";journal;"02533073, 22889299";"Korean Society of Pharmacognosy";No;No;0,120;Q4;19;40;90;1145;18;90;0,25;28,63;45,39;0;South Korea;Asiatic Region;"Korean Society of Pharmacognosy";"1990-2025";"Drug Discovery (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +28269;21101226036;"Medicinskij Akademiceskij Zurnal";journal;"26871378, 16084101";"Eco-Vector LLC";No;No;0,120;Q4;4;34;141;1854;32;141;0,25;54,53;60,24;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28270;19700182733;"Neurologia Argentina";journal;"18530028, 18531490";"Ediciones Doyma, S.L.";No;No;0,120;Q4;9;42;123;1011;16;119;0,16;24,07;42,29;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2010-2026";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +28271;19460;"Petroleum Processing and Petrochemicals";journal;"10052399";"Research Institute of Petroleum Processing, SINOPEC";No;No;0,120;Q4;15;221;750;2185;168;750;0,23;9,89;34,02;0;China;Asiatic Region;"Research Institute of Petroleum Processing, SINOPEC";"1996-2025";"Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering; Energy" +28272;21101023173;"Plasma Research Express";journal;"25161067";"IOP Publishing Ltd.";No;No;0,120;Q4;14;0;15;0;7;15;0,00;0,00;0,00;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"2019-2022";"Condensed Matter Physics (Q4); Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4)";"Energy; Physics and Astronomy" +28273;21101021434;"Politica del Diritto";journal;"00323063, 19738161";"Societa Editrice Il Mulino";No;No;0,120;Q4;2;9;63;778;8;63;0,13;86,44;33,33;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2020-2025";"Law (Q4)";"Social Sciences" +28274;21101289971;"Psychiatry, Neurology and Medical Psychology";journal;"23125675, 2411166X";"V N Karazin Kharkiv National University";Yes;No;0,120;Q4;3;64;64;1868;21;64;0,34;29,19;68,67;0;Ukraine;Eastern Europe;"V N Karazin Kharkiv National University";"2021-2025";"Clinical Psychology (Q4); Education (Q4); Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology; Social Sciences" +28275;21100929577;"Psychoterapie";journal;"26950200, 18023983";"Masaryk University";No;No;0,120;Q4;3;0;48;0;5;39;0,03;0,00;0,00;0;Czech Republic;Eastern Europe;"Masaryk University";"2019-2024";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +28276;21101040206;"Revista Academica Ciencia Animal";journal;"25962868";"Editora Champagnat";No;Yes;0,120;Q4;3;25;43;688;7;43;0,13;27,52;47,56;0;Brazil;Latin America;"Editora Champagnat";"2019-2026";"Animal Science and Zoology (Q4); Food Science (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +28277;21101373165;"Revista Investigaciones y Estudios";journal;"20700415, 27090817";"Faculty of Medical Sciences, Santa Rosa del Aguaray Branch, National University of Asuncion";Yes;No;0,120;Q4;3;16;56;399;9;48;0,17;24,94;38,10;0;Paraguay;Latin America;"Faculty of Medical Sciences, Santa Rosa del Aguaray Branch, National University of Asuncion";"2021-2025";"Biotechnology (Q4); Water Science and Technology (Q4)";"Biochemistry, Genetics and Molecular Biology; Environmental Science" +28278;21100853515;"Revista Romana de Cardiologie";journal;"1220658X, 27346382";"Sciendo";Yes;Yes;0,120;Q4;4;38;93;1087;21;88;0,27;28,61;42,86;0;Romania;Eastern Europe;"Sciendo";"2012-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28279;5700161893;"Revue Internationale de Politique Comparee";journal;"13700731, 17821533";"De Boeck Supérieur";No;No;0,120;Q4;16;0;39;0;4;37;0,11;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"2001-2023";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28280;21101122883;"Romanian Journal of Infectious Diseases";journal;"20696051, 14543389";"Amaltea Medical Publishing House";Yes;No;0,120;Q4;4;45;100;1117;27;98;0,33;24,82;51,55;0;Romania;Eastern Europe;"Amaltea Medical Publishing House";"2006-2025";"Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4)";"Immunology and Microbiology; Medicine" +28281;21101168872;"Rossijskij Bioterapevticeskij Zurnal";journal;"17269792, 17269784";"ABV-press Publishing House";No;No;0,120;Q4;6;34;97;865;23;97;0,20;25,44;57,95;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2019-2025";"Applied Microbiology and Biotechnology (Q4); Cancer Research (Q4); Immunology (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +28282;21100296235;"Springer Proceedings in Physics";book series;"09308989, 18674941";"Springer Science and Business Media Deutschland GmbH";No;No;0,120;Q4;26;1401;3389;24083;637;3272;0,20;17,19;31,31;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1984-1990, 1992-1994, 1997, 2001, 2004, 2006-2026";"Nuclear and High Energy Physics (Q4); Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +28283;19500157813;"Suchttherapie";journal;"1439989X, 14399903";"Georg Thieme Verlag";No;No;0,120;Q4;12;29;108;688;12;69;0,11;23,72;35,37;0;Germany;Western Europe;"Georg Thieme Verlag";"2000-2026";"Applied Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +28284;21100877171;"Trabajo y Derecho";journal;"23868112, 23868090";"LA LEY Soluciones Legales, S.A.";No;No;0,120;Q4;4;152;425;2046;16;174;0,04;13,46;50,00;0;Spain;Western Europe;"LA LEY Soluciones Legales, S.A.";"2015-2026";"Law (Q4)";"Social Sciences" +28285;21101389271;"University of Queensland Law Journal";journal;"00834041, 1839289X";"University of Queensland";No;No;0,120;Q4;5;11;47;868;13;46;0,29;78,91;58,82;0;Australia;Pacific Region;"University of Queensland";"2021-2025";"Law (Q4)";"Social Sciences" +28286;21100370476;"Urologia Colombiana";journal;"20270119, 0120789X";"Permanyer Publications";Yes;Yes;0,120;Q4;7;33;97;796;12;80;0,06;24,12;52,27;0;Spain;Western Europe;"Permanyer Publications";"2014-2025";"Urology (Q4)";"Medicine" +28287;21101164607;"ICAS Proceedings";conference and proceedings;"10259090, 29584647";"International Council of the Aeronautical Sciences";No;No;0,120;-;5;0;791;0;204;789;0,26;0,00;0,00;0;Germany;Western Europe;"International Council of the Aeronautical Sciences";"2022, 2024";"Aerospace Engineering; Control and Systems Engineering; Electrical and Electronic Engineering; Materials Science (miscellaneous)";"Engineering; Materials Science" +28288;21101057627;"International Conference on Multidisciplinary Research";conference and proceedings;"16943597, 16943600";"Society for Research and Knowledge Management";No;No;0,120;-;3;0;52;0;18;49;0,35;0,00;0,00;0;Mauritius;Africa;"Society for Research and Knowledge Management";"2018, 2020, 2023-2024";"Multidisciplinary";"Multidisciplinary" +28289;21101017886;"Proceedings of the International Conference of Architectural Science Association";conference and proceedings;"22093850";"Architectural Science Association";No;No;0,120;-;6;0;213;0;32;207;0,09;0,00;0,00;0;Australia;Pacific Region;"Architectural Science Association";"2019-2020, 2022-2024";"Architecture; Building and Construction; Environmental Engineering; Management, Monitoring, Policy and Law; Renewable Energy, Sustainability and the Environment; Urban Studies";"Energy; Engineering; Environmental Science; Social Sciences" +28290;21100316016;"Proceedings of the International Conference on Port and Ocean Engineering under Arctic Conditions, POAC";conference and proceedings;"20777841, 03766756";"Lulea University of Technology";No;No;0,120;-;20;106;85;1756;16;84;0,19;16,57;19,67;0;Sweden;Western Europe;"Lulea University of Technology";"2005, 2007, 2009, 2011, 2013, 2015, 2017, 2019, 2021, 2023, 2025";"Ocean Engineering; Safety, Risk, Reliability and Quality";"Engineering" +28291;21100198520;"Proceedings of the International Conference on Sensing Technology, ICST";conference and proceedings;"21568065, 21568073";"IEEE Computer Society";No;No;0,120;-;27;0;162;0;50;160;0,31;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2011-2014, 2016-2019, 2023-2024";"Artificial Intelligence; Computer Science Applications; Electrical and Electronic Engineering; Signal Processing";"Computer Science; Engineering" +28292;21101140400;"Proceedings of the International Congress on Sound and Vibration";conference and proceedings;"23293675";"Society of Acoustics";No;No;0,120;-;5;201;1409;2554;130;1406;0,10;12,71;27,26;0;Singapore;Asiatic Region;"Society of Acoustics";"2022-2025";"Acoustics and Ultrasonics";"Physics and Astronomy" +28293;13611;"Ariel";journal;"00041327";"Johns Hopkins University Press";No;No;0,119;Q2;17;13;65;702;19;62;0,28;54,00;58,33;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28294;21100933896;"De Medio Aevo";journal;"22555889";"Universidad Complutense Madrid";Yes;Yes;0,119;Q2;4;21;83;1155;23;77;0,23;55,00;34,78;0;Spain;Western Europe;"Universidad Complutense Madrid";"2019-2026";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Philosophy (Q3); Religious Studies (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities; Social Sciences" +28295;21101021441;"European Journal of American Studies";journal;"19919336";"";Yes;Yes;0,119;Q2;6;22;146;643;39;139;0,24;29,23;52,38;0;France;Western Europe;"";"2018-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Geography, Planning and Development (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28296;16800154747;"Religion and Literature";journal;"08883769, 23286911";"University of Notre Dame";No;No;0,119;Q2;12;0;52;0;2;49;0,03;0,00;0,00;0;United States;Northern America;"University of Notre Dame";"2002-2024";"Literature and Literary Theory (Q2); Religious Studies (Q3)";"Arts and Humanities" +28297;22341;"Traditio";journal;"21665508, 03621529";"Cambridge University Press";No;No;0,119;Q2;16;10;26;1699;10;26;0,32;169,90;20,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1964, 1966, 1974-1978, 1980-1982, 1985-1987, 2001-2025";"Literature and Literary Theory (Q2); Philosophy (Q3); Religious Studies (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28298;16000154749;"Wiener Studien";journal;"0084005X, 18133924";"Verlag der Oesterreichischen Akademie der Wissenschaften";No;No;0,119;Q2;11;10;34;407;4;33;0,15;40,70;44,44;0;Austria;Western Europe;"Verlag der Oesterreichischen Akademie der Wissenschaften";"2002-2025";"Classics (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28299;21101021138;"Annales Instituti Archaeologici";journal;"18486363";"Institut za Arheologiju";No;No;0,119;Q3;5;3;42;34;11;40;0,23;11,33;100,00;0;Croatia;Eastern Europe;"Institut za Arheologiju";"2019-2026";"Archeology (arts and humanities) (Q3); Archeology (Q4)";"Arts and Humanities; Social Sciences" +28300;19700170236;"Arms and Armour";journal;"17496268, 17416124";"Maney Publishing";No;No;0,119;Q3;5;14;35;506;4;35;0,12;36,14;5,88;0;United Kingdom;Western Europe;"Maney Publishing";"2010-2026";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +28301;21100943609;"Artifact";journal;"17493471, 17493463";"Intellect Ltd.";Yes;Yes;0,119;Q3;5;0;8;0;4;8;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2022";"Visual Arts and Performing Arts (Q3); Computer Graphics and Computer-Aided Design (Q4)";"Arts and Humanities; Computer Science" +28302;21100244612;"Augustinian Studies";journal;"00945323, 21537917";"Philosophy Documentation Center";No;No;0,119;Q3;20;4;27;282;9;26;0,33;70,50;33,33;0;United States;Northern America;"Philosophy Documentation Center";"1996-2024";"History (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28303;6500153101;"Early Music";journal;"17417260, 03061078";"Oxford University Press";No;No;0,119;Q3;20;0;134;0;10;119;0,04;0,00;0,00;0;United Kingdom;Western Europe;"Oxford University Press";"1973-2024";"Music (Q3)";"Arts and Humanities" +28304;21101079128;"Endowment Studies";journal;"24685968, 2468595X";"Brill Academic Publishers";No;No;0,119;Q3;4;0;19;0;11;19;0,64;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2024";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28305;15246;"Historical Reflections";journal;"03157997, 19392419";"Berghahn Journals";No;No;0,119;Q3;12;22;52;1287;9;49;0,11;58,50;63,16;0;United Kingdom;Western Europe;"Berghahn Journals";"1977, 1979, 1982-1983, 1985, 1987, 1989, 1999, 2001-2025";"History (Q3)";"Arts and Humanities" +28306;21100467355;"Historicka Sociologie";journal;"18040616, 23363525";"Karolinum - Nakladatelstvi Univerzity Karlovy";Yes;Yes;0,119;Q3;4;16;68;611;13;64;0,14;38,19;26,67;0;Czech Republic;Eastern Europe;"Karolinum - Nakladatelstvi Univerzity Karlovy";"2016-2025";"Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28307;21101278609;"Indian Journal of Respiratory Care";journal;"23214899, 22779019";"Jaypee Brothers Medical Publishers (P) Ltd";Yes;Yes;0,119;Q3;3;64;227;1185;33;199;0,12;18,52;42,07;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2022-2025";"Respiratory Care (Q3); Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4); Pulmonary and Respiratory Medicine (Q4)";"Health Professions; Medicine" +28308;20177;"Jahrbuecher fuer Geschichte Osteuropas";journal;"23662891, 00214019";"Franz Steiner Verlag GmbH";No;No;0,119;Q3;14;5;100;185;13;90;0,10;37,00;50,00;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"1978, 1982, 1985-1986, 1999, 2001-2025";"History (Q3)";"Arts and Humanities" +28309;21100885612;"Journal of Migration History";journal;"23519924, 23519916";"Brill Academic Publishers";No;No;0,119;Q3;9;19;55;1833;17;55;0,29;96,47;39,13;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2025";"Cultural Studies (Q3); History (Q3); Anthropology (Q4); Demography (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28310;20000195031;"Krisis";journal;"18757103, 0168275X";"Boom Uitgevers";Yes;Yes;0,119;Q3;11;9;46;377;20;43;0,29;41,89;57,14;0;Netherlands;Western Europe;"Boom Uitgevers";"2011-2025";"Cultural Studies (Q3); Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28311;16494;"Late Imperial China";journal;"08843236, 10863257";"Johns Hopkins University Press";No;No;0,119;Q3;19;5;20;365;5;19;0,25;73,00;0,00;0;United States;Northern America;"Johns Hopkins University Press";"1978, 1987-1988, 1999, 2001-2025";"Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28312;6700153127;"New Theatre Quarterly";journal;"14740613, 0266464X";"Cambridge University Press";No;No;0,119;Q3;19;3;79;176;15;79;0,11;58,67;66,67;0;United Kingdom;Western Europe;"Cambridge University Press";"1985-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28313;14000155249;"Nineteenth Century Music";journal;"01482076, 15338606";"University of California Press";No;No;0,119;Q3;23;10;32;741;6;31;0,13;74,10;37,50;0;United States;Northern America;"University of California Press";"1977-2025";"Music (Q3)";"Arts and Humanities" +28314;21100840734;"Preternature";journal;"21612196, 21612188";"Penn State University Press";No;No;0,119;Q3;5;8;35;523;5;33;0,15;65,38;42,86;0;United States;Northern America;"Penn State University Press";"2014, 2017-2026";"Cultural Studies (Q3); History (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +28315;26762;"Rivista di Storia della Chiesa in Italia";journal;"1827790X, 00356557";"Vita e Pensiero";No;No;0,119;Q3;4;0;59;0;9;59;0,14;0,00;0,00;0;Italy;Western Europe;"Vita e Pensiero";"1973-1974, 1983, 1987, 2011, 2013-2018, 2020-2024";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +28316;24281;"Studia Neophilologica";journal;"16512308, 00393274";"Routledge";No;No;0,119;Q3;14;38;94;1402;17;89;0,19;36,89;50,00;0;United Kingdom;Western Europe;"Routledge";"1928-1953, 1955-2026";"Linguistics and Language (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +28317;21100227000;"Tzintzun";journal;"2007963X, 1870719X";"Instituto de investigaciones historicas, Universidad Michoacana";Yes;No;0,119;Q3;5;45;114;1677;9;109;0,07;37,27;30,56;0;Mexico;Latin America;"Instituto de investigaciones historicas, Universidad Michoacana";"2000, 2012-2025";"History (Q3)";"Arts and Humanities" +28318;25553;"Allgemeine Forst- und Jagdzeitung";journal;"00025852";"J. D. Sauerlaenders Publishing House";No;No;0,119;Q4;27;0;15;0;4;13;0,00;0,00;0,00;0;Germany;Western Europe;"J. D. Sauerlaenders Publishing House";"1977-1978, 1981, 1983-1989, 1996-2015, 2017-2022";"Ecology (Q4); Forestry (Q4)";"Agricultural and Biological Sciences; Environmental Science" +28319;21100868294;"Bulletin of Siberian Medicine";journal;"16820363, 18193684";"Siberian State Medical University";Yes;Yes;0,119;Q4;12;0;182;0;51;181;0,31;0,00;0,00;0;Russian Federation;Eastern Europe;"Siberian State Medical University";"2018-2023";"Molecular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology" +28320;13868;"Cahiers de Biologie Marine";journal;"22623094, 00079723";"Station Biologique de Roscoff";No;No;0,119;Q4;40;0;21;0;7;21;0,11;0,00;0,00;0;France;Western Europe;"Station Biologique de Roscoff";"1992-2023";"Aquatic Science (Q4)";"Agricultural and Biological Sciences" +28321;21393;"Chinese Journal of Microbiology and Immunology";journal;"02545101";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,119;Q4;9;118;415;4296;66;411;0,18;36,41;50,24;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1972, 1974-1989, 1993-2026";"Immunology (Q4); Microbiology (Q4); Virology (Q4)";"Immunology and Microbiology" +28322;21101241974;"Chinese Journal of Radiation Oncology";journal;"10044221";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,119;Q4;6;147;517;4547;101;517;0,16;30,93;41,93;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +28323;21101061446;"Drugs and Clinic";journal;"16745515";"Tianjin Press of Chinese Herbal Medicines";No;No;0,119;Q4;5;511;1373;12841;250;1373;0,19;25,13;51,60;0;China;Asiatic Region;"Tianjin Press of Chinese Herbal Medicines";"2021-2026";"Drug Discovery (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +28324;21101151823;"Emergency Medicine (Ukraine)";journal;"23071230, 22240586";"Zaslavsky Publishing House";Yes;No;0,119;Q4;5;113;275;3018;64;252;0,29;26,71;36,98;0;Ukraine;Eastern Europe;"Zaslavsky Publishing House";"2019-2025";"Anesthesiology and Pain Medicine (Q4); Emergency Medicine (Q4)";"Medicine" +28325;21100198239;"Enfances, Familles, Generations";journal;"17086310";"Centre - Urbanisation Culture Societe de l'INRS";Yes;Yes;0,119;Q4;10;0;98;0;8;98;0,08;0,00;0,00;0;Canada;Northern America;"Centre - Urbanisation Culture Societe de l'INRS";"2011-2024";"Anthropology (Q4); Social Psychology (Q4); Social Sciences (miscellaneous) (Q4)";"Psychology; Social Sciences" +28326;21101393932;"Erbil Dental Journal";journal;"25236172, 26164795";"";No;No;0,119;Q4;2;35;79;838;12;79;0,18;23,94;26,09;0;Iraq;Middle East;"";"2022-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +28327;19700174925;"European Pharmaceutical Review";trade journal;"13608606";"Russell Publishing";No;No;0,119;Q4;10;0;59;0;12;59;0,20;0,00;0,00;0;United Kingdom;Western Europe;"Russell Publishing";"2009-2019, 2023-2024";"Biochemistry (Q4); Biophysics (Q4); Biotechnology (Q4); Molecular Medicine (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +28328;21100847478;"Geological Research in Moravia and Silesia";journal;"23364378, 12126209";"Masaryk University";Yes;No;0,119;Q4;5;8;23;225;4;23;0,23;28,13;30,00;0;Czech Republic;Eastern Europe;"Masaryk University";"2017-2025";"Geology (Q4)";"Earth and Planetary Sciences" +28329;19700184400;"Geoscience in South-West England";journal;"20597339";"Ussher Society";No;No;0,119;Q4;17;4;7;87;2;7;0,33;21,75;20,00;0;United Kingdom;Western Europe;"Ussher Society";"1979-2014, 2016, 2022-2023, 2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +28330;21101371011;"Herald of Advanced Information Technology";journal;"26630176, 26637731";"Odesa Polytechnic National University";No;No;0,119;Q4;3;32;80;1003;29;80;0,39;31,34;26,09;0;Ukraine;Eastern Europe;"Odesa Polytechnic National University";"2022-2025";"Computer Networks and Communications (Q4); Computer Science (miscellaneous) (Q4); Information Systems (Q4); Software (Q4)";"Computer Science" +28331;21101055931;"Indonesian Journal of Agricultural Science";journal;"1411982X, 23548509";"Indonesian Agency for Agricultural Research and Development";No;No;0,119;Q4;5;0;8;0;4;8;0,00;0,00;0,00;0;Indonesia;Asiatic Region;"Indonesian Agency for Agricultural Research and Development";"2019-2022";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Food Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +28332;20500195017;"Industrielle Beziehungen";journal;"18620035, 09432779";"Nomos Verlagsgesellschaft mbH und Co KG";No;No;0,119;Q4;14;0;45;0;10;36;0,06;0,00;0,00;0;Germany;Western Europe;"Nomos Verlagsgesellschaft mbH und Co KG";"2008-2024";"Business and International Management (Q4); Industrial Relations (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +28333;22858;"Japanese Pharmacology and Therapeutics";journal;"03863603";"Life Science Publishing Co. Ltd";No;No;0,119;Q4;18;49;107;964;10;106;0,09;19,67;32,83;0;Japan;Asiatic Region;"Life Science Publishing Co. Ltd";"1981-2026";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +28334;21101278595;"Journal of Ayurveda and Holistic Medicine";journal;"23492740, 23211563";"Atreya Ayurveda Publications";Yes;No;0,119;Q4;2;154;376;3198;25;369;0,07;20,77;43,50;0;India;Asiatic Region;"Atreya Ayurveda Publications";"2021-2026";"Complementary and Alternative Medicine (Q4)";"Medicine" +28335;19206;"Journal of Bamboo and Rattan";journal;"09734449, 15691594";"KSCSTE- Kerala Forest Research Institute";No;No;0,119;Q4;19;5;33;179;12;33;0,29;35,80;28,57;0;India;Asiatic Region;"KSCSTE- Kerala Forest Research Institute";"2002-2007, 2009-2025";"Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Horticulture (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +28336;21101183468;"Journal of Clinical Practice";journal;"26188627, 22203095";"Eco-Vector LLC";Yes;Yes;0,119;Q4;10;47;150;1466;32;150;0,19;31,19;48,36;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28337;22917;"Journal of Empirical Generalisations in Marketing Science";journal;"13264443";"University of South Australia";Yes;No;0,119;Q4;13;1;7;36;3;6;0,00;36,00;0,00;0;Australia;Pacific Region;"University of South Australia";"1996-2003, 2005-2007, 2009-2010, 2013-2014, 2016-2023, 2025";"Marketing (Q4)";"Business, Management and Accounting" +28338;21101182140;"Journal of Sexual and Mental Health";journal;"29565677";"Via Medica";No;No;0,119;Q4;8;14;37;652;11;36;0,65;46,57;62,22;0;Poland;Eastern Europe;"Via Medica";"2022-2025";"Endocrinology, Diabetes and Metabolism (Q4); Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4); Reproductive Medicine (Q4)";"Medicine; Psychology" +28339;21100204117;"Journal of the Dermatology Nurses' Association";journal;"1945760X";"Lippincott Williams and Wilkins";No;No;0,119;Q4;10;30;126;298;15;97;0,15;9,93;65,52;0;United States;Northern America;"Lippincott Williams and Wilkins";"2009, 2012-2026";"Advanced and Specialized Nursing (Q4)";"Nursing" +28340;17115;"Journal of the Textile Association";journal;"03684636";"Textile Association (India)";Yes;No;0,119;Q4;14;79;177;1747;30;144;0,17;22,11;45,11;0;India;Asiatic Region;"Textile Association (India)";"1999-2025";"Business and International Management (Q4); Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)";"Business, Management and Accounting; Engineering; Materials Science" +28341;21101329155;"Klinicist";journal;"24128775, 18188338";"ABV-press Publishing House";Yes;No;0,119;Q4;4;21;76;697;21;74;0,25;33,19;70,18;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2021-2025";"Cardiology and Cardiovascular Medicine (Q4); Endocrinology (Q4); Neurology (Q4); Rheumatology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine; Neuroscience" +28342;21101272294;"Laboratory Animal and Comparative Medicine";journal;"16745817";"";Yes;No;0,119;Q4;4;79;222;3153;61;222;0,32;39,91;47,38;0;China;Asiatic Region;"";"2021-2026";"Animal Science and Zoology (Q4); Medical Laboratory Technology (Q4); Medicine (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Health Professions; Medicine" +28343;21100975545;"Lecture Notes on Data Engineering and Communications Technologies";book series;"23674512, 23674520";"Springer International Publishing AG";No;No;0,119;Q4;40;1422;8415;28065;4040;3126;0,53;19,74;43,24;0;Switzerland;Western Europe;"Springer International Publishing AG";"2017-2026";"Computer Networks and Communications (Q4); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Information Systems (Q4); Media Technology (Q4)";"Computer Science; Engineering" +28344;21101259008;"Media Publikasi Promosi Kesehatan Indonesia";journal;"25976052";"Muhammadiyah Palu University";No;No;0,119;Q4;5;140;927;5568;182;926;0,22;39,77;57,78;0;Indonesia;Asiatic Region;"Muhammadiyah Palu University";"2020-2026";"Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4); Reproductive Medicine (Q4)";"Medicine" +28345;18364;"Medicina (Brazil)";journal;"00766046, 21767262";"Faculdade de Medicina de Ribeirao Preto - U.S.P.";Yes;Yes;0,119;Q4;14;50;343;1608;44;339;0,12;32,16;60,00;0;Brazil;Latin America;"Faculdade de Medicina de Ribeirao Preto - U.S.P.";"1991-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28346;21100829266;"Medicina Veterinaria (Brazil)";journal;"26756617, 18094678";"Universidade Federal Rural de Pernambuco";Yes;Yes;0,119;Q4;7;49;123;1289;15;122;0,09;26,31;51,43;0;Brazil;Latin America;"Universidade Federal Rural de Pernambuco";"2008-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +28347;22339;"Nigerian Journal of Economic and Social Studies";journal;"00290092";"Nigerian Economic Society";No;No;0,119;Q4;6;19;53;1117;10;53;0,22;58,79;35,29;0;Nigeria;Africa;"Nigerian Economic Society";"1967, 1974-1977, 1982, 1984-1988, 1992, 1996-2009, 2016-2025";"Economics and Econometrics (Q4); Finance (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +28348;21100860142;"Problemi Endokrinnoi Patologii";journal;"25181432, 22274782";"National Academy of Medical Science and Ministry of Health of Ukraine";Yes;No;0,119;Q4;7;35;141;1035;46;141;0,42;29,57;66,28;0;Ukraine;Eastern Europe;"National Academy of Medical Science and Ministry of Health of Ukraine";"2018-2025";"Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Pathology and Forensic Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28349;22519;"Problemy Sotsialnoi Gigieny";journal;"24122106, 0869866X";"";No;No;0,119;Q4;8;220;613;0;129;613;0,18;0,00;60,78;0;Russian Federation;Eastern Europe;"";"1994-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28350;144766;"Quaderni ACP";journal;"20391374, 20391382";"Associazione Culturale Pediatri";Yes;No;0,119;Q4;6;80;255;827;13;115;0,06;10,34;73,28;0;Italy;Western Europe;"Associazione Culturale Pediatri";"2005-2026";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28351;23495;"Revista Cubana de Estomatologia";journal;"00347507, 1561297X";"Editorial Ciencias Medicas";Yes;Yes;0,119;Q4;10;8;90;212;17;86;0,16;26,50;45,83;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1973-1978, 1982-1989, 1996-2002, 2005-2026";"Dentistry (miscellaneous) (Q4)";"Dentistry" +28352;5000158301;"Revista Cubana de Medicina Militar";journal;"15613046, 01386557";"Editorial Ciencias Medicas";Yes;Yes;0,119;Q4;11;211;551;4732;79;513;0,14;22,43;44,64;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1996-2002, 2006-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28353;15788;"Revista Cubana de Pediatria";journal;"00347531, 15613119";"Editorial Ciencias Medicas";Yes;Yes;0,119;Q4;12;46;193;970;20;164;0,11;21,09;61,24;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1946-1963, 1972-1977, 1988-1991, 1996-2002, 2005-2026";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28354;21101178117;"Revista del Nacional (Itaugua)";journal;"23073640, 20728174";"Republica del Paraguay Ministry of Public Health and Social Welfare";Yes;Yes;0,119;Q4;4;36;88;884;15;78;0,22;24,56;58,96;0;Paraguay;Latin America;"Republica del Paraguay Ministry of Public Health and Social Welfare";"2019-2025";"Health Professions (miscellaneous) (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine; Social Sciences" +28355;21100244220;"Singapore Journal of Legal Studies";journal;"02182173";"National University of Singapore, Faculty of Law";No;No;0,119;Q4;10;22;42;395;12;41;0,29;17,95;5,00;0;Singapore;Asiatic Region;"National University of Singapore, Faculty of Law";"2012-2013, 2019-2021, 2023-2025";"Law (Q4)";"Social Sciences" +28356;21101313965;"Smart Grid Conference, SGC";journal;"25726927, 25726935";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,119;Q4;3;0;67;0;42;66;0,63;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Control and Optimization (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Safety, Risk, Reliability and Quality (Q4)";"Computer Science; Energy; Engineering; Mathematics" +28357;300147005;"Tamkang Journal of International Affairs";journal;"10274979";"Tamkang University";No;No;0,119;Q4;6;8;26;523;9;26;0,37;65,38;33,33;0;Taiwan;Asiatic Region;"Tamkang University";"2005-2025";"Business and International Management (Q4); Education (Q4); Political Science and International Relations (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +28358;54639;"Thai Journal of Agricultural Science";journal;"00493589, 26974762";"Agricultural Science Society of Thailand";No;No;0,119;Q4;12;0;34;0;9;34;0,31;0,00;0,00;0;Thailand;Asiatic Region;"Agricultural Science Society of Thailand";"1973-1974, 1977, 1979, 1983, 2011-2015, 2022-2024";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +28359;19700175095;"Turkiye Klinikleri Cardiovascular Sciences";journal;"13067656, 21469032";"Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.";Yes;No;0,119;Q4;5;0;38;0;10;36;0,17;0,00;0,00;0;Turkey;Middle East;"Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.";"2010-2024";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28360;130024;"Turkiye Klinikleri Journal of Medical Sciences";journal;"13000292";"Turkiye Klinikleri";No;No;0,119;Q4;20;28;115;815;27;112;0,19;29,11;61,96;0;Turkey;Middle East;"Turkiye Klinikleri";"2005-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28361;19406;"Waterlines";journal;"17563488, 02628104";"Practical Action Publishing";No;No;0,119;Q4;26;19;28;471;3;24;0,08;24,79;42,19;0;United Kingdom;Western Europe;"Practical Action Publishing";"1983-2025";"Water Science and Technology (Q4)";"Environmental Science" +28362;21000195316;"World Journal of Endocrine Surgery";journal;"09755039, 09757902";"Jaypee Brothers Medical Publishers (P) Ltd";No;No;0,119;Q4;7;12;60;198;7;56;0,03;16,50;42,50;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2011-2025";"Endocrinology, Diabetes and Metabolism (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)";"Medicine" +28363;28128;"World Review of Nutrition and Dietetics";journal;"16623975, 00842230";"S. Karger AG";No;No;0,119;Q4;48;11;127;171;18;98;0,14;15,55;0,00;0;Switzerland;Western Europe;"S. Karger AG";"1959-1961, 1964-1966, 1968-2001, 2003-2005, 2007-2025";"Food Science (Q4); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Nursing" +28364;24068;"Zhurnal Vysshei Nervnoi Deyatelnosti Imeni I.P. Pavlova";journal;"00444677";"Izdatel'stvo Nauka";No;No;0,119;Q4;18;50;167;3457;52;167;0,35;69,14;54,90;0;Russian Federation;Eastern Europe;"Izdatel'stvo Nauka";"1951-2025";"Medicine (miscellaneous) (Q4); Neuroscience (miscellaneous) (Q4)";"Medicine; Neuroscience" +28365;28942;"Zhuzao/Foundry";journal;"10014977";"Chinese Mechanical Engineering Society";No;No;0,119;Q4;15;204;724;4293;118;724;0,14;21,04;31,62;0;China;Asiatic Region;"Chinese Mechanical Engineering Society";"1987-1989, 1998, 2001-2026";"Instrumentation (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4)";"Materials Science; Physics and Astronomy" +28366;21100854753;"International Conference of Control, Dynamic Systems, and Robotics";conference and proceedings;"23685433";"Avestia Publishing";No;No;0,119;-;7;28;63;366;11;60;0,11;13,07;16,90;0;Canada;Northern America;"Avestia Publishing";"2014-2025";"Artificial Intelligence; Control and Optimization; Control and Systems Engineering";"Computer Science; Engineering; Mathematics" +28367;21100202126;"Bulletin of the Institute of Classical Studies";journal;"20415370, 00760730";"Wiley-Blackwell";No;No;0,118;Q2;27;20;53;1379;13;49;0,10;68,95;38,10;0;United States;Northern America;"Wiley-Blackwell";"1954-2025";"Classics (Q2); Archeology (arts and humanities) (Q3); History (Q3); Linguistics and Language (Q3); Archeology (Q4)";"Arts and Humanities; Social Sciences" +28368;19900191814;"Journal of Victorian Culture";journal;"13555502, 17500133";"Oxford University Press";No;No;0,118;Q2;24;14;126;1253;32;120;0,17;89,50;53,85;0;United Kingdom;Western Europe;"Oxford University Press";"1996-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities; Social Sciences" +28369;21100948932;"Keria";journal;"23504234, 15800261";"University of Ljubljana Press";Yes;Yes;0,118;Q2;3;10;71;379;4;70;0,02;37,90;0,00;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2019-2025";"Classics (Q2); Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28370;19400157323;"KulturPoetik";journal;"16161203, 21967970";"";No;No;0,118;Q2;4;8;42;220;5;38;0,04;27,50;55,56;0;Germany;Western Europe;"";"2009-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +28371;28900;"Latomus";journal;"22944427, 00238856";"Peeters Publishers";No;No;0,118;Q2;13;16;104;741;10;88;0,06;46,31;36,36;0;Belgium;Western Europe;"Peeters Publishers";"1971-1974, 1980, 2002-2025";"Classics (Q2); Literature and Literary Theory (Q2); Archeology (arts and humanities) (Q3); History (Q3); Linguistics and Language (Q3); Archeology (Q4)";"Arts and Humanities; Social Sciences" +28372;16100154798;"Milton Studies";book series;"00768820";"University of Pittsburgh";No;No;0,118;Q2;12;11;36;703;11;35;0,17;63,91;60,00;0;United States;Northern America;"University of Pittsburgh";"1971, 1973-1974, 2002-2009, 2011-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28373;16000154717;"Modern Language Quarterly";journal;"00267929";"Duke University Press";No;No;0,118;Q2;31;18;81;597;30;78;0,29;33,17;33,33;0;United States;Northern America;"Duke University Press";"1996-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28374;21100267944;"Perinola";journal;"11386363";"Universidad de Navarra";No;No;0,118;Q2;6;16;59;656;4;57;0,10;41,00;12,50;0;Spain;Western Europe;"Universidad de Navarra";"2011-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28375;5800198046;"Scandinavian Studies";journal;"00365637";"Society for the Advancement of Scandinavian Study";No;No;0,118;Q2;16;18;92;865;15;91;0,10;48,06;63,64;0;United States;Northern America;"Society for the Advancement of Scandinavian Study";"1974, 1999, 2002-2026";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28376;21100780699;"A+BE Architecture and the Built Environment";book series;"22147233, 22123202";"TU Delft";Yes;No;0,118;Q3;7;0;331;0;20;184;0,05;0,00;0,00;0;Netherlands;Western Europe;"TU Delft";"2016-2018, 2021-2024";"History (Q3); Architecture (Q4); Building and Construction (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +28377;21100857171;"Australasian Review of African Studies";journal;"22035184, 14478420";"African Studies Association of Australasia and the Pacific";No;No;0,118;Q3;10;0;33;0;7;33;0,16;0,00;0,00;0;Australia;Pacific Region;"African Studies Association of Australasia and the Pacific";"2017-2024";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28378;5600152968;"Caderno CRH";journal;"01034979, 19838239";"EDUFBA - Editora Universttaria";Yes;Yes;0,118;Q3;15;93;112;4132;13;103;0,12;44,43;40,00;0;Brazil;Latin America;"EDUFBA - Editora Universttaria";"2009-2025";"Cultural Studies (Q3); Sociology and Political Science (Q4)";"Social Sciences" +28379;6500153135;"Contemporary Music Review";journal;"07494467, 14772256";"Routledge";No;No;0,118;Q3;25;16;115;512;28;100;0,23;32,00;50,00;0;United Kingdom;Western Europe;"Routledge";"1984, 1987-1989, 1991-2026";"Music (Q3)";"Arts and Humanities" +28380;77201;"Etnografia Polska";journal;"00711861";"Polska Akademia Nauk";Yes;Yes;0,118;Q3;6;14;41;575;14;34;0,30;41,07;87,50;0;Poland;Eastern Europe;"Polska Akademia Nauk";"1983, 2001, 2011-2025";"Cultural Studies (Q3); Anthropology (Q4)";"Social Sciences" +28381;21100902912;"European Yearbook of Minority Issues";journal;"15707865, 22116117";"Brill Academic Publishers";No;No;0,118;Q3;14;0;42;0;9;41;0,33;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2001, 2003-2005, 2008, 2010-2024";"Cultural Studies (Q3); Anthropology (Q4); Geography, Planning and Development (Q4); Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28382;21101238662;"History in Flux";journal;"27064441, 2706414X";"Juraj Dobrila University of Pula";Yes;Yes;0,118;Q3;2;0;24;0;3;23;0,18;0,00;0,00;0;Croatia;Eastern Europe;"Juraj Dobrila University of Pula";"2020-2024";"History (Q3)";"Arts and Humanities" +28383;21100901578;"Indonesian Journal of International and Comparative Law";journal;"2338770X, 23387602";"Institute for Migrant Rights Press";No;No;0,118;Q3;4;0;45;0;11;34;0,19;0,00;0,00;0;Indonesia;Asiatic Region;"Institute for Migrant Rights Press";"2018-2024";"Cultural Studies (Q3); Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28384;27333;"Journal of American Ethnic History";journal;"02785927, 19364695";"University of Illinois Press";No;No;0,118;Q3;22;23;72;1634;16;67;0,19;71,04;59,09;0;United States;Northern America;"University of Illinois Press";"1989, 2000-2025";"Cultural Studies (Q3); History (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +28385;17600155301;"Journal of British Cinema and Television";journal;"17434521, 17551714";"Edinburgh University Press";No;No;0,118;Q3;17;19;69;843;17;66;0,18;44,37;44,44;1;United Kingdom;Western Europe;"Edinburgh University Press";"2004-2025";"Visual Arts and Performing Arts (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +28386;19400157137;"Journal of Colonialism and Colonial History";journal;"15325768";"Johns Hopkins University Press";No;No;0,118;Q3;6;7;45;471;5;43;0,07;67,29;42,86;0;United States;Northern America;"Johns Hopkins University Press";"2001, 2019-2025";"History (Q3)";"Arts and Humanities" +28387;21100255376;"Journal of Religion and Popular Culture";journal;"1703289X";"University of Toronto Press";No;No;0,118;Q3;9;4;34;204;10;34;0,24;51,00;40,00;0;Canada;Northern America;"University of Toronto Press";"2013-2025";"Cultural Studies (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28388;21100285051;"Journal of the Gilded Age and Progressive Era";journal;"15377814, 19433557";"Cambridge University Press";No;No;0,118;Q3;16;23;79;2458;10;63;0,10;106,87;27,27;0;United Kingdom;Western Europe;"Cambridge University Press";"2002-2026";"History (Q3)";"Arts and Humanities" +28389;21101331265;"Jurnal Al-dustur";journal;"26866498, 26225964";"Department of Constitutional Law, Postgraduate Program of IAIN Bone";Yes;No;0,118;Q3;3;14;41;531;7;41;0,22;37,93;30,43;0;Indonesia;Asiatic Region;"Department of Constitutional Law, Postgraduate Program of IAIN Bone";"2021-2025";"Religious Studies (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +28390;21101170295;"Osmanli Medeniyeti Arastirmalari Dergisi";journal;"24589519";"Selim Hilmi Ozkan";No;No;0,118;Q3;2;66;126;3444;11;126;0,09;52,18;19,23;0;Turkey;Middle East;"Selim Hilmi Ozkan";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28391;21101260626;"Pamietnik Biblioteki Kornickiej";journal;"29565960, 05513790";"";No;No;0,118;Q3;1;0;26;0;2;21;0,11;0,00;0,00;0;Poland;Eastern Europe;"";"2020-2024";"Arts and Humanities (miscellaneous) (Q3); Museology (Q3)";"Arts and Humanities" +28392;20300195009;"Pluralist";journal;"19446489, 19307365";"University of Illinois Press";No;No;0,118;Q3;13;31;84;774;18;82;0,16;24,97;25,93;0;United States;Northern America;"University of Illinois Press";"2010-2026";"Philosophy (Q3)";"Arts and Humanities" +28393;5800209165;"Prolegomena";journal;"18460593, 13334395";"Society for the Advancement of Philosophy";Yes;Yes;0,118;Q3;6;13;33;491;6;32;0,23;37,77;38,89;0;Croatia;Eastern Europe;"Society for the Advancement of Philosophy";"2008-2025";"Philosophy (Q3)";"Arts and Humanities" +28394;17075;"Revue d'Histoire Moderne et Contemporaine";journal;"00488003, 17763045";"Editions Belin et Herscher";No;No;0,118;Q3;17;0;43;0;10;39;0,19;0,00;0,00;0;France;Western Europe;"Editions Belin et Herscher";"1970-1971, 1974, 1976-1987, 1990, 1999-2024";"History (Q3)";"Arts and Humanities" +28395;21100228015;"Signos Filosoficos";journal;"16651324";"Universidad Autonoma Metropolitana, Department of Philosophy";Yes;No;0,118;Q3;4;1;38;20;3;38;0,08;20,00;0,00;0;Mexico;Latin America;"Universidad Autonoma Metropolitana, Department of Philosophy";"2012-2025";"Philosophy (Q3)";"Arts and Humanities" +28396;21101056438;"Sobre Practicas Artisticas y Politicas de la Edicion";journal;"23871733, 24443484";"Editorial Universidad de Granada";Yes;Yes;0,118;Q3;3;18;39;252;5;29;0,16;14,00;55,56;0;Spain;Western Europe;"Editorial Universidad de Granada";"2019-2026";"Arts and Humanities (miscellaneous) (Q3); Visual Arts and Performing Arts (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +28397;21100206248;"Territorio";journal;"18258689, 22396330";"FrancoAngeli";No;No;0,118;Q3;14;0;210;0;26;197;0,11;0,00;0,00;0;Italy;Western Europe;"FrancoAngeli";"2012-2024";"Visual Arts and Performing Arts (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +28398;21101061819;"Turkiyat Mecmuasi";journal;"26513188, 00857432";"Istanbul Universitesi";Yes;Yes;0,118;Q3;3;18;101;986;13;101;0,14;54,78;47,62;0;Turkey;Middle East;"Istanbul Universitesi";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28399;24983;"Urban History Review";journal;"07030428, 19185138";"University of Toronto Press";No;No;0,118;Q3;13;10;44;653;14;40;0,43;65,30;50,00;0;Canada;Northern America;"University of Toronto Press";"1978-2025";"History (Q3); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +28400;16300154757;"Viator - Medieval and Renaissance Studies";journal;"00835897";"Brepols Publishers";No;No;0,118;Q3;19;20;84;1094;8;78;0,09;54,70;31,82;0;Belgium;Western Europe;"Brepols Publishers";"1970, 1972, 1974-1976, 1978, 1981-1982, 1987, 2002-2025";"Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28401;24253;"Actes de la Recherche en Sciences Sociales";journal;"03355322";"Editions du Seuil";No;No;0,118;Q4;25;0;36;0;6;36;0,24;0,00;0,00;0;France;Western Europe;"Editions du Seuil";"1984-1985, 2006-2020, 2022-2024";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +28402;21101152108;"Adiyaman University Journal of Science";journal;"2146586X, 21471630";"Adiyaman University";No;No;0,118;Q4;8;24;43;840;12;43;0,23;35,00;34,78;0;Turkey;Middle East;"Adiyaman University";"2019-2025";"Applied Mathematics (Q4); Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Nuclear and High Energy Physics (Q4)";"Mathematics; Physics and Astronomy" +28403;21100811515;"Advances in Biomembranes and Lipid Self-Assembly";book series;"24519634";"Elsevier B.V.";No;No;0,118;Q4;24;15;27;1000;34;6;1,00;66,67;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"2016-2025";"Biochemistry (Q4); Bioengineering (Q4); Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering" +28404;17515;"ANAE - Approche Neuropsychologique des Apprentissages chez l'Enfant";journal;"0999792X";"A.N.A.E";No;No;0,118;Q4;12;61;203;2190;27;163;0,13;35,90;60,53;0;France;Western Europe;"A.N.A.E";"1996-2025";"Developmental and Educational Psychology (Q4); Neuropsychology and Physiological Psychology (Q4)";"Psychology" +28405;21101193863;"Arquivos em Odontologia";journal;"21781990, 15160939";"Federal University of Minas Gerais Faculty of Dentistry";No;No;0,118;Q4;3;31;92;953;12;87;0,15;30,74;67,31;0;Brazil;Latin America;"Federal University of Minas Gerais Faculty of Dentistry";"2019-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +28406;24744;"British Wildlife";journal;"09580956";"British Wildlife Publishing";No;No;0,118;Q4;19;0;147;0;13;70;0,07;0,00;0,00;0;United Kingdom;Western Europe;"British Wildlife Publishing";"1989-2023";"Animal Science and Zoology (Q4); Nature and Landscape Conservation (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +28407;21101341414;"Chinese Journal of Interventional Cardiology";journal;"10048812";"";No;No;0,118;Q4;4;100;419;3020;86;419;0,29;30,20;33,33;0;China;Asiatic Region;"";"2021-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28408;21101208719;"Chinese Journal of Medical Physics";journal;"1005202X";"";No;No;0,118;Q4;6;174;717;4985;157;717;0,24;28,65;40,63;0;China;Asiatic Region;"";"2020-2025";"Biophysics (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28409;21101198491;"Chinese Journal of Thoracic and Cardiovascular Surgery";journal;"10014497";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,118;Q4;5;105;468;2895;63;468;0,13;27,57;31,21;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Surgery (Q4)";"Medicine" +28410;21100198426;"College Mathematics Journal";journal;"07468342, 19311346";"Taylor and Francis Ltd.";No;No;0,118;Q4;11;94;184;401;19;145;0,11;4,27;9,09;0;United States;Northern America;"Taylor and Francis Ltd.";"1989-1991, 1994, 1997, 2009-2026";"Education (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics; Social Sciences" +28411;25102;"Criminal Law Review";journal;"0011135X";"Sweet and Maxwell-Thomson Reuters";No;No;0,118;Q4;30;28;313;162;47;159;0,16;5,79;21,43;0;United Kingdom;Western Europe;"Sweet and Maxwell-Thomson Reuters";"1974, 1976-1978, 1982, 1985, 1988, 1990-1991, 1996-2025";"Law (Q4); Pathology and Forensic Medicine (Q4)";"Medicine; Social Sciences" +28412;145698;"Cyprus Review";journal;"25478974, 10152881";"University of Nicosia";No;No;0,118;Q4;20;12;39;495;10;31;0,21;41,25;41,18;0;Cyprus;Western Europe;"University of Nicosia";"1996-2025";"Economics and Econometrics (Q4); Law (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +28413;21279;"Eksperimental'naya i Klinicheskaya Farmakologiya";journal;"08692092";"Folium Ltd";No;No;0,118;Q4;16;80;262;1151;48;262;0,19;14,39;58,39;0;Russian Federation;Eastern Europe;"Folium Ltd";"1992-2026";"Medicine (miscellaneous) (Q4); Pharmacology (Q4); Toxicology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +28414;15493;"Finance and Development";journal;"01451707, 15645142";"International Monetary Fund";Yes;No;0,118;Q4;41;70;199;72;89;33;0,51;1,03;19,35;0;United States;Northern America;"International Monetary Fund";"1973, 1975-1976, 1978-2025";"Development (Q4); Finance (Q4); Geography, Planning and Development (Q4)";"Economics, Econometrics and Finance; Social Sciences" +28415;21100205706;"Gastroenterologie a Hepatologie";journal;"18047874, 1804803X";"Galen s.r.o.";Yes;No;0,118;Q4;11;76;206;1128;19;168;0,10;14,84;39,33;0;Czech Republic;Eastern Europe;"Galen s.r.o.";"2012-2025";"Gastroenterology (Q4); Hepatology (Q4)";"Medicine" +28416;21101279731;"Geriatric Care";journal;"24651397";"Page Press Publications";Yes;No;0,118;Q4;3;19;35;681;6;35;0,15;35,84;54,69;0;Italy;Western Europe;"Page Press Publications";"2021-2025";"Geriatrics and Gerontology (Q4); Rehabilitation (Q4); Rheumatology (Q4)";"Medicine" +28417;21585;"Giornale di Chirurgia";journal;"03919005, 1971145X";"Wolters Kluwer Health";No;No;0,118;Q4;29;1;57;18;7;51;0,12;18,00;28,57;0;Italy;Western Europe;"Wolters Kluwer Health";"1946-1958, 1982-2020, 2022-2025";"Medicine (miscellaneous) (Q4); Surgery (Q4)";"Medicine" +28418;21101297677;"IEEE Asia-Pacific Conference on Geoscience, Electronics and Remote Sensing Technology, AGERS";journal;"27716600, 27716619";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,118;Q4;2;0;56;0;20;51;0,36;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Aerospace Engineering (Q4); Computer Networks and Communications (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4); Information Systems and Management (Q4); Instrumentation (Q4); Management, Monitoring, Policy and Law (Q4); Modeling and Simulation (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Computer Science; Decision Sciences; Earth and Planetary Sciences; Energy; Engineering; Environmental Science; Mathematics; Physics and Astronomy; Social Sciences" +28419;21101293871;"Indian Journal of Forensic and Community Medicine";journal;"23946768, 23946776";"IP Innovative Publication Pvt. Ltd.";No;No;0,118;Q4;4;61;113;1349;32;99;0,36;22,11;47,55;0;India;Asiatic Region;"IP Innovative Publication Pvt. Ltd.";"2021-2025";"Epidemiology (Q4); Pathology and Forensic Medicine (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +28420;21100900132;"Interacao em Psicologia";journal;"19818076, 19818068";"Universidade Federal do Parana - Departamento de Psicologia";Yes;Yes;0,118;Q4;6;26;103;1010;18;101;0,18;38,85;63,08;0;Brazil;Latin America;"Universidade Federal do Parana - Departamento de Psicologia";"2018-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +28421;19700166623;"International Journal of Clinical Dentistry";journal;"23740906, 19395833";"Nova Science Publishers, Inc.";No;No;0,118;Q4;10;0;75;0;15;73;0,00;0,00;0,00;0;United States;Northern America;"Nova Science Publishers, Inc.";"2008-2022";"Dentistry (miscellaneous) (Q4)";"Dentistry" +28422;21100325719;"International Journal of Mechatronics and Automation";journal;"20451059, 20451067";"Inderscience";No;No;0,118;Q4;17;0;20;0;8;20;0,00;0,00;0,00;0;Switzerland;Western Europe;"Inderscience";"2011-2018, 2020-2022";"Artificial Intelligence (Q4); Computational Mathematics (Q4); Computational Mechanics (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4)";"Computer Science; Engineering; Mathematics" +28423;21101276928;"International Symposium on Inertial Sensors and Systems, ISISS";journal;"23773480, 23773464";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,118;Q4;1;81;25;948;11;23;0,44;11,70;14,02;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Control and Optimization (Q4); Instrumentation (Q4); Mechanical Engineering (Q4)";"Engineering; Mathematics; Physics and Astronomy" +28424;29789;"Japanese Journal of Cancer and Chemotherapy";journal;"03850684";"";No;No;0,118;Q4;27;192;1493;0;139;1489;0,08;0,00;18,22;0;Japan;Asiatic Region;"";"1979-2025";"Cancer Research (Q4); Medicine (miscellaneous) (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28425;21101320241;"Journal of Equity";journal;"18332137";"LexisNexis Australia";No;No;0,118;Q4;5;10;31;161;7;29;0,29;16,10;36,36;0;Australia;Pacific Region;"LexisNexis Australia";"2020-2025";"Law (Q4)";"Social Sciences" +28426;94708;"Journal of Insect Biotechnology and Sericology";journal;"13468073, 18847978";"Japanese Society of Sericultural Sciences";No;No;0,118;Q4;23;6;15;151;4;15;0,00;25,17;33,33;0;Japan;Asiatic Region;"Japanese Society of Sericultural Sciences";"2001-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Business, Management and Accounting (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Insect Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Business, Management and Accounting; Engineering; Immunology and Microbiology" +28427;21100258635;"Journal of Lymphoedema";journal;"20549431, 17507235";"OmniaMed Communications Ltd";No;No;0,118;Q4;12;18;37;312;8;29;0,26;17,33;63,64;0;United Kingdom;Western Europe;"OmniaMed Communications Ltd";"2011-2025";"Hematology (Q4)";"Medicine" +28428;21101230593;"Journal of Parathyroid Disease";journal;"23456558";"Nickan Research Institute";No;No;0,118;Q4;3;17;82;641;17;74;0,27;37,71;36,71;0;Iran;Middle East;"Nickan Research Institute";"2020-2026";"Endocrinology, Diabetes and Metabolism (Q4); Nephrology (Q4)";"Medicine" +28429;21101149628;"Journal of Scientific Research in Science";journal;"23568372, 23568364";"Ain Shams University, Faculty of Women for Arts, Science & Education";Yes;No;0,118;Q4;5;64;58;3398;22;58;0,22;53,09;62,71;0;Egypt;Africa/Middle East;"Ain Shams University, Faculty of Women for Arts, Science & Education";"2015-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +28430;16303;"Journal of Structural Engineering (India)";journal;"09700137";"Structural Engineering Research Centre";No;No;0,118;Q4;16;0;43;0;13;42;0,40;0,00;0,00;0;India;Asiatic Region;"Structural Engineering Research Centre";"1988-1990, 1996-2023";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +28431;74673;"Korean Journal of Dermatology";journal;"04944739";"Korean Dermatological Association";No;No;0,118;Q4;15;27;397;412;15;383;0,04;15,26;43,96;0;South Korea;Asiatic Region;"Korean Dermatological Association";"1972-2025";"Dermatology (Q4)";"Medicine" +28432;18959;"Medizinhistorisches Journal";journal;"00258431, 16114477";"Franz Steiner Verlag GmbH";No;No;0,118;Q4;14;14;36;1092;8;36;0,17;78,00;31,82;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"1969-2025";"History and Philosophy of Science (Q4); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +28433;19700169987;"Mundo da Saude";journal;"19803990, 01047809";"Centro Universitario Sao Camilo";Yes;Yes;0,118;Q4;12;96;266;3288;38;266;0,14;34,25;65,90;0;Brazil;Latin America;"Centro Universitario Sao Camilo";"2006, 2011-2026";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +28434;24817;"Nachrichten aus der Chemie";journal;"14399598";"Walter de Gruyter GmbH & Co. KG";No;No;0,118;Q4;17;378;1029;1590;38;331;0,03;4,21;35,98;0;Germany;Western Europe;"Walter de Gruyter GmbH & Co. KG";"1982-1984, 1986, 1996-2026";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +28435;21101195676;"Nevrologicheskij Vestnik";journal;"23043067, 10274898";"Eco-Vector LLC";No;No;0,118;Q4;5;40;111;1254;18;94;0,21;31,35;62,02;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Neurology (Q4)";"Neuroscience" +28436;21101081517;"P.A. Herzen Journal of Oncology";journal;"23094745, 2305218X";"Media Sphera Publishing Group";No;No;0,118;Q4;8;89;215;2200;44;215;0,21;24,72;48,81;0;Russian Federation;Eastern Europe;"Media Sphera Publishing Group";"2012-2025";"Oncology (Q4); Pharmacy (Q4); Surgery (Q4)";"Health Professions; Medicine" +28437;15684;"Pediatria Integral";journal;"11354542";"Ediciones Ergon SA";No;No;0,118;Q4;9;106;298;2165;39;190;0,08;20,42;38,96;0;Spain;Western Europe;"Ediciones Ergon SA";"1997-2001, 2003-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28438;5000158306;"Rehabilitacja Medyczna";journal;"18963250, 14279622";"Wyzsza Szkola Administracji";Yes;Yes;0,118;Q4;8;0;90;0;19;90;0,22;0,00;0,00;0;Poland;Eastern Europe;"Wyzsza Szkola Administracji";"2005-2024";"Rehabilitation (Q4)";"Medicine" +28439;4800156204;"Revista Brasileira de Economia";journal;"00347140";"Fundacao Getulio Vargas";Yes;No;0,118;Q4;17;6;45;173;16;45;0,41;28,83;22,73;0;Brazil;Latin America;"Fundacao Getulio Vargas";"2001-2002, 2006-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +28440;12100154912;"Revista Colombiana de Cardiologia";journal;"23573260, 01205633";"Permanyer Publications";Yes;Yes;0,118;Q4;15;59;262;1265;36;214;0,15;21,44;31,31;0;Colombia;Latin America;"Permanyer Publications";"2008-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28441;12600154757;"Revista de Economia Contemporanea";journal;"19805527, 14159848";"Universidade Federal do Rio de Janeiro";Yes;Yes;0,118;Q4;11;11;59;559;14;58;0,26;50,82;31,25;0;Brazil;Latin America;"Universidade Federal do Rio de Janeiro";"2008-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +28442;21101178120;"Revista Interdisciplinar de Ciencia Aplicada";journal;"25253824";"University of Caxias do Sul";No;No;0,118;Q4;3;8;41;247;18;40;0,42;30,88;42,86;0;Brazil;Latin America;"University of Caxias do Sul";"2019, 2021-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +28443;18286;"Revue du Praticien";journal;"2101017X, 00352640";"Global Media Sante";No;No;0,118;Q4;21;262;791;695;72;698;0,10;2,65;45,93;0;France;Western Europe;"Global Media Sante";"1951-1966, 1972-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28444;21100821485;"Targets in Heterocyclic Systems";book series;"17249449";"Societa Chimica Italiana";No;No;0,118;Q4;21;0;63;0;37;63;0,20;0,00;0,00;0;Italy;Western Europe;"Societa Chimica Italiana";"2002-2024";"Analytical Chemistry (Q4); Organic Chemistry (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering; Chemistry" +28445;19700174882;"Tehran University Medical Journal";journal;"17357322, 16831764";"Tehran University of Medical Sciences";Yes;Yes;0,118;Q4;18;62;372;1683;59;349;0,11;27,15;43,50;0;Iran;Middle East;"Tehran University of Medical Sciences";"2008-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28446;21100810444;"Telfor Journal";journal;"23349905, 18213251";"Telecommunications Society and Academic Mind";Yes;Yes;0,118;Q4;10;4;32;104;8;32;0,25;26,00;8,33;0;Serbia;Eastern Europe;"Telecommunications Society and Academic Mind";"2014, 2016-2025";"Computer Networks and Communications (Q4); Media Technology (Q4); Radiation (Q4); Signal Processing (Q4); Software (Q4)";"Computer Science; Engineering; Physics and Astronomy" +28447;4400151605;"UHOD - Uluslararasi Hematoloji-Onkoloji Dergisi";journal;"1306133X";"UHOD - Uluslararasi Hematoloji Onkoloji Dergisi";No;No;0,118;Q4;13;23;82;731;18;77;0,28;31,78;51,94;0;Turkey;Middle East;"UHOD - Uluslararasi Hematoloji Onkoloji Dergisi";"2005-2025";"Hematology (Q4); Oncology (Q4)";"Medicine" +28448;21101168859;"V.F. Snegirev Archives of Obstetrics and Gynecology";journal;"26871386, 23138726";"Eco-Vector LLC";No;No;0,118;Q4;3;48;109;1609;22;109;0,27;33,52;81,82;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2020-2025";"Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28449;21101349456;"Victoria University of Wellington Law Review";journal;"11793082, 1171042X";"Victoria University of Wellington";No;No;0,118;Q4;5;4;92;442;30;90;0,20;110,50;40,00;0;New Zealand;Pacific Region;"Victoria University of Wellington";"2006, 2021-2025";"Law (Q4)";"Social Sciences" +28450;89489;"Voprosy Psikhologii";journal;"00428841";"Akademiia pedagogicheskikh nauk RSFSR";No;No;0,118;Q4;12;24;187;627;25;186;0,15;26,13;74,51;0;Russian Federation;Eastern Europe;"Akademiia pedagogicheskikh nauk RSFSR";"1960-1962, 1973-1975, 1996-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +28451;21101239984;"Conference Proceedings from the International Symposium for Testing and Failure Analysis";conference and proceedings;"08901740";"ASM International";No;No;0,118;-;23;0;117;0;24;116;0,21;0,00;0,00;0;United States;Northern America;"ASM International";"1998-2002, 2005-2015, 2017-2019, 2024";"Control and Systems Engineering; Electrical and Electronic Engineering; Safety, Risk, Reliability and Quality";"Engineering" +28452;30306;"Proceedings ACM SIGUCCS User Services Conference";conference and proceedings;"1096682X";"Association for Computing Machinery";No;No;0,118;-;15;10;56;52;11;44;0,26;5,20;20,83;0;United States;Northern America;"Association for Computing Machinery";"1972, 1975-1983, 1985-2002, 2004-2008, 2010-2011, 2013-2019, 2021-2025";"Computer Science Applications; Education; Information Systems; Software";"Computer Science; Social Sciences" +28453;19900193643;"Anales de Literatura Chilena";journal;"07176058";"Pontificia Universidad Catolica de Chile";Yes;No;0,117;Q2;7;48;183;951;12;165;0,04;19,81;62,50;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2010-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28454;19600166220;"Antike Kunst";journal;"00035688";"Vereinigung der Freunde Antiker Kunst";No;No;0,117;Q2;9;10;27;760;2;26;0,13;76,00;54,84;0;Switzerland;Western Europe;"Vereinigung der Freunde Antiker Kunst";"2009-2025";"Classics (Q2); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28455;6500153153;"Cambridge Quarterly";journal;"0008199X, 14716836";"Oxford University Press";No;No;0,117;Q2;13;11;57;531;11;52;0,28;48,27;36,36;0;United Kingdom;Western Europe;"Oxford University Press";"1965-2025";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28456;6500153168;"Critical Survey";journal;"17522293, 00111570";"Berghahn Journals";No;No;0,117;Q2;11;25;101;1058;21;94;0,19;42,32;57,89;0;United Kingdom;Western Europe;"Berghahn Journals";"2012-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +28457;5800208254;"Dictionaries";journal;"21605076, 01976745";"Dictionary Society of North America";No;No;0,117;Q2;7;11;60;428;10;53;0,19;38,91;56,25;0;United States;Northern America;"Dictionary Society of North America";"2017-2025";"Literature and Literary Theory (Q2); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28458;21101039811;"Early American Studies";journal;"15434273, 15590895";"University of Pennsylvania Press";No;No;0,117;Q2;5;17;69;1494;14;67;0,18;87,88;50,00;0;United States;Northern America;"University of Pennsylvania Press";"2019-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Music (Q3); Philosophy (Q3); Religious Studies (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities; Social Sciences" +28459;5700156985;"English Studies in Africa";journal;"00138398, 19438117";"Routledge";No;No;0,117;Q2;15;17;53;520;34;48;0,75;30,59;50,00;0;United Kingdom;Western Europe;"Routledge";"1958-2026";"Literature and Literary Theory (Q2)";"Arts and Humanities" +28460;21100463105;"Erga-Logoi";journal;"22809678, 22823212";"LED Edizioni Universitarie";Yes;Yes;0,117;Q2;7;17;38;1182;8;38;0,24;69,53;66,67;0;Italy;Western Europe;"LED Edizioni Universitarie";"2013-2025";"Classics (Q2); Literature and Literary Theory (Q2); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28461;21100285033;"Hyperboreus";journal;"21562253, 09492615";"Bibliotheca classica Petropolitana";No;No;0,117;Q2;6;0;45;0;5;45;0,08;0,00;0,00;0;Russian Federation;Eastern Europe;"Bibliotheca classica Petropolitana";"2010, 2012-2024";"Classics (Q2); History (Q3)";"Arts and Humanities" +28462;12100155628;"International Journal of the Classical Tradition";journal;"10730508, 18746292";"Transaction Periodicals Consortium";No;No;0,117;Q2;12;27;54;60;16;51;0,22;2,22;44,44;0;Netherlands;Western Europe;"Transaction Periodicals Consortium";"1994-1995, 1998-1999, 2001-2002, 2004, 2008-2026";"Classics (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +28463;21101150128;"Journal of European Periodical Studies";journal;"25066587";"Universiteit Gent";Yes;Yes;0,117;Q2;2;14;49;745;5;47;0,04;53,21;58,82;0;Belgium;Western Europe;"Universiteit Gent";"2022-2025";"Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28464;16200154740;"Logos (United States)";journal;"1533791X, 10916687";"Center for Catholic Studies, University of St. Thomas";Yes;No;0,117;Q2;9;34;118;1304;5;102;0,05;38,35;29,63;0;United States;Northern America;"Center for Catholic Studies, University of St. Thomas";"2002-2026";"Literature and Literary Theory (Q2); Cultural Studies (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28465;19400156821;"Papers of the Bibliographical Society of America";journal;"23776528, 0006128X";"Bibliographical Society of America";No;No;0,117;Q2;9;19;48;460;19;39;0,32;24,21;50,00;0;United States;Northern America;"Bibliographical Society of America";"1941, 1947, 1969-1972, 1975, 1979, 1989, 1993, 1995-1996, 2004-2005, 2008-2025";"Literature and Literary Theory (Q2); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +28466;16400154711;"Seminar - A Journal of Germanic Studies";journal;"00371939, 1911026X";"University of Toronto Press";No;No;0,117;Q2;10;17;63;797;15;59;0,15;46,88;55,56;0;Canada;Northern America;"University of Toronto Press";"1977, 1988-1989, 1996-2025";"Literature and Literary Theory (Q2); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +28467;21101194408;"20 & 21: Revue d'Histoire";journal;"2649664X, 26496100";"Presses de Sciences Po";No;No;0,117;Q3;18;0;82;0;8;76;0,13;0,00;0,00;0;France;Western Europe;"Presses de Sciences Po";"2022-2024";"History (Q3)";"Arts and Humanities" +28468;21101021460;"Aither";journal;"18037860";"Palacky University Olomouc";No;No;0,117;Q3;2;3;27;77;4;27;0,12;25,67;0,00;0;Czech Republic;Eastern Europe;"Palacky University Olomouc";"2019-2024";"Philosophy (Q3)";"Arts and Humanities" +28469;19600166308;"Archiv fur Religionsgeschichte";book series;"18688888, 14363038";"Walter de Gruyter GmbH";No;No;0,117;Q3;18;0;59;0;10;56;0,19;0,00;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1999-2010, 2012-2020, 2022-2024";"Religious Studies (Q3)";"Arts and Humanities" +28470;5900152898;"Art Journal";journal;"23255307, 00043249";"Taylor and Francis Ltd.";No;No;0,117;Q3;22;28;101;651;21;65;0,20;23,25;62,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1960-1985, 1987-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28471;21101274396;"Brill Research Perspectives in Popular Culture";book series;"25894439, 25894420";"Brill Academic Publishers";No;No;0,117;Q3;1;4;4;408;5;2;0,33;102,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019, 2022-2025";"History (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28472;21101195779;"CADMO: Journal for Ancient History";journal;"08719527, 21837937";"University of Lisbon Centre for History";No;Yes;0,117;Q3;1;7;132;265;3;111;0,02;37,86;64,29;0;Portugal;Western Europe;"University of Lisbon Centre for History";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28473;24465;"Church History";journal;"00096407, 17552613";"Cambridge University Press";No;No;0,117;Q3;32;15;76;1836;22;74;0,31;122,40;43,75;0;United Kingdom;Western Europe;"Cambridge University Press";"1932-2026";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28474;21100422029;"Cinema et Cie";journal;"20355270, 2036461X";"Universita degli Studi di Milano";Yes;Yes;0,117;Q3;6;7;54;206;16;42;0,28;29,43;42,86;0;Italy;Western Europe;"Universita degli Studi di Milano";"2013-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28475;21100972439;"Discipline Filosofiche";journal;"15919625, 22797343";"Quodlibet";No;No;0,117;Q3;3;22;84;818;10;78;0,12;37,18;11,11;0;Italy;Western Europe;"Quodlibet";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +28476;5600153227;"Family and Community History";journal;"17513812, 14631180";"Taylor and Francis Ltd.";No;No;0,117;Q3;6;13;40;684;8;30;0,11;52,62;76,92;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1999, 2001, 2013-2025";"History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28477;21101141653;"Folia Philosophica";journal;"23539445, 12310913";"Wydawnictwo Uniwersytetu Slaskiego";No;No;0,117;Q3;2;0;26;0;3;25;0,23;0,00;0,00;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Slaskiego";"2019-2024";"Philosophy (Q3)";"Arts and Humanities" +28478;21101285768;"Historia - Revista da Faculdade de Letras da Universidade do Porto";journal;"21830479, 21823278";"University of Porto Faculty of Arts and Humanities";Yes;No;0,117;Q3;1;21;56;569;6;50;0,10;27,10;43,75;0;Portugal;Western Europe;"University of Porto Faculty of Arts and Humanities";"2021-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28479;21101133328;"International Journal on Stereo and Immersive Media";journal;"21841241";"Lusofona University";No;No;0,117;Q3;2;22;16;470;2;16;0,13;21,36;41,67;0;Portugal;Western Europe;"Lusofona University";"2019-2023, 2025";"Arts and Humanities (miscellaneous) (Q3); Museology (Q3); Visual Arts and Performing Arts (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +28480;21101064941;"Italia Contemporanea";journal;"03921077, 20364555";"FrancoAngeli";No;No;0,117;Q3;4;39;148;2268;16;141;0,16;58,15;37,14;0;Italy;Western Europe;"FrancoAngeli";"2019-2025";"History (Q3)";"Arts and Humanities" +28481;5700158475;"Journal of Israeli History";journal;"17440548, 13531042";"Routledge";No;No;0,117;Q3;16;14;36;978;8;35;0,25;69,86;53,85;0;United Kingdom;Western Europe;"Routledge";"1994-1995, 2002-2004, 2008, 2010-2025";"Cultural Studies (Q3); History (Q3); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +28482;21101371010;"Journal of Rawalpindi Medical College";journal;"16833562, 16833570";"Rawalpindi Medical University";Yes;No;0,117;Q3;4;134;400;2663;67;388;0,17;19,87;61,32;0;Pakistan;Asiatic Region;"Rawalpindi Medical University";"2021-2025";"Linguistics and Language (Q3); Business, Management and Accounting (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Business, Management and Accounting; Medicine; Social Sciences" +28483;21100945717;"Journal of the Ottoman and Turkish Studies Association";journal;"23760702, 23760699";"Indiana University Press";No;No;0,117;Q3;5;2;100;0;24;85;0,11;0,00;50,00;0;United States;Northern America;"Indiana University Press";"2019-2025";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3); Anthropology (Q4); Law (Q4)";"Arts and Humanities; Social Sciences" +28484;16955;"Labour History";journal;"00236942";"Liverpool University Press";Yes;No;0,117;Q3;18;20;68;1505;13;57;0,16;75,25;51,85;0;Australia;Pacific Region;"Liverpool University Press";"1963-1964, 1966-1973, 1975-1977, 1980-2025";"History (Q3); Industrial Relations (Q4); Organizational Behavior and Human Resource Management (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +28485;21100845367;"Las Torres De Lucca";journal;"22553827";"Universidad Complutense Madrid";Yes;Yes;0,117;Q3;6;40;98;1696;23;96;0,17;42,40;26,67;0;Spain;Western Europe;"Universidad Complutense Madrid";"2017-2026";"Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28486;21101145388;"Leiden Studies in Islam and Society";book series;"22108920";"Brill Academic Publishers";No;No;0,117;Q3;7;13;66;583;17;4;0,22;44,85;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2025";"Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28487;65763;"L'Homme (France)";journal;"04394216, 19538103";"Editions de l'Ecole des Hautes Etudes en Sciences Sociales";No;No;0,117;Q3;20;0;65;0;14;62;0,17;0,00;0,00;0;France;Western Europe;"Editions de l'Ecole des Hautes Etudes en Sciences Sociales";"1977, 1992, 1996-2024";"Arts and Humanities (miscellaneous) (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +28488;21100901602;"Linguistica (Slovenia)";journal;"00243922, 2350420X";"University of Ljubljana Press";Yes;Yes;0,117;Q3;5;8;52;205;8;52;0,12;25,63;87,50;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2018-2026";"Linguistics and Language (Q3)";"Social Sciences" +28489;16412;"Louvain Studies";journal;"00246964, 1783161X";"Peeters Publishers";No;No;0,117;Q3;4;0;46;0;4;43;0,08;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"1977, 1987-1988, 2011-2024";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28490;19700169130;"Ming Studies";journal;"0147037X, 17597595";"Taylor and Francis Ltd.";No;No;0,117;Q3;9;8;21;229;10;12;0,44;28,63;20,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1975-1991, 1994-2001, 2003-2025";"Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28491;16445;"Mouvement Social";journal;"00272671, 19618646";"Association Le Movement social";No;No;0,117;Q3;17;20;215;1839;10;199;0,05;91,95;40,91;0;France;Western Europe;"Association Le Movement social";"1975, 1978-1980, 1983, 1987, 1996-2025";"History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28492;21101030341;"Proceedings from the Document Academy";journal;"2473215X";"University of Akron";Yes;Yes;0,117;Q3;5;5;67;110;15;62;0,15;22,00;33,33;0;United States;Northern America;"University of Akron";"2019-2025";"Conservation (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +28493;5600155553;"Religion and American Culture";journal;"15338568, 10521151";"Cambridge University Press";No;No;0,117;Q3;19;1;32;109;10;32;0,20;109,00;100,00;0;United States;Northern America;"Cambridge University Press";"1991-1995, 2001-2026";"Cultural Studies (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28494;20600195529;"Revista Colombiana de Sociologia";journal;"0120159X, 22565485";"Universidad Nacional de Colombia";Yes;Yes;0,117;Q3;9;18;78;634;19;74;0,24;35,22;40,00;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2018-2025";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28495;21101174380;"Revista de Lenguas para Fines Especificos";journal;"11331127, 23408561";"Universidad de Las Palmas de Gran Canaria";Yes;Yes;0,117;Q3;1;11;20;404;3;20;0,15;36,73;64,71;0;Spain;Western Europe;"Universidad de Las Palmas de Gran Canaria";"2023-2025";"Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +28496;6000161368;"Southern Cultures";journal;"10688218, 15341488";"University of North Carolina Press";No;No;0,117;Q3;14;29;121;318;18;104;0,12;10,97;48,39;0;United States;Northern America;"University of North Carolina Press";"2002-2026";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +28497;21100406911;"Studies in Islamic Law and Society";book series;"13841130";"Brill Academic Publishers";No;No;0,117;Q3;7;1;4;284;2;4;0,50;284,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2010-2015, 2017-2020, 2023-2026";"Religious Studies (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +28498;21100880190;"Taida Journal of Art History";journal;"10232095";"National Taiwan University";No;No;0,117;Q3;2;8;14;883;3;13;0,38;110,38;50,00;0;Taiwan;Asiatic Region;"National Taiwan University";"2018-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28499;21101039474;"Textos en Proceso";journal;"2001967X";"ASICE";Yes;Yes;0,117;Q3;6;1;23;39;5;23;0,25;39,00;100,00;0;Spain;Western Europe;"ASICE";"2019-2025";"Linguistics and Language (Q3)";"Social Sciences" +28500;21101090591;"Textus";journal;"00823767, 2589255X";"Brill Academic Publishers";No;No;0,117;Q3;13;8;30;444;5;30;0,15;55,50;22,22;0;Netherlands;Western Europe;"Brill Academic Publishers";"1960, 1962-1964, 1966, 1968-1969, 1973, 1981-1982, 1984-1986, 1988, 1990-1991, 1994-1995, 1998, 2000, 2002, 2005, 2007, 2009-2010, 2016, 2018-2025";"History (Q3); Linguistics and Language (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28501;21101021924;"Translocal Chinese: East Asian Perspectives";journal;"24522007, 24522015";"Brill Academic Publishers";No;No;0,117;Q3;4;6;31;280;5;26;0,21;46,67;16,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2025";"Cultural Studies (Q3); History (Q3); Anthropology (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28502;21100241714;"Transsylvania Nostra";journal;"23445084, 18425631";"Transsylvania Nostra Foundation";No;No;0,117;Q3;3;0;50;0;1;41;0,00;0,00;0,00;0;Romania;Eastern Europe;"Transsylvania Nostra Foundation";"2013-2024";"Archeology (arts and humanities) (Q3); Conservation (Q3); History (Q3); Archeology (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +28503;21101270126;"Vierteljahrschrift fur Sozial und Wirtschaftsgeschichte";journal;"03408728, 03410846";"Franz Steiner Verlag GmbH";No;No;0,117;Q3;8;11;223;865;13;222;0,05;78,64;21,43;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"2002-2025";"Cultural Studies (Q3); History (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +28504;21101096692;"Wittgenstein-Studien";book series;"18687431, 18687458";"Walter de Gruyter GmbH";No;No;0,117;Q3;8;13;32;359;4;30;0,19;27,62;33,33;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2010-2025";"Philosophy (Q3)";"Arts and Humanities" +28505;21100235613;"ACDI Anuario Colombiano de Derecho Internacional";journal;"20271131, 21454493";"Universidad del Rosario";Yes;Yes;0,117;Q4;5;7;35;453;4;16;0,12;64,71;50,00;0;Colombia;Latin America;"Universidad del Rosario";"2012-2025";"Law (Q4)";"Social Sciences" +28506;74991;"Angiologia";journal;"00033170, 16952987";"ARAN Ediciones S.L";No;No;0,117;Q4;13;62;215;918;31;160;0,14;14,81;37,67;0;Spain;Western Europe;"ARAN Ediciones S.L";"1949-1993, 1996-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28507;21101378436;"Annals of Ayurvedic Medicine";journal;"23476923";"Association of Ayurvedic Physicians of India";Yes;No;0,117;Q4;3;73;123;1985;13;107;0,08;27,19;42,65;0;India;Asiatic Region;"Association of Ayurvedic Physicians of India";"2021-2026";"Complementary and Alternative Medicine (Q4)";"Medicine" +28508;21100297820;"Astrophysics and Space Science Proceedings";book series;"15706605, 15706591";"Springer Science and Business Media B.V.";No;No;0,117;Q4;23;69;84;2148;13;80;0,15;31,13;20,75;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2007-2020, 2023, 2025";"Astronomy and Astrophysics (Q4); Computer Science Applications (Q4); Nuclear and High Energy Physics (Q4); Physics and Astronomy (miscellaneous) (Q4); Space and Planetary Science (Q4); Spectroscopy (Q4)";"Chemistry; Computer Science; Earth and Planetary Sciences; Physics and Astronomy" +28509;21101120357;"AtoZ";journal;"2237826X";"Programa de Pos-Graduacao em Gestao da Informacao, Universidade Federal do Parana";Yes;Yes;0,117;Q4;5;26;95;901;14;94;0,12;34,65;54,72;0;Brazil;Latin America;"Programa de Pos-Graduacao em Gestao da Informacao, Universidade Federal do Parana";"2019-2025";"Information Systems (Q4); Library and Information Sciences (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Computer Science; Social Sciences" +28510;13039;"Bulletin of the Plankton Society of Japan";journal;"24340839, 03878961";"Plankton Society of Japan";Yes;No;0,117;Q4;13;3;21;44;2;18;0,00;14,67;16,67;0;Japan;Asiatic Region;"Plankton Society of Japan";"1988, 1992, 1996, 1998-2014, 2017-2025";"Aquatic Science (Q4); Oceanography (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +28511;4500151519;"Cadernos CEDES";journal;"01013262";"Centro de Estudos Educacao e Sociedade - CEDES";Yes;Yes;0,117;Q4;13;33;92;1055;16;84;0,21;31,97;65,85;0;Brazil;Latin America;"Centro de Estudos Educacao e Sociedade - CEDES";"2006-2026";"Education (Q4)";"Social Sciences" +28512;25617;"Canadian Yearbook of International Law. Annuaire Canadien de Droit International";journal;"19250169, 00690058";"Cambridge University Press";No;No;0,117;Q4;12;8;56;808;13;55;0,14;101,00;46,15;0;United Kingdom;Western Europe;"Cambridge University Press";"1989, 1996-2002, 2004-2026";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +28513;19900191843;"Cardiology Letters";journal;"13383655, 13383760";"Slovak Society of Cardiology";No;No;0,117;Q4;8;32;119;640;4;92;0,05;20,00;44,09;0;Slovakia;Eastern Europe;"Slovak Society of Cardiology";"2011-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28514;21101260504;"Chinese Journal of Integrated Traditional and Western Medicine on Digestion";journal;"1671038X";"";No;No;0,117;Q4;5;176;549;5318;97;549;0,20;30,22;49,49;0;China;Asiatic Region;"";"2020-2025";"Complementary and Alternative Medicine (Q4); Gastroenterology (Q4)";"Medicine" +28515;21101199450;"Chinese Journal of Nautical Medicine and Hyperbaric Medicine";journal;"10096906";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,117;Q4;3;243;391;5087;40;391;0,12;20,93;52,07;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2026";"Complementary and Alternative Medicine (Q4); Medicine (miscellaneous) (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +28516;21101199901;"Community and Physician";journal;"13004387, 27575004";"Turkish Medical Association";No;No;0,117;Q4;4;54;150;1742;16;133;0,15;32,26;60,78;0;Turkey;Middle East;"Turkish Medical Association";"2020-2025";"Health Information Management (Q4); Health Policy (Q4); Health Professions (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine" +28517;9100153105;"Current Topics in Pharmacology";journal;"09724559";"Research Trends";No;No;0,117;Q4;9;0;25;0;9;25;0,47;0,00;0,00;0;India;Asiatic Region;"Research Trends";"2006-2024";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +28518;16121;"Gaojishu Tongxin/Chinese High Technology Letters";journal;"10020470";"Institute of Scientific and Technical Information of China";No;No;0,117;Q4;15;109;392;2815;79;392;0,21;25,83;35,82;0;China;Asiatic Region;"Institute of Scientific and Technical Information of China";"1997-1999, 2001-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +28519;21101331263;"Health Research in Africa";journal;"30064090, 30064104";"Afrimvoe Medical Services";No;No;0,117;Q4;2;258;285;5072;21;285;0,07;19,66;26,51;0;Cameroon;Africa;"Afrimvoe Medical Services";"2023-2026";"Medical Laboratory Technology (Q4); Public Health, Environmental and Occupational Health (Q4); Surgery (Q4)";"Health Professions; Medicine" +28520;37857;"Humans and Nature";journal;"09181725";"Museum of Nature and Human Activities";No;No;0,117;Q4;6;11;24;175;4;23;0,20;15,91;9,09;0;Japan;Asiatic Region;"Museum of Nature and Human Activities";"1993-2003, 2005-2010, 2013-2019, 2021-2026";"Environmental Science (miscellaneous) (Q4)";"Environmental Science" +28521;14049;"Iatreia";journal;"01210793";"Universidad de Antioquia";Yes;Yes;0,117;Q4;13;60;184;1995;31;170;0,14;33,25;46,86;0;Colombia;Latin America;"Universidad de Antioquia";"1988-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +28522;18253;"Indian Veterinary Journal";journal;"09749365, 00196479";"Indian Veterinary Assocaition";No;No;0,117;Q4;22;0;375;0;75;374;0,19;0,00;0,00;0;India;Asiatic Region;"Indian Veterinary Assocaition";"1945-1951, 1965-1971, 1973-1979, 1996-2024";"Veterinary (miscellaneous) (Q4)";"Veterinary" +28523;21101285932;"International Conference on Social Networks Analysis, Management and Security, SNAMS";journal;"28317351, 28317343";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,117;Q4;2;0;38;0;14;36;0,37;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Communication (Q4); Computer Networks and Communications (Q4); Information Systems (Q4); Information Systems and Management (Q4); Management of Technology and Innovation (Q4); Safety, Risk, Reliability and Quality (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering; Social Sciences" +28524;21101281043;"International Journal of Basic and Applied Science";journal;"27763013, 23018038";"";No;No;0,117;Q4;2;11;60;323;22;60;0,54;29,36;68,18;0;Indonesia;Asiatic Region;"";"2020-2025";"Aerospace Engineering (Q4); Agricultural and Biological Sciences (miscellaneous) (Q4); Applied Mathematics (Q4); Chemistry (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Chemistry; Computer Science; Engineering; Materials Science; Mathematics" +28525;12364;"International Journal of Information and Management Sciences";journal;"10171819";"Tamkang University";No;No;0,117;Q4;27;15;60;482;9;60;0,13;32,13;38,46;0;Taiwan;Asiatic Region;"Tamkang University";"1996-2025";"Control and Systems Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Information Systems and Management (Q4); Management Information Systems (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering" +28526;18300156723;"International Journal of Nanomanufacturing";journal;"17469406, 17469392";"Inderscience Enterprises Ltd";No;No;0,117;Q4;18;0;24;0;5;24;0,18;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2006-2024";"Industrial and Manufacturing Engineering (Q4); Nanoscience and Nanotechnology (Q4)";"Engineering; Materials Science" +28527;19400157268;"International Journal of Nanoparticles";journal;"17532515, 17532507";"Inderscience Enterprises Ltd";No;No;0,117;Q4;18;0;21;0;9;21;0,25;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2008-2023, 2026";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Nanoscience and Nanotechnology (Q4)";"Engineering; Materials Science; Physics and Astronomy" +28528;7600153112;"Japanese Magazine of Mineralogical and Petrological Sciences";journal;"13497979, 1345630X";"Japanese Association of Mineralogists Petrologists and Economic Geologists";No;No;0,117;Q4;11;10;36;296;4;36;0,07;29,60;13,33;0;Japan;Asiatic Region;"Japanese Association of Mineralogists Petrologists and Economic Geologists";"2000-2005, 2007-2013, 2015-2026";"Economic Geology (Q4); Geochemistry and Petrology (Q4)";"Earth and Planetary Sciences" +28529;66743;"Journal of Chinese Medicine";journal;"01438042";"Journal of Chinese Medicine";No;No;0,117;Q4;10;20;80;366;10;71;0,17;18,30;33,33;0;United Kingdom;Western Europe;"Journal of Chinese Medicine";"2001-2026";"Complementary and Alternative Medicine (Q4)";"Medicine" +28530;11700154504;"Journal of Economic Theory and Econometrics";journal;"12292893";"Korean Econometric Society";No;No;0,117;Q4;7;13;48;370;10;48;0,16;28,46;13,64;0;South Korea;Asiatic Region;"Korean Econometric Society";"2008-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +28531;21101051860;"Journal of Knowledge and Health in Basic Medical Sciences";journal;"1735577X, 23453753";"Shahroud University of Medical Sciences";No;No;0,117;Q4;5;24;95;691;12;95;0,14;28,79;48,94;0;Iran;Middle East;"Shahroud University of Medical Sciences";"2018-2025";"Education (Q4); Immunology and Microbiology (miscellaneous) (Q4)";"Immunology and Microbiology; Social Sciences" +28532;21101287172;"Journal of Zhengzhou University (Medical Sciences)";journal;"16716825";"";No;No;0,117;Q4;5;129;510;1780;78;510;0,16;13,80;46,41;0;China;Asiatic Region;"";"2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28533;21101215784;"Kriminologija and Socijalna Integracija";journal;"18487963";"University of Zagreb, Faculty of Education and Rehabilitation Sciences";Yes;Yes;0,117;Q4;4;11;29;660;8;27;0,25;60,00;50,00;0;Croatia;Eastern Europe;"University of Zagreb, Faculty of Education and Rehabilitation Sciences";"2020-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +28534;21101192809;"Learning and Analytics in Intelligent Systems";book series;"26623455, 26623447";"Springer Nature";No;No;0,117;Q4;22;482;550;10628;338;327;0,42;22,05;43,45;0;Switzerland;Western Europe;"Springer Nature";"2019-2026";"Artificial Intelligence (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Control and Systems Engineering (Q4)";"Computer Science; Engineering" +28535;21101186820;"Liaquat National Journal of Primary Care";journal;"27073521, 27089134";"Liaquat National Hospital and Medical College";Yes;Yes;0,117;Q4;2;72;106;1954;17;90;0,16;27,14;53,05;0;Pakistan;Asiatic Region;"Liaquat National Hospital and Medical College";"2021-2025";"Epidemiology (Q4); Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Pathophysiology (Q4)";"Medicine; Nursing" +28536;29730;"Lurralde: Investigacion y Espacio";journal;"16973070, 02115891";"Instituto Geografico Vasco Andres de Urdaneta";No;Yes;0,117;Q4;7;8;32;450;5;32;0,24;56,25;36,36;0;Spain;Western Europe;"Instituto Geografico Vasco Andres de Urdaneta";"1989-1995, 2006-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +28537;18979;"Medizinische Monatsschrift fur Pharmazeuten";journal;"03429601";"Wissenschaftliche Verlagsgesellschaft Stuttgart";No;No;0,117;Q4;15;93;374;1066;7;209;0,02;11,46;61,45;0;Germany;Western Europe;"Wissenschaftliche Verlagsgesellschaft Stuttgart";"1978-2026";"Pharmacology (medical) (Q4)";"Medicine" +28538;21101194101;"Millenium: Journal of Education, Technologies, and Health";journal;"08733015, 1647662X";"Polytechnic Institute of Viseu";Yes;Yes;0,117;Q4;5;175;150;4862;26;137;0,16;27,78;71,19;0;Portugal;Western Europe;"Polytechnic Institute of Viseu";"2019-2026";"Education (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +28539;21101133573;"Modern Medical Technology";journal;"20729367";"Zaporizhia Medical Academy of Post-Graduate Education Ministry of Health of Ukraine";Yes;Yes;0,117;Q4;5;31;129;886;32;129;0,33;28,58;60,00;0;Ukraine;Eastern Europe;"Zaporizhia Medical Academy of Post-Graduate Education Ministry of Health of Ukraine";"2019-2025";"Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4); Pharmacology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4); Surgery (Q4)";"Engineering; Medicine" +28540;17311;"Natur und Recht";journal;"14390515, 01721631";"Springer Science and Business Media Deutschland GmbH";No;No;0,117;Q4;9;57;151;0;16;93;0,13;0,00;33,71;1;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1980, 1997-1998, 2004-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Environmental Science" +28541;21101180568;"One Health and Risk Management";journal;"25873458, 25873466";"Moldavian Biosafety and Biosecurity Association (MDBBA)";Yes;Yes;0,117;Q4;3;31;138;672;19;109;0,13;21,68;63,04;0;Moldova;Eastern Europe;"Moldavian Biosafety and Biosecurity Association (MDBBA)";"2020-2026";"Food Science (Q4); Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4); Nutrition and Dietetics (Q4); Public Health, Environmental and Occupational Health (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine; Nursing" +28542;15767;"Pediatriya - Zhurnal im G.N. Speranskogo";journal;"0031403X, 19902182";"Pediatria Ltd.";No;No;0,117;Q4;11;49;425;1152;101;418;0,26;23,51;69,90;0;Russian Federation;Eastern Europe;"Pediatria Ltd.";"1945-1956, 1958-1993, 2016-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28543;21784;"Psychopharmakotherapie";journal;"09446877";"Wissenschaftliche Verlagsgesellschaft mbH";No;No;0,117;Q4;13;79;215;827;10;118;0,05;10,47;43,10;0;Germany;Western Europe;"Wissenschaftliche Verlagsgesellschaft mbH";"1996-2026";"Pharmacology (medical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine" +28544;21100244626;"Quaderni di Geofisica";journal;"24215570, 15902595";"Istituto Nazionale di Geofisica e Vulcanologia";Yes;No;0,117;Q4;9;2;26;559;6;26;0,11;279,50;60,00;0;Italy;Western Europe;"Istituto Nazionale di Geofisica e Vulcanologia";"2007-2019, 2021-2025";"Computers in Earth Sciences (Q4); Geology (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +28545;21101219671;"Recherches en Sciences de Gestion";journal;"22712836";"ISEOR";No;No;0,117;Q4;5;0;151;0;34;151;0,23;0,00;0,00;0;France;Western Europe;"ISEOR";"2020-2024";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +28546;28164;"Revista Chilena de Obstetricia y Ginecologia";journal;"07177526, 0048766X";"Sociedad Chilena de Obstetricia y Ginecologia";Yes;Yes;0,117;Q4;15;32;187;780;34;166;0,14;24,38;60,00;0;Chile;Latin America;"Sociedad Chilena de Obstetricia y Ginecologia";"1961-1962, 1964-1995, 2006-2025";"Obstetrics and Gynecology (Q4)";"Medicine" +28547;28619;"Revista de la Asociacion Espanola de Especialistas en Medicina del Trabajo";journal;"11326255";"Accion Medica S.A.";Yes;No;0,117;Q4;8;10;117;174;18;100;0,12;17,40;66,67;0;Spain;Western Europe;"Accion Medica S.A.";"1999-2002, 2005-2025";"Public Health, Environmental and Occupational Health (Q4)";"Medicine" +28548;21100218035;"Revista de la Federacion Argentina de Cardiologia";journal;"16665694, 0326646X";"Federacion Argentina de Cardiologia";No;No;0,117;Q4;6;55;153;1752;31;118;0,18;31,85;34,70;0;Argentina;Latin America;"Federacion Argentina de Cardiologia";"2012-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28549;21100244873;"Revista Espanola de Antropologia Fisica";journal;"18872042, 22539921";"Sociedad Espanola de Antropologia Fisica, SEAF";No;No;0,117;Q4;4;10;33;485;8;30;0,19;48,50;67,57;0;Spain;Western Europe;"Sociedad Espanola de Antropologia Fisica, SEAF";"2012-2020, 2022-2025";"Anthropology (Q4)";"Social Sciences" +28550;14732;"Revista Mexicana de Psicologia";journal;"01856073";"Sociedad Mexicana de Psicologia";No;No;0,117;Q4;21;0;6;0;2;6;0,00;0,00;0,00;0;Mexico;Latin America;"Sociedad Mexicana de Psicologia";"1996-2022";"Psychology (miscellaneous) (Q4)";"Psychology" +28551;21101021219;"Revista Pesquisa em Fisioterapia";journal;"22382704";"BAHIANA - School of Medicine and Public Health";Yes;Yes;0,117;Q4;5;16;78;500;13;75;0,12;31,25;67,39;0;Brazil;Latin America;"BAHIANA - School of Medicine and Public Health";"2019-2025";"Occupational Therapy (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)";"Health Professions; Medicine" +28552;21100936539;"Revue Europeenne d' Economie et Management des Services";journal;"25550284, 24970107";"Editions Classiques Garnier";No;No;0,117;Q4;5;11;36;658;7;35;0,13;59,82;35,29;0;France;Western Europe;"Editions Classiques Garnier";"2016-2025";"Management Information Systems (Q4); Management of Technology and Innovation (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences" +28553;21100244904;"Studia Universitatis Babes-Bolyai Sociologia";journal;"20660464, 12248703";"";Yes;Yes;0,117;Q4;8;6;35;187;12;34;0,35;31,17;85,71;0;Romania;Eastern Europe;"";"2013-2025";"Sociology and Political Science (Q4)";"Social Sciences" +28554;13162;"Terra";journal;"00403741";"Geographical Society of Finland";Yes;Yes;0,117;Q4;9;4;65;66;13;30;0,18;16,50;75,00;0;Finland;Western Europe;"Geographical Society of Finland";"1978-2015, 2017-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science; Social Sciences" +28555;5600153197;"Zeitschrift fur Rechtssoziologie";journal;"01740202, 23660392";"De Gruyter Oldenbourg";No;No;0,117;Q4;6;16;52;759;13;50;0,13;47,44;42,11;0;Germany;Western Europe;"De Gruyter Oldenbourg";"2016-2025";"Law (Q4)";"Social Sciences" +28556;21101264292;"IEEE Radiation Effects Data Workshop";conference and proceedings;"21540519, 21540535";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,117;-;4;0;53;0;9;51;0,17;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2004, 2009, 2013, 2024";"Electrical and Electronic Engineering; Nuclear and High Energy Physics; Radiation";"Engineering; Physics and Astronomy" +28557;21101201602;"Proceedings of the International Beam Instrumentation Conference, IBIC";conference and proceedings;"26735350";"JACoW Publishing";No;No;0,117;-;5;0;412;0;33;407;0,07;0,00;0,00;0;Switzerland;Western Europe;"JACoW Publishing";"2020-2024";"Instrumentation; Nuclear and High Energy Physics";"Physics and Astronomy" +28558;21101186900;"Proceedings of the International Congress on Modelling and Simulation, MODSIM";conference and proceedings;"29818001";"Modelling and Simulation Society of Australia and New Zealand Inc. (MSSANZ)";No;No;0,117;-;4;0;103;0;21;102;0,20;0,00;0,00;0;Australia;Pacific Region;"Modelling and Simulation Society of Australia and New Zealand Inc. (MSSANZ)";"2021, 2023";"Modeling and Simulation";"Mathematics" +28559;21100899303;"Valoda: Nozime un Forma";conference and proceedings;"22560602, 22559256";"University of Latvia";No;No;0,117;-;3;17;49;407;12;43;0,25;23,94;96,00;0;Latvia;Eastern Europe;"University of Latvia";"2018-2024";"Linguistics and Language";"Social Sciences" +28560;21100428337;"Religions in the Graeco-Roman World";book series;"09277633";"Brill Academic Publishers";No;No;0,116;Q2;25;23;16;2396;4;2;0,25;104,17;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2005, 2007-2016, 2018-2021, 2023-2025";"Classics (Q2); History (Q3); Religious Studies (Q3)";"Arts and Humanities" +28561;5800207606;"AAA - Arbeiten aus Anglistik und Amerikanistik";journal;"01715410";"Gunter Narr Verlag";No;No;0,116;Q3;10;12;37;391;6;35;0,26;32,58;70,00;0;Germany;Western Europe;"Gunter Narr Verlag";"2002-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28562;21100228548;"American and British Studies Annual";journal;"27882233, 18036058";"University of Pardubice";Yes;Yes;0,116;Q3;2;13;32;294;8;32;0,30;22,62;43,75;0;Czech Republic;Eastern Europe;"University of Pardubice";"2012-2025";"Cultural Studies (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities; Social Sciences" +28563;21101165532;"Anaquel de Estudios Arabes";journal;"11303964, 19882645";"Universidad Complutense Madrid";Yes;Yes;0,116;Q3;3;20;50;869;5;50;0,08;43,45;45,00;2;Spain;Western Europe;"Universidad Complutense Madrid";"2019-2025";"History (Q3); Literature and Literary Theory (Q3); Religious Studies (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28564;21101302036;"Ancient Iran Series";book series;"26672871";"Brill Academic Publishers";No;No;0,116;Q3;0;1;2;806;0;2;0,00;806,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021, 2023-2025";"Religious Studies (Q3)";"Arts and Humanities" +28565;21101277822;"Ancient Philosophy and Religion";book series;"25423576";"Brill Academic Publishers";No;No;0,116;Q3;6;0;49;0;10;2;0,10;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017, 2020, 2022-2024";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28566;21100218077;"Anclajes";journal;"03293807, 18514669";"Instituto de Investigaciones Literarias y Discursivas, Universidad Nacional de La Pampa";Yes;Yes;0,116;Q3;6;27;84;755;14;84;0,16;27,96;57,69;0;Argentina;Latin America;"Instituto de Investigaciones Literarias y Discursivas, Universidad Nacional de La Pampa";"2012-2026";"Cultural Studies (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28567;21100440524;"Aries Book Series";book series;"18711405";"Brill Academic Publishers";No;No;0,116;Q3;6;24;37;3059;5;2;0,14;127,46;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2008, 2010, 2012-2017, 2019, 2021, 2023-2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28568;70540;"Art History";journal;"14678365, 01416790";"Oxford University Press";No;No;0,116;Q3;28;24;101;2143;34;66;0,33;89,29;61,90;0;United Kingdom;Western Europe;"Oxford University Press";"1978-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28569;21101258750;"Australian Journal of Islamic Studies";journal;"22074414";"";Yes;Yes;0,116;Q3;5;15;46;940;12;42;0,25;62,67;26,67;0;Australia;Pacific Region;"";"2020-2026";"Arts and Humanities (miscellaneous) (Q3); Religious Studies (Q3)";"Arts and Humanities" +28570;21100409378;"Balkan Studies Library";book series;"18776272";"Brill Academic Publishers";No;No;0,116;Q3;7;0;38;0;6;2;0,17;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2024";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28571;21101156473;"Biblia Arabica";book series;"22136401";"Brill Academic Publishers";No;No;0,116;Q3;5;0;2;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2017, 2019, 2022";"Cultural Studies (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28572;21101145391;"Brill Studies in Language Contact and Dynamics of Language";book series;"22145613";"Brill Academic Publishers";No;No;0,116;Q3;2;0;20;0;4;2;0,20;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014, 2021, 2023";"Linguistics and Language (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities; Social Sciences" +28573;21100455924;"Brill Studies in Middle Eastern Literatures";book series;"15715183";"Brill Academic Publishers";No;No;0,116;Q3;2;0;17;0;2;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2009, 2015-2018, 2021-2022, 2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +28574;21100427197;"Brill's Humanities in China Library";book series;"18748023";"Brill Academic Publishers";No;No;0,116;Q3;1;0;2;0;1;2;0,50;0,00;0,00;0;United States;Northern America;"Brill Academic Publishers";"2007, 2009, 2011, 2014-2018, 2021, 2023-2024";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)";"Arts and Humanities; Social Sciences" +28575;21100427749;"Brill's Korean Studies Library";book series;"18767079";"Brill Academic Publishers";No;No;0,116;Q3;1;0;25;0;1;2;0,04;0,00;0,00;0;United States;Northern America;"Brill Academic Publishers";"2010, 2013, 2015, 2020, 2023-2024";"History (Q3); Linguistics and Language (Q3); Literature and Literary Theory (Q3); Philosophy (Q3); Visual Arts and Performing Arts (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28576;21101158946;"Brill's Series on Chinese Education";book series;"22127437";"Brill Academic Publishers";No;No;0,116;Q3;1;0;27;0;3;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014, 2016, 2018, 2020, 2022, 2024";"Cultural Studies (Q3); Linguistics and Language (Q3); Education (Q4)";"Social Sciences" +28577;21100453545;"Brill's Series on Modern East Asia in a Global Historical Perspective";book series;"22121730";"Brill Academic Publishers";No;No;0,116;Q3;9;0;2;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013, 2015-2019, 2024";"History (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28578;21101198589;"Brill's Specials in Modern History";book series;"2468578X";"Brill Academic Publishers";No;No;0,116;Q3;1;15;24;843;1;2;0,04;56,20;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2018, 2023-2025";"History (Q3)";"Arts and Humanities" +28579;21100407659;"Brill's Tibetan Studies Library";book series;"15686183";"Brill Academic Publishers";No;No;0,116;Q3;12;0;2;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2021, 2023-2024";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28580;21101152736;"Cadernos de Sociomuseologia";journal;"16463714";"Lusofona University";Yes;Yes;0,116;Q3;3;13;75;231;10;70;0,13;17,77;50,00;0;Portugal;Western Europe;"Lusofona University";"2019-2025";"Museology (Q3)";"Arts and Humanities" +28581;5700184176;"Cahiers de Lexicologie";journal;"22620346, 00079871";"Classiques Garnier";No;No;0,116;Q3;10;17;59;694;5;58;0,07;40,82;71,43;0;France;Western Europe;"Classiques Garnier";"2011-2025";"Linguistics and Language (Q3)";"Social Sciences" +28582;21100406862;"Chinese Overseas";book series;"18763847";"Brill Academic Publishers";No;No;0,116;Q3;7;2;2;366;0;2;0,00;183,00;20,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2011, 2013-2015, 2017-2021, 2023-2025";"History (Q3); Literature and Literary Theory (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28583;17700154919;"Clavier Companion";journal;"10860819";"The Instrumentalist Co.";No;No;0,116;Q3;2;0;15;0;0;2;0,00;0,00;0,00;0;United States;Northern America;"The Instrumentalist Co.";"2009-2018, 2020-2022";"Music (Q3)";"Arts and Humanities" +28584;29752;"Clio Medica";book series;"00457183, 18756689";"Brill Academic Publishers";No;No;0,116;Q3;16;16;2;1048;0;2;0,00;65,50;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1971-1985, 1987, 1991, 1993-2009, 2013-2014, 2016, 2019-2022, 2025-2026";"History (Q3); History and Philosophy of Science (Q4); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +28585;21100457433;"Commentaria";book series;"18748236";"Brill Academic Publishers";No;No;0,116;Q3;6;0;3;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2009, 2014, 2016-2019, 2022, 2024";"History (Q3); Literature and Literary Theory (Q3); Religious Studies (Q3)";"Arts and Humanities" +28586;21101181769;"Consciousness, Literature and the Arts";book series;"15732193";"Brill Rodopi";No;No;0,116;Q3;4;6;2;444;0;2;0,00;74,00;0,00;0;Netherlands;Western Europe;"Brill Rodopi";"2006-2020, 2022, 2024-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology" +28587;10300153362;"Contemporanea";journal;"26122235, 11273070";"Societa Editrice Il Mulino";Yes;No;0,116;Q3;8;28;95;1595;21;92;0,26;56,96;38,46;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1999, 2002, 2008-2025";"History (Q3)";"Arts and Humanities" +28588;21100406860;"Critical Studies in German Idealism";book series;"18789994, 18789986";"Brill Academic Publishers";No;No;0,116;Q3;4;3;31;370;4;2;0,13;123,33;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2012, 2014-2015, 2017-2026";"Philosophy (Q3)";"Arts and Humanities" +28589;21101284282;"Crossroads - History of Interactions across the Silk Routes";book series;"2589885X";"Brill Academic Publishers";No;No;0,116;Q3;4;1;24;171;6;2;0,00;171,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2026";"Cultural Studies (Q3); Religious Studies (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities; Social Sciences" +28590;21477;"East European Jewish Affairs";journal;"1743971X, 13501674";"Taylor and Francis Ltd.";No;No;0,116;Q3;12;4;37;206;3;35;0,05;51,50;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1992-2003, 2005-2023, 2025-2026";"Cultural Studies (Q3); History (Q3); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +28591;21100427905;"Empirical Approaches to Linguistic Theory";book series;"22106251, 22106243";"Brill Academic Publishers";No;No;0,116;Q3;10;1;12;250;0;2;0,00;250,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2020, 2023-2025";"Linguistics and Language (Q3)";"Social Sciences" +28592;21100409542;"Eurasian Studies Library";book series;"18779484";"Brill Academic Publishers";No;No;0,116;Q3;4;0;2;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010, 2013-2016, 2018-2023";"Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28593;21101225574;"Eurasiatica";book series;"26108879, 26109433";"Fondazione Universita Ca Foscari";No;No;0,116;Q3;4;12;34;417;5;21;0,00;34,75;66,67;0;Italy;Western Europe;"Fondazione Universita Ca Foscari";"2019-2022, 2024-2025";"Archeology (arts and humanities) (Q3); Cultural Studies (Q3); History (Q3); Religious Studies (Q3); Archeology (Q4)";"Arts and Humanities; Social Sciences" +28594;21101227196;"Filologie Medievali e Moderne: Serie Orientale";book series;"26109468, 26109476";"Fondazione Universita Ca Foscari";No;No;0,116;Q3;2;0;12;0;1;2;0,00;0,00;0,00;0;Italy;Western Europe;"Fondazione Universita Ca Foscari";"2019, 2022";"History (Q3); Linguistics and Language (Q3); Literature and Literary Theory (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +28595;5800223782;"Forum Italicum";journal;"00145858, 2168989X";"SAGE Publications Inc.";No;No;0,116;Q3;7;49;118;1713;36;103;0,34;34,96;40,00;0;United States;Northern America;"SAGE Publications Inc.";"1967, 1969-1974, 1976-1985, 1988, 1990-1994, 1998-1999, 2002-2026";"Cultural Studies (Q3); Linguistics and Language (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities; Social Sciences" +28596;21101181770;"Francopolyphonies";book series;"15742032";"Brill Academic Publishers";No;No;0,116;Q3;3;39;29;954;0;2;0,00;24,46;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2008, 2010, 2012-2014, 2016-2021, 2023-2026";"Cultural Studies (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities; Social Sciences" +28597;21101289833;"History of European Political and Constitutional Thought";book series;"25895966";"Brill Academic Publishers";No;No;0,116;Q3;3;10;85;1112;8;2;0,04;111,20;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2025";"History (Q3); Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28598;21101288084;"History of Modern Science";book series;"23527145";"Brill Academic Publishers";No;No;0,116;Q3;4;0;2;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017, 2020, 2023-2024";"History (Q3)";"Arts and Humanities" +28599;21101021922;"Human Cognitive Processing";book series;"13876724";"John Benjamins Publishing Company";No;No;0,116;Q3;35;0;46;0;27;2;1,00;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1998-1999, 2001-2020, 2022-2024";"Linguistics and Language (Q3); Cognitive Neuroscience (Q4); Computer Science Applications (Q4); Experimental and Cognitive Psychology (Q4)";"Computer Science; Neuroscience; Psychology; Social Sciences" +28600;21101369339;"Imafronte";journal;"19894562";"Universidad de Murcia Servicio de Publicaciones";Yes;No;0,116;Q3;2;19;39;640;8;36;0,25;33,68;40,00;0;Spain;Western Europe;"Universidad de Murcia Servicio de Publicaciones";"2021-2025";"Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3)";"Arts and Humanities; Social Sciences" +28601;21101064926;"Interdisciplinary Contributions to Archaeology";book series;"15682722, 27306984";"Springer Nature";No;No;0,116;Q3;29;41;240;2502;161;2;0,70;61,02;0,00;0;Switzerland;Western Europe;"Springer Nature";"2005-2011, 2013-2016, 2018, 2020, 2022-2026";"Archeology (arts and humanities) (Q3); Archeology (Q4)";"Arts and Humanities; Social Sciences" +28602;21100438078;"International Studies in the History of Rhetoric";book series;"18751148";"Brill Academic Publishers";No;No;0,116;Q3;5;0;4;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2010, 2012-2013, 2015, 2017-2021, 2023-2024";"History (Q3); Linguistics and Language (Q3); Literature and Literary Theory (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +28603;21100407216;"Investigating Medieval Philosophy";book series;"18799795, 18799787";"Brill Academic Publishers";No;No;0,116;Q3;8;14;60;1322;14;2;0,24;94,43;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2015, 2018-2020, 2022-2026";"History (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28604;21101197403;"Islamicate Intellectual History";book series;"22128662";"Brill Academic Publishers";No;No;0,116;Q3;5;2;9;510;8;2;0,89;255,00;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2018, 2020, 2023-2025";"Cultural Studies (Q3); History (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +28605;21101091710;"Itinera";journal;"20399251";"Universita degli Studi di Milano";Yes;Yes;0,116;Q3;2;48;165;1749;16;164;0,07;36,44;43,75;0;Italy;Western Europe;"Universita degli Studi di Milano";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Philosophy (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28606;21100406630;"Jewish and Christian Perspectives Series";book series;"13882074";"Brill Academic Publishers";No;No;0,116;Q3;9;32;23;1743;2;2;0,09;54,47;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2014, 2016-2021, 2023-2025";"Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28607;21101152598;"Journal for the Philosophy of Language, Mind and the Arts";journal;"27239640";"Edizioni Ca' Foscari";Yes;Yes;0,116;Q3;3;19;74;576;19;68;0,30;30,32;44,44;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2020-2025";"Philosophy (Q3); Visual Arts and Performing Arts (Q3); Cognitive Neuroscience (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Neuroscience; Social Sciences" +28608;16100154749;"Journal for the Study of the Pseudepigrapha";journal;"17455286, 09518207";"SAGE Publications Ltd";No;No;0,116;Q3;19;27;58;1329;15;56;0,15;49,22;25,93;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1987-2002, 2004-2026";"Religious Studies (Q3)";"Arts and Humanities" +28609;21101044944;"Journal of Austrian-American History";journal;"24750913, 24750905";"Penn State University Press";Yes;Yes;0,116;Q3;3;8;37;674;4;36;0,11;84,25;85,71;0;United States;Northern America;"Penn State University Press";"2017-2025";"Cultural Studies (Q3); History (Q3); Geography, Planning and Development (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28610;28992;"Journal of European Economic History";journal;"24998281, 03915115";"Bancaria Editrice";No;No;0,116;Q3;8;11;53;462;15;53;0,29;42,00;25,00;0;Italy;Western Europe;"Bancaria Editrice";"1974-1975, 1979, 1981-1984, 1999-2001, 2012-2025";"History (Q3); Economics and Econometrics (Q4)";"Arts and Humanities; Economics, Econometrics and Finance" +28611;14000156149;"Journal of Folklore Research";journal;"15430413, 07377037";"Indiana University Press";No;No;0,116;Q3;23;17;48;694;6;45;0,14;40,82;50,00;0;United States;Northern America;"Indiana University Press";"2002-2025";"Cultural Studies (Q3); Music (Q3)";"Arts and Humanities; Social Sciences" +28612;21100871304;"Journal of Jewish Ethics";journal;"23341777, 23341785";"Penn State University Press";No;No;0,116;Q3;4;0;42;0;4;36;0,08;0,00;0,00;0;United States;Northern America;"Penn State University Press";"2015-2024";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28613;26291;"Journal of Southern History";journal;"00224642";"Southern Historical Association";No;No;0,116;Q3;23;10;52;1986;7;52;0,11;198,60;14,29;0;United States;Northern America;"Southern Historical Association";"1959, 1965, 1968-1971, 1976-1977, 1981-1986, 2000, 2002-2025";"History (Q3)";"Arts and Humanities" +28614;21101050347;"Journal of the Institute of Latvian History";journal;"10258906, 25928791";"Institute of Latvian History, University of Latvia";No;No;0,116;Q3;4;7;66;268;20;63;0,33;38,29;33,33;0;Latvia;Eastern Europe;"Institute of Latvian History, University of Latvia";"2019-2025";"History (Q3)";"Arts and Humanities" +28615;21101294448;"Language, Writing and Literary Culture in the Sinographic Cosmopolis";book series;"25898787";"Brill Academic Publishers";No;No;0,116;Q3;2;0;24;0;3;2;0,13;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019, 2021-2024";"Cultural Studies (Q3); Linguistics and Language (Q3)";"Social Sciences" +28616;21101127277;"Latin American and Latinx Visual Culture";journal;"25760947";"University of California Press";No;No;0,116;Q3;5;21;124;1431;13;88;0,07;68,14;63,16;0;United States;Northern America;"University of California Press";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities; Social Sciences" +28617;21101024228;"LEA";journal;"1824484X";"Firenze University Press";Yes;Yes;0,116;Q3;2;40;69;1407;6;64;0,04;35,18;62,16;0;Italy;Western Europe;"Firenze University Press";"2019-2025";"Linguistics and Language (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities; Social Sciences" +28618;21101175397;"Leiden Studies in Indo-European";book series;"09265856";"Brill Academic Publishers";No;No;0,116;Q3;8;2;14;734;2;2;0,15;367,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1991, 1995-1997, 2000, 2003, 2006-2013, 2019, 2022-2026";"Linguistics and Language (Q3)";"Social Sciences" +28619;21101292831;"Mapping the Past";book series;"25899945";"Brill Academic Publishers";No;No;0,116;Q3;0;4;16;1641;0;2;0,00;410,25;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2022-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3)";"Arts and Humanities" +28620;21100407602;"Medieval and Early Modern Iberian World";book series;"15691934";"Brill Academic Publishers";No;No;0,116;Q3;9;18;15;1322;0;2;0,00;73,44;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2016, 2018-2022, 2024-2026";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28621;21100405740;"Medieval and Renaissance Authors and Texts";book series;"09257683";"Brill Academic Publishers";No;No;0,116;Q3;4;2;3;623;0;2;0,00;311,50;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2017, 2019-2026";"Cultural Studies (Q3); History (Q3); Linguistics and Language (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities; Social Sciences" +28622;21101182744;"Medieval Chronicle";book series;"15672336";"Brill Rodopi";No;No;0,116;Q3;7;6;42;178;1;2;0,02;29,67;66,67;0;Netherlands;Western Europe;"Brill Rodopi";"2008-2009, 2011, 2013-2014, 2016-2017, 2019-2020, 2023-2025";"History (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities" +28623;21101032077;"Mediterranean Archaeology";journal;"10308482";"MEDITARCH Publishing";No;No;0,116;Q3;2;8;8;100;1;2;0,13;12,50;40,00;0;Australia;Pacific Region;"MEDITARCH Publishing";"2018-2019, 2024-2025";"Archeology (arts and humanities) (Q3); Archeology (Q4)";"Arts and Humanities; Social Sciences" +28624;21101177357;"Modern Asian Art and Visual Culture";book series;"22145257";"Brill Academic Publishers";No;No;0,116;Q3;2;0;13;0;1;2;0,08;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2015, 2018, 2021, 2024";"Cultural Studies (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities; Social Sciences" +28625;21100430764;"Modern Chinese Philosophy";book series;"18759386";"Brill Academic Publishers";No;No;0,116;Q3;5;0;3;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2014, 2016-2020, 2022, 2024, 2026";"Philosophy (Q3)";"Arts and Humanities" +28626;21101155958;"On the Boundary of Two Worlds";book series;"15707121";"Brill: Rodopi";No;No;0,116;Q3;7;8;2;366;0;2;0,00;45,75;0,00;0;Netherlands;Western Europe;"Brill: Rodopi";"2004-2011, 2013-2016, 2020-2022, 2025";"Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28627;24864;"Oriente Moderno";journal;"22138617, 00305472";"Brill Academic Publishers";No;No;0,116;Q3;15;8;55;564;6;53;0,12;70,50;37,50;0;United States;Northern America;"Brill Academic Publishers";"1978, 1996-2026";"Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28628;21100407997;"Ottoman Empire and its Heritage";book series;"13806076";"Brill Academic Publishers";No;No;0,116;Q3;13;0;62;0;2;2;0,03;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2017, 2020-2021, 2023-2024, 2026";"History (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28629;21101294449;"Pentecostal Commentary Series";book series;"25899902";"Brill Academic Publishers";No;No;0,116;Q3;2;1;2;34;0;2;0,00;34,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2009, 2012-2013, 2017, 2020, 2022, 2025";"Religious Studies (Q3)";"Arts and Humanities" +28630;5700164798;"Philosophia Africana";journal;"19447914, 15398250";"Penn State University Press";No;No;0,116;Q3;11;0;2;0;1;2;0,00;0,00;0,00;0;United States;Northern America;"Penn State University Press";"2002-2010, 2012-2016, 2021-2022";"Philosophy (Q3)";"Arts and Humanities" +28631;21100868563;"Pragmatics and Beyond New Series";book series;"0922842X";"John Benjamins Publishing Company";No;No;0,116;Q3;18;1;201;378;111;2;0,59;378,00;100,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2001-2002, 2008, 2018-2025";"Linguistics and Language (Q3)";"Social Sciences" +28632;21101146393;"Quaderns d'Italia";journal;"11359730, 20148828";"Universitat Autonoma de Barcelona";Yes;Yes;0,116;Q3;1;22;51;550;3;40;0,09;25,00;78,95;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2019-2024";"Arts and Humanities (miscellaneous) (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28633;21100825858;"Relations. Beyond Anthropocentrism";journal;"22833196, 22809643";"LED Edizioni Universitarie";Yes;Yes;0,116;Q3;7;1;35;115;8;35;0,04;115,00;100,00;0;Italy;Western Europe;"LED Edizioni Universitarie";"2017-2024";"Philosophy (Q3); Ecology (Q4); Environmental Science (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4)";"Arts and Humanities; Environmental Science" +28634;5800226371;"Religion and Society";journal;"21509298, 21509301";"Berghahn Journals";Yes;Yes;0,116;Q3;10;0;50;0;11;45;0,11;0,00;0,00;0;United Kingdom;Western Europe;"Berghahn Journals";"2014-2024";"Religious Studies (Q3)";"Arts and Humanities" +28635;5800179630;"Reviews in Anthropology";journal;"00938157, 15563014";"Routledge";No;No;0,116;Q3;15;4;16;22;4;9;0,36;5,50;0,00;0;United Kingdom;Western Europe;"Routledge";"1974-1987, 1990-1997, 1999-2001, 2003-2026";"Cultural Studies (Q3); Anthropology (Q4)";"Social Sciences" +28636;8100153108;"Revista Brasileira de Historia";journal;"01020188, 18069347";"Associacao Nacional de Historia";Yes;Yes;0,116;Q3;13;26;163;1162;26;157;0,14;44,69;56,67;0;Brazil;Latin America;"Associacao Nacional de Historia";"1999, 2001, 2007-2025";"Cultural Studies (Q3); History (Q3); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28637;21100934646;"Revista Portuguesa de Filosofia";journal;"2183461X, 08705283";"Aletheia - Associacao Cientifica e Cultural";No;No;0,116;Q3;5;38;194;1560;22;184;0,08;41,05;25,64;0;Portugal;Western Europe;"Aletheia - Associacao Cientifica e Cultural";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +28638;21100283371;"Revue des Mondes Musulmans et de la Mediterranee";journal;"21052271, 09971327";"Edisud Publishers";Yes;Yes;0,116;Q3;8;19;111;879;13;107;0,11;46,26;54,55;0;France;Western Europe;"Edisud Publishers";"2002, 2011, 2013-2025";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28639;21101177467;"Ricerche di Storia Sociale e Religiosa";journal;"03921581, 18244599";"Edizioni di Storia e Letteratura";No;No;0,116;Q3;1;0;30;0;0;2;0,00;0,00;0,00;0;Italy;Western Europe;"Edizioni di Storia e Letteratura";"2019-2024";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +28640;21101220945;"Studia Fennica Litteraria";book series;"14585278";"Suomalaisen Kirjallisuuden Seura";No;No;0,116;Q3;2;0;19;0;1;2;0,05;0,00;0,00;0;Finland;Western Europe;"Suomalaisen Kirjallisuuden Seura";"2021, 2023-2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +28641;21100420111;"Studia Semitica Neerlandica";book series;"00816914";"Brill Academic Publishers";No;No;0,116;Q3;5;2;28;878;5;2;0,19;439,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2016, 2018-2020, 2022-2025";"History (Q3); Linguistics and Language (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28642;21100406810;"Studies in Christian Mission";book series;"09249389";"Brill Academic Publishers";No;No;0,116;Q3;8;0;11;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2013, 2015-2019, 2021, 2023-2024";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +28643;21100407115;"Studies in Contemporary Phenomenology";book series;"18752470";"Brill Academic Publishers";No;No;0,116;Q3;6;25;12;704;0;2;0,00;28,16;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008, 2010, 2012-2021, 2023-2025";"Philosophy (Q3)";"Arts and Humanities" +28644;21101289903;"Studies in Mysticism, Idealism, and Phenomenology";book series;"25424963";"Brill Academic Publishers";No;No;0,116;Q3;2;0;50;0;1;2;0,05;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020, 2022-2023";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28645;21100425762;"Studies of Religion in Africa";book series;"01699814";"Brill Academic Publishers";No;No;0,116;Q3;10;23;3;736;0;2;0,00;32,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2013, 2016-2017, 2019, 2022, 2024-2025";"Religious Studies (Q3)";"Arts and Humanities" +28646;21101199912;"Studies on East Asian Religions";book series;"24520098";"Brill Academic Publishers";No;No;0,116;Q3;2;1;40;507;6;2;0,09;507,00;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020, 2022-2025";"Cultural Studies (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28647;21101158612;"Studies on Sufism";book series;"24680087";"Brill Academic Publishers";No;No;0,116;Q3;4;2;2;389;0;2;0,00;194,50;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017, 2019-2020, 2022-2023, 2025";"Cultural Studies (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28648;21101156038;"Supplements to Method and Theory in the Study of Religion";book series;"22143270";"Brill Academic Publishers";No;No;0,116;Q3;12;1;37;357;8;2;0,16;357,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013, 2015-2023, 2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28649;21101178193;"Textual History of the Bible";book series;"24683027";"Brill Academic Publishers";No;No;0,116;Q3;2;0;2;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2017, 2020, 2022";"History (Q3); Linguistics and Language (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28650;16100154759;"Theatre Journal";journal;"01922882, 1086332X";"Johns Hopkins University Press";No;No;0,116;Q3;32;30;206;1662;29;180;0,16;55,40;66,67;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28651;21101196748;"Theology in Practice";book series;"23529288";"Brill Academic Publishers";No;No;0,116;Q3;6;1;2;224;0;2;0,00;224,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2018, 2020-2021, 2024-2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28652;21100903065;"Varieties of English Around the World";book series;"01727362";"John Benjamins Publishing Company";No;No;0,116;Q3;7;0;14;0;5;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2018-2023";"Cultural Studies (Q3); Linguistics and Language (Q3); Communication (Q4)";"Social Sciences" +28653;21101043439;"Viking and Medieval Scandinavia";journal;"20309902, 17827183";"Brepols Publishers";No;No;0,116;Q3;4;7;21;672;2;21;0,00;96,00;16,67;0;Belgium;Western Europe;"Brepols Publishers";"2019-2025";"History (Q3)";"Arts and Humanities" +28654;21100420112;"Visualising the Middle Ages";book series;"18740448";"Brill Academic Publishers";No;No;0,116;Q3;9;20;2;1200;0;2;0,00;60,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2011-2013, 2015-2016, 2021, 2023, 2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28655;21100781877;"Wenshan Review of Literature and Culture";journal;"20771290, 20771282";"National Chengchi University";No;No;0,116;Q3;4;8;44;280;2;39;0,04;35,00;30,00;0;Taiwan;Asiatic Region;"National Chengchi University";"2016-2025";"Cultural Studies (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities; Social Sciences" +28656;21100407809;"Women and Gender in China Studies";book series;"18775772";"Brill Academic Publishers";No;No;0,116;Q3;5;0;12;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010, 2013-2014, 2016-2018, 2020-2021, 2023-2024";"Cultural Studies (Q3); Gender Studies (Q4)";"Social Sciences" +28657;21100395059;"Acta Pediatrica de Mexico";journal;"01862391, 23958235";"Instituto Nacional de Pediatria";Yes;Yes;0,116;Q4;9;73;196;1731;22;172;0,11;23,71;51,36;0;Mexico;Latin America;"Instituto Nacional de Pediatria";"2014-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28658;22661;"Actualite Chimique";journal;"01519093, 21052409";"Societe Francaise de Chimie";No;No;0,116;Q4;13;34;146;209;7;77;0,06;6,15;13,79;0;France;Western Europe;"Societe Francaise de Chimie";"1985, 1996-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +28659;21101377437;"Adelphi Series";journal;"19445571, 1944558X";"Taylor and Francis Ltd.";No;No;0,116;Q4;1;20;20;275;3;18;0,15;13,75;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2024-2026";"Law (Q4)";"Social Sciences" +28660;21101277815;"African Higher Education: Developments and Perspectives";book series;"26662663";"Brill Academic Publishers";No;No;0,116;Q4;8;50;70;2008;21;2;0,29;40,16;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017, 2019-2025";"Education (Q4)";"Social Sciences" +28661;24225;"Aktuelle Dermatologie";journal;"1438938X, 03402541";"Georg Thieme Verlag";No;No;0,116;Q4;13;86;391;1188;16;174;0,04;13,81;54,76;0;Germany;Western Europe;"Georg Thieme Verlag";"1975-2026";"Dermatology (Q4)";"Medicine" +28662;29968;"Aktuelle Ernahrungsmedizin";journal;"14389916, 03410501";"Georg Thieme Verlag";No;No;0,116;Q4;22;89;308;1185;18;114;0,08;13,31;54,12;0;Germany;Western Europe;"Georg Thieme Verlag";"1960-1963, 1978-2026";"Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)";"Medicine; Nursing" +28663;13016;"Annals of Biology";journal;"09700153";"Agri. Bio. Publishers";No;No;0,116;Q4;13;47;159;903;27;156;0,17;19,21;46,10;0;India;Asiatic Region;"Agri. Bio. Publishers";"1973-1975, 1987-1997, 2003-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences" +28664;21101033200;"Annual International Conference of the IEEE Engineering in Medicine and Biology Society. IEEE Engineering in Medicine and Biology Society. Annual International Conference";journal;"26940604";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,116;Q4;7;18;30;0;14;30;0,47;0,00;18,64;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2019, 2023-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28665;21101277824;"Anti-colonial Educational Perspectives for Transformative Change";book series;"25429280, 25429299";"Brill Academic Publishers";No;No;0,116;Q4;7;0;3;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2021, 2023";"Education (Q4)";"Social Sciences" +28666;21101149131;"Anuario de la Facultad de Derecho. Universidad de Extremadura";journal;"26957728";"Universidad de Extremadura";Yes;Yes;0,116;Q4;2;4;89;181;12;86;0,07;45,25;100,00;0;Spain;Western Europe;"Universidad de Extremadura";"2022-2025";"Law (Q4); Public Administration (Q4)";"Social Sciences" +28667;21100902621;"Applied Economics Quarterly";journal;"18655122, 16116607";"Duncker und Humblot GmbH";No;No;0,116;Q4;7;0;20;0;8;20;0,13;0,00;0,00;0;Germany;Western Europe;"Duncker und Humblot GmbH";"2016-2023";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +28668;19622;"Archaea";journal;"14723646, 14723654";"John Wiley and Sons Ltd";Yes;No;0,116;Q4;50;0;2;0;0;2;0,00;0,00;0,00;0;United States;Northern America;"John Wiley and Sons Ltd";"2002-2021, 2023-2024";"Ecology, Evolution, Behavior and Systematics (Q4); Medicine (miscellaneous) (Q4); Microbiology (Q4); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +28669;5400152705;"Archives des Sciences";journal;"26246848, 1661464X";"Societe de Physique et d'Histoire Naturelle de Geneve";No;No;0,116;Q4;17;0;2;0;1;2;0,50;0,00;0,00;0;Switzerland;Western Europe;"Societe de Physique et d'Histoire Naturelle de Geneve";"2004-2014, 2017-2018, 2020-2021, 2024";"Multidisciplinary (Q4)";"Multidisciplinary" +28670;19700174904;"Asian Journal of Pharmaceutical and Clinical Research";journal;"09742441, 24553891";"Innovare Academics Sciences Pvt. Ltd";Yes;No;0,116;Q4;55;378;470;13498;98;470;0,21;35,71;41,72;0;India;Asiatic Region;"Innovare Academics Sciences Pvt. Ltd";"2009-2022, 2024-2026";"Drug Discovery (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +28671;21101185542;"Asian Journal of Statistical Sciences";journal;"25829912";"ARF India";No;No;0,116;Q4;3;7;32;161;6;32;0,14;23,00;23,08;0;India;Asiatic Region;"ARF India";"2021-2025";"Statistics and Probability (Q4)";"Mathematics" +28672;21101263947;"Automobile Technology";journal;"10003703";"";No;No;0,116;Q4;2;40;51;791;14;51;0,27;19,78;24,84;0;China;Asiatic Region;"";"2024-2025";"Automotive Engineering (Q4)";"Engineering" +28673;14854;"Biologicheskie Membrany";journal;"02334755";"Russian Academy of Sciences";No;No;0,116;Q4;11;27;125;1203;18;123;0,14;44,56;51,22;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"1996-2025";"Cell Biology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +28674;21505;"Ceramic Transactions";book series;"10421122";"Wiley-Blackwell";No;No;0,116;Q4;22;0;30;0;5;2;0,25;0,00;0,00;0;United States;Northern America;"Wiley-Blackwell";"2003-2016, 2018-2019, 2021-2023";"Ceramics and Composites (Q4); Materials Chemistry (Q4)";"Materials Science" +28675;21456;"Chinese Journal of Biomedical Engineering";journal;"02588021";"Chinese Academy of Medical Sciences";No;No;0,116;Q4;15;73;226;2851;64;226;0,24;39,05;38,32;0;China;Asiatic Region;"Chinese Academy of Medical Sciences";"1984-2025";"Bioengineering (Q4); Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)";"Chemical Engineering; Engineering; Medicine" +28676;4000151712;"Chinese Journal of Contemporary Neurology and Neurosurgery";journal;"16726731";"Tianjin Huanhu Hospital";Yes;No;0,116;Q4;12;163;500;5883;97;499;0,21;36,09;37,69;0;China;Asiatic Region;"Tianjin Huanhu Hospital";"2006-2026";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +28677;21101185615;"Chinese Journal of Orthodontics";journal;"16745760";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,116;Q4;4;25;126;536;15;121;0,14;21,44;46,60;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2025";"Orthodontics (Q4)";"Dentistry" +28678;25247;"Chinese Journal of Pharmacology and Toxicology";journal;"10003002";"Chinese Journal of Pharmacology and Toxicology";No;No;0,116;Q4;15;81;302;3273;57;301;0,15;40,41;46,46;0;China;Asiatic Region;"Chinese Journal of Pharmacology and Toxicology";"1986-2025";"Pharmacology (Q4); Toxicology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +28679;21101230597;"Clinical Infectology and Parasitology";journal;"2414360X, 23068787";"Professionalnye Izdaniya";No;No;0,116;Q4;1;59;48;1440;5;48;0,10;24,41;58,33;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2024-2025";"Epidemiology (Q4); Hepatology (Q4); Infectious Diseases (Q4); Parasitology (Q4); Pulmonary and Respiratory Medicine (Q4); Virology (Q4)";"Immunology and Microbiology; Medicine" +28680;21101044796;"Confluences Mediterranee";journal;"11482664, 21025991";"Pepper-L'Harmattan";No;No;0,116;Q4;5;0;94;0;17;85;0,23;0,00;0,00;0;France;Western Europe;"Pepper-L'Harmattan";"2019-2024";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28681;5700163865;"Critique Internationale";journal;"12907839";"Presses de Sciences Po";No;No;0,116;Q4;23;0;109;0;20;101;0,16;0,00;0,00;0;France;Western Europe;"Presses de Sciences Po";"2001-2024";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28682;12576;"Douleur et Analgesie";journal;"19516398, 1011288X";"John Libbey";No;No;0,116;Q4;10;42;86;1050;5;74;0,06;25,00;41,56;0;France;Western Europe;"John Libbey";"1988-2025";"Anesthesiology and Pain Medicine (Q4)";"Medicine" +28683;19700188119;"Educacion Quimica";journal;"18708404, 0187893X";"Facultad de Quimica, UNAM";Yes;Yes;0,116;Q4;18;0;187;0;56;175;0,24;0,00;0,00;0;Mexico;Latin America;"Facultad de Quimica, UNAM";"2009-2017, 2019-2024";"Chemistry (miscellaneous) (Q4); Education (Q4)";"Chemistry; Social Sciences" +28684;21101292832;"Education, Culture, and Society";book series;"25900005";"Brill Academic Publishers";No;No;0,116;Q4;0;1;2;124;0;2;0,00;124,00;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2022, 2024-2026";"Education (Q4)";"Social Sciences" +28685;16651;"Elektrotehniski Vestnik/Electrotechnical Review";journal;"00135852, 22323228";"Electrotechnical Society of Slovenia";No;No;0,116;Q4;15;14;106;384;24;103;0,29;27,43;26,67;0;Slovenia;Eastern Europe;"Electrotechnical Society of Slovenia";"1969-1971, 1973-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +28686;17163;"Fortschritte der Medizin, Supplement";journal;"16133560, 14383276";"";No;No;0,116;Q4;19;1000;3012;588;106;1130;0,04;0,59;37,62;0;Germany;Western Europe;"";"1999-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +28687;21101312193;"Fountain Journal of Natural and Applied Sciences";journal;"2354337X, 23501863";"Fountain University";Yes;No;0,116;Q4;3;10;37;227;9;37;0,26;22,70;20,00;0;Nigeria;Africa;"Fountain University";"2021-2025";"Analytical Chemistry (Q4); Biochemistry (Q4); Chemistry (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +28688;28328;"Gastroenterological Endoscopy";journal;"03871207, 18845738";"Japan Gastroenterological Endoscopy Society";No;No;0,116;Q4;13;105;388;2996;28;367;0,07;28,53;15,15;0;Japan;Asiatic Region;"Japan Gastroenterological Endoscopy Society";"1970, 1973-2026";"Gastroenterology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +28689;21101277856;"Global Populisms";book series;"26662280";"Brill Academic Publishers";No;No;0,116;Q4;4;17;12;737;7;2;0,58;43,35;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021, 2023-2025";"Anthropology (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28690;21101097248;"Gomal Journal of Medical Sciences";journal;"18197973, 19972067";"Gomal Medical College";Yes;No;0,116;Q4;7;102;179;2212;32;162;0,18;21,69;42,81;0;Pakistan;Asiatic Region;"Gomal Medical College";"2019-2025";"Medicine (miscellaneous) (Q4); Microbiology (Q4); Pharmacy (Q4)";"Health Professions; Immunology and Microbiology; Medicine" +28691;21101141437;"Gynakologie";journal;"27317110, 27317102";"Springer Medizin";No;No;0,116;Q4;12;129;391;2963;37;309;0,10;22,97;52,59;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Obstetrics and Gynecology (Q4)";"Medicine" +28692;24081;"Huaxue Fanying Gongcheng Yu Gongyi/Chemical Reaction Engineering and Technology";journal;"10017631";"Zhejiang University";No;No;0,116;Q4;11;24;171;996;32;171;0,16;41,50;29,70;0;China;Asiatic Region;"Zhejiang University";"1985-1989, 1996-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +28693;21101295715;"Imagination and Praxis: Criticality and Creativity in Education and Educational Research";book series;"25429140";"Brill Academic Publishers";No;No;0,116;Q4;3;24;13;334;1;2;0,00;13,92;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2014, 2016-2017, 2020-2022, 2024-2025";"Education (Q4)";"Social Sciences" +28694;21101291383;"International and Comparative Business Law and Public Policy";book series;"26673495";"Brill Academic Publishers";No;No;0,116;Q4;4;14;60;1385;31;2;0,70;98,93;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2025";"Law (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +28695;21100407611;"International Comparative Social Studies";book series;"15684474";"Brill Academic Publishers";No;No;0,116;Q4;11;11;47;767;3;2;0,06;69,73;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2013, 2015-2021, 2023-2026";"Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4); Urban Studies (Q4)";"Social Sciences" +28696;21100463110;"International Criminal Law Series";book series;"22132724";"Brill Academic Publishers";No;No;0,116;Q4;4;0;2;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2019, 2021, 2024, 2026";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +28697;21101074927;"International Development Policy";book series;"16639383, 16639391";"Brill Academic Publishers";Yes;Yes;0,116;Q4;15;0;69;0;30;2;0,32;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2020, 2022, 2024";"Development (Q4); Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28698;21100425902;"International Litigation in Practice";book series;"18740502";"Brill Academic Publishers";No;No;0,116;Q4;5;0;2;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2011-2015, 2021-2022, 2024";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +28699;21101196750;"International Refugee Law Series";book series;"22133836";"Brill Nijhoff";No;No;0,116;Q4;7;0;2;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"2014-2022, 2026";"Law (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +28700;21101017736;"Internet Journal of Restorative Justice";journal;"20562985";"RJ4All Publications";No;No;0,116;Q4;2;1;10;35;2;9;0,00;35,00;0,00;0;United Kingdom;Western Europe;"RJ4All Publications";"2020-2024";"Law (Q4)";"Social Sciences" +28701;28780;"Japanese Journal of Hygiene";journal;"18826482, 00215082";"";No;No;0,116;Q4;22;8;21;0;5;21;0,25;0,00;30,00;0;Japan;Asiatic Region;"";"1961-2025";"Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +28702;21101239978;"Journal of Applied Psychological Research";journal;"22518126, 26764504";"University of Tehran";Yes;No;0,116;Q4;4;72;245;3553;32;244;0,07;49,35;45,32;0;Iran;Middle East;"University of Tehran";"2020-2025";"Applied Psychology (Q4); Developmental and Educational Psychology (Q4); Experimental and Cognitive Psychology (Q4); Psychology (miscellaneous) (Q4)";"Psychology" +28703;21101152621;"Journal of Inequalities and Special Functions";journal;"22174303";"University of Prishtina";No;No;0,116;Q4;6;15;28;315;7;28;0,29;21,00;25,81;0;Serbia;Eastern Europe;"University of Prishtina";"2019-2025";"Applied Mathematics (Q4)";"Mathematics" +28704;15323;"Journal of Jilin University Medicine Edition";journal;"1671587X";"Editorial Board of Jilin University";No;No;0,116;Q4;8;194;599;5742;109;599;0,18;29,60;50,98;0;China;Asiatic Region;"Editorial Board of Jilin University";"2005-2025";"Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +28705;21101278529;"Journal of Multidisciplinary Studies in Human Rights and Science";journal;"27521400";"Knowmad Institut";Yes;Yes;0,116;Q4;2;13;13;475;3;13;0,18;36,54;46,51;0;Germany;Western Europe;"Knowmad Institut";"2021-2026";"Health (social science) (Q4); Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +28706;6300153124;"Journal of the Chinese Institute of Civil and Hydraulic Engineering";journal;"10155856";"Chinese Institute of Civil and Hydraulic Engineering";No;No;0,116;Q4;5;0;79;0;6;79;0,00;0,00;0,00;0;Taiwan;Asiatic Region;"Chinese Institute of Civil and Hydraulic Engineering";"1991-1992, 2007-2022";"Civil and Structural Engineering (Q4)";"Engineering" +28707;20521;"Journal of the Chinese Society of Mechanical Engineers, Transactions of the Chinese Institute of Engineers, Series C/Chung-Kuo Chi Hsueh Kung Ch'eng Hsuebo Pao";journal;"02579731";"Chinese Mechanical Engineering Society";No;No;0,116;Q4;15;0;48;0;15;48;0,00;0,00;0,00;0;Taiwan;Asiatic Region;"Chinese Mechanical Engineering Society";"1984-2022";"Mechanical Engineering (Q4)";"Engineering" +28708;21101043800;"Journal of the Ghana Science Association";journal;"2737713X";"Ghana Science Association";No;No;0,116;Q4;4;15;41;739;13;41;0,40;49,27;21,67;0;Ghana;Africa;"Ghana Science Association";"2019-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +28709;21101291384;"Khirurgiya i Onkologiya";journal;"29495857";"ABV-press Publishing House";No;No;0,116;Q4;3;38;94;705;18;84;0,13;18,55;38,69;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2021-2025";"Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)";"Medicine" +28710;23175;"Krankenhauspharmazie";journal;"01737597";"Deutscher Apotheker Verlag";No;No;0,116;Q4;13;106;449;861;11;236;0,03;8,12;69,81;0;Germany;Western Europe;"Deutscher Apotheker Verlag";"1990-2026";"Pharmacology (medical) (Q4)";"Medicine" +28711;21100407201;"Legal History Library";book series;"18747493";"Brill Nijhoff";No;No;0,116;Q4;6;46;2;4874;1;2;1,00;105,96;22,22;0;Netherlands;Western Europe;"Brill Nijhoff";"2008, 2010-2015, 2017, 2021-2022, 2024-2026";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +28712;21100980696;"Literary Journalism Studies";journal;"1944897X, 19448988";"International Association for Literary Journalism Studies";No;No;0,116;Q4;3;0;27;0;5;18;0,00;0,00;0,00;0;United States;Northern America;"International Association for Literary Journalism Studies";"2019-2024, 2026";"Communication (Q4)";"Social Sciences" +28713;12100156089;"Ljetopis Socijalnog Rada";journal;"18465412";"University of Zagreb";Yes;Yes;0,116;Q4;12;0;67;0;13;62;0,14;0,00;0,00;0;Croatia;Eastern Europe;"University of Zagreb";"2008-2024";"Developmental and Educational Psychology (Q4); Education (Q4); Social Work (Q4); Sociology and Political Science (Q4)";"Psychology; Social Sciences" +28714;12147;"Lundiana";journal;"16766180";"Lundiana";No;No;0,116;Q4;22;0;2;0;0;2;0,00;0,00;0,00;0;Brazil;Latin America;"Lundiana";"2003-2009, 2013, 2016, 2021-2023";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +28715;24509;"Mainzer Geowissenschaftliche Mitteilungen";journal;"03404404";"Landesamt für Geologie und Bergbau Rheinland-Pfalz";No;No;0,116;Q4;13;0;10;0;1;9;0,10;0,00;0,00;0;Germany;Western Europe;"Landesamt für Geologie und Bergbau Rheinland-Pfalz";"1992-2002, 2004-2020, 2023";"Paleontology (Q4); Stratigraphy (Q4); Water Science and Technology (Q4)";"Earth and Planetary Sciences; Environmental Science" +28716;19700174906;"Molecular and Cellular Pharmacology";journal;"19381247";"";Yes;No;0,116;Q4;28;0;8;0;0;2;0,00;0,00;0,00;0;United States;Northern America;"";"2009-2017, 2020-2023";"Molecular Biology (Q4); Pharmaceutical Science (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +28717;15828;"Nederlands Tijdschrift voor Geneeskunde";journal;"00282162, 18768784";"Vereniging Nederlands Tijdschrift voor Geneeskunde";No;No;0,116;Q4;38;330;1516;55;96;896;0,05;0,17;49,57;0;Netherlands;Western Europe;"Vereniging Nederlands Tijdschrift voor Geneeskunde";"1946, 1948-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +28718;21100406789;"Nijhoff Law Specials";book series;"09244549";"Martinus Nijhoff Publishers";No;No;0,116;Q4;6;16;51;2167;6;2;0,03;135,44;66,67;0;Netherlands;Western Europe;"Martinus Nijhoff Publishers";"2004, 2006-2009, 2011-2013, 2015-2025";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +28719;21101032113;"Nordisk Tidsskrift for Utdanning og Praksis";journal;"25357697";"Cappelen Damm Akademisk";Yes;No;0,116;Q4;6;23;48;1012;9;46;0,20;44,00;80,49;0;Norway;Western Europe;"Cappelen Damm Akademisk";"2019-2025";"Education (Q4)";"Social Sciences" +28720;4700152779;"Nursing Made Incredibly Easy";journal;"15522032, 15445186";"Lippincott Williams and Wilkins Ltd.";No;No;0,116;Q4;9;43;155;560;20;115;0,16;13,02;87,50;0;United States;Northern America;"Lippincott Williams and Wilkins Ltd.";"2003, 2005-2025";"Assessment and Diagnosis (Q4); Fundamentals and Skills (Q4); LPN and LVN (Q4); Nurse Assisting (Q4)";"Nursing" +28721;21100240200;"Onkologie (Czech Republic)";journal;"18024475, 18035345";"SOLEN s.r.o.";No;No;0,116;Q4;4;58;225;886;6;215;0,03;15,28;49,38;0;Czech Republic;Eastern Europe;"SOLEN s.r.o.";"2011-2025";"Cancer Research (Q4); Medicine (miscellaneous) (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28722;21100312407;"Online Journal of Analytic Combinatorics";journal;"19313365";"";No;No;0,116;Q4;9;5;15;100;2;15;0,00;20,00;18,18;0;Canada;Northern America;"";"2014-2025";"Discrete Mathematics and Combinatorics (Q4)";"Mathematics" +28723;21101111530;"Ostrava Journal of English Philology";journal;"18038174, 25710257";"University of Ostrava, Faculty of Arts";Yes;Yes;0,116;Q4;2;10;42;289;2;41;0,03;28,90;83,33;0;Czech Republic;Eastern Europe;"University of Ostrava, Faculty of Arts";"2019-2025";"Linguistics and Language (Q4)";"Social Sciences" +28724;73430;"Pharmaceutical Technology";journal;"15432521";"Advanstar Communications Inc.";Yes;No;0,116;Q4;43;67;270;324;35;87;0,14;4,84;46,67;0;United States;Northern America;"Advanstar Communications Inc.";"1979-1985, 1987, 1996-2026";"Biophysics (Q4); Pharmaceutical Science (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +28725;19400157216;"Philippine Journal of Veterinary Medicine";journal;"2984763X, 00317705";"University of the Philippines at Los Banos";No;No;0,116;Q4;8;19;45;853;8;45;0,30;44,89;57,89;0;Philippines;Asiatic Region;"University of the Philippines at Los Banos";"2008-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +28726;21100445641;"Philippine Statistician";journal;"20940343";"Philippine Statistical Association, Inc.";No;No;0,116;Q4;5;0;16;0;6;16;0,25;0,00;0,00;0;Philippines;Asiatic Region;"Philippine Statistical Association, Inc.";"2015-2023";"Statistics and Probability (Q4)";"Mathematics" +28727;21100933894;"Plan Journal";journal;"25317644, 26117487";"Maggioli S.p.a.";No;No;0,116;Q4;6;10;71;234;17;62;0,28;23,40;10,00;0;Italy;Western Europe;"Maggioli S.p.a.";"2016-2025";"Architecture (Q4); Urban Studies (Q4)";"Engineering; Social Sciences" +28728;13224;"Polymers Paint Colour Journal";trade journal;"1357731X";"DMG World Media (UK) Ltd.";No;No;0,116;Q4;5;0;2;0;0;2;0,00;0,00;0,00;0;United Kingdom;Western Europe;"DMG World Media (UK) Ltd.";"1974-1977, 1980-1981, 1984, 1987-1989, 1996-2022";"Materials Chemistry (Q4); Polymers and Plastics (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science" +28729;21101374358;"Proceedings of the Canadian Engineering Education Association Conference";book series;"23715243";"Canadian Engineering Education Association";No;No;0,116;Q4;9;123;342;3003;203;2;0,56;24,41;66,67;0;Canada;Northern America;"Canadian Engineering Education Association";"2021-2025";"Education (Q4); Engineering (miscellaneous) (Q4)";"Engineering; Social Sciences" +28730;21101285756;"Proceedings of the International Conference on Advanced Computer Theory and Engineering, ICACTE";journal;"21547505, 21547491";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,116;Q4;1;0;68;0;18;66;0,26;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computational Theory and Mathematics (Q4); Computer Science Applications (Q4); Modeling and Simulation (Q4)";"Computer Science; Mathematics" +28731;21101298355;"Proceedings of the International Conference on Power Electronics, Drives, and Energy Systems for Industrial Growth, PEDES";journal;"27683486, 28363841";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,116;Q4;5;0;539;0;214;535;0,40;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Mechanical Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Energy; Engineering" +28732;21101290840;"Proceedings of the World Congress on Momentum, Heat and Mass Transfer";book series;"23715316";"Avestia Publishing";No;No;0,116;Q4;3;68;175;619;25;173;0,14;9,10;20,89;0;Canada;Northern America;"Avestia Publishing";"2023-2025";"Bioengineering (Q4); Catalysis (Q4); Chemical Engineering (miscellaneous) (Q4); Chemical Health and Safety (Q4); Colloid and Surface Chemistry (Q4); Filtration and Separation (Q4); Fluid Flow and Transfer Processes (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering" +28733;14300154708;"Revista Chilena de Anestesia";journal;"07164076";"Sociedad de Anestesiologia de Chile";Yes;Yes;0,116;Q4;7;117;376;2873;37;335;0,09;24,56;39,38;0;Chile;Latin America;"Sociedad de Anestesiologia de Chile";"2008-2025";"Anesthesiology and Pain Medicine (Q4)";"Medicine" +28734;21101021053;"Revista Colombiana de Computacion";journal;"16572831, 25392115";"Universidad Autonoma de Bucaramanga";Yes;Yes;0,116;Q4;6;0;30;0;7;29;0,10;0,00;0,00;0;Colombia;Latin America;"Universidad Autonoma de Bucaramanga";"2019-2024";"Computer Science (miscellaneous) (Q4)";"Computer Science" +28735;14200154740;"Revista Colombiana de Quimica";journal;"01202804";"Universidad Nacional de Colombia";Yes;Yes;0,116;Q4;11;7;48;405;13;48;0,13;57,86;55,00;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2008-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +28736;21101047069;"Revista de Filologia de la Universidad de La Laguna";journal;"02124130, 25308548";"University of La Laguna";Yes;Yes;0,116;Q4;4;36;92;1508;9;90;0,12;41,89;60,00;0;Spain;Western Europe;"University of La Laguna";"2019-2025";"Linguistics and Language (Q4)";"Social Sciences" +28737;20274;"Revista de la Facultad de Ciencias Medicas de Cordoba";journal;"00146722, 18530605";"Universidad Nacional de Cordoba";Yes;Yes;0,116;Q4;14;0;2;0;0;2;0,00;0,00;0,00;0;Argentina;Latin America;"Universidad Nacional de Cordoba";"1947, 1950-1970, 1972-1997, 1999-2016, 2020, 2022-2023";"Medicine (miscellaneous) (Q4)";"Medicine" +28738;21100868098;"Rivista Italiana di Medicina Legale e del Diritto in Campo Sanitario";journal;"24992860, 24992852";"Giuffre Francis Lefebvre SPA";No;No;0,116;Q4;5;0;2;0;0;2;0,00;0,00;0,00;0;Italy;Western Europe;"Giuffre Francis Lefebvre SPA";"2014-2022";"Law (Q4); Medicine (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4)";"Medicine; Social Sciences" +28739;5000159102;"Seybold Report";trade journal;"15339211";"The Joss Group";No;No;0,116;Q4;1;0;57;0;0;2;0,00;0,00;0,00;0;United States;Northern America;"The Joss Group";"2005, 2013, 2015-2023";"Marketing (Q4); Media Technology (Q4)";"Business, Management and Accounting; Engineering" +28740;21101077472;"Springer Proceedings in Earth and Environmental Sciences";book series;"2524342X, 25243438";"Springer Nature";No;No;0,116;Q4;11;480;1366;14303;379;2;0,26;29,80;0,00;1;Switzerland;Western Europe;"Springer Nature";"2019-2026";"Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Geophysics (Q4); Oceanography (Q4)";"Earth and Planetary Sciences; Environmental Science" +28741;21101290951;"Studies in International Criminal Law";book series;"2666903X";"Brill Academic Publishers";No;No;0,116;Q4;1;10;28;278;4;2;0,15;27,80;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2025";"Law (Q4)";"Social Sciences" +28742;5800208032;"Suvremena Psihologija";journal;"13319264";"Naklada Slap d.o.o";No;No;0,116;Q4;10;5;32;193;4;27;0,05;38,60;83,33;0;Croatia;Eastern Europe;"Naklada Slap d.o.o";"2008-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +28743;16584;"Technical Textiles International";trade journal;"09645993";"International Newsletters Ltd";No;No;0,116;Q4;12;8;14;6;0;2;0,00;0,75;42,86;0;United Kingdom;Western Europe;"International Newsletters Ltd";"1992-2025";"Business, Management and Accounting (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4)";"Business, Management and Accounting; Chemistry; Engineering; Materials Science" +28744;21101292834;"The Language of Education";book series;"26660121";"Brill Academic Publishers";No;No;0,116;Q4;0;0;2;0;0;2;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019, 2021, 2023-2024";"Education (Q4)";"Social Sciences" +28745;21100312404;"Theory of Stochastic Processes";journal;"03213900";"Institute of Mathematics, Ukrainian National Academy of Sciences";No;No;0,116;Q4;8;11;19;174;3;19;0,14;15,82;30,00;0;Ukraine;Eastern Europe;"Institute of Mathematics, Ukrainian National Academy of Sciences";"2011-2012, 2014-2020, 2022-2025";"Applied Mathematics (Q4); Modeling and Simulation (Q4); Statistics and Probability (Q4)";"Mathematics" +28746;21100212133;"Tijdschrift voor Urologie";journal;"22113037, 22114718";"Springer Science + Business Media";Yes;No;0,116;Q4;10;36;109;542;11;82;0,14;15,06;41,41;0;United States;Northern America;"Springer Science + Business Media";"2011-2026";"Urology (Q4)";"Medicine" +28747;21101038532;"Ukrainian Journal of Radiology and Oncology";journal;"27087166, 27087174";"Grigoriev Institute for medical Radiology and Oncology NAMS of Ukraine";Yes;No;0,116;Q4;4;34;105;1086;31;105;0,39;31,94;58,06;0;Ukraine;Eastern Europe;"Grigoriev Institute for medical Radiology and Oncology NAMS of Ukraine";"2020-2025";"Education (Q4); Oncology (Q4); Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Health Professions; Medicine; Social Sciences" +28748;40487;"VDI-Berichte";book series;"00835560";"VDI Verlag GMBH";Yes;No;0,116;Q4;20;95;1062;771;70;882;0,06;8,12;20,00;0;Germany;Western Europe;"VDI Verlag GMBH";"1969-1975, 1977-1982, 1984, 1986, 1993, 1996-2009, 2016-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +28749;21101149136;"Vestnik Rossijskoj Voenno-Medicinskoj Akademii";journal;"26871424, 16827392";"Eco-Vector LLC";No;No;0,116;Q4;6;59;209;1613;38;209;0,21;27,34;33,61;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Internal Medicine (Q4); Medical Laboratory Technology (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4); Surgery (Q4)";"Health Professions; Medicine; Pharmacology, Toxicology and Pharmaceutics" +28750;96394;"Virchows Archiv fur pathologische Anatomie und Physiologie und fur klinische Medizin";journal;"03760081";"Springer Verlag";No;No;0,116;Q4;1;0;2;0;0;2;0,00;0,00;0,00;0;Germany;Western Europe;"Springer Verlag";"1847, 1849, 1851-1944, 1947-1971, 1973, 2021-2023";"Cell Biology (Q4); Medicine (miscellaneous) (Q4); Molecular Biology (Q4); Pathology and Forensic Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28751;18033;"World Dredging, Mining and Construction";trade journal;"10450343";"Placer Management Corp.";No;No;0,116;Q4;3;0;24;0;0;2;0,00;0,00;0,00;0;United States;Northern America;"Placer Management Corp.";"1979, 1988-2024";"Building and Construction (Q4); Ocean Engineering (Q4); Oceanography (Q4); Stratigraphy (Q4)";"Earth and Planetary Sciences; Engineering" +28752;20840;"World Health Organization - Technical Report Series";book series;"05123054";"World Health Organization";No;No;0,116;Q4;37;0;3;0;2;3;0,50;0,00;0,00;0;Switzerland;Western Europe;"World Health Organization";"1950-1961, 1963-2017, 2019-2020, 2022-2024";"Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +28753;21100945707;"Zdravotnicke Listy";journal;"26444909, 13393022";"Faculty of Healthcare, Alexander Dubcek University of Trencin";Yes;Yes;0,116;Q4;5;34;154;705;14;139;0,09;20,74;63,00;0;Slovakia;Eastern Europe;"Faculty of Healthcare, Alexander Dubcek University of Trencin";"2019-2025";"Nursing (miscellaneous) (Q4); Occupational Therapy (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Public Health, Environmental and Occupational Health (Q4)";"Health Professions; Medicine; Nursing" +28754;12100157223;"Zeitschrift fur Arznei- und Gewurzpflanzen";journal;"14319292";"Agrimedia";No;No;0,116;Q4;11;37;66;389;2;18;0,04;10,51;22,22;0;Germany;Western Europe;"Agrimedia";"2008-2018, 2020-2025";"Agronomy and Crop Science (Q4); Food Science (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences" +28755;21101213847;"Forum Bildverarbeitung";conference and proceedings;"25107224";"KIT Scientific Publishing";No;No;0,116;-;3;0;41;0;7;37;0,14;0,00;0,00;0;Germany;Western Europe;"KIT Scientific Publishing";"2020, 2022, 2024";"Computer Vision and Pattern Recognition";"Computer Science" +28756;21100826749;"REHABEND";conference and proceedings;"23868198";"University of Cantabria - Building Technology R&D Group";No;No;0,116;-;7;0;556;0;43;554;0,07;0,00;0,00;0;Spain;Western Europe;"University of Cantabria - Building Technology R&D Group";"2014, 2016-2018, 2020, 2022, 2024";"Building and Construction; Cultural Studies; Geography, Planning and Development; Mechanics of Materials; Urban Studies";"Engineering; Social Sciences" +28757;8000153116;"Revista Mexicana de Astronomia y Astrofisica: Serie de Conferencias";conference and proceedings;"14052059";"Universidad Nacional Autonoma de Mexico";No;No;0,116;-;28;37;173;606;21;162;0,07;16,38;17,76;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"1995-2011, 2013-2014, 2017, 2019-2020, 2022-2025";"Astronomy and Astrophysics; Space and Planetary Science";"Earth and Planetary Sciences; Physics and Astronomy" +28758;28401;"Classical Quarterly";journal;"00098388, 14716844";"Cambridge University Press";No;No;0,115;Q2;47;47;263;2428;47;263;0,13;51,66;27,27;0;United Kingdom;Western Europe;"Cambridge University Press";"1907-2026";"Classics (Q2); History (Q3); Literature and Literary Theory (Q3); Philosophy (Q3)";"Arts and Humanities" +28759;21100858122;"Convivium (Czech Republic)";journal;"23363452, 2336808X";"Brepols Publishers";No;No;0,115;Q2;4;6;101;194;6;86;0,04;32,33;60,00;0;Belgium;Western Europe;"Brepols Publishers";"2017-2025";"Classics (Q2); History (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28760;5800219290;"Analisi Linguistica e Letteraria";journal;"11221917, 18277985";"EDUCatt";Yes;Yes;0,115;Q3;8;14;94;466;10;90;0,15;33,29;66,67;0;Italy;Western Europe;"EDUCatt";"2014-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28761;21100794693;"Ars Aeterna";journal;"13379291, 24508497";"Univerzita Konstantina Filozofa v Nitre";Yes;No;0,115;Q3;5;12;38;399;8;38;0,08;33,25;50,00;0;Slovakia;Eastern Europe;"Univerzita Konstantina Filozofa v Nitre";"2016-2025";"Cultural Studies (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28762;21101030127;"Art History and Criticism";journal;"18224555, 18224547";"Walter de Gruyter GmbH";Yes;Yes;0,115;Q3;3;10;32;384;7;32;0,23;38,40;100,00;0;Poland;Eastern Europe;"Walter de Gruyter GmbH";"2019-2025";"History (Q3); Museology (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28763;21101128569;"AusArt";journal;"23409134, 23408510";"UPV/EHU Press";Yes;Yes;0,115;Q3;3;27;92;724;6;92;0,10;26,81;34,38;0;Spain;Western Europe;"UPV/EHU Press";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28764;26231;"Boletin del Instituto de Historia Argentina y Americana 'Dr. Emilio Ravignani'";journal;"05249767, 18502563";"Institute of Argentine and American History "Dr. Emilio Ravignani"";Yes;Yes;0,115;Q3;5;9;91;307;5;81;0,07;34,11;44,44;0;Argentina;Latin America;"Institute of Argentine and American History "Dr. Emilio Ravignani"";"1980, 2001, 2019-2026";"History (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities" +28765;6000160653;"British Journal of Canadian Studies";journal;"17578078, 02699222";"Liverpool University Press";No;No;0,115;Q3;8;12;33;387;6;29;0,22;32,25;90,00;0;United Kingdom;Western Europe;"Liverpool University Press";"2011-2018, 2020-2025";"Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28766;16300154742;"Cahiers de Civilisation Medievale";journal;"00079731";"Centre d'Etudes Superieures de Civilisation Medievale";No;No;0,115;Q3;10;6;147;713;6;140;0,04;118,83;16,67;0;France;Western Europe;"Centre d'Etudes Superieures de Civilisation Medievale";"2002-2014, 2017-2025";"History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28767;6000167187;"California History";journal;"01622897, 23271485";"University of California Press";No;No;0,115;Q3;3;15;73;1162;10;59;0,17;77,47;38,46;0;United States;Northern America;"University of California Press";"1978-1995, 2020-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3)";"Arts and Humanities" +28768;5600155210;"Canadian Journal of History";journal;"00084107, 22928502";"University of Toronto Press";No;No;0,115;Q3;12;0;82;0;19;82;0,33;0,00;0,00;0;Canada;Northern America;"University of Toronto Press";"1968, 1971-1973, 1979, 1982, 1984-1985, 1995-1996, 1999-2024";"History (Q3)";"Arts and Humanities" +28769;17100154744;"CEA Critic";journal;"00078069";"Johns Hopkins University Press";No;No;0,115;Q3;6;32;86;537;7;79;0,09;16,78;39,29;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"Literature and Literary Theory (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +28770;5700164170;"Central Europe";journal;"14790963, 17458218";"Taylor and Francis Ltd.";No;No;0,115;Q3;20;8;36;0;13;33;0,39;0,00;42,86;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2003-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28771;21100877661;"Civitas";journal;"19847289, 15196089";"Edipucrs";Yes;Yes;0,115;Q3;8;35;111;1196;17;111;0,15;34,17;66,67;0;Brazil;Latin America;"Edipucrs";"2018-2026";"Cultural Studies (Q3); Anthropology (Q4); Development (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28772;21100870394;"Comics Grid: Journal of Comics Scholarship";journal;"20480792";"Open Library of Humanities";Yes;Yes;0,115;Q3;5;5;33;130;6;33;0,06;26,00;40,00;0;United Kingdom;Western Europe;"Open Library of Humanities";"2018-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28773;21100856609;"Cuadernos Salmantinos de Filosofia";journal;"02104857";"Universidad Pontificia de Salamanca, Servicio de Publicaciones";No;No;0,115;Q3;5;30;81;711;6;80;0,11;23,70;16,67;0;Spain;Western Europe;"Universidad Pontificia de Salamanca, Servicio de Publicaciones";"2017-2025";"Philosophy (Q3)";"Arts and Humanities" +28774;16300154798;"Dance Chronicle";journal;"15324257, 01472526";"Routledge";No;No;0,115;Q3;13;31;43;1173;16;39;0,50;37,84;73,53;0;United Kingdom;Western Europe;"Routledge";"1977-1987, 1989-2026";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28775;5600156482;"Dutch Crossing";journal;"03096564, 17597854";"Taylor and Francis Ltd.";No;No;0,115;Q3;8;19;51;463;17;41;0,20;24,37;35,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2026";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28776;21100406801;"East Central and Eastern Europe in the Middle Ages, 450-1450";book series;"18728103";"Brill Academic Publishers";No;No;0,115;Q3;10;3;66;1151;12;7;0,05;383,67;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2026";"Archeology (arts and humanities) (Q3); Cultural Studies (Q3); History (Q3); Visual Arts and Performing Arts (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28777;21101051697;"Ethical Thought";journal;"20744897, 20744870";"Institute of Philosophy, Russian Academy of Sciences";No;No;0,115;Q3;3;21;58;560;7;55;0,17;26,67;50,00;0;Russian Federation;Eastern Europe;"Institute of Philosophy, Russian Academy of Sciences";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +28778;19900191990;"First World War Studies";journal;"19475039, 19475020";"Taylor and Francis Ltd.";No;No;0,115;Q3;13;11;34;554;24;33;0,59;50,36;30,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2010-2026";"History (Q3)";"Arts and Humanities" +28779;5700169133;"French Review";journal;"23297131, 0016111X";"American Association of Teachers of French";No;No;0,115;Q3;13;27;185;1079;14;171;0,07;39,96;68,97;0;United States;Northern America;"American Association of Teachers of French";"2002-2025";"Cultural Studies (Q3); Literature and Literary Theory (Q3); Education (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28780;21101197200;"Ghana Studies";journal;"23337168, 15365514";"University of Wisconsin Press";No;No;0,115;Q3;3;0;45;0;10;38;0,24;0,00;0,00;0;United States;Northern America;"University of Wisconsin Press";"2019-2020, 2022-2024";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28781;19700182415;"Good Society";journal;"10890017, 15389731";"Penn State University Press";No;No;0,115;Q3;13;0;34;0;2;30;0,00;0,00;0,00;0;United States;Northern America;"Penn State University Press";"2010-2024";"Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28782;21101048539;"Hercegovina";journal;"25663429, 27121844";"University of Mostar, Faculty of Humanities and Social Sciences, Department of History";No;No;0,115;Q3;2;10;20;1178;5;20;0,27;117,80;15,38;0;Bosnia and Herzegovina;Eastern Europe;"University of Mostar, Faculty of Humanities and Social Sciences, Department of History";"2019-2023, 2025";"Archeology (arts and humanities) (Q3); History (Q3)";"Arts and Humanities" +28783;21101185538;"Hesperis-Tamuda";journal;"00181005";"Universite Mohammed V de Rabat - Institut Scientifique";Yes;Yes;0,115;Q3;7;23;100;803;7;96;0,07;34,91;21,74;0;Morocco;Africa;"Universite Mohammed V de Rabat - Institut Scientifique";"1973-1974, 1982, 1984-1985, 2019-2025";"Archeology (arts and humanities) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28784;21100318419;"Historein";journal;"22412816, 11083441";"National Documentation Centre";No;No;0,115;Q3;8;8;25;353;6;24;0,24;44,13;71,43;0;Greece;Western Europe;"National Documentation Centre";"2011-2012, 2014-2015, 2017-2021, 2023-2025";"History (Q3)";"Arts and Humanities" +28785;21100215948;"Horizons in Biblical Theology";journal;"18712207, 01959085";"Brill Academic Publishers";No;No;0,115;Q3;9;10;33;470;5;29;0,19;47,00;57,14;0;Netherlands;Western Europe;"Brill Academic Publishers";"1979-1982, 1986-1988, 1994-2005, 2007-2025";"Religious Studies (Q3)";"Arts and Humanities" +28786;21100785521;"Islamic Africa";journal;"2333262X, 21540993";"Brill Academic Publishers";No;No;0,115;Q3;14;0;37;0;20;36;0,50;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2019, 2021-2024";"Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Religious Studies (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28787;21101229456;"Journal of African Languages and Literary Studies";journal;"26332108, 26332116";"Adonis and Abbey Publishers Ltd";No;No;0,115;Q3;2;42;39;1591;8;39;0,21;37,88;47,95;0;United Kingdom;Western Europe;"Adonis and Abbey Publishers Ltd";"2023-2025";"Arts and Humanities (miscellaneous) (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28788;19700170140;"Journal of Shi'a Islamic Studies";journal;"17489423";"The Islamic College";No;No;0,115;Q3;9;0;36;0;2;31;0,10;0,00;0,00;0;United Kingdom;Western Europe;"The Islamic College";"2011-2024";"Cultural Studies (Q3); History (Q3); Philosophy (Q3); Religious Studies (Q3); Law (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +28789;21101123942;"Legado de Arquitectura y Diseno";journal;"20073615, 2448749X";"Universidad Autonoma del Estado de Mexico";Yes;Yes;0,115;Q3;3;0;96;0;19;96;0,22;0,00;0,00;0;Mexico;Latin America;"Universidad Autonoma del Estado de Mexico";"2019-2024";"Arts and Humanities (miscellaneous) (Q3); Visual Arts and Performing Arts (Q3); Architecture (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +28790;21100821117;"Libri et Liberi";journal;"18483488, 18485871";"Croatian Association of Researchers in Children's Literature";Yes;No;0,115;Q3;5;10;39;368;9;32;0,18;36,80;70,00;0;Croatia;Eastern Europe;"Croatian Association of Researchers in Children's Literature";"2015-2025";"Cultural Studies (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities; Social Sciences" +28791;5800208228;"MLN - Modern Language Notes";journal;"10806598, 00267910";"Johns Hopkins University Press";No;No;0,115;Q3;20;59;222;2302;28;216;0,09;39,02;43,40;0;United States;Northern America;"Johns Hopkins University Press";"2002-2026";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28792;19900191812;"Musicology Australia";journal;"1949453X, 08145857";"Taylor and Francis Ltd.";No;No;0,115;Q3;13;8;25;393;13;22;0,19;49,13;30,77;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1964, 1967-1968, 1974, 1979-1980, 1982, 1985-1988, 1990-2005, 2007-2026";"Music (Q3)";"Arts and Humanities" +28793;21100937446;"On the W@terfront";journal;"11397365";"Universitat de Barcelona";Yes;Yes;0,115;Q3;5;3;22;232;7;22;0,20;77,33;50,00;0;Spain;Western Europe;"Universitat de Barcelona";"2019-2025";"Visual Arts and Performing Arts (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +28794;16600154703;"Opera Quarterly";journal;"14762870, 07360053";"Oxford University Press";No;No;0,115;Q3;14;0;30;0;4;21;0,14;0,00;0,00;0;United Kingdom;Western Europe;"Oxford University Press";"1983-2024";"Music (Q3)";"Arts and Humanities" +28795;16100154731;"Partial Answers";journal;"15653668, 19369247";"Johns Hopkins University Press";No;No;0,115;Q3;16;17;45;730;9;45;0,11;42,94;50,00;0;United States;Northern America;"Johns Hopkins University Press";"2003-2026";"Cultural Studies (Q3); Literature and Literary Theory (Q3); Philosophy (Q3)";"Arts and Humanities; Social Sciences" +28796;21101116673;"Perifrasis";journal;"21458987, 21459045";"Universidad de los Andes, Colombia";Yes;Yes;0,115;Q3;4;30;73;721;5;62;0,02;24,03;70,83;0;Colombia;Latin America;"Universidad de los Andes, Colombia";"2011, 2019-2026";"Cultural Studies (Q3); Literature and Literary Theory (Q3); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +28797;21100449123;"Porownania";journal;"1733165X";"Adam Mickiewicz University";No;No;0,115;Q3;4;45;121;1422;9;116;0,04;31,60;64,00;0;Poland;Eastern Europe;"Adam Mickiewicz University";"2015-2025";"Cultural Studies (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities; Social Sciences" +28798;21101292644;"Review of Disability Studies An International Journal";journal;"15529215, 15533697";"University of Hawai'i at Manoa Center on Disability Studies";No;No;0,115;Q3;4;18;94;467;16;85;0,12;25,94;63,64;0;United States;Northern America;"University of Hawai'i at Manoa Center on Disability Studies";"2021-2025";"Cultural Studies (Q3); Developmental and Educational Psychology (Q4); Education (Q4); Political Science and International Relations (Q4)";"Psychology; Social Sciences" +28799;24307;"Revista de Historia (Brazil)";journal;"00348309, 23169141";"Universidade de Sao Paulo, Faculdade de Filosofia, Letras e Ciencias Humanas";Yes;Yes;0,115;Q3;6;31;147;1700;10;146;0,06;54,84;41,38;0;Brazil;Latin America;"Universidade de Sao Paulo, Faculdade de Filosofia, Letras e Ciencias Humanas";"1968-1971, 1973, 1975-1978, 1999-2001, 2017-2025";"History (Q3)";"Arts and Humanities" +28800;5700165095;"Revolutionary Russia";journal;"17437873, 09546545";"Routledge";No;No;0,115;Q3;10;4;45;219;13;36;0,33;54,75;0,00;0;United Kingdom;Western Europe;"Routledge";"1988-2025";"History (Q3)";"Arts and Humanities" +28801;21101083504;"Rivista Italiana di Storia Internazionale";journal;"26118602, 26120992";"Societa Editrice Il Mulino";No;No;0,115;Q3;2;12;67;768;4;66;0,06;64,00;23,08;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2018-2025";"History (Q3)";"Arts and Humanities" +28802;21100904888;"Science Fiction Film and Television";journal;"17543770, 17543789";"Liverpool University Press";No;No;0,115;Q3;8;23;52;671;9;49;0,06;29,17;53,57;0;United Kingdom;Western Europe;"Liverpool University Press";"2018-2025";"Visual Arts and Performing Arts (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +28803;21101162887;"Shakespeare Bulletin";journal;"07482558, 19311427";"Johns Hopkins University Press";No;No;0,115;Q3;6;15;68;174;33;60;0,11;11,60;75,00;0;United States;Northern America;"Johns Hopkins University Press";"2019-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28804;17588;"Sixteenth Century Journal";journal;"03610160";"Sixteenth Century Journal Publishers, Inc";No;No;0,115;Q3;21;30;70;2661;15;66;0,22;88,70;38,46;0;United States;Northern America;"Sixteenth Century Journal Publishers, Inc";"1979, 1981-1986, 1989, 1999, 2001-2026";"Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28805;5600153193;"Social Science Forum";journal;"1581968X, 03523608";"Slovenian Sociological Association";Yes;Yes;0,115;Q3;5;0;56;0;16;47;0,20;0,00;0,00;0;Slovenia;Eastern Europe;"Slovenian Sociological Association";"2017-2024";"Cultural Studies (Q3); Communication (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28806;21100975674;"Stanislavski Studies";journal;"20544170, 20567790";"Taylor and Francis Ltd.";No;No;0,115;Q3;7;12;45;284;23;39;0,55;23,67;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28807;21100941038;"Studi di Estetica";journal;"05854733, 18258646";"MIMESIS EDIZIONI";Yes;Yes;0,115;Q3;4;12;93;348;8;93;0,08;29,00;35,71;0;Italy;Western Europe;"MIMESIS EDIZIONI";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +28808;21101225422;"Studia Historiae Oeconomicae";journal;"00816485, 23537515";"Uniwersytet im. Adama Mickiewicza w Poznaniu";Yes;Yes;0,115;Q3;2;12;37;755;7;36;0,19;62,92;37,50;0;Poland;Eastern Europe;"Uniwersytet im. Adama Mickiewicza w Poznaniu";"2023-2025";"History (Q3); Economics and Econometrics (Q4); Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +28809;21100861123;"Studia Historica, Historia Antigua";journal;"02132052, 25304100";"Ediciones Universidad de Salamanca";Yes;Yes;0,115;Q3;5;3;39;139;5;38;0,13;46,33;0,00;0;Spain;Western Europe;"Ediciones Universidad de Salamanca";"2017-2025";"History (Q3)";"Arts and Humanities" +28810;21100777367;"Studia Poliana";journal;"23871830, 11396660";"Servicio de Publicaciones de la Universidad de Navarra";Yes;No;0,115;Q3;3;10;31;286;5;28;0,14;28,60;30,00;0;Spain;Western Europe;"Servicio de Publicaciones de la Universidad de Navarra";"2015-2025";"Philosophy (Q3)";"Arts and Humanities" +28811;21101316726;"Syuzhetologiya i Syuzhetografiya";journal;"24107883, 27133133";"Siberian Branch of the Russian Academy of Sciences, Institute of Philology";No;No;0,115;Q3;2;25;63;403;4;63;0,06;16,12;75,00;0;Russian Federation;Eastern Europe;"Siberian Branch of the Russian Academy of Sciences, Institute of Philology";"2022-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +28812;21101163293;"Trans Asia Photography";journal;"27686876, 21582025";"Duke University Press";Yes;Yes;0,115;Q3;2;0;37;0;8;33;0,29;0,00;0,00;0;United States;Northern America;"Duke University Press";"2021-2024";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28813;16500154712;"Victorian Literature and Culture";journal;"10601503, 14701553";"Cambridge University Press";No;No;0,115;Q3;24;20;150;1368;36;148;0,20;68,40;65,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1996-2026";"Cultural Studies (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities; Social Sciences" +28814;12519;"Advances in Anatomy Embryology and Cell Biology";book series;"21927065, 03015556";"Springer Science and Business Media Deutschland GmbH";No;No;0,115;Q4;46;10;45;1068;31;7;0,79;106,80;25,00;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1973-2026";"Anatomy (Q4); Cell Biology (Q4); Developmental Biology (Q4); Embryology (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28815;21101289838;"African Journal of Law and Justice System";journal;"27533115, 27533123";"Adonis and Abbey Publishers Ltd";No;No;0,115;Q4;2;25;32;946;8;31;0,18;37,84;37,84;0;United Kingdom;Western Europe;"Adonis and Abbey Publishers Ltd";"2022-2025";"Law (Q4)";"Social Sciences" +28816;29469;"American Journal of Forensic Psychology";journal;"07331290";"American College of Forensic Psychology";No;No;0,115;Q4;21;0;13;0;1;8;0,00;0,00;0,00;0;United States;Northern America;"American College of Forensic Psychology";"1991, 1996-2022";"Applied Psychology (Q4); Pathology and Forensic Medicine (Q4)";"Medicine; Psychology" +28817;21100945157;"Andrologia i Genital'naa Hirurgia";journal;"20709781, 24128902";"ABV-press Publishing House";Yes;Yes;0,115;Q4;5;0;150;0;28;149;0,14;0,00;0,00;0;Russian Federation;Eastern Europe;"ABV-press Publishing House";"2019-2024";"Reproductive Medicine (Q4); Surgery (Q4); Urology (Q4)";"Medicine" +28818;21101119712;"Baku State University Law Review";journal;"24125555";"Student Academic Society of Baku State University Law School";No;No;0,115;Q4;2;11;32;695;6;32;0,20;63,18;57,14;0;Azerbaijan;Eastern Europe;"Student Academic Society of Baku State University Law School";"2019-2025";"Law (Q4)";"Social Sciences" +28819;12971;"Canadian Acoustics - Acoustique Canadienne";journal;"22911391, 07116659";"Canadian Acoustical Association";No;No;0,115;Q4;23;9;166;77;22;149;0,12;8,56;56,25;0;Canada;Northern America;"Canadian Acoustical Association";"1996-2025";"Acoustics and Ultrasonics (Q4)";"Physics and Astronomy" +28820;19076;"Canadian Mining Journal";trade journal;"19233418, 00084492";"Business Information Group";No;No;0,115;Q4;6;135;355;0;13;353;0,04;0,00;25,33;0;Canada;Northern America;"Business Information Group";"1969-1988, 1995-2025";"Geotechnical Engineering and Engineering Geology (Q4); Industrial and Manufacturing Engineering (Q4)";"Earth and Planetary Sciences; Engineering" +28821;14862;"Ceska a Slovenska Psychiatrie";journal;"12120383";"Czech Medical Association J.E. Purkyne";No;No;0,115;Q4;10;0;126;0;15;82;0,08;0,00;0,00;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1995-2024";"Psychiatry and Mental Health (Q4)";"Medicine" +28822;13234;"Chinese Journal of Clinical Oncology";journal;"10008179";"China Anti-Cancer Association";No;No;0,115;Q4;13;199;585;5817;93;584;0,19;29,23;43,01;0;China;Asiatic Region;"China Anti-Cancer Association";"1986-1999, 2005-2025";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28823;64631;"Cientifica";journal;"01000039, 19845529";"Universidade Estadual Paulista (UNESP)";No;Yes;0,115;Q4;6;15;18;456;6;18;0,35;30,40;38,30;0;Brazil;Latin America;"Universidade Estadual Paulista (UNESP)";"1981-1982, 2018-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Environmental Science" +28824;13131;"Columbia Journal of Law and Social Problems";journal;"00101923";"Columbia Law Review Association";No;No;0,115;Q4;15;8;48;2368;13;48;0,24;296,00;50,00;0;United States;Northern America;"Columbia Law Review Association";"1973, 1975-1976, 1978, 1980, 1985-1986, 1989-1990, 1992-2025";"Law (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28825;21101120351;"Dearq";journal;"20113188, 2215969X";"Universidad de los Andes, Colombia";Yes;Yes;0,115;Q4;5;23;79;344;13;63;0,12;14,96;46,15;0;Colombia;Latin America;"Universidad de los Andes, Colombia";"2019-2025";"Architecture (Q4); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Engineering; Social Sciences" +28826;21101298833;"Far East Journal of Theoretical Statistics";journal;"09720863, 30487358";"Pushpa Publishing House";No;No;0,115;Q4;2;23;55;429;8;55;0,21;18,65;14,63;0;India;Asiatic Region;"Pushpa Publishing House";"2021-2025";"Applied Mathematics (Q4); Computational Mathematics (Q4); Economics and Econometrics (Q4); Statistics and Probability (Q4)";"Economics, Econometrics and Finance; Mathematics" +28827;21101149482;"Fayoum University Medical Journal";journal;"25369482, 25369474";"Fayoum University, Faculty of Medicine";Yes;No;0,115;Q4;3;72;163;1572;24;163;0,14;21,83;46,08;0;Egypt;Africa/Middle East;"Fayoum University, Faculty of Medicine";"2018-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +28828;21100203941;"Forum of Clinical Oncology";journal;"1792345X, 1792362X";"";Yes;Yes;0,115;Q4;7;9;55;276;7;50;0,00;30,67;44,68;0;Greece;Western Europe;"";"2012-2025";"Oncology (Q4)";"Medicine" +28829;21860;"Great Plains Research";journal;"10525165";"Center for Great Plains Studies";No;No;0,115;Q4;24;0;28;0;5;25;0,12;0,00;0,00;0;United States;Northern America;"Center for Great Plains Studies";"1991, 1993-2024";"Ecology, Evolution, Behavior and Systematics (Q4); Geography, Planning and Development (Q4)";"Agricultural and Biological Sciences; Social Sciences" +28830;28991;"Hejubian Yu Dengliziti Wuli/Nuclear Fusion and Plasma Physics";journal;"02546086";"Yuan Zi Neng Chuban She";No;No;0,115;Q4;10;68;194;1113;28;194;0,12;16,37;30,70;0;China;Asiatic Region;"Yuan Zi Neng Chuban She";"1993-1994, 1998, 2001-2025";"Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4)";"Energy; Physics and Astronomy" +28831;12667;"High Technology Letters";journal;"10066748";"Institute of Scientific and Technical Information of China";Yes;No;0,115;Q4;13;49;144;1365;48;144;0,38;27,86;34,59;0;China;Asiatic Region;"Institute of Scientific and Technical Information of China";"1991, 1995-2025";"Biotechnology (Q4); Control and Systems Engineering (Q4); Energy (miscellaneous) (Q4); Information Systems (Q4); Materials Science (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Energy; Engineering; Materials Science" +28832;4700151732;"International Journal of Risk Assessment and Management";journal;"14668297, 17415241";"Inderscience Enterprises Ltd";No;No;0,115;Q4;29;0;31;0;14;31;0,50;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2000-2003, 2005-2023";"Business and International Management (Q4); Management Science and Operations Research (Q4); Statistics, Probability and Uncertainty (Q4)";"Business, Management and Accounting; Decision Sciences" +28833;21100932833;"International Journal of Space Science and Engineering";journal;"20488459, 20488467";"Inderscience Enterprises Ltd";No;No;0,115;Q4;4;8;9;251;5;9;0,56;31,38;13,04;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"2019-2021, 2023-2025";"Aerospace Engineering (Q4); Computer Science Applications (Q4); Control and Systems Engineering (Q4); Space and Planetary Science (Q4)";"Computer Science; Earth and Planetary Sciences; Engineering" +28834;21101267542;"Iranian Journal of Remote Sensing and GIS";journal;"25886185, 20085966";"Shahid Beheshti University";No;No;0,115;Q4;3;27;92;1170;17;92;0,15;43,33;28,33;0;Iran;Middle East;"Shahid Beheshti University";"2020-2025";"Computers in Earth Sciences (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4); Instrumentation (Q4)";"Earth and Planetary Sciences; Physics and Astronomy; Social Sciences" +28835;35924;"Japanese Journal of Allergology";journal;"00214884, 13477935";"Japanese Society of Allergology";Yes;No;0,115;Q4;17;53;230;951;23;224;0,09;17,94;32,53;0;Japan;Asiatic Region;"Japanese Society of Allergology";"1961-2026";"Immunology and Allergy (Q4)";"Medicine" +28836;21100372604;"Journal of Applied Research on Children";journal;"21555834";"Texas Medical Center Library";Yes;Yes;0,115;Q4;17;0;30;0;5;25;0,07;0,00;0,00;0;United States;Northern America;"Texas Medical Center Library";"2010, 2014-2023";"Developmental and Educational Psychology (Q4); Education (Q4); Sociology and Political Science (Q4)";"Psychology; Social Sciences" +28837;21100967078;"Journal of Australian Taxation";journal;"14400405, 22086773";"Journal of Australian Taxation Pty Ltd";No;No;0,115;Q4;4;0;31;0;6;25;0,06;0,00;0,00;0;Australia;Pacific Region;"Journal of Australian Taxation Pty Ltd";"2019-2020, 2022-2024";"Accounting (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +28838;21101365670;"Journal of Institute of Medicine Nepal";journal;"19932987, 19932979";"Tribhuvan University Teaching Hospital";Yes;No;0,115;Q4;2;45;129;877;10;128;0,08;19,49;38,56;0;Nepal;Asiatic Region;"Tribhuvan University Teaching Hospital";"2021-2025";"Dentistry (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Dentistry; Medicine; Nursing" +28839;21101317178;"Journal of Nepalese Prosthodontic Society";journal;"26160013, 26160021";"";No;No;0,115;Q4;2;11;62;170;10;53;0,10;15,45;48,39;0;Nepal;Asiatic Region;"";"2021-2025";"Dentistry (miscellaneous) (Q4); Oral Surgery (Q4)";"Dentistry" +28840;21101044923;"Journal of Prevention and Treatment for Stomatological Diseases";journal;"20970234, 20961456";"Southern Medical University Stomatological Hospital";Yes;Yes;0,115;Q4;6;119;367;6369;102;366;0,34;53,52;51,63;0;China;Asiatic Region;"Southern Medical University Stomatological Hospital";"2019-2026";"Dental Hygiene (Q4); Oral Surgery (Q4); Orthodontics (Q4)";"Dentistry" +28841;21100396628;"Journal of the Southeast Asian Linguistics Society";journal;"18366821";"University of Hawaii Press";Yes;Yes;0,115;Q4;7;9;24;399;7;22;0,20;44,33;50,00;0;United States;Northern America;"University of Hawaii Press";"2014-2025";"Linguistics and Language (Q4)";"Social Sciences" +28842;21100229263;"Juridicas";journal;"17942918";"Universidad de Caldas";Yes;Yes;0,115;Q4;6;0;87;0;13;81;0,17;0,00;0,00;0;Colombia;Latin America;"Universidad de Caldas";"2012-2024";"Law (Q4)";"Social Sciences" +28843;21101207443;"Jurnal Penelitian Kehutanan Wallacea";journal;"2302299X, 24077860";"Hasanuddin University Faculty of Forestry";Yes;No;0,115;Q4;4;9;33;341;9;32;0,29;37,89;40,91;0;Indonesia;Asiatic Region;"Hasanuddin University Faculty of Forestry";"2020-2025";"Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4); Nature and Landscape Conservation (Q4); Social Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +28844;19700175098;"Klinicka Farmakologie a Farmacie";journal;"12127973, 18035353";"SOLEN s.r.o.";No;No;0,115;Q4;6;40;86;1154;13;76;0,20;28,85;57,14;0;Czech Republic;Eastern Europe;"SOLEN s.r.o.";"2009-2025";"Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacy (Q4)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +28845;21101291000;"METAL - International Conference on Metallurgy and Materials, Conference Proceedings";journal;"26949296";"TANGER Ltd.";No;No;0,115;Q4;2;99;220;1263;21;218;0,10;12,76;30,00;0;Czech Republic;Eastern Europe;"TANGER Ltd.";"2024-2025";"Mechanics of Materials (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science" +28846;26922;"Mitteilungen des Verbandes der Deutschen Hohlen- und Karstforscher";journal;"05052211";"Verband der Deutschen Hohlen- und Karstforscher e.V.";No;No;0,115;Q4;7;22;72;170;5;50;0,09;7,73;15,00;0;Germany;Western Europe;"Verband der Deutschen Hohlen- und Karstforscher e.V.";"1985-2008, 2011, 2013-2018, 2020-2025";"Atmospheric Science (Q4)";"Earth and Planetary Sciences" +28847;15606;"Nigerian Journal of Paediatrics";journal;"28142985, 03024660";"Paediatric Association of Nigeria";Yes;No;0,115;Q4;3;43;87;1145;18;82;0,18;26,63;45,92;0;Nigeria;Africa;"Paediatric Association of Nigeria";"1975-1987, 1993, 2021-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +28848;5800207548;"NOWELE";journal;"22129715, 01088416";"Odense Universitetsforlag";No;No;0,115;Q4;11;9;26;544;5;26;0,18;60,44;33,33;0;Denmark;Western Europe;"Odense Universitetsforlag";"1983-2025";"Linguistics and Language (Q4)";"Social Sciences" +28849;21818;"Nuncius / Istituto e museo di storia della scienza";journal;"03947394, 18253911";"Brill Academic Publishers";No;No;0,115;Q4;11;29;78;2472;19;75;0,20;85,24;42,86;0;Netherlands;Western Europe;"Brill Academic Publishers";"1986-1988, 1990-2026";"History and Philosophy of Science (Q4)";"Arts and Humanities" +28850;21101298367;"Proceedings of the IEEE International Conference on Service Operations and Logistics, and Informatics, SOLI";journal;"28326547, 27681890";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,115;Q4;1;0;34;0;4;33;0,12;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Computer Networks and Communications (Q4); Information Systems (Q4); Information Systems and Management (Q4); Management Science and Operations Research (Q4); Safety, Risk, Reliability and Quality (Q4)";"Computer Science; Decision Sciences; Engineering" +28851;96239;"Resource: Engineering and Technology for Sustainable World";trade journal;"23300442, 10763333";"American Society of Agricultural and Biological Engineers";Yes;No;0,115;Q4;12;35;90;69;8;90;0,07;1,97;33,33;0;United States;Northern America;"American Society of Agricultural and Biological Engineers";"1994-1997, 2001-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biotechnology (Q4); Engineering (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Engineering" +28852;5000160205;"Revista Cubana de Medicina General Integral";journal;"08642125, 15613038";"Editorial Ciencias Medicas";Yes;Yes;0,115;Q4;17;44;209;1053;24;166;0,07;23,93;51,00;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1996-2002, 2004-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +28853;21101040219;"Revista de Estudos Empiricos em Direito";journal;"23190817";"Instituto Rede de Pesquisa Empirica em Direito";Yes;Yes;0,115;Q4;3;30;91;983;9;88;0,06;32,77;60,78;0;Brazil;Latin America;"Instituto Rede de Pesquisa Empirica em Direito";"2019-2025";"Law (Q4)";"Social Sciences" +28854;21100823466;"Revista Habanera de Ciencias Medicas";journal;"1729519X";"Universidad de Ciencias Medicas de La Hab";Yes;Yes;0,115;Q4;15;55;206;1578;39;189;0,10;28,69;53,28;0;Cuba;Latin America;"Universidad de Ciencias Medicas de La Hab";"2002-2025";"Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +28855;29449;"Revue d'Etudes Comparatives Est-Ouest";journal;"03380599";"Presses Universitaires de France";No;No;0,115;Q4;12;6;18;79;3;16;0,13;13,17;75,00;0;France;Western Europe;"Presses Universitaires de France";"1978, 1985, 1996-2022, 2024-2025";"Finance (Q4); Political Science and International Relations (Q4)";"Economics, Econometrics and Finance; Social Sciences" +28856;19700201900;"Revue Francaise d'Allergologie";journal;"18770320, 18770312";"Elsevier Masson s.r.l.";No;No;0,115;Q4;21;95;352;1820;50;298;0,13;19,16;62,50;0;France;Western Europe;"Elsevier Masson s.r.l.";"2009-2026";"Immunology and Allergy (Q4)";"Medicine" +28857;21100229405;"RILEM Bookseries";book series;"22110844, 22110852";"Springer Science + Business Media";No;No;0,115;Q4;33;407;1775;7782;846;36;0,48;19,12;100,00;0;United States;Northern America;"Springer Science + Business Media";"2010-2026";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +28858;21101375098;"Semarak Engineering Journal";journal;"30360145";"Semarak Ilmu Publishing";No;No;0,115;Q4;4;30;23;966;46;23;2,00;32,20;32,61;0;Malaysia;Asiatic Region;"Semarak Ilmu Publishing";"2023-2026";"Aerospace Engineering (Q4); Automotive Engineering (Q4); Biomedical Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Engineering" +28859;29948;"Soins Gerontologie";journal;"12686034";"Elsevier Masson s.r.l.";No;No;0,115;Q4;7;60;178;827;17;142;0,11;13,78;63,16;0;France;Western Europe;"Elsevier Masson s.r.l.";"1996-2026";"Gerontology (Q4); Medicine (miscellaneous) (Q4)";"Medicine; Nursing" +28860;21100464929;"Taiwanese Political Science Review";journal;"10270221";"Taiwanese Political Science Association";No;No;0,115;Q4;4;0;15;0;3;15;0,00;0,00;0,00;0;Taiwan;Asiatic Region;"Taiwanese Political Science Association";"2015-2023";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28861;21101239982;"Travma";journal;"16081706, 23071397";"Zaslavsky Publishing House";No;No;0,115;Q4;4;53;104;1385;17;104;0,18;26,13;24,81;0;Ukraine;Eastern Europe;"Zaslavsky Publishing House";"2020-2025";"Orthopedics and Sports Medicine (Q4)";"Medicine" +28862;90482;"Zbornik Pravnog Fakulteta u Zagrebu";journal;"03502058, 18491154";"Faculty Of Law, University Of Zagreb";Yes;Yes;0,115;Q4;8;16;118;724;17;116;0,15;45,25;56,00;0;Croatia;Eastern Europe;"Faculty Of Law, University Of Zagreb";"1984, 2007-2025";"Law (Q4)";"Social Sciences" +28863;71152;"Zhongguo yi liao qi xie za zhi = Chinese journal of medical instrumentation";journal;"16717104";"Zhongguo yi liao qi xie za zhi bian ji bu";Yes;No;0,115;Q4;9;104;346;0;73;346;0,24;0,00;37,47;0;China;Asiatic Region;"Zhongguo yi liao qi xie za zhi bian ji bu";"1997-2002, 2005-2016, 2020-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +28864;20300195051;"International Conference on Wavelet Analysis and Pattern Recognition";conference and proceedings;"21585709, 21585695";"IEEE Computer Society";No;No;0,115;-;16;26;71;450;19;62;0,29;17,31;23,29;0;United States;Northern America;"IEEE Computer Society";"2011-2024";"Computational Theory and Mathematics; Computer Vision and Pattern Recognition";"Computer Science" +28865;21101083163;"Proceedings from the International Congress on Project Management and Engineering";conference and proceedings;"26955067";"Asociacion Espanola de Direccion e Ingenieria de Proyectos (AEIPRO)";No;No;0,115;-;5;215;567;4882;46;561;0,07;22,71;34,14;0;Spain;Western Europe;"Asociacion Espanola de Direccion e Ingenieria de Proyectos (AEIPRO)";"2019-2025";"Business and International Management; Business, Management and Accounting (miscellaneous); Engineering (miscellaneous); Management of Technology and Innovation";"Business, Management and Accounting; Engineering" +28866;21101125509;"Proceedings of the International Association of Maritime Universities Conference";conference and proceedings;"27066762, 27066754";"International Association of Maritime Universities";No;No;0,115;-;3;0;138;0;33;134;0,12;0,00;0,00;0;Japan;Asiatic Region;"International Association of Maritime Universities";"2022-2024";"Education; Ocean Engineering; Safety, Risk, Reliability and Quality; Transportation";"Engineering; Social Sciences" +28867;21100907750;"Proceedings of the LACCEI international Multi-conference for Engineering, Education and Technology";conference and proceedings;"24146390";"";No;No;0,115;-;13;1595;3087;47769;643;3081;0,20;29,95;37,31;0;United States;Northern America;"";"2017-2025";"Education; Engineering (miscellaneous)";"Engineering; Social Sciences" +28868;21100274874;"Annals of the Naprstek Museum";journal;"0231844X, 25335685";"National Museum Prague";Yes;No;0,114;Q3;6;11;33;235;5;33;0,13;21,36;44,44;0;Czech Republic;Eastern Europe;"National Museum Prague";"2011, 2013-2025";"Archeology (arts and humanities) (Q3); Cultural Studies (Q3); History (Q3); Museology (Q3); Anthropology (Q4); Archeology (Q4)";"Arts and Humanities; Social Sciences" +28869;21100913506;"Anos 90";journal;"0104236X, 1983201X";"Universidade Federal do Rio Grande do Sul";Yes;Yes;0,114;Q3;3;2;84;136;3;78;0,00;68,00;0,00;0;Brazil;Latin America;"Universidade Federal do Rio Grande do Sul";"2019-2025";"History (Q3)";"Arts and Humanities" +28870;21100843666;"Aportes";journal;"23864850, 02135868";"Schedas";No;Yes;0,114;Q3;5;14;76;546;7;73;0,10;39,00;20,00;0;Spain;Western Europe;"Schedas";"2015, 2017-2026";"History (Q3)";"Arts and Humanities" +28871;21101072344;"Archivum";journal;"05707218, 23411120";"Universidad de Oviedo";Yes;Yes;0,114;Q3;3;58;68;1981;7;68;0,04;34,16;28,30;0;Spain;Western Europe;"Universidad de Oviedo";"2019-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28872;6000152889;"Camera Obscura";journal;"15291510, 02705346";"Duke University Press";No;No;0,114;Q3;23;14;61;710;12;60;0,17;50,71;75,00;0;United States;Northern America;"Duke University Press";"2002-2025";"Visual Arts and Performing Arts (Q3); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +28873;20400195009;"Church History and Religious Culture";journal;"1871241X, 18712428";"Brill Academic Publishers";No;No;0,114;Q3;14;19;63;1596;8;62;0,09;84,00;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"1908, 1912, 1915, 1927, 1929, 1932, 1935-1936, 1939-1940, 1948, 1952, 1955, 1962-1963, 1965, 1968-1972, 1974, 1976-1977, 1979-1994, 2006-2025";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +28874;21100840125;"Colloquia Humanistica";journal;"23922419";"Polish Academy of Sciences, Institute of Slavic Studies";Yes;Yes;0,114;Q3;4;18;32;676;7;29;0,09;37,56;87,50;0;Poland;Eastern Europe;"Polish Academy of Sciences, Institute of Slavic Studies";"2017-2024";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28875;16200154704;"Criticism";journal;"00111589, 15360342";"Wayne State University Press";No;No;0,114;Q3;25;0;60;0;21;60;0,30;0,00;0,00;0;United States;Northern America;"Wayne State University Press";"2002-2024";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28876;21101039667;"Drawing: Research, Theory, Practice";journal;"20570392, 20570384";"Intellect Ltd.";No;No;0,114;Q3;4;20;62;220;12;56;0,14;11,00;76,47;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28877;17900156716;"Entreprises et Histoire";journal;"11612770";"Editions ESKA";No;No;0,114;Q3;11;0;119;0;19;108;0,20;0,00;0,00;0;France;Western Europe;"Editions ESKA";"2001-2003, 2008-2024";"History (Q3); Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance" +28878;5700184173;"Histoire Epistemologie Langage";journal;"07508069, 16381580";"Society for the History and Epistemology of Language Sciences";Yes;Yes;0,114;Q3;7;11;54;812;7;47;0,13;73,82;50,00;0;France;Western Europe;"Society for the History and Epistemology of Language Sciences";"2011-2013, 2015-2026";"Philosophy (Q3); Linguistics and Language (Q4); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology; Social Sciences" +28879;16500154711;"Hobbes Studies";journal;"09215891, 18750257";"Brill Academic Publishers";No;No;0,114;Q3;12;11;36;1082;9;33;0,27;98,36;27,27;0;Netherlands;Western Europe;"Brill Academic Publishers";"1989-1990, 1992, 1994, 1996-2025";"History (Q3); Philosophy (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28880;21101124745;"Humanidades";journal;"15105024, 23011629";"Universidad de Montevideo";Yes;Yes;0,114;Q3;3;21;56;758;7;46;0,08;36,10;29,63;0;Uruguay;Latin America;"Universidad de Montevideo";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Literature and Literary Theory (Q3); Philosophy (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities" +28881;19900191832;"Ideas y Valores";journal;"01200062, 20113668";"Universidad Nacional de Colombia";Yes;Yes;0,114;Q3;8;31;181;1060;18;176;0,08;34,19;14,71;0;Colombia;Latin America;"Universidad Nacional de Colombia";"2010-2025";"Philosophy (Q3)";"Arts and Humanities" +28882;5600153196;"Implicit Religion";journal;"17431697, 14639955";"Equinox Publishing Ltd";No;No;0,114;Q3;13;6;42;226;20;41;0,50;37,67;85,71;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2011-2023, 2025-2026";"Religious Studies (Q3)";"Arts and Humanities" +28883;21101378440;"International Journal of History Education and Culture. Yearbook of the International Society for History Didactics";journal;"29438179, 29438195";"Wochenschau Verland";No;No;0,114;Q3;5;0;37;0;4;30;0,04;0,00;0,00;0;Germany;Western Europe;"Wochenschau Verland";"2023-2024";"History (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +28884;21100241607;"Islamic Quarterly";journal;"00211842";"Islamic Cultural Centre";No;No;0,114;Q3;6;9;53;357;10;53;0,13;39,67;36,36;0;United Kingdom;Western Europe;"Islamic Cultural Centre";"1983, 1985, 2011-2025";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3)";"Arts and Humanities; Social Sciences" +28885;17300154835;"Journal of Egyptian History";journal;"18741657, 18741665";"Brill Academic Publishers";No;No;0,114;Q3;14;9;23;659;6;23;0,06;73,22;55,56;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008, 2010-2019, 2021-2025";"History (Q3)";"Arts and Humanities" +28886;21101133340;"Journal of Global Postcolonial Studies";journal;"26438380, 26438399";"University of Florida Press";No;No;0,114;Q3;6;19;35;569;3;32;0,09;29,95;52,94;0;United States;Northern America;"University of Florida Press";"2020-2025";"History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28887;14000155246;"Journal of Modern Craft";journal;"17496780, 17496772";"Taylor and Francis Ltd.";No;No;0,114;Q3;10;8;76;299;13;57;0,15;37,38;100,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2011-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28888;21101294615;"Journal of the Society for Asian Humanities";journal;"26530856";"Australian Society for Asian Humanities";No;No;0,114;Q3;3;0;33;0;6;30;0,10;0,00;0,00;0;Australia;Pacific Region;"Australian Society for Asian Humanities";"2021-2024";"History (Q3); Literature and Literary Theory (Q3); Philosophy (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28889;17700154909;"Kritika Kultura";journal;"1656152X, 20946937";"Ateneo de Manila University";Yes;No;0,114;Q3;10;76;143;2212;19;127;0,15;29,11;53,13;0;Philippines;Asiatic Region;"Ateneo de Manila University";"2009-2025";"Cultural Studies (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28890;54623;"Llull";journal;"02108615";"Sociedad Espanola de Historia de las Ciencias y de las Tecnicas";No;No;0,114;Q3;4;0;43;0;8;43;0,08;0,00;0,00;0;Spain;Western Europe;"Sociedad Espanola de Historia de las Ciencias y de las Tecnicas";"1978, 1986, 1999-2002, 2017-2024";"History (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities" +28891;27223;"Luso-Brazilian Review";journal;"15489957, 00247413";"University of Wisconsin Press";No;No;0,114;Q3;8;18;46;809;7;39;0,13;44,94;33,33;0;United States;Northern America;"University of Wisconsin Press";"1978, 1980-1981, 1999, 2001, 2009-2025";"Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28892;5700172274;"Meanjin";journal;"14488094, 00256293";"Meanjin Company Ltd.";No;No;0,114;Q3;11;48;343;248;21;322;0,04;5,17;53,85;0;Australia;Pacific Region;"Meanjin Company Ltd.";"2002-2003, 2005-2025";"Cultural Studies (Q3); Literature and Literary Theory (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28893;21100845232;"Memoria e Ricerca";journal;"11270195, 1972523X";"Societa Editrice Il Mulino";No;No;0,114;Q3;5;25;80;1895;10;78;0,18;75,80;41,38;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2015-2025";"History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28894;21100281309;"Nineteenth-Century Music Review";journal;"14794098, 20448414";"Cambridge University Press";No;No;0,114;Q3;9;29;81;2503;14;74;0,19;86,31;38,46;0;United Kingdom;Western Europe;"Cambridge University Press";"1978, 2004-2026";"Music (Q3)";"Arts and Humanities" +28895;21100899925;"Nomadas";journal;"25394762, 01217550";"Universidad Central";Yes;Yes;0,114;Q3;8;0;49;0;8;46;0,06;0,00;0,00;0;Colombia;Latin America;"Universidad Central";"2018-2024";"Cultural Studies (Q3); Philosophy (Q3); Anthropology (Q4); Education (Q4); Psychology (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Psychology; Social Sciences" +28896;21101054425;"Orbis Idearum";journal;"23533900";"History of Ideas Research Centre, Jagiellonian University Krakow";Yes;Yes;0,114;Q3;4;4;34;118;4;33;0,13;29,50;50,00;0;Poland;Eastern Europe;"History of Ideas Research Centre, Jagiellonian University Krakow";"2013-2025";"Arts and Humanities (miscellaneous) (Q3); Philosophy (Q3); Religious Studies (Q3); History and Philosophy of Science (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28897;21101097344;"Performance Philosophy";journal;"20577176";"";Yes;Yes;0,114;Q3;4;8;83;317;12;72;0,16;39,63;62,50;0;United Kingdom;Western Europe;"";"2019-2025";"Philosophy (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28898;21101197373;"Process Studies";journal;"03606503, 21543682";"University of Illinois Press";No;No;0,114;Q3;4;12;41;382;16;36;0,54;31,83;0,00;0;United States;Northern America;"University of Illinois Press";"1971, 2019-2025";"Religious Studies (Q3); Developmental and Educational Psychology (Q4); Social Psychology (Q4)";"Arts and Humanities; Psychology" +28899;21101152544;"Qui Parle: Critical Humanities and Social Sciences";journal;"19388020, 10418385";"Duke University Press";No;No;0,114;Q3;6;11;47;380;13;37;0,34;34,55;66,67;0;United States;Northern America;"Duke University Press";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28900;21100274869;"Religiski-Filozofiski Raksti";journal;"14071908";"Institute of Philosophy and Sociology, University of Latvia";No;No;0,114;Q3;4;21;61;555;5;57;0,00;26,43;50,00;0;Latvia;Eastern Europe;"Institute of Philosophy and Sociology, University of Latvia";"2013-2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28901;21100211360;"Svensk Teologisk Kvartalskrift";journal;"00396761";"Svensk teologisk kvartalsskrift";Yes;Yes;0,114;Q3;6;19;117;446;8;108;0,10;23,47;35,71;0;Sweden;Western Europe;"Svensk teologisk kvartalsskrift";"2011-2017, 2019-2025";"Religious Studies (Q3)";"Arts and Humanities" +28902;14403;"Victorian Studies";journal;"15272052, 00425222";"Indiana University Press";No;No;0,114;Q3;32;15;101;513;20;86;0,13;34,20;42,86;0;United States;Northern America;"Indiana University Press";"1969-1972, 1976-1978, 1980-1982, 1984-1986, 1988, 1990-1992, 1995, 1999, 2001-2025";"Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Philosophy (Q3); Visual Arts and Performing Arts (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +28903;16000154704;"Wordsworth Circle";journal;"26407310, 00438006";"University of Chicago Press";No;No;0,114;Q3;11;9;85;188;2;67;0,02;20,89;60,00;0;United States;Northern America;"University of Chicago Press";"2002-2025";"Cultural Studies (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities; Social Sciences" +28904;21101068961;"Written Monuments of the Orient";journal;"24100145";"Institute of Oriental Manuscripts of the Russian Academy of Sciences";No;No;0,114;Q3;3;15;58;264;4;58;0,04;17,60;40,00;0;Russian Federation;Eastern Europe;"Institute of Oriental Manuscripts of the Russian Academy of Sciences";"2019-2025";"Conservation (Q3); History (Q3); Literature and Literary Theory (Q3); Religious Studies (Q3)";"Arts and Humanities" +28905;19338;"Acta Urologica Japonica";journal;"00181994";"";No;No;0,114;Q4;17;57;162;642;21;162;0,09;11,26;12,69;0;Japan;Asiatic Region;"";"1962-2025";"Medicine (miscellaneous) (Q4); Urology (Q4)";"Medicine" +28906;21101254819;"Althea Medical Journal";journal;"23374330";"";Yes;Yes;0,114;Q4;4;40;119;1062;21;119;0,16;26,55;66,00;0;Indonesia;Asiatic Region;"";"2020-2025";"Aging (Q4); Cardiology and Cardiovascular Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +28907;21100455681;"Analele Universitatii din Bucuresti, Seria Stiinte Politice";journal;"15822486, 28218078";"Bucharest University Press";Yes;Yes;0,114;Q4;3;0;9;0;6;9;0,00;0,00;0,00;0;Romania;Eastern Europe;"Bucharest University Press";"2015-2022";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28908;21101045756;"Archeologia dell'Architettura";journal;"11266236, 20386567";"All'Insegna del Giglio s.a.s.";No;No;0,114;Q4;3;0;64;0;3;58;0,10;0,00;0,00;0;Italy;Western Europe;"All'Insegna del Giglio s.a.s.";"2018-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +28909;21100243803;"Asian Journal of Gerontology and Geriatrics";journal;"18191576";"Hong Kong Academy of Medicine Press";No;No;0,114;Q4;11;15;42;277;7;32;0,08;18,47;51,72;0;Hong Kong;Asiatic Region;"Hong Kong Academy of Medicine Press";"2012-2025";"Geriatrics and Gerontology (Q4)";"Medicine" +28910;21101119728;"Asian Journal of Human Services";journal;"2188059X";"Asian Society of Human Services";No;No;0,114;Q4;4;61;67;2566;13;67;0,22;42,07;44,72;0;Japan;Asiatic Region;"Asian Society of Human Services";"2019-2025";"Health (social science) (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +28911;21101169015;"Avicenna Bulletin";journal;"29596327, 20740581";"Avicenna Tajik State Medical University";Yes;Yes;0,114;Q4;2;93;108;2612;20;108;0,19;28,09;44,51;0;Tajikistan;Asiatic Region;"Avicenna Tajik State Medical University";"2023-2025";"Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +28912;21101344620;"Berlin Journal of Critical Theory";journal;"25674056";"xenomoi Verlag";No;No;0,114;Q4;2;14;32;465;8;27;0,26;33,21;27,27;0;Germany;Western Europe;"xenomoi Verlag";"2021-2026";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +28913;21101114181;"Bulletin de la Dialyse a Domicile";journal;"26079917";"Registre de Dialyse Peritoneale de Langue Francaise";Yes;Yes;0,114;Q4;5;12;58;865;6;57;0,14;72,08;63,16;0;France;Western Europe;"Registre de Dialyse Peritoneale de Langue Francaise";"2019-2025";"Medical Assisting and Transcription; Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Nephrology (Q4)";"Health Professions; Medicine" +28914;21100837464;"Central European Journal of Economic Modelling and Econometrics";journal;"2080119X, 20800886";"Polish Academy of Sciencies-Lodz Branch";Yes;Yes;0,114;Q4;8;5;42;209;15;42;0,26;41,80;45,45;0;Poland;Eastern Europe;"Polish Academy of Sciencies-Lodz Branch";"2017-2025";"Applied Mathematics (Q4); Economics and Econometrics (Q4); Statistics and Probability (Q4)";"Economics, Econometrics and Finance; Mathematics" +28915;21048;"CFI, Ceramic Forum International/Berichte der DKG (Deutsche Keramische Gesellschaft)";trade journal;"01739913";"Goeller Verlag GmbH";No;No;0,114;Q4;18;22;136;238;8;105;0,06;10,82;9,80;0;Germany;Western Europe;"Goeller Verlag GmbH";"1981-1993, 1996-2026";"Ceramics and Composites (Q4); Materials Chemistry (Q4)";"Materials Science" +28916;21101167900;"Chinese Journal of Clinical Research";journal;"16748182";"";Yes;No;0,114;Q4;4;229;1114;5819;142;1114;0,15;25,41;46,75;0;China;Asiatic Region;"";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28917;21101301947;"Chinese Journal of Veterinary Science";journal;"10054545";"Editorial Board on Chinese Journal of Veterinary Science";No;No;0,114;Q4;5;338;1092;8820;172;1092;0,16;26,09;46,10;0;China;Asiatic Region;"Editorial Board on Chinese Journal of Veterinary Science";"2021-2026";"Animal Science and Zoology (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +28918;21100904316;"Current Topics in Electrochemistry";journal;"09724443";"Research Trends";No;No;0,114;Q4;5;0;25;0;7;25;0,00;0,00;0,00;0;India;Asiatic Region;"Research Trends";"2017-2023";"Catalysis (Q4); Electrochemistry (Q4); Energy (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Energy" +28919;19700182026;"Dams and Reservoirs";journal;"17568404, 13681494";"ICE Publishing";No;No;0,114;Q4;7;12;81;209;12;67;0,24;17,42;16,67;0;United Kingdom;Western Europe;"ICE Publishing";"2010-2025";"Civil and Structural Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering" +28920;21101048987;"Earozoru Kenkyu";journal;"1881543X, 09122834";"Japan Association of Aerosol Science and Technology";No;No;0,114;Q4;3;29;90;521;7;76;0,05;17,97;9,09;0;Japan;Asiatic Region;"Japan Association of Aerosol Science and Technology";"2019-2025";"Environmental Chemistry (Q4); Environmental Science (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Pollution (Q4)";"Environmental Science; Materials Science" +28921;21100896480;"Education et Didactique";journal;"21114838, 19563485";"Presses Universitaires de Rennes";No;No;0,114;Q4;5;0;77;0;7;65;0,11;0,00;0,00;0;France;Western Europe;"Presses Universitaires de Rennes";"2018-2024";"Developmental and Educational Psychology (Q4); Education (Q4); Social Sciences (miscellaneous) (Q4)";"Psychology; Social Sciences" +28922;26804;"Espace-Populations-Societes";journal;"07557809";"Universite des Sciences et Technologiques de Lille";Yes;Yes;0,114;Q4;17;0;76;0;14;75;0,08;0,00;0,00;0;France;Western Europe;"Universite des Sciences et Technologiques de Lille";"1983-2024, 2026";"Demography (Q4); Geography, Planning and Development (Q4)";"Social Sciences" +28923;21100218071;"Ethnographia";journal;"00141798";"Magyar Neprajzi Tarsasag";No;No;0,114;Q4;3;17;121;635;4;117;0,03;37,35;41,67;0;Hungary;Eastern Europe;"Magyar Neprajzi Tarsasag";"2011-2014, 2016-2025";"Anthropology (Q4)";"Social Sciences" +28924;21101168866;"European Journal of Rhinology and Allergy";journal;"26368072";"AVES";Yes;Yes;0,114;Q4;3;28;67;592;9;65;0,09;21,14;36,63;0;Turkey;Middle East;"AVES";"2019-2025";"Otorhinolaryngology (Q4)";"Medicine" +28925;21101144402;"Geotecnia";journal;"21848394, 03799522";"Imprensa da Universidade de Coimbra";Yes;Yes;0,114;Q4;4;23;43;812;5;40;0,07;35,30;31,25;0;Portugal;Western Europe;"Imprensa da Universidade de Coimbra";"2019-2025";"Civil and Structural Engineering (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Engineering" +28926;21101129621;"Heart India";journal;"23216638, 2321449X";"Wolters Kluwer Medknow Publications";Yes;No;0,114;Q4;4;45;103;891;8;93;0,08;19,80;19,01;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28927;37431;"Hiroshima Journal of Medical Sciences";journal;"00182052, 24337668";"Hiroshima University Medical Press";Yes;No;0,114;Q4;19;3;22;68;4;22;0,07;22,67;25,00;0;Japan;Asiatic Region;"Hiroshima University Medical Press";"1964-2018, 2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28928;21101247339;"IAHR International Symposium on Ice";book series;"24146331";"International Association for Hydro-Environment Engineering and Research";No;No;0,114;Q4;5;0;169;0;28;167;0,16;0,00;0,00;0;Spain;Western Europe;"International Association for Hydro-Environment Engineering and Research";"2020, 2022, 2024";"Engineering (miscellaneous) (Q4); Water Science and Technology (Q4)";"Engineering; Environmental Science" +28929;21100934785;"International and Comparative Law Review";journal;"12138770, 24646601";"Palacky University Olomouc";No;No;0,114;Q4;7;0;75;0;31;75;0,56;0,00;0,00;0;Czech Republic;Eastern Europe;"Palacky University Olomouc";"2019-2024";"Law (Q4)";"Social Sciences" +28930;21101300986;"International Conference on Information and Communications Technology, ICOIACT";journal;"27704661, 2770467X";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,114;Q4;2;0;56;0;25;53;0,45;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Information Systems (Q4); Media Technology (Q4); Modeling and Simulation (Q4)";"Computer Science; Engineering; Mathematics" +28931;21100218039;"Iranian Heart Journal";journal;"17357306";"Iranian Heart Association";No;No;0,114;Q4;8;41;186;914;21;186;0,13;22,29;37,28;0;Iran;Middle East;"Iranian Heart Association";"2011-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +28932;21100217007;"Iranian Journal of Information Processing and Management";journal;"22518231, 22518223";"Iranian Research Institute for Scientific Information and Documentation";Yes;Yes;0,114;Q4;9;105;151;3664;27;149;0,16;34,90;39,35;0;Iran;Middle East;"Iranian Research Institute for Scientific Information and Documentation";"2012-2026";"Computer Science (miscellaneous) (Q4)";"Computer Science" +28933;21101072123;"Italian Review of Legal History";journal;"24648914";"Universita degli Studi di Milano";Yes;Yes;0,114;Q4;3;14;77;616;6;76;0,09;44,00;31,25;0;Italy;Western Europe;"Universita degli Studi di Milano";"2019, 2021-2025";"Law (Q4)";"Social Sciences" +28934;21101292648;"Journal fur Endokrinologie, Diabetologie und Stoffwechsel";journal;"30048915, 30048923";"Springer";No;No;0,114;Q4;5;24;56;650;13;33;0,16;27,08;37,50;0;Austria;Western Europe;"Springer";"2025-2026";"Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +28935;16666;"Journal of Brain Science";journal;"13415301";"Japan Brain Science Society";Yes;No;0,114;Q4;5;0;5;0;2;5;0,00;0,00;0,00;0;Japan;Asiatic Region;"Japan Brain Science Society";"1997-1999, 2006-2009, 2011-2014, 2016-2018, 2020-2022, 2024";"Neuroscience (miscellaneous) (Q4)";"Neuroscience" +28936;9500154121;"Journal of Diabetes Nursing";journal;"13681109";"OmniaMed Communications Ltd";Yes;No;0,114;Q4;11;26;120;267;14;64;0,14;10,27;54,05;0;United Kingdom;Western Europe;"OmniaMed Communications Ltd";"2006-2025";"Advanced and Specialized Nursing (Q4); Endocrinology, Diabetes and Metabolism (Q4)";"Medicine; Nursing" +28937;21101085239;"Journal of Management and Business Research";journal;"25214306";"Chinese Management Association";No;No;0,114;Q4;3;6;62;544;9;59;0,08;90,67;60,00;0;Taiwan;Asiatic Region;"Chinese Management Association";"2019-2025";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Finance (Q4); Marketing (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +28938;21101358085;"Karazin Journal of Immunology";journal;"30835615";"V N Karazin Kharkiv National University";Yes;No;0,114;Q4;1;11;20;461;7;20;0,35;41,91;71,43;0;Ukraine;Eastern Europe;"V N Karazin Kharkiv National University";"2024-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28939;21100906489;"Klinicheskaya Onkogematologiya/Clinical Oncohematology";journal;"19976933, 25002139";"Practical Medicine Publishing House LLC";Yes;Yes;0,114;Q4;7;42;111;1435;26;110;0,25;34,17;71,73;0;Russian Federation;Eastern Europe;"Practical Medicine Publishing House LLC";"2018-2026";"Hematology (Q4); Oncology (Q4)";"Medicine" +28940;24755;"Lizi Jiaohuan Yu Xifu/Ion Exchange and Adsorption";journal;"10015493";"Tianjin Nankai Daxue";No;No;0,114;Q4;9;44;139;1802;27;139;0,22;40,95;34,74;0;China;Asiatic Region;"Tianjin Nankai Daxue";"1987-1995, 1998, 2001-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Materials Science" +28941;21101230598;"Management and Prospective";journal;"22653937, 29838304";"Recherches et Publications en Management A.S.B.L";No;No;0,114;Q4;4;0;93;0;21;91;0,11;0,00;0,00;0;Belgium;Western Europe;"Recherches et Publications en Management A.S.B.L";"2023-2024";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +28942;15600154706;"Netherlands Journal of Critical Care";journal;"15693511";"Netherlands Society of Intensive Care";No;No;0,114;Q4;11;0;42;0;4;28;0,00;0,00;0,00;0;Netherlands;Western Europe;"Netherlands Society of Intensive Care";"2008-2023";"Critical Care and Intensive Care Medicine (Q4)";"Medicine" +28943;21101272557;"New Perspectives in Science Education - International Conference";book series;"24209732";"Pixel Associazione";No;No;0,114;Q4;2;76;185;1307;9;126;0,06;17,20;52,46;0;Italy;Western Europe;"Pixel Associazione";"2020-2026";"Education (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science; Social Sciences" +28944;21101230596;"Nivar";journal;"26453347, 17350565";"Islamic Republic of Iran Meteorological Organisation";Yes;Yes;0,114;Q4;4;13;73;318;15;73;0,22;24,46;22,73;0;Iran;Middle East;"Islamic Republic of Iran Meteorological Organisation";"2019-2025";"Atmospheric Science (Q4); Modeling and Simulation (Q4)";"Earth and Planetary Sciences; Mathematics" +28945;16386;"Online Journal of Health and Allied Sciences";journal;"09725997";"Online Journal of Health and Allied Sciences";Yes;Yes;0,114;Q4;18;28;128;587;22;127;0,05;20,96;56,82;0;India;Asiatic Region;"Online Journal of Health and Allied Sciences";"2002-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +28946;21101039618;"P.A. Persona e Amministrazione";journal;"26109050";"University of Urbino";No;No;0,114;Q4;3;36;178;808;13;175;0,07;22,44;34,21;0;Italy;Western Europe;"University of Urbino";"2017-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4); Public Administration (Q4)";"Economics, Econometrics and Finance; Social Sciences" +28947;17046;"Petroleum Refinery Engineering";journal;"1002106X";"";No;No;0,114;Q4;11;101;506;227;71;506;0,13;2,25;25,66;0;China;Asiatic Region;"";"1994-2008, 2012-2025";"Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering; Energy" +28948;21101285713;"Proceedings of the IEEE Conference on Systems, Process and Control, ICSPC";journal;"27698378, 27697916";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,114;Q4;3;0;74;0;30;73;0,41;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Science Applications (Q4); Control and Optimization (Q4); Education (Q4); Information Systems (Q4); Information Systems and Management (Q4); Modeling and Simulation (Q4); Safety, Risk, Reliability and Quality (Q4)";"Computer Science; Decision Sciences; Engineering; Mathematics; Social Sciences" +28949;21101285754;"Proceedings of the IEEE International Conference on High Performance Computing, Data, and Analytics Workshops, HiPCW";journal;"27700135, 27700151";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,114;Q4;2;0;81;0;23;79;0,28;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Computer Science Applications (Q4); Information Systems (Q4); Information Systems and Management (Q4); Software (Q4)";"Computer Science; Decision Sciences" +28950;19700200805;"Psychological Perspectives";journal;"00332925, 15563030";"Taylor and Francis Ltd.";No;No;0,114;Q4;8;51;189;534;13;114;0,08;10,47;46,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1970-2025";"Psychology (miscellaneous) (Q4)";"Psychology" +28951;21100228533;"Regional Science Inquiry";journal;"17917735, 17915961";"Hellenic Association of Regional Scientists";No;No;0,114;Q4;13;0;37;0;6;34;0,12;0,00;0,00;0;Greece;Western Europe;"Hellenic Association of Regional Scientists";"2012-2024";"Development (Q4); Economics and Econometrics (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +28952;21100202508;"Revista Brasileira de Orientacao Profissional";journal;"16793390, 19847270";"Associacao Brasileira de Orientadores Profissionais";Yes;Yes;0,114;Q4;13;0;59;0;12;55;0,09;0,00;0,00;0;Brazil;Latin America;"Associacao Brasileira de Orientadores Profissionais";"2011-2024";"Applied Psychology (Q4); Education (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Psychology; Social Sciences" +28953;21101068581;"Revista de Contabilidade e Organizacoes";journal;"19826486";"Universidade De Sao Paulo";Yes;Yes;0,114;Q4;5;11;59;410;13;51;0,23;37,27;36,00;0;Brazil;Latin America;"Universidade De Sao Paulo";"2019-2025";"Accounting (Q4); Education (Q4); Management of Technology and Innovation (Q4); Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting; Social Sciences" +28954;16400154783;"Revue de Chirurgie Orthopedique et Traumatologique";journal;"18770517";"Elsevier Masson s.r.l.";No;No;0,114;Q4;50;129;701;4096;41;654;0,06;31,75;20,00;0;France;Western Europe;"Elsevier Masson s.r.l.";"2009-2026";"Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +28955;21100244215;"Revue d'Economie Industrielle";journal;"01543229, 17730198";"Editions Techniques et Economiques";No;No;0,114;Q4;18;0;26;0;5;26;0,19;0,00;0,00;0;France;Western Europe;"Editions Techniques et Economiques";"2008-2024";"Economics and Econometrics (Q4); Industrial Relations (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +28956;5700162050;"Revue Francaise d'Administration Publique";journal;"01527401";"Ecole Nationale d'Administration";No;No;0,114;Q4;19;0;62;0;6;58;0,00;0,00;0,00;0;France;Western Europe;"Ecole Nationale d'Administration";"2002-2022";"Public Administration (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28957;21101296126;"Science Essence Journal";journal;"29850290";"Srinakharinwirot University Faculty of Science";No;No;0,114;Q4;3;16;47;555;5;47;0,13;34,69;62,16;0;Thailand;Asiatic Region;"Srinakharinwirot University Faculty of Science";"2021-2025";"Biomaterials (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +28958;21100244402;"Studies in Classification, Data Analysis, and Knowledge Organization";book series;"21983321, 14318814";"Springer Science and Business Media Deutschland GmbH";No;No;0,114;Q4;27;76;136;1290;23;126;0,13;16,97;41,24;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1997, 2005, 2007-2008, 2010-2025";"Analysis (Q4); Computer Science Applications (Q4); Information Systems (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences; Mathematics" +28959;21100201531;"Taiwan Water Conservancy";journal;"04921550";"Taiwan Joint Irrigation Associations";No;No;0,114;Q4;11;19;67;664;6;67;0,10;34,95;35,38;0;Taiwan;Asiatic Region;"Taiwan Joint Irrigation Associations";"2011-2025";"Environmental Engineering (Q4); Water Science and Technology (Q4)";"Environmental Science" +28960;21100903456;"Theoria et Historia Scientiarum";journal;"08674159, 23921196";"";Yes;No;0,114;Q4;3;2;30;50;6;29;0,17;25,00;50,00;0;Poland;Eastern Europe;"";"2018-2025";"Cognitive Neuroscience (Q4); Communication (Q4); Linguistics and Language (Q4)";"Neuroscience; Social Sciences" +28961;21101195782;"Ukrainian Journal of Cardiology";journal;"1608635X, 26644479";"National Scientific Center Academician M D Strazhesko Institute of Cardiology of the National Academy of Medical Sciences of Ukraine";No;No;0,114;Q4;4;39;83;1044;22;83;0,33;26,77;57,61;0;Ukraine;Eastern Europe;"National Scientific Center Academician M D Strazhesko Institute of Cardiology of the National Academy of Medical Sciences of Ukraine";"2019-2025";"Cardiology and Cardiovascular Medicine (Q4); Education (Q4); Emergency Medical Services (Q4); Internal Medicine (Q4)";"Health Professions; Medicine; Social Sciences" +28962;24302;"Unasylva";journal;"00416436";"Food and Agriculture Organization of the United Nations";Yes;No;0,114;Q4;38;0;66;0;3;53;0,08;0,00;0,00;0;Italy;Western Europe;"Food and Agriculture Organization of the United Nations";"1977-1988, 1990, 1995-2020, 2022-2024";"Ecology (Q4); Forestry (Q4); Geography, Planning and Development (Q4)";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +28963;21101289966;"Van Medical Journal";journal;"13002694, 25870351";"Yuzuncu Yil Universitesi Tip Fakultesi";Yes;No;0,114;Q4;2;52;113;1121;20;108;0,18;21,56;29,19;0;Turkey;Middle East;"Yuzuncu Yil Universitesi Tip Fakultesi";"2023-2026";"Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine" +28964;21100854422;"Atas da Conferencia da Associacao Portuguesa de Sistemas de Informacao";conference and proceedings;"2183489X";"Associacao Portuguesa de Sistemas de Informacao";No;No;0,114;-;7;0;65;0;17;62;0,30;0,00;0,00;0;Portugal;Western Europe;"Associacao Portuguesa de Sistemas de Informacao";"2014-2024";"Computer Science Applications; Information Systems; Information Systems and Management; Management Information Systems; Management of Technology and Innovation";"Business, Management and Accounting; Computer Science; Decision Sciences" +28965;21100814500;"European Biomass Conference and Exhibition Proceedings";conference and proceedings;"22825819";"ETA-Florence Renewable Energies";No;No;0,114;-;14;234;615;4081;66;612;0,12;17,44;37,36;0;Italy;Western Europe;"ETA-Florence Renewable Energies";"2016-2025";"Agronomy and Crop Science; Computer Networks and Communications; Computer Science Applications; Engineering (miscellaneous); Forestry; Renewable Energy, Sustainability and the Environment; Waste Management and Disposal";"Agricultural and Biological Sciences; Computer Science; Energy; Engineering; Environmental Science" +28966;21100862224;"ICAMS Proceedings of the International Conference on Advanced Materials and Systems";conference and proceedings;"20680783";"Institute National Cercetare-Dezvoltare Textiles Pielarie";No;No;0,114;-;6;0;130;0;25;128;0,05;0,00;0,00;0;Romania;Eastern Europe;"Institute National Cercetare-Dezvoltare Textiles Pielarie";"2016, 2018, 2020, 2022, 2024";"Biomaterials; Control and Systems Engineering; Mechanics of Materials";"Engineering; Materials Science" +28967;21100932652;"Proceedings of the International Symposium on Turbulence, Heat and Mass Transfer";conference and proceedings;"23772816";"Begell House Inc.";No;No;0,114;-;10;138;172;1549;13;171;0,08;11,22;19,02;0;United States;Northern America;"Begell House Inc.";"2006, 2009, 2012, 2015, 2018, 2023, 2025";"Fluid Flow and Transfer Processes";"Chemical Engineering" +28968;21101155946;"Acta Universitatis Lodziensis. Folia Historica";journal;"24506990, 02086050";"Lodz University Press";Yes;Yes;0,113;Q3;1;12;110;407;4;103;0,04;33,92;58,33;0;Poland;Eastern Europe;"Lodz University Press";"2020-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +28969;16200154700;"Anales de la Literatura Espanola Contemporanea";journal;"02721635";"Society of Spanish and Spanish-American Studies";No;No;0,113;Q3;7;41;75;2116;6;75;0,05;51,61;35,71;0;United States;Northern America;"Society of Spanish and Spanish-American Studies";"2002-2012, 2017-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +28970;60672;"Arab Studies Quarterly";journal;"02713519, 20436920";"Pluto Journals";Yes;Yes;0,113;Q3;8;11;48;380;13;36;0,32;34,55;38,46;0;United Kingdom;Western Europe;"Pluto Journals";"1979, 1981, 2001, 2018-2026";"Cultural Studies (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +28971;21101377431;"Arboles y Rizomas";journal;"07199805";"Universidad de Santiago de Chile";Yes;No;0,113;Q3;2;35;54;1100;7;47;0,19;31,43;63,16;0;Chile;Latin America;"Universidad de Santiago de Chile";"2022-2025";"Literature and Literary Theory (Q3); Education (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28972;5800173395;"ARQ";journal;"07160852, 07176996";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,113;Q3;8;13;132;109;14;122;0,07;8,38;25,00;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2007-2025";"Conservation (Q3); Visual Arts and Performing Arts (Q3); Architecture (Q4)";"Arts and Humanities; Engineering" +28973;21101230388;"Art and Interpretation";journal;"28222865";"Ataturk Universitesi";Yes;Yes;0,113;Q3;1;36;60;1130;5;60;0,10;31,39;53,06;0;Turkey;Middle East;"Ataturk Universitesi";"2022-2025";"Arts and Humanities (miscellaneous) (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28974;29167;"Australian Journal of French Studies";journal;"00049468, 20462913";"Liverpool University Press";No;No;0,113;Q3;9;28;101;1110;10;93;0,06;39,64;40,74;0;Australia;Pacific Region;"Liverpool University Press";"1975, 1980, 1999, 2001-2025";"Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28975;16400154726;"Biblica";journal;"23852062, 00060887";"Peeters Publishers";Yes;No;0,113;Q3;17;11;89;947;12;88;0,15;86,09;20,00;0;Italy;Western Europe;"Peeters Publishers";"2002-2025";"Religious Studies (Q3)";"Arts and Humanities" +28976;21100205749;"Canadian Journal of Film Studies";journal;"08475911";"University of Toronto";No;No;0,113;Q3;12;6;37;442;6;35;0,13;73,67;60,00;0;Canada;Northern America;"University of Toronto";"1998-2001, 2004-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +28977;5800154329;"Contrastes";journal;"11364076";"Universidad de Malaga";Yes;No;0,113;Q3;4;24;94;681;10;93;0,11;28,38;52,38;0;Spain;Western Europe;"Universidad de Malaga";"2012-2025";"Philosophy (Q3)";"Arts and Humanities" +28978;21101341416;"Crossroads: Interdisciplinary Journal of Asian Interaction";journal;"21908796, 26662523";"Brill Academic Publishers";No;No;0,113;Q3;2;0;25;0;4;22;0,25;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2024, 2026";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities" +28979;21100203943;"Cuadernos de Musica, Artes Visuales y Artes Escenicas";journal;"17946670, 22159959";"Pontificia Universidad Javeriana";No;No;0,113;Q3;7;29;77;847;17;62;0,13;29,21;56,52;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2012-2026";"Music (Q3); Visual Arts and Performing Arts (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +28980;6000170071;"Eidos";journal;"16928857, 20117477";"Universidad del Norte";Yes;Yes;0,113;Q3;5;43;41;1223;4;36;0,10;28,44;32,43;0;Colombia;Latin America;"Universidad del Norte";"2012-2025";"Philosophy (Q3)";"Arts and Humanities" +28981;21100877321;"Enthymema";journal;"20372426";"University of Milan";Yes;Yes;0,113;Q3;4;24;101;1052;7;100;0,04;43,83;40,91;0;Italy;Western Europe;"University of Milan";"2018-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +28982;21100398914;"Espiritu";journal;"00140716";"Editorial Balmes";No;No;0,113;Q3;6;6;53;134;5;48;0,03;22,33;0,00;0;Spain;Western Europe;"Editorial Balmes";"2015-2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28983;5700168416;"Ilu";journal;"19883269, 11354712";"Universidad Complutense Madrid";Yes;No;0,113;Q3;9;4;68;10;16;68;0,25;2,50;0,00;0;Spain;Western Europe;"Universidad Complutense Madrid";"2011-2019, 2022-2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28984;24727;"International Journal of Applied Philosophy";journal;"0739098X, 21536910";"Philosophy Documentation Center";No;No;0,113;Q3;6;0;62;0;17;62;0,31;0,00;0,00;0;United States;Northern America;"Philosophy Documentation Center";"1984-1985, 1987-1992, 1994-1995, 1998-2000, 2003-2005, 2018-2024";"Philosophy (Q3)";"Arts and Humanities" +28985;21100914767;"International Journal of Military History and Historiography";journal;"24683299, 24683302";"Brill Academic Publishers";No;No;0,113;Q3;5;31;47;1417;8;47;0,04;45,71;25,81;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2026";"History (Q3)";"Arts and Humanities" +28986;26270;"Journal of American Studies";journal;"14695154, 00218758";"Cambridge University Press";No;No;0,113;Q3;23;16;90;1263;24;87;0,14;78,94;36,84;0;United Kingdom;Western Europe;"Cambridge University Press";"1967-2026";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +28987;16300154702;"Journal of Band Research";journal;"00219207";"Troy State University Press";No;No;0,113;Q3;9;3;9;139;1;9;0,00;46,33;0,00;0;United States;Northern America;"Troy State University Press";"2002-2014, 2017-2022, 2024-2025";"Music (Q3)";"Arts and Humanities" +28988;21101105302;"Journal of Philosophical Theological Research";journal;"17359791, 25382500";"University of Qom";Yes;No;0,113;Q3;3;9;89;254;7;89;0,11;28,22;7,14;0;Iran;Middle East;"University of Qom";"2019-2025";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +28989;17300154965;"Leo Baeck Institute Yearbook";book series;"00758744, 1758437X";"Oxford University Press";No;No;0,113;Q3;11;2;35;175;5;29;0,16;87,50;50,00;0;United Kingdom;Western Europe;"Oxford University Press";"1996, 1999, 2001, 2005-2012, 2014-2025";"Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +28990;19700181409;"LIT Literature Interpretation Theory";journal;"10436928, 15455866";"Routledge";No;No;0,113;Q3;16;22;54;804;9;50;0,11;36,55;64,71;0;United Kingdom;Western Europe;"Routledge";"1989-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +28991;19700173004;"Mediterranea: Ricerche Storiche";journal;"1828230X, 18243010";"Associazione no profit "Mediterranea"";Yes;Yes;0,113;Q3;8;18;103;1891;19;99;0,12;105,06;47,37;0;Italy;Western Europe;"Associazione no profit "Mediterranea"";"2009-2025";"History (Q3)";"Arts and Humanities" +28992;6000169336;"Nineteenth-Century French Studies";journal;"15360172, 01467891";"University of Nebraska Press";No;No;0,113;Q3;8;9;53;637;5;52;0,12;70,78;62,50;0;United States;Northern America;"University of Nebraska Press";"1999, 2001-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +28993;21100923614;"Nordisk Judaistik";journal;"23434929, 03481646";"Donner Institute for Research in Religious and Cultural History";Yes;Yes;0,113;Q3;6;10;38;343;5;30;0,18;34,30;37,50;0;Finland;Western Europe;"Donner Institute for Research in Religious and Cultural History";"2019-2025";"Cultural Studies (Q3); History (Q3); Religious Studies (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +28994;21100854615;"Orbit: A Journal of American Literature";journal;"23986786";"Open Library of Humanities";Yes;Yes;0,113;Q3;4;11;25;380;6;25;0,36;34,55;36,36;0;United Kingdom;Western Europe;"Open Library of Humanities";"2017-2023, 2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +28995;21100223777;"Osterreichische Zeitschrift fur Geschichtswissenschaften";journal;"1016765X";"StudienVerlag";Yes;Yes;0,113;Q3;7;20;99;1410;13;86;0,13;70,50;70,00;0;Austria;Western Europe;"StudienVerlag";"2001, 2011-2025";"History (Q3)";"Arts and Humanities" +28996;23676;"Pacific Historical Review";journal;"15338584, 00308684";"University of California Press";No;No;0,113;Q3;26;14;94;1849;19;92;0,20;132,07;45,45;0;United States;Northern America;"University of California Press";"1967, 1970-2025";"History (Q3)";"Arts and Humanities" +28997;21101201998;"Paradigmi";journal;"2035357X, 11203404";"Societa Editrice Il Mulino";No;No;0,113;Q3;2;27;107;1042;17;98;0,13;38,59;48,15;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2022-2025";"Philosophy (Q3)";"Arts and Humanities" +28998;20500195140;"Religionsvidenskabeligt Tidsskrift";journal;"01081993, 19048181";"Aarhus University Press";Yes;Yes;0,113;Q3;5;0;59;0;11;58;0,05;0,00;0,00;0;Denmark;Western Europe;"Aarhus University Press";"2011-2024";"Religious Studies (Q3)";"Arts and Humanities" +28999;21101152607;"Revista de Historia (Costa Rica)";journal;"22154744";"Universidad Nacional";Yes;Yes;0,113;Q3;3;23;45;1076;6;44;0,21;46,78;36,84;0;Costa Rica;Latin America;"Universidad Nacional";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +29000;21101365672;"Revista Latinoamericana de Filosofia Politica";journal;"22508619";"Center for Philosophical Research";Yes;No;0,113;Q3;2;17;30;254;1;30;0,03;14,94;33,33;0;Argentina;Latin America;"Center for Philosophical Research";"2021-2026";"Philosophy (Q3)";"Arts and Humanities" +29001;16300154718;"Revue Theologique de Louvain";journal;"17838401, 00802654";"Universite Catholique de Louvain";No;No;0,113;Q3;7;3;52;192;2;51;0,05;64,00;0,00;0;Belgium;Western Europe;"Universite Catholique de Louvain";"1996-2025";"Religious Studies (Q3)";"Arts and Humanities" +29002;21101034464;"Royal Studies Journal";journal;"20576730";"Winchester University Press";Yes;Yes;0,113;Q3;4;13;66;907;17;65;0,21;69,77;85,00;0;United Kingdom;Western Europe;"Winchester University Press";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29003;21100845638;"Steinbeck Review";journal;"1546007X, 17546087";"Penn State University Press";No;No;0,113;Q3;4;14;51;302;5;44;0,09;21,57;36,36;0;United States;Northern America;"Penn State University Press";"2017-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29004;18700156710;"Studia Theologica";journal;"12128570";"Palacky University Olomouc";Yes;Yes;0,113;Q3;5;9;115;886;9;115;0,09;98,44;12,50;0;Czech Republic;Eastern Europe;"Palacky University Olomouc";"2005-2025";"Religious Studies (Q3)";"Arts and Humanities" +29005;21100817622;"Studies in Spanish and Latin American Cinemas";journal;"20504845, 20504837";"Intellect Ltd.";No;No;0,113;Q3;8;0;52;0;3;51;0,09;0,00;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2013-2024";"Cultural Studies (Q3); Visual Arts and Performing Arts (Q3); Communication (Q4); Multidisciplinary (Q4)";"Arts and Humanities; Multidisciplinary; Social Sciences" +29006;16300154713;"Studies in the Novel";journal;"00393827";"University of North Texas, English Department";No;No;0,113;Q3;24;25;111;1000;22;109;0,18;40,00;62,50;0;United States;Northern America;"University of North Texas, English Department";"2003-2026";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29007;21100928944;"Svet Literatury";journal;"23366729, 08628440";"Charles University, Faculty of Arts";Yes;Yes;0,113;Q3;2;21;140;474;5;136;0,04;22,57;44,44;0;Czech Republic;Eastern Europe;"Charles University, Faculty of Arts";"2019-2025";"History (Q3); Literature and Literary Theory (Q3); Philosophy (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29008;5800161166;"Theology Today";journal;"20442556, 00405736";"SAGE Publications Inc.";No;No;0,113;Q3;12;37;101;469;16;89;0,16;12,68;15,15;0;United States;Northern America;"SAGE Publications Inc.";"1944-1953, 1955-1956, 1959-1961, 1963-1966, 1969-1996, 1998-2026";"Religious Studies (Q3)";"Arts and Humanities" +29009;21100268076;"Turkbilig";journal;"13026011";"Hacettepe University";No;No;0,113;Q3;3;29;116;1211;5;116;0,06;41,76;46,15;0;Turkey;Middle East;"Hacettepe University";"2011, 2013-2019, 2022-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29010;21101194138;"Zeitschrift fur Medizinische Ethik";journal;"09447652";"Brill Academic Publishers";No;No;0,113;Q3;10;36;135;1003;11;129;0,08;27,86;25,53;0;Netherlands;Western Europe;"Brill Academic Publishers";"1993-2025";"Philosophy (Q3)";"Arts and Humanities" +29011;21101128522;"Zeitschrift fur Ostmitteleuropa-Forschung";journal;"27010449, 09488294";"Herder Institute for Historical Research on East Central Europe - Institute of the Leibniz Association";Yes;Yes;0,113;Q3;4;13;196;955;9;194;0,02;73,46;38,46;0;Germany;Western Europe;"Herder Institute for Historical Research on East Central Europe - Institute of the Leibniz Association";"2019-2025";"History (Q3)";"Arts and Humanities" +29012;5100155055;"AAO Journal";journal;"23755776, 23755717";"American Academy of Osteopathy";No;No;0,113;Q4;6;12;70;90;7;53;0,06;7,50;66,67;0;United States;Northern America;"American Academy of Osteopathy";"2006-2025";"Advanced and Specialized Nursing (Q4); Complementary and Alternative Medicine (Q4); Complementary and Manual Therapy (Q4)";"Health Professions; Medicine; Nursing" +29013;21100810708;"Advances in Ophthalmology and Optometry";journal;"24521760";"Elsevier Inc.";No;No;0,113;Q4;8;25;82;1331;15;79;0,25;53,24;49,06;0;United States;Northern America;"Elsevier Inc.";"2016-2025";"Ophthalmology (Q4); Optometry (Q4)";"Health Professions; Medicine" +29014;19700168717;"African Journal of Drug and Alcohol Studies";journal;"15314065";"African Center for Research and Information on Substance Abuse";No;No;0,113;Q4;14;5;30;261;3;30;0,09;52,20;69,23;0;Nigeria;Africa;"African Center for Research and Information on Substance Abuse";"2009-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +29015;21101022485;"AGIT- Journal fur Angewandte Geoinformatik";journal;"2509713X, 23649283";"V D E Verlag GmbH";Yes;No;0,113;Q4;5;0;31;0;4;29;0,00;0,00;0,00;0;Germany;Western Europe;"V D E Verlag GmbH";"2017-2023";"Computer Science Applications (Q4); Computers in Earth Sciences (Q4); Management, Monitoring, Policy and Law (Q4)";"Computer Science; Earth and Planetary Sciences; Environmental Science" +29016;21100447115;"Austral: Brazilian Journal of Strategy and International Relations";journal;"22386262, 22386912";"Universidade Federal do Rio Grande do Sul";Yes;Yes;0,113;Q4;8;9;60;371;13;54;0,21;41,22;22,22;0;Brazil;Latin America;"Universidade Federal do Rio Grande do Sul";"2012-2025";"Political Science and International Relations (Q4)";"Social Sciences" +29017;29939;"Bulletin of the Physical Fitness Research Institute";journal;"03899071";"Meiji Life Foundation of Health and Welfare";No;No;0,113;Q4;4;0;13;0;1;7;0,00;0,00;0,00;0;Japan;Asiatic Region;"Meiji Life Foundation of Health and Welfare";"1972, 1974-1982, 1984-2000, 2002-2023";"Orthopedics and Sports Medicine (Q4); Physiology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +29018;17982;"Chinese Journal of Radiology";journal;"10051201";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,113;Q4;10;192;720;5355;81;718;0,12;27,89;39,87;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1957, 1959-1960, 1979-1989, 2006-2026";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +29019;21100836921;"Ecologia Mediterranea";journal;"17754100, 01538756";"Naturalia Publications";Yes;No;0,113;Q4;5;0;35;0;7;34;0,20;0,00;0,00;0;France;Western Europe;"Naturalia Publications";"2017-2024";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +29020;21101085646;"Gouvernement et Action Publique";journal;"2262340X, 22600965";"Presses de Sciences Po";No;No;0,113;Q4;5;0;100;0;17;99;0,23;0,00;0,00;0;France;Western Europe;"Presses de Sciences Po";"2019-2024";"Public Administration (Q4)";"Social Sciences" +29021;19700200921;"Information Grammaticale";journal;"02229838, 17831601";"Peeters Publishers";No;No;0,113;Q4;7;15;105;341;4;98;0,03;22,73;57,14;0;Belgium;Western Europe;"Peeters Publishers";"2011-2025";"Linguistics and Language (Q4)";"Social Sciences" +29022;21101373148;"International Journal of Knowledge Processing Studies";journal;"27834611";"Ayande Amoozan-e-ATA";No;No;0,113;Q4;3;29;91;1192;14;91;0,18;41,10;17,91;0;Iran;Middle East;"Ayande Amoozan-e-ATA";"2021-2025";"Artificial Intelligence (Q4); Business and International Management (Q4); Information Systems (Q4); Library and Information Sciences (Q4); Management Information Systems (Q4)";"Business, Management and Accounting; Computer Science; Social Sciences" +29023;21101027443;"International Journal of Strategic Change Management";journal;"17402859, 17402867";"Inderscience Enterprises Ltd";No;No;0,113;Q4;4;0;5;0;1;4;0,00;0,00;0,00;0;Switzerland;Western Europe;"Inderscience Enterprises Ltd";"2018, 2021-2022";"Strategy and Management (Q4)";"Business, Management and Accounting" +29024;19900193668;"International Journal of Ultra Wideband Communications and Systems";journal;"17587298, 1758728X";"Inderscience";No;No;0,113;Q4;10;0;18;0;7;18;0,00;0,00;0,00;0;Switzerland;Western Europe;"Inderscience";"2009-2012, 2014-2016, 2018-2022";"Communication (Q4); Electrical and Electronic Engineering (Q4)";"Engineering; Social Sciences" +29025;17700156308;"Iranian Journal of Endocrinology and Metabolism";journal;"16834844, 16835476";"Research Institute for Endocrine Sciences";No;No;0,113;Q4;17;33;93;1447;13;92;0,16;43,85;55,71;0;Iran;Middle East;"Research Institute for Endocrine Sciences";"2008-2025";"Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)";"Medicine" +29026;19953;"Japanese Journal of Urology";journal;"00215287, 18847110";"Japanese Urological Association";No;No;0,113;Q4;15;7;80;86;9;80;0,09;12,29;9,52;0;Japan;Asiatic Region;"Japanese Urological Association";"1961-2025";"Urology (Q4)";"Medicine" +29027;33604;"Journal and Proceedings of the Royal Society of New South Wales";journal;"00359173";"Royal Society of New South Wales";No;No;0,113;Q4;12;19;106;174;5;100;0,05;9,16;33,33;0;Australia;Pacific Region;"Royal Society of New South Wales";"1982-1997, 2009-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +29028;19700170905;"Journal of Atrial Fibrillation";journal;"19416911";"CardioFront LLC";No;No;0,113;Q4;28;0;27;0;2;25;0,00;0,00;0,00;0;United States;Northern America;"CardioFront LLC";"2009-2022";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +29029;21100851417;"Journal of Camelid Science";journal;"19998732";"International society of Camelid Research and Development";Yes;No;0,113;Q4;6;0;18;0;3;17;0,25;0,00;0,00;0;United Arab Emirates;Middle East;"International society of Camelid Research and Development";"2017-2024";"Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +29030;21101358083;"Journal of Educational Technology and Learning Creativity";journal;"30253888, 30217865";"Cahaya Ilmu Cendekia Publisher";No;No;0,113;Q4;12;44;30;2827;245;30;8,17;64,25;41,12;0;Indonesia;Asiatic Region;"Cahaya Ilmu Cendekia Publisher";"2023-2025";"Education (Q4); Media Technology (Q4)";"Engineering; Social Sciences" +29031;21100896341;"Journal of Investment Strategies";journal;"20471238, 20471246";"Infopro digital";No;No;0,113;Q4;4;3;36;136;8;36;0,17;45,33;25,00;0;United Kingdom;Western Europe;"Infopro digital";"2018-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +29032;25342;"Journal of Japanese Society of Gastroenterology";journal;"04466586, 13497693";"Japanese Society of Gastroenterology";No;No;0,113;Q4;16;85;354;2551;27;354;0,05;30,01;13,73;0;Japan;Asiatic Region;"Japanese Society of Gastroenterology";"1964-2026";"Gastroenterology (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +29033;12234;"Journal of Musculoskeletal Research";journal;"17936497, 02189577";"World Scientific";No;No;0,113;Q4;21;45;116;1043;14;113;0,08;23,18;26,39;0;Singapore;Asiatic Region;"World Scientific";"1997-2006, 2008-2025";"Orthopedics and Sports Medicine (Q4)";"Medicine" +29034;26154;"Journal of the Japan Diabetes Society";journal;"0021437X";"Japan Diabetes Society";No;No;0,113;Q4;17;47;197;833;13;181;0,10;17,72;36,46;0;Japan;Asiatic Region;"Japan Diabetes Society";"1959, 1961, 1963-2026";"Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +29035;21101277849;"Kyiv-Mohyla Law and Politics Journal";journal;"24149942";"National University of Kyiv-Mohyla Academy";Yes;Yes;0,113;Q4;2;16;19;466;5;16;0,26;29,13;37,04;0;Ukraine;Eastern Europe;"National University of Kyiv-Mohyla Academy";"2021, 2023-2025";"Law (Q4)";"Social Sciences" +29036;21101290593;"Life Sciences, Medicine and Biomedicine";journal;"26007207";"";Yes;No;0,113;Q4;3;8;28;406;8;27;0,22;50,75;50,00;0;Malaysia;Asiatic Region;"";"2022-2025";"Drug Discovery (Q4); Medicine (miscellaneous) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +29037;18420;"Medicine Today";journal;"22030794, 1443430X";"Medicine Today Pty Ltd";No;No;0,113;Q4;8;93;257;2747;23;254;0,08;29,54;45,19;0;Australia;Pacific Region;"Medicine Today Pty Ltd";"2001-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +29038;21920;"Middle East Journal of Anesthesiology";journal;"05440440";"American University of Beirut";No;No;0,113;Q4;31;22;43;523;3;42;0,10;23,77;30,49;0;Lebanon;Middle East;"American University of Beirut";"1974-1975, 1978-2025";"Anesthesiology and Pain Medicine (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +29039;21100414954;"Narrative Inquiry in Bioethics";journal;"21571732, 21571740";"Johns Hopkins University Press";No;No;0,113;Q4;16;67;211;341;21;171;0,10;5,09;67,57;0;United States;Northern America;"Johns Hopkins University Press";"2011-2025";"Health (social science) (Q4)";"Social Sciences" +29040;93035;"New Zealand Journal of Medical Laboratory Science";journal;"11710195";"New Zealand Institute of Medical Laboratory Science Inc.";No;No;0,113;Q4;9;15;77;168;10;58;0,16;11,20;64,52;0;New Zealand;Pacific Region;"New Zealand Institute of Medical Laboratory Science Inc.";"1999-2025";"Clinical Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology" +29041;21100866386;"Organisational and Social Dynamics";journal;"14742780, 20443765";"Phoenix Publishing House";No;No;0,113;Q4;5;7;46;237;12;44;0,24;33,86;62,50;0;United Kingdom;Western Europe;"Phoenix Publishing House";"2017-2025";"Social Psychology (Q4)";"Psychology" +29042;21100396355;"Osservatorio del Diritto Civile e Commerciale";journal;"22812628";"Societa Editrice Il Mulino";No;No;0,113;Q4;5;17;88;909;3;87;0,03;53,47;25,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2012-2025";"Law (Q4)";"Social Sciences" +29043;21101045029;"Pediatrics Eastern Europe";journal;"24142204, 23074345";"Professionalnye Izdaniya";No;No;0,113;Q4;3;58;153;1468;24;153;0,19;25,31;70,35;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2019-2025";"Medicine (miscellaneous) (Q4); Pediatrics, Perinatology and Child Health (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +29044;28120;"Perinatology";journal;"09722408";"Himalaya Wellness Company";No;No;0,113;Q4;6;32;95;503;13;95;0,07;15,72;59,57;0;India;Asiatic Region;"Himalaya Wellness Company";"2001-2009, 2011-2025";"Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +29045;29355;"Philippine Journal of Nursing";journal;"00483818";"Philippine Nurses Association";No;No;0,113;Q4;6;18;91;408;13;85;0,20;22,67;46,43;0;Philippines;Asiatic Region;"Philippine Nurses Association";"1966-1994, 2006-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +29046;21100944650;"Proceedings of the National Academy of Sciences of Belarus, Medical Series";journal;"25242350, 18146023";"Republican Unitary Enterprise Publishing house “Belorusskaja Nauka”";No;No;0,113;Q4;4;31;106;689;11;106;0,14;22,23;57,14;0;Belarus;Eastern Europe;"Republican Unitary Enterprise Publishing house “Belorusskaja Nauka”";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29047;79913;"Progres en Urologie - FMC";journal;"1761676X";"Elsevier Masson s.r.l.";No;No;0,113;Q4;5;59;86;1764;10;83;0,14;29,90;29,45;0;France;Western Europe;"Elsevier Masson s.r.l.";"2008-2026";"Urology (Q4)";"Medicine" +29048;21101248362;"Psiquemag";journal;"23070846";"Cesar Vallejo University";Yes;Yes;0,113;Q4;4;27;61;1265;13;61;0,13;46,85;47,56;0;Peru;Latin America;"Cesar Vallejo University";"2020-2025";"Applied Psychology (Q4); Clinical Psychology (Q4); Developmental and Educational Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +29049;17841;"Radiatsionnaya Biologiya. Radioekologiya";journal;"08698031";"";No;No;0,113;Q4;20;0;110;0;16;110;0,20;0,00;0,00;0;Russian Federation;Eastern Europe;"";"1993-2016, 2020-2024";"Biochemistry (Q4); Biomaterials (Q4); Biophysics (Q4); Medicine (miscellaneous) (Q4); Molecular Biology (Q4); Radiation (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Biochemistry, Genetics and Molecular Biology; Materials Science; Medicine; Physics and Astronomy" +29050;21100199532;"Recherche et Pratiques Pedagogiques en Langues de Specialite - Cahiers de l'APLIUT";journal;"21195242, 22575405";"APLIUT";Yes;No;0,113;Q4;9;9;54;366;6;53;0,12;40,67;91,67;0;France;Western Europe;"APLIUT";"2011-2019, 2021-2025";"Education (Q4); Linguistics and Language (Q4)";"Social Sciences" +29051;13562;"Revista Cubana de Investigaciones Biomedicas";journal;"15613011, 08640300";"Editorial Ciencias Medicas";Yes;Yes;0,113;Q4;15;117;523;2702;42;511;0,08;23,09;53,57;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1988-1992, 1996-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29052;21100811503;"Revista de Estudos Constitucionais, Hermeneutica e Teoria do Direito";journal;"21752168";"Universidade do Vale do Rio dos Sinos";Yes;Yes;0,113;Q4;5;18;89;529;10;88;0,14;29,39;28,57;0;Brazil;Latin America;"Universidade do Vale do Rio dos Sinos";"2016-2026";"Law (Q4)";"Social Sciences" +29053;21100395706;"Revista de Investigaciones Agropecuarias";journal;"03258718, 16692314";"Instituto Nacional de Tecnologia Agropecuaria";Yes;Yes;0,113;Q4;10;13;63;563;16;63;0,24;43,31;53,33;0;Argentina;Latin America;"Instituto Nacional de Tecnologia Agropecuaria";"2014-2025";"Agronomy and Crop Science (Q4); Horticulture (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +29054;21101185487;"Revista Infodir";journal;"19963521";"Editorial Ciencias Medicas";Yes;Yes;0,113;Q4;3;35;163;803;2;152;0,02;22,94;49,32;0;Cuba;Latin America;"Editorial Ciencias Medicas";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29055;19400157242;"Revista Latinoamericana de Metalurgia y Materiales";journal;"02556952";"Universidad Simon Bolivar";Yes;No;0,113;Q4;12;3;16;111;1;13;0,00;37,00;25,00;0;Venezuela;Latin America;"Universidad Simon Bolivar";"2009-2023, 2025";"Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +29056;16300154747;"Revue Archeologique";journal;"00350737";"Presses Universitaires de France";No;No;0,113;Q4;8;8;44;683;7;44;0,17;85,38;27,27;0;France;Western Europe;"Presses Universitaires de France";"2001-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29057;21101393571;"Revue Francaise d'Histotechnologie";journal;"09976434, 26795132";"";No;No;0,113;Q4;1;10;29;183;2;28;0,04;18,30;66,67;0;France;Western Europe;"";"2021-2023, 2025";"Animal Science and Zoology (Q4); Histology (Q4); Pathology and Forensic Medicine (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Medicine" +29058;21100275419;"Rivista di Studi sulla Sostenibilita";journal;"22397221, 22391959";"FrancoAngeli";No;No;0,113;Q4;17;64;102;2476;34;95;0,24;38,69;52,97;0;Italy;Western Europe;"FrancoAngeli";"2011-2025";"Development (Q4); Economics and Econometrics (Q4); Law (Q4); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Energy; Environmental Science; Social Sciences" +29059;21101287783;"Rivista Italiana Di Acustica";journal;"03931110, 23852615";"FrancoAngeli";Yes;No;0,113;Q4;2;17;42;297;7;37;0,17;17,47;42,86;0;Italy;Western Europe;"FrancoAngeli";"2023-2025";"Acoustics and Ultrasonics (Q4)";"Physics and Astronomy" +29060;21101162523;"Rivista Italiana di Ragioneria e di Economia Aziendale";journal;"22815864, 15939154";"Casa Editrice Rirea";No;No;0,113;Q4;4;14;57;1139;6;49;0,05;81,36;51,85;0;Italy;Western Europe;"Casa Editrice Rirea";"2019-2025";"Accounting (Q4); Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +29061;5600155562;"Sciences de l'Education pour l'Ere Nouvelle";journal;"22593764, 07559593";"Centre d'Etudes et de Recherche en Sciences de l'Education (CERSE)";No;No;0,113;Q4;6;0;40;0;3;35;0,05;0,00;0,00;0;France;Western Europe;"Centre d'Etudes et de Recherche en Sciences de l'Education (CERSE)";"2011, 2013-2022, 2024";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +29062;21101377436;"South sustainability";journal;"27087077";"Universidad Cientifica del Sur";Yes;No;0,113;Q4;1;21;26;948;4;24;0,15;45,14;36,17;0;Peru;Latin America;"Universidad Cientifica del Sur";"2024-2026";"Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Earth and Planetary Sciences; Energy; Environmental Science" +29063;24534;"Spectroscopy Europe";journal;"26342561, 09660941";"IM Publications Open LLP";No;No;0,113;Q4;27;0;40;0;7;25;0,00;0,00;0,00;0;United Kingdom;Western Europe;"IM Publications Open LLP";"1996-2023";"Analytical Chemistry (Q4); Atomic and Molecular Physics, and Optics (Q4); Spectroscopy (Q4)";"Chemistry; Physics and Astronomy" +29064;23263;"Sprache Stimme Gehor";journal;"03420477, 14391260";"Georg Thieme Verlag";No;No;0,113;Q4;12;67;214;469;9;110;0,03;7,00;65,08;0;Germany;Western Europe;"Georg Thieme Verlag";"1980-2026";"Applied Psychology (Q4); Psychiatry and Mental Health (Q4); Speech and Hearing (Q4)";"Health Professions; Medicine; Psychology" +29065;28413;"Stahl und Eisen";trade journal;"03404803";"Verlag Stahleisen GmbH";No;No;0,113;Q4;18;91;326;24;4;291;0,01;0,26;27,87;0;Germany;Western Europe;"Verlag Stahleisen GmbH";"1968-1991, 1993-2025";"Condensed Matter Physics (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +29066;21100853911;"Taiwan Economic Review";journal;"10183833";"National Taiwan University (IEEB)";No;No;0,113;Q4;4;10;39;407;4;39;0,13;40,70;36,36;0;Taiwan;Asiatic Region;"National Taiwan University (IEEB)";"2017-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +29067;5600153348;"Terrain";journal;"07605668, 17775450";"OpenEditions Journals";Yes;No;0,113;Q4;9;0;77;0;9;73;0,16;0,00;0,00;0;France;Western Europe;"OpenEditions Journals";"2011-2024";"Anthropology (Q4)";"Social Sciences" +29068;13592;"Theoretical Biology Forum";journal;"22837175, 22822593";"Fabrizio Serra Editore Srl";No;No;0,113;Q4;20;7;24;0;7;17;0,00;0,00;30,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"1949-1994, 1996-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Medicine" +29069;21100900333;"Token";journal;"22995900, 23922087";"Jan Kochanowski University Press";Yes;Yes;0,113;Q4;4;0;56;0;6;54;0,17;0,00;0,00;0;Poland;Eastern Europe;"Jan Kochanowski University Press";"2012-2013, 2018-2024";"Communication (Q4); Linguistics and Language (Q4)";"Social Sciences" +29070;26528;"Trends in Glycoscience and Glycotechnology";journal;"09157352, 18832113";"Gakushin Publishing Company";No;No;0,113;Q4;39;39;146;594;14;89;0,11;15,23;30,43;0;Japan;Asiatic Region;"Gakushin Publishing Company";"1989-2026";"Biochemistry (Q4); Organic Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +29071;21101329153;"Ukrainian Journal Health of Woman";journal;"27866017, 27866009";"Group of Companies Med Expert, LLC";Yes;No;0,113;Q4;3;53;161;1346;19;161;0,14;25,40;63,64;0;Ukraine;Eastern Europe;"Group of Companies Med Expert, LLC";"2021-2025";"Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4); Reproductive Medicine (Q4)";"Medicine" +29072;70012;"World of Metallurgy - ERZMETALL";journal;"16132394";"GDMB Gesellschaft fur Bergbau, Metallurgie, Rohstoff- und Umwelttechnik e.V.";No;No;0,113;Q4;19;37;117;308;6;81;0,03;8,32;25,00;0;Germany;Western Europe;"GDMB Gesellschaft fur Bergbau, Metallurgie, Rohstoff- und Umwelttechnik e.V.";"2004-2025";"Environmental Chemistry (Q4); Geotechnical Engineering and Engineering Geology (Q4); Industrial and Manufacturing Engineering (Q4); Waste Management and Disposal (Q4)";"Earth and Planetary Sciences; Engineering; Environmental Science" +29073;21101168050;"Yearbook of Muslims in Europe";book series;"18771432";"Brill Academic Publishers";No;No;0,113;Q4;9;0;90;0;15;88;0,05;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2014, 2016-2023";"Anthropology (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29074;21101130995;"Proceedings of International Conference on Research in Education and Science";conference and proceedings;"28336747";"";No;No;0,113;-;3;98;408;2857;56;405;0,13;29,15;59,41;0;United States;Northern America;"";"2019-2025";"Computer Science (miscellaneous); Education; Engineering (miscellaneous)";"Computer Science; Engineering; Social Sciences" +29075;21100223154;"Proceedings of the Institute of Acoustics";conference and proceedings;"14786095";"Institute of Acoustics";No;No;0,113;-;13;0;348;0;37;339;0,10;0,00;0,00;0;United States;Northern America;"Institute of Acoustics";"2005-2008, 2010-2016, 2018-2024";"Acoustics and Ultrasonics; Electrical and Electronic Engineering";"Engineering; Physics and Astronomy" +29076;21101033887;"Proceedings of the International Congress on Acoustics";conference and proceedings;"24151599, 22267808";"International Commission for Acoustics (ICA)";No;No;0,113;-;12;0;770;0;75;769;0,00;0,00;0,00;0;Spain;Western Europe;"International Commission for Acoustics (ICA)";"2019, 2022";"Acoustics and Ultrasonics; Mechanical Engineering";"Engineering; Physics and Astronomy" +29077;21100888801;"RAD Conference Proceedings";conference and proceedings;"24664626";"RAD Association";No;No;0,113;-;7;0;58;0;10;55;0,14;0,00;0,00;0;Serbia;Eastern Europe;"RAD Association";"2012, 2014-2017, 2019-2024";"Nuclear and High Energy Physics; Nuclear Energy and Engineering; Radiation; Radiology, Nuclear Medicine and Imaging; Safety, Risk, Reliability and Quality";"Energy; Engineering; Medicine; Physics and Astronomy" +29078;21100782970;"Symposium on Lift and Escalator Technologies";conference and proceedings;"20527233, 20527225";"Lift and Escalator Symposium Educational Trust";No;No;0,113;-;5;18;62;175;15;59;0,30;9,72;16,67;0;United Kingdom;Western Europe;"Lift and Escalator Symposium Educational Trust";"2015-2025";"Building and Construction; Civil and Structural Engineering; Control and Systems Engineering; Fuel Technology; Geochemistry and Petrology; Geotechnical Engineering and Engineering Geology";"Earth and Planetary Sciences; Energy; Engineering" +29079;21100220371;"Byzantina Symmeikta";journal;"17920450, 17914884";"National Hellenic Research Foundation";Yes;Yes;0,112;Q2;7;11;23;878;9;23;0,17;79,82;20,00;0;Greece;Western Europe;"National Hellenic Research Foundation";"2011-2025";"Classics (Q2); History (Q3)";"Arts and Humanities" +29080;5800208010;"Faventia";journal;"2014850X, 02107570";"Universitat Autonoma de Barcelona";Yes;Yes;0,112;Q2;2;7;14;257;2;14;0,14;36,71;28,57;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2012, 2015-2021, 2023-2025";"Classics (Q2); History (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29081;21101210878;"Ricerche Ellenistiche";journal;"27241890";"Fabrizio Serra Editore";No;No;0,112;Q2;3;6;19;705;3;19;0,09;117,50;20,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2020-2025";"Classics (Q2); History (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29082;21101197264;"Al Abhath";journal;"2589997X, 00023973";"Brill Academic Publishers";No;No;0,112;Q3;2;8;25;782;6;24;0,06;97,75;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2025";"History (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29083;21100202738;"Analele Universitatii din Craiova, Seria Filozofie";journal;"18418325";"Universitatea din Craiova";No;No;0,112;Q3;6;12;54;228;4;54;0,10;19,00;38,46;0;Romania;Eastern Europe;"Universitatea din Craiova";"2011-2019, 2021-2025";"Philosophy (Q3)";"Arts and Humanities" +29084;19700168309;"Archipel";journal;"00448613";"Association Archipel";No;No;0,112;Q3;13;17;83;861;10;78;0,12;50,65;23,53;0;France;Western Europe;"Association Archipel";"2009-2025";"Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Religious Studies (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29085;5900152801;"Art Documentation";journal;"21619417, 07307187";"University of Chicago Press";No;No;0,112;Q3;9;9;50;135;6;49;0,09;15,00;72,22;0;United States;Northern America;"University of Chicago Press";"2015-2025";"Visual Arts and Performing Arts (Q3); Archeology (arts and humanities) (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +29086;21101152744;"Arte y Sociedad (Aranjuez)";journal;"21747563";"Rey Juan Carlos University";Yes;Yes;0,112;Q3;2;30;47;811;3;46;0,09;27,03;46,67;0;Spain;Western Europe;"Rey Juan Carlos University";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29087;21101295955;"Asia Minor";journal;"2785129X, 27850277";"Fabrizio Serra Editore";No;No;0,112;Q3;2;7;20;349;2;17;0,08;49,86;50,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2021-2025";"History (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29088;21101293996;"Biuletyn Uniejowski";journal;"22998403, 24498319";"Lodz University Press";Yes;No;0,112;Q3;2;6;23;212;5;21;0,15;35,33;42,86;0;Poland;Eastern Europe;"Lodz University Press";"2021-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Museology (Q3); Religious Studies (Q3)";"Arts and Humanities" +29089;19600166037;"Canadian Theatre Review";journal;"03150836";"University of Toronto Press";No;No;0,112;Q3;9;41;196;384;16;161;0,06;9,37;75,00;0;Canada;Northern America;"University of Toronto Press";"1977, 1979, 1982, 1988, 1994-1995, 1998, 2000, 2003, 2009-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29090;21101060492;"Crossroads";journal;"23006250";"University of Bialystok";Yes;Yes;0,112;Q3;3;28;80;903;16;75;0,22;32,25;66,67;0;Poland;Eastern Europe;"University of Bialystok";"2019-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29091;21101041822;"Cuadernos de Arte de la Universidad de Granada";journal;"24454567, 0210962X";"Editorial Universidad de Granada";Yes;Yes;0,112;Q3;2;17;52;473;8;52;0,08;27,82;36,36;0;Spain;Western Europe;"Editorial Universidad de Granada";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29092;21100236209;"Diasporas";journal;"24311472, 16375823";"Editions Of The Sorbonne";Yes;Yes;0,112;Q3;5;25;75;1463;11;69;0,16;58,52;55,56;0;France;Western Europe;"Editions Of The Sorbonne";"2008-2025";"History (Q3); Cultural Studies (Q4); Demography (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29093;21100876391;"Early Modern Low Countries";journal;"25431587";"Utrecht University";Yes;Yes;0,112;Q3;7;24;43;1512;7;43;0,11;63,00;77,42;0;Netherlands;Western Europe;"Utrecht University";"2017-2025";"Cultural Studies (Q3); History (Q3)";"Arts and Humanities; Social Sciences" +29094;6500153123;"Early Popular Visual Culture";journal;"17460662, 17460654";"Routledge";No;No;0,112;Q3;13;17;64;864;21;58;0,35;50,82;53,33;0;United Kingdom;Western Europe;"Routledge";"2009-2026";"Cultural Studies (Q3); History (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities; Social Sciences" +29095;21100892241;"Espacio, Tiempo y Forma, Serie VII: Historia del Arte";journal;"11304715, 23401478";"Universidad Nacional de Educacion a Distancia (UNED)";Yes;Yes;0,112;Q3;4;23;66;1228;15;66;0,23;53,39;56,52;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2018-2025";"History (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29096;21100235621;"Etudes Mongoles et Siberiennes, Centrasiatiques et Tibetaines";journal;"07665075, 21010013";"Centre d'Etudes Mongoles et Siberiennes";No;No;0,112;Q3;8;13;30;693;8;27;0,24;53,31;75,00;0;France;Western Europe;"Centre d'Etudes Mongoles et Siberiennes";"2011, 2013-2025";"Cultural Studies (Q3); Anthropology (Q4); Linguistics and Language (Q4)";"Social Sciences" +29097;21100202733;"Extrapolation";journal;"00145483";"Liverpool University Press";No;No;0,112;Q3;11;13;40;680;14;38;0,27;52,31;23,08;0;United States;Northern America;"Liverpool University Press";"2002, 2007, 2011-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29098;21101091182;"Feminist Modernist Studies";journal;"2469293X, 24692921";"Informa Healthcare";No;No;0,112;Q3;7;17;61;591;12;57;0,19;34,76;83,33;0;United Kingdom;Western Europe;"Informa Healthcare";"2018-2026";"Cultural Studies (Q3); Literature and Literary Theory (Q3); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +29099;21101388281;"From the European South";journal;"25314130";"University of Padua";No;No;0,112;Q3;5;21;63;442;14;56;0,16;21,05;57,14;0;Italy;Western Europe;"University of Padua";"2021-2025";"Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29100;13138;"German Life and Letters";journal;"00168777, 14680483";"Wiley-Blackwell Publishing Ltd";No;No;0,112;Q3;16;28;95;1240;21;92;0,24;44,29;67,57;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1936-1939, 1947-2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29101;5700154132;"Hispamerica";journal;"03630471";"Hispamerica";No;No;0,112;Q3;3;12;152;136;5;133;0,05;11,33;20,00;0;United States;Northern America;"Hispamerica";"2009-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29102;15225;"Historiallinen Aikakauskirja";journal;"00182362";"Historian Ystavain Liitto";No;No;0,112;Q3;6;31;170;1657;7;147;0,06;53,45;53,33;0;Finland;Western Europe;"Historian Ystavain Liitto";"1978, 1983, 1985, 1987, 1999-2001, 2011, 2013-2025";"History (Q3)";"Arts and Humanities" +29103;21101047379;"International Journal for History, Culture and Modernity";journal;"26666529, 22130624";"Brill Academic Publishers";No;No;0,112;Q3;2;11;28;482;7;24;0,29;43,82;41,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015, 2020-2026";"Arts and Humanities (miscellaneous) (Q3); History (Q3)";"Arts and Humanities" +29104;21100857422;"Journal of African Cinemas";journal;"17549221, 1754923X";"Intellect Ltd.";No;No;0,112;Q3;5;33;44;919;5;35;0,10;27,85;40,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2017-2026";"Visual Arts and Performing Arts (Q3); Communication (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29105;21100903716;"Journal of Belarusian Studies";journal;"00754161, 20526512";"Brill Academic Publishers";No;No;0,112;Q3;5;6;17;247;2;14;0,00;41,17;40,00;0;United Kingdom;Western Europe;"Brill Academic Publishers";"2016-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q4); Linguistics and Language (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29106;21101039809;"Journal of Medieval Monastic Studies";journal;"20343515, 20343523";"Brepols Publishers";No;No;0,112;Q3;3;5;20;336;3;20;0,15;67,20;80,00;0;Belgium;Western Europe;"Brepols Publishers";"2019-2025";"History (Q3); Religious Studies (Q3); Visual Arts and Performing Arts (Q3); Archeology (arts and humanities) (Q4)";"Arts and Humanities" +29107;5700158578;"Journal of Mediterranean Studies";journal;"10163476";"University of Nicosia";No;No;0,112;Q3;15;0;24;0;2;24;0,00;0,00;0,00;0;Malta;Western Europe;"University of Nicosia";"1993-1994, 2002-2008, 2010-2012, 2014-2023";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +29108;19700183051;"Journal of Modern Periodical Studies";journal;"19476574, 21529272";"Penn State University Press";No;No;0,112;Q3;8;5;41;365;6;39;0,11;73,00;33,33;0;United States;Northern America;"Penn State University Press";"2010-2025";"Visual Arts and Performing Arts (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +29109;21101053577;"Journal of Mosaic Research";journal;"1309047X, 26199165";"Bursa Uludag University";Yes;Yes;0,112;Q3;4;25;71;1117;6;71;0,09;44,68;73,08;0;Turkey;Middle East;"Bursa Uludag University";"2019-2025";"Visual Arts and Performing Arts (Q3); Archeology (arts and humanities) (Q4)";"Arts and Humanities" +29110;7200153169;"Legal History Review";journal;"00407585, 15718190";"Brill Academic Publishers";No;No;0,112;Q3;13;15;52;1883;9;52;0,11;125,53;23,53;0;Netherlands;Western Europe;"Brill Academic Publishers";"1920-1927, 1929-1944, 1957-1958, 1963-1982, 1984-2025";"History (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +29111;21100228122;"Leviathan";journal;"17501849, 15256995";"Johns Hopkins University Press";No;No;0,112;Q3;8;32;94;983;28;83;0,35;30,72;32,14;0;United States;Northern America;"Johns Hopkins University Press";"2009-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29112;21101240971;"NAJUA: History of Architecture and Thai Architecture";journal;"26973901";"Faculty of Architecture, Silpakorn University";No;No;0,112;Q3;2;12;42;271;6;42;0,17;22,58;50,00;0;Thailand;Asiatic Region;"Faculty of Architecture, Silpakorn University";"2020-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); History (Q3); Architecture (Q4)";"Arts and Humanities; Engineering; Social Sciences" +29113;5800184365;"New York History";journal;"23288132";"New York State Historical Association";No;No;0,112;Q3;4;10;73;488;10;67;0,15;48,80;11,11;0;United States;Northern America;"New York State Historical Association";"1962, 1970, 1972, 1981-1982, 1986, 1989, 2000, 2002, 2004-2005, 2014-2018, 2020-2025";"History (Q3)";"Arts and Humanities" +29114;21100944302;"Philosophical Inquiries";journal;"22818618, 22820248";"Edizioni ETS";No;No;0,112;Q3;7;17;51;830;7;46;0,16;48,82;35,00;0;Italy;Western Europe;"Edizioni ETS";"2019-2025";"Philosophy (Q3)";"Arts and Humanities" +29115;21100451643;"Philosophical Readings";journal;"20364989";"Ca Foscari University Department of Philosophy and Cultural Heritage";Yes;Yes;0,112;Q3;5;0;32;0;3;32;0,00;0,00;0,00;0;Italy;Western Europe;"Ca Foscari University Department of Philosophy and Cultural Heritage";"2015-2024";"Philosophy (Q3)";"Arts and Humanities" +29116;21101321962;"Postscriptum Polonistyczne";journal;"23539844, 18981593";"Wydawnictwo Uniwersytetu Slaskiego";Yes;No;0,112;Q3;2;40;112;858;5;111;0,05;21,45;68,42;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Slaskiego";"2021-2025";"Arts and Humanities (miscellaneous) (Q3); Literature and Literary Theory (Q3); Education (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29117;21101023315;"Praksis";journal;"24481939";"UNIVERSIDADE FEEVALE";Yes;Yes;0,112;Q3;4;35;71;1165;8;69;0,11;33,29;56,14;0;Brazil;Latin America;"UNIVERSIDADE FEEVALE";"2019-2026";"History (Q3); Education (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29118;21101115709;"Praticas da Historia";journal;"2183590X";"Nova University Lisbon";Yes;Yes;0,112;Q3;4;9;66;276;7;56;0,09;30,67;50,00;0;Portugal;Western Europe;"Nova University Lisbon";"2019-2025";"History (Q3)";"Arts and Humanities" +29119;19500157422;"Quaderni Urbinati di Cultura Classica";journal;"17241901, 00334987";"Fabrizio Serra Editore Srl";No;No;0,112;Q3;10;22;101;1412;5;101;0,03;64,18;31,82;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2009-2025";"Classics (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29120;21100467832;"Radovi Instituta za Povijest Umjetnosti";journal;"18454534, 03503437";"Institute of Art History, Zagreb";Yes;Yes;0,112;Q3;4;0;37;0;2;37;0,05;0,00;0,00;0;Croatia;Eastern Europe;"Institute of Art History, Zagreb";"2015-2024";"History (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29121;21100236610;"Rechtsgeschichte";journal;"16194993, 21959617";"Klostermann";Yes;Yes;0,112;Q3;11;17;121;613;14;119;0,09;36,06;23,53;0;Germany;Western Europe;"Klostermann";"2011-2025";"History (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +29122;6000152710;"Religion and the Arts";journal;"10799265, 15685292";"Brill Academic Publishers";No;No;0,112;Q3;9;23;69;700;10;68;0,15;30,43;54,55;0;Netherlands;Western Europe;"Brill Academic Publishers";"1996, 1998-2025";"History (Q3); Religious Studies (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29123;19900191816;"Revista de Filosofia: Aurora";journal;"29651557, 29651565";"Pontificia Universidade Catolica do Parana";Yes;No;0,112;Q3;6;49;143;1199;13;138;0,11;24,47;45,83;0;Brazil;Latin America;"Pontificia Universidade Catolica do Parana";"2010-2026";"Philosophy (Q3)";"Arts and Humanities" +29124;21100812552;"Revista de Humanidades (SPAIN)";journal;"23408995, 11305029";"Universidad Nacional de Educacion a Distancia (UNED)";Yes;Yes;0,112;Q3;9;16;70;747;15;69;0,11;46,69;36,00;0;Spain;Western Europe;"Universidad Nacional de Educacion a Distancia (UNED)";"2016-2025";"Arts and Humanities (miscellaneous) (Q3)";"Arts and Humanities" +29125;21101152623;"Revista Iberoamericana de Argumentacion";journal;"21728801";"Universidad Autonoma de Madrid";Yes;Yes;0,112;Q3;3;19;83;747;8;81;0,11;39,32;50,00;0;Spain;Western Europe;"Universidad Autonoma de Madrid";"2019-2025";"Philosophy (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29126;18715;"Revue d'Histoire des Textes";journal;"03736075";"Brepols Publishers";No;No;0,112;Q3;9;0;34;0;6;34;0,14;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"1973-1974, 1976, 1982, 1988-1989, 2006-2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29127;21101060453;"RiMe Rivista dell'Istituto di Storia dell'Europa Mediterranea";journal;"2035794X";"Consiglio Nazionale delle Ricerche";No;No;0,112;Q3;5;6;114;264;8;105;0,05;44,00;28,57;0;Italy;Western Europe;"Consiglio Nazionale delle Ricerche";"2019-2025";"History (Q3); Cultural Studies (Q4); Education (Q4)";"Arts and Humanities; Social Sciences" +29128;21101180067;"Rocznik Orientalistyczny";journal;"00803545";"";No;No;0,112;Q3;2;9;41;393;3;41;0,12;43,67;87,50;0;Poland;Eastern Europe;"";"2019-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Religious Studies (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29129;18007;"Societes";book series;"07653697, 1782155X";"De Boeck Supérieur";No;No;0,112;Q3;8;0;116;0;12;107;0,11;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"1996-2024";"Arts and Humanities (miscellaneous) (Q3); Demography (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29130;21101021070;"Staleta Praha";journal;"02316056";"";No;No;0,112;Q3;3;4;41;0;3;33;0,04;0,00;25,00;0;Czech Republic;Eastern Europe;"";"2019-2025";"History (Q3); Visual Arts and Performing Arts (Q3); Archeology (arts and humanities) (Q4); Architecture (Q4); Building and Construction (Q4); Conservation (Q4); Nature and Landscape Conservation (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Environmental Science; Social Sciences" +29131;21101038694;"Studies in Musical Theatre";journal;"17503159, 17503167";"Intellect Ltd.";No;No;0,112;Q3;5;17;69;423;11;56;0,08;24,88;52,63;0;United Kingdom;Western Europe;"Intellect Ltd.";"2010, 2019-2025";"Literature and Literary Theory (Q3); Music (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29132;21100852130;"Studii de Istoria si Teoria Arhitecturii";journal;"23446544, 24571687";"Editura Universitara Ion Mincu";Yes;Yes;0,112;Q3;3;0;57;0;13;56;0,19;0,00;0,00;0;Romania;Eastern Europe;"Editura Universitara Ion Mincu";"2017-2024";"Conservation (Q3); History (Q3); Safety, Risk, Reliability and Quality (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +29133;21100934781;"Swedish Journal of Romanian Studies";journal;"20030924";"Lund University, Centre for Languages and Literature";Yes;Yes;0,112;Q3;3;28;70;1177;5;70;0,07;42,04;70,00;0;Sweden;Western Europe;"Lund University, Centre for Languages and Literature";"2018-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Anthropology (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29134;21101145386;"Value Inquiry Book Series";book series;"09298436";"Brill: Rodopi";No;No;0,112;Q3;12;46;257;4045;24;16;0,10;87,93;14,29;0;Netherlands;Western Europe;"Brill: Rodopi";"1994-2026";"Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +29135;21100917131;"Voprosy Literatury";journal;"00428795";"Voprosy Literatury";No;No;0,112;Q3;3;73;247;1036;7;247;0,03;14,19;55,71;0;Russian Federation;Eastern Europe;"Voprosy Literatury";"2019-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29136;56572;"Welsh History Review";journal;"00432431";"University of Wales Press";No;No;0,112;Q3;9;10;43;1049;5;39;0,17;104,90;25,00;0;United Kingdom;Western Europe;"University of Wales Press";"1971, 1979-1980, 1982, 1985, 1999-2025";"History (Q3)";"Arts and Humanities" +29137;11600153450;"Women and Performance";journal;"17485819, 0740770X";"Taylor and Francis Ltd.";No;No;0,112;Q3;21;14;22;329;2;16;0,00;23,50;80,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1983-1990, 1992-1997, 1999-2022, 2024-2025";"Visual Arts and Performing Arts (Q3); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +29138;21101030121;"Yearbook of Balkan and Baltic Studies";journal;"26137852, 26137844";"ELM Scholarly Press";Yes;Yes;0,112;Q3;3;27;45;812;4;41;0,09;30,07;75,00;0;Estonia;Eastern Europe;"ELM Scholarly Press";"2018-2025";"History (Q3); Religious Studies (Q3); Anthropology (Q4); Cultural Studies (Q4); Demography (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +29139;23133;"Zeitschrift fur Historische Forschung";journal;"18655599, 03400174";"Duncker und Humblot GmbH";No;No;0,112;Q3;13;7;29;803;5;29;0,00;114,71;20,00;0;Germany;Western Europe;"Duncker und Humblot GmbH";"1989, 1999, 2001, 2003-2025";"History (Q3)";"Arts and Humanities" +29140;28873;"Zeitschrift fur Religions- und Geistesgeschichte";journal;"00443441, 15700739";"Brill Academic Publishers";No;No;0,112;Q3;8;16;59;931;3;58;0,08;58,19;17,65;0;Netherlands;Western Europe;"Brill Academic Publishers";"1929, 1948-1949, 1951-2000, 2006-2025";"History (Q3); Philosophy (Q3); Religious Studies (Q3)";"Arts and Humanities" +29141;26545;"Acta Medica Croatica";journal;"13300164";"Academy of Medical Sciences of Croatica";No;No;0,112;Q4;20;0;46;0;9;45;0,00;0,00;0,00;0;Croatia;Eastern Europe;"Academy of Medical Sciences of Croatica";"1991-2023";"Medicine (miscellaneous) (Q4)";"Medicine" +29142;4100151523;"Advances in Chemical Engineering";book series;"00652377";"Academic Press Inc.";No;No;0,112;Q4;37;12;45;695;81;5;1,03;57,92;0,00;0;United States;Northern America;"Academic Press Inc.";"1956, 1958, 1962, 1964, 1966, 1968, 1970, 1974, 1978, 1981, 1983, 1987-1988, 1990-1992, 1994-1996, 1998-1999, 2001, 2004-2025";"Biomaterials (Q4); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry; Materials Science" +29143;11600153426;"Advances in Consumer Research";journal;"00989258";"Association for Consumer Research";No;No;0,112;Q4;32;0;48;0;8;46;0,09;0,00;0,00;0;United States;Northern America;"Association for Consumer Research";"1993-1994, 2006-2012, 2016-2017, 2019-2023";"Applied Psychology (Q4); Economics and Econometrics (Q4); Marketing (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Psychology" +29144;4000151908;"Asian Dyer";journal;"09729488";"Texchem Publications";No;No;0,112;Q4;7;38;112;808;4;63;0,04;21,26;32,00;0;India;Asiatic Region;"Texchem Publications";"2006-2025";"Chemistry (miscellaneous) (Q4)";"Chemistry" +29145;27508;"Association of Canadian Map Libraries and Archives Bulletin";journal;"25612263, 08409331";"Association of Canadian Map Libraries and Archives";No;No;0,112;Q4;5;6;23;65;8;23;0,10;10,83;75,00;0;Canada;Northern America;"Association of Canadian Map Libraries and Archives";"1988, 1991-1995, 1997, 1999-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Earth-Surface Processes (Q4)";"Earth and Planetary Sciences" +29146;21100983352;"Chinese Journal of Urology";journal;"10006702";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,112;Q4;4;125;485;2813;52;480;0,09;22,50;29,50;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2025";"Nephrology (Q4); Neurology (clinical) (Q4)";"Medicine" +29147;21101215127;"Cuadernos Economicos de ICE";journal;"02102633, 23409037";"Gobierno de Espana Secretaria de Estado de Comercio";No;Yes;0,112;Q4;3;9;56;326;7;50;0,19;36,22;52,94;0;Spain;Western Europe;"Gobierno de Espana Secretaria de Estado de Comercio";"2020-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +29148;26011;"Diabetologie Metabolismus Endokrinologie Vyziva";journal;"12126853, 12119326";"TIGIS Spol. s.r.o.";No;No;0,112;Q4;6;13;70;237;4;60;0,07;18,23;52,94;0;Czech Republic;Eastern Europe;"TIGIS Spol. s.r.o.";"2001-2025";"Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +29149;21265;"Drugs of the Future";journal;"20130368, 03778282";"Clarivate";No;No;0,112;Q4;48;0;95;0;15;95;0,43;0,00;0,00;0;Spain;Western Europe;"Clarivate";"1978-2023";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +29150;21101246896;"East African Journal of Neurological Sciences";journal;"29574323, 29574315";"East African Association of Neurological Surgeons";No;No;0,112;Q4;1;23;32;543;2;30;0,04;23,61;25,30;0;Kenya;Africa;"East African Association of Neurological Surgeons";"2022-2026";"Anatomy (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4); Surgery (Q4)";"Medicine" +29151;20000195021;"Ecology and Civil Engineering";journal;"18825974, 13443755";"Ecology and Civil Engineering Society";No;No;0,112;Q4;10;6;36;147;3;35;0,09;24,50;13,33;0;Japan;Asiatic Region;"Ecology and Civil Engineering Society";"1998-2025";"Civil and Structural Engineering (Q4); Ecology (Q4)";"Engineering; Environmental Science" +29152;144890;"Electronic Device Failure Analysis";journal;"15370755";"ASM International";No;No;0,112;Q4;7;20;94;121;18;38;0,19;6,05;9,52;0;United States;Northern America;"ASM International";"2001, 2004-2025";"Electrical and Electronic Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering" +29153;21100278305;"Gaceta Mexicana de Oncologia";journal;"16659201";"Permanyer Publications";Yes;Yes;0,112;Q4;9;25;155;500;22;147;0,12;20,00;37,61;0;Spain;Western Europe;"Permanyer Publications";"2009-2025";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +29154;21100206286;"Geoingegneria Ambientale e Mineraria";journal;"11219041";"Politecnico, Associazione Gorisorse E Ambiente";No;No;0,112;Q4;12;0;37;0;5;37;0,10;0,00;0,00;0;Italy;Western Europe;"Politecnico, Associazione Gorisorse E Ambiente";"2007-2024";"Environmental Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences; Environmental Science" +29155;21100790505;"International Conference on Concept Lattices and Their Applications";book series;"2311701X";"Palacky University Olomouc";No;No;0,112;Q4;5;0;19;0;1;17;0,00;0,00;0,00;0;France;Western Europe;"Palacky University Olomouc";"2016, 2018, 2020, 2022";"Applied Mathematics (Q4); Artificial Intelligence (Q4); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4); Human-Computer Interaction (Q4); Modeling and Simulation (Q4)";"Computer Science; Engineering; Mathematics" +29156;21100832514;"International Journal of Standardization Research";journal;"24708550, 24708542";"IGI Global Publishing";No;No;0,112;Q4;7;0;3;0;1;3;0,33;0,00;0,00;0;United States;Northern America;"IGI Global Publishing";"2015-2021, 2023";"Computer Science Applications (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Computer Science" +29157;12301;"JFE Technical Report";journal;"18837263, 13480677";"JFE Holdings, Inc";No;No;0,112;Q4;24;23;67;185;9;58;0,13;8,04;2,86;0;Japan;Asiatic Region;"JFE Holdings, Inc";"2003-2025";"Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +29158;30526;"Journal of Agriculture of the University of Puerto Rico";journal;"0041994X";"Agricultural Experiment Station";No;Yes;0,112;Q4;12;12;54;348;4;53;0,05;29,00;60,00;0;Puerto Rico;Latin America;"Agricultural Experiment Station";"1955, 1970, 1973, 1976-1977, 1991, 1996-2025";"Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +29159;21101197367;"Journal of Appalachian Studies";journal;"10827161, 23288612";"University of Illinois Press";No;No;0,112;Q4;4;16;39;623;12;32;0,22;38,94;64,29;0;United States;Northern America;"University of Illinois Press";"2020-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +29160;21101018622;"Journal of Chinese Physician";journal;"10081372";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,112;Q4;3;163;1009;4296;88;1009;0,09;26,36;48,62;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29161;21101210510;"Journal of Clinical Cardiology";journal;"10011439";"";No;No;0,112;Q4;4;163;571;4467;74;570;0,14;27,40;43,15;0;China;Asiatic Region;"";"2020-2025";"Cardiology and Cardiovascular Medicine (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +29162;21101023405;"Journal of Endovascular Resuscitation and Trauma Management";journal;"2003539X, 20027567";"Orebro University Hospital";Yes;Yes;0,112;Q4;9;11;72;206;9;55;0,12;18,73;35,19;0;Sweden;Western Europe;"Orebro University Hospital";"2017-2025";"Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4); Surgery (Q4)";"Medicine" +29163;21101227922;"Journal of Interdisciplinary Dentistry";journal;"22312706, 22295194";"Wolters Kluwer Medknow Publications";No;No;0,112;Q4;4;48;100;1026;15;94;0,15;21,38;52,85;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2020-2025";"Dentistry (miscellaneous) (Q4)";"Dentistry" +29164;21101196040;"Journal of Korean Society of Spine Surgery";journal;"20934378, 20934386";"Korean Society of Spine Surgery";Yes;No;0,112;Q4;2;20;57;429;7;57;0,10;21,45;13,64;0;South Korea;Asiatic Region;"Korean Society of Spine Surgery";"2001, 2019-2025";"Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Medicine" +29165;21101105290;"Journal of Medical Pest Control";journal;"10036245";"Editorial Department of Medical Pest Control";No;No;0,112;Q4;3;242;817;5391;86;817;0,11;22,28;50,97;0;China;Asiatic Region;"Editorial Department of Medical Pest Control";"2022-2026";"Applied Microbiology and Biotechnology (Q4); Microbiology (Q4); Parasitology (Q4); Virology (Q4)";"Immunology and Microbiology" +29166;19700182679;"Journal of Nietzsche Studies";journal;"09688005, 15384594";"Penn State University Press";No;No;0,112;Q4;14;12;24;509;7;22;0,24;42,42;10,00;0;United States;Northern America;"Penn State University Press";"2010-2025";"Philosophy (Q4)";"Arts and Humanities" +29167;17600155037;"Journal of Quality";journal;"10220690";"Chinese Society for Quality";No;No;0,112;Q4;11;24;69;1038;10;68;0,14;43,25;49,09;0;Taiwan;Asiatic Region;"Chinese Society for Quality";"2009-2025";"Management Science and Operations Research (Q4); Safety, Risk, Reliability and Quality (Q4)";"Decision Sciences; Engineering" +29168;19900191892;"Journal of Technology";journal;"10123407";"National Taiwan University of Science and Technology";No;No;0,112;Q4;5;24;79;720;10;79;0,16;30,00;25,71;0;Taiwan;Asiatic Region;"National Taiwan University of Science and Technology";"2011-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +29169;21101294938;"Journal of the Egyptian Ophthalmological Society";journal;"23146648, 20900686";"Wolters Kluwer Medknow Publications";Yes;No;0,112;Q4;1;57;60;1256;7;60;0,12;22,04;45,51;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2023-2025";"Ophthalmology (Q4)";"Medicine" +29170;19700201425;"Journal of Wind Engineering";journal;"1349340X, 13493507";"Japan Association for Wind Engineering";No;No;0,112;Q4;8;5;7;102;2;7;0,00;20,40;18,75;0;Japan;Asiatic Region;"Japan Association for Wind Engineering";"1999-2026";"Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +29171;25317;"Kanzo/Acta Hepatologica Japonica";journal;"04514203, 18813593";"Japan Society of Hepatology";No;No;0,112;Q4;14;58;169;1029;14;165;0,10;17,74;22,33;0;Japan;Asiatic Region;"Japan Society of Hepatology";"1961, 1963, 1966-1972, 1974-2026";"Hepatology (Q4)";"Medicine" +29172;12361;"Libri Oncologici";journal;"03008142";"Dr. Mladen Stojanovic University Hospital";Yes;Yes;0,112;Q4;5;5;63;156;9;62;0,20;31,20;56,00;0;Croatia;Eastern Europe;"Dr. Mladen Stojanovic University Hospital";"1972-1978, 1988-1999, 2001-2025";"Oncology (Q4)";"Medicine" +29173;21101030457;"Mathematics for Applications";journal;"18053629, 18053610";"Brno University of Technology";No;No;0,112;Q4;4;20;57;632;16;57;0,34;31,60;40,74;0;Czech Republic;Eastern Europe;"Brno University of Technology";"2019-2025";"Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics" +29174;4700152446;"Medical Journal of Wuhan University";journal;"16718852";"Editorial Board of Medical Journal of Wuhan University";No;No;0,112;Q4;8;253;723;6795;85;723;0,13;26,86;51,00;0;China;Asiatic Region;"Editorial Board of Medical Journal of Wuhan University";"2001-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +29175;21101140512;"Nephrologie (Germany)";journal;"27317471, 27317463";"Springer Medizin";No;No;0,112;Q4;2;75;195;1760;14;141;0,07;23,47;36,36;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Nephrology (Q4)";"Medicine" +29176;21101107572;"OphthaTherapy. Therapies in Ophthalmology";journal;"23537175, 25439987";"Medical Education";No;No;0,112;Q4;3;12;114;271;13;113;0,07;22,58;51,72;0;Poland;Eastern Europe;"Medical Education";"2019-2025";"Ophthalmology (Q4)";"Medicine" +29177;21101365825;"Pediatric Respiratory Journal";journal;"30352134";"EDRA S.p.A";No;No;0,112;Q4;2;25;58;860;9;50;0,15;34,40;60,31;0;Italy;Western Europe;"EDRA S.p.A";"2022-2025";"Health Professions (miscellaneous) (Q4); Pediatrics, Perinatology and Child Health (Q4); Pulmonary and Respiratory Medicine (Q4); Respiratory Care (Q4)";"Health Professions; Medicine" +29178;21101181888;"Permskij Medicinskij Zurnal";journal;"01361449, 26871408";"Eco-Vector LLC";No;No;0,112;Q4;5;97;302;2131;49;301;0,13;21,97;63,91;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"2019-2025";"Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Oncology (Q4); Pediatrics, Perinatology and Child Health (Q4); Pulmonary and Respiratory Medicine (Q4); Surgery (Q4)";"Medicine" +29179;20500195417;"Phillippine Journal of Internal Medicine";journal;"01199641";"Philippine College of Physicians";No;No;0,112;Q4;9;55;117;1150;3;110;0,01;20,91;49,23;0;Philippines;Asiatic Region;"Philippine College of Physicians";"2010-2025";"Internal Medicine (Q4)";"Medicine" +29180;99296;"Pneumologia";journal;"20672993";"Walter de Gruyter";No;No;0,112;Q4;13;19;92;381;12;90;0,09;20,05;60,66;0;Romania;Eastern Europe;"Walter de Gruyter";"1972-1976, 1999-2025";"Medicine (miscellaneous) (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +29181;5000160303;"Psychiatric Times";journal;"08932905";"Psychiatric Times";No;No;0,112;Q4;20;138;474;1797;38;272;0,07;13,02;46,26;0;United States;Northern America;"Psychiatric Times";"2006-2026";"Psychiatry and Mental Health (Q4)";"Medicine" +29182;5800207580;"Rasprave Instituta za Hrvatski Jezik i Jezikoslovlje";journal;"13316745";"Institute of Croatian Language and Linguistics";Yes;Yes;0,112;Q4;8;14;73;535;12;70;0,19;38,21;86,36;0;Croatia;Eastern Europe;"Institute of Croatian Language and Linguistics";"2011, 2013-2025";"Linguistics and Language (Q4)";"Social Sciences" +29183;21101283176;"Reproductive Medicine (Central Asia)";journal;"30785057, 30785065";"";No;No;0,112;Q4;3;100;64;2473;33;64;0,52;24,73;80,71;0;Kazakhstan;Asiatic Region;"";"2024-2025";"Embryology (Q4); Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4); Reproductive Medicine (Q4)";"Medicine" +29184;19700175109;"Retina-Vitreus";journal;"13001256";"Gazi Eye Foundation";No;No;0,112;Q4;7;49;162;1146;11;157;0,06;23,39;43,31;0;Turkey;Middle East;"Gazi Eye Foundation";"2009-2017, 2019-2025";"Ophthalmology (Q4)";"Medicine" +29185;21101037299;"Revista Cubana de Cardiologia y Cirugia Cardiovascular";journal;"15612937";"Cuban Society of Cardiology, Cuban Institute of Cardiology and Cardiovascular Surgery";Yes;Yes;0,112;Q4;4;27;99;838;10;93;0,14;31,04;41,67;0;Cuba;Latin America;"Cuban Society of Cardiology, Cuban Institute of Cardiology and Cardiovascular Surgery";"2019-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +29186;16100;"Revista del Hospital Psiquiatrico de la Habana";journal;"01387103, 18136257";"Ministerio de Salud Publica";No;No;0,112;Q4;5;39;139;1069;11;117;0,06;27,41;50,00;0;Cuba;Latin America;"Ministerio de Salud Publica";"1975-1992, 1997-2000, 2004-2017, 2020-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +29187;21100840936;"Revista Luna Azul";journal;"19092474, 01225391";"Universidad de Caldas";Yes;No;0,112;Q4;8;11;61;397;6;57;0,12;36,09;54,55;0;Colombia;Latin America;"Universidad de Caldas";"2017-2025";"Education (Q4); Environmental Science (miscellaneous) (Q4)";"Environmental Science; Social Sciences" +29188;4700151714;"Revista Medica de Rosario";journal;"03275019, 18512135";"Circulo Medico de Rosario";Yes;Yes;0,112;Q4;5;16;65;359;7;34;0,05;22,44;42,86;0;Argentina;Latin America;"Circulo Medico de Rosario";"1947, 2006-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29189;24262;"Revue Francaise de Science Politique";journal;"00352950, 19506686";"Presses de Sciences Po";No;No;0,112;Q4;37;0;303;0;18;291;0,05;0,00;0,00;0;France;Western Europe;"Presses de Sciences Po";"1989, 1992, 2001-2024";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29190;17432;"Ricerca e Pratica";journal;"20382480, 1120379X";"Il Pensiero Scientifico Editore s.r.l.";No;No;0,112;Q4;4;47;193;242;9;117;0,06;5,15;69,23;0;Italy;Western Europe;"Il Pensiero Scientifico Editore s.r.l.";"1990-2018, 2020-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29191;21101146360;"Romanian Medical Journal";journal;"2069606X, 12205478";"Amaltea Medical Publishing House";Yes;No;0,112;Q4;5;79;193;2042;31;192;0,22;25,85;41,88;0;Romania;Eastern Europe;"Amaltea Medical Publishing House";"2019-2025";"Internal Medicine (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4); Surgery (Q4)";"Medicine" +29192;120002;"Russian Medicine";journal;"24129100, 08692106";"Eco-Vector LLC";No;No;0,112;Q4;1;58;57;2013;9;57;0,16;34,71;65,53;0;Russian Federation;Eastern Europe;"Eco-Vector LLC";"1992, 2024-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29193;21101047446;"Russkaya Rech";journal;"01316117";"Russian Academy of Sciences";No;No;0,112;Q4;3;51;161;975;10;161;0,09;19,12;69,12;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"2021-2025";"Linguistics and Language (Q4)";"Social Sciences" +29194;200147130;"Sankhya: The Indian Journal of Statistics";journal;"09727671";"Indian Statistical Institute";No;No;0,112;Q4;21;0;7;0;1;7;0,00;0,00;0,00;0;India;Asiatic Region;"Indian Statistical Institute";"2005-2022";"Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics" +29195;24197;"Scientific American";journal;"19467087, 00368733";"Scientific American Inc.";No;No;0,112;Q4;106;319;1015;0;107;980;0,11;0,00;55,96;0;United States;Northern America;"Scientific American Inc.";"1947-1950, 1958-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +29196;21101046166;"Siberian Medical Review";journal;"18199496, 25000136";"Krasnoyarsk State Medical University";No;No;0,112;Q4;6;101;281;2235;45;278;0,14;22,13;60,14;0;Russian Federation;Eastern Europe;"Krasnoyarsk State Medical University";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29197;130169;"Sinapse";journal;"1645281X";"Sociedade Portuguesa de Neurologia";No;No;0,112;Q4;5;38;92;892;6;61;0,08;23,47;65,22;1;Portugal;Western Europe;"Sociedade Portuguesa de Neurologia";"2005-2025";"Cellular and Molecular Neuroscience (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +29198;12100155925;"Socialni Studia/Social Studies";journal;"1214813X, 18036104";"Masaryk University";Yes;Yes;0,112;Q4;10;11;46;359;14;43;0,14;32,64;45,45;0;Czech Republic;Eastern Europe;"Masaryk University";"2009-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +29199;21100223584;"Specialusis Ugdymas";journal;"24243299, 13925369";"Vilnius University Press";Yes;Yes;0,112;Q4;7;3;16;110;3;15;0,20;36,67;83,33;0;Lithuania;Eastern Europe;"Vilnius University Press";"2016-2025";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +29200;28444;"Steel Times International";trade journal;"01437798";"DMG World Media (UK) Ltd.";No;No;0,112;Q4;11;133;265;107;14;139;0,05;0,80;10,53;0;United Kingdom;Western Europe;"DMG World Media (UK) Ltd.";"1980-1990, 1995-2026";"Condensed Matter Physics (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +29201;21100864213;"Studies in Polish Linguistics";journal;"17328160, 23005920";"Jagiellonian University Press";Yes;Yes;0,112;Q4;6;7;22;380;5;22;0,13;54,29;33,33;0;Poland;Eastern Europe;"Jagiellonian University Press";"2018-2025";"Linguistics and Language (Q4)";"Social Sciences" +29202;5700164553;"Taiwan Journal of Anthropology";journal;"17271878, 20727097";"Academia Sinica";No;No;0,112;Q4;4;0;26;0;9;26;0,18;0,00;0,00;0;Taiwan;Asiatic Region;"Academia Sinica";"2013-2024";"Anthropology (Q4)";"Social Sciences" +29203;75857;"Therapeutic Research";journal;"02898020";"Life Science Publishing Co. Ltd";No;No;0,112;Q4;8;44;151;900;17;140;0,16;20,45;19,69;0;Japan;Asiatic Region;"Life Science Publishing Co. Ltd";"1984-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29204;76575;"Transfuze a Hematologie Dnes";journal;"18054587, 12135763";"Czech Medical Association J.E. Purkyne";No;No;0,112;Q4;6;29;134;1081;11;83;0,09;37,28;42,98;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"2002-2025";"Hematology (Q4)";"Medicine" +29205;16328;"Ammonia Plant Safety and Related Facilities";conference and proceedings;"03607011";"American Institute of Chemical Engineers";No;No;0,112;-;7;61;69;351;3;67;0,04;5,75;16,41;0;United States;Northern America;"American Institute of Chemical Engineers";"1970, 1977-1981, 1984, 1987-1993, 1996, 1998-2002, 2004-2019, 2021, 2023-2025";"Filtration and Separation; Industrial and Manufacturing Engineering; Process Chemistry and Technology; Safety, Risk, Reliability and Quality";"Chemical Engineering; Engineering" +29206;21100258421;"Pan American Health Care Exchanges, PAHCE";conference and proceedings;"2327817X, 23278161";"IEEE Computer Society";No;No;0,112;-;10;23;80;249;15;74;0,22;10,83;16,67;0;United States;Northern America;"IEEE Computer Society";"2013-2015, 2017, 2019, 2021-2025";"Biomedical Engineering; Health Informatics; Health Information Management";"Engineering; Health Professions; Medicine" +29207;21100846303;"Aisthesis (Italy)";journal;"20358466";"MIMESIS EDIZIONI";Yes;Yes;0,111;Q3;6;0;64;0;12;61;0,13;0,00;0,00;0;Italy;Western Europe;"MIMESIS EDIZIONI";"2017-2023";"Visual Arts and Performing Arts (Q3); Philosophy (Q4)";"Arts and Humanities" +29208;21101044456;"Amfiteater";journal;"1855850X";"Slovenian Theatre Institute";Yes;Yes;0,111;Q3;2;20;68;450;9;52;0,20;22,50;50,00;0;Slovenia;Eastern Europe;"Slovenian Theatre Institute";"2019-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29209;21100407609;"Ancient Judaism and Early Christianity";book series;"18716636";"Brill Academic Publishers";No;No;0,111;Q3;14;2;16;1761;2;3;0,13;880,50;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2008, 2010-2014, 2016-2025";"Classics (Q3); History (Q3); Archeology (arts and humanities) (Q4); Linguistics and Language (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29210;5600153192;"Annales";journal;"03952649";"Armand Colin Paris";No;No;0,111;Q3;27;0;177;0;16;169;0,09;0,00;0,00;0;France;Western Europe;"Armand Colin Paris";"1968, 1970, 1973-1993, 1995-1997, 1999-2024";"History (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29211;21100914970;"Annali di Storia delle Universita Italiane";journal;"11278250";"Societa Editrice Il Mulino";No;No;0,111;Q3;2;21;86;2050;3;82;0,05;97,62;30,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2018-2025";"History (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +29212;21101128492;"Antiguedad y Cristianismo";journal;"19896182, 02147165";"Universidad de Murcia";Yes;Yes;0,111;Q3;2;8;27;420;2;27;0,06;52,50;25,00;0;Spain;Western Europe;"Universidad de Murcia";"2019-2026";"Classics (Q3); History (Q3); Religious Studies (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29213;16500154702;"Antike und Abendland";journal;"00035696, 16130421";"Walter de Gruyter GmbH";No;No;0,111;Q3;11;7;29;579;3;29;0,11;82,71;25,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1944, 1946, 1948, 1954, 1956-1961, 1966-1971, 1973-1987, 1989-2018, 2020-2025";"Classics (Q3); History (Q3); Literature and Literary Theory (Q3); Philosophy (Q4)";"Arts and Humanities" +29214;56240;"Archiv fur Kulturgeschichte";book series;"21943958, 00039233";"Vandenhoeck and Ruprecht GmbH and Co. KG";No;No;0,111;Q3;3;23;52;1007;3;22;0,08;43,78;37,50;0;Germany;Western Europe;"Vandenhoeck and Ruprecht GmbH and Co. KG";"1903-1911, 1914, 1916-1917, 1919, 1923, 1926-1939, 1941, 1943-1944, 1952, 1954, 1956-1962, 1964-1979, 1981, 1983, 1985-1995, 2001, 2011, 2013-2025";"History (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29215;21101215120;"Archiwa, Biblioteki i Muzea Koscielne";journal;"25453491, 05183766";"John Paul II Catholic University of Lublin";Yes;Yes;0,111;Q3;1;60;83;2943;3;79;0,04;49,05;43,10;0;Poland;Eastern Europe;"John Paul II Catholic University of Lublin";"2023-2026";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +29216;21100921168;"Argumenta Philosophica";journal;"24624993, 24625906";"Herder Editorial";No;No;0,111;Q3;2;10;33;436;1;30;0,05;43,60;55,56;0;Spain;Western Europe;"Herder Editorial";"2016-2025";"Religious Studies (Q3); Visual Arts and Performing Arts (Q3); Anthropology (Q4); History and Philosophy of Science (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +29217;21101145390;"Art and Material Culture in Medieval and Renaissance Europe";book series;"22124187";"Brill Academic Publishers";No;No;0,111;Q3;3;16;64;1769;5;3;0,00;110,56;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2019, 2021-2025";"History (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29218;21100430551;"ARTMargins";journal;"21622574, 21622582";"MIT Press";No;No;0,111;Q3;6;26;82;713;12;57;0,19;27,42;57,14;0;United States;Northern America;"MIT Press";"2012-2025";"History (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29219;21101197371;"Arts and Archaeology of the Islamic World";book series;"22133844";"Brill Academic Publishers";No;No;0,111;Q3;5;11;31;1722;8;3;0,00;156,55;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2016, 2018-2025";"Visual Arts and Performing Arts (Q3); Archeology (arts and humanities) (Q4)";"Arts and Humanities" +29220;21101162969;"ASAP Journal";journal;"23814721, 23814705";"Johns Hopkins University Press";No;No;0,111;Q3;3;5;90;310;12;80;0,08;62,00;20,00;0;United States;Northern America;"Johns Hopkins University Press";"2019, 2021-2025";"Arts and Humanities (miscellaneous) (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29221;19900192114;"Aschkenas";journal;"18659438, 10164987";"Walter de Gruyter GmbH";No;No;0,111;Q3;4;19;30;2170;3;29;0,11;114,21;47,06;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1996-1999, 2001, 2003-2004, 2007, 2010-2011, 2013-2015, 2019-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Literature and Literary Theory (Q3); Religious Studies (Q3)";"Arts and Humanities" +29222;21101303335;"Asian Journal of Arts and Culture";journal;"27739953";"Walailak University";No;No;0,111;Q3;3;28;48;715;15;48;0,31;25,54;72,00;0;Thailand;Asiatic Region;"Walailak University";"2021-2025";"Arts and Humanities (miscellaneous) (Q3); History (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Linguistics and Language (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +29223;16100154760;"Athenaeum";journal;"00046574";"Universita degli Studi di Pavia, Facolta di Lettere";No;No;0,111;Q3;13;4;169;239;3;168;0,00;59,75;0,00;0;Italy;Western Europe;"Universita degli Studi di Pavia, Facolta di Lettere";"2002-2015, 2017-2025";"Classics (Q3); History (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities" +29224;21101033325;"Axon (Italy)";journal;"25326848";"Edizioni Ca' Foscari";Yes;Yes;0,111;Q3;4;8;43;518;6;38;0,14;64,75;42,86;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2017-2025";"Classics (Q3); History (Q3); Archeology (arts and humanities) (Q4)";"Arts and Humanities" +29225;5800207727;"Beitrage zur Geschichte der Deutschen Sprache und Literatur";journal;"00058076, 18659373";"Walter de Gruyter GmbH";No;No;0,111;Q3;11;17;58;1161;4;58;0,10;68,29;39,13;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1874, 1876-1880, 1882, 1884-1889, 1891-1910, 1912-1918, 1920-1940, 1942, 1944-1945, 1947-1953, 1955-1965, 1967-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29226;21101156472;"Bibliotheca Maqriziana";book series;"22116737";"Brill Academic Publishers";No;No;0,111;Q3;1;0;3;0;0;3;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2016, 2018-2019, 2021-2024";"History (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29227;21100430776;"Brill Studies in Greek and Roman Epigraphy";book series;"18762557";"Brill Academic Publishers";No;No;0,111;Q3;11;0;22;0;2;3;0,09;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2012, 2014-2021, 2023-2024";"Classics (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29228;21100426086;"Brill's Japanese Studies Library";book series;"09256512";"Brill Academic Publishers";No;No;0,111;Q3;4;12;47;427;0;3;0,00;35,58;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2021, 2023-2025";"History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Linguistics and Language (Q4); Philosophy (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29229;21101280281;"Brill''s Plutarch Studies";book series;"24518328";"Brill Academic Publishers";No;No;0,111;Q3;3;0;61;0;10;3;0,06;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017, 2019-2024";"Classics (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities" +29230;21100427071;"Brill's Series in Jewish Studies";book series;"09262261";"Brill Academic Publishers";No;No;0,111;Q3;8;0;14;0;3;3;0,23;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2009, 2011-2024";"History (Q3); Linguistics and Language (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29231;21100407618;"Brill's Series on the Early Middle Ages";book series;"18784879";"Brill Academic Publishers";No;No;0,111;Q3;7;10;3;412;1;3;0,00;41,20;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2014, 2016, 2020, 2022, 2024-2026";"Classics (Q3); History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Archeology (arts and humanities) (Q4); Cultural Studies (Q4); Linguistics and Language (Q4); Philosophy (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29232;20000195096;"Bruniana e Campanelliana";journal;"11253819, 17240441";"Fabrizio Serra Editore Srl";No;No;0,111;Q3;6;23;57;1029;2;54;0,03;44,74;54,55;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2011-2025";"History (Q3); Philosophy (Q4)";"Arts and Humanities" +29233;22945;"Byzantion: Revue Internationale des Etudes Byzantines";journal;"22946209, 03782506";"Universa Press";No;No;0,111;Q3;13;0;38;0;7;38;0,09;0,00;0,00;0;Belgium;Western Europe;"Universa Press";"1969, 1972, 1977-1979, 2002-2007, 2009-2024";"History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29234;58362;"Cahiers des Etudes Anciennes";journal;"19232713, 03175065";"Codicille";Yes;Yes;0,111;Q3;6;35;34;3808;4;31;0,04;108,80;66,67;0;Canada;Northern America;"Codicille";"1976, 2011-2025";"Classics (Q3)";"Arts and Humanities" +29235;14000155239;"Capitalism and Society";journal;"21946140, 19320213";"Social Science Research Network";No;No;0,111;Q3;13;0;20;0;3;19;0,14;0,00;0,00;0;United States;Northern America;"Social Science Research Network";"2009-2012, 2014-2017, 2021-2024";"History (Q3); Economics and Econometrics (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +29236;21100442232;"Christians and Jews in Muslim Societies";book series;"22125523";"Brill Academic Publishers";No;No;0,111;Q3;6;1;10;502;0;3;0,00;502,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012, 2014, 2016, 2020, 2022-2025";"History (Q3); Religious Studies (Q4)";"Arts and Humanities" +29237;21100201738;"Cincinnati Romance Review";journal;"21558817, 08839816";"Department of Romance Languages and Literatures";Yes;No;0,111;Q3;5;7;40;217;1;38;0,05;31,00;71,43;0;United States;Northern America;"Department of Romance Languages and Literatures";"2012-2019, 2022-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29238;21101045771;"Comparative Literature: East and West";journal;"25723618";"Informa Healthcare";Yes;No;0,111;Q3;5;14;49;304;14;49;0,38;21,71;36,84;0;United Kingdom;Western Europe;"Informa Healthcare";"2010, 2017-2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29239;19700182807;"Contagion: Journal of Violence, Mimesis, and Culture";journal;"10757201, 19301200";"Michigan State University Press";No;No;0,111;Q3;7;15;38;854;8;36;0,11;56,93;13,33;0;United States;Northern America;"Michigan State University Press";"2010-2025";"Literature and Literary Theory (Q3); Religious Studies (Q3); Cultural Studies (Q4); Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29240;6500153174;"Contemporary Theatre Review";journal;"10486801, 14772264";"Routledge";No;No;0,111;Q3;19;19;88;0;21;77;0,20;0,00;69,70;0;United Kingdom;Western Europe;"Routledge";"1992, 1994-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29241;21101274738;"Critical Theory";journal;"27535193, 25154702";"Porcelain Publishing International LTD";No;No;0,111;Q3;1;11;36;288;7;34;0,24;26,18;15,38;0;United Kingdom;Western Europe;"Porcelain Publishing International LTD";"2021-2025";"Arts and Humanities (miscellaneous) (Q3); Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29242;5600155082;"Cultural Critique";journal;"08824371, 14602458";"University of Minnesota Press";No;No;0,111;Q3;31;33;91;1617;20;78;0,25;49,00;40,74;0;United States;Northern America;"University of Minnesota Press";"2002-2025";"Literature and Literary Theory (Q3); Anthropology (Q4); Cultural Studies (Q4); Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29243;14680;"Daphnis";journal;"18796583, 0300693X";"Brill Academic Publishers";Yes;No;0,111;Q3;7;0;16;0;2;3;0,07;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1973, 1996, 2002-2012, 2015-2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29244;21100826264;"Diacovensia";journal;"13302655, 1849014X";"Strossmayer University of Osijek, Catholic Faculty of Theology in Djakovo";Yes;Yes;0,111;Q3;4;27;94;1043;6;84;0,03;38,63;44,44;0;Croatia;Eastern Europe;"Strossmayer University of Osijek, Catholic Faculty of Theology in Djakovo";"2017-2025";"Religious Studies (Q3)";"Arts and Humanities" +29245;21100207638;"Discursos Fotograficos";journal;"18085652, 19847939";"Universidade Estadual de Londrina";Yes;Yes;0,111;Q3;5;8;61;164;4;55;0,00;20,50;54,55;0;Brazil;Latin America;"Universidade Estadual de Londrina";"2012-2025";"Visual Arts and Performing Arts (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +29246;21100205305;"Divadelni Revue";journal;"08625409";"Institut Umeni";No;No;0,111;Q3;2;37;66;763;2;36;0,05;20,62;68,18;0;Czech Republic;Eastern Europe;"Institut Umeni";"2012-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29247;21100833035;"Documenti e Studi sulla Tradizione Filosofica Medievale";journal;"11225750";"SISMEL Edizioni del Galluzzo";No;No;0,111;Q3;7;9;32;141;5;30;0,22;15,67;33,33;0;Italy;Western Europe;"SISMEL Edizioni del Galluzzo";"2015-2025";"History (Q3); Philosophy (Q4)";"Arts and Humanities" +29248;21101200899;"Documents pour l'Histoire du Francais Langue Etrangere ou Seconde";journal;"09927654, 22214038";"OpenEditions Journals";No;No;0,111;Q3;2;14;41;413;6;39;0,19;29,50;41,67;0;France;Western Europe;"OpenEditions Journals";"2019-2024";"History (Q3); Education (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29249;21101180718;"East Asian Comparative Literature and Culture";book series;"22124772";"Brill Academic Publishers";No;No;0,111;Q3;4;0;3;0;0;3;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2015, 2017, 2019, 2023-2024";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29250;21100197157;"Elenchos";journal;"20377177, 03927342";"Walter de Gruyter GmbH";No;No;0,111;Q3;9;15;38;813;18;38;0,45;54,20;40,00;0;Italy;Western Europe;"Walter de Gruyter GmbH";"2005-2025";"Classics (Q3); Philosophy (Q4)";"Arts and Humanities" +29251;20591;"Emerita";journal;"19888384, 00136662";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,111;Q3;7;12;44;633;8;43;0,14;52,75;58,33;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1971, 1975, 1996, 1998, 2002-2025";"Classics (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29252;21100220142;"Estudios Irlandeses";journal;"1699311X";"Spanish Association for Irish Studies";Yes;Yes;0,111;Q3;7;16;71;406;19;64;0,30;25,38;71,43;0;Spain;Western Europe;"Spanish Association for Irish Studies";"2012-2025";"Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29253;21100204306;"European Journal of Scandinavian Studies";journal;"21919402, 21919399";"Walter de Gruyter GmbH";No;No;0,111;Q3;5;18;47;708;7;46;0,23;39,33;61,90;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2010-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29254;21101145392;"Explorations in Medieval Culture";book series;"23520299";"Brill Academic Publishers";No;No;0,111;Q3;7;13;112;1548;23;3;0,10;119,08;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2019, 2021-2025";"History (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29255;5700161185;"Filozofski Vestnik";journal;"15811239, 03534510";"Zalozba ZRC";Yes;No;0,111;Q3;11;0;97;0;15;95;0,11;0,00;0,00;0;Slovenia;Eastern Europe;"Zalozba ZRC";"2002-2024";"Religious Studies (Q3)";"Arts and Humanities" +29256;21100208094;"Foro Hispanico";book series;"09258620, 18757375";"Brill Academic Publishers";No;No;0,111;Q3;4;3;55;1156;3;3;0,00;385,33;66,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29257;21100205725;"Franciscan Studies";journal;"00805459, 19459718";"Saint Bonaventure University";No;No;0,111;Q3;6;10;29;1149;2;28;0,00;114,90;7,69;0;United States;Northern America;"Saint Bonaventure University";"2011-2012, 2014-2025";"History (Q3); Religious Studies (Q3)";"Arts and Humanities" +29258;21101145629;"Heterodoxia Iberica";book series;"22130594";"Brill Academic Publishers";No;No;0,111;Q3;0;0;4;0;0;3;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014, 2018-2019, 2023-2024";"History (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29259;29128;"Historical Geography";journal;"10916458, 23317523";"University of Nebraska Press";No;No;0,111;Q3;21;0;7;0;0;3;0,00;0,00;0,00;0;United States;Northern America;"University of Nebraska Press";"1995, 1997-2003, 2005-2012, 2017-2023";"History (Q3); Arts and Humanities (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +29260;21101291392;"History of Metaphysics: Ancient, Medieval, Modern";book series;"26669307";"Brill Academic Publishers";No;No;0,111;Q3;1;16;3;1162;0;3;0,00;72,63;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2025";"History (Q3); Philosophy (Q4)";"Arts and Humanities" +29261;21101148015;"History of Oriental Studies";book series;"24054488";"Brill Academic Publishers";No;No;0,111;Q3;8;0;25;0;1;3;0,04;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2024";"History (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29262;21101226565;"History Studies";journal;"13094688, 13094173";"";Yes;Yes;0,111;Q3;2;47;148;2205;14;148;0,09;46,91;33,33;0;Turkey;Middle East;"";"2022-2026";"History (Q3)";"Arts and Humanities" +29263;21100407200;"Impact of Empire";book series;"15720500";"Brill Academic Publishers";No;No;0,111;Q3;17;0;79;0;15;3;0,09;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2004, 2006-2007, 2009-2012, 2014-2024";"Classics (Q3); History (Q3)";"Arts and Humanities" +29264;21101242021;"International Journal of Wood Culture";journal;"27723186, 27723194";"Brill Academic Publishers";Yes;Yes;0,111;Q3;1;23;3;1012;0;3;0,00;44,00;48,44;0;Netherlands;Western Europe;"Brill Academic Publishers";"2024-2025";"History (Q3); Arts and Humanities (miscellaneous) (Q4); Biomaterials (Q4)";"Arts and Humanities; Materials Science" +29265;21100427879;"Iran Studies";book series;"15697401";"Brill Academic Publishers";No;No;0,111;Q3;8;12;3;597;0;3;0,00;49,75;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2009-2010, 2012, 2014-2015, 2017-2019, 2021, 2023-2025";"History (Q3); Anthropology (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29266;21101131181;"Istorijski Casopis";journal;"03500802";"Istorijski Institut";No;No;0,111;Q3;2;16;49;955;3;49;0,10;59,69;22,22;0;Serbia;Eastern Europe;"Istorijski Institut";"2019-2025";"History (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Arts and Humanities (miscellaneous) (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29267;21101274784;"Istoriko-Filosofskii Ezhegodnik";journal;"27826538, 01348655";"Institute of Philosophy, Russian Academy of Sciences";No;No;0,111;Q3;2;16;41;664;2;38;0,04;41,50;46,67;0;Russian Federation;Eastern Europe;"Institute of Philosophy, Russian Academy of Sciences";"2021-2025";"History (Q3); Philosophy (Q4)";"Arts and Humanities" +29268;21101230579;"Itamar";journal;"23868260";"Universitat de Valencia";Yes;Yes;0,111;Q3;1;21;61;386;3;51;0,06;18,38;57,14;0;Spain;Western Europe;"Universitat de Valencia";"2020-2025";"Music (Q3)";"Arts and Humanities" +29269;21100927391;"J19";journal;"2166742X, 21667438";"University of Pennsylvania Press";No;No;0,111;Q3;4;6;65;332;10;44;0,12;55,33;57,14;0;United States;Northern America;"University of Pennsylvania Press";"2019-2025";"History (Q3); Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29270;21100216535;"Jahrbuch der Osterreichischen Byzantinistik";book series;"1810536X, 03788660";"Austrian Academy of Sciences";No;No;0,111;Q3;11;9;39;1145;12;39;0,43;127,22;44,44;0;Austria;Western Europe;"Austrian Academy of Sciences";"2010-2018, 2020-2025";"History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29271;21100228133;"Jahrbuch fur Regionalgeschichte";book series;"18608248";"Franz Steiner Verlag Wiesbaden GmbH";No;No;0,111;Q3;3;0;64;0;1;3;0,00;0,00;0,00;0;Germany;Western Europe;"Franz Steiner Verlag Wiesbaden GmbH";"2011-2014, 2017-2018, 2021-2024";"History (Q3)";"Arts and Humanities" +29272;21101057634;"Journal for the History of Rhetoric";journal;"26878011, 26878003";"Penn State University Press";No;No;0,111;Q3;4;0;3;0;2;3;0,00;0,00;0,00;0;United States;Northern America;"Penn State University Press";"2020-2021, 2023";"Literature and Literary Theory (Q3); Communication (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29273;5800208396;"Journal of American Culture";journal;"1542734X, 15427331";"John Wiley and Sons Inc";No;No;0,111;Q3;23;21;89;941;14;85;0,20;44,81;61,90;0;United States;Northern America;"John Wiley and Sons Inc";"1996-1999, 2003-2026";"History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29274;21100259124;"Journal of Beckett Studies";journal;"17597811, 03095207";"Edinburgh University Press";No;No;0,111;Q3;11;14;46;278;4;28;0,11;19,86;22,22;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29275;21100872797;"Journal of Contemporary Drama in English";journal;"21950156, 21950164";"Walter de Gruyter GmbH";No;No;0,111;Q3;10;18;62;501;8;55;0,12;27,83;58,82;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2013-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29276;21101193867;"Journal of Finnish Studies";journal;"12066516, 28315081";"University of Illinois Press";No;No;0,111;Q3;5;8;37;389;4;34;0,12;48,63;75,00;0;United States;Northern America;"University of Illinois Press";"2019-2025";"History (Q3); Cultural Studies (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29277;16200154743;"Journal of the British Archeological Association";journal;"17476704, 00681288";"Maney Publishing";No;No;0,111;Q3;9;9;28;981;5;28;0,22;109,00;25,00;0;United Kingdom;Western Europe;"Maney Publishing";"1980-1995, 2002-2025";"Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29278;21100940537;"Journal of Vietnamese Studies";journal;"1559372X, 15593738";"University of California Press";No;No;0,111;Q3;6;18;70;770;13;64;0,21;42,78;43,75;0;United States;Northern America;"University of California Press";"2017, 2019-2025";"History (Q3); Anthropology (Q4); Cultural Studies (Q4); Linguistics and Language (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29279;21101023013;"Lietuvos Muzikologija";journal;"13929313";"Lithuanian Academy of Music and Theatre";No;No;0,111;Q3;2;9;40;431;2;37;0,04;47,89;66,67;0;Lithuania;Eastern Europe;"Lithuanian Academy of Music and Theatre";"2019-2024";"Music (Q3)";"Arts and Humanities" +29280;21100868872;"Linguistic Approaches to Literature";book series;"15693112";"John Benjamins Publishing Company";No;No;0,111;Q3;19;0;5;0;7;3;0,00;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2002-2003, 2006, 2008-2010, 2012-2019, 2021-2024";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29281;21101028195;"Literatura";journal;"02580802, 16481143";"Vilnius University Press";Yes;Yes;0,111;Q3;2;47;79;1254;6;77;0,06;26,68;76,47;0;Lithuania;Eastern Europe;"Vilnius University Press";"2019-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29282;21101023071;"Litteraria Pragensia";journal;"08628424, 2571452X";"Charles University, Faculty of Arts";Yes;No;0,111;Q3;2;15;49;314;5;44;0,06;20,93;56,25;0;Czech Republic;Eastern Europe;"Charles University, Faculty of Arts";"2019-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29283;19500157421;"Materiali e Discussioni per l'Analisi dei Testi Classici";journal;"03926338, 17241693";"Fabrizio Serra Editore Srl";No;No;0,111;Q3;9;17;48;1393;4;48;0,10;81,94;16,67;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2009-2019, 2021-2025";"Classics (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities" +29284;21101290591;"Medieval and Early Modern Philosophy and Science";book series;"24686808";"Brill Academic Publishers";No;No;0,111;Q3;4;2;50;1543;17;3;0,11;771,50;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006, 2009-2011, 2014-2016, 2018-2025";"History (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities" +29285;5700168905;"Mississippi Quarterly";journal;"0026637X";"John Hopkins University";No;No;0,111;Q3;12;15;35;476;4;35;0,09;31,73;46,15;0;United States;Northern America;"John Hopkins University";"1964, 1982, 2002-2017, 2020-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29286;5700156085;"Moyen Age";journal;"17821436, 00272841";"De Boeck Supérieur";No;No;0,111;Q3;8;0;51;0;4;49;0,10;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"2001-2024";"History (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29287;21100444325;"Muslim Minorities";book series;"15707571";"Brill Academic Publishers";No;No;0,111;Q3;10;3;22;441;5;3;0,24;147,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008, 2010-2026";"History (Q3); Anthropology (Q4); Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29288;21100406766;"Nag Hammadi and Manichaean Studies";book series;"09292470";"Brill Academic Publishers";No;No;0,111;Q3;12;1;35;596;6;3;0,28;596,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2005-2016, 2018-2023, 2025";"Classics (Q3); History (Q3); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +29289;16100154795;"Neue Zeitschrift fur Systematische Theologie und Religionsphilosophie";journal;"16129520, 00283517";"Walter de Gruyter GmbH";No;No;0,111;Q3;11;31;81;986;11;72;0,10;31,81;15,38;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1959-2026";"Religious Studies (Q3); Philosophy (Q4)";"Arts and Humanities" +29290;21100200627;"Northern Lights";journal;"1601829X, 20400586";"Intellect Ltd.";No;No;0,111;Q3;13;10;25;336;8;25;0,33;33,60;83,33;0;United Kingdom;Western Europe;"Intellect Ltd.";"2012-2014, 2016-2025";"Visual Arts and Performing Arts (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +29291;21100407177;"Northern World";book series;"15691462";"Brill Academic Publishers";No;No;0,111;Q3;11;17;23;969;1;3;0,04;57,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2021, 2023-2025";"History (Q3); Archeology (arts and humanities) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29292;21100405663;"Novum Testamentum, Supplements";book series;"01679732";"Brill Academic Publishers";No;No;0,111;Q3;12;23;22;1733;2;3;0,09;75,35;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2017, 2019-2021, 2023-2026";"Classics (Q3); History (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29293;21100972982;"Ordines Militares";journal;"23917512, 08672008";"Uniwersytet Mikolaja Kopernika";Yes;No;0,111;Q3;2;7;30;446;7;30;0,14;63,71;20,00;0;Poland;Eastern Europe;"Uniwersytet Mikolaja Kopernika";"2015, 2019-2025";"History (Q3)";"Arts and Humanities" +29294;23707;"Pennsylvania History";journal;"00314528, 21532109";"Penn State University Press";No;No;0,111;Q3;8;26;74;1885;4;73;0,04;72,50;43,48;0;United States;Northern America;"Penn State University Press";"1942-1943, 1963, 1971, 1977-1978, 1980-1981, 1984-1987, 1990, 1995, 1999-2000, 2010-2025";"History (Q3)";"Arts and Humanities" +29295;21101291009;"Philosophy as a Way of Life";book series;"26666243";"Brill Academic Publishers";No;No;0,111;Q3;1;0;20;0;0;3;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2023-2024, 2026";"Classics (Q3); Philosophy (Q4)";"Arts and Humanities" +29296;21101289840;"Political and Public Theologies";book series;"26669218";"Brill Academic Publishers";No;No;0,111;Q3;2;18;23;935;7;3;0,00;51,94;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2022-2023, 2025";"History (Q3); Religious Studies (Q4)";"Arts and Humanities" +29297;21100455734;"Popolazione e Storia";journal;"15914798, 22806784";"Forum-Editrice Universitaria Udinese SRL";No;No;0,111;Q3;5;9;30;400;6;30;0,27;44,44;38,89;0;Italy;Western Europe;"Forum-Editrice Universitaria Udinese SRL";"2015-2025";"History (Q3); Demography (Q4)";"Arts and Humanities; Social Sciences" +29298;21101095134;"Prace Slawistyczne. Slavica";book series;"02084058";"Polish Academy of Sciences, Institute of Slavic Studies";No;No;0,111;Q3;1;0;3;0;0;3;0,00;0,00;0,00;0;Poland;Eastern Europe;"Polish Academy of Sciences, Institute of Slavic Studies";"2019, 2021-2024";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29299;21100892243;"Revista Arta";journal;"25376136, 23451181";"Institute of Cultural Heritage of the Academy of Sciences of Moldova";Yes;No;0,111;Q3;2;47;127;739;4;117;0,04;15,72;72,09;0;Moldova;Eastern Europe;"Institute of Cultural Heritage of the Academy of Sciences of Moldova";"2018-2024";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29300;21101063723;"Romanica Wratislaviensia";journal;"05572665";"Wydawnictwo Uniwersytetu Wroclawskiego Sp. z o.o.";Yes;Yes;0,111;Q3;3;20;52;403;2;52;0,03;20,15;83,33;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Wroclawskiego Sp. z o.o.";"2019-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29301;21101180706;"RussianStudiesHu";journal;"26770660, 26771640";"Eotvos Lorand University Faculty of Arts, Russian Studies Center";Yes;Yes;0,111;Q3;2;23;71;859;5;71;0,10;37,35;54,17;0;Hungary;Eastern Europe;"Eotvos Lorand University Faculty of Arts, Russian Studies Center";"2020-2025";"History (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +29302;21101041839;"Santander, Estudios de Patrimonio";journal;"26055317, 26054450";"Universidad de Cantabria";Yes;Yes;0,111;Q3;2;19;45;789;3;45;0,06;41,53;27,78;0;Spain;Western Europe;"Universidad de Cantabria";"2018-2025";"History (Q3); Visual Arts and Performing Arts (Q3); Archeology (arts and humanities) (Q4); Arts and Humanities (miscellaneous) (Q4); Conservation (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29303;19600157912;"Scottish Literary Review";journal;"20506678, 17565634";"Association for Scottish Literary Studies";No;No;0,111;Q3;9;18;56;1070;12;51;0,21;59,44;61,11;0;United Kingdom;Western Europe;"Association for Scottish Literary Studies";"2009-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29304;21101155959;"SCROLL: Scottish Cultural Review of Language and Literature";book series;"15710734";"Brill Academic Publishers";No;No;0,111;Q3;5;27;3;786;0;3;0,00;29,11;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2005-2018, 2020-2023, 2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29305;21101160638;"Sicilia Antiqva";journal;"17249112, 18254780";"Fabrizio Serra Editore Srl";No;No;0,111;Q3;2;12;42;623;4;42;0,14;51,92;40,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2025";"History (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29306;17100;"South Asian Studies";journal;"21532699, 02666030";"Taylor and Francis Ltd.";No;No;0,111;Q3;17;19;45;1009;11;42;0,16;53,11;40,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-2026";"History (Q3); Archeology (arts and humanities) (Q4); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29307;21100925741;"Spirituality Studies";journal;"13399578";"Society for Spirituality Studies";Yes;Yes;0,111;Q3;4;12;42;451;10;35;0,28;37,58;60,00;0;Slovakia;Eastern Europe;"Society for Spirituality Studies";"2019-2025";"Religious Studies (Q3); Philosophy (Q4)";"Arts and Humanities" +29308;21101183495;"Studia Romanistica";journal;"18036406, 25710265";"University of Ostrava";Yes;Yes;0,111;Q3;2;16;34;424;5;30;0,12;26,50;66,67;0;Czech Republic;Eastern Europe;"University of Ostrava";"2022-2025";"Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29309;21101056818;"Studien zur Deutschen Sprache und Literatur";journal;"26199890, 13039407";"Istanbul University Faculty of Letters";Yes;Yes;0,111;Q3;2;14;43;458;4;43;0,10;32,71;68,42;0;Turkey;Middle East;"Istanbul University Faculty of Letters";"2019-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29310;21100406942;"Studies in Central European Histories";book series;"15471217";"Brill Academic Publishers";No;No;0,111;Q3;6;0;12;0;1;3;0,08;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2012, 2014-2016, 2018-2021, 2023-2024";"History (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29311;21100927242;"Studies in Comics";journal;"20403232, 20403240";"Intellect Ltd.";No;No;0,111;Q3;4;16;41;484;6;37;0,22;30,25;62,50;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2023, 2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29312;21101145628;"Studies in Global Slavery";book series;"24054585";"Brill Academic Publishers";No;No;0,111;Q3;5;0;50;0;13;3;0,11;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2018-2020, 2022-2024";"History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29313;21100406404;"Studies in Jewish History and Culture";book series;"15685004";"Brill Academic Publishers";No;No;0,111;Q3;8;45;3;4915;0;3;0,00;109,22;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2021, 2023-2026";"History (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29314;21100430692;"Studies in the History of Chinese Texts";book series;"18779425";"Brill Academic Publishers";No;No;0,111;Q3;7;0;23;0;2;3;0,09;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010, 2012-2014, 2017-2018, 2021, 2023-2024, 2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29315;21100406946;"Texts and Studies on the Qur'an";book series;"15672808";"Brill Academic Publishers";No;No;0,111;Q3;13;0;15;0;10;3;0,67;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2009-2011, 2013, 2016-2021, 2023-2024, 2026";"History (Q3); Cultural Studies (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29316;21101145626;"Textxet: Studies in Comparative Literature";book series;"09275754";"Brill Academic Publishers";No;No;0,111;Q3;8;0;152;0;14;3;0,08;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2000-2005, 2007-2009, 2011-2024, 2026";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29317;21101232740;"TheoRemes";journal;"16640136";"Association De La Revue Theoremes";Yes;No;0,111;Q3;1;31;35;859;2;29;0,05;27,71;33,33;0;France;Western Europe;"Association De La Revue Theoremes";"2019, 2021-2025";"Religious Studies (Q3); Philosophy (Q4)";"Arts and Humanities" +29318;6000152817;"Third Text";journal;"09528822";"Taylor and Francis Ltd.";No;No;0,111;Q3;26;8;102;128;36;96;0,24;16,00;20,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1987-2026";"Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29319;16200154773;"Wallace Stevens Journal";journal;"01487132";"Johns Hopkins University Press";No;No;0,111;Q3;7;11;48;341;5;44;0,14;31,00;30,00;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29320;16000154753;"Western American Literature";journal;"00433462";"Western Literature Association";No;No;0,111;Q3;9;12;41;438;3;41;0,04;36,50;36,36;0;United States;Northern America;"Western Literature Association";"2002-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29321;21118;"Ziva Antika";journal;"05147727, 26713985";"Faculty of Philosophy in Skopje";Yes;Yes;0,111;Q3;3;44;41;2710;5;41;0,15;61,59;37,74;0;Macedonia;Eastern Europe;"Faculty of Philosophy in Skopje";"1971, 2019-2025";"Classics (Q3)";"Arts and Humanities" +29322;19600157209;"Acta Microscopica";journal;"07984545";"Interamerican Society for Electron Microscopy (CIASEM)";Yes;Yes;0,111;Q4;8;29;70;626;11;55;0,20;21,59;43,18;0;Venezuela;Latin America;"Interamerican Society for Electron Microscopy (CIASEM)";"1995, 2009-2025";"Instrumentation (Q4); Materials Science (miscellaneous) (Q4); Microbiology (medical) (Q4)";"Materials Science; Medicine; Physics and Astronomy" +29323;21101026937;"Animal Migration";journal;"20848838";"Walter de Gruyter GmbH";Yes;No;0,111;Q4;14;0;3;0;0;3;0,00;0,00;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2013, 2015-2022";"Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +29324;7400153107;"Architektura a Urbanizmus";journal;"00448680";"Slovak Academy of Sciences";Yes;No;0,111;Q4;7;13;66;579;12;59;0,19;44,54;41,67;0;Slovakia;Eastern Europe;"Slovak Academy of Sciences";"2007-2025";"Architecture (Q4); Conservation (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +29325;21100857877;"Arheologia Moldovei";journal;"00667358, 25015893";"Publishing House of the Romanian Academy";Yes;Yes;0,111;Q4;3;0;43;0;3;40;0,09;0,00;0,00;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2017-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29326;21101287242;"ASCOMARE Yearbook on the Law of the Sea";book series;"30351448";"Luglio Editore";No;No;0,111;Q4;1;0;46;0;2;3;0,03;0,00;0,00;0;Italy;Western Europe;"Luglio Editore";"2021-2024";"Law (Q4)";"Social Sciences" +29327;21100861100;"Asian Journal of Applied Linguistics";journal;"23086262";"University of Hong Kong - Centre for Applied English Studies";Yes;No;0,111;Q4;7;0;3;0;0;3;0,00;0,00;0,00;0;China;Asiatic Region;"University of Hong Kong - Centre for Applied English Studies";"2018-2021, 2024";"Linguistics and Language (Q4)";"Social Sciences" +29328;29135;"Aurora";book series;"20149107, 15755045";"Edicions Universitat de Barcelona";Yes;Yes;0,111;Q4;5;12;40;399;6;40;0,19;33,25;40,00;0;Spain;Western Europe;"Edicions Universitat de Barcelona";"2011-2017, 2019-2025";"Philosophy (Q4)";"Arts and Humanities" +29329;21100201043;"Banking and Finance Review";journal;"19477945, 19476140";"";No;No;0,111;Q4;8;0;16;0;5;16;0,25;0,00;0,00;0;United States;Northern America;"";"2009-2019, 2021-2024";"Economics and Econometrics (Q4); Finance (Q4)";"Economics, Econometrics and Finance" +29330;5800209329;"Beitrage zur Geschichte der Sprachwissenschaft";journal;"09392815";"Nodus Publikationen";No;No;0,111;Q4;7;14;38;764;7;35;0,15;54,57;57,14;0;Germany;Western Europe;"Nodus Publikationen";"2009-2025";"Linguistics and Language (Q4)";"Social Sciences" +29331;21101168053;"Bilingual Processing and Acquisition";book series;"23520531";"John Benjamins Publishing Company";No;No;0,111;Q4;8;0;64;0;63;3;0,73;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2024";"Developmental and Educational Psychology (Q4); Education (Q4); Linguistics and Language (Q4)";"Psychology; Social Sciences" +29332;20065;"BioPharm International";trade journal;"1542166X, 19391862";"Advanstar Communications Inc.";No;No;0,111;Q4;33;43;320;163;24;158;0,09;3,79;35,71;0;United States;Northern America;"Advanstar Communications Inc.";"2002-2025";"Biotechnology (Q4); Pharmaceutical Science (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +29333;21100438195;"Central and Eastern Europe";book series;"18778550";"Brill Academic Publishers";No;No;0,111;Q4;4;3;28;402;3;3;0,07;134,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2016, 2019, 2022-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29334;21100451314;"Chinese and Comparative Law Series";book series;"22134875";"Brill Academic Publishers";No;No;0,111;Q4;4;0;4;0;0;3;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012, 2015, 2017-2024, 2026";"Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29335;21100212400;"Chirurgia (Turin)";journal;"18271782, 03949508";"Minerva Medica";No;No;0,111;Q4;10;81;242;1670;27;234;0,13;20,62;33,93;0;Italy;Western Europe;"Minerva Medica";"1973-1985, 1988-2025";"Surgery (Q4)";"Medicine" +29336;21101357981;"Clinical Endocrinology and Endocrine Surgery";journal;"18181384, 25192582";"Publishing Company VIT-A-POL";No;No;0,111;Q4;3;41;106;1006;13;106;0,10;24,54;51,67;0;Ukraine;Eastern Europe;"Publishing Company VIT-A-POL";"2021-2025";"Endocrinology, Diabetes and Metabolism (Q4); Surgery (Q4)";"Medicine" +29337;21101287245;"Comparative Law in Global Perspective";book series;"27725332";"Brill Nijhoff";No;No;0,111;Q4;1;1;65;366;3;3;0,05;366,00;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"2022-2025";"Law (Q4)";"Social Sciences" +29338;21101282683;"Critical Storytelling";book series;"25900099";"Brill Academic Publishers";No;No;0,111;Q4;2;0;93;0;3;3;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2022, 2024";"Education (Q4)";"Social Sciences" +29339;24794;"Das Argument";journal;"00041157";"Argument Verlag GmbH";No;No;0,111;Q4;6;6;136;109;5;125;0,04;18,17;42,86;0;Germany;Western Europe;"Argument Verlag GmbH";"1979, 2011, 2013-2025";"Philosophy (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29340;21100406834;"Developments in International Law";book series;"09245332";"Brill Academic Publishers";No;No;0,111;Q4;12;1;18;2195;2;3;0,11;2195,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2010, 2013-2015, 2020-2021, 2023-2025";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +29341;21101283189;"Doing Arts Thinking: Arts Practice, Research and Education";book series;"25429744";"Brill Academic Publishers";No;No;0,111;Q4;5;0;78;0;4;3;0,05;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2018, 2020-2021, 2023-2024, 2026";"Education (Q4)";"Social Sciences" +29342;5600153675;"Dve Domovini";journal;"15811212, 03536777";"Zalozba ZRC";Yes;Yes;0,111;Q4;14;8;65;261;12;60;0,18;32,63;58,33;0;Slovenia;Eastern Europe;"Zalozba ZRC";"2008-2025";"Cultural Studies (Q4); Demography (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29343;21857;"Enfermedades Infecciosas y Microbiologia";journal;"14050994";"Comunicaciones Cientificas Mexicanas S.A. de C.V.";No;No;0,111;Q4;8;34;85;654;6;73;0,07;19,24;50,85;0;Mexico;Latin America;"Comunicaciones Cientificas Mexicanas S.A. de C.V.";"1997-2014, 2017-2025";"Infectious Diseases (Q4); Microbiology (medical) (Q4)";"Medicine" +29344;21101063828;"E-Revista de Estudos Interculturais";journal;"21826439";"Center for Intercultural Studies, Polytechnic of Porto";No;No;0,111;Q4;4;36;85;1519;18;81;0,26;42,19;65,15;0;Portugal;Western Europe;"Center for Intercultural Studies, Polytechnic of Porto";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Communication (Q4); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29345;16200154752;"FF Communications";book series;"00145815";"Academia Scientiarum Fennica";No;No;0,111;Q4;6;0;4;0;0;3;0,00;0,00;0,00;0;Finland;Western Europe;"Academia Scientiarum Fennica";"2002-2007, 2009-2010, 2012-2023";"Anthropology (Q4); Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29346;21100833037;"Filologia Mediolatina";journal;"11240008";"SISMEL Edizioni del Galluzzo";No;No;0,111;Q4;3;11;26;155;2;23;0,06;14,09;20,00;0;Italy;Western Europe;"SISMEL Edizioni del Galluzzo";"2015-2025";"Linguistics and Language (Q4)";"Social Sciences" +29347;21100872828;"Foundations and Trends in Programming Languages";journal;"23251107, 23251131";"Now Publishers Inc";No;No;0,111;Q4;13;3;3;500;0;3;0,00;166,67;10,00;0;United States;Northern America;"Now Publishers Inc";"2014-2025";"Computer Science Applications (Q4); Software (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +29348;21101021457;"Frontiers in Natural Product Chemistry";book series;"15740897, 22123997";"Bentham Science Publishers";No;No;0,111;Q4;4;0;22;0;9;3;0,33;0,00;0,00;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2019-2023";"Analytical Chemistry (Q4); Biochemistry (Q4); Organic Chemistry (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemistry" +29349;21101141650;"Gastroenterologie";journal;"27317420, 27317439";"Springer Medizin";No;No;0,111;Q4;6;85;161;1675;21;120;0,13;19,71;34,34;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Gastroenterology (Q4)";"Medicine" +29350;28693;"Geographical Bulletin - Gamma Theta Upsilon";journal;"07313292";"";No;No;0,111;Q4;12;0;25;0;7;19;0,00;0,00;0,00;0;United States;Northern America;"";"1988-2006, 2008-2022, 2024";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +29351;19700174953;"Ginekologia i Poloznictwo";journal;"18980759, 18963315";"Medical Project Poland";Yes;No;0,111;Q4;5;0;73;0;8;73;0,13;0,00;0,00;0;Poland;Eastern Europe;"Medical Project Poland";"2008-2024";"Obstetrics and Gynecology (Q4)";"Medicine" +29352;21101257054;"Giornale di Clinica Nefrologica e Dialisi";journal;"27050076";"AboutScience Srl";Yes;No;0,111;Q4;3;18;56;317;6;48;0,10;17,61;47,92;0;Italy;Western Europe;"AboutScience Srl";"2020-2026";"Nephrology (Q4); Public Health, Environmental and Occupational Health (Q4); Urology (Q4)";"Medicine" +29353;21607;"Glass International";trade journal;"01437836";"DMG World Media (UK) Ltd.";No;No;0,111;Q4;4;55;366;18;6;351;0,02;0,33;28,00;0;United Kingdom;Western Europe;"DMG World Media (UK) Ltd.";"1982-1989, 1991-1998, 2001-2025";"Ceramics and Composites (Q4); Industrial and Manufacturing Engineering (Q4)";"Engineering; Materials Science" +29354;17974;"In Silico Biology";journal;"13866338, 14343207";"SAGE Publications Ltd";No;No;0,111;Q4;51;1;3;0;0;3;0,00;0,00;0,00;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"1998-1999, 2002-2012, 2015, 2017, 2019-2020, 2023, 2025";"Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Genetics (Q4); Medicine (miscellaneous) (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology; Computer Science; Mathematics; Medicine" +29355;21101183647;"Indian Journal of Canine Practice";journal;"23494174, 22776729";"Indian Society for Advancement of Canine Practice";No;No;0,111;Q4;2;0;167;0;17;167;0,08;0,00;0,00;0;India;Asiatic Region;"Indian Society for Advancement of Canine Practice";"2019-2024";"Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +29356;21101150316;"Inter-American Yearbook on Human Rights/Anuario Interamericano de Derechos Humanos";book series;"09207775";"Brill Academic Publishers";No;No;0,111;Q4;0;0;3;0;0;3;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1991, 1993, 1995, 1998, 2000, 2002, 2004, 2006-2007, 2009-2022, 2024, 2026";"Law (Q4)";"Social Sciences" +29357;21101278423;"International Conference on Big Data and Information Analytics, BigDIA";journal;"27716910, 27716902";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,111;Q4;2;0;130;0;29;128;0,22;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Decision Sciences (miscellaneous) (Q4); Information Systems (Q4); Information Systems and Management (Q4)";"Computer Science; Decision Sciences" +29358;145378;"International Journal of Electrical Engineering";journal;"18123031";"Chinese Institute of Electrical Engineering";No;No;0,111;Q4;9;9;28;231;2;28;0,00;25,67;34,48;0;Taiwan;Asiatic Region;"Chinese Institute of Electrical Engineering";"2004-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +29359;21101283132;"International Political Anthropology";journal;"22839887, 19747268";"";No;No;0,111;Q4;3;21;43;535;7;34;0,17;25,48;25,00;0;Italy;Western Europe;"";"2021-2025";"Anthropology (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29360;21101148502;"International Studies on Military Ethics";book series;"22147926";"Brill Academic Publishers";No;No;0,111;Q4;2;0;25;0;3;3;0,12;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2016, 2018-2019, 2023-2024, 2026";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +29361;21101197369;"International Water Law Series";book series;"23519606";"Brill Nijhoff";No;No;0,111;Q4;5;0;3;0;1;3;0,33;0,00;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"2014-2015, 2017-2020, 2023-2024";"Management, Monitoring, Policy and Law (Q4); Political Science and International Relations (Q4)";"Environmental Science; Social Sciences" +29362;15300;"JK Science";journal;"09721177";"JK Science";Yes;Yes;0,111;Q4;20;71;195;960;19;182;0,07;13,52;54,04;0;India;Asiatic Region;"JK Science";"2001-2026";"Internal Medicine (Q4)";"Medicine" +29363;21100258757;"Journal of Classroom Interaction";journal;"07494025";"University of Houston";No;No;0,111;Q4;14;0;3;0;0;3;0,00;0,00;0,00;0;United States;Northern America;"University of Houston";"2009, 2014-2020, 2023";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +29364;19700175062;"Journal of Practical Oncology";journal;"10011692";"Journal of Practical Oncology, Editorial Board";No;No;0,111;Q4;5;34;195;1030;26;194;0,13;30,29;47,45;0;China;Asiatic Region;"Journal of Practical Oncology, Editorial Board";"2009-2025";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +29365;19700169102;"Journal of Stem Cells";journal;"15568539";"Nova Science Publishers, Inc.";No;No;0,111;Q4;23;0;4;0;0;3;0,00;0,00;0,00;0;United States;Northern America;"Nova Science Publishers, Inc.";"2006-2022";"Cell Biology (Q4); Genetics (Q4); Molecular Medicine (Q4); Transplantation (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +29366;21101294617;"Journal of Sustainable Competitive Intelligence";journal;"30857813";"Editora Alumni In";No;No;0,111;Q4;2;27;25;915;5;25;0,20;33,89;38,67;0;Brazil;Latin America;"Editora Alumni In";"2023-2026";"Business, Management and Accounting (miscellaneous) (Q4); Decision Sciences (miscellaneous) (Q4); Development (Q4); Management, Monitoring, Policy and Law (Q4)";"Business, Management and Accounting; Decision Sciences; Environmental Science; Social Sciences" +29367;21101312747;"Journal of Thai Studies";journal;"16867459, 28220668";"Chulalongkorn University";No;No;0,111;Q4;1;14;41;453;3;41;0,07;32,36;54,55;0;Thailand;Asiatic Region;"Chulalongkorn University";"2021-2025";"Anthropology (Q4); Cultural Studies (Q4); Linguistics and Language (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29368;20905;"Kriminalistik";journal;"00234699";"Huthig GmbH";No;No;0,111;Q4;9;0;3;0;0;3;0,00;0,00;0,00;0;Germany;Western Europe;"Huthig GmbH";"1974-1983, 1996-2023";"Law (Q4)";"Social Sciences" +29369;21100201763;"Kunstiteaduslikke Uurimusi";journal;"14062860";"Estonian Society of Art Historians";No;No;0,111;Q4;5;22;58;933;5;47;0,05;42,41;56,25;0;Estonia;Eastern Europe;"Estonian Society of Art Historians";"2011-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29370;21100453510;"Leiden Studies on the Frontiers of International Law";book series;"22124195";"Brill Academic Publishers";No;No;0,111;Q4;5;0;3;0;1;3;0,33;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012, 2015, 2017-2021, 2023-2024";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +29371;13964;"Library";journal;"17448581, 00242160";"Oxford University Press";No;No;0,111;Q4;19;20;62;1067;6;60;0,10;53,35;27,78;0;United Kingdom;Western Europe;"Oxford University Press";"1889-1899, 1901-2025";"Arts and Humanities (miscellaneous) (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +29372;21100407361;"Linguistic Biblical Studies";book series;"18777554";"Brill Academic Publishers";No;No;0,111;Q4;7;2;17;760;1;3;0,06;380,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2010, 2012-2020, 2023-2026";"Linguistics and Language (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29373;19700187636;"Liquid Crystals Today";journal;"14645181, 1358314X";"Taylor and Francis Ltd.";No;No;0,111;Q4;22;6;44;102;7;29;0,18;17,00;66,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1991-1996, 2000-2025";"Condensed Matter Physics (Q4); Inorganic Chemistry (Q4); Materials Chemistry (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +29374;21101047131;"Minerva Respiratory Medicine";journal;"27848477, 27246493";"Edizioni Minerva Medica S.p.A.";No;No;0,111;Q4;10;16;94;484;10;84;0,12;30,25;43,93;0;Italy;Western Europe;"Edizioni Minerva Medica S.p.A.";"2021-2025";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +29375;16400154746;"Mitteilungen des Deutschen Archaologischen Instituts - Athenische Abteilung";journal;"03421295";"Verlag Philipp von Zabern GmbH";No;No;0,111;Q4;7;9;3;471;0;3;0,00;52,33;41,67;0;Germany;Western Europe;"Verlag Philipp von Zabern GmbH";"2002-2007, 2009-2010, 2013-2014, 2016, 2024-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29376;21101289831;"Moral Development and Citizenship Education";book series;"23525770";"Brill Academic Publishers";No;No;0,111;Q4;11;19;58;650;18;3;0,11;34,21;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008, 2010-2013, 2015-2019, 2021-2023, 2025-2026";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +29377;28014;"Neonatal Intensive Care";trade journal;"10622454";"Goldstein and Associates";No;No;0,111;Q4;2;18;128;212;2;116;0,03;11,78;55,88;0;United States;Northern America;"Goldstein and Associates";"1990-1994, 2019, 2022-2026";"Critical Care and Intensive Care Medicine (Q4); Critical Care Nursing (Q4); Pediatrics (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine; Nursing" +29378;21101101210;"Neonatology, Surgery and Perinatal Medicine";journal;"22261230, 24134260";"Bukovyna State Medical University";Yes;Yes;0,111;Q4;5;127;230;3184;41;230;0,16;25,07;62,67;0;Ukraine;Eastern Europe;"Bukovyna State Medical University";"2015-2025";"Genetics (clinical) (Q4); Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)";"Medicine" +29379;15118;"Neuro-Ophthalmology Japan";journal;"02897024";"Neuro-Ophthalmology Society of Japan";No;No;0,111;Q4;4;50;103;968;3;102;0,01;19,36;32,82;0;Japan;Asiatic Region;"Neuro-Ophthalmology Society of Japan";"1984-2025";"Neurology (clinical) (Q4); Ophthalmology (Q4)";"Medicine" +29380;21101148503;"Nijhoff International Investment Law Series";book series;"23519592";"Brill Nijhoff";No;No;0,111;Q4;7;28;3;2862;0;3;0,00;102,21;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"2012, 2014-2021, 2023, 2025";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +29381;21101213852;"Notas Economicas";journal;"08724733, 2183203X";"Imprensa da Universidade de Coimbra";Yes;Yes;0,111;Q4;3;12;24;402;5;24;0,29;33,50;45,45;0;Portugal;Western Europe;"Imprensa da Universidade de Coimbra";"2020-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +29382;14052;"Papers in Meteorology and Geophysics";journal;"18806643, 0031126X";"Meteorological Research Institute";No;No;0,111;Q4;17;0;3;0;0;3;0,00;0,00;0,00;0;Japan;Asiatic Region;"Meteorological Research Institute";"1950-2014, 2016, 2018, 2020-2023";"Atmospheric Science (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +29383;12865;"Photonics Spectra";trade journal;"07311230";"Laurin Publishing Co. Inc.";No;No;0,111;Q4;19;92;220;77;5;106;0,03;0,84;15,38;0;United States;Northern America;"Laurin Publishing Co. Inc.";"1982-1990, 1994-2026";"Analytical Chemistry (Q4); Atomic and Molecular Physics, and Optics (Q4)";"Chemistry; Physics and Astronomy" +29384;25351;"Practical Gastroenterology";journal;"02774208";"Shugar Publishing Inc.";No;No;0,111;Q4;22;35;98;1313;11;70;0,06;37,51;57,45;0;United States;Northern America;"Shugar Publishing Inc.";"1989-2013, 2016-2025";"Gastroenterology (Q4)";"Medicine" +29385;21101298356;"Proceedings of the IEEE International Conference on Computer and Communications, ICCC";journal;"28377109";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,111;Q4;2;0;449;0;59;446;0,13;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Atomic and Molecular Physics, and Optics (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Control and Optimization (Q4); Energy Engineering and Power Technology (Q4); Instrumentation (Q4); Signal Processing (Q4)";"Computer Science; Energy; Mathematics; Physics and Astronomy" +29386;21100856610;"Pro-Fil";journal;"12129097";"Masaryk University, Faculty of Arts, Department of Philosophy";Yes;Yes;0,111;Q4;3;8;28;206;3;28;0,15;25,75;0,00;0;Czech Republic;Eastern Europe;"Masaryk University, Faculty of Arts, Department of Philosophy";"2017-2025";"Philosophy (Q4)";"Arts and Humanities" +29387;16004;"Reference and User Services Quarterly";journal;"10949054";"American Library Association";No;No;0,111;Q4;41;15;8;270;0;3;0,00;18,00;69,23;0;United States;Northern America;"American Library Association";"1997-2019, 2021, 2024-2025";"Information Systems (Q4); Library and Information Sciences (Q4)";"Computer Science; Social Sciences" +29388;21100224421;"Religious Studies and Theology";journal;"17475414, 08292922";"Equinox Publishing Ltd";No;No;0,111;Q4;7;0;36;0;3;33;0,03;0,00;0,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2012-2024";"Religious Studies (Q4)";"Arts and Humanities" +29389;21101186889;"Reports of Morphology";journal;"18181295, 26166194";"Vinnytsia National Pirogov Memorial Medical University";No;No;0,111;Q4;4;40;120;1242;24;120;0,19;31,05;56,67;0;Ukraine;Eastern Europe;"Vinnytsia National Pirogov Memorial Medical University";"2019-2025";"Anatomy (Q4); Histology (Q4); Medicine (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4)";"Medicine" +29390;7600153109;"Revista de Economia del Rosario";journal;"2145454X, 01235362";"Universidad del Rosario";Yes;Yes;0,111;Q4;9;0;28;0;8;28;0,26;0,00;0,00;0;Colombia;Latin America;"Universidad del Rosario";"2007-2024";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +29391;21100242269;"Revista de Estudios Orteguianos";journal;"15770079";"Fundacion Jose Ortega y Gasset";No;No;0,111;Q4;3;22;54;268;4;32;0,12;12,18;50,00;0;Spain;Western Europe;"Fundacion Jose Ortega y Gasset";"2012-2025";"Philosophy (Q4)";"Arts and Humanities" +29392;12569;"Revista Geografica de Chile Terra Australis";journal;"07199562, 03788482";"Universidad Bernardo O'Higgins";No;Yes;0,111;Q4;4;17;62;703;7;59;0,14;41,35;48,72;0;Chile;Latin America;"Universidad Bernardo O'Higgins";"1983-1984, 1986-1987, 1989-1990, 2003, 2007, 2019-2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +29393;21100244952;"Revue Archeologique de Picardie";journal;"07525656, 21043914";"Societe des antiquaires de Picardie";No;No;0,111;Q4;5;21;64;962;3;58;0,03;45,81;46,03;0;France;Western Europe;"Societe des antiquaires de Picardie";"2011-2013, 2017-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29394;27135;"Rivista di Filosofia";journal;"00356239, 26121042";"Societa Editrice Il Mulino";No;No;0,111;Q4;3;25;74;1230;14;72;0,13;49,20;35,71;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1971, 1976, 1980, 1982, 2016-2025";"Philosophy (Q4)";"Arts and Humanities" +29395;21101112605;"Romanian Journal of Medical Practice";journal;"18428258, 20696108";"Amaltea Medical Publishing House";Yes;No;0,111;Q4;5;54;145;1359;18;145;0,16;25,17;46,48;0;Romania;Eastern Europe;"Amaltea Medical Publishing House";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29396;21100831304;"Series on Knots and Everything";book series;"02199769";"World Scientific";No;No;0,111;Q4;3;9;67;0;2;3;0,03;0,00;0,00;0;Singapore;Asiatic Region;"World Scientific";"2017-2021, 2023-2025";"Algebra and Number Theory (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4); Logic (Q4); Mathematical Physics (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics" +29397;40077;"SMPTE Motion Imaging Journal";journal;"15450279, 21602492";"Society of Motion and Television Engineers";No;No;0,111;Q4;23;0;222;0;32;194;0,16;0,00;0,00;0;United States;Northern America;"Society of Motion and Television Engineers";"2002-2024";"Electrical and Electronic Engineering (Q4); Media Technology (Q4)";"Engineering" +29398;5600152872;"Societes Contemporaines";journal;"11501944, 19506899";"Presses de Sciences Po";No;No;0,111;Q4;24;0;35;0;4;32;0,08;0,00;0,00;0;France;Western Europe;"Presses de Sciences Po";"2001-2024";"Sociology and Political Science (Q4)";"Social Sciences" +29399;5800207686;"Sprak och Stil";journal;"11011165";"Adolf Noreen-sallskapet for Svensk Sprak- och Stilforskning";Yes;No;0,111;Q4;6;7;29;379;4;29;0,07;54,14;83,33;0;Sweden;Western Europe;"Adolf Noreen-sallskapet for Svensk Sprak- och Stilforskning";"2011-2026";"Linguistics and Language (Q4)";"Social Sciences" +29400;21100199345;"Studia z Filologii Polskiej i Slowianskiej";journal;"23922435, 00817090";"Polish Academy of Sciences, Institute of Slavic Studies";Yes;Yes;0,111;Q4;4;18;60;970;6;60;0,08;53,89;72,73;0;Poland;Eastern Europe;"Polish Academy of Sciences, Institute of Slavic Studies";"2011-2025";"Linguistics and Language (Q4)";"Social Sciences" +29401;5800160719;"Studii si Cercetari Lingvistice";journal;"0039405X";"Institutul De Lingvistica Iorgu Iordan - Alexandru Rosetti";No;No;0,111;Q4;3;7;57;202;4;56;0,06;28,86;83,33;0;Romania;Eastern Europe;"Institutul De Lingvistica Iorgu Iordan - Alexandru Rosetti";"2011-2025";"Linguistics and Language (Q4)";"Social Sciences" +29402;19700186276;"The Australasian journal of optometry";journal;"0817881X";"Optometrists Association Australia";No;No;0,111;Q4;1;0;4;0;0;3;0,00;0,00;0,00;0;Australia;Pacific Region;"Optometrists Association Australia";"1920-1942, 1944-1959, 2018, 2020, 2022-2024";"Medicine (miscellaneous) (Q4); Ophthalmology (Q4); Optometry (Q4)";"Health Professions; Medicine" +29403;21101199915;"Theory and Practice of Public International Law";book series;"24056847";"Brill Nijhoff";No;No;0,111;Q4;0;0;3;0;0;3;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"2015, 2019, 2021, 2023-2024";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +29404;69812;"Thermology International";journal;"1560604X";"European Association of Thermology";No;No;0,111;Q4;18;0;16;0;3;16;0,22;0,00;0,00;0;Austria;Western Europe;"European Association of Thermology";"2002-2024";"Complementary and Alternative Medicine (Q4)";"Medicine" +29405;19600157311;"Transactions of Japanese Society for Medical and Biological Engineering";journal;"18814379, 1347443X";"Japan Soc. of Med. Electronics and Biol. Engineering";No;No;0,111;Q4;9;21;45;295;7;43;0,10;14,05;11,69;0;Japan;Asiatic Region;"Japan Soc. of Med. Electronics and Biol. Engineering";"2009-2011, 2013-2025";"Biomedical Engineering (Q4)";"Engineering" +29406;21101323223;"Ukrainian Journal of Clinical Surgery";journal;"27868311, 2786832X";"";Yes;No;0,111;Q4;7;85;122;1497;19;103;0,16;17,61;26,36;0;Ukraine;Eastern Europe;"";"2023-2025";"Materials Science (miscellaneous) (Q4); Surgery (Q4)";"Materials Science; Medicine" +29407;13113;"Vertiflite";journal;"16559711, 30825547";"American Helicopter Society";No;No;0,111;Q4;11;0;4;0;0;3;0,00;0,00;0,00;0;United States;Northern America;"American Helicopter Society";"1970-1980, 1982-1995, 1997-1998, 2001-2023";"Aerospace Engineering (Q4)";"Engineering" +29408;19700177005;"Veterinary Practitioner";journal;"09724036";"Veterinary Practitioner";No;No;0,111;Q4;9;50;271;1251;22;267;0,05;25,02;34,78;0;India;Asiatic Region;"Veterinary Practitioner";"2008-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +29409;20856;"West Indian Medical Journal";journal;"00433144, 23095830";"University of the West Indies";Yes;No;0,111;Q4;39;0;69;0;7;57;0,07;0,00;0,00;0;Jamaica;Latin America;"University of the West Indies";"1954-2019, 2021-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +29410;17500154727;"Word of Mouth";journal;"21543941, 10483950";"SAGE Publications Inc.";No;No;0,111;Q4;5;26;82;249;9;61;0,07;9,58;50,00;0;United States;Northern America;"SAGE Publications Inc.";"1990, 1992-1999, 2005-2006, 2008-2026";"Education (Q4)";"Social Sciences" +29411;21101147416;"Yearbook International Tribunal for the Law of the Sea/Annuaire Tribunal international du droit de la mer";book series;"13896288";"Brill Nijhoff";No;No;0,111;Q4;0;0;3;0;0;3;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"1999-2012, 2014-2022, 2024";"Law (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +29412;21101093550;"CESARE Conference Publications";conference and proceedings;"27886204";"Jordan University of Science and Technology";No;No;0,111;-;2;0;38;0;4;37;0,00;0,00;0,00;0;Jordan;Middle East;"Jordan University of Science and Technology";"2022";"Civil and Structural Engineering";"Engineering" +29413;21101180529;"Proceedings of the International Conference of Theoretical and Applied Nanoscience and Nanotechnology";conference and proceedings;"25611070";"Avestia Publishing";No;No;0,111;-;2;33;45;575;8;42;0,29;17,42;31,71;0;Canada;Northern America;"Avestia Publishing";"2022-2025";"Drug Guides; Materials Science (miscellaneous)";"Materials Science; Medicine" +29414;21101068167;"UNCECOMP Proceedings";conference and proceedings;"26233339";"National Technical University of Athens";No;No;0,111;-;4;0;69;0;13;68;0,19;0,00;0,00;0;Greece;Western Europe;"National Technical University of Athens";"2021, 2023";"Computational Theory and Mathematics; Computer Science Applications; Control and Optimization; Discrete Mathematics and Combinatorics; Modeling and Simulation; Statistics and Probability";"Computer Science; Mathematics" +29415;22229;"Al-Qantara";journal;"19882955, 02113589";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,110;Q3;21;11;44;670;9;42;0,12;60,91;30,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1984, 1997-2025";"History (Q3); Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29416;20700195002;"Ausa";journal;"02105853, 20141246";"Patronat d'Estudis Osonencs";Yes;No;0,110;Q3;3;0;31;0;1;31;0,05;0,00;0,00;0;Spain;Western Europe;"Patronat d'Estudis Osonencs";"2011-2019, 2022-2024";"History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29417;21101121579;"Bialostockie Studia Literaturoznawcze";journal;"27200078, 20829701";"Faculty of Philology, University of Bialystok";No;No;0,110;Q3;2;35;95;1096;5;95;0,03;31,31;70,27;0;Poland;Eastern Europe;"Faculty of Philology, University of Bialystok";"2019-2025";"Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +29418;21100466869;"Boletin Academico";journal;"02133474, 21736723";"SIELAE-Universidade da Coruna";Yes;Yes;0,110;Q3;3;5;15;114;2;10;0,10;22,80;20,00;0;Spain;Western Europe;"SIELAE-Universidade da Coruna";"2016-2024";"Visual Arts and Performing Arts (Q3); Architecture (Q4); Cultural Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +29419;21101333520;"Cahiers de Recherches Medievales et Humanistes - Journal of Medieval and Humanistic Studies";journal;"21156360, 22730893";"Classiques Garnier";No;No;0,110;Q3;7;46;91;1873;3;85;0,06;40,72;56,60;0;France;Western Europe;"Classiques Garnier";"2011-2025";"History (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities" +29420;21101146659;"Chinese Literature and Thought Today";journal;"27683524, 27683532";"Routledge";No;No;0,110;Q3;8;46;106;784;11;89;0,05;17,04;42,31;0;United Kingdom;Western Europe;"Routledge";"2022-2025";"Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); Philosophy (Q4)";"Arts and Humanities" +29421;5800192069;"Chinese Studies in History";journal;"00094633, 15580407";"M.E. Sharpe Inc.";No;No;0,110;Q3;8;20;58;435;9;48;0,18;21,75;36,84;0;United States;Northern America;"M.E. Sharpe Inc.";"1967-1995, 2000-2025";"History (Q3)";"Arts and Humanities" +29422;5700160809;"Common Knowledge";journal;"0961754X, 15384578";"Duke University Press";No;No;0,110;Q3;15;13;98;350;13;96;0,06;26,92;33,33;0;United States;Northern America;"Duke University Press";"2008, 2010-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +29423;5700191155;"Confluencia";journal;"08886091";"Colorado State University";Yes;No;0,110;Q3;7;26;147;751;5;141;0,02;28,88;57,14;0;United States;Northern America;"Colorado State University";"2002-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29424;6700153208;"Dickensian";journal;"00122440";"Dickens Fellowship";No;No;0,110;Q3;5;30;104;411;7;87;0,07;13,70;41,67;0;United Kingdom;Western Europe;"Dickens Fellowship";"1964, 1980, 2002-2008, 2013-2016, 2018-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29425;21100847373;"Digital Icons";journal;"20437633";"School of Modern Languages and Cultures, University of Leeds";No;No;0,110;Q3;5;0;19;0;3;16;0,16;0,00;0,00;0;United Kingdom;Western Europe;"School of Modern Languages and Cultures, University of Leeds";"2017, 2020-2021, 2023-2024";"Visual Arts and Performing Arts (Q3); Communication (Q4); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29426;21101047376;"Dostoevsky Journal";journal;"15355314, 23752122";"Brill Academic Publishers";No;No;0,110;Q3;3;0;15;0;4;13;0,60;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2000-2001, 2003-2006, 2009-2010, 2012, 2014-2023";"Literature and Literary Theory (Q3); Philosophy (Q4)";"Arts and Humanities" +29427;5600156163;"European Journal of American Culture";journal;"14660407, 17589118";"Intellect Ltd.";No;No;0,110;Q3;6;13;53;298;16;44;0,28;22,92;36,36;0;United Kingdom;Western Europe;"Intellect Ltd.";"2013-2025";"History (Q3); Anthropology (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29428;16400154736;"Expressions Maghrebines";journal;"15400085";"Florida State University, Winthrop-King Institute for Contemporary French and Francophone Studies";No;No;0,110;Q3;7;9;64;235;12;53;0,25;26,11;62,50;0;United States;Northern America;"Florida State University, Winthrop-King Institute for Contemporary French and Francophone Studies";"2002-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29429;5700153194;"German Quarterly";journal;"17561183, 00168831";"American Association of Teachers of German";No;No;0,110;Q3;13;21;124;611;14;95;0,09;29,10;53,85;0;United States;Northern America;"American Association of Teachers of German";"2002-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29430;6500153105;"Greece and Rome";journal;"00173835, 14774550";"Cambridge University Press";No;No;0,110;Q3;33;14;67;998;15;66;0,21;71,29;40,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1931-2025";"Classics (Q3); Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +29431;28865;"Hermes (Germany)";journal;"23653116, 00180777";"Franz Steiner Verlag GmbH";No;No;0,110;Q3;16;35;111;1629;7;111;0,05;46,54;13,51;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"1967-1969, 1971-1972, 1974, 1976-1977, 1979-1980, 1986-1987, 2002-2025";"Classics (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29432;5700170400;"Iberoromania";journal;"00190993, 18659039";"Walter de Gruyter GmbH";No;No;0,110;Q3;7;27;62;649;2;56;0,02;24,04;66,67;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1969-1970, 1975, 1978-2004, 2006-2009, 2011-2026";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29433;6200171093;"Images";journal;"18718000, 18717993";"Brill Academic Publishers";No;No;0,110;Q3;7;5;27;327;3;25;0,11;65,40;20,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2013, 2015-2025";"History (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29434;21100914236;"Journal of Contemporary Chinese Art";journal;"2051705X, 20517041";"Intellect Ltd.";No;No;0,110;Q3;5;20;59;701;9;53;0,13;35,05;53,33;0;United Kingdom;Western Europe;"Intellect Ltd.";"2018-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29435;26307;"Journal of the Early Republic";journal;"02751275, 15530620";"University of North Carolina Press";No;No;0,110;Q3;24;19;180;961;25;175;0,14;50,58;55,56;0;United States;Northern America;"University of North Carolina Press";"1983, 1987, 2002-2025";"History (Q3); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29436;17054;"Journal of the Malaysian Branch of the Royal Asiatic Society";journal;"21804338, 01267353";"Malaysian Branch of the Royal Asiatic Society";No;No;0,110;Q3;9;14;46;473;7;38;0,16;33,79;33,33;0;Malaysia;Asiatic Region;"Malaysian Branch of the Royal Asiatic Society";"1972-1973, 1975-1976, 1988, 2010-2025";"History (Q3); Cultural Studies (Q4); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +29437;6000152766;"Konteksty";journal;"29569214, 12306142";"Institute of Art, Polish Academy of Sciences";No;No;0,110;Q3;4;95;325;3484;7;185;0,02;36,67;48,86;0;Poland;Eastern Europe;"Institute of Art, Polish Academy of Sciences";"2011-2014, 2016-2025";"Visual Arts and Performing Arts (Q3); Anthropology (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29438;5700162205;"Labour History Review";journal;"09615652, 17458188";"Liverpool University Press";No;No;0,110;Q3;11;12;30;1246;2;30;0,10;103,83;25,00;0;United Kingdom;Western Europe;"Liverpool University Press";"2003, 2009-2011, 2014-2025";"History (Q3); Organizational Behavior and Human Resource Management (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Business, Management and Accounting; Social Sciences" +29439;21101079621;"Marine Corps History";journal;"2381375X, 23813768";"Marine Corps University Press";No;No;0,110;Q3;1;4;25;279;4;24;0,07;69,75;33,33;0;United States;Northern America;"Marine Corps University Press";"2019-2025";"History (Q3)";"Arts and Humanities" +29440;16800154733;"Mitteilungen des Kunsthistorischen Institutes in Florenz";journal;"03421201";"Kunsthistorischen Institutes in Florenz";No;No;0,110;Q3;9;7;42;807;2;41;0,00;115,29;50,00;0;Germany;Western Europe;"Kunsthistorischen Institutes in Florenz";"2002-2010, 2013-2025";"History (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29441;21473;"Polish Review";journal;"00322970, 23300841";"University of Illinois Press";No;No;0,110;Q3;4;22;86;598;11;69;0,17;27,18;42,86;0;United States;Northern America;"University of Illinois Press";"1986, 2019-2025";"History (Q3); Literature and Literary Theory (Q3); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29442;21101061449;"Poznanskie Studia Slawistyczne";journal;"20843011, 24502731";"Uniwersytet im. Adama Mickiewicza w Poznaniu";No;No;0,110;Q3;3;41;123;1051;5;119;0,04;25,63;71,43;0;Poland;Eastern Europe;"Uniwersytet im. Adama Mickiewicza w Poznaniu";"2019-2025";"History (Q3); Literature and Literary Theory (Q3); Anthropology (Q4); Communication (Q4); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29443;21101089134;"Pravnehistoricke Studie";journal;"2464689X, 00794929";"Karolinum - Nakladatelstvi Univerzity Karlovy";Yes;Yes;0,110;Q3;2;37;118;1324;6;108;0,05;35,78;38,89;0;Czech Republic;Eastern Europe;"Karolinum - Nakladatelstvi Univerzity Karlovy";"2019-2025";"History (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +29444;21100777205;"Przestrzenie Teorii";journal;"16446763";"Adam Mickiewicz University";Yes;Yes;0,110;Q3;4;48;117;1250;2;116;0,02;26,04;58,70;0;Poland;Eastern Europe;"Adam Mickiewicz University";"2014-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29445;5800209455;"Renaissance Studies";journal;"14774658, 02691213";"John Wiley and Sons Inc";No;No;0,110;Q3;26;46;92;2315;33;91;0,29;50,33;52,17;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1987-2026";"History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29446;5800225701;"Revista de Occidente";journal;"00348635";"Fundacion Jose Ortega y Gasset";No;No;0,110;Q3;7;126;418;534;16;393;0,05;4,24;27,08;0;Spain;Western Europe;"Fundacion Jose Ortega y Gasset";"2002-2004, 2007-2025";"History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29447;12013;"Revue des Etudes Juives";journal;"1783175X, 04848616";"Peeters Publishers";No;No;0,110;Q3;11;17;57;1263;2;53;0,05;74,29;46,15;0;Belgium;Western Europe;"Peeters Publishers";"1967, 1969, 1975-1977, 1983-1984, 1996-2025";"History (Q3); Literature and Literary Theory (Q3); Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29448;6000155231;"Ricerche di Storia dell Arte";journal;"03927202";"Carocci Editore";No;No;0,110;Q3;3;24;98;853;2;89;0,02;35,54;50,00;0;Italy;Western Europe;"Carocci Editore";"2009-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29449;16100154735;"Samuel Beckett Today - Aujourd'hui";journal;"09273131, 18757405";"Brill Rodopi";No;No;0,110;Q3;12;20;71;529;12;68;0,14;26,45;18,18;0;Netherlands;Western Europe;"Brill Rodopi";"1999-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29450;19700181410;"Scandinavian Journal of the Old Testament";journal;"09018328, 15027244";"Routledge";No;No;0,110;Q3;16;25;58;0;8;56;0,11;0,00;17,86;0;United Kingdom;Western Europe;"Routledge";"1987-2025";"Literature and Literary Theory (Q3); Religious Studies (Q4)";"Arts and Humanities" +29451;5800224089;"Slavia Orientalis";journal;"00376744";"Panstwowe Wydawnictwo Naukowe";No;No;0,110;Q3;4;33;146;1072;9;144;0,07;32,48;73,68;0;Poland;Eastern Europe;"Panstwowe Wydawnictwo Naukowe";"2011-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29452;21101048039;"Starobulgarska Literatura";journal;"25350919, 0204868X";"Institute for Literature, Bulgarian Academy of Sciences";No;No;0,110;Q3;2;0;26;0;1;26;0,06;0,00;0,00;0;Bulgaria;Eastern Europe;"Institute for Literature, Bulgarian Academy of Sciences";"2019-2023";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29453;21101115710;"Strenae";journal;"21099081";"French Association for Research on Children's Books and Cultural Objects (AFRELOCE)";Yes;Yes;0,110;Q3;2;16;92;744;2;89;0,02;46,50;64,71;0;France;Western Europe;"French Association for Research on Children's Books and Cultural Objects (AFRELOCE)";"2019-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +29454;21100894502;"Studia Graeco-Arabica";journal;"2239012X, 22812687";"Pacini Editore Srl";No;No;0,110;Q3;3;7;86;702;6;86;0,08;100,29;28,57;0;Italy;Western Europe;"Pacini Editore Srl";"2018-2019, 2021-2024";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29455;21101234842;"Vojenska Historia";journal;"13353314, 13387154";"Military History Institute Bratislava";No;No;0,110;Q3;3;28;79;914;8;79;0,10;32,64;12,00;0;Slovakia;Eastern Europe;"Military History Institute Bratislava";"2020-2025";"History (Q3); Museology (Q3)";"Arts and Humanities" +29456;19900191811;"Youth Theatre Journal";journal;"08929092, 19484798";"Taylor and Francis Ltd.";No;No;0,110;Q3;15;5;22;156;12;16;0,64;31,20;62,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1995-2026";"Visual Arts and Performing Arts (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +29457;18498;"Zeitschrift der Savigny-Stiftung fur Rechtsgeschichte, Germanistische Abteilung";journal;"03234045, 23044861";"Walter de Gruyter GmbH";No;No;0,110;Q3;8;9;142;1873;3;141;0,01;208,11;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1861, 1863-1864, 1866-1870, 1872-1873, 1876, 1878, 1880-1922, 1924-1944, 1947-1948, 1950-2025";"History (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +29458;16200154713;"Zeitschrift fur Antikes Christentum";journal;"1612961X, 09499571";"Walter de Gruyter GmbH";No;No;0,110;Q3;20;14;72;1425;10;69;0,16;101,79;7,14;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1997-2025";"Classics (Q3); History (Q3); Religious Studies (Q4)";"Arts and Humanities" +29459;19446;"American Pharmaceutical Review";journal;"10998012";"Russell Publishing";No;No;0,110;Q4;27;46;133;331;4;114;0,03;7,20;29,03;0;United States;Northern America;"Russell Publishing";"2002-2020, 2023-2025";"Pharmaceutical Science (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +29460;5800157711;"Archiv fur Rechts- und Sozialphilosophie";journal;"23635606, 00012343";"Franz Steiner Verlag GmbH";No;No;0,110;Q4;7;22;99;1964;9;95;0,03;89,27;25,00;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"2011-2025";"Law (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +29461;70577;"Asian and African Studies";journal;"13351257, 25858793";"Institute of Oriental Studies, Slovak Academy of Sciences";Yes;Yes;0,110;Q4;7;9;35;363;3;34;0,11;40,33;50,00;0;Slovakia;Eastern Europe;"Institute of Oriental Studies, Slovak Academy of Sciences";"1987, 2008-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29462;21101038703;"Australasian Journal of Popular Culture";journal;"20455852, 20455860";"Intellect Ltd.";No;No;0,110;Q4;4;18;43;698;17;38;0,48;38,78;90,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +29463;21101203738;"Biomedical Sciences and Clinical Medicine";journal;"27741079";"Chiang Mai University Faculty of Medicine";Yes;No;0,110;Q4;2;27;88;896;10;88;0,13;33,19;50,00;0;Thailand;Asiatic Region;"Chiang Mai University Faculty of Medicine";"2022-2026";"Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4); Pharmacy (Q4)";"Health Professions; Medicine; Nursing" +29464;21100936533;"Caracol";journal;"23179651, 21781702";"Universidade de Sao Paulo. Museu de Zoologia";Yes;Yes;0,110;Q4;4;20;115;545;15;103;0,06;27,25;47,06;0;Brazil;Latin America;"Universidade de Sao Paulo. Museu de Zoologia";"2019-2025";"Communication (Q4); Linguistics and Language (Q4)";"Social Sciences" +29465;21100266735;"Comparative and Continental Philosophy";journal;"17570646, 17570638";"Maney Publishing";No;No;0,110;Q4;8;18;56;463;18;46;0,30;25,72;18,75;0;United Kingdom;Western Europe;"Maney Publishing";"2012-2026";"Philosophy (Q4)";"Arts and Humanities" +29466;21101259654;"Contemporary Social Sciences";journal;"20960212";"";Yes;Yes;0,110;Q4;3;54;162;1551;31;152;0,20;28,72;36,27;0;China;Asiatic Region;"";"2020-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29467;21101192890;"Dermatologia Argentina";journal;"16691636, 15158411";"Lugones Editorial Seal of Biotecnologica SRL";No;Yes;0,110;Q4;3;56;129;646;5;97;0,02;11,54;78,45;0;Argentina;Latin America;"Lugones Editorial Seal of Biotecnologica SRL";"2019-2025";"Dermatology (Q4); Health Professions (miscellaneous) (Q4)";"Health Professions; Medicine" +29468;21101140511;"Diabetologie";journal;"27317447, 27317455";"Springer Medizin";No;No;0,110;Q4;12;124;366;3016;29;259;0,07;24,32;35,25;1;Germany;Western Europe;"Springer Medizin";"2022-2026";"Endocrinology, Diabetes and Metabolism (Q4)";"Medicine" +29469;98366;"Estudis Romanics";journal;"02118572, 20139500";"Institut d'Estudis Catalans";No;No;0,110;Q4;6;19;120;528;2;115;0,01;27,79;46,15;0;Spain;Western Europe;"Institut d'Estudis Catalans";"1970, 2011-2026";"Linguistics and Language (Q4)";"Social Sciences" +29470;21100840182;"Estudos Internacionais";journal;"2317773X";"Editora PUC-Minas";Yes;Yes;0,110;Q4;6;14;67;501;9;66;0,07;35,79;31,25;0;Brazil;Latin America;"Editora PUC-Minas";"2017-2024";"Political Science and International Relations (Q4)";"Social Sciences" +29471;8300153207;"Fish Physiology";book series;"15465098";"Elsevier Inc.";No;No;0,110;Q4;70;11;67;2235;66;20;0,19;203,18;0,00;0;United States;Northern America;"Elsevier Inc.";"1969-1971, 1978-1979, 1983-1984, 1988, 1992, 1994-1998, 2001, 2005-2007, 2009-2013, 2015-2017, 2019-2020, 2022-2025";"Animal Science and Zoology (Q4); Physiology (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology" +29472;4700152628;"Frontiers of Law in China";journal;"16733541, 16733428";"Higher Education Press Limited Company";No;No;0,110;Q4;9;18;72;937;11;71;0,13;52,06;45,00;0;China;Asiatic Region;"Higher Education Press Limited Company";"2006-2025";"Law (Q4)";"Social Sciences" +29473;28004;"Gaceta Medica de Bilbao";journal;"21732302, 03044858";"Academia de Ciencias Medicas de Bilbao";No;Yes;0,110;Q4;4;25;97;429;1;83;0,02;17,16;13,04;0;Spain;Western Europe;"Academia de Ciencias Medicas de Bilbao";"1973-1977, 2010-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29474;16920;"GWF, Wasser - Abwasser";journal;"00163651";"Vulkan-Verlag GmbH";No;No;0,110;Q4;11;126;912;353;2;698;0,00;2,80;23,58;0;Germany;Western Europe;"Vulkan-Verlag GmbH";"1970-2013, 2015-2018, 2020-2025";"Water Science and Technology (Q4)";"Environmental Science" +29475;15027;"Hong Kong Journal of Paediatrics";journal;"23095393, 10139923";"Medcom Limited";Yes;No;0,110;Q4;13;37;120;657;12;94;0,09;17,76;43,33;0;Hong Kong;Asiatic Region;"Medcom Limited";"2005-2026";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +29476;5800195656;"Idealistic Studies";journal;"00468541";"Philosophy Documentation Center";No;No;0,110;Q4;9;14;32;1332;4;31;0,08;95,14;38,46;0;United States;Northern America;"Philosophy Documentation Center";"1996-2000, 2002-2025";"Philosophy (Q4)";"Arts and Humanities" +29477;21101297674;"IEEE International Conference on Emerging and Sustainable Technologies for Power and ICT in a Developing Society, NIGERCON";journal;"23772689, 23772697";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,110;Q4;3;0;439;0;88;438;0,20;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Development (Q4); Energy Engineering and Power Technology (Q4); Information Systems and Management (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Computer Science; Decision Sciences; Energy; Social Sciences" +29478;21100914959;"Indexer";journal;"17560632, 00194131";"Liverpool University Press";No;No;0,110;Q4;6;22;100;444;27;85;0,28;20,18;72,22;0;United Kingdom;Western Europe;"Liverpool University Press";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +29479;22688;"Indian Journal of Environmental Protection";journal;"02537141";"Kalpana Corporation";No;No;0,110;Q4;22;114;521;3932;74;521;0,16;34,49;41,23;0;India;Asiatic Region;"Kalpana Corporation";"1981-1990, 2000-2025";"Environmental Science (miscellaneous) (Q4)";"Environmental Science" +29480;19900193951;"Indian Journal of Geosciences";journal;"22293574, 25823485";"Geological Survey of India";No;No;0,110;Q4;17;10;72;465;6;70;0,04;46,50;5,00;0;India;Asiatic Region;"Geological Survey of India";"2011-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +29481;29759;"Indian Journal of Social Work";journal;"24567809, 00195634";"Tata Institute of Social Sciences";No;No;0,110;Q4;11;1;72;0;19;58;0,05;0,00;0,00;0;India;Asiatic Region;"Tata Institute of Social Sciences";"1945-1948, 1977, 1982, 1991, 1996-2025";"Social Sciences (miscellaneous) (Q4); Social Work (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29482;20056;"Industrie Alimentari";journal;"0019901X";"Chiriotti Editori";No;No;0,110;Q4;14;64;693;217;2;272;0,00;3,39;59,46;0;Italy;Western Europe;"Chiriotti Editori";"1996-2026";"Food Science (Q4); Industrial and Manufacturing Engineering (Q4)";"Agricultural and Biological Sciences; Engineering" +29483;4400151607;"Inter Bloc";journal;"02423960, 22149368";"Elsevier Masson s.r.l.";No;No;0,110;Q4;3;42;109;285;2;82;0,01;6,79;78,85;0;France;Western Europe;"Elsevier Masson s.r.l.";"2006-2025";"Medical and Surgical Nursing (Q4)";"Nursing" +29484;21101152875;"International Journal of Canadian Studies";journal;"19235291";"University of Toronto Press";No;No;0,110;Q4;3;11;30;378;6;26;0,12;34,36;60,00;0;Canada;Northern America;"University of Toronto Press";"2020-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +29485;21100203122;"International Journal of Organ Transplantation Medicine";journal;"20086490, 20086482";"Iranian Society for Organ Transplantation";Yes;Yes;0,110;Q4;21;0;62;0;7;62;0,07;0,00;0,00;0;Iran;Middle East;"Iranian Society for Organ Transplantation";"2012-2024";"Transplantation (Q4)";"Medicine" +29486;21630;"International Surgery";journal;"00208868";"International College of Surgeons";Yes;No;0,110;Q4;46;15;78;296;15;67;0,27;19,73;23,44;0;United States;Northern America;"International College of Surgeons";"1966-2025";"Surgery (Q4)";"Medicine" +29487;21101265944;"Iraqi Journal of Architecture and Planning";journal;"26179555, 26179547";"University of Technology - Iraq";Yes;Yes;0,110;Q4;3;15;45;613;15;45;0,26;40,87;55,00;0;Iraq;Middle East;"University of Technology - Iraq";"2020-2026";"Architecture (Q4); Building and Construction (Q4); Computer Graphics and Computer-Aided Design (Q4); Conservation (Q4); Cultural Studies (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Arts and Humanities; Computer Science; Engineering; Environmental Science; Social Sciences" +29488;21100203523;"Journal of Architecture and Planning";journal;"16068238";"College of Architecture and Planning, Chung Hua University";No;No;0,110;Q4;4;5;11;285;2;11;0,17;57,00;33,33;0;China;Asiatic Region;"College of Architecture and Planning, Chung Hua University";"2011-2025";"Architecture (Q4); Urban Studies (Q4)";"Engineering; Social Sciences" +29489;21101257049;"Journal of Clinical Emergency";journal;"10095918";"";No;No;0,110;Q4;4;76;392;1824;46;392;0,15;24,00;43,31;0;China;Asiatic Region;"";"2020-2025";"Emergency Medicine (Q4)";"Medicine" +29490;21101361177;"Journal of Craniomaxillofacial Research";journal;"23456213, 23455489";"Tehran University of Medical Sciences";Yes;No;0,110;Q4;2;42;92;1105;12;92;0,12;26,31;50,37;0;Iran;Middle East;"Tehran University of Medical Sciences";"2022-2025";"Oral Surgery (Q4); Otorhinolaryngology (Q4); Surgery (Q4)";"Dentistry; Medicine" +29491;21101126609;"Journal of Fatima Jinnah Medical University";journal;"26166291, 26166461";"Fatima Jinnah Medical University (FJMU)";Yes;No;0,110;Q4;4;21;115;475;11;104;0,09;22,62;68,24;0;Pakistan;Asiatic Region;"Fatima Jinnah Medical University (FJMU)";"2019-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29492;21101115397;"Journal of Islamic International Medical College";journal;"24105422, 18154018";"Islamic International Medical College, Riphah International University";Yes;No;0,110;Q4;4;22;143;479;16;130;0,10;21,77;66,67;0;Pakistan;Asiatic Region;"Islamic International Medical College, Riphah International University";"2019-2025";"Dentistry (miscellaneous) (Q4); Health (social science) (Q4)";"Dentistry; Social Sciences" +29493;21101037308;"Journal of Urban Cultural Studies";journal;"20509790, 20509804";"Intellect Ltd.";No;No;0,110;Q4;5;18;46;664;14;41;0,25;36,89;50,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2017, 2019-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +29494;17088;"Lekar a Technika";journal;"23365552, 03015491";"Czech Medical Association J.E. Purkyne";Yes;No;0,110;Q4;7;4;39;84;7;39;0,17;21,00;25,00;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1977-1991, 1996-2004, 2007, 2010, 2013-2025";"Biophysics (Q4)";"Biochemistry, Genetics and Molecular Biology" +29495;21100820652;"Malaysian Journal of Biochemistry and Molecular Biology";journal;"15112616";"Malaysian Society for Biochemistry and Molecular Biology";No;No;0,110;Q4;9;8;119;307;24;119;0,06;38,38;57,69;0;Malaysia;Asiatic Region;"Malaysian Society for Biochemistry and Molecular Biology";"2016-2025";"Biochemistry (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +29496;17774;"Medica Jadertina";journal;"03510093";"Opca Bolnica Zadar";No;No;0,110;Q4;7;28;120;994;8;117;0,06;35,50;54,62;0;Croatia;Eastern Europe;"Opca Bolnica Zadar";"1988, 1990-1995, 1997-2000, 2002-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29497;21101150731;"Modern Gastroenterology";journal;"2521649X, 17275725";"Publishing Company VIT-A-POL";No;No;0,110;Q4;3;25;136;1020;17;136;0,14;40,80;65,38;0;Ukraine;Eastern Europe;"Publishing Company VIT-A-POL";"2019-2025";"Family Practice (Q4); Gastroenterology (Q4); Internal Medicine (Q4); Pharmacology (medical) (Q4)";"Medicine" +29498;21101046605;"Neumologia y Cirugia de Torax (Mexico)";journal;"25941526, 00283746";"Instituto Nacional de Enfermedades Respiratorias";No;No;0,110;Q4;8;2;142;481;11;85;0,08;240,50;30,77;0;Mexico;Latin America;"Instituto Nacional de Enfermedades Respiratorias";"1962-1965, 2010-2025";"Pulmonary and Respiratory Medicine (Q4); Surgery (Q4)";"Medicine" +29499;21100239407;"Novosti Khirurgii";journal;"23050047, 19937512";"Vitebsk State Medical University";Yes;No;0,110;Q4;9;0;110;0;14;110;0,15;0,00;0,00;0;Belarus;Eastern Europe;"Vitebsk State Medical University";"2013-2024";"Surgery (Q4)";"Medicine" +29500;21101044225;"NTT Journal for Theology and the Study of Religion";journal;"25903268, 25426583";"Amsterdam University Press";No;No;0,110;Q4;3;21;61;655;9;60;0,10;31,19;35,29;0;Netherlands;Western Europe;"Amsterdam University Press";"2019-2025";"Religious Studies (Q4)";"Arts and Humanities" +29501;21101392359;"Philippine Journal of Pathology";journal;"25078364";"Philippine Society of Pathologists, Inc.";No;No;0,110;Q4;1;18;54;299;5;43;0,12;16,61;55,00;0;Philippines;Asiatic Region;"Philippine Society of Pathologists, Inc.";"2022-2025";"Anatomy (Q4); Pathology and Forensic Medicine (Q4)";"Medicine" +29502;19700187644;"Politica Economica";journal;"19738218, 11209496";"Societa Editrice II Mulino";No;No;0,110;Q4;11;0;42;0;8;40;0,03;0,00;0,00;0;Italy;Western Europe;"Societa Editrice II Mulino";"1997-2024";"Economics and Econometrics (Q4); Political Science and International Relations (Q4)";"Economics, Econometrics and Finance; Social Sciences" +29503;5700165656;"Politix";journal;"02952319, 19538286";"Armand Colin";No;No;0,110;Q4;24;0;75;0;12;67;0,13;0,00;0,00;0;France;Western Europe;"Armand Colin";"2008-2024";"Sociology and Political Science (Q4)";"Social Sciences" +29504;5700166761;"PORTAL: Journal of Multidisciplinary International Studies";journal;"14492490";"UTS ePRESS";Yes;Yes;0,110;Q4;5;0;52;0;5;49;0,12;0,00;0,00;0;Australia;Pacific Region;"UTS ePRESS";"2009, 2017-2024";"Anthropology (Q4); Cultural Studies (Q4); Demography (Q4)";"Social Sciences" +29505;21101038521;"Portuguese Journal of Pediatrics";journal;"21843333, 21844453";"Portuguese Society of Paediatrics";Yes;Yes;0,110;Q4;4;40;169;743;9;116;0,07;18,58;78,48;0;Portugal;Western Europe;"Portuguese Society of Paediatrics";"2019-2026";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +29506;21100902868;"Punjab Geographer";journal;"09733485";"Institute For Spatial Planning And Environment Research";No;No;0,110;Q4;3;7;25;173;2;20;0,07;24,71;46,15;0;India;Asiatic Region;"Institute For Spatial Planning And Environment Research";"2018-2025";"Geography, Planning and Development (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29507;21100923613;"QED";journal;"23271574, 23271590";"Michigan State University Press";No;No;0,110;Q4;7;0;91;0;18;68;0,21;0,00;0,00;0;United States;Northern America;"Michigan State University Press";"2015-2016, 2019-2024";"Cultural Studies (Q4); Gender Studies (Q4)";"Social Sciences" +29508;21100199556;"Recta";journal;"1575605X";"ASEPUMA";Yes;Yes;0,110;Q4;6;10;27;456;6;27;0,25;45,60;43,75;0;Spain;Western Europe;"ASEPUMA";"2011-2025";"Applied Mathematics (Q4); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Mathematics" +29509;13100154703;"Regional and Sectoral Economic Studies";journal;"15784460";"Euro-American Association of Economic Development Studies";No;No;0,110;Q4;15;0;47;0;11;47;0,24;0,00;0,00;0;Spain;Western Europe;"Euro-American Association of Economic Development Studies";"2008-2024";"Development (Q4); Economics and Econometrics (Q4)";"Economics, Econometrics and Finance; Social Sciences" +29510;20500195401;"Retina Today";journal;"18250572";"Retina Today";No;No;0,110;Q4;9;73;330;688;11;85;0,03;9,42;41,67;0;United States;Northern America;"Retina Today";"2008-2025";"Ophthalmology (Q4)";"Medicine" +29511;5000158304;"Revista Cubana de Obstetricia y Ginecologia";journal;"0138600X";"Editorial Ciencias Medicas";Yes;No;0,110;Q4;11;19;75;377;3;73;0,02;19,84;31,25;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1996-2002, 2006-2025";"Obstetrics and Gynecology (Q4)";"Medicine" +29512;21100981224;"Revista de Etnologie si Culturologie";journal;"18572049, 25376152";"Institutul Patrimoniului Cultural";Yes;Yes;0,110;Q4;2;33;106;659;12;106;0,09;19,97;66,67;0;Moldova;Eastern Europe;"Institutul Patrimoniului Cultural";"2019-2025";"Anthropology (Q4); Cultural Studies (Q4)";"Social Sciences" +29513;21101192895;"Revista de la Sociedad Argentina de Diabetes";journal;"03255247, 23469420";"Lugones Editorial Seal of Biotecnologica SRL";Yes;Yes;0,110;Q4;3;34;90;1316;8;71;0,05;38,71;75,00;0;Argentina;Latin America;"Lugones Editorial Seal of Biotecnologica SRL";"2019-2025";"Endocrinology, Diabetes and Metabolism (Q4); Health Professions (miscellaneous) (Q4)";"Health Professions; Medicine" +29514;15103;"Revista Mexicana de Oftalmologia";journal;"01874519, 26041227";"Permanyer Publications";Yes;Yes;0,110;Q4;8;0;110;0;9;94;0,04;0,00;0,00;0;Mexico;Latin America;"Permanyer Publications";"1987, 1997-2024";"Ophthalmology (Q4)";"Medicine" +29515;17700156007;"Revue de l'OFCE";journal;"12659576, 17775647";"Presses de Sciences Po";No;No;0,110;Q4;18;0;64;0;15;57;0,10;0,00;0,00;0;France;Western Europe;"Presses de Sciences Po";"2001-2022, 2024";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +29516;16300154735;"Revue de Metaphysique et de Morale";journal;"00351571";"Presses Universitaires de France";No;No;0,110;Q4;9;6;132;197;13;128;0,09;32,83;0,00;0;France;Western Europe;"Presses Universitaires de France";"1978, 1982, 1987, 2001-2025";"Philosophy (Q4)";"Arts and Humanities" +29517;16200154727;"Revue Francaise de Pedagogie";journal;"05567807";"Institut National de Recherche Pedagogique";No;No;0,110;Q4;24;0;75;0;14;75;0,26;0,00;0,00;0;France;Western Europe;"Institut National de Recherche Pedagogique";"2002-2024";"Arts and Humanities (miscellaneous) (Q4); Education (Q4)";"Arts and Humanities; Social Sciences" +29518;16400154716;"Rivista di Storia della Filosofia";journal;"19725558, 03932516";"FrancoAngeli";No;No;0,110;Q4;10;9;114;588;10;101;0,09;65,33;33,33;0;Italy;Western Europe;"FrancoAngeli";"1984-1985, 2002-2025";"Philosophy (Q4)";"Arts and Humanities" +29519;26065;"Sang Thrombose Vaisseaux";journal;"09997385, 19506104";"John Libbey";No;No;0,110;Q4;9;35;103;755;2;79;0,03;21,57;56,34;0;France;Western Europe;"John Libbey";"1990-2025";"Hematology (Q4)";"Medicine" +29520;21101373450;"Science and Engineering Connect";journal;"30277914";"School of Liberal Arts, King Mongkut's University of Technology Thonburi";No;No;0,110;Q4;2;17;72;499;4;72;0,07;29,35;28,57;0;Thailand;Asiatic Region;"School of Liberal Arts, King Mongkut's University of Technology Thonburi";"2021-2025";"Civil and Structural Engineering (Q4); Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Computer Science; Engineering; Materials Science" +29521;21100909463;"Science of Synthesis";book series;"25667297, 25105469";"Georg Thieme Verlag";No;No;0,110;Q4;8;10;224;1350;28;69;0,11;135,00;20,00;0;Germany;Western Europe;"Georg Thieme Verlag";"2017-2025";"Organic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)";"Chemistry" +29522;21101084975;"Solov'evskie Issledovania";journal;"20769210";"Ivanovo State Power Engineering University";No;No;0,110;Q4;3;47;140;1199;11;132;0,08;25,51;52,27;0;Russian Federation;Eastern Europe;"Ivanovo State Power Engineering University";"2019-2025";"Philosophy (Q4)";"Arts and Humanities" +29523;26553;"Sri Lanka Journal of Social Sciences";journal;"02589710";"National Science Foundation";Yes;Yes;0,110;Q4;9;14;85;636;32;78;0,39;45,43;24,00;0;Sri Lanka;Asiatic Region;"National Science Foundation";"1978, 1980, 1993, 2004, 2006, 2008, 2010, 2012, 2014-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +29524;21100238660;"Studia Canonica";journal;"22953027, 22953019";"Saint Paul University, Faculty of Canon Law";Yes;No;0,110;Q4;4;7;75;740;4;72;0,04;105,71;16,67;0;Canada;Northern America;"Saint Paul University, Faculty of Canon Law";"2009-2025";"Religious Studies (Q4)";"Arts and Humanities" +29525;17633;"Studies in Eighteenth Century Culture";journal;"03602370";"Johns Hopkins University Press";No;No;0,110;Q4;13;13;78;737;13;76;0,17;56,69;58,33;0;United States;Northern America;"Johns Hopkins University Press";"1976, 1978-1979, 1981, 1984-1985, 1987, 1999, 2001-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29526;21100912973;"Swiss Archives of Neurology, Psychiatry and Psychotherapy";journal;"22976981, 22977007";"EMH Schweizerischer Arzteverlag AG";Yes;Yes;0,110;Q4;16;0;57;0;4;43;0,10;0,00;0,00;0;Switzerland;Western Europe;"EMH Schweizerischer Arzteverlag AG";"2016-2024";"Clinical Psychology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +29527;21100900374;"Technical and Vocational Education and Training";book series;"2213221X, 18713041";"Springer Nature";No;No;0,110;Q4;19;0;178;0;154;6;1,37;0,00;0,00;0;United States;Northern America;"Springer Nature";"2005, 2010, 2013, 2015-2019, 2021-2022, 2024, 2026";"Education (Q4)";"Social Sciences" +29528;12421;"Technische Sicherheit";journal;"14364948, 21910073";"VDI Fachmedien GmbH & Co. KG";No;No;0,110;Q4;6;53;173;187;1;97;0,01;3,53;20,00;0;Germany;Western Europe;"VDI Fachmedien GmbH & Co. KG";"2001-2026";"Engineering (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Engineering; Medicine" +29529;21101295924;"Ukraine. Nation's Health";journal;"20776594";"Publishing House Helvetica";No;No;0,110;Q4;3;100;260;2342;27;260;0,12;23,42;60,77;0;Ukraine;Eastern Europe;"Publishing House Helvetica";"2021-2025";"Advanced and Specialized Nursing (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4); Rehabilitation (Q4)";"Medicine; Nursing" +29530;21101210380;"Ukrainian Therapeutical Journal";journal;"16057295, 25221175";"";No;No;0,110;Q4;3;45;96;1697;17;95;0,20;37,71;78,48;0;Ukraine;Eastern Europe;"";"2020-2025";"Cardiology and Cardiovascular Medicine (Q4); Family Practice (Q4); Health Policy (Q4); Internal Medicine (Q4)";"Medicine" +29531;21101065469;"Ukrainskyi Zhurnal Sertsevo-sudynnoi Khirurhii";journal;"26645971, 26645963";"National Amosov Institute of Cardiovascular Surgery of the National Academy of Medical Sciences of Ukraine";Yes;Yes;0,110;Q4;4;72;188;1313;31;186;0,17;18,24;33,70;0;Ukraine;Eastern Europe;"National Amosov Institute of Cardiovascular Surgery of the National Academy of Medical Sciences of Ukraine";"2019-2025";"Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4)";"Medicine" +29532;15085;"VDI-Z Integrierte Produktion";journal;"00421766";"VDI Fachmedien GmBbH & Co.";No;No;0,110;Q4;6;130;288;137;3;157;0,02;1,05;9,26;0;Germany;Western Europe;"VDI Fachmedien GmBbH & Co.";"1970-1991, 2015-2026";"Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +29533;12300154716;"Veterinarija ir Zootechnika";journal;"13922130";"Lietuvos Veterinarijos Akademija";No;No;0,110;Q4;15;0;169;0;16;169;0,05;0,00;0,00;0;Lithuania;Eastern Europe;"Lietuvos Veterinarijos Akademija";"2008-2018, 2020-2024";"Veterinary (miscellaneous) (Q4)";"Veterinary" +29534;21100856780;"Proceedings of the World Congress on New Technologies";conference and proceedings;"23698128";"Avestia Publishing";No;No;0,110;-;8;122;227;1249;35;224;0,17;10,24;40,07;0;Canada;Northern America;"Avestia Publishing";"2015-2025";"Biomedical Engineering; Biotechnology; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Energy Engineering and Power Technology; Management, Monitoring, Policy and Law; Mechanical Engineering; Pollution";"Biochemistry, Genetics and Molecular Biology; Energy; Engineering; Environmental Science; Materials Science" +29535;21100877819;"Thermal Performance of the Exterior Envelopes of Whole Buildings";conference and proceedings;"21668469";"American Society of Heating Refrigerating and Air-Conditioning Engineers";No;No;0,110;-;18;0;84;0;9;83;0,00;0,00;0,00;0;United States;Northern America;"American Society of Heating Refrigerating and Air-Conditioning Engineers";"1998, 2001, 2004, 2007, 2016, 2019, 2022";"Civil and Structural Engineering";"Engineering" +29536;21101137849;"Antiqvorvm Philosophia";journal;"19735030, 19744501";"Fabrizio Serra Editore";No;No;0,109;Q3;3;0;28;0;9;28;0,17;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2024";"Classics (Q3); History (Q3); Linguistics and Language (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +29537;21495;"Chinese Journal of Medical History";journal;"02557053";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,109;Q3;8;53;163;1624;12;162;0,01;30,64;54,62;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"1980-1981, 1984-2010, 2014-2016, 2019-2025";"History (Q3); Cultural Studies (Q4); Health (social science) (Q4)";"Arts and Humanities; Social Sciences" +29538;21100790507;"Comparative Legal History";journal;"20496788, 2049677X";"Taylor and Francis Ltd.";No;No;0,109;Q3;8;10;25;450;12;19;0,47;45,00;12,50;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2013, 2015-2025";"History (Q3); Law (Q4)";"Arts and Humanities; Social Sciences" +29539;5800209432;"Concentric: Literary and Cultural Studies";journal;"17298792, 17296897";"National Taiwan Normal University";No;No;0,109;Q3;7;9;44;297;6;40;0,14;33,00;16,67;0;Taiwan;Asiatic Region;"National Taiwan Normal University";"2012-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29540;21101041549;"Contradictions";journal;"25707485";"Filosoficky Ustav AV CR";No;No;0,109;Q3;4;0;55;0;4;41;0,03;0,00;0,00;0;Czech Republic;Eastern Europe;"Filosoficky Ustav AV CR";"2017-2024";"History (Q3); Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29541;21100843496;"Cuadernos de Literatura";journal;"01228102";"Pontificia Universidad Javeriana";Yes;Yes;0,109;Q3;5;11;62;357;5;59;0,05;32,45;66,67;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2017-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29542;21101179107;"Els Marges";journal;"23398256, 02100452";"L'avenc S.L";No;Yes;0,109;Q3;2;9;83;158;6;72;0,08;17,56;62,50;0;Spain;Western Europe;"L'avenc S.L";"2019-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29543;21100970265;"Eos (Poland)";journal;"00127825";"Polskie Towarzystwo Filologiczne";No;No;0,109;Q3;3;16;43;566;5;38;0,14;35,38;30,77;0;Poland;Eastern Europe;"Polskie Towarzystwo Filologiczne";"2018-2025";"Classics (Q3)";"Arts and Humanities" +29544;21101022225;"Food and History";journal;"17803187, 20342101";"Brepols Publishers";No;No;0,109;Q3;4;7;45;153;8;45;0,06;21,86;83,33;0;Belgium;Western Europe;"Brepols Publishers";"2019-2025";"History (Q3); Food Science (Q4)";"Agricultural and Biological Sciences; Arts and Humanities" +29545;5800207997;"Hebrew Studies";journal;"21581681, 01464094";"National Association of Professors of Hebrew";No;No;0,109;Q3;6;16;51;544;4;51;0,03;34,00;33,33;0;United States;Northern America;"National Association of Professors of Hebrew";"2006, 2011-2025";"History (Q3); Literature and Literary Theory (Q3); Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29546;21101101868;"Information, Medium, and Society";journal;"26911507, 26911515";"Common Ground Research Networks";No;No;0,109;Q3;5;7;14;425;6;14;0,50;60,71;56,25;0;United States;Northern America;"Common Ground Research Networks";"2020, 2022-2025";"History (Q3); Literature and Literary Theory (Q3); Communication (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +29547;21101187108;"Islam Arastirmalari Dergisi";journal;"28222903, 13013289";"Istanbul 29 Mayis University - ISAM, TDV Centre for Islamic Studies";No;No;0,109;Q3;2;13;29;598;2;28;0,05;46,00;42,86;0;Turkey;Middle East;"Istanbul 29 Mayis University - ISAM, TDV Centre for Islamic Studies";"2019-2025";"History (Q3); Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29548;5700162645;"Jewish Culture and History";journal;"1462169X, 21679428";"Routledge";No;No;0,109;Q3;7;34;85;1509;28;77;0,33;44,38;53,13;0;United Kingdom;Western Europe;"Routledge";"1999, 2001, 2006, 2014-2026";"History (Q3); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29549;21101060461;"Journal of African American History";journal;"21535086, 15481867";"University of Chicago Press";No;No;0,109;Q3;6;20;65;308;15;51;0,24;15,40;40,00;0;United States;Northern America;"University of Chicago Press";"2010-2011, 2013-2014, 2016-2025";"History (Q3)";"Arts and Humanities" +29550;21100928227;"Journal of Chinese Literature and Culture";journal;"23290056, 23290048";"Duke University Press";No;No;0,109;Q3;4;7;49;394;7;48;0,06;56,29;30,77;0;United States;Northern America;"Duke University Press";"2019-2025";"Literature and Literary Theory (Q3); Anthropology (Q4)";"Arts and Humanities; Social Sciences" +29551;21100897298;"Journal of Jewish Languages";journal;"22134638, 22134387";"Brill Academic Publishers";No;No;0,109;Q3;8;8;28;266;9;27;0,21;33,25;16,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2025";"History (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29552;21100833014;"Journal of World Popular Music";journal;"20524919, 20524900";"Equinox Publishing Ltd";No;No;0,109;Q3;7;8;32;345;8;30;0,24;43,13;21,43;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2014-2025";"Music (Q3)";"Arts and Humanities" +29553;19900192171;"Junctures - The Journal for Thematic Dialogue";journal;"11765119, 11798912";"Otago Polytechnic";Yes;No;0,109;Q3;4;6;26;152;5;22;0,21;25,33;75,00;0;New Zealand;Pacific Region;"Otago Polytechnic";"2009-2012, 2015-2020, 2022-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29554;21100386857;"Landscapes (United Kingdom)";journal;"14662035, 20408153";"Maney Publishing";No;No;0,109;Q3;9;1;27;69;4;24;0,15;69,00;0,00;0;United Kingdom;Western Europe;"Maney Publishing";"2002-2026";"History (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4)";"Arts and Humanities; Environmental Science; Social Sciences" +29555;16100154782;"Medieval History Journal";journal;"09730753, 09719458";"SAGE Publications Inc.";No;No;0,109;Q3;18;8;41;579;16;40;0,34;72,38;0,00;0;United States;Northern America;"SAGE Publications Inc.";"1998-2025";"History (Q3)";"Arts and Humanities" +29556;16400154710;"Modern Drama";journal;"00267694, 17125286";"University of Toronto Press";No;No;0,109;Q3;16;10;135;491;16;135;0,08;49,10;66,67;0;Canada;Northern America;"University of Toronto Press";"2002-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29557;23739;"Quaerendo";journal;"00149527, 15700690";"Brill Academic Publishers";No;No;0,109;Q3;10;18;41;1192;6;39;0,14;66,22;64,71;0;Netherlands;Western Europe;"Brill Academic Publishers";"1971-1979, 1981-1985, 1987-2025";"History (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +29558;16100154707;"Res: Anthropology and Aesthetics";journal;"23279621, 02771322";"University of Chicago Press";No;No;0,109;Q3;17;16;61;516;3;34;0,08;32,25;21,43;0;United States;Northern America;"University of Chicago Press";"2002-2010, 2012-2015, 2017-2025";"Visual Arts and Performing Arts (Q3); Anthropology (Q4); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29559;21101122878;"Revista de Comunicacao e Linguagens";journal;"21837198";"The Institute of Communication of NOVA, ICNOVA of the Universidade NOVA from Lisbon";No;Yes;0,109;Q3;2;19;45;606;5;42;0,14;31,89;44,44;0;Portugal;Western Europe;"The Institute of Communication of NOVA, ICNOVA of the Universidade NOVA from Lisbon";"2019-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Arts and Humanities (miscellaneous) (Q4); Philosophy (Q4)";"Arts and Humanities" +29560;21100268024;"Revista de Historia das Ideias";journal;"08700958";"University of Coimbra";Yes;Yes;0,109;Q3;5;15;42;550;8;39;0,11;36,67;15,38;0;Portugal;Western Europe;"University of Coimbra";"2011-2012, 2016-2025";"History (Q3); Cultural Studies (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +29561;19900193645;"Revista de Historia Regional";journal;"14140055";"Universidade Estadual de Ponta Grossa, Editora";Yes;Yes;0,109;Q3;5;33;61;1137;6;61;0,15;34,45;38,46;0;Brazil;Latin America;"Universidade Estadual de Ponta Grossa, Editora";"2011-2025";"History (Q3)";"Arts and Humanities" +29562;5700169160;"Romance Quarterly";journal;"19403216, 08831157";"Routledge";No;No;0,109;Q3;8;20;59;771;14;54;0,29;38,55;36,84;0;United Kingdom;Western Europe;"Routledge";"1986-2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29563;21101137850;"Studia Academica Sumenensia";journal;"26035138, 23675446";"Elsevier Ltd";No;No;0,109;Q3;1;0;51;0;4;48;0,09;0,00;0,00;0;Bulgaria;Eastern Europe;"Elsevier Ltd";"2019-2024";"Classics (Q3); History (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29564;21100920646;"Studies in Ancient Art and Civilization";journal;"2449867X, 18991548";"Ksiegarnia Akademicka Publishing Ltd";Yes;Yes;0,109;Q3;4;9;39;385;6;38;0,13;42,78;42,86;0;Poland;Eastern Europe;"Ksiegarnia Akademicka Publishing Ltd";"2018-2025";"Classics (Q3); Museology (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29565;21100887524;"Theatre and Performance Design";journal;"23322578, 23322551";"Taylor and Francis Ltd.";No;No;0,109;Q3;9;8;62;65;15;44;0,20;8,13;66,67;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2025";"Visual Arts and Performing Arts (Q3); Architecture (Q4)";"Arts and Humanities; Engineering" +29566;16100154772;"Triquarterly";journal;"00413097";"Northwestern University Press";No;No;0,109;Q3;3;0;4;0;1;4;0,25;0,00;0,00;0;United States;Northern America;"Northwestern University Press";"2002-2019, 2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29567;21100228742;"University of Bucharest Review: Literary and Cultural Studies Series";journal;"27345963, 20698658";"Bucharest University Press";Yes;Yes;0,109;Q3;3;14;57;329;8;57;0,13;23,50;60,00;0;Romania;Eastern Europe;"Bucharest University Press";"2011-2012, 2016-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29568;21100202712;"Wacana Seni";journal;"16753410, 21804311";"Penerbit Universiti Sains Malaysia";No;No;0,109;Q3;5;10;39;343;5;35;0,10;34,30;35,71;0;Malaysia;Asiatic Region;"Penerbit Universiti Sains Malaysia";"2011-2025";"Music (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29569;21101171690;"Yakin Donem Turkiye Arastirmalari";journal;"13049720, 25479679";"Istanbul University Press";Yes;Yes;0,109;Q3;2;16;70;734;4;70;0,04;45,88;50,00;0;Turkey;Middle East;"Istanbul University Press";"2019-2025";"History (Q3); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29570;21101060493;"Zeitschrift fur Unternehmensgeschichte";journal;"23672293, 03422852";"De Gruyter Oldenbourg";No;No;0,109;Q3;11;10;37;1023;8;36;0,07;102,30;20,00;0;Germany;Western Europe;"De Gruyter Oldenbourg";"1996-2025";"History (Q3); Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance" +29571;21100862481;"ACRN Journal of Finance and Risk Perspectives";journal;"23057394";"ACRN Oxford Ltd.";Yes;No;0,109;Q4;9;0;10;0;7;10;0,25;0,00;0,00;0;United Kingdom;Western Europe;"ACRN Oxford Ltd.";"2017-2023";"Accounting (Q4); Business and International Management (Q4); Finance (Q4); Statistics, Probability and Uncertainty (Q4)";"Business, Management and Accounting; Decision Sciences; Economics, Econometrics and Finance" +29572;19900192120;"Acta Philosophica";journal;"11212179, 18256562";"Fabrizio Serra Editore Srl";No;No;0,109;Q4;6;24;53;1380;6;49;0,09;57,50;26,09;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2011-2025";"Philosophy (Q4)";"Arts and Humanities" +29573;24117;"Advancing Microelectronics";journal;"22228748";"IMAPS-International Microelectronics and Packaging Society";No;No;0,109;Q4;13;25;422;182;32;390;0,05;7,28;18,68;0;United States;Northern America;"IMAPS-International Microelectronics and Packaging Society";"1995-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +29574;21100827842;"Analisis Filosofico";journal;"03261301, 18519636";"Sociedad Argentina de Analisis Filosofico";Yes;Yes;0,109;Q4;5;37;71;1675;12;66;0,08;45,27;31,25;0;Argentina;Latin America;"Sociedad Argentina de Analisis Filosofico";"2017-2025";"Philosophy (Q4)";"Arts and Humanities" +29575;21101323182;"Ascarya: Journal of Islamic Science, Culture and Social Studies";journal;"27754243, 27985083";"Perkumpulan Alumni dan Santri Mahyajatul Qurro";Yes;No;0,109;Q4;2;22;56;1052;10;56;0,24;47,82;40,54;0;Indonesia;Asiatic Region;"Perkumpulan Alumni dan Santri Mahyajatul Qurro";"2021-2025";"Cultural Studies (Q4); Religious Studies (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29576;21101210413;"Biological Models Research and Technology Journal";journal;"26759225";"";No;No;0,109;Q4;1;0;14;0;2;14;0,20;0,00;0,00;0;Brazil;Latin America;"";"2020, 2022-2024";"Animal Science and Zoology (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Health Policy (Q4); Medical Laboratory Technology (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine; Veterinary" +29577;21100938727;"British Journal for the History of Mathematics";journal;"26375494, 26375451";"Taylor and Francis Ltd.";No;No;0,109;Q4;10;11;40;586;18;35;0,44;53,27;21,43;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2019-2026";"Education (Q4); History and Philosophy of Science (Q4); Mathematics (miscellaneous) (Q4)";"Arts and Humanities; Mathematics; Social Sciences" +29578;17055;"Bulletin de l'Academie Veterinaire de France";journal;"00341843, 00014192";"Academie Veterinaire de France";No;No;0,109;Q4;8;0;139;0;14;131;0,06;0,00;0,00;0;France;Western Europe;"Academie Veterinaire de France";"1946-1948, 1964-1974, 2008-2024";"Veterinary (miscellaneous) (Q4)";"Veterinary" +29579;145363;"Cattle Practice";journal;"09691251";"British Cattle Veterinary Association";No;No;0,109;Q4;15;0;162;0;2;71;0,01;0,00;0,00;0;United Kingdom;Western Europe;"British Cattle Veterinary Association";"2005-2017, 2020-2024";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +29580;21101242417;"Chinese Journal of General Surgery";journal;"1007631X";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,109;Q4;4;89;341;1894;38;341;0,11;21,28;28,95;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Surgery (Q4)";"Medicine" +29581;21101152624;"Clinical Psychology Today";journal;"25655698";"University of Galway";Yes;Yes;0,109;Q4;2;8;28;380;1;23;0,00;47,50;73,68;0;Ireland;Western Europe;"University of Galway";"2019-2025";"Clinical Psychology (Q4)";"Psychology" +29582;5700164093;"Comparative American Studies";journal;"17412676, 14775700";"Maney Publishing";No;No;0,109;Q4;10;24;68;1152;14;61;0,21;48,00;77,42;0;United Kingdom;Western Europe;"Maney Publishing";"2008-2026";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29583;19700188238;"Contemporary Arab Affairs";journal;"17550912, 17550920";"Brill Academic Publishers";No;No;0,109;Q4;16;27;64;1320;13;61;0,27;48,89;19,35;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2026";"Cultural Studies (Q4); Political Science and International Relations (Q4)";"Social Sciences" +29584;21101111531;"Culture Crossroads";journal;"25009974";"Latvian Academy of Culture";No;No;0,109;Q4;3;11;74;267;9;74;0,14;24,27;80,00;0;Latvia;Eastern Europe;"Latvian Academy of Culture";"2019-2020, 2022-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +29585;21100213000;"Dialogue";journal;"02428962";"Korean Neurological Association";No;No;0,109;Q4;11;0;118;0;12;110;0,12;0,00;0,00;0;South Korea;Asiatic Region;"Korean Neurological Association";"2001-2024";"Development (Q4); Health (social science) (Q4); Philosophy (Q4); Social Psychology (Q4)";"Arts and Humanities; Psychology; Social Sciences" +29586;5700183004;"Ela";journal;"0071190X";"Klincksieck";No;No;0,109;Q4;7;0;57;0;4;51;0,11;0,00;0,00;0;France;Western Europe;"Klincksieck";"2001-2022, 2024";"Linguistics and Language (Q4)";"Social Sciences" +29587;21101392295;"Engineering and Technology Horizons";journal;"29851688";"King Mongkut's Institute of Technology Ladkrabang";No;No;0,109;Q4;2;32;88;664;11;88;0,13;20,75;47,06;0;Thailand;Asiatic Region;"King Mongkut's Institute of Technology Ladkrabang";"2023-2025";"Chemical Engineering (miscellaneous) (Q4); Civil and Structural Engineering (Q4); Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Management of Technology and Innovation (Q4); Mechanical Engineering (Q4)";"Business, Management and Accounting; Chemical Engineering; Engineering" +29588;21101061440;"Environmental Engineering (Lithuania)";journal;"20297092";"Vilnius Gediminas Technical University";No;No;0,109;Q4;4;0;63;0;6;62;0,10;0,00;0,00;0;Lithuania;Eastern Europe;"Vilnius Gediminas Technical University";"2020, 2023";"Environmental Engineering (Q4)";"Environmental Science" +29589;21101061457;"European Pharmaceutical Law Review";journal;"25117157, 25117181";"Lexxion Verlagsgesellschaft mbH";No;No;0,109;Q4;6;0;15;0;6;7;0,00;0,00;0,00;0;Germany;Western Europe;"Lexxion Verlagsgesellschaft mbH";"2019-2022";"Drug Discovery (Q4); Law (Q4); Pharmaceutical Science (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +29590;19900191992;"Filozofia Nauki";journal;"26575868, 12306894";"University of Warsaw, Institute of Philosophy";Yes;Yes;0,109;Q4;6;0;53;0;4;41;0,07;0,00;0,00;0;Poland;Eastern Europe;"University of Warsaw, Institute of Philosophy";"2011-2023";"History and Philosophy of Science (Q4); Philosophy (Q4)";"Arts and Humanities" +29591;7200153165;"FMC Formacion Medica Continuada en Atencion Primaria";journal;"15789675, 11342072";"Ediciones Doyma, S.L.";No;No;0,109;Q4;8;130;397;2181;26;389;0,05;16,78;57,30;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2005-2026";"Community and Home Care (Q4); Gastroenterology (Q4)";"Medicine; Nursing" +29592;13897;"Fossils";journal;"00229202";"Palaeontological Society of Japan";Yes;No;0,109;Q4;11;7;28;643;4;25;0,17;91,86;25,00;0;Japan;Asiatic Region;"Palaeontological Society of Japan";"1993-2025";"Paleontology (Q4)";"Earth and Planetary Sciences" +29593;21100937581;"Genocide Studies International";journal;"22911855, 22911847";"University of Toronto Press";No;No;0,109;Q4;7;0;22;0;6;18;0,63;0,00;0,00;0;Canada;Northern America;"University of Toronto Press";"2018-2023";"Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29594;11000153750;"Glass Technology: European Journal of Glass Science and Technology Part A";journal;"17533546, 17533554";"Society of Glass Technology";No;No;0,109;Q4;32;13;33;113;4;17;0,09;8,69;0,00;0;United Kingdom;Western Europe;"Society of Glass Technology";"2006-2025";"Ceramics and Composites (Q4); Materials Chemistry (Q4)";"Materials Science" +29595;21101176790;"Global Competition Litigation Review";journal;"27541843, 17566002";"Thomson Reuters";No;No;0,109;Q4;2;0;53;0;5;32;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Thomson Reuters";"2019-2024";"Law (Q4)";"Social Sciences" +29596;21101129624;"History of Philosophy and Logical Analysis";journal;"26664275, 26664283";"Brill Academic Publishers";No;No;0,109;Q4;5;25;38;876;6;35;0,13;35,04;25,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2026";"History and Philosophy of Science (Q4); Philosophy (Q4)";"Arts and Humanities" +29597;51313;"Infektoloski Glasnik";journal;"18487769, 13312820";"University Hospital of Infectious Diseases";No;No;0,109;Q4;9;0;20;0;3;18;0,00;0,00;0,00;0;Croatia;Eastern Europe;"University Hospital of Infectious Diseases";"2002-2022";"Epidemiology (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4)";"Medicine" +29598;21101307576;"International Conference on Parallel, Distributed and Grid Computing, PDGC";journal;"25733079, 25733087";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,109;Q4;2;0;152;0;39;141;0,26;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Hardware and Architecture (Q4); Health Informatics (Q4); Information Systems (Q4)";"Computer Science; Medicine" +29599;21100228552;"International Journal for the History of Engineering and Technology";journal;"17581214, 17581206";"Taylor and Francis Ltd.";No;No;0,109;Q4;6;17;26;553;7;25;0,33;32,53;25,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2012-2026";"Engineering (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Engineering; Social Sciences" +29600;21100204109;"inTRAlinea";journal;"1827000X";"University of Bologna";Yes;Yes;0,109;Q4;8;23;77;1030;17;73;0,22;44,78;92,31;0;Italy;Western Europe;"University of Bologna";"2011-2025";"Linguistics and Language (Q4)";"Social Sciences" +29601;26856;"Irish Theological Quarterly";journal;"00211400, 17524989";"SAGE Publications Inc.";No;No;0,109;Q4;11;21;55;972;12;54;0,24;46,29;33,33;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1951-1980, 1982-1983, 1985-1996, 1998-2026";"Religious Studies (Q4)";"Arts and Humanities" +29602;22514;"Japanese Journal of Chemotherapy";journal;"18845886, 13407007";"Japanese Society of Chemotherapy";No;No;0,109;Q4;13;2;39;33;4;39;0,00;16,50;30,00;0;Japan;Asiatic Region;"Japanese Society of Chemotherapy";"1995-2025";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +29603;12027;"Japanese Journal of Educational Psychology";journal;"00215015, 21863075";"Japanese Association of Educational Psychology";No;No;0,109;Q4;20;17;68;538;7;68;0,05;31,65;30,77;0;Japan;Asiatic Region;"Japanese Association of Educational Psychology";"1961-2025";"Developmental and Educational Psychology (Q4); Education (Q4)";"Psychology; Social Sciences" +29604;28781;"Japanese Journal of Physical Fitness and Sports Medicine";journal;"0039906X";"Japanese Society of Physical Fitness and Sports Medicine";No;No;0,109;Q4;14;20;110;567;13;109;0,09;28,35;29,27;0;Japan;Asiatic Region;"Japanese Society of Physical Fitness and Sports Medicine";"1956, 1958-2026";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)";"Health Professions; Medicine" +29605;100147336;"Journal, Indian Academy of Clinical Medicine";journal;"09723560";"Indian Academy of Clinical Medicine";No;No;0,109;Q4;17;45;122;737;8;111;0,06;16,38;40,44;0;India;Asiatic Region;"Indian Academy of Clinical Medicine";"2005-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29606;21100216301;"Journal of Chinese Soil and Water Conservation";journal;"02556073";"Chinese Soil and Water Conservation Society";No;No;0,109;Q4;8;13;70;383;9;70;0,11;29,46;36,36;0;Taiwan;Asiatic Region;"Chinese Soil and Water Conservation Society";"2012-2025";"Earth-Surface Processes (Q4); Geotechnical Engineering and Engineering Geology (Q4); Soil Science (Q4); Water Science and Technology (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences; Environmental Science" +29607;21101043387;"Journal of International Business Education";journal;"20444575, 16494946";"NeilsonJournals Publishing";No;No;0,109;Q4;4;0;59;0;7;59;0,07;0,00;0,00;0;United Kingdom;Western Europe;"NeilsonJournals Publishing";"2019-2024";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Marketing (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +29608;21101176852;"Journal of Statistical Research";journal;"0256422X";"Institute of Statistical Research and Training (ISRT), University of Dhaka";No;No;0,109;Q4;3;10;36;236;6;35;0,19;23,60;4,76;0;Bangladesh;Asiatic Region;"Institute of Statistical Research and Training (ISRT), University of Dhaka";"2019-2025";"Demography (Q4); Modeling and Simulation (Q4); Social Sciences (miscellaneous) (Q4); Statistics and Probability (Q4)";"Mathematics; Social Sciences" +29609;22600;"Journal of Wildlife Rehabilitation";journal;"21669198, 10712232";"International Wildlife Rehabilitation Council";Yes;No;0,109;Q4;10;5;15;82;1;10;0,07;16,40;40,00;0;United States;Northern America;"International Wildlife Rehabilitation Council";"1996-2004, 2006, 2008, 2010-2011, 2014-2021, 2023-2025";"Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Veterinary" +29610;21100229838;"Kukila";journal;"02169223";"WCS - Indonesia";Yes;No;0,109;Q4;13;0;4;0;1;4;0,25;0,00;0,00;0;Indonesia;Asiatic Region;"WCS - Indonesia";"1996-1998, 2000, 2003, 2006, 2009, 2011-2020, 2023";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +29611;21101089571;"Laboratory Diagnostics. Eastern Europe";journal;"22265392, 2522137X";"Professionalnye Izdaniya";No;No;0,109;Q4;4;73;163;1672;26;163;0,19;22,90;63,39;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2019-2026";"Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Immunology and Microbiology (miscellaneous) (Q4); Medical Laboratory Technology (Q4); Pathology and Forensic Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions; Immunology and Microbiology; Medicine" +29612;21100928681;"Lebenswelt";journal;"22409599";"Universita degli Studi di Milano";Yes;Yes;0,109;Q4;2;2;51;61;5;51;0,11;30,50;50,00;0;Italy;Western Europe;"Universita degli Studi di Milano";"2019-2026";"Philosophy (Q4)";"Arts and Humanities" +29613;17106;"Lijecnicki Vjesnik";journal;"00243477, 18492177";"Croatian Medical Association";Yes;Yes;0,109;Q4;18;45;345;1630;28;318;0,08;36,22;58,38;0;Croatia;Eastern Europe;"Croatian Medical Association";"1949-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29614;21101216643;"Magistra Iadertina";journal;"18490018, 18463606";"University of Zadar Department of Teacher and Preschool Teacher Education";Yes;Yes;0,109;Q4;2;8;33;338;2;33;0,08;42,25;73,33;0;Croatia;Eastern Europe;"University of Zadar Department of Teacher and Preschool Teacher Education";"2020-2025";"Arts and Humanities (miscellaneous) (Q4); Education (Q4)";"Arts and Humanities; Social Sciences" +29615;21100927226;"Metas de Enfermeria";journal;"11387262";"DAE Editorial, Grupo Paradigma";No;No;0,109;Q4;4;0;302;0;18;185;0,07;0,00;0,00;0;Spain;Western Europe;"DAE Editorial, Grupo Paradigma";"2019-2024";"Nursing (miscellaneous) (Q4)";"Nursing" +29616;26278;"New Zealand Dental Journal";journal;"00288047";"New Zealand Dental Association";No;No;0,109;Q4;24;18;53;604;5;52;0,11;33,56;20,34;0;New Zealand;Pacific Region;"New Zealand Dental Association";"1945-1946, 1949-1951, 1965-2017, 2020-2025";"Dentistry (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Dentistry; Medicine" +29617;21101264278;"Onco.News";journal;"21836914, 16467868";"Portuguese Oncological Nursing Association (AEOP)";Yes;Yes;0,109;Q4;2;16;38;418;4;31;0,12;26,13;81,82;0;Portugal;Western Europe;"Portuguese Oncological Nursing Association (AEOP)";"2020-2026";"Education (Q4); Health Professions (miscellaneous) (Q4); Oncology (nursing) (Q4)";"Health Professions; Nursing; Social Sciences" +29618;21000195013;"Otorhinolaryngology Clinics";journal;"0975444X, 09756957";"Jaypee Brothers Medical Publishers (P) Ltd";No;No;0,109;Q4;8;19;123;289;10;118;0,06;15,21;42,55;0;India;Asiatic Region;"Jaypee Brothers Medical Publishers (P) Ltd";"2011-2025";"Otorhinolaryngology (Q4)";"Medicine" +29619;17700155036;"Pensee Plurielle";journal;"17821479, 13760963";"De Boeck Supérieur";No;No;0,109;Q4;8;0;51;0;2;48;0,05;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"2001-2023";"Sociology and Political Science (Q4)";"Social Sciences" +29620;4000149104;"Pratiques en Nutrition";journal;"17667305";"Elsevier Masson s.r.l.";No;No;0,109;Q4;4;46;141;681;6;105;0,06;14,80;51,52;0;France;Western Europe;"Elsevier Masson s.r.l.";"2005-2026";"Nutrition and Dietetics (Q4)";"Nursing" +29621;21101314494;"Proceedings of the IEEE Power India International Conference, PIICON";journal;"26425289, 26425297";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,109;Q4;2;2;188;36;41;186;0,22;18,00;25,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Geography, Planning and Development (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Computer Science; Energy; Engineering; Social Sciences" +29622;21100285440;"Reformation";journal;"13574175, 17520738";"Maney Publishing";No;No;0,109;Q4;4;14;23;776;7;21;0,25;55,43;52,94;0;United Kingdom;Western Europe;"Maney Publishing";"2013-2025";"Religious Studies (Q4)";"Arts and Humanities" +29623;24317;"Revista de la Asociacion Odontologica Argentina";journal;"00044881, 26837226";"";Yes;Yes;0,109;Q4;3;27;70;704;5;70;0,07;26,07;45,65;0;Argentina;Latin America;"";"1955, 1961-1962, 1965-1975, 1977-1991, 2020-2025";"Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Orthodontics (Q4); Periodontics (Q4)";"Dentistry" +29624;17700155708;"Revue Internationale de Droit Penal";journal;"19516312, 02235404";"Maklu Publishers";No;No;0,109;Q4;11;0;77;0;6;73;0,09;0,00;0,00;0;Belgium;Western Europe;"Maklu Publishers";"2001-2024";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +29625;21101065483;"Rivista di Archeologia";journal;"22844546, 03920895";"Giorgio Bretschneider";No;No;0,109;Q4;2;0;18;0;3;17;0,27;0,00;0,00;0;Italy;Western Europe;"Giorgio Bretschneider";"2019-2023";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29626;16100154745;"Russell - Journal of the Bertrand Russell Studies";journal;"00360163, 19138032";"Johns Hopkins University Press";No;No;0,109;Q4;7;6;42;182;8;29;0,14;30,33;0,00;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"Philosophy (Q4)";"Arts and Humanities" +29627;21100264821;"Studi sulla Questione Criminale";journal;"18284973, 19733984";"Carocci Editore";No;No;0,109;Q4;6;11;58;413;8;51;0,13;37,55;57,14;0;Italy;Western Europe;"Carocci Editore";"2013-2025";"Law (Q4)";"Social Sciences" +29628;5600153400;"Synthesis Philosophica";journal;"03527875, 18482317";"Croatian Philosophical Society";Yes;Yes;0,109;Q4;12;18;74;1096;7;71;0,04;60,89;23,53;0;Croatia;Eastern Europe;"Croatian Philosophical Society";"1997, 2002-2025";"Philosophy (Q4)";"Arts and Humanities" +29629;17700156014;"Travail, Genre et Societes";journal;"12946303";"Editions La Decouverte";No;No;0,109;Q4;19;0;93;0;22;89;0,25;0,00;0,00;0;France;Western Europe;"Editions La Decouverte";"2001-2024";"Business and International Management (Q4); Economics and Econometrics (Q4); Gender Studies (Q4); Organizational Behavior and Human Resource Management (Q4); Sociology and Political Science (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +29630;19700175251;"Turkiye Klinikleri Pediatri";journal;"13000381, 21468990";"Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.";No;No;0,109;Q4;4;20;65;474;11;65;0,19;23,70;59,15;0;Turkey;Middle East;"Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.";"2010-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +29631;21683;"University of Pittsburgh Law Review";journal;"00419915";"University Library System, University of Pittsburgh";No;No;0,109;Q4;19;15;103;4106;13;96;0,09;273,73;27,27;0;United States;Northern America;"University Library System, University of Pittsburgh";"1973-1975, 1977, 1979-1980, 1982, 1985, 1987, 1989, 1991, 1993-1994, 1996-2025";"Law (Q4)";"Social Sciences" +29632;93609;"World Chinese Journal of Digestology";journal;"10093079";"Baishideng Publishing Group Inc";No;No;0,109;Q4;17;114;393;4190;29;393;0,07;36,75;45,93;0;China;Asiatic Region;"Baishideng Publishing Group Inc";"2000-2026";"Gastroenterology (Q4)";"Medicine" +29633;21101166980;"Zeitschrift fur Pneumologie";journal;"27317412";"Springer Medizin";No;No;0,109;Q4;7;54;148;1477;16;125;0,08;27,35;33,11;0;Germany;Western Europe;"Springer Medizin";"2022-2026";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +29634;19700183064;"Eurographics Symposium on Geometry Processing";conference and proceedings;"17278384";"Eurographics Association";No;No;0,109;-;23;0;54;0;3;51;0,05;0,00;0,00;0;Switzerland;Western Europe;"Eurographics Association";"2003, 2005-2024";"Geometry and Topology; Modeling and Simulation";"Mathematics" +29635;19700200804;"Transport Means - Proceedings of the International Conference";conference and proceedings;"1822296X";"Kauno Technologijos Universitetas";No;No;0,109;-;18;0;526;0;57;517;0,13;0,00;0,00;0;Latvia;Eastern Europe;"Kauno Technologijos Universitetas";"2005, 2007, 2010-2024";"Transportation";"Social Sciences" +29636;21100857116;"American, British and Canadian Studies";journal;"18411487, 1841964X";"Sciendo";Yes;Yes;0,108;Q3;5;21;63;761;13;57;0,19;36,24;26,32;0;Poland;Eastern Europe;"Sciendo";"2017-2025";"Literature and Literary Theory (Q3); Anthropology (Q4); Computer Science Applications (Q4); Cultural Studies (Q4); Linguistics and Language (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +29637;21101168054;"Anglican-Episcopal Theology and History";book series;"24057576";"Brill Academic Publishers";No;No;0,108;Q3;1;3;17;1005;2;4;0,00;335,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015, 2017, 2019-2020, 2022-2025";"History (Q3); Religious Studies (Q4)";"Arts and Humanities" +29638;17700154903;"Antigonish Review";journal;"00035661";"St. Francis Xavier University";No;No;0,108;Q3;2;0;17;0;0;4;0,00;0,00;0,00;0;Canada;Northern America;"St. Francis Xavier University";"2001-2002, 2009-2017, 2022";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29639;21101289841;"Arabic Christianity";book series;"24682454";"Brill Academic Publishers";No;No;0,108;Q3;4;0;4;0;0;4;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2024";"History (Q3); Religious Studies (Q4)";"Arts and Humanities" +29640;6000152836;"Archives of American Art Journal";journal;"23270667, 00039853";"University of Chicago Press";No;No;0,108;Q3;4;23;55;267;3;33;0,03;11,61;57,14;0;United States;Northern America;"University of Chicago Press";"2002-2025";"Museology (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29641;19700169806;"Art in Translation";journal;"17561310";"Taylor and Francis Ltd.";No;No;0,108;Q3;6;34;103;305;4;70;0,01;8,97;53,85;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2014-2026";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29642;21101162824;"Australian and New Zealand Journal of Art";journal;"14434318, 22031871";"Taylor and Francis Ltd.";No;No;0,108;Q3;3;20;54;690;7;45;0,19;34,50;45,83;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2002, 2019-2026";"Visual Arts and Performing Arts (Q3); Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +29643;21101045036;"Australian Art Education";journal;"10321942";"Art Education Australia";No;No;0,108;Q3;1;0;5;0;1;4;0,20;0,00;0,00;0;Australia;Pacific Region;"Art Education Australia";"2019-2020, 2024";"Visual Arts and Performing Arts (Q3); Education (Q4)";"Arts and Humanities; Social Sciences" +29644;21101134473;"Border Crossings";journal;"26354829, 23835222";"Global Institute for Japanese Studies, Korea University";Yes;Yes;0,108;Q3;2;33;96;649;5;95;0,06;19,67;45,16;0;South Korea;Asiatic Region;"Global Institute for Japanese Studies, Korea University";"2019-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29645;21100427186;"Brill's Indological Library";book series;"09252916";"Brill Academic Publishers";No;No;0,108;Q3;8;0;24;0;4;4;0,17;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2005, 2007-2017, 2020, 2022-2024";"History (Q3); Linguistics and Language (Q4); Philosophy (Q4); Religious Studies (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29646;21101124072;"Clotho";journal;"26706210, 26706229";"University of Ljubljana Press";Yes;Yes;0,108;Q3;3;17;60;430;11;52;0,21;25,29;68,75;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2019-2025";"Classics (Q3); History (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29647;21100835953;"Early China";journal;"03625028, 23252324";"Cambridge University Press";No;No;0,108;Q3;7;2;36;269;6;33;0,05;134,50;100,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1977, 1981-1982, 1985, 1995-1997, 2016-2026";"History (Q3); Literature and Literary Theory (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29648;21100845393;"Eugene O'Neill Review";journal;"21614318, 10409483";"Penn State University Press";No;No;0,108;Q3;3;12;77;231;5;63;0,09;19,25;22,22;0;United States;Northern America;"Penn State University Press";"2014-2015, 2017-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29649;16200154737;"Film History: An International Journal";journal;"08922160, 15533905";"Indiana University Press";No;No;0,108;Q3;20;12;41;833;11;41;0,15;69,42;33,33;0;United States;Northern America;"Indiana University Press";"1987, 1999, 2002-2025";"History (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29650;28922;"Histoire, Economie et Societe";journal;"07525702, 17775906";"Armand Colin";No;No;0,108;Q3;4;0;95;0;7;91;0,08;0,00;0,00;0;France;Western Europe;"Armand Colin";"1982-1984, 1986, 1988, 1999, 2001-2002, 2019-2024";"History (Q3)";"Arts and Humanities" +29651;21101148016;"Historiography of Rome and Its Empire";book series;"24682314";"Brill Academic Publishers";No;No;0,108;Q3;17;2;76;945;67;4;0,08;472,50;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2018-2025";"Classics (Q3); History (Q3)";"Arts and Humanities" +29652;21100406872;"History of Warfare";book series;"13857827";"Brill Academic Publishers";No;No;0,108;Q3;13;29;72;1411;11;4;0,15;48,66;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2022, 2024-2026";"History (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29653;21100409430;"Ideas, History, and Modern China";book series;"18759394";"Brill Academic Publishers";No;No;0,108;Q3;3;12;4;519;0;4;0,00;43,25;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2012, 2014-2016, 2018-2020, 2023-2025";"History (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29654;15309;"Imago Mundi";journal;"14797801, 03085694";"Routledge";No;No;0,108;Q3;22;27;71;225;23;38;0,33;8,33;66,67;0;United Kingdom;Western Europe;"Routledge";"1935, 1937, 1939, 1947-1956, 1959-1960, 1962-1972, 1975-1997, 2001, 2005-2025";"History (Q3); Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +29655;21101323187;"Iperstoria";journal;"22814582";"University of Verona, Deptarment of Foreign Languages and Literatures";No;No;0,108;Q3;4;37;113;1460;20;111;0,15;39,46;78,26;0;Italy;Western Europe;"University of Verona, Deptarment of Foreign Languages and Literatures";"2021-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29656;19600156837;"Jahrbuch fuer Geschichte Lateinamerikas/Anuario de Historia de America Latina";journal;"14384752, 21943680";"Hamburg University Press";No;Yes;0,108;Q3;3;7;34;649;4;31;0,08;92,71;28,57;0;Germany;Western Europe;"Hamburg University Press";"2001, 2018-2025";"History (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29657;21100885609;"Journal of American-East Asian Relations";journal;"10583947, 18765610";"Brill Academic Publishers";No;No;0,108;Q3;11;18;53;763;7;38;0,03;42,39;23,08;0;Netherlands;Western Europe;"Brill Academic Publishers";"1992, 1994, 1996, 1998-2000, 2002-2003, 2007-2025";"History (Q3); Cultural Studies (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29658;21100388416;"Journal of Dance and Somatic Practices";journal;"17571871, 1757188X";"Intellect Ltd.";No;No;0,108;Q3;9;14;52;364;7;47;0,13;26,00;73,68;0;United Kingdom;Western Europe;"Intellect Ltd.";"2014-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29659;21101290581;"Language of Classical Literature";book series;"25902709";"Brill Academic Publishers";No;No;0,108;Q3;10;1;4;575;0;4;0,00;575,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29660;21101184653;"Litera (Turkey)";journal;"13040057, 26022117";"Istanbul University Press";Yes;Yes;0,108;Q3;1;17;93;461;9;92;0,08;27,12;50,00;0;Turkey;Middle East;"Istanbul University Press";"2022-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29661;21100407150;"Medieval Mediterranean";book series;"09285520";"Brill Academic Publishers";No;No;0,108;Q3;10;44;87;2831;11;4;0,14;64,34;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2026";"History (Q3); Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29662;21101196041;"Monteagudo";journal;"05806712, 19896166";"Universidad de Murcia";No;Yes;0,108;Q3;2;14;59;379;3;55;0,05;27,07;41,67;0;Spain;Western Europe;"Universidad de Murcia";"2019-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29663;21101212712;"New English Teacher";journal;"29850959, 19057725";"Theodore Maria School of Arts, Assumption University";No;No;0,108;Q3;4;20;36;872;13;31;0,45;43,60;63,64;0;Thailand;Asiatic Region;"Theodore Maria School of Arts, Assumption University";"2020-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29664;21100202752;"Nordic Theatre Studies";journal;"09046380";"Foereningen Nordiska Teaterforskare";Yes;No;0,108;Q3;4;0;50;0;8;45;0,14;0,00;0,00;0;Iceland;Western Europe;"Foereningen Nordiska Teaterforskare";"2011-2012, 2014-2024";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29665;6400153187;"Nottingham French Studies";journal;"00294586, 20477236";"Edinburgh University Press";No;No;0,108;Q3;13;15;69;222;6;54;0,10;14,80;38,46;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996-2025";"History (Q3); Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29666;21100425802;"Numen Book Series";book series;"01698834";"Brill Academic Publishers";No;No;0,108;Q3;12;12;19;647;3;4;0,00;53,92;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2026";"History (Q3); Religious Studies (Q4)";"Arts and Humanities" +29667;21101148505;"Nuncius Series";book series;"24055077";"Brill Academic Publishers";No;No;0,108;Q3;3;0;12;0;0;4;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2018, 2020-2024, 2026";"Visual Arts and Performing Arts (Q3); History and Philosophy of Science (Q4)";"Arts and Humanities" +29668;21101017704;"Nuova Rivista di Letteratura Italiana";journal;"15907929";"Edizioni ETS";No;No;0,108;Q3;2;0;37;0;1;35;0,00;0,00;0,00;0;Italy;Western Europe;"Edizioni ETS";"2019-2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29669;21100407421;"Philosophia Antiqua";book series;"00791687";"Brill Academic Publishers";No;No;0,108;Q3;19;35;15;2880;2;4;0,14;82,29;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2025";"Classics (Q3); Philosophy (Q4)";"Arts and Humanities" +29670;21101196454;"Raport Archeologiczny";journal;"29568412";"Narodowy Instytut Dziedzictwa";No;No;0,108;Q3;2;7;21;186;3;19;0,17;26,57;18,18;0;Poland;Eastern Europe;"Narodowy Instytut Dziedzictwa";"2022-2025";"History (Q3); Museology (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29671;16100154786;"Revista de Estudios Hispanicos";journal;"0034818X, 21649308";"Washington University in St. Louis";No;No;0,108;Q3;9;19;129;897;9;126;0,05;47,21;57,89;0;United States;Northern America;"Washington University in St. Louis";"2002-2012, 2015-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29672;19600166417;"Script and Print";journal;"18349013";"Australian and New Zealand Student Services Association";No;No;0,108;Q3;5;0;14;0;0;4;0,00;0,00;0,00;0;Australia;Pacific Region;"Australian and New Zealand Student Services Association";"2008-2022";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +29673;21101074582;"Studies in Peoples History";journal;"23484489, 23497718";"Sage Publications India Pvt. Ltd";No;No;0,108;Q3;6;17;52;429;8;52;0,09;25,24;60,00;0;Singapore;Asiatic Region;"Sage Publications India Pvt. Ltd";"2014-2025";"History (Q3); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29674;6500153166;"Tempo (United Kingdom)";journal;"00402982, 14782286";"Cambridge University Press";No;No;0,108;Q3;10;29;120;768;12;106;0,09;26,48;20,69;0;United Kingdom;Western Europe;"Cambridge University Press";"1939, 1941, 1944-1950, 1963-1993, 1996-2025";"Music (Q3)";"Arts and Humanities" +29675;20500195100;"Tuna";journal;"14064030";"National Archives of Estonia";No;No;0,108;Q3;5;30;143;829;7;4;0,07;27,63;70,00;0;Estonia;Eastern Europe;"National Archives of Estonia";"2011-2014, 2017-2025";"History (Q3); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +29676;5800161570;"Yale Review";journal;"00440124, 14679736";"Johns Hopkins University Press";No;No;0,108;Q3;6;0;129;0;12;119;0,13;0,00;0,00;0;United States;Northern America;"Johns Hopkins University Press";"1997, 2000, 2003, 2009-2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29677;16376;"Academe";journal;"01902946";"American Association of University Professors";No;No;0,108;Q4;25;33;143;98;17;90;0,13;2,97;53,85;0;United States;Northern America;"American Association of University Professors";"1996-2025";"Education (Q4)";"Social Sciences" +29678;19700187711;"African and Black Diaspora";journal;"17528631, 1752864X";"Routledge";No;No;0,108;Q4;16;1;4;49;0;4;0,00;49,00;0,00;0;United Kingdom;Western Europe;"Routledge";"2010-2022, 2025";"Anthropology (Q4); Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Demography (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29679;21101219814;"Afrika Focus";journal;"2031356X, 0772084X";"Brill Academic Publishers";No;No;0,108;Q4;17;25;63;1083;11;57;0,18;43,32;20,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1985-2001, 2005-2025";"Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +29680;29821;"Antarctic Record";journal;"00857289";"National Institute of Polar Research";Yes;Yes;0,108;Q4;10;3;9;108;4;9;0,43;36,00;12,50;0;Japan;Asiatic Region;"National Institute of Polar Research";"1979-1986, 1990-2025";"Aquatic Science (Q4); Earth and Planetary Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +29681;16000154766;"Archeologia Medievale";journal;"03900592";"Edizioni all'Insegna del Giglio s.a.s.";No;No;0,108;Q4;15;0;42;0;5;41;0,09;0,00;0,00;0;Italy;Western Europe;"Edizioni all'Insegna del Giglio s.a.s.";"2002-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29682;17685;"Australian Veterinary Practitioner";journal;"0310138X";"Australian Veterinary Association";No;No;0,108;Q4;18;0;5;0;0;4;0,00;0,00;0,00;0;Australia;Pacific Region;"Australian Veterinary Association";"1996-2013, 2015, 2017-2019, 2022";"Small Animals (Q4)";"Veterinary" +29683;4700153001;"Austrian Journal of Agricultural Economics and Rural Studies";journal;"18158129, 18151027";"OGA-Osterreichische Gesellschaft fur Agrarokonomie";No;No;0,108;Q4;9;3;38;83;4;36;0,04;27,67;66,67;0;Austria;Western Europe;"OGA-Osterreichische Gesellschaft fur Agrarokonomie";"2006-2016, 2018-2023, 2025";"Agronomy and Crop Science (Q4); Economics and Econometrics (Q4); Forestry (Q4)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +29684;52916;"Avances en Odontoestomatologia";journal;"02131285";"Ediciones Avances S.L.";Yes;No;0,108;Q4;9;14;93;587;6;91;0,06;41,93;41,67;0;Spain;Western Europe;"Ediciones Avances S.L.";"1985-1991, 2003-2025";"Dentistry (miscellaneous) (Q4); Otorhinolaryngology (Q4)";"Dentistry; Medicine" +29685;21100407280;"Brill's Studies in Indo-European Languages and Linguistics";book series;"18756328";"Brill Academic Publishers";No;No;0,108;Q4;7;1;4;1336;0;4;0,00;1336,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010, 2012-2018, 2020, 2022-2023, 2025";"Linguistics and Language (Q4)";"Social Sciences" +29686;21100826432;"Bulletin of Computational Applied Mathematics";journal;"22448659";"Universidad Simon Bolivar";Yes;Yes;0,108;Q4;8;0;44;0;5;42;0,00;0,00;0,00;0;Venezuela;Latin America;"Universidad Simon Bolivar";"2017-2024";"Applied Mathematics (Q4); Computational Mathematics (Q4)";"Mathematics" +29687;21100450146;"Cadernos de Estudos Africanos";journal;"21827400, 16453794";"Centro de Estudos Africanos do ISCTE, Instituto Universitario de Lisboa";Yes;Yes;0,108;Q4;8;0;60;0;12;60;0,08;0,00;0,00;0;Portugal;Western Europe;"Centro de Estudos Africanos do ISCTE, Instituto Universitario de Lisboa";"2014-2024";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29688;21100243004;"Cahiers du Genre";journal;"19683928, 12986046";"L'Harmattan";No;No;0,108;Q4;12;0;77;0;8;74;0,08;0,00;0,00;0;France;Western Europe;"L'Harmattan";"2011-2024";"Demography (Q4); Gender Studies (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29689;21100795039;"Cahiers Scientifiques du Transport";journal;"11508809";"Association Francaise des Instituts de Transport et de Logistique";No;No;0,108;Q4;2;2;4;87;0;4;0,00;43,50;9,09;0;France;Western Europe;"Association Francaise des Instituts de Transport et de Logistique";"2016-2017, 2019, 2024-2025";"Transportation (Q4)";"Social Sciences" +29690;19700174892;"Chinese Journal of Cancer Biotherapy";journal;"1007385X";"";No;No;0,108;Q4;5;153;502;5950;43;502;0,09;38,89;47,79;0;China;Asiatic Region;"";"2008-2011, 2013-2016, 2018-2025";"Cancer Research (Q4); Molecular Medicine (Q4); Pharmacology (Q4)";"Biochemistry, Genetics and Molecular Biology; Pharmacology, Toxicology and Pharmaceutics" +29691;21101017657;"Chinese Journal of Neurosurgery";journal;"10012346";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,108;Q4;3;116;593;2525;39;591;0,08;21,77;28,62;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Neurology (clinical) (Q4); Surgery (Q4)";"Medicine" +29692;21101248203;"Chinese Journal of Rheumatology";journal;"10077480";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,108;Q4;3;71;212;2268;15;212;0,07;31,94;55,17;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2025";"Immunology and Allergy (Q4); Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4)";"Medicine" +29693;4400151739;"Cocuk Cerrahisi Dergisi";journal;"26677024, 13055194";"Logos Medical Publishing";No;No;0,108;Q4;4;28;72;568;10;69;0,21;20,29;43,62;0;Turkey;Middle East;"Logos Medical Publishing";"2005-2025";"Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)";"Medicine" +29694;18388;"Computers in Education Journal";journal;"10693769";"American Society for Engineering Education";No;No;0,108;Q4;15;4;11;168;4;11;0,36;42,00;38,46;0;United States;Northern America;"American Society for Engineering Education";"1994-2021, 2023-2025";"Computer Science (miscellaneous) (Q4); Education (Q4)";"Computer Science; Social Sciences" +29695;21100239231;"Contemporary Hypnosis and Integrative Therapy";journal;"20492154, 20492146";"Crown House Publishing";No;No;0,108;Q4;9;0;5;0;0;4;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Crown House Publishing";"2011-2017, 2021-2022";"Clinical Psychology (Q4); Complementary and Manual Therapy (Q4)";"Health Professions; Psychology" +29696;5800207734;"Dialectologia et Geolinguistica";journal;"09424040, 18670903";"De Gruyter Mouton";No;No;0,108;Q4;8;6;25;362;9;25;0,35;60,33;57,14;0;Germany;Western Europe;"De Gruyter Mouton";"1993-1995, 2009-2012, 2014-2025";"Linguistics and Language (Q4)";"Social Sciences" +29697;19500157805;"Digital TV Europe";journal;"2040266X";"Informa Media";No;No;0,108;Q4;0;0;14;0;0;4;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Informa Media";"2009-2014, 2016-2018, 2022";"Communication (Q4); Electrical and Electronic Engineering (Q4); Media Technology (Q4)";"Engineering; Social Sciences" +29698;21000195201;"EEAG Report on the European Economy";journal;"1611311X";"European Economic Advisory Group at CESifo";No;No;0,108;Q4;6;0;5;0;0;4;0,00;0,00;0,00;0;Germany;Western Europe;"European Economic Advisory Group at CESifo";"2006-2022";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +29699;21292;"Epitheorese Klinikes Farmakologias kai Farmakokinetikes";journal;"10116575";"PHARMAKON-Press";No;No;0,108;Q4;5;20;50;187;5;49;0,09;9,35;45,10;0;Greece;Western Europe;"PHARMAKON-Press";"1989-2025";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +29700;21100983131;"European Journal of Korean Studies";journal;"26314134, 25165399";"British Association for Korean Studies";No;No;0,108;Q4;5;20;53;1435;14;45;0,34;71,75;45,00;0;United Kingdom;Western Europe;"British Association for Korean Studies";"2017-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29701;27936;"Family Law Quarterly";journal;"0014729X";"American Bar Association";No;No;0,108;Q4;24;0;6;0;0;4;0,00;0,00;0,00;0;United States;Northern America;"American Bar Association";"1973-1975, 1977, 1979-1980, 1983-1985, 1988, 1991-1992, 1996-2012, 2017, 2022";"Law (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +29702;9500154122;"Genetic Engineering and Biotechnology News";journal;"1935472X";"Mary Ann Liebert Inc.";No;No;0,108;Q4;13;122;736;68;37;658;0,05;0,56;46,81;0;United States;Northern America;"Mary Ann Liebert Inc.";"2007-2025";"Bioengineering (Q4); Biomedical Engineering (Q4); Biotechnology (Q4); Management of Technology and Innovation (Q4)";"Biochemistry, Genetics and Molecular Biology; Business, Management and Accounting; Chemical Engineering; Engineering" +29703;28196;"GPS World";trade journal;"10485104";"North Coast Media";No;No;0,108;Q4;26;44;127;16;8;124;0,08;0,36;17,86;0;United States;Northern America;"North Coast Media";"1991-1994, 2001-2026";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +29704;17700156445;"Handbook of Statistics";book series;"01697161";"Elsevier B.V.";No;No;0,108;Q4;54;22;65;872;53;21;0,83;39,64;8,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1980, 1982-1985, 1988, 1991, 1993-1994, 1996-1998, 2000-2001, 2003, 2005-2007, 2009, 2012-2025";"Applied Mathematics (Q4); Modeling and Simulation (Q4); Statistics and Probability (Q4)";"Mathematics" +29705;21100943308;"Human Rights";journal;"24236489, 25386360";"Mofid University - Center for Human Rights Studies";Yes;Yes;0,108;Q4;2;0;50;0;5;50;0,00;0,00;0,00;0;Iran;Middle East;"Mofid University - Center for Human Rights Studies";"2019-2024";"Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29706;21101085532;"Infarma - Pharmaceutical Sciences";journal;"23189312, 01040219";"Conselho Federal de Farmacia";Yes;Yes;0,108;Q4;4;0;86;0;8;76;0,08;0,00;0,00;0;Brazil;Latin America;"Conselho Federal de Farmacia";"2019-2024";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +29707;21101392030;"International Conference 'The Future of Education'";book series;"23849509";"Pixel Associazione";No;No;0,108;Q4;4;112;362;2326;32;359;0,12;20,77;64,64;0;Italy;Western Europe;"Pixel Associazione";"2021-2025";"Education (Q4); Linguistics and Language (Q4)";"Social Sciences" +29708;5800204545;"International Environmental Law";book series;"18736599";"Brill Academic Publishers";No;No;0,108;Q4;5;19;19;1392;5;4;0,29;73,26;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006, 2013-2014, 2016-2017, 2020-2022, 2024-2025";"Law (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +29709;21100406310;"International Humanitarian Law Series";book series;"13896776";"Brill Academic Publishers";No;No;0,108;Q4;10;3;34;1295;11;4;0,33;431,67;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2016, 2018-2020, 2022-2026";"Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29710;21100913336;"International Journal of Critical Pedagogy";journal;"21571074";"University of North Carolina at Greensboro";Yes;Yes;0,108;Q4;5;8;22;259;6;19;0,17;32,38;72,73;0;United States;Northern America;"University of North Carolina at Greensboro";"2018-2020, 2022, 2024-2025";"Education (Q4)";"Social Sciences" +29711;6800153107;"International Journal of Foresight and Innovation Policy";journal;"17402816, 17402824";"Inderscience";No;No;0,108;Q4;25;0;17;0;5;17;0,29;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience";"2004-2013, 2015-2023";"Management of Technology and Innovation (Q4); Strategy and Management (Q4)";"Business, Management and Accounting" +29712;59651;"International Journal of Powder Metallurgy (Princeton, New Jersey)";journal;"08887462";"American Powder Metallurgy Institute";No;No;0,108;Q4;30;0;12;0;2;7;0,17;0,00;0,00;0;United States;Northern America;"American Powder Metallurgy Institute";"1969-1973, 1986-1994, 1996-2023";"Industrial and Manufacturing Engineering (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +29713;21100405698;"International Studies in Human Rights";book series;"09244751";"Brill Academic Publishers";No;No;0,108;Q4;13;0;93;0;1;4;0,01;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1991, 1994, 2006-2012, 2014-2021, 2023-2024, 2026";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +29714;21100203522;"Iride";journal;"26122170, 11227893";"Societa Editrice Il Mulino";No;No;0,108;Q4;6;26;68;652;4;67;0,04;25,08;52,17;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1997-2025";"Philosophy (Q4)";"Arts and Humanities" +29715;21101045040;"Irish Judicial Studies Journal";journal;"27120317";"The Irish Judicial Studies Journal";No;No;0,108;Q4;4;4;66;138;11;60;0,12;34,50;33,33;0;Ireland;Western Europe;"The Irish Judicial Studies Journal";"2019-2024";"Law (Q4)";"Social Sciences" +29716;33854;"Japanese Railway Engineering";journal;"04488938";"Japan Railway Engineers' Association";No;No;0,108;Q4;5;17;64;35;4;54;0,10;2,06;19,44;0;Japan;Asiatic Region;"Japan Railway Engineers' Association";"1971, 1973-1990, 1992-2025";"Mechanical Engineering (Q4)";"Engineering" +29717;21100924420;"Jerusalem Review of Legal Studies";journal;"22197117, 22197125";"Oxford University Press";No;No;0,108;Q4;10;14;77;630;11;73;0,14;45,00;40,00;0;United States;Northern America;"Oxford University Press";"2010-2025";"Law (Q4)";"Social Sciences" +29718;16243;"Journal fur Neurologie, Neurochirurgie und Psychiatrie";journal;"16081587, 16809440";"Krause und Pachernegg GmbH";Yes;No;0,108;Q4;8;9;63;456;2;57;0,00;50,67;50,00;0;Austria;Western Europe;"Krause und Pachernegg GmbH";"2002-2025";"Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4); Surgery (Q4)";"Medicine" +29719;21101268302;"Journal of Architectural History";journal;"20969368";"China Machine Press";No;No;0,108;Q4;2;43;162;1243;16;162;0,10;28,91;33,82;0;China;Asiatic Region;"China Machine Press";"2020-2025";"Archeology (arts and humanities) (Q4); Architecture (Q4); Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +29720;21101021414;"Journal of Asian Humanities at Kyushu University";journal;"24334855, 24334391";"Kyushu University";No;No;0,108;Q4;4;2;17;143;1;17;0,00;71,50;100,00;0;Japan;Asiatic Region;"Kyushu University";"2016-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +29721;21101266459;"Journal of Economic Animal";journal;"10077448";"";No;No;0,108;Q4;3;51;160;2446;19;160;0,13;47,96;43,92;0;China;Asiatic Region;"";"2020-2025";"Equine (Q4); Food Animals (Q4); Small Animals (Q4); Veterinary (miscellaneous) (Q4)";"Veterinary" +29722;21101058966;"Journal of Somaesthetics";journal;"22468498";"Aalborg University press";Yes;Yes;0,108;Q4;5;18;43;580;11;37;0,23;32,22;39,13;0;Denmark;Western Europe;"Aalborg University press";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Education (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +29723;21100872054;"Journal of the Anthropological Society of South Australia";journal;"10344438";"Anthropological Society of South Australia";Yes;No;0,108;Q4;10;0;4;0;0;4;0,00;0,00;0,00;0;Australia;Pacific Region;"Anthropological Society of South Australia";"1999, 2008, 2011-2020, 2022";"Anthropology (Q4)";"Social Sciences" +29724;17246;"Kaku igaku. The Japanese journal of nuclear medicine";journal;"00227854";"Japanese Society of Nuclear Medicine";No;No;0,108;Q4;10;0;4;0;0;4;0,00;0,00;0,00;0;Japan;Asiatic Region;"Japanese Society of Nuclear Medicine";"1972-2017, 2020-2023";"Medicine (miscellaneous) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +29725;21101220428;"Kalevalaseuran Vuosikirja";book series;"27371662, 03550311";"Suomalaisen Kirjallisuuden Seura";No;No;0,108;Q4;2;18;39;1026;7;4;0,08;57,00;0,00;0;Finland;Western Europe;"Suomalaisen Kirjallisuuden Seura";"2021-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +29726;21100321693;"Karstenia";journal;"04533402";"Finnish Mycological Society";No;No;0,108;Q4;11;0;9;0;1;9;0,00;0,00;0,00;0;Finland;Western Europe;"Finnish Mycological Society";"2013-2017, 2020-2023";"Infectious Diseases (Q4); Microbiology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Immunology and Microbiology; Medicine" +29727;21100262299;"Kerygma und Dogma";journal;"00230707";"Vandenhoeck and Ruprecht GmbH and Co. KG";No;No;0,108;Q4;3;15;61;1012;5;51;0,00;67,47;21,05;0;Germany;Western Europe;"Vandenhoeck and Ruprecht GmbH and Co. KG";"2011-2025";"Religious Studies (Q4)";"Arts and Humanities" +29728;110073;"KGK Kautschuk Gummi Kunststoffe";journal;"09483276";"Huthig GmbH";No;No;0,108;Q4;35;0;100;0;8;54;0,02;0,00;0,00;0;Germany;Western Europe;"Huthig GmbH";"1978-1980, 1982, 1988, 1996-2024";"Industrial and Manufacturing Engineering (Q4); Materials Chemistry (Q4); Mechanical Engineering (Q4); Polymers and Plastics (Q4)";"Engineering; Materials Science" +29729;21100201083;"Kierkegaard Studies";book series;"16129792, 14305372";"Walter de Gruyter GmbH";No;No;0,108;Q4;7;2;55;153;5;53;0,09;76,50;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2011-2025";"Philosophy (Q4)";"Arts and Humanities" +29730;18332;"Kleintierpraxis";journal;"00232076";"Verlag M. und H. Schaper GmbH";No;No;0,108;Q4;14;32;191;1133;5;146;0,03;35,41;76,06;0;Germany;Western Europe;"Verlag M. und H. Schaper GmbH";"1996, 1998-2025";"Small Animals (Q4)";"Veterinary" +29731;21100872050;"Korean Language in America";journal;"2374670X, 23320346";"Penn State University Press";No;No;0,108;Q4;6;0;27;0;6;27;0,12;0,00;0,00;0;United States;Northern America;"Penn State University Press";"2017-2024";"Education (Q4); Linguistics and Language (Q4)";"Social Sciences" +29732;18700156726;"Kriminologisches Journal";journal;"03411966";"Biomedical Research Press s.a.s.";No;No;0,108;Q4;8;4;32;173;6;25;0,10;43,25;63,64;0;Germany;Western Europe;"Biomedical Research Press s.a.s.";"2009-2013, 2015-2023, 2025";"Law (Q4); Safety Research (Q4)";"Social Sciences" +29733;21101262347;"Language: Classic - Modern - Postmodern";journal;"26167115, 25229281";"National University of Kyiv-Mohyla Academy";Yes;No;0,108;Q4;2;0;18;0;6;18;0,33;0,00;0,00;0;Ukraine;Eastern Europe;"National University of Kyiv-Mohyla Academy";"2023-2024";"Linguistics and Language (Q4)";"Social Sciences" +29734;5700168842;"Magyar Filozofiai Szemle";journal;"00250090, 15881024";"Aron Publishers";Yes;No;0,108;Q4;5;1;132;8;9;127;0,10;8,00;0,00;0;Hungary;Eastern Europe;"Aron Publishers";"2011-2025";"Philosophy (Q4)";"Arts and Humanities" +29735;19700182112;"Medicina Fluminensis";journal;"18476864";"Croatian Medical Association";Yes;No;0,108;Q4;11;53;168;1819;12;162;0,07;34,32;46,37;0;Croatia;Eastern Europe;"Croatian Medical Association";"2010-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29736;26682;"Medicina Interna de Mexico";journal;"01864866";"Comunicaciones Cientificas Mexicanas S.A. de C.V.";Yes;No;0,108;Q4;11;81;295;1863;22;264;0,06;23,00;35,33;0;Mexico;Latin America;"Comunicaciones Cientificas Mexicanas S.A. de C.V.";"1997-1999, 2001-2023, 2025";"Internal Medicine (Q4)";"Medicine" +29737;19700175724;"Medicinski Casopis";journal;"24060380, 03501221";"Serbian Medical Society";Yes;No;0,108;Q4;6;20;60;571;10;60;0,20;28,55;51,76;0;Serbia;Eastern Europe;"Serbian Medical Society";"2010-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29738;21101038533;"Middle Atlantic Review of Latin American Studies";journal;"24749621";"Middle Atlantic Council of Latin American Studies";Yes;Yes;0,108;Q4;6;12;45;449;7;39;0,18;37,42;33,33;0;United States;Northern America;"Middle Atlantic Council of Latin American Studies";"2017-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29739;21101301832;"New Scholarship in Political Economy";book series;"26662205";"Brill Academic Publishers";No;No;0,108;Q4;0;0;4;0;0;4;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021, 2023";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +29740;5600152701;"Nova Mehanizacija Sumarstva";journal;"18458815";"University of Zagreb Faculty of Forestry and Wood Technology";Yes;Yes;0,108;Q4;9;9;30;201;2;27;0,06;22,33;22,58;0;Croatia;Eastern Europe;"University of Zagreb Faculty of Forestry and Wood Technology";"2005-2010, 2012-2014, 2016-2025";"Forestry (Q4); Mechanical Engineering (Q4)";"Agricultural and Biological Sciences; Engineering" +29741;21100330726;"NTUT Journal of Intellectual Property Law and Management";journal;"22266771";"National Taipei University of Technology";No;No;0,108;Q4;4;0;38;0;5;35;0,08;0,00;0,00;0;Taiwan;Asiatic Region;"National Taipei University of Technology";"2012-2024";"Business and International Management (Q4); Law (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Social Sciences" +29742;19500157021;"Osteopathic Family Physician";journal;"1877573X";"American College of Osteopathic Family Physicians";No;No;0,108;Q4;10;22;137;304;8;74;0,02;13,82;64,52;1;United States;Northern America;"American College of Osteopathic Family Physicians";"2009-2026";"Family Practice (Q4)";"Medicine" +29743;5700165150;"Paediatria Croatica, Supplement";journal;"1330724X";"Children's Hospital Zagreb";No;No;0,108;Q4;7;83;4;1705;0;4;0,00;20,54;58,02;0;Croatia;Eastern Europe;"Children's Hospital Zagreb";"1998-2019, 2021, 2023-2026";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +29744;21101390657;"Palestine Technical University Research Journal";journal;"23078081, 2307809X";"Palestine Technical University";No;No;0,108;Q4;2;49;116;1227;15;116;0,13;25,04;27,03;0;Palestine;Middle East;"Palestine Technical University";"2022-2025";"Education (Q4)";"Social Sciences" +29745;21101301188;"Pathologia";journal;"23101237, 23068027";"Zaporizhzhia State Medical and Pharmaceutical University";Yes;No;0,108;Q4;4;33;117;811;18;117;0,15;24,58;52,94;0;Ukraine;Eastern Europe;"Zaporizhzhia State Medical and Pharmaceutical University";"2021-2025";"Genetics (clinical) (Q4); Health Professions (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4)";"Health Professions; Medicine" +29746;5200152604;"Pharma Times";journal;"00316849";"Indian Pharmaceutical Association";No;No;0,108;Q4;13;76;134;1606;23;100;0,23;21,13;34,52;0;India;Asiatic Region;"Indian Pharmaceutical Association";"2006-2026";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +29747;19700169101;"Pharmeuropa bio & scientific notes";journal;"20752164, 20752504";"European Directorate for the Quality of Medicines";No;No;0,108;Q4;13;2;24;0;6;24;0,28;0,00;60,00;0;France;Western Europe;"European Directorate for the Quality of Medicines";"2009-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29748;5700160339;"Philosophica";journal;"03798402";"Ghent University";Yes;No;0,108;Q4;9;0;5;0;0;4;0,00;0,00;0,00;0;Belgium;Western Europe;"Ghent University";"2012-2015, 2017, 2022";"Philosophy (Q4)";"Arts and Humanities" +29749;14645;"Planning Advisory Service Memo";journal;"21691908, 10407340";"American Planning Association";No;No;0,108;Q4;4;4;13;68;2;13;0,00;17,00;54,55;0;United States;Northern America;"American Planning Association";"1989-1990, 1992-2018, 2022-2025";"Geography, Planning and Development (Q4)";"Social Sciences" +29750;21100873941;"Powder Metallurgy Progress";journal;"13394533, 13358987";"De Gruyter Open Ltd";Yes;No;0,108;Q4;8;0;7;0;1;7;0,00;0,00;0,00;0;Germany;Western Europe;"De Gruyter Open Ltd";"2018-2023";"Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +29751;4000150801;"Praticien en Anesthesie Reanimation";journal;"12797960";"Elsevier Masson s.r.l.";No;No;0,108;Q4;6;61;168;1127;11;146;0,07;18,48;39,81;0;France;Western Europe;"Elsevier Masson s.r.l.";"2006-2026";"Anesthesiology and Pain Medicine (Q4); Emergency Medicine (Q4); Emergency Nursing (Q4)";"Medicine; Nursing" +29752;16910;"Public Roads";trade journal;"00333735";"U.S. Federal Highway Administration";No;No;0,108;Q4;14;6;90;48;7;90;0,03;8,00;22,22;0;United States;Northern America;"U.S. Federal Highway Administration";"1969-1990, 1992-2025";"Civil and Structural Engineering (Q4); Geography, Planning and Development (Q4); Transportation (Q4)";"Engineering; Social Sciences" +29753;21100407162;"Queen Mary Studies in International Law";book series;"18774822";"Brill Academic Publishers";No;No;0,108;Q4;8;14;4;4254;0;4;0,00;303,86;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2016, 2018-2026";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +29754;21100843026;"REACH";journal;"23523093";"Elsevier GmbH";No;No;0,108;Q4;16;0;4;0;3;4;0,00;0,00;0,00;0;Germany;Western Europe;"Elsevier GmbH";"2016-2022";"Aerospace Engineering (Q4); Human Factors and Ergonomics (Q4); Medicine (miscellaneous) (Q4); Radiation (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Engineering; Medicine; Physics and Astronomy; Social Sciences" +29755;21100281307;"Recherches en Didactiques des Sciences et des Technologies";journal;"21106460";"Institut National de Recherche Pedagogique";No;No;0,108;Q4;7;6;46;279;7;46;0,07;46,50;77,78;0;France;Western Europe;"Institut National de Recherche Pedagogique";"2011, 2013-2025";"Education (Q4)";"Social Sciences" +29756;21101082209;"Revista Brasileira de Ciencias Policiais";journal;"23186917, 21780013";"National Police Academy";Yes;Yes;0,108;Q4;3;0;115;0;7;107;0,06;0,00;0,00;0;Brazil;Latin America;"National Police Academy";"2019-2024";"Law (Q4); Political Science and International Relations (Q4); Safety Research (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29757;21101209993;"Revista Ibero-Americana de Ciencia da Informacao";journal;"19835213";"Universidade de Brasilia";Yes;Yes;0,108;Q4;4;37;129;1019;18;122;0,11;27,54;64,00;0;Brazil;Latin America;"Universidade de Brasilia";"2020-2025";"Library and Information Sciences (Q4)";"Social Sciences" +29758;19500157004;"Revue des Maladies Respiratoires Actualites";journal;"1877122X, 18771203";"Elsevier Masson s.r.l.";No;No;0,108;Q4;5;58;264;2182;15;249;0,09;37,62;46,45;0;France;Western Europe;"Elsevier Masson s.r.l.";"2009-2025";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +29759;19759;"Revue du Rhumatisme (Edition Francaise)";journal;"11698330, 17683130";"Elsevier Masson s.r.l.";Yes;No;0,108;Q4;16;179;410;3957;23;310;0,06;22,11;43,71;0;France;Western Europe;"Elsevier Masson s.r.l.";"1961, 1993-1994, 2000-2026";"Rheumatology (Q4)";"Medicine" +29760;21101235675;"San Diego International Law Journal";journal;"29951054";"University of San Diego School of Law";No;No;0,108;Q4;4;9;26;187;12;19;0,25;20,78;40,00;1;United States;Northern America;"University of San Diego School of Law";"2020-2025";"Law (Q4)";"Social Sciences" +29761;21100432248;"Social, Economic and Political Studies of the Middle East and Asia";book series;"13853376";"Brill Academic Publishers";No;No;0,108;Q4;12;1;17;673;1;4;0,00;673,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2009, 2012-2025";"Anthropology (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Philosophy (Q4); Religious Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +29762;21101050070;"Sport and Exercise Medicine Switzerland Journal";journal;"26734249, 26736640";"Rubmedia AG";No;No;0,108;Q4;16;0;98;0;9;82;0,05;0,00;0,00;0;Switzerland;Western Europe;"Rubmedia AG";"2020-2024";"Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions; Medicine" +29763;21101215121;"Studia Iuridica Toruniensia";journal;"16895258, 23917873";"Nicolaus Copernicus University";No;No;0,108;Q4;2;15;117;258;7;117;0,03;17,20;29,41;0;Poland;Eastern Europe;"Nicolaus Copernicus University";"2020-2025";"Law (Q4)";"Social Sciences" +29764;21100406833;"Studies in Semitic Languages and Linguistics";book series;"00818461";"Brill Academic Publishers";No;No;0,108;Q4;14;0;16;0;0;4;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2024, 2026";"Linguistics and Language (Q4)";"Social Sciences" +29765;21101291061;"Studies in the History of Christianity in East Asia";book series;"25423681";"Brill Academic Publishers";No;No;0,108;Q4;1;1;29;376;3;4;0,06;376,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2025";"Cultural Studies (Q4)";"Social Sciences" +29766;21100406830;"Supplements to The Journal of Jewish Thought and Philosophy";book series;"18739008";"Brill Academic Publishers";No;No;0,108;Q4;7;1;4;133;0;4;0,00;133,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2017, 2019, 2021, 2023-2025";"Philosophy (Q4)";"Arts and Humanities" +29767;21100827831;"Swiss Bulletin for Applied Geology";journal;"16641884";"Ver. Schweizerischer Petroleum Geol. und Ing.";No;No;0,108;Q4;13;0;35;0;4;35;0,10;0,00;0,00;0;Switzerland;Western Europe;"Ver. Schweizerischer Petroleum Geol. und Ing.";"2009-2010, 2013-2024";"Earth and Planetary Sciences (miscellaneous) (Q4); Geochemistry and Petrology (Q4); Geology (Q4)";"Earth and Planetary Sciences" +29768;17173;"Textiles Eastern Europe";trade journal;"13545981";"Textile Media Services Ltd";No;No;0,108;Q4;1;0;5;0;0;4;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Textile Media Services Ltd";"1995-1998, 2000-2012, 2017, 2019-2022";"Business and International Management (Q4); Environmental Science (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4)";"Business, Management and Accounting; Engineering; Environmental Science" +29769;21100202129;"Tonos Digital";journal;"15776921";"Universidad de Murcia Servicio de Publicaciones";Yes;Yes;0,108;Q4;6;0;48;0;4;48;0,00;0,00;0,00;0;Spain;Western Europe;"Universidad de Murcia Servicio de Publicaciones";"2011-2022";"Linguistics and Language (Q4)";"Social Sciences" +29770;19700174884;"Tumor";journal;"10007431";"Shanghai Jiaotong University";No;No;0,108;Q4;10;20;304;636;54;303;0,19;31,80;41,11;0;China;Asiatic Region;"Shanghai Jiaotong University";"2007-2025";"Cancer Research (Q4); Epidemiology (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +29771;21100855868;"Veterinaria";journal;"03943151";"SCIVAC (Societa Culturale Italiana Veterinari per Animali da Compagnia)";No;No;0,108;Q4;7;28;107;1124;2;85;0,00;40,14;56,67;0;Italy;Western Europe;"SCIVAC (Societa Culturale Italiana Veterinari per Animali da Compagnia)";"1974, 1979-1980, 2011-2025";"Veterinary (miscellaneous) (Q4)";"Veterinary" +29772;21100898976;"Virtual Creativity";journal;"23979712, 23979704";"Intellect Ltd.";No;No;0,108;Q4;7;0;36;0;11;31;0,25;0,00;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2017-2024";"Arts and Humanities (miscellaneous) (Q4); Computational Theory and Mathematics (Q4); Computer Graphics and Computer-Aided Design (Q4); Human-Computer Interaction (Q4)";"Arts and Humanities; Computer Science" +29773;25377;"Working Paper - Chr. Michelsen Institute";journal;"08043639";"Chr. Michelsen Institute";No;No;0,108;Q4;7;9;6;468;0;4;0,00;52,00;29,41;0;Norway;Western Europe;"Chr. Michelsen Institute";"1980, 1990-2023, 2025";"Development (Q4); Geography, Planning and Development (Q4)";"Social Sciences" +29774;21101145627;"Youth in a Globalizing World";book series;"22129383";"Brill Academic Publishers";No;No;0,108;Q4;7;1;37;362;4;4;0,00;362,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2015, 2017-2026";"Development (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29775;32772;"Zdravniski Vestnik";journal;"13180347, 15810224";"Slovene Medical Society";Yes;Yes;0,108;Q4;11;37;156;1400;12;155;0,04;37,84;58,04;0;Slovenia;Eastern Europe;"Slovene Medical Society";"1950-1955, 1964-1965, 1973-1993, 2009-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29776;5800212867;"Zeitschrift fur Fremdsprachenforschung";journal;"09397299";"Paedagogischer Zeitschriftenverlag GmbH & Co. KG";No;No;0,108;Q4;7;0;45;0;10;42;0,22;0,00;0,00;0;Germany;Western Europe;"Paedagogischer Zeitschriftenverlag GmbH & Co. KG";"2013-2024";"Linguistics and Language (Q4)";"Social Sciences" +29777;21100317406;"Advances in Knowledge Organization";conference and proceedings;"09385495";"Nomos Verlagsgesellschaft mbH und Co KG";No;No;0,108;-;11;0;91;0;16;85;0,17;0,00;0,00;0;Germany;Western Europe;"Nomos Verlagsgesellschaft mbH und Co KG";"2006, 2008, 2010, 2012, 2014, 2016, 2018, 2020, 2022, 2024";"Computer Science Applications; Information Systems; Information Systems and Management";"Computer Science; Decision Sciences" +29778;93910;"AUTOTESTCON (Proceedings)";conference and proceedings;"07347510";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,108;-;26;0;39;0;5;36;0,13;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1980-1987, 1989-1991, 1993, 1995-2005, 2007-2015, 2019, 2024";"Computer Science Applications; Electrical and Electronic Engineering";"Computer Science; Engineering" +29779;13086;"Institution of Chemical Engineers Symposium Series";conference and proceedings;"03070492";"Institution of Chemical Engineers";No;No;0,108;-;18;0;181;0;9;178;0,07;0,00;0,00;0;United Kingdom;Western Europe;"Institution of Chemical Engineers";"1969, 1976-1986, 1990-2000, 2003, 2005-2006, 2008-2009, 2011-2012, 2014-2024";"Chemical Engineering (miscellaneous); Engineering (miscellaneous)";"Chemical Engineering; Engineering" +29780;21101181901;"Proceedings ICSIT, International Conference on Society and Information Technologies";conference and proceedings;"27716368, 27716376";"International Institute of Informatics and Cybernetics";No;No;0,108;-;2;30;52;597;11;48;0,21;19,90;47,92;0;United States;Northern America;"International Institute of Informatics and Cybernetics";"2023-2025";"Artificial Intelligence; Computer Networks and Communications; Information Systems";"Computer Science" +29781;21100396117;"Anales del Instituto de Investigaciones Esteticas";journal;"18703062, 01851276";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,107;Q3;5;22;70;1329;10;67;0,11;60,41;36,00;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2014-2025";"Visual Arts and Performing Arts (Q3); Philosophy (Q4)";"Arts and Humanities" +29782;21101000292;"Children's Literature Association Quarterly";journal;"08850429, 15531201";"Johns Hopkins University Press";No;No;0,107;Q3;8;1;70;38;12;64;0,12;38,00;100,00;0;United States;Northern America;"Johns Hopkins University Press";"2015-2016, 2018-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29783;19900192554;"Comparative Critical Studies";journal;"17500109, 17441854";"Edinburgh University Press";No;No;0,107;Q3;13;20;76;439;26;62;0,28;21,95;66,67;0;United Kingdom;Western Europe;"Edinburgh University Press";"2004-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29784;16100154733;"Edad de Oro";journal;"02120429";"Universidad Autonoma de Madrid";Yes;Yes;0,107;Q3;7;0;72;0;8;68;0,10;0,00;0,00;0;Spain;Western Europe;"Universidad Autonoma de Madrid";"2002-2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29785;16100154765;"Fabula";journal;"00146242, 16130464";"Walter de Gruyter GmbH";No;No;0,107;Q3;12;18;60;894;15;58;0,37;49,67;55,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1958-1962, 1964-1967, 1969-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29786;5900152888;"Grey Room";journal;"15263819";"MIT Press";No;No;0,107;Q3;24;19;68;0;47;32;0,75;0,00;57,89;0;United States;Northern America;"MIT Press";"2002-2025";"Visual Arts and Performing Arts (Q3); Architecture (Q4); Communication (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Engineering; Social Sciences" +29787;16400154757;"Hispanic Review";journal;"15530639, 00182176";"University of Pennsylvania Press";No;No;0,107;Q3;13;26;102;1158;9;102;0,07;44,54;45,45;0;United States;Northern America;"University of Pennsylvania Press";"1999, 2005-2026";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29788;6000152718;"History of Photography";journal;"03087298";"Taylor and Francis Ltd.";No;No;0,107;Q3;19;17;44;162;13;34;0,16;9,53;53,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1977-2023, 2025-2026";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29789;21101253648;"IdeAs";journal;"19505701";"Institut des Ameriques";Yes;Yes;0,107;Q3;5;52;152;1493;10;142;0,06;28,71;50,00;0;France;Western Europe;"Institut des Ameriques";"2020-2025";"History (Q3); Cultural Studies (Q4); Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29790;24195;"Journal Asiatique";journal;"17831504, 0021762X";"Peeters Publishers";No;No;0,107;Q3;15;9;48;733;6;47;0,05;81,44;14,29;0;Belgium;Western Europe;"Peeters Publishers";"1970, 1989, 1996-2004, 2006-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29791;21100812578;"Journal of Curatorial Studies";journal;"20455836, 20455844";"Intellect Ltd.";No;No;0,107;Q3;6;10;32;218;3;28;0,00;21,80;81,82;0;United Kingdom;Western Europe;"Intellect Ltd.";"2014, 2016-2025";"Museology (Q3); Visual Arts and Performing Arts (Q3); Conservation (Q4)";"Arts and Humanities" +29792;21100917123;"Journal of Lusophone Studies";journal;"24694800";"American Portuguese Studies Association";Yes;Yes;0,107;Q3;4;0;51;0;7;40;0,13;0,00;0,00;0;United States;Northern America;"American Portuguese Studies Association";"2013, 2016-2024";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29793;21100788880;"Journal of Science and Technology of the Arts";journal;"16469798, 21830088";"Universidade Catolica Portuguesa";Yes;Yes;0,107;Q3;9;14;79;263;8;69;0,09;18,79;42,11;0;Portugal;Western Europe;"Universidade Catolica Portuguesa";"2016-2025";"Visual Arts and Performing Arts (Q3); Arts and Humanities (miscellaneous) (Q4); Computer Science Applications (Q4); Conservation (Q4); Music (Q4)";"Arts and Humanities; Computer Science" +29794;21100218391;"Journal of Writing in Creative Practice";journal;"17535204, 17535190";"Intellect Ltd.";No;No;0,107;Q3;7;0;42;0;3;38;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2012-2024";"Visual Arts and Performing Arts (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +29795;21100232404;"Modern Chinese Literature and Culture";journal;"15209857, 2328966X";"Edinburgh University Press";No;No;0,107;Q3;12;7;46;372;8;38;0,13;53,14;60,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"2009-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29796;11600153439;"North Korean Review";journal;"15512789, 19412886";"McFarland and Company, Inc";No;No;0,107;Q3;11;6;37;186;10;30;0,26;31,00;0,00;0;United States;Northern America;"McFarland and Company, Inc";"2010-2017, 2019-2025";"History (Q3); Cultural Studies (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +29797;5900152896;"Oxford Art Journal";journal;"01426540";"Oxford University Press";No;No;0,107;Q3;20;17;55;1195;12;55;0,12;70,29;37,50;0;United Kingdom;Western Europe;"Oxford University Press";"1978, 1981-1994, 1996-2025";"Visual Arts and Performing Arts (Q3); History (Q4)";"Arts and Humanities" +29798;21101168873;"Periferica Internacional";journal;"15771172, 24452696";"Universidad de Cadiz";Yes;Yes;0,107;Q3;4;17;70;216;3;54;0,06;12,71;48,00;0;Spain;Western Europe;"Universidad de Cadiz";"2019-2025";"Museology (Q3); Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29799;18612;"Renaissance and Reformation";journal;"0034429X, 22937374";"Iter";No;No;0,107;Q3;11;24;98;1543;8;84;0,12;64,29;54,55;1;Canada;Northern America;"Iter";"1968-1969, 1979, 1982, 1985, 1988, 2001-2025";"Literature and Literary Theory (Q3); Music (Q3); Visual Arts and Performing Arts (Q3); History (Q4); History and Philosophy of Science (Q4); Philosophy (Q4)";"Arts and Humanities" +29800;6500153188;"Wasafiri";journal;"17471508, 02690055";"Routledge";No;No;0,107;Q3;13;77;204;349;21;83;0,08;4,53;55,17;0;United Kingdom;Western Europe;"Routledge";"1984-2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29801;20829;"Western Folklore";journal;"0043373X";"California Folklore Society";No;No;0,107;Q3;18;3;94;89;8;91;0,09;29,67;50,00;0;United States;Northern America;"California Folklore Society";"1968-1969, 1979-1980, 1985, 1989, 1999, 2002-2014, 2017-2025";"History (Q3); Visual Arts and Performing Arts (Q3); Anthropology (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29802;21101134734;"Zbornik Radova Vizantoloskog Instituta";journal;"05849888, 24060917";"Institute for Byzantine Studies of the Serbian Academy of Sciences and Arts";Yes;Yes;0,107;Q3;3;1;74;32;10;74;0,13;32,00;100,00;0;Serbia;Eastern Europe;"Institute for Byzantine Studies of the Serbian Academy of Sciences and Arts";"2019-2025";"Classics (Q3); Literature and Literary Theory (Q3); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29803;21100287647;"Zograf";journal;"03501361";"University of Belgrade";Yes;Yes;0,107;Q3;5;0;12;0;3;12;0,25;0,00;0,00;0;Serbia;Eastern Europe;"University of Belgrade";"2012-2021, 2023";"Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +29804;19900192010;"Aboriginal History Journal";journal;"18379389, 03148769";"ANU Press";No;No;0,107;Q4;8;3;20;137;2;18;0,18;45,67;66,67;0;Australia;Pacific Region;"ANU Press";"2001, 2019-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +29805;21101005539;"Academic Quarter";journal;"19040008";"Aalborg University press";Yes;Yes;0,107;Q4;4;15;63;352;8;62;0,08;23,47;63,33;0;Denmark;Western Europe;"Aalborg University press";"2020-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +29806;21101039804;"Agora - Papeles de Filosofia";journal;"02116642, 21743347";"Universidade de Santiago de Compostela";No;Yes;0,107;Q4;4;24;98;910;8;92;0,06;37,92;17,39;0;Spain;Western Europe;"Universidade de Santiago de Compostela";"2019-2025";"Philosophy (Q4)";"Arts and Humanities" +29807;21101176677;"American Religion";journal;"26439255, 26439247";"Indiana University Press";No;No;0,107;Q4;4;18;53;201;12;35;0,30;11,17;44,44;0;United States;Northern America;"Indiana University Press";"2019-2025";"Anthropology (Q4); Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +29808;5700164335;"American Studies in Scandinavia";journal;"00448060";"University Press of Southern Denmark";Yes;Yes;0,107;Q4;5;5;36;183;7;30;0,15;36,60;40,00;0;Denmark;Western Europe;"University Press of Southern Denmark";"2002-2026";"History (Q4)";"Arts and Humanities" +29809;21101214485;"Anali Pravnog Fakulteta u Beogradu";journal;"00032565, 24062693";"University of Belgrade Faculty of Law";Yes;Yes;0,107;Q4;2;24;102;954;16;101;0,23;39,75;41,94;0;Serbia;Eastern Europe;"University of Belgrade Faculty of Law";"2022-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4); Social Sciences (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +29810;28729;"Archive of Oncology";journal;"14509520, 03547310";"Institute of Oncology Sremska Kamenica";Yes;No;0,107;Q4;14;10;26;292;2;25;0,05;29,20;55,81;0;Serbia;Eastern Europe;"Institute of Oncology Sremska Kamenica";"1997-2013, 2017-2025";"Hematology (Q4); Oncology (Q4)";"Medicine" +29811;26780;"Archives de Sciences Sociales des Religions";journal;"03355985, 17775825";"College de France, Ecole des Hautes Etudes en Sciences Sociales (E H E S S)";No;No;0,107;Q4;20;0;110;0;7;107;0,05;0,00;0,00;0;France;Western Europe;"College de France, Ecole des Hautes Etudes en Sciences Sociales (E H E S S)";"1988, 1999, 2001-2024";"Religious Studies (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29812;18023;"Atemwegs- und Lungenkrankheiten";journal;"03413055";"Dustri-Verlag Dr. Karl Feistle";No;No;0,107;Q4;9;78;243;1893;14;207;0,06;24,27;38,71;0;Germany;Western Europe;"Dustri-Verlag Dr. Karl Feistle";"1978-2026";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +29813;21101246231;"Austral Journal of Imaging";journal;"2810708X";"Sociedad Chilena de Radiologia";Yes;No;0,107;Q4;8;15;90;209;16;72;0,19;13,93;36,17;0;Chile;Latin America;"Sociedad Chilena de Radiologia";"2024-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +29814;21100786315;"Australasian Journal of Regional Studies";journal;"10307923";"Australia New Zealand Regional Science Association International Inc. (ANZRSAI)";No;No;0,107;Q4;11;0;24;0;5;21;0,24;0,00;0,00;0;Australia;Pacific Region;"Australia New Zealand Regional Science Association International Inc. (ANZRSAI)";"2014, 2016-2024";"Economics, Econometrics and Finance (miscellaneous) (Q4); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Urban Studies (Q4)";"Economics, Econometrics and Finance; Environmental Science; Social Sciences" +29815;51712;"Bogazici Journal";journal;"2717896X, 13009583";"Bogazici Universitesi";No;No;0,107;Q4;8;0;14;0;3;14;0,25;0,00;0,00;0;Turkey;Middle East;"Bogazici Universitesi";"1993-1995, 2005-2023";"Geography, Planning and Development (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +29816;22287;"Bulletin de Philosophie Medievale";journal;"20346476, 00684023";"Brepols Publishers";No;No;0,107;Q4;4;0;50;0;4;46;0,10;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"1968, 1983, 1996, 2018-2024";"History (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +29817;21101131479;"China and Asia: Journal in Historical Studies";journal;"2589465X, 25894641";"Brill Academic Publishers";No;No;0,107;Q4;4;5;43;209;7;36;0,14;41,80;25,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +29818;3800148001;"Chinese Journal of Medical Imaging Technology";journal;"10033289";"Editorial Office - Chinese Journal of Interventional Imaging and Therapy";No;No;0,107;Q4;8;414;1495;6500;122;1477;0,09;15,70;49,61;0;China;Asiatic Region;"Editorial Office - Chinese Journal of Interventional Imaging and Therapy";"2006-2025";"Physiology (medical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +29819;5000154508;"Ciencia da Informacao";journal;"15188353, 01001965";"Brazilian Institute for Information in Science and Technology";Yes;Yes;0,107;Q4;18;40;168;1175;10;160;0,04;29,38;57,69;0;Brazil;Latin America;"Brazilian Institute for Information in Science and Technology";"2006-2025";"Library and Information Sciences (Q4)";"Social Sciences" +29820;8600153104;"Clinical Biochemist Reviews";journal;"18380212, 01598090";"Australasian Association of Clinical Biochemists";Yes;No;0,107;Q4;42;0;13;0;2;13;0,15;0,00;0,00;0;Australia;Pacific Region;"Australasian Association of Clinical Biochemists";"2005, 2011-2021, 2023-2024";"Clinical Biochemistry (Q4)";"Biochemistry, Genetics and Molecular Biology" +29821;21101062031;"Clinical Medicine of China";journal;"10086315";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,107;Q4;3;82;266;1906;17;266;0,07;23,24;49,07;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2019-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +29822;21101224877;"Croatian Sports Medicine Journal";journal;"03540766";"Croatian Olympic Committee";No;No;0,107;Q4;2;23;35;961;4;35;0,08;41,78;45,00;0;Croatia;Eastern Europe;"Croatian Olympic Committee";"2020-2025";"Orthopedics and Sports Medicine (Q4); Physiology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +29823;19700201342;"Cuadernos de Historia Contemporanea";journal;"19882734, 0214400X";"Universidad Complutense Madrid";Yes;Yes;0,107;Q4;4;24;64;990;16;53;0,30;41,25;42,86;0;Spain;Western Europe;"Universidad Complutense Madrid";"1999, 2002, 2022-2025";"History (Q4)";"Arts and Humanities" +29824;17700155038;"Droit et Societe";journal;"19696973, 07693362";"Editions Juridiques Associees";No;No;0,107;Q4;19;0;65;0;10;63;0,13;0,00;0,00;0;France;Western Europe;"Editions Juridiques Associees";"2001-2024";"Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29825;19700175108;"Drug Delivery System";journal;"18812732, 09135006";"Japan Society of Drug Delivery System";No;No;0,107;Q4;9;60;180;1041;8;127;0,05;17,35;16,09;0;Japan;Asiatic Region;"Japan Society of Drug Delivery System";"1986, 1988-2025";"Pharmaceutical Science (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +29826;15183;"Duke Environmental Law and Policy Forum";journal;"23289686, 10643958";"Duke Law Publications";Yes;No;0,107;Q4;24;4;24;80;7;14;0,12;20,00;0,00;0;United States;Northern America;"Duke Law Publications";"1996-2000, 2002-2026";"Geography, Planning and Development (Q4); Law (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +29827;14529;"Eire-Ireland; a journal of Irish studies";journal;"00132683, 15505162";"Irish American Cultural Institute";No;No;0,107;Q4;19;20;80;1298;14;67;0,10;64,90;61,11;0;United States;Northern America;"Irish American Cultural Institute";"1976-1977, 1979-1980, 1982, 1987, 2000-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29828;16000154790;"Etudes Theologiques et Religieuses";journal;"00142239, 22729011";"Institut Protestant de Theologie";No;No;0,107;Q4;4;0;73;0;2;69;0,02;0,00;0,00;0;France;Western Europe;"Institut Protestant de Theologie";"2002-2024";"Religious Studies (Q4)";"Arts and Humanities" +29829;21101274535;"Eurasian Journal of Oncology";journal;"23097485, 24142360";"Professionalnye Izdaniya";No;No;0,107;Q4;2;35;94;776;7;94;0,09;22,17;51,72;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2021-2025";"Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +29830;21101189819;"European Health and Pharmaceutical Law Review";journal;"2751398X, 27513971";"Lexxion Verlagsgesellschaft mbH";No;No;0,107;Q4;1;29;11;321;1;5;0,09;11,07;50,00;0;Germany;Western Europe;"Lexxion Verlagsgesellschaft mbH";"2023, 2025";"Drug Discovery (Q4); Law (Q4); Pharmaceutical Science (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +29831;29974;"Exploration and Research for Atomic Minerals";journal;"09709231";"Atomic Minerals Directorate for Exploration and Research";No;No;0,107;Q4;14;0;27;0;1;27;0,00;0,00;0,00;0;India;Asiatic Region;"Atomic Minerals Directorate for Exploration and Research";"1990, 1994-1999, 2001-2002, 2004, 2007-2014, 2016, 2020-2023";"Economic Geology (Q4)";"Earth and Planetary Sciences" +29832;4700152630;"Frontiers of Philosophy in China";journal;"16733436, 1673355X";"Higher Education Press Limited Company";No;No;0,107;Q4;13;23;71;628;8;71;0,09;27,30;44,00;0;China;Asiatic Region;"Higher Education Press Limited Company";"2006-2025";"Philosophy (Q4)";"Arts and Humanities" +29833;17600155042;"Gerontologie et Societe";journal;"01510193, 21010218";"Fondation Nationale de Gerontologie";No;No;0,107;Q4;14;0;36;0;15;33;0,43;0,00;0,00;0;France;Western Europe;"Fondation Nationale de Gerontologie";"2001-2013, 2015-2020, 2022-2023";"Geriatrics and Gerontology (Q4); Gerontology (Q4); Health (social science) (Q4)";"Medicine; Nursing; Social Sciences" +29834;21100787823;"Hepato-Gastro et Oncologie Digestive";journal;"21155631, 21153310";"John Libbey";No;No;0,107;Q4;7;139;481;2886;25;410;0,06;20,76;39,13;0;France;Western Europe;"John Libbey";"2010-2026";"Gastroenterology (Q4); Hepatology (Q4); Oncology (Q4)";"Medicine" +29835;145485;"Historiographia Linguistica";journal;"15699781, 03025160";"John Benjamins Publishing Company";No;No;0,107;Q4;16;12;36;814;6;32;0,17;67,83;23,08;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1974-2025";"History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29836;21101152856;"Hungarian Yearbook of International Law and European Law";journal;"2666271X, 26662701";"Eleven, Boom uitgevers Den Haag";No;No;0,107;Q4;4;0;47;0;6;45;0,20;0,00;0,00;0;Netherlands;Western Europe;"Eleven, Boom uitgevers Den Haag";"2019-2023";"Law (Q4)";"Social Sciences" +29837;19900191879;"Informacao e Sociedade";journal;"18094783, 01040146";"Universidade Federal de Campina Grande";Yes;Yes;0,107;Q4;11;0;35;0;2;32;0,08;0,00;0,00;0;Brazil;Latin America;"Universidade Federal de Campina Grande";"2011-2024";"Communication (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29838;59708;"Japanese Journal of Lung Cancer";journal;"03869628";"Japan Lung Cancer Society";No;No;0,107;Q4;8;75;249;924;11;230;0,04;12,32;20,97;0;Japan;Asiatic Region;"Japan Lung Cancer Society";"1965, 1969-2025";"Oncology (Q4); Pulmonary and Respiratory Medicine (Q4)";"Medicine" +29839;21100858356;"Jazz Research Journal";journal;"17538645, 17538637";"Equinox Publishing Ltd";No;No;0,107;Q4;3;0;35;0;9;31;0,39;0,00;0,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2017-2024";"Music (Q4)";"Arts and Humanities" +29840;4700152633;"Jewish History";journal;"15728579, 0334701X";"Springer Netherlands";No;No;0,107;Q4;20;13;30;0;3;30;0,11;0,00;38,46;0;Netherlands;Western Europe;"Springer Netherlands";"1986-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +29841;21100818513;"Journal of Integrated OMICS";journal;"21820287";"Proteomass Scientific Society";No;No;0,107;Q4;14;5;12;129;9;5;1,13;25,80;33,33;0;Portugal;Western Europe;"Proteomass Scientific Society";"2011-2025";"Biochemistry (Q4); Genetics (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +29842;21101111534;"Journal of Interdisciplinary History of Ideas";journal;"22808574";"University of Torino";Yes;Yes;0,107;Q4;4;6;52;513;7;46;0,06;85,50;28,57;0;Italy;Western Europe;"University of Torino";"2019-2026";"Philosophy (Q4)";"Arts and Humanities" +29843;4700153010;"Journal of Social, Political, and Economic Studies";journal;"0278839X";"Council for Social and Economic Studies";No;No;0,107;Q4;12;0;18;0;4;18;0,22;0,00;0,00;0;United States;Northern America;"Council for Social and Economic Studies";"1978, 1980, 1982, 1984-1986, 1993-1996, 2006-2023";"Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +29844;14672;"Journal of the Indian Medical Association";journal;"00195847";"";No;No;0,107;Q4;34;162;601;2323;37;483;0,05;14,34;42,56;0;India;Asiatic Region;"";"1945-1948, 1950-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +29845;20165;"Journal of the Medical Society of Toho University";journal;"00408670";"Medical Society of Toho University";No;No;0,107;Q4;4;0;21;0;2;15;0,00;0,00;0,00;0;Japan;Asiatic Region;"Medical Society of Toho University";"1973-2014, 2016-2022";"Medicine (miscellaneous) (Q4)";"Medicine" +29846;6500153146;"Journal of the Royal Musical Association";journal;"14716933, 02690403";"Cambridge University Press";No;No;0,107;Q4;22;21;61;2280;21;59;0,19;108,57;40,91;0;United Kingdom;Western Europe;"Cambridge University Press";"1987-2025";"Music (Q4)";"Arts and Humanities" +29847;21100898308;"Languages Cultures Mediation";journal;"22841881, 24210293";"LED Edizioni Universitarie";Yes;Yes;0,107;Q4;7;8;61;318;12;59;0,21;39,75;87,50;0;Italy;Western Europe;"LED Edizioni Universitarie";"2014-2025";"Communication (Q4); Cultural Studies (Q4); Linguistics and Language (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29848;13970;"Library and Information Science";journal;"03734447";"Mita Society for Library and Information Science";No;No;0,107;Q4;6;2;12;66;3;12;0,33;33,00;66,67;0;Japan;Asiatic Region;"Mita Society for Library and Information Science";"1980-2025";"Library and Information Sciences (Q4)";"Social Sciences" +29849;21100904887;"Matematica, Cultura e Societa";journal;"2499751X";"Unione Matematica Italiana";No;No;0,107;Q4;12;0;41;0;2;34;0,04;0,00;0,00;0;Italy;Western Europe;"Unione Matematica Italiana";"2016-2024";"Mathematics (miscellaneous) (Q4)";"Mathematics" +29850;21100201313;"Mathematical and Computational Forestry and Natural-Resource Sciences";journal;"19467664";"University of Georgia";Yes;No;0,107;Q4;15;3;14;142;1;14;0,00;47,33;14,29;0;United States;Northern America;"University of Georgia";"2009-2025";"Applied Mathematics (Q4); Computer Science Applications (Q4); Environmental Engineering (Q4); Forestry (Q4)";"Agricultural and Biological Sciences; Computer Science; Environmental Science; Mathematics" +29851;21100358107;"Medijske Studije";journal;"18479758, 18485030";"Faculty of Political Sciences, University of Zagreb";Yes;Yes;0,107;Q4;11;19;46;971;7;40;0,09;51,11;52,94;0;Croatia;Eastern Europe;"Faculty of Political Sciences, University of Zagreb";"2014-2025";"Communication (Q4); Computer Science Applications (Q4)";"Computer Science; Social Sciences" +29852;17700154915;"Multitudes";journal;"17775841, 02920107";"Association Multitudes";No;No;0,107;Q4;16;0;229;0;17;210;0,08;0,00;0,00;0;France;Western Europe;"Association Multitudes";"2000-2024";"Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29853;21101136866;"Neurologie Up2date";journal;"25113658, 25113453";"Georg Thieme Verlag";No;No;0,107;Q4;2;40;114;917;2;80;0,03;22,93;39,47;0;Germany;Western Europe;"Georg Thieme Verlag";"2018-2026";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +29854;21101183721;"Neurology and Neurosurgery. Eastern Europe";journal;"24143588, 22260838";"Professionalnye Izdaniya";No;No;0,107;Q4;2;58;103;1450;8;103;0,08;25,00;55,67;0;Belarus;Eastern Europe;"Professionalnye Izdaniya";"2023-2025";"Neurology (Q4); Neuroscience (miscellaneous) (Q4)";"Neuroscience" +29855;21100932649;"Peremennye Zvezdy";journal;"22210474";"Sternberg Astronomical Institute of Moscow University";No;No;0,107;Q4;3;9;41;168;4;38;0,16;18,67;40,00;0;Russian Federation;Eastern Europe;"Sternberg Astronomical Institute of Moscow University";"2019-2025";"Astronomy and Astrophysics (Q4)";"Physics and Astronomy" +29856;21100942115;"PISTES";journal;"14819384";"Institut de Recherche Robert-Sauve en Sante et en Securite du Travail";Yes;Yes;0,107;Q4;4;10;36;483;3;30;0,10;48,30;75,00;0;Canada;Northern America;"Institut de Recherche Robert-Sauve en Sante et en Securite du Travail";"2018-2025";"Health (social science) (Q4); Human Factors and Ergonomics (Q4)";"Social Sciences" +29857;21101373036;"Proceedings of the International Cryptology and Information Security Conference, Cryptology";journal;"27166783";"Putra Malaysia University Institute for Mathematical Research";No;No;0,107;Q4;1;0;18;0;3;16;0,17;0,00;0,00;0;Malaysia;Asiatic Region;"Putra Malaysia University Institute for Mathematical Research";"2024";"Computer Science Applications (Q4); Information Systems (Q4)";"Computer Science" +29858;21101285706;"Proceedings of the International Symposium on Intelligent Signal Processing and Communication Systems, ISPACS";journal;"26423529, 26423510";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,107;Q4;2;0;126;0;26;125;0,21;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Signal Processing (Q4)";"Computer Science" +29859;28578;"Przeglad Geofizyczny";journal;"00332135, 25441655";"Polish Geophysical Society";Yes;Yes;0,107;Q4;13;3;28;142;3;28;0,11;47,33;45,45;0;Poland;Eastern Europe;"Polish Geophysical Society";"1986, 1993-2025";"Atmospheric Science (Q4)";"Earth and Planetary Sciences" +29860;14068;"Psychotherapies";journal;"0251737X";"Editions Medecine et Hygiene";Yes;No;0,107;Q4;11;0;43;0;2;36;0,00;0,00;0,00;0;Switzerland;Western Europe;"Editions Medecine et Hygiene";"1990-2023";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +29861;21100201773;"Ricerche di Storia Politica";journal;"11209526, 26121069";"Societa Editrice Il Mulino";No;No;0,107;Q4;7;14;38;928;4;38;0,11;66,29;35,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1999, 2001-2025";"History (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +29862;16631;"Rivista Internazionale di Scienze Sociali";journal;"18277918, 0035676X";"Vita e Pensiero";No;No;0,107;Q4;12;0;55;0;11;51;0,18;0,00;0,00;0;Italy;Western Europe;"Vita e Pensiero";"1973, 2009-2024";"Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +29863;27796;"Romanian Journal of Legal Medicine";journal;"12218618, 18448585";"Romanian Legal Medicine Society";Yes;No;0,107;Q4;18;44;120;910;12;119;0,09;20,68;42,86;0;Romania;Eastern Europe;"Romanian Legal Medicine Society";"1995-2025";"Pathology and Forensic Medicine (Q4)";"Medicine" +29864;19900192704;"Romanian Journal of Political Science";journal;"20687613, 1582456X";"Romanian Academic Society";No;No;0,107;Q4;12;17;26;878;4;26;0,06;51,65;38,46;0;Romania;Eastern Europe;"Romanian Academic Society";"2009-2013, 2015-2024";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +29865;20500195050;"Scientia Agraria";journal;"19832443, 15191125";"Universidade Federal do Parana";Yes;Yes;0,107;Q4;15;9;9;274;2;9;0,22;30,44;32,56;0;Brazil;Latin America;"Universidade Federal do Parana";"2008-2009, 2011-2018, 2024-2025";"Agronomy and Crop Science (Q4); Plant Science (Q4); Soil Science (Q4)";"Agricultural and Biological Sciences" +29866;19900191875;"Sociedade e Cultura";journal;"19808194, 14158566";"Universidade Federal De Goias (UFG)";Yes;Yes;0,107;Q4;7;12;45;648;3;43;0,03;54,00;50,00;0;Brazil;Latin America;"Universidade Federal De Goias (UFG)";"2010-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29867;29952;"Soins Psychiatrie";journal;"02416972";"Elsevier Masson s.r.l.";No;No;0,107;Q4;11;66;198;636;12;162;0,07;9,64;62,04;0;France;Western Europe;"Elsevier Masson s.r.l.";"1980-2026";"Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)";"Medicine" +29868;21101185192;"Studi AISV";book series;"2612226X";"Italian Association for Speech Sciences (AISV)";No;No;0,107;Q4;4;0;21;0;2;18;0,00;0,00;0,00;0;Italy;Western Europe;"Italian Association for Speech Sciences (AISV)";"2019-2023";"Linguistics and Language (Q4)";"Social Sciences" +29869;20600195014;"Studia Linguistica Universitatis Iagellonicae Cracoviensis";journal;"18971059";"Jagiellonian University Press";Yes;Yes;0,107;Q4;8;14;50;604;6;50;0,16;43,14;56,25;0;Poland;Eastern Europe;"Jagiellonian University Press";"2013-2025";"Linguistics and Language (Q4)";"Social Sciences" +29870;22096;"Toraibarojisuto/Journal of Japanese Society of Tribologists";journal;"09151168";"Japanese Society of Tribologists";No;No;0,107;Q4;11;108;392;1474;10;342;0,03;13,65;11,97;0;Japan;Asiatic Region;"Japanese Society of Tribologists";"1996-2026";"Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science; Physics and Astronomy" +29871;21101392039;"Turkish Journal of Clinical and Experimental Ophthalmology";journal;"30237505";"Gazi Eye Foundation";No;No;0,107;Q4;2;39;93;1061;7;81;0,10;27,21;44,83;0;Turkey;Middle East;"Gazi Eye Foundation";"2021-2025";"Ophthalmology (Q4)";"Medicine" +29872;21100406382;"Vetus Testamentum, Supplements";book series;"00835889";"Brill Academic Publishers";No;No;0,107;Q4;17;2;26;920;8;5;0,20;460,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2025";"Religious Studies (Q4)";"Arts and Humanities" +29873;21101162552;"Wagadu: Journal of Transnational Women's and Gender Studies";journal;"15456196, 21502226";"SUNY Cortland";No;No;0,107;Q4;4;0;22;0;5;21;0,00;0,00;0,00;0;United States;Northern America;"SUNY Cortland";"2019-2022, 2024";"Cultural Studies (Q4); Gender Studies (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +29874;21101087358;"WikiJournal of Science";journal;"24706345";"";Yes;Yes;0,107;Q4;6;0;13;0;2;12;0,09;0,00;0,00;0;United States;Northern America;"";"2018-2024";"Multidisciplinary (Q4)";"Multidisciplinary" +29875;6000195382;"WIT Transactions on Engineering Sciences";book series;"17433533";"WITPress";No;No;0,107;Q4;21;0;28;0;6;27;0,08;0,00;0,00;0;United Kingdom;Western Europe;"WITPress";"2006-2014, 2017-2022, 2024";"Computational Mechanics (Q4); Electrical and Electronic Engineering (Q4); Electrochemistry (Q4); Fluid Flow and Transfer Processes (Q4); Materials Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Chemical Engineering; Chemistry; Engineering; Materials Science; Mathematics" +29876;19500157811;"X-ray Structure Analysis Online";journal;"18833578";"Japan Society for Analytical Chemistry";No;No;0,107;Q4;10;0;17;0;2;17;0,00;0,00;0,00;0;Japan;Asiatic Region;"Japan Society for Analytical Chemistry";"2009-2022";"Analytical Chemistry (Q4); Materials Chemistry (Q4)";"Chemistry; Materials Science" +29877;21412;"Zeitschrift fur Phytotherapie";journal;"14389584, 0722348X";"Georg Thieme Verlag";No;No;0,107;Q4;13;46;163;686;13;126;0,10;14,91;47,27;0;Germany;Western Europe;"Georg Thieme Verlag";"1982, 1985-2025";"Complementary and Alternative Medicine (Q4); Pharmacology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +29878;21101033939;"GMM-Fachberichte";conference and proceedings;"14323419";"V D E Verlag GmbH";No;No;0,107;-;4;20;339;206;45;323;0,21;10,30;13,73;0;Germany;Western Europe;"V D E Verlag GmbH";"2013, 2021-2025";"Computer Science Applications; Control and Systems Engineering; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Mechanical Engineering";"Computer Science; Energy; Engineering" +29879;21101056435;"Proceedings of the International Conference Computational Linguistics in Bulgaria";conference and proceedings;"23675578, 23675675";"Institute for Bulgarian Language";No;No;0,107;-;3;0;66;0;17;64;0,26;0,00;0,00;0;Bulgaria;Eastern Europe;"Institute for Bulgarian Language";"2020, 2022, 2024";"Artificial Intelligence; Linguistics and Language";"Computer Science; Social Sciences" +29880;21101190455;"Proceedings of the International Defense and Homeland Security Simulation Workshop, DHSS";conference and proceedings;"27240363";"Cal-Tek srl";No;No;0,107;-;1;0;20;0;3;18;0,15;0,00;0,00;0;Italy;Western Europe;"Cal-Tek srl";"2023-2024";"Modeling and Simulation";"Mathematics" +29881;21100222917;"Proceedings of the International Display Workshops";conference and proceedings;"18832490";"International Display Workshops";No;No;0,107;-;13;0;341;0;30;340;0,00;0,00;0,00;0;Japan;Asiatic Region;"International Display Workshops";"2011-2013, 2015, 2017-2019, 2021-2022";"Computer Vision and Pattern Recognition; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Human-Computer Interaction; Radiology, Nuclear Medicine and Imaging";"Computer Science; Engineering; Materials Science; Medicine" +29882;21101068028;"Stuttgarter Symposium fur Produktentwicklung";conference and proceedings;"23644885";"Fraunhofer IAO";No;No;0,107;-;6;39;42;916;7;40;0,17;23,49;12,75;0;Germany;Western Europe;"Fraunhofer IAO";"2017, 2019, 2021, 2023, 2025";"Business and International Management; Computer Science Applications; Industrial and Manufacturing Engineering; Management of Technology and Innovation";"Business, Management and Accounting; Computer Science; Engineering" +29883;19900193551;"American Periodicals";journal;"10547479, 15484238";"Ohio State University Press";No;No;0,106;Q3;8;4;55;264;4;47;0,03;66,00;25,00;0;United States;Northern America;"Ohio State University Press";"2010-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29884;17700154902;"Anales de Literatura Hispanoamericana";journal;"02104547, 19882351";"Universidad Complutense Madrid";Yes;Yes;0,106;Q3;7;0;74;0;11;71;0,07;0,00;0,00;0;Spain;Western Europe;"Universidad Complutense Madrid";"1996-2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29885;21100872822;"Anglo Saxonica";journal;"08730628";"Ubiquity Press";Yes;Yes;0,106;Q3;3;10;33;310;5;33;0,13;31,00;57,14;0;Portugal;Western Europe;"Ubiquity Press";"2018-2026";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29886;21101197262;"Asian Diasporic Visual Cultures and the Americas";journal;"23523077, 23523085";"Brill Academic Publishers";No;No;0,106;Q3;4;11;67;195;5;55;0,09;17,73;75,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2025";"Visual Arts and Performing Arts (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29887;18800156744;"Australian Literary Studies";journal;"18376479, 00049697";"Australian Literary Studies";No;No;0,106;Q3;9;7;67;256;13;65;0,26;36,57;37,50;0;Australia;Pacific Region;"Australian Literary Studies";"2002-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29888;21101125548;"Authorship";journal;"20344643";"Universiteit Gent";Yes;Yes;0,106;Q3;2;0;6;0;2;5;0,00;0,00;0,00;0;Belgium;Western Europe;"Universiteit Gent";"2019-2022";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29889;13862;"Construction History";journal;"02677768";"Chartered Institute of Building";No;No;0,106;Q3;9;5;35;363;3;30;0,07;72,60;28,57;0;United Kingdom;Western Europe;"Chartered Institute of Building";"1985-1986, 2002-2004, 2007-2025";"Visual Arts and Performing Arts (Q3); Architecture (Q4); Building and Construction (Q4)";"Arts and Humanities; Engineering" +29890;21100241629;"Dionysius";journal;"07051085";"Dalhousie University Press, Ltd.";No;No;0,106;Q3;5;0;6;0;1;5;0,17;0,00;0,00;0;Canada;Northern America;"Dalhousie University Press, Ltd.";"2011-2020, 2024";"Classics (Q3); History (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +29891;29219;"Early American Literature";journal;"00128163, 1534147X";"University of North Carolina Press";No;No;0,106;Q3;17;15;143;443;10;132;0,04;29,53;56,25;0;United States;Northern America;"University of North Carolina Press";"1973, 1979, 1981, 2000, 2002-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29892;21100427709;"Etudes sur le Judaisme Medieval";book series;"0169815X";"Brill Academic Publishers";No;No;0,106;Q3;7;1;13;14;0;5;0,00;14,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2026";"Literature and Literary Theory (Q3); History (Q4); Religious Studies (Q4)";"Arts and Humanities" +29893;21101201222;"Fonti, Letterature, Arti e Paesaggi d'Europa";book series;"27848507, 27246620";"Fondazione Universita Ca Foscari";No;No;0,106;Q3;1;0;11;0;0;5;0,00;0,00;0,00;0;Italy;Western Europe;"Fondazione Universita Ca Foscari";"2020, 2023";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); History (Q4)";"Arts and Humanities" +29894;145599;"Forum for Modern Language Studies";journal;"00158518, 14716860";"Oxford University Press";No;No;0,106;Q3;17;22;109;1247;21;109;0,24;56,68;54,17;0;United Kingdom;Western Europe;"Oxford University Press";"1965-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29895;19700177535;"Future Anterior";journal;"19346026, 15499715";"University of Minnesota Press";No;No;0,106;Q3;11;13;36;473;6;25;0,06;36,38;33,33;0;United States;Northern America;"University of Minnesota Press";"2009-2025";"Visual Arts and Performing Arts (Q3); Architecture (Q4); Conservation (Q4); History (Q4)";"Arts and Humanities; Engineering" +29896;21101028067;"Istrazivanja Journal of Historical Researches";journal;"03502112, 24061131";"";Yes;Yes;0,106;Q3;3;11;44;390;2;44;0,03;35,45;42,86;0;Serbia;Eastern Europe;"";"2019-2025";"Classics (Q3); Archeology (arts and humanities) (Q4); History (Q4); Museology (Q4)";"Arts and Humanities" +29897;26869;"Jahrbuch fur Antike und Christentum";book series;"00752541";"Aschendorff Verlag GmbH & Co. KG";No;No;0,106;Q3;7;0;5;0;0;5;0,00;0,00;0,00;0;Germany;Western Europe;"Aschendorff Verlag GmbH & Co. KG";"1965, 2002-2006, 2008-2010, 2012, 2014, 2016-2019, 2023";"Classics (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29898;21101175743;"Journal of Gender and Sexuality Studies";journal;"26379961, 2637997X";"Michigan State University Press";No;No;0,106;Q3;2;16;27;373;4;26;0,00;23,31;75,00;0;United States;Northern America;"Michigan State University Press";"2017, 2019, 2021-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29899;21100286852;"Journal of Modern Literature";journal;"15291464, 0022281X";"Indiana University Press";No;No;0,106;Q3;13;42;154;1605;26;151;0,17;38,21;33,33;0;United States;Northern America;"Indiana University Press";"2013-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29900;21101130464;"Korean Journal of Art History";journal;"27339815, 12252565";"Art History Association of Korea";No;No;0,106;Q3;2;21;84;827;9;84;0,02;39,38;63,16;0;South Korea;Asiatic Region;"Art History Association of Korea";"2019-2025";"Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +29901;21101227924;"Lexis Supplementi: Studies in Greek and Latin Literature";book series;"27240142, 2724377X";"Edizioni Ca' Foscari";No;No;0,106;Q3;3;10;50;599;6;5;0,00;59,90;0,00;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2020, 2022-2026";"Classics (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29902;12100157012;"Maghreb - Machrek";journal;"22716815, 17623162";"Editions ESKA";No;No;0,106;Q3;7;0;32;0;5;29;0,20;0,00;0,00;0;France;Western Europe;"Editions ESKA";"1987, 1989-1990, 2007-2024";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29903;21101290954;"Mini-Monographs in Literary and Cultural Studies";book series;"27725464";"Brill Academic Publishers";No;No;0,106;Q3;0;10;5;430;0;5;0,00;43,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2022-2026";"Literature and Literary Theory (Q3); Communication (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29904;5800224473;"Minnesota Review";journal;"00265667";"Duke University Press";No;No;0,106;Q3;14;33;103;134;4;86;0,04;4,06;76,00;0;United States;Northern America;"Duke University Press";"2002-2007, 2009-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +29905;19900193832;"Nordic Journal of Aesthetics";journal;"20009607, 20001452";"Institute of Aesthetic Studies";No;No;0,106;Q3;9;33;90;1461;14;77;0,18;44,27;55,56;0;Denmark;Western Europe;"Institute of Aesthetic Studies";"2008-2025";"Visual Arts and Performing Arts (Q3); Philosophy (Q4)";"Arts and Humanities" +29906;16282;"Oxford German Studies";journal;"00787191, 17459214";"Maney Publishing";No;No;0,106;Q3;7;22;96;769;11;94;0,13;34,95;45,00;0;United Kingdom;Western Europe;"Maney Publishing";"1966-1973, 1978-1985, 1988-1989, 1991, 1993-1995, 2002-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29907;21100857578;"Revista de Estudios Colombianos";journal;"24746800, 24746819";"";No;Yes;0,106;Q3;4;13;38;294;3;27;0,07;22,62;20,00;0;United States;Northern America;"";"2017-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +29908;5800152988;"Revista de Letras";journal;"01013505, 19817886";"Universidade Estadual Paulista (UNESP)";No;Yes;0,106;Q3;3;0;48;0;3;45;0,00;0,00;0,00;0;Brazil;Latin America;"Universidade Estadual Paulista (UNESP)";"2004-2024";"Literature and Literary Theory (Q3); Philosophy (Q4)";"Arts and Humanities" +29909;6500153169;"Sartre Studies International";journal;"13571559, 15585476";"Berghahn Journals";No;No;0,106;Q3;5;12;34;308;8;28;0,17;25,67;10,00;0;United Kingdom;Western Europe;"Berghahn Journals";"2017-2025";"Literature and Literary Theory (Q3); Philosophy (Q4)";"Arts and Humanities" +29910;21101100276;"SERIES: International Journal of TV Serial Narratives";journal;"2421454X";"University of Bologna";Yes;Yes;0,106;Q3;5;0;27;0;2;25;0,06;0,00;0,00;0;Italy;Western Europe;"University of Bologna";"2019-2024";"Visual Arts and Performing Arts (Q3); Communication (Q4)";"Arts and Humanities; Social Sciences" +29911;21100426627;"Studies in Platonism, Neoplatonism, and the Platonic Tradition";book series;"1871188X";"Brill Academic Publishers";No;No;0,106;Q3;8;0;26;0;7;5;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2009, 2011-2016, 2018-2022, 2024";"Classics (Q3); Philosophy (Q4)";"Arts and Humanities" +29912;16100154755;"Tulsa Studies in Womens Literature";journal;"19361645, 07327730";"University of Tulsa";No;No;0,106;Q3;14;0;79;0;10;71;0,18;0,00;0,00;0;United States;Northern America;"University of Tulsa";"2002-2013, 2015-2024";"Literature and Literary Theory (Q3); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +29913;21100898970;"Victoriographies";journal;"20442416, 20442424";"Edinburgh University Press";No;No;0,106;Q3;6;21;46;588;8;44;0,17;28,00;68,97;0;United Kingdom;Western Europe;"Edinburgh University Press";"2011-2025";"Literature and Literary Theory (Q3); Communication (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29914;21101197365;"Visual Arts Research";journal;"21518009, 07360770";"University of Illinois Press";No;No;0,106;Q3;5;31;51;554;20;45;0,29;17,87;78,05;0;United States;Northern America;"University of Illinois Press";"2019-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +29915;21100829466;"Yearbook of Comparative Literature";journal;"19255772, 19255764";"University of Toronto Press";No;No;0,106;Q3;6;0;9;0;3;9;0,00;0,00;0,00;0;Canada;Northern America;"University of Toronto Press";"2009-2011, 2013-2017, 2019, 2022";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29916;6500153149;"Year's Work in English Studies";journal;"00844144, 14716801";"Oxford University Press";No;No;0,106;Q3;2;0;55;0;4;52;0,11;0,00;0,00;0;United Kingdom;Western Europe;"Oxford University Press";"1922-1926, 1928-1930, 1933, 1935-1936, 1939-1943, 1948-1949, 1951, 1953-1958, 1960-1972, 1975, 1977-1984, 1987-1995, 2009-2010, 2012-2024";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29917;21100398212;"Ajalooline Ajakiri";journal;"14063859, 22283897";"Tartu University Press";Yes;No;0,106;Q4;5;2;37;270;4;34;0,06;135,00;100,00;0;Estonia;Eastern Europe;"Tartu University Press";"1999, 2001-2002, 2015-2025";"History (Q4)";"Arts and Humanities" +29918;19700169116;"Anais de Historia de Alem-Mar";journal;"27954455, 08749671";"CHAM - Centre for the Humanities (NOVA FCSH-UAC)";No;No;0,106;Q4;5;0;7;0;0;5;0,00;0,00;0,00;0;Portugal;Western Europe;"CHAM - Centre for the Humanities (NOVA FCSH-UAC)";"2001, 2011-2022";"History (Q4)";"Arts and Humanities" +29919;21100203101;"Analele Universitatii din Craiova - Seria Stiinte Filologice, Lingvistica";journal;"12245712, 27347168";"Editura Universitaria Craiova";No;No;0,106;Q4;8;31;105;725;13;105;0,04;23,39;87,72;0;Romania;Eastern Europe;"Editura Universitaria Craiova";"2012-2024";"Linguistics and Language (Q4)";"Social Sciences" +29920;21101364773;"Annales Theologici";journal;"19724934, 03948226";"Pontifical University of the Holy Cross";No;No;0,106;Q4;2;23;61;439;4;58;0,07;19,09;15,00;0;Italy;Western Europe;"Pontifical University of the Holy Cross";"2021-2025";"Religious Studies (Q4)";"Arts and Humanities" +29921;21100854425;"Annals of the Fondazione Luigi Einaudi";journal;"25324969";"Casa Editrice Leo S. Olschki";No;No;0,106;Q4;7;0;75;0;9;62;0,09;0,00;0,00;0;Italy;Western Europe;"Casa Editrice Leo S. Olschki";"2017-2024";"Economics, Econometrics and Finance (miscellaneous) (Q4); History (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +29922;19700188379;"Arbeiderhistorie";journal;"08017778";"Arbeiderbevegelsens arkiv og bibliotek";Yes;Yes;0,106;Q4;3;9;41;275;5;35;0,13;30,56;0,00;0;Norway;Western Europe;"Arbeiderbevegelsens arkiv og bibliotek";"2001, 2011, 2013-2025";"History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29923;21101280283;"Arts, Creativities, and Learning Environments in Global Perspectives";book series;"25899813";"Brill Academic Publishers";No;No;0,106;Q4;2;6;17;868;2;5;0,00;144,67;83,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2019-2020, 2022-2025";"Arts and Humanities (miscellaneous) (Q4); Education (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +29924;13775;"BioSpektrum";journal;"09470867, 18686249";"Springer Spektrum";No;No;0,106;Q4;6;207;492;1263;12;356;0,03;6,10;39,93;0;Germany;Western Europe;"Springer Spektrum";"2004-2025";"Biotechnology (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +29925;21100444383;"Brill's Studies in Language, Cognition and Culture";book series;"18795412, 18795420";"Brill Academic Publishers";No;No;0,106;Q4;12;25;80;926;17;5;0,25;37,04;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2016, 2018-2025";"Anthropology (Q4); Cultural Studies (Q4); Linguistics and Language (Q4)";"Social Sciences" +29926;21101177466;"Bulletin of the Anglo-Israel Archaeological Society";journal;"02662442, 26334208";"The Anglo-Israel Archaeological Society";No;No;0,106;Q4;2;0;6;0;1;5;0,00;0,00;0,00;0;United Kingdom;Western Europe;"The Anglo-Israel Archaeological Society";"2009, 2021-2022";"Education (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +29927;21100244204;"Cancer Research and Clinic";journal;"10069801";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,106;Q4;5;168;576;3668;30;575;0,05;21,83;48,13;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2013-2025";"Cancer Research (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +29928;25177;"Chikei";journal;"03891755";"Nihon Chikeigaku Rengo";No;No;0,106;Q4;15;0;54;0;4;46;0,06;0,00;0,00;0;Japan;Asiatic Region;"Nihon Chikeigaku Rengo";"1980-1992, 1994-2024";"Earth-Surface Processes (Q4)";"Earth and Planetary Sciences" +29929;21101295900;"China Journal Of Chinese Ophthalmology";journal;"10024379";"";No;No;0,106;Q4;3;53;641;1641;50;641;0,09;30,96;50,52;0;China;Asiatic Region;"";"2021-2025";"Ophthalmology (Q4)";"Medicine" +29930;21101039511;"China Journal of Leprosy and Skin Diseases";journal;"10091157";"Shandong Yinbao Technology Co. Ltd";No;No;0,106;Q4;3;159;741;2866;54;734;0,07;18,03;48,88;0;China;Asiatic Region;"Shandong Yinbao Technology Co. Ltd";"2019-2025";"Dermatology (Q4); Infectious Diseases (Q4)";"Medicine" +29931;21100407278;"China Studies";book series;"15701344";"Brill Academic Publishers";No;No;0,106;Q4;7;15;6;619;0;5;0,00;41,27;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2008, 2010-2023, 2025";"History (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29932;3200147814;"Chinese Journal of Interventional Imaging and Therapy";journal;"16728475";"Editorial Office - Chinese Journal of Interventional Imaging and Therapy";No;No;0,106;Q4;6;137;620;2024;56;609;0,09;14,77;40,00;0;China;Asiatic Region;"Editorial Office - Chinese Journal of Interventional Imaging and Therapy";"2006-2025";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +29933;21100829255;"Chinese Journal of Pharmaceutical Biotechnology";journal;"10058915";"China Pharmaceutical University";No;No;0,106;Q4;8;1;347;49;30;347;0,07;49,00;50,00;0;China;Asiatic Region;"China Pharmaceutical University";"2007-2025";"Applied Microbiology and Biotechnology (Q4); Pharmaceutical Science (Q4)";"Immunology and Microbiology; Pharmacology, Toxicology and Pharmaceutics" +29934;21101158558;"Cities and Nature";book series;"25208306, 25208314";"Springer Nature";No;No;0,106;Q4;13;20;170;740;65;5;0,41;37,00;0,00;0;Netherlands;Western Europe;"Springer Nature";"2013, 2018-2026";"Food Science (Q4); Geography, Planning and Development (Q4); Renewable Energy, Sustainability and the Environment (Q4); Urban Studies (Q4)";"Agricultural and Biological Sciences; Energy; Social Sciences" +29935;21101194972;"Comparative Political Theory";journal;"26669773, 26669765";"Brill Academic Publishers";No;No;0,106;Q4;3;3;42;290;9;39;0,13;96,67;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2026";"History (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +29936;19200157108;"Competition Policy International";journal;"15540189, 15546853";"Competition Policy International Inc.";No;No;0,106;Q4;14;0;7;0;0;5;0,00;0,00;0,00;0;United States;Northern America;"Competition Policy International Inc.";"2008-2015, 2023";"Economics and Econometrics (Q4); Law (Q4); Political Science and International Relations (Q4)";"Economics, Econometrics and Finance; Social Sciences" +29937;21100873915;"Comprendre";journal;"11399759, 23855002";"Facultat de Filosofia de la Universitat Ramon Llull";No;Yes;0,106;Q4;3;1;42;1;5;39;0,07;1,00;0,00;0;Spain;Western Europe;"Facultat de Filosofia de la Universitat Ramon Llull";"2015-2025";"Philosophy (Q4)";"Arts and Humanities" +29938;19900191854;"Diabetes Aktuell";journal;"18616089, 18641733";"Georg Thieme Verlag";No;No;0,106;Q4;4;54;166;1019;9;119;0,05;18,87;32,79;0;Germany;Western Europe;"Georg Thieme Verlag";"2007-2026";"Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)";"Medicine" +29939;12541;"Dokkyo Journal of Medical Sciences";journal;"03855023, 09115900";"Dokkyo University School of Medicine";No;No;0,106;Q4;7;25;86;567;6;82;0,08;22,68;23,97;0;Japan;Asiatic Region;"Dokkyo University School of Medicine";"1978-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29940;5600153212;"Durkheimian Studies";journal;"17522307, 1362024X";"Berghahn Journals";No;No;0,106;Q4;8;0;20;0;3;19;0,17;0,00;0,00;0;United Kingdom;Western Europe;"Berghahn Journals";"2011-2015, 2017, 2020-2024";"Anthropology (Q4); Philosophy (Q4); Religious Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29941;4500151545;"Engineering and Technology";trade journal;"17509637, 17509645";"Institution of Engineering and Technology";No;No;0,106;Q4;20;0;303;0;34;303;0,11;0,00;0,00;0;United Kingdom;Western Europe;"Institution of Engineering and Technology";"2006-2023";"Electrical and Electronic Engineering (Q4)";"Engineering" +29942;19700170614;"Entomologica Americana";journal;"19475144, 19475136";"New York Entomological Society";No;No;0,106;Q4;13;0;5;0;0;5;0,00;0,00;0,00;0;United States;Northern America;"New York Entomological Society";"2009-2017, 2019, 2021, 2023";"Insect Science (Q4)";"Agricultural and Biological Sciences" +29943;62388;"Esprit";journal;"00140759, 21114579";"";No;No;0,106;Q4;11;0;65;0;3;49;0,05;0,00;0,00;0;France;Western Europe;"";"1973, 1975, 1981-1983, 2010-2020, 2024";"Arts and Humanities (miscellaneous) (Q4); Political Science and International Relations (Q4); Religious Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29944;13187;"Ethics and Medicine";journal;"21688230, 0266688X";"Bioethics Press";No;No;0,106;Q4;11;0;6;0;0;5;0,00;0,00;0,00;0;United States;Northern America;"Bioethics Press";"1986-1996, 2000-2006, 2009-2022";"Health Policy (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Medicine" +29945;21101317175;"Eulimene";journal;"11085800, 29450357";"Mediterranean Archaeological Society";No;No;0,106;Q4;0;0;8;0;0;5;0,00;0,00;0,00;0;Greece;Western Europe;"Mediterranean Archaeological Society";"2021-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29946;21100242208;"Fennoscandia Archaeologica";journal;"07817126";"Suomen Arkeologinen Seura";No;No;0,106;Q4;13;6;15;365;1;14;0,07;60,83;81,25;0;Finland;Western Europe;"Suomen Arkeologinen Seura";"2011-2018, 2021, 2023-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +29947;21101067060;"Fronteiras (Brazil)";journal;"22389717, 14158701";"Federal University of Fronteira Sul";Yes;Yes;0,106;Q4;2;20;97;699;9;91;0,08;34,95;44,44;0;Brazil;Latin America;"Federal University of Fronteira Sul";"2019-2025";"History (Q4)";"Arts and Humanities" +29948;21100220344;"Gazeta de Antropologia";journal;"02147564, 23402792";"Asociacion Granadina de Antropologia";Yes;Yes;0,106;Q4;9;8;54;302;10;54;0,29;37,75;40,00;0;Spain;Western Europe;"Asociacion Granadina de Antropologia";"2012-2025";"Anthropology (Q4)";"Social Sciences" +29949;17600155220;"Geneses";journal;"11553219";"Editions Belin";No;No;0,106;Q4;26;0;54;0;8;54;0,13;0,00;0,00;0;France;Western Europe;"Editions Belin";"2000-2024";"Cultural Studies (Q4); History (Q4); Public Administration (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29950;18754;"German Studies Review";journal;"01497952";"Johns Hopkins University Press";No;No;0,106;Q4;20;20;92;1089;17;91;0,20;54,45;60,00;0;United States;Northern America;"Johns Hopkins University Press";"1982, 1985, 1987, 1996-2026";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +29951;21100223783;"Giornale di Storia Costituzionale";journal;"18277950, 15930793";"eum - Edizioni Universita di Macerata";No;No;0,106;Q4;5;11;76;454;8;48;0,06;41,27;0,00;0;Italy;Western Europe;"eum - Edizioni Universita di Macerata";"2012-2025";"History (Q4); Law (Q4)";"Arts and Humanities; Social Sciences" +29952;21100869520;"Greek Review of Social Research";journal;"00139696, 22418512";"National Centre for Social Research";Yes;Yes;0,106;Q4;5;14;37;835;2;37;0,08;59,64;53,33;0;Greece;Western Europe;"National Centre for Social Research";"2018-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +29953;17500155021;"Grey Journal";journal;"1574180X, 15741796";"GreyNet";No;No;0,106;Q4;8;0;43;0;6;35;0,11;0,00;0,00;0;Netherlands;Western Europe;"GreyNet";"2009-2020, 2022-2024";"Library and Information Sciences (Q4)";"Social Sciences" +29954;21101170611;"@GRH";journal;"22959149, 20349130";"Association Francophone de Gestion des Relations Humaines";No;No;0,106;Q4;1;0;40;0;4;27;0,10;0,00;0,00;0;France;Western Europe;"Association Francophone de Gestion des Relations Humaines";"2023-2024";"Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +29955;145561;"Groupwork";journal;"17466091, 0951824X";"Whiting and Birch";No;No;0,106;Q4;12;7;47;156;8;41;0,13;22,29;85,71;0;United Kingdom;Western Europe;"Whiting and Birch";"2005-2014, 2017-2018, 2020-2025";"Applied Psychology (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine; Psychology" +29956;21101289839;"Harvard Egyptological Studies";book series;"23527501";"Brill Academic Publishers";No;No;0,106;Q4;3;33;81;2339;19;5;0,21;70,88;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2016, 2018-2025";"Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +29957;81154;"Hecheng Shuzhi Ji Suliao/China Synthetic Resin and Plastics";journal;"10021396";"Research Institute of Beijing";No;No;0,106;Q4;7;34;283;604;25;283;0,07;17,76;39,32;0;China;Asiatic Region;"Research Institute of Beijing";"1994-1998, 2001-2025";"Polymers and Plastics (Q4); Process Chemistry and Technology (Q4)";"Chemical Engineering; Materials Science" +29958;22347;"Historical Records of Australian Science";journal;"07273061, 14485508";"CSIRO Publishing";No;No;0,106;Q4;10;11;57;552;7;51;0,15;50,18;5,88;0;Australia;Pacific Region;"CSIRO Publishing";"1980-1983, 1985-1987, 1989, 1996, 1998, 2000-2002, 2004-2025";"Arts and Humanities (miscellaneous) (Q4); Demography (Q4); History and Philosophy of Science (Q4); Human Factors and Ergonomics (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29959;19700173008;"Historical Review";journal;"17917603, 17903572";"National Hellenic Research Foundation, Institute of Historical Research, Department of Neohellenic Research";Yes;Yes;0,106;Q4;9;0;32;0;2;31;0,08;0,00;0,00;0;Greece;Western Europe;"National Hellenic Research Foundation, Institute of Historical Research, Department of Neohellenic Research";"2009-2024";"History (Q4)";"Arts and Humanities" +29960;21101213854;"Histria Archaeologica";journal;"03506320, 1848932X";"Archaeological Museum of Istria";No;No;0,106;Q4;2;0;18;0;1;18;0,00;0,00;0,00;0;Croatia;Eastern Europe;"Archaeological Museum of Istria";"2020-2023";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +29961;21101268959;"Horizonte Medico";journal;"1727558X, 22273530";"Universidad de San Martin de Porres, Facultad de Medicina";Yes;Yes;0,106;Q4;2;76;76;1985;13;69;0,17;26,12;47,78;0;Peru;Latin America;"Universidad de San Martin de Porres, Facultad de Medicina";"2024-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29962;16968;"Hrvatske Vode";journal;"13301144, 18490506";"Hrvatske Vode";No;No;0,106;Q4;9;6;106;110;4;58;0,01;18,33;66,67;0;Croatia;Eastern Europe;"Hrvatske Vode";"2001-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +29963;19700186830;"IEEE Women in Engineering Magazine";trade journal;"1942065X, 19420668";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,106;Q4;4;20;60;7;2;52;0,03;0,35;88,89;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2007-2025";"Education (Q4)";"Social Sciences" +29964;21100777717;"Implantologie";journal;"09439692";"Quintessenz Verlags-GmbH";No;No;0,106;Q4;7;31;111;1069;3;95;0,03;34,48;28,57;0;Germany;Western Europe;"Quintessenz Verlags-GmbH";"2003-2025";"Oral Surgery (Q4)";"Dentistry" +29965;21100824926;"Indian Journal of Forensic Medicine and Pathology";journal;"09743383, 09743391";"Red Flower Publication Pvt. Ltd";No;No;0,106;Q4;6;16;110;307;3;109;0,04;19,19;23,91;0;India;Asiatic Region;"Red Flower Publication Pvt. Ltd";"2016-2025";"Pathology and Forensic Medicine (Q4)";"Medicine" +29966;21100224425;"Informacion, Cultura y Sociedad";journal;"15148327, 18511740";"University of Buenos Aires";Yes;Yes;0,106;Q4;10;23;68;729;12;63;0,18;31,70;54,84;0;Argentina;Latin America;"University of Buenos Aires";"2012-2025";"Library and Information Sciences (Q4)";"Social Sciences" +29967;19700201210;"International journal for the Study of the Christian Church";journal;"17470234, 1474225X";"Taylor and Francis Ltd.";No;No;0,106;Q4;17;1;80;51;16;71;0,09;51,00;100,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2001-2026";"Religious Studies (Q4)";"Arts and Humanities" +29968;16056;"International Journal of Biotechnology";journal;"17415020, 09636048";"Inderscience Enterprises Ltd";No;No;0,106;Q4;22;6;5;249;0;5;0,00;41,50;45,00;0;United Kingdom;Western Europe;"Inderscience Enterprises Ltd";"1999-2017, 2023, 2025";"Bioengineering (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Chemical Engineering" +29969;21101233287;"International Journal of Divination and Prognostication";journal;"25899198, 25899201";"Brill Academic Publishers";No;No;0,106;Q4;1;7;7;289;0;5;0,00;41,29;60,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2024-2025";"Arts and Humanities (miscellaneous) (Q4); Religious Studies (Q4)";"Arts and Humanities" +29970;21101389660;"International Journal of Islamic Khazanah";journal;"23029366, 23029781";"Halal Center UIN Sunan Gunung Djati Bandung";No;No;0,106;Q4;1;7;11;255;1;11;0,09;36,43;25,00;0;Indonesia;Asiatic Region;"Halal Center UIN Sunan Gunung Djati Bandung";"2024-2025";"Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +29971;19700187505;"International Journal of Private Law";journal;"17536243, 17536235";"Inderscience Publishers";No;No;0,106;Q4;7;0;18;0;3;18;0,17;0,00;0,00;0;United Kingdom;Western Europe;"Inderscience Publishers";"2008-2015, 2017-2021, 2023-2024";"Law (Q4)";"Social Sciences" +29972;13829;"Japan Journal of Logopedics and Phoniatrics";journal;"18843646, 00302813";"Japan Society of Logopedics and Phoniatrics";No;No;0,106;Q4;8;23;62;480;5;62;0,05;20,87;35,00;0;Japan;Asiatic Region;"Japan Society of Logopedics and Phoniatrics";"1967, 1970-2025";"LPN and LVN (Q4); Speech and Hearing (Q4)";"Health Professions; Nursing" +29973;23323;"Japanese Journal of Ecology";journal;"2424127X, 00215007";"Tohoku University";Yes;No;0,106;Q4;15;25;45;1367;2;40;0,00;54,68;30,00;0;Japan;Asiatic Region;"Tohoku University";"1979-2005, 2007-2011, 2013-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences; Environmental Science" +29974;21101033264;"Journal of Forensic Document Examination";journal;"08950849, 26400677";"Association of Forensic Document Examiners";No;No;0,106;Q4;4;0;6;0;0;5;0,00;0,00;0,00;0;United States;Northern America;"Association of Forensic Document Examiners";"2014-2019, 2021, 2023-2024";"Artificial Intelligence (Q4); Arts and Humanities (miscellaneous) (Q4); Cognitive Neuroscience (Q4); Computational Theory and Mathematics (Q4); Computer Graphics and Computer-Aided Design (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4)";"Arts and Humanities; Computer Science; Neuroscience" +29975;11200153517;"Journal of Leukemia and Lymphoma";journal;"10099921";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,106;Q4;6;142;520;3523;35;518;0,08;24,81;55,13;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2008-2025";"Cancer Research (Q4); Hematology (Q4); Oncology (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +29976;17900156704;"Journal of Numerical Analysis, Industrial and Applied Mathematics";journal;"17908159, 17908140";"Promacon";No;No;0,106;Q4;24;0;5;0;0;5;0,00;0,00;0,00;0;Greece;Western Europe;"Promacon";"2006-2013, 2015-2022, 2024";"Applied Mathematics (Q4); Computational Mathematics (Q4); Numerical Analysis (Q4)";"Mathematics" +29977;19700175854;"Journal of the American Musical Instrument Society";journal;"03623300";"American Musical Instrument Society";No;No;0,106;Q4;3;6;13;20;0;5;0,00;3,33;33,33;0;United States;Northern America;"American Musical Instrument Society";"2009-2015, 2018, 2023-2025";"Music (Q4)";"Arts and Humanities" +29978;8000153148;"Kriterion (Brazil)";journal;"19815336, 0100512X";"Universidade de Minas Gerais";Yes;Yes;0,106;Q4;7;28;109;815;10;109;0,07;29,11;17,39;0;Brazil;Latin America;"Universidade de Minas Gerais";"2007-2025";"Philosophy (Q4)";"Arts and Humanities" +29979;95318;"London Journal of Canadian Studies";journal;"23970928, 02672200";"UCL Press";Yes;No;0,106;Q4;2;7;6;210;0;5;0,00;30,00;16,67;0;United Kingdom;Western Europe;"UCL Press";"1994, 1996, 2021, 2023, 2025";"Cultural Studies (Q4); History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +29980;21101152619;"Martor";journal;"12246271, 27348350";"National Museum of the Romanian Peasant";Yes;Yes;0,106;Q4;3;10;49;362;8;47;0,11;36,20;71,43;0;Romania;Eastern Europe;"National Museum of the Romanian Peasant";"2019-2025";"Anthropology (Q4); Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29981;21100211307;"Masonry International";journal;"09502289, 2398757X";"International Masonry Society";No;No;0,106;Q4;6;3;13;77;1;13;0,09;25,67;0,00;0;United Kingdom;Western Europe;"International Masonry Society";"2012-2025";"Building and Construction (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +29982;79643;"Medical Forum Monthly";journal;"1029385X";"Medical Academic Foundation";No;No;0,106;Q4;7;202;965;3980;66;936;0,07;19,70;44,40;0;Pakistan;Asiatic Region;"Medical Academic Foundation";"2000-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +29983;16175;"Medicine and Law";journal;"07231393, 2471836X";"William S. Hein & Co., Inc.";No;No;0,106;Q4;23;30;115;1268;18;105;0,19;42,27;39,53;0;Israel;Middle East;"William S. Hein & Co., Inc.";"1982-2025";"Health Policy (Q4); Law (Q4)";"Medicine; Social Sciences" +29984;21100407207;"Medieval Law and Its Practice";book series;"18738176";"Brill Academic Publishers";No;No;0,106;Q4;8;3;32;834;2;5;0,06;278,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2021, 2023-2026";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Law (Q4)";"Arts and Humanities; Social Sciences" +29985;13319;"Methodist History";journal;"27693244, 00261238";"Penn State University Press";No;No;0,106;Q4;1;4;5;189;0;5;0,00;47,25;33,33;0;United States;Northern America;"Penn State University Press";"1970, 1980, 1999, 2017, 2019-2020, 2024-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +29986;6000165287;"Metropolitan Museum Journal";journal;"21693072, 00778958";"University of Chicago Press";No;No;0,106;Q4;8;12;26;562;3;22;0,13;46,83;66,67;0;Belgium;Western Europe;"University of Chicago Press";"2002-2003, 2005, 2010-2025";"Conservation (Q4); Museology (Q4)";"Arts and Humanities" +29987;5300152536;"MSW Management";journal;"10537899";"Forester Communications Inc.";No;No;0,106;Q4;7;182;326;4503;32;277;0,10;24,74;39,41;0;United States;Northern America;"Forester Communications Inc.";"2007-2019, 2022-2026";"Pollution (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +29988;21100428161;"Nijhoff Studies in European Union Law";book series;"22109773, 22109765";"Brill Academic Publishers";No;No;0,106;Q4;5;2;5;694;1;5;0,00;347,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2023, 2025-2026";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +29989;16490;"Nonwovens Industry";trade journal;"01634429";"Rodman Publishing, Corp.";No;No;0,106;Q4;5;58;148;1;1;35;0,01;0,02;66,67;0;United States;Northern America;"Rodman Publishing, Corp.";"1989-2026";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Polymers and Plastics (Q4)";"Business, Management and Accounting; Materials Science" +29990;28838;"Nursing History Review";journal;"10628061";"Texas Christian University Press";No;No;0,106;Q4;15;5;20;272;1;5;0,05;54,40;75,00;0;United States;Northern America;"Texas Christian University Press";"1993-1997, 1999-2006, 2008-2021, 2023-2026";"Nursing (miscellaneous) (Q4)";"Nursing" +29991;21100206246;"Orientation Scolaire et Professionnelle";journal;"02496739, 21043795";"Inetop-Cnam";No;No;0,106;Q4;8;5;85;107;8;72;0,11;21,40;100,00;0;France;Western Europe;"Inetop-Cnam";"2011-2025";"Developmental and Educational Psychology (Q4); Education (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +29992;5800171010;"Oxford University Commonwealth Law Journal";journal;"17578469, 14729342";"Routledge";No;No;0,106;Q4;8;7;17;134;8;15;0,67;19,14;22,22;0;United Kingdom;Western Europe;"Routledge";"2013-2023, 2025";"Law (Q4)";"Social Sciences" +29993;21100199524;"Philosophia Christi";journal;"15291634";"Evangelical Philosophical Society";No;No;0,106;Q4;9;11;60;471;4;57;0,05;42,82;22,22;0;United States;Northern America;"Evangelical Philosophical Society";"2011, 2014-2024";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +29994;27504;"Politique Etrangere";journal;"0032342X, 19588992";"Institut francais des relations internationales";No;No;0,106;Q4;5;58;160;712;14;120;0,06;12,28;15,09;0;France;Western Europe;"Institut francais des relations internationales";"1990, 1994, 2019-2025";"Political Science and International Relations (Q4)";"Social Sciences" +29995;21101267122;"Quaderni Fiorentini per la Storia del Pensiero Giuridico Moderno";journal;"03921867";"Giuffre Francis Lefebvre SPA";No;No;0,106;Q4;4;28;107;172;3;5;0,01;6,14;24,00;0;Italy;Western Europe;"Giuffre Francis Lefebvre SPA";"2020-2025";"History (Q4); Law (Q4); Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +29996;21101128490;"Quaderns de Filosofia";journal;"23411414, 23413042";"Societat de Filosofia del Pais Valencia";Yes;Yes;0,106;Q4;4;24;54;826;13;49;0,16;34,42;12,50;0;Spain;Western Europe;"Societat de Filosofia del Pais Valencia";"2019-2025";"Philosophy (Q4)";"Arts and Humanities" +29997;23719;"Reflets et Perspectives de la Vie Economique";journal;"17821509, 00342971";"De Boeck Supérieur";No;No;0,106;Q4;12;0;6;0;0;5;0,00;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"1973-1975, 2001-2020, 2023";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +29998;21100812179;"Resonancias";journal;"07195702, 07173474";"Pontificia Universidad Catolica de Chile";Yes;Yes;0,106;Q4;6;1;78;60;10;69;0,16;60,00;0,00;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile";"2016-2025";"Music (Q4)";"Arts and Humanities" +29999;5100152903;"Revista Cubana de Plantas Medicinales";journal;"10284796";"Editorial Ciencias Medicas";Yes;No;0,106;Q4;17;0;46;0;1;43;0,00;0,00;0,00;0;Cuba;Latin America;"Editorial Ciencias Medicas";"1996-1997, 1999-2002, 2005-2024";"Drug Discovery (Q4); Pharmacology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Pharmacology, Toxicology and Pharmaceutics" +30000;21101186922;"Revista de Derecho (Uruguay)";journal;"23011610, 15105172";"Universidad de Montevideo";Yes;Yes;0,106;Q4;3;21;59;750;4;51;0,10;35,71;50,00;0;Uruguay;Latin America;"Universidad de Montevideo";"2019-2025";"Law (Q4)";"Social Sciences" +30001;21101021172;"Revista de Estudos da Linguagem";journal;"22372083, 01040588";"Universidade Federal de Minas Gerais, Faculdade de Letras";Yes;Yes;0,106;Q4;4;24;165;1000;13;164;0,08;41,67;48,28;0;Brazil;Latin America;"Universidade Federal de Minas Gerais, Faculdade de Letras";"2019-2025";"Education (Q4); Linguistics and Language (Q4)";"Social Sciences" +30002;17500154714;"Revista Internacional de Acupuntura";journal;"18878369, 19886705";"Ediciones Doyma, S.L.";No;No;0,106;Q4;6;0;54;0;9;53;0,14;0,00;0,00;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2007-2024";"Complementary and Alternative Medicine (Q4)";"Medicine" +30003;27619;"Revue de l'Energie";journal;"24927988, 0303240X";"Editions Techniques et Economiques";No;No;0,106;Q4;5;3;46;6;2;40;0,04;2,00;33,33;0;France;Western Europe;"Editions Techniques et Economiques";"1974-2010, 2019, 2023-2025";"Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4)";"Energy" +30004;14736;"Revue Francaise de Psychanalyse";journal;"00352942";"Presses Universitaires de France";No;No;0,106;Q4;18;0;310;0;7;291;0,02;0,00;0,00;0;France;Western Europe;"Presses Universitaires de France";"1951-1979, 2001-2024";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +30005;21100384033;"Scripta Judaica Cracoviensia";journal;"20843925, 17335760";"Jagiellonian University Press";No;No;0,106;Q4;3;0;5;0;0;5;0,00;0,00;0,00;0;Poland;Eastern Europe;"Jagiellonian University Press";"2014-2022";"Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30006;4700152752;"Slavic and East European Information Resources";journal;"15229041, 15228886";"Routledge";No;No;0,106;Q4;6;12;65;222;8;55;0,20;18,50;80,00;0;United States;Northern America;"Routledge";"2001-2026";"Library and Information Sciences (Q4); Linguistics and Language (Q4)";"Social Sciences" +30007;17608;"Soundings";journal;"21616302, 00381861";"Society for Values in Higher Education";No;No;0,106;Q4;9;0;39;0;2;36;0,00;0,00;0,00;0;United States;Northern America;"Society for Values in Higher Education";"1975-1977, 1979-1980, 1982-1985, 1989, 1994, 2002-2023";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30008;21101065670;"South African Museums Association Bulletin";journal;"02585049";"South African Museums Association";No;No;0,106;Q4;2;0;14;0;2;12;0,00;0,00;0,00;0;South Africa;Africa;"South African Museums Association";"2001, 2019-2024";"Arts and Humanities (miscellaneous) (Q4); Conservation (Q4); History (Q4); Museology (Q4)";"Arts and Humanities" +30009;26414;"Southeastern Geology";journal;"00383678";"Duke University Press";No;No;0,106;Q4;14;0;5;0;0;5;0,00;0,00;0,00;0;United States;Northern America;"Duke University Press";"1979, 1981-1986, 1992-2021, 2023";"Geology (Q4)";"Earth and Planetary Sciences" +30010;5800207533;"Sprachwissenschaft";journal;"03448169";"Universitaetsverlag Winter GmbH";No;No;0,106;Q4;10;0;39;0;1;38;0,00;0,00;0,00;0;Germany;Western Europe;"Universitaetsverlag Winter GmbH";"2002-2024";"Linguistics and Language (Q4)";"Social Sciences" +30011;19700174634;"Sri Lankan Journal of Anaesthesiology";journal;"22791965, 13918834";"College of Anaesthesiologists And Intensivists of Sri Lanka";Yes;Yes;0,106;Q4;7;36;90;412;9;78;0,14;11,44;47,30;0;Sri Lanka;Asiatic Region;"College of Anaesthesiologists And Intensivists of Sri Lanka";"2010-2026";"Anesthesiology and Pain Medicine (Q4)";"Medicine" +30012;14716;"Studi Storici";journal;"00393037";"Carocci Editore";No;No;0,106;Q4;12;24;122;2313;15;119;0,09;96,38;31,82;0;Italy;Western Europe;"Carocci Editore";"1966, 1974, 1976-1977, 1979-1980, 1982, 1985, 1999-2025";"History (Q4)";"Arts and Humanities" +30013;21101220430;"Studia Fennica Historica";book series;"1458526X";"Suomalaisen Kirjallisuuden Seura";No;No;0,106;Q4;1;0;27;0;1;5;0,04;0,00;0,00;0;Finland;Western Europe;"Suomalaisen Kirjallisuuden Seura";"2023-2024";"History (Q4)";"Arts and Humanities" +30014;21101220431;"Studia Fennica Linguistica";book series;"12351938";"Suomalaisen Kirjallisuuden Seura";No;No;0,106;Q4;4;0;29;0;34;5;1,17;0,00;0,00;0;Finland;Western Europe;"Suomalaisen Kirjallisuuden Seura";"2023-2024";"Linguistics and Language (Q4)";"Social Sciences" +30015;21100211364;"Studies in Applied Electromagnetics and Mechanics";book series;"13837281, 18798322";"IOS Press BV";No;No;0,106;Q4;11;43;49;443;4;45;0,08;10,30;21,68;0;Netherlands;Western Europe;"IOS Press BV";"2007-2012, 2014-2020, 2023-2025";"Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +30016;21101303676;"Sugar Industry International";journal;"2941749X";"Verlag Dr. Albert Bartens KG";No;No;0,106;Q4;0;0;5;0;0;5;0,00;0,00;0,00;0;Germany;Western Europe;"Verlag Dr. Albert Bartens KG";"2023-2024";"Agronomy and Crop Science (Q4); Food Science (Q4); Industrial and Manufacturing Engineering (Q4)";"Agricultural and Biological Sciences; Engineering" +30017;17600155046;"Travailler";journal;"21025150, 16205340";"Martin Media";No;No;0,106;Q4;15;0;37;0;3;31;0,05;0,00;0,00;0;France;Western Europe;"Martin Media";"2001-2023";"Clinical Psychology (Q4); Health (social science) (Q4); Social Psychology (Q4)";"Psychology; Social Sciences" +30018;21100207634;"Urology Times";journal;"00939722, 21507384";"Advanstar Communications Inc.";No;No;0,106;Q4;3;148;358;311;5;177;0,02;2,10;30,77;0;United States;Northern America;"Advanstar Communications Inc.";"2008, 2010-2026";"Advanced and Specialized Nursing (Q4); Medical and Surgical Nursing (Q4); Urology (Q4)";"Medicine; Nursing" +30019;24266;"USDA Forest Service - Resource Bulletin RMRS-RB";journal;"08889708";"USDA Forest Service";No;No;0,106;Q4;10;1;5;16;1;5;0,25;16,00;14,29;0;United States;Northern America;"USDA Forest Service";"1974, 1978-1997, 1999, 2001-2006, 2008-2010, 2012-2014, 2016-2022, 2024-2025";"Ecology (Q4); Forestry (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +30020;21101164610;"Verge: Studies in Global Asias";journal;"23735058, 23735066";"University of Minnesota Press";No;No;0,106;Q4;8;21;61;824;20;50;0,22;39,24;57,14;0;United States;Northern America;"University of Minnesota Press";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30021;21100931237;"Victorian Historical Journal";journal;"10307710";"Royal Historical Society of Victoria";No;No;0,106;Q4;2;0;92;0;2;60;0,02;0,00;0,00;0;Australia;Pacific Region;"Royal Historical Society of Victoria";"2019-2024";"History (Q4)";"Arts and Humanities" +30022;144769;"Zeitschrift fur Gefassmedizin";journal;"1812951X, 18129501";"Krause und Pachernegg GmbH";Yes;No;0,106;Q4;6;5;32;120;3;20;0,17;24,00;20,00;0;Austria;Western Europe;"Krause und Pachernegg GmbH";"2005-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +30023;21575;"Zeitschrift fur Padagogik (Beiheft)";journal;"05142717";"Verlag Julius Beltz GmbH";No;No;0,106;Q4;16;11;42;689;1;40;0,03;62,64;40,74;0;Germany;Western Europe;"Verlag Julius Beltz GmbH";"2002-2005, 2007-2025";"Education (Q4)";"Social Sciences" +30024;21101214483;"Annual Technical Conference - ANTEC, Conference Proceedings";conference and proceedings;"15392252";"Society of Plastics Engineers";No;No;0,106;-;21;55;272;740;10;269;0,05;13,45;11,41;0;United States;Northern America;"Society of Plastics Engineers";"1970-1971, 1973-1975, 1977-1988, 1990-1999, 2001, 2003-2007, 2009-2025";"Chemical Engineering (miscellaneous); Polymers and Plastics";"Chemical Engineering; Materials Science" +30025;20500195432;"Asia Pacific Conference on Postgraduate Research in Microelectronics and Electronics";conference and proceedings;"21592144, 21592160";"IEEE Computer Society";No;No;0,106;-;12;0;25;0;6;20;0,24;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2011-2013, 2016-2019, 2021, 2023";"Education; Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering; Social Sciences" +30026;21101089946;"International Conference on Structural Health Monitoring of Intelligent Infrastructure: Transferring Research into Practice, SHMII";conference and proceedings;"25643738";"International Society for Structural Health Monitoring of Intelligent Infrastructure, ISHMII";No;No;0,106;-;5;0;137;0;13;135;0,00;0,00;0,00;0;Canada;Northern America;"International Society for Structural Health Monitoring of Intelligent Infrastructure, ISHMII";"2021-2022";"Artificial Intelligence; Building and Construction; Civil and Structural Engineering; Computer Networks and Communications; Information Systems and Management";"Computer Science; Decision Sciences; Engineering" +30027;21100843120;"International Conferences on Transport and Sedimentation of Solid Particles";conference and proceedings;"12323071";"Wydawnictwo Uniwersytetu Przyrodniczego we Wroclawiu";No;No;0,106;-;5;0;24;0;3;23;0,13;0,00;0,00;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Przyrodniczego we Wroclawiu";"2017, 2019, 2023";"Environmental Engineering; Fluid Flow and Transfer Processes; Pollution; Waste Management and Disposal; Water Science and Technology";"Chemical Engineering; Environmental Science" +30028;21100284931;"Proceedings of International Conference on Computers and Industrial Engineering, CIE";conference and proceedings;"21648689";"Computers and Industrial Engineering";No;No;0,106;-;10;0;408;0;33;403;0,08;0,00;0,00;0;United States;Northern America;"Computers and Industrial Engineering";"2012-2013, 2017-2019, 2023-2024";"Computer Science (miscellaneous); Control and Systems Engineering; Electrical and Electronic Engineering; Industrial and Manufacturing Engineering; Safety, Risk, Reliability and Quality";"Computer Science; Engineering" +30029;21100775656;"Acta Poetica";journal;"01853082, 2448735X";"Universidad Nacional Autonoma de Mexico";Yes;Yes;0,105;Q3;4;16;44;437;7;41;0,17;27,31;42,86;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2016-2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30030;16400154704;"African American Review";journal;"10624783";"John Hopkins University";No;No;0,105;Q3;22;6;64;123;9;56;0,02;20,50;42,86;0;United States;Northern America;"John Hopkins University";"2002-2009, 2012-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30031;21100450247;"Altre Modernita";journal;"20357680";"Universita degli Studi di Milano";Yes;Yes;0,105;Q3;10;47;240;1601;25;214;0,09;34,06;60,87;0;Italy;Western Europe;"Universita degli Studi di Milano";"2015-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30032;21100267937;"Annales Universitatis Apulensis. Series Historica";journal;"14539306";"Universitatea "1 Decembrie 1918" Alba Iulia";No;No;0,105;Q3;5;0;7;0;0;6;0,00;0,00;0,00;0;Romania;Eastern Europe;"Universitatea "1 Decembrie 1918" Alba Iulia";"2013-2022";"Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30033;6700153216;"Architectural History";journal;"0066622X, 20595670";"Cambridge University Press";No;No;0,105;Q3;14;9;33;752;6;33;0,17;83,56;33,33;0;United Kingdom;Western Europe;"Cambridge University Press";"2002-2009, 2011-2025";"Visual Arts and Performing Arts (Q3); Architecture (Q4)";"Arts and Humanities; Engineering" +30034;21101151611;"Architecture Research";journal;"15805573, 15816974";"University of Ljubljana, Faculty of Architecture";Yes;Yes;0,105;Q3;1;0;25;0;1;6;0,08;0,00;0,00;0;Slovenia;Eastern Europe;"University of Ljubljana, Faculty of Architecture";"2019-2024";"Visual Arts and Performing Arts (Q3); Architecture (Q4); Arts and Humanities (miscellaneous) (Q4); Conservation (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +30035;21101282679;"Brill's Plato Studies Series";book series;"24522945";"Brill Academic Publishers";No;No;0,105;Q3;7;3;54;950;23;6;0,06;316,67;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2018-2022, 2024-2026";"Classics (Q3); Philosophy (Q4)";"Arts and Humanities" +30036;21101059718;"Brill's Studies on Art, Art History, and Intellectual History";book series;"18789048";"Brill Academic Publishers";No;No;0,105;Q3;1;62;59;3386;9;7;0,15;54,61;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021, 2023-2025";"Visual Arts and Performing Arts (Q3); History and Philosophy of Science (Q4); Religious Studies (Q4)";"Arts and Humanities" +30037;19300156927;"Conradiana";journal;"00106356, 19350252";"Texas Tech University Press";No;No;0,105;Q3;8;0;6;0;0;6;0,00;0,00;0,00;0;United States;Northern America;"Texas Tech University Press";"2007-2020, 2023";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30038;21101148499;"Costerus New Series";book series;"01659618";"Brill Academic Publishers";No;No;0,105;Q3;10;1;6;231;0;6;0,00;231,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1978-2018, 2020-2021, 2023-2025";"Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +30039;5700177049;"CR: The New Centennial Review";journal;"1532687X, 15396630";"Michigan State University, Department of English";No;No;0,105;Q3;24;1;59;29;12;48;0,06;29,00;100,00;0;United States;Northern America;"Michigan State University, Department of English";"2002-2023";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30040;14465;"Deutsche Vierteljahrsschrift fur Literaturwissenschaft und Geistesgeschichte";journal;"00120936";"J.B. Metzler'sche Verlagsbuchhandlung und C.E. Poeschel Verlag GmbH Stuttgart-Weimar";No;No;0,105;Q3;8;15;125;0;15;68;0,13;0,00;20,00;0;Germany;Western Europe;"J.B. Metzler'sche Verlagsbuchhandlung und C.E. Poeschel Verlag GmbH Stuttgart-Weimar";"1973, 1978, 1988, 1999, 2002-2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30041;21100242204;"Disegnare Idee Immagini";book series;"11239247";"Gangemi Editore S.p.A.";No;No;0,105;Q3;6;6;50;102;8;21;0,22;17,00;0,00;0;Italy;Western Europe;"Gangemi Editore S.p.A.";"2009-2024";"Visual Arts and Performing Arts (Q3); Architecture (Q4)";"Arts and Humanities; Engineering" +30042;21101145383;"Faux Titre";book series;"01679392";"Brill Academic Publishers";No;No;0,105;Q3;8;31;138;1977;5;6;0,00;63,77;66,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"1980-2026";"Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); History (Q4)";"Arts and Humanities" +30043;19600166214;"Giornale Storico della Letteratura Italiana";journal;"00170496";"Loescher Editore";No;No;0,105;Q3;3;0;61;0;2;60;0,00;0,00;0,00;0;Italy;Western Europe;"Loescher Editore";"2009-2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30044;21100845366;"Interdisciplinary Literary Studies";journal;"2161427X, 15248429";"Penn State University Press";No;No;0,105;Q3;5;25;74;1044;7;73;0,10;41,76;43,75;0;United States;Northern America;"Penn State University Press";"2017-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30045;21100870908;"Journal of Austrian Studies";journal;"23271809, 2165669X";"University of Nebraska Press";No;No;0,105;Q3;7;5;173;368;12;166;0,08;73,60;40,00;0;United States;Northern America;"University of Nebraska Press";"2012-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30046;5700163901;"Journal of Romance Studies";journal;"14733536, 17522331";"Liverpool University Press";No;No;0,105;Q3;5;32;76;1441;11;68;0,13;45,03;72,41;0;United Kingdom;Western Europe;"Liverpool University Press";"2014-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Linguistics and Language (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30047;21100259537;"Knjizevna Smotra";journal;"04550463, 24596329";"Croatian Philological Society";No;No;0,105;Q3;2;39;122;948;4;114;0,04;24,31;61,11;0;Croatia;Eastern Europe;"Croatian Philological Society";"2013-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30048;6000152763;"Konsthistorisk Tidskrift";journal;"16512294, 00233609";"Routledge";No;No;0,105;Q3;11;15;37;778;9;33;0,30;51,87;80,00;0;United Kingdom;Western Europe;"Routledge";"1932-2026";"Visual Arts and Performing Arts (Q3); History (Q4)";"Arts and Humanities" +30049;21101373884;"MARG";journal;"09721444";"Marg Foundation";No;No;0,105;Q3;1;42;210;449;2;6;0,00;10,69;0,00;0;India;Asiatic Region;"Marg Foundation";"2021-2025";"Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30050;6000164647;"Massachusetts Review";journal;"00254878";"Massachusetts Review, Inc";No;No;0,105;Q3;12;45;165;17;3;130;0,02;0,38;46,88;0;United States;Northern America;"Massachusetts Review, Inc";"1977, 1981, 2002-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +30051;6500153109;"Modern Language Review";journal;"00267937";"Modern Humanities Research Association";No;No;0,105;Q3;16;20;132;1313;6;132;0,01;65,65;31,58;0;United Kingdom;Western Europe;"Modern Humanities Research Association";"2002-2026";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30052;21100898965;"Modernist Cultures";journal;"20411022, 17538629";"Edinburgh University Press";No;No;0,105;Q3;10;14;47;718;4;46;0,06;51,29;30,77;0;United Kingdom;Western Europe;"Edinburgh University Press";"2005-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); History (Q4); Music (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30053;5700173874;"Paragraph";journal;"02648334, 17500176";"Edinburgh University Press";No;No;0,105;Q3;23;22;67;593;21;57;0,41;26,95;47,06;0;United Kingdom;Western Europe;"Edinburgh University Press";"1986, 1991, 1996-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +30054;21101105163;"Performing Islam";journal;"20431015, 20431023";"Intellect Ltd.";No;No;0,105;Q3;1;1;7;93;0;6;0,00;93,00;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019, 2021-2023, 2025";"Visual Arts and Performing Arts (Q3); Arts and Humanities (miscellaneous) (Q4); Religious Studies (Q4)";"Arts and Humanities" +30055;17500154728;"Portuguese Studies";journal;"02675315";"Modern Humanities Research Association";No;No;0,105;Q3;13;9;53;474;2;49;0,00;52,67;37,50;0;United Kingdom;Western Europe;"Modern Humanities Research Association";"2002-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30056;21100218531;"Prometheus (Italy)";journal;"22811044, 03912698";"Firenze University Press";No;No;0,105;Q3;6;0;54;0;6;54;0,00;0,00;0,00;0;Italy;Western Europe;"Firenze University Press";"2011-2023";"Classics (Q3); Literature and Literary Theory (Q3)";"Arts and Humanities" +30057;19700167103;"Slavia";journal;"00376736";"Slovansky Ustav AV CR";Yes;No;0,105;Q3;5;30;114;984;6;83;0,08;32,80;47,83;0;Czech Republic;Eastern Europe;"Slovansky Ustav AV CR";"2002, 2009-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30058;16400154750;"Studi Secenteschi";journal;"20357966, 00816248";"Casa Editrice Leo S. Olschki";No;No;0,105;Q3;6;10;34;684;0;6;0,00;68,40;0,00;0;Italy;Western Europe;"Casa Editrice Leo S. Olschki";"2002-2013, 2018-2024";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30059;21100316608;"Studies in American Jewish Literature";journal;"19485077, 02719274";"Penn State University Press";No;No;0,105;Q3;6;5;45;186;5;42;0,06;37,20;16,67;0;United States;Northern America;"Penn State University Press";"2014-2025";"Literature and Literary Theory (Q3); Anthropology (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30060;5900152861;"Visual Resources";journal;"01973762";"Routledge";No;No;0,105;Q3;13;2;14;154;4;13;0,00;77,00;100,00;0;United Kingdom;Western Europe;"Routledge";"1980-1981, 1983, 1986-2022, 2025-2026";"Visual Arts and Performing Arts (Q3); Museology (Q4)";"Arts and Humanities" +30061;5800207900;"Word and Image";journal;"02666286";"Taylor and Francis Ltd.";No;No;0,105;Q3;18;24;76;1058;20;73;0,29;44,08;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1985-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30062;21101021168;"Accounting, Finance, Sustainability, Governance and Fraud";book series;"25097881, 25097873";"Springer";No;No;0,105;Q4;12;74;275;2827;143;6;0,33;38,20;0,00;0;Singapore;Asiatic Region;"Springer";"2017-2026";"Accounting (Q4); Finance (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +30063;21100268077;"Analecta Hibernica";book series;"07916167";"The Irish Manuscripts Commission Ltd.";No;No;0,105;Q4;3;0;7;0;0;6;0,00;0,00;0,00;0;Ireland;Western Europe;"The Irish Manuscripts Commission Ltd.";"2011-2013, 2015, 2017-2020, 2022";"History (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +30064;27715;"Anil Aggrawal's Internet Journal of Forensic Medicine and Toxicology";journal;"09728074, 09728066";"Anil Aggrawal's Internet Journal of Forensic Medicine and Toxicology";No;No;0,105;Q4;13;2;7;13;1;7;0,00;6,50;0,00;0;India;Asiatic Region;"Anil Aggrawal's Internet Journal of Forensic Medicine and Toxicology";"2000-2025";"Law (Q4); Pathology and Forensic Medicine (Q4); Toxicology (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics; Social Sciences" +30065;19900193907;"Annales Francaises d'Oto-Rhino-Laryngologie et de Pathologie Cervico-Faciale";journal;"18797261, 1879727X";"Elsevier Masson s.r.l.";No;No;0,105;Q4;20;87;247;1611;7;173;0,03;18,52;30,84;0;France;Western Europe;"Elsevier Masson s.r.l.";"2010-2026";"Otorhinolaryngology (Q4); Surgery (Q4)";"Medicine" +30066;5700154772;"Anuario Filosofico";journal;"21736111, 00665215";"Servicio de Publicaciones de la Universidad de Navarra";No;No;0,105;Q4;8;12;43;335;4;43;0,10;27,92;66,67;0;Spain;Western Europe;"Servicio de Publicaciones de la Universidad de Navarra";"1992-1996, 1998-2026";"Philosophy (Q4)";"Arts and Humanities" +30067;21101262345;"Arabian Journal of Scientific Research";journal;"27080463";"HBKU Press";Yes;Yes;0,105;Q4;2;13;33;386;6;32;0,24;29,69;47,37;0;Qatar;Middle East;"HBKU Press";"2020-2025";"Multidisciplinary (Q4)";"Multidisciplinary" +30068;21100241806;"Archeo-Nil";journal;"11610492";"Societe pour l'Etude des Cultures Prepharaoniques de la Vallee du Nil";No;No;0,105;Q4;8;0;7;0;1;6;0,00;0,00;0,00;0;France;Western Europe;"Societe pour l'Etude des Cultures Prepharaoniques de la Vallee du Nil";"2011, 2013-2022";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +30069;21101196738;"Archives of Pediatric Neurosurgery";journal;"26753626";"Sociedade Brasileira de Neurocirurgia Pediatrica";Yes;Yes;0,105;Q4;3;27;87;402;4;69;0,06;14,89;21,54;0;Brazil;Latin America;"Sociedade Brasileira de Neurocirurgia Pediatrica";"2019-2026";"Neuroscience (miscellaneous) (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine; Neuroscience" +30070;21101214818;"Bhutan Health Journal";journal;"24132993, 24151114";"";Yes;Yes;0,105;Q4;1;15;31;284;3;26;0,10;18,93;45,95;0;Bhutan;Asiatic Region;"";"2023-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +30071;16100154716;"Boletin de la Real Academia Espanola";journal;"24450898, 02104822";"Real Academia Espanola";Yes;No;0,105;Q4;9;25;68;2459;7;67;0,09;98,36;37,50;0;Spain;Western Europe;"Real Academia Espanola";"2003-2025";"Linguistics and Language (Q4)";"Social Sciences" +30072;21101156034;"Brill Reference Library of Judaism";book series;"15715000";"Brill Academic Publishers";No;No;0,105;Q4;7;0;38;0;7;6;0,50;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2000-2007, 2009, 2011-2018, 2020-2022, 2024";"Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30073;21100236827;"Bulletin of the Kyushu Institute of Technology - Pure and Applied Mathematics";journal;"13438670";"Kyushu Institute of Technology";No;No;0,105;Q4;3;2;7;30;2;7;0,20;15,00;0,00;0;Japan;Asiatic Region;"Kyushu Institute of Technology";"2012-2025";"Mathematics (miscellaneous) (Q4)";"Mathematics" +30074;21100307490;"Cahiers des Ameriques Latines";book series;"11417161";"Institut des Hautes Etudes de l'Amerique Latine (IHEAL)";Yes;Yes;0,105;Q4;7;10;92;373;9;75;0,11;37,30;77,78;0;France;Western Europe;"Institut des Hautes Etudes de l'Amerique Latine (IHEAL)";"1972, 1976, 1979, 1987, 2001-2002, 2012-2025";"Cultural Studies (Q4); Demography (Q4); Sociology and Political Science (Q4); Urban Studies (Q4)";"Social Sciences" +30075;21101390658;"Central Community Development Journal";journal;"30248302, 30251826";"Privietlab";No;No;0,105;Q4;2;13;19;508;3;19;0,13;39,08;40,00;0;Indonesia;Asiatic Region;"Privietlab";"2021-2025";"Development (Q4); Health (social science) (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +30076;21101313379;"Chinese Journal of Hand Surgery";journal;"1005054X";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,105;Q4;3;53;329;899;35;329;0,08;16,96;24,40;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2021-2025";"History (Q4); Orthopedics and Sports Medicine (Q4); Surgery (Q4)";"Arts and Humanities; Medicine" +30077;21014;"Chirurgia Polska";journal;"16443349, 15075524";"Via Medica";No;No;0,105;Q4;6;0;18;0;1;15;0,00;0,00;0,00;0;Poland;Eastern Europe;"Via Medica";"2002-2018, 2020, 2022";"Surgery (Q4)";"Medicine" +30078;9500154020;"Coal International";trade journal;"20452985, 13576941";"Tradelink Publications Ltd.";No;No;0,105;Q4;7;2;21;0;1;17;0,05;0,00;0,00;0;United Kingdom;Western Europe;"Tradelink Publications Ltd.";"1982-1989, 1994-2018, 2023-2025";"Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Geotechnical Engineering and Engineering Geology (Q4); Mechanical Engineering (Q4)";"Earth and Planetary Sciences; Energy; Engineering" +30079;25690;"Cornell International Law Journal";journal;"00108812";"Cornell Law School";No;No;0,105;Q4;37;8;39;1309;4;38;0,11;163,63;50,00;0;United States;Northern America;"Cornell Law School";"1992, 1996-2025";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +30080;18736;"Cuadernos del Cendes";journal;"10122508";"Universidad Central de Venezuela";Yes;No;0,105;Q4;9;0;53;0;5;47;0,00;0,00;0,00;0;Venezuela;Latin America;"Universidad Central de Venezuela";"1989-1991, 2008-2023";"Geography, Planning and Development (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30081;13000154716;"Current Topics in Peptide and Protein Research";journal;"09724524";"Research Trends";No;No;0,105;Q4;8;0;28;0;8;28;0,38;0,00;0,00;0;India;Asiatic Region;"Research Trends";"2007, 2009-2024";"Biochemistry (Q4); Molecular Biology (Q4)";"Biochemistry, Genetics and Molecular Biology" +30082;21101287244;"Distinguished Lectures in Cognitive Linguistics";book series;"24684872";"Brill Academic Publishers";No;No;0,105;Q4;2;0;6;0;0;6;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017-2024";"Linguistics and Language (Q4)";"Social Sciences" +30083;6400153156;"Economia Aplicada";journal;"14138050, 19805330";"Universidade de Sao Paolo";Yes;Yes;0,105;Q4;15;0;50;0;8;50;0,03;0,00;0,00;0;Brazil;Latin America;"Universidade de Sao Paolo";"2007-2024";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +30084;17600155214;"Empan";journal;"11523336";"Editions Eres";No;No;0,105;Q4;8;0;176;0;8;154;0,01;0,00;0,00;0;France;Western Europe;"Editions Eres";"2002-2024";"Health (social science) (Q4); Social Psychology (Q4); Sociology and Political Science (Q4)";"Psychology; Social Sciences" +30085;21101081697;"Engineering Materials";book series;"16121317, 18681212";"Springer Science and Business Media Deutschland GmbH";No;No;0,105;Q4;27;309;938;27070;859;7;0,95;87,61;0,00;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2008-2026";"Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +30086;16200154788;"Etudes Celtique";book series;"03731928";"Centre National de la Recherche Scientifique (C N R S)";No;No;0,105;Q4;6;0;8;0;0;7;0,00;0,00;0,00;0;France;Western Europe;"Centre National de la Recherche Scientifique (C N R S)";"2003-2004, 2012, 2014-2019, 2021-2022";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30087;26084;"European Journal of Lymphology and Related Problems";journal;"07785569";"";No;No;0,105;Q4;8;6;6;138;0;6;0,00;23,00;61,90;0;Belgium;Western Europe;"";"1992-1993, 1995, 1997, 1999-2000, 2002-2006, 2008-2012, 2014-2015, 2017, 2019-2020, 2023, 2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +30088;19700175017;"Gastric and Breast Cancer";journal;"11097647, 11097655";"Ioannina University School of Medicine";No;No;0,105;Q4;6;0;6;0;0;6;0,00;0,00;0,00;0;Greece;Western Europe;"Ioannina University School of Medicine";"2008-2012, 2017-2022";"Gastroenterology (Q4); Oncology (Q4)";"Medicine" +30089;21101128535;"Genesis (Italy)";journal;"15949281, 19732252";"Viella";No;No;0,105;Q4;0;0;7;0;0;7;0,00;0,00;0,00;0;Italy;Western Europe;"Viella";"2022-2023";"Cultural Studies (Q4); Gender Studies (Q4); History (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30090;25608;"Great Plains Quarterly";journal;"02757664";"Center for Great Plains Studies";No;No;0,105;Q4;12;0;65;0;4;62;0,02;0,00;0,00;0;United States;Northern America;"Center for Great Plains Studies";"1983-1993, 1995-2024";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +30091;25512;"Guti Dianzixue Yanjiu Yu Jinzhan/Research and Progress of Solid State Electronics";journal;"10003819";"Research Progress of Solid State Electronics";No;No;0,105;Q4;7;34;263;696;31;262;0,14;20,47;26,24;0;China;Asiatic Region;"Research Progress of Solid State Electronics";"1994-2025";"Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +30092;27463;"Gynakologische Praxis";journal;"03418677, 21981701";"Mediengruppe Oberfranken - Fachverlage GmbH & Co. KG";Yes;No;0,105;Q4;5;74;266;1790;4;256;0,03;24,19;51,28;0;Germany;Western Europe;"Mediengruppe Oberfranken - Fachverlage GmbH & Co. KG";"1977-1980, 2002-2026";"Obstetrics and Gynecology (Q4)";"Medicine" +30093;28989;"Hedianzixue Yu Tance Jishu/Nuclear Electronics and Detection Technology";journal;"02580934";"Atomic Energy Press";No;No;0,105;Q4;12;0;68;0;12;68;0,00;0,00;0,00;0;China;Asiatic Region;"Atomic Energy Press";"2001-2022";"Electrical and Electronic Engineering (Q4); Instrumentation (Q4); Nuclear and High Energy Physics (Q4); Radiation (Q4)";"Engineering; Physics and Astronomy" +30094;17700155707;"Homme et la Societe";journal;"00184306, 21010226";"Editions Anthropos";No;No;0,105;Q4;10;0;71;0;1;65;0,03;0,00;0,00;0;France;Western Europe;"Editions Anthropos";"2001-2019, 2022-2024";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +30095;30051;"IAEA Bulletin";trade journal;"00206067";"International Atomic Energy Agency";No;No;0,105;Q4;11;31;134;0;15;55;0,13;0,00;85,71;0;Austria;Western Europe;"International Atomic Energy Agency";"1973-1974, 1982-1991, 1996-1999, 2001-2025";"Nuclear Energy and Engineering (Q4)";"Energy" +30096;21101339730;"Informationen Deutsch als Fremdsprache";journal;"07249616, 25110853";"Walter de Gruyter GmbH";No;No;0,105;Q4;3;39;84;765;10;76;0,05;19,62;73,53;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2021-2026";"Linguistics and Language (Q4)";"Social Sciences" +30097;12754;"International Journal of COMADEM";journal;"13637681";"COMADEM International";No;No;0,105;Q4;14;0;56;0;9;56;0,19;0,00;0,00;0;United Kingdom;Western Europe;"COMADEM International";"2003-2023";"Bioengineering (Q4); Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Safety, Risk, Reliability and Quality (Q4); Signal Processing (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Chemical Engineering; Computer Science; Engineering" +30098;21100805797;"International Journal of Regional and Local History";journal;"20514549, 20514530";"Taylor and Francis Ltd.";No;No;0,105;Q4;4;0;6;0;0;6;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2022";"History (Q4)";"Arts and Humanities" +30099;21100218319;"Japanese Journal of Head and Neck Cancer";journal;"18818382, 13495747";"Japan Society for Head and Neck Cancer";No;No;0,105;Q4;5;21;62;323;1;62;0,00;15,38;17,12;0;Japan;Asiatic Region;"Japan Society for Head and Neck Cancer";"2004-2025";"Oncology (Q4); Otorhinolaryngology (Q4)";"Medicine" +30100;21101146584;"Jesuit Studies";book series;"22143289";"Brill Academic Publishers";No;No;0,105;Q4;5;4;59;768;6;7;0,11;192,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013, 2015-2026";"History (Q4)";"Arts and Humanities" +30101;130122;"Journal fur Gastroenterologische und Hepatologische Erkrankungen";journal;"17286263, 17286271";"Springer";Yes;No;0,105;Q4;5;25;83;456;4;44;0,03;18,24;25,00;0;Austria;Western Europe;"Springer";"2005-2026";"Gastroenterology (Q4); Hepatology (Q4)";"Medicine" +30102;21101170313;"Journal of Abbasid Studies";journal;"22142363, 22142371";"Brill Academic Publishers";No;No;0,105;Q4;3;9;22;634;2;21;0,11;70,44;37,50;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014, 2016, 2019-2026";"History (Q4)";"Arts and Humanities" +30103;21100401013;"Journal of Chinese Military History";journal;"22127453, 22127445";"Brill Academic Publishers";No;No;0,105;Q4;6;5;20;279;5;18;0,27;55,80;20,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30104;21100800043;"Journal of Hospitality Financial Management";journal;"21522790, 10913211";"International Association of Hospitality Financial Management Educators";No;No;0,105;Q4;16;0;17;0;3;15;0,00;0,00;0,00;0;United States;Northern America;"International Association of Hospitality Financial Management Educators";"1997-2022";"Finance (Q4); Strategy and Management (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +30105;21101257866;"Journal of Indentureship and its Legacies";journal;"26342006, 26341999";"Pluto Journals";Yes;Yes;0,105;Q4;2;4;52;17;3;42;0,05;4,25;100,00;0;United Kingdom;Western Europe;"Pluto Journals";"2021-2025";"Linguistics and Language (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30106;27801;"Journal of Maritime Law and Commerce";journal;"21624127, 00222410";"SPB Academic Publishing bv";No;No;0,105;Q4;15;15;9;2138;0;7;0,00;142,53;5,88;0;Netherlands;Western Europe;"SPB Academic Publishing bv";"1979, 1996-2020, 2022-2025";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +30107;4700153513;"Journal of the Polynesian Society";journal;"00324000, 22305955";"University of Auckland";No;No;0,105;Q4;18;11;6;516;0;6;0,00;46,91;46,15;0;New Zealand;Pacific Region;"University of Auckland";"1971-1972, 1977, 1979, 1988, 1996, 2001, 2006-2022, 2024-2025";"Anthropology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30108;21101060491;"Know";journal;"2473599X, 24736007";"University of Chicago Press";No;No;0,105;Q4;7;0;34;0;6;28;0,05;0,00;0,00;0;United States;Northern America;"University of Chicago Press";"2017-2024";"Multidisciplinary (Q4)";"Multidisciplinary" +30109;21100838825;"Lectora";journal;"11365781, 20139470";"Centre for Women and Literature. Gender, sexualities and cultural criticism";Yes;Yes;0,105;Q4;5;0;69;0;10;68;0,14;0,00;0,00;0;Spain;Western Europe;"Centre for Women and Literature. Gender, sexualities and cultural criticism";"2017-2024";"Cultural Studies (Q4); Gender Studies (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30110;21101053583;"Linguistik Aktuell";book series;"01660829";"John Benjamins Publishing Company";No;No;0,105;Q4;6;0;96;0;32;6;0,24;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"1997, 2003, 2006, 2008, 2010-2012, 2016, 2018, 2021-2024";"Linguistics and Language (Q4)";"Social Sciences" +30111;17128;"Louvain Medical";journal;"00246956";"Louvain Medical asbl";No;No;0,105;Q4;8;0;179;0;6;128;0,07;0,00;0,00;0;Belgium;Western Europe;"Louvain Medical asbl";"1973-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +30112;6600153111;"Mass Communication Research";journal;"10161007";"National Chengchi University";Yes;No;0,105;Q4;5;15;45;1008;4;44;0,10;67,20;50,00;0;Taiwan;Asiatic Region;"National Chengchi University";"2007-2026";"Communication (Q4)";"Social Sciences" +30113;21101311284;"MedEdPublish";journal;"23127996";"F1000 Research Ltd";Yes;No;0,105;Q4;1;24;7;657;1;7;0,14;27,38;54,81;0;United Kingdom;Western Europe;"F1000 Research Ltd";"2018, 2020-2021, 2024-2025";"Education (Q4); Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine; Social Sciences" +30114;18468;"Medicus";journal;"1330013X";"PLIVA d.d.";Yes;No;0,105;Q4;8;20;124;554;1;116;0,01;27,70;53,33;0;Croatia;Eastern Europe;"PLIVA d.d.";"2002-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30115;21101123266;"Multinational Finance Journal";journal;"10961879";"Multinational Finance Society";No;No;0,105;Q4;4;0;7;0;0;6;0,00;0,00;0,00;0;Cyprus;Western Europe;"Multinational Finance Society";"2019-2024";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +30116;21101039093;"Nanotechnology in the Life Sciences";book series;"25238027, 25238035";"Springer Science and Business Media Deutschland GmbH";No;No;0,105;Q4;31;119;248;10722;359;6;1,56;90,10;0,00;0;Netherlands;Western Europe;"Springer Science and Business Media Deutschland GmbH";"2018-2026";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science" +30117;18099;"No To Hattatsu";journal;"00290831";"Japanese Society of Child Neurology";No;No;0,105;Q4;14;68;191;733;11;165;0,06;10,78;33,84;0;Japan;Asiatic Region;"Japanese Society of Child Neurology";"1969-2025";"Medicine (miscellaneous) (Q4); Neurology (clinical) (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +30118;21101037327;"Noctua";journal;"22841180";"E-theca OnLineOpenAccess Edizioni";Yes;Yes;0,105;Q4;3;7;47;211;6;44;0,03;30,14;60,00;0;Italy;Western Europe;"E-theca OnLineOpenAccess Edizioni";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); History and Philosophy of Science (Q4); Philosophy (Q4)";"Arts and Humanities" +30119;55140;"Official Publication - EuroSDR";journal;"02570505";"European Spatial Data Research (EuroSDR)";No;No;0,105;Q4;7;1;9;102;0;7;0,00;102,00;50,00;0;Belgium;Western Europe;"European Spatial Data Research (EuroSDR)";"1987-1988, 1991-1992, 1994-1997, 2009-2014, 2016-2017, 2019, 2021, 2023-2025";"Computers in Earth Sciences (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +30120;4100151704;"Ophthalmology in China";journal;"10044469";"";No;No;0,105;Q4;7;31;73;568;6;68;0,09;18,32;41,03;0;China;Asiatic Region;"";"2006-2025";"Ophthalmology (Q4)";"Medicine" +30121;15625;"Paediatria Croatica";journal;"13301403, 1846405X";"Children's University Hospital Zagreb";No;No;0,105;Q4;9;25;56;394;7;53;0,14;15,76;78,05;0;Croatia;Eastern Europe;"Children's University Hospital Zagreb";"1993-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +30122;21101248532;"Philotheos";journal;"26200163, 14513455";"";No;No;0,105;Q4;3;0;6;0;0;6;0,00;0,00;0,00;0;United States;Northern America;"";"2019-2022";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30123;7200153138;"Piel";journal;"15788830, 02139251";"Ediciones Doyma, S.L.";No;No;0,105;Q4;8;194;543;2439;16;537;0,02;12,57;59,17;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"2005-2026";"Dermatology (Q4)";"Medicine" +30124;21100268262;"Prakseologia";journal;"00794872";"Polska Akademia Nauk";No;No;0,105;Q4;5;0;9;0;0;7;0,00;0,00;0,00;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2012-2021, 2023-2024";"Business, Management and Accounting (miscellaneous) (Q4); Philosophy (Q4)";"Arts and Humanities; Business, Management and Accounting" +30125;21101298142;"Proceedings of the IEEE MTT-S International Microwave Workshop Series on Advanced Materials and Processes for RF and THz Applications, IMWS-AMP";journal;"27669564, 26942992";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,105;Q4;1;186;227;1515;14;224;0,06;8,15;34,95;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4); Radiation (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)";"Computer Science; Engineering; Materials Science; Physics and Astronomy" +30126;101060;"Proceedings of the Royal Society of Queensland";journal;"18392547, 0080469X";"Royal Society of Queensland";No;No;0,105;Q4;13;0;19;0;4;15;0,17;0,00;0,00;0;Australia;Pacific Region;"Royal Society of Queensland";"1978, 1982-1983, 1996, 1998-2000, 2002, 2004-2005, 2007-2011, 2013-2018, 2020-2024";"Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Environmental Science" +30127;73212;"Przeglad Pediatryczny";journal;"20835752, 0137723X";"Wydawnictwo Czelej Sp. z o.o.";No;No;0,105;Q4;7;34;118;762;10;103;0,08;22,41;69,47;0;Poland;Eastern Europe;"Wydawnictwo Czelej Sp. z o.o.";"2000-2013, 2018-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +30128;18667;"Psiquiatria Biologica";journal;"15788962, 11345934";"Elsevier Espana S.L.U";No;No;0,105;Q4;10;55;88;934;13;80;0,15;16,98;64,34;0;Spain;Western Europe;"Elsevier Espana S.L.U";"1996-2026";"Psychiatry and Mental Health (Q4)";"Medicine" +30129;25243;"Renewable Resources Journal";journal;"07386532";"Renewable Natural Resources Foundation";Yes;No;0,105;Q4;11;0;27;0;1;25;0,00;0,00;0,00;0;United States;Northern America;"Renewable Natural Resources Foundation";"1993-2011, 2014-2022";"Environmental Science (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy; Environmental Science" +30130;19400157157;"Research in Social Psychology";journal;"09161503";"Japanese Society of Social Psychology";No;No;0,105;Q4;9;12;38;446;2;38;0,06;37,17;44,00;0;Japan;Asiatic Region;"Japanese Society of Social Psychology";"2007-2025";"Social Psychology (Q4)";"Psychology" +30131;21101192892;"Revista Argentina de Reumatologia";journal;"23623675";"Lugones Editorial Seal of Biotecnologica SRL";Yes;Yes;0,105;Q4;4;27;97;888;7;83;0,05;32,89;54,02;0;Argentina;Latin America;"Lugones Editorial Seal of Biotecnologica SRL";"2019-2025";"Health Professions (miscellaneous) (Q4); Rheumatology (Q4)";"Health Professions; Medicine" +30132;21101046689;"Revista de Geomorfologie";journal;"22856773, 14535068";"Romanian Association of Geomorphologists";Yes;Yes;0,105;Q4;3;0;7;0;1;7;0,00;0,00;0,00;0;Romania;Eastern Europe;"Romanian Association of Geomorphologists";"2019-2023";"Computers in Earth Sciences (Q4); Earth-Surface Processes (Q4); Environmental Science (miscellaneous) (Q4); Geology (Q4); Paleontology (Q4)";"Earth and Planetary Sciences; Environmental Science" +30133;21101136672;"Revista de Gestion Publica";journal;"07191839";"Universidad de Valparaiso";No;No;0,105;Q4;3;4;27;172;4;25;0,12;43,00;36,36;0;Chile;Latin America;"Universidad de Valparaiso";"2019-2025";"Accounting (Q4); Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Industrial Relations (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting" +30134;21101259010;"Revista de la Asociacion Colombiana de Dermatologia y Cirugia Dermatologica";journal;"2590843X, 16570448";"";Yes;Yes;0,105;Q4;2;58;123;889;5;91;0,06;15,33;55,40;0;Colombia;Latin America;"";"2020-2026";"Dermatology (Q4); Surgery (Q4)";"Medicine" +30135;21100802701;"Revista de Patologia Respiratoria";journal;"15769895, 2173920X";"Sociedad Madrinela de Neumologia y Cirugia Toracica";Yes;Yes;0,105;Q4;4;28;99;628;6;74;0,07;22,43;48,57;0;Spain;Western Europe;"Sociedad Madrinela de Neumologia y Cirugia Toracica";"2009-2025";"Pulmonary and Respiratory Medicine (Q4)";"Medicine" +30136;21100898685;"Revista Espanola de Filosofia Medieval";journal;"25307878, 11330902";"UCOPress. Editorial Universidad de Cordoba";Yes;Yes;0,105;Q4;4;17;46;785;11;42;0,24;46,18;52,94;0;Spain;Western Europe;"UCOPress. Editorial Universidad de Cordoba";"2018-2025";"History (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30137;21100223518;"Revista Latinoamericana de Quimica";journal;"03705943";"Laboratorios Mixim S.A. de C.V.";No;No;0,105;Q4;10;0;7;0;0;6;0,00;0,00;0,00;0;Mexico;Latin America;"Laboratorios Mixim S.A. de C.V.";"2012-2013, 2018-2019, 2022-2023";"Chemistry (miscellaneous) (Q4)";"Chemistry" +30138;21101077108;"Revue d'Histoire de la Pensee Economique";journal;"24964646, 24958670";"Classiques Garnier";No;No;0,105;Q4;2;0;30;0;2;29;0,00;0,00;0,00;0;France;Western Europe;"Classiques Garnier";"2019-2023";"Economics and Econometrics (Q4); History and Philosophy of Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance" +30139;18287;"Revue Medicale de Bruxelles";journal;"00353639";"Association des Medecins anciens etudiats de l'Universite libre de Bruxelles (A.M.U.B.)";Yes;No;0,105;Q4;14;72;293;1399;14;261;0,04;19,43;51,65;0;Belgium;Western Europe;"Association des Medecins anciens etudiats de l'Universite libre de Bruxelles (A.M.U.B.)";"1980-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30140;21100407317;"Sinica Leidensia";book series;"01699563";"Brill Academic Publishers";No;No;0,105;Q4;12;17;31;3194;2;7;0,06;187,88;28,57;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2021, 2023-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30141;5700162922;"Sistema";journal;"02100223";"Fundacion Sistema";No;No;0,105;Q4;3;0;48;0;5;47;0,13;0,00;0,00;0;Spain;Western Europe;"Fundacion Sistema";"2015-2024";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +30142;21100208016;"Stilt";journal;"07261888";"Australasian Wader Studies Group";No;No;0,105;Q4;8;0;7;0;1;6;0,14;0,00;0,00;0;Australia;Pacific Region;"Australasian Wader Studies Group";"2012-2018, 2020-2021, 2024";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +30143;21101021992;"Storia della Donne";journal;"18267505, 18267513";"Firenze University Press";Yes;Yes;0,105;Q4;1;9;8;275;0;7;0,00;30,56;85,71;0;Italy;Western Europe;"Firenze University Press";"2020-2021, 2024-2025";"Cultural Studies (Q4); Gender Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30144;27890;"Studi Emigrazione";journal;"00392936";"Centro Studi Emigrazione";No;No;0,105;Q4;13;37;129;1321;5;96;0,05;35,70;68,89;0;Italy;Western Europe;"Centro Studi Emigrazione";"1977-2025";"Arts and Humanities (miscellaneous) (Q4); Demography (Q4); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +30145;21100407149;"Studies in Medieval and Reformation Traditions";book series;"15734188";"Brill Academic Publishers";No;No;0,105;Q4;13;12;34;1249;2;7;0,06;104,08;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2026";"Cultural Studies (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30146;21100406839;"Studies on the Texts of the Desert of Judah";book series;"01699962";"Brill Academic Publishers";No;No;0,105;Q4;22;57;77;2882;17;7;0,39;50,56;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2005-2026";"Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30147;21100220124;"Taurus";journal;"15153037";"Ediciones Taurus";No;No;0,105;Q4;3;7;48;111;1;19;0,03;15,86;58,33;0;Argentina;Latin America;"Ediciones Taurus";"2012-2026";"Veterinary (miscellaneous) (Q4)";"Veterinary" +30148;67521;"Textiles South East Asia";trade journal;"17433231";"Textile Media Services Ltd";No;No;0,105;Q4;1;0;8;0;0;7;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Textile Media Services Ltd";"2005-2022";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +30149;21101145395;"Theology and Mission in World Christianity";book series;"24522953";"Brill Academic Publishers";No;No;0,105;Q4;6;30;69;2316;1;6;0,00;77,20;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2026";"Religious Studies (Q4)";"Arts and Humanities" +30150;19700172105;"Tijdschrift voor Bedrijfs- en Verzekeringsgeneeskunde";journal;"18765858, 0929600X";"Bohn Stafleu van Loghum";Yes;No;0,105;Q4;4;101;261;0;6;126;0,01;0,00;63,96;0;Netherlands;Western Europe;"Bohn Stafleu van Loghum";"1993-1996, 2005-2006, 2008-2026";"Health Information Management (Q4); Health Policy (Q4); Health (social science) (Q4)";"Health Professions; Medicine; Social Sciences" +30151;144828;"Transition Studies Review";journal;"16144015, 16144007";"Transition Academia Press";No;No;0,105;Q4;20;0;15;0;2;15;0,00;0,00;0,00;0;Italy;Western Europe;"Transition Academia Press";"2005-2022";"Development (Q4)";"Social Sciences" +30152;21100406988;"Vigiliae Christianae, Supplements";book series;"0920623X";"Brill Academic Publishers";No;No;0,105;Q4;11;20;38;2176;12;7;0,32;108,80;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2021, 2023-2026";"Archeology (arts and humanities) (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30153;19471;"WHO Drug Information";journal;"10109609";"World Health Organization";No;No;0,105;Q4;12;15;14;169;1;11;0,10;11,27;33,33;0;Switzerland;Western Europe;"World Health Organization";"1996-2011, 2013-2025";"Pharmacology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4)";"Medicine" +30154;31602;"Working Paper of the Helen Kellogg Institute for International Studies";journal;"-";"Helen Kellogg Institute";No;No;0,105;Q4;10;0;7;0;0;7;0,00;0,00;0,00;0;United States;Northern America;"Helen Kellogg Institute";"1987-2022, 2024";"Development (Q4); Geography, Planning and Development (Q4)";"Social Sciences" +30155;16200154725;"World of Music";journal;"00438774";"VWB - Verlag für Wissenschaft und Bildung";No;No;0,105;Q4;17;7;41;222;6;40;0,11;31,71;42,86;0;Germany;Western Europe;"VWB - Verlag für Wissenschaft und Bildung";"2002-2010, 2012-2025";"Music (Q4)";"Arts and Humanities" +30156;16100154738;"Zeitschrift der Savigny-Stiftung fur Rechtsgeschichte, Romanistische Abteilung";journal;"03234096, 23044934";"Walter de Gruyter GmbH";No;No;0,105;Q4;10;10;71;4561;6;71;0,06;456,10;20,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1880-1922, 1924-1944, 1947-1948, 1950-2025";"History (Q4); Law (Q4)";"Arts and Humanities; Social Sciences" +30157;21101219670;"De Gruyter Proceedings in Mathematics";conference and proceedings;"29424828, 29424801";"Walter de Gruyter GmbH";No;No;0,105;-;4;80;156;2330;9;140;0,08;29,13;20,59;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2020-2025";"Applied Mathematics";"Mathematics" +30158;21101060885;"GLOCAL Conference Proceedings";conference and proceedings;"27078647";"Global Council on Anthropological Linguistics";No;No;0,105;-;2;0;167;0;2;155;0,02;0,00;0,00;0;United Kingdom;Western Europe;"Global Council on Anthropological Linguistics";"2019-2020, 2022-2024";"Anthropology; Linguistics and Language";"Social Sciences" +30159;21100982280;"International Workshop on System Level Interconnect Prediction, SLIP";conference and proceedings;"15445631";"Association for Computing Machinery";No;No;0,105;-;12;0;8;0;1;7;0,00;0,00;0,00;0;United States;Northern America;"Association for Computing Machinery";"2004-2006, 2015, 2017, 2020-2022";"Applied Mathematics; Computer Science Applications; Electrical and Electronic Engineering; Hardware and Architecture";"Computer Science; Engineering; Mathematics" +30160;27918;"Proceedings - Rapid Excavation and Tunneling Conference";conference and proceedings;"10459065";"Society for Mining, Metallurgy and Exploration";No;No;0,105;-;15;0;100;0;3;98;0,03;0,00;0,00;0;United States;Northern America;"Society for Mining, Metallurgy and Exploration";"1980-1981, 1983, 1987, 1989, 1991, 1993, 1995, 2001, 2003, 2005, 2007, 2009, 2011, 2013, 2015, 2017, 2019, 2021, 2023";"Civil and Structural Engineering; Geotechnical Engineering and Engineering Geology; Mechanical Engineering";"Earth and Planetary Sciences; Engineering" +30161;21100885073;"Proceedings of International Conference on Communications, Electromagnetic and Medical Applications, CEMA";conference and proceedings;"13142100";"Technical University of Sofia,Faculty of Telecommunication Technologies";No;No;0,105;-;2;0;42;0;3;37;0,10;0,00;0,00;0;Bulgaria;Eastern Europe;"Technical University of Sofia,Faculty of Telecommunication Technologies";"2018-2019, 2021-2024";"Computer Networks and Communications; Computer Science Applications; Health Informatics; Medicine (miscellaneous); Radiology, Nuclear Medicine and Imaging; Signal Processing";"Computer Science; Medicine" +30162;21101167538;"Amoenitas";journal;"23849460, 24217360";"Fabrizio Serra Editore";No;No;0,104;Q3;1;0;10;0;0;9;0,00;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2024";"Classics (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Architecture (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Engineering; Social Sciences" +30163;21100401126;"Archives d'Histoire Doctrinale et Litteraire du Moyen-Age";journal;"03735478, 21099529";"Librairie Philosophique J. Vrin";No;No;0,104;Q3;6;0;8;0;1;8;0,13;0,00;0,00;0;France;Western Europe;"Librairie Philosophique J. Vrin";"2011-2013, 2015-2018, 2020-2021, 2024";"Literature and Literary Theory (Q3); Philosophy (Q4)";"Arts and Humanities" +30164;21101132406;"Art and the Public Sphere";journal;"2042793X, 20427948";"Intellect Ltd.";No;No;0,104;Q3;3;0;38;0;8;35;0,09;0,00;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2024";"Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30165;69608;"ARTnews";journal;"00043273";"Artnews LLC";No;No;0,104;Q3;4;0;12;0;0;9;0,00;0,00;0,00;0;United States;Northern America;"Artnews LLC";"1977, 2002-2013, 2017-2022";"Visual Arts and Performing Arts (Q3); Museology (Q4)";"Arts and Humanities" +30166;21100223157;"Brukenthal. Acta Musei";journal;"18422691";"Brukenthal National Museum";No;No;0,104;Q3;7;0;142;0;9;142;0,04;0,00;0,00;0;Romania;Eastern Europe;"Brukenthal National Museum";"2012-2024";"Visual Arts and Performing Arts (Q3); Conservation (Q4); Ecology, Evolution, Behavior and Systematics (Q4); History (Q4); Museology (Q4); Paleontology (Q4)";"Agricultural and Biological Sciences; Arts and Humanities; Earth and Planetary Sciences" +30167;21100938751;"BSAA Arte";journal;"18889751, 25306359";"Ediciones Universidad de Valladolid";Yes;Yes;0,104;Q3;3;16;57;603;4;57;0,13;37,69;43,75;0;Spain;Western Europe;"Ediciones Universidad de Valladolid";"2019-2025";"Visual Arts and Performing Arts (Q3); History (Q4)";"Arts and Humanities" +30168;19700200902;"Building and Landscapes";journal;"19360886, 19346832";"University of Minnesota Press";No;No;0,104;Q3;8;10;30;460;4;18;0,00;46,00;37,50;0;United States;Northern America;"University of Minnesota Press";"2010-2025";"Visual Arts and Performing Arts (Q3); Architecture (Q4); Urban Studies (Q4)";"Arts and Humanities; Engineering; Social Sciences" +30169;21100944445;"Bulletin of the Detroit Institute of Arts";journal;"23275995, 00119636";"University of Chicago Press";No;No;0,104;Q3;1;7;17;86;1;8;0,09;12,29;50,00;0;United States;Northern America;"University of Chicago Press";"2019-2025";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +30170;21101121583;"Classics Ireland";journal;"07919417";"Classical Association of Ireland";No;No;0,104;Q3;2;0;8;0;0;8;0,00;0,00;0,00;0;Ireland;Western Europe;"Classical Association of Ireland";"2019, 2021-2023";"Classics (Q3); Literature and Literary Theory (Q3); Archeology (arts and humanities) (Q4); History (Q4); Linguistics and Language (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30171;21101160583;"Collectanea Philologica";journal;"17330319, 23530901";"Lodz University Press";Yes;Yes;0,104;Q3;2;21;65;881;1;61;0,00;41,95;63,64;0;Poland;Eastern Europe;"Lodz University Press";"2019-2025";"Classics (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30172;21100803568;"Comunicazioni Sociali";journal;"03928667, 18277969";"Vita e Pensiero";No;No;0,104;Q3;6;35;90;1247;20;85;0,12;35,63;59,52;0;Italy;Western Europe;"Vita e Pensiero";"2016-2025";"Visual Arts and Performing Arts (Q3); Communication (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30173;21101089619;"Cubic Journal";journal;"25897101, 25897098";"Jap Sam Books";Yes;Yes;0,104;Q3;3;0;34;0;2;30;0,10;0,00;0,00;0;Netherlands;Western Europe;"Jap Sam Books";"2018-2024";"Visual Arts and Performing Arts (Q3); Architecture (Q4); Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities; Engineering" +30174;21101046179;"Diacritica";journal;"08708967, 21839174";"Universidade do Minho";Yes;Yes;0,104;Q3;4;51;129;1966;8;125;0,05;38,55;57,81;0;Portugal;Western Europe;"Universidade do Minho";"2018-2025";"Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Linguistics and Language (Q4); Music (Q4)";"Arts and Humanities; Social Sciences" +30175;21100463529;"Early Modern French Studies";journal;"20563035, 20563043";"Taylor and Francis Ltd.";No;No;0,104;Q3;6;9;51;590;6;45;0,11;65,56;44,44;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2015-2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30176;21100904229;"Estudios de Teoria Literaria";journal;"23139676";"Universidad Nacional de Mar del Plata";Yes;Yes;0,104;Q3;3;33;138;683;12;131;0,12;20,70;65,63;0;Argentina;Latin America;"Universidad Nacional de Mar del Plata";"2018-2025";"Literature and Literary Theory (Q3); Communication (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30177;20000195090;"Film and History";journal;"15489922, 03603695";"Center for the Study of Film and History";No;No;0,104;Q3;6;9;57;246;2;57;0,03;27,33;44,44;0;United States;Northern America;"Center for the Study of Film and History";"2011-2025";"Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30178;21101158609;"Folklorica";journal;"19200234, 19200242";"Association for Slavic East European and Eurasian Studies";Yes;Yes;0,104;Q3;2;5;13;270;1;11;0,00;54,00;40,00;0;United States;Northern America;"Association for Slavic East European and Eurasian Studies";"2019-2025";"Literature and Literary Theory (Q3); Anthropology (Q4); Cultural Studies (Q4); Linguistics and Language (Q4); Music (Q4)";"Arts and Humanities; Social Sciences" +30179;21100945772;"In Monte Artium";journal;"20313098, 25070312";"OpenEditions Journals";No;No;0,104;Q3;2;3;8;224;1;8;0,13;74,67;25,00;0;France;Western Europe;"OpenEditions Journals";"2019-2021, 2023, 2025";"Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); History (Q4); Library and Information Sciences (Q4); Music (Q4)";"Arts and Humanities; Social Sciences" +30180;16400154754;"Infini";journal;"0754023X";"Editions Gallimard";No;No;0,104;Q3;1;0;8;0;0;8;0,00;0,00;0,00;0;France;Western Europe;"Editions Gallimard";"2002, 2004-2019, 2022";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30181;6000169412;"Journal of the Southwest";journal;"08948410";"University of Arizona";No;No;0,104;Q3;15;25;48;473;5;46;0,11;18,92;50,00;0;United States;Northern America;"University of Arizona";"2001-2025";"Literature and Literary Theory (Q3); Anthropology (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30182;21101033835;"Materia";journal;"15792641, 23853387";"Departament d'Historia de l'Art. Universitat de Barcelona";Yes;Yes;0,104;Q3;2;7;39;387;5;36;0,13;55,29;60,00;0;Spain;Western Europe;"Departament d'Historia de l'Art. Universitat de Barcelona";"2019-2025";"Visual Arts and Performing Arts (Q3); Communication (Q4); Music (Q4)";"Arts and Humanities; Social Sciences" +30183;21101176935;"Mester";journal;"01602764";"UCLA Department of Foreign Languages";No;No;0,104;Q3;1;0;9;0;1;9;0,00;0,00;0,00;0;United States;Northern America;"UCLA Department of Foreign Languages";"2022";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30184;21100236218;"Pallas";journal;"00310387";"Service des publications de l'Universite de Toulouse-Le Mirail";Yes;Yes;0,104;Q3;10;0;83;0;6;81;0,05;0,00;0,00;0;France;Western Europe;"Service des publications de l'Universite de Toulouse-Le Mirail";"2011, 2013-2024";"Classics (Q3)";"Arts and Humanities" +30185;22361;"Print Quarterly";journal;"02658305";"Print Quarterly Publications";No;No;0,104;Q3;9;0;47;0;3;9;0,09;0,00;0,00;0;United Kingdom;Western Europe;"Print Quarterly Publications";"1986, 2002-2024";"Visual Arts and Performing Arts (Q3)";"Arts and Humanities" +30186;21100301416;"Proceedings of the Boston Area Colloquium in Ancient Philosophy";book series;"22134417, 1059986X";"Brill Academic Publishers";No;No;0,104;Q3;11;1;19;3;0;8;0,00;3,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1988, 1991, 1993, 2007-2009, 2011-2021, 2023, 2025-2026";"Classics (Q3); Philosophy (Q4)";"Arts and Humanities" +30187;20000195082;"Publications of the English Goethe Society";journal;"09593683, 17496284";"Maney Publishing";No;No;0,104;Q3;5;13;42;412;4;38;0,06;31,69;54,55;0;United Kingdom;Western Europe;"Maney Publishing";"1990-1993, 2011-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30188;21100320672;"Revista de Estudios Norteamericanos";journal;"22538410, 1133309X";"Departamento de Literatura Espanola-Universidad de Sevilla";Yes;No;0,104;Q3;4;11;35;381;6;33;0,05;34,64;80,00;0;Spain;Western Europe;"Departamento de Literatura Espanola-Universidad de Sevilla";"2012-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30189;22866;"Revue Belge d'Archeologie et d'Histoire de l'Art";journal;"0035077X";"The Royal Academy of Archaeology of Belgium";No;No;0,104;Q3;2;0;9;0;0;9;0,00;0,00;0,00;0;Belgium;Western Europe;"The Royal Academy of Archaeology of Belgium";"1972, 2013-2014, 2016, 2019, 2022";"Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +30190;29393;"Revue de Philologie de Litterature et d Histoire Anciennes";journal;"00351652";"Klincksieck";No;No;0,104;Q3;7;0;8;0;0;8;0,00;0,00;0,00;0;France;Western Europe;"Klincksieck";"1963, 1983-1985, 1987, 1999, 2001-2013, 2015-2017, 2019-2022";"Classics (Q3); Literature and Literary Theory (Q3); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30191;21101168875;"Russian Japanology Review";journal;"26586789, 26586444";"Association of Japanologists";Yes;Yes;0,104;Q3;2;6;36;132;3;36;0,08;22,00;14,29;0;Russian Federation;Eastern Europe;"Association of Japanologists";"2019-2025";"Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); History (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +30192;19700177563;"Scriblerian and the Kit-Cats";journal;"21650624, 0190731X";"Penn State University Press";No;No;0,104;Q3;1;2;14;23;0;9;0,00;11,50;0,00;0;United States;Northern America;"Penn State University Press";"1972, 1975-1977, 1984, 1987, 1991, 2009, 2011-2012, 2016-2022, 2024-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30193;21100258844;"Scripta Classica Israelica";book series;"03344509";"Israel Society for the Promotion of Classical Studies";No;No;0,104;Q3;8;10;26;601;8;24;0,30;60,10;33,33;0;Israel;Middle East;"Israel Society for the Promotion of Classical Studies";"2011, 2014-2025";"Classics (Q3); Literature and Literary Theory (Q3); History (Q4)";"Arts and Humanities" +30194;21100994460;"Studia Rudolphina";journal;"12135372";"Artefactum";No;No;0,104;Q3;2;0;16;0;0;9;0,00;0,00;0,00;0;Czech Republic;Eastern Europe;"Artefactum";"2019-2020, 2022, 2024";"Visual Arts and Performing Arts (Q3); History (Q4)";"Arts and Humanities" +30195;21101303339;"Textyles";journal;"22952667, 07760116";"Ker Editions";No;No;0,104;Q3;1;24;76;309;5;8;0,06;12,88;33,33;0;Belgium;Western Europe;"Ker Editions";"2021-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30196;21101094996;"Vesper";journal;"27047598";"Quodlibet";No;No;0,104;Q3;2;51;155;571;11;152;0,08;11,20;40,00;0;Italy;Western Europe;"Quodlibet";"2019-2025";"Visual Arts and Performing Arts (Q3); Architecture (Q4); Philosophy (Q4)";"Arts and Humanities; Engineering" +30197;16100154753;"Western Humanities Review";journal;"00433845";"University of Utah";No;No;0,104;Q3;6;10;9;37;0;8;0,00;3,70;70,00;0;United States;Northern America;"University of Utah";"1964, 1976, 2002-2021, 2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30198;19600157337;"Acta Comeniana";journal;"02315955";"Academy of Sciences of the Czech Republic";No;No;0,104;Q4;4;0;9;0;1;9;0,00;0,00;0,00;0;Czech Republic;Eastern Europe;"Academy of Sciences of the Czech Republic";"2005, 2007, 2009-2023";"Cultural Studies (Q4); Education (Q4); History (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30199;21100847480;"Acta Neophilologica";journal;"0567784X, 2350417X";"University of Ljubljana Press";Yes;Yes;0,104;Q4;4;17;56;433;7;56;0,14;25,47;55,00;0;Slovenia;Eastern Europe;"University of Ljubljana Press";"2017-2025";"Linguistics and Language (Q4)";"Social Sciences" +30200;4800153107;"Advances in Business Marketing and Purchasing";book series;"10690964, 1875810X";"Emerald Publishing";No;No;0,104;Q4;15;14;26;800;8;20;0,31;57,14;0,00;0;United Kingdom;Western Europe;"Emerald Publishing";"2000, 2002-2004, 2008-2016, 2018-2019, 2023, 2025-2026";"Economics, Econometrics and Finance (miscellaneous) (Q4); Marketing (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +30201;18677;"Advances in Imaging and Electron Physics";book series;"10765670";"Academic Press Inc.";No;No;0,104;Q4;41;16;102;1242;11;9;0,11;77,63;0,00;0;United States;Northern America;"Academic Press Inc.";"1994-2025";"Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Nuclear and High Energy Physics (Q4)";"Engineering; Physics and Astronomy" +30202;21101125590;"Annales de la Faculte de Droit d'Istanbul";journal;"05789745, 26874113";"Istanbul University Press";Yes;Yes;0,104;Q4;2;11;55;979;7;55;0,10;89,00;41,67;0;Turkey;Middle East;"Istanbul University Press";"2019-2025";"Law (Q4)";"Social Sciences" +30203;91878;"Archivos de Neurociencias";journal;"10285938, 29544122";"Instituto Nacional de Neurologia y Neurocirugia Manuel Velasco Suarez";No;No;0,104;Q4;7;27;106;802;10;88;0,03;29,70;43,75;0;Mexico;Latin America;"Instituto Nacional de Neurologia y Neurocirugia Manuel Velasco Suarez";"1999-2025";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +30204;21100212326;"Arqueologia Mexicana";journal;"01888218";"Editorial Raices";No;No;0,104;Q4;6;12;334;56;5;272;0,02;4,67;46,67;0;Mexico;Latin America;"Editorial Raices";"2012-2015, 2018-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +30205;14967;"Asian Biotechnology and Development Review";journal;"09727566";"Research and Information System for Developing Countries";No;No;0,104;Q4;12;1;34;15;9;27;0,24;15,00;50,00;0;India;Asiatic Region;"Research and Information System for Developing Countries";"2003-2025";"Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +30206;7600153122;"Asian Medicine";journal;"15734218, 1573420X";"Brill Academic Publishers";No;No;0,104;Q4;20;12;39;653;9;37;0,26;54,42;45,45;0;Netherlands;Western Europe;"Brill Academic Publishers";"2005-2022, 2024-2025";"Arts and Humanities (miscellaneous) (Q4); Complementary and Alternative Medicine (Q4); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +30207;21100980812;"CERN Yellow Reports: School Proceedings";journal;"25198041, 2519805X";"CERN Publishing";No;No;0,104;Q4;6;19;72;937;3;68;0,04;49,32;36,36;0;Switzerland;Western Europe;"CERN Publishing";"2017-2021, 2024-2025";"Nuclear and High Energy Physics (Q4)";"Physics and Astronomy" +30208;29206;"Chiba Medical Journal";journal;"03035476, 24334235";"Chiba Medical Society";No;No;0,104;Q4;4;7;18;171;3;18;0,08;24,43;30,95;0;Japan;Asiatic Region;"Chiba Medical Society";"1974-1989, 2008-2011, 2013-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30209;14956;"Cocuk Sagligi ve Hastaliklari Dergisi";journal;"00100161";"Turkish National Pediatric Society";No;No;0,104;Q4;15;0;19;0;1;19;0,00;0,00;0,00;0;Turkey;Middle East;"Turkish National Pediatric Society";"1992-2023";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +30210;21100914245;"Communiquer";journal;"23689587";"Consortium Erudit";Yes;Yes;0,104;Q4;3;2;53;119;3;53;0,09;59,50;80,00;0;Canada;Northern America;"Consortium Erudit";"2018-2025";"Communication (Q4); Linguistics and Language (Q4)";"Social Sciences" +30211;25381;"Control Engineering";trade journal;"23737719, 00108049";"CFE Media LLC";No;No;0,104;Q4;9;55;304;0;11;293;0,05;0,00;17,95;0;United States;Northern America;"CFE Media LLC";"1970-2026";"Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Engineering" +30212;13480;"Current Research in Social Psychology";journal;"10887423";"University of Iowa";Yes;No;0,104;Q4;27;1;12;16;2;12;0,13;16,00;66,67;0;United States;Northern America;"University of Iowa";"1996-2018, 2022-2025";"Social Psychology (Q4)";"Psychology" +30213;21101216924;"Ekonomska i Ekohistorija";journal;"18455867, 18490190";"Society for Croatian Economic History and Ecohistory";No;No;0,104;Q4;3;0;15;0;2;15;0,10;0,00;0,00;0;Croatia;Eastern Europe;"Society for Croatian Economic History and Ecohistory";"2020-2023";"History (Q4)";"Arts and Humanities" +30214;21100901833;"Encounters in Theory and History of Education";journal;"25608371";"Queens University";Yes;Yes;0,104;Q4;5;14;30;727;6;29;0,21;51,93;67,86;0;Canada;Northern America;"Queens University";"2010, 2018-2025";"Education (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30215;4400151730;"Evidence-Based Practice";journal;"10954120, 24733717";"Lippincott Williams and Wilkins";No;No;0,104;Q4;4;196;976;499;26;276;0,03;2,55;53,81;0;United States;Northern America;"Lippincott Williams and Wilkins";"2005-2026";"Fundamentals and Skills (Q4)";"Nursing" +30216;22601;"Forbes";journal;"00156914";"Forbes Magazine";No;No;0,104;Q4;7;42;214;0;6;157;0,01;0,00;42,11;0;United States;Northern America;"Forbes Magazine";"1978-1981, 1997, 2002, 2005-2011, 2018-2025";"Finance (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +30217;28463;"General Medicine";journal;"13111817";"Central Medical Library Medical University – Sofia";No;No;0,104;Q4;4;62;175;1868;8;174;0,04;30,13;60,80;0;Bulgaria;Eastern Europe;"Central Medical Library Medical University – Sofia";"2001-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30218;34725;"Geografija v Soli";journal;"13184717";"Geografija v Soli";No;No;0,104;Q4;4;0;67;0;2;61;0,06;0,00;0,00;0;Slovenia;Eastern Europe;"Geografija v Soli";"1993, 1995-1998, 2000-2014, 2016-2024";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +30219;145646;"Gynakologische Endokrinologie";journal;"16102908, 16102894";"Springer Medizin";No;No;0,104;Q4;7;47;152;932;13;108;0,12;19,83;51,81;0;Germany;Western Europe;"Springer Medizin";"2005-2026";"Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4); Reproductive Medicine (Q4)";"Medicine" +30220;21100407477;"Historical Materialism Book Series";book series;"15701522";"Brill Academic Publishers";No;No;0,104;Q4;12;19;225;7047;14;78;0,04;370,89;4,76;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2009, 2011-2026";"History (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30221;21101061459;"International Journal on Consumer Law and Practice";journal;"23472731";"National Law School of India University";No;No;0,104;Q4;3;1;28;26;5;28;0,11;26,00;0,00;0;India;Asiatic Region;"National Law School of India University";"2019-2024";"Law (Q4)";"Social Sciences" +30222;21100407919;"Islamic History and Civilization";book series;"09292403";"Brill Academic Publishers";No;No;0,104;Q4;15;72;290;5020;52;8;0,16;69,72;40,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2008, 2010-2026";"Anthropology (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30223;21100408844;"Islamic Philosophy, Theology and Science: Texts and Studies";book series;"01698729";"Brill Academic Publishers";No;No;0,104;Q4;11;33;61;1320;0;9;0,00;40,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2026";"Cultural Studies (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30224;22404;"JK Practitioner";journal;"09718834";"JK Practitioner";No;No;0,104;Q4;13;31;141;591;12;139;0,14;19,06;35,63;0;India;Asiatic Region;"JK Practitioner";"1997-2008, 2011-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30225;21101276718;"Journal International de Bioethique et d'Ethique des Sciences";journal;"25555111, 26081008";"Editions ESKA";No;No;0,104;Q4;3;0;53;0;7;29;0,17;0,00;0,00;0;France;Western Europe;"Editions ESKA";"2015-2024";"Health Policy (Q4); Health (social science) (Q4); Philosophy (Q4)";"Arts and Humanities; Medicine; Social Sciences" +30226;17068;"Journal Medical Libanais";journal;"00239852";"Lebanese Order of Physicians";No;No;0,104;Q4;24;0;11;0;0;9;0,00;0,00;0,00;0;Lebanon;Middle East;"Lebanese Order of Physicians";"1951-1975, 1980, 1986-1987, 1989, 1991-2022";"Medicine (miscellaneous) (Q4)";"Medicine" +30227;28749;"Journal of B.U.ON.";journal;"11070625";"Zerbinis Publications";No;No;0,104;Q4;44;2;9;63;0;9;0,00;31,50;42,86;0;Greece;Western Europe;"Zerbinis Publications";"1999-2021, 2024-2025";"Cancer Research (Q4); Hematology (Q4); Medicine (miscellaneous) (Q4); Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +30228;21925;"Journal of Japanese Dental Society of Anesthesiology";journal;"03865835";"Japanese Dental Society of Anesthesiology";No;No;0,104;Q4;5;35;89;480;2;89;0,02;13,71;43,65;0;Japan;Asiatic Region;"Japanese Dental Society of Anesthesiology";"1993-2026";"Anesthesiology and Pain Medicine (Q4); Dentistry (miscellaneous) (Q4)";"Dentistry; Medicine" +30229;14000155887;"Journal of Modern Chinese History";journal;"17535662, 17535654";"Routledge";No;No;0,104;Q4;8;11;29;555;4;28;0,07;50,45;55,56;0;United Kingdom;Western Europe;"Routledge";"2007-2023, 2025-2026";"History (Q4)";"Arts and Humanities" +30230;21100835686;"Journal of Structured Finance";journal;"23741325, 15519783";"Portfolio Management Research";No;No;0,104;Q4;7;0;45;0;5;37;0,19;0,00;0,00;0;United States;Northern America;"Portfolio Management Research";"2017-2023";"Finance (Q4)";"Economics, Econometrics and Finance" +30231;21100922614;"Journal of the Civil War Era";journal;"21544727, 21599807";"University of North Carolina Press";No;No;0,104;Q4;6;18;60;723;13;43;0,18;40,17;62,96;0;United States;Northern America;"University of North Carolina Press";"2019-2026";"History (Q4)";"Arts and Humanities" +30232;22718;"Journal of the IEST";journal;"10984321";"Institute of Environmental Sciences and Technology";No;No;0,104;Q4;15;11;8;110;0;8;0,00;10,00;13,16;0;United States;Northern America;"Institute of Environmental Sciences and Technology";"1997-2014, 2016-2022, 2024-2025";"Environmental Chemistry (Q4); Environmental Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering; Environmental Science" +30233;19909;"Journal of the Japan Epilepsy Society";journal;"09120890, 13475509";"Japan Epilepsy Society";No;No;0,104;Q4;5;9;37;351;2;32;0,06;39,00;27,27;0;Japan;Asiatic Region;"Japan Epilepsy Society";"1983-2026";"Neurology (Q4); Neurology (clinical) (Q4)";"Medicine; Neuroscience" +30234;21100832685;"Journal of Validation Technology";journal;"10796630, 21507090";"Institute of Validation Technology";No;No;0,104;Q4;2;0;8;0;1;8;0,00;0,00;0,00;0;United States;Northern America;"Institute of Validation Technology";"2016, 2019-2022";"Biomedical Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering" +30235;17514;"Journal of Water Law";journal;"14785277";"Lawtext Publishing Ltd.";No;No;0,104;Q4;16;0;17;0;2;9;0,12;0,00;0,00;0;United Kingdom;Western Europe;"Lawtext Publishing Ltd.";"2001-2016, 2019-2021, 2023-2024";"Law (Q4); Water Science and Technology (Q4)";"Environmental Science; Social Sciences" +30236;21101046694;"Kartograficke Listy";journal;"13365274, 27298094";"Cartographic Society of the Slovak Republic";No;No;0,104;Q4;3;3;18;81;2;18;0,18;27,00;40,00;0;Slovakia;Eastern Europe;"Cartographic Society of the Slovak Republic";"2019-2025";"Computer Science Applications (Q4); Computers in Earth Sciences (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Earth-Surface Processes (Q4); Geophysics (Q4)";"Computer Science; Earth and Planetary Sciences" +30237;18400156709;"Kuwait Medical Journal";journal;"16078047";"Kuwait Medical Association";No;No;0,104;Q4;12;40;177;827;8;166;0,02;20,68;38,68;0;Kuwait;Middle East;"Kuwait Medical Association";"2007-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30238;23721;"Leuvense Bijdragen";journal;"17831598, 00241482";"Peeters Publishers";No;No;0,104;Q4;7;0;11;0;1;9;0,09;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"1968, 2011-2012, 2016-2017, 2020-2021, 2023";"Linguistics and Language (Q4)";"Social Sciences" +30239;58070;"LIA Today";journal;"26905973, 26905981";"Laser Institute of America";No;No;0,104;Q4;4;4;40;0;0;8;0,00;0,00;0,00;0;United States;Northern America;"Laser Institute of America";"2002-2025";"Atomic and Molecular Physics, and Optics (Q4); Electrical and Electronic Engineering (Q4)";"Engineering; Physics and Astronomy" +30240;21101093600;"Medecine de la Reproduction";journal;"2650698X, 26508427";"John Libbey";No;No;0,104;Q4;5;20;145;647;5;137;0,04;32,35;56,52;0;France;Western Europe;"John Libbey";"2018-2025";"Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +30241;21100230900;"Mediterranee";journal;"00258296, 17608538";"Presses Universitaires de Provence";No;No;0,104;Q4;13;8;12;411;1;12;0,00;51,38;50,00;0;France;Western Europe;"Presses Universitaires de Provence";"2011, 2013-2018, 2020-2022, 2025";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Earth and Planetary Sciences; Social Sciences" +30242;130106;"Medizinrecht";journal;"14338629, 07238886";"Springer Verlag";No;No;0,104;Q4;8;172;392;0;21;160;0,07;0,00;35,26;0;Germany;Western Europe;"Springer Verlag";"1990, 1992, 2004-2026";"Health Policy (Q4); Issues, Ethics and Legal Aspects (Q4)";"Medicine; Nursing" +30243;16463;"Melliand International";trade journal;"09479163";"IBP - International Business Press Publishers";No;No;0,104;Q4;14;69;154;237;4;149;0,00;3,43;20,95;0;United States;Northern America;"IBP - International Business Press Publishers";"1995-2015, 2017-2025";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)";"Business, Management and Accounting; Engineering; Materials Science" +30244;24760;"Monumenta Nipponica";journal;"00270741, 18801390";"Sophia University";No;No;0,104;Q4;14;3;26;268;1;26;0,05;89,33;100,00;0;Japan;Asiatic Region;"Sophia University";"1979, 2001-2025";"Anthropology (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30245;36252;"Neurologia, Neurocirugia y Psiquiatria";journal;"00283851";"Sociedad Mexicana de Neurologia y Psiquiatria";No;No;0,104;Q4;3;0;55;0;5;43;0,10;0,00;0,00;0;Mexico;Latin America;"Sociedad Mexicana de Neurologia y Psiquiatria";"1969-1979, 2008-2011, 2017-2023";"Clinical Psychology (Q4); Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience; Psychology" +30246;21753;"New Scientist";journal;"02624079";"Reed Business Information Ltd";Yes;No;0,104;Q4;20;243;706;0;41;558;0,04;0,00;41,88;0;United Kingdom;Western Europe;"Reed Business Information Ltd";"1973-2026";"Multidisciplinary (Q4)";"Multidisciplinary" +30247;23642;"Oregon Historical Quarterly";journal;"00304727";"Oregon Historical Society";No;No;0,104;Q4;10;20;94;597;10;81;0,13;29,85;42,86;0;United States;Northern America;"Oregon Historical Society";"1968, 1970, 1974, 1979, 1983, 2000, 2002-2025";"History (Q4)";"Arts and Humanities" +30248;21100837465;"Pakistan Journal of Engineering and Applied Sciences";journal;"19951302, 24150584";"University of Engineering and Technology, Lahore";Yes;No;0,104;Q4;7;9;30;237;4;30;0,11;26,33;9,38;0;Pakistan;Asiatic Region;"University of Engineering and Technology, Lahore";"2017-2023, 2025";"Chemical Engineering (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Environmental Engineering (Q4); Materials Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Water Science and Technology (Q4)";"Chemical Engineering; Computer Science; Engineering; Environmental Science; Materials Science; Mathematics" +30249;19700174947;"Pakistan Paediatric Journal";journal;"03044904";"Pakistan Paediatric Association";No;No;0,104;Q4;7;0;217;0;8;207;0,04;0,00;0,00;0;Pakistan;Asiatic Region;"Pakistan Paediatric Association";"2007-2024";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +30250;37052;"Papers and Proceedings of the Royal Society of Tasmania";journal;"00804703";"Royal Society of Tasmania";No;No;0,104;Q4;14;0;11;0;1;9;0,09;0,00;0,00;0;Australia;Pacific Region;"Royal Society of Tasmania";"1982-1997, 2009-2011, 2015-2021, 2023";"Multidisciplinary (Q4)";"Multidisciplinary" +30251;21100244945;"Perfect Beat";journal;"18360343, 10382909";"Equinox Publishing Ltd";No;No;0,104;Q4;12;0;11;0;0;9;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"1992-2000, 2007-2008, 2012-2018, 2020-2022, 2024";"Music (Q4)";"Arts and Humanities" +30252;21100786380;"Perspectives on Federalism";journal;"20365438";"Centro Studi Sul Federalismo";Yes;Yes;0,104;Q4;8;6;42;463;5;40;0,10;77,17;28,57;0;Italy;Western Europe;"Centro Studi Sul Federalismo";"2016-2026";"Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30253;6500153249;"PIDE Working Papers";journal;"00788228";"Pakistan Institute of Development Economics";No;No;0,104;Q4;8;11;82;105;2;71;0,03;9,55;0,00;0;Pakistan;Asiatic Region;"Pakistan Institute of Development Economics";"2000-2001, 2003, 2005-2025";"Development (Q4); Geography, Planning and Development (Q4)";"Social Sciences" +30254;21101039142;"Prudentia Iuris";journal;"25249525, 03262774";"Pontificia Universidad Catolica Argentina";Yes;Yes;0,104;Q4;2;27;84;1011;6;70;0,07;37,44;38,46;0;Argentina;Latin America;"Pontificia Universidad Catolica Argentina";"2019-2025";"Law (Q4)";"Social Sciences" +30255;21100862891;"Quaestio";journal;"22959033, 13792547";"Brepols Publishers";No;No;0,104;Q4;4;1;81;7;1;78;0,02;7,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2017-2025";"Philosophy (Q4)";"Arts and Humanities" +30256;22782;"Reliable Computing";journal;"13853139, 15731340";"Springer Netherlands";No;No;0,104;Q4;36;0;8;0;0;8;0,00;0,00;0,00;0;Netherlands;Western Europe;"Springer Netherlands";"1995-2008, 2010-2018, 2021-2022, 2024";"Applied Mathematics (Q4); Computational Mathematics (Q4); Software (Q4)";"Computer Science; Mathematics" +30257;80750;"Research Report ARR";journal;"01580728";"ARRB Transport Research Ltd.";No;No;0,104;Q4;8;0;8;0;0;8;0,00;0,00;0,00;0;Australia;Pacific Region;"ARRB Transport Research Ltd.";"1995-2002, 2005-2011, 2013, 2015-2016, 2022";"Civil and Structural Engineering (Q4); Transportation (Q4)";"Engineering; Social Sciences" +30258;68289;"Revue du Nord";journal;"00352624";"Universite de Lille III (Charles de Gaulle)";No;No;0,104;Q4;8;0;108;0;1;105;0,01;0,00;0,00;0;France;Western Europe;"Universite de Lille III (Charles de Gaulle)";"1969-1970, 1972, 1974, 1977-1979, 1981-1985, 1988, 1999, 2001-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30259;19700166615;"Revue du Rhumatisme Monographies";journal;"22120920, 18786227";"Elsevier Masson s.r.l.";No;No;0,104;Q4;7;0;53;0;8;50;0,00;0,00;0,00;0;France;Western Europe;"Elsevier Masson s.r.l.";"2010-2022";"Rheumatology (Q4)";"Medicine" +30260;21101039064;"Revue Francaise d'Ethique Appliquee";journal;"24945757, 24270687";"ERES";No;No;0,104;Q4;2;0;53;0;4;49;0,12;0,00;0,00;0;France;Western Europe;"ERES";"2019-2023";"Philosophy (Q4)";"Arts and Humanities" +30261;27129;"Revue Internationale de Philosophie";journal;"00488143";"Universa Press";No;No;0,104;Q4;15;0;52;0;3;46;0,06;0,00;0,00;0;Belgium;Western Europe;"Universa Press";"1983, 2002-2024";"Philosophy (Q4)";"Arts and Humanities" +30262;21100241665;"RIG Kulturhistorisk Tidskrift";journal;"00355267";"Foreningen for Svensk Kulturhistoria";Yes;No;0,104;Q4;3;7;18;491;2;18;0,13;70,14;50,00;0;Sweden;Western Europe;"Foreningen for Svensk Kulturhistoria";"2011-2012, 2014-2025";"Anthropology (Q4); Cultural Studies (Q4)";"Social Sciences" +30263;4100151617;"Salud(i)Ciencia";journal;"16678990, 16678982";"Sociedad Iberoamericana de Informacion Cientifica";Yes;No;0,104;Q4;6;12;90;221;7;60;0,02;18,42;40,91;0;Argentina;Latin America;"Sociedad Iberoamericana de Informacion Cientifica";"2005-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30264;17140;"Scandia";journal;"00365483";"Statens Humanistiska Forskningsrad";Yes;No;0,104;Q4;6;16;107;1312;12;101;0,13;82,00;60,00;0;Sweden;Western Europe;"Statens Humanistiska Forskningsrad";"1976, 1980-1982, 2001, 2008-2025";"History (Q4)";"Arts and Humanities" +30265;14421;"Seimitsu Kogaku Kaishi/Journal of the Japan Society for Precision Engineering";journal;"09120289, 1882675X";"Japan Society for Precision Engineering";No;No;0,104;Q4;21;154;463;2009;21;403;0,05;13,05;8,92;0;Japan;Asiatic Region;"Japan Society for Precision Engineering";"1979-2026";"Mechanical Engineering (Q4)";"Engineering" +30266;21101196819;"Simone de Beauvoir Studies";journal;"25897616, 10632042";"Brill Academic Publishers";No;No;0,104;Q4;6;15;72;1020;5;53;0,04;68,00;91,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"1983-1984, 1986-1997, 1999-2012, 2014, 2019-2025";"Arts and Humanities (miscellaneous) (Q4); Gender Studies (Q4); History (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30267;21100872188;"Situations";journal;"22887822, 22881204";"Yonsei Institute for English Studies";No;No;0,104;Q4;6;10;26;442;1;23;0,06;44,20;57,14;0;South Korea;Asiatic Region;"Yonsei Institute for English Studies";"2018-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30268;5800207921;"Slavica Slovaca";journal;"00376787, 13362364";"Jan Stanislav Institute of Slavistics, Slovak Committee of Slavists";Yes;No;0,104;Q4;5;10;142;136;8;142;0,06;13,60;63,64;0;Slovakia;Eastern Europe;"Jan Stanislav Institute of Slavistics, Slovak Committee of Slavists";"2011-2025";"Anthropology (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30269;5600152896;"Sociologia e Ricerca Sociale";journal;"19718446, 11211148";"FrancoAngeli";No;No;0,104;Q4;5;0;73;0;4;73;0,07;0,00;0,00;0;Italy;Western Europe;"FrancoAngeli";"2016-2024";"Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30270;17386;"Sociological Theory and Methods";journal;"09131442";"Japanese Association for Mathematical Sociology";No;No;0,104;Q4;9;8;57;151;5;49;0,03;18,88;71,43;0;Japan;Asiatic Region;"Japanese Association for Mathematical Sociology";"1986-1987, 1989-1994, 1996-2025";"Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30271;21100928822;"Spermova";journal;"22239375, 23084928";"Asociacion Peruana de Reprouduccion Animal";Yes;Yes;0,104;Q4;4;0;26;0;3;26;0,00;0,00;0,00;0;Peru;Latin America;"Asociacion Peruana de Reprouduccion Animal";"2019-2022";"Animal Science and Zoology (Q4); Developmental Biology (Q4); Veterinary (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Veterinary" +30272;21101072520;"Strata";journal;"26334216, 20427867";"The Anglo-Israel Archaeological Society";No;No;0,104;Q4;11;0;9;0;0;8;0,00;0,00;0,00;0;United Kingdom;Western Europe;"The Anglo-Israel Archaeological Society";"2009-2020, 2022-2023";"Education (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30273;21101089092;"Studi Kantiani";journal;"11234938, 17241812";"Fabrizio Serra Editore Srl";No;No;0,104;Q4;3;0;38;0;3;38;0,08;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2024";"Philosophy (Q4)";"Arts and Humanities" +30274;21101000286;"Studia Ceranea";journal;"24498378, 2084140X";"Lodz University";Yes;Yes;0,104;Q4;7;0;97;0;7;97;0,02;0,00;0,00;0;Poland;Eastern Europe;"Lodz University";"2011-2024";"Cultural Studies (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30275;21100407285;"Studies in the History of Christian Traditions";book series;"15735664";"Brill Academic Publishers";No;No;0,104;Q4;7;1;59;428;3;9;0,05;428,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2017, 2019-2025";"Cultural Studies (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30276;21100305363;"Tidskriftet Antropologi";book series;"09063021";"Department of Anthropology, University of Copenhagen";No;No;0,104;Q4;5;23;61;530;5;25;0,08;23,04;0,00;0;Denmark;Western Europe;"Department of Anthropology, University of Copenhagen";"2009, 2011-2025";"Anthropology (Q4)";"Social Sciences" +30277;5700181417;"Tijdschrift voor Filosofie";journal;"1370575X, 20318952";"Peeters Publishers";No;No;0,104;Q4;7;0;73;0;4;72;0,02;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"2002-2024";"Philosophy (Q4)";"Arts and Humanities" +30278;19700182618;"Vakcinologie";journal;"18023150";"EEZY Publishing, s.r.o.";No;No;0,104;Q4;4;9;84;228;1;69;0,02;25,33;44,83;0;Czech Republic;Eastern Europe;"EEZY Publishing, s.r.o.";"2010-2025";"Immunology (Q4); Infectious Diseases (Q4); Parasitology (Q4)";"Immunology and Microbiology; Medicine" +30279;21100920870;"Verwaltung";journal;"18655211, 00424498";"Duncker und Humblot GmbH";No;No;0,104;Q4;3;11;50;1332;7;49;0,12;121,09;28,57;0;Germany;Western Europe;"Duncker und Humblot GmbH";"2016-2026";"Law (Q4); Public Administration (Q4)";"Social Sciences" +30280;21101021797;"Vulcan";journal;"22134603, 2213459X";"Brill Academic Publishers";No;No;0,104;Q4;5;0;10;0;0;9;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2016, 2018, 2020-2022";"History (Q4)";"Arts and Humanities" +30281;21101163298;"Women, Gender, and Families of Color";journal;"23260947, 23260939";"University of Illinois Press";No;No;0,104;Q4;5;0;41;0;5;39;0,06;0,00;0,00;0;United States;Northern America;"University of Illinois Press";"2019-2024";"Cultural Studies (Q4); Gender Studies (Q4); History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30282;18249;"World of Mining - Surface and Underground";journal;"16132408";"GDMB Gesellschaft fur Bergbau, Metallurgie, Rohstoff- und Umwelttechnik e.V.";No;No;0,104;Q4;10;14;68;102;3;53;0,02;7,29;14,29;0;Germany;Western Europe;"GDMB Gesellschaft fur Bergbau, Metallurgie, Rohstoff- und Umwelttechnik e.V.";"2004-2025";"Geotechnical Engineering and Engineering Geology (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Earth and Planetary Sciences" +30283;21101178251;"Yearbook of Islamic and Middle Eastern Law";book series;"13842935, 22112987";"Brill Nijhoff";No;No;0,104;Q4;8;0;20;0;2;19;0,00;0,00;0,00;0;Netherlands;Western Europe;"Brill Nijhoff";"1996-1998, 2000-2002, 2004, 2006-2007, 2009-2012, 2015, 2017, 2019, 2021-2022";"Law (Q4)";"Social Sciences" +30284;12200154728;"Yingxiang Kexue yu Guanghuaxue/Imaging Science and Photochemistry";journal;"16740475";"Science Press";No;No;0,104;Q4;10;0;386;0;34;386;0,08;0,00;0,00;0;China;Asiatic Region;"Science Press";"2008-2024";"Chemistry (miscellaneous) (Q4); Media Technology (Q4)";"Chemistry; Engineering" +30285;21100244642;"Bled Workshops in Physics";conference and proceedings;"15804992";"DMFA zaloznistvo";No;No;0,104;-;11;0;67;0;1;60;0,02;0,00;0,00;0;Slovenia;Eastern Europe;"DMFA zaloznistvo";"1999-2024";"Atomic and Molecular Physics, and Optics; Modeling and Simulation; Nuclear and High Energy Physics";"Mathematics; Physics and Astronomy" +30286;21101138614;"Convegno Nazionale di Bioingegneria";conference and proceedings;"27242129";"Patron Editore S.r.l.";No;No;0,104;-;4;0;299;0;18;298;0,06;0,00;0,00;0;Italy;Western Europe;"Patron Editore S.r.l.";"2020, 2023";"Biomedical Engineering";"Engineering" +30287;21100298054;"IEEE International Conference on Adaptive Science and Technology, ICAST";conference and proceedings;"23269413, 23269448";"IEEE Computer Society";No;No;0,104;-;12;0;57;0;28;55;0,49;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"2013, 2015, 2018, 2021, 2024";"Communication; Computer Networks and Communications; Electrical and Electronic Engineering; Information Systems; Software";"Computer Science; Engineering; Social Sciences" +30288;17262;"IEEE International Conference on Plasma Science";conference and proceedings;"07309244";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,104;-;11;0;373;0;18;369;0,06;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"1994, 1996, 1998-2004, 2009, 2018, 2021-2024";"Atomic and Molecular Physics, and Optics; Condensed Matter Physics; Electrical and Electronic Engineering";"Engineering; Physics and Astronomy" +30289;24679;"Proceedings of Symposia in Applied Mathematics";conference and proceedings;"01607634, 23247088";"American Mathematical Society";No;No;0,104;-;7;8;11;545;0;9;0,00;68,13;54,55;0;United States;Northern America;"American Mathematical Society";"1983, 1985, 2018, 2020-2021, 2023, 2025";"Applied Mathematics";"Mathematics" +30290;21100220482;"Proceedings of the Information Systems Education Conference, ISECON";conference and proceedings;"21671435";"Foundation for Information Technology Education";No;No;0,104;-;9;0;59;0;3;54;0,08;0,00;0,00;0;United States;Northern America;"Foundation for Information Technology Education";"2006-2009, 2012, 2019-2024";"Education; Information Systems; Software";"Computer Science; Social Sciences" +30291;19290;"Proceedings of the International Workshop on Rapid System Prototyping";conference and proceedings;"10746005";"IEEE Computer Society";No;No;0,104;-;22;0;10;0;5;9;0,50;0,00;0,00;0;United States;Northern America;"IEEE Computer Society";"1991-1993, 1995-2007, 2009-2011, 2019-2020, 2024";"Computer Science (miscellaneous)";"Computer Science" +30292;21101012346;"Ad Limina";journal;"2171620X, 26595885";"Xunta de Galicia";Yes;Yes;0,103;Q3;5;9;49;518;6;46;0,18;57,56;62,50;0;Spain;Western Europe;"Xunta de Galicia";"2010-2025";"Literature and Literary Theory (Q3); Anthropology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Museology (Q4); Philosophy (Q4); Religious Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30293;5600157032;"Australian Slavonic and East European Studies";journal;"08188149";"University of Queensland Press";Yes;No;0,103;Q3;5;3;12;131;0;12;0,00;43,67;60,00;0;Australia;Pacific Region;"University of Queensland Press";"2013-2017, 2020-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Sociology and Political Science (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30294;21100915858;"British and American Studies";journal;"24577715, 12243086";"Diacritic";Yes;Yes;0,103;Q3;3;27;85;571;11;85;0,10;21,15;65,52;0;Romania;Eastern Europe;"Diacritic";"2018-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30295;5600156880;"Critical Quarterly";journal;"00111562, 14678705";"Wiley-Blackwell";No;No;0,103;Q3;26;49;138;0;13;110;0,04;0,00;53,49;0;United States;Northern America;"Wiley-Blackwell";"1959-2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30296;21101371013;"Cuadernos de Teologia";journal;"07198175";"Universidad Catolica del Norte";Yes;No;0,103;Q3;1;12;36;495;1;36;0,00;41,25;21,43;0;Chile;Latin America;"Universidad Catolica del Norte";"2021-2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30297;5800210474;"English";journal;"00138215, 17561124";"Oxford University Press";No;No;0,103;Q3;8;4;67;238;8;62;0,11;59,50;25,00;0;United Kingdom;Western Europe;"Oxford University Press";"2003-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30298;16000154789;"Exemplaria";journal;"10412573, 17533074";"Maney Publishing";No;No;0,103;Q3;14;16;64;885;13;59;0,20;55,31;50,00;0;United Kingdom;Western Europe;"Maney Publishing";"1989-1995, 2002-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30299;21100936713;"Manuscript Studies";journal;"23801190, 23815329";"University of Pennsylvania Press";Yes;No;0,103;Q3;7;15;94;1030;15;93;0,18;68,67;55,56;0;United States;Northern America;"University of Pennsylvania Press";"2016-2025";"Literature and Literary Theory (Q3); Conservation (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +30300;21100407217;"Mnemosyne, Supplements";book series;"01698958";"Brill Academic Publishers";No;No;0,103;Q3;28;27;238;4955;49;10;0,15;183,52;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2026";"Classics (Q3); Literature and Literary Theory (Q3); Archeology (arts and humanities) (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30301;5700155269;"Papers on Language and Literature";journal;"00311294";"Southern Illinois University Press";No;No;0,103;Q3;11;6;11;198;1;11;0,00;33,00;50,00;0;United States;Northern America;"Southern Illinois University Press";"2002-2022, 2024-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30302;17700154926;"Peritia";journal;"03321592";"Brepols Publishers";No;No;0,103;Q3;12;0;43;0;4;43;0,06;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2002-2003, 2005, 2008, 2010-2011, 2014-2018, 2020-2024";"Literature and Literary Theory (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Linguistics and Language (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30303;21101250414;"Phasis: Greek and Roman Studies";journal;"15121046, 23468459";"";No;No;0,103;Q3;1;0;11;0;1;11;0,13;0,00;0,00;0;Georgia;Eastern Europe;"";"2020-2024";"Classics (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30304;16400154748;"Ploughshares";journal;"00484474, 21620903";"Ploughshares";No;No;0,103;Q3;3;67;185;10;1;151;0,01;0,15;60,78;0;United States;Northern America;"Ploughshares";"2002-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30305;21100941617;"Poligrafi";journal;"13188828, 22322833";"Scientific Publishing House Annales ZRS Koper";No;No;0,103;Q3;3;20;56;1062;7;48;0,09;53,10;35,29;0;Slovenia;Eastern Europe;"Scientific Publishing House Annales ZRS Koper";"2019-2025";"Literature and Literary Theory (Q3); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30306;21101171603;"Poljarnyj Vestnik";journal;"18909671";"Septentrio Academic Publishing";Yes;Yes;0,103;Q3;1;3;12;85;1;12;0,00;28,33;66,67;0;Norway;Western Europe;"Septentrio Academic Publishing";"2019-2025";"Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30307;16200154724;"Scandinavica";journal;"00365653, 27540804";"Norvik Press";No;No;0,103;Q3;4;2;12;65;1;12;0,10;32,50;50,00;0;United Kingdom;Western Europe;"Norvik Press";"2002-2020, 2022-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30308;19700187618;"Storytelling, Self, Society";journal;"15505340, 19320280";"Wayne State University Press";No;No;0,103;Q3;10;0;23;0;5;22;0,00;0,00;0,00;0;United States;Northern America;"Wayne State University Press";"2010-2014, 2017-2023";"Literature and Literary Theory (Q3); Anthropology (Q4); Archeology (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30309;21101088442;"Studi Rinascimentali";journal;"17246164, 18241948";"Fabrizio Serra Editore Srl";No;No;0,103;Q3;2;11;13;196;0;12;0,00;17,82;44,44;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2025";"Classics (Q3); Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30310;21101079133;"Studia Litteraria et Historica";journal;"22997571";"Polish Academy of Sciences, Institute of Slavic Studies";Yes;Yes;0,103;Q3;3;0;20;0;2;20;0,15;0,00;0,00;0;Poland;Eastern Europe;"Polish Academy of Sciences, Institute of Slavic Studies";"2019-2024";"Literature and Literary Theory (Q3); Anthropology (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30311;21101193871;"Tipofilologia";journal;"20353065, 19719086";"Fabrizio Serra Editore";No;No;0,103;Q3;1;0;12;0;1;12;0,11;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2022-2024";"Classics (Q3); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30312;5800209484;"Transactions of the American Philological Association";journal;"03605949, 15330699";"Johns Hopkins University Press";No;No;0,103;Q3;32;0;11;0;5;11;0,00;0,00;0,00;0;United States;Northern America;"Johns Hopkins University Press";"2002-2022";"Classics (Q3); Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30313;21100939717;"Wellsian";journal;"02631776";"The H. G. Wells Society";No;No;0,103;Q3;1;8;17;140;0;12;0,00;17,50;25,00;0;Poland;Eastern Europe;"The H. G. Wells Society";"2019-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30314;21101219681;"Zbornik Radova Filozofskog Fakulteta u Splitu";journal;"24595128, 18469426";"Filozofski Fakultet, Sveuciliste u Splitu";Yes;Yes;0,103;Q3;1;11;37;435;2;32;0,09;39,55;66,67;0;Croatia;Eastern Europe;"Filozofski Fakultet, Sveuciliste u Splitu";"2021-2025";"Literature and Literary Theory (Q3); History (Q4); Linguistics and Language (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30315;19600157206;"Acta Medica Saliniana";journal;"0350364X, 18403956";"University Clinical Center Tuzla";Yes;No;0,103;Q4;6;22;55;544;3;54;0,07;24,73;54,55;0;Bosnia and Herzegovina;Eastern Europe;"University Clinical Center Tuzla";"2009-2012, 2016-2019, 2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30316;21100831809;"Actual Problems of Theory and History of Art";journal;"23122129";"Saint Petersburg State University";No;No;0,103;Q4;6;0;199;0;8;198;0,03;0,00;0,00;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2011-2024";"Conservation (Q4); History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30317;19900192604;"Adolescencia e Saude";journal;"16799941, 21775281";"Nucleo de Estudos da Saude do Adolescente";No;Yes;0,103;Q4;6;33;11;804;1;11;0,09;24,36;54,29;0;Brazil;Latin America;"Nucleo de Estudos da Saude do Adolescente";"2012-2020, 2023-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +30318;15294;"Advances in Textiles Technology";trade journal;"14720256";"Boughton Technical Media";No;No;0,103;Q4;2;0;97;0;1;55;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Boughton Technical Media";"2001-2011, 2013-2014, 2021-2024";"Polymers and Plastics (Q4)";"Materials Science" +30319;21100197336;"Agricultural Commodities";trade journal;"18395627, 18395619";"Australian Bureau of Agricultural and Resource Economics";No;No;0,103;Q4;14;35;78;0;4;78;0,04;0,00;47,06;0;Australia;Pacific Region;"Australian Bureau of Agricultural and Resource Economics";"2011-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Business and International Management (Q4)";"Agricultural and Biological Sciences; Business, Management and Accounting" +30320;15600154702;"Alpha";journal;"07182201, 07164254";"Universidad de los Lagos";Yes;Yes;0,103;Q4;14;0;88;0;7;73;0,08;0,00;0,00;0;Chile;Latin America;"Universidad de los Lagos";"2008-2024";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +30321;6000152720;"American Art";journal;"15496503, 10739300";"University of Chicago Press";No;No;0,103;Q4;13;17;59;552;7;49;0,05;32,47;66,67;0;United States;Northern America;"University of Chicago Press";"1996-2025";"Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30322;21101185304;"Aniki: Portuguese Journal of the Moving Image";journal;"21831750";"Association of Moving Image Researchers (AIM)";Yes;Yes;0,103;Q4;2;21;52;470;8;48;0,15;22,38;42,86;0;Portugal;Western Europe;"Association of Moving Image Researchers (AIM)";"2023-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30323;21101022744;"Annali dell'Istituto Storico Itali-Germanico in Trento";journal;"26122251, 03920011";"Societa Editrice Il Mulino";No;No;0,103;Q4;3;22;52;1536;3;48;0,03;69,82;47,62;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2019-2025";"History (Q4)";"Arts and Humanities" +30324;21101142661;"Archaeologiae";journal;"17242274, 17235804";"Fabrizio Serra Editore Srl";No;No;0,103;Q4;1;2;15;140;1;10;0,00;70,00;25,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30325;16100154711;"Archiv fur Liturgiewissenschaft";journal;"00666386";"Academic Press Fribourg";No;No;0,103;Q4;6;0;11;0;0;10;0,00;0,00;0,00;0;Switzerland;Western Europe;"Academic Press Fribourg";"2001, 2003-2007, 2009-2011, 2014, 2016, 2018-2020, 2022";"Religious Studies (Q4)";"Arts and Humanities" +30326;21101026993;"ARYS. Antiguedad, Religiones y Sociedades";journal;"1575166X, 21736847";"Universidad Carlos III de Madrid";Yes;Yes;0,103;Q4;4;17;109;1180;2;108;0,02;69,41;48,28;0;Spain;Western Europe;"Universidad Carlos III de Madrid";"2019-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30327;19700174886;"Arzneimitteltherapie";journal;"07236913";"Wissenschaftliche Verlagsgesellschaft mbH";Yes;No;0,103;Q4;7;82;352;604;3;191;0,01;7,37;72,97;0;Germany;Western Europe;"Wissenschaftliche Verlagsgesellschaft mbH";"2008-2026";"Pharmacology (medical) (Q4); Pharmacology (nursing) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Medicine; Nursing; Pharmacology, Toxicology and Pharmaceutics" +30328;14668;"ATIP. Association Technique de L'Industrie Papetiere";trade journal;"09977554";"Association Technique de l'Industrie Papetiere";No;No;0,103;Q4;7;3;10;0;0;10;0,00;0,00;33,33;0;France;Western Europe;"Association Technique de l'Industrie Papetiere";"1996-2021, 2024-2025";"Media Technology (Q4)";"Engineering" +30329;16400154722;"Australasian Drama Studies";journal;"2209640X, 08104123";"";No;No;0,103;Q4;6;23;66;556;13;36;0,16;24,17;62,79;0;Australia;Pacific Region;"";"2002-2004, 2009-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30330;15666;"Banking Law Journal";journal;"00055506";"Sheshunoff Information Services";No;No;0,103;Q4;7;15;41;386;5;35;0,17;25,73;27,59;0;United States;Northern America;"Sheshunoff Information Services";"1996-2012, 2018-2023, 2025";"Business, Management and Accounting (miscellaneous) (Q4); Finance (Q4); Law (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +30331;21101152879;"Belarusian Folklore: Data and Research";journal;"24112763, 27903559";"Belaruskaya Navuka";No;No;0,103;Q4;1;10;20;397;2;20;0,10;39,70;71,43;0;Belarus;Eastern Europe;"Belaruskaya Navuka";"2023-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Music (Q4)";"Arts and Humanities" +30332;21100897266;"Bibliothecae.it";journal;"22807934, 22839364";"Universita di Bologna, Dipartimento di Beni Culturali, Alma Mater Studiorum";Yes;Yes;0,103;Q4;4;19;107;615;11;98;0,10;32,37;64,71;0;Italy;Western Europe;"Universita di Bologna, Dipartimento di Beni Culturali, Alma Mater Studiorum";"2018-2025";"History (Q4); Information Systems (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Computer Science; Social Sciences" +30333;21100933253;"Biblos";journal;"21837139, 08704112";"University of Coimbra";Yes;Yes;0,103;Q4;1;23;56;518;4;54;0,04;22,52;81,48;0;Portugal;Western Europe;"University of Coimbra";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30334;21100857891;"Bohemistyka";journal;"16429893";"Polska Akademia Nauk";Yes;Yes;0,103;Q4;3;11;120;253;10;119;0,13;23,00;18,18;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2017-2025";"Electrical and Electronic Engineering (Q4); Linguistics and Language (Q4)";"Engineering; Social Sciences" +30335;21100936586;"Book History";journal;"10987371, 15291499";"Johns Hopkins University Press";No;No;0,103;Q4;6;7;47;212;14;43;0,37;30,29;50,00;0;United States;Northern America;"Johns Hopkins University Press";"2019-2025";"Conservation (Q4); History (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +30336;21100406873;"Brill's Studies in Intellectual History";book series;"09208607, 22142517";"Brill Academic Publishers";No;No;0,103;Q4;13;4;89;1400;5;11;0,07;350,00;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2005-2026";"History (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30337;17700156012;"Cahiers de Psychologie Clinique";journal;"1370074X, 17821401";"De Boeck Supérieur";No;No;0,103;Q4;10;0;73;0;2;67;0,03;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"2001-2024";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +30338;19700174948;"Cancer and Chemotherapy Reviews";journal;"1885740X, 23398728";"Permanyer Publications";No;No;0,103;Q4;4;1;13;41;2;12;0,00;41,00;0,00;0;Spain;Western Europe;"Permanyer Publications";"2007-2022, 2024-2025";"Oncology (Q4); Pharmacology (medical) (Q4)";"Medicine" +30339;21100455214;"Caritas et Veritas";journal;"18050948";"University of South Bohemia";Yes;No;0,103;Q4;4;7;50;193;6;47;0,18;27,57;42,86;0;Czech Republic;Eastern Europe;"University of South Bohemia";"2015-2025";"Education (Q4); Philosophy (Q4); Religious Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30340;21101202110;"Centre for Applied Linguistics Research Journal";journal;"20731175";"Arab Open University - Lebanon";No;No;0,103;Q4;2;37;25;1356;9;25;0,40;36,65;52,17;0;Lebanon;Middle East;"Arab Open University - Lebanon";"2019-2025";"Education (Q4); Linguistics and Language (Q4)";"Social Sciences" +30341;82087;"Chemical Fibers International";trade journal;"14343584";"Deutscher Fachverlag GmbH";No;No;0,103;Q4;16;0;54;0;1;54;0,00;0,00;0,00;0;Germany;Western Europe;"Deutscher Fachverlag GmbH";"1995-2022";"Business and International Management (Q4); Industrial and Manufacturing Engineering (Q4)";"Business, Management and Accounting; Engineering" +30342;23408;"Chemistry and Industry (London)";trade journal;"00093068, 20476329";"Wiley-Blackwell";No;No;0,103;Q4;30;68;148;0;1;33;0,01;0,00;0,00;0;United States;Northern America;"Wiley-Blackwell";"1965-1971, 1973-2026";"Biotechnology (Q4); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Chemistry" +30343;15018;"Civil Engineering";trade journal;"08857024, 23810688";"American Society of Civil Engineers (ASCE)";No;No;0,103;Q4;16;52;145;0;9;144;0,07;0,00;29,82;0;United States;Northern America;"American Society of Civil Engineers (ASCE)";"1969-2026";"Ceramics and Composites (Q4); Civil and Structural Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4); Materials Science (miscellaneous) (Q4)";"Earth and Planetary Sciences; Engineering; Materials Science" +30344;21100939983;"Clinical Osteology";journal;"25711334, 25711326";"Facta Medica, S.R.O";No;No;0,103;Q4;5;9;57;255;2;46;0,03;28,33;53,33;0;Czech Republic;Eastern Europe;"Facta Medica, S.R.O";"2018-2025";"Endocrinology, Diabetes and Metabolism (Q4); Orthopedics and Sports Medicine (Q4)";"Medicine" +30345;21101285879;"Congreso Internacional de Innovacion y Tendencias en Ingenieria, CONIITI";journal;"25394320";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,103;Q4;1;0;63;0;6;62;0,10;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Building and Construction (Q4); Civil and Structural Engineering (Q4); Education (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering; Social Sciences" +30346;5800169793;"Connexions";journal;"17762804, 03373126";"Editions Eres";No;No;0,103;Q4;11;0;81;0;1;68;0,00;0,00;0,00;0;France;Western Europe;"Editions Eres";"2001-2024";"Clinical Psychology (Q4); Social Psychology (Q4)";"Psychology" +30347;12650;"Contemporary Ob/Gyn";journal;"00903159";"Advanstar Communications Inc.";Yes;No;0,103;Q4;11;21;294;127;7;71;0,03;6,05;57,14;0;United States;Northern America;"Advanstar Communications Inc.";"1975-1977, 1982, 1996-2025";"Advanced and Specialized Nursing (Q4); Maternity and Midwifery (Q4); Obstetrics and Gynecology (Q4)";"Medicine; Nursing" +30348;14480;"Dalhousie Law Journal";journal;"03171663, 25639277";"";No;No;0,103;Q4;3;28;70;542;9;69;0,10;19,36;53,33;0;Canada;Northern America;"";"1974, 1977, 1980-1981, 1988, 1993, 2021-2025";"Law (Q4)";"Social Sciences" +30349;21101227054;"Disclosing Collections";book series;"29745276, 29745748";"Fondazione Universita Ca Foscari";No;No;0,103;Q4;1;23;24;479;5;10;0,22;20,83;0,00;0;Italy;Western Europe;"Fondazione Universita Ca Foscari";"2022-2025";"Arts and Humanities (miscellaneous) (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30350;13925;"DLR Deutsches Zentrum fur Luft- und Raumfahrt e.V. - Forschungsberichte";book series;"14348454";"Deutschen Forschungsanstalt fur Luft-und Raumfahrt";No;No;0,103;Q4;10;0;15;0;0;11;0,00;0,00;0,00;0;Germany;Western Europe;"Deutschen Forschungsanstalt fur Luft-und Raumfahrt";"1990-2019, 2022";"Aerospace Engineering (Q4); Applied Mathematics (Q4); Space and Planetary Science (Q4)";"Earth and Planetary Sciences; Engineering; Mathematics" +30351;5600157615;"DNA Reporter";journal;"04185412";"Delaware Nurses Association";No;No;0,103;Q4;2;0;54;0;0;12;0,00;0,00;0,00;0;United States;Northern America;"Delaware Nurses Association";"2006-2023";"LPN and LVN (Q4)";"Nursing" +30352;16800154751;"Early Music History";journal;"02611279, 14740559";"Cambridge University Press";No;No;0,103;Q4;19;0;12;0;0;12;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Cambridge University Press";"1981-1988, 1990-1992, 1994-2023";"Music (Q4)";"Arts and Humanities" +30353;21100276218;"Ecclesiastical Law Journal";journal;"0956618X, 17518539";"Cambridge University Press";No;No;0,103;Q4;17;41;149;1342;14;103;0,09;32,73;11,11;0;United Kingdom;Western Europe;"Cambridge University Press";"1987-2025";"Law (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30354;5600152864;"Education et Societes";journal;"1373847X, 17821428";"De Boeck Supérieur";No;No;0,103;Q4;16;0;40;0;2;40;0,03;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"2001-2024";"Education (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30355;21101105027;"ESP Across Cultures";journal;"19728247";"Edipuglia Srl";No;No;0,103;Q4;3;0;12;0;1;11;0,00;0,00;0,00;0;Italy;Western Europe;"Edipuglia Srl";"2019-2023";"Linguistics and Language (Q4)";"Social Sciences" +30356;21100823282;"Exartisis";journal;"11095350";"KETHEA";No;No;0,103;Q4;1;0;13;0;0;10;0,00;0,00;0,00;0;Greece;Western Europe;"KETHEA";"2010-2023";"Psychiatry and Mental Health (Q4)";"Medicine" +30357;19300156907;"Feministische Studien";journal;"23659920, 07235186";"Walter de Gruyter GmbH";No;No;0,103;Q4;10;16;103;313;4;90;0,00;19,56;93,75;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2008-2025";"Gender Studies (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30358;21101185604;"fib Bulletins";book series;"15623610";"fib. The International Federation for Structural Concrete";No;No;0,103;Q4;2;24;95;1052;11;10;0,00;43,83;0,00;0;Switzerland;Western Europe;"fib. The International Federation for Structural Concrete";"2022-2025";"Education (Q4)";"Social Sciences" +30359;19700174725;"Filozofska Istrazivanja";journal;"03514706";"Croatian Philosophical Society";Yes;Yes;0,103;Q4;5;27;137;1248;7;127;0,03;46,22;24,14;0;Croatia;Eastern Europe;"Croatian Philosophical Society";"2009-2025";"Philosophy (Q4)";"Arts and Humanities" +30360;25082;"Foreign Policy";journal;"00157228";"Carnegie Endowment for International Peace";No;No;0,103;Q4;45;0;70;0;6;57;0,03;0,00;0,00;0;United States;Northern America;"Carnegie Endowment for International Peace";"1979, 1981, 1984-1985, 1998-2015, 2017-2018, 2020, 2022-2023";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30361;21100309829;"Freiburger Zeitschrift fur Philosophie und Theologie";journal;"00160725";"Aschendorff Verlag GmbH & Co. KG";No;No;0,103;Q4;4;0;11;0;0;11;0,00;0,00;0,00;0;Switzerland;Western Europe;"Aschendorff Verlag GmbH & Co. KG";"2012-2017, 2020-2021, 2023";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30362;22627;"Geodetski List";journal;"0016710X";"Croatian Geodetic Society";No;No;0,103;Q4;10;18;63;361;2;36;0,03;20,06;29,73;0;Croatia;Eastern Europe;"Croatian Geodetic Society";"1979-1983, 1985, 2008-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +30363;21101277851;"Global Chinese Conference on Computers in Education Main Conference Proceedings (English Paper)";journal;"30053218";"";No;No;0,103;Q4;2;26;68;322;3;68;0,02;12,38;43,59;0;Taiwan;Asiatic Region;"";"2020-2025";"Computer Science (miscellaneous) (Q4); Education (Q4)";"Computer Science; Social Sciences" +30364;21100287312;"Handelingen van de Koninklijke Commissie voor Toponymie";journal;"07748396, 22952802";"Peeters Publishers";No;No;0,103;Q4;3;0;10;0;1;10;0,00;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"2011-2017, 2019-2022";"Linguistics and Language (Q4)";"Social Sciences" +30365;7600153110;"Hawwa";journal;"15692078, 15692086";"Brill Academic Publishers";No;No;0,103;Q4;17;21;31;1004;5;29;0,14;47,81;82,86;0;Netherlands;Western Europe;"Brill Academic Publishers";"2003-2012, 2014-2026";"Cultural Studies (Q4); Gender Studies (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30366;19700188156;"Hellenic Journal of Nursing";journal;"11056843, 22413049";"Hellenic Nurses Association";No;No;0,103;Q4;7;23;114;721;6;104;0,06;31,35;60,94;0;Greece;Western Europe;"Hellenic Nurses Association";"1979, 1988-1992, 2010-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +30367;21101042133;"Hellenic Journal of Radiology";journal;"26541629, 25290568";"Zita Medical Management";No;No;0,103;Q4;4;28;80;571;7;73;0,07;20,39;47,76;0;Greece;Western Europe;"Zita Medical Management";"2019-2025";"Artificial Intelligence (Q4); Computer Science Applications (Q4); Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Computer Science; Health Professions; Medicine" +30368;110015;"Huisarts en Wetenschap";journal;"18765912, 00187070";"Bohn Stafleu van Loghum";No;No;0,103;Q4;25;0;423;0;5;259;0,01;0,00;0,00;0;Netherlands;Western Europe;"Bohn Stafleu van Loghum";"1973-1975, 1987-2024";"Family Practice (Q4)";"Medicine" +30369;17600155116;"Imaginaire et Inconscient";journal;"16289676";"Esprit";No;No;0,103;Q4;4;0;15;0;0;12;0,00;0,00;0,00;0;France;Western Europe;"Esprit";"2001-2020, 2022";"Clinical Psychology (Q4)";"Psychology" +30370;19700188315;"Insuficiencia Cardiaca";journal;"18523862, 18501044";"Silver Horse SRL";Yes;No;0,103;Q4;6;0;16;0;0;11;0,00;0,00;0,00;0;Argentina;Latin America;"Silver Horse SRL";"2010-2023";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +30371;21101208546;"Italica";journal;"00213020, 23256672";"University of Illinois Press";No;No;0,103;Q4;3;0;119;0;5;97;0,01;0,00;0,00;0;United States;Northern America;"University of Illinois Press";"2020-2024";"Cultural Studies (Q4); Education (Q4); Linguistics and Language (Q4)";"Social Sciences" +30372;21101045768;"Journal for Interdisciplinary Middle Eastern Studies";journal;"2522347X, 25226959";"Ariel University Press";No;No;0,103;Q4;3;10;20;748;2;20;0,15;74,80;54,55;0;Israel;Middle East;"Ariel University Press";"2017-2025";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30373;19970;"Journal fur Urologie und Urogynakologie";journal;"10236090, 16809424";"Springer";Yes;No;0,103;Q4;7;0;54;0;1;36;0,03;0,00;0,00;0;Austria;Western Europe;"Springer";"1999-2023";"Obstetrics and Gynecology (Q4); Urology (Q4)";"Medicine" +30374;11700154386;"Journal of Intellectual Property";journal;"15599493";"Illinois Institute of Technology";No;No;0,103;Q4;8;12;32;1890;3;32;0,11;157,50;11,11;0;United States;Northern America;"Illinois Institute of Technology";"2008-2010, 2012-2025";"Law (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30375;26690;"Journal of Internal Medicine of Taiwan";journal;"10167390";"Society of Internal Medicine of Taiwan";No;No;0,103;Q4;10;0;84;0;4;83;0,04;0,00;0,00;0;Taiwan;Asiatic Region;"Society of Internal Medicine of Taiwan";"2001-2024";"Internal Medicine (Q4)";"Medicine" +30376;21100210919;"Journal of Technology, Management, and Applied Engineering";journal;"21660123";"The Association of Technology Management and Applied Engineering";No;No;0,103;Q4;23;3;11;69;1;11;0,11;23,00;0,00;0;United States;Northern America;"The Association of Technology Management and Applied Engineering";"2012-2023, 2025";"Engineering (miscellaneous) (Q4)";"Engineering" +30377;21100217001;"Journal of the Institute of Electrical Engineers of Japan";journal;"13405551, 18814190";"The Institute of Electrical Engineers of Japan";No;No;0,103;Q4;11;126;395;889;13;347;0,04;7,06;11,48;0;Japan;Asiatic Region;"The Institute of Electrical Engineers of Japan";"1996-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +30378;19700188162;"JP Journal of Geometry and Topology";journal;"0972415X";"Pushpa Publishing House";No;No;0,103;Q4;6;9;10;124;0;10;0,00;13,78;0,00;0;India;Asiatic Region;"Pushpa Publishing House";"2010-2017, 2024-2025";"Geometry and Topology (Q4)";"Mathematics" +30379;22032;"Keramische Zeitschrift";journal;"25238949, 00230561";"Springer Vieweg";No;No;0,103;Q4;9;0;30;0;0;12;0,00;0,00;0,00;0;Germany;Western Europe;"Springer Vieweg";"1968-2022";"Ceramics and Composites (Q4); Marketing (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Business, Management and Accounting; Materials Science" +30380;16960;"L'Annee Sociologique";journal;"00662399";"Presses Universitaires de France";No;No;0,103;Q4;17;13;50;617;6;46;0,15;47,46;29,41;0;France;Western Europe;"Presses Universitaires de France";"1981, 1984, 1987, 2001-2025";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +30381;21101190433;"Levinas Studies";journal;"15547000, 21538433";"Philosophy Documentation Center";No;No;0,103;Q4;2;0;26;0;1;24;0,00;0,00;0,00;0;United States;Northern America;"Philosophy Documentation Center";"2019-2023";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30382;21100407264;"Library of the Written Word";book series;"18744842, 18744834";"Brill Academic Publishers";No;No;0,103;Q4;13;89;212;9982;25;12;0,15;112,16;66,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2026";"Communication (Q4); History (Q4); Library and Information Sciences (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30383;21101079122;"LUMS Law Journal";journal;"24148407, 24148415";"Shaikh Ahmad Hassan School of Law";No;No;0,103;Q4;1;0;17;0;1;17;0,06;0,00;0,00;0;Pakistan;Asiatic Region;"Shaikh Ahmad Hassan School of Law";"2021, 2023-2024";"Law (Q4)";"Social Sciences" +30384;79119;"Magyar Geofizika";journal;"00250120";"Association of Hungarian Geophysicists";No;No;0,103;Q4;8;0;22;0;0;12;0,00;0,00;0,00;0;Hungary;Eastern Europe;"Association of Hungarian Geophysicists";"1993-2021, 2023";"Geology (Q4); Geophysics (Q4)";"Earth and Planetary Sciences" +30385;21100870837;"Makslas Vesture un Teorija";journal;"16910869";"Institute of Art History of the Latvian Academy of Art";No;No;0,103;Q4;1;11;24;157;1;12;0,00;14,27;87,50;0;Latvia;Eastern Europe;"Institute of Art History of the Latvian Academy of Art";"2018-2025";"History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30386;21101298832;"Malaysian Journal of International Relations";journal;"22895043, 26008181";"University of Malaya";Yes;No;0,103;Q4;2;8;25;376;7;25;0,33;47,00;40,00;0;Malaysia;Asiatic Region;"University of Malaya";"2021-2025";"Political Science and International Relations (Q4)";"Social Sciences" +30387;19700180556;"Mecosan";journal;"23848804, 11216921";"FrancoAngeli";No;No;0,103;Q4;5;0;161;0;11;136;0,07;0,00;0,00;0;Italy;Western Europe;"FrancoAngeli";"2008-2024";"Health Policy (Q4)";"Medicine" +30388;21101068185;"Metatheoria";journal;"18532322, 18532330";"Editorial de la Universidad Nacional de Tres de Febrero (EDUNTREF)";No;Yes;0,103;Q4;1;6;30;228;1;27;0,04;38,00;0,00;0;Argentina;Latin America;"Editorial de la Universidad Nacional de Tres de Febrero (EDUNTREF)";"2019-2025";"History and Philosophy of Science (Q4)";"Arts and Humanities" +30389;145265;"Middle East Quarterly";journal;"10739467";"Middle East Forum";No;No;0,103;Q4;22;18;48;609;11;10;0,21;33,83;10,00;0;United States;Northern America;"Middle East Forum";"2005-2025";"Business, Management and Accounting (miscellaneous) (Q4); Political Science and International Relations (Q4)";"Business, Management and Accounting; Social Sciences" +30390;21100242620;"MIDEO - Melanges de l'Institut Dominicaine des Etudes Orientales du Caire";journal;"05751330, 17831628";"IDEO - Institut dominicain d'etudes orientales, IFAO - Institut francais d’archeologie orientale";No;No;0,103;Q4;6;5;51;189;5;51;0,09;37,80;33,33;0;Belgium;Western Europe;"IDEO - Institut dominicain d'etudes orientales, IFAO - Institut francais d’archeologie orientale";"2012, 2014-2015, 2017-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30391;21426;"Midland History";journal;"0047729X, 1756381X";"Maney Publishing";No;No;0,103;Q4;5;20;68;0;6;57;0,11;0,00;23,08;0;United Kingdom;Western Europe;"Maney Publishing";"1971-1979, 1981-1995, 1999, 2001-2002, 2014-2025";"History (Q4)";"Arts and Humanities" +30392;21101264272;"Miscelanea de Estudios Arabes y Hebraicos Seccion Arabe-Islam";journal;"23410906, 16965868";"Universidad de Granada";Yes;No;0,103;Q4;1;17;13;724;3;13;0,23;42,59;47,06;0;Spain;Western Europe;"Universidad de Granada";"2024-2026";"Linguistics and Language (Q4)";"Social Sciences" +30393;145035;"Mondo Digitale";journal;"1720898X";"Associazione Italiana per l'Informatica e il Calcolo Automatico";No;No;0,103;Q4;8;0;73;0;1;57;0,00;0,00;0,00;0;Italy;Western Europe;"Associazione Italiana per l'Informatica e il Calcolo Automatico";"2003-2024";"Computer Science Applications (Q4); Information Systems (Q4); Media Technology (Q4)";"Computer Science; Engineering" +30394;17403;"Motricite Cerebrale";journal;"02455919";"Elsevier Masson s.r.l.";No;No;0,103;Q4;7;10;65;106;6;53;0,13;10,60;83,33;0;France;Western Europe;"Elsevier Masson s.r.l.";"1980-1990, 2004-2026";"Neurology (clinical) (Q4); Rehabilitation (Q4)";"Medicine" +30395;21101363649;"Mountain Journal of Science and Interdisciplinary Research";journal;"26197855, 26517744";"Benguet State University";Yes;No;0,103;Q4;1;18;35;529;5;35;0,14;29,39;54,55;0;Philippines;Asiatic Region;"Benguet State University";"2023-2025";"Agronomy and Crop Science (Q4); Education (Q4); Horticulture (Q4); Social Sciences (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Social Sciences" +30396;4900152401;"NEC Technical Journal";journal;"18805884";"NEC Media Products Ltd.";No;No;0,103;Q4;13;0;84;0;8;82;0,11;0,00;0,00;0;Japan;Asiatic Region;"NEC Media Products Ltd.";"2006-2024";"Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4); Information Systems (Q4); Materials Science (miscellaneous) (Q4)";"Computer Science; Engineering; Materials Science" +30397;16472;"Nuova Rivista Storica";journal;"00296236";"Societa Editrice Dante Alighieri";No;No;0,103;Q4;6;0;84;0;13;73;0,20;0,00;0,00;0;Italy;Western Europe;"Societa Editrice Dante Alighieri";"1973, 1976, 1978, 1980, 1999, 2002-2024";"History (Q4)";"Arts and Humanities" +30398;21101358089;"Odrodzenie i Reformacja w Polsce";journal;"00298514, 24508349";"Tadeusz Manteuffel Institute of History Polish Academy of Sciences";Yes;No;0,103;Q4;1;16;28;480;4;26;0,16;30,00;50,00;0;Poland;Eastern Europe;"Tadeusz Manteuffel Institute of History Polish Academy of Sciences";"2021-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); History (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30399;22176;"Ohio Journal of Science";journal;"00300950";"Ohio Academy of Science";No;No;0,103;Q4;21;0;22;0;1;21;0,07;0,00;0,00;0;United States;Northern America;"Ohio Academy of Science";"1945-1949, 1973-1974, 1979-1983, 1985, 1987, 1989, 1991-2010, 2013-2024";"Multidisciplinary (Q4)";"Multidisciplinary" +30400;21581;"O+P Fluidtechnik";journal;"03412660";"Vereinigte Fachverlage GmbH";No;No;0,103;Q4;7;0;15;0;0;10;0,00;0,00;0,00;0;Germany;Western Europe;"Vereinigte Fachverlage GmbH";"1970-1971, 1973-2014, 2016-2022";"Mechanical Engineering (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science" +30401;21101043804;"Operations Management Education Review";journal;"16497082, 20444567";"NeilsonJournals Publishing";No;No;0,103;Q4;2;5;19;76;1;19;0,07;15,20;0,00;0;United Kingdom;Western Europe;"NeilsonJournals Publishing";"2019-2024";"Decision Sciences (miscellaneous) (Q4); Information Systems and Management (Q4); Management Science and Operations Research (Q4)";"Decision Sciences" +30402;23677;"Pacific Northwest Quarterly";journal;"00308803";"University of Washington";No;No;0,103;Q4;6;1;37;0;2;12;0,00;0,00;0,00;0;United States;Northern America;"University of Washington";"1967, 1974, 1980, 1982, 1986, 2000-2024";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30403;5700161383;"Portuguese Journal of Social Science";journal;"17589509, 1476413X";"Intellect Ltd.";No;No;0,103;Q4;16;0;14;0;2;13;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2002-2022";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +30404;21100832765;"Pragmatism Today";journal;"13382799";"Central European Pragmatist Forum";No;No;0,103;Q4;6;11;43;361;5;37;0,10;32,82;72,73;0;Slovakia;Eastern Europe;"Central European Pragmatist Forum";"2017-2025";"Philosophy (Q4)";"Arts and Humanities" +30405;21101392386;"Prajñā Vihāra";journal;"25869876, 15136442";"Assumption University";No;No;0,103;Q4;2;12;41;351;2;41;0,08;29,25;0,00;0;Thailand;Asiatic Region;"Assumption University";"2021-2026";"Cultural Studies (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30406;21101220435;"Problemi Sjevernog Jadrana";journal;"18487866, 03518825";"Croatian Academy of Sciences and Arts";No;No;0,103;Q4;2;2;13;157;2;12;0,00;78,50;100,00;0;Croatia;Eastern Europe;"Croatian Academy of Sciences and Arts";"2020-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30407;21101027243;"Psychologie Clinique et Projective";journal;"21184496, 12655449";"ERES";No;No;0,103;Q4;2;0;26;0;2;23;0,06;0,00;0,00;0;France;Western Europe;"ERES";"2019-2020, 2022-2023";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +30408;16583;"Quaderni Storici";journal;"03016307, 26121972";"Societa Editrice Il Mulino";No;No;0,103;Q4;14;12;102;536;11;97;0,13;44,67;50,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"1976-1977, 1979-1987, 1999, 2001-2025";"History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30409;19400158814;"Quebec Journal of International Law";journal;"08289999";"Societe Quebecoise de Droit International";No;No;0,103;Q4;6;0;101;0;5;54;0,00;0,00;0,00;0;Canada;Northern America;"Societe Quebecoise de Droit International";"2007-2023";"Law (Q4)";"Social Sciences" +30410;21100312210;"Radovi Zavoda za Hrvatsku Povijest";journal;"0353295X, 18490344";"Zavod za Hrvatsku Povijest";Yes;Yes;0,103;Q4;5;0;105;0;10;94;0,04;0,00;0,00;0;Croatia;Eastern Europe;"Zavod za Hrvatsku Povijest";"2013-2024";"History (Q4)";"Arts and Humanities" +30411;21100903489;"Radovi Zavoda za Znanstvenoistrazivacki i Umjetnicki Rad u Bjelovaru";journal;"18469787, 18487912";"Croatian Academy of Sciences and Arts";Yes;Yes;0,103;Q4;2;5;37;0;3;34;0,12;0,00;40,00;0;Croatia;Eastern Europe;"Croatian Academy of Sciences and Arts";"2018-2026";"History and Philosophy of Science (Q4); Multidisciplinary (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Multidisciplinary; Social Sciences" +30412;12579;"Review of High Pressure Science and Technology/Koatsuryoku No Kagaku To Gijutsu";journal;"0917639X, 13481940";"Japan Society of High Pressure Science and Technology";No;No;0,103;Q4;19;29;93;823;4;74;0,00;28,38;4,88;0;Japan;Asiatic Region;"Japan Society of High Pressure Science and Technology";"1992-2025";"Chemistry (miscellaneous) (Q4); Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4)";"Chemistry; Materials Science; Physics and Astronomy" +30413;21101041503;"Revista Archai";journal;"21794960, 1984249X";"Imprensa da Universidade de Coimbra";Yes;Yes;0,103;Q4;3;26;106;930;8;101;0,04;35,77;32,00;0;Portugal;Western Europe;"Imprensa da Universidade de Coimbra";"2019-2026";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Law (Q4); Linguistics and Language (Q4); Philosophy (Q4); Social Sciences (miscellaneous) (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30414;21100945708;"Revista Clinica de Ortodontia Dental Press";journal;"16766849";"Dental Press International";No;No;0,103;Q4;2;0;11;0;0;10;0,00;0,00;0,00;0;Brazil;Latin America;"Dental Press International";"2019, 2022";"Orthodontics (Q4)";"Dentistry" +30415;21100790342;"Revista de Filosofia (Chile)";journal;"07184360, 00348236";"Universidad de Chile";Yes;Yes;0,103;Q4;5;21;58;733;5;56;0,10;34,90;21,05;0;Chile;Latin America;"Universidad de Chile";"2016-2025";"Philosophy (Q4)";"Arts and Humanities" +30416;21100802704;"Revista de Filosofia (Spain)";journal;"00348244, 1988284X";"Universidad Complutense Madrid";Yes;Yes;0,103;Q4;6;34;92;975;9;92;0,12;28,68;22,22;0;Spain;Western Europe;"Universidad Complutense Madrid";"2011-2026";"Philosophy (Q4)";"Arts and Humanities" +30417;19700182023;"Revista de Fitoterapia";journal;"15760952, 19885806";"CITA Publicaciones y Documentacion";No;No;0,103;Q4;5;0;14;0;0;11;0,00;0,00;0,00;0;Spain;Western Europe;"CITA Publicaciones y Documentacion";"2009-2019, 2021-2024";"Complementary and Alternative Medicine (Q4)";"Medicine" +30418;21101057340;"Revista de Medicina y Cine";journal;"18855210";"University of Salamanca";Yes;Yes;0,103;Q4;3;0;104;0;11;93;0,14;0,00;0,00;0;Spain;Western Europe;"University of Salamanca";"2019-2024";"Communication (Q4); Education (Q4); Medicine (miscellaneous) (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Medicine; Social Sciences" +30419;16932;"Revista de Obras Publicas";journal;"00348619, 16954408";"Colegio de Ingenieros de Caminos Canales y Puertos";No;No;0,103;Q4;8;0;15;0;0;12;0,00;0,00;0,00;0;Spain;Western Europe;"Colegio de Ingenieros de Caminos Canales y Puertos";"1996-2022";"Civil and Structural Engineering (Q4)";"Engineering" +30420;21100930958;"Revista del Jardin Botanico Nacional";journal;"24105546, 02535696";"Universidad de La Habana";Yes;No;0,103;Q4;5;11;34;408;3;33;0,11;37,09;37,84;0;Cuba;Latin America;"Universidad de La Habana";"2019-2025";"Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Environmental Science" +30421;19700174986;"Revista Mexicana de Enfermeria Cardiologica";journal;"14050315";"Sociedad Mexicana de Cardiologia";No;No;0,103;Q4;4;1;35;31;0;11;0,00;31,00;60,00;0;Mexico;Latin America;"Sociedad Mexicana de Cardiologia";"2008-2017, 2023, 2025";"Advanced and Specialized Nursing (Q4); Cardiology and Cardiovascular Medicine (Q4)";"Medicine; Nursing" +30422;12700154709;"Revista Venezolana de Oncologia";journal;"07980582";"Sociedad Venezolana de Oncologia";Yes;No;0,103;Q4;7;43;85;1007;4;74;0,05;23,42;38,61;0;Venezuela;Latin America;"Sociedad Venezolana de Oncologia";"2008-2026";"Oncology (Q4)";"Medicine" +30423;21101051213;"Revue d'Ethique et de Theologie Morale";journal;"12660078, 21184518";"";No;No;0,103;Q4;2;0;123;0;2;111;0,01;0,00;0,00;0;France;Western Europe;"";"2019-2024";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30424;21100258739;"Revue d'Histoire des Mathematiques";journal;"1777568X, 1262022X";"Societe Mathematique de France";No;No;0,103;Q4;10;0;13;0;2;12;0,15;0,00;0,00;0;France;Western Europe;"Societe Mathematique de France";"2005-2021, 2023-2024";"History (Q4); Mathematics (miscellaneous) (Q4)";"Arts and Humanities; Mathematics" +30425;17600155221;"Revue Internationale et Strategique";journal;"12871672";"Institut de Relations Internationales et Strategiques";No;No;0,103;Q4;8;0;122;0;11;104;0,09;0,00;0,00;0;France;Western Europe;"Institut de Relations Internationales et Strategiques";"2001-2024";"Political Science and International Relations (Q4)";"Social Sciences" +30426;21100943916;"Rhizomata";journal;"21965110, 21965102";"Walter de Gruyter GmbH";No;No;0,103;Q4;11;8;32;320;6;32;0,22;40,00;14,29;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2013-2025";"History and Philosophy of Science (Q4); Philosophy (Q4)";"Arts and Humanities" +30427;145431;"Rigakuryoho Kagaku";journal;"13411667";"Society of Physical Therapy Science (Rigaku Ryoho Kagakugakkai)";Yes;No;0,103;Q4;9;45;225;998;14;225;0,03;22,18;20,11;0;Japan;Asiatic Region;"Society of Physical Therapy Science (Rigaku Ryoho Kagakugakkai)";"1995-2026";"Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions" +30428;21101241168;"Romaya Journal: Researches on Multidisciplinary Approaches";journal;"27919099";"";No;No;0,103;Q4;1;59;56;3418;5;56;0,09;57,93;48,06;0;Turkey;Middle East;"";"2021-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +30429;21101239983;"SARDINIA, CORSICA ET BALEARES ANTIQVAE";journal;"18243568, 17246148";"Fabrizio Serra Editore";No;No;0,103;Q4;3;1;17;261;0;12;0,00;261,00;100,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +30430;21101321974;"Sciences des Structures et de la Matiere";journal;"26301180";"CRUFAOCI";No;No;0,103;Q4;2;27;46;767;4;46;0,06;28,41;20,45;0;Burkina Faso;Africa;"CRUFAOCI";"2021-2025";"Algebra and Number Theory (Q4); Materials Chemistry (Q4); Numerical Analysis (Q4)";"Materials Science; Mathematics" +30431;5800161874;"Scope";journal;"11775653, 11775661";"Otago Polytechnic";No;No;0,103;Q4;4;58;81;687;3;28;0,02;11,84;80,00;0;New Zealand;Pacific Region;"Otago Polytechnic";"2009, 2011-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30432;19166;"SEI Technical Review";journal;"13434349";"Sumitomo Electric Industries Ltd.";No;No;0,103;Q4;25;18;82;79;12;74;0,13;4,39;14,71;0;Japan;Asiatic Region;"Sumitomo Electric Industries Ltd.";"1998-2020, 2022-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +30433;5800207507;"Side Effects of Drugs Annual";book series;"03786080";"Elsevier B.V.";No;No;0,103;Q4;11;40;126;1692;100;28;0,83;42,30;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1977-1995, 1997-2005, 2007-2012, 2014-2025";"Drug Guides (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +30434;29950;"Soins Pediatrie/Puericulture";journal;"12594792";"Elsevier Masson s.r.l.";No;No;0,103;Q4;4;64;173;635;7;137;0,04;9,92;78,91;0;France;Western Europe;"Elsevier Masson s.r.l.";"1995-2026";"Pediatrics (Q4)";"Nursing" +30435;21100913580;"Springer Geology";book series;"21979545, 21979553";"Springer International Publishing AG";Yes;No;0,103;Q4;30;11;359;2464;128;14;0,39;224,00;0,00;0;Switzerland;Western Europe;"Springer International Publishing AG";"2012-2026";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +30436;144665;"Strategic Direction";journal;"02580543";"Emerald Group Publishing Ltd.";No;No;0,103;Q4;21;141;457;145;20;454;0,05;1,03;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2002-2026";"Strategy and Management (Q4)";"Business, Management and Accounting" +30437;19600157204;"Studia Universitatis Vasile Goldis Arad, Seria Stiintele Vietii";journal;"18427863, 15842363";"Universitatea de Vest Vasile Goldis din Arad";Yes;Yes;0,103;Q4;12;3;43;123;2;43;0,00;41,00;63,64;0;Romania;Eastern Europe;"Universitatea de Vest Vasile Goldis din Arad";"2009-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine" +30438;144717;"Surgical Chronicles";journal;"11085002";"Surgical Society of Northern Greece";No;No;0,103;Q4;4;60;327;1393;12;297;0,02;23,22;17,16;0;Greece;Western Europe;"Surgical Society of Northern Greece";"2005-2025";"Surgery (Q4)";"Medicine" +30439;21100201095;"Tabularia";journal;"16307364";"Centre de Recherches Archeologiques et Historiques Medievales (CRAHM)";Yes;Yes;0,103;Q4;4;0;12;0;3;12;0,33;0,00;0,00;0;France;Western Europe;"Centre de Recherches Archeologiques et Historiques Medievales (CRAHM)";"2009-2011, 2013-2024";"History (Q4)";"Arts and Humanities" +30440;19700187709;"Teaching Artist Journal";journal;"15411796, 1541180X";"Routledge";No;No;0,103;Q4;9;2;12;46;0;11;0,00;23,00;75,00;0;United States;Northern America;"Routledge";"2010-2023, 2025-2026";"Arts and Humanities (miscellaneous) (Q4); Education (Q4)";"Arts and Humanities; Social Sciences" +30441;21100808441;"Teorie Vedy / Theory of Science";journal;"12100250, 18046347";"Czech Academy of Sciences";Yes;Yes;0,103;Q4;7;4;27;415;3;25;0,11;103,75;25,00;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"2010-2025";"History and Philosophy of Science (Q4); Library and Information Sciences (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30442;17118;"Textile History";journal;"17432952, 00404969";"Maney Publishing";No;No;0,103;Q4;16;3;27;32;3;19;0,25;10,67;100,00;0;United Kingdom;Western Europe;"Maney Publishing";"1968-2023, 2025";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); History (Q4); Industrial and Manufacturing Engineering (Q4)";"Arts and Humanities; Business, Management and Accounting; Engineering" +30443;21100886418;"Theatralia";journal;"1803845X, 23364548";"Masaryk University, Faculty of Arts";Yes;Yes;0,103;Q4;3;13;94;483;6;83;0,08;37,15;47,06;0;Czech Republic;Eastern Europe;"Masaryk University, Faculty of Arts";"2018-2025";"Cultural Studies (Q4); History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30444;16300154738;"Theologische Rundschau";journal;"00405698, 1868727X";"Mohr Siebeck GmbH and Co. KG";No;No;0,103;Q4;5;8;52;124;1;52;0,00;15,50;21,43;0;Germany;Western Europe;"Mohr Siebeck GmbH and Co. KG";"2002-2025";"Religious Studies (Q4)";"Arts and Humanities" +30445;21100248935;"Translational Research in Biomedicine";journal;"1662405X, 16624068";"S. Karger AG";No;No;0,103;Q4;5;0;13;0;0;11;0,00;0,00;0,00;0;Switzerland;Western Europe;"S. Karger AG";"2013, 2015-2016, 2018-2019, 2022";"Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology" +30446;17600155212;"Tribunes de la Sante";journal;"17658888";"Presses de Sciences Po";No;No;0,103;Q4;8;0;15;0;0;12;0,00;0,00;0,00;0;France;Western Europe;"Presses de Sciences Po";"2003-2017, 2019-2022";"Medicine (miscellaneous) (Q4)";"Medicine" +30447;21101041551;"Turkish Journal of History";journal;"26199505, 10151818";"Istanbul University Faculty of Letters";Yes;Yes;0,103;Q4;2;19;77;1091;9;77;0,04;57,42;31,25;0;Turkey;Middle East;"Istanbul University Faculty of Letters";"2019-2025";"History (Q4)";"Arts and Humanities" +30448;21101288915;"University of Asia Pacific Journal of Law and Policy";journal;"2518024X";"University of Asia Pacific, Department of Law and Human Rights";No;No;0,103;Q4;0;6;12;480;0;10;0,00;80,00;53,85;0;Bangladesh;Asiatic Region;"University of Asia Pacific, Department of Law and Human Rights";"2022-2025";"Law (Q4)";"Social Sciences" +30449;20675;"Vasomed";journal;"09421181";"WPV Wirtschafts- und Praxisverlag GmbH";No;No;0,103;Q4;10;61;183;349;6;87;0,05;5,72;40,00;0;Germany;Western Europe;"WPV Wirtschafts- und Praxisverlag GmbH";"1997-2025";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +30450;21101152611;"Vertimo Studijos";journal;"24243590";"Vilnius University Press";Yes;Yes;0,103;Q4;3;9;30;282;5;25;0,19;31,33;88,89;0;Lithuania;Eastern Europe;"Vilnius University Press";"2019-2025";"Linguistics and Language (Q4)";"Social Sciences" +30451;9500153967;"Water Wheel";trade journal;"18167969";"South African Water Research Commission";No;No;0,103;Q4;6;11;73;30;4;73;0,07;2,73;50,00;0;South Africa;Africa;"South African Water Research Commission";"2003-2026";"Water Science and Technology (Q4)";"Environmental Science" +30452;12033;"Welding and Cutting";trade journal;"16123433";"Deutscher Verlag fur Schweisstechnik GmbH";No;No;0,103;Q4;12;10;52;52;1;31;0,00;5,20;27,78;0;Germany;Western Europe;"Deutscher Verlag fur Schweisstechnik GmbH";"2003-2025";"Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +30453;21101180724;"World Trade Institute Advanced Studies";book series;"24059331";"Brill Nijhoff";No;No;0,103;Q4;3;2;37;900;14;10;0,26;450,00;50,00;0;Netherlands;Western Europe;"Brill Nijhoff";"2016, 2019, 2021-2025";"Law (Q4); Political Science and International Relations (Q4)";"Social Sciences" +30454;21100212328;"Zbornik za Umetnostno Zgodovino";journal;"0351224X, 15803767";"Slovene Art History Society";No;No;0,103;Q4;3;0;10;0;0;10;0,00;0,00;0,00;0;Slovenia;Eastern Europe;"Slovene Art History Society";"2011-2019, 2021-2024";"History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30455;21101277886;"Zeynep Kamil Medical Journal";journal;"27578062";"Kare Publishing";No;No;0,103;Q4;0;20;10;497;0;10;0,00;24,85;37,97;0;Turkey;Middle East;"Kare Publishing";"2024-2025";"Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)";"Medicine" +30456;21100222526;"Balisage Series on Markup Technologies";conference and proceedings;"19472609";"Mulberry Tecnologies, Inc.";No;No;0,103;-;9;18;50;199;4;47;0,09;11,06;14,29;0;United States;Northern America;"Mulberry Tecnologies, Inc.";"2008-2012, 2014-2025";"Software";"Computer Science" +30457;21100244819;"Deutsche Gesellschaft fur Medizinische Informatik, Biometrie und Epidemiologie e.V. (GMDS)";conference and proceedings;"18609171, 18608779";"Deutsche Gesellschaft fur Medizinische Informatik, Biometrie und Epidemiologie e.V.";Yes;Yes;0,103;-;8;0;16;0;0;11;0,00;0,00;0,00;0;Germany;Western Europe;"Deutsche Gesellschaft fur Medizinische Informatik, Biometrie und Epidemiologie e.V.";"2008-2021, 2023-2024";"Computer Networks and Communications; Software";"Computer Science" +30458;21100375879;"GL-Conference Series: Conference Proceedings";conference and proceedings;"13862316";"TextRelease";No;No;0,103;-;5;0;43;0;1;37;0,00;0,00;0,00;0;Netherlands;Western Europe;"TextRelease";"2007-2009, 2011-2020, 2022-2024";"Computer Science Applications; Information Systems; Library and Information Sciences";"Computer Science; Social Sciences" +30459;69495;"Proceedings of the International Telemetering Conference";conference and proceedings;"08845123";"International Foundation for Telemetering";No;No;0,103;-;12;0;249;0;13;240;0,05;0,00;0,00;0;United States;Northern America;"International Foundation for Telemetering";"1971, 1973, 1975, 1977-1986, 1990-1992, 1995-1998, 2005-2019, 2021-2024";"Computer Networks and Communications; Electrical and Electronic Engineering; Engineering (miscellaneous); Instrumentation; Signal Processing; Software";"Computer Science; Engineering; Physics and Astronomy" +30460;100718;"Proceedings of the Technical Association of the Graphic Arts, TAGA";conference and proceedings;"00822299";"Technical Association of the Graphic Arts";No;No;0,103;-;9;0;14;0;0;12;0,00;0,00;0,00;0;United States;Northern America;"Technical Association of the Graphic Arts";"1998, 2001-2022";"Media Technology; Visual Arts and Performing Arts";"Arts and Humanities; Engineering" +30461;21100856785;"World Congress on Recent Advances in Nanotechnology";conference and proceedings;"23715308";"Avestia Publishing";No;No;0,103;-;4;25;127;128;5;123;0,01;5,12;55,71;0;Canada;Northern America;"Avestia Publishing";"2016-2020, 2022-2025";"Biomaterials; Biomedical Engineering; Biotechnology; Histology; Management, Monitoring, Policy and Law; Mechanical Engineering; Modeling and Simulation; Pollution";"Biochemistry, Genetics and Molecular Biology; Engineering; Environmental Science; Materials Science; Mathematics; Medicine" +30462;23036;"Agenda";journal;"00020796";"Agenda and Editions Charitable Trust";No;No;0,102;Q3;3;0;23;0;0;16;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Agenda and Editions Charitable Trust";"1979, 2002-2023";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30463;21101039166;"Angles";journal;"22742042";"Societe des Anglicistes de l’Enseignement Superieur";Yes;Yes;0,102;Q3;4;22;51;1090;8;49;0,07;49,55;90,91;0;France;Western Europe;"Societe des Anglicistes de l’Enseignement Superieur";"2020-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30464;21100943914;"Apocrypha";journal;"20346468, 11553316";"Brepols Publishers";No;No;0,102;Q3;2;0;16;0;3;15;0,00;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2018-2023";"Literature and Literary Theory (Q3); Religious Studies (Q4)";"Arts and Humanities" +30465;21101309502;"Bulletin of Contemporary Hispanic Studies";journal;"25168037, 25168029";"Liverpool University Press";No;No;0,102;Q3;0;11;14;467;0;13;0,00;42,45;87,50;0;United Kingdom;Western Europe;"Liverpool University Press";"2020, 2024-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30466;24424;"Canadian Review of American Studies";journal;"00077720, 1710114X";"University of Toronto Press";No;No;0,102;Q3;10;12;43;774;4;43;0,11;64,50;53,85;0;Canada;Northern America;"University of Toronto Press";"1973, 1979-1981, 1983, 1988, 1993, 2000, 2003, 2009-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30467;21101347335;"Cuadernos Jovellanistas. De la Ilustracion a la Modernidad";journal;"26959739, 23864443";"FUNDACION FORO JOVELLANOS DEL PRINCIPADO DE ASTURIAS";No;No;0,102;Q3;1;4;16;47;0;16;0,00;11,75;50,00;0;Spain;Western Europe;"FUNDACION FORO JOVELLANOS DEL PRINCIPADO DE ASTURIAS";"2021-2025";"Literature and Literary Theory (Q3); History (Q4); Philosophy (Q4)";"Arts and Humanities" +30468;21100267793;"Early Medieval China";journal;"15299104, 19467842";"Maney Publishing";No;No;0,102;Q3;7;0;31;0;0;15;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Maney Publishing";"1994-1995, 2005, 2007-2024";"Literature and Literary Theory (Q3); Anthropology (Q4); Cultural Studies (Q4); History (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30469;21100223803;"Emily Dickinson Journal";journal;"10596879, 1096858X";"Johns Hopkins University Press";No;No;0,102;Q3;10;8;20;402;1;13;0,07;50,25;42,86;0;United States;Northern America;"Johns Hopkins University Press";"2009-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30470;16200154762;"English Studies in Canada";journal;"03170802";"Association of Canadian College and University Teachers of English";No;No;0,102;Q3;16;0;14;0;0;13;0,00;0,00;0,00;0;Canada;Northern America;"Association of Canadian College and University Teachers of English";"2002-2022";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30471;21101158592;"Essays in French Literature and Culture";journal;"18357040";"Westerly Centre, The University of Western Australia";Yes;Yes;0,102;Q3;2;7;15;212;0;13;0,00;30,29;50,00;0;Australia;Pacific Region;"Westerly Centre, The University of Western Australia";"2019-2022, 2024-2025";"Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30472;21101089509;"Facta";journal;"19719051, 1974451X";"Fabrizio Serra Editore";No;No;0,102;Q3;1;0;15;0;0;13;0,00;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2024";"Classics (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30473;5800209245;"French Studies Bulletin";journal;"02622750, 17489180";"Liverpool University Press";No;No;0,102;Q3;5;6;49;151;5;47;0,12;25,17;50,00;0;United Kingdom;Western Europe;"Liverpool University Press";"1981-2026";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30474;6000186059;"Genre";journal;"00166928";"University of Oklahoma";No;No;0,102;Q3;13;21;34;553;9;32;0,27;26,33;35,29;0;United States;Northern America;"University of Oklahoma";"2002-2025";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30475;21101385374;"Global Nineteenth-Century Studies";journal;"27526623, 27526631";"Liverpool University Press";No;No;0,102;Q3;1;12;15;411;0;15;0,00;34,25;50,00;0;United Kingdom;Western Europe;"Liverpool University Press";"2022-2025";"Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); History (Q4)";"Arts and Humanities" +30476;21100380987;"Horror Studies";journal;"20403283, 20403275";"Intellect Ltd.";No;No;0,102;Q3;7;12;46;491;7;42;0,17;40,92;33,33;0;United Kingdom;Western Europe;"Intellect Ltd.";"2014-2025";"Literature and Literary Theory (Q3); Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30477;21101134727;"HyperCultura";journal;"25592025, 22852115";"Hyperion University";Yes;Yes;0,102;Q3;2;0;33;0;2;33;0,04;0,00;0,00;0;Romania;Eastern Europe;"Hyperion University";"2019-2024";"Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30478;5700154365;"International Journal of Francophone Studies";journal;"13682679, 17589142";"Intellect Ltd.";No;No;0,102;Q3;7;0;16;0;4;16;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2008, 2012-2023";"Literature and Literary Theory (Q3); Cultural Studies (Q4); Gender Studies (Q4); History (Q4); Linguistics and Language (Q4); Sociology and Political Science (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30479;5800171006;"Journal of Ayn Rand Studies";journal;"15261018";"The Journal of Ayn Rand Studies Foundation";No;No;0,102;Q3;11;0;18;0;0;16;0,00;0,00;0,00;0;United States;Northern America;"The Journal of Ayn Rand Studies Foundation";"2002-2009, 2011-2023";"Literature and Literary Theory (Q3); Philosophy (Q4)";"Arts and Humanities" +30480;21101090017;"Lecturae Tropatorum";journal;"19744374";"University of Naples Federico II";Yes;Yes;0,102;Q3;2;0;14;0;1;14;0,11;0,00;0,00;0;Italy;Western Europe;"University of Naples Federico II";"2019-2024";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30481;15921;"Lias";journal;"20334753, 20335016";"Peeters Publishers";No;No;0,102;Q3;8;0;16;0;0;16;0,00;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"1974, 1983, 1989, 2002-2007, 2010-2022, 2024";"Literature and Literary Theory (Q3); History (Q4); Philosophy (Q4)";"Arts and Humanities" +30482;5700177271;"Matatu";journal;"18757421, 09329714";"Brill Rodopi";No;No;0,102;Q3;7;18;53;736;9;49;0,18;40,89;38,46;0;Netherlands;Western Europe;"Brill Rodopi";"2011-2017, 2019-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30483;21101019781;"Moenia";journal;"11372346, 2340003X";"Universidade de Santiago de Compostela";No;Yes;0,102;Q3;5;0;77;0;4;72;0,07;0,00;0,00;0;Spain;Western Europe;"Universidade de Santiago de Compostela";"2019-2024";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30484;21100945722;"Philologica Canariensia";journal;"23868635";"Universidad de Las Palmas de Gran Canaria";Yes;Yes;0,102;Q3;3;16;60;788;6;60;0,12;49,25;33,33;0;Spain;Western Europe;"Universidad de Las Palmas de Gran Canaria";"2019-2025";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30485;5700155559;"Philosophy and Literature";journal;"01900013, 1086329X";"Johns Hopkins University Press";No;No;0,102;Q3;20;28;101;763;14;97;0,14;27,25;18,52;0;United States;Northern America;"Johns Hopkins University Press";"2002-2025";"Literature and Literary Theory (Q3); Philosophy (Q4)";"Arts and Humanities" +30486;21100455134;"Queensland Review";journal;"20497792, 13218166";"Equinox Publishing Ltd";No;No;0,102;Q3;7;0;16;0;1;16;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2011-2013, 2015-2023";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30487;21100873332;"Review of International American Studies";journal;"19912773";"International American Studies Association";Yes;Yes;0,102;Q3;4;11;68;345;4;61;0,05;31,36;63,64;0;Italy;Western Europe;"International American Studies Association";"2018-2025";"Literature and Literary Theory (Q3); Anthropology (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30488;5800208587;"Romance Philology";journal;"00358002";"Brepols Publishers";No;No;0,102;Q3;7;0;18;0;0;14;0,00;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2002-2023";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30489;21100834322;"Studia Austriaca";journal;"15932508, 23852925";"Universita degli Studi di Milano";Yes;Yes;0,102;Q3;2;5;15;209;2;15;0,10;41,80;40,00;0;Italy;Western Europe;"Universita degli Studi di Milano";"2017-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30490;21100967058;"Studia Theodisca";journal;"15932478, 23852917";"Universita degli Studi di Milano";Yes;Yes;0,102;Q3;2;15;15;990;2;15;0,20;66,00;42,86;0;Italy;Western Europe;"Universita degli Studi di Milano";"2019-2025";"Literature and Literary Theory (Q3); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30491;16100154744;"Studies in the Literary Imagination";journal;"21652678, 00393819";"Georgia State University, Department of English";No;No;0,102;Q3;11;0;16;0;0;15;0,00;0,00;0,00;0;United States;Northern America;"Georgia State University, Department of English";"2002-2022";"Literature and Literary Theory (Q3)";"Arts and Humanities" +30492;21101089623;"Technai";journal;"20377967, 20368097";"Fabrizio Serra Editore";No;No;0,102;Q3;2;0;13;0;1;13;0,08;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2021, 2023-2024";"Classics (Q3); Literature and Literary Theory (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30493;5800213681;"Verslagen en Mededelingen van de Koninklijke Academie voor Nederlandse Taal- en letterkunde";journal;"0770786X";"Koninklijke Academie voor Nederlandse Taal-";No;No;0,102;Q3;5;0;16;0;0;15;0,00;0,00;0,00;0;Belgium;Western Europe;"Koninklijke Academie voor Nederlandse Taal-";"2002-2011, 2013-2023";"Literature and Literary Theory (Q3); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30494;5800207694;"Zeitschrift fur Balkanologie";book series;"00442356";"Harrassowitz Verlag";No;No;0,102;Q3;3;0;40;0;2;13;0,05;0,00;0,00;0;Germany;Western Europe;"Harrassowitz Verlag";"2013-2024";"Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30495;5700161051;"A Contrario";journal;"16607880, 16628667";"Editions Antipodes";No;No;0,102;Q4;8;0;20;0;0;18;0,00;0,00;0,00;0;Switzerland;Western Europe;"Editions Antipodes";"2003-2007, 2009-2018, 2020-2023";"Cultural Studies (Q4); Literature and Literary Theory (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30496;21101149770;"Abgadiyat";journal;"22138609, 16878280";"Brill Academic Publishers";No;No;0,102;Q4;2;7;21;969;0;18;0,00;138,43;42,86;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2025";"Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities" +30497;21100943521;"Acta Academiae Artium Vilnensis";journal;"13920316";"Vilniaus dailes akademijos leidykla";Yes;Yes;0,102;Q4;2;35;137;1552;6;130;0,04;44,34;65,91;0;Lithuania;Eastern Europe;"Vilniaus dailes akademijos leidykla";"2019-2025";"History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30498;21101157246;"Acta Medico-Historica Rigensia";journal;"10228012, 2592818X";"Riga Stradins University";Yes;Yes;0,102;Q4;3;0;18;0;0;18;0,00;0,00;0,00;0;Latvia;Eastern Europe;"Riga Stradins University";"2019-2024";"History (Q4)";"Arts and Humanities" +30499;19700201012;"Acta Scientiarum Language and Culture";journal;"19834683, 19834675";"Eduem - Editora da Universidade Estadual de Maringa";Yes;Yes;0,102;Q4;7;42;130;1079;6;122;0,05;25,69;57,89;0;Brazil;Latin America;"Eduem - Editora da Universidade Estadual de Maringa";"2008-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30500;88311;"Adhaesion Kleben und Dichten";trade journal;"16191919, 21928681";"Springer Vieweg";No;No;0,102;Q4;7;64;194;195;4;82;0,02;3,05;20,59;0;Germany;Western Europe;"Springer Vieweg";"1996-2026";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Polymers and Plastics (Q4)";"Chemical Engineering; Chemistry; Materials Science" +30501;13536;"Advanced Composites Bulletin";trade journal;"0951953X";"Boughton Technical Media";No;No;0,102;Q4;3;0;25;0;0;15;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Boughton Technical Media";"1987-2010, 2012, 2014, 2019-2020, 2022";"Business and International Management (Q4); Ceramics and Composites (Q4); Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)";"Business, Management and Accounting; Engineering; Materials Science" +30502;21100211367;"Advances in Alzheimer's Disease";book series;"22105735, 22105727";"IOS Press BV";No;No;0,102;Q4;11;0;134;0;5;131;0,01;0,00;0,00;0;Netherlands;Western Europe;"IOS Press BV";"2011-2012, 2015, 2017, 2020-2022, 2024";"Neurology (clinical) (Q4)";"Medicine" +30503;21101087361;"Africa (Italy)";journal;"26123258, 26126702";"Viella";No;No;0,102;Q4;3;2;27;128;2;27;0,04;64,00;50,00;0;Italy;Western Europe;"Viella";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); History and Philosophy of Science (Q4)";"Arts and Humanities" +30504;21101089622;"Agri Centuriati";journal;"18251277, 1724904X";"Fabrizio Serra Editore Srl";No;No;0,102;Q4;2;5;17;268;1;17;0,08;53,60;20,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2025";"Archeology (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +30505;21100996947;"Akroterion";journal;"20792883, 03031896";"Department of Ancient Studies, Stellenbosch University";Yes;No;0,102;Q4;2;0;21;0;2;21;0,07;0,00;0,00;0;South Africa;Africa;"Department of Ancient Studies, Stellenbosch University";"2019, 2021-2024";"Classics (Q4)";"Arts and Humanities" +30506;19700181208;"Aleph";journal;"15651525, 15533956";"Indiana University Press";No;No;0,102;Q4;10;0;16;0;3;15;0,00;0,00;0,00;0;United States;Northern America;"Indiana University Press";"2009-2023";"History (Q4); History and Philosophy of Science (Q4); Religious Studies (Q4)";"Arts and Humanities" +30507;21100864394;"Amaltea";journal;"19891709";"Universidad Complutense Madrid";Yes;Yes;0,102;Q4;2;6;22;188;1;19;0,00;31,33;60,00;0;Spain;Western Europe;"Universidad Complutense Madrid";"2017-2026";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30508;21100934629;"Ambitos";journal;"23864494, 15752100";"Biblioteca Universidad de Cordoba";No;Yes;0,102;Q4;3;11;31;385;2;30;0,06;35,00;9,09;0;Spain;Western Europe;"Biblioteca Universidad de Cordoba";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30509;21101176793;"American Journal of Numismatics";journal;"10538356";"American Numismatic Society";No;No;0,102;Q4;3;2;27;6;3;27;0,10;3,00;0,00;0;United States;Northern America;"American Numismatic Society";"2019-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); Arts and Humanities (miscellaneous) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30510;16200154734;"American Literary Scholarship";journal;"00659142, 15272125";"Duke University Press";No;No;0,102;Q4;1;0;21;0;0;20;0,00;0,00;0,00;0;United States;Northern America;"Duke University Press";"2002-2006, 2008-2022";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30511;5200152838;"AMHA - Acta Medico-Historica Adriatica";journal;"13344366";"Croatian Scientific Society for the History of Health";Yes;Yes;0,102;Q4;14;14;55;356;6;52;0,11;25,43;25,00;0;Croatia;Eastern Europe;"Croatian Scientific Society for the History of Health";"2006-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30512;21100285469;"Analele Universitatii din Craiova - Seria Istorie";journal;"12245704, 23933682";"Editura Universitaria Craiova";Yes;No;0,102;Q4;7;21;45;674;2;45;0,00;32,10;48,00;0;Romania;Eastern Europe;"Editura Universitaria Craiova";"2009-2025";"History (Q4)";"Arts and Humanities" +30513;21100904919;"Ancient History Bulletin";journal;"08353638";"Ancient History Bulletin";No;No;0,102;Q4;4;8;20;626;5;20;0,33;78,25;28,57;0;United States;Northern America;"Ancient History Bulletin";"2018-2025";"Anthropology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30514;21101212716;"Ancient Numismatic";journal;"27242145, 27849694";"Fabrizio Serra Editore";No;No;0,102;Q4;3;0;13;0;0;13;0,00;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2020-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +30515;21100202513;"Archaeologia Maritima Mediterranea";journal;"18253881, 17246091";"Fabrizio Serra Editore Srl";No;No;0,102;Q4;7;5;23;211;2;20;0,14;42,20;58,33;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2011-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +30516;8400155881;"Archiv fur Volkerkunde";journal;"00666513";"W. Braumuller";No;No;0,102;Q4;5;0;18;0;0;18;0,00;0,00;0,00;0;Austria;Western Europe;"W. Braumuller";"2009, 2013-2015, 2017-2024";"Anthropology (Q4); Cultural Studies (Q4)";"Social Sciences" +30517;21100241758;"Archivium Hibernicum";journal;"00448745";"Irish University Press for the Catholic Record Society of Ireland";No;No;0,102;Q4;5;0;20;0;1;20;0,09;0,00;0,00;0;Ireland;Western Europe;"Irish University Press for the Catholic Record Society of Ireland";"1999, 2001, 2011-2013, 2015-2019, 2021-2024";"History (Q4)";"Arts and Humanities" +30518;21101068578;"Archivo de Arte Valenciano";journal;"02115808";"Real Academia de Bellas Artes de San Carlos";No;No;0,102;Q4;4;0;21;0;0;20;0,00;0,00;0,00;0;Spain;Western Europe;"Real Academia de Bellas Artes de San Carlos";"2000-2021, 2023";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Museology (Q4); Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30519;21100228024;"Arkiv for Nordisk Filologi";journal;"00667668";"Lunds Universitet";No;No;0,102;Q4;6;7;24;320;1;19;0,06;45,71;33,33;0;Sweden;Western Europe;"Lunds Universitet";"2012-2015, 2017-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30520;21101392371;"ASEAN Journal of Education";journal;"2465437X";"Research and Development Institute Suan Dusit University";No;No;0,102;Q4;1;14;42;447;2;42;0,00;31,93;45,00;0;Thailand;Asiatic Region;"Research and Development Institute Suan Dusit University";"2022-2025";"Computer Science Applications (Q4); Education (Q4); Geography, Planning and Development (Q4); Health (social science) (Q4); Public Administration (Q4)";"Computer Science; Social Sciences" +30521;21101198449;"Athena: Filosofijos Studijos";journal;"18225047, 25387294";"Lithuanian Cultural Research Institute";Yes;Yes;0,102;Q4;1;12;21;407;1;17;0,05;33,92;36,36;0;Lithuania;Eastern Europe;"Lithuanian Cultural Research Institute";"2023-2025";"Philosophy (Q4)";"Arts and Humanities" +30522;21100786959;"Austrian Journal of Political Science";journal;"23135433";"Innsbruck University Press";Yes;Yes;0,102;Q4;12;1;19;65;2;19;0,06;65,00;0,00;0;Austria;Western Europe;"Innsbruck University Press";"2015-2025";"Sociology and Political Science (Q4)";"Social Sciences" +30523;19500157420;"Aut Aut";journal;"00050601";"La Nuova Italia Editrice S.p.A";No;No;0,102;Q4;4;60;181;1555;2;176;0,01;25,92;33,33;0;Italy;Western Europe;"La Nuova Italia Editrice S.p.A";"2009-2025";"Cultural Studies (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30524;20875;"Automotive Industries AI";journal;"10994130";"Automotive Industries";No;No;0,102;Q4;5;0;48;0;0;19;0,00;0,00;0,00;0;United States;Northern America;"Automotive Industries";"1970-1987, 1994-1997, 1999-2019, 2021-2023";"Automotive Engineering (Q4)";"Engineering" +30525;21100406813;"Biblical Interpretation Series";book series;"09280731";"Brill Academic Publishers";No;No;0,102;Q4;13;6;77;2720;6;17;0,08;453,33;60,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2026";"Religious Studies (Q4)";"Arts and Humanities" +30526;21100317005;"Biblische Notizen";journal;"01782967";"Verlag Herder GmbH und Co. KG";No;No;0,102;Q4;5;30;97;1446;3;93;0,03;48,20;29,63;0;Germany;Western Europe;"Verlag Herder GmbH und Co. KG";"2013-2014, 2018-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30527;21101291388;"Biuletyn Szadkowski";journal;"16430700, 24498351";"Lodz University Press";Yes;No;0,102;Q4;1;7;28;152;2;20;0,06;21,71;60,00;0;Poland;Eastern Europe;"Lodz University Press";"2021-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); History (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30528;21100790798;"Boletin Americanista";journal;"05204100, 2014993X";"Universitat de Barcelona";Yes;Yes;0,102;Q4;7;22;59;846;4;57;0,06;38,45;44,44;0;Spain;Western Europe;"Universitat de Barcelona";"2011-2025";"History (Q4)";"Arts and Humanities" +30529;21100836103;"Boletin de Arte";journal;"02118483";"Universidad de Malaga, Departamento de Historia del Arte";Yes;Yes;0,102;Q4;5;10;97;462;4;83;0,03;46,20;42,86;0;Spain;Western Europe;"Universidad de Malaga, Departamento de Historia del Arte";"2013-2015, 2017-2025";"History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30530;21101140504;"Bolivian Studies Journal";journal;"21565163, 10742247";"University Library System, University of Pittsburgh";Yes;Yes;0,102;Q4;2;17;30;531;2;30;0,05;31,24;38,89;0;United States;Northern America;"University Library System, University of Pittsburgh";"2019, 2021-2025";"Anthropology (Q4); Cultural Studies (Q4); History (Q4); Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30531;19800188079;"Bollettino di Storia delle Scienze Matematiche";journal;"03924432, 17241650";"Fabrizio Serra Editore Srl";No;No;0,102;Q4;9;6;24;226;12;24;0,44;37,67;16,67;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2003-2025";"History and Philosophy of Science (Q4); Mathematics (miscellaneous) (Q4)";"Arts and Humanities; Mathematics" +30532;21100829240;"British Catholic History";journal;"20557973, 20557981";"Cambridge University Press";No;No;0,102;Q4;7;3;20;318;3;19;0,00;106,00;0,00;0;United Kingdom;Western Europe;"Cambridge University Press";"2015-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30533;19700201691;"Bulletin of Japan Association for Fire Science and Engineering";journal;"05460794, 18835600";"Japan Association for Fire Science and Engineering";No;No;0,102;Q4;6;6;15;74;0;15;0,00;12,33;5,88;0;Japan;Asiatic Region;"Japan Association for Fire Science and Engineering";"1954, 1956-1963, 1965-1972, 1976-1978, 1980, 1982-1991, 1993, 1995, 1998, 2000-2013, 2015-2025";"Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Safety, Risk, Reliability and Quality (Q4)";"Engineering; Materials Science" +30534;20600195060;"Cadernos de Linguagem e Sociedade";journal;"01049712, 21794790";"";No;No;0,102;Q4;4;1;95;20;8;89;0,10;20,00;100,00;0;Brazil;Latin America;"";"2012-2024";"Linguistics and Language (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30535;30588;"Cahiers de Geographie du Quebec";journal;"00079766, 17088968";"Consortium Erudit";No;No;0,102;Q4;14;0;13;0;0;13;0,00;0,00;0,00;0;Canada;Northern America;"Consortium Erudit";"1978-2022";"Geography, Planning and Development (Q4)";"Social Sciences" +30536;21101044733;"Canterbury Law Review";journal;"01120581";"University of Canterbury";No;No;0,102;Q4;3;0;18;0;0;15;0,00;0,00;0,00;0;New Zealand;Pacific Region;"University of Canterbury";"2019-2021, 2023-2024";"Law (Q4)";"Social Sciences" +30537;18300156722;"Carrefours de l'Education";journal;"12623490";"Universite de Picardie (Jules Verne)";No;No;0,102;Q4;11;0;119;0;3;77;0,03;0,00;0,00;0;France;Western Europe;"Universite de Picardie (Jules Verne)";"2001-2007, 2009-2024";"Education (Q4)";"Social Sciences" +30538;21100215158;"Catalan Historical Review";journal;"20134088, 2013407X";"Institut d'Estudis Catalans";Yes;Yes;0,102;Q4;6;6;23;358;2;19;0,06;59,67;20,00;0;Spain;Western Europe;"Institut d'Estudis Catalans";"2008-2020, 2022-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30539;17699;"Catholic Historical Review";journal;"15340708, 00088080";"Catholic University of America Press";No;No;0,102;Q4;17;19;77;1522;5;63;0,04;80,11;27,78;0;United States;Northern America;"Catholic University of America Press";"1976, 1980, 2001-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +30540;17300154834;"Cement International";journal;"16106199";"Verlag Bau und Technik GmbH";No;No;0,102;Q4;9;0;13;0;0;13;0,00;0,00;0,00;0;Germany;Western Europe;"Verlag Bau und Technik GmbH";"2009-2022";"Civil and Structural Engineering (Q4); Materials Science (miscellaneous) (Q4); Mechanics of Materials (Q4)";"Engineering; Materials Science" +30541;23430;"Chemistry World";trade journal;"14737604";"Royal Society of Chemistry";No;No;0,102;Q4;10;0;18;0;0;18;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2004-2022";"Chemistry (miscellaneous) (Q4)";"Chemistry" +30542;19700174885;"Chinese Journal of Biologicals";journal;"10045503";"Changchun Institute of Biological Products";No;No;0,102;Q4;8;0;20;0;4;20;0,00;0,00;0,00;0;China;Asiatic Region;"Changchun Institute of Biological Products";"2007-2022";"Applied Microbiology and Biotechnology (Q4); Biochemistry (Q4); Biotechnology (Q4); Immunology (Q4)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +30543;21101242010;"Chinese Journal of Medical Aesthetics and Cosmetology";journal;"16710290";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,102;Q4;2;60;276;2036;10;276;0,03;33,93;40,65;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2025";"Dermatology (Q4); Surgery (Q4)";"Medicine" +30544;62974;"Chinesische Medizin";journal;"09302786, 21965668";"Springer Medizin";No;No;0,102;Q4;4;21;23;185;0;17;0,00;8,81;52,17;0;Germany;Western Europe;"Springer Medizin";"1999-2017, 2021, 2024-2026";"Complementary and Alternative Medicine (Q4)";"Medicine" +30545;21100945205;"Cinema";journal;"16478991";"New University of Lisbon, Faculty of Social and Human Sciences";Yes;No;0,102;Q4;1;0;24;0;3;20;0,13;0,00;0,00;0;Portugal;Western Europe;"New University of Lisbon, Faculty of Social and Human Sciences";"2019-2024";"Communication (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30546;21101047918;"Claridades";journal;"18896855, 19893787";"Universidad de Malaga";Yes;Yes;0,102;Q4;3;17;55;607;4;54;0,11;35,71;29,41;0;Spain;Western Europe;"Universidad de Malaga";"2019-2025";"Philosophy (Q4)";"Arts and Humanities" +30547;21100826269;"Clean Air and Containment Review";journal;"20423268";"Euromed Communications Ltd";No;No;0,102;Q4;7;6;21;48;1;13;0,08;8,00;0,00;0;United Kingdom;Western Europe;"Euromed Communications Ltd";"2012-2025";"Ecological Modeling (Q4); Environmental Engineering (Q4); Health, Toxicology and Mutagenesis (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science" +30548;21100944572;"Clothing Cultures";journal;"20500742, 20500750";"Intellect Ltd.";No;No;0,102;Q4;4;0;34;0;6;29;0,15;0,00;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2024";"Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30549;28742;"CME";journal;"1614371X, 16143744";"Medical Association Of South Africa";Yes;No;0,102;Q4;3;306;933;485;11;530;0,01;1,58;43,37;0;South Africa;Africa;"Medical Association Of South Africa";"1973, 2007-2026";"Family Practice (Q4)";"Medicine" +30550;21101392673;"Constitutional and Legal Academic Studies";journal;"26635402, 26635399";"RIK-U LLC";No;No;0,102;Q4;1;12;26;254;4;26;0,21;21,17;38,46;0;Ukraine;Eastern Europe;"RIK-U LLC";"2021-2025";"Law (Q4)";"Social Sciences" +30551;21101128534;"Contemporary Diagnostic Radiology";journal;"01499009, 19381395";"Lippincott Williams and Wilkins";No;No;0,102;Q4;3;27;84;431;5;83;0,04;15,96;37,66;0;United States;Northern America;"Lippincott Williams and Wilkins";"1990-1991, 1993-1994, 1996-1997, 2002-2003, 2006, 2008-2010, 2012, 2014, 2016-2017, 2019-2025";"Neurology (clinical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)";"Medicine" +30552;21101034467;"Contexto";journal;"20071639";"Universidad Autonoma de Nuevo Leon";Yes;Yes;0,102;Q4;3;22;50;886;5;46;0,10;40,27;50,00;0;Mexico;Latin America;"Universidad Autonoma de Nuevo Leon";"2019-2026";"Architecture (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering; Social Sciences" +30553;21100217003;"Correspondances en MHND";journal;"21009619";"Edimark Sante";No;No;0,102;Q4;3;32;149;444;5;97;0,04;13,88;49,02;0;France;Western Europe;"Edimark Sante";"2009, 2012-2025";"Endocrinology, Diabetes and Metabolism (Q4); Food Science (Q4); Internal Medicine (Q4)";"Agricultural and Biological Sciences; Medicine" +30554;21100215124;"Critica del Testo";journal;"11271140, 20365853";"Viella";No;No;0,102;Q4;4;0;67;0;3;61;0,04;0,00;0,00;0;Italy;Western Europe;"Viella";"2012-2024";"Linguistics and Language (Q4)";"Social Sciences" +30555;21101046211;"Dejiny - Teorie - Kritika";journal;"24645370, 12147249";"Charles University - Faculty of Humanities";Yes;No;0,102;Q4;2;10;43;776;5;34;0,17;77,60;40,00;0;Czech Republic;Eastern Europe;"Charles University - Faculty of Humanities";"2019-2025";"History (Q4)";"Arts and Humanities" +30556;21100416319;"Digithum";journal;"15752275";"Universitat Oberta de Catalunya";Yes;Yes;0,102;Q4;8;0;29;0;6;28;0,24;0,00;0,00;0;Spain;Western Europe;"Universitat Oberta de Catalunya";"2015-2024";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30557;21100456707;"Dubrovnik Annals";journal;"13313878, 18488153";"Croatian Academy of Sciences and Arts";Yes;Yes;0,102;Q4;4;5;15;123;2;13;0,10;24,60;60,00;0;Croatia;Eastern Europe;"Croatian Academy of Sciences and Arts";"2015-2025";"History (Q4)";"Arts and Humanities" +30558;21101145674;"Economia Pubblica";journal;"03906140, 19725566";"FrancoAngeli";No;No;0,102;Q4;3;14;69;272;2;54;0,04;19,43;50,00;0;Italy;Western Europe;"FrancoAngeli";"2019-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4)";"Economics, Econometrics and Finance" +30559;5100152201;"Education in Chemistry";journal;"00131350";"Royal Society of Chemistry";No;No;0,102;Q4;9;0;21;0;0;13;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"1974-1975, 1978-1979, 1984-1986, 1989, 2006-2022";"Chemistry (miscellaneous) (Q4); Education (Q4)";"Chemistry; Social Sciences" +30560;21101320799;"Energeia";journal;"18694233";"University of Zurich";Yes;No;0,102;Q4;1;14;20;660;3;15;0,15;47,14;35,71;0;Switzerland;Western Europe;"University of Zurich";"2023-2025";"Linguistics and Language (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30561;17700156011;"Enfances et Psy";journal;"12865559, 17762820";"ERES";No;No;0,102;Q4;10;0;115;0;8;101;0,08;0,00;0,00;0;France;Western Europe;"ERES";"2000-2024";"Developmental and Educational Psychology (Q4); Education (Q4); Sociology and Political Science (Q4)";"Psychology; Social Sciences" +30562;145456;"Entomotropica";journal;"13175262";"Sociedad Venezolana de Entomologia";No;No;0,102;Q4;14;10;13;198;2;13;0,25;19,80;26,67;0;Venezuela;Latin America;"Sociedad Venezolana de Entomologia";"2004-2016, 2019-2025";"Insect Science (Q4)";"Agricultural and Biological Sciences" +30563;21101189041;"Estudios Bizantinos";journal;"29521432, 20149999";"Universidad de Alcala";Yes;Yes;0,102;Q4;3;9;20;508;2;20;0,00;56,44;22,22;0;Spain;Western Europe;"Universidad de Alcala";"2019-2025";"Archeology (arts and humanities) (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30564;23567;"Estudios de Asia y Africa";journal;"2448654X, 01850164";"Colegio de Mexico, A.C., Departamento de Publicaciones";Yes;Yes;0,102;Q4;5;11;64;360;7;63;0,02;32,73;27,27;0;Mexico;Latin America;"Colegio de Mexico, A.C., Departamento de Publicaciones";"1984, 2014-2026";"Anthropology (Q4); Cultural Studies (Q4); Linguistics and Language (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30565;78798;"Ethnologie Francaise";journal;"00462616";"Presses Universitaires de France, Departement des Revues";No;No;0,102;Q4;16;0;103;0;7;96;0,07;0,00;0,00;0;France;Western Europe;"Presses Universitaires de France, Departement des Revues";"1971, 1976, 1981, 2001-2024";"Anthropology (Q4); Cultural Studies (Q4)";"Social Sciences" +30566;21101185305;"Eudora Welty Review";journal;"19473370, 2165266X";"University of Pennsylvania Press";No;No;0,102;Q4;3;18;52;224;2;20;0,03;12,44;76,47;0;United States;Northern America;"University of Pennsylvania Press";"2019-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30567;21101392384;"Ex Novo Journal of Archaeology";journal;"25318810";"Archaeopress";No;No;0,102;Q4;2;0;21;0;1;15;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Archaeopress";"2021-2024";"Anthropology (Q4); Archeology (Q4); Archeology (arts and humanities) (Q4); Gender Studies (Q4)";"Arts and Humanities; Social Sciences" +30568;21101045322;"Feminist German Studies";journal;"25785192, 25785206";"University of Nebraska Press";No;No;0,102;Q4;4;0;46;0;6;40;0,06;0,00;0,00;0;United States;Northern America;"University of Nebraska Press";"2018-2024";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Gender Studies (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30569;16200154726;"Film Criticism";journal;"01635069";"Allegheny College";Yes;Yes;0,102;Q4;17;0;22;0;2;20;0,09;0,00;0,00;0;United States;Northern America;"Allegheny College";"2002-2020, 2023-2024";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30570;21100920225;"Film Fashion and Consumption";journal;"20442823, 20442831";"Intellect Ltd.";No;No;0,102;Q4;4;7;47;351;10;43;0,18;50,14;57,14;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Communication (Q4); Cultural Studies (Q4); History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30571;22521;"Fleischwirtschaft";trade journal;"0015363X";"Deutscher Fachverlag GmbH";No;No;0,102;Q4;18;0;13;0;0;13;0,00;0,00;0,00;0;Germany;Western Europe;"Deutscher Fachverlag GmbH";"1973-1981, 1983-1989, 1996-1998, 2002-2014, 2016, 2018, 2022";"Food Science (Q4)";"Agricultural and Biological Sciences" +30572;28170;"Florida Geographer";journal;"07390041";"Florida State University";No;No;0,102;Q4;5;0;18;0;0;16;0,00;0,00;0,00;0;United States;Northern America;"Florida State University";"1983-1992, 1996-2018, 2021, 2023-2024";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +30573;21100874718;"Fonetica si Dialectologie";journal;"00716855";"Publishing House of the Romanian Academy";No;No;0,102;Q4;3;0;13;0;0;13;0,00;0,00;0,00;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2012-2018, 2020, 2023";"Linguistics and Language (Q4)";"Social Sciences" +30574;16400154702;"Francia. Forschungen zur Westeuropaischen Geschichte";journal;"09377743";"Jan Thorbecke Verlag der Schwabenverlag AG";No;No;0,102;Q4;8;0;20;0;2;20;0,00;0,00;0,00;0;Germany;Western Europe;"Jan Thorbecke Verlag der Schwabenverlag AG";"1983, 2002-2007, 2010-2012, 2014, 2016-2018, 2020-2022";"History (Q4)";"Arts and Humanities" +30575;19700182806;"French Colonial History";journal;"15393402, 15437787";"Michigan State University";No;No;0,102;Q4;7;13;14;1206;0;13;0,00;92,77;50,00;0;United States;Northern America;"Michigan State University";"2010-2014, 2016-2017, 2019-2021, 2023, 2025";"History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30576;21100198938;"Fuzzy Economic Review";journal;"11360593, 24454192";"Int. Association for Fuzzy-Set Management and Economy";No;No;0,102;Q4;13;0;20;0;0;20;0,00;0,00;0,00;0;Spain;Western Europe;"Int. Association for Fuzzy-Set Management and Economy";"2002-2024";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +30577;21101121714;"Gemmae";journal;"2612789X, 2704663X";"Fabrizio Serra Editore Srl";No;No;0,102;Q4;2;0;15;0;0;14;0,00;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2023";"Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30578;19900191712;"General Anthropology";journal;"15371727, 19393466";"Wiley-Blackwell Publishing Ltd";No;No;0,102;Q4;8;8;18;113;3;17;0,00;14,13;55,56;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1994-1995, 2003-2025";"Anthropology (Q4)";"Social Sciences" +30579;21100202743;"German Historical Institute London Bulletin";journal;"02698552";"German Historical Institute";No;No;0,102;Q4;6;6;45;245;9;45;0,08;40,83;42,86;0;United Kingdom;Western Europe;"German Historical Institute";"2011-2025";"History (Q4)";"Arts and Humanities" +30580;16100154752;"GESTA-International Center of Medieval Art";journal;"0016920X, 21693099";"University of Chicago Press";No;No;0,102;Q4;17;10;24;163;9;24;0,31;16,30;45,45;0;United States;Northern America;"University of Chicago Press";"2002-2006, 2008-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30581;21101283817;"Global Africa";journal;"30200458";"Gaston Berger University";No;No;0,102;Q4;2;19;87;527;5;50;0,03;27,74;42,11;0;Senegal;Africa;"Gaston Berger University";"2022-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30582;21100202747;"GMP Review";journal;"14764547";"Euromed Communications";No;No;0,102;Q4;3;14;19;69;1;16;0,08;4,93;40,00;0;United Kingdom;Western Europe;"Euromed Communications";"2011-2015, 2017-2025";"Pharmaceutical Science (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +30583;21101388284;"Goettingen Journal of International Law";journal;"18681581";"Universitatsverlag Gottingen";No;No;0,102;Q4;2;12;19;319;4;14;0,27;26,58;27,27;0;Germany;Western Europe;"Universitatsverlag Gottingen";"2021-2025";"Law (Q4)";"Social Sciences" +30584;21100465444;"Gothic Studies";journal;"2050456X, 13627937";"Edinburgh University Press";No;No;0,102;Q4;17;22;59;625;21;55;0,08;28,41;52,63;0;United Kingdom;Western Europe;"Edinburgh University Press";"1999-2013, 2016-2025";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +30585;28859;"Gymnasium";journal;"03425231";"Universitaetsverlag Winter GmbH";Yes;No;0,102;Q4;7;0;50;0;2;50;0,06;0,00;0,00;0;Germany;Western Europe;"Universitaetsverlag Winter GmbH";"1970, 1976, 2009-2024";"Classics (Q4); Education (Q4)";"Arts and Humanities; Social Sciences" +30586;21100426624;"Handbook of Oriental Studies. Section 1, The Near and Middle East";book series;"01699423";"Brill Academic Publishers";No;No;0,102;Q4;12;60;185;6920;45;14;0,23;115,33;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2026";"Anthropology (Q4); Archeology (arts and humanities) (Q4); Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30587;24121;"Harvard Journal of Asiatic Studies";journal;"19446454, 00730548";"Harvard-Yenching Institute";No;No;0,102;Q4;4;8;22;782;3;17;0,07;97,75;14,29;0;United States;Northern America;"Harvard-Yenching Institute";"2001-2002, 2019-2025";"Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30588;21100456853;"Histoire des Alpes - Storia delle Alpi - Geschichte der Alpen";book series;"16608070";"Chronos Verlag SA";No;No;0,102;Q4;5;14;50;622;3;16;0,00;44,43;0,00;0;Switzerland;Western Europe;"Chronos Verlag SA";"2015-2025";"History (Q4)";"Arts and Humanities" +30589;21101241671;"Historiallisia Tutkimuksia";book series;"26703866, 00732559";"Suomalaisen Kirjallisuuden Seura";No;No;0,102;Q4;2;11;64;183;2;16;0,03;16,64;0,00;0;Finland;Western Europe;"Suomalaisen Kirjallisuuden Seura";"2021-2025";"History (Q4)";"Arts and Humanities" +30590;15229;"Historian";journal;"15406563, 00182370";"Taylor and Francis Ltd.";No;No;0,102;Q4;19;15;46;71;4;38;0,03;4,73;42,11;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1938-2025";"History (Q4)";"Arts and Humanities" +30591;19442;"Historicka Demografie";journal;"25709259, 03230937";"Czech Academy of Sciences";No;No;0,102;Q4;4;5;23;224;6;20;0,25;44,80;22,22;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences";"1991, 2011-2025";"Demography (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30592;21100455558;"History of Mechanism and Machine Science";book series;"18753426, 18753442";"Springer Netherlands";No;No;0,102;Q4;9;30;122;1867;38;38;0,21;62,23;0,00;0;Netherlands;Western Europe;"Springer Netherlands";"2007-2025";"History (Q4); Mechanical Engineering (Q4)";"Arts and Humanities; Engineering" +30593;144770;"Hong Kong Journal of Dermatology and Venereology";journal;"2663483X, 18147453";"Medcom Limited";No;No;0,102;Q4;6;9;21;157;1;16;0,10;17,44;33,33;0;Hong Kong;Asiatic Region;"Medcom Limited";"2005-2023, 2025";"Dermatology (Q4)";"Medicine" +30594;20500195041;"Hotel Management";journal;"21582122";"Advanstar Communications Inc.";No;No;0,102;Q4;4;104;370;5;7;89;0,02;0,05;83,33;0;United States;Northern America;"Advanstar Communications Inc.";"2011-2026";"Business and International Management (Q4); Tourism, Leisure and Hospitality Management (Q4)";"Business, Management and Accounting" +30595;13481;"Hrvatski Meteoroloski Casopis";journal;"13300083";"Hrvatsko Meteorolosko Drustvo";Yes;No;0,102;Q4;12;0;20;0;0;18;0,00;0,00;0,00;0;Croatia;Eastern Europe;"Hrvatsko Meteorolosko Drustvo";"1991-1998, 2000-2001, 2003-2008, 2011-2013, 2015-2019, 2023-2024";"Atmospheric Science (Q4)";"Earth and Planetary Sciences" +30596;21101290594;"Indian Journal of Intellectual Property Law";journal;"0975492X, 2278862X";"NALSAR University of Law";No;No;0,102;Q4;2;7;23;68;1;20;0,06;9,71;33,33;0;India;Asiatic Region;"NALSAR University of Law";"2022-2025";"Education (Q4); Law (Q4)";"Social Sciences" +30597;21100898996;"Innes Review";journal;"17455219, 0020157X";"Edinburgh University Press";No;No;0,102;Q4;13;8;20;296;1;15;0,09;37,00;40,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996-2025";"Cultural Studies (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30598;21101285929;"International Conference on Computer and Communication Engineering Technology, CCET";journal;"28365992, 28365984";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,102;Q4;1;50;55;775;8;53;0,15;15,50;38,52;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024-2025";"Computer Networks and Communications (Q4); Computer Vision and Pattern Recognition (Q4); Control and Optimization (Q4); Information Systems and Management (Q4); Signal Processing (Q4)";"Computer Science; Decision Sciences; Mathematics" +30599;21101272551;"International Conference on Power and Energy Applications, ICPEA";journal;"28378423";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,102;Q4;1;0;138;0;19;136;0,14;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Computer Science; Energy; Engineering" +30600;21101034468;"International Journal of Anglo-Indian Studies";journal;"13271652";"Massey University";No;No;0,102;Q4;1;6;28;61;1;19;0,06;10,17;50,00;0;New Zealand;Pacific Region;"Massey University";"2019-2025";"Anthropology (Q4); Arts and Humanities (miscellaneous) (Q4); History (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30601;21100976771;"International Journal of Persian Literature";journal;"23765755, 23765739";"Penn State University Press";No;No;0,102;Q4;5;9;23;568;0;20;0,00;63,11;57,14;0;United States;Northern America;"Penn State University Press";"2016-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30602;65544;"IRYO - Japanese Journal of National Medical Services";journal;"00211699";"Japanese Society of National Medical Services";No;No;0,102;Q4;4;19;211;66;1;210;0,00;3,47;22,03;0;Japan;Asiatic Region;"Japanese Society of National Medical Services";"1949-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30603;16000154783;"Istanbuler Mitteilungen";journal;"03419142";"Reimer Gebr. Mann Verlag";No;No;0,102;Q4;15;0;19;0;3;18;0,09;0,00;0,00;0;Germany;Western Europe;"Reimer Gebr. Mann Verlag";"2002-2016, 2018-2023";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +30604;145549;"ITNOW";trade journal;"17465710, 17465702";"Oxford University Press";No;No;0,102;Q4;10;70;318;0;19;287;0,04;0,00;30,77;0;United Kingdom;Western Europe;"Oxford University Press";"1995-2025";"Computer Science Applications (Q4); Hardware and Architecture (Q4); Software (Q4); Theoretical Computer Science (Q4)";"Computer Science; Mathematics" +30605;13946;"Japanese Journal of Clinical Ophthalmology";journal;"18821308, 03705579";"Igaku-Shoin Ltd";No;No;0,102;Q4;9;0;17;0;0;17;0,00;0,00;0,00;0;Japan;Asiatic Region;"Igaku-Shoin Ltd";"1960-1964, 1973-2022";"Ophthalmology (Q4)";"Medicine" +30606;20496;"Japanese Journal of Clinical Urology";journal;"03852393";"Igaku-Shoin Ltd";No;No;0,102;Q4;4;0;14;0;0;14;0,00;0,00;0,00;0;Japan;Asiatic Region;"Igaku-Shoin Ltd";"1973-2022";"Urology (Q4)";"Medicine" +30607;25339;"Japanese Journal of Gastroenterological Surgery";journal;"13489372, 03869768";"Japanese Society of Gastroenterological Surgery";No;No;0,102;Q4;10;97;279;1989;9;245;0,03;20,51;12,68;0;Japan;Asiatic Region;"Japanese Society of Gastroenterological Surgery";"1970, 1973-2026";"Gastroenterology (Q4); Surgery (Q4)";"Medicine" +30608;22960;"Japanese Journal of Leprosy";journal;"13423681, 1884314X";"Japanese Leprosy Association";No;No;0,102;Q4;7;2;13;9;0;13;0,00;4,50;0,00;0;Japan;Asiatic Region;"Japanese Leprosy Association";"1978-2025";"Dermatology (Q4); Infectious Diseases (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +30609;12751;"Japanese Journal of Neurosurgery";journal;"0917950X";"Japanese Congress of Neurological Surgeons";No;No;0,102;Q4;8;17;231;463;7;229;0,03;27,24;12,77;0;Japan;Asiatic Region;"Japanese Congress of Neurological Surgeons";"1994-2025";"Neurology (clinical) (Q4); Surgery (Q4)";"Medicine" +30610;26510;"Japanese Journal of Southeast Asian Studies";journal;"24241377, 05638682";"Center for Southeast Asian Studies";Yes;No;0,102;Q4;21;6;20;267;3;20;0,09;44,50;0,00;0;Japan;Asiatic Region;"Center for Southeast Asian Studies";"1978-2010, 2012-2026";"Development (Q4); Geography, Planning and Development (Q4); Political Science and International Relations (Q4)";"Social Sciences" +30611;36573;"JEC Composites Magazine";trade journal;"1639965X";"JEC Composites Magazine";No;No;0,102;Q4;11;0;59;0;1;59;0,00;0,00;0,00;0;France;Western Europe;"JEC Composites Magazine";"2003-2019, 2021-2022";"Ceramics and Composites (Q4); Materials Science (miscellaneous) (Q4)";"Materials Science" +30612;17500155148;"Journal Africain d'Hepato-Gastroenterologie";journal;"19543212, 19543204";"Lavoisier";No;No;0,102;Q4;7;0;19;0;0;14;0,00;0,00;0,00;0;France;Western Europe;"Lavoisier";"2009-2017, 2019-2023";"Gastroenterology (Q4); Hepatology (Q4); Infectious Diseases (Q4)";"Medicine" +30613;21100228103;"Journal Europeen des Urgences et de Reanimation";journal;"22114238";"Elsevier Masson s.r.l.";No;No;0,102;Q4;4;0;40;0;2;28;0,00;0,00;0,00;0;France;Western Europe;"Elsevier Masson s.r.l.";"2011-2023";"Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4)";"Medicine" +30614;19700174981;"Journal fur Pharmakologie und Therapie";journal;"14324334";"Verlag Perfusion GmbH";No;No;0,102;Q4;2;0;126;0;0;13;0,00;0,00;0,00;0;Germany;Western Europe;"Verlag Perfusion GmbH";"2007-2020, 2022-2024";"Pharmacology (medical) (Q4)";"Medicine" +30615;21100975676;"Journal of Ancient Civilizations";journal;"10049371";"Institute for the History of Ancient Civilizations";No;No;0,102;Q4;4;13;28;368;6;16;0,05;28,31;14,29;0;China;Asiatic Region;"Institute for the History of Ancient Civilizations";"2018-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30616;21101043376;"Journal of Business Ethics Education";journal;"16495195, 20444559";"NeilsonJournals Publishing";No;No;0,102;Q4;4;3;42;142;3;41;0,04;47,33;50,00;0;United Kingdom;Western Europe;"NeilsonJournals Publishing";"2019-2024";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4); Education (Q4); Philosophy (Q4)";"Arts and Humanities; Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +30617;21100896265;"Journal of China and International Relations";journal;"22458921";"Aalborg University";Yes;Yes;0,102;Q4;3;0;13;0;1;13;0,00;0,00;0,00;0;Denmark;Western Europe;"Aalborg University";"2018-2019, 2022";"Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Economics, Econometrics and Finance; Social Sciences" +30618;23370;"Journal of Environmental Law and Litigation";journal;"10490280";"University of Oregon";No;No;0,102;Q4;14;8;15;1365;1;14;0,07;170,63;37,50;0;United States;Northern America;"University of Oregon";"1996-2021, 2023-2025";"Geography, Planning and Development (Q4); Law (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +30619;21100979263;"Journal of Japanese Linguistics";journal;"01973150, 25121413";"De Gruyter Mouton";No;No;0,102;Q4;9;14;39;414;5;31;0,11;29,57;42,11;0;Germany;Western Europe;"De Gruyter Mouton";"1998, 2001-2025";"Education (Q4); Linguistics and Language (Q4)";"Social Sciences" +30620;21101197265;"Journal of Japonisme";journal;"24054984, 24054992";"Brill Academic Publishers";No;No;0,102;Q4;3;10;16;65;1;16;0,10;6,50;62,50;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +30621;21100211113;"Journal of Managed Care Medicine";journal;"10941525";"National Association of Managed Care Physicians, Inc.";No;No;0,102;Q4;4;0;88;0;1;88;0,02;0,00;0,00;0;United States;Northern America;"National Association of Managed Care Physicians, Inc.";"2012-2014, 2019-2023";"Health Policy (Q4)";"Medicine" +30622;15950;"Journal of Medical and Dental Sciences";journal;"13428810, 21859132";"Tokyo Medical and Dental University";No;No;0,102;Q4;34;0;13;0;0;13;0,00;0,00;0,00;0;Japan;Asiatic Region;"Tokyo Medical and Dental University";"1996-2024";"Dentistry (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Dentistry; Medicine" +30623;21101125598;"Journal of Modern Russian History and Historiography";journal;"22102388, 19479956";"Brill Schoningh";No;No;0,102;Q4;5;7;17;1353;1;17;0,00;193,29;0,00;0;Germany;Western Europe;"Brill Schoningh";"2008-2020, 2022-2023, 2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4)";"Arts and Humanities" +30624;21100316610;"Journal of Moravian History";journal;"19336632, 21616310";"Penn State University Press";No;No;0,102;Q4;6;0;19;0;2;19;0,33;0,00;0,00;0;United States;Northern America;"Penn State University Press";"2014-2023";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30625;21100915266;"Journal of Music Research";journal;"20798857";"National Taiwan Normal University-College of Music";No;No;0,102;Q4;2;11;20;493;0;20;0,00;44,82;50,00;0;Taiwan;Asiatic Region;"National Taiwan Normal University-College of Music";"2019-2025";"Music (Q4)";"Arts and Humanities" +30626;21100933252;"Journal of Plastination";journal;"23117761, 2311777X";"International Society for Plastination";Yes;No;0,102;Q4;4;4;15;66;0;15;0,00;16,50;0,00;0;United States;Northern America;"International Society for Plastination";"2019-2025";"Anatomy (Q4); Medical Laboratory Technology (Q4); Pathology and Forensic Medicine (Q4)";"Health Professions; Medicine" +30627;21100403915;"Journal of Religion in Japan";journal;"22118349, 22118330";"Brill Academic Publishers";No;No;0,102;Q4;12;6;16;250;1;15;0,08;41,67;83,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012-2026";"Religious Studies (Q4)";"Arts and Humanities" +30628;21100898975;"Journal of Scottish Historical Studies";journal;"1748538X, 17551749";"Edinburgh University Press";No;No;0,102;Q4;13;5;20;267;6;20;0,36;53,40;20,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996-2025";"Anthropology (Q4); Cultural Studies (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); History (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +30629;21101174189;"Journal of Sindhi Studies";journal;"26670925";"Brill Academic Publishers";No;No;0,102;Q4;3;2;14;165;2;14;0,00;82,50;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2021-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30630;30856;"Journal of Tokyo Medical University";journal;"00408905";"Medical Society of Tokyo Medical College";No;No;0,102;Q4;5;12;124;285;3;117;0,02;23,75;16,67;0;Japan;Asiatic Region;"Medical Society of Tokyo Medical College";"1965-1971, 1973-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30631;19400157219;"Journal of Veterinary Parasitology";journal;"09711031";"Indian Association for the Advancement of Veterinary Parasitology";No;No;0,102;Q4;13;0;53;0;2;51;0,03;0,00;0,00;0;India;Asiatic Region;"Indian Association for the Advancement of Veterinary Parasitology";"2007-2024";"Veterinary (miscellaneous) (Q4)";"Veterinary" +30632;6000170488;"Judaica Bohemiae";journal;"00225738";"Jewish Museum in Prague";No;No;0,102;Q4;5;4;25;486;4;15;0,07;121,50;50,00;0;Czech Republic;Eastern Europe;"Jewish Museum in Prague";"2007, 2009-2025";"Cultural Studies (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30633;21101070239;"Knihy a Dejiny";journal;"12108510, 25712322";"Library of the Czech Academy of Sciences (LCAS)";No;No;0,102;Q4;2;5;22;141;3;17;0,07;28,20;75,00;0;Czech Republic;Eastern Europe;"Library of the Czech Academy of Sciences (LCAS)";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +30634;22705;"Konstruktion";journal;"07205953";"VDI Fachmedien GmBbH & Co.";No;No;0,102;Q4;9;137;286;216;4;148;0,02;1,58;17,11;0;Germany;Western Europe;"VDI Fachmedien GmBbH & Co.";"1969, 1972-1978, 1980-1992, 1994-2002, 2004-2026";"Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Theoretical Computer Science (Q4)";"Engineering; Materials Science; Mathematics" +30635;21101061966;"Kronos";journal;"18971555, 23920963";"";No;No;0,102;Q4;1;0;26;0;0;14;0,00;0,00;0,00;0;Poland;Eastern Europe;"";"2019-2021, 2023-2024";"Philosophy (Q4)";"Arts and Humanities" +30636;5700163879;"KronoScope";journal;"1567715X, 15685241";"Brill Academic Publishers";No;No;0,102;Q4;12;14;37;288;5;32;0,08;20,57;11,76;0;Netherlands;Western Europe;"Brill Academic Publishers";"2001-2025";"Astronomy and Astrophysics (Q4); History and Philosophy of Science (Q4); Philosophy (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Physics and Astronomy; Social Sciences" +30637;21101032316;"Kyiv-Mohyla Humanities Journal";journal;"23134895";"National University of Kyiv-Mohyla Academy";Yes;Yes;0,102;Q4;4;10;38;262;6;35;0,23;26,20;50,00;0;Ukraine;Eastern Europe;"National University of Kyiv-Mohyla Academy";"2019-2025";"History (Q4); Literature and Literary Theory (Q4); Philosophy (Q4)";"Arts and Humanities" +30638;7700153110;"Le Mali medical";journal;"19930836, 04647874";"Faculte de Medecine, de Pharmacie et d'Odonto-Stomatologie";No;No;0,102;Q4;8;0;139;0;8;139;0,05;0,00;0,00;0;Mali;Africa;"Faculte de Medecine, de Pharmacie et d'Odonto-Stomatologie";"2006-2012, 2017-2018, 2020-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +30639;16363;"Lettere Italiane";journal;"00241334, 20356315";"Casa Editrice Leo S. Olschki";No;No;0,102;Q4;5;14;51;76;1;20;0,00;5,43;0,00;0;Italy;Western Europe;"Casa Editrice Leo S. Olschki";"1987, 2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30640;21101329148;"Lietuvos Chirurgija";journal;"16489942, 13920995";"Vilnius University Press";Yes;No;0,102;Q4;1;31;74;635;2;73;0,02;20,48;42,86;0;Lithuania;Eastern Europe;"Vilnius University Press";"2021-2025";"Surgery (Q4)";"Medicine" +30641;19700169127;"Lithuanian Historical Studies";journal;"25386565, 13922343";"Brill Schoningh";Yes;No;0,102;Q4;7;6;16;217;1;16;0,09;36,17;33,33;0;Germany;Western Europe;"Brill Schoningh";"1996-2015, 2017-2025";"Cultural Studies (Q4); History (Q4); Religious Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30642;16300154785;"Lotus International";journal;"11249064";"Editoriale Lotus";No;No;0,102;Q4;4;0;115;0;2;102;0,00;0,00;0,00;0;Italy;Western Europe;"Editoriale Lotus";"2002-2019, 2021-2022, 2024";"Architecture (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering" +30643;26190;"Lymphologie in Forschung und Praxis";journal;"14335255";"WPV Wirtschafts- und Praxisverlag GmbH";No;No;0,102;Q4;10;0;20;0;4;14;0,00;0,00;0,00;0;Germany;Western Europe;"WPV Wirtschafts- und Praxisverlag GmbH";"1999-2022";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +30644;13637;"Manufacturing Chemist";trade journal;"02624230";"HPCi Media LTD";No;No;0,102;Q4;7;0;18;0;0;18;0,00;0,00;0,00;0;United Kingdom;Western Europe;"HPCi Media LTD";"1981-1984, 1986, 1989, 1996-2001, 2006-2022";"Pharmaceutical Science (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +30645;145738;"Mappemonde";journal;"17697298";"Revue Mappemonde";Yes;Yes;0,102;Q4;12;17;57;401;2;52;0,06;23,59;39,13;0;France;Western Europe;"Revue Mappemonde";"1996-2001, 2004-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +30646;21101292829;"Maritime Safety and Security Law Journal";journal;"24649724";"CNR - ISGI Istituto di Studi Giuridici Internazionali";No;No;0,102;Q4;1;3;18;30;2;17;0,08;10,00;0,00;0;Italy;Western Europe;"CNR - ISGI Istituto di Studi Giuridici Internazionali";"2021-2025";"Law (Q4)";"Social Sciences" +30647;21101142785;"Marmora";journal;"18246214, 18268072";"Fabrizio Serra Editore";No;No;0,102;Q4;2;0;23;0;1;17;0,00;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); Arts and Humanities (miscellaneous) (Q4); Classics (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30648;21372;"Mediaeval Studies";journal;"00765872";"Pontifical Institute of Mediaeval Studies";No;No;0,102;Q4;6;0;17;0;0;17;0,00;0,00;0,00;0;Canada;Northern America;"Pontifical Institute of Mediaeval Studies";"1960, 1962, 1970, 1975, 1977-1980, 1983, 2012-2014, 2016-2020, 2022";"History (Q4)";"Arts and Humanities" +30649;21100943307;"Medieval Low Countries";journal;"25070363, 22953493";"Brepols Publishers";No;No;0,102;Q4;3;0;14;0;0;13;0,00;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2019-2024";"History (Q4)";"Arts and Humanities" +30650;11700154341;"Mediterranean Studies";journal;"1074164X, 21614741";"Pennsylvania State University";No;No;0,102;Q4;11;0;22;0;2;18;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Pennsylvania State University";"2001, 2007-2010, 2012-2023";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30651;27845;"Military Law Review";journal;"00264040, 15549569";"U.S. Army Judge Advocate Generals Corps.";No;No;0,102;Q4;15;9;16;1733;3;16;0,19;192,56;25,00;0;United States;Northern America;"U.S. Army Judge Advocate Generals Corps.";"1973, 1987, 1989, 1995-2020, 2023-2025";"Law (Q4)";"Social Sciences" +30652;16300154788;"Mitteilungen zur Christlichen Archaologie";journal;"18142036, 10256555";"Verlag der Oesterreichischen Akademie der Wissenschaften";No;No;0,102;Q4;6;4;19;347;3;15;0,25;86,75;60,00;0;Austria;Western Europe;"Verlag der Oesterreichischen Akademie der Wissenschaften";"2002-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30653;21101393103;"Modapalavra e-periódico";journal;"1982615X";"State University of Santa Catarina";No;No;0,102;Q4;2;34;65;1078;2;58;0,02;31,71;62,50;0;Brazil;Latin America;"State University of Santa Catarina";"2021-2026";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30654;24474;"Modern Philology";journal;"00268232, 15456951";"University of Chicago Press";No;No;0,102;Q4;21;24;74;665;20;63;0,20;27,71;34,78;0;United States;Northern America;"University of Chicago Press";"1905, 1925, 1984, 1986, 1996-2026";"Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30655;23016;"Montana : the magazine of western history";journal;"00269891";"Montana Historical Society";No;No;0,102;Q4;6;16;90;0;3;73;0,05;0,00;35,71;0;United States;Northern America;"Montana Historical Society";"1971, 1973, 1983, 1985, 1987, 2000, 2002-2025";"History (Q4)";"Arts and Humanities" +30656;21101039070;"Montesquieu.it";journal;"24214124";"Dipartimento di Filosofia e Comunicazione";Yes;Yes;0,102;Q4;1;1;22;378;1;18;0,00;378,00;0,00;0;Italy;Western Europe;"Dipartimento di Filosofia e Comunicazione";"2019-2025";"History (Q4); Law (Q4); Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30657;21100902870;"Music in Art";journal;"15227464, 21699488";"City University of New York";No;No;0,102;Q4;2;0;38;0;1;13;0,04;0,00;0,00;0;United States;Northern America;"City University of New York";"2018-2024";"History (Q4); Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30658;16100154715;"Musik und Kirche";journal;"00274771";"Baerenreiter Verlag";No;No;0,102;Q4;2;0;16;0;0;13;0,00;0,00;0,00;0;Germany;Western Europe;"Baerenreiter Verlag";"2002-2012, 2014-2018, 2020, 2022";"Music (Q4)";"Arts and Humanities" +30659;25018;"Neuphilologische Mitteilungen";journal;"27369714, 00283754";"Uusfilologinen Yhdistys (Modern Language Society)";Yes;Yes;0,102;Q4;10;21;56;760;9;52;0,18;36,19;66,67;0;Finland;Western Europe;"Uusfilologinen Yhdistys (Modern Language Society)";"1971, 1974, 1977, 1980, 2002-2015, 2017-2025";"Linguistics and Language (Q4)";"Social Sciences" +30660;21101070365;"New Zealand Journal of Asian Studies";journal;"11748915";"New Zealand Asian Studies Society (NZASIA)";No;No;0,102;Q4;2;13;46;381;4;43;0,08;29,31;69,23;0;New Zealand;Pacific Region;"New Zealand Asian Studies Society (NZASIA)";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Religious Studies (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30661;28928;"Northeast African Studies";journal;"15356574, 07409133";"Michigan State University Press";No;No;0,102;Q4;13;0;26;0;2;24;0,00;0,00;0,00;0;United States;Northern America;"Michigan State University Press";"1985, 1999-2002, 2004, 2011-2023";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30662;22413;"Northern Scotland";journal;"03065278, 20422717";"Edinburgh University Press";No;No;0,102;Q4;10;8;29;601;1;27;0,00;75,13;25,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"1979, 1981, 1996-2004, 2007, 2010-2025";"Anthropology (Q4); Cultural Studies (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Geography, Planning and Development (Q4); History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +30663;21101176036;"Norwegian-American Studies";journal;"00781983, 26438437";"University of Minnesota Press";No;No;0,102;Q4;1;8;22;272;0;18;0,00;34,00;62,50;0;United States;Northern America;"University of Minnesota Press";"2019-2025";"History (Q4)";"Arts and Humanities" +30664;21101081870;"Notes Konserwatorski";journal;"26573083, 15095681";"National Library of Poland";No;No;0,102;Q4;2;7;23;192;0;20;0,00;27,43;71,43;0;Poland;Eastern Europe;"National Library of Poland";"2019, 2021-2025";"Conservation (Q4); Museology (Q4)";"Arts and Humanities" +30665;145015;"Nuclear Future";journal;"17452058";"Nuclear Institute";No;No;0,102;Q4;14;0;122;0;2;89;0,02;0,00;0,00;0;United Kingdom;Western Europe;"Nuclear Institute";"2005-2006, 2008-2013, 2018-2019, 2022-2024";"Civil and Structural Engineering (Q4); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4); Nuclear Energy and Engineering (Q4); Ocean Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)";"Energy; Engineering" +30666;21100272906;"Nursing Care and Research";journal;"22413960, 17911567";"Society of Nursing Studies";No;No;0,102;Q4;2;9;37;259;1;35;0,00;28,78;72,73;0;Greece;Western Europe;"Society of Nursing Studies";"2013-2025";"Nursing (miscellaneous) (Q4)";"Nursing" +30667;28377;"Oceanus";journal;"00298182";"Woods Hole Oceanographic Institution";No;No;0,102;Q4;5;21;59;0;0;18;0,00;0,00;50,00;0;United States;Northern America;"Woods Hole Oceanographic Institution";"1974-1976, 1978-1994, 2005-2014, 2016-2025";"Oceanography (Q4)";"Earth and Planetary Sciences" +30668;21100304264;"Olba";journal;"13017667";"Mersin University";No;No;0,102;Q4;7;0;17;0;4;17;0,00;0,00;0,00;0;Turkey;Middle East;"Mersin University";"2009-2014, 2016-2019, 2022";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +30669;86349;"Oral Therapeutics and Pharmacology";journal;"02881012";"Japanese Society of Oral Therapeutics and Pharmacology";No;No;0,102;Q4;6;4;14;65;0;13;0,00;16,25;10,00;0;Japan;Asiatic Region;"Japanese Society of Oral Therapeutics and Pharmacology";"1982-2025";"Dentistry (miscellaneous) (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4)";"Dentistry; Medicine; Pharmacology, Toxicology and Pharmaceutics" +30670;5600152983;"Orient";journal;"00305227";"GIGA German Institute of Global and Area Studies";No;No;0,102;Q4;8;0;95;0;5;88;0,06;0,00;0,00;0;Germany;Western Europe;"GIGA German Institute of Global and Area Studies";"1982, 1990-2006, 2008-2024";"Development (Q4); Geography, Planning and Development (Q4)";"Social Sciences" +30671;13767;"Otolaryngology - Head and Neck Surgery (Japan)";journal;"09143491";"Igaku-Shoin Ltd";No;No;0,102;Q4;3;0;16;0;0;16;0,00;0,00;0,00;0;Japan;Asiatic Region;"Igaku-Shoin Ltd";"1988-2022";"Otorhinolaryngology (Q4); Surgery (Q4)";"Medicine" +30672;16300154784;"Oud Holland";journal;"18750176, 0030672X";"Brill Academic Publishers";No;No;0,102;Q4;6;8;40;867;7;36;0,22;108,38;55,56;0;Netherlands;Western Europe;"Brill Academic Publishers";"1883-1885, 1887-1888, 1891-1899, 1901-1902, 1904-1909, 1911-1912, 1914-1919, 1921-1922, 1925-1935, 1937-1943, 1946-1949, 1951-1953, 1955-1957, 1960-1971, 1973-1995, 2000, 2003-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30673;6000152908;"PAJ - Journal of Performance and Art";journal;"15379477, 1520281X";"MIT Press";No;No;0,102;Q4;15;0;126;0;6;70;0,02;0,00;0,00;0;United States;Northern America;"MIT Press";"2002-2024";"Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30674;5800169375;"Parlement[s]";journal;"17686520, 17606233";"Pepper-L'Harmattan";No;No;0,102;Q4;3;0;17;0;2;15;0,00;0,00;0,00;0;France;Western Europe;"Pepper-L'Harmattan";"2011-2013, 2019-2020, 2022";"History (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30675;29988;"Pennsylvania Geographer";journal;"05535980";"Pennsylvania Geographical Society";No;No;0,102;Q4;6;0;17;0;1;15;0,10;0,00;0,00;0;United States;Northern America;"Pennsylvania Geographical Society";"1979-2024";"Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +30676;21101068960;"Performing Ethos";journal;"17571987, 17571979";"Intellect Ltd.";No;No;0,102;Q4;3;12;22;209;1;18;0,00;17,42;66,67;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30677;21100855845;"Perfusion (Germany)";journal;"09350020";"Verlag Perfusion GmbH";No;No;0,102;Q4;7;0;128;0;0;14;0,00;0,00;0,00;0;Germany;Western Europe;"Verlag Perfusion GmbH";"2001, 2004-2019, 2021-2024";"Cardiology and Cardiovascular Medicine (Q4); Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)";"Health Professions; Medicine" +30678;21127;"Pharmaceutical Technology Europe";journal;"01646826";"Advanstar Communications Inc.";No;No;0,102;Q4;20;0;356;0;10;278;0,03;0,00;0,00;0;United States;Northern America;"Advanstar Communications Inc.";"1998-2024";"Pharmaceutical Science (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +30679;21243;"Pharmacy Times";trade journal;"00030627";"Intellisphere LLC";No;No;0,102;Q4;8;146;408;641;9;406;0,02;4,39;73,17;0;United States;Northern America;"Intellisphere LLC";"1977-1987, 2007-2025";"Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacy (Q4)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +30680;21100886141;"Philologia Classica";journal;"02022532, 26186969";"Saint Petersburg State University";No;No;0,102;Q4;4;11;78;255;13;78;0,17;23,18;45,45;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2018-2025";"Classics (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30681;21100322091;"Philosophie Antique";book series;"16344561";"Presses Universitaires du Septentrion";No;No;0,102;Q4;8;0;14;0;0;14;0,00;0,00;0,00;0;France;Western Europe;"Presses Universitaires du Septentrion";"2002, 2012-2024";"Classics (Q4); Philosophy (Q4)";"Arts and Humanities" +30682;21101257951;"Physiotherapia Croatica";journal;"18469043";"";No;No;0,102;Q4;1;6;18;136;0;18;0,00;22,67;75,00;0;Croatia;Eastern Europe;"";"2020-2025";"Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions" +30683;17100154753;"Plainsong and Medieval Music";journal;"14740087, 09611371";"Cambridge University Press";No;No;0,102;Q4;11;9;19;689;3;19;0,23;76,56;45,45;0;United Kingdom;Western Europe;"Cambridge University Press";"1992-2025";"Music (Q4)";"Arts and Humanities" +30684;14661;"Planning";journal;"00012610";"American Planning Association";No;No;0,102;Q4;13;23;118;0;1;66;0,01;0,00;64,29;0;United States;Northern America;"American Planning Association";"1979-1982, 1984, 1998-2025";"Geography, Planning and Development (Q4)";"Social Sciences" +30685;21100370877;"Poe Studies: History, Theory, Interpretation";journal;"19474644";"Johns Hopkins University Press";No;No;0,102;Q4;4;4;38;0;3;29;0,07;0,00;50,00;0;United States;Northern America;"Johns Hopkins University Press";"2013-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30686;21101043320;"Poland's Demographic Past";journal;"00797189, 27194345";"Wydawnictwo Naukowe Uniwersytetu Szczecinskiego";Yes;Yes;0,102;Q4;4;0;17;0;0;17;0,00;0,00;0,00;0;Poland;Eastern Europe;"Wydawnictwo Naukowe Uniwersytetu Szczecinskiego";"2017-2024";"History (Q4)";"Arts and Humanities" +30687;21101071784;"Popular Music History";journal;"17407133, 17431646";"Equinox Publishing Ltd";No;No;0,102;Q4;5;12;13;523;2;13;0,00;43,58;50,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2019-2023, 2025";"Music (Q4)";"Arts and Humanities" +30688;50193;"Practica Otologica";journal;"00326313";"British Ecological Society";No;No;0,102;Q4;6;145;536;2315;5;528;0,01;15,97;17,52;0;Japan;Asiatic Region;"British Ecological Society";"1925-1933, 1936, 1943, 1955-1973, 1975-2026";"Otorhinolaryngology (Q4)";"Medicine" +30689;19900191618;"Pravara Medical Review";journal;"09760164, 09750533";"Pravara Institute of Medical Sciences";Yes;No;0,102;Q4;7;45;115;935;5;114;0,03;20,78;40,71;0;India;Asiatic Region;"Pravara Institute of Medical Sciences";"2011-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30690;21100270200;"Principia";journal;"08675392, 20843887";"Komitet Slowianoznawstwa PAN";No;No;0,102;Q4;3;0;19;0;1;19;0,08;0,00;0,00;0;Poland;Eastern Europe;"Komitet Slowianoznawstwa PAN";"2011-2012, 2017-2024, 2026";"Philosophy (Q4)";"Arts and Humanities" +30691;21101171598;"Priroda (Czech Republic)";journal;"12113603";"Agency for Nature Conservation and Landscape Protection of the Czech Republic";No;No;0,102;Q4;3;13;21;881;0;20;0,00;67,77;17,39;0;Czech Republic;Eastern Europe;"Agency for Nature Conservation and Landscape Protection of the Czech Republic";"2019-2021, 2023-2026";"Ecological Modeling (Q4); Ecology (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)";"Environmental Science" +30692;21101267112;"Proceedings of the Annual Symposium of the Ultrasonic Industry Association, UIA";journal;"2162349X, 21623503";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,102;Q4;0;0;17;0;0;17;0,00;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Acoustics and Ultrasonics (Q4)";"Physics and Astronomy" +30693;17564;"Prose Studies";journal;"01440357, 17439426";"Taylor and Francis Ltd.";No;No;0,102;Q4;15;0;20;0;1;20;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1980-2003, 2005-2018, 2020-2022, 2025-2026";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30694;15263;"Pulp and Paper Canada";trade journal;"03164004";"Business Information Group";No;No;0,102;Q4;29;13;26;0;1;26;0,00;0,00;25,00;0;Canada;Northern America;"Business Information Group";"1974-1992, 1994-2026";"Chemical Engineering (miscellaneous) (Q4); Economics and Econometrics (Q4); Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Chemical Engineering; Economics, Econometrics and Finance; Engineering; Materials Science" +30695;34363;"R and D: Research and Development Kobe Steel Engineering Reports";journal;"03738868";"Kobe Steel Ltd";No;No;0,102;Q4;12;41;115;284;3;109;0,03;6,93;3,96;0;Japan;Asiatic Region;"Kobe Steel Ltd";"1978-2025";"Materials Chemistry (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +30696;21100293216;"Recherche et Formation";journal;"09881824";"Institut National de Recherche Pedagogique";No;No;0,102;Q4;10;0;13;0;0;13;0,00;0,00;0,00;0;France;Western Europe;"Institut National de Recherche Pedagogique";"2011-2022, 2026";"Education (Q4)";"Social Sciences" +30697;16200154741;"Renaissance Drama";journal;"21643415, 04863739";"University of Chicago Press";No;No;0,102;Q4;15;9;34;102;13;20;0,19;11,33;33,33;0;United States;Northern America;"University of Chicago Press";"2002-2006, 2010-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30698;21100202911;"Reports on Mathematical Logic";journal;"20842589, 01372904";"Jagiellonian University Press";No;No;0,102;Q4;9;3;16;56;0;16;0,00;18,67;25,00;0;Poland;Eastern Europe;"Jagiellonian University Press";"2011-2025";"Logic (Q4); Philosophy (Q4)";"Arts and Humanities; Mathematics" +30699;5700164110;"Retraite et Societe";journal;"11674687";"Documentation Francaise";No;No;0,102;Q4;12;0;47;0;1;39;0,03;0,00;0,00;0;France;Western Europe;"Documentation Francaise";"2001-2009, 2011-2024";"Industrial Relations (Q4); Organizational Behavior and Human Resource Management (Q4); Sociology and Political Science (Q4)";"Business, Management and Accounting; Social Sciences" +30700;21100903450;"Review of Korean Studies";journal;"27339351, 12290076";"The Academy of Korean Studies";Yes;Yes;0,102;Q4;3;17;81;474;15;71;0,19;27,88;42,86;0;South Korea;Asiatic Region;"The Academy of Korean Studies";"2018-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30701;13075;"Revisiones en Cancer";journal;"02138573";"ARAN Ediciones S.L";No;No;0,102;Q4;2;11;105;456;2;105;0,01;41,45;43,33;0;Spain;Western Europe;"ARAN Ediciones S.L";"1992-2019, 2021-2025";"Oncology (Q4)";"Medicine" +30702;21101054200;"Revista Aequitas";journal;"21749493";"Asociacion Veritas-Estudios sobre historia, derecho e instituciones";No;Yes;0,102;Q4;2;12;79;397;15;71;0,19;33,08;31,25;0;Spain;Western Europe;"Asociacion Veritas-Estudios sobre historia, derecho e instituciones";"2019-2025";"History (Q4); Law (Q4); Political Science and International Relations (Q4); Public Administration (Q4)";"Arts and Humanities; Social Sciences" +30703;21100227422;"Revista da Abordagem Gestaltica";journal;"19843542, 18096867";"Instituto de Treinamento e Pesquisa em Gestalt-terapia de Goiania";No;Yes;0,102;Q4;7;0;21;0;0;19;0,00;0,00;0,00;0;Brazil;Latin America;"Instituto de Treinamento e Pesquisa em Gestalt-terapia de Goiania";"2012-2022";"Social Psychology (Q4); Sociology and Political Science (Q4)";"Psychology; Social Sciences" +30704;21100944258;"Revista de Direito Civil Contemporaneo";journal;"23581433";"Thomson Reuters Brasil Conteudo e Tecnologia";No;No;0,102;Q4;3;0;120;0;4;99;0,03;0,00;0,00;0;Brazil;Latin America;"Thomson Reuters Brasil Conteudo e Tecnologia";"2018-2023";"Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30705;21100782426;"Revista de Historia da Sociedade e da Cultura";journal;"16452259";"University of Coimbra";Yes;Yes;0,102;Q4;5;21;66;1039;17;56;0,36;49,48;54,17;0;Portugal;Western Europe;"University of Coimbra";"2014-2025";"History (Q4)";"Arts and Humanities" +30706;21962;"Revista de la Sociedad Espanola del Dolor";journal;"22546189, 11348046";"Ediciones Doyma, S.L.";Yes;No;0,102;Q4;19;0;81;0;8;69;0,16;0,00;0,00;0;Spain;Western Europe;"Ediciones Doyma, S.L.";"1999-2024";"Anesthesiology and Pain Medicine (Q4)";"Medicine" +30707;21101262339;"Revista Historia Hoje";journal;"18063993";"Associacao Nacional de Historia";Yes;Yes;0,102;Q4;2;35;132;1005;11;109;0,09;28,71;42,31;0;Brazil;Latin America;"Associacao Nacional de Historia";"2020-2025";"Education (Q4)";"Social Sciences" +30708;27105;"Revue de Synthese";journal;"00351776, 19552343";"Brill Academic Publishers";No;No;0,102;Q4;10;22;50;1366;4;47;0,08;62,09;36,00;0;France;Western Europe;"Brill Academic Publishers";"1950-1954, 1956-1965, 1967-1972, 1979, 1981-2016, 2018-2025";"Philosophy (Q4)";"Arts and Humanities" +30709;97938;"Revue d'Egyptologie";journal;"00351849, 17831733";"Peeters Publishers";No;No;0,102;Q4;10;0;20;0;1;20;0,05;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"1974, 1996-2016, 2019-2021, 2023-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30710;16000154722;"Revue d'Histoire du Theatre";journal;"12912530";"Societe d'Histoire du Theatre";No;No;0,102;Q4;3;0;22;0;0;17;0,00;0,00;0,00;0;France;Western Europe;"Societe d'Histoire du Theatre";"1999, 2001-2010, 2012-2022";"Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30711;17700154921;"Revue d'Histoire du XIXe Siecle";journal;"17775329, 12651354";"Societe d'histoire de la revolution de 1848 et des revolutions du XIXe siecle";No;No;0,102;Q4;11;0;119;0;7;114;0,04;0,00;0,00;0;France;Western Europe;"Societe d'histoire de la revolution de 1848 et des revolutions du XIXe siecle";"1999, 2001-2024";"History (Q4)";"Arts and Humanities" +30712;5600152922;"Revue du MAUSS";journal;"12474819";"Editions La Decouverte";No;No;0,102;Q4;16;0;122;0;10;119;0,12;0,00;0,00;0;France;Western Europe;"Editions La Decouverte";"2001-2024";"Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30713;17700156406;"Revue Internationale de Droit Economique";journal;"10108831, 17821525";"De Boeck Supérieur";No;No;0,102;Q4;9;0;82;0;3;79;0,03;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"2001-2024";"Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +30714;144719;"Rivista Italiana di Medicina dell'Adolescenza";journal;"20350678";"Edizioni Scripta Manent s.n.c.";No;No;0,102;Q4;4;0;32;0;0;18;0,00;0,00;0,00;0;Italy;Western Europe;"Edizioni Scripta Manent s.n.c.";"2005-2019, 2023-2024";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +30715;19700187629;"Safundi";journal;"17533171, 15431304";"Taylor and Francis Ltd.";No;No;0,102;Q4;17;69;110;904;15;41;0,10;13,10;46,15;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2000-2026";"Cultural Studies (Q4); History (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +30716;100364;"Sapporo Medical journal";journal;"0036472X";"Sapporo Medical University";Yes;No;0,102;Q4;3;1;19;38;0;19;0,00;38,00;33,33;0;Japan;Asiatic Region;"Sapporo Medical University";"1961-1971, 1973-2013, 2016-2019, 2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30717;21100899005;"Scottish Archaeological Journal";journal;"17552028, 14715767";"Edinburgh University Press";No;No;0,102;Q4;7;5;19;150;1;16;0,00;30,00;28,57;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996, 1998, 2000-2012, 2014-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30718;16000154760;"Sculpture Review";journal;"07475284, 26323494";"National Sculpture Society";No;No;0,102;Q4;3;0;69;0;1;60;0,03;0,00;0,00;0;United States;Northern America;"National Sculpture Society";"2002-2007, 2009-2023";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30719;21100239833;"SEDERI";journal;"11357789";"Sociedad Hispano-Portugesa de Estudios Renacentistas Ingleses";No;No;0,102;Q4;3;4;20;157;2;20;0,08;39,25;50,00;0;Spain;Western Europe;"Sociedad Hispano-Portugesa de Estudios Renacentistas Ingleses";"1997, 2011-2017, 2019-2025";"Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30720;21101155956;"Serbian Studies";journal;"19419511, 07423330";"Slavica Publishers";No;No;0,102;Q4;2;10;35;126;2;19;0,00;12,60;66,67;0;United States;Northern America;"Slavica Publishers";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); History (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30721;21101132933;"Sguardo";journal;"20366558";"InSchibboleth Edizioni";Yes;Yes;0,102;Q4;2;0;89;0;1;82;0,02;0,00;0,00;0;Italy;Western Europe;"InSchibboleth Edizioni";"2019-2024";"History and Philosophy of Science (Q4); Philosophy (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30722;21100211719;"Shaman";journal;"12167827";"Molnar & Kelemen Oriental Publishers";No;No;0,102;Q4;3;0;14;0;2;14;0,14;0,00;0,00;0;Hungary;Eastern Europe;"Molnar & Kelemen Oriental Publishers";"2011-2013, 2016-2021, 2023-2024";"Anthropology (Q4); Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30723;21100932471;"Singapore Academy of Law Journal";journal;"02182009";"Academy Publishing";No;No;0,102;Q4;4;13;52;1502;11;50;0,16;115,54;16,67;0;Singapore;Asiatic Region;"Academy Publishing";"2019-2025";"Law (Q4)";"Social Sciences" +30724;11600153637;"Sino-Christian Studies";journal;"19902670";"Chung Yuan Christian University";No;No;0,102;Q4;2;6;51;125;1;51;0,00;20,83;0,00;0;Taiwan;Asiatic Region;"Chung Yuan Christian University";"2013-2025";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30725;5700164304;"Slovo";journal;"09546839";"University College London - School of Slavonic and East European Studies";No;No;0,102;Q4;5;0;18;0;1;14;0,00;0,00;0,00;0;United Kingdom;Western Europe;"University College London - School of Slavonic and East European Studies";"2012-2023";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30726;21100256129;"Societate si Politica";journal;"20677812, 18431348";"Universitatea de Vest Vasile Goldis din Arad";Yes;Yes;0,102;Q4;7;0;24;0;1;24;0,00;0,00;0,00;0;Romania;Eastern Europe;"Universitatea de Vest Vasile Goldis din Arad";"2013-2024";"History (Q4); Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30727;21101049541;"Societes et Representations";journal;"12622966, 2104404X";"Editions Of The Sorbonne";No;No;0,102;Q4;2;0;69;0;4;63;0,06;0,00;0,00;0;France;Western Europe;"Editions Of The Sorbonne";"2019-2024";"Cultural Studies (Q4); History (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30728;21101240668;"Specula. Revista de Humanidades y Espiritualidad";journal;"27923290, 26972484";"Universidad Catolica de Valencia San Vicente Martir";Yes;Yes;0,102;Q4;2;43;23;1501;3;18;0,13;34,91;44,44;0;Spain;Western Europe;"Universidad Catolica de Valencia San Vicente Martir";"2024-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Religious Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30729;16400154724;"Studi Danteschi";journal;"03917835";"Casa Editrice le Lettere";No;No;0,102;Q4;6;0;17;0;0;17;0,00;0,00;0,00;0;Italy;Western Europe;"Casa Editrice le Lettere";"2002-2006, 2008, 2010-2022";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30730;16000154772;"Studi Piemontesi";journal;"03927261";"Centro Studi Piemontesi";No;No;0,102;Q4;4;0;38;0;0;14;0,00;0,00;0,00;0;Italy;Western Europe;"Centro Studi Piemontesi";"2002-2020, 2022";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30731;21101176792;"Studia Historica: Historia Contemporanea";journal;"24447080";"Ediciones Universidad de Salamanca";Yes;Yes;0,102;Q4;5;0;29;0;7;27;0,13;0,00;0,00;0;Spain;Western Europe;"Ediciones Universidad de Salamanca";"2019-2023";"History (Q4)";"Arts and Humanities" +30732;12665;"Studia Rosenthaliana";journal;"17831792, 17817838";"Amsterdam University Press";No;No;0,102;Q4;8;0;19;0;0;19;0,00;0,00;0,00;0;Netherlands;Western Europe;"Amsterdam University Press";"1970, 1999, 2002, 2004, 2006-2009, 2011-2012, 2014, 2021-2024";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30733;21100901132;"Studia Universitatis Cibiniensis, Series Historica";journal;"15843165";"Lucian Blaga University of Sibiu";No;No;0,102;Q4;1;0;29;0;2;29;0,06;0,00;0,00;0;Romania;Eastern Europe;"Lucian Blaga University of Sibiu";"2018-2024";"Archeology (arts and humanities) (Q4); Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30734;21100406922;"Studies in Critical Social Sciences";book series;"15734234";"Brill Academic Publishers";No;No;0,102;Q4;11;166;369;11919;41;47;0,11;71,80;42,86;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2026";"Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30735;21100868868;"Studies in Language Companion Series";book series;"01657763";"John Benjamins Publishing Company";No;No;0,102;Q4;9;0;166;0;48;14;0,19;0,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2005, 2012, 2014, 2016-2024";"Linguistics and Language (Q4)";"Social Sciences" +30736;24960;"Sudhoffs Archiv";journal;"00394564, 23662352";"Franz Steiner Verlag GmbH";No;No;0,102;Q4;10;2;29;135;3;29;0,10;67,50;0,00;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"1967, 1969-2016, 2019-2024";"History (Q4); History and Philosophy of Science (Q4); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +30737;21100903230;"Sun Yat-sen Journal of Humanities";journal;"10243631";"National Sun Yat-sen University, College of Liberal Arts";No;No;0,102;Q4;3;10;17;340;0;17;0,00;34,00;54,55;0;Taiwan;Asiatic Region;"National Sun Yat-sen University, College of Liberal Arts";"2018-2023, 2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +30738;21101230599;"Suomalaisen Kirjallisuuden Seuran Toimituksia";book series;"03551768, 26702401";"Suomalaisen Kirjallisuuden Seura";No;No;0,102;Q4;6;71;165;4042;31;20;0,14;56,93;0,00;0;Finland;Western Europe;"Suomalaisen Kirjallisuuden Seura";"2020-2025";"Arts and Humanities (miscellaneous) (Q4); Developmental and Educational Psychology (Q4); Developmental Neuroscience (Q4); Education (Q4); Psychiatry and Mental Health (Q4)";"Arts and Humanities; Medicine; Neuroscience; Psychology; Social Sciences" +30739;5200152209;"Sustainable Humanosphere";trade journal;"18806503";"Research Institute for Sustainable Humanosphere";No;No;0,102;Q4;3;0;19;0;0;19;0,00;0,00;0,00;0;Japan;Asiatic Region;"Research Institute for Sustainable Humanosphere";"2005-2007, 2011, 2013, 2015-2017, 2019-2020, 2022-2024";"Forestry (Q4); Global and Planetary Change (Q4); Nature and Landscape Conservation (Q4)";"Agricultural and Biological Sciences; Environmental Science" +30740;21101046692;"Talia Dixit";journal;"18869440";"Servicio de Publicaciones, University of Extremadura";Yes;Yes;0,102;Q4;1;8;18;475;2;18;0,11;59,38;25,00;0;Spain;Western Europe;"Servicio de Publicaciones, University of Extremadura";"2019-2021, 2023-2025";"Arts and Humanities (miscellaneous) (Q4); Classics (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30741;300147007;"Tamkang Review";journal;"00492949";"Tamkang University";No;No;0,102;Q4;6;8;20;253;3;20;0,00;31,63;57,14;0;Taiwan;Asiatic Region;"Tamkang University";"2005-2025";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +30742;21100285048;"T'ang Studies";journal;"17597633, 07375034";"Johns Hopkins University Press";No;No;0,102;Q4;7;6;17;588;4;17;0,27;98,00;33,33;0;United Kingdom;Western Europe;"Johns Hopkins University Press";"1982, 1984-1990, 1992, 1994-1997, 2000, 2002, 2005, 2007-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30743;17600155118;"Temps des Medias";journal;"17642507";"Nouveau Monde Editions";No;No;0,102;Q4;9;0;18;0;0;16;0,00;0,00;0,00;0;France;Western Europe;"Nouveau Monde Editions";"2003-2021, 2023";"Communication (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30744;21100455736;"Texts and Studies in Eastern Christianity";book series;"22130039";"Brill Academic Publishers";No;No;0,102;Q4;6;25;68;4283;15;15;0,22;171,32;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2012, 2014-2026";"Cultural Studies (Q4); History (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30745;21101245238;"Tietolipas";book series;"05626129, 26702584";"Suomalaisen Kirjallisuuden Seura";No;No;0,102;Q4;2;73;133;4276;11;17;0,09;58,58;66,67;0;Finland;Western Europe;"Suomalaisen Kirjallisuuden Seura";"2022-2025";"Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30746;19700169125;"Trajecta. Religion, Culture and Society in the Low Countries";journal;"26659484, 07788304";"Amsterdam University Press";No;No;0,102;Q4;5;7;13;273;1;13;0,13;39,00;40,00;0;Netherlands;Western Europe;"Amsterdam University Press";"1999, 2002, 2019-2025";"History (Q4); Religious Studies (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30747;19900193654;"Transactions of the Japan Society for Computational Engineering and Science";journal;"13449443, 13478826";"Japan Society for Computational Engineering and Science";No;No;0,102;Q4;8;9;49;279;6;48;0,06;31,00;16,67;0;Japan;Asiatic Region;"Japan Society for Computational Engineering and Science";"2011-2026";"Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)";"Computer Science; Engineering" +30748;5800207608;"Travaux de Linguistique";journal;"00826049";"De Boeck Supérieur";No;No;0,102;Q4;8;0;19;0;1;19;0,00;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"2001-2022, 2024";"Linguistics and Language (Q4)";"Social Sciences" +30749;12600154713;"Twist";trade journal;"17590418";"World Textile Information Network";No;No;0,102;Q4;1;0;111;0;1;95;0,00;0,00;0,00;0;United Kingdom;Western Europe;"World Textile Information Network";"2008-2014, 2016-2023";"Business and International Management (Q4); Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4)";"Business, Management and Accounting; Engineering; Materials Science" +30750;19787;"VDE Fachberichte";book series;"03404161";"V D E Verlag GmbH";No;No;0,102;Q4;5;0;22;0;0;20;0,00;0,00;0,00;0;Germany;Western Europe;"V D E Verlag GmbH";"1978, 1980, 1988, 1996-1999, 2001, 2003, 2005, 2007, 2009, 2011, 2013, 2017, 2021-2022";"Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4)";"Engineering; Physics and Astronomy" +30751;21100427053;"Verifiche";journal;"03914186";"Associazione Trentina di Scienze Umane";No;No;0,102;Q4;5;0;21;0;0;15;0,00;0,00;0,00;0;Italy;Western Europe;"Associazione Trentina di Scienze Umane";"2014-2022";"Philosophy (Q4)";"Arts and Humanities" +30752;21101089139;"Visual History";journal;"25323504, 24215627";"Fabrizio Serra Editore Srl";No;No;0,102;Q4;2;0;22;0;1;18;0,07;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2024";"Communication (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30753;27336;"Warta Geologi";journal;"01265539, 26827549";"Geological Society of Malaysia";Yes;No;0,102;Q4;1;9;16;319;1;16;0,06;35,44;40,00;0;Malaysia;Asiatic Region;"Geological Society of Malaysia";"1993-1996, 2023-2025";"Geology (Q4)";"Earth and Planetary Sciences" +30754;5800223318;"World Literature Today";journal;"19458134, 01963570";"University of Oklahoma";No;No;0,102;Q4;10;79;324;0;7;204;0,03;0,00;59,68;0;United States;Northern America;"University of Oklahoma";"2002-2026";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30755;21100932639;"Zbornik Matice Srpske za Slavistiku";journal;"03525007";"Matica Srpska";No;No;0,102;Q4;3;59;133;1361;3;132;0,02;23,07;43,86;0;Serbia;Eastern Europe;"Matica Srpska";"2019-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30756;16300154740;"Zeitschrift fur Franzosische Sprache und Literatur";journal;"00442747, 23662425";"Franz Steiner Verlag GmbH";No;No;0,102;Q4;8;0;19;0;0;19;0,00;0,00;0,00;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"1987, 2002-2016, 2018-2023";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30757;21100878890;"Conference Proceedings - IEEE-IAS/PCA Cement Industry Technical Conference";conference and proceedings;"21559139, 21559155";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,102;-;5;0;50;0;3;47;0,00;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2017, 2019, 2021-2022, 2024";"Ceramics and Composites; Industrial and Manufacturing Engineering; Renewable Energy, Sustainability and the Environment";"Energy; Engineering; Materials Science" +30758;21100983203;"eLearning and Software for Education Conference";conference and proceedings;"20668821, 2066026X";"National Defence University - Carol I Printing House";No;No;0,102;-;9;0;175;0;5;171;0,04;0,00;0,00;0;Romania;Eastern Europe;"National Defence University - Carol I Printing House";"2019-2023";"Computer Science Applications; Education; Software";"Computer Science; Social Sciences" +30759;21101214762;"International Conference on Design and Semantics of Form and Movement";conference and proceedings;"27066150";"The Hong Kong Polytechnic University";No;No;0,102;-;4;0;29;0;3;28;0,10;0,00;0,00;0;Hong Kong;Asiatic Region;"The Hong Kong Polytechnic University";"2019, 2023";"Arts and Humanities (miscellaneous); Human-Computer Interaction; Mechanics of Materials";"Arts and Humanities; Computer Science; Engineering" +30760;21101079206;"ZEMCH International Conference";conference and proceedings;"26522926";"ZEMCH Network";No;No;0,102;-;5;0;223;0;7;217;0,04;0,00;0,00;0;Australia;Pacific Region;"ZEMCH Network";"2013-2014, 2017-2019, 2021-2024";"Architecture; Building and Construction; Civil and Structural Engineering; Computer Science Applications; Renewable Energy, Sustainability and the Environment; Safety, Risk, Reliability and Quality";"Computer Science; Energy; Engineering" +30761;21100832755;"1700-tal: Nordic Journal for Eighteenth-Century Studies";journal;"20019866, 16524772";"Swedish Society for Eighteenth-Century Studies";Yes;Yes;0,101;Q4;3;0;43;0;3;39;0,06;0,00;0,00;0;Norway;Western Europe;"Swedish Society for Eighteenth-Century Studies";"2016-2017, 2019-2024";"Cultural Studies (Q4); History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30762;21100944128;"Abriu";journal;"20148534, 20148526";"Universitat de Barcelona";Yes;Yes;0,101;Q4;3;17;54;493;4;54;0,11;29,00;64,71;0;Spain;Western Europe;"Universitat de Barcelona";"2019-2025";"History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30763;23668;"Acadiensis";journal;"17127432, 00445851";"University of New Brunswick";No;No;0,101;Q4;11;5;50;369;2;40;0,03;73,80;0,00;0;Canada;Northern America;"University of New Brunswick";"1981, 1984, 1989-1990, 2000, 2009-2025";"History (Q4)";"Arts and Humanities" +30764;12938;"Acoustics Bulletin";journal;"0308437X";"Institute of Acoustics";No;No;0,101;Q4;9;17;187;135;1;99;0,00;7,94;7,69;0;United Kingdom;Western Europe;"Institute of Acoustics";"1979, 1982, 1984, 1986, 1995-2025";"Acoustics and Ultrasonics (Q4)";"Physics and Astronomy" +30765;28296;"Acta Classica";journal;"2227538X, 00651141";"Classical Association of South Africa";No;No;0,101;Q4;9;0;44;0;4;44;0,12;0,00;0,00;0;South Africa;Africa;"Classical Association of South Africa";"1973, 1975, 2010-2024";"Classics (Q4)";"Arts and Humanities" +30766;21101173100;"Acta Classica Universitatis Scientiarum Debreceniensis";journal;"0418453X, 27323390";"Department of Classical Philology and Ancient History, University of Debrecen";No;No;0,101;Q4;4;0;37;0;2;37;0,03;0,00;0,00;0;Hungary;Eastern Europe;"Department of Classical Philology and Ancient History, University of Debrecen";"2019-2024";"Classics (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30767;21101072347;"Acta Historica Universitatis Klaipedensis";journal;"23516526, 13924095";"Institute of Baltic Region History and Archaeology of Klaipeda University";Yes;Yes;0,101;Q4;2;7;32;278;2;26;0,04;39,71;40,00;0;Lithuania;Eastern Europe;"Institute of Baltic Region History and Archaeology of Klaipeda University";"2019-2025";"History (Q4)";"Arts and Humanities" +30768;10600153351;"Acta Literaria";journal;"07176848, 07160909";"Universidad de Concepcion";Yes;Yes;0,101;Q4;7;10;49;225;2;42;0,06;22,50;28,57;0;Chile;Latin America;"Universidad de Concepcion";"2007-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30769;21101263948;"Acta Musei Napocensis. Historica";journal;"14541521, 27839710";"National Museum of History of Transylvania";No;No;0,101;Q4;1;16;34;566;4;32;0,13;35,38;58,33;0;Romania;Eastern Europe;"National Museum of History of Transylvania";"2020-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30770;19600157923;"Acta Stomatologica Naissi";journal;"18201202, 03525252";"University of Nis";Yes;Yes;0,101;Q4;8;0;47;0;0;47;0,00;0,00;0,00;0;Serbia;Eastern Europe;"University of Nis";"2009-2024, 2026";"Dentistry (miscellaneous) (Q4)";"Dentistry" +30771;21101039069;"Acta Universitatis Carolinae Theologica";journal;"23363398, 18045588";"Karolinum - Nakladatelstvi Univerzity Karlovy";Yes;Yes;0,101;Q4;3;0;66;0;6;60;0,00;0,00;0,00;0;Czech Republic;Eastern Europe;"Karolinum - Nakladatelstvi Univerzity Karlovy";"2019-2024";"Religious Studies (Q4)";"Arts and Humanities" +30772;19300157010;"Actualizaciones en Osteologia";journal;"16698975, 16698983";"Asociacion Argentina de Osteologia y Metabolismo Mineral";No;No;0,101;Q4;8;2;47;16;0;36;0,00;8,00;0,00;0;Argentina;Latin America;"Asociacion Argentina de Osteologia y Metabolismo Mineral";"2009-2025";"Endocrinology, Diabetes and Metabolism (Q4); Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +30773;27842;"Ada User Journal";journal;"13816551";"";No;No;0,101;Q4;7;0;110;0;5;92;0,03;0,00;0,00;0;Portugal;Western Europe;"";"1999-2024";"Software (Q4)";"Computer Science" +30774;21101200272;"Ademas de";journal;"2444121X";"Asociacion de Amigos Museo Nacional de Artes Decorativas";Yes;Yes;0,101;Q4;2;15;42;371;3;37;0,03;24,73;63,16;0;Spain;Western Europe;"Asociacion de Amigos Museo Nacional de Artes Decorativas";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Museology (Q4)";"Arts and Humanities" +30775;21100324984;"Aegaeum";book series;"07763808";"Geo-Eco-Trop";No;No;0,101;Q4;9;0;26;0;1;24;0,04;0,00;0,00;0;Belgium;Western Europe;"Geo-Eco-Trop";"2013-2020, 2022-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +30776;12450;"Aerospace America";trade journal;"0740722X";"American Institute of Aeronautics and Astronautics Inc. (AIAA)";No;No;0,101;Q4;13;50;217;0;5;40;0,01;0,00;20,00;0;United States;Northern America;"American Institute of Aeronautics and Astronautics Inc. (AIAA)";"1984-2026";"Aerospace Engineering (Q4)";"Engineering" +30777;21101044506;"Aethiopica";journal;"14301938, 21944024";"Harrassowitz Verlag";Yes;Yes;0,101;Q4;3;0;54;0;2;49;0,08;0,00;0,00;0;Germany;Western Europe;"Harrassowitz Verlag";"2019-2024";"Anthropology (Q4); Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30778;6000152798;"Afterall";journal;"21564914, 14654253";"University of Chicago Press";No;No;0,101;Q4;8;0;60;0;9;29;0,16;0,00;0,00;0;United States;Northern America;"University of Chicago Press";"2015-2024";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30779;21101199910;"Air and Space Power Review";journal;"26340976, 26340968";"Royal Air Force";Yes;Yes;0,101;Q4;1;0;55;0;3;45;0,05;0,00;0,00;0;United Kingdom;Western Europe;"Royal Air Force";"2021-2024";"Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +30780;16079;"Air Force Magazine";journal;"07306784";"Air Force Association";No;No;0,101;Q4;9;16;445;0;7;181;0,02;0,00;14,29;0;United States;Northern America;"Air Force Association";"1994-2025";"Aerospace Engineering (Q4)";"Engineering" +30781;21100316037;"Ajatus";journal;"03551725";"Suomen Filosofinen Yhdistys";No;No;0,101;Q4;2;13;40;149;0;38;0,00;11,46;30,00;0;Finland;Western Europe;"Suomen Filosofinen Yhdistys";"2012, 2014-2015, 2017, 2019-2025";"Philosophy (Q4)";"Arts and Humanities" +30782;19700201538;"Al-Masaq";journal;"1473348X, 09503110";"Routledge";No;No;0,101;Q4;16;33;57;1323;11;54;0,21;40,09;33,33;0;United Kingdom;Western Europe;"Routledge";"1988-1996, 2002, 2005-2026";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30783;21100220384;"American Book Review";journal;"01499408";"School of Arts and Sciences, University of Houston-Victoria";No;No;0,101;Q4;6;22;114;0;5;94;0,04;0,00;11,11;0;United States;Northern America;"School of Arts and Sciences, University of Houston-Victoria";"2008-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30784;25555;"American Forests";trade journal;"00028541";"American Forests";No;No;0,101;Q4;5;5;47;0;0;42;0,00;0,00;50,00;0;United States;Northern America;"American Forests";"1976, 1983-1984, 1986, 1989, 1996-2025";"Forestry (Q4)";"Agricultural and Biological Sciences" +30785;14197;"American Jewish History";journal;"10863141, 01640178";"Johns Hopkins University Press";No;No;0,101;Q4;15;0;48;0;8;46;0,15;0,00;0,00;0;United States;Northern America;"Johns Hopkins University Press";"1981, 2002-2004, 2007-2011, 2013-2024";"Cultural Studies (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30786;16100154702;"American Poetry Review";journal;"03603709, 21624984";"Old City Publishing";No;No;0,101;Q4;5;12;59;62;1;42;0,03;5,17;41,67;0;United States;Northern America;"Old City Publishing";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30787;21100224411;"Analele Banatului: Arheologie - Istorie";journal;"1221678X";"Muzeul Banatului";Yes;Yes;0,101;Q4;6;21;51;1076;2;51;0,03;51,24;14,29;0;Romania;Eastern Europe;"Muzeul Banatului";"2011-2013, 2015-2016, 2019-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30788;21100447818;"Anali Zavoda za Povijesne Znanosti Hrvatske Akademije Znanosti i Umjetnosti u Dubrovniku";journal;"18487815, 13300598";"Croatian Academy of Sciences and Arts";Yes;Yes;0,101;Q4;6;11;26;904;5;23;0,17;82,18;33,33;0;Croatia;Eastern Europe;"Croatian Academy of Sciences and Arts";"2015-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30789;21100870648;"Anastasis";journal;"2392862X, 23929472";"Research Center of Medieval Art Vasile Dragut";Yes;Yes;0,101;Q4;3;0;51;0;0;51;0,00;0,00;0,00;0;Romania;Eastern Europe;"Research Center of Medieval Art Vasile Dragut";"2018-2024";"History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30790;16800154709;"Animal Technology and Welfare";journal;"17420385";"Institute of Animal Technology";No;No;0,101;Q4;6;33;109;100;1;101;0,01;3,03;72,83;0;United Kingdom;Western Europe;"Institute of Animal Technology";"2008-2015, 2017-2025";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +30791;27951;"Annales de la Fondation Louis de Broglie";journal;"01824295";"Fondation Louis de Broglie";Yes;No;0,101;Q4;18;0;28;0;0;23;0,00;0,00;0,00;0;France;Western Europe;"Fondation Louis de Broglie";"1996-2014, 2016-2018, 2020-2022";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +30792;19500157809;"Annales d'Universite 'Valahia' Targoviste, Section d'Archeologie et d'Histoire";journal;"22853669, 15841855";"Valahia University Targoviste";No;No;0,101;Q4;6;9;22;246;0;21;0,00;27,33;18,18;0;Romania;Eastern Europe;"Valahia University Targoviste";"2009-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30793;21100996952;"Annales Universitates Paedagogicae Cracoviensis. Studia ad Didacticam Mathematicae Pertinentia";journal;"20809751, 2450341X";"Uniwersytet Pedagogiczny";Yes;No;0,101;Q4;4;0;32;0;1;32;0,06;0,00;0,00;0;Poland;Eastern Europe;"Uniwersytet Pedagogiczny";"2019-2024";"Education (Q4); Mathematics (miscellaneous) (Q4)";"Mathematics; Social Sciences" +30794;21100898994;"Annali di Scienze Religiose";journal;"20315929, 22948775";"Brepols Publishers";No;No;0,101;Q4;3;0;27;0;1;25;0,00;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2018-2023";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30795;70562;"Annuaire Roumain d'Anthropologie";journal;"05702259";"Publishing House of the Romanian Academy";No;No;0,101;Q4;6;10;28;333;1;23;0,06;33,30;57,89;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"1972-1980, 1982, 2011-2025";"Anthropology (Q4)";"Social Sciences" +30796;19600157762;"Annuario della Scuola di Archeologica Italiana di Atene e delle missioni italiane in Oriente";book series;"00670081";"Scuola Archeologica Italiana di Atene";No;No;0,101;Q4;7;0;31;0;1;30;0,00;0,00;0,00;0;Italy;Western Europe;"Scuola Archeologica Italiana di Atene";"2009, 2012-2022";"Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4)";"Arts and Humanities; Social Sciences" +30797;21101252468;"Anuar de Lingvistica si Istorie Literara";journal;"29721814, 15837017";"";No;No;0,101;Q4;1;11;37;286;2;36;0,05;26,00;73,33;0;Romania;Eastern Europe;"";"2020-2025";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30798;21101044879;"Anuario Espanol de Derecho Internacional Privado";journal;"15783138";"Iprolex";No;No;0,101;Q4;3;0;32;0;0;32;0,00;0,00;0,00;0;Spain;Western Europe;"Iprolex";"2018, 2020-2024";"Law (Q4)";"Social Sciences" +30799;21100205934;"Anuario Musical";journal;"02113538, 19884125";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,101;Q4;4;14;34;582;1;31;0,05;41,57;25,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"2011-2025";"Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30800;6000152719;"Aperture";journal;"00036420";"Aperture Foundation, Inc.";No;No;0,101;Q4;6;35;57;0;1;41;0,00;0,00;53,57;0;United States;Northern America;"Aperture Foundation, Inc.";"2002-2017, 2019-2022, 2024-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30801;23771;"Appalachian Journal";journal;"00903779";"Appalachian State University";No;No;0,101;Q4;7;0;21;0;0;21;0,00;0,00;0,00;0;United States;Northern America;"Appalachian State University";"1983, 2002-2020, 2022";"Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30802;21101038535;"Apparatus";journal;"23657758";"Apparatus";Yes;No;0,101;Q4;5;7;40;310;5;35;0,16;44,29;75,00;0;Germany;Western Europe;"Apparatus";"2015-2025";"Communication (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30803;16000154788;"Arcadia";journal;"00037982, 16130642";"Walter de Gruyter GmbH";No;No;0,101;Q4;10;12;49;480;2;49;0,03;40,00;50,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1966-1986, 1988-1997, 2003-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30804;16300154752;"Archiv fur Musikwissenschaft";journal;"00039292, 23662794";"Franz Steiner Verlag GmbH";No;No;0,101;Q4;7;14;46;1263;0;46;0,00;90,21;13,33;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"2002-2025";"Music (Q4)";"Arts and Humanities" +30805;77881;"Archiv fur Reformationsgeschichte";journal;"00039381, 21980489";"Guetersloher Verlagshaus";No;No;0,101;Q4;9;17;32;1012;2;32;0,10;59,53;60,00;0;Germany;Western Europe;"Guetersloher Verlagshaus";"1904-1943, 1948, 1951-1995, 1999, 2001-2002, 2009-2011, 2013-2025";"Religious Studies (Q4)";"Arts and Humanities" +30806;22779;"Archiv Orientalni";journal;"00448699";"Oriental Institute, Czech Academy of Sciences";No;No;0,101;Q4;7;24;71;1209;12;67;0,17;50,38;44,83;0;Czech Republic;Eastern Europe;"Oriental Institute, Czech Academy of Sciences";"1986, 2001, 2009-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30807;6000167588;"Archives";journal;"00039535";"British Records Association";No;No;0,101;Q4;4;4;21;265;0;21;0,00;66,25;66,67;0;United Kingdom;Western Europe;"British Records Association";"2011-2025";"History (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +30808;22458;"Archives des Maladies du Coeur et des Vaisseaux - Pratique";journal;"1261694X";"Elsevier Masson s.r.l.";No;No;0,101;Q4;3;64;198;1019;2;165;0,00;15,92;28,57;0;France;Western Europe;"Elsevier Masson s.r.l.";"1995-2026";"Cardiology and Cardiovascular Medicine (Q4)";"Medicine" +30809;17700154920;"Archives Juives";journal;"19650531, 00039837";"Editions Les Belles Lettres";No;No;0,101;Q4;7;0;56;0;1;49;0,03;0,00;0,00;0;France;Western Europe;"Editions Les Belles Lettres";"2001-2024";"Cultural Studies (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30810;21100325437;"Archivio di Storia della Cultura";book series;"11240059, 2037688X";"Liguori Editore srl";No;No;0,101;Q4;3;31;83;857;2;44;0,00;27,65;0,00;0;Italy;Western Europe;"Liguori Editore srl";"2001-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30811;18871;"Archivio Storico Italiano";journal;"03917770, 20364660";"Casa Editrice Leo S. Olschki";No;No;0,101;Q4;9;14;53;819;5;26;0,03;58,50;33,33;0;Italy;Western Europe;"Casa Editrice Leo S. Olschki";"1971, 1978-1979, 1981, 1984, 1999, 2002-2008, 2010-2025";"History (Q4)";"Arts and Humanities" +30812;21101075057;"Archivo Teologico Granadino";journal;"26954397, 02101629";"Universidad Loyola Andalucia";Yes;Yes;0,101;Q4;2;19;24;664;4;22;0,11;34,95;15,79;0;Spain;Western Europe;"Universidad Loyola Andalucia";"2019-2025";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30813;21100231629;"Archivos de Alergia e Inmunologia Clinica";journal;"15159825";"Asociacion Argentina de Alergia e Inmunologia Clinica";No;No;0,101;Q4;3;0;51;0;0;37;0,00;0,00;0,00;0;Argentina;Latin America;"Asociacion Argentina de Alergia e Inmunologia Clinica";"2010-2012, 2015-2024";"Immunology and Allergy (Q4)";"Medicine" +30814;21101299021;"Archiwum Historii Filozofii i Mysli Spolecznej";journal;"26580438, 00666874";"Polish Academy of Sciences - Institute of Philosophy and Sociology";No;No;0,101;Q4;1;20;55;1233;0;54;0,00;61,65;20,00;0;Poland;Eastern Europe;"Polish Academy of Sciences - Institute of Philosophy and Sociology";"2020-2021, 2023-2025";"Philosophy (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30815;21100805773;"Arizona Quarterly";journal;"00041610, 15589595";"Johns Hopkins University Press";No;No;0,101;Q4;6;9;64;417;9;57;0,10;46,33;40,00;0;United States;Northern America;"Johns Hopkins University Press";"2016-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30816;21101163185;"ARS (Bratislava)";journal;"27297349, 00449008";"Art Research Centre of Slovak Academy of Sciences";Yes;Yes;0,101;Q4;1;6;25;84;3;25;0,12;14,00;42,86;0;Slovakia;Eastern Europe;"Art Research Centre of Slovak Academy of Sciences";"2023-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30817;21100976853;"Ars Judaica";journal;"25164252, 15656721";"Liverpool University Press";No;No;0,101;Q4;2;0;25;0;0;21;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Liverpool University Press";"2018-2024";"Architecture (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering; Social Sciences" +30818;21100224423;"Ars Longa";journal;"11307099";"Universitat de Valencia";Yes;No;0,101;Q4;6;0;37;0;2;37;0,05;0,00;0,00;0;Spain;Western Europe;"Universitat de Valencia";"2011-2024";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30819;19700170185;"Ars Orientalis";journal;"05711371";"FREER GALLERY OF ART";Yes;No;0,101;Q4;15;0;30;0;3;28;0,11;0,00;0,00;0;United States;Northern America;"FREER GALLERY OF ART";"2001-2006, 2010-2012, 2014-2017, 2022-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30820;21101358087;"Artium Quaestiones";journal;"0239202X, 27194558";"Adam Mickiewicz University";Yes;No;0,101;Q4;1;13;37;600;2;34;0,00;46,15;46,15;0;Poland;Eastern Europe;"Adam Mickiewicz University";"2022-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30821;4700152711;"ASHA Leader";trade journal;"10859586";"American Speech-Language-Hearing Association";No;No;0,101;Q4;16;105;226;175;8;123;0,04;1,67;79,37;0;United States;Northern America;"American Speech-Language-Hearing Association";"2005-2026";"Speech and Hearing (Q4)";"Health Professions" +30822;12100157151;"Asian Case Research Journal";journal;"02189275, 17936772";"World Scientific";No;No;0,101;Q4;5;13;54;371;2;53;0,06;28,54;56,00;0;Singapore;Asiatic Region;"World Scientific";"2008-2025";"Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting" +30823;21100232408;"Augustiniana";journal;"00048003, 22956093";"Peeters Publishers";No;No;0,101;Q4;5;12;33;1261;0;32;0,00;105,08;36,36;0;Belgium;Western Europe;"Peeters Publishers";"2011-2025";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30824;18956;"AusIMM Bulletin";trade journal;"10346775";"Citrus Media";No;No;0,101;Q4;9;0;27;0;0;27;0,00;0,00;0,00;0;Australia;Pacific Region;"Citrus Media";"1992-2024";"Geotechnical Engineering and Engineering Geology (Q4); Industrial and Manufacturing Engineering (Q4)";"Earth and Planetary Sciences; Engineering" +30825;67235;"Australian Physics";journal;"10363831";"Australian Institute of Physics";No;No;0,101;Q4;5;29;82;105;1;38;0,02;3,62;36,36;0;Australia;Pacific Region;"Australian Institute of Physics";"1999-2015, 2017-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +30826;21101295908;"Azerbaijan Geologist";journal;"24104264";"Azerbaijan Society of Petroleum Geologists";No;No;0,101;Q4;1;12;41;282;1;41;0,04;23,50;45,83;0;Azerbaijan;Eastern Europe;"Azerbaijan Society of Petroleum Geologists";"2020, 2022-2025";"Earth-Surface Processes (Q4); Geology (Q4); Geophysics (Q4); Paleontology (Q4)";"Earth and Planetary Sciences" +30827;16100154722;"Bach";journal;"00053600";"Riemenschneider Bach Institute";No;No;0,101;Q4;6;10;44;292;1;41;0,03;29,20;0,00;0;United States;Northern America;"Riemenschneider Bach Institute";"2002-2021, 2023-2025";"Music (Q4)";"Arts and Humanities" +30828;5700157102;"Balkanistica";journal;"03602206";"South East European Studies Association";No;No;0,101;Q4;6;0;34;0;0;27;0,00;0,00;0,00;0;United States;Northern America;"South East European Studies Association";"2011-2024";"Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30829;21101078833;"Bamboo and Silk";journal;"24689246, 24689238";"Brill Academic Publishers";No;No;0,101;Q4;5;10;32;510;6;32;0,23;51,00;7,14;0;Netherlands;Western Europe;"Brill Academic Publishers";"2018-2025";"Anthropology (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30830;13425;"Baptist Quarterly";journal;"0005576X, 20567731";"Routledge";No;No;0,101;Q4;4;24;54;899;7;38;0,18;37,46;16,67;0;United Kingdom;Western Europe;"Routledge";"1988, 1996-2026";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30831;21101102049;"Barcelona Research Art Creation";journal;"20148992";"Hipatia Editorial";Yes;Yes;0,101;Q4;2;19;50;512;5;45;0,11;26,95;41,67;0;Spain;Western Europe;"Hipatia Editorial";"2019-2026";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30832;5200153053;"Best Practice Onkologie";journal;"18628559, 09464565";"Springer Medizin";No;No;0,101;Q4;4;68;220;1092;6;107;0,02;16,06;38,17;0;Germany;Western Europe;"Springer Medizin";"2006-2026";"Oncology (Q4)";"Medicine" +30833;21101218119;"Biblioteca di Rassegna Iberistica";book series;"26108844, 26109360";"Edizioni Ca' Foscari";No;No;0,101;Q4;4;92;113;2068;2;28;0,02;22,48;0,00;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30834;16100154761;"Biblische Zeitschrift";journal;"00062014, 25890468";"Brill Academic Publishers";No;No;0,101;Q4;7;14;48;1259;4;47;0,06;89,93;13,33;0;Germany;Western Europe;"Brill Academic Publishers";"2002-2026";"Religious Studies (Q4)";"Arts and Humanities" +30835;28615;"Biomedical Sciences Instrumentation";journal;"00678856";"International Academic Express";No;No;0,101;Q4;39;43;34;1039;2;34;0,09;24,16;34,53;0;United States;Northern America;"International Academic Express";"1963-1964, 1967-1972, 1974-2013, 2021-2022, 2024-2025";"Biophysics (Q4); Medical Laboratory Technology (Q4)";"Biochemistry, Genetics and Molecular Biology; Health Professions" +30836;21100932466;"Biuletyn Polskiej Misji Historycznej";journal;"20837755, 2391792X";"Nicolaus Copernicus University";Yes;Yes;0,101;Q4;2;11;42;657;0;36;0,00;59,73;53,85;0;Poland;Eastern Europe;"Nicolaus Copernicus University";"2019-2025";"History (Q4)";"Arts and Humanities" +30837;16100154724;"Blake - An Illustrated Quarterly";journal;"0160628X";"University of Rochester";No;No;0,101;Q4;8;5;40;105;1;34;0,05;21,00;60,00;0;United States;Northern America;"University of Rochester";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30838;21101033189;"Bohemica Litteraria";journal;"23364394, 12132144";"Masaryk University";Yes;Yes;0,101;Q4;1;19;58;555;2;50;0,05;29,21;68,18;0;Czech Republic;Eastern Europe;"Masaryk University";"2019-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30839;19700175254;"Boletim Centro de Pesquisa de Processamento de Alimentos";journal;"19839774, 01020323";"Centro de Pesquisa de Processamento de Alimentos";Yes;Yes;0,101;Q4;11;4;52;132;1;52;0,00;33,00;63,64;0;Brazil;Latin America;"Centro de Pesquisa de Processamento de Alimentos";"2009-2019, 2022, 2024";"Animal Science and Zoology (Q4)";"Agricultural and Biological Sciences" +30840;21100944570;"Boletim de Estudos Classicos";journal;"21837260, 08722110";"Universidade de Coimbra";Yes;Yes;0,101;Q4;1;12;32;316;0;29;0,00;26,33;18,18;0;Portugal;Western Europe;"Universidade de Coimbra";"2018-2025";"Classics (Q4); Education (Q4)";"Arts and Humanities; Social Sciences" +30841;21101046169;"Boletin de la Sociedad Espanola de Espeleologia y Ciencias del Karst";journal;"16961897";"Sociedad Espanola de Espeleologia y Ciencias del Karst";No;No;0,101;Q4;2;10;29;91;1;23;0,05;9,10;0,00;0;Spain;Western Europe;"Sociedad Espanola de Espeleologia y Ciencias del Karst";"2019-2025";"Earth-Surface Processes (Q4); Geology (Q4)";"Earth and Planetary Sciences" +30842;21101096409;"Boletin del Museo del Prado";journal;"02108143";"Museo Nacional del Prado";Yes;Yes;0,101;Q4;3;13;35;463;6;30;0,14;35,62;28,57;0;Spain;Western Europe;"Museo Nacional del Prado";"2019, 2021-2025";"Museology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30843;21100979267;"Bollettino Filosofico";journal;"20352670, 15937178";"University of Naples Federico II";Yes;Yes;0,101;Q4;3;0;71;0;10;71;0,02;0,00;0,00;0;Italy;Western Europe;"University of Naples Federico II";"2019-2024";"Philosophy (Q4)";"Arts and Humanities" +30844;19654;"Bollettino Storico - Bibliografico Subalpino";journal;"03916715";"Deputazione Subalpina di Storia Patria";No;No;0,101;Q4;2;4;54;554;3;50;0,08;138,50;33,33;0;Italy;Western Europe;"Deputazione Subalpina di Storia Patria";"1981, 2014-2015, 2017-2025";"History (Q4)";"Arts and Humanities" +30845;21100285756;"Britain and the World";journal;"20438575, 20438567";"Edinburgh University Press";No;No;0,101;Q4;9;9;27;475;2;26;0,11;52,78;25,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"2009-2025";"History (Q4)";"Arts and Humanities" +30846;13556;"British Plastics and Rubber";trade journal;"03076164";"MCM Publishing Ltd.";No;No;0,101;Q4;4;21;55;1;0;35;0,00;0,05;0,00;0;United Kingdom;Western Europe;"MCM Publishing Ltd.";"1975-1978, 1984-1987, 1990-2013, 2017-2025";"Business, Management and Accounting (miscellaneous) (Q4); Polymers and Plastics (Q4)";"Business, Management and Accounting; Materials Science" +30847;21100197988;"Brunei International Medical Journal";journal;"15605876, 20793146";"";Yes;No;0,101;Q4;7;3;51;86;3;49;0,04;28,67;25,00;0;Brunei Darussalam;Asiatic Region;"";"2011-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30848;37540;"Bulletin de la Societe Vaudoise des Sciences Naturelles";journal;"00379603";"Societe Vaudoise des Sciences Naturelles";No;No;0,101;Q4;11;0;50;0;0;47;0,00;0,00;0,00;0;Switzerland;Western Europe;"Societe Vaudoise des Sciences Naturelles";"1981-2013, 2015, 2017-2024";"Multidisciplinary (Q4)";"Multidisciplinary" +30849;19700169801;"Bulletin de Liaison des Membres de la Societe de Geographie";journal;"19648995";"Societe de Geographie";No;No;0,101;Q4;1;1;64;0;0;46;0,00;0,00;0,00;0;France;Western Europe;"Societe de Geographie";"2008-2025";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +30850;5800224021;"Bulletin des Bibliotheques de France";journal;"00062006, 12928399";"Ecole Nationale Superieure des Sciences de l'Information et des Bibliotheques";Yes;No;0,101;Q4;3;24;102;149;2;68;0,03;6,21;63,16;0;France;Western Europe;"Ecole Nationale Superieure des Sciences de l'Information et des Bibliotheques";"2012-2025";"Library and Information Sciences (Q4)";"Social Sciences" +30851;21100241676;"Bulletin Mensuel de la Societe Linneenne de Lyon";journal;"03661326";"Societe Linneenne de Lyon";No;No;0,101;Q4;5;0;42;0;0;41;0,00;0,00;0,00;0;France;Western Europe;"Societe Linneenne de Lyon";"2008-2018, 2021-2024";"Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4); Paleontology (Q4); Plant Science (Q4)";"Agricultural and Biological Sciences; Earth and Planetary Sciences" +30852;40595;"Bulletin of National Institute of Health Sciences";journal;"13434292";"National Institute of Health Sciences";No;No;0,101;Q4;11;0;21;0;0;21;0,00;0,00;0,00;0;Japan;Asiatic Region;"National Institute of Health Sciences";"1997-2010, 2012-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +30853;5700169137;"Bulletin of the Institute of History and Philology Academia Sinica";journal;"10124195";"Academia Sinica";No;No;0,101;Q4;2;11;41;1233;0;40;0,00;112,09;30,00;0;Taiwan;Asiatic Region;"Academia Sinica";"1999, 2018-2019, 2022-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Linguistics and Language (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30854;21100903713;"Byron Journal";journal;"17570263, 03017257";"Liverpool University Press";No;No;0,101;Q4;3;9;56;169;2;46;0,05;18,78;57,14;0;United Kingdom;Western Europe;"Liverpool University Press";"2018-2025";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +30855;21100887516;"BYU Studies Quarterly";journal;"21678472, 21678480";"Brigham Young University";No;No;0,101;Q4;8;19;160;1016;4;152;0,04;53,47;28,57;0;United States;Northern America;"Brigham Young University";"2018-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30856;21100455657;"Byzantion Nea Hellas";journal;"07162138";"Universidad de Chile";Yes;Yes;0,101;Q4;3;0;54;0;3;54;0,05;0,00;0,00;0;Chile;Latin America;"Universidad de Chile";"2015-2024";"Classics (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +30857;21101253231;"Cadernos de Fraseoloxia Galega";journal;"26054507";"";Yes;Yes;0,101;Q4;1;0;35;0;0;35;0,00;0,00;0,00;0;Spain;Western Europe;"";"2022-2024";"Linguistics and Language (Q4)";"Social Sciences" +30858;21101305714;"Cadernos do Arquivo Municipal";journal;"21833176";"";No;No;0,101;Q4;2;20;62;466;2;51;0,05;23,30;45,00;0;Portugal;Western Europe;"";"2020-2025";"Anthropology (Q4); Arts and Humanities (miscellaneous) (Q4); Geography, Planning and Development (Q4); History (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +30859;17700155037;"Cahiers Critiques de Therapie Familiale et de Pratiques de Reseaux";journal;"17821398, 13728202";"De Boeck Supérieur";No;No;0,101;Q4;9;0;53;0;3;50;0,03;0,00;0,00;0;Belgium;Western Europe;"De Boeck Supérieur";"2001-2024";"Clinical Psychology (Q4); Social Psychology (Q4)";"Psychology" +30860;21101275452;"Cahiers D'etudes Des Cultures Iberiques Et Latino-Americaines";journal;"24287245";"Paul-Valery Montpellier 3 University";Yes;Yes;0,101;Q4;1;11;45;312;2;40;0,06;28,36;40,00;0;France;Western Europe;"Paul-Valery Montpellier 3 University";"2020-2024";"History (Q4); Literature and Literary Theory (Q4); Religious Studies (Q4)";"Arts and Humanities" +30861;21100324208;"Cahiers d'Etudes Levinassiennes";book series;"15655512";"Institut d'Etudes Levinasienne";No;No;0,101;Q4;1;0;25;0;0;22;0,00;0,00;0,00;0;Israel;Middle East;"Institut d'Etudes Levinasienne";"2013, 2015-2018, 2020-2024";"Philosophy (Q4)";"Arts and Humanities" +30862;19700181224;"Calidoscopio";journal;"21776202, 16798740";"Universidade do Vale do Rio dos Sinos";Yes;Yes;0,101;Q4;8;6;82;171;6;72;0,04;28,50;71,43;0;Brazil;Latin America;"Universidade do Vale do Rio dos Sinos";"2010-2024";"Linguistics and Language (Q4)";"Social Sciences" +30863;21101051696;"Caliope";journal;"23779551, 10841490";"Penn State University Press";No;No;0,101;Q4;4;8;46;328;1;39;0,03;41,00;71,43;0;United States;Northern America;"Penn State University Press";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30864;21100223140;"Calvin Theological Journal";journal;"00081795";"Calvin Theological Seminary";No;No;0,101;Q4;4;11;41;700;0;36;0,00;63,64;0,00;0;United States;Northern America;"Calvin Theological Seminary";"2011-2025";"Religious Studies (Q4)";"Arts and Humanities" +30865;16100154723;"Cambrian Medieval Celtic Studies";journal;"13530089";"C M C S Publications";No;No;0,101;Q4;11;10;31;975;2;30;0,10;97,50;10,00;0;United Kingdom;Western Europe;"C M C S Publications";"2002-2014, 2016-2025";"Archeology (arts and humanities) (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30866;21101200271;"Canadian Military History";journal;"1929400X, 11958472";"Wilfrid Laurier University Laurier Centre for the Study of Canada";No;No;0,101;Q4;1;11;44;279;1;43;0,03;25,36;40,00;0;Canada;Northern America;"Wilfrid Laurier University Laurier Centre for the Study of Canada";"2019-2025";"History (Q4)";"Arts and Humanities" +30867;20259;"Casopis Matice Moravske";journal;"0323052X";"Matice Moravska";No;No;0,101;Q4;2;17;34;706;3;30;0,08;41,53;41,67;0;Czech Republic;Eastern Europe;"Matice Moravska";"1983, 2001, 2019-2025";"History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30868;21100826428;"Catalan Review";journal;"02135949, 2053339X";"Liverpool University Press";No;Yes;0,101;Q4;3;6;39;247;1;37;0,03;41,17;83,33;0;United Kingdom;Western Europe;"Liverpool University Press";"2016-2025";"Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30869;21101073953;"Celestinesca";journal;"26957183, 01473085";"Universitat de Valencia";Yes;Yes;0,101;Q4;2;7;28;403;4;27;0,11;57,57;33,33;0;Spain;Western Europe;"Universitat de Valencia";"2019-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30870;21101206091;"Cels";journal;"25929356, 14077841";"University of Latvia";No;No;0,101;Q4;2;15;28;165;0;27;0,00;11,00;52,94;0;Latvia;Eastern Europe;"University of Latvia";"2020-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30871;5900152787;"Ceramics - Art and Perception";journal;"10351841";"Mansfield Ceramics";No;No;0,101;Q4;2;52;112;120;0;31;0,00;2,31;57,14;0;United States;Northern America;"Mansfield Ceramics";"2002-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30872;21100889436;"Cercles";journal;"11390158, 16997468";"Universitat de Barcelona";Yes;Yes;0,101;Q4;3;8;29;478;1;28;0,06;59,75;60,00;0;Spain;Western Europe;"Universitat de Barcelona";"2018-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30873;21101128491;"Children's Literature";journal;"15433374, 00928208";"Johns Hopkins University Press";No;No;0,101;Q4;5;7;66;323;7;63;0,10;46,14;85,71;0;United States;Northern America;"Johns Hopkins University Press";"2019-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30874;21101041813;"Chinese Annals of History of Science and Technology";journal;"20964226";"Science Press";No;No;0,101;Q4;5;3;32;141;3;32;0,09;47,00;60,00;0;China;Asiatic Region;"Science Press";"2017-2025";"History (Q4); History and Philosophy of Science (Q4); Multidisciplinary (Q4)";"Arts and Humanities; Multidisciplinary" +30875;21100386861;"Chinese Historical Review";journal;"20487827, 1547402X";"Maney Publishing";No;No;0,101;Q4;8;10;26;290;0;25;0,00;29,00;60,00;0;United Kingdom;Western Europe;"Maney Publishing";"2014-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30876;21101242017;"Chinese Journal of Vascular Surgery";journal;"20961863";"Chinese Medical Journals Publishing House Co.Ltd";No;No;0,101;Q4;3;61;156;1872;8;156;0,03;30,69;27,16;0;China;Asiatic Region;"Chinese Medical Journals Publishing House Co.Ltd";"2020-2026";"Surgery (Q4)";"Medicine" +30877;16100154734;"Chronique d'Egypte";journal;"00096067, 20346441";"Brepols Publishers";No;No;0,101;Q4;9;0;54;0;3;53;0,03;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"1971-1973, 1976, 1978, 1987, 2002-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30878;21101145379;"Ciencia Nueva, Revista de Historia y Politica";journal;"25392662";"Technological University of Pereira";No;No;0,101;Q4;3;23;57;1014;4;52;0,08;44,09;23,08;0;Colombia;Latin America;"Technological University of Pereira";"2019-2025";"History (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +30879;21101041841;"Cinemas";journal;"11816945, 17056500";"Revue Cinemas";No;No;0,101;Q4;2;0;34;0;0;31;0,00;0,00;0,00;0;Canada;Northern America;"Revue Cinemas";"2018, 2021-2024";"Communication (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30880;21100310022;"Cinemas d'Amerique Latine";book series;"24251356, 12674397";"Presses Universitaires du Mirail";No;No;0,101;Q4;4;0;45;0;1;37;0,00;0,00;0,00;0;France;Western Europe;"Presses Universitaires du Mirail";"2011, 2014-2023";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30881;5800227794;"Cithara";journal;"00097527";"Saint Bonaventure University";No;No;0,101;Q4;4;0;22;0;1;22;0,07;0,00;0,00;0;United States;Northern America;"Saint Bonaventure University";"2002-2020, 2022-2024";"Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +30882;21100875057;"Classica et Mediaevalia";book series;"16049411, 01065815";"Saxo Institute, University of Copenhagen";No;No;0,101;Q4;7;15;59;980;9;49;0,14;65,33;0,00;0;Denmark;Western Europe;"Saxo Institute, University of Copenhagen";"2012-2014, 2019-2026";"Classics (Q4); History (Q4); Linguistics and Language (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30883;28595;"Cleanroom Technology";trade journal;"13655531";"Polygon Media Ltd.";No;No;0,101;Q4;4;0;23;0;0;23;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Polygon Media Ltd.";"1995, 1997, 2001-2022";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Health, Toxicology and Mutagenesis (Q4); Safety, Risk, Reliability and Quality (Q4)";"Chemical Engineering; Chemistry; Engineering; Environmental Science" +30884;14021;"Clio";journal;"08842043";"Indiana State University";No;No;0,101;Q4;8;0;36;0;3;32;0,09;0,00;0,00;0;United States;Northern America;"Indiana State University";"1979-1980, 1984, 1987, 1999, 2001-2017, 2019-2024";"History (Q4); Literature and Literary Theory (Q4); Philosophy (Q4)";"Arts and Humanities" +30885;19700166622;"Clio: Histoire, Femmes et Societes";journal;"12527017, 17775299";"Presses Universitaires du Mirail";No;No;0,101;Q4;9;0;118;0;6;108;0,08;0,00;0,00;0;France;Western Europe;"Presses Universitaires du Mirail";"1999-2001, 2009-2018, 2020-2024";"Gender Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30886;19595;"Coal Age";trade journal;"10910646";"Mining Media International";No;No;0,101;Q4;7;0;64;0;1;64;0,00;0,00;0,00;0;United States;Northern America;"Mining Media International";"1969-1987, 1989, 1994-1998, 2001-2023";"Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Geotechnical Engineering and Engineering Geology (Q4); Mechanical Engineering (Q4)";"Earth and Planetary Sciences; Energy; Engineering" +30887;21100790058;"Codex Aquilarensis";journal;"0214896X, 23866454";"Foundaacin Santa Maria La Real";No;No;0,101;Q4;4;9;42;446;4;42;0,07;49,56;22,22;0;Spain;Western Europe;"Foundaacin Santa Maria La Real";"2015-2025";"History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30888;21100841303;"Cogency";journal;"07188285";"Universidad Diego Portales";Yes;Yes;0,101;Q4;4;12;31;397;2;29;0,04;33,08;9,09;0;Chile;Latin America;"Universidad Diego Portales";"2017-2025";"Communication (Q4); Linguistics and Language (Q4)";"Social Sciences" +30889;21101301359;"Collingwood and British Idealism Studies";journal;"20513011, 17449413";"Imprint Academic";No;No;0,101;Q4;3;0;25;0;1;22;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Imprint Academic";"2019-2024";"Arts and Humanities (miscellaneous) (Q4); Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30890;21101186891;"Colloquia Germanica Stetinensia";journal;"2353317X, 24508543";"Wydawnictwo Naukowe Uniwersytetu Szczecinskiego";Yes;Yes;0,101;Q4;1;10;28;300;0;28;0,00;30,00;70,00;0;Poland;Eastern Europe;"Wydawnictwo Naukowe Uniwersytetu Szczecinskiego";"2023-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30891;21100837393;"Colloquia Maruliana";book series;"13323431, 18489613";"Knjizevni krug Split";No;No;0,101;Q4;4;6;34;318;3;22;0,06;53,00;33,33;0;Croatia;Eastern Europe;"Knjizevni krug Split";"2017-2025";"History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30892;16200154742;"Comitatus";journal;"15570290, 00696412";"UCLA, CMRS Center for Early Global Studies";No;No;0,101;Q4;5;9;78;742;3;78;0,04;82,44;22,22;0;United States;Northern America;"UCLA, CMRS Center for Early Global Studies";"2002-2009, 2017-2025";"History (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30893;21101049620;"Commentaria Classica";journal;"22835652";"Litterae Press";Yes;Yes;0,101;Q4;2;6;38;277;3;38;0,11;46,17;40,00;0;Italy;Western Europe;"Litterae Press";"2019-2025";"Classics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30894;21100372440;"Communication and Management";journal;"2271734X, 22697195";"Editions ESKA";No;No;0,101;Q4;4;0;43;0;0;38;0,00;0,00;0,00;0;France;Western Europe;"Editions ESKA";"2013-2024";"Business and International Management (Q4); Marketing (Q4)";"Business, Management and Accounting" +30895;21100268078;"Communio Viatorum";journal;"00103713";"Charles University in Prague, Protestant Theological Faculty";Yes;Yes;0,101;Q4;4;5;50;393;3;43;0,03;78,60;40,00;0;Czech Republic;Eastern Europe;"Charles University in Prague, Protestant Theological Faculty";"2011-2025";"History (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30896;16200154703;"Comparative Drama";journal;"19361637, 00104078";"Western Michigan University";No;No;0,101;Q4;13;16;67;829;10;64;0,14;51,81;80,00;0;United States;Northern America;"Western Michigan University";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30897;21101040634;"Comparative Oriental Manuscript Studies Bulletin";journal;"24100951";"Universitat Hamburg";Yes;Yes;0,101;Q4;5;0;47;0;14;46;0,11;0,00;0,00;0;Germany;Western Europe;"Universitat Hamburg";"2019-2024";"Conservation (Q4); Library and Information Sciences (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30898;4900153227;"Computer Software";journal;"02896540";"Japan Society for Software Science and Technology";No;No;0,101;Q4;8;39;124;549;5;105;0,01;14,08;16,85;0;Japan;Asiatic Region;"Japan Society for Software Science and Technology";"2000-2026";"Software (Q4)";"Computer Science" +30899;34477;"Connaissance des Arts";journal;"02939274";"Ankara University";No;No;0,101;Q4;2;0;36;0;0;30;0,00;0,00;0,00;0;France;Western Europe;"Ankara University";"1969, 1980, 2002-2014, 2018-2022";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30900;29853;"Connecticut Medicine";journal;"00106178";"Connecticut State Medical Society";No;No;0,101;Q4;26;0;42;0;1;34;0,00;0,00;0,00;0;United States;Northern America;"Connecticut State Medical Society";"1946, 1949-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +30901;29860;"Consultant";journal;"00107069";"Cliggott Publishing Co.";Yes;No;0,101;Q4;7;19;266;252;8;230;0,02;13,26;46,51;0;United States;Northern America;"Cliggott Publishing Co.";"1987-1991, 1996-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +30902;28661;"Consulting-Specifying Engineer";trade journal;"08925046";"Cahners Business Information";No;No;0,101;Q4;4;48;102;0;2;99;0,01;0,00;25,00;0;United States;Northern America;"Cahners Business Information";"1987-1990, 1994-2001, 2006-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +30903;21101295717;"Contemporanea (Rome)";journal;"1824355X, 17246105";"Fabrizio Serra Editore";No;No;0,101;Q4;0;0;37;0;0;35;0,00;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2021-2024";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30904;19700173108;"Convivium";journal;"22552855, 00108235";"Universitat de Barcelona";Yes;Yes;0,101;Q4;4;0;42;0;2;41;0,09;0,00;0,00;0;Spain;Western Europe;"Universitat de Barcelona";"2009-2014, 2017-2018, 2021-2024";"Philosophy (Q4)";"Arts and Humanities" +30905;21101081519;"Convivium (Poland)";journal;"26576252, 21968403";"Lodz University Press";Yes;Yes;0,101;Q4;2;8;36;235;2;29;0,00;29,38;83,33;0;Poland;Eastern Europe;"Lodz University Press";"2007-2025";"Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30906;13818;"Cornell Journal of Law and Public Policy";journal;"10690565";"Joe Christensen, Inc.";No;No;0,101;Q4;14;9;32;728;3;29;0,00;80,89;66,67;0;United States;Northern America;"Joe Christensen, Inc.";"1993, 1997-2002, 2004-2007, 2009, 2011-2025";"Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30907;21101168879;"Cornova";journal;"27879151, 18046983";"Institute of Czech Literature Czech Academy of Sciences";Yes;Yes;0,101;Q4;2;4;24;166;1;23;0,06;41,50;75,00;0;Czech Republic;Eastern Europe;"Institute of Czech Literature Czech Academy of Sciences";"2019-2025";"History (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +30908;21101039803;"CounterText";journal;"20564406, 20564414";"Edinburgh University Press";No;No;0,101;Q4;8;26;81;583;29;48;0,18;22,42;41,18;0;United Kingdom;Western Europe;"Edinburgh University Press";"2015-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30909;21100900269;"Court Historian";journal;"14629712, 20563450";"Taylor and Francis Ltd.";No;No;0,101;Q4;10;12;47;236;13;43;0,32;19,67;45,45;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2025";"History (Q4)";"Arts and Humanities" +30910;21101250400;"Croatica";journal;"26239280, 18491111";"University of Zagreb Faculty of Humanities and Social Sciences";Yes;Yes;0,101;Q4;1;22;45;602;0;31;0,00;27,36;80,00;0;Croatia;Eastern Europe;"University of Zagreb Faculty of Humanities and Social Sciences";"2020-2025";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30911;21100199123;"Croatica Christiana Periodica";journal;"03507823";"University of Zagreb";No;No;0,101;Q4;4;13;47;708;4;44;0,06;54,46;50,00;0;Croatia;Eastern Europe;"University of Zagreb";"2011-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30912;19900192733;"Cromohs";journal;"11237023";"Firenze University Press";Yes;Yes;0,101;Q4;6;4;32;225;4;29;0,11;56,25;66,67;0;Italy;Western Europe;"Firenze University Press";"2011-2015, 2017, 2019, 2021-2025";"History (Q4); History and Philosophy of Science (Q4)";"Arts and Humanities" +30913;21101168877;"Cuaderno de Notas";journal;"23868376, 11381590";"Universidad Politecnica de Madrid";Yes;Yes;0,101;Q4;2;12;33;343;1;30;0,05;28,58;46,15;0;Spain;Western Europe;"Universidad Politecnica de Madrid";"2019-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +30914;21101192677;"Cuadernos de Estudios del Siglo XVIII";journal;"26970643";"Universidad de Oviedo";No;No;0,101;Q4;3;13;49;532;5;46;0,10;40,92;36,36;0;Spain;Western Europe;"Universidad de Oviedo";"2019-2025";"Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30915;21100228001;"Cuadernos de Estudios Gallegos";book series;"0210847X, 19888333";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,101;Q4;5;0;39;0;3;39;0,08;0,00;0,00;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1967, 2012-2016, 2018-2024";"History (Q4)";"Arts and Humanities" +30916;14074;"Cuadernos de Investigacion Historica";journal;"26605880, 02106272";"Fundacion Universitaria Espanola";Yes;Yes;0,101;Q4;1;0;29;0;1;29;0,00;0,00;0,00;0;Spain;Western Europe;"Fundacion Universitaria Espanola";"1978-1979, 1999, 2001-2002, 2019-2024";"History (Q4)";"Arts and Humanities" +30917;21101033510;"Cuadernos de Musica Iberoamericana";journal;"25309900, 11365536";"Universidad Complutense Madrid";Yes;Yes;0,101;Q4;4;0;45;0;5;41;0,00;0,00;0,00;0;Spain;Western Europe;"Universidad Complutense Madrid";"2018-2024";"Music (Q4)";"Arts and Humanities" +30918;21101208549;"Cuadernos de Politica Criminal";journal;"23409290";"Dykinson Bookstore";No;No;0,101;Q4;3;17;57;1234;1;53;0,00;72,59;85,71;0;Spain;Western Europe;"Dykinson Bookstore";"2020-2025";"Law (Q4)";"Social Sciences" +30919;21101190211;"Cuadernos para la Investigacion de la Literatura Hispanica";journal;"2660647X, 02100061";"Fundacion Universitaria Espanola";Yes;Yes;0,101;Q4;1;16;27;547;2;27;0,07;34,19;52,94;0;Spain;Western Europe;"Fundacion Universitaria Espanola";"2023-2025";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30920;21100944391;"Cultura";journal;"03931560, 26122391";"Societa Editrice Il Mulino";No;No;0,101;Q4;2;16;83;825;2;81;0,02;51,56;26,32;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Literature and Literary Theory (Q4); Philosophy (Q4)";"Arts and Humanities" +30921;21101190208;"Cultural Intertexts";journal;"23931078, 23930624";"House of the Book of Science";Yes;No;0,101;Q4;0;19;30;365;0;28;0,00;19,21;75,00;0;Romania;Eastern Europe;"House of the Book of Science";"2023-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30922;21101126461;"Cultural Perspectives";journal;"25593439, 1224239X";"Vasile Alecsandri University of Bacau";Yes;Yes;0,101;Q4;2;13;34;252;1;32;0,04;19,38;86,67;0;Romania;Eastern Europe;"Vasile Alecsandri University of Bacau";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30923;5600152882;"Cultures et Conflits";journal;"17775345, 1157996X";"Pepper-L'Harmattan";No;No;0,101;Q4;8;0;23;0;0;22;0,00;0,00;0,00;0;France;Western Europe;"Pepper-L'Harmattan";"1997, 2016-2024";"Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30924;7200153193;"Current Trends in Immunology";journal;"09724567";"Research Trends";No;No;0,101;Q4;10;0;24;0;1;24;0,08;0,00;0,00;0;India;Asiatic Region;"Research Trends";"2006-2009, 2011-2023";"Immunology (Q4); Immunology and Allergy (Q4)";"Immunology and Microbiology; Medicine" +30925;21100446425;"Czech Yearbook of Public and Private International Law";book series;"18050565, 18050999";"Czech Society of International Law";No;No;0,101;Q4;5;0;83;0;1;76;0,02;0,00;0,00;0;Czech Republic;Eastern Europe;"Czech Society of International Law";"2015-2024";"Law (Q4)";"Social Sciences" +30926;21100224428;"Dacoromania";journal;"15824438";"Publishing House of the Romanian Academy";Yes;Yes;0,101;Q4;3;9;40;246;0;39;0,00;27,33;87,50;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2011-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30927;16200154779;"Dancing Times";journal;"0011605X";"Dancing Times Ltd.";No;No;0,101;Q4;2;0;74;0;0;28;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Dancing Times Ltd.";"2002-2022";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30928;21100223318;"Dansk Teologisk Tidsskrift";journal;"19023898, 01053191";"Eksistensen Akademisk";No;No;0,101;Q4;2;10;63;312;3;54;0,05;31,20;28,57;0;Denmark;Western Europe;"Eksistensen Akademisk";"2011-2016, 2018-2025";"Religious Studies (Q4)";"Arts and Humanities" +30929;21101295559;"Dante";journal;"18249272, 17249058";"Fabrizio Serra Editore";No;No;0,101;Q4;0;10;37;148;0;30;0,00;14,80;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2021-2024";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30930;21101033511;"Dante e l'Arte";journal;"23855355, 23857269";"Universitat Autonoma de Barcelona";Yes;Yes;0,101;Q4;2;3;49;0;1;45;0,04;0,00;100,00;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2019, 2021-2026";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30931;21100981106;"Danza e Ricerca";journal;"20361599";"Universita di Bologna";Yes;Yes;0,101;Q4;2;0;49;0;2;47;0,00;0,00;0,00;0;Italy;Western Europe;"Universita di Bologna";"2019-2024";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30932;21101138000;"De Arte";journal;"00043389, 24714100";"Taylor and Francis Ltd.";No;No;0,101;Q4;7;11;50;345;5;38;0,06;31,36;100,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1967-2025";"Cultural Studies (Q4)";"Social Sciences" +30933;5700182228;"Degres";journal;"03768163";"A.S.B.L. Degres";No;No;0,101;Q4;3;15;41;494;0;39;0,00;32,93;23,08;0;Belgium;Western Europe;"A.S.B.L. Degres";"2002-2014, 2016-2025";"Linguistics and Language (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +30934;21100901025;"Derrida Today";journal;"17548519, 17548500";"Edinburgh University Press";No;No;0,101;Q4;11;21;53;403;4;42;0,08;19,19;37,50;0;United Kingdom;Western Europe;"Edinburgh University Press";"2008-2025";"Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30935;28687;"Design Engineering (Canada)";trade journal;"00119342";"Annex Business Media";No;No;0,101;Q4;7;34;41;0;0;41;0,00;0,00;18,18;0;Canada;Northern America;"Annex Business Media";"1971-1976, 1996-2005, 2012-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +30936;21979;"Deutsche Lebensmittel-Rundschau";journal;"00120413";"Wissenschaftliche Verlagsgesellschaft mbH";Yes;No;0,101;Q4;27;181;742;402;10;179;0,01;2,22;57,14;0;Germany;Western Europe;"Wissenschaftliche Verlagsgesellschaft mbH";"1948-1949, 1961, 1973-1989, 1996-2025";"Food Science (Q4); Industrial and Manufacturing Engineering (Q4); Law (Q4)";"Agricultural and Biological Sciences; Engineering; Social Sciences" +30937;21101281546;"Diagonal";journal;"24704199";"eScholarship Publishing";Yes;No;0,101;Q4;1;11;26;288;1;26;0,06;26,18;36,36;0;United States;Northern America;"eScholarship Publishing";"2020-2025";"Cultural Studies (Q4); Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30938;16000154706;"Dialogues d'Histoire Ancienne";journal;"1955270X, 07557256";"Universite de Franche-Comte, U F R des Sciences du Langage, de l'Homme et de la Societe";Yes;Yes;0,101;Q4;9;0;84;0;4;80;0,05;0,00;0,00;0;France;Western Europe;"Universite de Franche-Comte, U F R des Sciences du Langage, de l'Homme et de la Societe";"2002-2024";"Classics (Q4); History (Q4)";"Arts and Humanities" +30939;21101339412;"Diciottesimo Secolo";journal;"25314165";"Firenze University Press";Yes;No;0,101;Q4;1;12;49;196;1;39;0,00;16,33;50,00;0;Italy;Western Europe;"Firenze University Press";"2021-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Literature and Literary Theory (Q4); Philosophy (Q4)";"Arts and Humanities" +30940;21101162982;"Digital Philology: Journal of Medieval Cultures";journal;"21629552, 21629544";"Johns Hopkins University Press";No;No;0,101;Q4;5;22;54;1551;10;53;0,19;70,50;43,48;0;United States;Northern America;"Johns Hopkins University Press";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +30941;21101057641;"Dirasat Hispanicas";journal;"22865977";"University of Tunis El Manar";Yes;Yes;0,101;Q4;2;0;32;0;3;28;0,08;0,00;0,00;0;Tunisia;Africa;"University of Tunis El Manar";"2020-2024";"History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30942;21101061923;"Direito, Estado e Sociedade";journal;"19820879, 15166104";"Pontificia Universidade Catolica do Rio de Janeiro";Yes;No;0,101;Q4;3;13;71;518;2;71;0,00;39,85;50,00;0;Brazil;Latin America;"Pontificia Universidade Catolica do Rio de Janeiro";"2019-2025";"Law (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +30943;21101224876;"Distinctio";journal;"29390826, 29392764";"Hegel Society";No;No;0,101;Q4;1;0;41;0;1;32;0,04;0,00;0,00;0;Croatia;Eastern Europe;"Hegel Society";"2022-2024";"Philosophy (Q4)";"Arts and Humanities" +30944;21100203120;"Documentatieblad voor de Nederlandse Kerkgeschiedenis na 1800";journal;"26659492, 09237771";"Amsterdam University Press";No;No;0,101;Q4;2;8;27;253;3;27;0,06;31,63;0,00;0;Netherlands;Western Europe;"Amsterdam University Press";"1979, 1985, 2011-2013, 2019-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30945;17600155051;"Drug Development and Delivery";trade journal;"1944818X, 15372898";"Drug Delivery Technology";No;No;0,101;Q4;13;69;220;438;3;83;0,01;6,35;23,68;0;United States;Northern America;"Drug Delivery Technology";"2009-2026";"Pharmaceutical Science (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +30946;21238;"Drug Topics";journal;"19378157, 00126616";"Advanstar Communications Inc.";No;No;0,101;Q4;8;65;315;68;5;48;0,02;1,05;57,14;0;United States;Northern America;"Advanstar Communications Inc.";"1991, 1997-2026";"Pharmaceutical Science (Q4); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +30947;21101240973;"Early Middle English";journal;"25169084, 25169092";"Arc Humanities Press";No;No;0,101;Q4;3;10;22;730;2;21;0,00;73,00;44,44;0;United Kingdom;Western Europe;"Arc Humanities Press";"2019-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30948;24542;"eb - Elektrische Bahnen";trade journal;"00135437";"De Gruyter Open Ltd";No;No;0,101;Q4;14;66;149;404;18;143;0,16;6,12;9,28;0;Germany;Western Europe;"De Gruyter Open Ltd";"1969-1988, 1995-2001, 2003-2025";"Automotive Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Engineering" +30949;21100281306;"Ecclesia Orans";journal;"10103872";"Pontificio Istituto Liturgico";No;No;0,101;Q4;4;12;54;959;3;51;0,06;79,92;0,00;0;Italy;Western Europe;"Pontificio Istituto Liturgico";"2012, 2014, 2017, 2020-2025";"Religious Studies (Q4)";"Arts and Humanities" +30950;21100840483;"Edgar Allan Poe Review";journal;"21500428, 21662932";"Penn State University Press";No;No;0,101;Q4;4;25;70;148;6;29;0,11;5,92;20,00;0;United States;Northern America;"Penn State University Press";"2017-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30951;21101202001;"Edgar Wind Journal";journal;"27852903";"Bernardino Branca";No;No;0,101;Q4;3;12;29;342;1;23;0,06;28,50;55,56;0;Italy;Western Europe;"Bernardino Branca";"2021-2025";"Arts and Humanities (miscellaneous) (Q4); Philosophy (Q4)";"Arts and Humanities" +30952;21100929414;"Eidola";journal;"1826719X, 18246192";"Fabrizio Serra Editore Srl";No;No;0,101;Q4;1;6;25;452;1;25;0,06;75,33;50,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019, 2022-2025";"Classics (Q4); History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30953;21101039834;"Eidos: A Journal for Philosophy of Culture";journal;"2544302X";"University of Warsaw";Yes;Yes;0,101;Q4;6;9;98;179;18;75;0,23;19,89;37,50;0;Poland;Eastern Europe;"University of Warsaw";"2017-2025";"Cultural Studies (Q4); Philosophy (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +30954;81529;"Eighteenth-Century Ireland";journal;"07907915";"Eighteenth-Century Ireland Society";No;No;0,101;Q4;10;7;28;579;0;24;0,00;82,71;60,00;0;Ireland;Western Europe;"Eighteenth-Century Ireland Society";"1986, 2002-2019, 2021-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +30955;21101378326;"Eikonocity";journal;"24991422";"FeDOA - Federico II University Press";No;No;0,101;Q4;1;15;37;416;0;30;0,00;27,73;60,00;0;Italy;Western Europe;"FeDOA - Federico II University Press";"2025";"History (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +30956;17700154904;"Eirene";journal;"00461628";"Centre for Classical Studies at the Institute of Philosophy, Czech Academy of Sciences";No;No;0,101;Q4;6;0;21;0;3;21;0,17;0,00;0,00;0;Czech Republic;Eastern Europe;"Centre for Classical Studies at the Institute of Philosophy, Czech Academy of Sciences";"2002-2023";"Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30957;21100967515;"English Literature";journal;"2420823X";"Edizioni Ca' Foscari";Yes;Yes;0,101;Q4;2;0;23;0;1;22;0,07;0,00;0,00;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2019-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30958;21100236003;"Epidemiologie et Sante Animale";journal;"07542186";"L'Association pour l'Etude de l'Epidemiologie des Maladies Animales";No;No;0,101;Q4;4;0;25;0;0;25;0,00;0,00;0,00;0;France;Western Europe;"L'Association pour l'Etude de l'Epidemiologie des Maladies Animales";"2012-2018, 2023";"Veterinary (miscellaneous) (Q4)";"Veterinary" +30959;16800154744;"Erasmus of Rotterdam Society Yearbook";journal;"18749275, 02762854";"Brill Academic Publishers";No;No;0,101;Q4;7;9;29;808;4;21;0,19;89,78;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"1981-1984, 1986-1987, 1989, 1991, 1995-2008, 2010, 2012, 2014-2026";"History (Q4); Philosophy (Q4)";"Arts and Humanities" +30960;22051;"Ergotherapie und Rehabilitation";journal;"09428623";"Schulz-Kirchner Verlag GmbH";No;No;0,101;Q4;4;66;384;0;1;135;0,00;0,00;75,86;0;Germany;Western Europe;"Schulz-Kirchner Verlag GmbH";"2001-2026";"Occupational Therapy (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)";"Health Professions" +30961;21100200655;"Eriu";journal;"03320758, 20090056";"Royal Irish Academy";No;No;0,101;Q4;8;0;29;0;0;29;0,00;0,00;0,00;0;Ireland;Western Europe;"Royal Irish Academy";"2011-2024";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30962;21101152861;"Ermeneutica Letteraria";journal;"18278957, 18256619";"Fabrizio Serra Editore";No;No;0,101;Q4;1;0;30;0;1;23;0,00;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2024";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30963;21100200607;"Ernahrung";journal;"02501554";"Fachzeitschriftenverlagsges. m. b. H";No;No;0,101;Q4;3;15;130;0;0;50;0,00;0,00;60,00;0;Austria;Western Europe;"Fachzeitschriftenverlagsges. m. b. H";"2011-2013, 2017-2025";"Biotechnology (Q4); Food Science (Q4); Industrial and Manufacturing Engineering (Q4); Nutrition and Dietetics (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Engineering; Nursing" +30964;21101053654;"ER(R)GO";journal;"15086305, 25443186";"Wydawnictwo Uniwersytetu Slaskiego";Yes;Yes;0,101;Q4;2;24;75;1230;4;71;0,08;51,25;59,26;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Slaskiego";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +30965;21100891039;"Erudition and the Republic of Letters";journal;"24055050, 24055069";"Brill Academic Publishers";No;No;0,101;Q4;6;6;37;907;4;37;0,10;151,17;28,57;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016-2025";"Communication (Q4); Education (Q4); History (Q4); History and Philosophy of Science (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30966;21101157207;"Escritura e Imagen";journal;"18855687, 19882416";"Universidad Complutense Madrid";Yes;Yes;0,101;Q4;2;3;49;0;3;39;0,03;0,00;0,00;0;Spain;Western Europe;"Universidad Complutense Madrid";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30967;21100245908;"Espaco Plural";journal;"1981478X, 15184196";"Universidade Estadual do Oeste do Parana";Yes;Yes;0,101;Q4;4;18;56;517;0;51;0,00;28,72;47,83;0;Brazil;Latin America;"Universidade Estadual do Oeste do Parana";"2012-2017, 2021-2025";"Linguistics and Language (Q4)";"Social Sciences" +30968;16100154764;"ESQ - Journal of the American Renaissance";journal;"1935021X, 00938297";"Washington State University Press";No;No;0,101;Q4;10;9;44;402;2;42;0,07;44,67;66,67;0;United States;Northern America;"Washington State University Press";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30969;21101306317;"Essays in Romanticism";journal;"20496702, 20496699";"Liverpool University Press";No;No;0,101;Q4;2;11;35;383;1;34;0,04;34,82;45,45;0;United Kingdom;Western Europe;"Liverpool University Press";"2017, 2021-2025";"Arts and Humanities (miscellaneous) (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30970;19700183134;"Estreno";journal;"00978663";"Estreno";No;No;0,101;Q4;2;7;51;151;3;43;0,06;21,57;83,33;0;United States;Northern America;"Estreno";"2010-2025";"Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30971;21101093542;"Estudios de Historia de Espana";journal;"24690961, 03280284";"Pontificia Universidad Catolica Argentina";Yes;Yes;0,101;Q4;2;9;34;480;3;32;0,08;53,33;55,56;0;Argentina;Latin America;"Pontificia Universidad Catolica Argentina";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities" +30972;17100154758;"Etudes Classiques";journal;"0014200X";"Societe des Etudes Classiques A S B L";No;No;0,101;Q4;8;0;33;0;1;32;0,03;0,00;0,00;0;Belgium;Western Europe;"Societe des Etudes Classiques A S B L";"1979, 1996, 2002-2015, 2017-2021, 2023-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30973;16400154755;"Euphorion - Zeitschrift fur Literaturgeschichte";journal;"00142328";"Universitaetsverlag Winter GmbH";No;No;0,101;Q4;4;0;49;0;2;48;0,04;0,00;0,00;0;Germany;Western Europe;"Universitaetsverlag Winter GmbH";"2002-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30974;21101278452;"Euphrosyne: Journal for Classical Philology";journal;"27363082";"Brepols Publishers";Yes;No;0,101;Q4;6;0;50;0;1;50;0,03;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2023-2024";"Classics (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +30975;24795;"European Journal of Pediatric Dermatology";journal;"11227672, 22819649";"Dermatologia Pediatrica";No;No;0,101;Q4;11;62;170;781;2;156;0,02;12,60;61,18;0;Italy;Western Europe;"Dermatologia Pediatrica";"1994-2026";"Dermatology (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +30976;21100844825;"European Judaism";journal;"00143006, 17522323";"Berghahn Journals";No;No;0,101;Q4;5;31;70;540;8;66;0,09;17,42;25,00;0;United States;Northern America;"Berghahn Journals";"2012, 2017-2025";"Applied Psychology (Q4); Cultural Studies (Q4); History (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Psychology; Social Sciences" +30977;16300154780;"European Medieval Drama";journal;"13782274, 20310064";"Brepols Publishers";No;No;0,101;Q4;5;0;22;0;0;22;0,00;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2002-2009, 2011-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30978;21334;"European Pharmaceutical Contractor";journal;"1364369X";"Samedan Ltd";No;No;0,101;Q4;4;2;24;12;0;21;0,00;6,00;50,00;0;United Kingdom;Western Europe;"Samedan Ltd";"2002-2016, 2023-2025";"Pharmaceutical Science (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +30979;21101017897;"European Yearbook of the History of Psychology";journal;"22955267, 25070304";"Brepols Publishers";No;No;0,101;Q4;5;0;30;0;0;28;0,00;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2015-2024";"History (Q4); Psychology (miscellaneous) (Q4)";"Arts and Humanities; Psychology" +30980;21101190430;"Evangelical Quarterly: An International Review of Bible and Theology";journal;"00143367";"Brill Academic Publishers";No;No;0,101;Q4;9;17;54;1411;4;54;0,11;83,00;6,25;0;Netherlands;Western Europe;"Brill Academic Publishers";"1929-1940, 1942-2010, 2012-2025";"Arts and Humanities (miscellaneous) (Q4); Classics (Q4); Religious Studies (Q4)";"Arts and Humanities" +30981;21100218069;"Exemplaria Classica";journal;"16993225";"Universidad de Huelva";Yes;No;0,101;Q4;5;13;27;156;2;24;0,05;12,00;11,11;0;Spain;Western Europe;"Universidad de Huelva";"2011-2025";"Classics (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +30982;21100404505;"Experiment";journal;"2211730X, 10844945";"Brill Academic Publishers";No;No;0,101;Q4;5;13;43;653;2;39;0,03;50,23;53,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"1996-1998, 2000, 2002-2004, 2006, 2008-2009, 2011-2014, 2016-2020, 2022-2025";"Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30983;21101124341;"Ex-position";journal;"2663032X, 27094103";"National Taiwan University Department of Foreign Languages and Literatures";No;No;0,101;Q4;5;13;46;493;5;35;0,12;37,92;63,64;0;Taiwan;Asiatic Region;"National Taiwan University Department of Foreign Languages and Literatures";"2018-2025";"Arts and Humanities (miscellaneous) (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +30984;18700156720;"Eye - International Review of Graphic Design";journal;"0960779X";"Haymarket Business Publications Ltd.";No;No;0,101;Q4;1;14;33;0;0;25;0,00;0,00;27,27;0;United Kingdom;Western Europe;"Haymarket Business Publications Ltd.";"2008-2019, 2021-2023, 2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +30985;21100871672;"F. Scott Fitzgerald Review";journal;"15433951, 17556333";"Penn State University Press";No;No;0,101;Q4;3;0;30;0;3;27;0,00;0,00;0,00;0;United States;Northern America;"Penn State University Press";"2017-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +30986;12871;"Federal Register";journal;"00976326";"Office of the Federal Register";No;No;0,101;Q4;63;0;238;0;2;163;0,01;0,00;0,00;0;United States;Northern America;"Office of the Federal Register";"1973-2024";"Law (Q4); Public Administration (Q4)";"Social Sciences" +30987;21100869512;"Festival dell'Architettura Magazine";journal;"20390491";"Festival Architettura Edizioni";Yes;Yes;0,101;Q4;3;0;136;0;2;131;0,00;0,00;0,00;0;Italy;Western Europe;"Festival Architettura Edizioni";"2018-2024";"Architecture (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering; Social Sciences" +30988;21101211363;"Fictions";journal;"17213673, 1724045X";"Fabrizio Serra Editore";No;No;0,101;Q4;1;8;26;187;1;23;0,00;23,38;71,43;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +30989;21100218017;"Film International";journal;"20403801, 16516826";"Intellect Ltd.";No;No;0,101;Q4;6;0;88;0;5;52;0,11;0,00;0,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2007, 2009, 2012-2024";"Communication (Q4); Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +30990;5800215407;"Filologija";journal;"0449363X";"Croatian Academy of Sciences and Arts";No;No;0,101;Q4;5;14;47;428;2;46;0,06;30,57;41,67;0;Croatia;Eastern Europe;"Croatian Academy of Sciences and Arts";"2011-2025";"Linguistics and Language (Q4)";"Social Sciences" +30991;12942;"Filtration and Separation";trade journal;"18737218, 00151882";"MA Healthcare Ltd";No;No;0,101;Q4;35;9;39;0;0;39;0,00;0,00;50,00;0;United Kingdom;Western Europe;"MA Healthcare Ltd";"1970-2025";"Environmental Science (miscellaneous) (Q4); Filtration and Separation (Q4); Industrial and Manufacturing Engineering (Q4)";"Chemical Engineering; Engineering; Environmental Science" +30992;21101272731;"Folia Historica Bohemica";journal;"02317494, 27883205";"Czech Academy of Sciences, Institute of History";No;No;0,101;Q4;1;15;22;933;1;22;0,00;62,20;40,00;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences, Institute of History";"2020-2024";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30993;21101290590;"Fortunatae";journal;"25308343";"Facultad de Filologia - Universidad de La Laguna";Yes;No;0,101;Q4;2;14;40;890;1;40;0,00;63,57;45,45;0;Spain;Western Europe;"Facultad de Filologia - Universidad de La Laguna";"2021-2025";"Classics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30994;17500154909;"Forum Modernes Theater";journal;"09305874";"Gunter Narr Verlag";No;No;0,101;Q4;4;13;41;273;3;33;0,13;21,00;76,92;0;Germany;Western Europe;"Gunter Narr Verlag";"2002-2010, 2012-2014, 2019-2023, 2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30995;21101062038;"Francofonia";journal;"1121953X, 20365659";"Casa Editrice Leo S. Olschki";No;No;0,101;Q4;1;1;40;21;0;31;0,00;21,00;100,00;0;Italy;Western Europe;"Casa Editrice Leo S. Olschki";"2020-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +30996;16400154756;"French Forum";journal;"15341836, 00989355";"University of Pennsylvania Press";No;No;0,101;Q4;10;12;52;245;4;50;0,02;20,42;27,27;0;United States;Northern America;"University of Pennsylvania Press";"2002-2023, 2025";"Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +30997;18271;"Fruhmittelalterliche Studien";book series;"00719706, 16130812";"Walter de Gruyter GmbH";No;No;0,101;Q4;15;0;45;0;7;44;0,15;0,00;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1967-1972, 1974-1984, 1986-2007, 2009, 2011-2024";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +30998;21100275429;"Galilaeana";journal;"19716052, 18253903";"Museo Galileo";No;No;0,101;Q4;4;14;46;801;4;39;0,08;57,21;57,14;0;Italy;Western Europe;"Museo Galileo";"2012-2020, 2022-2025";"History (Q4); History and Philosophy of Science (Q4)";"Arts and Humanities" +30999;21867;"Geneesmiddelenbulletin";journal;"03044629";"Stichting Geneesmiddelenbulletin";No;No;0,101;Q4;7;0;37;0;0;37;0,00;0,00;0,00;0;Netherlands;Western Europe;"Stichting Geneesmiddelenbulletin";"1973-2023";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +31000;28655;"Geografski Obzornik";journal;"00167274";"Mojca Dolgan Petric University of Ljubljana";No;No;0,101;Q4;6;9;37;237;0;37;0,00;26,33;33,33;0;Slovenia;Eastern Europe;"Mojca Dolgan Petric University of Ljubljana";"1993-2025";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +31001;21100872052;"George Eliot-George Henry Lewes Studies";journal;"23721901, 2372191X";"Penn State University Press";No;No;0,101;Q4;4;0;29;0;0;27;0,00;0,00;0,00;0;United States;Northern America;"Penn State University Press";"2017-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31002;16100154776;"Germanoslavica (Czech Republic)";journal;"12109029";"Slovansky Ustav AV CR";No;No;0,101;Q4;3;0;55;0;0;34;0,00;0,00;0,00;0;Czech Republic;Eastern Europe;"Slovansky Ustav AV CR";"2002, 2004-2024";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31003;19900192015;"Geschichte und Region / Storia e Regione";journal;"11210303";"";No;No;0,101;Q4;1;0;65;0;1;37;0,00;0,00;0,00;0;Austria;Western Europe;"";"2002, 2022-2024";"History (Q4)";"Arts and Humanities" +31004;21100421895;"Getty Research Journal";journal;"23291249, 19448740";"";No;No;0,101;Q4;6;8;42;270;3;40;0,00;33,75;62,50;0;United States;Northern America;"";"2015-2025";"Conservation (Q4); History (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31005;21101287174;"GNLU Journal of Law and Economics";journal;"25822667";"GNLU Centre For Law and Economics";No;No;0,101;Q4;1;6;36;207;2;31;0,04;34,50;44,44;0;India;Asiatic Region;"GNLU Centre For Law and Economics";"2021-2025";"Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4); Social Sciences (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +31006;21101239985;"Great Circle";journal;"22099409, 01568698";"Australian Association for Maritime History";No;No;0,101;Q4;2;19;39;281;3;23;0,04;14,79;47,62;0;Australia;Pacific Region;"Australian Association for Maritime History";"2019-2025";"History (Q4)";"Arts and Humanities" +31007;21101284620;"Gynakologie in der Praxis";journal;"30050766, 30050758";"Springer";No;No;0,101;Q4;8;48;60;476;1;30;0,03;9,92;64,71;0;Austria;Western Europe;"Springer";"2025-2026";"Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)";"Medicine" +31008;21100866762;"Hagiographica";journal;"11241225";"SISMEL Edizioni del Galluzzo";No;No;0,101;Q4;3;9;28;167;2;27;0,00;18,56;46,15;0;Italy;Western Europe;"SISMEL Edizioni del Galluzzo";"2017-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31009;21101041504;"Haide Estudis Maragallians";journal;"20143818";"Biblioteca de Catalunya";Yes;Yes;0,101;Q4;2;12;50;286;4;50;0,06;23,83;57,14;0;Spain;Western Europe;"Biblioteca de Catalunya";"2019-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31010;21101115502;"Hamsa";journal;"21832633";"Centro Interdisciplinar de Historia Culturas e Sociedades da Universidade de Evora (CIDEHUS)";No;No;0,101;Q4;2;5;22;449;2;21;0,06;89,80;60,00;0;Portugal;Western Europe;"Centro Interdisciplinar de Historia Culturas e Sociedades da Universidade de Evora (CIDEHUS)";"2019-2020, 2022-2025";"Anthropology (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31011;16424;"Hart's E and P";trade journal;"15274063";"Hart Publications Inc.";No;No;0,101;Q4;10;0;28;0;0;28;0,00;0,00;0,00;0;United States;Northern America;"Hart Publications Inc.";"1996, 1999-2016, 2018-2021, 2024";"Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4)";"Energy" +31012;5900152753;"Harvard Design Magazine";journal;"10934421, 15360113";"Harvard University";No;No;0,101;Q4;9;0;41;0;2;33;0,00;0,00;0,00;0;United States;Northern America;"Harvard University";"2009-2019, 2021-2022, 2024";"Architecture (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering; Social Sciences" +31013;17700154932;"Hebrew Union College Annual";journal;"03609049";"Atla";No;No;0,101;Q4;7;0;28;0;0;25;0,00;0,00;0,00;0;United States;Northern America;"Atla";"2006-2010, 2014-2024";"Education (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31014;21100812554;"Hematology (Bulgaria)";journal;"23677864";"Bulgarian Medical Society of Hematology";No;No;0,101;Q4;1;9;51;256;1;51;0,00;28,44;57,14;0;Bulgaria;Eastern Europe;"Bulgarian Medical Society of Hematology";"2015-2025";"Hematology (Q4); Immunology and Allergy (Q4)";"Medicine" +31015;21101045031;"Heteroglossia";journal;"20841302, 26577461";"University of Economy";No;No;0,101;Q4;2;0;39;0;4;39;0,00;0,00;0,00;0;Poland;Eastern Europe;"University of Economy";"2020-2022";"Cultural Studies (Q4); Linguistics and Language (Q4)";"Social Sciences" +31016;13944;"Hirosaki Medical Journal";journal;"04391721, 24344656";"Hirosaki University School of Medicine";No;No;0,101;Q4;6;7;52;195;1;52;0,03;27,86;15,79;0;Japan;Asiatic Region;"Hirosaki University School of Medicine";"1973-2014, 2016-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +31017;21100831408;"Hispania Antiqua";journal;"11300515";"Universidad de Valladolid";No;No;0,101;Q4;4;0;24;0;0;23;0,00;0,00;0,00;0;Spain;Western Europe;"Universidad de Valladolid";"2011-2013, 2015-2024";"History (Q4)";"Arts and Humanities" +31018;16800154746;"Histoire de l'Education";journal;"02216280";"Institut National de Recherche Pedagogique";No;No;0,101;Q4;10;0;47;0;0;46;0,00;0,00;0,00;0;France;Western Europe;"Institut National de Recherche Pedagogique";"2001-2024";"Education (Q4); History and Philosophy of Science (Q4)";"Arts and Humanities; Social Sciences" +31019;79134;"Histoire et Societes Rurales";journal;"1254728X, 1950666X";"Association d'Histoire des Societes Rurales";No;No;0,101;Q4;9;0;34;0;1;33;0,05;0,00;0,00;0;France;Western Europe;"Association d'Histoire des Societes Rurales";"1995, 1999, 2001-2020, 2022-2024";"Anthropology (Q4); Cultural Studies (Q4); Geography, Planning and Development (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31020;17600155119;"Histoire Urbaine";journal;"16280482";"Societe Francaise d'Histoire Urbaine";Yes;No;0,101;Q4;10;0;86;0;2;78;0,04;0,00;0,00;0;France;Western Europe;"Societe Francaise d'Histoire Urbaine";"2000-2024";"Geography, Planning and Development (Q4); History (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +31021;21101146396;"Historia Philosophica";journal;"1824095X, 17246121";"Fabrizio Serra Editore";No;No;0,101;Q4;2;16;43;448;0;39;0,00;28,00;43,75;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Philosophy (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +31022;22345;"Historia Scientiarum";journal;"02854821";"History of Science Society of Japan";No;No;0,101;Q4;7;6;32;499;4;26;0,21;83,17;20,00;0;Japan;Asiatic Region;"History of Science Society of Japan";"1981, 1983-1984, 1986, 1992-1993, 2001-2004, 2008-2025";"History and Philosophy of Science (Q4)";"Arts and Humanities" +31023;21100283786;"Historia Urbana";journal;"1221650X";"Publishing House of the Romanian Academy";No;No;0,101;Q4;2;0;46;0;2;45;0,03;0,00;0,00;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2013-2024";"History (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +31024;21101119729;"Historica (Ostrava)";journal;"2695060X, 18037550";"University of Ostrava";Yes;Yes;0,101;Q4;2;5;29;243;2;28;0,10;48,60;28,57;0;Czech Republic;Eastern Europe;"University of Ostrava";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Philosophy (Q4)";"Arts and Humanities" +31025;21101316433;"Historical Inquiry";journal;"10128514";"College of Management Press";No;No;0,101;Q4;1;5;31;434;1;30;0,05;86,80;60,00;0;Taiwan;Asiatic Region;"College of Management Press";"2021-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4)";"Arts and Humanities" +31026;21101050911;"Historijski Pogledi";journal;"26371502, 27120651";"Centar za istrazivanje moderne i savremene historije Tuzla";Yes;Yes;0,101;Q4;2;37;115;1309;9;111;0,09;35,38;30,00;0;Bosnia and Herzegovina;Eastern Europe;"Centar za istrazivanje moderne i savremene historije Tuzla";"2018-2025";"Demography (Q4); History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31027;21100238409;"Historische Anthropologie";book series;"21944032, 09428704";"";No;No;0,101;Q4;9;1;72;0;7;45;0,10;0,00;100,00;0;Germany;Western Europe;"";"1993-1995, 2011-2025";"Anthropology (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31028;21101224878;"History of Classical Scholarship";journal;"26324091";"";Yes;Yes;0,101;Q4;3;8;32;443;1;30;0,05;55,38;58,33;0;United Kingdom;Western Europe;"";"2020-2026";"Archeology (Q4); Classics (Q4); History (Q4); Linguistics and Language (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31029;13975;"Hong Kong Practitioner";journal;"10273948";"Hong Kong College of Family Physicians";No;No;0,101;Q4;11;5;56;95;0;27;0,00;19,00;42,86;0;Hong Kong;Asiatic Region;"Hong Kong College of Family Physicians";"1997-2025";"Family Practice (Q4)";"Medicine" +31030;23131;"Houston Journal of Mathematics";journal;"03621588";"University of Houston";No;No;0,101;Q4;39;0;30;0;0;29;0,00;0,00;0,00;0;United States;Northern America;"University of Houston";"1996-2020, 2022-2023";"Mathematics (miscellaneous) (Q4)";"Mathematics" +31031;21100843011;"Hrvatski Dijalektoloski Zbornik";journal;"24594849, 0439691X";"Croatian Academy of Sciences and Arts";Yes;Yes;0,101;Q4;4;0;30;0;5;30;0,27;0,00;0,00;0;Croatia;Eastern Europe;"Croatian Academy of Sciences and Arts";"2017-2024";"Linguistics and Language (Q4)";"Social Sciences" +31032;144743;"Human Resource Management International Digest";journal;"09670734";"Emerald Group Publishing Ltd.";No;No;0,101;Q4;22;130;328;131;11;225;0,04;1,01;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2002-2026";"Organizational Behavior and Human Resource Management (Q4)";"Business, Management and Accounting" +31033;16000154751;"Humanistica Lovaniensia: Journal of Neo-Latin studies";journal;"07742908";"Peeters Publishers";Yes;No;0,101;Q4;7;0;31;0;2;29;0,04;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"2002-2003, 2005-2011, 2018-2019, 2021-2023";"Classics (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31034;21101154267;"Humanitas Taiwanica";journal;"10152687";"National Taiwan University";No;No;0,101;Q4;0;9;29;516;0;29;0,00;57,33;11,11;0;Taiwan;Asiatic Region;"National Taiwan University";"2019, 2022-2025";"Arts and Humanities (miscellaneous) (Q4); Classics (Q4); History (Q4); Philosophy (Q4)";"Arts and Humanities" +31035;21100860059;"Hypnos";journal;"14139138, 21775346";"Faculty of Engineering, Khon Kaen University";No;No;0,101;Q4;2;8;30;249;0;30;0,00;31,13;0,00;0;Brazil;Latin America;"Faculty of Engineering, Khon Kaen University";"2017-2018, 2020-2025";"Classics (Q4); Philosophy (Q4)";"Arts and Humanities" +31036;21101212237;"I Quaderni del M.AE.S.";journal;"15938999, 25332325";"University of Bologna";Yes;Yes;0,101;Q4;2;11;35;581;4;32;0,16;52,82;75,00;0;Italy;Western Europe;"University of Bologna";"2020-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +31037;16300154762;"I Tatti Studies";journal;"03935949, 20376731";"University of Chicago Press";No;No;0,101;Q4;9;8;46;148;2;22;0,07;18,50;22,22;0;Italy;Western Europe;"University of Chicago Press";"2005, 2007, 2009, 2014-2025";"History (Q4); Literature and Literary Theory (Q4); Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31038;21100942399;"IAFOR Journal of Literature and Librarianship";journal;"21870608";"The International Academic Forum (IAFOR)";Yes;Yes;0,101;Q4;4;8;32;222;7;30;0,25;27,75;45,45;0;Japan;Asiatic Region;"The International Academic Forum (IAFOR)";"2019-2025";"Library and Information Sciences (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31039;21100373303;"Ibsen Studies";journal;"17418720, 15021866";"Routledge";No;No;0,101;Q4;9;7;27;176;4;24;0,17;25,14;50,00;0;United States;Northern America;"Routledge";"2000-2025";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31040;21100833038;"Iconographica";journal;"17201764";"SISMEL Edizioni del Galluzzo";No;No;0,101;Q4;2;0;31;0;0;31;0,00;0,00;0,00;0;Italy;Western Europe;"SISMEL Edizioni del Galluzzo";"2015-2024";"Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31041;5800160112;"Ikon";journal;"18468551";"Brepols Publishers";No;No;0,101;Q4;7;0;27;0;4;27;0,00;0,00;0,00;0;Croatia;Eastern Europe;"Brepols Publishers";"2008-2010, 2012, 2014-2022";"Religious Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31042;84518;"Illinois Classical Studies";journal;"23285265, 03631923";"University of Illinois Press";No;No;0,101;Q4;5;11;52;474;4;42;0,06;43,09;28,57;0;United States;Northern America;"University of Illinois Press";"1976, 1978, 1982, 1987, 2019-2025";"Classics (Q4)";"Arts and Humanities" +31043;145736;"Imagerie de la Femme";journal;"17769817";"Elsevier Masson s.r.l.";No;No;0,101;Q4;9;32;96;534;1;93;0,00;16,69;53,77;0;France;Western Europe;"Elsevier Masson s.r.l.";"2005-2025";"Surgery (Q4)";"Medicine" +31044;21101021487;"Imago - Revista de Emblematica y Cultura Visual";journal;"21710147, 22549633";"University of Valencia";No;Yes;0,101;Q4;4;0;29;0;1;26;0,00;0,00;0,00;0;Spain;Western Europe;"University of Valencia";"2019-2024";"Communication (Q4); Linguistics and Language (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31045;21100940523;"In_Bo";journal;"20361602";"University of Bologna";Yes;No;0,101;Q4;3;14;63;319;2;62;0,02;22,79;50,00;0;Italy;Western Europe;"University of Bologna";"2019-2025";"Architecture (Q4); Building and Construction (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering; Social Sciences" +31046;21100227416;"Incidenza dell' Antico";journal;"19712995";"Luciano Editore";No;No;0,101;Q4;3;0;39;0;2;35;0,03;0,00;0,00;0;Italy;Western Europe;"Luciano Editore";"2012, 2019-2024";"Classics (Q4); History (Q4)";"Arts and Humanities" +31047;5700154199;"Index on Censorship";journal;"17466067, 03064220";"SAGE Publications Inc.";No;No;0,101;Q4;12;97;364;5;16;100;0,04;0,05;76,67;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1972-1993, 1995-2025";"History (Q4); Philosophy (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31048;21100400140;"Indian Historical Review";journal;"09755977, 03769836";"SAGE Publications Inc.";No;No;0,101;Q4;5;17;59;822;5;59;0,09;48,35;41,18;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1999, 2001, 2014-2025";"History (Q4)";"Arts and Humanities" +31049;110113;"Indian Journal of Practical Pediatrics";journal;"09729607";"The Indian Academy of Pediatrics";No;No;0,101;Q4;5;35;98;641;3;83;0,04;18,31;53,33;0;India;Asiatic Region;"The Indian Academy of Pediatrics";"2003-2025";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +31050;28417;"Ink World";trade journal;"1093328X";"Rodman Publications Inc.";No;No;0,101;Q4;3;26;91;0;0;33;0,00;0,00;33,33;0;United States;Northern America;"Rodman Publications Inc.";"1998-2025";"Chemical Engineering (miscellaneous) (Q4); Materials Chemistry (Q4); Media Technology (Q4)";"Chemical Engineering; Engineering; Materials Science" +31051;50147;"InTech";trade journal;"0192303X";"International Society of Automation";No;No;0,101;Q4;8;0;109;0;1;106;0,02;0,00;0,00;0;United States;Northern America;"International Society of Automation";"1979-1992, 1994-1999, 2002-2024";"Control and Systems Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Instrumentation (Q4)";"Engineering; Physics and Astronomy" +31052;21101286805;"International Conference on Advanced Semiconductor Devices and Microsystems, ASDAM";journal;"24749737, 24752916";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,101;Q4;1;0;23;0;2;21;0,09;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Hardware and Architecture (Q4); Instrumentation (Q4); Safety, Risk, Reliability and Quality (Q4)";"Computer Science; Engineering; Materials Science; Physics and Astronomy" +31053;15996;"International Dyer and Finisher";trade journal;"0020658X";"World Textile Information Network";No;No;0,101;Q4;12;0;51;0;0;45;0,00;0,00;0,00;0;United Kingdom;Western Europe;"World Textile Information Network";"1989-1992, 1995-2023";"Business and International Management (Q4); Environmental Science (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Management, Monitoring, Policy and Law (Q4); Polymers and Plastics (Q4)";"Business, Management and Accounting; Engineering; Environmental Science; Materials Science" +31054;21100775043;"International Journal for the Study of New Religions";journal;"2041952X, 20419511";"Equinox Publishing Ltd";No;No;0,101;Q4;6;0;22;0;0;22;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Equinox Publishing Ltd";"2016-2024";"Religious Studies (Q4)";"Arts and Humanities" +31055;21101128656;"International Journal of Nonlinear Science";journal;"17493889, 17493897";"World Academic Union";No;No;0,101;Q4;4;34;81;409;2;81;0,00;12,03;47,06;0;United Kingdom;Western Europe;"World Academic Union";"2019-2025";"Analysis (Q4); Applied Mathematics (Q4); Engineering (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Modeling and Simulation (Q4); Statistical and Nonlinear Physics (Q4)";"Engineering; Mathematics; Physics and Astronomy" +31056;16800154735;"International Journal of Platonic Tradition";journal;"18725082, 18725473";"Brill Academic Publishers";Yes;No;0,101;Q4;11;10;44;412;8;43;0,09;41,20;70,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2025";"Philosophy (Q4)";"Arts and Humanities" +31057;5300152517;"International Journal on Disability and Human Development";journal;"21910367, 21911231";"Nova Science Publishers, Inc.";No;No;0,101;Q4;36;0;140;0;9;134;0,02;0,00;0,00;0;Germany;Western Europe;"Nova Science Publishers, Inc.";"1999-2003, 2005-2024";"Advanced and Specialized Nursing (Q4); Geriatrics and Gerontology (Q4); Psychiatry and Mental Health (Q4); Rehabilitation (Q4); Sensory Systems (Q4); Speech and Hearing (Q4)";"Health Professions; Medicine; Neuroscience; Nursing" +31058;21101176020;"International Trade Law and Regulation";journal;"27542009, 13573136";"Sweet and Maxwell";No;No;0,101;Q4;3;10;50;368;3;43;0,03;36,80;41,18;0;United Kingdom;Western Europe;"Sweet and Maxwell";"2019-2025";"Law (Q4)";"Social Sciences" +31059;21100261935;"Internationale Kirchliche Zeitschrift";journal;"00209252";"Stampfli Verlag";No;No;0,101;Q4;3;0;29;0;1;26;0,07;0,00;0,00;0;Switzerland;Western Europe;"Stampfli Verlag";"2011-2013, 2015-2023";"Religious Studies (Q4)";"Arts and Humanities" +31060;21101092737;"Interstices Journal of Architecture and Related Arts";journal;"25379194";"Enigma: He Aupiki";Yes;Yes;0,101;Q4;1;11;33;370;2;28;0,10;33,64;30,00;0;New Zealand;Pacific Region;"Enigma: He Aupiki";"2019-2025";"Architecture (Q4); Arts and Humanities (miscellaneous) (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering" +31061;19700180508;"Intervencni a Akutni Kardiologie";journal;"18035302, 1213807X";"SOLEN s.r.o.";Yes;No;0,101;Q4;4;0;89;0;2;81;0,04;0,00;0,00;0;Czech Republic;Eastern Europe;"SOLEN s.r.o.";"2010-2024";"Cardiology and Cardiovascular Medicine (Q4); Critical Care and Intensive Care Medicine (Q4)";"Medicine" +31062;21101046401;"Intrecci d'Arte";journal;"22407251";"University of Bologna";Yes;Yes;0,101;Q4;2;11;24;564;4;24;0,16;51,27;41,67;0;Italy;Western Europe;"University of Bologna";"2019-2022, 2024-2025";"Arts and Humanities (miscellaneous) (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31063;16100154781;"Irish University Review";journal;"00211427, 20472153";"Edinburgh University Press";No;No;0,101;Q4;13;26;92;702;10;62;0,02;27,00;45,83;0;United Kingdom;Western Europe;"Edinburgh University Press";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31064;21101389651;"Issledovatel'skiy Zhurnal Russkogo Yazyka I Literatury";journal;"23452498, 24763500";"";No;No;0,101;Q4;0;23;24;335;0;24;0,00;14,57;50,00;0;Iran;Middle East;"";"2024-2026";"Linguistics and Language (Q4)";"Social Sciences" +31065;5800207912;"Italienisch";journal;"01714996";"Narr Francke Verlag";No;No;0,101;Q4;2;0;55;0;2;45;0,00;0,00;0,00;0;Germany;Western Europe;"Narr Francke Verlag";"2011-2014, 2016-2024";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31066;21101067705;"Itineraria";journal;"15941019";"SISMEL Edizioni del Galluzzo";No;No;0,101;Q4;2;14;24;230;1;21;0,06;16,43;42,86;0;Italy;Western Europe;"SISMEL Edizioni del Galluzzo";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Classics (Q4); History (Q4)";"Arts and Humanities" +31067;18952;"ITU News";trade journal;"10204148";"International Telecommunications Union";No;No;0,101;Q4;4;0;55;0;3;55;0,04;0,00;0,00;0;Switzerland;Western Europe;"International Telecommunications Union";"1996-1997, 1999-2023";"Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +31068;15140;"James Joyce Quarterly";journal;"19386036, 00214183";"University of Tulsa";No;No;0,101;Q4;9;5;155;252;5;147;0,01;50,40;100,00;0;United States;Northern America;"University of Tulsa";"1989, 2002-2004, 2006-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31069;21101134368;"Japan Review";journal;"09150986, 24343129";"International Research Center for Japanese Studies";No;No;0,101;Q4;4;10;28;488;2;26;0,00;48,80;50,00;0;Japan;Asiatic Region;"International Research Center for Japanese Studies";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +31070;16200154758;"Japanese Journal of Religious Studies";journal;"03041042";"Nanzan Institute for Religion and Culture";Yes;Yes;0,101;Q4;19;5;31;224;2;25;0,05;44,80;20,00;0;Japan;Asiatic Region;"Nanzan Institute for Religion and Culture";"2002-2025";"Religious Studies (Q4)";"Arts and Humanities" +31071;21101188216;"Jazz Education in Research and Practice";journal;"26397668, 26397676";"Indiana University Press";No;No;0,101;Q4;4;9;37;115;6;32;0,07;12,78;33,33;0;United States;Northern America;"Indiana University Press";"2020-2025";"Music (Q4)";"Arts and Humanities" +31072;21101181993;"Journal d'imagerie Diagnostique et Interventionnelle";journal;"25433431, 2543344X";"Elsevier Masson s.r.l.";No;No;0,101;Q4;4;57;233;699;5;223;0,02;12,26;32,48;0;France;Western Europe;"Elsevier Masson s.r.l.";"2018-2026";"Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +31073;16014;"Journal for Weavers, Spinners and Dyers";journal;"02677806";"Association of Guilds of Weavers, Spinners and Dyers";No;No;0,101;Q4;2;0;41;0;0;38;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Association of Guilds of Weavers, Spinners and Dyers";"2001-2023";"Business and International Management (Q4); Chemical Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Business, Management and Accounting; Chemical Engineering; Materials Science" +31074;19500157019;"Journal fur Asthetische Chirurgie";journal;"18674313, 18674305";"Springer Verlag";No;No;0,101;Q4;6;0;32;0;1;27;0,00;0,00;0,00;0;Germany;Western Europe;"Springer Verlag";"2008-2022";"Surgery (Q4)";"Medicine" +31075;21100917485;"Journal of Anglo-Portuguese Studies";journal;"0871682X";"CETAPS";No;No;0,101;Q4;1;0;46;0;2;40;0,03;0,00;0,00;0;Portugal;Western Europe;"CETAPS";"2018-2024";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31076;7100153151;"Journal of Arabic Literature";journal;"00852376, 1570064X";"Brill Academic Publishers";No;No;0,101;Q4;18;14;45;1190;9;44;0,19;85,00;42,86;0;Netherlands;Western Europe;"Brill Academic Publishers";"1970-1971, 1973-1974, 1976, 1978, 1980-1981, 1983-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31077;16300154709;"Journal of Asian History";journal;"0021910X";"Otto Harrassowitz GmbH. Co.KG";No;No;0,101;Q4;10;0;28;0;1;23;0,00;0,00;0,00;0;Germany;Western Europe;"Otto Harrassowitz GmbH. Co.KG";"2002-2018, 2020-2024";"Cultural Studies (Q4); History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31078;21100943526;"Journal of British and Irish Innovative Poetry";journal;"1758972X";"Open Library of Humanities";Yes;Yes;0,101;Q4;4;1;29;63;2;27;0,09;63,00;100,00;0;United Kingdom;Western Europe;"Open Library of Humanities";"2019-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31079;21100936534;"Journal of Contemporary Painting";journal;"20526709, 20526695";"Intellect Ltd.";No;No;0,101;Q4;3;11;34;167;0;34;0,00;15,18;45,45;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31080;21100349318;"Journal of Early American History";journal;"18770223, 18770703";"Brill Academic Publishers";No;No;0,101;Q4;7;11;27;802;1;22;0,05;72,91;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2012, 2014-2026";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31081;21101078233;"Journal of Early Modern Christianity";journal;"21966656, 21966648";"Walter de Gruyter GmbH";No;No;0,101;Q4;7;19;56;1984;10;54;0,19;104,42;55,56;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2014-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31082;21101262972;"Journal of East Asian Cultures";journal;"27862976, 20609655";"Eotvos Lorand Tudomanyegyetem";Yes;Yes;0,101;Q4;1;15;34;614;2;32;0,06;40,93;50,00;0;Hungary;Eastern Europe;"Eotvos Lorand Tudomanyegyetem";"2023-2026";"History (Q4); Linguistics and Language (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31083;21101291393;"Journal of Global Catholicism";journal;"24756423";"College of the Holy Cross";No;No;0,101;Q4;2;0;35;0;3;28;0,12;0,00;0,00;0;United States;Northern America;"College of the Holy Cross";"2021-2024";"Anthropology (Q4); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Social Sciences" +31084;21101021492;"Journal of Greek Media and Culture";journal;"20523971, 2052398X";"Intellect Ltd.";No;No;0,101;Q4;8;16;37;799;6;35;0,09;49,94;53,33;0;United Kingdom;Western Europe;"Intellect Ltd.";"2015-2025";"Arts and Humanities (miscellaneous) (Q4); Communication (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +31085;21100898989;"Journal of Inklings Studies";journal;"20458797, 20458800";"Edinburgh University Press";No;No;0,101;Q4;4;10;32;767;7;26;0,26;76,70;33,33;0;United Kingdom;Western Europe;"Edinburgh University Press";"2011-2025";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31086;16200154747;"Journal of Juristic Papyrology";journal;"00754277";"Taubenschlag Foundation";No;No;0,101;Q4;12;4;25;253;0;23;0,00;63,25;50,00;0;Poland;Eastern Europe;"Taubenschlag Foundation";"2002-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); Law (Q4)";"Arts and Humanities; Social Sciences" +31087;21100316607;"Journal of Medieval Religious Cultures";journal;"19476566, 21539650";"Penn State University Press";No;No;0,101;Q4;6;8;25;351;3;24;0,12;43,88;75,00;0;United States;Northern America;"Penn State University Press";"2013-2026";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31088;15985;"Journal of Nara Medical Association";journal;"13450069";"Nara Medical Association";No;No;0,101;Q4;6;5;21;29;0;21;0,00;5,80;22,73;0;Japan;Asiatic Region;"Nara Medical Association";"1973-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +31089;24477;"Journal of New England Water Environment Association";journal;"10773002";"New England Water Environment Association";No;No;0,101;Q4;4;12;42;37;0;26;0,00;3,08;16,67;0;United States;Northern America;"New England Water Environment Association";"1993-2019, 2021-2025";"Pollution (Q4); Water Science and Technology (Q4)";"Environmental Science" +31090;21100842565;"Journal of New Zealand and Pacific Studies";journal;"20504039, 20504047";"Intellect Ltd.";No;No;0,101;Q4;4;4;35;87;2;29;0,04;21,75;100,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2017-2025";"Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31091;21101239988;"Journal of Romanian Studies";journal;"2754415X, 26275325";"Liverpool University Press";No;No;0,101;Q4;3;15;36;293;1;30;0,05;19,53;50,00;0;United Kingdom;Western Europe;"Liverpool University Press";"2020-2025";"Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Social Sciences" +31092;21100857012;"Journal of Septuagint and Cognate Studies";journal;"23254793";"Eisenbrauns Inc.";No;No;0,101;Q4;2;0;34;0;3;30;0,10;0,00;0,00;0;United States;Northern America;"Eisenbrauns Inc.";"2017-2019, 2021-2024";"Linguistics and Language (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31093;4100151801;"Journal of Taiwan Society of Naval Architects and Marine Engineers";journal;"10234535";"Taiwan Society of Naval Architects and Marine Engineers";No;No;0,101;Q4;5;6;47;94;1;47;0,00;15,67;0,00;0;Taiwan;Asiatic Region;"Taiwan Society of Naval Architects and Marine Engineers";"2006-2025";"Mechanical Engineering (Q4); Ocean Engineering (Q4)";"Engineering" +31094;21100943312;"Journal of the Alamire Foundation";journal;"25070320, 20325371";"Brepols Publishers";No;No;0,101;Q4;2;5;36;112;6;30;0,21;22,40;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2019-2025";"Music (Q4)";"Arts and Humanities" +31095;21100375063;"Journal of the Australian Early Medieval Association";journal;"22072802, 14499320";"Australian Early Medieval Association";No;No;0,101;Q4;8;0;25;0;2;25;0,00;0,00;0,00;0;Australia;Pacific Region;"Australian Early Medieval Association";"2005-2024";"History (Q4)";"Arts and Humanities" +31096;13094;"Journal of the Geodetic Society of Japan";journal;"2185517X, 00380830";"Geodetic Society of Japan";No;No;0,101;Q4;16;6;32;177;0;31;0,00;29,50;30,77;0;Japan;Asiatic Region;"Geodetic Society of Japan";"1955-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +31097;21101245237;"Journal of the Indian Statistical Association";journal;"05372585";"Indian Statistical Association";No;No;0,101;Q4;2;0;27;0;2;25;0,00;0,00;0,00;0;India;Asiatic Region;"Indian Statistical Association";"2020-2024";"Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)";"Decision Sciences; Mathematics" +31098;11700154352;"Journal of the Institute of Telecommunications Professionals";journal;"17559278";"Institute of Telecommunications Professionals";No;No;0,101;Q4;6;0;58;0;0;50;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Institute of Telecommunications Professionals";"2007-2023";"Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +31099;16540;"Journal of the Japan Research Association for Textile End-Uses";journal;"00372072";"Japan Research Association for Textile End-Uses";No;No;0,101;Q4;8;0;21;0;0;21;0,00;0,00;0,00;0;Japan;Asiatic Region;"Japan Research Association for Textile End-Uses";"1960, 1962, 1964, 1966, 1969-1970, 1978-2023";"Business, Management and Accounting (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Business, Management and Accounting; Materials Science" +31100;16200154799;"Journal of the Midwest Modern Language Association";journal;"07425562";"Midwest Modern Language Association";No;No;0,101;Q4;11;0;46;0;4;44;0,13;0,00;0,00;0;United States;Northern America;"Midwest Modern Language Association";"2002-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31101;17663;"Journal of the New England Water Works Association";journal;"00284939";"New England Water Works Association";No;No;0,101;Q4;8;11;101;130;1;80;0,00;11,82;31,25;0;United States;Northern America;"New England Water Works Association";"1970-2012, 2016-2025";"Civil and Structural Engineering (Q4); Water Science and Technology (Q4)";"Engineering; Environmental Science" +31102;21101340510;"Journal of the Sylvia Townsend Warner Society";journal;"14751674, 23980605";"UCL Press";Yes;No;0,101;Q4;2;7;34;38;2;30;0,07;5,43;100,00;0;United Kingdom;Western Europe;"UCL Press";"2021-2025";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31103;26311;"Journal of the West";journal;"00225169, 19300115";"ABC-CLIO";No;No;0,101;Q4;7;1;59;34;0;54;0,00;34,00;0,00;0;United States;Northern America;"ABC-CLIO";"1969, 1972, 1977-1978, 1982, 1988-1990, 2000, 2002-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31104;21100945963;"Judaisme Ancien - Ancient Judaism";journal;"25070339, 22949321";"Brepols Publishers";No;No;0,101;Q4;2;0;29;0;1;27;0,00;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2019-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Literature and Literary Theory (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31105;21101053587;"Karanos";journal;"26046199, 26043521";"Universitat Autonoma de Barcelona";Yes;Yes;0,101;Q4;4;7;42;298;2;35;0,03;42,57;28,57;0;Spain;Western Europe;"Universitat Autonoma de Barcelona";"2018-2025";"Archeology (arts and humanities) (Q4); Classics (Q4); History (Q4)";"Arts and Humanities" +31106;16100154736;"Keats-Shelley Review";journal;"20421362, 09524142";"Maney Publishing";No;No;0,101;Q4;5;18;51;0;2;26;0,07;0,00;58,33;0;United Kingdom;Western Europe;"Maney Publishing";"1986-1993, 1995, 2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31107;15180;"Kinoshi Kenkyu Kaishi/Annals of the High Performance Paper Society, Japan";journal;"02885867";"High Performance Paper Society";No;No;0,101;Q4;3;0;27;0;0;25;0,00;0,00;0,00;0;Japan;Asiatic Region;"High Performance Paper Society";"1997-2005, 2007-2016, 2018, 2020-2024";"Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Media Technology (Q4)";"Chemistry; Engineering; Materials Science" +31108;21100267916;"Kirchliche Zeitgeschichte";journal;"2196808X, 09329951";"Vandenhoeck and Ruprecht GmbH and Co. KG";No;No;0,101;Q4;5;2;60;115;0;51;0,00;57,50;50,00;0;Germany;Western Europe;"Vandenhoeck and Ruprecht GmbH and Co. KG";"2011, 2013-2018, 2020-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31109;16026;"Knitting International";trade journal;"02668394";"World Textile Information Network";No;No;0,101;Q4;6;0;45;0;0;45;0,00;0,00;0,00;0;United Kingdom;Western Europe;"World Textile Information Network";"1989-2000, 2002-2013, 2016-2019, 2021-2023";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Ceramics and Composites (Q4); Industrial and Manufacturing Engineering (Q4)";"Business, Management and Accounting; Engineering; Materials Science" +31110;21101236740;"Knjizenstvo";journal;"22177809";"";No;No;0,101;Q4;1;0;25;0;2;21;0,08;0,00;0,00;0;Serbia;Eastern Europe;"";"2023-2024";"Linguistics and Language (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31111;21100200429;"KNOB Bulletin";journal;"01660470";"Koninklijke Nederlandse Oudheidkundige Bond";Yes;Yes;0,101;Q4;5;12;35;641;3;32;0,05;53,42;38,89;0;Netherlands;Western Europe;"Koninklijke Nederlandse Oudheidkundige Bond";"2010-2025";"Conservation (Q4); History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31112;19700187811;"Kranion";journal;"23398736, 15778843";"Permanyer Publications";Yes;Yes;0,101;Q4;3;29;74;1115;2;62;0,05;38,45;29,73;0;Spain;Western Europe;"Permanyer Publications";"2011-2014, 2017-2025";"Neurology (clinical) (Q4)";"Medicine" +31113;4400151711;"Kunststoffe International";trade journal;"18624243";"Carl Hanser Verlag";No;No;0,101;Q4;11;0;49;0;0;27;0,00;0,00;0,00;0;Germany;Western Europe;"Carl Hanser Verlag";"2006-2019, 2021-2023";"Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4); Polymers and Plastics (Q4)";"Chemistry; Materials Science" +31114;18800;"Kyokai Joho Imeji Zasshi/Journal of the Institute of Image Information and Television Engineers";journal;"13426907";"Institute of Image Information and Television Engineers";No;No;0,101;Q4;13;23;63;322;5;61;0,10;14,00;14,47;0;Japan;Asiatic Region;"Institute of Image Information and Television Engineers";"1997-2026";"Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Media Technology (Q4)";"Computer Science; Engineering" +31115;5700185694;"La Linguistique";journal;"0075966X";"Presses Universitaires de France";No;No;0,101;Q4;8;9;52;172;3;50;0,09;19,11;55,56;0;France;Western Europe;"Presses Universitaires de France";"2004-2025";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +31116;21101091058;"La Palabra";journal;"23463864, 01218530";"Universidad Pedagogica y Tecnologica de Colombia";Yes;Yes;0,101;Q4;2;19;90;494;8;88;0,11;26,00;59,09;0;Colombia;Latin America;"Universidad Pedagogica y Tecnologica de Colombia";"2019-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31117;21100255518;"Langage et l'Homme";journal;"04587251";"Institut Libre Marie Haps";No;No;0,101;Q4;3;1;22;45;0;21;0,00;45,00;50,00;0;Belgium;Western Europe;"Institut Libre Marie Haps";"2011, 2013-2015, 2017-2020, 2022, 2025";"Linguistics and Language (Q4)";"Social Sciences" +31118;21101321454;"Latin American Literary Review";journal;"2330135X";"Ubiquity Press";Yes;No;0,101;Q4;1;32;31;964;4;29;0,13;30,13;57,69;0;United Kingdom;Western Europe;"Ubiquity Press";"2024-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31119;16800154729;"Latin American Theatre Review";journal;"00238813";"Kansas Geological Survey";No;No;0,101;Q4;5;12;46;329;0;43;0,00;27,42;66,67;0;United States;Northern America;"Kansas Geological Survey";"2002-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31120;21101115666;"Latvijas Nacionalas Bibliotekas Zinatniskie Raksti";journal;"26615134, 16915941";"National Library of Latvia";No;No;0,101;Q4;1;0;81;0;5;50;0,04;0,00;0,00;0;Latvia;Eastern Europe;"National Library of Latvia";"2020-2024";"History (Q4); Library and Information Sciences (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31121;21101160757;"Letteratura e Dialetti";journal;"20353316, 1974868X";"Fabrizio Serra Editore";No;No;0,101;Q4;1;11;46;125;1;42;0,03;11,36;20,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2020-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31122;21100313924;"Letteratura e Letterature";journal;"1971906X, 19732600";"Fabrizio Serra Editore Srl";No;No;0,101;Q4;1;10;29;302;1;26;0,04;30,20;66,67;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2014-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31123;16200154790;"Lettres Romanes";journal;"00241415";"Brepols Publishers";No;No;0,101;Q4;3;10;52;265;0;49;0,00;26,50;50,00;0;Belgium;Western Europe;"Brepols Publishers";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31124;21100371972;"Library and Information History";journal;"17583489, 17583497";"Edinburgh University Press";No;No;0,101;Q4;11;8;38;263;3;29;0,08;32,88;71,43;0;United Kingdom;Western Europe;"Edinburgh University Press";"2004-2025";"History and Philosophy of Science (Q4)";"Arts and Humanities" +31125;21100239232;"Lidil";journal;"19606052, 11466480";"Universite Stendhal, Editions Litteraires et Linguistiques de l'Universite de Grenoble (ELLUG)";Yes;No;0,101;Q4;8;34;81;821;6;79;0,05;24,15;76,92;0;France;Western Europe;"Universite Stendhal, Editions Litteraires et Linguistiques de l'Universite de Grenoble (ELLUG)";"2006, 2011-2025";"Linguistics and Language (Q4)";"Social Sciences" +31126;16100154714;"Lied und Populare Kultur";journal;"16190548";"Waxmann Verlag GmbH";No;No;0,101;Q4;5;0;30;0;1;23;0,03;0,00;0,00;0;Germany;Western Europe;"Waxmann Verlag GmbH";"2002-2005, 2008-2014, 2017-2019, 2021, 2023-2024";"Cultural Studies (Q4); Music (Q4)";"Arts and Humanities; Social Sciences" +31127;20837;"Lietuvos istorijos metrastis";journal;"25386549, 02023342";"Lithuanian Institute of History";No;No;0,101;Q4;2;16;46;479;2;40;0,06;29,94;30,00;0;Lithuania;Eastern Europe;"Lithuanian Institute of History";"1980, 2021-2025";"History (Q4)";"Arts and Humanities" +31128;21101140357;"Lietuvos Istorijos Studijos";journal;"16489101, 13920448";"Vilnius University Press";Yes;Yes;0,101;Q4;1;43;41;729;5;36;0,11;16,95;53,66;0;Lithuania;Eastern Europe;"Vilnius University Press";"2022-2025";"History (Q4)";"Arts and Humanities" +31129;18105;"Lighting Design and Application: LD and A";trade journal;"03606325";"Illuminating Engineering Society of North America";No;No;0,101;Q4;5;0;235;0;3;222;0,01;0,00;0,00;0;United States;Northern America;"Illuminating Engineering Society of North America";"1970-1987, 1989-1991, 1993-2024";"Atomic and Molecular Physics, and Optics (Q4); Electrical and Electronic Engineering (Q4)";"Engineering; Physics and Astronomy" +31130;5800157701;"Lingua e Stile";journal;"0024385X, 2612212X";"Societa Editrice Il Mulino";No;No;0,101;Q4;7;6;45;548;5;45;0,16;91,33;50,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2002-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +31131;21100205995;"Lino";journal;"02112574";"Universidad de Oviedo";Yes;No;0,101;Q4;3;15;48;469;3;48;0,09;31,27;31,25;0;Spain;Western Europe;"Universidad de Oviedo";"2012-2025";"History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31132;5800222005;"Listy Filologicke";journal;"00244457";"KKS FLU AV CR";No;No;0,101;Q4;6;6;36;347;4;36;0,04;57,83;40,00;0;Czech Republic;Eastern Europe;"KKS FLU AV CR";"2003-2025";"History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31133;18400156707;"Literary Imagination";journal;"15239012, 17526566";"Oxford University Press";No;No;0,101;Q4;4;0;49;0;3;49;0,10;0,00;0,00;0;United Kingdom;Western Europe;"Oxford University Press";"2009-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31134;16991;"Literature and History";journal;"03061973, 20504594";"SAGE Publications Inc.";No;No;0,101;Q4;11;6;24;406;3;23;0,13;67,67;20,00;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"1985, 2002-2025";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31135;16000154782;"Literature/ Film Quarterly";journal;"00904260";"Salisbury University";No;No;0,101;Q4;12;0;40;0;1;39;0,03;0,00;0,00;0;United States;Northern America;"Salisbury University";"2002-2018, 2021, 2023-2024";"Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31136;21101140335;"Litteraria Copernicana";journal;"1899315X, 23921617";"Nicolaus Copernicus University";Yes;Yes;0,101;Q4;3;25;110;399;8;99;0,11;15,96;57,89;0;Poland;Eastern Europe;"Nicolaus Copernicus University";"2019-2025";"Cultural Studies (Q4)";"Social Sciences" +31137;39166;"Local Population Studies";journal;"01432974";"Local Population Studies Society";No;No;0,101;Q4;11;8;35;45;0;23;0,00;5,63;50,00;0;United Kingdom;Western Europe;"Local Population Studies Society";"1969, 1972, 1974, 1976-2024";"Arts and Humanities (miscellaneous) (Q4); Demography (Q4); Geography, Planning and Development (Q4)";"Arts and Humanities; Social Sciences" +31138;21101046683;"Locus Amoenus";journal;"11359722, 20148798";"Departament d'Historia de l'Art. Universitat de Barcelona";Yes;Yes;0,101;Q4;2;10;44;906;3;44;0,05;90,60;0,00;0;Spain;Western Europe;"Departament d'Historia de l'Art. Universitat de Barcelona";"2019-2020, 2022-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31139;21101030404;"Lodzkie Studia Etnograficzne";journal;"24505544, 00760382";"Polskie Towarzystwo Ludoznawcze";Yes;Yes;0,101;Q4;2;16;50;478;3;49;0,03;29,88;66,67;0;Poland;Eastern Europe;"Polskie Towarzystwo Ludoznawcze";"2018-2025";"Anthropology (Q4)";"Social Sciences" +31140;21101066739;"Logeion";journal;"22412425, 22412417";"Crete University Press";No;No;0,101;Q4;8;0;22;0;3;22;0,15;0,00;0,00;0;Greece;Western Europe;"Crete University Press";"2011-2024";"Archeology (arts and humanities) (Q4); Arts and Humanities (miscellaneous) (Q4); Classics (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31141;21100204116;"Lusitania Sacra";journal;"21828822, 00761508";"Centro de Estudos de Historia Religiosa";No;Yes;0,101;Q4;5;0;60;0;3;49;0,07;0,00;0,00;0;Portugal;Western Europe;"Centro de Estudos de Historia Religiosa";"2011-2024";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31142;21101131041;"Luziana";journal;"25326376, 25327585";"Fabrizio Serra Editore Srl";No;No;0,101;Q4;2;7;23;370;0;21;0,00;52,86;62,50;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2025";"History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31143;21100415801;"Magic, Ritual, and Witchcraft";journal;"19405111, 15568547";"University of Pennsylvania Press";No;No;0,101;Q4;6;18;102;692;7;98;0,09;38,44;62,50;0;United States;Northern America;"University of Pennsylvania Press";"2014-2025";"Cultural Studies (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31144;13054;"Manufacturing Engineering";trade journal;"03610853";"Society of Manufacturing Engineers";No;No;0,101;Q4;15;132;343;8;5;343;0,02;0,06;18,75;0;United States;Northern America;"Society of Manufacturing Engineers";"1975-2012, 2014-2026";"Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +31145;4700153601;"Mapping and Image Science";journal;"16518705";"Swedish Cartographic Society";No;No;0,101;Q4;5;11;41;14;0;30;0,00;1,27;45,45;0;Sweden;Western Europe;"Swedish Cartographic Society";"2005-2006, 2009-2025";"Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)";"Earth and Planetary Sciences; Social Sciences" +31146;21100415019;"Marvels and Tales";journal;"15214281, 15361802";"Wayne State University Press";No;No;0,101;Q4;12;23;46;667;11;34;0,19;29,00;94,12;0;United States;Northern America;"Wayne State University Press";"2014-2025";"Anthropology (Q4); Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31147;5400152644;"Matronas Profesion";journal;"15780740";"Ediciones Mayo S.A.";No;No;0,101;Q4;7;0;41;0;0;38;0,00;0,00;0,00;0;Spain;Western Europe;"Ediciones Mayo S.A.";"2006-2022, 2024";"Maternity and Midwifery (Q4); Obstetrics and Gynecology (Q4)";"Medicine; Nursing" +31148;21101033412;"MDCCC 1800";journal;"22808841";"Edizioni Ca' Foscari";Yes;Yes;0,101;Q4;1;8;36;329;0;33;0,00;41,13;87,50;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2019-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +31149;21072;"Mechanical Engineering";trade journal;"00256501";"American Society of Mechanical Engineers (ASME)";No;No;0,101;Q4;23;14;48;7;3;44;0,07;0,50;18,18;0;United States;Northern America;"American Society of Mechanical Engineers (ASME)";"1968-2025";"Mechanical Engineering (Q4)";"Engineering" +31150;21101190209;"Mediaeval Sophia";journal;"19701950";"Officina di Studi Medievali";Yes;Yes;0,101;Q4;1;10;25;969;0;25;0,00;96,90;30,00;0;Italy;Western Europe;"Officina di Studi Medievali";"2019-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); History and Philosophy of Science (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +31151;21100854873;"Mediaevalia Historica Bohemica";journal;"27882543, 0862979X";"Institute of History of the Czech Academy of Sciences";Yes;Yes;0,101;Q4;2;5;29;269;0;29;0,00;53,80;0,00;0;Czech Republic;Eastern Europe;"Institute of History of the Czech Academy of Sciences";"2017-2025";"History (Q4)";"Arts and Humanities" +31152;21101392035;"Medical physics – the current status, problems, the way of development. Innovation technologies";book series;"30411491";"Taras Shevchenko National University of Kyiv";No;No;0,101;Q4;1;0;53;0;0;52;0,00;0,00;0,00;0;Ukraine;Eastern Europe;"Taras Shevchenko National University of Kyiv";"2021, 2024";"Emergency Medicine (Q4); Public Health, Environmental and Occupational Health (Q4); Radiation (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine; Physics and Astronomy" +31153;21404;"Medievalia et Humanistica";journal;"00766127";"Rowman and Littlefield Publishers, Inc.";No;No;0,101;Q4;6;7;37;575;1;29;0,04;82,14;25,00;0;United States;Northern America;"Rowman and Littlefield Publishers, Inc.";"1960, 1967, 1986, 2002-2012, 2014-2017, 2019-2023, 2025";"History (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31154;21100870840;"Mesto a Dejiny";journal;"13390163";"Pavol Jozef Safarik University in Kosice, Department of History, Faculty of Arts";No;No;0,101;Q4;4;5;34;232;3;33;0,08;46,40;0,00;0;Slovakia;Eastern Europe;"Pavol Jozef Safarik University in Kosice, Department of History, Faculty of Arts";"2018-2025";"History (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +31155;22956;"Michigan Historical Review";journal;"08901686, 23279672";"Central Michigan University";No;No;0,101;Q4;2;0;32;0;0;23;0,00;0,00;0,00;0;United States;Northern America;"Central Michigan University";"1986, 1989, 1997, 2014-2023";"History (Q4)";"Arts and Humanities" +31156;13112;"Military Engineer";trade journal;"00263982";"Society of American Military Engineers";No;No;0,101;Q4;5;89;121;0;2;120;0,01;0,00;28,41;0;United States;Northern America;"Society of American Military Engineers";"1975-1991, 1993-2001, 2003-2018, 2022-2026";"Civil and Structural Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +31157;21101283120;"Millars. Espai i Historia";journal;"11329823, 23404809";"Universitat Jaume I";Yes;No;0,101;Q4;2;16;55;474;2;51;0,03;29,63;30,77;0;Spain;Western Europe;"Universitat Jaume I";"2021-2025";"Geography, Planning and Development (Q4)";"Social Sciences" +31158;21100944726;"Millennium DIPr";journal;"24443220";"Tirant lo Blanch";Yes;No;0,101;Q4;1;5;21;186;2;21;0,06;37,20;33,33;0;Mexico;Latin America;"Tirant lo Blanch";"2019-2025";"Law (Q4)";"Social Sciences" +31159;21101045200;"Minerva Revista de Filologia Clasica";journal;"25306480";"Universidad de Valladolid";Yes;Yes;0,101;Q4;2;0;22;0;4;22;0,18;0,00;0,00;0;Spain;Western Europe;"Universidad de Valladolid";"2019-2024";"Classics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31160;21100451439;"Miscelanea de Estudios Arabes y Hebraicos, Seccion Hebreo";journal;"23402547, 1696585X";"Universidad de Granada";Yes;Yes;0,101;Q4;3;4;28;180;0;27;0,00;45,00;20,00;0;Spain;Western Europe;"Universidad de Granada";"2015-2025";"Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31161;21100791707;"Missouri Review";journal;"15489930, 01911961";"University of Missouri";No;No;0,101;Q4;2;40;165;0;3;162;0,02;0,00;54,55;0;United States;Northern America;"University of Missouri";"2015-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31162;21101096972;"Moderna";journal;"17240530, 11286326";"Fabrizio Serra Editore Srl";No;No;0,101;Q4;1;0;40;0;2;38;0,06;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2024";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31163;21885;"Moreana";journal;"00478105";"Moreana Publications";No;No;0,101;Q4;5;16;39;484;8;25;0,07;30,25;75,00;0;France;Western Europe;"Moreana Publications";"1975-1976, 1996-2025";"History (Q4); Law (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31164;19700170255;"Moving Image";journal;"15424235, 15323978";"University of Minnesota";No;No;0,101;Q4;8;0;43;0;4;27;0,07;0,00;0,00;0;United States;Northern America;"University of Minnesota";"2013-2019, 2021-2023";"Conservation (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31165;21100932465;"Moving Image Review and Art Journal";journal;"20456301, 20456298";"Intellect Ltd.";No;No;0,101;Q4;2;20;49;367;4;32;0,08;18,35;73,53;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2025";"Computer Graphics and Computer-Aided Design (Q4); Computer Science Applications (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Computer Science" +31166;16300154781;"Moyen Francais";journal;"02260174";"Brepols Publishers";No;No;0,101;Q4;4;4;26;115;1;26;0,04;28,75;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2002-2020, 2023-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31167;21101265942;"Multilinguales";journal;"23351853, 23351535";"University of Bejaia";Yes;Yes;0,101;Q4;1;84;39;1574;2;38;0,05;18,74;69,07;0;Algeria;Africa;"University of Bejaia";"2024-2025";"Cognitive Neuroscience (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Neuroscience; Social Sciences" +31168;6000152770;"Museum";journal;"00274089";"American Association of Museums";No;No;0,101;Q4;5;38;151;29;8;107;0,05;0,76;70,59;0;United States;Northern America;"American Association of Museums";"2002-2004, 2009-2012, 2014-2025";"Conservation (Q4); Museology (Q4)";"Arts and Humanities" +31169;8400155281;"Muveszettorteneti Ertesito";journal;"15882802, 00275247";"Akademiai Kiado";No;No;0,101;Q4;3;6;25;403;0;23;0,00;67,17;44,44;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2018, 2021, 2023-2025";"History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31170;26313;"Naval Architect";trade journal;"03060209";"Royal Institution of Naval Architects";No;No;0,101;Q4;7;0;107;0;2;107;0,02;0,00;0,00;0;United Kingdom;Western Europe;"Royal Institution of Naval Architects";"1971-1992, 1995-2021, 2023";"Mechanical Engineering (Q4); Ocean Engineering (Q4)";"Engineering" +31171;6000175028;"Nederlands Kunsthistorisch Jaarboek";book series;"01696726";"Brill Academic Publishers";No;No;0,101;Q4;11;0;32;0;6;30;0,25;0,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2002-2003, 2005-2006, 2008-2011, 2013-2017, 2019-2024";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31172;19600163600;"Nephrology, Dialysis and Transplantation";journal;"13125257";"Medical Information Center";No;No;0,101;Q4;1;14;83;350;2;77;0,03;25,00;63,89;0;Bulgaria;Eastern Europe;"Medical Information Center";"2004-2025";"Nephrology (Q4); Transplantation (Q4)";"Medicine" +31173;16000154769;"Neue Zeitschrift fur Musik";journal;"09456945";"Schott Music GmbH &Co";No;No;0,101;Q4;3;0;86;0;0;53;0,00;0,00;0,00;0;Germany;Western Europe;"Schott Music GmbH &Co";"2002-2022";"Music (Q4)";"Arts and Humanities" +31174;21100368799;"Nevtani Ertesito";journal;"01392190";"Eotvos Lorand Tudomanyegyetem";Yes;Yes;0,101;Q4;6;18;46;408;4;45;0,00;22,67;35,71;0;Hungary;Eastern Europe;"Eotvos Lorand Tudomanyegyetem";"2011-2025";"Linguistics and Language (Q4)";"Social Sciences" +31175;21100200609;"New Cinemas";journal;"14742756, 20400578";"Intellect Ltd.";No;No;0,101;Q4;9;1;28;42;0;26;0,00;42,00;100,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2012-2018, 2020-2026";"Communication (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31176;5100155026;"New Design";journal;"14722674";"Gillard Welch Ltd";No;No;0,101;Q4;2;0;44;0;0;32;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Gillard Welch Ltd";"2005-2020, 2022";"Control and Systems Engineering (Q4); Industrial and Manufacturing Engineering (Q4)";"Engineering" +31177;16400154759;"New England Quarterly";journal;"00284866, 19372213";"MIT Press";No;No;0,101;Q4;15;16;69;843;3;34;0,05;52,69;46,15;0;United States;Northern America;"MIT Press";"1964, 1968-1969, 1975, 1978-1979, 1982-1988, 1995, 2000, 2002-2025";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31178;21101375568;"New Horizons in English Studies";journal;"25438980";"Faculty of Humanities, Maria Curie-Sklodowska University Press";Yes;No;0,101;Q4;2;24;43;613;2;43;0,03;25,54;69,57;0;Poland;Eastern Europe;"Faculty of Humanities, Maria Curie-Sklodowska University Press";"2021-2025";"Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31179;55176;"New Medicine";journal;"14270994, 17312507";"Borgis Publishing House";Yes;No;0,101;Q4;7;0;34;0;1;34;0,05;0,00;0,00;0;Poland;Eastern Europe;"Borgis Publishing House";"1999, 2001-2008, 2011-2024";"Medicine (miscellaneous) (Q4)";"Medicine" +31180;16300154775;"Nineteenth Century Prose";journal;"10520406";"San Diego State University";No;No;0,101;Q4;7;0;50;0;2;46;0,04;0,00;0,00;0;United States;Northern America;"San Diego State University";"2002-2024";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +31181;21101066574;"Nineteenth-Century Art Worldwide";journal;"15431002";"Association of Historians of Nineteenth-Century Art";Yes;Yes;0,101;Q4;3;19;47;848;4;27;0,10;44,63;80,00;0;United States;Northern America;"Association of Historians of Nineteenth-Century Art";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31182;12100155990;"Nineteenth-Century Literature";journal;"08919356, 10678352";"University of California Press";No;No;0,101;Q4;21;4;33;348;1;33;0,00;87,00;50,00;0;United States;Northern America;"University of California Press";"1986-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31183;24896;"Nishinihon Journal of Dermatology";journal;"03869784, 18804047";"Western Division of Japanese Dermatological Association";No;No;0,101;Q4;8;72;259;1148;2;241;0,01;15,94;35,95;0;Japan;Asiatic Region;"Western Division of Japanese Dermatological Association";"1969-2026";"Dermatology (Q4)";"Medicine" +31184;21101340509;"Nordlit: Tidsskrift i litteratur og kultur";journal;"15032086, 08091668";"Septentrio Academic Publishing";Yes;No;0,101;Q4;2;11;51;430;2;46;0,03;39,09;50,00;0;Norway;Western Europe;"Septentrio Academic Publishing";"2021-2025";"Arts and Humanities (miscellaneous) (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31185;16096;"Notes and Queries";journal;"00293970, 14716941";"Oxford University Press";No;No;0,101;Q4;11;97;373;1728;37;100;0,09;17,81;21,05;0;United Kingdom;Western Europe;"Oxford University Press";"1849-2025";"Library and Information Sciences (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31186;21101077294;"Nottingham Medieval Studies";journal;"00782122, 25070444";"Brepols Publishers";No;No;0,101;Q4;2;0;25;0;1;22;0,00;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2019-2024";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31187;21101233774;"Occhiali - Rivista sul Mediterraneo Islamico";journal;"25326740";"Universita della Calabria";Yes;Yes;0,101;Q4;1;0;25;0;3;24;0,15;0,00;0,00;0;Italy;Western Europe;"Universita della Calabria";"2022-2024";"History (Q4); History and Philosophy of Science (Q4); Linguistics and Language (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31188;16300154794;"Ons Geestelijk Erf";journal;"17831652, 07742827";"Peeters Publishers";No;No;0,101;Q4;9;0;38;0;4;38;0,04;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"1996-2004, 2008-2018, 2020-2024";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31189;21101039231;"Opera Historica";journal;"1805790X, 2694720X";"University of South Bohemia";No;No;0,101;Q4;2;7;38;401;2;36;0,00;57,29;14,29;0;Czech Republic;Eastern Europe;"University of South Bohemia";"2019-2025";"History (Q4)";"Arts and Humanities" +31190;6000153559;"Opuscula Historiae Artium";journal;"12117390, 23364467";"Masaryk University";No;No;0,101;Q4;4;0;38;0;0;37;0,00;0,00;0,00;0;Czech Republic;Eastern Europe;"Masaryk University";"2013-2024";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31191;21100211733;"Osterreichisches Archiv fur Recht und Religion";journal;"15608670";"Plochl verlag";No;No;0,101;Q4;4;0;40;0;0;40;0,00;0,00;0,00;0;Austria;Western Europe;"Plochl verlag";"2011-2024";"Law (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31192;17700154929;"Overland";journal;"00307416, 14443163";"O.L. Society Ltd.";No;No;0,101;Q4;6;2;126;0;3;106;0,04;0,00;33,33;0;Australia;Pacific Region;"O.L. Society Ltd.";"2009-2013, 2015, 2017-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31193;16100154746;"Oxford Literary Review";journal;"17571634, 03051498";"Edinburgh University Press";No;No;0,101;Q4;16;28;50;251;11;31;0,23;8,96;34,62;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31194;21100845391;"Pacific Coast Philology";journal;"2326067X, 00787469";"Penn State University Press";No;No;0,101;Q4;3;0;37;0;2;32;0,00;0,00;0,00;0;United States;Northern America;"Penn State University Press";"2017-2024";"Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31195;5000153109;"Package Printing";trade journal;"01639234";"North American Publishing Co.";No;No;0,101;Q4;1;15;56;0;1;54;0,03;0,00;37,50;0;United States;Northern America;"North American Publishing Co.";"2005-2025";"Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4)";"Engineering; Materials Science" +31196;5000160402;"Packaging News";trade journal;"00482676";"Yaffa Publishing Group";No;No;0,101;Q4;2;0;64;0;0;52;0,00;0,00;0,00;0;Australia;Pacific Region;"Yaffa Publishing Group";"2006-2019, 2022-2024";"Marketing (Q4); Materials Science (miscellaneous) (Q4)";"Business, Management and Accounting; Materials Science" +31197;16501;"Pakistan Textile Journal";trade journal;"00482757";"Pakistan Textile Journal";No;No;0,101;Q4;7;20;41;27;0;24;0,00;1,35;0,00;0;Pakistan;Asiatic Region;"Pakistan Textile Journal";"1993-1994, 1996, 2005-2025";"Agricultural and Biological Sciences (miscellaneous) (Q4); Business and International Management (Q4); Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Business, Management and Accounting; Engineering; Materials Science" +31198;5800212772;"Palimpsestes";book series;"2109943X, 11488158";"Presses Sorbonne Nouvelle";Yes;No;0,101;Q4;5;0;35;0;1;32;0,00;0,00;0,00;0;France;Western Europe;"Presses Sorbonne Nouvelle";"2011-2013, 2015, 2017-2022, 2024";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31199;21100855406;"Paremia";journal;"21721068, 11328940";"Asociacion Cultural Independiente";Yes;Yes;0,101;Q4;4;0;42;0;17;40;0,40;0,00;0,00;0;Spain;Western Europe;"Asociacion Cultural Independiente";"2017-2021, 2023-2024";"Linguistics and Language (Q4)";"Social Sciences" +31200;6500153163;"Parliamentary History";journal;"02642824, 17500206";"John Wiley and Sons Inc";No;No;0,101;Q4;16;25;75;1268;9;63;0,14;50,72;20,83;0;United States;Northern America;"John Wiley and Sons Inc";"1982-2025";"History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31201;21100206613;"Passato e Presente";journal;"19725493, 11200650";"FrancoAngeli";No;No;0,101;Q4;7;18;116;1163;3;115;0,03;64,61;44,44;0;Italy;Western Europe;"FrancoAngeli";"2011-2025";"History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31202;21101057754;"Patristica et Mediaevalia";journal;"26839636, 03252280";"Institute of Philosophy Dr. Alejandro Korn, Faculty of Philosophy and Arts, University of Buenos Aires";Yes;Yes;0,101;Q4;2;5;54;154;4;53;0,07;30,80;40,00;0;Argentina;Latin America;"Institute of Philosophy Dr. Alejandro Korn, Faculty of Philosophy and Arts, University of Buenos Aires";"2019-2025";"Philosophy (Q4)";"Arts and Humanities" +31203;21101033879;"Peitho";journal;"23009004, 20827539";"Uniwersytet im. Adama Mickiewicza w Poznaniu";Yes;Yes;0,101;Q4;6;11;39;356;4;37;0,07;32,36;40,00;0;Poland;Eastern Europe;"Uniwersytet im. Adama Mickiewicza w Poznaniu";"2010-2025";"Philosophy (Q4)";"Arts and Humanities" +31204;24159;"Pennsylvania Magazine of History and Biography";journal;"21698546, 00314587";"Historical Society of Pennsylvania";No;No;0,101;Q4;10;6;30;441;1;22;0,00;73,50;40,00;0;United States;Northern America;"Historical Society of Pennsylvania";"1951-1954, 1961-1962, 1964-1966, 1968, 1970-1971, 1973-1975, 1977, 1979-1982, 1984, 1986-1987, 1989-1993, 1997, 2000, 2002-2025";"History (Q4)";"Arts and Humanities" +31205;74637;"Performance Apparel Markets";journal;"14776456";"Textiles Intelligence Ltd.";No;No;0,101;Q4;8;5;22;48;0;22;0,00;9,60;0,00;0;United Kingdom;Western Europe;"Textiles Intelligence Ltd.";"2002-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +31206;21101238127;"Peristil";journal;"05536707, 18496547";"Croatian Society of Art Historians";Yes;Yes;0,101;Q4;2;0;45;0;2;44;0,08;0,00;0,00;0;Croatia;Eastern Europe;"Croatian Society of Art Historians";"2020-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); Arts and Humanities (miscellaneous) (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31207;21100255469;"Perspectives of New Music";journal;"00316016";"Perspectives of New Music";No;No;0,101;Q4;7;0;34;0;2;26;0,00;0,00;0,00;0;United States;Northern America;"Perspectives of New Music";"2012-2024";"Music (Q4)";"Arts and Humanities" +31208;21101194646;"Petrarchesca";journal;"22839437, 22815643";"Fabrizio Serra Editore";No;No;0,101;Q4;1;10;35;266;2;34;0,00;26,60;44,44;0;Italy;Western Europe;"Fabrizio Serra Editore";"2022-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31209;19700181430;"Pharmaceutical Manufacturing and Packing Sourcer";trade journal;"14631245";"Samedan Ltd";No;No;0,101;Q4;3;2;47;0;0;46;0,00;0,00;100,00;0;United Kingdom;Western Europe;"Samedan Ltd";"2009-2016, 2018-2019, 2022, 2024-2025";"Pharmaceutical Science (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +31210;21100897790;"Philip Roth Studies";journal;"19405278, 15473929";"Purdue University Press";No;No;0,101;Q4;11;15;55;385;7;35;0,10;25,67;22,22;0;United States;Northern America;"Purdue University Press";"2005-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31211;21101090147;"Philologia Antiqua";journal;"19719078, 20353561";"Fabrizio Serra Editore Srl";No;No;0,101;Q4;3;19;26;622;1;24;0,06;32,74;44,44;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2025";"Classics (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +31212;21101048851;"Philomusica";journal;"18269001";"Pavia University Press";No;No;0,101;Q4;2;9;47;436;7;46;0,03;48,44;40,00;0;Italy;Western Europe;"Pavia University Press";"2018-2025";"Music (Q4)";"Arts and Humanities" +31213;21100215181;"Philosophia Reformata";journal;"00318035, 23528230";"Brill Academic Publishers";No;No;0,101;Q4;7;13;24;384;1;24;0,08;29,54;16,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2011-2026";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +31214;29245;"Physics World";trade journal;"20587058, 09538585";"IOP Publishing Ltd.";No;No;0,101;Q4;48;85;299;0;14;208;0,04;0,00;40,48;0;United Kingdom;Western Europe;"IOP Publishing Ltd.";"1988, 1990, 1994-2025";"Physics and Astronomy (miscellaneous) (Q4)";"Physics and Astronomy" +31215;14660;"Plan Canada";journal;"00320544";"Canadian Institute of Planners";No;No;0,101;Q4;10;0;33;0;0;25;0,00;0,00;0,00;0;Canada;Northern America;"Canadian Institute of Planners";"1981-1987, 1996-2012, 2021-2022";"Geography, Planning and Development (Q4)";"Social Sciences" +31216;16300154797;"Poetry Wales";journal;"00322202";"Poetry Wales Press";No;No;0,101;Q4;2;0;50;0;0;32;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Poetry Wales Press";"2002-2012, 2014-2023";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31217;21101021432;"Polemos";journal;"22819517";"Donzelli Editore Srl";No;No;0,101;Q4;2;0;36;0;1;32;0,03;0,00;0,00;0;Italy;Western Europe;"Donzelli Editore Srl";"2020-2021, 2023-2024";"Philosophy (Q4)";"Arts and Humanities" +31218;65014;"Polish American Studies";journal;"00322806, 23300833";"University of Illinois Press";No;No;0,101;Q4;2;13;35;231;3;22;0,00;17,77;50,00;0;United States;Northern America;"University of Illinois Press";"1981, 1985, 2019-2025";"History (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31219;21101281530;"Polski Proces Cywilny/Polish Civil Procedure";journal;"20821743";"";No;No;0,101;Q4;3;34;113;1330;7;100;0,03;39,12;25,93;0;Netherlands;Western Europe;"";"2019-2025";"Law (Q4)";"Social Sciences" +31220;21100829253;"Portal";journal;"18479464, 18486681";"Croatian Conservation Institute";No;No;0,101;Q4;3;28;33;1216;0;33;0,00;43,43;61,76;0;Croatia;Eastern Europe;"Croatian Conservation Institute";"2015-2016, 2018-2025";"Conservation (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31221;21101047933;"Potestas";journal;"18889867, 2340499X";"Universitat Jaume I";Yes;Yes;0,101;Q4;2;10;31;444;5;31;0,20;44,40;25,00;0;Spain;Western Europe;"Universitat Jaume I";"2019-2026";"Classics (Q4); History (Q4); Religious Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31222;21640;"Power";trade journal;"00325929";"Access Intelligence LLC";No;No;0,101;Q4;12;125;340;0;6;336;0,02;0,00;29,63;0;United States;Northern America;"Access Intelligence LLC";"1970-2026";"Energy (miscellaneous) (Q4)";"Energy" +31223;17132;"Practitioner";journal;"00326518";"CMP Information Ltd.";Yes;No;0,101;Q4;20;0;114;0;0;48;0,00;0,00;0,00;0;United Kingdom;Western Europe;"CMP Information Ltd.";"1945-2022";"Family Practice (Q4); Medicine (miscellaneous) (Q4)";"Medicine" +31224;21101204536;"Prilozi (Bosnia and Herzegovina)";journal;"27441172, 03501159";"University of Sarajevo - Institute of History";No;No;0,101;Q4;2;9;31;182;1;28;0,05;20,22;40,00;0;Bosnia and Herzegovina;Eastern Europe;"University of Sarajevo - Institute of History";"2019-2025";"History (Q4)";"Arts and Humanities" +31225;21101192686;"Prismas: Revista de Historia Intelectual";journal;"18520499, 16661508";"National University of Quilmes";Yes;Yes;0,101;Q4;4;32;58;648;1;45;0,03;20,25;23,81;0;Argentina;Latin America;"National University of Quilmes";"2019-2025";"History (Q4); History and Philosophy of Science (Q4)";"Arts and Humanities" +31226;21100777217;"Problema";journal;"20074387";"Universidad Nacional Autonoma de Mexico";Yes;No;0,101;Q4;4;17;42;809;4;38;0,04;47,59;18,75;0;Mexico;Latin America;"Universidad Nacional Autonoma de Mexico";"2016-2026";"Law (Q4)";"Social Sciences" +31227;21101125582;"Problemy Prawa Prywatnego Miedzynarodowego";journal;"23539852, 18967604";"Wydawnictwo Uniwersytetu Slaskiego";No;No;0,101;Q4;3;1;32;38;0;32;0,00;38,00;100,00;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Slaskiego";"2019-2025";"Law (Q4)";"Social Sciences" +31228;21101248525;"Proceedings - International Conference on Energy Research and Development, ICERD";journal;"26422727";"American Society of Heating Refrigerating and Air-Conditioning Engineers";No;No;0,101;Q4;1;0;44;0;2;43;0,05;0,00;0,00;0;United States;Northern America;"American Society of Heating Refrigerating and Air-Conditioning Engineers";"2023";"Energy Engineering and Power Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Energy" +31229;21101297249;"Proceedings of the IEEE Central America and Panama Convention, CONCAPAN";journal;"29960886, 26877244";"Institute of Electrical and Electronics Engineers Inc.";No;No;0,101;Q4;2;0;99;0;17;98;0,17;0,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2024";"Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Vision and Pattern Recognition (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Information Systems and Management (Q4); Renewable Energy, Sustainability and the Environment (Q4)";"Computer Science; Decision Sciences; Energy; Engineering" +31230;16200154786;"Prooftexts - Journal of Jewish Literature History";journal;"02729601, 10863311";"Indiana University Press";No;No;0,101;Q4;6;11;38;265;4;38;0,04;24,09;75,00;0;United States;Northern America;"Indiana University Press";"2002-2015, 2017-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31231;21101131058;"Przeglad Zachodniopomorski";journal;"05524245, 23533021";"Wydawnictwo Naukowe Uniwersytetu Szczecinskiego";Yes;Yes;0,101;Q4;2;1;60;39;2;60;0,05;39,00;0,00;0;Poland;Eastern Europe;"Wydawnictwo Naukowe Uniwersytetu Szczecinskiego";"2019-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Museology (Q4)";"Arts and Humanities; Social Sciences" +31232;21100894182;"Przeklady Literatur Slowianskich";journal;"18999417, 23539763";"Wydawnictwo Uniwersytetu Slaskiego";Yes;Yes;0,101;Q4;3;0;26;0;0;25;0,00;0,00;0,00;0;Poland;Eastern Europe;"Wydawnictwo Uniwersytetu Slaskiego";"2018-2021, 2023-2024";"Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31233;74728;"Psihoterapija";journal;"03503186";"Medicinska Naklada Zagreb";No;No;0,101;Q4;5;0;28;0;0;27;0,00;0,00;0,00;0;Croatia;Eastern Europe;"Medicinska Naklada Zagreb";"1973, 1999, 2016-2024, 2026";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +31234;14006;"Psychologist";journal;"09528229, 23981598";"British Psychological Society";No;No;0,101;Q4;40;136;300;153;27;97;0,05;1,13;63,16;0;United Kingdom;Western Europe;"British Psychological Society";"1990, 1996-2026";"Psychology (miscellaneous) (Q4)";"Psychology" +31235;21100239603;"Public Reason";journal;"20657285, 20658958";"Universitatea din Bucuresti";Yes;Yes;0,101;Q4;7;2;27;33;0;23;0,00;16,50;0,00;0;Romania;Eastern Europe;"Universitatea din Bucuresti";"2012-2024";"Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31236;21100934921;"Publicum";journal;"24477982";"Universidade do Estado do Rio de Janeiro";Yes;Yes;0,101;Q4;3;0;34;0;0;27;0,00;0,00;0,00;0;Brazil;Latin America;"Universidade do Estado do Rio de Janeiro";"2019-2024";"Law (Q4)";"Social Sciences" +31237;20572;"PZ Prisma";journal;"09455566";"Govi-Verlag Pharmazeutischer Verlag GmbH";No;No;0,101;Q4;5;9;74;171;1;66;0,00;19,00;44,44;0;Germany;Western Europe;"Govi-Verlag Pharmazeutischer Verlag GmbH";"1994-2025";"Pharmaceutical Science (Q4); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +31238;21101089624;"Quaderni del '900";journal;"17200180, 17241898";"Fabrizio Serra Editore Srl";No;No;0,101;Q4;1;14;33;559;1;30;0,00;39,93;68,75;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2020-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31239;21101204533;"Quaderni di Storia Religiosa Medievale";journal;"27851311, 2724573X";"Societa Editrice Il Mulino";No;No;0,101;Q4;1;15;42;189;0;34;0,00;12,60;64,29;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2020-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31240;21100943525;"Quaderns de Filologia: Estudis Literaris";journal;"24441457, 11354178";"Universitat de Valencia";Yes;Yes;0,101;Q4;2;12;34;301;3;34;0,12;25,08;50,00;0;Spain;Western Europe;"Universitat de Valencia";"2019, 2021-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31241;21100927905;"Quaker Studies";journal;"23971770, 1363013X";"Open Library of Humanities";Yes;Yes;0,101;Q4;2;21;39;644;2;34;0,08;30,67;70,59;0;United Kingdom;Western Europe;"Open Library of Humanities";"2018-2025";"Ecology, Evolution, Behavior and Systematics (Q4)";"Agricultural and Biological Sciences" +31242;21101163015;"Quetes Litteraires";journal;"2657487X, 20848099";"John Paul II Catholic University of Lublin";Yes;Yes;0,101;Q4;2;24;53;594;7;50;0,06;24,75;60,87;0;Poland;Eastern Europe;"John Paul II Catholic University of Lublin";"2012, 2021-2025";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31243;21100202139;"Quintana";journal;"15797414, 23400005";"Department of Publications and Scientific Exchange, University of Santiago de Compostela (SPIC)";No;Yes;0,101;Q4;4;23;68;1543;4;63;0,09;67,09;58,33;0;Spain;Western Europe;"Department of Publications and Scientific Exchange, University of Santiago de Compostela (SPIC)";"2011-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31244;21100405529;"RA Revista de Arquitectura";journal;"22546332, 11385596";"Universidad de Navara";Yes;Yes;0,101;Q4;4;11;62;515;1;50;0,00;46,82;27,27;0;Spain;Western Europe;"Universidad de Navara";"2008, 2010-2013, 2015-2025";"Architecture (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering" +31245;26369;"Radwaste Solutions";journal;"15294900";"American Nuclear Society";No;No;0,101;Q4;5;9;66;4;1;37;0,02;0,44;0,00;0;United States;Northern America;"American Nuclear Society";"2003-2025";"Nuclear Energy and Engineering (Q4); Safety, Risk, Reliability and Quality (Q4); Waste Management and Disposal (Q4)";"Energy; Engineering; Environmental Science" +31246;5700168382;"Raisons Politiques";journal;"12911941, 19506708";"Presses de Sciences Po";No;No;0,101;Q4;20;0;53;0;1;47;0,03;0,00;0,00;0;France;Western Europe;"Presses de Sciences Po";"2001-2024";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +31247;21101215787;"Ratio Publica";journal;"27879569, 27879550";"Nugis Finem Publishing";No;No;0,101;Q4;2;3;29;33;1;25;0,05;11,00;0,00;0;Czech Republic;Eastern Europe;"Nugis Finem Publishing";"2021-2025";"Law (Q4); Philosophy (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +31248;16400154715;"Recherches sur Diderot et sur L'Encyclopedie";journal;"19552416, 07690886";"Societe Diderot";No;No;0,101;Q4;7;0;26;0;0;24;0,00;0,00;0,00;0;France;Western Europe;"Societe Diderot";"2002-2018, 2020-2023";"Literature and Literary Theory (Q4); Philosophy (Q4)";"Arts and Humanities" +31249;21101145367;"Rechtskultur";journal;"25684469";"Forderverein Europaische Rechtskultur e.V.";No;No;0,101;Q4;1;0;58;0;1;58;0,02;0,00;0,00;0;Germany;Western Europe;"Forderverein Europaische Rechtskultur e.V.";"2019-2024";"History (Q4); Law (Q4)";"Arts and Humanities; Social Sciences" +31250;19700182737;"Red Cedar Review";journal;"00341967, 15546721";"Michigan State University Press";No;No;0,101;Q4;1;6;30;0;0;24;0,00;0,00;25,00;0;United States;Northern America;"Michigan State University Press";"2010-2012, 2014-2017, 2019, 2021-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31251;21100286903;"Reformation and Renaissance Review";journal;"14622459, 17431727";"Maney Publishing";No;No;0,101;Q4;6;14;37;657;6;28;0,08;46,93;40,00;0;United Kingdom;Western Europe;"Maney Publishing";"2013-2026";"Religious Studies (Q4)";"Arts and Humanities" +31252;19700174658;"Regulatory Rapporteur";trade journal;"17428955";"TOPRA";No;No;0,101;Q4;8;0;261;0;4;171;0,01;0,00;0,00;0;United Kingdom;Western Europe;"TOPRA";"2010-2024";"Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4); Pharmacy (Q4)";"Health Professions; Pharmacology, Toxicology and Pharmaceutics" +31253;5800208582;"Reinardus";book series;"15699951, 09254757";"John Benjamins Publishing Company";No;No;0,101;Q4;5;12;31;651;4;31;0,05;54,25;60,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2011-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31254;16300154769;"Renascence";journal;"00344346, 23298626";"Philosophy Education Society, Inc.";No;No;0,101;Q4;6;8;27;224;2;24;0,06;28,00;28,57;0;United States;Northern America;"Philosophy Education Society, Inc.";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31255;19400158530;"Resources for American Literary Study";journal;"00487384, 15291502";"A M S Press, Inc.";No;No;0,101;Q4;3;0;32;0;0;29;0,00;0,00;0,00;0;United States;Northern America;"A M S Press, Inc.";"2002-2007, 2009-2015, 2017-2023";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31256;19900195076;"Review of Rabbinic Judaism";journal;"15700704, 15684857";"Brill Academic Publishers";No;No;0,101;Q4;10;10;34;587;3;33;0,09;58,70;22,22;0;Netherlands;Western Europe;"Brill Academic Publishers";"1998-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31257;21101192307;"Re-visiones";journal;"21730040";"Universidad Complutense Madrid";Yes;Yes;0,101;Q4;1;27;29;887;1;27;0,03;32,85;52,17;0;Spain;Western Europe;"Universidad Complutense Madrid";"2023-2025";"Arts and Humanities (miscellaneous) (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31258;16100154712;"Revista Canadiense de Estudios Hispanicos";journal;"03848167";"Revista Canadiense de Estudios Hispanicos";No;No;0,101;Q4;8;41;24;1450;1;23;0,00;35,37;68,97;0;Canada;Northern America;"Revista Canadiense de Estudios Hispanicos";"2002-2022, 2024-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31259;21100938723;"Revista de Etnografie si Folclor";journal;"00348198";"Publishing House of the Romanian Academy";No;No;0,101;Q4;3;12;31;287;3;27;0,14;23,92;50,00;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2014-2025";"Anthropology (Q4); Cultural Studies (Q4)";"Social Sciences" +31260;21100827894;"Revista de Musicologia";journal;"02101459";"Sociedad Espanola de Musicologia";No;No;0,101;Q4;5;12;88;501;8;80;0,03;41,75;50,00;0;Spain;Western Europe;"Sociedad Espanola de Musicologia";"2016-2025";"Music (Q4)";"Arts and Humanities" +31261;21100829573;"Revista de Quimica e Industria Textil";journal;"23854812, 23854804";"Asociacion Espanola de Quimicos y Coloristas Textiles";No;No;0,101;Q4;4;0;58;0;0;41;0,00;0,00;0,00;0;Spain;Western Europe;"Asociacion Espanola de Quimicos y Coloristas Textiles";"2010-2012, 2014-2018, 2021-2024";"Business and International Management (Q4); Chemical Engineering (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)";"Business, Management and Accounting; Chemical Engineering; Engineering; Materials Science" +31262;21101264301;"Revista do CAAP";journal;"14150344, 22383840";"Faculdade de Direito da Universidade Federal de Minas Gerais";Yes;No;0,101;Q4;1;24;61;542;1;53;0,02;22,58;44,44;0;Brazil;Latin America;"Faculdade de Direito da Universidade Federal de Minas Gerais";"2020-2026";"Anthropology (Q4); Gender Studies (Q4); Law (Q4); Philosophy (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31263;21101131179;"Revista Galega de Filoloxia";journal;"24449121, 15762661";"Universidade da Coruna";Yes;Yes;0,101;Q4;1;12;40;280;1;40;0,00;23,33;42,86;0;Spain;Western Europe;"Universidade da Coruna";"2019-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31264;21100854316;"Revista Hispanoamericana de Hernia";journal;"22552677";"ARAN Ediciones S.L";No;Yes;0,101;Q4;9;0;96;0;9;78;0,08;0,00;0,00;0;Spain;Western Europe;"ARAN Ediciones S.L";"2013-2024";"Gastroenterology (Q4); Surgery (Q4)";"Medicine" +31265;21100814511;"Revista Portuguesa de Historia";journal;"08704147, 21833796";"Universidade de Coimbra";Yes;Yes;0,101;Q4;5;15;26;1013;6;24;0,21;67,53;30,77;0;Portugal;Western Europe;"Universidade de Coimbra";"2016-2025";"History (Q4)";"Arts and Humanities" +31266;21101206923;"Revista Romana de Drept International";journal;"15841898, 25593846";"Romanian Association for International Law and International Relations";No;No;0,101;Q4;1;6;29;203;0;28;0,00;33,83;62,50;0;Romania;Eastern Europe;"Romanian Association for International Law and International Relations";"2019-2025";"Law (Q4)";"Social Sciences" +31267;21100227045;"Revue Archeologique de l'Est";journal;"17607264, 12667706";"Revue archeologique de l'Est";No;No;0,101;Q4;6;0;48;0;0;48;0,00;0,00;0,00;0;France;Western Europe;"Revue archeologique de l'Est";"2011-2017, 2019, 2021, 2023-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +31268;16000154797;"Revue d Etudes Augustiniennes et Patristiques";journal;"17689260";"Brepols Publishers";No;No;0,101;Q4;8;0;33;0;2;33;0,00;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2002-2024";"Religious Studies (Q4)";"Arts and Humanities" +31269;16000154736;"Revue de Qumran";journal;"25067567, 00351725";"Peeters Publishers";No;No;0,101;Q4;19;4;28;249;5;26;0,21;62,25;60,00;0;France;Western Europe;"Peeters Publishers";"2002-2007, 2009-2010, 2012-2025";"Religious Studies (Q4)";"Arts and Humanities" +31270;16000154733;"Revue des Etudes Anciennes";journal;"00352004";"Universite de Bordeaux";No;No;0,101;Q4;12;9;66;811;6;65;0,07;90,11;37,50;0;France;Western Europe;"Universite de Bordeaux";"2002-2013, 2017-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4); History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31271;21100199571;"Revue des Etudes Armeniennes";journal;"17831741, 00802549";"Peeters Publishers";No;No;0,101;Q4;4;0;51;0;1;44;0,00;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"2011-2014, 2016, 2020-2022, 2024";"Cultural Studies (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31272;16994;"Revue des Etudes Sud-Est Europeennes";journal;"00352063";"Editions de l'Academie Republique Populaire";No;No;0,101;Q4;2;0;47;0;3;46;0,09;0,00;0,00;0;Romania;Eastern Europe;"Editions de l'Academie Republique Populaire";"1972, 1974-1975, 1977-1978, 2019-2020, 2022-2024";"Anthropology (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31273;22805;"Revue des Langues Romanes";journal;"02233711";"Universite de Montpellier III (Paul Valery), Centre d'Etudes Occitanes";Yes;Yes;0,101;Q4;4;0;25;0;0;23;0,00;0,00;0,00;0;France;Western Europe;"Universite de Montpellier III (Paul Valery), Centre d'Etudes Occitanes";"1964, 2002-2022";"Archeology (arts and humanities) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31274;26753;"Revue d'Histoire Ecclesiastique";journal;"00352381";"Universite Catholique de Louvain, Bureau de la Revue d'Histoire Ecclesiastique";No;No;0,101;Q4;9;9;51;607;4;49;0,10;67,44;25,00;0;Belgium;Western Europe;"Universite Catholique de Louvain, Bureau de la Revue d'Histoire Ecclesiastique";"1980, 2002-2025";"Religious Studies (Q4)";"Arts and Humanities" +31275;29858;"Revue Numismatique";journal;"04848942, 19631693";"Societe Francaise de Numismatique";No;No;0,101;Q4;11;0;31;0;2;31;0,06;0,00;0,00;0;France;Western Europe;"Societe Francaise de Numismatique";"1985, 2002-2007, 2009-2023";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +31276;5700152710;"Revue Philosophique de la France et de La Etranger";journal;"00353833";"Presses Universitaires de France";No;No;0,101;Q4;7;5;36;201;1;35;0,04;40,20;20,00;0;France;Western Europe;"Presses Universitaires de France";"1949, 2001-2023, 2025";"Philosophy (Q4)";"Arts and Humanities" +31277;27131;"Revue Philosophique de Louvain";journal;"17831768, 00353841";"Peeters Publishers";No;No;0,101;Q4;6;0;56;0;7;52;0,16;0,00;0,00;0;Belgium;Western Europe;"Peeters Publishers";"1973, 1996-2019, 2021-2023";"Philosophy (Q4)";"Arts and Humanities" +31278;78476;"Rheinisches Museum fur Philologie";journal;"0035449X";"J. D. Sauerlaenders Publishing House";No;No;0,101;Q4;11;0;22;0;2;22;0,00;0,00;0,00;0;Germany;Western Europe;"J. D. Sauerlaenders Publishing House";"1971-1972, 1974, 1976-1978, 1981-1982, 1986, 2002-2012, 2015-2016, 2019-2022";"Classics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31279;21101215785;"RIDE - Review Journal for Digital Editions and Resources";journal;"23634952";"Institut fur Dokumentologie und Editorik";Yes;Yes;0,101;Q4;2;3;25;67;1;24;0,06;22,33;66,67;0;Germany;Western Europe;"Institut fur Dokumentologie und Editorik";"2020-2025";"Arts and Humanities (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4)";"Arts and Humanities; Computer Science" +31280;21100256981;"RIHA Journal";journal;"21903328";"International Association of Research Institutes in the History of Art";Yes;Yes;0,101;Q4;6;12;45;511;4;45;0,08;42,58;42,86;0;Germany;Western Europe;"International Association of Research Institutes in the History of Art";"2010-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31281;21100264286;"Rijksmuseum Bulletin";journal;"18778127";"Rijksmuseum Amsterdam";Yes;Yes;0,101;Q4;5;19;66;400;8;39;0,14;21,05;44,44;0;Netherlands;Western Europe;"Rijksmuseum Amsterdam";"2011-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31282;17441;"Rinascimento";journal;"00803073, 20376138";"Casa Editrice Leo S. Olschki";No;No;0,101;Q4;10;22;46;412;2;37;0,06;18,73;47,37;0;Italy;Western Europe;"Casa Editrice Leo S. Olschki";"1978, 1986-1987, 2001-2012, 2017-2025";"Cultural Studies (Q4); History (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +31283;21101029733;"Rivista del Diritto della Navigazione";journal;"00355895";"CASA EDITRICE CACUCCI";No;No;0,101;Q4;1;10;67;125;3;56;0,06;12,50;0,00;0;Italy;Western Europe;"CASA EDITRICE CACUCCI";"2020-2025";"Law (Q4); Transportation (Q4)";"Social Sciences" +31284;21101089130;"Rivista di Letteratura Storiografica Italiana";journal;"26112787, 25329626";"Fabrizio Serra Editore";No;No;0,101;Q4;2;6;27;569;2;27;0,11;94,83;33,33;0;Italy;Western Europe;"Fabrizio Serra Editore";"2017-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31285;21101328475;"Rivista di Storia della Miniatura";journal;"27854019, 11264772";"L'Erma di Bretschneider";No;No;0,101;Q4;2;0;53;0;1;38;0,00;0,00;0,00;0;Italy;Western Europe;"L'Erma di Bretschneider";"2021-2024";"Arts and Humanities (miscellaneous) (Q4); Conservation (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +31286;16400154752;"Rivista di Storia e Letteratura Religiosa";journal;"20357583, 00356573";"Casa Editrice Leo S. Olschki";No;No;0,101;Q4;6;5;51;129;4;24;0,09;25,80;50,00;0;Italy;Western Europe;"Casa Editrice Leo S. Olschki";"2002-2024";"Literature and Literary Theory (Q4); Religious Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31287;21100197740;"Rivista Storica dell'Antichita";journal;"0300340X, 26122316";"Patron Editore S.r.l.";No;No;0,101;Q4;5;0;31;0;3;31;0,06;0,00;0,00;0;Italy;Western Europe;"Patron Editore S.r.l.";"2011-2023";"Archeology (arts and humanities) (Q4); Classics (Q4); History (Q4)";"Arts and Humanities" +31288;21101033149;"Rocznik Muzeum Narodowego w Warszawie, Nowa Seria";journal;"05096936";"National Museum in Warsaw";No;No;0,101;Q4;1;13;36;190;0;36;0,00;14,62;57,14;0;Poland;Eastern Europe;"National Museum in Warsaw";"2019-2024";"Conservation (Q4); History (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31289;16100154725;"Sacris Erudiri";journal;"07717776";"Brepols Publishers";No;No;0,101;Q4;9;0;32;0;0;31;0,00;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2002-2021, 2023-2024";"Religious Studies (Q4)";"Arts and Humanities" +31290;21101165014;"Saint Anselm Journal";journal;"26896230, 15453367";"Catholic University of America Press";No;No;0,101;Q4;2;13;32;599;1;31;0,04;46,08;20,00;0;United States;Northern America;"Catholic University of America Press";"2019-2025";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +31291;25443;"Sales and Marketing Management";journal;"01637517";"VNU eMedia Inc.";No;No;0,101;Q4;12;53;62;0;0;44;0,00;0,00;20,00;0;United States;Northern America;"VNU eMedia Inc.";"1996-2010, 2012-2019, 2021, 2023-2025";"Business and International Management (Q4); Marketing (Q4)";"Business, Management and Accounting" +31292;21101075356;"Sante Mentale et Droit";journal;"27729710, 27729729";"Elsevier Masson s.r.l.";No;No;0,101;Q4;4;0;287;0;3;286;0,01;0,00;0,00;0;France;Western Europe;"Elsevier Masson s.r.l.";"2022-2024";"Issues, Ethics and Legal Aspects (Q4); Law (Q4); Pathology and Forensic Medicine (Q4)";"Medicine; Nursing; Social Sciences" +31293;17600155216;"Savoirs et Clinique";journal;"16343298, 17762871";"ERES";No;No;0,101;Q4;4;0;52;0;1;48;0,00;0,00;0,00;0;France;Western Europe;"ERES";"2002-2010, 2012-2022";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +31294;27461;"Schweizer Zeitschrift fur Gynakologie";journal;"16610199";"Rosenfluh Publikationen";No;No;0,101;Q4;2;31;138;296;2;97;0,02;9,55;58,14;0;Switzerland;Western Europe;"Rosenfluh Publikationen";"1997-2025";"Family Practice (Q4); Obstetrics and Gynecology (Q4)";"Medicine" +31295;21100332204;"Schweizerische Zeitschrift fur Religions- und Kulturgeschichte";journal;"16613880";"Academic Press Fribourg";No;No;0,101;Q4;4;0;25;0;2;22;0,00;0,00;0,00;0;Switzerland;Western Europe;"Academic Press Fribourg";"2011-2015, 2017-2020, 2022";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31296;16600154705;"Schweizerisches Archiv fur Volkskunde";journal;"0036794X";"Schweizerische Gesellschaft für Volkskunde (Societe Suisse des Traditions Populaires)";No;No;0,101;Q4;4;7;33;336;2;31;0,09;48,00;66,67;0;Switzerland;Western Europe;"Schweizerische Gesellschaft für Volkskunde (Societe Suisse des Traditions Populaires)";"2008-2014, 2017-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +31297;21101219680;"Scrinia Slavonica";journal;"18489109, 13324853";"Hrvatski Institut za Povijest";No;No;0,101;Q4;2;11;42;223;2;37;0,03;20,27;46,67;0;Croatia;Eastern Europe;"Hrvatski Institut za Povijest";"2021-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4)";"Arts and Humanities" +31298;23808;"Scriptorium";journal;"00369772";"Centre d'Etude des Manuscrits";No;No;0,101;Q4;11;0;21;0;1;21;0,00;0,00;0,00;0;Belgium;Western Europe;"Centre d'Etude des Manuscrits";"1972, 1975, 1977-1979, 1982, 1984-1985, 1987, 1997, 2002-2023";"Library and Information Sciences (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31299;14396;"Sea Technology";trade journal;"00933651";"Compass Publications Inc.";No;No;0,101;Q4;26;72;220;2;3;217;0,01;0,03;20,59;0;United States;Northern America;"Compass Publications Inc.";"1974, 1976-2025";"Ocean Engineering (Q4)";"Engineering" +31300;26184;"Sefarad";journal;"00370894, 1988320X";"CSIC Consejo Superior de Investigaciones Cientificas";Yes;Yes;0,101;Q4;8;6;39;345;0;39;0,00;57,50;57,14;0;Spain;Western Europe;"CSIC Consejo Superior de Investigaciones Cientificas";"1982-1983, 1996-2025";"Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31301;21101039066;"Segle XX";journal;"23396806";"Center for International Historical Studies of University of Barcelona";Yes;Yes;0,101;Q4;2;5;36;239;2;34;0,10;47,80;0,00;0;Spain;Western Europe;"Center for International Historical Studies of University of Barcelona";"2019-2025";"History (Q4)";"Arts and Humanities" +31302;21101088938;"Seicento e Settecento";journal;"19718330, 18282148";"Fabrizio Serra Editore Srl";No;No;0,101;Q4;1;0;28;0;1;28;0,00;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31303;5800211823;"SEL - Studies in English Literature";journal;"00393657, 15229270";"Johns Hopkins University Press";No;No;0,101;Q4;22;31;44;1378;11;42;0,00;44,45;59,26;0;United States;Northern America;"Johns Hopkins University Press";"2002-2022, 2024-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31304;21101226631;"Senjski Zbornik";journal;"18490999, 0582673X";"Senj City Museum";Yes;Yes;0,101;Q4;1;0;32;0;0;32;0,00;0,00;0,00;0;Croatia;Eastern Europe;"Senj City Museum";"2022-2024, 2026";"Archeology (Q4); Archeology (arts and humanities) (Q4); Arts and Humanities (miscellaneous) (Q4); History (Q4); Museology (Q4)";"Arts and Humanities; Social Sciences" +31305;21101170035;"Sesit pro Umeni, Teorii a Pribuzne Zony";journal;"18028918";"Academy of Fine Arts in Prague";No;No;0,101;Q4;1;6;37;95;1;21;0,04;15,83;80,00;0;Czech Republic;Eastern Europe;"Academy of Fine Arts in Prague";"2022-2025";"Arts and Humanities (miscellaneous) (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31306;16000154731;"Sewanee Review";journal;"00373052, 1934421X";"Johns Hopkins University Press";No;No;0,101;Q4;6;38;108;0;3;107;0,03;0,00;42,86;0;United States;Northern America;"Johns Hopkins University Press";"2006-2026";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31307;21101366460;"Shandean";journal;"30494788";"Liverpool University Press";No;No;0,101;Q4;2;5;28;237;0;24;0,00;47,40;33,33;0;United Kingdom;Western Europe;"Liverpool University Press";"2018-2022, 2024-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31308;21101158886;"Shejzat";journal;"25179624";"Centre for Albanian Studies Shejzat - Pleiades";No;No;0,101;Q4;1;18;55;727;0;54;0,00;40,39;55,56;0;Albania;Eastern Europe;"Centre for Albanian Studies Shejzat - Pleiades";"2022-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31309;21101037315;"Short Fiction in Theory and Practice";journal;"2043071X, 20430701";"Intellect Ltd.";No;No;0,101;Q4;2;14;59;368;3;51;0,03;26,29;50,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2019-2026";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31310;21101021139;"Sic";journal;"18477755";"University of Zadar";Yes;Yes;0,101;Q4;3;19;71;586;5;55;0,06;30,84;77,78;0;Croatia;Eastern Europe;"University of Zadar";"2019-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31311;6400153198;"Sight and Sound";journal;"00374806";"British Film Institute";No;No;0,101;Q4;12;37;189;0;0;40;0,00;0,00;0,00;0;United Kingdom;Western Europe;"British Film Institute";"2002-2026";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31312;6000171016;"Simiolus";journal;"00375411";"Stichting voor Nederlandse Kunsthistorische Publicaties";No;No;0,101;Q4;11;9;26;952;4;22;0,06;105,78;28,57;0;Netherlands;Western Europe;"Stichting voor Nederlandse Kunsthistorische Publicaties";"2002-2004, 2006-2009, 2011-2015, 2017-2023, 2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31313;21000;"Slovansky Prehled";journal;"00376922";"Czech Academy of Sciences, Institute of History";No;No;0,101;Q4;2;11;38;280;5;33;0,13;25,45;21,43;0;Czech Republic;Eastern Europe;"Czech Academy of Sciences, Institute of History";"1985, 1999, 2002, 2019-2025";"History (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +31314;25969;"Social and Economic Studies";journal;"26628988, 00377651";"University of the West Indies";No;No;0,101;Q4;13;0;42;0;2;37;0,08;0,00;0,00;0;Jamaica;Latin America;"University of the West Indies";"1974, 1977-1986, 2008-2024";"Economics and Econometrics (Q4); Social Sciences (miscellaneous) (Q4)";"Economics, Econometrics and Finance; Social Sciences" +31315;26461;"Social Sciences (Russian Federation)";journal;"01345486, 19382553";"Russian Academy of Sciences";Yes;No;0,101;Q4;5;0;50;0;1;50;0,11;0,00;0,00;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences";"1988, 1994, 2008-2019, 2022-2023";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +31316;5600155101;"Sociologus";journal;"00380377, 18655106";"Duncker und Humblot GmbH";No;No;0,101;Q4;12;0;22;0;0;21;0,00;0,00;0,00;0;Germany;Western Europe;"Duncker und Humblot GmbH";"1982, 1987, 2008-2024";"Social Sciences (miscellaneous) (Q4)";"Social Sciences" +31317;19700181428;"Sokendai Review of Cultural and Social Studies";journal;"18831362, 1883096X";"International Research Center for Japanese Studies";No;No;0,101;Q4;3;6;30;215;0;30;0,00;35,83;33,33;0;Japan;Asiatic Region;"International Research Center for Japanese Studies";"2006-2007, 2009-2025";"Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4)";"Social Sciences" +31318;6000153009;"Source";journal;"2328207X, 07374453";"University of Chicago Press";No;No;0,101;Q4;7;29;90;503;5;46;0,05;17,34;56,00;0;United States;Northern America;"University of Chicago Press";"1995, 2002-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31319;16200154777;"Southwestern Historical Quarterly";journal;"0038478X, 15589560";"University of Texas Press";No;No;0,101;Q4;8;19;55;1216;2;51;0,00;64,00;6,25;0;United States;Northern America;"University of Texas Press";"1966, 1974, 1977-1978, 1980, 1986, 1993, 2001, 2003-2025";"History (Q4)";"Arts and Humanities" +31320;21212;"Spagna Contemporanea";journal;"11217480, 27857743";"Viella";No;No;0,101;Q4;3;0;32;0;1;27;0,06;0,00;0,00;0;Italy;Western Europe;"Viella";"1997, 2002, 2019-2024";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31321;26910;"Special Report - National Research Council, Transportation Research Board";journal;"0360859X";"US National Research Council";No;No;0,101;Q4;17;0;39;0;0;33;0,00;0,00;0,00;0;United States;Northern America;"US National Research Council";"1973-1981, 1983-1984, 1986-1987, 1996-1999, 2001-2009, 2011-2018, 2021-2023";"Transportation (Q4)";"Social Sciences" +31322;16100154773;"Spenser Studies";journal;"01959468, 21678529";"University of Chicago Press";No;No;0,101;Q4;13;6;41;203;1;40;0,02;33,83;16,67;0;United States;Northern America;"University of Chicago Press";"2002-2005, 2007-2012, 2015, 2018-2020, 2023-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31323;5800208059;"Stilistica e Metrica Italiana";journal;"15916693";"SISMEL Edizioni del Galluzzo";No;No;0,101;Q4;2;12;32;602;2;30;0,09;50,17;40,00;0;Italy;Western Europe;"SISMEL Edizioni del Galluzzo";"2015-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31324;21100394259;"Stred";journal;"18039243";"Masaryk Institute and Archives of the Czech Academy of Sciences";Yes;Yes;0,101;Q4;3;5;35;62;1;24;0,04;12,40;33,33;0;Czech Republic;Eastern Europe;"Masaryk Institute and Archives of the Czech Academy of Sciences";"2014-2025";"History (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +31325;21101224033;"Studi Ispanici";journal;"0585492X, 17241588";"Fabrizio Serra Editore";No;No;0,101;Q4;3;12;49;520;5;48;0,14;43,33;11,11;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31326;21101121915;"Studi Pasoliniani";journal;"19733232, 1972473X";"Fabrizio Serra Editore Srl";No;No;0,101;Q4;2;8;39;315;1;38;0,00;39,38;8,33;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2019-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31327;21101168040;"Studi Veronesi";book series;"25320173, 25319949";"Documentation Center for the History of Valpolicella";Yes;No;0,101;Q4;2;8;32;231;2;28;0,04;28,88;0,00;0;Italy;Western Europe;"Documentation Center for the History of Valpolicella";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4)";"Arts and Humanities" +31328;21100199845;"Studia Antiqua et Archaeologica";journal;"12242284";"Editura Universitatii Al. I. Cuza Iasi";Yes;Yes;0,101;Q4;7;17;72;1010;6;71;0,09;59,41;23,08;0;Romania;Eastern Europe;"Editura Universitatii Al. I. Cuza Iasi";"2011-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4)";"Arts and Humanities; Social Sciences" +31329;16200154761;"Studia Celtica";journal;"00816353";"University of Wales Press";No;No;0,101;Q4;9;10;27;1150;2;21;0,00;115,00;20,00;0;United Kingdom;Western Europe;"University of Wales Press";"2003, 2005-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31330;21101040215;"Studia et Documenta";journal;"19704879";"Istituto Storico San Josemaria Escriva";Yes;Yes;0,101;Q4;2;16;37;481;7;33;0,19;30,06;0,00;0;Italy;Western Europe;"Istituto Storico San Josemaria Escriva";"2019-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31331;5700170924;"Studia Hibernica";journal;"00816477, 23974532";"Liverpool University Press";No;No;0,101;Q4;2;5;24;577;1;22;0,00;115,40;40,00;0;United Kingdom;Western Europe;"Liverpool University Press";"2002, 2017-2025";"History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31332;21100864539;"Studia Judaica";journal;"15069729, 24500100";"Polskie Towarzystwo Studiow Zydowskich";Yes;Yes;0,101;Q4;2;11;50;354;5;47;0,14;32,18;60,00;0;Poland;Eastern Europe;"Polskie Towarzystwo Studiow Zydowskich";"2017-2025";"Cultural Studies (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31333;27236;"Studia Leibnitiana";journal;"00393185, 2366228X";"Franz Steiner Verlag GmbH";No;No;0,101;Q4;9;0;33;0;0;32;0,00;0,00;0,00;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"1973-1974, 1976, 1987, 2003-2006, 2008-2024";"History and Philosophy of Science (Q4); Philosophy (Q4)";"Arts and Humanities" +31334;16100154771;"Studia Monastica";book series;"00393258";"Publicacions de l' Abadia de Montserrat";No;No;0,101;Q4;5;0;34;0;0;34;0,00;0,00;0,00;0;Spain;Western Europe;"Publicacions de l' Abadia de Montserrat";"2002-2009, 2011-2017, 2019-2022";"Religious Studies (Q4)";"Arts and Humanities" +31335;8000153136;"Studia Musicologica";journal;"17892422, 17886244";"Akademiai Kiado ZRt.";No;No;0,101;Q4;6;17;46;418;0;44;0,00;24,59;61,11;0;Hungary;Eastern Europe;"Akademiai Kiado ZRt.";"2007-2025";"Music (Q4)";"Arts and Humanities" +31336;21100405116;"Studia Neoaristotelica";journal;"12148407, 18046843";"Philosophy Documentation Center";No;No;0,101;Q4;4;3;22;153;1;22;0,06;51,00;33,33;0;Germany;Western Europe;"Philosophy Documentation Center";"2015-2024";"Philosophy (Q4)";"Arts and Humanities" +31337;21100888813;"Studia Norwidiana";journal;"08600562, 25444433";"Towarzystwo Naukowe KUL";Yes;No;0,101;Q4;3;20;49;404;5;49;0,09;20,20;66,67;0;Poland;Eastern Europe;"Towarzystwo Naukowe KUL";"2018-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31338;21101223021;"Studia Romanica et Anglica Zagrabiensia";journal;"18491421, 00393339";"University of Zagreb Faculty of Humanities and Social Sciences";Yes;Yes;0,101;Q4;2;0;26;0;2;25;0,00;0,00;0,00;0;Croatia;Eastern Europe;"University of Zagreb Faculty of Humanities and Social Sciences";"2020-2024";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31339;21101325315;"Studia Rossica Posnaniensia";journal;"2720703X, 00816884";"Adam Mickiewicz University";Yes;No;0,101;Q4;1;26;30;762;2;28;0,07;29,31;58,33;0;Poland;Eastern Europe;"Adam Mickiewicz University";"2024-2025";"Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31340;21100325445;"Studia Slavica et Balcanica Petropolitana";journal;"1995848X";"Saint Petersburg State University";Yes;Yes;0,101;Q4;5;0;81;0;6;81;0,08;0,00;0,00;0;Russian Federation;Eastern Europe;"Saint Petersburg State University";"2014-2024";"History (Q4)";"Arts and Humanities" +31341;21101365408;"Studia z Historii Społeczno-Gospodarczej XIX i XX wieku";journal;"24506796, 20808313";"Lodz University Press";Yes;No;0,101;Q4;1;0;48;0;0;42;0,00;0,00;0,00;0;Poland;Eastern Europe;"Lodz University Press";"2021-2024";"History (Q4)";"Arts and Humanities" +31342;16200154778;"Studies in American Indian Literatures";journal;"07303238, 15489590";"University of Nebraska Press";No;No;0,101;Q4;14;10;58;457;4;53;0,06;45,70;50,00;0;United States;Northern America;"University of Nebraska Press";"2002-2023, 2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31343;16200154791;"Studies in Canadian Literature - Etudes en Litterature Canadienne";journal;"03806995, 17187850";"University of New Brunswick";No;No;0,101;Q4;13;0;51;0;6;47;0,16;0,00;0,00;0;Canada;Northern America;"University of New Brunswick";"1996-2019, 2021-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31344;25804;"Studies in Latin American Popular Culture";journal;"07309139";"College of Humanities, Department of Spanish and Portuguese, University of Arizona";No;No;0,101;Q4;9;10;25;489;3;25;0,13;48,90;50,00;0;United States;Northern America;"College of Humanities, Department of Spanish and Portuguese, University of Arizona";"1996-2008, 2010-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +31345;21100220342;"Studies in Regional Science";journal;"02876256, 18806465";"Japan Section of the Regional Science Association International";No;No;0,101;Q4;14;8;40;253;0;39;0,00;31,63;44,44;0;Japan;Asiatic Region;"Japan Section of the Regional Science Association International";"1970-2025";"Environmental Science (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Environmental Science; Social Sciences" +31346;21100200626;"Studies in South Asian Film and Media";journal;"1756493X, 17564921";"Intellect Ltd.";No;No;0,101;Q4;7;5;31;158;4;28;0,12;31,60;25,00;0;United Kingdom;Western Europe;"Intellect Ltd.";"2012-2025";"Communication (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31347;6500153191;"Studies in Travel Writing";journal;"13645145, 17557550";"Routledge";No;No;0,101;Q4;14;0;49;0;9;48;0,18;0,00;0,00;0;United Kingdom;Western Europe;"Routledge";"1997-2026";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31348;21100307473;"Sud-Ouest Europeen";book series;"12764930";"Presses Universitaires du Mirail";No;No;0,101;Q4;7;0;25;0;1;24;0,00;0,00;0,00;0;France;Western Europe;"Presses Universitaires du Mirail";"2008-2023";"Demography (Q4); Earth-Surface Processes (Q4); Geography, Planning and Development (Q4); Urban Studies (Q4)";"Earth and Planetary Sciences; Social Sciences" +31349;21101083581;"Sulla Via del Catai";journal;"19703449";"Centro Studi Martino Martini";No;No;0,101;Q4;1;0;32;0;1;30;0,00;0,00;0,00;0;Italy;Western Europe;"Centro Studi Martino Martini";"2019-2024";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31350;17700155419;"Sur";journal;"19833342, 18066445";"Sur - Rede Universitaria de Direitos Humanos";Yes;Yes;0,101;Q4;13;0;27;0;6;24;0,00;0,00;0,00;0;Brazil;Latin America;"Sur - Rede Universitaria de Direitos Humanos";"2012-2022";"Law (Q4); Sociology and Political Science (Q4)";"Social Sciences" +31351;21100828018;"SVMMA";journal;"20147023";"Universitat de Barcelona";Yes;Yes;0,101;Q4;5;15;50;656;4;43;0,07;43,73;62,50;0;Spain;Western Europe;"Universitat de Barcelona";"2013-2019, 2021-2025";"Archeology (arts and humanities) (Q4); History (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31352;13894;"SWE Magazine";trade journal;"10706232";"Society of Women Engineers";No;No;0,101;Q4;6;82;128;504;5;119;0,06;6,15;91,89;0;United States;Northern America;"Society of Women Engineers";"1994-2018, 2020-2025";"Engineering (miscellaneous) (Q4)";"Engineering" +31353;21100899526;"Synergies Afrique des Grands Lacs";journal;"22604278, 22584307";"GERFLINT (Groupe d'Etudes et de Recherches pour le Francais Langue Internationale)";Yes;Yes;0,101;Q4;2;10;32;124;0;28;0,00;12,40;0,00;0;France;Western Europe;"GERFLINT (Groupe d'Etudes et de Recherches pour le Francais Langue Internationale)";"2018-2025";"Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31354;21100286943;"Synergies Algerie";journal;"22605029, 19585160";"GERFLINT (Groupe d'Etudes et de Recherches pour le Francais Langue Internationale)";Yes;Yes;0,101;Q4;3;0;54;0;0;52;0,00;0,00;0,00;0;France;Western Europe;"GERFLINT (Groupe d'Etudes et de Recherches pour le Francais Langue Internationale)";"2013-2024";"Linguistics and Language (Q4)";"Social Sciences" +31355;21100316066;"Synergies Chili";journal;"22606017, 07180675";"GERFLINT (Groupe d'Etudes et de Recherches pour le Francais Langue Internationale)";Yes;Yes;0,101;Q4;4;0;24;0;0;21;0,00;0,00;0,00;0;France;Western Europe;"GERFLINT (Groupe d'Etudes et de Recherches pour le Francais Langue Internationale)";"2013-2024";"Linguistics and Language (Q4)";"Social Sciences" +31356;21100227028;"Synergies Espagne";journal;"19619359, 22606513";"GERFLINT (Groupe d'Etudes et de Recherches pour le Francais Langue Internationale)";Yes;Yes;0,101;Q4;3;0;49;0;2;48;0,03;0,00;0,00;0;France;Western Europe;"GERFLINT (Groupe d'Etudes et de Recherches pour le Francais Langue Internationale)";"2012-2024";"Linguistics and Language (Q4)";"Social Sciences" +31357;21100374322;"Synergies Europe";journal;"2260653X, 19516088";"GERFLINT";Yes;Yes;0,101;Q4;4;0;50;0;1;48;0,00;0,00;0,00;0;France;Western Europe;"GERFLINT";"2013-2024";"Education (Q4); Linguistics and Language (Q4)";"Social Sciences" +31358;21100781735;"Synergies France";journal;"17663059, 22607846";"GERFLINT";Yes;Yes;0,101;Q4;3;34;34;637;0;32;0,00;18,74;58,33;0;France;Western Europe;"GERFLINT";"2016-2020, 2022-2023, 2025";"Linguistics and Language (Q4)";"Social Sciences" +31359;21100244947;"Synergies Italie";journal;"17240700, 22608087";"GERFLINT";Yes;Yes;0,101;Q4;5;10;34;269;5;32;0,20;26,90;100,00;0;France;Western Europe;"GERFLINT";"2013-2025";"Linguistics and Language (Q4)";"Social Sciences" +31360;21100945160;"Synergies Pays Germanophones";journal;"18665268, 22612750";"GERFLINT";Yes;Yes;0,101;Q4;2;0;35;0;0;33;0,00;0,00;0,00;0;France;Western Europe;"GERFLINT";"2019-2024";"Linguistics and Language (Q4)";"Social Sciences" +31361;21101048544;"Synergies Portugal";journal;"2268493X, 22684948";"GERFLINT";Yes;Yes;0,101;Q4;1;0;37;0;1;33;0,05;0,00;0,00;0;France;Western Europe;"GERFLINT";"2019-2024";"Education (Q4); Linguistics and Language (Q4)";"Social Sciences" +31362;21100313921;"Synergies Turquie";journal;"19619472, 22578404";"GERFLINT (Groupe d'Etudes et de Recherches pour le Francais Langue Internationale)";Yes;Yes;0,101;Q4;3;0;30;0;0;26;0,00;0,00;0,00;0;France;Western Europe;"GERFLINT (Groupe d'Etudes et de Recherches pour le Francais Langue Internationale)";"2013-2024";"Linguistics and Language (Q4)";"Social Sciences" +31363;21101256291;"Tabano";journal;"2591572X, 18527221";"Pontificia Universidad Catolica Argentina";Yes;Yes;0,101;Q4;1;20;31;529;4;30;0,13;26,45;9,09;0;Argentina;Latin America;"Pontificia Universidad Catolica Argentina";"2022-2025";"Philosophy (Q4)";"Arts and Humanities" +31364;19630;"Tagliche Praxis";journal;"0494464X, 2198168X";"mgo fachverlage GmbH & Co KG";No;No;0,101;Q4;4;0;189;0;2;182;0,02;0,00;0,00;0;Germany;Western Europe;"mgo fachverlage GmbH & Co KG";"1973-1980, 2000-2018, 2020-2023";"Medicine (miscellaneous) (Q4)";"Medicine" +31365;21100211322;"Taiwan Journal of East Asian Studies";journal;"18126243";"College of International Studies and Social Sciences, National Taiwan Normal University";No;No;0,101;Q4;8;16;32;603;2;31;0,10;37,69;33,33;0;Taiwan;Asiatic Region;"College of International Studies and Social Sciences, National Taiwan Normal University";"2004-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +31366;21100202746;"TAL Traitement Automatique des Langues";journal;"12489433, 19650906";"Association pour le Traitement Automatique des Langues (ATALA)";Yes;No;0,101;Q4;13;0;32;0;4;28;0,00;0,00;0,00;0;France;Western Europe;"Association pour le Traitement Automatique des Langues (ATALA)";"2011-2024";"Computer Science Applications (Q4); Linguistics and Language (Q4)";"Computer Science; Social Sciences" +31367;21101287868;"Tangence";journal;"17100305, 11894563";"Universite du Quebec a Trois-Riviere";No;No;0,101;Q4;1;20;45;636;0;28;0,00;31,80;38,89;0;Canada;Northern America;"Universite du Quebec a Trois-Riviere";"2023-2025";"Arts and Humanities (miscellaneous) (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31368;16585;"Technische Textilien";trade journal;"03233243";"Deutscher Fachverlag GmbH";No;No;0,101;Q4;8;15;156;40;2;153;0,02;2,67;16,67;0;Germany;Western Europe;"Deutscher Fachverlag GmbH";"1989-1990, 1998-2014, 2018, 2020-2025";"Business, Management and Accounting (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)";"Business, Management and Accounting; Engineering; Environmental Science; Materials Science" +31369;19400158824;"Temas Medievales";journal;"03275094, 18502628";"Departamento de Investigaciones Medievales, Inst. Multidisciplin. de Historia y Ciencias Humanas";Yes;Yes;0,101;Q4;3;7;26;166;4;24;0,06;23,71;50,00;0;Argentina;Latin America;"Departamento de Investigaciones Medievales, Inst. Multidisciplin. de Historia y Ciencias Humanas";"2007-2011, 2013-2017, 2019-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +31370;21101128607;"Teologicka Reflexe";journal;"12111872, 27880796";"Karolinum - Nakladatelstvi Univerzity Karlovy";Yes;Yes;0,101;Q4;1;11;39;584;0;39;0,00;53,09;0,00;0;Czech Republic;Eastern Europe;"Karolinum - Nakladatelstvi Univerzity Karlovy";"2019-2025";"Religious Studies (Q4)";"Arts and Humanities" +31371;21100241635;"Teologinen Aikakauskirja";journal;"00403555";"Teologinen Julkaisuseura";No;No;0,101;Q4;4;0;95;0;5;86;0,02;0,00;0,00;0;Finland;Western Europe;"Teologinen Julkaisuseura";"2011, 2013-2023";"Religious Studies (Q4)";"Arts and Humanities" +31372;17235;"Terrae Incognitae";journal;"20408706, 00822884";"Taylor and Francis Ltd.";No;No;0,101;Q4;7;20;42;111;8;28;0,11;5,55;33,33;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1969-2026";"History (Q4)";"Arts and Humanities" +31373;20272;"Texas Transportation Researcher";trade journal;"00404748";"Texas A and M University";No;No;0,101;Q4;2;0;36;0;0;34;0,00;0,00;0,00;0;United States;Northern America;"Texas A and M University";"1970-1976, 1979-1987, 2001-2023";"Mechanical Engineering (Q4)";"Engineering" +31374;17157;"Textile Outlook International";journal;"02684764";"Textiles Intelligence Ltd.";No;No;0,101;Q4;8;36;64;293;0;54;0,00;8,14;0,00;0;United Kingdom;Western Europe;"Textiles Intelligence Ltd.";"1989-2025";"Business, Management and Accounting (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)";"Business, Management and Accounting; Materials Science" +31375;4000151002;"Textile View Magazine";trade journal;"13845306";"Metropolitan Publishing bv";No;No;0,101;Q4;1;0;24;0;0;24;0,00;0,00;0,00;0;Netherlands;Western Europe;"Metropolitan Publishing bv";"2005-2012, 2014-2020, 2022";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); History (Q4)";"Arts and Humanities; Business, Management and Accounting" +31376;17172;"Textile World";trade journal;"00405213";"Billian Publishing Inc.";No;No;0,101;Q4;7;42;155;13;2;32;0,03;0,31;20,00;0;United States;Northern America;"Billian Publishing Inc.";"1969, 1975-2025";"Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4)";"Business, Management and Accounting; Engineering" +31377;16457;"Theatre Survey";journal;"14754533, 00405574";"Cambridge University Press";No;No;0,101;Q4;15;18;41;1300;4;33;0,10;72,22;66,67;0;United Kingdom;Western Europe;"Cambridge University Press";"1960-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31378;21101323846;"Theatrum historiae";journal;"25710621, 18022502";"University of Pardubice Faculty of Arts and Philosophy";Yes;No;0,101;Q4;1;10;27;1094;0;26;0,00;109,40;40,00;0;Czech Republic;Eastern Europe;"University of Pardubice Faculty of Arts and Philosophy";"2021-2025";"History (Q4)";"Arts and Humanities" +31379;21101259371;"Tiyatro Elestirmenligi ve Dramaturji Bolumu Dergisi";journal;"26874636";"Istanbul University Press";Yes;Yes;0,101;Q4;1;16;46;478;2;45;0,03;29,88;57,14;0;Turkey;Middle East;"Istanbul University Press";"2022-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31380;17700155818;"Topique";journal;"00409375";"Esprit";No;No;0,101;Q4;7;0;79;0;2;72;0,00;0,00;0,00;0;France;Western Europe;"Esprit";"2001-2023";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +31381;21100200633;"Touchpoint";journal;"29402778, 18686052";"Logos Verlag Berlin GmbH";No;No;0,101;Q4;4;61;160;163;5;141;0,04;2,67;53,57;0;Germany;Western Europe;"Logos Verlag Berlin GmbH";"2011-2014, 2021-2025";"Arts and Humanities (miscellaneous) (Q4); Business and International Management (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Business, Management and Accounting" +31382;20256;"TR News";trade journal;"07386826";"US National Research Council";No;No;0,101;Q4;13;8;104;45;2;103;0,03;5,63;35,71;0;United States;Northern America;"US National Research Council";"1983-1989, 1996-2016, 2019-2025";"Automotive Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +31383;30902;"Transactions of the Historic Society of Lancashire and Cheshire";journal;"0140332X, 23981601";"Liverpool University Press";No;No;0,101;Q4;3;7;32;687;1;29;0,04;98,14;66,67;0;United Kingdom;Western Europe;"Liverpool University Press";"1944, 1977-1981, 1983, 1986-1987, 1989, 1994, 1996, 2016-2025";"History (Q4)";"Arts and Humanities" +31384;5800207911;"Translation and Literature";journal;"09681361, 17500214";"Edinburgh University Press";No;No;0,101;Q4;14;7;40;100;6;28;0,15;14,29;20,00;0;United Kingdom;Western Europe;"Edinburgh University Press";"1996-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31385;5700164072;"Travail et Emploi";journal;"1775416X, 02244365";"Dares";No;No;0,101;Q4;12;13;27;404;2;24;0,15;31,08;64,71;0;France;Western Europe;"Dares";"2008-2022, 2024-2025";"Economics, Econometrics and Finance (miscellaneous) (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Economics, Econometrics and Finance" +31386;21101220433;"Tre Corone";journal;"22835768, 24210277";"Fabrizio Serra Editore";No;No;0,101;Q4;3;1;25;0;1;22;0,06;0,00;0,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31387;5800207555;"Turkic Languages";journal;"14314983";"Harrassowitz Verlag";No;No;0,101;Q4;4;0;41;0;2;36;0,03;0,00;0,00;0;Germany;Western Europe;"Harrassowitz Verlag";"2017-2024";"Linguistics and Language (Q4)";"Social Sciences" +31388;8400155718;"Umeni";journal;"00495123";"Institute of Art History of the Academy of Sciences of the Czech Republic";No;No;0,101;Q4;5;19;61;776;5;44;0,03;40,84;60,00;0;Czech Republic;Eastern Europe;"Institute of Art History of the Academy of Sciences of the Czech Republic";"2002-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31389;21101219809;"Umjetnost Rijeci";journal;"18491693";"Croatian Philological Society";Yes;Yes;0,101;Q4;1;8;25;229;4;25;0,24;28,63;42,86;0;Croatia;Eastern Europe;"Croatian Philological Society";"2022-2025";"Arts and Humanities (miscellaneous) (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31390;70428;"Unitex";trade journal;"10437932";"Unitex a.s.b.l.";No;No;0,101;Q4;3;0;30;0;0;25;0,00;0,00;0,00;0;Belgium;Western Europe;"Unitex a.s.b.l.";"2001-2023";"Polymers and Plastics (Q4)";"Materials Science" +31391;21101074693;"Venezia Arti";journal;"23852720";"Edizioni Ca' Foscari";Yes;Yes;0,101;Q4;2;10;29;401;1;27;0,05;40,10;88,89;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2019-2024";"Classics (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31392;21100926582;"Vergentis";journal;"26053357, 24452394";"Iuris Universal Ediciones";Yes;Yes;0,101;Q4;2;0;43;0;1;42;0,03;0,00;0,00;0;Spain;Western Europe;"Iuris Universal Ediciones";"2019-2020, 2022-2024";"History (Q4); Law (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31393;20000195024;"Verhaltenstherapie und Verhaltensmedizin";journal;"10131973";"Pabst Science Publishers";No;No;0,101;Q4;4;5;78;151;1;67;0,00;30,20;0,00;0;Germany;Western Europe;"Pabst Science Publishers";"2011-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +31394;21101067068;"Victorian Popular Fictions";journal;"26324253";"Victorian Popular Fiction Association";Yes;Yes;0,101;Q4;4;7;61;273;14;60;0,27;39,00;50,00;0;United Kingdom;Western Europe;"Victorian Popular Fiction Association";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31395;21100310038;"Victorians";journal;"21660107";"Western Kentucky University";No;No;0,101;Q4;6;10;50;299;1;44;0,00;29,90;77,78;0;United States;Northern America;"Western Kentucky University";"2013, 2015-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31396;17800156797;"VOEB-Mitteilungen";journal;"10222588, 27914011";"Vereinigung Osterreichischer Bibliothekarinnen und Bibliothekare";Yes;Yes;0,101;Q4;6;16;45;105;1;32;0,00;6,56;75,86;0;Austria;Western Europe;"Vereinigung Osterreichischer Bibliothekarinnen und Bibliothekare";"2009-2025";"Library and Information Sciences (Q4)";"Social Sciences" +31397;18400156706;"Voices - Journal of New York Folklore";journal;"0361204X";"New York Folklore Society";No;No;0,101;Q4;3;9;35;70;0;30;0,00;7,78;57,14;0;United States;Northern America;"New York Folklore Society";"1978, 1982, 1988, 2009-2025";"Anthropology (Q4); Cultural Studies (Q4); History (Q4); Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31398;21101063735;"Waiguo Yuyan yu Wenhua";journal;"20964366";"Hunan Normal University Press";No;No;0,101;Q4;3;35;145;723;5;144;0,05;20,66;42,86;0;China;Asiatic Region;"Hunan Normal University Press";"2019-2025";"Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31399;17500155103;"Walt Whitman Quarterly Review";journal;"07370679, 21533695";"University of Iowa";No;No;0,101;Q4;6;5;24;179;2;23;0,08;35,80;25,00;0;United States;Northern America;"University of Iowa";"2009-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31400;24539;"Wasser und Abfall";journal;"21928754, 14369095";"Springer Vieweg";No;No;0,101;Q4;13;83;227;595;5;128;0,01;7,17;25,52;0;Germany;Western Europe;"Springer Vieweg";"2003-2026";"Pollution (Q4); Water Science and Technology (Q4)";"Environmental Science" +31401;16400154712;"Weimarer Beitrage";journal;"00432199";"Passagen Verlag GmbH";No;No;0,101;Q4;4;9;110;367;2;104;0,00;40,78;22,22;0;Austria;Western Europe;"Passagen Verlag GmbH";"2002-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31402;21100874347;"Wesley and Methodist Studies";journal;"22911723";"Penn State University Press";No;No;0,101;Q4;4;9;35;653;1;31;0,04;72,56;33,33;0;United States;Northern America;"Penn State University Press";"2015, 2017-2026";"History (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +31403;21100892763;"West 86th";journal;"21535531, 21535558";"University of Chicago Press";No;No;0,101;Q4;13;23;37;461;3;29;0,08;20,04;40,91;0;United States;Northern America;"University of Chicago Press";"2011-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31404;21101017031;"West Bohemian Historical Review";journal;"18045480, 25710362";"University of West Bohemia";Yes;No;0,101;Q4;3;20;42;1361;3;41;0,04;68,05;11,76;0;Czech Republic;Eastern Europe;"University of West Bohemia";"2019-2025";"History (Q4)";"Arts and Humanities" +31405;21101080471;"Whatever";journal;"2611657X";"University of Pisa";Yes;Yes;0,101;Q4;6;0;33;0;5;32;0,06;0,00;0,00;0;Italy;Western Europe;"University of Pisa";"2018-2024";"Cultural Studies (Q4); Gender Studies (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31406;21100788207;"Whitehall Papers";journal;"02681307";"Taylor and Francis Ltd.";No;No;0,101;Q4;4;0;25;0;0;22;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1996-2024";"Archeology (Q4); Safety Research (Q4); Sociology and Political Science (Q4)";"Social Sciences" +31407;24414;"Winterthur Portfolio";journal;"15456927, 00840416";"University of Chicago Press";No;No;0,101;Q4;13;7;31;221;2;23;0,00;31,57;66,67;0;United States;Northern America;"University of Chicago Press";"1979, 1989, 1996-2025";"History (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31408;27931;"Ymer";journal;"00440477";"University of Stockholm";No;No;0,101;Q4;5;0;35;0;1;33;0,04;0,00;0,00;0;Sweden;Western Europe;"University of Stockholm";"1980, 1984-1986, 1988-2000, 2002-2024";"Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +31409;17848;"Zeitgeschichte";journal;"02565250";"Vandenhoeck and Ruprecht GmbH and Co. KG";Yes;No;0,101;Q4;6;16;66;734;11;40;0,18;45,88;50,00;0;Germany;Western Europe;"Vandenhoeck and Ruprecht GmbH and Co. KG";"1976, 1978-1982, 1999-2001, 2006-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31410;18501;"Zeitschrift der Savigny-Stiftung fur Rechtsgeschichte, Kanonistische Abteilung";journal;"23044896, 03234142";"Walter de Gruyter GmbH";No;No;0,101;Q4;7;7;52;910;1;50;0,02;130,00;14,29;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1911-1922, 1924-1944, 1947-1948, 1950-1995, 2011-2025";"History (Q4); Law (Q4)";"Arts and Humanities; Social Sciences" +31411;14760;"Zeitschrift fur Bibliothekswesen und Bibliographie";journal;"18642950, 00442380";"Vittorio Klostermann";No;No;0,101;Q4;6;29;127;558;6;116;0,03;19,24;55,56;0;Germany;Western Europe;"Vittorio Klostermann";"1969, 1988-2025";"Library and Information Sciences (Q4)";"Social Sciences" +31412;21100199520;"Zeitschrift fur Celtische Philologie";book series;"1865889X, 00845302";"Walter de Gruyter GmbH";No;No;0,101;Q4;10;0;31;0;1;31;0,04;0,00;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1897, 1899, 1901, 1903, 1905, 1908, 1910, 1912-1913, 1915, 1917-1918, 1921, 1923, 1925, 1927-1928, 1930, 1933, 1936, 1940, 1943, 1954, 1956-1957, 1959, 1961, 1964, 1967, 1970, 1972, 1974-1976, 1978-1979, 1981-1982, 1984, 1986-1987, 1989, 1991-1992, 1994-1997, 1999, 2001, 2003-2004, 2007-2008, 2010-2024";"Linguistics and Language (Q4)";"Social Sciences" +31413;19900191972;"Zeitschrift fur Katalanistik";journal;"09322221, 16147650";"Albert-Ludwigs-Universitat";Yes;No;0,101;Q4;5;0;53;0;7;51;0,09;0,00;0,00;0;Germany;Western Europe;"Albert-Ludwigs-Universitat";"2010-2024";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31414;24715;"Zeitschrift fur Philosophische Forschung";journal;"14392615, 00443301";"Vittorio Klostermann GmbH";No;No;0,101;Q4;9;31;100;594;1;87;0,00;19,16;18,52;0;Germany;Western Europe;"Vittorio Klostermann GmbH";"1977, 2002-2025";"Philosophy (Q4)";"Arts and Humanities" +31415;5700158839;"Zeitschrift fur Semiotik";journal;"01706241";"Stauffenburg Verlag";No;No;0,101;Q4;6;0;38;0;2;38;0,00;0,00;0,00;0;Germany;Western Europe;"Stauffenburg Verlag";"1984, 2002-2023";"Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +31416;21000195001;"Zeitschrift fur Zahnarztliche Implantologie";journal;"01773348";"Deutscher Arzte-Verlag GmbH";No;No;0,101;Q4;5;0;67;0;0;49;0,00;0,00;0,00;0;Germany;Western Europe;"Deutscher Arzte-Verlag GmbH";"2011-2018, 2020-2023";"Oral Surgery (Q4)";"Dentistry" +31417;21100789032;"Zgodovina za Vse";journal;"13182498, 26304325";"Historical Society of Celje";No;No;0,101;Q4;2;13;33;438;0;27;0,00;33,69;53,85;0;Slovenia;Eastern Europe;"Historical Society of Celje";"2016-2025";"Anthropology (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31418;21101373164;"Živá Hudba";journal;"05147735, 30298156";"AMU PRESS";No;No;0,101;Q4;1;0;24;0;1;24;0,00;0,00;0,00;0;Czech Republic;Eastern Europe;"AMU PRESS";"2021-2024";"Cultural Studies (Q4); Linguistics and Language (Q4)";"Social Sciences" +31419;19600157914;"Zivot Umjetnosti";journal;"05147794, 18492207";"Institute of Art History, Zagreb";Yes;No;0,101;Q4;3;0;54;0;2;49;0,03;0,00;0,00;0;Croatia;Eastern Europe;"Institute of Art History, Zagreb";"2008-2024";"Museology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31420;21100403905;"Zutot";journal;"15717283, 18750214";"Brill Academic Publishers";No;No;0,101;Q4;7;12;35;979;2;34;0,06;81,58;20,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2001-2004, 2008-2026";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31421;21101111728;"Clovek, Stavba a Uzemni Planovani - Man, Building and Urban Planning";conference and proceedings;"23367687, 23367695";"Czech Technical University, Faculty of Civil Engineering";No;No;0,101;-;2;0;69;0;2;61;0,04;0,00;0,00;0;Czech Republic;Eastern Europe;"Czech Technical University, Faculty of Civil Engineering";"2021-2024";"Civil and Structural Engineering; Geography, Planning and Development; Urban Studies";"Engineering; Social Sciences" +31422;15800;"DGMK Tagungsbericht";conference and proceedings;"14339013";"Deutsche Wissens. Gesell. fur Erdoel, Erdgas und Kohle EV";No;No;0,101;-;7;0;29;0;1;26;0,00;0,00;0,00;0;Germany;Western Europe;"Deutsche Wissens. Gesell. fur Erdoel, Erdgas und Kohle EV";"1999, 2001-2010, 2012-2019, 2021-2024";"Energy Engineering and Power Technology; Energy (miscellaneous); Fuel Technology";"Energy" +31423;21101179290;"International Conference on Metamaterials, Photonic Crystals and Plasmonics";conference and proceedings;"24291390";"";No;No;0,101;-;3;953;1559;3979;15;1557;0,01;4,18;23,10;0;France;Western Europe;"";"2019, 2021-2023, 2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Materials Chemistry; Materials Science (miscellaneous)";"Engineering; Materials Science" +31424;21101185195;"World Sustainable Development Outlook";conference and proceedings;"17488133";"World Association for Sustainable Development";No;No;0,101;-;1;23;30;656;2;26;0,07;28,52;35,00;0;United Kingdom;Western Europe;"World Association for Sustainable Development";"2019-2020, 2023-2025";"Business and International Management; Development; Organizational Behavior and Human Resource Management; Tourism, Leisure and Hospitality Management";"Business, Management and Accounting; Social Sciences" +31425;16400154734;"A + U-Architecture and Urbanism";journal;"03899160";"Japan Architects Co., Ltd.";No;No;0,100;Q4;3;72;652;132;2;524;0,00;1,83;25,23;0;Japan;Asiatic Region;"Japan Architects Co., Ltd.";"2002-2025";"Architecture (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering; Social Sciences" +31426;21101104284;"Acta Universitatis Lodziensis. Folia Litteraria Romanica";journal;"24498831, 15059065";"Lodz University Press";Yes;Yes;0,100;Q4;1;34;68;592;0;65;0,00;17,41;58,33;0;Poland;Eastern Europe;"Lodz University Press";"2019-2026";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31427;18400156703;"Actuel Marx";journal;"09944524";"Presses Universitaires de France";No;No;0,100;Q4;8;10;69;338;4;61;0,05;33,80;22,22;0;France;Western Europe;"Presses Universitaires de France";"2008-2025";"Economics and Econometrics (Q4); Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Economics, Econometrics and Finance; Social Sciences" +31428;17700154917;"Aevum - Rassegna di Scienze Storiche Linguistiche e Filologiche";journal;"00019593, 1827787X";"Vita e Pensiero";No;No;0,100;Q4;9;7;63;207;2;61;0,05;29,57;28,57;0;Italy;Western Europe;"Vita e Pensiero";"1979, 2001-2020, 2022-2025";"History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Philosophy (Q4)";"Arts and Humanities; Social Sciences" +31429;19900192333;"Agora - Estudos Classicos em Debate";journal;"08745498";"Universidade de Aveiro";Yes;Yes;0,100;Q4;5;37;62;1366;5;62;0,00;36,92;26,47;0;Portugal;Western Europe;"Universidade de Aveiro";"2011-2020, 2022-2025";"Classics (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31430;4700152880;"AIMS Journal";journal;"25165852, 13579657";"Association for Improvements in Maternity Services, AIMS";No;No;0,100;Q4;6;64;128;481;3;90;0,03;7,52;89,29;0;United Kingdom;Western Europe;"Association for Improvements in Maternity Services, AIMS";"2006-2025";"Maternity and Midwifery (Q4)";"Nursing" +31431;12100157116;"Alea: Estudos Neolatinos";journal;"18070299, 1517106X";"Universidade Federal do Rio de Janeiro";Yes;No;0,100;Q4;6;56;185;1028;6;175;0,04;18,36;47,92;0;Brazil;Latin America;"Universidade Federal do Rio de Janeiro";"2008-2026";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31432;17500155008;"American History";journal;"10768866";"Weider History Group";No;No;0,100;Q4;2;0;99;0;0;61;0,00;0,00;0,00;0;United States;Northern America;"Weider History Group";"2009-2023";"History (Q4)";"Arts and Humanities" +31433;145911;"American Scholar";journal;"00030937";"Phi Beta Kappa Society";No;No;0,100;Q4;10;33;212;0;1;191;0,00;0,00;39,29;0;United States;Northern America;"Phi Beta Kappa Society";"1983, 1999, 2001-2026";"Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31434;21101019252;"Anafora";journal;"24595160, 18492339";"University of Osijek - Faculty of Humanities and Social Sciences";Yes;Yes;0,100;Q4;3;22;61;704;2;59;0,05;32,00;66,67;0;Croatia;Eastern Europe;"University of Osijek - Faculty of Humanities and Social Sciences";"2019-2025";"Communication (Q4); Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31435;21101071122;"Anales de Filologia Francesa";journal;"02132958, 19894678";"Universidad de Murcia";Yes;Yes;0,100;Q4;2;33;104;956;2;98;0,03;28,97;66,67;0;Spain;Western Europe;"Universidad de Murcia";"2019-2025";"Education (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31436;21101067150;"Anales de Historia del Arte";journal;"02146452, 19882491";"Universidad Complutense Madrid";Yes;Yes;0,100;Q4;3;24;67;908;5;65;0,05;37,83;68,42;0;Spain;Western Europe;"Universidad Complutense Madrid";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31437;18366;"Annales de Bourgogne";journal;"00033901";"Societe des Annales de Bourgogne";No;No;0,100;Q4;2;4;74;230;0;73;0,00;57,50;25,00;0;France;Western Europe;"Societe des Annales de Bourgogne";"1980, 1982, 1987, 2011-2025";"History (Q4)";"Arts and Humanities" +31438;19600156813;"Annali di Storia dell'Esegesi";journal;"11204001";"Centro Editoriale Dehoniano";No;No;0,100;Q4;6;1;74;0;3;69;0,02;0,00;0,00;0;Italy;Western Europe;"Centro Editoriale Dehoniano";"2008-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31439;16100154704;"Annee Balzacienne";journal;"00846473";"Presses Universitaires de France";No;No;0,100;Q4;4;0;69;0;0;63;0,00;0,00;0,00;0;France;Western Europe;"Presses Universitaires de France";"2001-2016, 2018-2022, 2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31440;16400154744;"Antiquite Tardive";journal;"12507334";"Brepols Publishers";No;No;0,100;Q4;20;0;63;0;4;59;0,06;0,00;0,00;0;Belgium;Western Europe;"Brepols Publishers";"2003-2021, 2023-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31441;21100262316;"Archaologie der Schweiz";journal;"02559005";"Archaologie Schweiz";No;No;0,100;Q4;4;20;129;29;0;82;0,00;1,45;47,06;0;Switzerland;Western Europe;"Archaologie Schweiz";"2011-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4)";"Arts and Humanities; Social Sciences" +31442;32495;"Architect";journal;"19357001";"American Institute of Architects";No;No;0,100;Q4;5;0;208;0;1;86;0,00;0,00;0,00;0;United States;Northern America;"American Institute of Architects";"1975, 1979-1981, 2002-2023";"Architecture (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering" +31443;16000154728;"Architectural Digest";journal;"00038520";"Conde Nast Publications, Inc.";No;No;0,100;Q4;2;110;427;0;0;269;0,00;0,00;64,15;0;United States;Northern America;"Conde Nast Publications, Inc.";"2002-2013, 2017-2026";"Architecture (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering" +31444;16000154745;"Architecture d'Aujourd Hui";journal;"00038695";"Editions Jean-Michel Place";No;No;0,100;Q4;4;49;484;156;0;320;0,00;3,18;54,84;0;France;Western Europe;"Editions Jean-Michel Place";"2002-2007, 2009-2025";"Architecture (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering" +31445;22161;"Archives de Philosophie";journal;"00039632";"Centre Sevres, Faculte Jesuites de Paris";No;No;0,100;Q4;7;0;123;0;5;112;0,03;0,00;0,00;0;France;Western Europe;"Centre Sevres, Faculte Jesuites de Paris";"1972, 1987, 2001-2024";"Philosophy (Q4)";"Arts and Humanities" +31446;21100202156;"Archivio di Filosofia";journal;"19700792, 00040088";"Fabrizio Serra Editore Srl";No;No;0,100;Q4;5;23;129;901;8;123;0,08;39,17;13,64;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2011-2025";"Philosophy (Q4)";"Arts and Humanities" +31447;21101067142;"Archivio Giuridico Filippo Serafini";journal;"22822828, 03915646";"Mucchi Editore";No;No;0,100;Q4;1;18;138;403;2;126;0,02;22,39;27,27;0;Italy;Western Europe;"Mucchi Editore";"2019, 2021-2025";"Law (Q4)";"Social Sciences" +31448;21101062121;"Argument: Biannual Philosophical Journal";journal;"20841043, 20836635";"Uniwersytet Pedagogiczny";Yes;Yes;0,100;Q4;2;16;73;557;2;66;0,00;34,81;26,67;0;Poland;Eastern Europe;"Uniwersytet Pedagogiczny";"2019-2025";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +31449;16400154721;"Arion - Journal of Humanities and the Classics";journal;"00955809";"Boston University Arion";No;No;0,100;Q4;16;27;55;138;0;55;0,00;5,11;29,17;0;United States;Northern America;"Boston University Arion";"2002-2025";"Classics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31450;21101131180;"Ars Adriatica";journal;"18487459, 18481590";"University of Zadar";Yes;Yes;0,100;Q4;4;0;64;0;4;64;0,04;0,00;0,00;0;Croatia;Eastern Europe;"University of Zadar";"2019-2024";"Arts and Humanities (miscellaneous) (Q4); Conservation (Q4); History (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31451;21101174185;"Ars (Sao Paulo)";journal;"16785320, 21780447";"Graduate Program in Visual Arts of the School of Communications and Arts (ECA) of the University of Sao Paulo (USP)";Yes;Yes;0,100;Q4;3;29;58;764;3;58;0,06;26,34;44,44;0;Brazil;Latin America;"Graduate Program in Visual Arts of the School of Communications and Arts (ECA) of the University of Sao Paulo (USP)";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31452;53223;"Art in America";journal;"00043214";"Art in America";No;No;0,100;Q4;5;51;310;0;3;205;0,00;0,00;54,17;0;United States;Northern America;"Art in America";"1979, 1983, 2002-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31453;16300154726;"Arte Cristiana";journal;"00043400";"Scuola Beato Angelico";No;No;0,100;Q4;5;15;152;834;4;133;0,01;55,60;42,86;0;Italy;Western Europe;"Scuola Beato Angelico";"2002-2025";"Religious Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31454;16100154747;"Arthuriana";journal;"10786279, 19341539";"Scriptorium Press";No;No;0,100;Q4;11;23;98;865;6;96;0,03;37,61;52,17;0;United States;Northern America;"Scriptorium Press";"2002-2026";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31455;13966;"Assembly";trade journal;"10508171";"BNP Media";No;No;0,100;Q4;6;86;258;0;2;252;0,02;0,00;25,00;0;United States;Northern America;"BNP Media";"1996, 1998, 2000-2026";"Industrial and Manufacturing Engineering (Q4)";"Engineering" +31456;21100315997;"Austrian Studies";book series;"13507532, 22224262";"Modern Humanities Research Association";No;No;0,100;Q4;4;7;61;0;2;57;0,06;0,00;42,86;0;United Kingdom;Western Europe;"Modern Humanities Research Association";"2013-2025";"Cultural Studies (Q4); History (Q4); Political Science and International Relations (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31457;16400154768;"Avant Scene Opera";journal;"07642873";"Editions Premieres Loges";No;No;0,100;Q4;1;10;171;89;0;153;0,00;8,90;22,22;0;France;Western Europe;"Editions Premieres Loges";"2009-2025";"Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31458;26458;"Betonwerk und Fertigteil-Technik/Concrete Plant and Precast Technology";trade journal;"03734331";"Bauverlag BV GmbH";No;No;0,100;Q4;11;118;257;51;0;237;0,00;0,43;18,55;0;Germany;Western Europe;"Bauverlag BV GmbH";"1972-1989, 1994-2025";"Building and Construction (Q4); Business, Management and Accounting (miscellaneous) (Q4)";"Business, Management and Accounting; Engineering" +31459;21100241203;"Bibel und Kirche";journal;"00060623";"Katholisches Bibelwerk";No;No;0,100;Q4;2;35;112;179;0;98;0,00;5,11;66,67;0;Germany;Western Europe;"Katholisches Bibelwerk";"2013-2025";"Religious Studies (Q4)";"Arts and Humanities" +31460;25709;"BioCycle";trade journal;"02765055";"JG Press Inc.";No;No;0,100;Q4;22;66;345;48;4;56;0,01;0,73;68,75;0;United States;Northern America;"JG Press Inc.";"1981-2026";"Soil Science (Q4); Waste Management and Disposal (Q4)";"Agricultural and Biological Sciences; Environmental Science" +31461;6000172671;"Bollettino d'Arte";journal;"03944611";"Gangemi Editore";No;No;0,100;Q4;4;2;56;297;0;56;0,00;148,50;100,00;0;Italy;Western Europe;"Gangemi Editore";"2007, 2009-2011, 2014-2016, 2018-2023, 2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31462;26912;"Building Engineer";journal;"09698213";"Chartered Association of Building Engineers";No;No;0,100;Q4;5;127;470;44;0;256;0,00;0,35;30,77;0;United Kingdom;Western Europe;"Chartered Association of Building Engineers";"2004-2016, 2018-2025";"Building and Construction (Q4); Civil and Structural Engineering (Q4)";"Engineering" +31463;6000164636;"Bulgarian Historical Review";journal;"02048906";"Bulgarska Akademiya na Naukite";No;No;0,100;Q4;4;31;59;1140;3;55;0,03;36,77;41,03;0;Hungary;Eastern Europe;"Bulgarska Akademiya na Naukite";"2001-2007, 2009-2025";"History (Q4)";"Arts and Humanities" +31464;21100241805;"Bulletin de Litterature Ecclesiastique";journal;"00074322";"Institut Catholique de Toulouse";No;No;0,100;Q4;2;0;111;0;0;102;0,00;0,00;0,00;0;France;Western Europe;"Institut Catholique de Toulouse";"2011, 2013-2024";"Religious Studies (Q4)";"Arts and Humanities" +31465;91500;"Bulletin Hispanique";journal;"17753821, 00074640";"Universite de Bordeaux III (Michel de Montaigne), Institut Hispanique";No;No;0,100;Q4;8;5;115;26;9;114;0,08;5,20;50,00;0;France;Western Europe;"Universite de Bordeaux III (Michel de Montaigne), Institut Hispanique";"1972, 1999, 2001-2017, 2019-2025";"History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31466;16400154703;"Bulletin of the Comediantes";journal;"00075108";"Auburn University";Yes;No;0,100;Q4;8;3;77;164;2;76;0,00;54,67;0,00;0;United States;Northern America;"Auburn University";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31467;28807;"BWK- Energie-Fachmagazin";trade journal;"1618193X";"VDI Fachmedien GmbH & Co. KG";No;No;0,100;Q4;6;0;186;0;1;117;0,01;0,00;0,00;0;Germany;Western Europe;"VDI Fachmedien GmbH & Co. KG";"1974, 2001-2023";"Electrical and Electronic Engineering (Q4); Energy (miscellaneous) (Q4)";"Energy; Engineering" +31468;21100834974;"Cahiers d'Ethnomusicologie";book series;"1662372X";"Ateliers d'ethnomusicologie";No;No;0,100;Q4;4;0;69;0;1;64;0,00;0,00;0,00;0;Switzerland;Western Europe;"Ateliers d'ethnomusicologie";"2007, 2012-2016, 2020-2024";"Anthropology (Q4); Cultural Studies (Q4); Music (Q4)";"Arts and Humanities; Social Sciences" +31469;6000152807;"Cahiers du Musee National d'Art Moderne";journal;"01811525";"Centre Georges Pompidou";No;No;0,100;Q4;3;19;116;1174;1;92;0,00;61,79;37,50;0;France;Western Europe;"Centre Georges Pompidou";"2001-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31470;19700177105;"Cahiers Elisabethains";journal;"20544715, 01847678";"SAGE Publications Inc.";No;No;0,100;Q4;6;29;82;513;6;69;0,06;17,69;67,86;0;United Kingdom;Western Europe;"SAGE Publications Inc.";"2004-2025";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31471;21101113593;"Cahiers Sante Medecine Therapeutique";journal;"27808866, 27808858";"John Libbey";No;No;0,100;Q4;7;49;209;851;2;195;0,01;17,37;61,98;0;France;Western Europe;"John Libbey";"2021-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +31472;12612;"Cahiers Victoriens and Edouardiens";journal;"22716149, 02205610";"Les Amis d'Acarologia";Yes;Yes;0,100;Q4;7;18;80;929;3;75;0,03;51,61;35,29;0;France;Western Europe;"Les Amis d'Acarologia";"1990, 2002-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31473;16100154748;"Callaloo";journal;"10806512, 01612492";"Johns Hopkins University Press";No;No;0,100;Q4;21;66;76;454;1;64;0,01;6,88;52,08;0;United States;Northern America;"Johns Hopkins University Press";"2002-2018, 2024-2026";"Cultural Studies (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31474;60519;"Canadian Packaging";trade journal;"00084654";"Rogers Media Publishing";No;No;0,100;Q4;1;36;178;0;1;166;0,01;0,00;0,00;0;Canada;Northern America;"Rogers Media Publishing";"1998-2010, 2013-2025";"Industrial and Manufacturing Engineering (Q4); Media Technology (Q4)";"Engineering" +31475;6000173131;"Canadian-American Slavic Studies";journal;"22102396, 00908290";"Brill Academic Publishers";No;No;0,100;Q4;7;19;66;2111;1;63;0,02;111,11;41,18;0;Netherlands;Western Europe;"Brill Academic Publishers";"1969, 1971, 1974, 1976, 1978, 1981, 1989-1990, 1992-1993, 1996, 1999-2002, 2004, 2007, 2009-2010, 2012-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31476;16300154756;"Caravelle";journal;"11476753";"Presses Universitaires du Mirail";Yes;Yes;0,100;Q4;7;11;95;315;4;89;0,05;28,64;50,00;0;France;Western Europe;"Presses Universitaires du Mirail";"1999, 2001-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +31477;21101062492;"Carnets";journal;"16467698";"Association Portugaise d'Etudes Francaises";Yes;Yes;0,100;Q4;2;15;71;499;2;64;0,05;33,27;50,00;0;Portugal;Western Europe;"Association Portugaise d'Etudes Francaises";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31478;14978;"Carreteras";journal;"02126389";"Asociacion Espanola de la Carretera";No;No;0,100;Q4;6;22;145;192;0;95;0,00;8,73;20,83;0;Spain;Western Europe;"Asociacion Espanola de la Carretera";"2003-2025";"Civil and Structural Engineering (Q4)";"Engineering" +31479;21100781867;"Carte e la Storia";journal;"11235624, 26122154";"Societa Editrice Il Mulino";No;No;0,100;Q4;6;33;77;1791;2;73;0,03;54,27;39,47;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2016-2025";"History (Q4)";"Arts and Humanities" +31480;16300154750;"Catholica";journal;"00088501";"Aschendorff Verlag GmbH & Co. KG";No;No;0,100;Q4;4;14;68;285;2;62;0,03;20,36;45,45;0;Germany;Western Europe;"Aschendorff Verlag GmbH & Co. KG";"2002-2025";"Religious Studies (Q4)";"Arts and Humanities" +31481;24270;"Cesko-Slovenska Dermatologie";journal;"1805448X, 00090514";"Czech Medical Association J.E. Purkyne";No;No;0,100;Q4;6;15;67;298;0;60;0,00;19,87;55,88;0;Czech Republic;Eastern Europe;"Czech Medical Association J.E. Purkyne";"1947-1956, 1959-2025";"Dermatology (Q4)";"Medicine" +31482;21100226415;"Cesky Casopis Historicky";journal;"08626111";"The institute of History, Academy of Sciences of the Czech Republic";Yes;Yes;0,100;Q4;4;9;72;260;7;62;0,07;28,89;42,86;0;Czech Republic;Eastern Europe;"The institute of History, Academy of Sciences of the Czech Republic";"2009, 2012-2025";"History (Q4)";"Arts and Humanities" +31483;16415;"Chemical Processing";trade journal;"00092630";"Putman Publishing Company";No;No;0,100;Q4;8;0;187;0;1;186;0,00;0,00;0,00;0;United States;Northern America;"Putman Publishing Company";"1974, 1977, 1983, 1992-2023";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)";"Chemical Engineering; Chemistry" +31484;6000167186;"Chicago Review";journal;"00093696";"University of Chicago";No;No;0,100;Q4;6;7;98;73;0;80;0,00;10,43;20,00;0;United States;Northern America;"University of Chicago";"2002-2022, 2024-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31485;21023;"Chirurgische Praxis";journal;"21981671, 00094846";"Mediengruppe Oberfranken - Fachverlage GmbH & Co. KG";No;No;0,100;Q4;5;27;192;613;0;190;0,00;22,70;37,70;0;Germany;Western Europe;"Mediengruppe Oberfranken - Fachverlage GmbH & Co. KG";"1973-1980, 2001-2025";"Surgery (Q4)";"Medicine" +31486;21101162840;"Christianity and Literature";journal;"01483331, 20565666";"Johns Hopkins University Press";No;No;0,100;Q4;4;44;109;1486;3;84;0,03;33,77;24,14;0;United States;Northern America;"Johns Hopkins University Press";"1971, 1979-1980, 1984, 1989, 1991, 1997, 2002, 2005, 2019-2025";"Literature and Literary Theory (Q4); Religious Studies (Q4)";"Arts and Humanities" +31487;21101170297;"Christianity in the Middle East";journal;"25879316, 29493234";"";Yes;Yes;0,100;Q4;2;10;80;582;6;80;0,08;58,20;27,27;0;Russian Federation;Eastern Europe;"";"2019-2025";"Religious Studies (Q4)";"Arts and Humanities" +31488;4400151735;"CIM Magazine";trade journal;"17184177";"Canadian Institute of Mining, Metallurgy and Petroleum";No;No;0,100;Q4;24;88;233;0;0;168;0,00;0,00;66,67;0;Canada;Northern America;"Canadian Institute of Mining, Metallurgy and Petroleum";"2006-2025";"Geotechnical Engineering and Engineering Geology (Q4); Metals and Alloys (Q4)";"Earth and Planetary Sciences; Materials Science" +31489;21100259532;"Classica et Christiana";journal;"23932961, 18423043";"Alexandru Ioan Cuza University of Iasi";Yes;No;0,100;Q4;4;13;87;905;4;85;0,03;69,62;50,00;0;Romania;Eastern Europe;"Alexandru Ioan Cuza University of Iasi";"2013-2025";"Classics (Q4); Religious Studies (Q4)";"Arts and Humanities" +31490;17600154904;"Cliniques Mediterraneennes";journal;"07627491, 17762790";"ERES";No;No;0,100;Q4;10;0;96;0;2;88;0,02;0,00;0,00;0;France;Western Europe;"ERES";"2001-2024";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +31491;21100888596;"Colloquia";journal;"18223737";"Institute of Lithuanian Literature and Folklore";No;No;0,100;Q4;3;11;68;187;1;59;0,00;17,00;100,00;0;Lithuania;Eastern Europe;"Institute of Lithuanian Literature and Folklore";"2018-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Literature and Literary Theory (Q4); Music (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31492;16200154729;"Colloquia Germanica";journal;"00101338";"Pontificia Universidad Catolica de Chile, Facultad de Agronomia e Ingenieria Forestal";No;No;0,100;Q4;5;0;81;0;3;71;0,05;0,00;0,00;0;Chile;Latin America;"Pontificia Universidad Catolica de Chile, Facultad de Agronomia e Ingenieria Forestal";"2002-2017, 2020-2024";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31493;19700202717;"Coloquio-Letras";journal;"00101451";"Fundacao Calouste Gulbenkian";No;No;0,100;Q4;3;50;380;611;3;345;0,00;12,22;32,61;0;Portugal;Western Europe;"Fundacao Calouste Gulbenkian";"2009-2017, 2019-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31494;15007;"Control";trade journal;"10495541";"Putman Publishing Company";No;No;0,100;Q4;7;61;227;0;0;165;0,00;0,00;12,50;0;United States;Northern America;"Putman Publishing Company";"1972, 1996-2026";"Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)";"Engineering" +31495;15197;"COSSMA";journal;"14397676";"Health and Beauty Business Media GmbH";No;No;0,100;Q4;3;125;342;251;1;138;0,00;2,01;66,23;0;Germany;Western Europe;"Health and Beauty Business Media GmbH";"1999-2015, 2017-2025";"Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4)";"Engineering; Materials Science" +31496;21101281536;"Creneida";journal;"23408960";"";Yes;No;0,100;Q4;2;20;62;319;8;57;0,13;15,95;25,00;0;Spain;Western Europe;"";"2021-2025";"Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31497;21100242619;"Cristianesimo Nella Storia";journal;"26122227, 03933598";"Societa Editrice Il Mulino";No;No;0,100;Q4;6;28;90;2193;6;86;0,06;78,32;36,00;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2012-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31498;17700154905;"Critica Letteraria";journal;"03900142, 20352638";"Paolo Loffredo Editore";No;No;0,100;Q4;4;0;133;0;1;131;0,01;0,00;0,00;0;Italy;Western Europe;"Paolo Loffredo Editore";"2009-2023";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31499;21101030008;"Criticon";journal;"22729852, 0247381X";"";Yes;Yes;0,100;Q4;4;0;68;0;5;66;0,03;0,00;0,00;0;France;Western Europe;"";"2020-2023";"History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31500;21100872342;"Critique (France)";journal;"00111600, 19683901";"Les Editions de Minuit";No;No;0,100;Q4;4;0;189;0;7;151;0,02;0,00;0,00;0;France;Western Europe;"Les Editions de Minuit";"2015-2024";"Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31501;21101216185;"Croatica et Slavica Iadertina";journal;"18456839, 18490131";"University of Zadar";Yes;Yes;0,100;Q4;2;38;70;1392;2;65;0,02;36,63;69,23;0;Croatia;Eastern Europe;"University of Zadar";"2020-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31502;21101055968;"Cuadernos LIRICO";journal;"22628339";"Universite Paris";Yes;Yes;0,100;Q4;3;58;160;1479;3;151;0,02;25,50;53,70;0;France;Western Europe;"Universite Paris";"2019-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31503;22615;"Cutting Tool Engineering";trade journal;"00114189";"CTE Publications";No;No;0,100;Q4;8;0;146;0;0;146;0,00;0,00;0,00;0;United States;Northern America;"CTE Publications";"1969-1988, 1995-2023";"Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +31504;21100905397;"Czas Kultury";journal;"08672148";"Stowarzyszenie Czasu Kultury";No;No;0,100;Q4;2;21;198;189;8;140;0,04;9,00;55,56;0;Poland;Eastern Europe;"Stowarzyszenie Czasu Kultury";"2018-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +31505;21976;"Dairy Industries International";journal;"03088197";"United Trade Press Ltd.";No;No;0,100;Q4;6;88;314;38;1;162;0,00;0,43;68,42;0;United Kingdom;Western Europe;"United Trade Press Ltd.";"1976, 1979, 1981, 1996-2026";"Food Science (Q4)";"Agricultural and Biological Sciences" +31506;24887;"Dalhousie Review";journal;"00115827";"Dalhousie University Press, Ltd.";No;No;0,100;Q4;6;0;69;0;0;56;0,00;0,00;0,00;0;Canada;Northern America;"Dalhousie University Press, Ltd.";"1973, 1975, 1980, 1985, 1999, 2002-2024";"Literature and Literary Theory (Q4); Philosophy (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31507;16200154774;"Dance Magazine";journal;"00116009";"Macfadden Communications LLC";No;No;0,100;Q4;4;49;578;0;0;308;0,00;0,00;74,07;0;United States;Northern America;"Macfadden Communications LLC";"2002-2015, 2017-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31508;20726;"Deutsche Apotheker Zeitung";journal;"00119857";"Deutscher Apotheker Verlag";No;No;0,100;Q4;10;1419;4553;1499;5;3850;0,00;1,06;0,00;0;Germany;Western Europe;"Deutscher Apotheker Verlag";"1965, 1967-2025";"Pharmacology (medical) (Q4)";"Medicine" +31509;21100202958;"Dialogos";journal;"14159945, 21772940";"Universidade Estadual de Maringa";Yes;Yes;0,100;Q4;6;18;99;650;1;95;0,02;36,11;16,67;0;Brazil;Latin America;"Universidade Estadual de Maringa";"2012-2025";"History (Q4)";"Arts and Humanities" +31510;4900152809;"Digital Textile";journal;"17421128";"World Textile Publications Ltd";No;No;0,100;Q4;4;0;107;0;0;70;0,00;0,00;0,00;0;United Kingdom;Western Europe;"World Textile Publications Ltd";"2005-2013, 2016-2023";"Computer Graphics and Computer-Aided Design (Q4)";"Computer Science" +31511;21425;"Dix-Huitieme Siecle";journal;"00706760";"Societe Francaise d'Etude du Dix-Huitieme Siecle";Yes;No;0,100;Q4;7;0;149;0;1;141;0,01;0,00;0,00;0;France;Western Europe;"Societe Francaise d'Etude du Dix-Huitieme Siecle";"1975-1977, 1979-1980, 1982, 1985, 2002-2013, 2015-2021, 2023-2024";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +31512;16300154743;"Dix-Septieme Siecle";journal;"19696965, 00124273";"Presses Universitaires de France";No;No;0,100;Q4;6;0;143;0;4;139;0,04;0,00;0,00;0;France;Western Europe;"Presses Universitaires de France";"2001-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31513;12545;"DOLOR";journal;"16987632, 02140659";"Permanyer Publications";No;No;0,100;Q4;5;13;66;370;0;58;0,00;28,46;37,04;0;Spain;Western Europe;"Permanyer Publications";"1995-2025";"Anesthesiology and Pain Medicine (Q4)";"Medicine" +31514;16000154721;"Du: Zeitschrift Der Kultur";journal;"00126837";"Verlag Niggli AG";No;No;0,100;Q4;2;10;226;3;0;150;0,00;0,30;25,00;0;Switzerland;Western Europe;"Verlag Niggli AG";"2002-2025";"Cultural Studies (Q4); Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31515;21100216307;"Eau, l'INDUSTRIE, les Nuisances";journal;"07555016";"Editions Johanet";No;No;0,100;Q4;7;14;101;76;0;97;0,00;5,43;30,00;0;France;Western Europe;"Editions Johanet";"1985-1991, 1996-2004, 2006-2025";"Control and Systems Engineering (Q4); Fluid Flow and Transfer Processes (Q4); Ocean Engineering (Q4); Water Science and Technology (Q4)";"Chemical Engineering; Engineering; Environmental Science" +31516;24850;"Economic Outlook";journal;"14680319, 0140489X";"Wiley-Blackwell Publishing Ltd";No;No;0,100;Q4;9;44;139;0;4;132;0,02;0,00;23,08;0;United Kingdom;Western Europe;"Wiley-Blackwell Publishing Ltd";"1977-2026";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +31517;21507;"Eighteenth Century";journal;"19350201, 01935380";"University of Pennsylvania Press";No;No;0,100;Q4;15;0;59;0;3;56;0,03;0,00;0,00;0;United States;Northern America;"University of Pennsylvania Press";"1981, 1983, 1986, 2000-2024";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)";"Arts and Humanities; Social Sciences" +31518;19700173010;"Eighteenth-Century Music";journal;"14785714, 14785706";"Cambridge University Press";No;No;0,100;Q4;12;25;65;438;3;59;0,00;17,52;32,00;0;United Kingdom;Western Europe;"Cambridge University Press";"2004-2025";"Music (Q4)";"Arts and Humanities" +31519;21100197763;"Eikasmos";journal;"26122448, 11218819";"Patron Editore S.r.l.";No;No;0,100;Q4;5;0;78;0;3;78;0,02;0,00;0,00;0;Italy;Western Europe;"Patron Editore S.r.l.";"2011-2024";"Classics (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +31520;20592;"Ekonomiska Samfundets Tidskrift";journal;"00133183";"Economic Society of Finland";No;No;0,100;Q4;3;7;86;23;0;76;0,00;3,29;25,00;0;Finland;Western Europe;"Economic Society of Finland";"2002-2015, 2017, 2020-2025";"Economics and Econometrics (Q4)";"Economics, Econometrics and Finance" +31521;24875;"Electronic Products";trade journal;"00134953";"Hearst Business Communications";No;No;0,100;Q4;3;32;98;0;0;98;0,00;0,00;28,57;0;United States;Northern America;"Hearst Business Communications";"1969-1976, 1984-1989, 1994-1996, 2000-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +31522;58615;"Electronics World";trade journal;"13654675";"Datateam Business Media Limited";No;No;0,100;Q4;6;125;376;0;2;336;0,00;0,00;11,76;0;United Kingdom;Western Europe;"Datateam Business Media Limited";"1994-2017, 2020-2026";"Electrical and Electronic Engineering (Q4)";"Engineering" +31523;29045;"Engineer";trade journal;"00137758";"Centaur Publishing Ltd.";No;No;0,100;Q4;4;103;210;4;0;200;0,00;0,04;20,83;0;United Kingdom;Western Europe;"Centaur Publishing Ltd.";"1970, 1972-1983, 1985-2018, 2020-2026";"Engineering (miscellaneous) (Q4)";"Engineering" +31524;29049;"Engineering";journal;"00137782";"Gillard Welch Ltd";No;No;0,100;Q4;2;35;429;0;0;208;0,00;0,00;14,29;0;United Kingdom;Western Europe;"Gillard Welch Ltd";"1968, 1970-1990, 1994-2010, 2012, 2014-2025";"Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +31525;21100236219;"Ephemerides Liturgicae";journal;"00139505";"C L V Edizioni Liturgiche";No;No;0,100;Q4;5;12;66;1157;2;62;0,05;96,42;9,09;0;Italy;Western Europe;"C L V Edizioni Liturgiche";"2012-2025";"Religious Studies (Q4)";"Arts and Humanities" +31526;15595;"EPRI Journal";trade journal;"15490084, 03623416";"Electric Power Research Institute";No;No;0,100;Q4;8;14;61;0;0;61;0,00;0,00;10,00;0;United States;Northern America;"Electric Power Research Institute";"1976-1978, 1980-1991, 1995-2000, 2006-2025";"Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4)";"Energy; Engineering" +31527;6500153103;"Essays in Criticism";journal;"00140856, 14716852";"Oxford University Press";No;No;0,100;Q4;14;19;62;538;1;62;0,02;28,32;18,75;0;United Kingdom;Western Europe;"Oxford University Press";"1951-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31528;21100790795;"Estudos de Literatura Brasileira Contemporanea";journal;"23164018, 15180158";"Universidade de Brasilia";Yes;Yes;0,100;Q4;4;39;87;810;0;85;0,00;20,77;72,41;0;Brazil;Latin America;"Universidade de Brasilia";"2016-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31529;21533;"Etudes Balkaniques";journal;"03241645, 25348574";"Institute of Balkan Studies and Center of Thracology Prof Alexander Fol Bulgarian Academy of Sciences";No;No;0,100;Q4;3;48;102;1716;4;92;0,03;35,75;36,96;0;Bulgaria;Eastern Europe;"Institute of Balkan Studies and Center of Thracology Prof Alexander Fol Bulgarian Academy of Sciences";"1973, 1999, 2019-2025";"History (Q4); Literature and Literary Theory (Q4); Religious Studies (Q4)";"Arts and Humanities" +31530;5800206565;"Etudes Francaises";journal;"00142085, 14921405";"Consortium Erudit";No;No;0,100;Q4;6;21;86;191;1;55;0,02;9,10;58,82;0;Canada;Northern America;"Consortium Erudit";"2001-2025";"Literature and Literary Theory (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +31531;29841;"Etudes Germaniques";journal;"24265543, 00142115";"Klincksieck";No;No;0,100;Q4;5;0;92;0;0;87;0,00;0,00;0,00;0;France;Western Europe;"Klincksieck";"1971, 2002-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31532;16300154731;"Etudes Philosophiques";journal;"00142166";"Presses Universitaires de France";No;No;0,100;Q4;7;0;71;0;4;67;0,08;0,00;0,00;0;France;Western Europe;"Presses Universitaires de France";"2001-2024";"Philosophy (Q4)";"Arts and Humanities" +31533;145139;"Euroheat and Power (English Edition)";journal;"16130200";"Verlags und Wirtschaftsges. der Elektrizitatswerke";No;No;0,100;Q4;7;35;106;84;0;80;0,00;2,40;27,42;0;Germany;Western Europe;"Verlags und Wirtschaftsges. der Elektrizitatswerke";"2004-2025";"Energy Engineering and Power Technology (Q4)";"Energy" +31534;89994;"Euroheat and Power/Fernwarme International";trade journal;"0949166X";"Verlags und Wirtschaftsges. der Elektrizitatswerke";No;No;0,100;Q4;7;65;245;195;5;230;0,02;3,00;17,14;0;Germany;Western Europe;"Verlags und Wirtschaftsges. der Elektrizitatswerke";"1995-2025";"Energy Engineering and Power Technology (Q4)";"Energy" +31535;15181;"Europe";journal;"00142751";"Europe";No;No;0,100;Q4;4;151;252;3848;0;246;0,00;25,48;44,60;0;France;Western Europe;"Europe";"1974, 2002-2022, 2024-2026";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31536;21100872787;"European Drama and Performance Studies";journal;"22669035, 20458541";"Editions Classiques Garnier";No;No;0,100;Q4;2;23;84;1281;4;80;0,00;55,70;66,67;0;France;Western Europe;"Editions Classiques Garnier";"2018-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31537;21100820884;"Existenzanalyse";journal;"10247033, 24097306";"Gesellschaft fur Logotherapie und Existenzanalyse";No;No;0,100;Q4;5;0;81;0;1;73;0,00;0,00;0,00;0;Austria;Western Europe;"Gesellschaft fur Logotherapie und Existenzanalyse";"2016-2024";"Applied Psychology (Q4); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4); Social Psychology (Q4)";"Medicine; Psychology" +31538;21101023684;"Fabriksoftware";journal;"25697692";"Gito Verlag";No;No;0,100;Q4;2;16;134;38;1;65;0,01;2,38;6,67;0;Germany;Western Europe;"Gito Verlag";"2018-2025";"Computer Science Applications (Q4); Industrial and Manufacturing Engineering (Q4); Information Systems (Q4); Information Systems and Management (Q4); Management of Technology and Innovation (Q4); Software (Q4)";"Business, Management and Accounting; Computer Science; Decision Sciences; Engineering" +31539;12680;"Farbe und Lack";trade journal;"00147699";"Vincentz Verlag";No;No;0,100;Q4;12;39;203;77;0;182;0,00;1,97;34,00;0;Germany;Western Europe;"Vincentz Verlag";"1973-1974, 1976-1981, 1983-1989, 1994-2025";"Chemistry (miscellaneous) (Q4); Surfaces, Coatings and Films (Q4)";"Chemistry; Materials Science" +31540;21798;"Farmaceutski Glasnik";journal;"00148202";"Hrvatsko Farmaceutsko Drustvo";No;No;0,100;Q4;7;42;195;477;0;169;0,00;11,36;72,22;0;Croatia;Eastern Europe;"Hrvatsko Farmaceutsko Drustvo";"1950-1951, 1962, 1990-2025";"Pharmaceutical Science (Q4); Pharmacology (Q4)";"Pharmacology, Toxicology and Pharmaceutics" +31541;17700156013;"Figures de la Psychanalyse";journal;"17762847, 16233883";"ERES";No;No;0,100;Q4;6;0;67;0;1;64;0,00;0,00;0,00;0;France;Western Europe;"ERES";"2001-2007, 2009-2022, 2024";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +31542;23125;"Food Manufacture";trade journal;"00156477";"William Reed Publishing";No;No;0,100;Q4;1;0;531;0;1;531;0,00;0,00;0,00;0;United Kingdom;Western Europe;"William Reed Publishing";"1973-1974, 1979, 2009-2019, 2023";"Food Science (Q4); Industrial and Manufacturing Engineering (Q4)";"Agricultural and Biological Sciences; Engineering" +31543;21100236216;"Forum Stadt";journal;"01709364";"BAG - Verlag";No;No;0,100;Q4;3;22;75;802;0;71;0,00;36,45;53,85;0;Germany;Western Europe;"BAG - Verlag";"2011, 2013-2025";"Geography, Planning and Development (Q4); History (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +31544;74292;"Foundry Trade Journal International";trade journal;"17589789";"FMJ International Publications Ltd";No;No;0,100;Q4;9;29;92;0;0;67;0,00;0,00;0,00;0;United Kingdom;Western Europe;"FMJ International Publications Ltd";"1979, 1988, 2011-2013, 2017-2025";"Information Systems (Q4); Information Systems and Management (Q4); Software (Q4)";"Computer Science; Decision Sciences" +31545;19700182735;"Fourth Genre: Explorations in Nonfiction";journal;"15441733, 15223868";"Michigan State University";No;No;0,100;Q4;2;34;142;15;0;134;0,00;0,44;86,21;0;United States;Northern America;"Michigan State University";"2010-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31546;6600153109;"Frontiers of Literary Studies in China";journal;"16737423, 16737318";"Higher Education Press Limited Company";No;No;0,100;Q4;7;18;88;542;0;82;0,00;30,11;14,29;0;China;Asiatic Region;"Higher Education Press Limited Company";"2007-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31547;19900191977;"Fundamental and Applied Mathematics";journal;"15605159, 20766203";"Lomonosov Moscow State University";No;No;0,100;Q4;9;22;61;391;2;60;0,02;17,77;37,04;0;Russian Federation;Eastern Europe;"Lomonosov Moscow State University";"2009-2010, 2013-2016, 2018-2025";"Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4)";"Mathematics" +31548;29670;"Galvanotechnik";trade journal;"00164232";"Eugen G. Leuze Verlag";No;No;0,100;Q4;12;58;628;173;1;598;0,00;2,98;30,56;0;Germany;Western Europe;"Eugen G. Leuze Verlag";"1969-1994, 1996-2025";"Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)";"Materials Science" +31549;21100237620;"Gazette des Archives";journal;"00165522";"Association des archivistes francais (AAF)";No;No;0,100;Q4;4;8;95;215;0;88;0,00;26,88;57,14;0;France;Western Europe;"Association des archivistes francais (AAF)";"1976, 2012-2025";"History (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +31550;28017;"GEO: connexion";trade journal;"14768941";"GEO: connexion Ltd";No;No;0,100;Q4;5;0;55;0;0;55;0,00;0,00;0,00;0;United Kingdom;Western Europe;"GEO: connexion Ltd";"2003-2023";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +31551;15708;"Geodrilling International";trade journal;"09693769";"Mining Communications";No;No;0,100;Q4;4;0;233;0;0;204;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Mining Communications";"1994-1995, 1997-2014, 2016, 2020-2024";"Geotechnical Engineering and Engineering Geology (Q4)";"Earth and Planetary Sciences" +31552;17600154905;"Gestalt";journal;"11545232";"Societe Francaise de Gestalt";No;No;0,100;Q4;3;0;66;0;0;56;0,00;0,00;0,00;0;France;Western Europe;"Societe Francaise de Gestalt";"2002-2024";"Clinical Psychology (Q4)";"Psychology" +31553;24134;"Giornale Critico della Filosofia Italiana";journal;"00170089";"Casa Editrice le Lettere";No;No;0,100;Q4;6;10;112;737;1;90;0,00;73,70;11,11;0;Italy;Western Europe;"Casa Editrice le Lettere";"1966, 1973, 1975, 1977, 2002-2025";"Philosophy (Q4)";"Arts and Humanities" +31554;28365;"Giornale Italiano di Endoscopia Digestiva";journal;"03940225";"Area Qualita Srl";No;No;0,100;Q4;3;13;176;160;0;144;0,00;12,31;49,09;0;Italy;Western Europe;"Area Qualita Srl";"1989-2000, 2002-2015, 2018-2025";"Gastroenterology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)";"Medicine" +31555;4700152456;"gis.Business";journal;"18699286";"V D E Verlag GmbH";No;No;0,100;Q4;4;57;199;128;0;79;0,00;2,25;21,43;0;Germany;Western Europe;"V D E Verlag GmbH";"2006-2025";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +31556;16100154701;"Goethe Jahrbuch";journal;"03234207";"Goethe-Gesellschaft in Weimar e.V.";No;No;0,100;Q4;4;4;100;137;0;95;0,00;34,25;25,00;0;Germany;Western Europe;"Goethe-Gesellschaft in Weimar e.V.";"2002-2014, 2016-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31557;6000152801;"Goya";journal;"00172715";"Fundacion Lazaro Galdiano";No;No;0,100;Q4;8;9;81;743;2;80;0,00;82,56;69,23;0;Spain;Western Europe;"Fundacion Lazaro Galdiano";"2002-2006, 2008-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31558;16200154732;"Gradiva";journal;"03638057";"Gradiva";No;No;0,100;Q4;1;35;107;423;0;86;0,00;12,09;23,81;0;United States;Northern America;"Gradiva";"2002-2012, 2017-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31559;16300154751;"Guerres Mondiales et Conflicts Contemporains";journal;"09842292";"Presses Universitaires de France";No;No;0,100;Q4;8;9;92;496;4;87;0,03;55,11;57,14;0;France;Western Europe;"Presses Universitaires de France";"1999, 2001-2025";"History (Q4)";"Arts and Humanities" +31560;73931;"Haut";journal;"09382216";"WPV Wirtschafts- und Praxisverlag GmbH";No;No;0,100;Q4;3;57;250;428;0;170;0,00;7,51;34,88;0;Germany;Western Europe;"WPV Wirtschafts- und Praxisverlag GmbH";"2003-2017, 2022-2025";"Dermatology (Q4)";"Medicine" +31561;16122;"Highways";trade journal;"0267825X, 01426168";"Alad Ltd";No;No;0,100;Q4;2;86;166;10;0;166;0,00;0,12;23,81;0;United Kingdom;Western Europe;"Alad Ltd";"1978-1984, 1986-1988, 1990, 1994-1996, 2000-2025";"Building and Construction (Q4); Civil and Structural Engineering (Q4)";"Engineering" +31562;5600156554;"Hispanic Research Journal";journal;"14682737, 1745820X";"Taylor and Francis Ltd.";No;No;0,100;Q4;9;15;60;751;2;57;0,07;50,07;84,62;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31563;21100294605;"Histoire Medievale et Archeologie";journal;"09912894";"Centre d'archeologie et d'histoire medievales des etablissements religieux (CAHMER)";No;No;0,100;Q4;1;0;65;0;0;60;0,00;0,00;0,00;0;France;Western Europe;"Centre d'archeologie et d'histoire medievales des etablissements religieux (CAHMER)";"2013-2015, 2017-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31564;21101019705;"Historia et Ius";journal;"22797416";"Associazione culturale Historia et ius";Yes;No;0,100;Q4;2;37;107;1942;6;106;0,05;52,49;25,00;0;Italy;Western Europe;"Associazione culturale Historia et ius";"2019-2025";"Cultural Studies (Q4); History (Q4); History and Philosophy of Science (Q4); Law (Q4)";"Arts and Humanities; Social Sciences" +31565;21101155442;"Historie a Vojenstvi";journal;"00182583";"Vojenský historický ústav Praha / Military History Institute Prague";No;No;0,100;Q4;1;53;153;716;1;100;0,01;13,51;0,00;0;Czech Republic;Eastern Europe;"Vojenský historický ústav Praha / Military History Institute Prague";"2019-2025";"History (Q4)";"Arts and Humanities" +31566;21101134721;"Histories of Postwar Architecture";journal;"26110075";"Department of Architecture, University of Bologna";Yes;Yes;0,100;Q4;3;0;111;0;1;104;0,00;0,00;0,00;0;Italy;Western Europe;"Department of Architecture, University of Bologna";"2019-2024";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31567;21100432478;"Historisk Tidskrift";journal;"0345469X, 20024827";"Svenska Historiska Foreningen";Yes;No;0,100;Q4;7;0;154;0;6;144;0,04;0,00;0,00;0;Sweden;Western Europe;"Svenska Historiska Foreningen";"1973, 1977, 1979-1980, 1983-1987, 1999-2001, 2014-2018, 2020, 2022-2023";"History (Q4)";"Arts and Humanities" +31568;19900192018;"Historyka. Studies in Historical Methods";journal;"0073277X";"Polska Akademia Nauk";No;No;0,100;Q4;3;21;115;739;4;99;0,05;35,19;31,25;0;Poland;Eastern Europe;"Polska Akademia Nauk";"2002, 2020-2025";"History (Q4)";"Arts and Humanities" +31569;6000161723;"Hungarian Studies";journal;"02366568, 15882772";"Akademiai Kiado";No;No;0,100;Q4;7;33;59;1112;3;58;0,06;33,70;50,00;0;Hungary;Eastern Europe;"Akademiai Kiado";"2007-2025";"Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +31570;14459;"Huntington Library Quarterly";journal;"1544399X, 00187895";"University of Pennsylvania Press";No;No;0,100;Q4;28;16;75;746;3;72;0,02;46,63;47,06;0;United States;Northern America;"University of Pennsylvania Press";"1964, 1968-1969, 1971-1977, 1979, 1985, 1996-2025";"History (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31571;29463;"Hydro International";trade journal;"13854569";"GITC B.V.";No;No;0,100;Q4;8;24;105;47;1;105;0,01;1,96;20,51;0;Netherlands;Western Europe;"GITC B.V.";"1997-2019, 2021-2025";"Oceanography (Q4)";"Earth and Planetary Sciences" +31572;21100241619;"IHS Jane's Defence Weekly";trade journal;"20483430";"IHS Global Ltd.";No;No;0,100;Q4;2;0;1203;0;12;512;0,01;0,00;0,00;0;United Kingdom;Western Europe;"IHS Global Ltd.";"2013, 2015-2023";"Aerospace Engineering (Q4); Automotive Engineering (Q4); Mechanical Engineering (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Engineering" +31573;25597;"International Bulk Journal";trade journal;"02601087";"LLP Ltd";No;No;0,100;Q4;1;1;97;0;0;81;0,00;0,00;100,00;0;United Kingdom;Western Europe;"LLP Ltd";"1983-2017, 2021-2025";"Control and Systems Engineering (Q4); Ocean Engineering (Q4)";"Engineering" +31574;25867;"Internationale Politik";journal;"1430175X";"Deutsche Gesellschaft fuer Auswartige Politik e.V.";No;No;0,100;Q4;8;0;129;0;0;86;0,00;0,00;0,00;0;Germany;Western Europe;"Deutsche Gesellschaft fuer Auswartige Politik e.V.";"1996-2020, 2022-2023";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +31575;26638;"Internistische Praxis";journal;"00209570, 2198171X";"mgo fachverlage GmbH & Co KG";No;No;0,100;Q4;6;0;207;0;2;200;0,01;0,00;0,00;0;Germany;Western Europe;"mgo fachverlage GmbH & Co KG";"1962, 1965, 1973-1980, 2001-2024";"Internal Medicine (Q4)";"Medicine" +31576;16400154706;"Italianistica";journal;"03913368, 17241677";"Fabrizio Serra Editore Srl";No;No;0,100;Q4;5;15;75;896;1;73;0,00;59,73;50,00;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31577;21101091674;"Janus. Estudios Sobre El Siglo De Oro";journal;"22547290";"Universidade da Coruna";Yes;Yes;0,100;Q4;4;0;62;0;6;62;0,12;0,00;0,00;0;Spain;Western Europe;"Universidade da Coruna";"2019-2024";"Arts and Humanities (miscellaneous) (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31578;22672;"JOT, Journal fuer Oberflaechentechnik";trade journal;"09408789, 2192869X";"Springer Vieweg";No;No;0,100;Q4;5;289;847;108;1;285;0,00;0,37;21,82;0;Germany;Western Europe;"Springer Vieweg";"1996-1999, 2001-2026";"Mechanical Engineering (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)";"Engineering; Materials Science" +31579;20100195048;"Journal for the History of Modern Theology";journal;"16129776, 09437592";"Walter de Gruyter GmbH";No;No;0,100;Q4;7;10;56;1191;4;56;0,07;119,10;0,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1994-2025";"History (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +31580;21101199369;"Journal of Codicology and Manuscript Research";journal;"28211677, 27834913";"Scientific Association of Manuscript Research and Codicology of IRAN";Yes;No;0,100;Q4;1;23;66;275;0;65;0,00;11,96;44,44;0;Iran;Middle East;"Scientific Association of Manuscript Research and Codicology of IRAN";"2022-2025";"Library and Information Sciences (Q4); Linguistics and Language (Q4)";"Social Sciences" +31581;5700152725;"Journal of Ecclesiastical History";journal;"00220469, 14697637";"Cambridge University Press";No;No;0,100;Q4;27;40;91;4177;19;91;0,21;104,43;29,27;0;United Kingdom;Western Europe;"Cambridge University Press";"1950-2026";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31582;21101063020;"Journal of Linguistic and Intercultural Education";journal;"31200737, 20656599";"Aeternitas Publishing House";No;No;0,100;Q4;3;8;90;273;3;87;0,00;34,13;88,89;0;Romania;Eastern Europe;"Aeternitas Publishing House";"2019-2025";"Education (Q4); Linguistics and Language (Q4)";"Social Sciences" +31583;16293;"Journal of Planning and Environment Law";journal;"03074870";"Sweet & Maxwell Ltd.";No;No;0,100;Q4;9;9;147;575;1;122;0,01;63,89;44,44;0;United Kingdom;Western Europe;"Sweet & Maxwell Ltd.";"1970, 1979-1989, 1996-2026";"Geography, Planning and Development (Q4); Law (Q4); Management, Monitoring, Policy and Law (Q4)";"Environmental Science; Social Sciences" +31584;21100198701;"Journal of South India Medicolegal Association";journal;"09746196";"South India Medicolegal Association";No;No;0,100;Q4;5;15;92;265;0;84;0,00;17,67;41,67;0;India;Asiatic Region;"South India Medicolegal Association";"2009-2025";"Pathology and Forensic Medicine (Q4)";"Medicine" +31585;21100318403;"Journal of the Institute of Image Electronics Engineers of Japan";journal;"02859831, 13480316";"Institute of Image Electronics Engineers of Japan";No;No;0,100;Q4;8;44;155;363;2;140;0,02;8,25;8,00;0;Japan;Asiatic Region;"Institute of Image Electronics Engineers of Japan";"2001-2025";"Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4)";"Computer Science; Engineering" +31586;21101150686;"JUS Rivista di Scienze Giuridiche";journal;"00226955, 18277942";"Vita e Pensiero";No;No;0,100;Q4;3;37;118;834;7;112;0,06;22,54;44,44;0;Italy;Western Europe;"Vita e Pensiero";"2019-2025";"Law (Q4)";"Social Sciences" +31587;21100856790;"Kairos";journal;"25361597, 18549373";"Slovenian Umbrella Association for Psychotherapy";Yes;No;0,100;Q4;5;0;81;0;0;72;0,00;0,00;0,00;0;Slovenia;Eastern Europe;"Slovenian Umbrella Association for Psychotherapy";"2017-2020, 2022-2024";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +31588;16300154704;"Kenyon Review";journal;"0163075X";"The Kenyon Review";No;No;0,100;Q4;7;91;384;122;2;74;0,00;1,34;53,66;0;United States;Northern America;"The Kenyon Review";"2002-2013, 2017-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31589;21101288671;"Korean Journal of Buddhist Studies";journal;"15980642";"";No;No;0,100;Q4;3;1;64;54;0;64;0,00;54,00;100,00;0;South Korea;Asiatic Region;"";"2020-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +31590;27128;"Landfall";journal;"00237930";"University of Otago Press";No;No;0,100;Q4;4;28;106;32;0;65;0,00;1,14;62,50;0;New Zealand;Pacific Region;"University of Otago Press";"2000-2021, 2023-2025";"Literature and Literary Theory (Q4); Political Science and International Relations (Q4)";"Arts and Humanities; Social Sciences" +31591;21101087229;"Latina et Graeca";journal;"0350414X, 27182843";"Institute for Classical Languages and Ancient Civilization Latina et Graeca";Yes;Yes;0,100;Q4;1;22;75;58;0;71;0,00;2,64;57,89;0;Croatia;Eastern Europe;"Institute for Classical Languages and Ancient Civilization Latina et Graeca";"2019-2025";"Archeology (arts and humanities) (Q4); Classics (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31592;16200154775;"Legacy";journal;"07484321, 15340643";"University of Nebraska Press";No;No;0,100;Q4;12;4;57;212;1;55;0,02;53,00;50,00;0;United States;Northern America;"University of Nebraska Press";"2002-2025";"Gender Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31593;21101074852;"Lexis";journal;"27241564";"Edizioni Ca' Foscari";Yes;Yes;0,100;Q4;6;19;73;749;7;72;0,04;39,42;64,71;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2013-2025";"Classics (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31594;16000154719;"Liberte";journal;"00242020";"Collectif Liberte Inc";No;No;0,100;Q4;3;29;277;0;0;198;0,00;0,00;70,37;0;Canada;Northern America;"Collectif Liberte Inc";"2002-2026";"Literature and Literary Theory (Q4); Philosophy (Q4); Sociology and Political Science (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31595;23747;"Lingua Nostra";journal;"00243868";"Casa Editrice le Lettere";No;No;0,100;Q4;4;8;66;364;0;58;0,00;45,50;14,29;0;Italy;Western Europe;"Casa Editrice le Lettere";"1968, 1971-1973, 2002-2025";"Linguistics and Language (Q4)";"Social Sciences" +31596;21101081520;"Linguistica Lettica";journal;"14071932";"Latvian Language Institute";No;No;0,100;Q4;1;13;89;453;2;79;0,02;34,85;100,00;0;Latvia;Eastern Europe;"Latvian Language Institute";"2019-2025";"Linguistics and Language (Q4)";"Social Sciences" +31597;17700154928;"Literatur und Kritik";journal;"0024466X";"Otto Mueller Verlag";No;No;0,100;Q4;1;61;260;117;0;238;0,00;1,92;51,85;0;Austria;Western Europe;"Otto Mueller Verlag";"2009-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31598;21101117322;"Literature of the Americas";journal;"2542243X, 25417894";"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";Yes;Yes;0,100;Q4;3;16;94;304;8;94;0,05;19,00;91,67;0;Russian Federation;Eastern Europe;"Russian Academy of Sciences-A.M. Gorky Institute of World Literature";"2019-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31599;21101067517;"Literaturna Misal";journal;"13149237, 03240495";"Institute for Literature, Bulgarian Academy of Sciences";No;No;0,100;Q4;1;22;72;482;0;72;0,00;21,91;52,38;0;Bulgaria;Eastern Europe;"Institute for Literature, Bulgarian Academy of Sciences";"2019-2025";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31600;5800209434;"Litterature";journal;"19585926, 00474800";"Armand Colin";No;No;0,100;Q4;7;31;127;1228;7;111;0,07;39,61;34,38;0;France;Western Europe;"Armand Colin";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31601;21100792805;"Machado de Assis em Linha";journal;"19836821";"Universidade de Sao Paulo. Museu de Zoologia";Yes;Yes;0,100;Q4;3;0;71;0;3;67;0,04;0,00;0,00;0;Brazil;Latin America;"Universidade de Sao Paulo. Museu de Zoologia";"2014-2024";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31602;50178;"Machinery";trade journal;"0024919X";"Findlay Publications Ltd";No;No;0,100;Q4;3;33;94;0;0;94;0,00;0,00;16,67;0;United Kingdom;Western Europe;"Findlay Publications Ltd";"1969-1998, 2000-2019, 2021-2025";"Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4)";"Engineering" +31603;21101301822;"Mahidol Music Journal";journal;"2774132X";"Mahidol University College of Music";No;No;0,100;Q4;1;14;66;216;2;66;0,04;15,43;37,50;0;Thailand;Asiatic Region;"Mahidol University College of Music";"2021-2025";"Arts and Humanities (miscellaneous) (Q4); Music (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31604;16000154710;"MAIA-Rivista di Letterature Classiche";journal;"00250538";"Cappelli Editore";No;No;0,100;Q4;7;0;147;0;6;144;0,05;0,00;0,00;0;Italy;Western Europe;"Cappelli Editore";"1971-1974, 2002-2024";"Classics (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31605;21101059738;"Margens";journal;"19825374, 18060560";"Universidade Federal Do Para";No;Yes;0,100;Q4;3;0;108;0;4;105;0,04;0,00;0,00;0;Brazil;Latin America;"Universidade Federal Do Para";"2019-2024";"Arts and Humanities (miscellaneous) (Q4); Education (Q4); History and Philosophy of Science (Q4); Literature and Literary Theory (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +31606;6000188770;"Master Drawings";journal;"00255025";"Master Drawings Association, Inc.";No;No;0,100;Q4;7;27;110;1759;5;105;0,00;65,15;39,13;0;United States;Northern America;"Master Drawings Association, Inc.";"2002-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31607;15151;"Medecine Therapeutique Pediatrie";journal;"12865494, 19524188";"John Libbey Eurotext";No;No;0,100;Q4;8;0;79;0;0;70;0,00;0,00;0,00;0;France;Western Europe;"John Libbey Eurotext";"1998-2019, 2021-2024";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +31608;72952;"Medioevo Romanzo";journal;"03900711, 17241707";"Gaetano Macchiaroli Editore";No;No;0,100;Q4;6;9;119;792;5;109;0,03;88,00;37,50;0;Italy;Western Europe;"Gaetano Macchiaroli Editore";"1988, 2012-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31609;59141;"Medizintechnik (Cologne)";journal;"03449416";"TUV-Verlag GmbH";No;No;0,100;Q4;3;45;209;139;1;130;0,01;3,09;35,71;0;Germany;Western Europe;"TUV-Verlag GmbH";"1978-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +31610;29528;"Metal Casting Design and Purchasing";trade journal;"15234371";"American Foundry Society";No;No;0,100;Q4;3;29;84;0;1;84;0,01;0,00;36,36;0;United States;Northern America;"American Foundry Society";"2004-2019, 2021-2026";"Industrial and Manufacturing Engineering (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science" +31611;27331;"Metall";journal;"00260746";"Giesel Verlag Gmbh";No;No;0,100;Q4;15;0;93;0;1;83;0,00;0,00;0,00;0;Germany;Western Europe;"Giesel Verlag Gmbh";"1968-1994, 1996-2022";"Condensed Matter Physics (Q4); Materials Chemistry (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)";"Engineering; Materials Science; Physics and Astronomy" +31612;21100296228;"Metszet";journal;"20612710";"Artifex Kiado Kft";No;No;0,100;Q4;2;44;122;263;10;116;0,09;5,98;28,57;0;Hungary;Eastern Europe;"Artifex Kiado Kft";"2014-2025";"Architecture (Q4); Conservation (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering; Social Sciences" +31613;27685;"Michigan Quarterly Review";journal;"00262420, 15587266";"University of Michigan, Law School";No;No;0,100;Q4;10;36;199;178;2;169;0,00;4,94;37,93;0;United States;Northern America;"University of Michigan, Law School";"1964-1965, 1967, 1971, 2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31614;21100833034;"Micrologus";journal;"11232560";"SISMEL Edizioni del Galluzzo";No;No;0,100;Q4;5;15;71;760;2;60;0,04;50,67;37,50;0;Italy;Western Europe;"SISMEL Edizioni del Galluzzo";"2015-2018, 2020-2025";"History (Q4); History and Philosophy of Science (Q4)";"Arts and Humanities" +31615;26292;"Motor Ship";trade journal;"00272000";"Mercator media Ltd";No;No;0,100;Q4;1;25;315;9;0;136;0,00;0,36;14,29;0;United Kingdom;Western Europe;"Mercator media Ltd";"1970-1999, 2001-2014, 2017-2025";"Mechanical Engineering (Q4); Ocean Engineering (Q4)";"Engineering" +31616;21100437743;"Multicultural Shakespeare";journal;"23007605, 20838530";"Lodz University Press";Yes;Yes;0,100;Q4;5;0;73;0;15;66;0,25;0,00;0,00;0;Poland;Eastern Europe;"Lodz University Press";"2011-2024";"Cultural Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31617;28919;"Museum Helveticum";book series;"00274054";"Schwabe und Co. AG";No;No;0,100;Q4;13;10;68;704;3;55;0,00;70,40;20,00;0;Switzerland;Western Europe;"Schwabe und Co. AG";"1972, 1977, 1986, 2002-2025";"Classics (Q4); Linguistics and Language (Q4)";"Arts and Humanities; Social Sciences" +31618;16000154778;"Musikforschung";journal;"00274801";"Baerenreiter Verlag";No;No;0,100;Q4;5;0;139;0;0;137;0,00;0,00;0,00;0;Germany;Western Europe;"Baerenreiter Verlag";"2002-2013, 2016-2024";"Music (Q4)";"Arts and Humanities" +31619;21100226422;"Nau Literaria";journal;"19814526";"Universidade Federal do Rio Grande do Sul";Yes;Yes;0,100;Q4;2;35;79;688;1;77;0,02;19,66;41,38;0;Brazil;Latin America;"Universidade Federal do Rio Grande do Sul";"2012-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31620;24892;"Nederlands Tijdschrift voor Dermatologie en Venereologie";journal;"09258604";"Stichting Beheer Tijdschriften Dermatologie";No;No;0,100;Q4;5;160;388;786;6;213;0,02;4,91;69,39;0;Netherlands;Western Europe;"Stichting Beheer Tijdschriften Dermatologie";"2004-2025";"Critical Care and Intensive Care Medicine (Q4); Infectious Diseases (Q4)";"Medicine" +31621;26741;"New Electronics";trade journal;"00479624";"Findlay Publications Ltd";No;No;0,100;Q4;2;101;246;0;2;231;0,01;0,00;4,76;0;United Kingdom;Western Europe;"Findlay Publications Ltd";"1977-1989, 1994-1997, 1999, 2001-2018, 2020-2026";"Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)";"Engineering; Materials Science; Physics and Astronomy" +31622;16000154702;"New England Review-Middlebury Series";journal;"10531297";"Middlebury College";No;No;0,100;Q4;5;44;192;58;0;176;0,00;1,32;47,50;0;United States;Northern America;"Middlebury College";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31623;21101116676;"Nineteenth-Century Gender Studies";journal;"15567524";"";Yes;Yes;0,100;Q4;5;9;66;373;3;60;0,07;41,44;62,50;0;United States;Northern America;"";"2019-2025";"Gender Studies (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31624;20469;"Nishinihon Journal of Urology";journal;"00290726";"The West Japan Urological Association";Yes;No;0,100;Q4;5;0;216;0;0;216;0,00;0,00;0,00;0;Japan;Asiatic Region;"The West Japan Urological Association";"1981-2024";"Urology (Q4)";"Medicine" +31625;21101000288;"Nka";journal;"21527792, 10757163";"Duke University Press";No;No;0,100;Q4;4;15;63;271;3;57;0,00;18,07;50,00;0;United States;Northern America;"Duke University Press";"2001, 2011, 2019-2025";"Anthropology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31626;16200154797;"North American Review";journal;"00292397";"North American Review";No;No;0,100;Q4;1;34;118;9;0;103;0,00;0,26;58,62;0;United States;Northern America;"North American Review";"1978, 2002-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31627;25521;"Northern Logger and Timber Processor";trade journal;"00293156";"Northeastern Loggers'Association";No;No;0,100;Q4;2;53;192;1;0;182;0,00;0,02;35,00;0;United States;Northern America;"Northeastern Loggers'Association";"1996-2025";"Forestry (Q4); Materials Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Materials Science" +31628;16000154718;"Nouvelle Revue Francaise";journal;"00294802";"Editions Gallimard";No;No;0,100;Q4;2;28;70;19;1;59;0,02;0,68;37,50;0;France;Western Europe;"Editions Gallimard";"2002-2022, 2024-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31629;4000151901;"Nouvelles Questions Feministes";journal;"02484951";"Editions Antipodes";No;No;0,100;Q4;14;0;87;0;3;80;0,00;0,00;0,00;0;Switzerland;Western Europe;"Editions Antipodes";"2005-2024";"Gender Studies (Q4)";"Social Sciences" +31630;15191;"O Papel";trade journal;"00311057";"Assoc. Tecnica Brasileira de Celulose e Papel";No;No;0,100;Q4;15;125;449;151;4;448;0,01;1,21;49,18;0;Brazil;Latin America;"Assoc. Tecnica Brasileira de Celulose e Papel";"1996-2025";"Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4); Media Technology (Q4)";"Chemical Engineering; Chemistry; Engineering; Materials Science" +31631;5900152839;"Oeil";journal;"0029862X";"Artclair Editions";No;No;0,100;Q4;1;110;1227;10;0;404;0,00;0,09;75,00;0;France;Western Europe;"Artclair Editions";"2002-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31632;21101274759;"Oltreoceano";journal;"19724527, 19739370";"";No;No;0,100;Q4;2;20;70;324;2;67;0,06;16,20;75,00;0;Italy;Western Europe;"";"2020-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31633;21101153201;"Operations Engineer";journal;"26323451";"Society of Operations Engineers";No;No;0,100;Q4;2;92;389;0;0;249;0,00;0,00;66,67;0;United Kingdom;Western Europe;"Society of Operations Engineers";"2022-2026";"Industrial and Manufacturing Engineering (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Engineering" +31634;12954;"Option/Bio";journal;"09925945";"Elsevier Masson s.r.l.";No;No;0,100;Q4;3;218;696;628;4;696;0,00;2,88;50,00;0;France;Western Europe;"Elsevier Masson s.r.l.";"2003-2026";"Medicine (miscellaneous) (Q4)";"Medicine" +31635;16300154774;"Orientalia Christiana Periodica";journal;"00305375";"Peeters Publishers";No;No;0,100;Q4;7;0;76;0;0;74;0,00;0,00;0,00;0;Italy;Western Europe;"Peeters Publishers";"2002-2023";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31636;3900148508;"Ortho Magazine";journal;"12624586";"Elsevier Masson s.r.l.";No;No;0,100;Q4;1;62;200;286;1;170;0,01;4,61;84,31;0;France;Western Europe;"Elsevier Masson s.r.l.";"2006-2026";"Developmental and Educational Psychology (Q4); Pediatrics, Perinatology and Child Health (Q4)";"Medicine; Psychology" +31637;21101196740;"Osmanli Mirasi Arastirmalari Dergisi";journal;"21485704";"";Yes;Yes;0,100;Q4;2;28;94;1231;2;93;0,02;43,96;37,14;0;Turkey;Middle East;"";"2020-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Music (Q4)";"Arts and Humanities; Social Sciences" +31638;68217;"Oto-Rhino-Laryngology Tokyo";journal;"03869687";"Japanese Society of Otorhinolaryngology-Head and Neck Surgery, Inc.";No;No;0,100;Q4;3;5;63;98;0;62;0,00;19,60;22,73;0;Japan;Asiatic Region;"Japanese Society of Otorhinolaryngology-Head and Neck Surgery, Inc.";"1958-2025";"Otorhinolaryngology (Q4)";"Medicine" +31639;21100259516;"Outre-Mers";journal;"16310438";"Societe Francaise d'Histoire d'Outre Mer";No;No;0,100;Q4;4;14;93;846;3;91;0,05;60,43;41,67;0;France;Western Europe;"Societe Francaise d'Histoire d'Outre Mer";"2013-2020, 2022-2025";"History (Q4)";"Arts and Humanities" +31640;15661;"Padiatrische Praxis";journal;"00309346, 21981698";"mgo fachverlage GmbH & Co KG";No;No;0,100;Q4;6;0;222;0;2;220;0,01;0,00;0,00;0;Germany;Western Europe;"mgo fachverlage GmbH & Co KG";"1973-1980, 2002-2023";"Pediatrics, Perinatology and Child Health (Q4)";"Medicine" +31641;5700165164;"Paper360";trade journal;"19333684";"Questex Media Group Inc.";No;No;0,100;Q4;9;40;158;16;0;136;0,00;0,40;30,77;0;United States;Northern America;"Questex Media Group Inc.";"2006-2025";"Forestry (Q4); Marketing (Q4); Materials Science (miscellaneous) (Q4)";"Agricultural and Biological Sciences; Business, Management and Accounting; Materials Science" +31642;16770;"Papers on French Seventeenth Century Literature";journal;"03430758";"Narr Francke Verlag";No;No;0,100;Q4;4;13;69;742;1;67;0,03;57,08;76,92;0;Germany;Western Europe;"Narr Francke Verlag";"1987, 2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31643;16000154762;"Parabola";journal;"03621596";"Society for the Study of Myth and Tradition";No;No;0,100;Q4;2;18;169;57;1;155;0,01;3,17;25,00;0;United States;Northern America;"Society for the Study of Myth and Tradition";"2002-2015, 2017-2025";"Cultural Studies (Q4); Religious Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31644;16200154780;"Paris Review";journal;"00312037";"The Paris Review Foundation, Inc.";No;No;0,100;Q4;6;13;97;0;1;73;0,02;0,00;45,45;0;France;Western Europe;"The Paris Review Foundation, Inc.";"2002-2014, 2016-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31645;21100253111;"Parole de l'Orient";journal;"02588331";"University Saint-Esprit";No;No;0,100;Q4;5;0;63;0;2;60;0,03;0,00;0,00;0;Lebanon;Middle East;"University Saint-Esprit";"2011-2015, 2017-2024";"Religious Studies (Q4)";"Arts and Humanities" +31646;21100211310;"Perspective (France)";journal;"17777852, 22697721";"Institut national d'histoire de l'art";Yes;No;0,100;Q4;7;15;84;477;0;61;0,00;31,80;53,33;0;France;Western Europe;"Institut national d'histoire de l'art";"2010, 2012-2025";"History (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31647;145042;"Perspectives on Political Science";journal;"10457097, 19305478";"Routledge";No;No;0,100;Q4;10;28;73;969;4;55;0,04;34,61;4,00;0;United States;Northern America;"Routledge";"1990-2026";"Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Social Sciences" +31648;21101121581;"Pessoa Plural";journal;"22124179";"Brown University";Yes;Yes;0,100;Q4;5;15;86;311;3;85;0,02;20,73;37,50;0;United States;Northern America;"Brown University";"2019-2025";"History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31649;18770;"Petroleum Economist";trade journal;"0306395X";"Petroleum Economist Ltd.";No;No;0,100;Q4;4;0;612;0;1;575;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Petroleum Economist Ltd.";"1979-1983, 1985, 1999-2015, 2017-2023";"Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Marketing (Q4)";"Business, Management and Accounting; Energy" +31650;21142;"Pharmaceutisch Weekblad";journal;"00316911";"Kon. Ned. Mij. ter Bevordering der Pharmacie (KNMP)";No;No;0,100;Q4;9;304;1403;8;4;730;0,00;0,03;56,39;0;Netherlands;Western Europe;"Kon. Ned. Mij. ter Bevordering der Pharmacie (KNMP)";"1948-2025";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +31651;21716;"Pharmazeutische Zeitung";journal;"00317136";"Govi-Verlag Pharmazeutischer Verlag GmbH";Yes;No;0,100;Q4;7;525;2683;100;2;1296;0,00;0,19;64,56;0;Germany;Western Europe;"Govi-Verlag Pharmazeutischer Verlag GmbH";"1947-1948, 1985-2025";"Pharmacology (Q4); Pharmacology (medical) (Q4)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +31652;19700172905;"Philosophische Rundschau";journal;"00318159, 18687261";"Mohr Siebeck GmbH and Co. KG";No;No;0,100;Q4;3;9;74;127;0;63;0,00;14,11;0,00;0;Germany;Western Europe;"Mohr Siebeck GmbH and Co. KG";"2004, 2010-2025";"Philosophy (Q4)";"Arts and Humanities" +31653;21101075890;"Philosophy Kitchen";journal;"23851945";"University of Torino";Yes;Yes;0,100;Q4;3;29;86;933;2;76;0,02;32,17;41,38;0;Italy;Western Europe;"University of Torino";"2019-2025";"Philosophy (Q4)";"Arts and Humanities" +31654;24005;"Physiologist";trade journal;"00319376";"American Physiological Society";No;No;0,100;Q4;8;47;137;0;0;56;0,00;0,00;54,55;0;United States;Northern America;"American Physiological Society";"1962-2026";"Physiology (Q4); Physiology (medical) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +31655;13758;"Plant Engineering";trade journal;"0032082X";"CFE Media LLC";No;No;0,100;Q4;5;0;167;0;0;151;0,00;0,00;0,00;0;United States;Northern America;"CFE Media LLC";"1969-1988, 1991, 1994-2024";"Industrial and Manufacturing Engineering (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Engineering" +31656;14399;"Plastics Technology";trade journal;"00321257";"Gardner Business Media Inc.";No;No;0,100;Q4;10;118;446;0;8;446;0,02;0,00;14,29;0;United States;Northern America;"Gardner Business Media Inc.";"1969-1988, 1996-1997, 1999-2026";"Industrial and Manufacturing Engineering (Q4); Materials Chemistry (Q4); Polymers and Plastics (Q4)";"Engineering; Materials Science" +31657;16600154706;"Poetry";journal;"00322032";"The Poetry Foundation";No;No;0,100;Q4;5;29;178;0;3;86;0,02;0,00;37,50;0;United States;Northern America;"The Poetry Foundation";"2009-2026";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31658;16000154741;"Poetry Review";journal;"00322156";"The Poetry Society";No;No;0,100;Q4;4;0;78;0;0;62;0,00;0,00;0,00;0;United Kingdom;Western Europe;"The Poetry Society";"2002-2023";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31659;16000154729;"Positif";journal;"00484911";"Editions Jean-Michel Place";No;No;0,100;Q4;5;77;915;104;0;555;0,00;1,35;16,67;0;France;Western Europe;"Editions Jean-Michel Place";"2002-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31660;21101034402;"Prace Filologiczne. Literaturoznawstwo";journal;"20846045, 26582503";"University of Warsaw";Yes;Yes;0,100;Q4;2;27;69;972;4;69;0,07;36,00;60,71;0;Poland;Eastern Europe;"University of Warsaw";"2019-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31661;21101264439;"Prace Historyczne";journal;"00834351, 20844069";"Jagiellonian University Press";Yes;Yes;0,100;Q4;1;33;124;1096;3;112;0,03;33,21;34,48;0;Poland;Eastern Europe;"Jagiellonian University Press";"2022-2025";"History (Q4)";"Arts and Humanities" +31662;21101204532;"Prace Literaturoznawcze";journal;"24500798, 23535164";"University of Warmia and Mazury";No;No;0,100;Q4;1;22;59;535;0;57;0,00;24,32;66,67;0;Poland;Eastern Europe;"University of Warmia and Mazury";"2020-2025";"Education (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31663;14342;"Practica Otologica, Supplement";journal;"09121870";"Society of Practical Otolaryngology";No;No;0,100;Q4;3;1;106;54;1;106;0,01;54,00;0,00;0;Japan;Asiatic Region;"Society of Practical Otolaryngology";"1986-2000, 2002-2004, 2006-2008, 2010, 2012, 2015-2018, 2021-2025";"Otorhinolaryngology (Q4)";"Medicine" +31664;11400153338;"Printed Circuit Design and Fab/Circuits Assembly";journal;"19395442, 21530912";"U P Media Group Inc.";No;No;0,100;Q4;6;78;481;24;1;336;0,00;0,31;24,39;0;United States;Northern America;"U P Media Group Inc.";"2008-2026";"Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Industrial Relations (Q4); Management of Technology and Innovation (Q4)";"Business, Management and Accounting; Engineering" +31665;28903;"Printing Impressions";trade journal;"0032860X";"North American Publishing Co.";No;No;0,100;Q4;1;80;183;0;0;183;0,00;0,00;47,62;0;United States;Northern America;"North American Publishing Co.";"1998-2000, 2005-2026";"Marketing (Q4); Media Technology (Q4)";"Business, Management and Accounting; Engineering" +31666;16000154794;"Prospettiva";journal;"03940802";"Centro Di della Edifimi";No;No;0,100;Q4;6;1;84;55;0;83;0,00;55,00;0,00;0;Italy;Western Europe;"Centro Di della Edifimi";"2002-2023, 2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31667;21100867474;"Przeglad Archiwalny Instytutu Pamieci Narodowej";journal;"18991254";"Instytut Pamieci Narodowej w Polsce";No;No;0,100;Q4;2;0;58;0;2;55;0,06;0,00;0,00;0;Poland;Eastern Europe;"Instytut Pamieci Narodowej w Polsce";"2016-2024";"Conservation (Q4); History (Q4); Library and Information Sciences (Q4)";"Arts and Humanities; Social Sciences" +31668;18703;"Psychiatrie (CZE)";journal;"12117579, 12126845";"TIGIS Spol. s.r.o.";No;No;0,100;Q4;10;26;126;636;9;100;0,12;24,46;65,12;0;Czech Republic;Eastern Europe;"TIGIS Spol. s.r.o.";"1999-2025";"Psychiatry and Mental Health (Q4)";"Medicine" +31669;21101256260;"Publishing and Printing";journal;"10071938";"";No;No;0,100;Q4;2;64;220;1422;4;220;0,02;22,22;50,53;0;China;Asiatic Region;"";"2020-2025";"Communication (Q4); Library and Information Sciences (Q4); Linguistics and Language (Q4)";"Social Sciences" +31670;22473;"Quality Progress";journal;"0033524X";"American Society for Quality";No;No;0,100;Q4;38;127;378;18;6;107;0,02;0,14;37,04;0;United States;Northern America;"American Society for Quality";"1974, 1978-2025";"Industrial and Manufacturing Engineering (Q4); Management Science and Operations Research (Q4); Safety, Risk, Reliability and Quality (Q4); Strategy and Management (Q4)";"Business, Management and Accounting; Decision Sciences; Engineering" +31671;13159;"Queens Quarterly";journal;"00336041";"Queens University";No;No;0,100;Q4;4;50;180;0;0;157;0,00;0,00;50,00;0;Canada;Northern America;"Queens University";"1968, 1973, 1975, 1978-1979, 1981-1983, 1986, 1988-1990, 2000-2013, 2017-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +31672;21100314718;"Radix";journal;"01654322";"ForumC";No;No;0,100;Q4;2;7;121;116;0;106;0,00;16,57;16,67;0;Netherlands;Western Europe;"ForumC";"2011-2025";"History and Philosophy of Science (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +31673;21101245777;"Radovi Zavoda za Znanstveni rad Varazdin";journal;"03529509, 18487890";"Croatian Academy of Sciences and Arts";No;No;0,100;Q4;1;10;62;399;2;62;0,02;39,90;50,00;0;Croatia;Eastern Europe;"Croatian Academy of Sciences and Arts";"2020-2025";"History (Q4)";"Arts and Humanities" +31674;21101293883;"Rangsit Music Journal";journal;"30277094";"Rangsit University";No;No;0,100;Q4;2;20;69;224;15;69;0,16;11,20;36,36;0;Thailand;Asiatic Region;"Rangsit University";"2021-2026";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Education (Q4); Music (Q4)";"Arts and Humanities; Social Sciences" +31675;16000154763;"Raritan";journal;"02751607";"Raritan";No;No;0,100;Q4;11;1;120;0;3;117;0,03;0,00;0,00;0;United States;Northern America;"Raritan";"2002-2025";"Literature and Literary Theory (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31676;16100154727;"Rassegna della Letteratura Italiana";journal;"00339423";"Casa Editrice le Lettere";No;No;0,100;Q4;2;6;305;455;0;292;0,00;75,83;33,33;0;Italy;Western Europe;"Casa Editrice le Lettere";"1979, 2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31677;16300154734;"Recherches de Science Religieuse";journal;"00341258";"Association Recherches de Science Religieuse";No;No;0,100;Q4;6;0;100;0;5;90;0,04;0,00;0,00;0;France;Western Europe;"Association Recherches de Science Religieuse";"2001-2024";"Religious Studies (Q4)";"Arts and Humanities" +31678;19700168601;"Recherches Germaniques";journal;"03991989";"";Yes;Yes;0,100;Q4;2;16;84;1062;4;82;0,05;66,38;46,67;0;France;Western Europe;"";"2008-2011, 2018-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31679;21101266864;"Res Gestae";journal;"24504475, 24510068";"Uniwersytet Pedagogiczny";No;No;0,100;Q4;2;27;75;1218;3;73;0,02;45,11;42,86;0;Poland;Eastern Europe;"Uniwersytet Pedagogiczny";"2020-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4); History (Q4); History and Philosophy of Science (Q4)";"Arts and Humanities; Social Sciences" +31680;4000151911;"Resource Recycling";journal;"07444710";"Resource Recycling";Yes;No;0,100;Q4;3;14;308;0;0;167;0,00;0,00;55,56;0;United States;Northern America;"Resource Recycling";"2006-2025";"Pollution (Q4); Waste Management and Disposal (Q4)";"Environmental Science" +31681;16400154725;"Review - Literature and Arts of the Americas";journal;"17430666, 08905762";"Taylor and Francis Ltd.";No;No;0,100;Q4;6;0;133;0;1;64;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"1968, 1971-1982, 1984-2024";"Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31682;24287;"Reviews in American History";journal;"00487511, 10806628";"Johns Hopkins University Press";No;No;0,100;Q4;9;16;97;249;1;97;0,02;15,56;43,75;0;United States;Northern America;"Johns Hopkins University Press";"1975-1983, 1985-1987, 1989-1990, 1992-1994, 1996-2008, 2010-2025";"History (Q4); Medicine (miscellaneous) (Q4)";"Arts and Humanities; Medicine" +31683;19259;"Revista Brasileira de Neurologia e Psiquiatria";journal;"14140365";"Editora Cientifica Nacional Ltda";No;No;0,100;Q4;4;0;72;0;0;66;0,00;0,00;0,00;0;Brazil;Latin America;"Editora Cientifica Nacional Ltda";"1999-2000, 2008-2010, 2013-2024";"Neurology (Q4); Neurology (clinical) (Q4); Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Neuroscience; Psychology" +31684;21101274418;"Revista do Instituto Historico e Geografico do Rio Grande do Sul";journal;"25957031, 16783484";"Historical and Geographical Institute of Rio Grande do Sul";No;No;0,100;Q4;1;20;88;337;0;72;0,00;16,85;50,00;0;Brazil;Latin America;"Historical and Geographical Institute of Rio Grande do Sul";"2020-2025";"Cultural Studies (Q4); Geography, Planning and Development (Q4); History (Q4); Law (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31685;21100980649;"Revista Hispanica Moderna";journal;"19446446";"University of Pennsylvania Press";No;No;0,100;Q4;2;12;64;399;3;63;0,04;33,25;63,64;0;United States;Northern America;"University of Pennsylvania Press";"2019-2025";"Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31686;14500154747;"Revista Musical Chilena";journal;"07176252, 07162790";"Universidad de Chile";Yes;Yes;0,100;Q4;8;0;72;0;4;66;0,06;0,00;0,00;0;Chile;Latin America;"Universidad de Chile";"2007-2024";"Cultural Studies (Q4); Music (Q4)";"Arts and Humanities; Social Sciences" +31687;6000159526;"Revue de l'Art";journal;"1953812X, 00351326";"Editions Ophrys";Yes;No;0,100;Q4;6;0;104;0;0;84;0,00;0,00;0,00;0;France;Western Europe;"Editions Ophrys";"2002-2024";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31688;16400154701;"Revue de Musicologie";journal;"19585632, 00351601";"Societe Francaise de Musicologie";No;No;0,100;Q4;8;0;56;0;1;55;0,02;0,00;0,00;0;France;Western Europe;"Societe Francaise de Musicologie";"2002-2024";"Music (Q4)";"Arts and Humanities" +31689;17600155223;"Revue de Psychotherapie Psychanalytique de Groupe";journal;"17762863, 02971194";"ERES";No;No;0,100;Q4;12;0;73;0;0;69;0,00;0,00;0,00;0;France;Western Europe;"ERES";"2001-2024";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +31690;18695;"Revue des Etudes Slaves";journal;"2117718X, 00802557";"Institut d'Etudes Slaves";Yes;No;0,100;Q4;6;30;133;730;3;129;0,00;24,33;70,59;0;France;Western Europe;"Institut d'Etudes Slaves";"1983, 1985, 1999-2000, 2011, 2013-2025";"Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31691;19600166303;"Revue des Musees de France";journal;"19624271";"Editions de la Reunion des Musees Nationaux";No;No;0,100;Q4;2;27;129;1305;0;124;0,00;48,33;64,71;0;France;Western Europe;"Editions de la Reunion des Musees Nationaux";"2009-2016, 2018-2026";"Conservation (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31692;84232;"Revue des Sciences Humaines";journal;"00352195";"Sciences Humaines";No;No;0,100;Q4;4;0;124;0;3;112;0,03;0,00;0,00;0;France;Western Europe;"Sciences Humaines";"1982, 1985, 1987, 2002-2023";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +31693;24331;"Revue d'Histoire de l'Amerique Francaise";journal;"00352357";"Institut d histoire de l Amerique francaise";No;No;0,100;Q4;8;0;74;0;1;71;0,00;0,00;0,00;0;Canada;Northern America;"Institut d histoire de l Amerique francaise";"1977-1981, 1983-1987, 1999-2024";"History (Q4)";"Arts and Humanities" +31694;21101280877;"Revue d'Histoire Mediterraneenne";journal;"27167747, 2716764X";"University of Bejaia";No;No;0,100;Q4;1;48;85;1279;0;85;0,00;26,65;25,71;0;Algeria;Africa;"University of Bejaia";"2021-2026";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31695;17367;"Revue Francaise d'Etudes Americaines";journal;"03977870";"Association Francaise d'Etudes Americaines";No;No;0,100;Q4;9;0;67;0;2;59;0,02;0,00;0,00;0;France;Western Europe;"Association Francaise d'Etudes Americaines";"1990, 1996-2024";"Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31696;16300154732;"Revue Historique";journal;"00353264";"Presses Universitaires de France";Yes;No;0,100;Q4;11;0;158;0;2;145;0,01;0,00;0,00;0;France;Western Europe;"Presses Universitaires de France";"1969, 1971, 1978-1981, 1984, 1986-1987, 1999, 2001-2024";"History (Q4)";"Arts and Humanities" +31697;21101021991;"Revue Italienne d'Etudes Francaises";journal;"22407456";"Seminario di Filologia Francese";Yes;Yes;0,100;Q4;2;22;89;882;2;86;0,03;40,09;33,33;0;Italy;Western Europe;"Seminario di Filologia Francese";"2018-2025";"History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31698;21101019620;"Revue Juridique de l'USEK";journal;"10263268";"Universite Saint-Esprit de Kaslik";No;No;0,100;Q4;1;9;58;298;0;55;0,00;33,11;33,33;0;Lebanon;Middle East;"Universite Saint-Esprit de Kaslik";"2019-2025";"Law (Q4)";"Social Sciences" +31699;21100244202;"Revue Roumaine de Philosophie";journal;"12205400";"Publishing House of the Romanian Academy";No;No;0,100;Q4;4;0;81;0;5;80;0,05;0,00;0,00;0;Romania;Eastern Europe;"Publishing House of the Romanian Academy";"2013-2024";"Philosophy (Q4)";"Arts and Humanities" +31700;21100237417;"Revue Thomiste";journal;"00354295";"P. Lethielleux";No;No;0,100;Q4;3;29;135;2107;3;129;0,00;72,66;7,69;0;France;Western Europe;"P. Lethielleux";"2011-2025";"Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities" +31701;21100242260;"Ricerca Folklorica";journal;"03919099";"Grafo edizioni";No;No;0,100;Q4;4;0;78;0;0;77;0,00;0,00;0,00;0;Italy;Western Europe;"Grafo edizioni";"2011-2013, 2016-2024";"Anthropology (Q4); Cultural Studies (Q4)";"Social Sciences" +31702;21100202512;"Rivista di Cultura Classica e Medioevale";journal;"00356085, 1724062X";"Fabrizio Serra Editore Srl";No;No;0,100;Q4;4;9;96;461;6;95;0,02;51,22;33,33;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2011-2025";"Classics (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31703;17400154832;"Rivista di Filosofia Neo-Scolastica";journal;"00356247, 18277926";"Vita e Pensiero";No;No;0,100;Q4;6;19;115;335;3;115;0,03;17,63;35,29;0;Italy;Western Europe;"Vita e Pensiero";"2002-2025";"Philosophy (Q4)";"Arts and Humanities" +31704;16000154748;"Rivista di Letterature Moderne e Comparate";journal;"03912108";"Pacini Editore Srl";No;No;0,100;Q4;3;11;103;483;0;92;0,00;43,91;50,00;0;Italy;Western Europe;"Pacini Editore Srl";"2002-2013, 2017-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31705;21100310029;"Rivista di storia del cristianesimo";book series;"18277365";"Editrice Morcelliana Srl";No;No;0,100;Q4;6;12;71;744;2;66;0,00;62,00;18,18;0;Italy;Western Europe;"Editrice Morcelliana Srl";"2011-2014, 2016-2025";"History (Q4); Religious Studies (Q4)";"Arts and Humanities" +31706;29510;"Rivista Italiana della Saldatura";journal;"00356794";"Instituto Italiano della Saldatura";Yes;No;0,100;Q4;4;24;126;529;0;123;0,00;22,04;20,00;0;Italy;Western Europe;"Instituto Italiano della Saldatura";"1970-1991, 1993, 1997, 2006-2025";"Mechanical Engineering (Q4); Mechanics of Materials (Q4)";"Engineering" +31707;16300154733;"RLC - Revue de Litterature Comparee";journal;"00351466, 19650264";"Klincksieck";No;No;0,100;Q4;6;0;74;0;0;70;0,00;0,00;0,00;0;France;Western Europe;"Klincksieck";"2001-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31708;19221;"Romance Notes";journal;"00357995";"University of North Carolina at Chapel Hill";No;No;0,100;Q4;7;22;133;528;3;133;0,01;24,00;36,36;0;United States;Northern America;"University of North Carolina at Chapel Hill";"1975, 2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31709;16100154720;"Romanic Review";journal;"00358118";"Duke University Press";No;No;0,100;Q4;8;19;107;843;7;104;0,08;44,37;41,67;0;United States;Northern America;"Duke University Press";"2000, 2002-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +31710;19253;"Romantisme";journal;"19577958, 00488593";"Armand Colin";No;No;0,100;Q4;8;39;163;1286;8;154;0,04;32,97;52,00;0;France;Western Europe;"Armand Colin";"1981, 1999, 2001-2025";"Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31711;5700152989;"Salmagundi";journal;"00363529";"Skidmore College";No;No;0,100;Q4;7;16;98;82;1;85;0,02;5,13;28,57;0;United States;Northern America;"Skidmore College";"1987, 2002-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31712;20376;"Seibutsu-kogaku Kaishi";journal;"09193758, 24358630";"Society for Biotechnology, Japan";No;No;0,100;Q4;11;17;146;279;0;86;0,00;16,41;15,79;0;Japan;Asiatic Region;"Society for Biotechnology, Japan";"1996-2025";"Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Food Science (Q4)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +31713;14341;"Seikagaku";journal;"21890544, 00371017";"Japanese Biochemical Society";No;No;0,100;Q4;9;0;152;0;2;150;0,03;0,00;0,00;0;Japan;Asiatic Region;"Japanese Biochemical Society";"1962, 1964-2018, 2020-2023";"Biochemistry (Q4); Medicine (miscellaneous) (Q4)";"Biochemistry, Genetics and Molecular Biology; Medicine" +31714;21100885006;"Silicon Semiconductor";journal;"20507798, 20507801";"Angel Business Communications Ltd.";No;No;0,100;Q4;5;40;153;21;0;106;0,00;0,53;8,82;0;United Kingdom;Western Europe;"Angel Business Communications Ltd.";"2018-2025";"Electrical and Electronic Engineering (Q4)";"Engineering" +31715;16300154714;"Sinn und Form";journal;"00375756";"Aufbau-Verlag GmbH";No;No;0,100;Q4;3;60;235;0;0;225;0,00;0,00;26,67;0;Germany;Western Europe;"Aufbau-Verlag GmbH";"2002-2014, 2016-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Religious Studies (Q4)";"Arts and Humanities; Social Sciences" +31716;24954;"Skin Research";journal;"13471813, 18839614";"Osaka City University Medical School";No;No;0,100;Q4;7;26;114;449;0;114;0,00;17,27;51,33;0;Japan;Asiatic Region;"Osaka City University Medical School";"2002-2025";"Dermatology (Q4); Infectious Diseases (Q4)";"Medicine" +31717;21101254068;"Slavic World in the Third Millennium";journal;"2782442X, 24126446";"Institute for Slavic Studies of the Russian Academy of Sciences";Yes;Yes;0,100;Q4;2;12;85;225;2;85;0,00;18,75;33,33;0;Russian Federation;Eastern Europe;"Institute for Slavic Studies of the Russian Academy of Sciences";"2021-2025";"Arts and Humanities (miscellaneous) (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Social Sciences (miscellaneous) (Q4)";"Arts and Humanities; Social Sciences" +31718;21100929890;"Slovo a Smysl";journal;"23366680, 12147915";"Charles University, Faculty of Arts";Yes;Yes;0,100;Q4;2;6;89;186;4;84;0,02;31,00;33,33;0;Czech Republic;Eastern Europe;"Charles University, Faculty of Arts";"2018-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31719;18035;"Sociologia (Italy)";journal;"00380156";"Gangemi Editore S.p.A.";No;No;0,100;Q4;5;40;111;1217;3;63;0,03;30,43;57,14;0;Italy;Western Europe;"Gangemi Editore S.p.A.";"1996-2025";"Sociology and Political Science (Q4)";"Social Sciences" +31720;4400151509;"Soins Aides - Soignantes";journal;"17709857";"Elsevier Masson s.r.l.";No;No;0,100;Q4;3;66;190;299;1;172;0,01;4,53;75,32;0;France;Western Europe;"Elsevier Masson s.r.l.";"2005-2026";"Nursing (miscellaneous) (Q4)";"Nursing" +31721;21100205708;"South Central Review";journal;"07436831, 15493377";"Johns Hopkins University Press";Yes;No;0,100;Q4;8;40;58;938;5;55;0,09;23,45;47,50;0;United States;Northern America;"Johns Hopkins University Press";"2011-2025";"Cultural Studies (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31722;16000154754;"Southern Humanities Review";journal;"00384186";"Auburn University";No;No;0,100;Q4;3;18;91;0;0;80;0,00;0,00;68,75;0;United States;Northern America;"Auburn University";"1967, 2002-2016, 2019-2025";"Arts and Humanities (miscellaneous) (Q4)";"Arts and Humanities" +31723;21100865030;"Soviet and Post-Soviet Politics and Society";book series;"16143515";"Ibidem Verlag";No;No;0,100;Q4;4;101;227;1810;5;75;0,02;17,92;100,00;0;Germany;Western Europe;"Ibidem Verlag";"2018-2025";"History (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31724;17600155215;"Spirale";journal;"12784699";"Editions Eres";No;No;0,100;Q4;7;0;173;0;0;157;0,00;0,00;0,00;0;France;Western Europe;"Editions Eres";"2001-2024";"Developmental and Educational Psychology (Q4); Education (Q4); Health (social science) (Q4)";"Psychology; Social Sciences" +31725;16100154718;"Strumenti Critici";journal;"26120925, 00392618";"Societa Editrice Il Mulino";No;No;0,100;Q4;3;26;86;1522;4;84;0,05;58,54;38,46;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2002-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31726;16000154795;"Studi e Problemi di Critica Testuale";journal;"00492361, 1826722X";"Fabrizio Serra Editore Srl";No;No;0,100;Q4;5;35;71;1612;3;71;0,04;46,06;47,06;0;Italy;Western Europe;"Fabrizio Serra Editore Srl";"2002-2018, 2020-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31727;24229;"Studi Francesi";journal;"00392944";"Rosenberg & Sellier";No;No;0,100;Q4;4;0;93;0;1;89;0,00;0,00;0,00;0;Italy;Western Europe;"Rosenberg & Sellier";"1967, 1972, 1979, 1999, 2002-2024";"Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31728;16100154797;"Studi Medievali";journal;"03918467";"Fondazione Centro Italiano di Studi sull'Alto Medioevo (C I S A M)";No;No;0,100;Q4;8;9;134;665;2;131;0,00;73,89;42,86;0;Italy;Western Europe;"Fondazione Centro Italiano di Studi sull'Alto Medioevo (C I S A M)";"2002-2025";"Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31729;21101285720;"Studia Historica Brunensia";journal;"18037429, 23364513";"Masaryk University";Yes;No;0,100;Q4;2;18;60;666;5;56;0,11;37,00;17,65;0;Czech Republic;Eastern Europe;"Masaryk University";"2020-2025";"History (Q4)";"Arts and Humanities" +31730;21101257959;"Studia Polonijne";journal;"2544526X, 01375210";"John Paul II Catholic University of Lublin";No;No;0,100;Q4;1;42;66;1471;5;61;0,06;35,02;41,30;0;Poland;Eastern Europe;"John Paul II Catholic University of Lublin";"2021-2025";"History and Philosophy of Science (Q4); Sociology and Political Science (Q4)";"Arts and Humanities; Social Sciences" +31731;21100264010;"Summaries of JSSI and JSSE Joint Conference on Snow and Ice Research";journal;"18830870, 18830889";"The Japanese Society of Snow and Ice/Japan Society for Snow Engineering";No;No;0,100;Q4;3;0;96;0;0;80;0,00;0,00;0,00;0;Japan;Asiatic Region;"The Japanese Society of Snow and Ice/Japan Society for Snow Engineering";"2008-2012, 2022";"Earth and Planetary Sciences (miscellaneous) (Q4)";"Earth and Planetary Sciences" +31732;23467;"Taiwan Review";journal;"17275199, 17275148";"Kwang Hwa Publishing Co.";No;No;0,100;Q4;3;35;224;0;0;215;0,00;0,00;33,33;0;Taiwan;Asiatic Region;"Kwang Hwa Publishing Co.";"2003-2026";"Multidisciplinary (Q4)";"Multidisciplinary" +31733;19700188476;"Tanz";journal;"18697720";"Friedrich Berlin Verlagsgesellschaft mbH";No;No;0,100;Q4;1;104;555;3;1;307;0,00;0,03;50,91;0;Germany;Western Europe;"Friedrich Berlin Verlagsgesellschaft mbH";"2010-2013, 2017-2025";"Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31734;21100199715;"Tempo Psicanalitico";journal;"23166576, 01014838";"Sociedade de Psicanalise Iracy Doyle";Yes;Yes;0,100;Q4;5;18;87;541;4;85;0,00;30,06;63,64;0;Brazil;Latin America;"Sociedade de Psicanalise Iracy Doyle";"2010-2025";"Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)";"Medicine; Psychology" +31735;21100201041;"Terra Sebus";journal;"23445432, 20669143";"Muzeul Municipal Ioan Raica Sebes";Yes;Yes;0,100;Q4;9;0;69;0;3;69;0,08;0,00;0,00;0;Romania;Eastern Europe;"Muzeul Municipal Ioan Raica Sebes";"2009-2024";"Archeology (Q4); Archeology (arts and humanities) (Q4); Conservation (Q4); History (Q4); Museology (Q4)";"Arts and Humanities; Social Sciences" +31736;17500155007;"Text und Kritik";journal;"09352929, 00405329";"Edition Text und Kritik in Richard Boorberg Verlag GmbH and Co. KG";No;No;0,100;Q4;3;9;73;340;0;70;0,00;37,78;44,44;0;Germany;Western Europe;"Edition Text und Kritik in Richard Boorberg Verlag GmbH and Co. KG";"2009-2023, 2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31737;13366;"Textile Rental";journal;"01950118";"Textile Rental Association of America";No;No;0,100;Q4;1;83;345;0;0;235;0,00;0,00;14,29;0;United States;Northern America;"Textile Rental Association of America";"1979-1993, 2005-2015, 2017-2025";"Business and International Management (Q4); Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)";"Business, Management and Accounting; Engineering; Materials Science" +31738;84226;"Textiles Panamericanos";trade journal;"00493570";"Billian Publishing Inc.";No;No;0,100;Q4;1;28;177;0;1;121;0,01;0,00;0,00;0;United States;Northern America;"Billian Publishing Inc.";"1990-2025";"Materials Science (miscellaneous) (Q4)";"Materials Science" +31739;16300154711;"Theater";journal;"1527196X, 01610775";"Duke University Press";No;No;0,100;Q4;10;29;82;243;0;61;0,00;8,38;45,45;0;United States;Northern America;"Duke University Press";"2002-2025";"Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities" +31740;21100236614;"Theologische Beitrage";journal;"03422372";"SCM R.Brockhaus";No;No;0,100;Q4;3;34;130;1015;2;109;0,01;29,85;14,29;0;Germany;Western Europe;"SCM R.Brockhaus";"2011-2013, 2015-2025";"Religious Studies (Q4)";"Arts and Humanities" +31741;16000154738;"Theologische Literaturzeitung";journal;"00405671";"Evangelische Verlagsanstalt GmbH";No;No;0,100;Q4;6;0;235;0;2;188;0,01;0,00;0,00;0;Germany;Western Europe;"Evangelische Verlagsanstalt GmbH";"2002-2014, 2018-2023";"Religious Studies (Q4)";"Arts and Humanities" +31742;66748;"Tokyo Jikeikai Medical Journal";journal;"03759172";"Jikei University School of Medicine";No;No;0,100;Q4;4;5;60;107;0;60;0,00;21,40;43,59;0;Japan;Asiatic Region;"Jikei University School of Medicine";"1964-1965, 1972-2025";"Medicine (miscellaneous) (Q4)";"Medicine" +31743;27853;"Toronto Journal of Theology";journal;"08269831, 19186371";"University of Toronto Press";No;No;0,100;Q4;7;15;61;585;3;55;0,07;39,00;13,33;0;Canada;Northern America;"University of Toronto Press";"1990, 2011-2025";"Religious Studies (Q4)";"Arts and Humanities" +31744;21101193865;"Universitas Philosophica";journal;"23462426";"Pontificia Universidad Javeriana";No;No;0,100;Q4;3;20;58;615;3;56;0,05;30,75;7,69;0;Colombia;Latin America;"Pontificia Universidad Javeriana";"2020-2025";"Philosophy (Q4)";"Arts and Humanities" +31745;21101364769;"Urbanform and Design";journal;"23849207, 26123754";"Gruppo editoriale Tab S.r.l.";No;No;0,100;Q4;2;36;88;539;4;84;0,03;14,97;50,00;0;Italy;Western Europe;"Gruppo editoriale Tab S.r.l.";"2020-2025";"Arts and Humanities (miscellaneous) (Q4); Urban Studies (Q4)";"Arts and Humanities; Social Sciences" +31746;21100992226;"Veredas";journal;"2183816X, 08745102";"International Association of Lusitanistas";Yes;Yes;0,100;Q4;1;13;100;291;1;93;0,00;22,38;50,00;0;Portugal;Western Europe;"International Association of Lusitanistas";"2019-2025";"Communication (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31747;21101205772;"Veredes, Arquitectura y Divulgacion";journal;"26599139, 26599198";"Alberto Alonso Oro";Yes;Yes;0,100;Q4;1;29;89;308;3;67;0,05;10,62;38,89;0;Spain;Western Europe;"Alberto Alonso Oro";"2020-2025";"Architecture (Q4); Building and Construction (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Engineering" +31748;21100967053;"Versus";journal;"26120909, 03938255";"Societa Editrice Il Mulino";No;No;0,100;Q4;4;14;70;491;3;70;0,04;35,07;30,77;0;Italy;Western Europe;"Societa Editrice Il Mulino";"2019-2025";"Applied Psychology (Q4); Linguistics and Language (Q4); Philosophy (Q4)";"Arts and Humanities; Psychology; Social Sciences" +31749;19803;"Victorian Periodicals Review";journal;"1712526X, 07094698";"Johns Hopkins University Press";No;No;0,100;Q4;17;8;61;998;10;56;0,07;124,75;75,00;0;United States;Northern America;"Johns Hopkins University Press";"1979-1980, 1999, 2001, 2009-2025";"History and Philosophy of Science (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities" +31750;16300154706;"Victorian Poetry";journal;"15307190, 00425206";"West Virginia University Press";No;No;0,100;Q4;17;0;90;0;6;86;0,03;0,00;0,00;0;United States;Northern America;"West Virginia University Press";"2002-2024";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31751;5800172539;"Virginia Quarterly Review";journal;"0042675X, 21546932";"University of Virginia";No;No;0,100;Q4;7;13;148;8;2;137;0,01;0,62;46,67;0;United States;Northern America;"University of Virginia";"1970, 1978-1979, 1981, 1987-1988, 2002-2025";"Literature and Literary Theory (Q4); Sociology and Political Science (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31752;21100455564;"Visual Ethnography";journal;"24999288, 22811605";"Altrimedia Edizioni";No;No;0,100;Q4;7;21;66;666;3;66;0,04;31,71;54,17;0;Italy;Western Europe;"Altrimedia Edizioni";"2012-2025";"Anthropology (Q4); Communication (Q4); Cultural Studies (Q4)";"Social Sciences" +31753;17700154927;"Volkskunde";journal;"00428523";"Centre for Study and Documentation";No;No;0,100;Q4;5;26;94;1066;5;94;0,03;41,00;32,35;0;Belgium;Western Europe;"Centre for Study and Documentation";"1971, 1977, 2009-2025";"Anthropology (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31754;16100154787;"Westerly";journal;"0043342X";"Westerly Centre, The University of Western Australia";No;No;0,100;Q4;6;23;127;18;1;78;0,00;0,78;50,00;0;Australia;Pacific Region;"Westerly Centre, The University of Western Australia";"2002-2015, 2017-2025";"Literature and Literary Theory (Q4)";"Arts and Humanities" +31755;5900152863;"Woman's Art Journal";journal;"21588457, 02707993";"Old City Publishing";No;No;0,100;Q4;8;8;88;451;0;83;0,00;56,38;83,33;0;United States;Northern America;"Old City Publishing";"2002-2025";"Gender Studies (Q4); Visual Arts and Performing Arts (Q4)";"Arts and Humanities; Social Sciences" +31756;22157;"World Pumps";trade journal;"02621762";"MA Healthcare Ltd";No;No;0,100;Q4;18;11;64;0;0;63;0,00;0,00;0,00;0;United Kingdom;Western Europe;"MA Healthcare Ltd";"1981-2020, 2022-2026";"Mechanical Engineering (Q4)";"Engineering" +31757;21101374360;"Zagłada Żydów. Studia i Materialy";journal;"1895247X, 26573571";"Polish Center for Holocaust Research";Yes;No;0,100;Q4;2;20;79;456;1;72;0,02;22,80;40,00;0;Poland;Eastern Europe;"Polish Center for Holocaust Research";"2021-2025";"History (Q4)";"Arts and Humanities" +31758;25501;"Zeitschrift fur Agyptische Sprache und Altertumskunde";journal;"2196713X, 0044216X";"Walter de Gruyter GmbH";No;No;0,100;Q4;14;23;67;1326;5;67;0,09;57,65;37,93;0;Germany;Western Europe;"Walter de Gruyter GmbH";"1863-1876, 1878-1898, 1905, 1908, 1910-1912, 1914-1915, 1917-1918, 1920, 1922-1927, 1929-1936, 1939-1940, 1942-1943, 1954-1956, 1958-1964, 1966-1967, 1969-2025";"Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31759;16300154748;"Zeitschrift fur Deutsches Altertum und Deutsche Literatur";journal;"00442518";"Franz Steiner Verlag GmbH";No;No;0,100;Q4;6;23;70;998;3;70;0,06;43,39;45,45;0;Germany;Western Europe;"Franz Steiner Verlag GmbH";"1979-1980, 2002-2025";"Linguistics and Language (Q4); Literature and Literary Theory (Q4)";"Arts and Humanities; Social Sciences" +31760;17850;"Zeitschrift fur Geschichtswissenschaft";journal;"00442828";"Metropol Verlag";No;No;0,100;Q4;9;40;452;3100;1;450;0,00;77,50;41,86;0;Germany;Western Europe;"Metropol Verlag";"1971, 1999, 2001-2025";"History (Q4)";"Arts and Humanities" +31761;5800225527;"Zeitschrift fur Theologie und Kirche";journal;"00443549, 18687377";"Mohr Siebeck GmbH and Co. KG";No;No;0,100;Q4;9;16;59;1483;9;59;0,13;92,69;12,50;0;Germany;Western Europe;"Mohr Siebeck GmbH and Co. KG";"2002-2025";"Religious Studies (Q4)";"Arts and Humanities" +31762;21101121174;"Zeszyty Wiejskie";journal;"15066541, 26574373";"Lodz University Press";Yes;Yes;0,100;Q4;2;19;85;504;1;78;0,01;26,53;42,86;0;Poland;Eastern Europe;"Lodz University Press";"2019-2025";"Anthropology (Q4); Archeology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4); History (Q4)";"Arts and Humanities; Social Sciences" +31763;21100217229;"Proceedings of the Symposium on the Application of Geophyics to Engineering and Environmental Problems, SAGEEP";conference and proceedings;"15548015";"J and N Group, Ltd.";No;No;0,100;-;14;37;126;26;0;123;0,00;0,70;26,83;0;United States;Northern America;"J and N Group, Ltd.";"2005, 2007, 2009-2012, 2016-2019, 2021-2025";"Environmental Engineering; Geophysics; Geotechnical Engineering and Engineering Geology";"Earth and Planetary Sciences; Environmental Science" +31764;12193;"Simulation Series";conference and proceedings;"07359276";"The Society for Modeling and Simulation International";No;No;0,100;-;21;72;139;1824;0;136;0,00;25,33;22,92;0;United States;Northern America;"The Society for Modeling and Simulation International";"1983-1987, 1989-1990, 2003, 2005-2022, 2024-2025";"Computer Networks and Communications; Engineering (miscellaneous)";"Computer Science; Engineering" +31765;21101284693;"SPE Reservoir Simulation Symposium Proceedings";conference and proceedings;"26895382, 26895366";"Society of Petroleum Engineers (SPE)";No;No;0,100;-;3;79;73;2175;3;72;0,04;27,53;18,61;0;United States;Northern America;"Society of Petroleum Engineers (SPE)";"2023, 2025";"Energy Engineering and Power Technology; Geotechnical Engineering and Engineering Geology";"Earth and Planetary Sciences; Energy" +31766;21100258736;"Advanced Series in Management";book series;"18776361";"Emerald Group Publishing Ltd.";No;No;;-;21;35;106;1203;172;0;1,27;34,37;71,43;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2014, 2016-2020, 2022, 2024-2026";"Business, Management and Accounting (miscellaneous)";"Business, Management and Accounting" +31767;4000152116;"Advances in Accounting Behavioral Research";book series;"14751488";"Emerald Group Publishing Ltd.";No;No;;-;15;13;38;408;20;0;0,44;31,38;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2006, 2008-2026";"Accounting; Management Science and Operations Research";"Business, Management and Accounting; Decision Sciences" +31768;14324;"Advances in Agronomy";book series;"00652113";"Academic Press Inc.";No;No;;-;164;43;116;8301;1175;0;8,78;193,05;30,61;0;United States;Northern America;"Academic Press Inc.";"1949-1957, 1959-1972, 1974-1977, 1979-1984, 1986-1987, 1989-1999, 2001-2026";"Agronomy and Crop Science; Soil Science";"Agricultural and Biological Sciences" +31769;21100904295;"Advances in Airline Economics";book series;"22121609";"Emerald Group Publishing Ltd.";No;No;;-;11;17;14;436;1;0;0,07;25,65;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2012, 2014, 2016-2019, 2023-2026";"Aerospace Engineering; Business, Management and Accounting (miscellaneous); Pollution; Transportation";"Business, Management and Accounting; Engineering; Environmental Science; Social Sciences" +31770;4100151519;"Advances in Austrian Economics";book series;"15292134";"Emerald Group Publishing Ltd.";No;No;;-;19;37;9;1473;7;0;0,00;39,81;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1995-1997, 2003-2012, 2014-2020, 2022, 2025-2026";"Economics and Econometrics";"Economics, Econometrics and Finance" +31771;21100258746;"Advances in Business and Management Forecasting";book series;"14774070";"Emerald Group Publishing Ltd.";No;No;;-;7;16;0;250;0;0;0,00;15,63;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2011, 2013-2014, 2016-2017, 2019, 2021, 2025-2026";"Business, Management and Accounting (miscellaneous)";"Business, Management and Accounting" +31772;26908;"Advances in Carbohydrate Chemistry and Biochemistry";book series;"00652318";"Academic Press Inc.";No;No;;-;48;8;23;871;23;0;1,27;108,88;30,43;0;United States;Northern America;"Academic Press Inc.";"1965-1966, 1968-1991, 1994-1995, 1997-2001, 2003-2004, 2006-2007, 2009-2025";"Biochemistry; Organic Chemistry";"Biochemistry, Genetics and Molecular Biology; Chemistry" +31773;21101068187;"Advances in Chemical Pollution, Environmental Management and Protection";book series;"24689270, 24689289";"Elsevier B.V.";No;No;;-;17;52;59;5309;135;0;2,55;102,10;44,38;0;Netherlands;Western Europe;"Elsevier B.V.";"2017-2025";"Agricultural and Biological Sciences (miscellaneous); Environmental Science (miscellaneous); Management, Monitoring, Policy and Law; Pollution; Waste Management and Disposal";"Agricultural and Biological Sciences; Environmental Science" +31774;4100151538;"Advances in Early Education and Day Care";book series;"02704021";"Emerald Group Publishing Ltd.";No;No;;-;12;2;0;0;0;0;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001, 2003-2005, 2011-2016, 2025";"Education";"Social Sciences" +31775;22230;"Advances in Ecological Research";book series;"00652504, 2163582X";"Academic Press Inc.";No;No;;-;81;9;52;1003;138;0;1,40;111,44;47,50;0;United States;Northern America;"Academic Press Inc.";"1962, 1964, 1966-1969, 1971, 1974-1975, 1977, 1980, 1982-1984, 1986-1995, 1997, 1999-2001, 2003-2006, 2008-2025";"Ecology; Ecology, Evolution, Behavior and Systematics";"Agricultural and Biological Sciences; Environmental Science" +31776;4000152117;"Advances in Econometrics";book series;"07319053";"Emerald Group Publishing Ltd.";No;No;;-;31;46;15;1482;12;0;0,80;32,22;26,67;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000, 2002-2004, 2006, 2008-2014, 2016-2017, 2019-2020, 2024-2026";"Economics and Econometrics";"Economics, Econometrics and Finance" +31777;4100151504;"Advances in Education in Diverse Communities: Research, Policy and Praxis";book series;"1479358X";"Emerald Group Publishing Ltd.";No;No;;-;10;38;0;945;0;0;0,00;24,87;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000, 2002, 2004, 2006, 2008, 2012, 2014-2015, 2017, 2025-2026";"Anthropology; Education";"Social Sciences" +31778;4100151525;"Advances in Educational Administration";book series;"14793660";"Emerald Group Publishing Ltd.";No;No;;-;11;39;0;1511;0;0;0,00;38,74;100,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003-2004, 2006-2007, 2010-2017, 2025-2026";"Education; Public Administration";"Social Sciences" +31779;4000152103;"Advances in Entrepreneurship, Firm Emergence and Growth";book series;"10747540";"Emerald Group Publishing Ltd.";No;No;;-;27;29;0;1740;0;0;0,00;60,00;41,67;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000, 2002-2007, 2009-2011, 2014-2019, 2021, 2025-2026";"Business, Management and Accounting (miscellaneous); Economics, Econometrics and Finance (miscellaneous)";"Business, Management and Accounting; Economics, Econometrics and Finance" +31780;4100151532;"Advances in Experimental Social Psychology";book series;"00652601";"Academic Press Inc.";No;No;;-;109;10;30;2358;221;0;8,15;235,80;45,00;0;United States;Northern America;"Academic Press Inc.";"1964-1967, 1969-1970, 1972, 1974-1984, 1986-1992, 1994-2026";"Social Psychology";"Psychology" +31781;4000152118;"Advances in Financial Economics";book series;"15693732";"Emerald Group Publishing Ltd.";No;No;;-;16;8;7;235;8;0;0,00;29,38;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2005, 2007, 2009, 2011-2015, 2017-2018, 2022, 2025-2026";"Accounting; Economics, Econometrics and Finance (miscellaneous); Finance";"Business, Management and Accounting; Economics, Econometrics and Finance" +31782;4000152128;"Advances in Gender Research";book series;"15292126";"Emerald Group Publishing Ltd.";No;No;;-;19;28;34;816;21;0;0,38;29,14;100,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2022, 2024-2026";"Cultural Studies; Gender Studies";"Social Sciences" +31783;4100151509;"Advances in Group Processes";book series;"08826145";"Emerald Group Publishing Ltd.";No;No;;-;33;26;19;1703;12;0;0,63;65,50;47,37;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2021, 2023-2026";"Sociology and Political Science";"Social Sciences" +31784;87276;"Advances in Health Economics and Health Services Research";book series;"07312199";"Emerald Publishing";No;No;;-;22;9;0;462;0;0;0,00;51,33;0,00;0;United Kingdom;Western Europe;"Emerald Publishing";"1981-1985, 1987-1993, 1995, 2005-2010, 2012, 2014, 2017, 2025-2026";"Health Policy; Health (social science); Public Health, Environmental and Occupational Health";"Medicine; Social Sciences" +31785;4100151503;"Advances in Industrial and Labor Relations";book series;"07426186";"Emerald Group Publishing Ltd.";No;No;;-;13;8;0;375;0;0;0,00;46,88;60,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2006, 2009-2012, 2015-2016, 2018-2019, 2021, 2025-2026";"Economics, Econometrics and Finance (miscellaneous); Industrial Relations; Organizational Behavior and Human Resource Management; Political Science and International Relations";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +31786;5000158118;"Advances in International Management";book series;"15715027";"Emerald Group Publishing Ltd.";No;No;;-;26;5;0;79;0;0;0,00;15,80;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003-2005, 2007-2017, 2025-2026";"Business and International Management";"Business, Management and Accounting" +31787;4100151530;"Advances in International Marketing";book series;"14747979";"Emerald Group Publishing Ltd.";No;No;;-;20;17;0;589;0;0;0,00;34,65;33,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2004, 2006-2009, 2011-2013, 2015, 2025-2026";"Business and International Management; Marketing";"Business, Management and Accounting" +31788;4000152120;"Advances in Learning and Behavioral Disabilities";book series;"0735004X";"Emerald Group Publishing Ltd.";No;No;;-;16;41;11;1667;4;0;0,36;40,66;33,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001, 2003-2016, 2018, 2021, 2023, 2025-2026";"Education; Rehabilitation";"Medicine; Social Sciences" +31789;4100151517;"Advances in Librarianship";book series;"00652830";"Emerald Group Publishing Ltd.";No;No;;-;13;17;40;418;6;0;0,15;24,59;50,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2002, 2004-2006, 2008, 2010-2021, 2024-2026";"Library and Information Sciences";"Social Sciences" +31790;4000152101;"Advances in Library Administration and Organization";book series;"07320671";"Emerald Group Publishing Ltd.";No;No;;-;10;13;8;268;6;0;0,00;20,62;75,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2002, 2004-2012, 2014-2022, 2025-2026";"Library and Information Sciences; Public Administration";"Social Sciences" +31791;4100151511;"Advances in Management Accounting";book series;"14747871";"Emerald Group Publishing Ltd.";No;No;;-;20;35;23;1675;28;0;1,22;47,86;43,75;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003-2008, 2010-2021, 2023-2026";"Accounting; Business, Management and Accounting (miscellaneous)";"Business, Management and Accounting" +31792;16879;"Advances in Medical Sociology";book series;"18758053, 10576290";"Emerald Group Publishing Ltd.";No;No;;-;21;17;0;485;0;0;0,00;28,53;100,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1990, 2000, 2002, 2007-2008, 2010-2013, 2015-2017, 2019, 2021, 2025-2026";"Health (social science); Public Health, Environmental and Occupational Health";"Medicine; Social Sciences" +31793;4400151610;"Advances in Mergers and Acquisitions";book series;"1479361X";"Emerald Group Publishing Ltd.";No;No;;-;23;22;17;1076;16;0;0,30;48,91;40,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000, 2003-2004, 2006-2010, 2012-2022, 2024-2026";"Business and International Management";"Business, Management and Accounting" +31794;19602;"Advances in Microbial Physiology";book series;"00652911, 21625468";"Academic Press";No;No;;-;76;16;36;2824;183;0;5,68;176,50;34,88;0;United States;Northern America;"Academic Press";"1967-1969, 1971-1983, 1985-1988, 1990-2025";"Microbiology; Physiology";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology" +31795;11200153302;"Advances in Nonlinear Variational Inequalities (discontinued)";journal;"1092910X";"International Publications";No;No;;-;11;42;158;799;48;158;0,31;19,02;33,70;0;United States;Northern America;"International Publications";"2008-2025";"Analysis";"Mathematics" +31796;21100461944;"Advances in Positive Organizational Psychology";book series;"20464118, 2046410X";"Emerald Group Publishing Ltd.";No;No;;-;12;1;0;0;0;0;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2013, 2025";"Archeology; Organizational Behavior and Human Resource Management; Social Psychology";"Business, Management and Accounting; Psychology; Social Sciences" +31797;5800207509;"Advances in Program Evaluation";book series;"14747863";"Emerald Group Publishing Ltd.";No;No;;-;10;11;0;287;0;0;0,00;26,09;66,67;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2002, 2004, 2007-2008, 2012-2013, 2015, 2025-2026";"Education";"Social Sciences" +31798;4000152115;"Advances in Public Interest Accounting";book series;"10417060";"Emerald Group Publishing Ltd.";No;No;;-;13;7;0;0;0;0;0,00;0,00;100,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2002, 2004-2007, 2009-2010, 2013-2017, 2019-2020, 2025-2026";"Accounting; Sociology and Political Science";"Business, Management and Accounting; Social Sciences" +31799;4000152134;"Advances in Quantum Chemistry";book series;"00653276";"Academic Press Inc.";No;No;;-;47;28;76;1591;73;0;1,21;56,82;25,00;0;United States;Northern America;"Academic Press Inc.";"1964, 1966-1968, 1970, 1972-1975, 1977-1978, 1980-1982, 1985-1986, 1988-1992, 1994-2026";"Physical and Theoretical Chemistry";"Chemistry" +31800;21100461423;"Advances in Race and Ethnicity in Education";book series;"20512325, 20512317";"Emerald Group Publishing Ltd.";No;No;;-;9;1;32;0;10;0;0,24;0,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2013-2014, 2016-2017, 2020, 2022-2023, 2025-2026";"Anthropology; Education; Gender Studies; Sociology and Political Science";"Social Sciences" +31801;4000152114;"Advances in Research on Teaching";book series;"15694895";"Emerald Group Publishing Ltd.";No;No;;-;20;76;122;2008;16;0;0,13;26,42;75,51;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2003, 2006, 2010-2015, 2017-2021, 2023-2026";"Education";"Social Sciences" +31802;5000157601;"Advances in Special Education";book series;"02704013";"Emerald Group Publishing Ltd.";No;No;;-;12;44;15;1913;1;0;0,07;43,48;62,16;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001, 2003-2004, 2006, 2008-2016, 2018-2019, 2024-2026";"Clinical Psychology; Education";"Psychology; Social Sciences" +31803;4100151526;"Advances in Strategic Management";book series;"07423322";"Emerald Group Publishing Ltd.";No;No;;-;41;26;11;1522;1;0;0,09;58,54;100,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2018, 2020, 2023, 2025-2026";"Economics, Econometrics and Finance (miscellaneous); Strategy and Management";"Business, Management and Accounting; Economics, Econometrics and Finance" +31804;21100248847;"Advances in Sustainability and Environmental Justice";book series;"20515030";"Emarald Group Publishing Ltd";No;No;;-;11;9;0;198;0;0;0,00;22,00;0,00;0;United Kingdom;Western Europe;"Emarald Group Publishing Ltd";"2013-2017, 2025-2026";"Environmental Science (miscellaneous); Social Sciences (miscellaneous)";"Environmental Science; Social Sciences" +31805;4800153109;"Advances in Taxation";book series;"10587497";"Emerald Group Publishing Ltd.";No;No;;-;12;9;15;232;4;0;0,27;25,78;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2004, 2006, 2008, 2010, 2012, 2014-2021, 2023-2026";"Business, Management and Accounting (miscellaneous); Finance";"Business, Management and Accounting; Economics, Econometrics and Finance" +31806;4100151516;"Advances in the Economic Analysis of Participatory and Labor-Managed Firms";book series;"08853339";"Emerald Group Publishing Ltd.";No;No;;-;14;5;0;68;0;0;0,00;13,60;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003-2004, 2006-2007, 2010-2015, 2017-2018, 2025-2026";"Economics, Econometrics and Finance (miscellaneous); Industrial Relations";"Business, Management and Accounting; Economics, Econometrics and Finance" +31807;4100151518;"Advances in the Study of Entrepreneurship, Innovation, and Economic Growth";book series;"10484736";"Emerald Group Publishing Ltd.";No;No;;-;19;11;10;228;5;0;0,50;20,73;50,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2001, 2003-2005, 2007-2011, 2013-2018, 2024-2026";"Business, Management and Accounting (miscellaneous); Finance; Management of Technology and Innovation";"Business, Management and Accounting; Economics, Econometrics and Finance" +31808;74286;"AgBioForum (discontinued)";journal;"1522936X";"University of Missouri";Yes;No;;-;46;7;139;274;122;139;0,76;39,14;15,38;0;United States;Northern America;"University of Missouri";"1998-2025";"Agronomy and Crop Science; Biotechnology; Economics and Econometrics; Food Science";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Economics, Econometrics and Finance" +31809;38581;"Alternative Therapies in Health and Medicine (discontinued)";journal;"10786791";"InnoVision Communications";No;No;;-;82;220;1504;0;1500;1499;0,93;0,00;49,36;0;United States;Northern America;"InnoVision Communications";"1995-2026";"Complementary and Alternative Medicine; Medicine (miscellaneous)";"Medicine" +31810;27618;"American Journal of Health Behavior (discontinued)";journal;"10873244, 19457359";"PNG Publications";No;No;;-;82;40;340;1802;267;340;0,63;45,05;49,01;0;United States;Northern America;"PNG Publications";"1996-2025";"Health (social science); Public Health, Environmental and Occupational Health; Social Psychology";"Medicine; Psychology; Social Sciences" +31811;20458;"American Surgeon (discontinued)";journal;"15559823, 00031348";"SAGE Publications Inc.";No;No;;-;107;326;2394;56;2540;2275;1,02;0,17;39,87;0;United States;Northern America;"SAGE Publications Inc.";"1951-2026";"Medicine (miscellaneous); Surgery";"Medicine" +31812;21101260648;"Animal Science and Food Technology (discontinued)";journal;"27068331, 2706834X";"National University of Life and Environmental Sciences of Ukraine";Yes;No;;-;4;17;32;637;35;32;1,09;37,47;59,02;0;Ukraine;Eastern Europe;"National University of Life and Environmental Sciences of Ukraine";"2024-2025";"Animal Science and Zoology; Aquatic Science; Food Science";"Agricultural and Biological Sciences" +31813;145330;"Annales Academiae Scientiarum Fennicae Mathematica Dissertationes";book series;"12396303, 17982375";"Academia Scientiarum Fennica";No;No;;-;7;9;0;240;0;0;0,00;26,67;11,76;0;Finland;Western Europe;"Academia Scientiarum Fennica";"2004-2006, 2008-2011, 2013, 2015, 2017, 2025-2026";"Mathematics (miscellaneous)";"Mathematics" +31814;21100838563;"Annals of Applied Sport Science (discontinued)";journal;"24764981, 23224479";"";Yes;No;;-;15;110;178;2972;191;177;1,20;27,02;37,04;0;Iran;Middle East;"";"2017-2025";"Applied Psychology; Orthopedics and Sports Medicine; Physical Therapy, Sports Therapy and Rehabilitation; Social Sciences (miscellaneous); Tourism, Leisure and Hospitality Management";"Business, Management and Accounting; Health Professions; Medicine; Psychology; Social Sciences" +31815;21101321297;"Annual Conference for Protective Relay Engineers (United States)";journal;"24749745, 24749753";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;16;0;85;0;0;0,00;5,31;11,54;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Electrical and Electronic Engineering; Energy Engineering and Power Technology; Safety, Risk, Reliability and Quality";"Energy; Engineering" +31816;21101297254;"Annual Conference on Wireless On-demand Network Systems and Services, WONS";journal;"26884917, 26884909";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;23;0;420;0;0;0,00;18,26;22,08;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Information Systems; Modeling and Simulation; Safety, Risk, Reliability and Quality";"Computer Science; Engineering; Mathematics" +31817;21100264891;"Applications of Management Science";book series;"02768976";"Emerald Group Publishing Ltd.";No;No;;-;12;2;11;0;2;0;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2006, 2009-2010, 2012-2013, 2015, 2017-2018, 2020, 2022, 2025";"Business, Management and Accounting (miscellaneous)";"Business, Management and Accounting" +31818;21101183475;"Architectural Studies (discontinued)";journal;"2411801X, 27867374";"Lviv Polytechnic National University";Yes;No;;-;6;19;54;687;42;54;0,95;36,16;42,59;0;Ukraine;Eastern Europe;"Lviv Polytechnic National University";"2019-2025";"Architecture; Building and Construction; Civil and Structural Engineering; Urban Studies";"Engineering; Social Sciences" +31819;21101247624;"Architecture Image Studies (discontinued)";journal;"21848645";"AP2";Yes;No;;-;4;235;21;7190;26;20;1,24;30,60;38,61;0;Sweden;Western Europe;"AP2";"2024-2025";"Architecture";"Engineering" +31820;21101312815;"ARFTG Microwave Measurement Conference, ARFTG";journal;"27678776, 28361407";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;48;0;509;0;0;0,00;10,60;14,55;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Networks and Communications; Electrical and Electronic Engineering; Instrumentation; Signal Processing";"Computer Science; Engineering; Physics and Astronomy" +31821;25215;"Ars Combinatoria (discontinued)";journal;"03817032, 28175204";"Charles Babbage Research Centre";No;No;;-;43;24;80;428;20;80;0,25;17,83;26,19;0;Canada;Northern America;"Charles Babbage Research Centre";"1996-2021, 2023-2025";"Mathematics (miscellaneous)";"Mathematics" +31822;21100920036;"Artseduca (discontinued)";journal;"22540709";"Artseduca";Yes;No;;-;7;33;237;1277;141;227;0,67;38,70;34,48;0;Spain;Western Europe;"Artseduca";"2019-2025";"Arts and Humanities (miscellaneous); Education";"Arts and Humanities; Social Sciences" +31823;21101019719;"Asia in Transition";book series;"23648260, 23648252";"John Wiley & Sons Inc.";No;No;;-;10;113;87;4030;58;0;0,73;35,66;100,00;0;United States;Northern America;"John Wiley & Sons Inc.";"2016-2025";"Cultural Studies; Demography; Development; History; Political Science and International Relations; Renewable Energy, Sustainability and the Environment";"Arts and Humanities; Energy; Social Sciences" +31824;21100787661;"Asian Journal of Agriculture and Biology (discontinued)";journal;"23078553";"Asian Journal of Agriculture and Biology";Yes;No;;-;24;52;120;2573;906;120;8,91;49,48;35,17;0;Pakistan;Asiatic Region;"Asian Journal of Agriculture and Biology";"2013-2025";"Agricultural and Biological Sciences (miscellaneous); Biochemistry, Genetics and Molecular Biology (miscellaneous); Medicine (miscellaneous)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Medicine" +31825;21101277811;"Bold Visions in Educational Research";book series;"25428829, 18794262";"Brill Academic Publishers";No;No;;-;8;45;88;433;23;0;0,00;9,62;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2015-2022, 2024-2025";"Education";"Social Sciences" +31826;21100264815;"Bridging Tourism Theory and Practice";book series;"20421451, 20421443";"Emerald Group Publishing Ltd.";No;No;;-;16;20;21;483;2;0;0,10;24,15;14,29;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2010, 2012, 2014-2019, 2021, 2023-2026";"Social Sciences (miscellaneous); Tourism, Leisure and Hospitality Management";"Business, Management and Accounting; Social Sciences" +31827;21101292929;"Brill Series in Taiwan Studies";book series;"25893939";"Brill Academic Publishers";No;No;;-;1;15;15;1276;0;0;0,00;85,07;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2024-2025";"History; Social Sciences (miscellaneous); Visual Arts and Performing Arts";"Arts and Humanities; Social Sciences" +31828;21100426623;"Brill's Arab and Islamic Laws Series";book series;"18712894";"Brill Academic Publishers";No;No;;-;4;1;0;484;0;0;0,00;484,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2009, 2011-2013, 2015, 2017-2019, 2021, 2025";"Law";"Social Sciences" +31829;21101198703;"Brill's Companions to the Slavic World";book series;"24683965";"Brill Academic Publishers";No;No;;-;3;1;0;90;0;0;0,00;90,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017, 2020, 2025";"Cultural Studies; History";"Arts and Humanities; Social Sciences" +31830;21101180439;"Bulletin of Stomatology and Maxillofacial Surgery (discontinued)";journal;"1829006X";"";No;No;;-;2;302;156;9069;31;156;0,22;30,03;47,44;0;Armenia;Eastern Europe;"";"2019-2020, 2022-2025";"Dental Hygiene; Dentistry (miscellaneous); Oral Surgery; Periodontics";"Dentistry" +31831;21101176860;"Caribbean Series";book series;"09219781";"Brill Academic Publishers";No;No;;-;3;1;0;296;0;0;0,00;296,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1993, 1995, 1998-1999, 2001, 2003, 2006, 2009-2015, 2019-2021, 2025";"Anthropology; Cultural Studies; History; Linguistics and Language";"Arts and Humanities; Social Sciences" +31832;21101321304;"Cell Biomaterials";journal;"30505623";"Cell Press";No;No;;-;8;124;0;8685;0;0;0,00;70,04;39,40;0;United States;Northern America;"Cell Press";"2025-2026";"Biomaterials; Biomedical Engineering; Chemistry (miscellaneous)";"Chemistry; Engineering; Materials Science" +31833;13901;"Cellular and Molecular Biology (discontinued)";journal;"1165158X, 01455680";"Cellular and Molecular Biology Association";No;No;;-;81;186;1298;4852;1877;1297;1,43;26,09;44,46;0;France;Western Europe;"Cellular and Molecular Biology Association";"1977-2025";"Biochemistry; Cell Biology; Molecular Biology";"Biochemistry, Genetics and Molecular Biology" +31834;21100198926;"CFD Letters (discontinued)";journal;"21801363";"Semarak Ilmu Publishing";Yes;No;;-;29;135;376;4559;864;376;2,38;33,77;25,71;0;Malaysia;Asiatic Region;"Semarak Ilmu Publishing";"2009-2014, 2018-2025";"Fluid Flow and Transfer Processes; Modeling and Simulation";"Chemical Engineering; Mathematics" +31835;21101375569;"Challenge Journal of Structural Mechanics";journal;"21498024";"Tulpar Academic Publishing";No;No;;-;2;20;0;663;0;0;0,00;33,15;11,63;0;Turkey;Middle East;"Tulpar Academic Publishing";"2025";"Arts and Humanities (miscellaneous)";"Arts and Humanities" +31836;21101373420;"China Accounting and Finance Review";journal;"23073055";"Emerald Publishing";Yes;No;;-;2;20;0;1504;0;0;0,00;75,20;40,74;0;United Kingdom;Western Europe;"Emerald Publishing";"2025";"Accounting; Business, Management and Accounting (miscellaneous); Economics, Econometrics and Finance (miscellaneous); Finance";"Business, Management and Accounting; Economics, Econometrics and Finance" +31837;12561;"Chinese Law and Government";journal;"19447051, 00094609";"Routledge";No;No;;-;6;2;0;62;0;0;0,00;31,00;50,00;0;United States;Northern America;"Routledge";"1968-1995, 2002-2020, 2025-2026";"Law; Sociology and Political Science";"Social Sciences" +31838;17700154910;"Cineforum";journal;"00097039";"Federazione Italiana dei Cineforum";No;No;;-;1;1;0;21;0;0;0,00;21,00;0,00;0;Italy;Western Europe;"Federazione Italiana dei Cineforum";"2008-2020, 2025";"Visual Arts and Performing Arts";"Arts and Humanities" +31839;21101303337;"Clinical and Translational Neuroscience";journal;"2514183X";"Multidisciplinary Digital Publishing Institute (MDPI)";Yes;No;;-;1;43;0;2091;0;0;0,00;48,63;40,76;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2021, 2025";"Medicine (miscellaneous); Neuroscience (miscellaneous); Pharmacology, Toxicology and Pharmaceutics (miscellaneous)";"Medicine; Neuroscience; Pharmacology, Toxicology and Pharmaceutics" +31840;21100872344;"Cognitive Science and Technology";book series;"21953988, 21953996";"Springer International Publishing AG";No;No;;-;13;176;422;2588;301;0;0,78;14,70;47,95;0;Switzerland;Western Europe;"Springer International Publishing AG";"2014-2023, 2025-2026";"Artificial Intelligence; Cognitive Neuroscience; Computer Science Applications; Human-Computer Interaction";"Computer Science; Neuroscience" +31841;11100153313;"Communications on Applied Nonlinear Analysis (discontinued)";journal;"1074133X";"International Publications";No;No;;-;17;129;315;3178;172;315;0,56;24,64;36,40;0;United States;Northern America;"International Publications";"2008-2025";"Analysis; Applied Mathematics";"Mathematics" +31842;21100264816;"Community, Environment and Disaster Risk Management";book series;"20407270, 20407262";"Emerald Group Publishing Ltd.";No;No;;-;18;66;10;1170;6;0;0,00;17,73;42,86;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2009-2014, 2017-2018, 2020-2022, 2025-2026";"Environmental Science (miscellaneous); Management, Monitoring, Policy and Law; Safety, Risk, Reliability and Quality";"Engineering; Environmental Science" +31843;17651;"Comparative Social Research";book series;"01956310";"Emerald Group Publishing Ltd.";No;No;;-;21;34;27;1543;4;0;0,15;45,38;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1980-1981, 1984, 1999-2000, 2002-2003, 2006-2013, 2015-2016, 2018-2019, 2021, 2024-2026";"Sociology and Political Science";"Social Sciences" +31844;21101339662;"Composites and Advanced Materials";journal;"26349833";"SAGE Publications Ltd";No;No;;-;32;6;0;304;0;0;0,00;50,67;16,67;0;United Kingdom;Western Europe;"SAGE Publications Ltd";"2025-2026";"Biomaterials; Materials Science (miscellaneous); Surfaces, Coatings and Films";"Materials Science" +31845;4700151607;"Computer-Aided Design and Applications (discontinued)";journal;"16864360";"U-turn Press LLC";No;No;;-;45;45;1166;834;836;1166;0,61;18,53;37,50;0;United States;Northern America;"U-turn Press LLC";"2004-2025";"Computational Mathematics; Computational Mechanics; Computer Graphics and Computer-Aided Design";"Computer Science; Engineering; Mathematics" +31846;21100291862;"Conference on Control and Fault-Tolerant Systems, SysTol";conference and proceedings;"21621195, 21621209";"IEEE Computer Society";No;No;;-;19;71;0;1507;0;0;0,00;21,23;20,69;0;United States;Northern America;"IEEE Computer Society";"2013, 2016, 2019, 2021, 2025";"Computer Science Applications; Control and Systems Engineering; Hardware and Architecture; Software";"Computer Science; Engineering" +31847;21100455735;"Constitutional Law Library";book series;"18714110";"Brill Academic Publishers";No;No;;-;5;20;0;1306;0;0;0,00;65,30;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006, 2008, 2013, 2016, 2025";"Law";"Social Sciences" +31848;21100417364;"Contemporary Issues in Entrepreneurship Research";book series;"20407246, 20407254";"Emerald Group Publishing Ltd.";No;No;;-;15;42;75;1963;57;0;0,64;46,74;42,42;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010, 2012, 2014-2019, 2021-2026";"Business and International Management; Management of Technology and Innovation; Strategy and Management";"Business, Management and Accounting" +31849;21101125517;"Contemporary Mathematics (Singapore) (discontinued)";journal;"27051064, 27051056";"Universal Wiser Publisher";No;No;;-;17;350;477;11429;771;477;1,65;32,65;29,23;0;Singapore;Asiatic Region;"Universal Wiser Publisher";"2019-2025";"Applied Mathematics; Discrete Mathematics and Combinatorics; Geometry and Topology; Mathematical Physics";"Mathematics" +31850;5600155292;"Contemporary Perspectives in Family Research";book series;"15303535";"Emerald Group Publishing Ltd.";No;No;;-;12;51;81;2193;34;0;0,39;43,00;33,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003, 2014-2026";"Developmental and Educational Psychology; Social Psychology; Sociology and Political Science";"Psychology; Social Sciences" +31851;5600152815;"Contributions to Conflict Management, Peace Economics and Development";book series;"15728323";"Emerald Group Publishing Ltd.";No;No;;-;7;131;17;2890;1;0;0,00;22,06;20,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2004-2005, 2007-2019, 2021-2022, 2025-2026";"Business and International Management; Development; Political Science and International Relations; Sociology and Political Science; Strategy and Management";"Business, Management and Accounting; Social Sciences" +31852;21100296639;"Contributions to Economic Analysis";book series;"05738555";"Emerald Group Publishing Ltd.";No;No;;-;12;45;22;922;3;0;0,15;20,49;100,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1989, 2004, 2006-2011, 2014, 2018, 2021-2022, 2024-2026";"Economics, Econometrics and Finance (miscellaneous)";"Economics, Econometrics and Finance" +31853;21101347040;"Contributions to Tobacco and Nicotine Research";journal;"27199509";"";No;No;;-;20;7;0;361;0;0;0,00;51,57;37,14;0;Germany;Western Europe;"";"2025";"Chemical Engineering (miscellaneous); Physical and Theoretical Chemistry";"Chemical Engineering; Chemistry" +31854;21101281059;"Critical Media Literacies Series";book series;"26664097";"Brill Academic Publishers";No;No;;-;3;1;7;48;1;0;0,00;48,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2018, 2020-2022, 2025";"Education";"Social Sciences" +31855;21100417256;"Critical Perspectives on International Public Sector Management";book series;"20457944, 20457952";"Emerald Group Publishing Ltd.";No;No;;-;9;3;0;0;0;0;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2012, 2014-2016, 2018, 2025-2026";"Public Administration; Sociology and Political Science";"Social Sciences" +31856;21100297814;"Critical Studies on Corporate Responsibility, Governance and Sustainability";book series;"20439059, 20439067";"Emerald Group Publishing Ltd.";No;No;;-;14;18;11;452;6;0;0,55;25,11;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2010-2016, 2018, 2020-2021, 2023, 2025-2026";"Business, Management and Accounting (miscellaneous)";"Business, Management and Accounting" +31857;21101347336;"Cuadernos de Filologia Italiana";journal;"11339527, 19882394";"Universidad Complutense Madrid";Yes;No;;-;1;16;0;723;0;0;0,00;45,19;58,82;0;Spain;Western Europe;"Universidad Complutense Madrid";"2025";"Medicine (miscellaneous)";"Medicine" +31858;19700182214;"Cultura. International Journal of Philosophy of Culture and Axiology (discontinued)";journal;"15841057, 20655002";"Cultura";No;No;;-;11;144;174;4220;74;174;0,47;29,31;43,54;0;United States;Northern America;"Cultura";"2009-2026";"Cultural Studies; Philosophy";"Arts and Humanities; Social Sciences" +31859;21101053655;"Current Issues in Linguistic Theory";book series;"03040763";"John Benjamins Publishing Company";No;No;;-;6;1;97;376;18;0;0,17;376,00;0,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2019-2025";"Linguistics and Language";"Social Sciences" +31860;14241;"Current Perspectives in Social Theory";book series;"02781204";"Emerald Group Publishing Ltd.";No;No;;-;11;29;27;1596;2;0;0,07;55,03;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2002-2003, 2005-2006, 2008-2016, 2019, 2022-2023, 2025-2026";"Sociology and Political Science";"Social Sciences" +31861;21100265006;"Cutting-Edge Technologies in Higher Education";book series;"20449968, 20449976";"Emerald Group Publishing Ltd.";No;No;;-;17;25;0;733;0;0;0,00;29,32;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2013, 2025-2026";"Communication; Education";"Social Sciences" +31862;21101176015;"Data and Metadata (discontinued)";journal;"29534917";"";No;No;;-;24;259;425;9956;680;424;1,64;38,44;32,82;0;Argentina;Latin America;"";"2022-2025";"Computer Science (miscellaneous); Health Information Management; Information Systems; Information Systems and Management";"Computer Science; Decision Sciences; Health Professions" +31863;21101250417;"De Gruyter Series in Probability and Stochastics";book series;"2512899X, 25129007";"Walter de Gruyter GmbH";No;No;;-;1;2;3;54;0;0;0,00;27,00;50,00;0;Germany;Western Europe;"Walter de Gruyter GmbH";"2021, 2023-2025";"Applied Mathematics; Statistics and Probability";"Mathematics" +31864;21100461340;"Dialogues in Critical Management Studies";book series;"20466080, 20466072";"Emerald Group Publishing Ltd.";No;No;;-;11;20;0;237;0;0;0,00;11,85;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011, 2013, 2017, 2020, 2025-2026";"Business, Management and Accounting (miscellaneous)";"Business, Management and Accounting" +31865;5800192602;"Diplomatic Studies";book series;"18728863";"Brill Academic Publishers";No;No;;-;10;1;28;821;14;0;0,22;821,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2011, 2013, 2015, 2017-2020, 2022, 2024-2026";"Law; Political Science and International Relations";"Social Sciences" +31866;21100266711;"Diversity in Higher Education";book series;"14793644";"Emerald Group Publishing Ltd.";No;No;;-;15;36;9;583;2;0;0,22;16,19;66,67;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2005, 2009, 2011-2016, 2018-2019, 2021, 2024-2026";"Education";"Social Sciences" +31867;21101259011;"Diyala Journal of Medicine (discontinued)";journal;"22199764, 26178982";"";Yes;No;;-;5;21;179;664;76;179;0,45;31,62;60,47;0;Iraq;Middle East;"";"2020-2025";"Anatomy; Biochemistry; Microbiology (medical); Pulmonary and Respiratory Medicine";"Biochemistry, Genetics and Molecular Biology; Medicine" +31868;21101181926;"Dragoman (discontinued)";journal;"22951210";"";No;No;;-;3;102;46;2529;21;43;0,53;24,79;57,02;0;Belgium;Western Europe;"";"2019-2025";"Arts and Humanities (miscellaneous); Linguistics and Language";"Arts and Humanities; Social Sciences" +31869;21101214786;"Economics of Development (discontinued)";journal;"23046155, 16831942";"Simon Kuznets Kharkiv National University of Economics";Yes;No;;-;10;21;74;860;167;74;2,80;40,95;64,63;0;Ukraine;Eastern Europe;"Simon Kuznets Kharkiv National University of Economics";"2021-2025";"Business and International Management; Economics, Econometrics and Finance (miscellaneous); Marketing";"Business, Management and Accounting; Economics, Econometrics and Finance" +31870;21101041842;"Educational Process: International Journal (discontinued)";journal;"25648020, 21470901";"Universitepark";Yes;No;;-;18;553;85;28323;451;84;6,49;51,22;43,23;0;Turkey;Middle East;"Universitepark";"2019-2025";"Education";"Social Sciences" +31871;19500157110;"Educational Sciences: Theory and Practice (discontinued)";journal;"26305984";"Edam";Yes;No;;-;20;35;73;1341;41;73;0,45;38,31;64,00;0;Turkey;Middle East;"Edam";"2019-2026";"Education";"Social Sciences" +31872;21101392674;"EES Batteries";journal;"30334071";"Royal Society of Chemistry";No;No;;-;0;1;0;90;0;0;0,00;90,00;25,00;0;United Kingdom;Western Europe;"Royal Society of Chemistry";"2025-2026";"Electrochemistry; Energy (miscellaneous); Environmental Chemistry; Materials Chemistry";"Chemistry; Energy; Environmental Science; Materials Science" +31873;21101218109;"Ekonomika APK (discontinued)";journal;"24132322, 22211055";"National Scientific Centre Institute of Agrarian Economics";Yes;No;;-;8;24;93;1035;128;93;1,77;43,13;56,57;0;Ukraine;Eastern Europe;"National Scientific Centre Institute of Agrarian Economics";"2020-2025";"Agricultural and Biological Sciences (miscellaneous); Business, Management and Accounting (miscellaneous); Economics, Econometrics and Finance (miscellaneous); Food Science";"Agricultural and Biological Sciences; Business, Management and Accounting; Economics, Econometrics and Finance" +31874;21101198448;"Emergence of Natural History";book series;"24523283";"Brill Academic Publishers";No;No;;-;7;10;11;1287;2;0;0,00;128,70;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2018, 2022, 2025-2026";"History and Philosophy of Science";"Arts and Humanities" +31875;83645;"Ergebnisse der Physiologie Biologischen Chemie und Experimentellen Pharmakologie";journal;"00802042";"Springer Verlag";No;No;;-;19;23;35;761;164;0;6,00;33,09;0,00;0;Germany;Western Europe;"Springer Verlag";"1902-1914, 1916, 1918-1926, 1928-1941, 1944, 1950, 1952, 1955, 1957, 1959, 1961, 1963-1974, 1986-1989, 2018-2023, 2025";"Biochemistry; Medicine (miscellaneous); Pharmacology; Physiology; Physiology (medical)";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +31876;21100896854;"Eurasian Journal of Applied Linguistics (discontinued)";journal;"21491135";"Hacettepe University";Yes;No;;-;17;48;212;1990;215;212;1,06;41,46;73,08;0;Turkey;Middle East;"Hacettepe University";"2018-2025";"Education; Linguistics and Language; Social Psychology";"Psychology; Social Sciences" +31877;11800154546;"Eurasian Journal of Educational Research (discontinued)";journal;"1302597X, 25288911";"Ani Publishing";Yes;No;;-;33;15;348;628;352;348;0,86;41,87;48,48;0;Turkey;Middle East;"Ani Publishing";"2008-2025";"Education";"Social Sciences" +31878;21100866201;"European Journal for Philosophy of Religion (discontinued)";journal;"16898311";"";No;No;;-;16;54;261;1385;86;261;0,26;25,65;33,87;0;United Kingdom;Western Europe;"";"2009-2025";"Philosophy; Religious Studies";"Arts and Humanities" +31879;21100466202;"European Journal of Clinical Pharmacy";journal;"2385409X";"Rasgo Editorial S.A.";No;No;;-;6;1;0;17;0;0;0,00;17,00;0,00;0;Spain;Western Europe;"Rasgo Editorial S.A.";"2016-2021, 2025";"Pharmacology (medical); Pharmacy";"Health Professions; Medicine" +31880;13221;"European Journal of Medical Research (discontinued)";journal;"2047783X, 09492321";"BioMed Central Ltd";Yes;No;;-;78;174;1543;0;7128;1534;4,74;0,00;41,83;1;United Kingdom;Western Europe;"BioMed Central Ltd";"1995-2025";"Medicine (miscellaneous)";"Medicine" +31881;21100981084;"European Journal of Pure and Applied Mathematics (discontinued)";journal;"13075543";"New York Business Global";Yes;No;;-;23;588;618;17611;1129;617;1,96;29,95;32,14;0;United States;Northern America;"New York Business Global";"2019-2025";"Algebra and Number Theory; Applied Mathematics; Geometry and Topology; Numerical Analysis; Statistics and Probability; Theoretical Computer Science";"Mathematics" +31882;21101023975;"European Public and Social Innovation Review (discontinued)";journal;"25299824";"HISIN (History of Information Systems)";Yes;Yes;;-;9;669;784;20600;371;771;0,47;30,79;56,34;0;Spain;Western Europe;"HISIN (History of Information Systems)";"2019-2026";"Development; Economics, Econometrics and Finance (miscellaneous); Sociology and Political Science";"Economics, Econometrics and Finance; Social Sciences" +31883;13223;"European Review for Medical and Pharmacological Sciences (discontinued)";journal;"11283602, 22840729";"Verduci Editore s.r.l";Yes;No;;-;103;11;2918;0;5472;2875;1,84;0,00;36,71;0;Italy;Western Europe;"Verduci Editore s.r.l";"1979-2025";"Medicine (miscellaneous); Pharmacology (medical)";"Medicine" +31884;21101198704;"Evropsky Politicky a Pravni Diskurz (discontinued)";journal;"23365447";"ENIGMA CORPORATION, spol. s r.o.";No;No;;-;3;9;98;321;18;98;0,29;35,67;40,74;0;Czech Republic;Eastern Europe;"ENIGMA CORPORATION, spol. s r.o.";"2020-2025";"Communication; Law; Political Science and International Relations";"Social Sciences" +31885;21101322182;"Fiddlehead";journal;"00150630";"University of New Brunswick";No;No;;-;0;63;123;44;0;0;0,00;0,70;50,00;0;Canada;Northern America;"University of New Brunswick";"2021-2026";"Arts and Humanities (miscellaneous); Literature and Literary Theory";"Arts and Humanities" +31886;21101227928;"Filologie Medievali e Moderne: Serie Occidentale";book series;"2610945X, 26109441";"Fondazione Universita Ca Foscari";No;No;;-;3;11;2;659;1;0;0,50;59,91;0,00;0;Italy;Western Europe;"Fondazione Universita Ca Foscari";"2019-2021, 2023, 2025";"History; Linguistics and Language; Literature and Literary Theory; Philosophy";"Arts and Humanities; Social Sciences" +31887;21101163371;"Financial and Credit Activity: Problems of Theory and Practice (discontinued)";journal;"23064994, 23108770";"Fintech Aliance LLC";Yes;No;;-;17;171;736;5927;838;736;1,26;34,66;55,95;0;Ukraine;Eastern Europe;"Fintech Aliance LLC";"2022-2025";"Accounting; Business, Management and Accounting (miscellaneous); Economics and Econometrics; Finance";"Business, Management and Accounting; Economics, Econometrics and Finance" +31888;16355;"Fizjoterapia Polska (discontinued)";journal;"16420136, 20844328";"DJ Studio";No;No;;-;13;59;506;1991;150;506;0,32;33,75;41,42;0;Poland;Eastern Europe;"DJ Studio";"2002-2003, 2005-2012, 2014-2025";"Physical Therapy, Sports Therapy and Rehabilitation";"Health Professions" +31889;21101317051;"Fluid Machinery";journal;"10050329";"Editorial Department of Fluid Machinery";No;No;;-;5;49;0;1063;0;0;0,00;21,69;34,45;0;China;Asiatic Region;"Editorial Department of Fluid Machinery";"2021, 2025";"Control and Systems Engineering; Energy Engineering and Power Technology; Industrial and Manufacturing Engineering; Mechanical Engineering";"Energy; Engineering" +31890;21101047719;"Fonseca Journal of Communication (discontinued)";journal;"21729077";"Ediciones Universidad de Salamanca";Yes;Yes;;-;9;18;113;779;62;111;0,29;43,28;40,00;0;Spain;Western Europe;"Ediciones Universidad de Salamanca";"2015, 2019-2025";"Communication; Linguistics and Language; Social Sciences (miscellaneous)";"Social Sciences" +31891;21101390633;"Food Agricultural Sciences and Technology";journal;"2822101X, 28221001";"Division of Research Facilitation and Dissemination, Mahasarakham University";No;No;;-;0;14;0;537;0;0;0,00;38,36;46,67;0;Thailand;Asiatic Region;"Division of Research Facilitation and Dissemination, Mahasarakham University";"2025";"Agricultural and Biological Sciences (miscellaneous); Agronomy and Crop Science; Animal Science and Zoology; Applied Microbiology and Biotechnology; Aquatic Science; Food Science; Soil Science";"Agricultural and Biological Sciences; Immunology and Microbiology" +31892;21101081861;"Forum for Linguistic Studies (discontinued)";journal;"27050602, 27050610";"Bilingual Publishing Group";No;No;;-;13;549;388;21716;604;385;1,60;39,56;57,97;0;Singapore;Asiatic Region;"Bilingual Publishing Group";"2019-2025";"Education; Linguistics and Language";"Social Sciences" +31893;19400158378;"Foundations and Trends in Microeconomics";journal;"15479846, 15479854";"Now Publishers Inc";No;No;;-;22;1;0;101;0;0;0,00;101,00;0,00;0;United States;Northern America;"Now Publishers Inc";"2005-2015, 2017-2018, 2021, 2025";"Economics and Econometrics";"Economics, Econometrics and Finance" +31894;21101243394;"Foundations of Materials Science and Engineering";book series;"22978143, 2297816X";"Trans Tech Publications Ltd";No;No;;-;1;2;18;288;16;0;1,00;144,00;0,00;0;Switzerland;Western Europe;"Trans Tech Publications Ltd";"2019-2025";"Engineering (miscellaneous); Materials Science (miscellaneous); Mechanical Engineering; Mechanics of Materials";"Engineering; Materials Science" +31895;21100298203;"Frontiers of Economics and Globalization";book series;"15748715";"Emerald Group Publishing Ltd.";No;No;;-;18;24;0;450;0;0;0,00;18,75;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2006, 2008-2011, 2013-2017, 2025-2026";"Economics, Econometrics and Finance (miscellaneous)";"Economics, Econometrics and Finance" +31896;21101134649;"Fusion: Practice and Applications (discontinued)";journal;"27700070, 26924048";"American Scientific Publishing Group (ASPG)";No;No;;-;18;151;238;4337;559;238;2,25;28,72;36,21;0;United States;Northern America;"American Scientific Publishing Group (ASPG)";"2020-2025";"Computer Networks and Communications; Computer Science Applications; Computer Science (miscellaneous); Information Systems";"Computer Science" +31897;21100787827;"Future of Food: Journal on Food, Agriculture and Society (discontinued)";journal;"2197411X";"University of Kassel";Yes;No;;-;13;5;81;241;65;81;0,73;48,20;52,63;0;Germany;Western Europe;"University of Kassel";"2013-2025";"Agronomy and Crop Science; Ecology; Food Science";"Agricultural and Biological Sciences; Environmental Science" +31898;22172;"Genetics Research (discontinued)";journal;"00166723, 14695073";"John Wiley and Sons Inc";Yes;No;;-;77;25;398;0;1133;398;2,09;0,00;38,73;0;United Kingdom;Western Europe;"John Wiley and Sons Inc";"1960-2026";"Genetics; Medicine (miscellaneous)";"Biochemistry, Genetics and Molecular Biology; Medicine" +31899;28064;"Geographical Science";journal;"10000690";"Science Press";Yes;No;;-;4;220;0;8316;0;0;0,00;37,80;42,04;0;China;Asiatic Region;"Science Press";"1981-1988, 1992, 1997, 2025-2026";"Earth-Surface Processes; Geography, Planning and Development; Nature and Landscape Conservation; Transportation";"Earth and Planetary Sciences; Environmental Science; Social Sciences" +31900;21101371012;"Geographies of the Anthropocene";book series;"26113171";"Il Sileno Edizioni";No;No;;-;2;11;73;478;4;0;0,06;43,45;0,00;0;Italy;Western Europe;"Il Sileno Edizioni";"2021-2025";"Anthropology; Geography, Planning and Development; Global and Planetary Change; Social Sciences (miscellaneous)";"Environmental Science; Social Sciences" +31901;5000160404;"Geological Society Engineering Geology Special Publication";book series;"02679914";"Geological Society of London";No;No;;-;21;27;0;1793;0;0;0,00;66,41;17,95;0;United Kingdom;Western Europe;"Geological Society of London";"1986-1988, 1990-1991, 1995-1999, 2001-2002, 2004, 2006, 2009-2013, 2016-2017, 2020, 2025";"Geotechnical Engineering and Engineering Geology";"Earth and Planetary Sciences" +31902;21101067743;"Geotechnical Engineering Education";conference and proceedings;"27327256";"International Society for Soil Mechanics and Geotechnical Engineering";No;No;;-;3;47;0;792;0;0;0,00;16,85;38,95;0;United Kingdom;Western Europe;"International Society for Soil Mechanics and Geotechnical Engineering";"2020, 2025";"Civil and Structural Engineering; Education";"Engineering; Social Sciences" +31903;21100426107;"Global Economic History Series";book series;"18725155";"Brill Academic Publishers";No;No;;-;11;2;0;96;0;0;0,00;48,00;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009, 2011, 2013, 2016-2019, 2021, 2025";"Economics, Econometrics and Finance (miscellaneous); History";"Arts and Humanities; Economics, Econometrics and Finance" +31904;21101283222;"Global Education in the 21st Century";book series;"25429728, 25429736";"Brill Academic Publishers";No;No;;-;9;29;16;2514;4;0;0,25;86,69;30,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2016, 2019-2020, 2024-2026";"Education";"Social Sciences" +31905;21101038816;"Grand Challenges in Biology and Biotechnology";book series;"23671017, 23671025";"Springer Science and Business Media B.V.";No;No;;-;19;33;9;3984;6;0;0,67;120,73;50,00;0;Netherlands;Western Europe;"Springer Science and Business Media B.V.";"2016, 2018-2020, 2023, 2025";"Applied Microbiology and Biotechnology; Bioengineering; Biotechnology";"Biochemistry, Genetics and Molecular Biology; Chemical Engineering; Immunology and Microbiology" +31906;21101226632;"Grassroots Journal of Natural Resources (discontinued)";journal;"25816853";"Grassroots Institute";No;No;;-;5;45;109;2040;103;108;1,07;45,33;50,00;0;Canada;Northern America;"Grassroots Institute";"2022-2025";"Agricultural and Biological Sciences (miscellaneous); Ecology; Environmental Chemistry; Environmental Engineering; Environmental Science (miscellaneous); Law";"Agricultural and Biological Sciences; Environmental Science; Social Sciences" +31907;19700180554;"Handbook of Labor Economics";book series;"15734463";"Elsevier B.V.";No;No;;-;47;10;11;1909;33;0;3,00;190,90;12,00;3;Netherlands;Western Europe;"Elsevier B.V.";"1986, 1999, 2011, 2024-2025";"Business and International Management; Economics and Econometrics; Economics, Econometrics and Finance (miscellaneous); Organizational Behavior and Human Resource Management";"Business, Management and Accounting; Economics, Econometrics and Finance" +31908;17700155020;"Handbook of Regional and Urban Economics";book series;"15740080";"Elsevier B.V.";No;No;;-;42;11;0;2263;0;0;0,00;205,73;27,27;0;Netherlands;Western Europe;"Elsevier B.V.";"1987, 1999, 2004, 2015, 2025";"Economics and Econometrics; Geography, Planning and Development; Urban Studies";"Economics, Econometrics and Finance; Social Sciences" +31909;21101277752;"Health Leadership and Quality of Life (discontinued)";journal;"30088488";"";No;No;;-;20;145;552;4088;68;550;0,12;28,19;47,54;0;Argentina;Latin America;"";"2022-2025";"Health Policy; Management Science and Operations Research; Public Health, Environmental and Occupational Health; Strategy and Management";"Business, Management and Accounting; Decision Sciences; Medicine" +31910;145402;"Heroin Addiction and Related Clinical Problems (discontinued)";journal;"25314122, 15921638";"Pacini Editore Srl";No;No;;-;21;24;132;989;54;128;0,41;41,21;45,56;1;Italy;Western Europe;"Pacini Editore Srl";"2005-2025";"Medicine (miscellaneous); Psychiatry and Mental Health";"Medicine" +31911;21101289827;"Higher Education: Linking Research, Policy and Practice";book series;"26667789";"Brill Academic Publishers";No;No;;-;4;15;39;558;14;0;0,24;37,20;66,67;0;Netherlands;Western Europe;"Brill Academic Publishers";"2020-2025";"Education";"Social Sciences" +31912;21100407161;"Human-Animal Studies";book series;"15734226";"Brill Academic Publishers";No;No;;-;17;1;32;1357;9;0;0,41;1357,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2006-2013, 2017-2020, 2022-2023, 2025";"Animal Science and Zoology; Anthropology; Experimental and Cognitive Psychology";"Agricultural and Biological Sciences; Psychology; Social Sciences" +31913;21101393335;"IEEE Colombian Conference on Applications of Computational Intelligence, ColCACI";journal;"27693643, 27693651";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;31;0;650;0;0;0,00;20,97;21,88;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Control and Optimization";"Computer Science; Mathematics" +31914;21101320220;"IEEE Conference on Technologies for Sustainability, SusTech";journal;"26406810, 26406829";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;112;0;2560;0;0;0,00;22,86;27,89;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Control and Optimization; Energy Engineering and Power Technology; Renewable Energy, Sustainability and the Environment";"Energy; Mathematics" +31915;21101393925;"IEEE Electric Ship Technologies Symposium, ESTS";journal;"28363566, 27683508";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;81;0;1363;0;0;0,00;16,83;14,29;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Automotive Engineering; Control and Optimization; Electrical and Electronic Engineering; Energy Engineering and Power Technology";"Energy; Engineering; Mathematics" +31916;21101393609;"IEEE European Technology and Engineering Management Summit, E-TEMS";journal;"28367588";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;61;0;1437;0;0;0,00;23,56;40,84;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Automotive Engineering; Computer Networks and Communications; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Management of Technology and Innovation; Sociology and Political Science; Transportation";"Business, Management and Accounting; Computer Science; Energy; Engineering; Social Sciences" +31917;21101297248;"IEEE Information Technology and Mechatronics Engineering Conference, ITOEC";journal;"2693308X, 2693289X";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;3;304;0;3603;0;0;0,00;11,85;32,65;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Computer Vision and Pattern Recognition; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Health Informatics; Information Systems";"Computer Science; Energy; Engineering; Medicine" +31918;21101297185;"IEEE International Conference on Autonomous Robot Systems and Competitions, ICARSC";journal;"25739360, 25739387";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;34;0;567;0;0;0,00;16,68;16,19;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Control and Optimization; Human-Computer Interaction";"Computer Science; Mathematics" +31919;21101393708;"IEEE International Conference on Intelligence and Security Informatics, ISI";journal;"28376617";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;29;0;683;0;0;0,00;23,55;36,59;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Computer Science Applications; Information Systems; Safety, Risk, Reliability and Quality";"Computer Science; Engineering" +31920;21101315243;"IEEE International Conference on Pervasive Computing and Communications Workshops, PerCom Workshops";journal;"28365348, 27668576";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;152;0;2602;0;0;0,00;17,12;27,61;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Computer Science Applications; Health Informatics; Information Systems; Information Systems and Management; Modeling and Simulation; Safety, Risk, Reliability and Quality";"Computer Science; Decision Sciences; Engineering; Mathematics; Medicine" +31921;21101321199;"IEEE International Symposium on Medical Measurements and Applications, MeMeA";journal;"28375882, 28375874";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;153;0;3210;0;0;0,00;20,98;36,58;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Biomedical Engineering; Computer Science Applications; Instrumentation; Signal Processing";"Computer Science; Engineering; Physics and Astronomy" +31922;21101392663;"IEEE International Symposium on Performance Analysis of Systems and Software/ISPASS";journal;"29949513, 27660486";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;51;0;1806;0;0;0,00;35,41;20,42;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Hardware and Architecture; Information Systems; Safety, Risk, Reliability and Quality; Software";"Computer Science; Engineering" +31923;21101393707;"IEEE International Workshop on Applied Measurements for Power Systems Proceedings, AMPS";journal;"24731315";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;37;0;640;0;0;0,00;17,30;20,93;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Instrumentation";"Computer Science; Energy; Engineering; Physics and Astronomy" +31924;21101393612;"IEEE Portuguese Meeting on Bioengineering, ENBENG";journal;"2771487X";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;0;45;0;611;0;0;0,00;13,58;37,84;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Biomedical Engineering; Instrumentation; Radiology, Nuclear Medicine and Imaging";"Engineering; Medicine; Physics and Astronomy" +31925;21101392658;"IEEE Sensors Applications Symposium, SAS";journal;"29949300, 27663078";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;106;0;2128;0;0;0,00;20,08;24,50;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Computer Vision and Pattern Recognition; Instrumentation";"Computer Science; Physics and Astronomy" +31926;21101320630;"IEEE Symposium on Computer Applications and Industrial Electronics, ISCAIE";journal;"28364864, 28364317";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;99;0;2352;0;0;0,00;23,76;33,65;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Networks and Communications; Computer Science Applications; Electrical and Electronic Engineering; Industrial and Manufacturing Engineering; Information Systems and Management; Signal Processing";"Computer Science; Decision Sciences; Engineering" +31927;4700151725;"IEEE Transactions on Audio, Speech and Language Processing";journal;"15587916, 15587924";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;174;93;0;5542;0;0;0,00;59,59;30,05;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2006-2015, 2025-2026";"Acoustics and Ultrasonics; Electrical and Electronic Engineering";"Engineering; Physics and Astronomy" +31928;21101392346;"IEEE/IFIP International Conference on Dependable Systems and Networks Workshops, DSN-W";journal;"23256664, 23256648";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;42;0;753;0;0;0,00;17,93;20,74;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Networks and Communications; Information Systems; Safety, Risk, Reliability and Quality; Software";"Computer Science; Engineering" +31929;21100197356;"IFIP Wireless Days";conference and proceedings;"2156972X, 21569711";"IEEE Computer Society";No;No;;-;24;46;0;913;0;0;0,00;19,85;18,46;0;United States;Northern America;"IEEE Computer Society";"2011-2013, 2015-2016, 2018-2019, 2021";"Computer Networks and Communications; Electrical and Electronic Engineering; Signal Processing";"Computer Science; Engineering" +31930;21100799500;"Indonesian Journal of Electrical Engineering and Computer Science (discontinued)";journal;"25024760, 25024752";"Institute of Advanced Engineering and Science";Yes;No;;-;50;130;2316;4481;3662;2316;1,73;34,47;33,24;0;Indonesia;Asiatic Region;"Institute of Advanced Engineering and Science";"2014-2025";"Computer Networks and Communications; Control and Optimization; Electrical and Electronic Engineering; Hardware and Architecture; Information Systems; Signal Processing";"Computer Science; Engineering; Mathematics" +31931;21100199794;"Industrial Pharmacy";trade journal;"17414911";"Euromed Communications";No;No;;-;5;5;0;8;0;0;0,00;1,60;50,00;0;United Kingdom;Western Europe;"Euromed Communications";"2011-2016, 2021, 2025";"Pharmaceutical Science";"Pharmacology, Toxicology and Pharmaceutics" +31932;21101344618;"Innovative Journal of Pediatrics";journal;"31175341";"Brieflands";No;No;;-;1;40;0;1112;0;0;0,00;27,80;50,88;0;Netherlands;Western Europe;"Brieflands";"2025";"Pediatrics, Perinatology and Child Health";"Medicine" +31933;21101160593;"Insight (discontinued)";journal;"26646005, 2663970X";"Faculty of Psychology, History and Sociology, Kherson State University";Yes;Yes;;-;14;25;87;916;125;81;1,59;36,64;60,81;0;Ukraine;Eastern Europe;"Faculty of Psychology, History and Sociology, Kherson State University";"2019-2025";"Developmental and Educational Psychology; Experimental and Cognitive Psychology; Psychology (miscellaneous); Social Psychology";"Psychology" +31934;19700177407;"Interdisciplinary Toxicology";journal;"13379569, 13376853";"";Yes;No;;-;43;4;0;101;0;0;0,00;25,25;75,00;0;Slovakia;Eastern Europe;"";"2008-2021, 2025";"Health, Toxicology and Mutagenesis; Pharmacology; Toxicology";"Environmental Science; Pharmacology, Toxicology and Pharmaceutics" +31935;14997;"International Agricultural Engineering Journal";journal;"08582114";"Asian Association For Agricultural Engineering";No;No;;-;19;12;0;354;0;0;0,00;29,50;19,05;0;Thailand;Asiatic Region;"Asian Association For Agricultural Engineering";"1992, 1994-2020, 2025";"Agricultural and Biological Sciences (miscellaneous); Mechanical Engineering";"Agricultural and Biological Sciences; Engineering" +31936;21100298613;"International Business and Management";book series;"1876066X";"Emerald Group Publishing Ltd.";No;No;;-;8;6;0;6;0;0;0,00;1,00;33,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2018, 2020-2021, 2025-2026";"Business and International Management";"Business, Management and Accounting" +31937;21101299653;"International Conference on Artificial Intelligence in Information and Communication, ICAIIC";journal;"28316991, 28316983";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;0;1;0;15;0;0;0,00;15,00;0,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Computer Science Applications; Computer Vision and Pattern Recognition; Health Informatics; Information Systems; Safety, Risk, Reliability and Quality";"Computer Science; Engineering; Medicine" +31938;21101285877;"International Conference on Communication Systems and Networks, COMSNETS";journal;"21552509, 21552487";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;3;227;0;4559;0;0;0,00;20,08;25,95;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Hardware and Architecture; Information Systems; Information Systems and Management; Safety, Risk, Reliability and Quality";"Computer Science; Decision Sciences; Engineering" +31939;21101393923;"International Conference on Computer Science and Engineering, UBMK";journal;"25211641";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;319;0;6307;0;0;0,00;19,77;42,29;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Hardware and Architecture; Information Systems; Information Systems and Management; Safety, Risk, Reliability and Quality";"Computer Science; Decision Sciences; Engineering" +31940;21101317031;"International Conference on Digital Signal Processing, DSP";conference and proceedings;"15461874, 21653577";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;99;0;2311;0;0;0,00;23,34;22,38;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Signal Processing";"Computer Science" +31941;21101393710;"International Conference on Electrical Energy Systems, ICEES";journal;"26933934";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;155;0;2502;0;0;0,00;16,14;36,21;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Automotive Engineering; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Instrumentation; Renewable Energy, Sustainability and the Environment; Strategy and Management";"Business, Management and Accounting; Energy; Engineering; Physics and Astronomy" +31942;21101393926;"International Conference on Intelligent Robotics and Control Engineering, IRCE";journal;"27704815";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;0;79;0;1373;0;0;0,00;17,38;25,66;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Aerospace Engineering; Artificial Intelligence; Control and Optimization; Control and Systems Engineering; Mechanical Engineering";"Computer Science; Engineering; Mathematics" +31943;21101315539;"International Conference on Localization and GNSS, ICL-GNSS";journal;"23250771, 23250747";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;23;0;479;0;0;0,00;20,83;25,68;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Aerospace Engineering; Computer Networks and Communications; Control and Optimization; Instrumentation";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +31944;21101393603;"International Conference on Logistics, LOGISTIQUA";journal;"21667349, 21667373";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;128;0;4013;0;0;0,00;31,35;45,27;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Decision Sciences (miscellaneous); Information Systems and Management; Management Science and Operations Research; Strategy and Management";"Business, Management and Accounting; Computer Science; Decision Sciences" +31945;21101393924;"International Conference on Methods and Models in Automation and Robotics, MMAR";journal;"28352815, 28352807";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;82;0;1567;0;0;0,00;19,11;12,83;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Control and Optimization; Modeling and Simulation";"Computer Science; Mathematics" +31946;21101320264;"International Conference on Military Communication and Information Systems, ICMCIS";journal;"29934974, 29934966";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;38;0;953;0;0;0,00;25,08;16,57;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Networks and Communications; Information Systems; Information Systems and Management; Signal Processing";"Computer Science; Decision Sciences" +31947;21101361157;"International Conference on Modern Circuits and Systems Technologies, MOCAST";journal;"29934443, 29934435";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;82;0;1263;0;0;0,00;15,40;13,45;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Electrical and Electronic Engineering; Hardware and Architecture; Instrumentation";"Computer Science; Engineering; Physics and Astronomy" +31948;21101392662;"International Conference on Robotics and Automation Sciences, ICRAS";journal;"26943514, 26943506";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;0;70;0;1331;0;0;0,00;19,01;24,47;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Control and Optimization";"Computer Science; Mathematics" +31949;21101297183;"International Conference on Signal Processing and Communication, ICSC";journal;"26434458, 2643444X";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;162;0;3412;0;0;0,00;21,06;31,85;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Networks and Communications; Information Systems and Management; Instrumentation; Safety, Risk, Reliability and Quality; Signal Processing";"Computer Science; Decision Sciences; Engineering; Physics and Astronomy" +31950;21101393262;"International Conference on Solid-State Sensors, Actuators and Microsystems, Transducers";journal;"21670013, 21670021";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;542;0;6045;0;0;0,00;11,15;26,44;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Science Applications; Control and Optimization; Electrical and Electronic Engineering; Instrumentation";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +31951;21101361151;"International Conference on System of Systems Engineering, SoSE";journal;"28353161, 28353307";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;101;0;2147;0;0;0,00;21,26;27,69;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Hardware and Architecture; Health Informatics; Information Systems; Information Systems and Management; Safety, Risk, Reliability and Quality";"Computer Science; Decision Sciences; Engineering; Medicine" +31952;21101315531;"International Conference on Web Research, ICWR";journal;"28378296, 28378288";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;94;0;2706;0;0;0,00;28,79;33,66;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Computer Science Applications; Information Systems and Management; Safety, Risk, Reliability and Quality";"Computer Science; Decision Sciences; Engineering" +31953;4100151544;"International Finance Review";book series;"15693767";"Emerald Group Publishing Ltd.";No;No;;-;18;13;13;377;14;0;1,08;29,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2004, 2006-2020, 2024-2026";"Finance";"Economics, Econometrics and Finance" +31954;21101278666;"International Journal of Accounting and Economics Studies (discontinued)";journal;"23094508";"Science Publishing Corporation Inc.";No;No;;-;3;484;6;22184;0;6;0,00;45,83;40,36;0;Jordan;Middle East;"Science Publishing Corporation Inc.";"2021-2022, 2024-2025";"Business, Management and Accounting (miscellaneous); Economics and Econometrics; Finance; Marketing";"Business, Management and Accounting; Economics, Econometrics and Finance" +31955;20400195003;"International Journal of Advanced Intelligence Paradigms (discontinued)";journal;"17550386, 17550394";"Inderscience Publishers";No;No;;-;21;10;217;278;111;217;0,54;27,80;29,17;0;United Kingdom;Western Europe;"Inderscience Publishers";"2008-2025";"Applied Mathematics; Computer Science (miscellaneous); Engineering (miscellaneous)";"Computer Science; Engineering; Mathematics" +31956;21100841738;"International Journal of Applied Mathematics (discontinued)";journal;"13111728, 13148060";"";Yes;No;;-;14;291;174;7637;119;174;0,84;26,24;33,21;0;Bulgaria;Eastern Europe;"";"2017-2025";"Computational Theory and Mathematics; Mathematics (miscellaneous)";"Computer Science; Mathematics" +31957;21101277885;"International Journal of Basic and Applied Sciences (discontinued)";journal;"22275053";"Science Publishing Corporation Inc.";No;No;;-;5;278;21;8537;1;21;0,07;30,71;44,81;0;Jordan;Middle East;"Science Publishing Corporation Inc.";"2021-2025";"Agricultural and Biological Sciences (miscellaneous); Computer Science (miscellaneous); Environmental Science (miscellaneous)";"Agricultural and Biological Sciences; Computer Science; Environmental Science" +31958;21100373226;"International Journal of Economics and Financial Issues (discontinued)";journal;"21464138";"Econjournals";Yes;No;;-;35;177;177;8632;289;177;1,63;48,77;34,55;1;Turkey;Middle East;"Econjournals";"2011-2016, 2019, 2024-2025";"Economics and Econometrics; Economics, Econometrics and Finance (miscellaneous); Finance";"Economics, Econometrics and Finance" +31959;21100373959;"International Journal of Electrical and Computer Engineering (discontinued)";journal;"20888708, 27222578";"Institute of Advanced Engineering and Science";No;No;;-;54;111;2006;3717;4008;2006;2,03;33,49;34,56;0;Indonesia;Asiatic Region;"Institute of Advanced Engineering and Science";"2014-2025";"Computer Science (miscellaneous); Electrical and Electronic Engineering";"Computer Science; Engineering" +31960;21100281302;"International Journal of Energy Economics and Policy (discontinued)";journal;"21464553";"Econjournals";Yes;No;;-;64;355;1166;18768;2678;1166;2,40;52,87;35,35;0;Turkey;Middle East;"Econjournals";"2011-2025";"Economics, Econometrics and Finance (miscellaneous); Energy (miscellaneous)";"Economics, Econometrics and Finance; Energy" +31961;21101298345;"International Journal of Engineering, Science and Information Technology (discontinued)";journal;"27752674";"Malikussaleh University";No;No;;-;11;193;190;4902;177;190;0,73;25,40;45,25;0;Indonesia;Asiatic Region;"Malikussaleh University";"2021-2025";"Computer Science (miscellaneous); Engineering (miscellaneous)";"Computer Science; Engineering" +31962;26149;"International Journal of High Speed Electronics and Systems (discontinued)";journal;"17936438, 01291564";"World Scientific";No;No;;-;28;250;90;6459;37;88;0,51;25,84;40,38;0;Singapore;Asiatic Region;"World Scientific";"1994, 2002-2009, 2011-2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Hardware and Architecture";"Computer Science; Engineering; Materials Science" +31963;21101036138;"International Journal of Instructional Cases (discontinued)";journal;"2399830X";"Herald Academic Ltd and Organizational Ergonomics";No;No;;-;7;6;70;279;28;70;0,47;46,50;46,67;0;United Kingdom;Western Europe;"Herald Academic Ltd and Organizational Ergonomics";"2017-2025";"Business, Management and Accounting (miscellaneous); Management Information Systems; Marketing; Strategy and Management";"Business, Management and Accounting" +31964;21101186203;"International Journal of Intelligent Engineering Informatics (discontinued)";journal;"17588715, 17588723";"Inderscience Publishers";No;No;;-;8;16;64;991;99;64;1,80;61,94;30,00;0;United Kingdom;Western Europe;"Inderscience Publishers";"2022-2025";"Artificial Intelligence; Computer Science Applications; Computer Vision and Pattern Recognition; Human-Computer Interaction; Signal Processing; Software";"Computer Science" +31965;21101066571;"International Journal of Neutrosophic Science (discontinued)";journal;"26906805, 26926148";"American Scientific Publishing Group (ASPG)";No;No;;-;32;262;528;6322;1108;528;2,20;24,13;33,85;0;United States;Northern America;"American Scientific Publishing Group (ASPG)";"2020-2025";"Applied Mathematics; Logic; Mathematics (miscellaneous)";"Mathematics" +31966;130156;"International Journal of Surgery (discontinued)";journal;"17439191, 17439159";"Wolters Kluwer Health Inc";Yes;No;;-;109;497;2359;5918;10326;1695;4,69;11,91;34,62;0;United States;Northern America;"Wolters Kluwer Health Inc";"2004-2025";"Medicine (miscellaneous); Surgery";"Medicine" +31967;21101284807;"International Journal on Culture, History, and Religion (discontinued)";journal;"30281318";"";No;No;;-;6;124;27;4496;35;27;1,30;36,26;69,80;0;Philippines;Asiatic Region;"";"2021, 2023-2025";"Multidisciplinary";"Multidisciplinary" +31968;21101212706;"International Neurological Journal (Ukraine) (discontinued)";journal;"23071419, 22240713";"Zaslavsky Publishing House";No;No;;-;5;57;158;1689;36;156;0,28;29,63;62,73;0;Ukraine;Eastern Europe;"Zaslavsky Publishing House";"2020-2025";"Neurology (clinical)";"Medicine" +31969;4100151515;"International Perspectives on Education and Society";book series;"14793679";"Emerald Group Publishing Ltd.";No;No;;-;22;45;130;1639;65;0;0,45;36,42;20,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2002, 2005-2020, 2022-2026";"Education; Sociology and Political Science";"Social Sciences" +31970;4000152108;"International Perspectives on Higher Education Research";book series;"14793628";"Emerald Group Publishing Ltd.";No;No;;-;17;35;0;713;0;0;0,00;20,37;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000, 2003, 2005-2006, 2010-2014, 2021, 2025-2026";"Education";"Social Sciences" +31971;12100154407;"International Review of Cell and Molecular Biology";book series;"19376448";"Elsevier Inc.";No;No;;-;134;89;162;12086;455;0;2,47;135,80;48,70;0;United States;Northern America;"Elsevier Inc.";"2008-2026";"Biochemistry; Cell Biology; Molecular Biology";"Biochemistry, Genetics and Molecular Biology" +31972;21100216328;"International Review of Research in Developmental Disabilities";book series;"22116095";"Academic Press Inc.";No;No;;-;23;12;40;1040;87;0;1,40;86,67;83,87;0;United States;Northern America;"Academic Press Inc.";"2011-2025";"Developmental and Educational Psychology; Psychiatry and Mental Health";"Medicine; Psychology" +31973;21100296638;"International Symposia in Economic Theory and Econometrics";book series;"15710386";"Emerald Group Publishing Ltd.";No;No;;-;13;20;67;148;56;0;0,70;7,40;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007-2008, 2010, 2012, 2014-2015, 2018-2026";"Economics, Econometrics and Finance (miscellaneous)";"Economics, Econometrics and Finance" +31974;21101393618;"International Symposium on 3D Power Electronics Integration and Manufacturing, 3D-PEIM";journal;"28378393, 28378369";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;0;20;0;299;0;0;0,00;14,95;5,45;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Energy Engineering and Power Technology; Industrial and Manufacturing Engineering";"Energy; Engineering; Materials Science" +31975;21101320231;"International Symposium on Medical Robotics, ISMR";journal;"27719049, 28313690";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;35;0;938;0;0;0,00;26,80;25,79;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Biomedical Engineering; Computer Science Applications; Instrumentation; Surgery";"Computer Science; Engineering; Medicine; Physics and Astronomy" +31976;21101320236;"International Teletraffic Congress, ITC";journal;"28356667, 28356446";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;0;16;0;355;0;0;0,00;22,19;25,58;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Networks and Communications; Control and Optimization; Information Systems";"Computer Science; Mathematics" +31977;21101297184;"International Workshop on Mobile Terahertz Systems, IWMTS";journal;"28370082, 28370090";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;69;0;1150;0;0;0,00;16,67;11,05;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Networks and Communications; Instrumentation; Radiation";"Computer Science; Physics and Astronomy" +31978;21101297247;"International Youth Conference on Radio Electronics, Electrical and Power Engineering, REEPE";journal;"28317297, 28317262";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;3;385;0;7698;0;0;0,00;19,99;30,75;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Control and Optimization; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Instrumentation; Renewable Energy, Sustainability and the Environment";"Energy; Engineering; Mathematics; Physics and Astronomy" +31979;21100425310;"Intersections";book series;"15681181";"Brill Academic Publishers";No;No;;-;14;145;149;7960;25;0;0,14;54,90;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2026";"History; Literature and Literary Theory; Visual Arts and Performing Arts";"Arts and Humanities" +31980;21100809798;"Iraqi Journal of Agricultural Sciences (discontinued)";journal;"00750530, 24100862";"University of Baghdad, College of Agriculture";Yes;No;;-;23;59;560;2137;934;560;1,69;36,22;42,39;1;Iraq;Middle East;"University of Baghdad, College of Agriculture";"2016-2025";"Agricultural and Biological Sciences (miscellaneous); Animal Science and Zoology; Environmental Science (miscellaneous); Food Animals; Food Science; Horticulture; Veterinary (miscellaneous)";"Agricultural and Biological Sciences; Environmental Science; Veterinary" +31981;19500157815;"Iraqi Journal of Veterinary Sciences (discontinued)";journal;"20711255, 16073894";"University of Mosul - College of Veterinary Medicine";Yes;No;;-;23;100;485;4903;1007;485;2,23;49,03;48,73;0;Iraq;Middle East;"University of Mosul - College of Veterinary Medicine";"2009-2025";"Animal Science and Zoology; Veterinary (miscellaneous)";"Agricultural and Biological Sciences; Veterinary" +31982;21100426626;"Islamic Manuscripts and Books";book series;"18779964";"Brill Academic Publishers";No;No;;-;6;16;1;1400;0;0;0,00;87,50;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2010-2012, 2014-2019, 2022, 2025";"Cultural Studies; Library and Information Sciences; Visual Arts and Performing Arts";"Arts and Humanities; Social Sciences" +31983;21101320219;"IST-Africa";journal;"2576859X, 25768581";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;113;0;3045;0;0;0,00;26,95;26,69;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Computer Science Applications; Education; Information Systems and Management; Media Technology";"Computer Science; Decision Sciences; Engineering; Social Sciences" +31984;21100406926;"Jewish Identities in a Changing World";book series;"15707997";"Brill Academic Publishers";No;No;;-;7;2;17;1552;1;0;0,06;776,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2012, 2014-2020, 2022-2023, 2025-2026";"History; Religious Studies; Social Sciences (miscellaneous); Sociology and Political Science";"Arts and Humanities; Social Sciences" +31985;21101393938;"Joint Conference of the IEEE International Frequency Control Symposium and European Frequency and Time Forum, FCS";journal;"23271949";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;107;0;970;0;0;0,00;9,07;20,67;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Networks and Communications; Electronic, Optical and Magnetic Materials; Instrumentation; Signal Processing; Surfaces, Coatings and Films";"Computer Science; Materials Science; Physics and Astronomy" +31986;4700152478;"Jornal Brasileiro de Patologia e Medicina Laboratorial (discontinued)";journal;"16784774, 16762444";"";Yes;Yes;;-;20;18;41;569;20;41;0,43;31,61;48,39;0;Brazil;Latin America;"";"2001-2002, 2006-2025";"Clinical Biochemistry; Medical Laboratory Technology; Pathology and Forensic Medicine";"Biochemistry, Genetics and Molecular Biology; Health Professions; Medicine" +31987;15370;"Journal of Abnormal Psychology";journal;"0021843X";"American Psychological Association";No;No;;-;233;1;0;210;0;0;0,00;210,00;23,81;1;United States;Northern America;"American Psychological Association";"1946, 1949, 1953-1955, 1957-1958, 1965-2021, 2025";"Biological Psychiatry; Clinical Psychology; Developmental and Educational Psychology; Psychiatry and Mental Health";"Medicine; Neuroscience; Psychology" +31988;21101264207;"Journal of Advanced Research Design (discontinued)";journal;"22897984";"Penerbit Akademia Baru";No;No;;-;4;130;95;4436;73;95;0,84;34,12;34,99;0;Malaysia;Asiatic Region;"Penerbit Akademia Baru";"2021-2025";"Computer Science (miscellaneous)";"Computer Science" +31989;21101152132;"Journal of Advanced Research in Applied Mechanics (discontinued)";journal;"22897895";"";No;No;;-;9;184;279;5902;438;279;1,57;32,08;32,92;0;Malaysia;Asiatic Region;"";"2023-2025";"Atomic and Molecular Physics, and Optics; Biomaterials; Computational Mechanics; Materials Science (miscellaneous); Mechanical Engineering";"Engineering; Materials Science; Physics and Astronomy" +31990;21101119543;"Journal of Advanced Research in Applied Sciences and Engineering Technology (discontinued)";journal;"24621943";"Semarak Ilmu Publishing";No;No;;-;24;457;875;16141;1925;875;2,21;35,32;39,82;0;Malaysia;Asiatic Region;"Semarak Ilmu Publishing";"2019-2025";"Multidisciplinary";"Multidisciplinary" +31991;21101260306;"Journal of Advanced Research in Experimental Fluid Mechanics and Heat Transfer (discontinued)";journal;"27568202";"Penerbit Akademia Baru";No;No;;-;11;15;25;482;58;25;2,33;32,13;23,91;0;Malaysia;Asiatic Region;"Penerbit Akademia Baru";"2020-2025";"Environmental Science (miscellaneous); Mechanical Engineering";"Engineering; Environmental Science" +31992;21100853837;"Journal of Advanced Research in Fluid Mechanics and Thermal Sciences (discontinued)";journal;"22897879";"Semarak Ilmu Publishing";No;No;;-;37;235;1077;8056;2115;1076;2,09;34,28;30,38;0;Malaysia;Asiatic Region;"Semarak Ilmu Publishing";"2017-2025";"Fluid Flow and Transfer Processes";"Chemical Engineering" +31993;21101192903;"Journal of Advanced Research in Micro and Nano Engineering (discontinued)";journal;"27568210";"Semarak Ilmu Publishing";No;No;;-;12;99;125;3803;236;125;1,81;38,41;43,29;0;Malaysia;Asiatic Region;"Semarak Ilmu Publishing";"2020-2025";"Fluid Flow and Transfer Processes; Materials Science (miscellaneous); Mechanics of Materials";"Chemical Engineering; Engineering; Materials Science" +31994;21101169023;"Journal of Advanced Research in Numerical Heat Transfer (discontinued)";journal;"27350142";"Penerbit Akademia Baru";No;No;;-;16;58;114;2322;310;114;2,73;40,03;29,17;0;Malaysia;Asiatic Region;"Penerbit Akademia Baru";"2020-2025";"Aerospace Engineering; Automotive Engineering; Computational Mechanics; Computational Theory and Mathematics; Environmental Science (miscellaneous)";"Computer Science; Engineering; Environmental Science" +31995;21101122745;"Journal of Applied Bioanalysis (discontinued)";journal;"2405710X";"";Yes;No;;-;6;316;58;9023;49;58;0,86;28,55;43,74;0;India;Asiatic Region;"";"2017, 2019-2025";"Analytical Chemistry; Chemistry (miscellaneous); Clinical Biochemistry; Geography, Planning and Development; Medical Laboratory Technology";"Biochemistry, Genetics and Molecular Biology; Chemistry; Health Professions; Social Sciences" +31996;19700171306;"Journal of Applied Economic Sciences";journal;"18436110, 23935162";"RITHA Publishing House";Yes;No;;-;20;55;0;2473;0;0;0,00;44,96;44,03;0;Romania;Eastern Europe;"RITHA Publishing House";"2009-2018, 2022, 2025";"Business, Management and Accounting (miscellaneous); Economics, Econometrics and Finance (miscellaneous)";"Business, Management and Accounting; Economics, Econometrics and Finance" +31997;29572;"Journal of Biological Regulators and Homeostatic Agents (discontinued)";journal;"17246083, 0393974X";"Biolife Publisher";No;No;;-;62;15;1245;455;343;1199;0,28;30,33;44,78;0;Italy;Western Europe;"Biolife Publisher";"1987-2025";"Cancer Research; Endocrinology; Endocrinology, Diabetes and Metabolism; Immunology; Immunology and Allergy; Oncology; Physiology; Physiology (medical)";"Biochemistry, Genetics and Molecular Biology; Immunology and Microbiology; Medicine" +31998;21101212490;"Journal of Cybersecurity and Information Management (discontinued)";journal;"27697851, 26906775";"American Scientific Publishing Group (ASPG)";No;No;;-;11;85;113;2373;314;113;3,13;27,92;36,61;0;United States;Northern America;"American Scientific Publishing Group (ASPG)";"2022-2025";"Artificial Intelligence; Computer Science Applications; Information Systems";"Computer Science" +31999;21101170720;"Journal of Ecohumanism (discontinued)";journal;"27526801, 27526798";"Creative Publishing House";No;No;;-;11;374;1641;14180;1241;1637;0,76;37,91;38,25;0;United Kingdom;Western Europe;"Creative Publishing House";"2022-2025";"Cultural Studies; Social Sciences (miscellaneous)";"Social Sciences" +32000;21101070779;"Journal of Environmental and Earth Sciences (discontinued)";journal;"26613190";"Bilingual Publishing Group";No;No;;-;9;188;71;8424;97;71;1,48;44,81;37,01;0;Singapore;Asiatic Region;"Bilingual Publishing Group";"2019-2025";"Earth and Planetary Sciences (miscellaneous); Environmental Science (miscellaneous); Geochemistry and Petrology; Geology; Geophysics";"Earth and Planetary Sciences; Environmental Science" +32001;21101232307;"Journal of Environmental Law and Policy (discontinued)";journal;"2564016X";"Grassroots Institute";No;No;;-;4;2;46;101;59;46;1,38;50,50;0,00;0;Canada;Northern America;"Grassroots Institute";"2021-2025";"Law";"Social Sciences" +32002;21101046691;"Journal of Fish Taxonomy (discontinued)";journal;"2458942X";"";No;No;;-;11;9;52;210;38;52;0,66;23,33;44,44;0;United Arab Emirates;Middle East;"";"2019-2025";"Aquatic Science; Ecology, Evolution, Behavior and Systematics";"Agricultural and Biological Sciences" +32003;21101315256;"Journal of History";journal;"2818808X";"University of Toronto Press";No;No;;-;0;6;0;744;0;0;0,00;124,00;40,00;0;Canada;Northern America;"University of Toronto Press";"2025";"History";"Arts and Humanities" +32004;21101160591;"Journal of Intelligent Systems and Internet of Things (discontinued)";journal;"2769786X, 26906791";"American Scientific Publishing Group (ASPG)";No;No;;-;17;134;148;3519;430;148;2,91;26,26;35,14;0;United States;Northern America;"American Scientific Publishing Group (ASPG)";"2023-2025";"Artificial Intelligence; Computer Networks and Communications; Computer Science Applications; Information Systems";"Computer Science" +32005;19900193275;"Journal of International Dental and Medical Research (discontinued)";journal;"1309100X";"University of Dicle";Yes;No;;-;19;140;847;3887;449;847;0,52;27,76;50,79;0;Turkey;Middle East;"University of Dicle";"2009-2025";"Dentistry (miscellaneous)";"Dentistry" +32006;21101133571;"Journal of Machine and Computing (discontinued)";journal;"27887669, 27891801";"AnaPub Publications";No;No;;-;21;210;185;4876;181;185;1,09;23,22;39,12;0;Kenya;Africa;"AnaPub Publications";"2021-2025";"Computational Mechanics; Computational Theory and Mathematics; Electrical and Electronic Engineering; Human-Computer Interaction";"Computer Science; Engineering" +32007;21100898958;"Journal of Mathematics and Computer Science (discontinued)";journal;"2008949X";"International Scientific Research Publications";No;No;;-;23;116;385;4070;672;385;1,83;35,09;28,07;0;Malaysia;Asiatic Region;"International Scientific Research Publications";"2017-2026";"Computational Mathematics; Computational Mechanics; Computer Science Applications; Mathematics (miscellaneous)";"Computer Science; Engineering; Mathematics" +32008;21101176855;"Journal of Medicinal and Pharmaceutical Chemistry Research (discontinued)";journal;"29810213, 29810221";"Sami Publishing Company";No;No;;-;7;237;195;8665;212;195;1,09;36,56;46,91;0;France;Western Europe;"Sami Publishing Company";"2023-2026";"Chemistry (miscellaneous); Drug Discovery; Pharmaceutical Science; Pharmacology";"Chemistry; Pharmacology, Toxicology and Pharmaceutics" +32009;16369;"Journal of Mines, Metals and Fuels (discontinued)";journal;"00222755";"Informatics Publishing Limited";No;No;;-;18;126;487;3918;567;468;1,43;31,10;25,17;0;India;Asiatic Region;"Informatics Publishing Limited";"1968-1990, 1993-2025";"Energy Engineering and Power Technology; Fuel Technology; Geotechnical Engineering and Engineering Geology";"Earth and Planetary Sciences; Energy" +32010;21101327700;"Journal of Minimally Invasive Surgery";journal;"22345248, 2234778X";"Korean Society of Endo-Laparoscopic and Robotic Surgery";Yes;No;;-;1;37;0;604;0;0;0,00;16,32;26,03;0;North Korea;Asiatic Region;"Korean Society of Endo-Laparoscopic and Robotic Surgery";"2024-2025";"Medical and Surgical Nursing; Medical Laboratory Technology; Surgery";"Health Professions; Medicine; Nursing" +32011;21100432037;"Journal of Modern Project Management (discontinued)";journal;"23173963";"Editora Mundos Sociais";No;No;;-;18;2;115;101;60;115;0,47;50,50;80,00;0;Canada;Northern America;"Editora Mundos Sociais";"2013-2025";"Business and International Management; Management of Technology and Innovation; Strategy and Management";"Business, Management and Accounting" +32012;21100242246;"Journal of Natural Science, Biology and Medicine (discontinued)";journal;"22297707, 09769668";"Think Biotech Limited";Yes;No;;-;49;33;123;1216;53;123;0,44;36,85;44,26;0;United Kingdom;Western Europe;"Think Biotech Limited";"2010-2025";"Biochemistry, Genetics and Molecular Biology (miscellaneous); Medicine (miscellaneous)";"Biochemistry, Genetics and Molecular Biology; Medicine" +32013;21101039171;"Journal of Neonatal Surgery (discontinued)";journal;"22260439";"EL-MED-Pub";Yes;No;;-;4;388;112;9985;19;91;0,22;25,73;44,30;1;Pakistan;Asiatic Region;"EL-MED-Pub";"2020-2025";"Pediatrics, Perinatology and Child Health; Surgery";"Medicine" +32014;25198;"Journal of New Materials for Electrochemical Systems (discontinued)";journal;"14802422";"International Information and Engineering Technology Association";No;No;;-;46;9;118;341;110;118;0,79;37,89;31,58;0;Canada;Northern America;"International Information and Engineering Technology Association";"1998-2025";"Electrochemistry; Materials Science (miscellaneous); Renewable Energy, Sustainability and the Environment";"Chemistry; Energy; Materials Science" +32015;21101393934;"Journal of Pediatric Perspectives";journal;"30607205";"Mashhad University of Medical Sciences";No;No;;-;1;72;0;1802;0;0;0,00;25,03;56,50;0;Iran;Middle East;"Mashhad University of Medical Sciences";"2025-2026";"Critical Care and Intensive Care Medicine; Medicine (miscellaneous); Pediatrics, Perinatology and Child Health; Reviews and References (medical)";"Medicine" +32016;21100847439;"Journal of Rare Cardiovascular Diseases (discontinued)";journal;"22993711, 23005505";"SoftQ sp. z o.o.";Yes;No;;-;3;1;0;10;0;0;0,00;10,00;75,00;0;Poland;Eastern Europe;"SoftQ sp. z o.o.";"2017-2020, 2025";"Cardiology and Cardiovascular Medicine";"Medicine" +32017;21101360609;"Journal of Religious Minorities under Muslim Rule";journal;"27732142, 27732134";"Brill Academic Publishers";No;No;;-;0;4;0;194;0;0;0,00;48,50;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2025";"Cultural Studies; Religious Studies";"Arts and Humanities; Social Sciences" +32018;21101317656;"Journal of Strategy and Innovation";journal;"30507901, 3050791X";"Elsevier B.V.";No;No;;-;3;14;0;1145;0;0;0,00;81,79;41,38;0;Netherlands;Western Europe;"Elsevier B.V.";"2025-2026";"Computer Science Applications; Information Systems and Management; Management of Technology and Innovation; Marketing; Strategy and Management";"Business, Management and Accounting; Computer Science; Decision Sciences" +32019;21101392298;"Journal of Sustainability";journal;"30523761";"DSRPT";No;No;;-;2;37;0;2296;0;0;0,00;62,05;32,69;0;Germany;Western Europe;"DSRPT";"2025-2026";"Business and International Management; Environmental Science (miscellaneous); Management, Monitoring, Policy and Law; Renewable Energy, Sustainability and the Environment";"Business, Management and Accounting; Energy; Environmental Science" +32020;21101392302;"Journal of Sustainable Finance and Accounting";journal;"29503701";"Elsevier B.V.";No;No;;-;3;11;0;978;0;0;0,00;88,91;9,52;0;Netherlands;Western Europe;"Elsevier B.V.";"2025";"Accounting; Business, Management and Accounting (miscellaneous); Finance; Renewable Energy, Sustainability and the Environment";"Business, Management and Accounting; Economics, Econometrics and Finance; Energy" +32021;5200152804;"Journal of Water Chemistry and Technology";journal;"1934936X, 1063455X";"Allerton Press Inc.";No;No;;-;20;56;0;1475;0;0;0,00;26,34;44,27;0;United States;Northern America;"Allerton Press Inc.";"2006-2017, 2025";"Chemistry (miscellaneous); Water Science and Technology";"Chemistry; Environmental Science" +32022;21101207451;"Jurnal Ilmiah Ilmu Terapan Universitas Jambi (discontinued)";journal;"25802240, 25802259";"Jambi University";No;No;;-;9;91;112;5654;226;112;2,49;62,13;43,32;0;Indonesia;Asiatic Region;"Jambi University";"2020-2025";"Economics, Econometrics and Finance (miscellaneous); Education; Public Health, Environmental and Occupational Health";"Economics, Econometrics and Finance; Medicine; Social Sciences" +32023;21101329151;"La Parola del Testo";journal;"11256486, 22837167";"Fabrizio Serra Editore";No;No;;-;1;13;0;395;0;0;0,00;30,38;50,00;0;Italy;Western Europe;"Fabrizio Serra Editore";"2025";"Arts and Humanities (miscellaneous); Literature and Literary Theory";"Arts and Humanities" +32024;21100407226;"Later Medieval Europe";book series;"18727875";"Brill Academic Publishers";No;No;;-;11;59;24;5818;0;0;0,00;98,61;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2009-2011, 2013-2014, 2016, 2018-2021, 2024-2025";"Arts and Humanities (miscellaneous); Cultural Studies; History";"Arts and Humanities; Social Sciences" +32025;21101298331;"LatIA (discontinued)";journal;"3046403X";"";No;No;;-;15;64;58;2507;107;58;1,84;39,17;50,00;0;Uruguay;Latin America;"";"2023-2025";"Computer Science Applications; Computer Science (miscellaneous); Information Systems and Management; Media Technology";"Computer Science; Decision Sciences; Engineering" +32026;21101264294;"Lecture Notes in Operations Research";book series;"2731040X, 27310418";"Springer Nature";No;No;;-;8;293;1049;5237;305;0;0,29;17,87;0,00;0;Switzerland;Western Europe;"Springer Nature";"2021-2026";"Applied Mathematics; Control and Optimization; Management Science and Operations Research; Statistics, Probability and Uncertainty";"Decision Sciences; Mathematics" +32027;21101232977;"Lexis Supplementi: Sources Texts and Comments";book series;"27849287, 27849937";"Edizioni Ca' Foscari";No;No;;-;1;1;2;820;0;0;0,00;820,00;100,00;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2021, 2023-2025";"Arts and Humanities (miscellaneous); Classics; Linguistics and Language; Literature and Literary Theory";"Arts and Humanities; Social Sciences" +32028;21101227927;"Lexis Supplementi: Studies in Ancient Philosophy";book series;"27849759, 27849201";"Edizioni Ca' Foscari";No;No;;-;2;12;1;452;3;0;0,00;37,67;40,00;0;Italy;Western Europe;"Edizioni Ca' Foscari";"2021-2022, 2025";"Arts and Humanities (miscellaneous); History; History and Philosophy of Science; Philosophy";"Arts and Humanities" +32029;21101390655;"Lomonosov Psychology Journal";journal;"01370936, 23099852";"Lomonosov Moscow State University";No;No;;-;1;52;0;1659;0;0;0,00;31,90;72,32;0;Russian Federation;Eastern Europe;"Lomonosov Moscow State University";"2025-2026";"Arts and Humanities (miscellaneous); Clinical Psychology; Cultural Studies; Developmental and Educational Psychology; Neuropsychology and Physiological Psychology; Psychology (miscellaneous); Social Sciences (miscellaneous)";"Arts and Humanities; Psychology; Social Sciences" +32030;21101192888;"Machinery and Energetics (discontinued)";journal;"26631334, 26631342";"National University of Life and Environmental Sciences of Ukraine";Yes;No;;-;9;27;115;934;160;115;1,66;34,59;30,68;0;Ukraine;Eastern Europe;"National University of Life and Environmental Sciences of Ukraine";"2021-2025";"Computer Graphics and Computer-Aided Design; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Mechanical Engineering";"Computer Science; Energy; Engineering" +32031;21101160601;"Magical and Religious Literature of Late Antiquity";book series;"2211016X";"Brill Academic Publishers";No;No;;-;8;1;11;556;4;0;0,00;556,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2013-2014, 2017-2018, 2020, 2022, 2025";"History; Literature and Literary Theory; Religious Studies";"Arts and Humanities" +32032;21101295550;"Management (Montevideo) (discontinued)";journal;"30464048";"";No;No;;-;14;93;55;3208;34;55;0,62;34,49;51,11;0;Uruguay;Latin America;"";"2023-2025";"Decision Sciences (miscellaneous); Management Science and Operations Research; Organizational Behavior and Human Resource Management; Strategy and Management";"Business, Management and Accounting; Decision Sciences" +32033;4600151522;"MCB Molecular and Cellular Biomechanics (discontinued)";journal;"15565300, 15565297";"";No;No;;-;29;118;388;3308;189;387;0,45;28,03;40,24;0;United States;Northern America;"";"2005-2025";"Biophysics; Cell Biology; Medicine (miscellaneous); Molecular Biology; Molecular Medicine";"Biochemistry, Genetics and Molecular Biology; Medicine" +32034;21101104276;"Medical Journal of Babylon (discontinued)";journal;"23126760, 1812156X";"Wolters Kluwer Medknow Publications";Yes;No;;-;12;137;549;4105;670;541;1,16;29,96;46,88;0;India;Asiatic Region;"Wolters Kluwer Medknow Publications";"2019-2025";"Medicine (miscellaneous)";"Medicine" +32035;21101290949;"Metaverse Basic and Applied Research (discontinued)";journal;"29534577";"";No;No;;-;10;17;44;506;65;43;1,48;29,76;69,57;0;Argentina;Latin America;"";"2024-2025";"Artificial Intelligence; Computer Science (miscellaneous); Engineering (miscellaneous); Human-Computer Interaction";"Computer Science; Engineering" +32036;20262;"Methods in Microbiology";book series;"05809517";"Academic Press Inc.";No;No;;-;39;27;59;2107;120;0;2,39;78,04;60,00;0;United States;Northern America;"Academic Press Inc.";"1969-1973, 1976, 1978-1979, 1984-1985, 1988, 1990-1992, 1998-1999, 2001-2002, 2004, 2006-2007, 2010-2026";"Microbiology; Microbiology (medical)";"Immunology and Microbiology; Medicine" +32037;21101177356;"Microlepidoptera of Europe";book series;"13959506";"Brill Academic Publishers";No;No;;-;8;1;0;343;0;0;0,00;343,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1996-1997, 1999, 2003, 2005, 2010, 2015, 2017, 2019, 2025";"Animal Science and Zoology";"Agricultural and Biological Sciences" +32038;21101044941;"Minerva Gastroenterology (discontinued)";journal;"27245985, 27245365";"Edizioni Minerva Medica";No;No;;-;11;34;287;439;208;152;0,72;12,91;41,40;0;Italy;Western Europe;"Edizioni Minerva Medica";"2021-2025";"Endocrinology, Diabetes and Metabolism; Gastroenterology; Internal Medicine";"Medicine" +32039;26687;"Minerva Medica (discontinued)";journal;"00264806, 18271669";"Edizioni Minerva Medica";Yes;No;;-;45;54;568;610;511;206;0,72;11,30;46,02;0;Italy;Western Europe;"Edizioni Minerva Medica";"1945, 1947-2025";"Medicine (miscellaneous)";"Medicine" +32040;21101044916;"Minerva Pediatrics (discontinued)";journal;"27245780, 27245276";"Edizioni Minerva Medica";No;No;;-;13;15;460;0;307;288;0,68;0,00;46,58;0;Italy;Western Europe;"Edizioni Minerva Medica";"2021-2025";"Pediatrics, Perinatology and Child Health";"Medicine" +32041;21101044917;"Minerva Surgery (discontinued)";journal;"27245438, 27245691";"Edizioni Minerva Medica";No;No;;-;9;58;447;477;198;175;0,45;8,22;40,89;0;Italy;Western Europe;"Edizioni Minerva Medica";"2021-2025";"Surgery";"Medicine" +32042;21100430613;"Monographs in Leadership and Management";book series;"14793571";"Emerald Group Publishing Ltd.";No;No;;-;13;2;0;0;0;0;0,00;0,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007, 2014-2016, 2018, 2025-2026";"Strategy and Management";"Business, Management and Accounting" +32043;21100864379;"Neutrosophic Sets and Systems (discontinued)";journal;"23316055, 2331608X";"University of New Mexico";Yes;Yes;;-;42;501;785;13913;1284;785;1,68;27,77;39,06;0;United States;Northern America;"University of New Mexico";"2018-2025";"Applied Mathematics; Logic";"Mathematics" +32044;21101092734;"New Emirates Medical Journal (discontinued)";journal;"02506882";"Bentham Science Publishers";No;No;;-;8;6;218;251;83;212;0,43;41,83;57,14;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"1980-1981, 1985-1994, 1996-1997, 2002-2009, 2020-2025";"Medicine (miscellaneous)";"Medicine" +32045;21100298046;"New Technology Based Firms in the New Millennium";book series;"18760228";"Emerald Group Publishing Ltd.";No;No;;-;7;11;0;274;0;0;0,00;24,91;33,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2010, 2012-2013, 2015, 2025-2026";"Business, Management and Accounting (miscellaneous)";"Business, Management and Accounting" +32046;21100406819;"New Testament Tools, Studies and Documents";book series;"00778842";"Brill Academic Publishers";No;No;;-;11;2;38;565;3;0;0,00;282,50;50,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2009, 2012-2023, 2025";"Classics; History; Religious Studies";"Arts and Humanities" +32047;21101312750;"Newton";journal;"29506360";"Cell Press";No;No;;-;6;162;0;5781;0;0;0,00;35,69;26,43;0;United States;Northern America;"Cell Press";"2025-2026";"Atomic and Molecular Physics, and Optics; Biophysics; Condensed Matter Physics; Statistical and Nonlinear Physics";"Biochemistry, Genetics and Molecular Biology; Physics and Astronomy" +32048;29292;"Nursing Times";trade journal;"09547762";"EMAP Communications Ltd.";No;No;;-;31;3;0;0;0;0;0,00;0,00;50,00;0;United Kingdom;Western Europe;"EMAP Communications Ltd.";"1945-1951, 1961-2017";"Nursing (miscellaneous)";"Nursing" +32049;19700201613;"Open Bioinformatics Journal (discontinued)";journal;"18750362";"Bentham Science Publishers";Yes;No;;-;16;25;37;1003;60;37;1,82;40,12;36,11;0;United Arab Emirates;Middle East;"Bentham Science Publishers";"2011-2015, 2017-2025";"Biomedical Engineering; Computer Science (miscellaneous); Health Informatics";"Computer Science; Engineering; Medicine" +32050;21101039666;"Operational Research in Engineering Sciences: Theory and Applications (discontinued)";journal;"26201747, 26201607";"Regional Association for Security and crisis management";Yes;No;;-;30;7;131;297;341;131;2,63;42,43;41,18;0;Serbia;Eastern Europe;"Regional Association for Security and crisis management";"2018-2025";"Engineering (miscellaneous); Management Science and Operations Research";"Decision Sciences; Engineering" +32051;12313;"Optical and Quantum Electronics (discontinued)";journal;"03068919, 1572817X";"Springer";No;No;;-;86;1;3533;49;13901;3527;4,19;49,00;0,00;0;United States;Northern America;"Springer";"1969-2025";"Atomic and Molecular Physics, and Optics; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials";"Engineering; Materials Science; Physics and Astronomy" +32052;21100461332;"Organizing for Sustainable Effectiveness";book series;"20450605, 20450613";"Emerald Group Publishing Ltd.";No;No;;-;10;6;0;132;0;0;0,00;22,00;40,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2012, 2014, 2016, 2025-2026";"Management, Monitoring, Policy and Law; Strategy and Management";"Business, Management and Accounting; Environmental Science" +32053;21100211302;"Pakistan Journal of Life and Social Sciences (discontinued)";journal;"22217630, 17274915";"Elite Scientific Publications";No;No;;-;16;28;1251;1030;531;1251;0,42;36,79;53,03;0;Pakistan;Asiatic Region;"Elite Scientific Publications";"2012-2025";"Agricultural and Biological Sciences (miscellaneous); Biochemistry, Genetics and Molecular Biology (miscellaneous); Environmental Science (miscellaneous); Medicine (miscellaneous); Social Sciences (miscellaneous)";"Agricultural and Biological Sciences; Biochemistry, Genetics and Molecular Biology; Environmental Science; Medicine; Social Sciences" +32054;11100153312;"Panamerican Mathematical Journal (discontinued)";journal;"10649735";"International Publications";No;No;;-;15;40;114;1012;70;113;0,64;25,30;32,77;0;United States;Northern America;"International Publications";"2008-2025";"Mathematics (miscellaneous)";"Mathematics" +32055;16485;"Panminerva Medica (discontinued)";journal;"18271898, 00310808";"Edizioni Minerva Medica";No;No;;-;45;28;368;444;326;135;0,88;15,86;31,58;0;Italy;Western Europe;"Edizioni Minerva Medica";"1959-2025";"Medicine (miscellaneous)";"Medicine" +32056;16987;"Pathology Research and Practice (discontinued)";journal;"16180631, 03440338";"Elsevier GmbH";No;No;;-;78;357;1706;0;6048;1696;3,79;0,00;40,91;0;Germany;Western Europe;"Elsevier GmbH";"1978-2025";"Cell Biology; Pathology and Forensic Medicine";"Biochemistry, Genetics and Molecular Biology; Medicine" +32057;21101362454;"Photonics North, PN";journal;"26938324, 26938316";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;110;0;722;0;0;0,00;6,56;20,41;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Atomic and Molecular Physics, and Optics; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Hardware and Architecture";"Computer Science; Engineering; Materials Science; Physics and Astronomy" +32058;21101293002;"Premier Journal of Science (discontinued)";journal;"30499011";"Premier Science";No;No;;-;5;113;19;5661;20;19;1,05;50,10;46,33;0;United Kingdom;Western Europe;"Premier Science";"2024-2025";"Multidisciplinary";"Multidisciplinary" +32059;21100984136;"Proceedings of IEEE International Conference on Signal Processing,Computing and Control";conference and proceedings;"26438615";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;20;198;0;3943;0;0;0,00;19,91;35,01;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2019, 2021, 2025";"Artificial Intelligence; Computer Science Applications; Control and Optimization; Signal Processing";"Computer Science; Mathematics" +32060;21101393610;"Proceedings of Papers, TELSIKS";journal;"29950651";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;61;0;986;0;0;0,00;16,16;32,61;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Networks and Communications; Hardware and Architecture; Information Systems; Information Systems and Management";"Computer Science; Decision Sciences" +32061;21101226476;"Proceedings of the ACM SIGSOFT Symposium on the Foundations of Software Engineering";conference and proceedings;"15397521";"Association for Computing Machinery";No;No;;-;62;261;0;8754;0;0;0,00;33,54;26,90;0;United States;Northern America;"Association for Computing Machinery";"1995-1996, 1998, 2000-2004, 2006, 2008, 2010, 2017, 2025";"Software";"Computer Science" +32062;21101320223;"Proceedings of the Annual International Conference on Control, Automation and Robotics, ICCAR";journal;"22512454, 22512446";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;99;0;2347;0;0;0,00;23,71;20,95;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Control and Optimization; Media Technology; Modeling and Simulation";"Computer Science; Engineering; Mathematics" +32063;21101283268;"Proceedings of the Asia and South Pacific Design Automation Conference, ASP-DAC";conference and proceedings;"2153697X, 21536961";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;65;219;0;5622;0;0;0,00;25,67;26,28;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2007-2008, 2025";"Computer Graphics and Computer-Aided Design; Computer Science Applications; Electrical and Electronic Engineering";"Computer Science; Engineering" +32064;21101314623;"Proceedings of the IEEE Dallas Circuits and Systems Conference, DCAS";journal;"27665186, 2994578X";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;51;0;1082;0;0;0,00;21,22;27,20;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Electrical and Electronic Engineering; Hardware and Architecture; Modeling and Simulation; Safety, Risk, Reliability and Quality";"Computer Science; Engineering; Mathematics" +32065;21101298363;"Proceedings of the IEEE International Conference on Big Data and Smart Computing, BIGCOMP";journal;"2375933X, 23759356";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;83;0;1547;0;0;0,00;18,64;32,39;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computational Theory and Mathematics; Computer Networks and Communications; Computer Science Applications; Computer Vision and Pattern Recognition; Information Systems";"Computer Science" +32066;21101320232;"Proceedings of the IEEE International Conference on Pervasive Computing and Communications, PerCom";journal;"2474249X, 24742503";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;33;0;1023;0;0;0,00;31,00;23,68;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computational Theory and Mathematics; Software; Theoretical Computer Science";"Computer Science; Mathematics" +32067;21101320629;"Proceedings of the IEEE International Parallel and Distributed Processing Symposium, IPDPS";journal;"15302075";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;3;109;0;4710;0;0;0,00;43,21;22,66;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Computer Science Applications; Hardware and Architecture";"Computer Science" +32068;21101320263;"Proceedings of the IEEE International Symposium on Hardware Oriented Security and Trust, HOST";journal;"27658406, 28355709";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;44;0;1814;0;0;0,00;41,23;20,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Hardware and Architecture; Safety, Risk, Reliability and Quality";"Computer Science; Engineering" +32069;21101298333;"Proceedings of the IEEE International Workshop on Integrated Power Packaging, IWIPP";journal;"28348370, 28348362";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;18;0;308;0;0;0,00;17,11;14,29;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Energy Engineering and Power Technology";"Energy; Engineering; Materials Science" +32070;21101392343;"Proceedings of the IEEE Workshop on Electrical Machines Design, Control and Diagnosis, WEMDCD";journal;"26940264, 2380856X";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;101;0;1978;0;0;0,00;19,58;15,19;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Control and Optimization; Electrical and Electronic Engineering; Mechanical Engineering";"Engineering; Mathematics" +32071;21101297252;"Proceedings of the International Colloquium on Signal Processing and Its Applications, CSPA";journal;"28364090, 2836418X";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;3;66;0;1444;0;0;0,00;21,88;33,33;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Control and Optimization; Media Technology; Modeling and Simulation; Signal Processing";"Computer Science; Engineering; Mathematics" +32072;21101312741;"Proceedings of the International Conference on Automation, Robotics and Applications, ICARA";journal;"27677737, 27677745";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;78;0;1442;0;0;0,00;18,49;15,73;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Control and Optimization; Mechanical Engineering; Modeling and Simulation; Safety, Risk, Reliability and Quality";"Computer Science; Engineering; Mathematics" +32073;21101315241;"Proceedings of the International Conference on Computer Supported Cooperative Work in Design, CSCWD";journal;"27681904, 2835639X";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;431;0;9526;0;0;0,00;22,10;31,56;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Graphics and Computer-Aided Design; Computer Networks and Communications; Computer Vision and Pattern Recognition; Control and Optimization; Modeling and Simulation";"Computer Science; Mathematics" +32074;21101316075;"Proceedings of the International Conference on Cybernetics and Informatics, K and I";journal;"2767875X, 28353056";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;3;55;0;981;0;0;0,00;17,84;19,27;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Control and Optimization; Hardware and Architecture; Information Systems; Mechanical Engineering";"Computer Science; Engineering; Mathematics" +32075;21101393939;"Proceedings of the International Conference on Engineering Technologies and Computer Science, EnT";journal;"27671976";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;0;12;0;259;0;0;0,00;21,58;52,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Science Applications; Computer Science (miscellaneous); Electrical and Electronic Engineering; Engineering (miscellaneous); Hardware and Architecture; Instrumentation";"Computer Science; Engineering; Physics and Astronomy" +32076;21101315534;"Proceedings of the International Conference on Green Energy and Applications, ICGEA";journal;"26943298, 26943301";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;68;0;1081;0;0;0,00;15,90;23,78;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Electrical and Electronic Engineering; Energy Engineering and Power Technology; Mechanical Engineering; Renewable Energy, Sustainability and the Environment; Safety, Risk, Reliability and Quality";"Energy; Engineering" +32077;21101362460;"Proceedings of the International Conference on Mechanical and Intelligent Manufacturing Technologies, ICMIMT";journal;"26943182, 26943190";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;0;41;0;765;0;0;0,00;18,66;19,15;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Computer Vision and Pattern Recognition; Industrial and Manufacturing Engineering; Mechanical Engineering; Safety, Risk, Reliability and Quality";"Computer Science; Engineering" +32078;21101314621;"Proceedings of the International Conference Radioelektronika, RADIOELEKTRONIKA";journal;"29932165, 27679969";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;62;0;1062;0;0;0,00;17,13;12,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Networks and Communications; Computer Vision and Pattern Recognition; Electrical and Electronic Engineering; Instrumentation; Radiation; Signal Processing";"Computer Science; Engineering; Physics and Astronomy" +32079;21101319912;"Proceedings of the International Symposium on Applied Machine Intelligence and Informatics, SAMI";journal;"28360834, 27679438";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;3;89;0;1952;0;0;0,00;21,93;26,51;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Hardware and Architecture; Information Systems";"Computer Science" +32080;21101320234;"Proceedings of the International Symposium on Computational and Business Intelligence, ISCBI";journal;"28324757, 28324749";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;0;22;0;366;0;0;0,00;16,64;22,00;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computational Theory and Mathematics";"Computer Science" +32081;21101320227;"Proceedings of the International Symposium on System and Software Reliability, ISSSR";journal;"28352823, 28352831";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;67;0;1317;0;0;0,00;19,66;38,37;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Electrical and Electronic Engineering; Information Systems; Modeling and Simulation; Safety, Risk, Reliability and Quality; Software";"Computer Science; Engineering; Mathematics" +32082;21101392665;"Proceedings of the International Workshop on Advances in Sensors and Interfaces, IWASI";journal;"28367936, 28368681";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;0;47;0;943;0;0;0,00;20,06;26,67;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Biomedical Engineering; Control and Optimization; Health (social science); Human-Computer Interaction; Instrumentation";"Computer Science; Engineering; Mathematics; Physics and Astronomy; Social Sciences" +32083;21101312738;"Proceedings of the National Conference on Communications, NCC";journal;"29932610, 29932645";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;2;153;0;2924;0;0;0,00;19,11;25,48;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Computer Networks and Communications; Computer Vision and Pattern Recognition; Safety, Risk, Reliability and Quality; Signal Processing";"Computer Science; Engineering" +32084;21101320229;"Proceedings of the Open Conference of Electrical, Electronic and Information Sciences, eStream";journal;"28315634, 26908506";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;51;0;962;0;0;0,00;18,86;30,17;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Computer Vision and Pattern Recognition; Control and Optimization; Electrical and Electronic Engineering; Hardware and Architecture; Information Systems; Instrumentation";"Computer Science; Engineering; Mathematics; Physics and Astronomy" +32085;21101393119;"Proceedings of the Symposium on Design, Test, Integration, and Packaging of MEMS/MOEMS, DTIP";journal;"28368487, 27681874";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;24;0;280;0;0;0,00;11,67;24,51;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Control and Optimization; Electrical and Electronic Engineering; Electronic, Optical and Magnetic Materials; Instrumentation; Safety, Risk, Reliability and Quality";"Engineering; Materials Science; Mathematics; Physics and Astronomy" +32086;21101315538;"Proceedings. Smart City Symposium Prague, SCSP";journal;"26913666, 28315618";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;0;34;0;757;0;0;0,00;22,26;20,25;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Science Applications; Control and Optimization; Transportation; Urban Studies";"Computer Science; Mathematics; Social Sciences" +32087;6200180164;"Profesional de la Informacion (discontinued)";journal;"16992407, 13866710";"El Profesional de la Informacion";No;No;;-;56;30;379;1387;1156;371;2,91;46,23;56,90;0;Spain;Western Europe;"El Profesional de la Informacion";"2006-2025";"Communication; Cultural Studies; Information Systems; Library and Information Sciences";"Computer Science; Social Sciences" +32088;5000158117;"Profiles of Drug Substances, Excipients and Related Methodology";book series;"18715125";"Academic Press Inc.";No;No;;-;35;7;20;810;74;0;3,92;115,71;37,50;0;United States;Northern America;"Academic Press Inc.";"2001-2003, 2005, 2007-2026";"Medicine (miscellaneous); Molecular Medicine; Pharmaceutical Science; Pharmacology";"Biochemistry, Genetics and Molecular Biology; Medicine; Pharmacology, Toxicology and Pharmaceutics" +32089;21101393927;"Progress in Applied Electrical Engineering, PAEE";journal;"28378326, 28378318";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;18;0;228;0;0;0,00;12,67;12,24;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Electrical and Electronic Engineering; Energy Engineering and Power Technology";"Energy; Engineering" +32090;21100265052;"Progress in International Business Research";book series;"17458862";"Emerald Group Publishing Ltd.";No;No;;-;18;22;20;910;10;0;0,50;41,36;33,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2012, 2014-2019, 2021, 2024-2026";"Business, Management and Accounting (miscellaneous)";"Business, Management and Accounting" +32091;12879;"Progress in Optics";book series;"00796638";"Elsevier B.V.";No;No;;-;56;8;17;1024;29;0;1,42;128,00;20,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1961, 1963-1967, 1969-1974, 1976-1978, 1980-1981, 1983-2025";"Electronic, Optical and Magnetic Materials; Surfaces and Interfaces";"Materials Science; Physics and Astronomy" +32092;21101347001;"Public Recreation and Landscape Protection";journal;"23366311, 2336632X";"Mendel University in Brno";No;No;;-;1;72;0;759;0;0;0,00;10,54;51,82;0;Czech Republic;Eastern Europe;"Mendel University in Brno";"2025";"Environmental Engineering; Geography, Planning and Development; Nature and Landscape Conservation";"Environmental Science; Social Sciences" +32093;21100405645;"Publications on Ocean Development";book series;"09241922";"Brill Academic Publishers";No;No;;-;12;20;34;3282;12;0;0,35;164,10;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"1977, 1991, 2006-2017, 2019-2021, 2023-2026";"Law; Management, Monitoring, Policy and Law; Political Science and International Relations";"Environmental Science; Social Sciences" +32094;21101387599;"Railway Sciences";journal;"27550907, 27550915";"Emerald Publishing";No;No;;-;0;4;0;105;0;0;0,00;26,25;16,67;0;United Kingdom;Western Europe;"Emerald Publishing";"2025-2026";"Civil and Structural Engineering; Computational Mechanics; Mechanical Engineering; Transportation";"Engineering; Social Sciences" +32095;21101388868;"Razavi International Journal of Medicine";journal;"23456426, 23456434";"";No;No;;-;1;38;0;1319;0;0;0,00;34,71;55,63;0;Iran;Middle East;"";"2025-2026";"Medicine (miscellaneous)";"Medicine" +32096;21101374260;"Receptors (Switzerland)";journal;"28132564";"Multidisciplinary Digital Publishing Institute (MDPI)";No;No;;-;0;7;0;817;0;0;0,00;116,71;56,52;0;Switzerland;Western Europe;"Multidisciplinary Digital Publishing Institute (MDPI)";"2025";"Biochemistry; Cell Biology; Molecular Biology";"Biochemistry, Genetics and Molecular Biology" +32097;21100967049;"Reliability: Theory and Applications (discontinued)";journal;"19322321";"Gnedenko Forum";No;No;;-;14;328;1049;7256;726;1049;0,75;22,12;34,03;0;United States;Northern America;"Gnedenko Forum";"2017-2025";"Safety Research; Safety, Risk, Reliability and Quality; Statistics, Probability and Uncertainty";"Decision Sciences; Engineering; Social Sciences" +32098;21101287175;"Research in Agricultural Sciences";journal;"29799686";"Ataturk Universitesi";Yes;No;;-;1;27;0;1023;0;0;0,00;37,89;51,25;0;Turkey;Middle East;"Ataturk Universitesi";"2025-2026";"Agricultural and Biological Sciences (miscellaneous); Plant Science";"Agricultural and Biological Sciences" +32099;21100268408;"Research in Biopolitics";book series;"20429940";"Emerald Group Publishing Ltd.";No;No;;-;5;7;0;282;0;0;0,00;40,29;20,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2011-2014, 2025-2026";"Law; Management, Monitoring, Policy and Law; Philosophy; Sociology and Political Science";"Arts and Humanities; Environmental Science; Social Sciences" +32100;21100265102;"Research in Consumer Behavior";book series;"08852111";"Emerald Group Publishing Ltd.";No;No;;-;21;7;0;185;0;0;0,00;26,43;33,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007, 2010-2016, 2018-2019, 2025-2026";"Business, Management and Accounting (miscellaneous); Marketing";"Business, Management and Accounting" +32101;58669;"Research in Economic Anthropology";book series;"01901281";"Emerald Group Publishing Ltd.";No;No;;-;22;16;31;568;16;0;0,13;35,50;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1983, 1987, 2002-2004, 2006-2022, 2024-2026";"Anthropology; Economics and Econometrics";"Economics, Econometrics and Finance; Social Sciences" +32102;29433;"Research in Economic History";book series;"03633268";"Emerald Group Publishing Ltd.";No;No;;-;19;24;0;953;0;0;0,00;39,71;27,27;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1976-1977, 1982, 1988, 2001, 2003-2008, 2010, 2012-2021, 2025-2026";"Economics and Econometrics; History and Philosophy of Science";"Arts and Humanities; Economics, Econometrics and Finance" +32103;4100151531;"Research in Ethical Issues in Organizations";book series;"15292096";"Emerald Group Publishing Ltd.";No;No;;-;12;23;24;402;10;0;0,55;17,48;40,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2003, 2005-2006, 2012-2020, 2022-2023, 2025-2026";"Cultural Studies; Organizational Behavior and Human Resource Management; Social Psychology; Sociology and Political Science";"Business, Management and Accounting; Psychology; Social Sciences" +32104;4000152125;"Research in Experimental Economics";book series;"01932306";"Emerald Group Publishing Ltd.";No;No;;-;22;14;6;98;1;0;0,00;7,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2002, 2004, 2006, 2008, 2010-2016, 2018, 2022, 2025-2026";"Economics and Econometrics";"Economics, Econometrics and Finance" +32105;4100151543;"Research in Finance";book series;"01963821";"Emerald Group Publishing Ltd.";No;No;;-;11;27;7;618;15;0;2,14;22,89;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2006, 2008-2020, 2023, 2025-2026";"Finance";"Economics, Econometrics and Finance" +32106;4000152135;"Research in Global Strategic Management";book series;"10644857";"Emerald Group Publishing Ltd.";No;No;;-;15;12;0;229;0;0;0,00;19,08;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1998-1999, 2003-2008, 2011, 2014, 2016, 2019, 2025-2026";"Business and International Management";"Business, Management and Accounting" +32107;4100151512;"Research in Labor Economics";book series;"01479121";"Emerald Group Publishing Ltd.";No;No;;-;31;37;36;1022;25;0;0,69;27,62;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1999-2004, 2006-2021, 2023-2026";"Economics and Econometrics; Industrial Relations; Political Science and International Relations";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +32108;5200152633;"Research in Law and Economics";book series;"01935895";"Emerald Group Publishing Ltd.";No;No;;-;11;5;6;185;5;0;0,83;37,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000, 2002, 2004, 2007, 2009, 2012, 2014-2015, 2018, 2021, 2023, 2025-2026";"Economics and Econometrics; Law";"Economics, Econometrics and Finance; Social Sciences" +32109;4100151505;"Research in Occupational Stress and Well Being";book series;"14793555";"Emerald Group Publishing Ltd.";No;No;;-;39;11;23;673;17;0;0,81;61,18;40,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2004, 2006, 2009-2026";"Psychiatry and Mental Health; Public Health, Environmental and Occupational Health";"Medicine" +32110;4800153108;"Research in Organizational Change and Development";book series;"08973016";"Emerald Group Publishing Ltd.";No;No;;-;23;22;0;1183;0;0;0,00;53,77;33,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1999, 2001, 2003-2004, 2007, 2009-2021, 2025-2026";"Business and International Management; Organizational Behavior and Human Resource Management";"Business, Management and Accounting" +32111;4100151524;"Research in Personnel and Human Resources Management";book series;"07427301";"Emerald Group Publishing Ltd.";No;No;;-;48;13;9;1075;9;0;1,00;82,69;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2012, 2014-2022, 2024-2026";"Organizational Behavior and Human Resource Management";"Business, Management and Accounting" +32112;4100151535;"Research in Political Economy";book series;"01617230";"Emerald Group Publishing Ltd.";No;No;;-;15;19;13;434;1;0;0,08;22,84;100,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2002, 2004-2007, 2009-2011, 2013-2021, 2023, 2025-2026";"Economics and Econometrics; Political Science and International Relations";"Economics, Econometrics and Finance; Social Sciences" +32113;5700154351;"Research in Political Sociology";book series;"08959935";"Emerald Group Publishing Ltd.";No;No;;-;11;29;0;640;0;0;0,00;22,07;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008, 2010-2015, 2017-2021, 2025-2026";"Sociology and Political Science";"Social Sciences" +32114;4100151520;"Research in Public Policy Analysis and Management";book series;"07321317";"Emerald Group Publishing Ltd.";No;No;;-;12;21;0;799;0;0;0,00;38,05;25,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001-2002, 2004, 2006-2013, 2025-2026";"Business, Management and Accounting (miscellaneous); Development; Public Administration; Sociology and Political Science";"Business, Management and Accounting; Social Sciences" +32115;5600155191;"Research in Race and Ethnic Relations";book series;"01957449";"Emerald Group Publishing Ltd.";No;No;;-;4;18;0;531;0;0;0,00;29,50;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008, 2010, 2012-2013, 2015, 2018, 2025-2026";"Anthropology; Public Administration; Sociology and Political Science";"Social Sciences" +32116;16888;"Research in Rural Sociology and Development";book series;"10571922";"Emerald Group Publishing Ltd.";No;No;;-;21;32;0;961;0;0;0,00;30,03;38,71;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1998, 2000, 2003, 2005-2007, 2009-2017, 2020, 2025-2026";"Geography, Planning and Development";"Social Sciences" +32117;4100151529;"Research in Social Movements, Conflicts and Change";book series;"0163786X";"Emerald Group Publishing Ltd.";No;No;;-;28;25;9;1016;1;0;0,11;40,64;60,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2001, 2003-2005, 2007-2008, 2010-2019, 2021, 2024-2026";"Political Science and International Relations; Sociology and Political Science";"Social Sciences" +32118;4100151537;"Research in Social Problems and Public Policy";book series;"01961152";"JAI Press";No;No;;-;18;15;0;437;0;0;0,00;29,13;100,00;0;United Kingdom;Western Europe;"JAI Press";"2001-2003, 2005-2008, 2010-2013, 2016, 2025-2026";"Rehabilitation; Sociology and Political Science";"Medicine; Social Sciences" +32119;4000152129;"Research in Social Science and Disability";book series;"14793547";"Emerald Group Publishing Ltd.";No;No;;-;17;8;13;334;8;0;0,62;41,75;100,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2001, 2003, 2006, 2010-2011, 2013-2014, 2016-2017, 2019-2020, 2023-2026";"Public Health, Environmental and Occupational Health; Social Sciences (miscellaneous)";"Medicine; Social Sciences" +32120;4000152104;"Research in the History of Economic Thought and Methodology";book series;"07434154";"Emerald Group Publishing Ltd.";No;No;;-;12;68;63;875;24;0;0,31;12,87;12,50;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2026";"Arts and Humanities (miscellaneous); Economics, Econometrics and Finance (miscellaneous); History and Philosophy of Science";"Arts and Humanities; Economics, Econometrics and Finance" +32121;4700153512;"Research in the Sociology of Education";book series;"14793539";"Emerald Group Publishing Ltd.";No;No;;-;14;18;0;876;0;0;0,00;48,67;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003, 2006, 2008, 2010, 2012, 2016, 2018, 2025-2026";"Education; Social Sciences (miscellaneous); Sociology and Political Science";"Social Sciences" +32122;17784;"Research in the Sociology of Health Care";book series;"02754959";"Emerald Group Publishing Ltd.";No;No;;-;13;18;10;847;3;0;0,00;47,06;100,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"1991, 1996, 2000-2020, 2022, 2025-2026";"Nursing (miscellaneous); Public Health, Environmental and Occupational Health; Sociology and Political Science";"Medicine; Nursing; Social Sciences" +32123;4000152126;"Research in the Sociology of Organizations";book series;"0733558X";"Emerald Group Publishing Ltd.";No;No;;-;55;187;93;10669;261;0;1,11;57,05;42,07;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2007, 2009-2026";"Organizational Behavior and Human Resource Management; Social Sciences (miscellaneous); Sociology and Political Science";"Business, Management and Accounting; Social Sciences" +32124;21100297603;"Research in the Sociology of Sport";book series;"14762854";"Emerald Group Publishing Ltd.";No;No;;-;13;17;113;888;85;0;0,27;52,24;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2012-2014, 2016-2020, 2022-2026";"Social Psychology; Social Sciences (miscellaneous); Sociology and Political Science";"Psychology; Social Sciences" +32125;4100151541;"Research in the Sociology of Work";book series;"02772833";"Emerald Group Publishing Ltd.";No;No;;-;29;40;22;1711;17;0;0,77;42,78;25,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001, 2003-2007, 2009-2020, 2023-2026";"Social Sciences (miscellaneous); Sociology and Political Science";"Social Sciences" +32126;4800153105;"Research in Urban Sociology";book series;"10470042";"Emerald Group Publishing Ltd.";No;No;;-;16;43;14;1670;1;0;0,07;38,84;70,83;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2001, 2004, 2006, 2008, 2010-2014, 2016, 2019, 2021, 2023, 2025-2026";"Sociology and Political Science; Urban Studies";"Social Sciences" +32127;4400151741;"Research on Economic Inequality";book series;"10492585";"Emerald Group Publishing Ltd.";No;No;;-;22;30;0;821;0;0;0,00;27,37;25,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003-2004, 2006-2021, 2025-2026";"Organizational Behavior and Human Resource Management; Sociology and Political Science";"Business, Management and Accounting; Social Sciences" +32128;5300152531;"Research on Emotion in Organizations";book series;"17469791";"Emerald Group Publishing Ltd.";No;No;;-;21;25;38;1717;20;0;0,60;68,68;48,39;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2006-2019, 2022-2026";"Organizational Behavior and Human Resource Management";"Business, Management and Accounting" +32129;4000152111;"Research on Managing Groups and Teams";book series;"15340856";"Emerald Group Publishing Ltd.";No;No;;-;29;19;0;1372;0;0;0,00;72,21;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000, 2002-2003, 2005-2012, 2014-2015, 2017-2018, 2020, 2025-2026";"Business, Management and Accounting (miscellaneous); Organizational Behavior and Human Resource Management";"Business, Management and Accounting" +32130;21100296641;"Research on Professional Responsibility and Ethics in Accounting";book series;"15740765";"Emerald Group Publishing Ltd.";No;No;;-;12;12;9;127;4;0;0,44;10,58;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007-2008, 2010-2016, 2018-2021, 2024-2026";"Accounting; Psychology (miscellaneous)";"Business, Management and Accounting; Psychology" +32131;21101290578;"Research on the Education and Learning of Adults";book series;"25429345";"Brill Academic Publishers";No;No;;-;8;14;25;432;12;0;0,00;30,86;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014-2016, 2018, 2020-2022, 2025";"Education";"Social Sciences" +32132;7800153101;"Review of Diabetic Studies (discontinued)";journal;"16140575, 16136071";"Lab and Life Press";No;No;;-;58;2;52;67;110;52;0,53;33,50;0,00;0;Germany;Western Europe;"Lab and Life Press";"2007-2025";"Endocrinology; Endocrinology, Diabetes and Metabolism; Internal Medicine; Medicine (miscellaneous)";"Biochemistry, Genetics and Molecular Biology; Medicine" +32133;21100265630;"Review of Marketing Research";book series;"15486435, 19447035";"Emerald Group Publishing Ltd.";No;No;;-;24;19;20;683;18;0;0,33;35,95;33,33;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2007-2022, 2024-2026";"Marketing";"Business, Management and Accounting" +32134;19269;"Revista de Neurologia (discontinued)";journal;"15766578, 02100010";"IMR Press Limited";No;No;;-;50;14;339;0;264;297;0,61;0,00;47,69;0;Spain;Western Europe;"IMR Press Limited";"1959, 1974-1988, 1995-2025";"Medicine (miscellaneous); Neurology (clinical)";"Medicine" +32135;17700156017;"Revista de Psicologia del Deporte (discontinued)";journal;"19885636, 1132239X";"Sociedad Revista de Psicologia del Deporte";Yes;No;;-;38;19;358;706;228;358;0,68;37,16;34,55;0;Spain;Western Europe;"Sociedad Revista de Psicologia del Deporte";"2008-2025";"Applied Psychology; Sports Science";"Health Professions; Psychology" +32136;21100901134;"Revista Electronica de LEEME (discontinued)";journal;"15759563";"Societat de Filosofia del Pais Valencia";Yes;Yes;;-;10;31;66;1174;33;64;0,52;37,87;51,16;0;Spain;Western Europe;"Societat de Filosofia del Pais Valencia";"2018-2025";"Education; Music";"Arts and Humanities; Social Sciences" +32137;21101293370;"Revista Espanola de Comunicacion en Salud";journal;"19899882";"Universidad Carlos III de Madrid";Yes;No;;-;0;25;0;928;0;0;0,00;37,12;54,90;0;Spain;Western Europe;"Universidad Carlos III de Madrid";"2025";"Communication; Health (social science); Public Health, Environmental and Occupational Health";"Medicine; Social Sciences" +32138;19400157209;"Revista Internacional de Medicina y Ciencias de la Actividad Fisica y del Deporte (discontinued)";journal;"15770354";"Universidad Autonoma de Madrid y CV Ciencias del Deporte";Yes;No;;-;30;70;528;1592;147;528;0,20;22,74;52,21;0;Spain;Western Europe;"Universidad Autonoma de Madrid y CV Ciencias del Deporte";"2008-2025";"Physical Therapy, Sports Therapy and Rehabilitation; Sports Science";"Health Professions" +32139;21100826379;"Rita Revista Indexada de Textos Academicos (discontinued)";journal;"23409711, 23867027";"";Yes;Yes;;-;5;5;81;242;16;79;0,27;48,40;66,67;0;Chile;Latin America;"";"2014-2025";"Architecture; Urban Studies; Visual Arts and Performing Arts";"Arts and Humanities; Engineering; Social Sciences" +32140;21100411274;"Russian History and Culture";book series;"18777791";"Brill Academic Publishers";No;No;;-;6;2;14;486;1;0;0,00;243,00;33,33;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2013, 2017-2019, 2022-2023, 2025";"Cultural Studies; History; Literature and Literary Theory; Visual Arts and Performing Arts";"Arts and Humanities; Social Sciences" +32141;21101315244;"SACI, IEEE International Symposium on Applied Computational Intelligence and Informatics";journal;"2765818X, 28339010";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;125;0;3076;0;0;0,00;24,61;30,43;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Artificial Intelligence; Computer Networks and Communications; Electrical and Electronic Engineering; Health Informatics; Information Systems; Statistical and Nonlinear Physics";"Computer Science; Engineering; Medicine; Physics and Astronomy" +32142;21101199899;"Salud, Ciencia y Tecnologia - Serie de Conferencias (discontinued)";journal;"29534860";"Editorial Salud, Ciencia y Tecnologia";No;No;;-;17;102;1008;3385;468;1007;0,51;33,19;50,15;0;Argentina;Latin America;"Editorial Salud, Ciencia y Tecnologia";"2022-2025";"Multidisciplinary";"Multidisciplinary" +32143;21101131037;"Salud, Ciencia y Tecnologia (discontinued)";journal;"27969711";"";No;No;;-;19;493;945;17133;335;936;0,36;34,75;50,74;0;Argentina;Latin America;"";"2021-2025";"Engineering (miscellaneous); Health Professions (miscellaneous); Multidisciplinary; Nurse Assisting; Nursing (miscellaneous); Reviews and References (medical)";"Engineering; Health Professions; Medicine; Multidisciplinary; Nursing" +32144;21101215098;"Sapienza (discontinued)";journal;"26759780";"";No;Yes;;-;6;58;468;2539;134;465;0,49;43,78;46,88;0;Brazil;Latin America;"";"2020-2025";"Multidisciplinary";"Multidisciplinary" +32145;21101215779;"Scientific Bulletin of Mukachevo State University. Series Economics (discontinued)";journal;"23138114, 25181254";"Mukachevo State University";Yes;No;;-;11;24;64;1082;191;64;2,98;45,08;58,70;0;Ukraine;Eastern Europe;"Mukachevo State University";"2023-2025";"Business, Management and Accounting (miscellaneous); Economics, Econometrics and Finance (miscellaneous); Public Administration";"Business, Management and Accounting; Economics, Econometrics and Finance; Social Sciences" +32146;21101062495;"Scientific Horizons (discontinued)";journal;"27098877, 26632144";"Polissia National University";Yes;No;;-;17;96;469;3884;473;469;1,13;40,46;58,02;0;Ukraine;Eastern Europe;"Polissia National University";"2018-2025";"Agronomy and Crop Science; Animal Science and Zoology; Economics, Econometrics and Finance (miscellaneous)";"Agricultural and Biological Sciences; Economics, Econometrics and Finance" +32147;21101283082;"Seminars in Medical Writing and Education (discontinued)";journal;"30088127";"";No;No;;-;23;112;355;3976;94;354;0,22;35,50;48,90;0;Argentina;Latin America;"";"2022-2025";"Education; Health Informatics; Information Systems and Management; Review and Exam Preparation; Reviews and References (medical)";"Decision Sciences; Medicine; Nursing; Social Sciences" +32148;21100461998;"Septuagint Commentary Series";book series;"15723755";"Brill Academic Publishers";No;No;;-;2;1;1;146;0;0;0,00;146,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007-2009, 2012-2015, 2020, 2022, 2025";"Religious Studies";"Arts and Humanities" +32149;21101365669;"ShodhKosh: Journal of Visual and Performing Arts";journal;"25827472";"Granthaalayah Publications and Printers";No;No;;-;1;352;0;5730;0;0;0,00;16,28;44,10;0;India;Asiatic Region;"Granthaalayah Publications and Printers";"2025-2026";"Visual Arts and Performing Arts";"Arts and Humanities" +32150;15745;"SIGIR Forum (ACM Special Interest Group on Information Retrieval)";journal;"01635840";"Association for Computing Machinery";No;No;;-;111;1;0;155;0;0;0,00;155,00;30,43;0;United States;Northern America;"Association for Computing Machinery";"1971-1983, 1985-2003, 2009, 2013, 2024-2025";"Hardware and Architecture; Management Information Systems";"Business, Management and Accounting; Computer Science" +32151;21100443325;"Sir Henry Wellcome Asian Series";book series;"15701484";"Brill Academic Publishers";No;No;;-;5;1;18;221;3;0;0,17;221,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008, 2010, 2012-2013, 2015-2016, 2018, 2020, 2023, 2025";"Cultural Studies; History; History and Philosophy of Science";"Arts and Humanities; Social Sciences" +32152;21101185818;"Social and Legal Studios (discontinued)";journal;"26174170, 26174162";"Lviv State University of Internal Affairs";Yes;No;;-;12;54;209;3091;321;209;1,68;57,24;56,38;0;Ukraine;Eastern Europe;"Lviv State University of Internal Affairs";"2019-2025";"Economics, Econometrics and Finance (miscellaneous); Law; Social Psychology";"Economics, Econometrics and Finance; Psychology; Social Sciences" +32153;21101199231;"Social Sciences of Practice";book series;"2214952X";"Brill Academic Publishers";No;No;;-;2;1;0;883;0;0;0,00;883,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2014, 2018, 2025";"Social Sciences (miscellaneous)";"Social Sciences" +32154;21101355378;"Social Studies Research and Practice";journal;"19335415";"Emerald Publishing";No;No;;-;0;1;0;27;0;0;0,00;27,00;100,00;0;United Kingdom;Western Europe;"Emerald Publishing";"2006, 2009-2010, 2025";"Cultural Studies; Education; Geography, Planning and Development; Sociology and Political Science";"Social Sciences" +32155;4000152137;"Sociological Studies of Children and Youth";book series;"15374661";"Emerald Group Publishing Ltd.";No;No;;-;18;30;45;1047;24;0;0,52;34,90;85,71;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2001, 2004-2005, 2009-2017, 2019-2020, 2022-2026";"Sociology and Political Science";"Social Sciences" +32156;5600155642;"Sociology of Crime, Law, and Deviance";book series;"15216136";"Emerald Group Publishing Ltd.";No;No;;-;19;7;0;144;0;0;0,00;20,57;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2021, 2025-2026";"Cultural Studies; Law; Sociology and Political Science";"Social Sciences" +32157;21101291064;"SPE Middle East Oil and Gas Show and Conference, MEOS, Proceedings";conference and proceedings;"26925931";"Society of Petroleum Engineers (SPE)";No;No;;-;2;645;0;10271;0;0;0,00;15,92;17,07;0;United States;Northern America;"Society of Petroleum Engineers (SPE)";"2019, 2025";"Energy Engineering and Power Technology; Fuel Technology";"Energy" +32158;21101291063;"SPE Offshore Europe Conference Proceedings";conference and proceedings;"26912783";"Society of Petroleum Engineers (SPE)";No;No;;-;1;81;0;1292;0;0;0,00;15,95;17,37;0;United States;Northern America;"Society of Petroleum Engineers (SPE)";"2003, 2025";"Energy Engineering and Power Technology";"Energy" +32159;21100936616;"Springer Handbooks";book series;"25228706, 25228692";"Springer International Publishing";No;No;;-;45;152;678;17109;1010;0;1,63;112,56;16,67;0;Switzerland;Western Europe;"Springer International Publishing";"2006-2008, 2014, 2016-2025";"Multidisciplinary";"Multidisciplinary" +32160;21101082513;"Springer Proceedings in Materials";book series;"2662317X, 26623161";"Springer";No;No;;-;11;1252;1535;26354;474;0;0,30;21,05;32,35;0;Singapore;Asiatic Region;"Springer";"2019-2026";"Ceramics and Composites; Electronic, Optical and Magnetic Materials; Metals and Alloys; Renewable Energy, Sustainability and the Environment";"Energy; Materials Science" +32161;21101089990;"Springer Series in Design and Innovation";book series;"26618184, 26618192";"Springer Nature";No;No;;-;9;778;1054;14148;362;0;0,35;18,19;0,00;0;United States;Northern America;"Springer Nature";"2020-2026";"Communication; Management of Technology and Innovation; Social Sciences (miscellaneous); Urban Studies";"Business, Management and Accounting; Social Sciences" +32162;21100215917;"Stadsgeschiedenis";journal;"18720676";"Leuven University Press";No;No;;-;5;8;4;224;1;0;0,25;28,00;25,00;0;Netherlands;Western Europe;"Leuven University Press";"2011-2019, 2023, 2025";"History; Urban Studies";"Arts and Humanities; Social Sciences" +32163;4100151521;"Studies in Law Politics and Society";book series;"10594337";"Emerald Group Publishing Ltd.";No;No;;-;12;51;12;2642;0;0;0,00;51,80;36,84;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2003-2021, 2023-2026";"Law; Political Science and International Relations; Sociology and Political Science";"Social Sciences" +32164;21100296637;"Studies in Managerial and Financial Accounting";book series;"14793512";"Emerald Group Publishing Ltd.";No;No;;-;15;29;38;1645;108;0;3,18;56,72;40,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2008-2018, 2020, 2022, 2024-2026";"Accounting; Business, Management and Accounting (miscellaneous)";"Business, Management and Accounting" +32165;5000158607;"Studies in Qualitative Methodology";book series;"10423192";"Emerald Group Publishing Ltd.";No;No;;-;14;6;0;95;0;0;0,00;15,83;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000, 2004, 2006, 2008, 2010, 2014, 2016-2019, 2025-2026";"Education; Social Sciences (miscellaneous); Sociology and Political Science";"Social Sciences" +32166;21100425318;"Studies in Religion and the Arts";book series;"18773192";"Brill Academic Publishers";No;No;;-;5;2;30;1086;2;0;0,07;543,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2012, 2015, 2017-2019, 2021, 2023-2025";"Religious Studies; Visual Arts and Performing Arts";"Arts and Humanities" +32167;21101290573;"Studies in Somaesthetics";book series;"24518646";"Brill Academic Publishers";No;No;;-;5;1;56;301;20;0;0,42;301,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2018-2019, 2021-2026";"Arts and Humanities (miscellaneous); Cultural Studies; Literature and Literary Theory; Philosophy";"Arts and Humanities; Social Sciences" +32168;18664;"Studies in Symbolic Interaction";book series;"01632396";"Emerald Group Publishing Ltd.";No;No;;-;17;40;38;1245;11;0;0,47;31,13;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2000-2006, 2008-2017, 2019, 2021-2022, 2024-2026";"Sociology and Political Science";"Social Sciences" +32169;21100818515;"Studies in the Development of Accounting Thought";book series;"14793504";"Emerald Group Publishing Ltd.";No;No;;-;1;1;0;695;0;0;0,00;695,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2016-2020, 2025-2026";"Accounting";"Business, Management and Accounting" +32170;21100406737;"Studies in the History of Political Thought";book series;"18736548";"Brill Academic Publishers";No;No;;-;6;1;16;200;4;0;0,00;200,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2009-2012, 2014-2015, 2018-2022, 2025";"History; Sociology and Political Science";"Arts and Humanities; Social Sciences" +32171;21100873744;"Supplement to Aramaic Studies";book series;"24682810";"Brill Academic Publishers";No;No;;-;1;1;1;301;0;0;0,00;301,00;0,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2017, 2019, 2021-2022, 2025";"Religious Studies";"Arts and Humanities" +32172;21100457423;"Technology and Change in History";book series;"1385920X";"Brill Academic Publishers";No;No;;-;10;1;0;112;0;0;0,00;112,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2008-2009, 2018-2020, 2025";"History; History and Philosophy of Science";"Arts and Humanities" +32173;21100461344;"Technology Innovation Entrepreneurship and Competitive Strategy";book series;"1479067X";"Emerald Group Publishing Ltd.";No;No;;-;7;4;0;116;0;0;0,00;29,00;0,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2004, 2007, 2014, 2016, 2025-2026";"Management of Technology and Innovation; Strategy and Management";"Business, Management and Accounting" +32174;21100256101;"Telkomnika (Telecommunication Computing Electronics and Control) (discontinued)";journal;"16936930, 23029293";"Universitas Ahmad Dahlan";Yes;No;;-;38;26;460;834;746;460;1,66;32,08;27,27;0;Indonesia;Asiatic Region;"Universitas Ahmad Dahlan";"2011-2025";"Electrical and Electronic Engineering";"Engineering" +32175;21101377438;"Temas de Historia Argentina y Americana";journal;"26181924, 16668146";"Pontificia Universidad Catolica Argentina";No;No;;-;0;8;0;82;0;0;0,00;10,25;30,00;0;Argentina;Latin America;"Pontificia Universidad Catolica Argentina";"2025";"History";"Arts and Humanities" +32176;21101180438;"Texila International Journal of Public Health (discontinued)";journal;"25203134";"";No;No;;-;6;245;617;7151;238;617;0,44;29,19;42,59;0;Guyana;Latin America;"";"2019-2025";"Medicine (miscellaneous); Public Health, Environmental and Occupational Health";"Medicine" +32177;21968;"Theoretical and Computational Chemistry";book series;"13807323, 22121617";"Elsevier B.V.";No;No;;-;34;52;29;3775;42;0;0,00;72,60;0,00;0;Netherlands;Western Europe;"Elsevier B.V.";"1995-1996, 1998-1999, 2001-2005, 2007, 2021-2022, 2025";"Physical and Theoretical Chemistry";"Chemistry" +32178;21100207003;"Theranostics (discontinued)";journal;"18387640";"Ivyspring International Publisher";Yes;No;;-;199;447;1199;26865;18471;1199;14,16;60,10;41,56;0;Australia;Pacific Region;"Ivyspring International Publisher";"2011-2025";"Medicine (miscellaneous); Pharmacology, Toxicology and Pharmaceutics (miscellaneous)";"Medicine; Pharmacology, Toxicology and Pharmaceutics" +32179;60332;"Thermal Spray";conference and proceedings;"27681505, 27681491";"ASM International";No;No;;-;28;71;0;1330;0;0;0,00;18,73;20,59;0;United States;Northern America;"ASM International";"1998, 2000-2001, 2004, 2006-2007, 2009, 2012-2013, 2015-2019, 2025";"Materials Chemistry; Surfaces and Interfaces; Surfaces, Coatings and Films";"Materials Science; Physics and Astronomy" +32180;18934;"Tijdschrift voor Diergeneeskunde";journal;"00407453";"Koninklijke Nederlandse Maatschappij voor Diergeneeskunde";No;No;;-;23;157;0;90;0;0;0,00;0,57;51,92;0;Netherlands;Western Europe;"Koninklijke Nederlandse Maatschappij voor Diergeneeskunde";"1946, 1948-1949, 1961-1963, 1971-2014, 2017, 2025-2026";"Veterinary (miscellaneous)";"Veterinary" +32181;21972;"Topics in Current Chemistry (Switzerland)";journal;"23648961, 23650869";"Springer Science and Business Media Deutschland GmbH";No;No;;-;2;19;0;3029;0;0;0,00;159,42;37,21;0;Germany;Western Europe;"Springer Science and Business Media Deutschland GmbH";"1983, 1986, 1997, 2006-2007, 2016, 2020, 2025-2026";"Chemistry (miscellaneous)";"Chemistry" +32182;21100298059;"Tourism Social Science Series";book series;"29781418, 15715043";"Emerald Publishing";No;No;;-;13;12;42;1205;57;0;1,36;100,42;83,33;0;United Kingdom;Western Europe;"Emerald Publishing";"2012-2013, 2015-2016, 2018-2019, 2023-2026";"Anthropology; Tourism, Leisure and Hospitality Management";"Business, Management and Accounting; Social Sciences" +32183;21100228948;"TPM - Testing, Psychometrics, Methodology in Applied Psychology (discontinued)";journal;"19726325";"Cises srl";No;No;;-;36;430;98;10817;125;96;1,25;25,16;43,51;0;Italy;Western Europe;"Cises srl";"2005, 2007-2025";"Applied Psychology; Psychology (miscellaneous); Social Psychology";"Psychology" +32184;21100390382;"Transport and Sustainability";book series;"20449941, 2044995X";"Emerald Group Publishing Ltd.";No;No;;-;20;39;58;1388;55;0;1,20;35,59;50,00;0;United Kingdom;Western Europe;"Emerald Group Publishing Ltd.";"2012-2018, 2020-2022, 2024-2026";"Management, Monitoring, Policy and Law; Transportation";"Environmental Science; Social Sciences" +32185;21100902942;"Typological Studies in Language";book series;"01677373";"John Benjamins Publishing Company";No;No;;-;8;11;26;679;2;0;0,00;61,73;55,00;0;Netherlands;Western Europe;"John Benjamins Publishing Company";"2008-2009, 2011, 2015-2022, 2025";"Linguistics and Language";"Social Sciences" +32186;21101176846;"Ukrainian Journal of Forest and Wood Science (discontinued)";journal;"26644460, 26644452";"National University of Life and Environmental Sciences of Ukraine";Yes;No;;-;8;18;95;744;96;95;1,38;41,33;50,00;0;Ukraine;Eastern Europe;"National University of Life and Environmental Sciences of Ukraine";"2019-2025";"Ecology; Forestry; Management, Monitoring, Policy and Law; Plant Science";"Agricultural and Biological Sciences; Environmental Science" +32187;21101289431;"Ukrainian Journal of Veterinary Sciences (discontinued)";journal;"26639688, 2663967X";"National University of Life and Environmental Sciences of Ukraine";Yes;No;;-;5;8;94;267;54;94;0,63;33,38;40,74;0;Ukraine;Eastern Europe;"National University of Life and Environmental Sciences of Ukraine";"2022-2025";"Veterinary (miscellaneous)";"Veterinary" +32188;4500151536;"USDA Forest Service - Research Note PNW-RN";journal;"08899738";"USDA Forest Service";No;No;;-;6;1;0;15;0;0;0,00;15,00;0,00;0;United States;Northern America;"USDA Forest Service";"1998-2010, 2012-2015, 2017, 2019-2021, 2025";"Ecology; Forestry; Plant Science";"Agricultural and Biological Sciences; Environmental Science" +32189;21101337327;"Vascular Diseases (France)";journal;"30506581, 3050659X";"Elsevier Masson s.r.l.";No;No;;-;1;24;0;507;0;0;0,00;21,13;43,21;0;France;Western Europe;"Elsevier Masson s.r.l.";"2025-2026";"Cardiology and Cardiovascular Medicine";"Medicine" +32190;6000152775;"Visual Culture in Britain";journal;"14714787, 19418361";"Taylor and Francis Ltd.";No;No;;-;10;15;0;394;0;0;0,00;26,27;50,00;0;United Kingdom;Western Europe;"Taylor and Francis Ltd.";"2009-2021, 2025";"Communication; Cultural Studies; Visual Arts and Performing Arts";"Arts and Humanities; Social Sciences" +32191;21100407965;"Women and Gender: The Middle East and the Islamic World";book series;"15707628";"Brill Academic Publishers";No;No;;-;10;1;0;154;0;0;0,00;154,00;100,00;0;Netherlands;Western Europe;"Brill Academic Publishers";"2007, 2009-2013, 2016-2017, 2019-2020, 2025";"Cultural Studies; Gender Studies; Religious Studies";"Arts and Humanities; Social Sciences" +32192;21101320233;"Workshop on Power Electronics and Power Quality Applications, PEPQA";journal;"25788485, 2993494X";"Institute of Electrical and Electronics Engineers Inc.";No;No;;-;1;25;0;402;0;0;0,00;16,08;16,07;0;United States;Northern America;"Institute of Electrical and Electronics Engineers Inc.";"2025";"Control and Optimization; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Mechanical Engineering; Safety, Risk, Reliability and Quality";"Energy; Engineering; Mathematics" +32193;21101197366;"ZooNotes (discontinued)";journal;"13139916";"Plovdiv University Press";No;No;;-;5;13;64;108;14;64;0,25;8,31;37,93;0;Bulgaria;Eastern Europe;"Plovdiv University Press";"2019-2025";"Ecology; Environmental Science (miscellaneous); Health, Toxicology and Mutagenesis; Nature and Landscape Conservation";"Environmental Science" diff --git a/data/scimagojr_2025.rda b/data/scimagojr_2025.rda new file mode 100644 index 0000000..c1b11d6 Binary files /dev/null and b/data/scimagojr_2025.rda differ diff --git a/docs/404.html b/docs/404.html new file mode 100644 index 0000000..8f313fe --- /dev/null +++ b/docs/404.html @@ -0,0 +1,77 @@ + + + + + + + +Page not found (404) • JournalAnalysis + + + + + + + + + Skip to contents + + +
+
+
+ +Content not found. Please use links in the navbar. + +
+
+ + + +
+ + + + + + + diff --git a/docs/404.md b/docs/404.md new file mode 100644 index 0000000..5107f89 --- /dev/null +++ b/docs/404.md @@ -0,0 +1,3 @@ +Content not found. Please use links in the navbar. + +# Page not found (404) diff --git a/docs/AGENTS.html b/docs/AGENTS.html new file mode 100644 index 0000000..114e84d --- /dev/null +++ b/docs/AGENTS.html @@ -0,0 +1,196 @@ + +JournalAnalysis — Agent Guide • JournalAnalysis + Skip to contents + + +
+
+
+ +
+ +
+

Project

+

R package matching Europe PMC articles to Scimago/InCites journal metrics. Read README.md for workflow order and usage examples.

+

Entry point: get_publication_data() returns a list with journals, articles, and combined elements.

+

Source layout:

+ + + + + + + + + + +
FileResponsibility
R/articles.REurope PMC queries, filtering, ISSN parsing
R/journals.RScimago/InCites data loading and ISSN filtering
R/combined.ROrchestrates article + journal pipeline
R/helpers.RWord cloud, CSV export, package installer
+
+

Advanced R priorities

+
  1. Correct, explicit functions over clever shortcuts
  2. +
  3. Vectorized dplyr joins over row-wise loops
  4. +
  5. Early input validation; loud failures
  6. +
  7. Tests for changed behavior (testthat 3e)
  8. +
  9. Profile before optimizing API or join code
  10. +
+
+

Foundations — prefer this over that

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AvoidPreferWhy
+exists("x") in functions +x <- NULL + is.null(x) +No dependence on calling environment
1:length(x)seq_along(x)Safe when length(x) == 0 +
"tbl" %in% class(x)inherits(x, "tbl_df")Proper S3 check
+as.data.frame() for splitsMatrix indexing or tidyr::separate_wider_* +Tibble-native, fewer coercions
+$ assignment on tibblesdplyr::mutate()Predictable, pipe-friendly
dplyr::one_of()dplyr::any_of()Deprecated selector
biocLite()BiocManager::install()Deprecated installer
+remove() in functionsLet locals go out of scopeFunction scope handles cleanup
+
+

Never

+
  • +exists() for local state
  • +
  • +1:length(x) indexing
  • +
  • Metaprogramming (eval(parse()), NSE tricks) without a documented need
  • +
  • Silent NULL returns on invalid input
  • +
  • Unused imports or dead parallel setup (e.g. BiocParallel::SnowParam() with no use)
  • +
  • +library() calls in R/ (use @importFrom instead)
  • +
  • Drive-by refactors outside the requested scope
  • +
+
+

Functions and interfaces

+
  • Validate inputs early: rlang::arg_match(), stopifnot(), or explicit stop() +
  • +
  • Fail loudly with informative errors; use warning() only for recoverable partial loss
  • +
  • Implicit return on the last expression; avoid return() unless clarity demands it
  • +
  • Keep functions pure where possible: no assign() in parent frames
  • +
  • Side-effect functions (get_word_cloud(), save_as_csv()) must document what they write and what they return
  • +
  • Do not export helpers unless user-facing; use @keywords internal for internal APIs
  • +
+
+

Performance

+
  • +Do not row-loop over articles/journals when a vectorized join works
  • +
  • +Do profile first (bench, profvis) before optimizing
  • +
  • Europe PMC calls are I/O-bound; limit caps results per query, not total
  • +
  • Pagination is not implemented; document that limitation when touching API code
  • +
  • +BiocParallel belongs in Imports only if actually parallelized
  • +
+
+

Package hotspots

+
  • +get_articles_with_journal_data(): primary performance and correctness risk; row-wise loop with repeated filter() + left_join() should be vectorized
  • +
  • ISSN normalization: strip hyphens, uppercase X, split primary/secondary in one place
  • +
  • +incities / incites / jcr are the same InCites (JCR) source; scimago / scimagojr are Scimago
  • +
  • Bundled metrics are snapshot datasets (jcr2023_wos, scimagojr2025); do not assume current impact factors
  • +
  • Filter messages in get_article_data() should only print when the filter actually runs
  • +
  • +get_unique_issns() should deduplicate ISSNs
  • +
+
+

Debugging

+
  • For non-obvious bugs, build a minimal reprex before refactoring
  • +
  • Do not silence warnings without documenting why
  • +
  • Fix root cause over adding defensive branches everywhere
  • +
+
+

Package engineering

+
  • Scaffold new functions and tests with usethis +
  • +
  • Organize functions by topic in R/, not in one file
  • +
  • Regenerate .Rd and NAMESPACE after roxygen edits
  • +
  • Remove unused Imports when cleaning dependencies
  • +
  • Add testthat tests for any changed behavior
  • +
  • +LICENSE must match DESCRIPTION (currently MIT)
  • +
+
+

Change discipline

+
  • Minimal diffs: one concern per change
  • +
  • Match existing naming, file layout, and tidyverse conventions
  • +
  • Set seeds where randomness exists
  • +
  • Document assumptions in roxygen, not only in chat
  • +
+
+ +

Style and formatting: .cursor/rules/r.mdc Explanation format: .cursor/rules/user-style.mdc Statistical rigor: .cursor/rules/analyses.mdc README structure: .cursor/rules/readme.mdc

+

Do not duplicate those files here.

+
+
+ +
+ + +
+ + + + + + + diff --git a/docs/CONTRIBUTING.html b/docs/CONTRIBUTING.html new file mode 100644 index 0000000..86811d4 --- /dev/null +++ b/docs/CONTRIBUTING.html @@ -0,0 +1,170 @@ + +Contributing • JournalAnalysis + Skip to contents + + +
+
+
+ +
+ +

We welcome contributions! This document provides guidelines for contributing to JournalAnalysis.

+
+

Submitting Bugs

+
+

Before Submitting

+

Before submitting a bug report, please do the following:

+
  • +Make sure you’re on the latest version. Your problem may have been solved already.
  • +
  • +Try older versions. If you’re on the latest release, try rolling back a few minor versions to help narrow down when the problem first arose.
  • +
  • +Search the project’s issue tracker to make sure it’s not a known issue.
  • +
+
+

Bug Report Contents

+

Make sure your report includes:

+
  • +Operating system: Windows? macOS? Linux? Include version details.
  • +
  • +R version: Output from R.version.string or sessionInfo().
  • +
  • +Package version: Output from packageVersion("JournalAnalysis").
  • +
  • +RStudio version: If the addin is involved, include your RStudio build.
  • +
  • +Installation method: r-universe, GitHub (devtools::install_github), or source.
  • +
  • +Steps to reproduce: Include a minimal example, the command or addin steps you used, and the full output or error message.
  • +
+
+
+

Contributing Changes

+
+

Licensing

+

By contributing to this project, you agree that your contributions will be licensed under the same terms as the rest of the project (see the LICENSE file in the repository root).

+
  • Per-file copyright/license headers are typically not needed. Please don’t add your own copyright headers to new files unless the project’s license actually requires them.
  • +
+
+

Version Control

+
  • +Always make a new branch for your work, no matter how small.
  • +
  • Don’t submit unrelated changes in the same branch/pull request.
  • +
  • +Base your branch on main for new features and most bug fixes.
  • +
  • If your PR has been sidelined for a while, rebase or merge to latest main before resubmitting.
  • +
+
+

Code Formatting

+
  • +Follow the style used in the repository. Consistency with the rest of the project always trumps other considerations.
  • +
  • Use snake_case for functions and variables, <- for assignment, and 2-space indentation.
  • +
+
+

Documentation

+

Documentation is required for all contributions:

+
  • +Roxygen2 comments must be created or updated for exported functions.
  • +
  • +README or pkgdown docs should be updated when user-facing behavior changes.
  • +
  • +Changelog entry should credit the contributor when the change is user-visible.
  • +
+
+

Tests

+

Tests are required for all contributions:

+
  • +Bug fixes must include a test proving the existence of the bug being fixed.
  • +
  • +New features must include tests proving they actually work.
  • +
  • Run devtools::test() locally before opening a pull request.
  • +
+
+
+

Workflow Example

+

Here’s an example workflow for contributing:

+
+

Preparing Your Fork

+
  1. Fork the repository on GitHub.
  2. +
  3. Clone your fork: git clone git@github.com:yourname/JournalAnalysis.git +
  4. +
  5. cd JournalAnalysis
  6. +
  7. Install development dependencies: devtools::install_dev_deps() +
  8. +
  9. Create a branch: git checkout -b fix-description main +
  10. +
+
+

Making Your Changes

+
  1. Write tests expecting the correct/fixed functionality; make sure they fail initially.
  2. +
  3. Implement your changes.
  4. +
  5. Run tests again: devtools::test() +
  6. +
  7. Run a full check: devtools::check() +
  8. +
  9. Update documentation as needed.
  10. +
  11. Commit your changes: git commit -m "Brief description of changes" +
  12. +
+
+

Creating Pull Requests

+
  1. Push your branch: git push origin HEAD +
  2. +
  3. Visit GitHub and click the “Pull request” button.
  4. +
  5. In the description field, reference the issue number (if fixing an existing issue) or describe the issue and your fix.
  6. +
  7. Submit and be patient - maintainers will review when they can.
  8. +
+
+
+

Questions?

+

If you have questions about contributing, please open an issue or contact the maintainers.

+
+
+ +
+ + +
+ + + + + + + diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md new file mode 100644 index 0000000..eac1834 --- /dev/null +++ b/docs/CONTRIBUTING.md @@ -0,0 +1,123 @@ +# Contributing + +We welcome contributions! This document provides guidelines for +contributing to JournalAnalysis. + +## Submitting Bugs + +### Before Submitting + +Before submitting a bug report, please do the following: + +- **Make sure you’re on the latest version.** Your problem may have been + solved already. +- **Try older versions.** If you’re on the latest release, try rolling + back a few minor versions to help narrow down when the problem first + arose. +- **Search the project’s issue tracker** to make sure it’s not a known + issue. + +### Bug Report Contents + +Make sure your report includes: + +- **Operating system:** Windows? macOS? Linux? Include version details. +- **R version:** Output from `R.version.string` or + [`sessionInfo()`](https://rdrr.io/r/utils/sessionInfo.html). +- **Package version:** Output from `packageVersion("JournalAnalysis")`. +- **RStudio version:** If the addin is involved, include your RStudio + build. +- **Installation method:** r-universe, GitHub + ([`devtools::install_github`](https://devtools.r-lib.org/reference/install-deprecated.html)), + or source. +- **Steps to reproduce:** Include a minimal example, the command or + addin steps you used, and the full output or error message. + +## Contributing Changes + +### Licensing + +By contributing to this project, you agree that your contributions will +be licensed under the same terms as the rest of the project (see the +`LICENSE` file in the repository root). + +- Per-file copyright/license headers are typically not needed. Please + don’t add your own copyright headers to new files unless the project’s + license actually requires them. + +### Version Control + +- **Always make a new branch** for your work, no matter how small. +- **Don’t submit unrelated changes in the same branch/pull request.** +- **Base your branch on `main`** for new features and most bug fixes. +- If your PR has been sidelined for a while, **rebase or merge to latest + `main`** before resubmitting. + +### Code Formatting + +- **Follow the style used in the repository.** Consistency with the rest + of the project always trumps other considerations. +- Use snake_case for functions and variables, `<-` for assignment, and + 2-space indentation. + +### Documentation + +Documentation is required for all contributions: + +- **Roxygen2 comments** must be created or updated for exported + functions. +- **README or pkgdown docs** should be updated when user-facing behavior + changes. +- **Changelog entry** should credit the contributor when the change is + user-visible. + +### Tests + +Tests are required for all contributions: + +- **Bug fixes** must include a test proving the existence of the bug + being fixed. +- **New features** must include tests proving they actually work. +- Run + [`devtools::test()`](https://devtools.r-lib.org/reference/test.html) + locally before opening a pull request. + +## Workflow Example + +Here’s an example workflow for contributing: + +### Preparing Your Fork + +1. Fork the repository on GitHub. +2. Clone your fork: + `git clone git@github.com:yourname/JournalAnalysis.git` +3. `cd JournalAnalysis` +4. Install development dependencies: + [`devtools::install_dev_deps()`](https://devtools.r-lib.org/reference/install_deps.html) +5. Create a branch: `git checkout -b fix-description main` + +### Making Your Changes + +1. Write tests expecting the correct/fixed functionality; make sure + they fail initially. +2. Implement your changes. +3. Run tests again: + [`devtools::test()`](https://devtools.r-lib.org/reference/test.html) +4. Run a full check: + [`devtools::check()`](https://devtools.r-lib.org/reference/check.html) +5. Update documentation as needed. +6. Commit your changes: `git commit -m "Brief description of changes"` + +### Creating Pull Requests + +1. Push your branch: `git push origin HEAD` +2. Visit GitHub and click the “Pull request” button. +3. In the description field, reference the issue number (if fixing an + existing issue) or describe the issue and your fix. +4. Submit and be patient - maintainers will review when they can. + +## Questions? + +If you have questions about contributing, please [open an +issue](https://github.com/vallenderlab/JournalAnalysis/issues) or +contact the maintainers. diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html new file mode 100644 index 0000000..cdd4316 --- /dev/null +++ b/docs/LICENSE-text.html @@ -0,0 +1,58 @@ + +License • JournalAnalysis + Skip to contents + + +
+
+
+ +
YEAR: 2026
+COPYRIGHT HOLDER: Vallender Lab
+
+ +
+ + +
+ + + + + + + diff --git a/docs/LICENSE-text.md b/docs/LICENSE-text.md new file mode 100644 index 0000000..14c1945 --- /dev/null +++ b/docs/LICENSE-text.md @@ -0,0 +1,4 @@ +# License + + YEAR: 2026 + COPYRIGHT HOLDER: Vallender Lab diff --git a/docs/LICENSE.html b/docs/LICENSE.html new file mode 100644 index 0000000..d8f93d8 --- /dev/null +++ b/docs/LICENSE.html @@ -0,0 +1,62 @@ + +MIT License • JournalAnalysis + Skip to contents + + +
+
+
+ +
+ +

Copyright (c) 2018-2026 Vallender Lab

+

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

+

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

+

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+
+ +
+ + +
+ + + + + + + diff --git a/docs/LICENSE.md b/docs/LICENSE.md new file mode 100644 index 0000000..4eafccf --- /dev/null +++ b/docs/LICENSE.md @@ -0,0 +1,22 @@ +# MIT License + +Copyright (c) 2018-2026 Vallender Lab + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +“Software”), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/docs/articles/example.html b/docs/articles/example.html index 1447abd..2e20a80 100644 --- a/docs/articles/example.html +++ b/docs/articles/example.html @@ -1,410 +1,389 @@ - + - -JournalAnalysis Vignette • JournalAnalysis - - - - - - - + +Finding Journals for Your Paper • JournalAnalysis + + + + + + -
-
-
- - + + + diff --git a/docs/articles/example.md b/docs/articles/example.md new file mode 100644 index 0000000..469d85a --- /dev/null +++ b/docs/articles/example.md @@ -0,0 +1,311 @@ +# Finding Journals for Your Paper + +JournalAnalysis matches Europe PMC articles to journal-level metrics +from Scimago or InCites (JCR). This tutorial walks through a typical +workflow: define a search, retrieve and inspect results, summarize +abstracts, rank journals, and export a shortlist. + +## Setup + +Load JournalAnalysis and dplyr for the filtering steps later in the +tutorial. + +``` r + +library(JournalAnalysis) +library(dplyr) +``` + +## Define your search + +Europe PMC queries use the same boolean syntax as the website search +box. You can pass one query or combine several; multiple queries are +unioned before filtering. + +JournalAnalysis also ships example query strings you can adapt: + +``` r + +query3 +#> [1] "microbiome AND (psychiatry OR psychology OR neuroscience) AND (rhesus OR macaque or human or stress or monkey) AND (NOT ecology)" +``` + +For this tutorial we use `query3`, which targets microbiome papers in +psychiatry, psychology, and neuroscience-related contexts while +excluding ecology papers. + +See the [Europe PMC search +help](https://europepmc.org/Help#whatserachingEPMC) for field names and +operators. + +## Retrieve publication data + +[`get_publication_data()`](https://vallenderlab.github.io/journalanalysis/reference/get_publication_data.md) +is the main entry point. It: + +1. Loads journal metrics from `scimago` or `incities` (InCites / JCR) +2. Queries Europe PMC for each search string +3. Filters articles by year and citation count +4. Joins articles to journals by ISSN + +Start with a modest `limit` while you refine the query: + +``` r + +pub_data <- get_publication_data( + journal_source = "scimago", + queries = query3, + limit = 200, + min_year = 2015, + min_citations = 3, + n_cores = 1 +) +#> 28861 records found, returning 200 +#> Removed records published before 2015. +#> Removed records with less than 3 citations. +#> Removed records with NA values for pmid, doi, and authors. +#> 17 records passed the filter. + +length(pub_data) +#> [1] 3 +names(pub_data) +#> [1] "journals" "articles" "combined" +vapply(pub_data, nrow, integer(1)) +#> journals articles combined +#> 16 17 17 +``` + +The returned list has three elements: + +| Element | Description | +|---------------------|-------------------------------------| +| `pub_data$articles` | Article metadata from Europe PMC | +| `pub_data$journals` | Journal metrics for matched ISSNs | +| `pub_data$combined` | Articles joined to journal metadata | + +## Inspect the results + +After retrieval, inspect each list element to confirm the query and +filters behaved as expected. + +``` r + +dplyr::glimpse(pub_data$articles) +#> Rows: 17 +#> Columns: 30 +#> $ id "41077197", "40420360", "40558535", "41092898", … +#> $ source "MED", "MED", "MED", "MED", "MED", "MED", "MED",… +#> $ pmid "41077197", "40420360", "40558535", "41092898", … +#> $ pmcid "PMC12666862", "PMC12106051", "PMC12190894", "PM… +#> $ doi "10.1016/j.jinf.2025.106626", "10.1002/alz.70273… +#> $ title "Age-related severity of nontuberculous mycobact… +#> $ authorString "Napier EG, Doratt BM, Cinco IR, Stuart EV, Gero… +#> $ journalTitle "J Infect", "Alzheimers Dement", "Cells", "Neuro… +#> $ pubYear 2025, 2025, 2025, 2025, 2025, 2025, 2024, 2025, … +#> $ journalIssn "01634453; 15322742;", "15525260; 15525279;", "2… +#> $ pageInfo "106626", "e70273", "908", "4107-4133", "226", "… +#> $ pubType "research-article; journal article", "review-art… +#> $ isOpenAccess "Y", "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y", "Y"… +#> $ inEPMC "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y"… +#> $ inPMC "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y"… +#> $ hasPDF "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y"… +#> $ hasBook "N", "N", "N", "N", "N", "N", "N", "N", "N", "N"… +#> $ hasSuppl "Y", "Y", "N", "N", "N", "N", "Y", "N", "Y", "Y"… +#> $ citedByCount 3, 10, 3, 8, 8, 3, 4, 7, 3, 3, 38, 10, 12, 4, 4,… +#> $ hasReferences "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y"… +#> $ hasTextMinedTerms "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y"… +#> $ hasDbCrossReferences "N", "N", "N", "N", "N", "N", "N", "N", "N", "N"… +#> $ hasLabsLinks "N", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y"… +#> $ hasTMAccessionNumbers "Y", "N", "N", "N", "N", "N", "Y", "N", "N", "N"… +#> $ firstIndexDate "2025-10-13", "2025-05-27", "2025-06-26", "2025-… +#> $ firstPublicationDate "2025-10-10", "2025-05-01", "2025-06-16", "2025-… +#> $ journalVolume "91", "21", "14", "113", "30", "17", "10", "19",… +#> $ issue "5", "5", "12", "24", "1", "5", "12", NA, NA, "1… +#> $ ISSN.1 "01634453", "15525260", "20734409", "08966273", … +#> $ ISSN.2 "15322742;", "15525279;", "", "10974199;", "2047… +dplyr::glimpse(pub_data$journals) +#> Rows: 16 +#> Columns: 28 +#> $ Rank 115, 306, 349, 501, 752, 800, 900, 1215, 144… +#> $ Sourceid 17978, 19700182758, 3600148102, 50032, 21100… +#> $ Title "Neuron", "Nature Communications", "Alzheime… +#> $ Type "journal", "journal", "journal", "journal", … +#> $ Issn "10974199, 08966273", "20411723", "15525279,… +#> $ Publisher "Cell Press", "Nature Research", "John Wiley… +#> $ Open.Access "No", "Yes", "No", "Yes", "No", "Yes", "No",… +#> $ Open.Access.Diamond "No", "No", "No", "No", "No", "No", "No", "N… +#> $ SJR 8.564, 4.904, 4.530, 3.685, 2.906, 2.827, 2.… +#> $ SJR.Best.Quartile "Q1", "Q1", "Q1", "Q1", "Q1", "Q1", "Q1", "Q… +#> $ H.index 569, 634, 194, 189, 124, 144, 247, 152, 193,… +#> $ Total.Docs...2025. 348, 11528, 1244, 300, 12, 538, 365, 289, 83… +#> $ Total.Docs...3years. 1058, 26313, 1938, 947, 28, 1598, 1033, 1072… +#> $ Total.Refs. 27520, 755955, 72380, 24581, 1953, 30815, 14… +#> $ Total.Citations..3years. 12733, 452297, 17963, 12017, 277, 10831, 542… +#> $ Citable.Docs...3years. 778, 25888, 1394, 946, 25, 1593, 700, 394, 2… +#> $ Citations...Doc...2years. 11.25, 16.60, 11.93, 11.19, 7.86, 6.38, 5.10… +#> $ Ref....Doc. 79.08, 65.58, 58.18, 81.94, 162.75, 57.28, 3… +#> $ X.Female 41.08, 37.59, 49.88, 47.54, 75.56, 43.29, 46… +#> $ Overton 2, 91, 6, 1, 0, 0, 0, 7, 6, 0, 1, 0, 6, 0, 0… +#> $ Country "United States", "United Kingdom", "United S… +#> $ Region "Northern America", "Western Europe", "North… +#> $ Coverage "1988-2026", "2010-2026", "2005-2026", "2004… +#> $ Categories "Neuroscience (miscellaneous) (Q1)", "Bioche… +#> $ Areas "Neuroscience", "Biochemistry, Genetics and … +#> $ ISSN "10974199; 08966273", "20411723", "15525279;… +#> $ ISSN.1 "10974199", "20411723", "15525279", "1742209… +#> $ ISSN.2 "08966273", "", "15525260", "", "21683492", … +dplyr::glimpse(pub_data$combined) +#> Rows: 17 +#> Columns: 55 +#> $ id "41077197", "40420360", "40558535", "4109289… +#> $ source "MED", "MED", "MED", "MED", "MED", "MED", "M… +#> $ pmid "41077197", "40420360", "40558535", "4109289… +#> $ pmcid "PMC12666862", "PMC12106051", "PMC12190894",… +#> $ doi "10.1016/j.jinf.2025.106626", "10.1002/alz.7… +#> $ title "Age-related severity of nontuberculous myco… +#> $ authorString "Napier EG, Doratt BM, Cinco IR, Stuart EV, … +#> $ journalTitle "J Infect", "Alzheimers Dement", "Cells", "N… +#> $ pubYear 2025, 2025, 2025, 2025, 2025, 2025, 2024, 20… +#> $ journalIssn "01634453; 15322742;", "15525260; 15525279;"… +#> $ pageInfo "106626", "e70273", "908", "4107-4133", "226… +#> $ pubType "research-article; journal article", "review… +#> $ isOpenAccess "Y", "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y",… +#> $ inEPMC "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y",… +#> $ inPMC "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y",… +#> $ hasPDF "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y",… +#> $ hasBook "N", "N", "N", "N", "N", "N", "N", "N", "N",… +#> $ hasSuppl "Y", "Y", "N", "N", "N", "N", "Y", "N", "Y",… +#> $ citedByCount 3, 10, 3, 8, 8, 3, 4, 7, 3, 3, 38, 10, 12, 4… +#> $ hasReferences "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y",… +#> $ hasTextMinedTerms "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y",… +#> $ hasDbCrossReferences "N", "N", "N", "N", "N", "N", "N", "N", "N",… +#> $ hasLabsLinks "N", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y",… +#> $ hasTMAccessionNumbers "Y", "N", "N", "N", "N", "N", "Y", "N", "N",… +#> $ firstIndexDate "2025-10-13", "2025-05-27", "2025-06-26", "2… +#> $ firstPublicationDate "2025-10-10", "2025-05-01", "2025-06-16", "2… +#> $ journalVolume "91", "21", "14", "113", "30", "17", "10", "… +#> $ issue "5", "5", "12", "24", "1", "5", "12", NA, NA… +#> $ ISSN.1 "01634453", "15525260", "20734409", "0896627… +#> $ ISSN.2 "15322742;", "15525279;", "", "10974199;", "… +#> $ Rank 1215, 349, 1977, 115, 31880, 6244, 2223, 266… +#> $ Sourceid 22428, 3600148102, 21100978391, 17978, 13221… +#> $ Title "Journal of Infection", "Alzheimer's and Dem… +#> $ Type "journal", "journal", "journal", "journal", … +#> $ Issn "01634453, 15322742", "15525279, 15525260", … +#> $ Publisher "W.B. Saunders Ltd", "John Wiley and Sons In… +#> $ Open.Access "Yes", "No", "Yes", "No", "Yes", "Yes", "Yes… +#> $ Open.Access.Diamond "No", "No", "No", "No", "No", "No", "No", "N… +#> $ SJR 2.180, 4.530, 1.687, 8.564, NA, 0.856, 1.575… +#> $ SJR.Best.Quartile "Q1", "Q1", "Q1", "Q1", "-", "Q2", "Q1", "Q2… +#> $ H.index 152, 194, 196, 569, 78, 33, 62, 152, 115, 19… +#> $ Total.Docs...2025. 289, 1244, 2022, 348, 174, 205, 251, 245, 14… +#> $ Total.Docs...3years. 1072, 1938, 9075, 1058, 1543, 310, 579, 1625… +#> $ Total.Refs. 10607, 72380, 189277, 27520, 0, 12013, 16063… +#> $ Total.Citations..3years. 3945, 17963, 58352, 12733, 7128, 1050, 2788,… +#> $ Citable.Docs...3years. 394, 1394, 8892, 778, 1534, 305, 576, 1459, … +#> $ Citations...Doc...2years. 4.41, 11.93, 6.13, 11.25, 4.74, 3.50, 4.24, … +#> $ Ref....Doc. 36.70, 58.18, 93.61, 79.08, 0.00, 58.60, 64.… +#> $ X.Female 46.76, 49.88, 47.25, 41.08, 41.83, 45.26, 45… +#> $ Overton 7, 6, 0, 2, 1, 0, 1, 0, 0, 0, 1, 91, 6, 0, 0… +#> $ Country "United Kingdom", "United States", "Switzerl… +#> $ Region "Western Europe", "Northern America", "Weste… +#> $ Coverage "1979-2026", "2005-2026", "2011-2026", "1988… +#> $ Categories "Infectious Diseases (Q1); Microbiology (med… +#> $ Areas "Medicine", "Medicine; Neuroscience", "Bioch… +``` + +PubMed IDs for the matched articles: + +``` r + +pmids <- pub_data$articles$pmid +head(pmids) +#> [1] "41077197" "40420360" "40558535" "41092898" "40176069" "40423227" +``` + +## Summarize abstracts + +[`get_word_cloud()`](https://vallenderlab.github.io/journalanalysis/reference/get_word_cloud.md) +fetches abstracts for a vector of PubMed IDs and writes a PNG word +cloud: + +``` r + +wordcloud_path <- "microbiome_psych_wordcloud.png" + +get_word_cloud( + pubmed_ids = pmids, + plot_name = wordcloud_path +) +#> There are total 17 PMIDs +#> Warning in tm_map.SimpleCorpus(abstTxt, removePunctuation): transformation +#> drops documents +#> Warning in tm_map.SimpleCorpus(text2.corpus, function(x) removeNumbers(x)): +#> transformation drops documents +#> Warning in tm_map.SimpleCorpus(text2.corpus, tolower): transformation drops +#> documents +#> Warning in tm_map.SimpleCorpus(text2.corpus, removeWords, +#> stopwords("english")): transformation drops documents +#> agg_png +#> 2 + +knitr::include_graphics(wordcloud_path) +``` + +![](microbiome_psych_wordcloud.png) + +## Rank journals + +Filter the matched journals to subject areas of interest, then keep +titles at or above the median SJR within that subset. + +``` r + +cats <- "Multidisciplinary|Neuroscience|Psychology|Psychiatry" + +best_journals <- pub_data$journals |> + filter( + Type == "journal", + SJR >= median(SJR, na.rm = TRUE), + grepl(cats, Categories) + ) |> + select(Title, Rank, Type, SJR, Country, Categories) + +best_journals +#> # A tibble: 5 × 6 +#> Title Rank Type SJR Country Categories +#> +#> 1 Neuron 115 journal 8.56 United States Neuroscie… +#> 2 Nature Communications 306 journal 4.90 United Kingd… Biochemis… +#> 3 Alzheimer's and Dementia 349 journal 4.53 United States Cellular … +#> 4 Journal of Neuroinflammation 501 journal 3.68 United Kingd… Cellular … +#> 5 Alcohol Research: Current Reviews 752 journal 2.91 United States Clinical … +``` + +Adjust the category pattern and ranking rule to match your field. For +InCites data (`journal_source = "incities"`, or aliases `incites` / +`jcr`), use columns such as `Journal.Impact.Factor` instead of `SJR`. + +## Export results + +Save the ranked journal table for review outside R. + +``` r + +export_path <- file.path(tempdir(), "highest_impact_relevant_journals") +save_as_csv(best_journals, filename = export_path) +list.files(tempdir(), pattern = "highest_impact_relevant_journals", full.names = TRUE) +#> [1] "/var/folders/x3/bn50kh8d2gq567vs62v09ncm0000gq/T//RtmpZqdeHk/highest_impact_relevant_journals.csv" +``` + +## Next steps + +- Tighten or broaden the Europe PMC query and re-run + [`get_publication_data()`](https://vallenderlab.github.io/journalanalysis/reference/get_publication_data.md) +- Compare `scimago` and `incities` (InCites / JCR) journal sources for + your topic +- See + [`?get_publication_data`](https://vallenderlab.github.io/journalanalysis/reference/get_publication_data.md) + and the [function + reference](https://vallenderlab.github.io/journalanalysis/reference/index.html) + for all parameters diff --git a/docs/articles/index.html b/docs/articles/index.html index 643b716..a249a46 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -1,139 +1,60 @@ - - - - - - +Articles • JournalAnalysis + Skip to contents -Articles • JournalAnalysis - - - - +
-
- - -
-
-
-
+ + + - - - + diff --git a/docs/articles/index.md b/docs/articles/index.md new file mode 100644 index 0000000..b325ab1 --- /dev/null +++ b/docs/articles/index.md @@ -0,0 +1,6 @@ +# Articles + +### Tutorials + +- [Finding Journals for Your + Paper](https://vallenderlab.github.io/journalanalysis/articles/example.md): diff --git a/docs/articles/microbiome_psych_wordcloud.png b/docs/articles/microbiome_psych_wordcloud.png index 709fc38..e8fa604 100644 Binary files a/docs/articles/microbiome_psych_wordcloud.png and b/docs/articles/microbiome_psych_wordcloud.png differ diff --git a/docs/authors.html b/docs/authors.html index a11c755..c17b9ff 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -1,144 +1,84 @@ - - - - - - +Authors and Citation • JournalAnalysis + Skip to contents -Authors • JournalAnalysis - - - - +
+
+
-
+
+ + - -
- - - + diff --git a/docs/authors.md b/docs/authors.md new file mode 100644 index 0000000..a1d41e2 --- /dev/null +++ b/docs/authors.md @@ -0,0 +1,24 @@ +# Authors and Citation + +## Authors + +- **[Robert Gilmore](https://github.com/grabear)**. Author, maintainer. + +- **[Shaurita Hutchins](https://www.shauritahutchins.com)**. Author. + +## Citation + +Source: +[`DESCRIPTION`](https://github.com/vallenderlab/JournalAnalysis/blob/HEAD/DESCRIPTION) + +Gilmore R, Hutchins S (2026). *JournalAnalysis: Explore and Identify +Journals to Publish in.*. R package version 0.2.0, +. + + @Manual{, + title = {JournalAnalysis: Explore and Identify Journals to Publish in.}, + author = {Robert Gilmore and Shaurita Hutchins}, + year = {2026}, + note = {R package version 0.2.0}, + url = {https://github.com/vallenderlab/JournalAnalysis}, + } diff --git a/docs/bootstrap-toc.css b/docs/bootstrap-toc.css new file mode 100644 index 0000000..5a85941 --- /dev/null +++ b/docs/bootstrap-toc.css @@ -0,0 +1,60 @@ +/*! + * Bootstrap Table of Contents v0.4.1 (http://afeld.github.io/bootstrap-toc/) + * Copyright 2015 Aidan Feldman + * Licensed under MIT (https://github.com/afeld/bootstrap-toc/blob/gh-pages/LICENSE.md) */ + +/* modified from https://github.com/twbs/bootstrap/blob/94b4076dd2efba9af71f0b18d4ee4b163aa9e0dd/docs/assets/css/src/docs.css#L548-L601 */ + +/* All levels of nav */ +nav[data-toggle='toc'] .nav > li > a { + display: block; + padding: 4px 20px; + font-size: 13px; + font-weight: 500; + color: #767676; +} +nav[data-toggle='toc'] .nav > li > a:hover, +nav[data-toggle='toc'] .nav > li > a:focus { + padding-left: 19px; + color: #563d7c; + text-decoration: none; + background-color: transparent; + border-left: 1px solid #563d7c; +} +nav[data-toggle='toc'] .nav > .active > a, +nav[data-toggle='toc'] .nav > .active:hover > a, +nav[data-toggle='toc'] .nav > .active:focus > a { + padding-left: 18px; + font-weight: bold; + color: #563d7c; + background-color: transparent; + border-left: 2px solid #563d7c; +} + +/* Nav: second level (shown on .active) */ +nav[data-toggle='toc'] .nav .nav { + display: none; /* Hide by default, but at >768px, show it */ + padding-bottom: 10px; +} +nav[data-toggle='toc'] .nav .nav > li > a { + padding-top: 1px; + padding-bottom: 1px; + padding-left: 30px; + font-size: 12px; + font-weight: normal; +} +nav[data-toggle='toc'] .nav .nav > li > a:hover, +nav[data-toggle='toc'] .nav .nav > li > a:focus { + padding-left: 29px; +} +nav[data-toggle='toc'] .nav .nav > .active > a, +nav[data-toggle='toc'] .nav .nav > .active:hover > a, +nav[data-toggle='toc'] .nav .nav > .active:focus > a { + padding-left: 28px; + font-weight: 500; +} + +/* from https://github.com/twbs/bootstrap/blob/e38f066d8c203c3e032da0ff23cd2d6098ee2dd6/docs/assets/css/src/docs.css#L631-L634 */ +nav[data-toggle='toc'] .nav > .active > ul { + display: block; +} diff --git a/docs/bootstrap-toc.js b/docs/bootstrap-toc.js new file mode 100644 index 0000000..1cdd573 --- /dev/null +++ b/docs/bootstrap-toc.js @@ -0,0 +1,159 @@ +/*! + * Bootstrap Table of Contents v0.4.1 (http://afeld.github.io/bootstrap-toc/) + * Copyright 2015 Aidan Feldman + * Licensed under MIT (https://github.com/afeld/bootstrap-toc/blob/gh-pages/LICENSE.md) */ +(function() { + 'use strict'; + + window.Toc = { + helpers: { + // return all matching elements in the set, or their descendants + findOrFilter: function($el, selector) { + // http://danielnouri.org/notes/2011/03/14/a-jquery-find-that-also-finds-the-root-element/ + // http://stackoverflow.com/a/12731439/358804 + var $descendants = $el.find(selector); + return $el.filter(selector).add($descendants).filter(':not([data-toc-skip])'); + }, + + generateUniqueIdBase: function(el) { + var text = $(el).text(); + var anchor = text.trim().toLowerCase().replace(/[^A-Za-z0-9]+/g, '-'); + return anchor || el.tagName.toLowerCase(); + }, + + generateUniqueId: function(el) { + var anchorBase = this.generateUniqueIdBase(el); + for (var i = 0; ; i++) { + var anchor = anchorBase; + if (i > 0) { + // add suffix + anchor += '-' + i; + } + // check if ID already exists + if (!document.getElementById(anchor)) { + return anchor; + } + } + }, + + generateAnchor: function(el) { + if (el.id) { + return el.id; + } else { + var anchor = this.generateUniqueId(el); + el.id = anchor; + return anchor; + } + }, + + createNavList: function() { + return $(''); + }, + + createChildNavList: function($parent) { + var $childList = this.createNavList(); + $parent.append($childList); + return $childList; + }, + + generateNavEl: function(anchor, text) { + var $a = $(''); + $a.attr('href', '#' + anchor); + $a.text(text); + var $li = $('
  • '); + $li.append($a); + return $li; + }, + + generateNavItem: function(headingEl) { + var anchor = this.generateAnchor(headingEl); + var $heading = $(headingEl); + var text = $heading.data('toc-text') || $heading.text(); + return this.generateNavEl(anchor, text); + }, + + // Find the first heading level (`

    `, then `

    `, etc.) that has more than one element. Defaults to 1 (for `

    `). + getTopLevel: function($scope) { + for (var i = 1; i <= 6; i++) { + var $headings = this.findOrFilter($scope, 'h' + i); + if ($headings.length > 1) { + return i; + } + } + + return 1; + }, + + // returns the elements for the top level, and the next below it + getHeadings: function($scope, topLevel) { + var topSelector = 'h' + topLevel; + + var secondaryLevel = topLevel + 1; + var secondarySelector = 'h' + secondaryLevel; + + return this.findOrFilter($scope, topSelector + ',' + secondarySelector); + }, + + getNavLevel: function(el) { + return parseInt(el.tagName.charAt(1), 10); + }, + + populateNav: function($topContext, topLevel, $headings) { + var $context = $topContext; + var $prevNav; + + var helpers = this; + $headings.each(function(i, el) { + var $newNav = helpers.generateNavItem(el); + var navLevel = helpers.getNavLevel(el); + + // determine the proper $context + if (navLevel === topLevel) { + // use top level + $context = $topContext; + } else if ($prevNav && $context === $topContext) { + // create a new level of the tree and switch to it + $context = helpers.createChildNavList($prevNav); + } // else use the current $context + + $context.append($newNav); + + $prevNav = $newNav; + }); + }, + + parseOps: function(arg) { + var opts; + if (arg.jquery) { + opts = { + $nav: arg + }; + } else { + opts = arg; + } + opts.$scope = opts.$scope || $(document.body); + return opts; + } + }, + + // accepts a jQuery object, or an options object + init: function(opts) { + opts = this.helpers.parseOps(opts); + + // ensure that the data attribute is in place for styling + opts.$nav.attr('data-toggle', 'toc'); + + var $topContext = this.helpers.createChildNavList(opts.$nav); + var topLevel = this.helpers.getTopLevel(opts.$scope); + var $headings = this.helpers.getHeadings(opts.$scope, topLevel); + this.helpers.populateNav($topContext, topLevel, $headings); + } + }; + + $(function() { + $('nav[data-toggle="toc"]').each(function(i, el) { + var $nav = $(el); + Toc.init($nav); + }); + }); +})(); diff --git a/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js b/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js new file mode 100644 index 0000000..e8f21f7 --- /dev/null +++ b/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v5.3.1 (https://getbootstrap.com/) + * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t=new Map,e={set(e,i,n){t.has(e)||t.set(e,new Map);const s=t.get(e);s.has(i)||0===s.size?s.set(i,n):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(e,i)=>t.has(e)&&t.get(e).get(i)||null,remove(e,i){if(!t.has(e))return;const n=t.get(e);n.delete(i),0===n.size&&t.delete(e)}},i="transitionend",n=t=>(t&&window.CSS&&window.CSS.escape&&(t=t.replace(/#([^\s"#']+)/g,((t,e)=>`#${CSS.escape(e)}`))),t),s=t=>{t.dispatchEvent(new Event(i))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(n(t)):null,a=t=>{if(!o(t)||0===t.getClientRects().length)return!1;const e="visible"===getComputedStyle(t).getPropertyValue("visibility"),i=t.closest("details:not([open])");if(!i)return e;if(i!==t){const e=t.closest("summary");if(e&&e.parentNode!==i)return!1;if(null===e)return!1}return e},l=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),c=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?c(t.parentNode):null},h=()=>{},d=t=>{t.offsetHeight},u=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,f=[],p=()=>"rtl"===document.documentElement.dir,m=t=>{var e;e=()=>{const e=u();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(f.length||document.addEventListener("DOMContentLoaded",(()=>{for(const t of f)t()})),f.push(e)):e()},g=(t,e=[],i=t)=>"function"==typeof t?t(...e):i,_=(t,e,n=!0)=>{if(!n)return void g(t);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let r=!1;const a=({target:n})=>{n===e&&(r=!0,e.removeEventListener(i,a),g(t))};e.addEventListener(i,a),setTimeout((()=>{r||s(e)}),o)},b=(t,e,i,n)=>{const s=t.length;let o=t.indexOf(e);return-1===o?!i&&n?t[s-1]:t[0]:(o+=i?1:-1,n&&(o=(o+s)%s),t[Math.max(0,Math.min(o,s-1))])},v=/[^.]*(?=\..*)\.|.*/,y=/\..*/,w=/::\d+$/,A={};let E=1;const T={mouseenter:"mouseover",mouseleave:"mouseout"},C=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function O(t,e){return e&&`${e}::${E++}`||t.uidEvent||E++}function x(t){const e=O(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function k(t,e,i=null){return Object.values(t).find((t=>t.callable===e&&t.delegationSelector===i))}function L(t,e,i){const n="string"==typeof e,s=n?i:e||i;let o=I(t);return C.has(o)||(o=t),[n,s,o]}function S(t,e,i,n,s){if("string"!=typeof e||!t)return;let[o,r,a]=L(e,i,n);if(e in T){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};r=t(r)}const l=x(t),c=l[a]||(l[a]={}),h=k(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=O(r,e.replace(v,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(const a of o)if(a===r)return P(s,{delegateTarget:r}),n.oneOff&&N.off(t,s.type,e,i),i.apply(r,[s])}}(t,i,r):function(t,e){return function i(n){return P(n,{delegateTarget:t}),i.oneOff&&N.off(t,n.type,e),e.apply(t,[n])}}(t,r);u.delegationSelector=o?i:null,u.callable=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function D(t,e,i,n,s){const o=k(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function $(t,e,i,n){const s=e[i]||{};for(const[o,r]of Object.entries(s))o.includes(n)&&D(t,e,i,r.callable,r.delegationSelector)}function I(t){return t=t.replace(y,""),T[t]||t}const N={on(t,e,i,n){S(t,e,i,n,!1)},one(t,e,i,n){S(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=L(e,i,n),a=r!==e,l=x(t),c=l[r]||{},h=e.startsWith(".");if(void 0===o){if(h)for(const i of Object.keys(l))$(t,l,i,e.slice(1));for(const[i,n]of Object.entries(c)){const s=i.replace(w,"");a&&!e.includes(s)||D(t,l,r,n.callable,n.delegationSelector)}}else{if(!Object.keys(c).length)return;D(t,l,r,o,s?i:null)}},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=u();let s=null,o=!0,r=!0,a=!1;e!==I(e)&&n&&(s=n.Event(e,i),n(t).trigger(s),o=!s.isPropagationStopped(),r=!s.isImmediatePropagationStopped(),a=s.isDefaultPrevented());const l=P(new Event(e,{bubbles:o,cancelable:!0}),i);return a&&l.preventDefault(),r&&t.dispatchEvent(l),l.defaultPrevented&&s&&s.preventDefault(),l}};function P(t,e={}){for(const[i,n]of Object.entries(e))try{t[i]=n}catch(e){Object.defineProperty(t,i,{configurable:!0,get:()=>n})}return t}function M(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function j(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}const F={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${j(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${j(e)}`)},getDataAttributes(t){if(!t)return{};const e={},i=Object.keys(t.dataset).filter((t=>t.startsWith("bs")&&!t.startsWith("bsConfig")));for(const n of i){let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=M(t.dataset[n])}return e},getDataAttribute:(t,e)=>M(t.getAttribute(`data-bs-${j(e)}`))};class H{static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(t){return t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t}_mergeConfigObj(t,e){const i=o(e)?F.getDataAttribute(e,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...o(e)?F.getDataAttributes(e):{},..."object"==typeof t?t:{}}}_typeCheckConfig(t,e=this.constructor.DefaultType){for(const[n,s]of Object.entries(e)){const e=t[n],r=o(e)?"element":null==(i=e)?`${i}`:Object.prototype.toString.call(i).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(s).test(r))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${n}" provided type "${r}" but expected type "${s}".`)}var i}}class W extends H{constructor(t,i){super(),(t=r(t))&&(this._element=t,this._config=this._getConfig(i),e.set(this._element,this.constructor.DATA_KEY,this))}dispose(){e.remove(this._element,this.constructor.DATA_KEY),N.off(this._element,this.constructor.EVENT_KEY);for(const t of Object.getOwnPropertyNames(this))this[t]=null}_queueCallback(t,e,i=!0){_(t,e,i)}_getConfig(t){return t=this._mergeConfigObj(t,this._element),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}static getInstance(t){return e.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.3.1"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(t){return`${t}${this.EVENT_KEY}`}}const B=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return n(e)},z={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode.closest(e);for(;n;)i.push(n),n=n.parentNode.closest(e);return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(",");return this.find(e,t).filter((t=>!l(t)&&a(t)))},getSelectorFromElement(t){const e=B(t);return e&&z.findOne(e)?e:null},getElementFromSelector(t){const e=B(t);return e?z.findOne(e):null},getMultipleElementsFromSelector(t){const e=B(t);return e?z.find(e):[]}},R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,n=t.NAME;N.on(document,i,`[data-bs-dismiss="${n}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),l(this))return;const s=z.getElementFromSelector(this)||this.closest(`.${n}`);t.getOrCreateInstance(s)[e]()}))},q=".bs.alert",V=`close${q}`,K=`closed${q}`;class Q extends W{static get NAME(){return"alert"}close(){if(N.trigger(this._element,V).defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),N.trigger(this._element,K),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=Q.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(Q,"close"),m(Q);const X='[data-bs-toggle="button"]';class Y extends W{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=Y.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}N.on(document,"click.bs.button.data-api",X,(t=>{t.preventDefault();const e=t.target.closest(X);Y.getOrCreateInstance(e).toggle()})),m(Y);const U=".bs.swipe",G=`touchstart${U}`,J=`touchmove${U}`,Z=`touchend${U}`,tt=`pointerdown${U}`,et=`pointerup${U}`,it={endCallback:null,leftCallback:null,rightCallback:null},nt={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class st extends H{constructor(t,e){super(),this._element=t,t&&st.isSupported()&&(this._config=this._getConfig(e),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return it}static get DefaultType(){return nt}static get NAME(){return"swipe"}dispose(){N.off(this._element,U)}_start(t){this._supportPointerEvents?this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX):this._deltaX=t.touches[0].clientX}_end(t){this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX-this._deltaX),this._handleSwipe(),g(this._config.endCallback)}_move(t){this._deltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this._deltaX}_handleSwipe(){const t=Math.abs(this._deltaX);if(t<=40)return;const e=t/this._deltaX;this._deltaX=0,e&&g(e>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(N.on(this._element,tt,(t=>this._start(t))),N.on(this._element,et,(t=>this._end(t))),this._element.classList.add("pointer-event")):(N.on(this._element,G,(t=>this._start(t))),N.on(this._element,J,(t=>this._move(t))),N.on(this._element,Z,(t=>this._end(t))))}_eventIsPointerPenTouch(t){return this._supportPointerEvents&&("pen"===t.pointerType||"touch"===t.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}const ot=".bs.carousel",rt=".data-api",at="next",lt="prev",ct="left",ht="right",dt=`slide${ot}`,ut=`slid${ot}`,ft=`keydown${ot}`,pt=`mouseenter${ot}`,mt=`mouseleave${ot}`,gt=`dragstart${ot}`,_t=`load${ot}${rt}`,bt=`click${ot}${rt}`,vt="carousel",yt="active",wt=".active",At=".carousel-item",Et=wt+At,Tt={ArrowLeft:ht,ArrowRight:ct},Ct={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},Ot={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class xt extends W{constructor(t,e){super(t,e),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=z.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===vt&&this.cycle()}static get Default(){return Ct}static get DefaultType(){return Ot}static get NAME(){return"carousel"}next(){this._slide(at)}nextWhenVisible(){!document.hidden&&a(this._element)&&this.next()}prev(){this._slide(lt)}pause(){this._isSliding&&s(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval((()=>this.nextWhenVisible()),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?N.one(this._element,ut,(()=>this.cycle())):this.cycle())}to(t){const e=this._getItems();if(t>e.length-1||t<0)return;if(this._isSliding)return void N.one(this._element,ut,(()=>this.to(t)));const i=this._getItemIndex(this._getActive());if(i===t)return;const n=t>i?at:lt;this._slide(n,e[t])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(t){return t.defaultInterval=t.interval,t}_addEventListeners(){this._config.keyboard&&N.on(this._element,ft,(t=>this._keydown(t))),"hover"===this._config.pause&&(N.on(this._element,pt,(()=>this.pause())),N.on(this._element,mt,(()=>this._maybeEnableCycle()))),this._config.touch&&st.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const t of z.find(".carousel-item img",this._element))N.on(t,gt,(t=>t.preventDefault()));const t={leftCallback:()=>this._slide(this._directionToOrder(ct)),rightCallback:()=>this._slide(this._directionToOrder(ht)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((()=>this._maybeEnableCycle()),500+this._config.interval))}};this._swipeHelper=new st(this._element,t)}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=Tt[t.key];e&&(t.preventDefault(),this._slide(this._directionToOrder(e)))}_getItemIndex(t){return this._getItems().indexOf(t)}_setActiveIndicatorElement(t){if(!this._indicatorsElement)return;const e=z.findOne(wt,this._indicatorsElement);e.classList.remove(yt),e.removeAttribute("aria-current");const i=z.findOne(`[data-bs-slide-to="${t}"]`,this._indicatorsElement);i&&(i.classList.add(yt),i.setAttribute("aria-current","true"))}_updateInterval(){const t=this._activeElement||this._getActive();if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);this._config.interval=e||this._config.defaultInterval}_slide(t,e=null){if(this._isSliding)return;const i=this._getActive(),n=t===at,s=e||b(this._getItems(),i,n,this._config.wrap);if(s===i)return;const o=this._getItemIndex(s),r=e=>N.trigger(this._element,e,{relatedTarget:s,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:o});if(r(dt).defaultPrevented)return;if(!i||!s)return;const a=Boolean(this._interval);this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(o),this._activeElement=s;const l=n?"carousel-item-start":"carousel-item-end",c=n?"carousel-item-next":"carousel-item-prev";s.classList.add(c),d(s),i.classList.add(l),s.classList.add(l),this._queueCallback((()=>{s.classList.remove(l,c),s.classList.add(yt),i.classList.remove(yt,c,l),this._isSliding=!1,r(ut)}),i,this._isAnimated()),a&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return z.findOne(Et,this._element)}_getItems(){return z.find(At,this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(t){return p()?t===ct?lt:at:t===ct?at:lt}_orderToDirection(t){return p()?t===lt?ct:ht:t===lt?ht:ct}static jQueryInterface(t){return this.each((function(){const e=xt.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)}))}}N.on(document,bt,"[data-bs-slide], [data-bs-slide-to]",(function(t){const e=z.getElementFromSelector(this);if(!e||!e.classList.contains(vt))return;t.preventDefault();const i=xt.getOrCreateInstance(e),n=this.getAttribute("data-bs-slide-to");return n?(i.to(n),void i._maybeEnableCycle()):"next"===F.getDataAttribute(this,"slide")?(i.next(),void i._maybeEnableCycle()):(i.prev(),void i._maybeEnableCycle())})),N.on(window,_t,(()=>{const t=z.find('[data-bs-ride="carousel"]');for(const e of t)xt.getOrCreateInstance(e)})),m(xt);const kt=".bs.collapse",Lt=`show${kt}`,St=`shown${kt}`,Dt=`hide${kt}`,$t=`hidden${kt}`,It=`click${kt}.data-api`,Nt="show",Pt="collapse",Mt="collapsing",jt=`:scope .${Pt} .${Pt}`,Ft='[data-bs-toggle="collapse"]',Ht={parent:null,toggle:!0},Wt={parent:"(null|element)",toggle:"boolean"};class Bt extends W{constructor(t,e){super(t,e),this._isTransitioning=!1,this._triggerArray=[];const i=z.find(Ft);for(const t of i){const e=z.getSelectorFromElement(t),i=z.find(e).filter((t=>t===this._element));null!==e&&i.length&&this._triggerArray.push(t)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return Ht}static get DefaultType(){return Wt}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t=[];if(this._config.parent&&(t=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter((t=>t!==this._element)).map((t=>Bt.getOrCreateInstance(t,{toggle:!1})))),t.length&&t[0]._isTransitioning)return;if(N.trigger(this._element,Lt).defaultPrevented)return;for(const e of t)e.hide();const e=this._getDimension();this._element.classList.remove(Pt),this._element.classList.add(Mt),this._element.style[e]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const i=`scroll${e[0].toUpperCase()+e.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt,Nt),this._element.style[e]="",N.trigger(this._element,St)}),this._element,!0),this._element.style[e]=`${this._element[i]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(N.trigger(this._element,Dt).defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,d(this._element),this._element.classList.add(Mt),this._element.classList.remove(Pt,Nt);for(const t of this._triggerArray){const e=z.getElementFromSelector(t);e&&!this._isShown(e)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt),N.trigger(this._element,$t)}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(Nt)}_configAfterMerge(t){return t.toggle=Boolean(t.toggle),t.parent=r(t.parent),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=this._getFirstLevelChildren(Ft);for(const e of t){const t=z.getElementFromSelector(e);t&&this._addAriaAndCollapsedClass([e],this._isShown(t))}}_getFirstLevelChildren(t){const e=z.find(jt,this._config.parent);return z.find(t,this._config.parent).filter((t=>!e.includes(t)))}_addAriaAndCollapsedClass(t,e){if(t.length)for(const i of t)i.classList.toggle("collapsed",!e),i.setAttribute("aria-expanded",e)}static jQueryInterface(t){const e={};return"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1),this.each((function(){const i=Bt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}N.on(document,It,Ft,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();for(const t of z.getMultipleElementsFromSelector(this))Bt.getOrCreateInstance(t,{toggle:!1}).toggle()})),m(Bt);var zt="top",Rt="bottom",qt="right",Vt="left",Kt="auto",Qt=[zt,Rt,qt,Vt],Xt="start",Yt="end",Ut="clippingParents",Gt="viewport",Jt="popper",Zt="reference",te=Qt.reduce((function(t,e){return t.concat([e+"-"+Xt,e+"-"+Yt])}),[]),ee=[].concat(Qt,[Kt]).reduce((function(t,e){return t.concat([e,e+"-"+Xt,e+"-"+Yt])}),[]),ie="beforeRead",ne="read",se="afterRead",oe="beforeMain",re="main",ae="afterMain",le="beforeWrite",ce="write",he="afterWrite",de=[ie,ne,se,oe,re,ae,le,ce,he];function ue(t){return t?(t.nodeName||"").toLowerCase():null}function fe(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function pe(t){return t instanceof fe(t).Element||t instanceof Element}function me(t){return t instanceof fe(t).HTMLElement||t instanceof HTMLElement}function ge(t){return"undefined"!=typeof ShadowRoot&&(t instanceof fe(t).ShadowRoot||t instanceof ShadowRoot)}const _e={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];me(s)&&ue(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});me(n)&&ue(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function be(t){return t.split("-")[0]}var ve=Math.max,ye=Math.min,we=Math.round;function Ae(){var t=navigator.userAgentData;return null!=t&&t.brands&&Array.isArray(t.brands)?t.brands.map((function(t){return t.brand+"/"+t.version})).join(" "):navigator.userAgent}function Ee(){return!/^((?!chrome|android).)*safari/i.test(Ae())}function Te(t,e,i){void 0===e&&(e=!1),void 0===i&&(i=!1);var n=t.getBoundingClientRect(),s=1,o=1;e&&me(t)&&(s=t.offsetWidth>0&&we(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&we(n.height)/t.offsetHeight||1);var r=(pe(t)?fe(t):window).visualViewport,a=!Ee()&&i,l=(n.left+(a&&r?r.offsetLeft:0))/s,c=(n.top+(a&&r?r.offsetTop:0))/o,h=n.width/s,d=n.height/o;return{width:h,height:d,top:c,right:l+h,bottom:c+d,left:l,x:l,y:c}}function Ce(t){var e=Te(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Oe(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&ge(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function xe(t){return fe(t).getComputedStyle(t)}function ke(t){return["table","td","th"].indexOf(ue(t))>=0}function Le(t){return((pe(t)?t.ownerDocument:t.document)||window.document).documentElement}function Se(t){return"html"===ue(t)?t:t.assignedSlot||t.parentNode||(ge(t)?t.host:null)||Le(t)}function De(t){return me(t)&&"fixed"!==xe(t).position?t.offsetParent:null}function $e(t){for(var e=fe(t),i=De(t);i&&ke(i)&&"static"===xe(i).position;)i=De(i);return i&&("html"===ue(i)||"body"===ue(i)&&"static"===xe(i).position)?e:i||function(t){var e=/firefox/i.test(Ae());if(/Trident/i.test(Ae())&&me(t)&&"fixed"===xe(t).position)return null;var i=Se(t);for(ge(i)&&(i=i.host);me(i)&&["html","body"].indexOf(ue(i))<0;){var n=xe(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function Ie(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function Ne(t,e,i){return ve(t,ye(e,i))}function Pe(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function Me(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const je={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=be(i.placement),l=Ie(a),c=[Vt,qt].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return Pe("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:Me(t,Qt))}(s.padding,i),d=Ce(o),u="y"===l?zt:Vt,f="y"===l?Rt:qt,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=$e(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,A=Ne(v,w,y),E=l;i.modifiersData[n]=((e={})[E]=A,e.centerOffset=A-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Oe(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function Fe(t){return t.split("-")[1]}var He={top:"auto",right:"auto",bottom:"auto",left:"auto"};function We(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=t.isFixed,u=r.x,f=void 0===u?0:u,p=r.y,m=void 0===p?0:p,g="function"==typeof h?h({x:f,y:m}):{x:f,y:m};f=g.x,m=g.y;var _=r.hasOwnProperty("x"),b=r.hasOwnProperty("y"),v=Vt,y=zt,w=window;if(c){var A=$e(i),E="clientHeight",T="clientWidth";A===fe(i)&&"static"!==xe(A=Le(i)).position&&"absolute"===a&&(E="scrollHeight",T="scrollWidth"),(s===zt||(s===Vt||s===qt)&&o===Yt)&&(y=Rt,m-=(d&&A===w&&w.visualViewport?w.visualViewport.height:A[E])-n.height,m*=l?1:-1),s!==Vt&&(s!==zt&&s!==Rt||o!==Yt)||(v=qt,f-=(d&&A===w&&w.visualViewport?w.visualViewport.width:A[T])-n.width,f*=l?1:-1)}var C,O=Object.assign({position:a},c&&He),x=!0===h?function(t,e){var i=t.x,n=t.y,s=e.devicePixelRatio||1;return{x:we(i*s)/s||0,y:we(n*s)/s||0}}({x:f,y:m},fe(i)):{x:f,y:m};return f=x.x,m=x.y,l?Object.assign({},O,((C={})[y]=b?"0":"",C[v]=_?"0":"",C.transform=(w.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",C)):Object.assign({},O,((e={})[y]=b?m+"px":"",e[v]=_?f+"px":"",e.transform="",e))}const Be={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:be(e.placement),variation:Fe(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,We(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,We(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var ze={passive:!0};const Re={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=fe(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,ze)})),a&&l.addEventListener("resize",i.update,ze),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,ze)})),a&&l.removeEventListener("resize",i.update,ze)}},data:{}};var qe={left:"right",right:"left",bottom:"top",top:"bottom"};function Ve(t){return t.replace(/left|right|bottom|top/g,(function(t){return qe[t]}))}var Ke={start:"end",end:"start"};function Qe(t){return t.replace(/start|end/g,(function(t){return Ke[t]}))}function Xe(t){var e=fe(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Ye(t){return Te(Le(t)).left+Xe(t).scrollLeft}function Ue(t){var e=xe(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ge(t){return["html","body","#document"].indexOf(ue(t))>=0?t.ownerDocument.body:me(t)&&Ue(t)?t:Ge(Se(t))}function Je(t,e){var i;void 0===e&&(e=[]);var n=Ge(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=fe(n),r=s?[o].concat(o.visualViewport||[],Ue(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Je(Se(r)))}function Ze(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function ti(t,e,i){return e===Gt?Ze(function(t,e){var i=fe(t),n=Le(t),s=i.visualViewport,o=n.clientWidth,r=n.clientHeight,a=0,l=0;if(s){o=s.width,r=s.height;var c=Ee();(c||!c&&"fixed"===e)&&(a=s.offsetLeft,l=s.offsetTop)}return{width:o,height:r,x:a+Ye(t),y:l}}(t,i)):pe(e)?function(t,e){var i=Te(t,!1,"fixed"===e);return i.top=i.top+t.clientTop,i.left=i.left+t.clientLeft,i.bottom=i.top+t.clientHeight,i.right=i.left+t.clientWidth,i.width=t.clientWidth,i.height=t.clientHeight,i.x=i.left,i.y=i.top,i}(e,i):Ze(function(t){var e,i=Le(t),n=Xe(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=ve(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=ve(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+Ye(t),l=-n.scrollTop;return"rtl"===xe(s||i).direction&&(a+=ve(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Le(t)))}function ei(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?be(s):null,r=s?Fe(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case zt:e={x:a,y:i.y-n.height};break;case Rt:e={x:a,y:i.y+i.height};break;case qt:e={x:i.x+i.width,y:l};break;case Vt:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?Ie(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case Xt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case Yt:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ii(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.strategy,r=void 0===o?t.strategy:o,a=i.boundary,l=void 0===a?Ut:a,c=i.rootBoundary,h=void 0===c?Gt:c,d=i.elementContext,u=void 0===d?Jt:d,f=i.altBoundary,p=void 0!==f&&f,m=i.padding,g=void 0===m?0:m,_=Pe("number"!=typeof g?g:Me(g,Qt)),b=u===Jt?Zt:Jt,v=t.rects.popper,y=t.elements[p?b:u],w=function(t,e,i,n){var s="clippingParents"===e?function(t){var e=Je(Se(t)),i=["absolute","fixed"].indexOf(xe(t).position)>=0&&me(t)?$e(t):t;return pe(i)?e.filter((function(t){return pe(t)&&Oe(t,i)&&"body"!==ue(t)})):[]}(t):[].concat(e),o=[].concat(s,[i]),r=o[0],a=o.reduce((function(e,i){var s=ti(t,i,n);return e.top=ve(s.top,e.top),e.right=ye(s.right,e.right),e.bottom=ye(s.bottom,e.bottom),e.left=ve(s.left,e.left),e}),ti(t,r,n));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}(pe(y)?y:y.contextElement||Le(t.elements.popper),l,h,r),A=Te(t.elements.reference),E=ei({reference:A,element:v,strategy:"absolute",placement:s}),T=Ze(Object.assign({},v,E)),C=u===Jt?T:A,O={top:w.top-C.top+_.top,bottom:C.bottom-w.bottom+_.bottom,left:w.left-C.left+_.left,right:C.right-w.right+_.right},x=t.modifiersData.offset;if(u===Jt&&x){var k=x[s];Object.keys(O).forEach((function(t){var e=[qt,Rt].indexOf(t)>=0?1:-1,i=[zt,Rt].indexOf(t)>=0?"y":"x";O[t]+=k[i]*e}))}return O}function ni(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?ee:l,h=Fe(n),d=h?a?te:te.filter((function(t){return Fe(t)===h})):Qt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ii(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[be(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const si={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=be(g),b=l||(_!==g&&p?function(t){if(be(t)===Kt)return[];var e=Ve(t);return[Qe(t),e,Qe(e)]}(g):[Ve(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(be(i)===Kt?ni(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,A=new Map,E=!0,T=v[0],C=0;C=0,S=L?"width":"height",D=ii(e,{placement:O,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),$=L?k?qt:Vt:k?Rt:zt;y[S]>w[S]&&($=Ve($));var I=Ve($),N=[];if(o&&N.push(D[x]<=0),a&&N.push(D[$]<=0,D[I]<=0),N.every((function(t){return t}))){T=O,E=!1;break}A.set(O,N)}if(E)for(var P=function(t){var e=v.find((function(e){var i=A.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==P(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function oi(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function ri(t){return[zt,qt,Rt,Vt].some((function(e){return t[e]>=0}))}const ai={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ii(e,{elementContext:"reference"}),a=ii(e,{altBoundary:!0}),l=oi(r,n),c=oi(a,s,o),h=ri(l),d=ri(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},li={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=ee.reduce((function(t,i){return t[i]=function(t,e,i){var n=be(t),s=[Vt,zt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[Vt,qt].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},ci={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=ei({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},hi={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ii(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=be(e.placement),b=Fe(e.placement),v=!b,y=Ie(_),w="x"===y?"y":"x",A=e.modifiersData.popperOffsets,E=e.rects.reference,T=e.rects.popper,C="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,O="number"==typeof C?{mainAxis:C,altAxis:C}:Object.assign({mainAxis:0,altAxis:0},C),x=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,k={x:0,y:0};if(A){if(o){var L,S="y"===y?zt:Vt,D="y"===y?Rt:qt,$="y"===y?"height":"width",I=A[y],N=I+g[S],P=I-g[D],M=f?-T[$]/2:0,j=b===Xt?E[$]:T[$],F=b===Xt?-T[$]:-E[$],H=e.elements.arrow,W=f&&H?Ce(H):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},z=B[S],R=B[D],q=Ne(0,E[$],W[$]),V=v?E[$]/2-M-q-z-O.mainAxis:j-q-z-O.mainAxis,K=v?-E[$]/2+M+q+R+O.mainAxis:F+q+R+O.mainAxis,Q=e.elements.arrow&&$e(e.elements.arrow),X=Q?"y"===y?Q.clientTop||0:Q.clientLeft||0:0,Y=null!=(L=null==x?void 0:x[y])?L:0,U=I+K-Y,G=Ne(f?ye(N,I+V-Y-X):N,I,f?ve(P,U):P);A[y]=G,k[y]=G-I}if(a){var J,Z="x"===y?zt:Vt,tt="x"===y?Rt:qt,et=A[w],it="y"===w?"height":"width",nt=et+g[Z],st=et-g[tt],ot=-1!==[zt,Vt].indexOf(_),rt=null!=(J=null==x?void 0:x[w])?J:0,at=ot?nt:et-E[it]-T[it]-rt+O.altAxis,lt=ot?et+E[it]+T[it]-rt-O.altAxis:st,ct=f&&ot?function(t,e,i){var n=Ne(t,e,i);return n>i?i:n}(at,et,lt):Ne(f?at:nt,et,f?lt:st);A[w]=ct,k[w]=ct-et}e.modifiersData[n]=k}},requiresIfExists:["offset"]};function di(t,e,i){void 0===i&&(i=!1);var n,s,o=me(e),r=me(e)&&function(t){var e=t.getBoundingClientRect(),i=we(e.width)/t.offsetWidth||1,n=we(e.height)/t.offsetHeight||1;return 1!==i||1!==n}(e),a=Le(e),l=Te(t,r,i),c={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(o||!o&&!i)&&(("body"!==ue(e)||Ue(a))&&(c=(n=e)!==fe(n)&&me(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:Xe(n)),me(e)?((h=Te(e,!0)).x+=e.clientLeft,h.y+=e.clientTop):a&&(h.x=Ye(a))),{x:l.left+c.scrollLeft-h.x,y:l.top+c.scrollTop-h.y,width:l.width,height:l.height}}function ui(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var fi={placement:"bottom",modifiers:[],strategy:"absolute"};function pi(){for(var t=arguments.length,e=new Array(t),i=0;iNumber.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||"static"===this._config.display)&&(F.setDataAttribute(this._menu,"popper","static"),t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,...g(this._config.popperConfig,[t])}}_selectMenuItem({key:t,target:e}){const i=z.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter((t=>a(t)));i.length&&b(i,e,t===Ti,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=qi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;const e=z.find(Ni);for(const i of e){const e=qi.getInstance(i);if(!e||!1===e._config.autoClose)continue;const n=t.composedPath(),s=n.includes(e._menu);if(n.includes(e._element)||"inside"===e._config.autoClose&&!s||"outside"===e._config.autoClose&&s)continue;if(e._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;const o={relatedTarget:e._element};"click"===t.type&&(o.clickEvent=t),e._completeHide(o)}}static dataApiKeydownHandler(t){const e=/input|textarea/i.test(t.target.tagName),i="Escape"===t.key,n=[Ei,Ti].includes(t.key);if(!n&&!i)return;if(e&&!i)return;t.preventDefault();const s=this.matches(Ii)?this:z.prev(this,Ii)[0]||z.next(this,Ii)[0]||z.findOne(Ii,t.delegateTarget.parentNode),o=qi.getOrCreateInstance(s);if(n)return t.stopPropagation(),o.show(),void o._selectMenuItem(t);o._isShown()&&(t.stopPropagation(),o.hide(),s.focus())}}N.on(document,Si,Ii,qi.dataApiKeydownHandler),N.on(document,Si,Pi,qi.dataApiKeydownHandler),N.on(document,Li,qi.clearMenus),N.on(document,Di,qi.clearMenus),N.on(document,Li,Ii,(function(t){t.preventDefault(),qi.getOrCreateInstance(this).toggle()})),m(qi);const Vi="backdrop",Ki="show",Qi=`mousedown.bs.${Vi}`,Xi={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},Yi={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class Ui extends H{constructor(t){super(),this._config=this._getConfig(t),this._isAppended=!1,this._element=null}static get Default(){return Xi}static get DefaultType(){return Yi}static get NAME(){return Vi}show(t){if(!this._config.isVisible)return void g(t);this._append();const e=this._getElement();this._config.isAnimated&&d(e),e.classList.add(Ki),this._emulateAnimation((()=>{g(t)}))}hide(t){this._config.isVisible?(this._getElement().classList.remove(Ki),this._emulateAnimation((()=>{this.dispose(),g(t)}))):g(t)}dispose(){this._isAppended&&(N.off(this._element,Qi),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_configAfterMerge(t){return t.rootElement=r(t.rootElement),t}_append(){if(this._isAppended)return;const t=this._getElement();this._config.rootElement.append(t),N.on(t,Qi,(()=>{g(this._config.clickCallback)})),this._isAppended=!0}_emulateAnimation(t){_(t,this._getElement(),this._config.isAnimated)}}const Gi=".bs.focustrap",Ji=`focusin${Gi}`,Zi=`keydown.tab${Gi}`,tn="backward",en={autofocus:!0,trapElement:null},nn={autofocus:"boolean",trapElement:"element"};class sn extends H{constructor(t){super(),this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return en}static get DefaultType(){return nn}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),N.off(document,Gi),N.on(document,Ji,(t=>this._handleFocusin(t))),N.on(document,Zi,(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,N.off(document,Gi))}_handleFocusin(t){const{trapElement:e}=this._config;if(t.target===document||t.target===e||e.contains(t.target))return;const i=z.focusableChildren(e);0===i.length?e.focus():this._lastTabNavDirection===tn?i[i.length-1].focus():i[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?tn:"forward")}}const on=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",rn=".sticky-top",an="padding-right",ln="margin-right";class cn{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,an,(e=>e+t)),this._setElementAttributes(on,an,(e=>e+t)),this._setElementAttributes(rn,ln,(e=>e-t))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,an),this._resetElementAttributes(on,an),this._resetElementAttributes(rn,ln)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t).getPropertyValue(e);t.style.setProperty(e,`${i(Number.parseFloat(s))}px`)}))}_saveInitialAttribute(t,e){const i=t.style.getPropertyValue(e);i&&F.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=F.getDataAttribute(t,e);null!==i?(F.removeDataAttribute(t,e),t.style.setProperty(e,i)):t.style.removeProperty(e)}))}_applyManipulationCallback(t,e){if(o(t))e(t);else for(const i of z.find(t,this._element))e(i)}}const hn=".bs.modal",dn=`hide${hn}`,un=`hidePrevented${hn}`,fn=`hidden${hn}`,pn=`show${hn}`,mn=`shown${hn}`,gn=`resize${hn}`,_n=`click.dismiss${hn}`,bn=`mousedown.dismiss${hn}`,vn=`keydown.dismiss${hn}`,yn=`click${hn}.data-api`,wn="modal-open",An="show",En="modal-static",Tn={backdrop:!0,focus:!0,keyboard:!0},Cn={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class On extends W{constructor(t,e){super(t,e),this._dialog=z.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new cn,this._addEventListeners()}static get Default(){return Tn}static get DefaultType(){return Cn}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||N.trigger(this._element,pn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(wn),this._adjustDialog(),this._backdrop.show((()=>this._showElement(t))))}hide(){this._isShown&&!this._isTransitioning&&(N.trigger(this._element,dn).defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(An),this._queueCallback((()=>this._hideModal()),this._element,this._isAnimated())))}dispose(){N.off(window,hn),N.off(this._dialog,hn),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new Ui({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_showElement(t){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;const e=z.findOne(".modal-body",this._dialog);e&&(e.scrollTop=0),d(this._element),this._element.classList.add(An),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,N.trigger(this._element,mn,{relatedTarget:t})}),this._dialog,this._isAnimated())}_addEventListeners(){N.on(this._element,vn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())})),N.on(window,gn,(()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()})),N.on(this._element,bn,(t=>{N.one(this._element,_n,(e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())}))}))}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(wn),this._resetAdjustments(),this._scrollBar.reset(),N.trigger(this._element,fn)}))}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(N.trigger(this._element,un).defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._element.style.overflowY;"hidden"===e||this._element.classList.contains(En)||(t||(this._element.style.overflowY="hidden"),this._element.classList.add(En),this._queueCallback((()=>{this._element.classList.remove(En),this._queueCallback((()=>{this._element.style.overflowY=e}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;if(i&&!t){const t=p()?"paddingLeft":"paddingRight";this._element.style[t]=`${e}px`}if(!i&&t){const t=p()?"paddingRight":"paddingLeft";this._element.style[t]=`${e}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=On.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}N.on(document,yn,'[data-bs-toggle="modal"]',(function(t){const e=z.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),N.one(e,pn,(t=>{t.defaultPrevented||N.one(e,fn,(()=>{a(this)&&this.focus()}))}));const i=z.findOne(".modal.show");i&&On.getInstance(i).hide(),On.getOrCreateInstance(e).toggle(this)})),R(On),m(On);const xn=".bs.offcanvas",kn=".data-api",Ln=`load${xn}${kn}`,Sn="show",Dn="showing",$n="hiding",In=".offcanvas.show",Nn=`show${xn}`,Pn=`shown${xn}`,Mn=`hide${xn}`,jn=`hidePrevented${xn}`,Fn=`hidden${xn}`,Hn=`resize${xn}`,Wn=`click${xn}${kn}`,Bn=`keydown.dismiss${xn}`,zn={backdrop:!0,keyboard:!0,scroll:!1},Rn={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class qn extends W{constructor(t,e){super(t,e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return zn}static get DefaultType(){return Rn}static get NAME(){return"offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||N.trigger(this._element,Nn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new cn).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(Dn),this._queueCallback((()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(Sn),this._element.classList.remove(Dn),N.trigger(this._element,Pn,{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(N.trigger(this._element,Mn).defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add($n),this._backdrop.hide(),this._queueCallback((()=>{this._element.classList.remove(Sn,$n),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new cn).reset(),N.trigger(this._element,Fn)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){const t=Boolean(this._config.backdrop);return new Ui({className:"offcanvas-backdrop",isVisible:t,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:t?()=>{"static"!==this._config.backdrop?this.hide():N.trigger(this._element,jn)}:null})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_addEventListeners(){N.on(this._element,Bn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():N.trigger(this._element,jn))}))}static jQueryInterface(t){return this.each((function(){const e=qn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}N.on(document,Wn,'[data-bs-toggle="offcanvas"]',(function(t){const e=z.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this))return;N.one(e,Fn,(()=>{a(this)&&this.focus()}));const i=z.findOne(In);i&&i!==e&&qn.getInstance(i).hide(),qn.getOrCreateInstance(e).toggle(this)})),N.on(window,Ln,(()=>{for(const t of z.find(In))qn.getOrCreateInstance(t).show()})),N.on(window,Hn,(()=>{for(const t of z.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(t).position&&qn.getOrCreateInstance(t).hide()})),R(qn),m(qn);const Vn={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Kn=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Qn=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i,Xn=(t,e)=>{const i=t.nodeName.toLowerCase();return e.includes(i)?!Kn.has(i)||Boolean(Qn.test(t.nodeValue)):e.filter((t=>t instanceof RegExp)).some((t=>t.test(i)))},Yn={allowList:Vn,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"
    "},Un={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Gn={entry:"(string|element|function|null)",selector:"(string|element)"};class Jn extends H{constructor(t){super(),this._config=this._getConfig(t)}static get Default(){return Yn}static get DefaultType(){return Un}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map((t=>this._resolvePossibleFunction(t))).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(t){return this._checkContent(t),this._config.content={...this._config.content,...t},this}toHtml(){const t=document.createElement("div");t.innerHTML=this._maybeSanitize(this._config.template);for(const[e,i]of Object.entries(this._config.content))this._setContent(t,i,e);const e=t.children[0],i=this._resolvePossibleFunction(this._config.extraClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},Gn)}_setContent(t,e,i){const n=z.findOne(i,t);n&&((e=this._resolvePossibleFunction(e))?o(e)?this._putElementInTemplate(r(e),n):this._config.html?n.innerHTML=this._maybeSanitize(e):n.textContent=e:n.remove())}_maybeSanitize(t){return this._config.sanitize?function(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(const t of s){const i=t.nodeName.toLowerCase();if(!Object.keys(e).includes(i)){t.remove();continue}const n=[].concat(...t.attributes),s=[].concat(e["*"]||[],e[i]||[]);for(const e of n)Xn(e,s)||t.removeAttribute(e.nodeName)}return n.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return g(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Zn=new Set(["sanitize","allowList","sanitizeFn"]),ts="fade",es="show",is=".modal",ns="hide.bs.modal",ss="hover",os="focus",rs={AUTO:"auto",TOP:"top",RIGHT:p()?"left":"right",BOTTOM:"bottom",LEFT:p()?"right":"left"},as={allowList:Vn,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'',title:"",trigger:"hover focus"},ls={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class cs extends W{constructor(t,e){if(void 0===vi)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t,e),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return as}static get DefaultType(){return ls}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),N.off(this._element.closest(is),ns,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const t=N.trigger(this._element,this.constructor.eventName("show")),e=(c(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(t.defaultPrevented||!e)return;this._disposePopper();const i=this._getTipElement();this._element.setAttribute("aria-describedby",i.getAttribute("id"));const{container:n}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(n.append(i),N.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(i),i.classList.add(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.on(t,"mouseover",h);this._queueCallback((()=>{N.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1}),this.tip,this._isAnimated())}hide(){if(this._isShown()&&!N.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.off(t,"mouseover",h);this._activeTrigger.click=!1,this._activeTrigger[os]=!1,this._activeTrigger[ss]=!1,this._isHovered=null,this._queueCallback((()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),N.trigger(this._element,this.constructor.eventName("hidden")))}),this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(t){const e=this._getTemplateFactory(t).toHtml();if(!e)return null;e.classList.remove(ts,es),e.classList.add(`bs-${this.constructor.NAME}-auto`);const i=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME).toString();return e.setAttribute("id",i),this._isAnimated()&&e.classList.add(ts),e}setContent(t){this._newContent=t,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(t){return this._templateFactory?this._templateFactory.changeContent(t):this._templateFactory=new Jn({...this._config,content:t,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(t){return this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(ts)}_isShown(){return this.tip&&this.tip.classList.contains(es)}_createPopper(t){const e=g(this._config.placement,[this,t,this._element]),i=rs[e.toUpperCase()];return bi(this._element,t,this._getPopperConfig(i))}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return g(t,[this._element])}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:t=>{this._getTipElement().setAttribute("data-popper-placement",t.state.placement)}}]};return{...e,...g(this._config.popperConfig,[e])}}_setListeners(){const t=this._config.trigger.split(" ");for(const e of t)if("click"===e)N.on(this._element,this.constructor.eventName("click"),this._config.selector,(t=>{this._initializeOnDelegatedTarget(t).toggle()}));else if("manual"!==e){const t=e===ss?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=e===ss?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");N.on(this._element,t,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusin"===t.type?os:ss]=!0,e._enter()})),N.on(this._element,i,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusout"===t.type?os:ss]=e._element.contains(t.relatedTarget),e._leave()}))}this._hideModalHandler=()=>{this._element&&this.hide()},N.on(this._element.closest(is),ns,this._hideModalHandler)}_fixTitle(){const t=this._element.getAttribute("title");t&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",t),this._element.setAttribute("data-bs-original-title",t),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout((()=>{this._isHovered&&this.show()}),this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout((()=>{this._isHovered||this.hide()}),this._config.delay.hide))}_setTimeout(t,e){clearTimeout(this._timeout),this._timeout=setTimeout(t,e)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(t){const e=F.getDataAttributes(this._element);for(const t of Object.keys(e))Zn.has(t)&&delete e[t];return t={...e,..."object"==typeof t&&t?t:{}},t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t.container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),t}_getDelegateConfig(){const t={};for(const[e,i]of Object.entries(this._config))this.constructor.Default[e]!==i&&(t[e]=i);return t.selector=!1,t.trigger="manual",t}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each((function(){const e=cs.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(cs);const hs={...cs.Default,content:"",offset:[0,8],placement:"right",template:'',trigger:"click"},ds={...cs.DefaultType,content:"(null|string|element|function)"};class us extends cs{static get Default(){return hs}static get DefaultType(){return ds}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each((function(){const e=us.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(us);const fs=".bs.scrollspy",ps=`activate${fs}`,ms=`click${fs}`,gs=`load${fs}.data-api`,_s="active",bs="[href]",vs=".nav-link",ys=`${vs}, .nav-item > ${vs}, .list-group-item`,ws={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},As={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class Es extends W{constructor(t,e){super(t,e),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return ws}static get DefaultType(){return As}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const t of this._observableSections.values())this._observer.observe(t)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(t){return t.target=r(t.target)||document.body,t.rootMargin=t.offset?`${t.offset}px 0px -30%`:t.rootMargin,"string"==typeof t.threshold&&(t.threshold=t.threshold.split(",").map((t=>Number.parseFloat(t)))),t}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(N.off(this._config.target,ms),N.on(this._config.target,ms,bs,(t=>{const e=this._observableSections.get(t.target.hash);if(e){t.preventDefault();const i=this._rootElement||window,n=e.offsetTop-this._element.offsetTop;if(i.scrollTo)return void i.scrollTo({top:n,behavior:"smooth"});i.scrollTop=n}})))}_getNewObserver(){const t={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver((t=>this._observerCallback(t)),t)}_observerCallback(t){const e=t=>this._targetLinks.get(`#${t.target.id}`),i=t=>{this._previousScrollData.visibleEntryTop=t.target.offsetTop,this._process(e(t))},n=(this._rootElement||document.documentElement).scrollTop,s=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const o of t){if(!o.isIntersecting){this._activeTarget=null,this._clearActiveClass(e(o));continue}const t=o.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(s&&t){if(i(o),!n)return}else s||t||i(o)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const t=z.find(bs,this._config.target);for(const e of t){if(!e.hash||l(e))continue;const t=z.findOne(decodeURI(e.hash),this._element);a(t)&&(this._targetLinks.set(decodeURI(e.hash),e),this._observableSections.set(e.hash,t))}}_process(t){this._activeTarget!==t&&(this._clearActiveClass(this._config.target),this._activeTarget=t,t.classList.add(_s),this._activateParents(t),N.trigger(this._element,ps,{relatedTarget:t}))}_activateParents(t){if(t.classList.contains("dropdown-item"))z.findOne(".dropdown-toggle",t.closest(".dropdown")).classList.add(_s);else for(const e of z.parents(t,".nav, .list-group"))for(const t of z.prev(e,ys))t.classList.add(_s)}_clearActiveClass(t){t.classList.remove(_s);const e=z.find(`${bs}.${_s}`,t);for(const t of e)t.classList.remove(_s)}static jQueryInterface(t){return this.each((function(){const e=Es.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(window,gs,(()=>{for(const t of z.find('[data-bs-spy="scroll"]'))Es.getOrCreateInstance(t)})),m(Es);const Ts=".bs.tab",Cs=`hide${Ts}`,Os=`hidden${Ts}`,xs=`show${Ts}`,ks=`shown${Ts}`,Ls=`click${Ts}`,Ss=`keydown${Ts}`,Ds=`load${Ts}`,$s="ArrowLeft",Is="ArrowRight",Ns="ArrowUp",Ps="ArrowDown",Ms="Home",js="End",Fs="active",Hs="fade",Ws="show",Bs=":not(.dropdown-toggle)",zs='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',Rs=`.nav-link${Bs}, .list-group-item${Bs}, [role="tab"]${Bs}, ${zs}`,qs=`.${Fs}[data-bs-toggle="tab"], .${Fs}[data-bs-toggle="pill"], .${Fs}[data-bs-toggle="list"]`;class Vs extends W{constructor(t){super(t),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),N.on(this._element,Ss,(t=>this._keydown(t))))}static get NAME(){return"tab"}show(){const t=this._element;if(this._elemIsActive(t))return;const e=this._getActiveElem(),i=e?N.trigger(e,Cs,{relatedTarget:t}):null;N.trigger(t,xs,{relatedTarget:e}).defaultPrevented||i&&i.defaultPrevented||(this._deactivate(e,t),this._activate(t,e))}_activate(t,e){t&&(t.classList.add(Fs),this._activate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.removeAttribute("tabindex"),t.setAttribute("aria-selected",!0),this._toggleDropDown(t,!0),N.trigger(t,ks,{relatedTarget:e})):t.classList.add(Ws)}),t,t.classList.contains(Hs)))}_deactivate(t,e){t&&(t.classList.remove(Fs),t.blur(),this._deactivate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.setAttribute("aria-selected",!1),t.setAttribute("tabindex","-1"),this._toggleDropDown(t,!1),N.trigger(t,Os,{relatedTarget:e})):t.classList.remove(Ws)}),t,t.classList.contains(Hs)))}_keydown(t){if(![$s,Is,Ns,Ps,Ms,js].includes(t.key))return;t.stopPropagation(),t.preventDefault();const e=this._getChildren().filter((t=>!l(t)));let i;if([Ms,js].includes(t.key))i=e[t.key===Ms?0:e.length-1];else{const n=[Is,Ps].includes(t.key);i=b(e,t.target,n,!0)}i&&(i.focus({preventScroll:!0}),Vs.getOrCreateInstance(i).show())}_getChildren(){return z.find(Rs,this._parent)}_getActiveElem(){return this._getChildren().find((t=>this._elemIsActive(t)))||null}_setInitialAttributes(t,e){this._setAttributeIfNotExists(t,"role","tablist");for(const t of e)this._setInitialAttributesOnChild(t)}_setInitialAttributesOnChild(t){t=this._getInnerElement(t);const e=this._elemIsActive(t),i=this._getOuterElement(t);t.setAttribute("aria-selected",e),i!==t&&this._setAttributeIfNotExists(i,"role","presentation"),e||t.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(t,"role","tab"),this._setInitialAttributesOnTargetPanel(t)}_setInitialAttributesOnTargetPanel(t){const e=z.getElementFromSelector(t);e&&(this._setAttributeIfNotExists(e,"role","tabpanel"),t.id&&this._setAttributeIfNotExists(e,"aria-labelledby",`${t.id}`))}_toggleDropDown(t,e){const i=this._getOuterElement(t);if(!i.classList.contains("dropdown"))return;const n=(t,n)=>{const s=z.findOne(t,i);s&&s.classList.toggle(n,e)};n(".dropdown-toggle",Fs),n(".dropdown-menu",Ws),i.setAttribute("aria-expanded",e)}_setAttributeIfNotExists(t,e,i){t.hasAttribute(e)||t.setAttribute(e,i)}_elemIsActive(t){return t.classList.contains(Fs)}_getInnerElement(t){return t.matches(Rs)?t:z.findOne(Rs,t)}_getOuterElement(t){return t.closest(".nav-item, .list-group-item")||t}static jQueryInterface(t){return this.each((function(){const e=Vs.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(document,Ls,zs,(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this)||Vs.getOrCreateInstance(this).show()})),N.on(window,Ds,(()=>{for(const t of z.find(qs))Vs.getOrCreateInstance(t)})),m(Vs);const Ks=".bs.toast",Qs=`mouseover${Ks}`,Xs=`mouseout${Ks}`,Ys=`focusin${Ks}`,Us=`focusout${Ks}`,Gs=`hide${Ks}`,Js=`hidden${Ks}`,Zs=`show${Ks}`,to=`shown${Ks}`,eo="hide",io="show",no="showing",so={animation:"boolean",autohide:"boolean",delay:"number"},oo={animation:!0,autohide:!0,delay:5e3};class ro extends W{constructor(t,e){super(t,e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return oo}static get DefaultType(){return so}static get NAME(){return"toast"}show(){N.trigger(this._element,Zs).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(eo),d(this._element),this._element.classList.add(io,no),this._queueCallback((()=>{this._element.classList.remove(no),N.trigger(this._element,to),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this.isShown()&&(N.trigger(this._element,Gs).defaultPrevented||(this._element.classList.add(no),this._queueCallback((()=>{this._element.classList.add(eo),this._element.classList.remove(no,io),N.trigger(this._element,Js)}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(io),super.dispose()}isShown(){return this._element.classList.contains(io)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){N.on(this._element,Qs,(t=>this._onInteraction(t,!0))),N.on(this._element,Xs,(t=>this._onInteraction(t,!1))),N.on(this._element,Ys,(t=>this._onInteraction(t,!0))),N.on(this._element,Us,(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=ro.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(ro),m(ro),{Alert:Q,Button:Y,Carousel:xt,Collapse:Bt,Dropdown:qi,Modal:On,Offcanvas:qn,Popover:us,ScrollSpy:Es,Tab:Vs,Toast:ro,Tooltip:cs}})); +//# sourceMappingURL=bootstrap.bundle.min.js.map \ No newline at end of file diff --git a/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js.map b/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js.map new file mode 100644 index 0000000..3863da8 --- /dev/null +++ b/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js.map @@ -0,0 +1 @@ +{"version":3,"names":["elementMap","Map","Data","set","element","key","instance","has","instanceMap","get","size","console","error","Array","from","keys","remove","delete","TRANSITION_END","parseSelector","selector","window","CSS","escape","replace","match","id","triggerTransitionEnd","dispatchEvent","Event","isElement","object","jquery","nodeType","getElement","length","document","querySelector","isVisible","getClientRects","elementIsVisible","getComputedStyle","getPropertyValue","closedDetails","closest","summary","parentNode","isDisabled","Node","ELEMENT_NODE","classList","contains","disabled","hasAttribute","getAttribute","findShadowRoot","documentElement","attachShadow","getRootNode","root","ShadowRoot","noop","reflow","offsetHeight","getjQuery","jQuery","body","DOMContentLoadedCallbacks","isRTL","dir","defineJQueryPlugin","plugin","callback","$","name","NAME","JQUERY_NO_CONFLICT","fn","jQueryInterface","Constructor","noConflict","readyState","addEventListener","push","execute","possibleCallback","args","defaultValue","executeAfterTransition","transitionElement","waitForTransition","emulatedDuration","transitionDuration","transitionDelay","floatTransitionDuration","Number","parseFloat","floatTransitionDelay","split","getTransitionDurationFromElement","called","handler","target","removeEventListener","setTimeout","getNextActiveElement","list","activeElement","shouldGetNext","isCycleAllowed","listLength","index","indexOf","Math","max","min","namespaceRegex","stripNameRegex","stripUidRegex","eventRegistry","uidEvent","customEvents","mouseenter","mouseleave","nativeEvents","Set","makeEventUid","uid","getElementEvents","findHandler","events","callable","delegationSelector","Object","values","find","event","normalizeParameters","originalTypeEvent","delegationFunction","isDelegated","typeEvent","getTypeEvent","addHandler","oneOff","wrapFunction","relatedTarget","delegateTarget","call","this","handlers","previousFunction","domElements","querySelectorAll","domElement","hydrateObj","EventHandler","off","type","apply","bootstrapDelegationHandler","bootstrapHandler","removeHandler","Boolean","removeNamespacedHandlers","namespace","storeElementEvent","handlerKey","entries","includes","on","one","inNamespace","isNamespace","startsWith","elementEvent","slice","keyHandlers","trigger","jQueryEvent","bubbles","nativeDispatch","defaultPrevented","isPropagationStopped","isImmediatePropagationStopped","isDefaultPrevented","evt","cancelable","preventDefault","obj","meta","value","_unused","defineProperty","configurable","normalizeData","toString","JSON","parse","decodeURIComponent","normalizeDataKey","chr","toLowerCase","Manipulator","setDataAttribute","setAttribute","removeDataAttribute","removeAttribute","getDataAttributes","attributes","bsKeys","dataset","filter","pureKey","charAt","getDataAttribute","Config","Default","DefaultType","Error","_getConfig","config","_mergeConfigObj","_configAfterMerge","_typeCheckConfig","jsonConfig","constructor","configTypes","property","expectedTypes","valueType","prototype","RegExp","test","TypeError","toUpperCase","BaseComponent","super","_element","_config","DATA_KEY","dispose","EVENT_KEY","propertyName","getOwnPropertyNames","_queueCallback","isAnimated","getInstance","getOrCreateInstance","VERSION","eventName","getSelector","hrefAttribute","trim","SelectorEngine","concat","Element","findOne","children","child","matches","parents","ancestor","prev","previous","previousElementSibling","next","nextElementSibling","focusableChildren","focusables","map","join","el","getSelectorFromElement","getElementFromSelector","getMultipleElementsFromSelector","enableDismissTrigger","component","method","clickEvent","tagName","EVENT_CLOSE","EVENT_CLOSED","Alert","close","_destroyElement","each","data","undefined","SELECTOR_DATA_TOGGLE","Button","toggle","button","EVENT_TOUCHSTART","EVENT_TOUCHMOVE","EVENT_TOUCHEND","EVENT_POINTERDOWN","EVENT_POINTERUP","endCallback","leftCallback","rightCallback","Swipe","isSupported","_deltaX","_supportPointerEvents","PointerEvent","_initEvents","_start","_eventIsPointerPenTouch","clientX","touches","_end","_handleSwipe","_move","absDeltaX","abs","direction","add","pointerType","navigator","maxTouchPoints","DATA_API_KEY","ORDER_NEXT","ORDER_PREV","DIRECTION_LEFT","DIRECTION_RIGHT","EVENT_SLIDE","EVENT_SLID","EVENT_KEYDOWN","EVENT_MOUSEENTER","EVENT_MOUSELEAVE","EVENT_DRAG_START","EVENT_LOAD_DATA_API","EVENT_CLICK_DATA_API","CLASS_NAME_CAROUSEL","CLASS_NAME_ACTIVE","SELECTOR_ACTIVE","SELECTOR_ITEM","SELECTOR_ACTIVE_ITEM","KEY_TO_DIRECTION","ArrowLeft","ArrowRight","interval","keyboard","pause","ride","touch","wrap","Carousel","_interval","_activeElement","_isSliding","touchTimeout","_swipeHelper","_indicatorsElement","_addEventListeners","cycle","_slide","nextWhenVisible","hidden","_clearInterval","_updateInterval","setInterval","_maybeEnableCycle","to","items","_getItems","activeIndex","_getItemIndex","_getActive","order","defaultInterval","_keydown","_addTouchEventListeners","img","swipeConfig","_directionToOrder","endCallBack","clearTimeout","_setActiveIndicatorElement","activeIndicator","newActiveIndicator","elementInterval","parseInt","isNext","nextElement","nextElementIndex","triggerEvent","_orderToDirection","isCycling","directionalClassName","orderClassName","completeCallBack","_isAnimated","clearInterval","carousel","slideIndex","carousels","EVENT_SHOW","EVENT_SHOWN","EVENT_HIDE","EVENT_HIDDEN","CLASS_NAME_SHOW","CLASS_NAME_COLLAPSE","CLASS_NAME_COLLAPSING","CLASS_NAME_DEEPER_CHILDREN","parent","Collapse","_isTransitioning","_triggerArray","toggleList","elem","filterElement","foundElement","_initializeChildren","_addAriaAndCollapsedClass","_isShown","hide","show","activeChildren","_getFirstLevelChildren","activeInstance","dimension","_getDimension","style","scrollSize","complete","getBoundingClientRect","selected","triggerArray","isOpen","top","bottom","right","left","auto","basePlacements","start","end","clippingParents","viewport","popper","reference","variationPlacements","reduce","acc","placement","placements","beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite","modifierPhases","getNodeName","nodeName","getWindow","node","ownerDocument","defaultView","isHTMLElement","HTMLElement","isShadowRoot","applyStyles$1","enabled","phase","_ref","state","elements","forEach","styles","assign","effect","_ref2","initialStyles","position","options","strategy","margin","arrow","hasOwnProperty","attribute","requires","getBasePlacement","round","getUAString","uaData","userAgentData","brands","isArray","item","brand","version","userAgent","isLayoutViewport","includeScale","isFixedStrategy","clientRect","scaleX","scaleY","offsetWidth","width","height","visualViewport","addVisualOffsets","x","offsetLeft","y","offsetTop","getLayoutRect","rootNode","isSameNode","host","isTableElement","getDocumentElement","getParentNode","assignedSlot","getTrueOffsetParent","offsetParent","getOffsetParent","isFirefox","currentNode","css","transform","perspective","contain","willChange","getContainingBlock","getMainAxisFromPlacement","within","mathMax","mathMin","mergePaddingObject","paddingObject","expandToHashMap","hashMap","arrow$1","_state$modifiersData$","arrowElement","popperOffsets","modifiersData","basePlacement","axis","len","padding","rects","toPaddingObject","arrowRect","minProp","maxProp","endDiff","startDiff","arrowOffsetParent","clientSize","clientHeight","clientWidth","centerToReference","center","offset","axisProp","centerOffset","_options$element","requiresIfExists","getVariation","unsetSides","mapToStyles","_Object$assign2","popperRect","variation","offsets","gpuAcceleration","adaptive","roundOffsets","isFixed","_offsets$x","_offsets$y","_ref3","hasX","hasY","sideX","sideY","win","heightProp","widthProp","_Object$assign","commonStyles","_ref4","dpr","devicePixelRatio","roundOffsetsByDPR","computeStyles$1","_ref5","_options$gpuAccelerat","_options$adaptive","_options$roundOffsets","passive","eventListeners","_options$scroll","scroll","_options$resize","resize","scrollParents","scrollParent","update","hash","getOppositePlacement","matched","getOppositeVariationPlacement","getWindowScroll","scrollLeft","pageXOffset","scrollTop","pageYOffset","getWindowScrollBarX","isScrollParent","_getComputedStyle","overflow","overflowX","overflowY","getScrollParent","listScrollParents","_element$ownerDocumen","isBody","updatedList","rectToClientRect","rect","getClientRectFromMixedType","clippingParent","html","layoutViewport","getViewportRect","clientTop","clientLeft","getInnerBoundingClientRect","winScroll","scrollWidth","scrollHeight","getDocumentRect","computeOffsets","commonX","commonY","mainAxis","detectOverflow","_options","_options$placement","_options$strategy","_options$boundary","boundary","_options$rootBoundary","rootBoundary","_options$elementConte","elementContext","_options$altBoundary","altBoundary","_options$padding","altContext","clippingClientRect","mainClippingParents","clipperElement","getClippingParents","firstClippingParent","clippingRect","accRect","getClippingRect","contextElement","referenceClientRect","popperClientRect","elementClientRect","overflowOffsets","offsetData","multiply","computeAutoPlacement","flipVariations","_options$allowedAutoP","allowedAutoPlacements","allPlacements","allowedPlacements","overflows","sort","a","b","flip$1","_skip","_options$mainAxis","checkMainAxis","_options$altAxis","altAxis","checkAltAxis","specifiedFallbackPlacements","fallbackPlacements","_options$flipVariatio","preferredPlacement","oppositePlacement","getExpandedFallbackPlacements","referenceRect","checksMap","makeFallbackChecks","firstFittingPlacement","i","_basePlacement","isStartVariation","isVertical","mainVariationSide","altVariationSide","checks","every","check","_loop","_i","fittingPlacement","reset","getSideOffsets","preventedOffsets","isAnySideFullyClipped","some","side","hide$1","preventOverflow","referenceOverflow","popperAltOverflow","referenceClippingOffsets","popperEscapeOffsets","isReferenceHidden","hasPopperEscaped","offset$1","_options$offset","invertDistance","skidding","distance","distanceAndSkiddingToXY","_data$state$placement","popperOffsets$1","preventOverflow$1","_options$tether","tether","_options$tetherOffset","tetherOffset","isBasePlacement","tetherOffsetValue","normalizedTetherOffsetValue","offsetModifierState","_offsetModifierState$","mainSide","altSide","additive","minLen","maxLen","arrowPaddingObject","arrowPaddingMin","arrowPaddingMax","arrowLen","minOffset","maxOffset","clientOffset","offsetModifierValue","tetherMax","preventedOffset","_offsetModifierState$2","_mainSide","_altSide","_offset","_len","_min","_max","isOriginSide","_offsetModifierValue","_tetherMin","_tetherMax","_preventedOffset","v","withinMaxClamp","getCompositeRect","elementOrVirtualElement","isOffsetParentAnElement","offsetParentIsScaled","isElementScaled","modifiers","visited","result","modifier","dep","depModifier","DEFAULT_OPTIONS","areValidElements","arguments","_key","popperGenerator","generatorOptions","_generatorOptions","_generatorOptions$def","defaultModifiers","_generatorOptions$def2","defaultOptions","pending","orderedModifiers","effectCleanupFns","isDestroyed","setOptions","setOptionsAction","cleanupModifierEffects","merged","orderModifiers","current","existing","m","_ref$options","cleanupFn","forceUpdate","_state$elements","_state$orderedModifie","_state$orderedModifie2","Promise","resolve","then","destroy","onFirstUpdate","createPopper","computeStyles","applyStyles","flip","ARROW_UP_KEY","ARROW_DOWN_KEY","EVENT_KEYDOWN_DATA_API","EVENT_KEYUP_DATA_API","SELECTOR_DATA_TOGGLE_SHOWN","SELECTOR_MENU","PLACEMENT_TOP","PLACEMENT_TOPEND","PLACEMENT_BOTTOM","PLACEMENT_BOTTOMEND","PLACEMENT_RIGHT","PLACEMENT_LEFT","autoClose","display","popperConfig","Dropdown","_popper","_parent","_menu","_inNavbar","_detectNavbar","_createPopper","focus","_completeHide","Popper","referenceElement","_getPopperConfig","_getPlacement","parentDropdown","isEnd","_getOffset","popperData","defaultBsPopperConfig","_selectMenuItem","clearMenus","openToggles","context","composedPath","isMenuTarget","dataApiKeydownHandler","isInput","isEscapeEvent","isUpOrDownEvent","getToggleButton","stopPropagation","EVENT_MOUSEDOWN","className","clickCallback","rootElement","Backdrop","_isAppended","_append","_getElement","_emulateAnimation","backdrop","createElement","append","EVENT_FOCUSIN","EVENT_KEYDOWN_TAB","TAB_NAV_BACKWARD","autofocus","trapElement","FocusTrap","_isActive","_lastTabNavDirection","activate","_handleFocusin","_handleKeydown","deactivate","shiftKey","SELECTOR_FIXED_CONTENT","SELECTOR_STICKY_CONTENT","PROPERTY_PADDING","PROPERTY_MARGIN","ScrollBarHelper","getWidth","documentWidth","innerWidth","_disableOverFlow","_setElementAttributes","calculatedValue","_resetElementAttributes","isOverflowing","_saveInitialAttribute","styleProperty","scrollbarWidth","_applyManipulationCallback","setProperty","actualValue","removeProperty","callBack","sel","EVENT_HIDE_PREVENTED","EVENT_RESIZE","EVENT_CLICK_DISMISS","EVENT_MOUSEDOWN_DISMISS","EVENT_KEYDOWN_DISMISS","CLASS_NAME_OPEN","CLASS_NAME_STATIC","Modal","_dialog","_backdrop","_initializeBackDrop","_focustrap","_initializeFocusTrap","_scrollBar","_adjustDialog","_showElement","_hideModal","handleUpdate","modalBody","transitionComplete","_triggerBackdropTransition","event2","_resetAdjustments","isModalOverflowing","initialOverflowY","isBodyOverflowing","paddingLeft","paddingRight","showEvent","alreadyOpen","CLASS_NAME_SHOWING","CLASS_NAME_HIDING","OPEN_SELECTOR","Offcanvas","blur","completeCallback","DefaultAllowlist","area","br","col","code","div","em","hr","h1","h2","h3","h4","h5","h6","li","ol","p","pre","s","small","span","sub","sup","strong","u","ul","uriAttributes","SAFE_URL_PATTERN","allowedAttribute","allowedAttributeList","attributeName","nodeValue","attributeRegex","regex","allowList","content","extraClass","sanitize","sanitizeFn","template","DefaultContentType","entry","TemplateFactory","getContent","_resolvePossibleFunction","hasContent","changeContent","_checkContent","toHtml","templateWrapper","innerHTML","_maybeSanitize","text","_setContent","arg","templateElement","_putElementInTemplate","textContent","unsafeHtml","sanitizeFunction","createdDocument","DOMParser","parseFromString","elementName","attributeList","allowedAttributes","sanitizeHtml","DISALLOWED_ATTRIBUTES","CLASS_NAME_FADE","SELECTOR_MODAL","EVENT_MODAL_HIDE","TRIGGER_HOVER","TRIGGER_FOCUS","AttachmentMap","AUTO","TOP","RIGHT","BOTTOM","LEFT","animation","container","customClass","delay","title","Tooltip","_isEnabled","_timeout","_isHovered","_activeTrigger","_templateFactory","_newContent","tip","_setListeners","_fixTitle","enable","disable","toggleEnabled","click","_leave","_enter","_hideModalHandler","_disposePopper","_isWithContent","isInTheDom","_getTipElement","_isWithActiveTrigger","_getTitle","_createTipElement","_getContentForTemplate","_getTemplateFactory","tipId","prefix","floor","random","getElementById","getUID","setContent","_initializeOnDelegatedTarget","_getDelegateConfig","attachment","triggers","eventIn","eventOut","_setTimeout","timeout","dataAttributes","dataAttribute","Popover","_getContent","EVENT_ACTIVATE","EVENT_CLICK","SELECTOR_TARGET_LINKS","SELECTOR_NAV_LINKS","SELECTOR_LINK_ITEMS","rootMargin","smoothScroll","threshold","ScrollSpy","_targetLinks","_observableSections","_rootElement","_activeTarget","_observer","_previousScrollData","visibleEntryTop","parentScrollTop","refresh","_initializeTargetsAndObservables","_maybeEnableSmoothScroll","disconnect","_getNewObserver","section","observe","observableSection","scrollTo","behavior","IntersectionObserver","_observerCallback","targetElement","_process","userScrollsDown","isIntersecting","_clearActiveClass","entryIsLowerThanPrevious","targetLinks","anchor","decodeURI","_activateParents","listGroup","activeNodes","spy","ARROW_LEFT_KEY","ARROW_RIGHT_KEY","HOME_KEY","END_KEY","NOT_SELECTOR_DROPDOWN_TOGGLE","SELECTOR_INNER_ELEM","SELECTOR_DATA_TOGGLE_ACTIVE","Tab","_setInitialAttributes","_getChildren","innerElem","_elemIsActive","active","_getActiveElem","hideEvent","_deactivate","_activate","relatedElem","_toggleDropDown","nextActiveElement","preventScroll","_setAttributeIfNotExists","_setInitialAttributesOnChild","_getInnerElement","isActive","outerElem","_getOuterElement","_setInitialAttributesOnTargetPanel","open","EVENT_MOUSEOVER","EVENT_MOUSEOUT","EVENT_FOCUSOUT","CLASS_NAME_HIDE","autohide","Toast","_hasMouseInteraction","_hasKeyboardInteraction","_clearTimeout","_maybeScheduleHide","isShown","_onInteraction","isInteracting"],"sources":["../../js/src/dom/data.js","../../js/src/util/index.js","../../js/src/dom/event-handler.js","../../js/src/dom/manipulator.js","../../js/src/util/config.js","../../js/src/base-component.js","../../js/src/dom/selector-engine.js","../../js/src/util/component-functions.js","../../js/src/alert.js","../../js/src/button.js","../../js/src/util/swipe.js","../../js/src/carousel.js","../../js/src/collapse.js","../../node_modules/@popperjs/core/lib/enums.js","../../node_modules/@popperjs/core/lib/dom-utils/getNodeName.js","../../node_modules/@popperjs/core/lib/dom-utils/getWindow.js","../../node_modules/@popperjs/core/lib/dom-utils/instanceOf.js","../../node_modules/@popperjs/core/lib/modifiers/applyStyles.js","../../node_modules/@popperjs/core/lib/utils/getBasePlacement.js","../../node_modules/@popperjs/core/lib/utils/math.js","../../node_modules/@popperjs/core/lib/utils/userAgent.js","../../node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js","../../node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js","../../node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js","../../node_modules/@popperjs/core/lib/dom-utils/contains.js","../../node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js","../../node_modules/@popperjs/core/lib/dom-utils/isTableElement.js","../../node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js","../../node_modules/@popperjs/core/lib/dom-utils/getParentNode.js","../../node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js","../../node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js","../../node_modules/@popperjs/core/lib/utils/within.js","../../node_modules/@popperjs/core/lib/utils/mergePaddingObject.js","../../node_modules/@popperjs/core/lib/utils/getFreshSideObject.js","../../node_modules/@popperjs/core/lib/utils/expandToHashMap.js","../../node_modules/@popperjs/core/lib/modifiers/arrow.js","../../node_modules/@popperjs/core/lib/utils/getVariation.js","../../node_modules/@popperjs/core/lib/modifiers/computeStyles.js","../../node_modules/@popperjs/core/lib/modifiers/eventListeners.js","../../node_modules/@popperjs/core/lib/utils/getOppositePlacement.js","../../node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js","../../node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js","../../node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js","../../node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js","../../node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js","../../node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js","../../node_modules/@popperjs/core/lib/utils/rectToClientRect.js","../../node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js","../../node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js","../../node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js","../../node_modules/@popperjs/core/lib/utils/computeOffsets.js","../../node_modules/@popperjs/core/lib/utils/detectOverflow.js","../../node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js","../../node_modules/@popperjs/core/lib/modifiers/flip.js","../../node_modules/@popperjs/core/lib/modifiers/hide.js","../../node_modules/@popperjs/core/lib/modifiers/offset.js","../../node_modules/@popperjs/core/lib/modifiers/popperOffsets.js","../../node_modules/@popperjs/core/lib/modifiers/preventOverflow.js","../../node_modules/@popperjs/core/lib/utils/getAltAxis.js","../../node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js","../../node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js","../../node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js","../../node_modules/@popperjs/core/lib/utils/orderModifiers.js","../../node_modules/@popperjs/core/lib/createPopper.js","../../node_modules/@popperjs/core/lib/utils/debounce.js","../../node_modules/@popperjs/core/lib/utils/mergeByName.js","../../node_modules/@popperjs/core/lib/popper-lite.js","../../node_modules/@popperjs/core/lib/popper.js","../../js/src/dropdown.js","../../js/src/util/backdrop.js","../../js/src/util/focustrap.js","../../js/src/util/scrollbar.js","../../js/src/modal.js","../../js/src/offcanvas.js","../../js/src/util/sanitizer.js","../../js/src/util/template-factory.js","../../js/src/tooltip.js","../../js/src/popover.js","../../js/src/scrollspy.js","../../js/src/tab.js","../../js/src/toast.js","../../js/index.umd.js"],"sourcesContent":["/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/data.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nconst elementMap = new Map()\n\nexport default {\n set(element, key, instance) {\n if (!elementMap.has(element)) {\n elementMap.set(element, new Map())\n }\n\n const instanceMap = elementMap.get(element)\n\n // make it clear we only want one instance per element\n // can be removed later when multiple key/instances are fine to be used\n if (!instanceMap.has(key) && instanceMap.size !== 0) {\n // eslint-disable-next-line no-console\n console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(instanceMap.keys())[0]}.`)\n return\n }\n\n instanceMap.set(key, instance)\n },\n\n get(element, key) {\n if (elementMap.has(element)) {\n return elementMap.get(element).get(key) || null\n }\n\n return null\n },\n\n remove(element, key) {\n if (!elementMap.has(element)) {\n return\n }\n\n const instanceMap = elementMap.get(element)\n\n instanceMap.delete(key)\n\n // free up element references if there are no instances left for an element\n if (instanceMap.size === 0) {\n elementMap.delete(element)\n }\n }\n}\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap util/index.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst MAX_UID = 1_000_000\nconst MILLISECONDS_MULTIPLIER = 1000\nconst TRANSITION_END = 'transitionend'\n\n/**\n * Properly escape IDs selectors to handle weird IDs\n * @param {string} selector\n * @returns {string}\n */\nconst parseSelector = selector => {\n if (selector && window.CSS && window.CSS.escape) {\n // document.querySelector needs escaping to handle IDs (html5+) containing for instance /\n selector = selector.replace(/#([^\\s\"#']+)/g, (match, id) => `#${CSS.escape(id)}`)\n }\n\n return selector\n}\n\n// Shout-out Angus Croll (https://goo.gl/pxwQGp)\nconst toType = object => {\n if (object === null || object === undefined) {\n return `${object}`\n }\n\n return Object.prototype.toString.call(object).match(/\\s([a-z]+)/i)[1].toLowerCase()\n}\n\n/**\n * Public Util API\n */\n\nconst getUID = prefix => {\n do {\n prefix += Math.floor(Math.random() * MAX_UID)\n } while (document.getElementById(prefix))\n\n return prefix\n}\n\nconst getTransitionDurationFromElement = element => {\n if (!element) {\n return 0\n }\n\n // Get transition-duration of the element\n let { transitionDuration, transitionDelay } = window.getComputedStyle(element)\n\n const floatTransitionDuration = Number.parseFloat(transitionDuration)\n const floatTransitionDelay = Number.parseFloat(transitionDelay)\n\n // Return 0 if element or transition duration is not found\n if (!floatTransitionDuration && !floatTransitionDelay) {\n return 0\n }\n\n // If multiple durations are defined, take the first\n transitionDuration = transitionDuration.split(',')[0]\n transitionDelay = transitionDelay.split(',')[0]\n\n return (Number.parseFloat(transitionDuration) + Number.parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER\n}\n\nconst triggerTransitionEnd = element => {\n element.dispatchEvent(new Event(TRANSITION_END))\n}\n\nconst isElement = object => {\n if (!object || typeof object !== 'object') {\n return false\n }\n\n if (typeof object.jquery !== 'undefined') {\n object = object[0]\n }\n\n return typeof object.nodeType !== 'undefined'\n}\n\nconst getElement = object => {\n // it's a jQuery object or a node element\n if (isElement(object)) {\n return object.jquery ? object[0] : object\n }\n\n if (typeof object === 'string' && object.length > 0) {\n return document.querySelector(parseSelector(object))\n }\n\n return null\n}\n\nconst isVisible = element => {\n if (!isElement(element) || element.getClientRects().length === 0) {\n return false\n }\n\n const elementIsVisible = getComputedStyle(element).getPropertyValue('visibility') === 'visible'\n // Handle `details` element as its content may falsie appear visible when it is closed\n const closedDetails = element.closest('details:not([open])')\n\n if (!closedDetails) {\n return elementIsVisible\n }\n\n if (closedDetails !== element) {\n const summary = element.closest('summary')\n if (summary && summary.parentNode !== closedDetails) {\n return false\n }\n\n if (summary === null) {\n return false\n }\n }\n\n return elementIsVisible\n}\n\nconst isDisabled = element => {\n if (!element || element.nodeType !== Node.ELEMENT_NODE) {\n return true\n }\n\n if (element.classList.contains('disabled')) {\n return true\n }\n\n if (typeof element.disabled !== 'undefined') {\n return element.disabled\n }\n\n return element.hasAttribute('disabled') && element.getAttribute('disabled') !== 'false'\n}\n\nconst findShadowRoot = element => {\n if (!document.documentElement.attachShadow) {\n return null\n }\n\n // Can find the shadow root otherwise it'll return the document\n if (typeof element.getRootNode === 'function') {\n const root = element.getRootNode()\n return root instanceof ShadowRoot ? root : null\n }\n\n if (element instanceof ShadowRoot) {\n return element\n }\n\n // when we don't find a shadow root\n if (!element.parentNode) {\n return null\n }\n\n return findShadowRoot(element.parentNode)\n}\n\nconst noop = () => {}\n\n/**\n * Trick to restart an element's animation\n *\n * @param {HTMLElement} element\n * @return void\n *\n * @see https://www.charistheo.io/blog/2021/02/restart-a-css-animation-with-javascript/#restarting-a-css-animation\n */\nconst reflow = element => {\n element.offsetHeight // eslint-disable-line no-unused-expressions\n}\n\nconst getjQuery = () => {\n if (window.jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {\n return window.jQuery\n }\n\n return null\n}\n\nconst DOMContentLoadedCallbacks = []\n\nconst onDOMContentLoaded = callback => {\n if (document.readyState === 'loading') {\n // add listener on the first call when the document is in loading state\n if (!DOMContentLoadedCallbacks.length) {\n document.addEventListener('DOMContentLoaded', () => {\n for (const callback of DOMContentLoadedCallbacks) {\n callback()\n }\n })\n }\n\n DOMContentLoadedCallbacks.push(callback)\n } else {\n callback()\n }\n}\n\nconst isRTL = () => document.documentElement.dir === 'rtl'\n\nconst defineJQueryPlugin = plugin => {\n onDOMContentLoaded(() => {\n const $ = getjQuery()\n /* istanbul ignore if */\n if ($) {\n const name = plugin.NAME\n const JQUERY_NO_CONFLICT = $.fn[name]\n $.fn[name] = plugin.jQueryInterface\n $.fn[name].Constructor = plugin\n $.fn[name].noConflict = () => {\n $.fn[name] = JQUERY_NO_CONFLICT\n return plugin.jQueryInterface\n }\n }\n })\n}\n\nconst execute = (possibleCallback, args = [], defaultValue = possibleCallback) => {\n return typeof possibleCallback === 'function' ? possibleCallback(...args) : defaultValue\n}\n\nconst executeAfterTransition = (callback, transitionElement, waitForTransition = true) => {\n if (!waitForTransition) {\n execute(callback)\n return\n }\n\n const durationPadding = 5\n const emulatedDuration = getTransitionDurationFromElement(transitionElement) + durationPadding\n\n let called = false\n\n const handler = ({ target }) => {\n if (target !== transitionElement) {\n return\n }\n\n called = true\n transitionElement.removeEventListener(TRANSITION_END, handler)\n execute(callback)\n }\n\n transitionElement.addEventListener(TRANSITION_END, handler)\n setTimeout(() => {\n if (!called) {\n triggerTransitionEnd(transitionElement)\n }\n }, emulatedDuration)\n}\n\n/**\n * Return the previous/next element of a list.\n *\n * @param {array} list The list of elements\n * @param activeElement The active element\n * @param shouldGetNext Choose to get next or previous element\n * @param isCycleAllowed\n * @return {Element|elem} The proper element\n */\nconst getNextActiveElement = (list, activeElement, shouldGetNext, isCycleAllowed) => {\n const listLength = list.length\n let index = list.indexOf(activeElement)\n\n // if the element does not exist in the list return an element\n // depending on the direction and if cycle is allowed\n if (index === -1) {\n return !shouldGetNext && isCycleAllowed ? list[listLength - 1] : list[0]\n }\n\n index += shouldGetNext ? 1 : -1\n\n if (isCycleAllowed) {\n index = (index + listLength) % listLength\n }\n\n return list[Math.max(0, Math.min(index, listLength - 1))]\n}\n\nexport {\n defineJQueryPlugin,\n execute,\n executeAfterTransition,\n findShadowRoot,\n getElement,\n getjQuery,\n getNextActiveElement,\n getTransitionDurationFromElement,\n getUID,\n isDisabled,\n isElement,\n isRTL,\n isVisible,\n noop,\n onDOMContentLoaded,\n parseSelector,\n reflow,\n triggerTransitionEnd,\n toType\n}\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/event-handler.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport { getjQuery } from '../util/index.js'\n\n/**\n * Constants\n */\n\nconst namespaceRegex = /[^.]*(?=\\..*)\\.|.*/\nconst stripNameRegex = /\\..*/\nconst stripUidRegex = /::\\d+$/\nconst eventRegistry = {} // Events storage\nlet uidEvent = 1\nconst customEvents = {\n mouseenter: 'mouseover',\n mouseleave: 'mouseout'\n}\n\nconst nativeEvents = new Set([\n 'click',\n 'dblclick',\n 'mouseup',\n 'mousedown',\n 'contextmenu',\n 'mousewheel',\n 'DOMMouseScroll',\n 'mouseover',\n 'mouseout',\n 'mousemove',\n 'selectstart',\n 'selectend',\n 'keydown',\n 'keypress',\n 'keyup',\n 'orientationchange',\n 'touchstart',\n 'touchmove',\n 'touchend',\n 'touchcancel',\n 'pointerdown',\n 'pointermove',\n 'pointerup',\n 'pointerleave',\n 'pointercancel',\n 'gesturestart',\n 'gesturechange',\n 'gestureend',\n 'focus',\n 'blur',\n 'change',\n 'reset',\n 'select',\n 'submit',\n 'focusin',\n 'focusout',\n 'load',\n 'unload',\n 'beforeunload',\n 'resize',\n 'move',\n 'DOMContentLoaded',\n 'readystatechange',\n 'error',\n 'abort',\n 'scroll'\n])\n\n/**\n * Private methods\n */\n\nfunction makeEventUid(element, uid) {\n return (uid && `${uid}::${uidEvent++}`) || element.uidEvent || uidEvent++\n}\n\nfunction getElementEvents(element) {\n const uid = makeEventUid(element)\n\n element.uidEvent = uid\n eventRegistry[uid] = eventRegistry[uid] || {}\n\n return eventRegistry[uid]\n}\n\nfunction bootstrapHandler(element, fn) {\n return function handler(event) {\n hydrateObj(event, { delegateTarget: element })\n\n if (handler.oneOff) {\n EventHandler.off(element, event.type, fn)\n }\n\n return fn.apply(element, [event])\n }\n}\n\nfunction bootstrapDelegationHandler(element, selector, fn) {\n return function handler(event) {\n const domElements = element.querySelectorAll(selector)\n\n for (let { target } = event; target && target !== this; target = target.parentNode) {\n for (const domElement of domElements) {\n if (domElement !== target) {\n continue\n }\n\n hydrateObj(event, { delegateTarget: target })\n\n if (handler.oneOff) {\n EventHandler.off(element, event.type, selector, fn)\n }\n\n return fn.apply(target, [event])\n }\n }\n }\n}\n\nfunction findHandler(events, callable, delegationSelector = null) {\n return Object.values(events)\n .find(event => event.callable === callable && event.delegationSelector === delegationSelector)\n}\n\nfunction normalizeParameters(originalTypeEvent, handler, delegationFunction) {\n const isDelegated = typeof handler === 'string'\n // TODO: tooltip passes `false` instead of selector, so we need to check\n const callable = isDelegated ? delegationFunction : (handler || delegationFunction)\n let typeEvent = getTypeEvent(originalTypeEvent)\n\n if (!nativeEvents.has(typeEvent)) {\n typeEvent = originalTypeEvent\n }\n\n return [isDelegated, callable, typeEvent]\n}\n\nfunction addHandler(element, originalTypeEvent, handler, delegationFunction, oneOff) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return\n }\n\n let [isDelegated, callable, typeEvent] = normalizeParameters(originalTypeEvent, handler, delegationFunction)\n\n // in case of mouseenter or mouseleave wrap the handler within a function that checks for its DOM position\n // this prevents the handler from being dispatched the same way as mouseover or mouseout does\n if (originalTypeEvent in customEvents) {\n const wrapFunction = fn => {\n return function (event) {\n if (!event.relatedTarget || (event.relatedTarget !== event.delegateTarget && !event.delegateTarget.contains(event.relatedTarget))) {\n return fn.call(this, event)\n }\n }\n }\n\n callable = wrapFunction(callable)\n }\n\n const events = getElementEvents(element)\n const handlers = events[typeEvent] || (events[typeEvent] = {})\n const previousFunction = findHandler(handlers, callable, isDelegated ? handler : null)\n\n if (previousFunction) {\n previousFunction.oneOff = previousFunction.oneOff && oneOff\n\n return\n }\n\n const uid = makeEventUid(callable, originalTypeEvent.replace(namespaceRegex, ''))\n const fn = isDelegated ?\n bootstrapDelegationHandler(element, handler, callable) :\n bootstrapHandler(element, callable)\n\n fn.delegationSelector = isDelegated ? handler : null\n fn.callable = callable\n fn.oneOff = oneOff\n fn.uidEvent = uid\n handlers[uid] = fn\n\n element.addEventListener(typeEvent, fn, isDelegated)\n}\n\nfunction removeHandler(element, events, typeEvent, handler, delegationSelector) {\n const fn = findHandler(events[typeEvent], handler, delegationSelector)\n\n if (!fn) {\n return\n }\n\n element.removeEventListener(typeEvent, fn, Boolean(delegationSelector))\n delete events[typeEvent][fn.uidEvent]\n}\n\nfunction removeNamespacedHandlers(element, events, typeEvent, namespace) {\n const storeElementEvent = events[typeEvent] || {}\n\n for (const [handlerKey, event] of Object.entries(storeElementEvent)) {\n if (handlerKey.includes(namespace)) {\n removeHandler(element, events, typeEvent, event.callable, event.delegationSelector)\n }\n }\n}\n\nfunction getTypeEvent(event) {\n // allow to get the native events from namespaced events ('click.bs.button' --> 'click')\n event = event.replace(stripNameRegex, '')\n return customEvents[event] || event\n}\n\nconst EventHandler = {\n on(element, event, handler, delegationFunction) {\n addHandler(element, event, handler, delegationFunction, false)\n },\n\n one(element, event, handler, delegationFunction) {\n addHandler(element, event, handler, delegationFunction, true)\n },\n\n off(element, originalTypeEvent, handler, delegationFunction) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return\n }\n\n const [isDelegated, callable, typeEvent] = normalizeParameters(originalTypeEvent, handler, delegationFunction)\n const inNamespace = typeEvent !== originalTypeEvent\n const events = getElementEvents(element)\n const storeElementEvent = events[typeEvent] || {}\n const isNamespace = originalTypeEvent.startsWith('.')\n\n if (typeof callable !== 'undefined') {\n // Simplest case: handler is passed, remove that listener ONLY.\n if (!Object.keys(storeElementEvent).length) {\n return\n }\n\n removeHandler(element, events, typeEvent, callable, isDelegated ? handler : null)\n return\n }\n\n if (isNamespace) {\n for (const elementEvent of Object.keys(events)) {\n removeNamespacedHandlers(element, events, elementEvent, originalTypeEvent.slice(1))\n }\n }\n\n for (const [keyHandlers, event] of Object.entries(storeElementEvent)) {\n const handlerKey = keyHandlers.replace(stripUidRegex, '')\n\n if (!inNamespace || originalTypeEvent.includes(handlerKey)) {\n removeHandler(element, events, typeEvent, event.callable, event.delegationSelector)\n }\n }\n },\n\n trigger(element, event, args) {\n if (typeof event !== 'string' || !element) {\n return null\n }\n\n const $ = getjQuery()\n const typeEvent = getTypeEvent(event)\n const inNamespace = event !== typeEvent\n\n let jQueryEvent = null\n let bubbles = true\n let nativeDispatch = true\n let defaultPrevented = false\n\n if (inNamespace && $) {\n jQueryEvent = $.Event(event, args)\n\n $(element).trigger(jQueryEvent)\n bubbles = !jQueryEvent.isPropagationStopped()\n nativeDispatch = !jQueryEvent.isImmediatePropagationStopped()\n defaultPrevented = jQueryEvent.isDefaultPrevented()\n }\n\n const evt = hydrateObj(new Event(event, { bubbles, cancelable: true }), args)\n\n if (defaultPrevented) {\n evt.preventDefault()\n }\n\n if (nativeDispatch) {\n element.dispatchEvent(evt)\n }\n\n if (evt.defaultPrevented && jQueryEvent) {\n jQueryEvent.preventDefault()\n }\n\n return evt\n }\n}\n\nfunction hydrateObj(obj, meta = {}) {\n for (const [key, value] of Object.entries(meta)) {\n try {\n obj[key] = value\n } catch {\n Object.defineProperty(obj, key, {\n configurable: true,\n get() {\n return value\n }\n })\n }\n }\n\n return obj\n}\n\nexport default EventHandler\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/manipulator.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nfunction normalizeData(value) {\n if (value === 'true') {\n return true\n }\n\n if (value === 'false') {\n return false\n }\n\n if (value === Number(value).toString()) {\n return Number(value)\n }\n\n if (value === '' || value === 'null') {\n return null\n }\n\n if (typeof value !== 'string') {\n return value\n }\n\n try {\n return JSON.parse(decodeURIComponent(value))\n } catch {\n return value\n }\n}\n\nfunction normalizeDataKey(key) {\n return key.replace(/[A-Z]/g, chr => `-${chr.toLowerCase()}`)\n}\n\nconst Manipulator = {\n setDataAttribute(element, key, value) {\n element.setAttribute(`data-bs-${normalizeDataKey(key)}`, value)\n },\n\n removeDataAttribute(element, key) {\n element.removeAttribute(`data-bs-${normalizeDataKey(key)}`)\n },\n\n getDataAttributes(element) {\n if (!element) {\n return {}\n }\n\n const attributes = {}\n const bsKeys = Object.keys(element.dataset).filter(key => key.startsWith('bs') && !key.startsWith('bsConfig'))\n\n for (const key of bsKeys) {\n let pureKey = key.replace(/^bs/, '')\n pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length)\n attributes[pureKey] = normalizeData(element.dataset[key])\n }\n\n return attributes\n },\n\n getDataAttribute(element, key) {\n return normalizeData(element.getAttribute(`data-bs-${normalizeDataKey(key)}`))\n }\n}\n\nexport default Manipulator\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap util/config.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport Manipulator from '../dom/manipulator.js'\nimport { isElement, toType } from './index.js'\n\n/**\n * Class definition\n */\n\nclass Config {\n // Getters\n static get Default() {\n return {}\n }\n\n static get DefaultType() {\n return {}\n }\n\n static get NAME() {\n throw new Error('You have to implement the static method \"NAME\", for each component!')\n }\n\n _getConfig(config) {\n config = this._mergeConfigObj(config)\n config = this._configAfterMerge(config)\n this._typeCheckConfig(config)\n return config\n }\n\n _configAfterMerge(config) {\n return config\n }\n\n _mergeConfigObj(config, element) {\n const jsonConfig = isElement(element) ? Manipulator.getDataAttribute(element, 'config') : {} // try to parse\n\n return {\n ...this.constructor.Default,\n ...(typeof jsonConfig === 'object' ? jsonConfig : {}),\n ...(isElement(element) ? Manipulator.getDataAttributes(element) : {}),\n ...(typeof config === 'object' ? config : {})\n }\n }\n\n _typeCheckConfig(config, configTypes = this.constructor.DefaultType) {\n for (const [property, expectedTypes] of Object.entries(configTypes)) {\n const value = config[property]\n const valueType = isElement(value) ? 'element' : toType(value)\n\n if (!new RegExp(expectedTypes).test(valueType)) {\n throw new TypeError(\n `${this.constructor.NAME.toUpperCase()}: Option \"${property}\" provided type \"${valueType}\" but expected type \"${expectedTypes}\".`\n )\n }\n }\n }\n}\n\nexport default Config\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap base-component.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport Data from './dom/data.js'\nimport EventHandler from './dom/event-handler.js'\nimport Config from './util/config.js'\nimport { executeAfterTransition, getElement } from './util/index.js'\n\n/**\n * Constants\n */\n\nconst VERSION = '5.3.1'\n\n/**\n * Class definition\n */\n\nclass BaseComponent extends Config {\n constructor(element, config) {\n super()\n\n element = getElement(element)\n if (!element) {\n return\n }\n\n this._element = element\n this._config = this._getConfig(config)\n\n Data.set(this._element, this.constructor.DATA_KEY, this)\n }\n\n // Public\n dispose() {\n Data.remove(this._element, this.constructor.DATA_KEY)\n EventHandler.off(this._element, this.constructor.EVENT_KEY)\n\n for (const propertyName of Object.getOwnPropertyNames(this)) {\n this[propertyName] = null\n }\n }\n\n _queueCallback(callback, element, isAnimated = true) {\n executeAfterTransition(callback, element, isAnimated)\n }\n\n _getConfig(config) {\n config = this._mergeConfigObj(config, this._element)\n config = this._configAfterMerge(config)\n this._typeCheckConfig(config)\n return config\n }\n\n // Static\n static getInstance(element) {\n return Data.get(getElement(element), this.DATA_KEY)\n }\n\n static getOrCreateInstance(element, config = {}) {\n return this.getInstance(element) || new this(element, typeof config === 'object' ? config : null)\n }\n\n static get VERSION() {\n return VERSION\n }\n\n static get DATA_KEY() {\n return `bs.${this.NAME}`\n }\n\n static get EVENT_KEY() {\n return `.${this.DATA_KEY}`\n }\n\n static eventName(name) {\n return `${name}${this.EVENT_KEY}`\n }\n}\n\nexport default BaseComponent\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/selector-engine.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport { isDisabled, isVisible, parseSelector } from '../util/index.js'\n\nconst getSelector = element => {\n let selector = element.getAttribute('data-bs-target')\n\n if (!selector || selector === '#') {\n let hrefAttribute = element.getAttribute('href')\n\n // The only valid content that could double as a selector are IDs or classes,\n // so everything starting with `#` or `.`. If a \"real\" URL is used as the selector,\n // `document.querySelector` will rightfully complain it is invalid.\n // See https://github.com/twbs/bootstrap/issues/32273\n if (!hrefAttribute || (!hrefAttribute.includes('#') && !hrefAttribute.startsWith('.'))) {\n return null\n }\n\n // Just in case some CMS puts out a full URL with the anchor appended\n if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {\n hrefAttribute = `#${hrefAttribute.split('#')[1]}`\n }\n\n selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null\n }\n\n return parseSelector(selector)\n}\n\nconst SelectorEngine = {\n find(selector, element = document.documentElement) {\n return [].concat(...Element.prototype.querySelectorAll.call(element, selector))\n },\n\n findOne(selector, element = document.documentElement) {\n return Element.prototype.querySelector.call(element, selector)\n },\n\n children(element, selector) {\n return [].concat(...element.children).filter(child => child.matches(selector))\n },\n\n parents(element, selector) {\n const parents = []\n let ancestor = element.parentNode.closest(selector)\n\n while (ancestor) {\n parents.push(ancestor)\n ancestor = ancestor.parentNode.closest(selector)\n }\n\n return parents\n },\n\n prev(element, selector) {\n let previous = element.previousElementSibling\n\n while (previous) {\n if (previous.matches(selector)) {\n return [previous]\n }\n\n previous = previous.previousElementSibling\n }\n\n return []\n },\n // TODO: this is now unused; remove later along with prev()\n next(element, selector) {\n let next = element.nextElementSibling\n\n while (next) {\n if (next.matches(selector)) {\n return [next]\n }\n\n next = next.nextElementSibling\n }\n\n return []\n },\n\n focusableChildren(element) {\n const focusables = [\n 'a',\n 'button',\n 'input',\n 'textarea',\n 'select',\n 'details',\n '[tabindex]',\n '[contenteditable=\"true\"]'\n ].map(selector => `${selector}:not([tabindex^=\"-\"])`).join(',')\n\n return this.find(focusables, element).filter(el => !isDisabled(el) && isVisible(el))\n },\n\n getSelectorFromElement(element) {\n const selector = getSelector(element)\n\n if (selector) {\n return SelectorEngine.findOne(selector) ? selector : null\n }\n\n return null\n },\n\n getElementFromSelector(element) {\n const selector = getSelector(element)\n\n return selector ? SelectorEngine.findOne(selector) : null\n },\n\n getMultipleElementsFromSelector(element) {\n const selector = getSelector(element)\n\n return selector ? SelectorEngine.find(selector) : []\n }\n}\n\nexport default SelectorEngine\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap util/component-functions.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport EventHandler from '../dom/event-handler.js'\nimport SelectorEngine from '../dom/selector-engine.js'\nimport { isDisabled } from './index.js'\n\nconst enableDismissTrigger = (component, method = 'hide') => {\n const clickEvent = `click.dismiss${component.EVENT_KEY}`\n const name = component.NAME\n\n EventHandler.on(document, clickEvent, `[data-bs-dismiss=\"${name}\"]`, function (event) {\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault()\n }\n\n if (isDisabled(this)) {\n return\n }\n\n const target = SelectorEngine.getElementFromSelector(this) || this.closest(`.${name}`)\n const instance = component.getOrCreateInstance(target)\n\n // Method argument is left, for Alert and only, as it doesn't implement the 'hide' method\n instance[method]()\n })\n}\n\nexport {\n enableDismissTrigger\n}\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap alert.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport BaseComponent from './base-component.js'\nimport EventHandler from './dom/event-handler.js'\nimport { enableDismissTrigger } from './util/component-functions.js'\nimport { defineJQueryPlugin } from './util/index.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'alert'\nconst DATA_KEY = 'bs.alert'\nconst EVENT_KEY = `.${DATA_KEY}`\n\nconst EVENT_CLOSE = `close${EVENT_KEY}`\nconst EVENT_CLOSED = `closed${EVENT_KEY}`\nconst CLASS_NAME_FADE = 'fade'\nconst CLASS_NAME_SHOW = 'show'\n\n/**\n * Class definition\n */\n\nclass Alert extends BaseComponent {\n // Getters\n static get NAME() {\n return NAME\n }\n\n // Public\n close() {\n const closeEvent = EventHandler.trigger(this._element, EVENT_CLOSE)\n\n if (closeEvent.defaultPrevented) {\n return\n }\n\n this._element.classList.remove(CLASS_NAME_SHOW)\n\n const isAnimated = this._element.classList.contains(CLASS_NAME_FADE)\n this._queueCallback(() => this._destroyElement(), this._element, isAnimated)\n }\n\n // Private\n _destroyElement() {\n this._element.remove()\n EventHandler.trigger(this._element, EVENT_CLOSED)\n this.dispose()\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Alert.getOrCreateInstance(this)\n\n if (typeof config !== 'string') {\n return\n }\n\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config](this)\n })\n }\n}\n\n/**\n * Data API implementation\n */\n\nenableDismissTrigger(Alert, 'close')\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Alert)\n\nexport default Alert\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap button.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport BaseComponent from './base-component.js'\nimport EventHandler from './dom/event-handler.js'\nimport { defineJQueryPlugin } from './util/index.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'button'\nconst DATA_KEY = 'bs.button'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\n\nconst CLASS_NAME_ACTIVE = 'active'\nconst SELECTOR_DATA_TOGGLE = '[data-bs-toggle=\"button\"]'\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\n\n/**\n * Class definition\n */\n\nclass Button extends BaseComponent {\n // Getters\n static get NAME() {\n return NAME\n }\n\n // Public\n toggle() {\n // Toggle class and sync the `aria-pressed` attribute with the return value of the `.toggle()` method\n this._element.setAttribute('aria-pressed', this._element.classList.toggle(CLASS_NAME_ACTIVE))\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Button.getOrCreateInstance(this)\n\n if (config === 'toggle') {\n data[config]()\n }\n })\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, event => {\n event.preventDefault()\n\n const button = event.target.closest(SELECTOR_DATA_TOGGLE)\n const data = Button.getOrCreateInstance(button)\n\n data.toggle()\n})\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Button)\n\nexport default Button\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap util/swipe.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport EventHandler from '../dom/event-handler.js'\nimport Config from './config.js'\nimport { execute } from './index.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'swipe'\nconst EVENT_KEY = '.bs.swipe'\nconst EVENT_TOUCHSTART = `touchstart${EVENT_KEY}`\nconst EVENT_TOUCHMOVE = `touchmove${EVENT_KEY}`\nconst EVENT_TOUCHEND = `touchend${EVENT_KEY}`\nconst EVENT_POINTERDOWN = `pointerdown${EVENT_KEY}`\nconst EVENT_POINTERUP = `pointerup${EVENT_KEY}`\nconst POINTER_TYPE_TOUCH = 'touch'\nconst POINTER_TYPE_PEN = 'pen'\nconst CLASS_NAME_POINTER_EVENT = 'pointer-event'\nconst SWIPE_THRESHOLD = 40\n\nconst Default = {\n endCallback: null,\n leftCallback: null,\n rightCallback: null\n}\n\nconst DefaultType = {\n endCallback: '(function|null)',\n leftCallback: '(function|null)',\n rightCallback: '(function|null)'\n}\n\n/**\n * Class definition\n */\n\nclass Swipe extends Config {\n constructor(element, config) {\n super()\n this._element = element\n\n if (!element || !Swipe.isSupported()) {\n return\n }\n\n this._config = this._getConfig(config)\n this._deltaX = 0\n this._supportPointerEvents = Boolean(window.PointerEvent)\n this._initEvents()\n }\n\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Public\n dispose() {\n EventHandler.off(this._element, EVENT_KEY)\n }\n\n // Private\n _start(event) {\n if (!this._supportPointerEvents) {\n this._deltaX = event.touches[0].clientX\n\n return\n }\n\n if (this._eventIsPointerPenTouch(event)) {\n this._deltaX = event.clientX\n }\n }\n\n _end(event) {\n if (this._eventIsPointerPenTouch(event)) {\n this._deltaX = event.clientX - this._deltaX\n }\n\n this._handleSwipe()\n execute(this._config.endCallback)\n }\n\n _move(event) {\n this._deltaX = event.touches && event.touches.length > 1 ?\n 0 :\n event.touches[0].clientX - this._deltaX\n }\n\n _handleSwipe() {\n const absDeltaX = Math.abs(this._deltaX)\n\n if (absDeltaX <= SWIPE_THRESHOLD) {\n return\n }\n\n const direction = absDeltaX / this._deltaX\n\n this._deltaX = 0\n\n if (!direction) {\n return\n }\n\n execute(direction > 0 ? this._config.rightCallback : this._config.leftCallback)\n }\n\n _initEvents() {\n if (this._supportPointerEvents) {\n EventHandler.on(this._element, EVENT_POINTERDOWN, event => this._start(event))\n EventHandler.on(this._element, EVENT_POINTERUP, event => this._end(event))\n\n this._element.classList.add(CLASS_NAME_POINTER_EVENT)\n } else {\n EventHandler.on(this._element, EVENT_TOUCHSTART, event => this._start(event))\n EventHandler.on(this._element, EVENT_TOUCHMOVE, event => this._move(event))\n EventHandler.on(this._element, EVENT_TOUCHEND, event => this._end(event))\n }\n }\n\n _eventIsPointerPenTouch(event) {\n return this._supportPointerEvents && (event.pointerType === POINTER_TYPE_PEN || event.pointerType === POINTER_TYPE_TOUCH)\n }\n\n // Static\n static isSupported() {\n return 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0\n }\n}\n\nexport default Swipe\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap carousel.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport BaseComponent from './base-component.js'\nimport EventHandler from './dom/event-handler.js'\nimport Manipulator from './dom/manipulator.js'\nimport SelectorEngine from './dom/selector-engine.js'\nimport {\n defineJQueryPlugin,\n getNextActiveElement,\n isRTL,\n isVisible,\n reflow,\n triggerTransitionEnd\n} from './util/index.js'\nimport Swipe from './util/swipe.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'carousel'\nconst DATA_KEY = 'bs.carousel'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\n\nconst ARROW_LEFT_KEY = 'ArrowLeft'\nconst ARROW_RIGHT_KEY = 'ArrowRight'\nconst TOUCHEVENT_COMPAT_WAIT = 500 // Time for mouse compat events to fire after touch\n\nconst ORDER_NEXT = 'next'\nconst ORDER_PREV = 'prev'\nconst DIRECTION_LEFT = 'left'\nconst DIRECTION_RIGHT = 'right'\n\nconst EVENT_SLIDE = `slide${EVENT_KEY}`\nconst EVENT_SLID = `slid${EVENT_KEY}`\nconst EVENT_KEYDOWN = `keydown${EVENT_KEY}`\nconst EVENT_MOUSEENTER = `mouseenter${EVENT_KEY}`\nconst EVENT_MOUSELEAVE = `mouseleave${EVENT_KEY}`\nconst EVENT_DRAG_START = `dragstart${EVENT_KEY}`\nconst EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_CAROUSEL = 'carousel'\nconst CLASS_NAME_ACTIVE = 'active'\nconst CLASS_NAME_SLIDE = 'slide'\nconst CLASS_NAME_END = 'carousel-item-end'\nconst CLASS_NAME_START = 'carousel-item-start'\nconst CLASS_NAME_NEXT = 'carousel-item-next'\nconst CLASS_NAME_PREV = 'carousel-item-prev'\n\nconst SELECTOR_ACTIVE = '.active'\nconst SELECTOR_ITEM = '.carousel-item'\nconst SELECTOR_ACTIVE_ITEM = SELECTOR_ACTIVE + SELECTOR_ITEM\nconst SELECTOR_ITEM_IMG = '.carousel-item img'\nconst SELECTOR_INDICATORS = '.carousel-indicators'\nconst SELECTOR_DATA_SLIDE = '[data-bs-slide], [data-bs-slide-to]'\nconst SELECTOR_DATA_RIDE = '[data-bs-ride=\"carousel\"]'\n\nconst KEY_TO_DIRECTION = {\n [ARROW_LEFT_KEY]: DIRECTION_RIGHT,\n [ARROW_RIGHT_KEY]: DIRECTION_LEFT\n}\n\nconst Default = {\n interval: 5000,\n keyboard: true,\n pause: 'hover',\n ride: false,\n touch: true,\n wrap: true\n}\n\nconst DefaultType = {\n interval: '(number|boolean)', // TODO:v6 remove boolean support\n keyboard: 'boolean',\n pause: '(string|boolean)',\n ride: '(boolean|string)',\n touch: 'boolean',\n wrap: 'boolean'\n}\n\n/**\n * Class definition\n */\n\nclass Carousel extends BaseComponent {\n constructor(element, config) {\n super(element, config)\n\n this._interval = null\n this._activeElement = null\n this._isSliding = false\n this.touchTimeout = null\n this._swipeHelper = null\n\n this._indicatorsElement = SelectorEngine.findOne(SELECTOR_INDICATORS, this._element)\n this._addEventListeners()\n\n if (this._config.ride === CLASS_NAME_CAROUSEL) {\n this.cycle()\n }\n }\n\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Public\n next() {\n this._slide(ORDER_NEXT)\n }\n\n nextWhenVisible() {\n // FIXME TODO use `document.visibilityState`\n // Don't call next when the page isn't visible\n // or the carousel or its parent isn't visible\n if (!document.hidden && isVisible(this._element)) {\n this.next()\n }\n }\n\n prev() {\n this._slide(ORDER_PREV)\n }\n\n pause() {\n if (this._isSliding) {\n triggerTransitionEnd(this._element)\n }\n\n this._clearInterval()\n }\n\n cycle() {\n this._clearInterval()\n this._updateInterval()\n\n this._interval = setInterval(() => this.nextWhenVisible(), this._config.interval)\n }\n\n _maybeEnableCycle() {\n if (!this._config.ride) {\n return\n }\n\n if (this._isSliding) {\n EventHandler.one(this._element, EVENT_SLID, () => this.cycle())\n return\n }\n\n this.cycle()\n }\n\n to(index) {\n const items = this._getItems()\n if (index > items.length - 1 || index < 0) {\n return\n }\n\n if (this._isSliding) {\n EventHandler.one(this._element, EVENT_SLID, () => this.to(index))\n return\n }\n\n const activeIndex = this._getItemIndex(this._getActive())\n if (activeIndex === index) {\n return\n }\n\n const order = index > activeIndex ? ORDER_NEXT : ORDER_PREV\n\n this._slide(order, items[index])\n }\n\n dispose() {\n if (this._swipeHelper) {\n this._swipeHelper.dispose()\n }\n\n super.dispose()\n }\n\n // Private\n _configAfterMerge(config) {\n config.defaultInterval = config.interval\n return config\n }\n\n _addEventListeners() {\n if (this._config.keyboard) {\n EventHandler.on(this._element, EVENT_KEYDOWN, event => this._keydown(event))\n }\n\n if (this._config.pause === 'hover') {\n EventHandler.on(this._element, EVENT_MOUSEENTER, () => this.pause())\n EventHandler.on(this._element, EVENT_MOUSELEAVE, () => this._maybeEnableCycle())\n }\n\n if (this._config.touch && Swipe.isSupported()) {\n this._addTouchEventListeners()\n }\n }\n\n _addTouchEventListeners() {\n for (const img of SelectorEngine.find(SELECTOR_ITEM_IMG, this._element)) {\n EventHandler.on(img, EVENT_DRAG_START, event => event.preventDefault())\n }\n\n const endCallBack = () => {\n if (this._config.pause !== 'hover') {\n return\n }\n\n // If it's a touch-enabled device, mouseenter/leave are fired as\n // part of the mouse compatibility events on first tap - the carousel\n // would stop cycling until user tapped out of it;\n // here, we listen for touchend, explicitly pause the carousel\n // (as if it's the second time we tap on it, mouseenter compat event\n // is NOT fired) and after a timeout (to allow for mouse compatibility\n // events to fire) we explicitly restart cycling\n\n this.pause()\n if (this.touchTimeout) {\n clearTimeout(this.touchTimeout)\n }\n\n this.touchTimeout = setTimeout(() => this._maybeEnableCycle(), TOUCHEVENT_COMPAT_WAIT + this._config.interval)\n }\n\n const swipeConfig = {\n leftCallback: () => this._slide(this._directionToOrder(DIRECTION_LEFT)),\n rightCallback: () => this._slide(this._directionToOrder(DIRECTION_RIGHT)),\n endCallback: endCallBack\n }\n\n this._swipeHelper = new Swipe(this._element, swipeConfig)\n }\n\n _keydown(event) {\n if (/input|textarea/i.test(event.target.tagName)) {\n return\n }\n\n const direction = KEY_TO_DIRECTION[event.key]\n if (direction) {\n event.preventDefault()\n this._slide(this._directionToOrder(direction))\n }\n }\n\n _getItemIndex(element) {\n return this._getItems().indexOf(element)\n }\n\n _setActiveIndicatorElement(index) {\n if (!this._indicatorsElement) {\n return\n }\n\n const activeIndicator = SelectorEngine.findOne(SELECTOR_ACTIVE, this._indicatorsElement)\n\n activeIndicator.classList.remove(CLASS_NAME_ACTIVE)\n activeIndicator.removeAttribute('aria-current')\n\n const newActiveIndicator = SelectorEngine.findOne(`[data-bs-slide-to=\"${index}\"]`, this._indicatorsElement)\n\n if (newActiveIndicator) {\n newActiveIndicator.classList.add(CLASS_NAME_ACTIVE)\n newActiveIndicator.setAttribute('aria-current', 'true')\n }\n }\n\n _updateInterval() {\n const element = this._activeElement || this._getActive()\n\n if (!element) {\n return\n }\n\n const elementInterval = Number.parseInt(element.getAttribute('data-bs-interval'), 10)\n\n this._config.interval = elementInterval || this._config.defaultInterval\n }\n\n _slide(order, element = null) {\n if (this._isSliding) {\n return\n }\n\n const activeElement = this._getActive()\n const isNext = order === ORDER_NEXT\n const nextElement = element || getNextActiveElement(this._getItems(), activeElement, isNext, this._config.wrap)\n\n if (nextElement === activeElement) {\n return\n }\n\n const nextElementIndex = this._getItemIndex(nextElement)\n\n const triggerEvent = eventName => {\n return EventHandler.trigger(this._element, eventName, {\n relatedTarget: nextElement,\n direction: this._orderToDirection(order),\n from: this._getItemIndex(activeElement),\n to: nextElementIndex\n })\n }\n\n const slideEvent = triggerEvent(EVENT_SLIDE)\n\n if (slideEvent.defaultPrevented) {\n return\n }\n\n if (!activeElement || !nextElement) {\n // Some weirdness is happening, so we bail\n // TODO: change tests that use empty divs to avoid this check\n return\n }\n\n const isCycling = Boolean(this._interval)\n this.pause()\n\n this._isSliding = true\n\n this._setActiveIndicatorElement(nextElementIndex)\n this._activeElement = nextElement\n\n const directionalClassName = isNext ? CLASS_NAME_START : CLASS_NAME_END\n const orderClassName = isNext ? CLASS_NAME_NEXT : CLASS_NAME_PREV\n\n nextElement.classList.add(orderClassName)\n\n reflow(nextElement)\n\n activeElement.classList.add(directionalClassName)\n nextElement.classList.add(directionalClassName)\n\n const completeCallBack = () => {\n nextElement.classList.remove(directionalClassName, orderClassName)\n nextElement.classList.add(CLASS_NAME_ACTIVE)\n\n activeElement.classList.remove(CLASS_NAME_ACTIVE, orderClassName, directionalClassName)\n\n this._isSliding = false\n\n triggerEvent(EVENT_SLID)\n }\n\n this._queueCallback(completeCallBack, activeElement, this._isAnimated())\n\n if (isCycling) {\n this.cycle()\n }\n }\n\n _isAnimated() {\n return this._element.classList.contains(CLASS_NAME_SLIDE)\n }\n\n _getActive() {\n return SelectorEngine.findOne(SELECTOR_ACTIVE_ITEM, this._element)\n }\n\n _getItems() {\n return SelectorEngine.find(SELECTOR_ITEM, this._element)\n }\n\n _clearInterval() {\n if (this._interval) {\n clearInterval(this._interval)\n this._interval = null\n }\n }\n\n _directionToOrder(direction) {\n if (isRTL()) {\n return direction === DIRECTION_LEFT ? ORDER_PREV : ORDER_NEXT\n }\n\n return direction === DIRECTION_LEFT ? ORDER_NEXT : ORDER_PREV\n }\n\n _orderToDirection(order) {\n if (isRTL()) {\n return order === ORDER_PREV ? DIRECTION_LEFT : DIRECTION_RIGHT\n }\n\n return order === ORDER_PREV ? DIRECTION_RIGHT : DIRECTION_LEFT\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Carousel.getOrCreateInstance(this, config)\n\n if (typeof config === 'number') {\n data.to(config)\n return\n }\n\n if (typeof config === 'string') {\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config]()\n }\n })\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_SLIDE, function (event) {\n const target = SelectorEngine.getElementFromSelector(this)\n\n if (!target || !target.classList.contains(CLASS_NAME_CAROUSEL)) {\n return\n }\n\n event.preventDefault()\n\n const carousel = Carousel.getOrCreateInstance(target)\n const slideIndex = this.getAttribute('data-bs-slide-to')\n\n if (slideIndex) {\n carousel.to(slideIndex)\n carousel._maybeEnableCycle()\n return\n }\n\n if (Manipulator.getDataAttribute(this, 'slide') === 'next') {\n carousel.next()\n carousel._maybeEnableCycle()\n return\n }\n\n carousel.prev()\n carousel._maybeEnableCycle()\n})\n\nEventHandler.on(window, EVENT_LOAD_DATA_API, () => {\n const carousels = SelectorEngine.find(SELECTOR_DATA_RIDE)\n\n for (const carousel of carousels) {\n Carousel.getOrCreateInstance(carousel)\n }\n})\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Carousel)\n\nexport default Carousel\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap collapse.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport BaseComponent from './base-component.js'\nimport EventHandler from './dom/event-handler.js'\nimport SelectorEngine from './dom/selector-engine.js'\nimport {\n defineJQueryPlugin,\n getElement,\n reflow\n} from './util/index.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'collapse'\nconst DATA_KEY = 'bs.collapse'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\n\nconst EVENT_SHOW = `show${EVENT_KEY}`\nconst EVENT_SHOWN = `shown${EVENT_KEY}`\nconst EVENT_HIDE = `hide${EVENT_KEY}`\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_SHOW = 'show'\nconst CLASS_NAME_COLLAPSE = 'collapse'\nconst CLASS_NAME_COLLAPSING = 'collapsing'\nconst CLASS_NAME_COLLAPSED = 'collapsed'\nconst CLASS_NAME_DEEPER_CHILDREN = `:scope .${CLASS_NAME_COLLAPSE} .${CLASS_NAME_COLLAPSE}`\nconst CLASS_NAME_HORIZONTAL = 'collapse-horizontal'\n\nconst WIDTH = 'width'\nconst HEIGHT = 'height'\n\nconst SELECTOR_ACTIVES = '.collapse.show, .collapse.collapsing'\nconst SELECTOR_DATA_TOGGLE = '[data-bs-toggle=\"collapse\"]'\n\nconst Default = {\n parent: null,\n toggle: true\n}\n\nconst DefaultType = {\n parent: '(null|element)',\n toggle: 'boolean'\n}\n\n/**\n * Class definition\n */\n\nclass Collapse extends BaseComponent {\n constructor(element, config) {\n super(element, config)\n\n this._isTransitioning = false\n this._triggerArray = []\n\n const toggleList = SelectorEngine.find(SELECTOR_DATA_TOGGLE)\n\n for (const elem of toggleList) {\n const selector = SelectorEngine.getSelectorFromElement(elem)\n const filterElement = SelectorEngine.find(selector)\n .filter(foundElement => foundElement === this._element)\n\n if (selector !== null && filterElement.length) {\n this._triggerArray.push(elem)\n }\n }\n\n this._initializeChildren()\n\n if (!this._config.parent) {\n this._addAriaAndCollapsedClass(this._triggerArray, this._isShown())\n }\n\n if (this._config.toggle) {\n this.toggle()\n }\n }\n\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Public\n toggle() {\n if (this._isShown()) {\n this.hide()\n } else {\n this.show()\n }\n }\n\n show() {\n if (this._isTransitioning || this._isShown()) {\n return\n }\n\n let activeChildren = []\n\n // find active children\n if (this._config.parent) {\n activeChildren = this._getFirstLevelChildren(SELECTOR_ACTIVES)\n .filter(element => element !== this._element)\n .map(element => Collapse.getOrCreateInstance(element, { toggle: false }))\n }\n\n if (activeChildren.length && activeChildren[0]._isTransitioning) {\n return\n }\n\n const startEvent = EventHandler.trigger(this._element, EVENT_SHOW)\n if (startEvent.defaultPrevented) {\n return\n }\n\n for (const activeInstance of activeChildren) {\n activeInstance.hide()\n }\n\n const dimension = this._getDimension()\n\n this._element.classList.remove(CLASS_NAME_COLLAPSE)\n this._element.classList.add(CLASS_NAME_COLLAPSING)\n\n this._element.style[dimension] = 0\n\n this._addAriaAndCollapsedClass(this._triggerArray, true)\n this._isTransitioning = true\n\n const complete = () => {\n this._isTransitioning = false\n\n this._element.classList.remove(CLASS_NAME_COLLAPSING)\n this._element.classList.add(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW)\n\n this._element.style[dimension] = ''\n\n EventHandler.trigger(this._element, EVENT_SHOWN)\n }\n\n const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1)\n const scrollSize = `scroll${capitalizedDimension}`\n\n this._queueCallback(complete, this._element, true)\n this._element.style[dimension] = `${this._element[scrollSize]}px`\n }\n\n hide() {\n if (this._isTransitioning || !this._isShown()) {\n return\n }\n\n const startEvent = EventHandler.trigger(this._element, EVENT_HIDE)\n if (startEvent.defaultPrevented) {\n return\n }\n\n const dimension = this._getDimension()\n\n this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`\n\n reflow(this._element)\n\n this._element.classList.add(CLASS_NAME_COLLAPSING)\n this._element.classList.remove(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW)\n\n for (const trigger of this._triggerArray) {\n const element = SelectorEngine.getElementFromSelector(trigger)\n\n if (element && !this._isShown(element)) {\n this._addAriaAndCollapsedClass([trigger], false)\n }\n }\n\n this._isTransitioning = true\n\n const complete = () => {\n this._isTransitioning = false\n this._element.classList.remove(CLASS_NAME_COLLAPSING)\n this._element.classList.add(CLASS_NAME_COLLAPSE)\n EventHandler.trigger(this._element, EVENT_HIDDEN)\n }\n\n this._element.style[dimension] = ''\n\n this._queueCallback(complete, this._element, true)\n }\n\n _isShown(element = this._element) {\n return element.classList.contains(CLASS_NAME_SHOW)\n }\n\n // Private\n _configAfterMerge(config) {\n config.toggle = Boolean(config.toggle) // Coerce string values\n config.parent = getElement(config.parent)\n return config\n }\n\n _getDimension() {\n return this._element.classList.contains(CLASS_NAME_HORIZONTAL) ? WIDTH : HEIGHT\n }\n\n _initializeChildren() {\n if (!this._config.parent) {\n return\n }\n\n const children = this._getFirstLevelChildren(SELECTOR_DATA_TOGGLE)\n\n for (const element of children) {\n const selected = SelectorEngine.getElementFromSelector(element)\n\n if (selected) {\n this._addAriaAndCollapsedClass([element], this._isShown(selected))\n }\n }\n }\n\n _getFirstLevelChildren(selector) {\n const children = SelectorEngine.find(CLASS_NAME_DEEPER_CHILDREN, this._config.parent)\n // remove children if greater depth\n return SelectorEngine.find(selector, this._config.parent).filter(element => !children.includes(element))\n }\n\n _addAriaAndCollapsedClass(triggerArray, isOpen) {\n if (!triggerArray.length) {\n return\n }\n\n for (const element of triggerArray) {\n element.classList.toggle(CLASS_NAME_COLLAPSED, !isOpen)\n element.setAttribute('aria-expanded', isOpen)\n }\n }\n\n // Static\n static jQueryInterface(config) {\n const _config = {}\n if (typeof config === 'string' && /show|hide/.test(config)) {\n _config.toggle = false\n }\n\n return this.each(function () {\n const data = Collapse.getOrCreateInstance(this, _config)\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config]()\n }\n })\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {\n // preventDefault only for elements (which change the URL) not inside the collapsible element\n if (event.target.tagName === 'A' || (event.delegateTarget && event.delegateTarget.tagName === 'A')) {\n event.preventDefault()\n }\n\n for (const element of SelectorEngine.getMultipleElementsFromSelector(this)) {\n Collapse.getOrCreateInstance(element, { toggle: false }).toggle()\n }\n})\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Collapse)\n\nexport default Collapse\n","export var top = 'top';\nexport var bottom = 'bottom';\nexport var right = 'right';\nexport var left = 'left';\nexport var auto = 'auto';\nexport var basePlacements = [top, bottom, right, left];\nexport var start = 'start';\nexport var end = 'end';\nexport var clippingParents = 'clippingParents';\nexport var viewport = 'viewport';\nexport var popper = 'popper';\nexport var reference = 'reference';\nexport var variationPlacements = /*#__PURE__*/basePlacements.reduce(function (acc, placement) {\n return acc.concat([placement + \"-\" + start, placement + \"-\" + end]);\n}, []);\nexport var placements = /*#__PURE__*/[].concat(basePlacements, [auto]).reduce(function (acc, placement) {\n return acc.concat([placement, placement + \"-\" + start, placement + \"-\" + end]);\n}, []); // modifiers that need to read the DOM\n\nexport var beforeRead = 'beforeRead';\nexport var read = 'read';\nexport var afterRead = 'afterRead'; // pure-logic modifiers\n\nexport var beforeMain = 'beforeMain';\nexport var main = 'main';\nexport var afterMain = 'afterMain'; // modifier with the purpose to write to the DOM (or write into a framework state)\n\nexport var beforeWrite = 'beforeWrite';\nexport var write = 'write';\nexport var afterWrite = 'afterWrite';\nexport var modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite];","export default function getNodeName(element) {\n return element ? (element.nodeName || '').toLowerCase() : null;\n}","export default function getWindow(node) {\n if (node == null) {\n return window;\n }\n\n if (node.toString() !== '[object Window]') {\n var ownerDocument = node.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView || window : window;\n }\n\n return node;\n}","import getWindow from \"./getWindow.js\";\n\nfunction isElement(node) {\n var OwnElement = getWindow(node).Element;\n return node instanceof OwnElement || node instanceof Element;\n}\n\nfunction isHTMLElement(node) {\n var OwnElement = getWindow(node).HTMLElement;\n return node instanceof OwnElement || node instanceof HTMLElement;\n}\n\nfunction isShadowRoot(node) {\n // IE 11 has no ShadowRoot\n if (typeof ShadowRoot === 'undefined') {\n return false;\n }\n\n var OwnElement = getWindow(node).ShadowRoot;\n return node instanceof OwnElement || node instanceof ShadowRoot;\n}\n\nexport { isElement, isHTMLElement, isShadowRoot };","import getNodeName from \"../dom-utils/getNodeName.js\";\nimport { isHTMLElement } from \"../dom-utils/instanceOf.js\"; // This modifier takes the styles prepared by the `computeStyles` modifier\n// and applies them to the HTMLElements such as popper and arrow\n\nfunction applyStyles(_ref) {\n var state = _ref.state;\n Object.keys(state.elements).forEach(function (name) {\n var style = state.styles[name] || {};\n var attributes = state.attributes[name] || {};\n var element = state.elements[name]; // arrow is optional + virtual elements\n\n if (!isHTMLElement(element) || !getNodeName(element)) {\n return;\n } // Flow doesn't support to extend this property, but it's the most\n // effective way to apply styles to an HTMLElement\n // $FlowFixMe[cannot-write]\n\n\n Object.assign(element.style, style);\n Object.keys(attributes).forEach(function (name) {\n var value = attributes[name];\n\n if (value === false) {\n element.removeAttribute(name);\n } else {\n element.setAttribute(name, value === true ? '' : value);\n }\n });\n });\n}\n\nfunction effect(_ref2) {\n var state = _ref2.state;\n var initialStyles = {\n popper: {\n position: state.options.strategy,\n left: '0',\n top: '0',\n margin: '0'\n },\n arrow: {\n position: 'absolute'\n },\n reference: {}\n };\n Object.assign(state.elements.popper.style, initialStyles.popper);\n state.styles = initialStyles;\n\n if (state.elements.arrow) {\n Object.assign(state.elements.arrow.style, initialStyles.arrow);\n }\n\n return function () {\n Object.keys(state.elements).forEach(function (name) {\n var element = state.elements[name];\n var attributes = state.attributes[name] || {};\n var styleProperties = Object.keys(state.styles.hasOwnProperty(name) ? state.styles[name] : initialStyles[name]); // Set all values to an empty string to unset them\n\n var style = styleProperties.reduce(function (style, property) {\n style[property] = '';\n return style;\n }, {}); // arrow is optional + virtual elements\n\n if (!isHTMLElement(element) || !getNodeName(element)) {\n return;\n }\n\n Object.assign(element.style, style);\n Object.keys(attributes).forEach(function (attribute) {\n element.removeAttribute(attribute);\n });\n });\n };\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'applyStyles',\n enabled: true,\n phase: 'write',\n fn: applyStyles,\n effect: effect,\n requires: ['computeStyles']\n};","import { auto } from \"../enums.js\";\nexport default function getBasePlacement(placement) {\n return placement.split('-')[0];\n}","export var max = Math.max;\nexport var min = Math.min;\nexport var round = Math.round;","export default function getUAString() {\n var uaData = navigator.userAgentData;\n\n if (uaData != null && uaData.brands && Array.isArray(uaData.brands)) {\n return uaData.brands.map(function (item) {\n return item.brand + \"/\" + item.version;\n }).join(' ');\n }\n\n return navigator.userAgent;\n}","import getUAString from \"../utils/userAgent.js\";\nexport default function isLayoutViewport() {\n return !/^((?!chrome|android).)*safari/i.test(getUAString());\n}","import { isElement, isHTMLElement } from \"./instanceOf.js\";\nimport { round } from \"../utils/math.js\";\nimport getWindow from \"./getWindow.js\";\nimport isLayoutViewport from \"./isLayoutViewport.js\";\nexport default function getBoundingClientRect(element, includeScale, isFixedStrategy) {\n if (includeScale === void 0) {\n includeScale = false;\n }\n\n if (isFixedStrategy === void 0) {\n isFixedStrategy = false;\n }\n\n var clientRect = element.getBoundingClientRect();\n var scaleX = 1;\n var scaleY = 1;\n\n if (includeScale && isHTMLElement(element)) {\n scaleX = element.offsetWidth > 0 ? round(clientRect.width) / element.offsetWidth || 1 : 1;\n scaleY = element.offsetHeight > 0 ? round(clientRect.height) / element.offsetHeight || 1 : 1;\n }\n\n var _ref = isElement(element) ? getWindow(element) : window,\n visualViewport = _ref.visualViewport;\n\n var addVisualOffsets = !isLayoutViewport() && isFixedStrategy;\n var x = (clientRect.left + (addVisualOffsets && visualViewport ? visualViewport.offsetLeft : 0)) / scaleX;\n var y = (clientRect.top + (addVisualOffsets && visualViewport ? visualViewport.offsetTop : 0)) / scaleY;\n var width = clientRect.width / scaleX;\n var height = clientRect.height / scaleY;\n return {\n width: width,\n height: height,\n top: y,\n right: x + width,\n bottom: y + height,\n left: x,\n x: x,\n y: y\n };\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\"; // Returns the layout rect of an element relative to its offsetParent. Layout\n// means it doesn't take into account transforms.\n\nexport default function getLayoutRect(element) {\n var clientRect = getBoundingClientRect(element); // Use the clientRect sizes if it's not been transformed.\n // Fixes https://github.com/popperjs/popper-core/issues/1223\n\n var width = element.offsetWidth;\n var height = element.offsetHeight;\n\n if (Math.abs(clientRect.width - width) <= 1) {\n width = clientRect.width;\n }\n\n if (Math.abs(clientRect.height - height) <= 1) {\n height = clientRect.height;\n }\n\n return {\n x: element.offsetLeft,\n y: element.offsetTop,\n width: width,\n height: height\n };\n}","import { isShadowRoot } from \"./instanceOf.js\";\nexport default function contains(parent, child) {\n var rootNode = child.getRootNode && child.getRootNode(); // First, attempt with faster native method\n\n if (parent.contains(child)) {\n return true;\n } // then fallback to custom implementation with Shadow DOM support\n else if (rootNode && isShadowRoot(rootNode)) {\n var next = child;\n\n do {\n if (next && parent.isSameNode(next)) {\n return true;\n } // $FlowFixMe[prop-missing]: need a better way to handle this...\n\n\n next = next.parentNode || next.host;\n } while (next);\n } // Give up, the result is false\n\n\n return false;\n}","import getWindow from \"./getWindow.js\";\nexport default function getComputedStyle(element) {\n return getWindow(element).getComputedStyle(element);\n}","import getNodeName from \"./getNodeName.js\";\nexport default function isTableElement(element) {\n return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0;\n}","import { isElement } from \"./instanceOf.js\";\nexport default function getDocumentElement(element) {\n // $FlowFixMe[incompatible-return]: assume body is always available\n return ((isElement(element) ? element.ownerDocument : // $FlowFixMe[prop-missing]\n element.document) || window.document).documentElement;\n}","import getNodeName from \"./getNodeName.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport { isShadowRoot } from \"./instanceOf.js\";\nexport default function getParentNode(element) {\n if (getNodeName(element) === 'html') {\n return element;\n }\n\n return (// this is a quicker (but less type safe) way to save quite some bytes from the bundle\n // $FlowFixMe[incompatible-return]\n // $FlowFixMe[prop-missing]\n element.assignedSlot || // step into the shadow DOM of the parent of a slotted node\n element.parentNode || ( // DOM Element detected\n isShadowRoot(element) ? element.host : null) || // ShadowRoot detected\n // $FlowFixMe[incompatible-call]: HTMLElement is a Node\n getDocumentElement(element) // fallback\n\n );\n}","import getWindow from \"./getWindow.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport { isHTMLElement, isShadowRoot } from \"./instanceOf.js\";\nimport isTableElement from \"./isTableElement.js\";\nimport getParentNode from \"./getParentNode.js\";\nimport getUAString from \"../utils/userAgent.js\";\n\nfunction getTrueOffsetParent(element) {\n if (!isHTMLElement(element) || // https://github.com/popperjs/popper-core/issues/837\n getComputedStyle(element).position === 'fixed') {\n return null;\n }\n\n return element.offsetParent;\n} // `.offsetParent` reports `null` for fixed elements, while absolute elements\n// return the containing block\n\n\nfunction getContainingBlock(element) {\n var isFirefox = /firefox/i.test(getUAString());\n var isIE = /Trident/i.test(getUAString());\n\n if (isIE && isHTMLElement(element)) {\n // In IE 9, 10 and 11 fixed elements containing block is always established by the viewport\n var elementCss = getComputedStyle(element);\n\n if (elementCss.position === 'fixed') {\n return null;\n }\n }\n\n var currentNode = getParentNode(element);\n\n if (isShadowRoot(currentNode)) {\n currentNode = currentNode.host;\n }\n\n while (isHTMLElement(currentNode) && ['html', 'body'].indexOf(getNodeName(currentNode)) < 0) {\n var css = getComputedStyle(currentNode); // This is non-exhaustive but covers the most common CSS properties that\n // create a containing block.\n // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n\n if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') {\n return currentNode;\n } else {\n currentNode = currentNode.parentNode;\n }\n }\n\n return null;\n} // Gets the closest ancestor positioned element. Handles some edge cases,\n// such as table ancestors and cross browser bugs.\n\n\nexport default function getOffsetParent(element) {\n var window = getWindow(element);\n var offsetParent = getTrueOffsetParent(element);\n\n while (offsetParent && isTableElement(offsetParent) && getComputedStyle(offsetParent).position === 'static') {\n offsetParent = getTrueOffsetParent(offsetParent);\n }\n\n if (offsetParent && (getNodeName(offsetParent) === 'html' || getNodeName(offsetParent) === 'body' && getComputedStyle(offsetParent).position === 'static')) {\n return window;\n }\n\n return offsetParent || getContainingBlock(element) || window;\n}","export default function getMainAxisFromPlacement(placement) {\n return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';\n}","import { max as mathMax, min as mathMin } from \"./math.js\";\nexport function within(min, value, max) {\n return mathMax(min, mathMin(value, max));\n}\nexport function withinMaxClamp(min, value, max) {\n var v = within(min, value, max);\n return v > max ? max : v;\n}","import getFreshSideObject from \"./getFreshSideObject.js\";\nexport default function mergePaddingObject(paddingObject) {\n return Object.assign({}, getFreshSideObject(), paddingObject);\n}","export default function getFreshSideObject() {\n return {\n top: 0,\n right: 0,\n bottom: 0,\n left: 0\n };\n}","export default function expandToHashMap(value, keys) {\n return keys.reduce(function (hashMap, key) {\n hashMap[key] = value;\n return hashMap;\n }, {});\n}","import getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getLayoutRect from \"../dom-utils/getLayoutRect.js\";\nimport contains from \"../dom-utils/contains.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport getMainAxisFromPlacement from \"../utils/getMainAxisFromPlacement.js\";\nimport { within } from \"../utils/within.js\";\nimport mergePaddingObject from \"../utils/mergePaddingObject.js\";\nimport expandToHashMap from \"../utils/expandToHashMap.js\";\nimport { left, right, basePlacements, top, bottom } from \"../enums.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar toPaddingObject = function toPaddingObject(padding, state) {\n padding = typeof padding === 'function' ? padding(Object.assign({}, state.rects, {\n placement: state.placement\n })) : padding;\n return mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements));\n};\n\nfunction arrow(_ref) {\n var _state$modifiersData$;\n\n var state = _ref.state,\n name = _ref.name,\n options = _ref.options;\n var arrowElement = state.elements.arrow;\n var popperOffsets = state.modifiersData.popperOffsets;\n var basePlacement = getBasePlacement(state.placement);\n var axis = getMainAxisFromPlacement(basePlacement);\n var isVertical = [left, right].indexOf(basePlacement) >= 0;\n var len = isVertical ? 'height' : 'width';\n\n if (!arrowElement || !popperOffsets) {\n return;\n }\n\n var paddingObject = toPaddingObject(options.padding, state);\n var arrowRect = getLayoutRect(arrowElement);\n var minProp = axis === 'y' ? top : left;\n var maxProp = axis === 'y' ? bottom : right;\n var endDiff = state.rects.reference[len] + state.rects.reference[axis] - popperOffsets[axis] - state.rects.popper[len];\n var startDiff = popperOffsets[axis] - state.rects.reference[axis];\n var arrowOffsetParent = getOffsetParent(arrowElement);\n var clientSize = arrowOffsetParent ? axis === 'y' ? arrowOffsetParent.clientHeight || 0 : arrowOffsetParent.clientWidth || 0 : 0;\n var centerToReference = endDiff / 2 - startDiff / 2; // Make sure the arrow doesn't overflow the popper if the center point is\n // outside of the popper bounds\n\n var min = paddingObject[minProp];\n var max = clientSize - arrowRect[len] - paddingObject[maxProp];\n var center = clientSize / 2 - arrowRect[len] / 2 + centerToReference;\n var offset = within(min, center, max); // Prevents breaking syntax highlighting...\n\n var axisProp = axis;\n state.modifiersData[name] = (_state$modifiersData$ = {}, _state$modifiersData$[axisProp] = offset, _state$modifiersData$.centerOffset = offset - center, _state$modifiersData$);\n}\n\nfunction effect(_ref2) {\n var state = _ref2.state,\n options = _ref2.options;\n var _options$element = options.element,\n arrowElement = _options$element === void 0 ? '[data-popper-arrow]' : _options$element;\n\n if (arrowElement == null) {\n return;\n } // CSS selector\n\n\n if (typeof arrowElement === 'string') {\n arrowElement = state.elements.popper.querySelector(arrowElement);\n\n if (!arrowElement) {\n return;\n }\n }\n\n if (!contains(state.elements.popper, arrowElement)) {\n return;\n }\n\n state.elements.arrow = arrowElement;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'arrow',\n enabled: true,\n phase: 'main',\n fn: arrow,\n effect: effect,\n requires: ['popperOffsets'],\n requiresIfExists: ['preventOverflow']\n};","export default function getVariation(placement) {\n return placement.split('-')[1];\n}","import { top, left, right, bottom, end } from \"../enums.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport getWindow from \"../dom-utils/getWindow.js\";\nimport getDocumentElement from \"../dom-utils/getDocumentElement.js\";\nimport getComputedStyle from \"../dom-utils/getComputedStyle.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getVariation from \"../utils/getVariation.js\";\nimport { round } from \"../utils/math.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar unsetSides = {\n top: 'auto',\n right: 'auto',\n bottom: 'auto',\n left: 'auto'\n}; // Round the offsets to the nearest suitable subpixel based on the DPR.\n// Zooming can change the DPR, but it seems to report a value that will\n// cleanly divide the values into the appropriate subpixels.\n\nfunction roundOffsetsByDPR(_ref, win) {\n var x = _ref.x,\n y = _ref.y;\n var dpr = win.devicePixelRatio || 1;\n return {\n x: round(x * dpr) / dpr || 0,\n y: round(y * dpr) / dpr || 0\n };\n}\n\nexport function mapToStyles(_ref2) {\n var _Object$assign2;\n\n var popper = _ref2.popper,\n popperRect = _ref2.popperRect,\n placement = _ref2.placement,\n variation = _ref2.variation,\n offsets = _ref2.offsets,\n position = _ref2.position,\n gpuAcceleration = _ref2.gpuAcceleration,\n adaptive = _ref2.adaptive,\n roundOffsets = _ref2.roundOffsets,\n isFixed = _ref2.isFixed;\n var _offsets$x = offsets.x,\n x = _offsets$x === void 0 ? 0 : _offsets$x,\n _offsets$y = offsets.y,\n y = _offsets$y === void 0 ? 0 : _offsets$y;\n\n var _ref3 = typeof roundOffsets === 'function' ? roundOffsets({\n x: x,\n y: y\n }) : {\n x: x,\n y: y\n };\n\n x = _ref3.x;\n y = _ref3.y;\n var hasX = offsets.hasOwnProperty('x');\n var hasY = offsets.hasOwnProperty('y');\n var sideX = left;\n var sideY = top;\n var win = window;\n\n if (adaptive) {\n var offsetParent = getOffsetParent(popper);\n var heightProp = 'clientHeight';\n var widthProp = 'clientWidth';\n\n if (offsetParent === getWindow(popper)) {\n offsetParent = getDocumentElement(popper);\n\n if (getComputedStyle(offsetParent).position !== 'static' && position === 'absolute') {\n heightProp = 'scrollHeight';\n widthProp = 'scrollWidth';\n }\n } // $FlowFixMe[incompatible-cast]: force type refinement, we compare offsetParent with window above, but Flow doesn't detect it\n\n\n offsetParent = offsetParent;\n\n if (placement === top || (placement === left || placement === right) && variation === end) {\n sideY = bottom;\n var offsetY = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.height : // $FlowFixMe[prop-missing]\n offsetParent[heightProp];\n y -= offsetY - popperRect.height;\n y *= gpuAcceleration ? 1 : -1;\n }\n\n if (placement === left || (placement === top || placement === bottom) && variation === end) {\n sideX = right;\n var offsetX = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.width : // $FlowFixMe[prop-missing]\n offsetParent[widthProp];\n x -= offsetX - popperRect.width;\n x *= gpuAcceleration ? 1 : -1;\n }\n }\n\n var commonStyles = Object.assign({\n position: position\n }, adaptive && unsetSides);\n\n var _ref4 = roundOffsets === true ? roundOffsetsByDPR({\n x: x,\n y: y\n }, getWindow(popper)) : {\n x: x,\n y: y\n };\n\n x = _ref4.x;\n y = _ref4.y;\n\n if (gpuAcceleration) {\n var _Object$assign;\n\n return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? '0' : '', _Object$assign[sideX] = hasX ? '0' : '', _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? \"translate(\" + x + \"px, \" + y + \"px)\" : \"translate3d(\" + x + \"px, \" + y + \"px, 0)\", _Object$assign));\n }\n\n return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y + \"px\" : '', _Object$assign2[sideX] = hasX ? x + \"px\" : '', _Object$assign2.transform = '', _Object$assign2));\n}\n\nfunction computeStyles(_ref5) {\n var state = _ref5.state,\n options = _ref5.options;\n var _options$gpuAccelerat = options.gpuAcceleration,\n gpuAcceleration = _options$gpuAccelerat === void 0 ? true : _options$gpuAccelerat,\n _options$adaptive = options.adaptive,\n adaptive = _options$adaptive === void 0 ? true : _options$adaptive,\n _options$roundOffsets = options.roundOffsets,\n roundOffsets = _options$roundOffsets === void 0 ? true : _options$roundOffsets;\n var commonStyles = {\n placement: getBasePlacement(state.placement),\n variation: getVariation(state.placement),\n popper: state.elements.popper,\n popperRect: state.rects.popper,\n gpuAcceleration: gpuAcceleration,\n isFixed: state.options.strategy === 'fixed'\n };\n\n if (state.modifiersData.popperOffsets != null) {\n state.styles.popper = Object.assign({}, state.styles.popper, mapToStyles(Object.assign({}, commonStyles, {\n offsets: state.modifiersData.popperOffsets,\n position: state.options.strategy,\n adaptive: adaptive,\n roundOffsets: roundOffsets\n })));\n }\n\n if (state.modifiersData.arrow != null) {\n state.styles.arrow = Object.assign({}, state.styles.arrow, mapToStyles(Object.assign({}, commonStyles, {\n offsets: state.modifiersData.arrow,\n position: 'absolute',\n adaptive: false,\n roundOffsets: roundOffsets\n })));\n }\n\n state.attributes.popper = Object.assign({}, state.attributes.popper, {\n 'data-popper-placement': state.placement\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'computeStyles',\n enabled: true,\n phase: 'beforeWrite',\n fn: computeStyles,\n data: {}\n};","import getWindow from \"../dom-utils/getWindow.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar passive = {\n passive: true\n};\n\nfunction effect(_ref) {\n var state = _ref.state,\n instance = _ref.instance,\n options = _ref.options;\n var _options$scroll = options.scroll,\n scroll = _options$scroll === void 0 ? true : _options$scroll,\n _options$resize = options.resize,\n resize = _options$resize === void 0 ? true : _options$resize;\n var window = getWindow(state.elements.popper);\n var scrollParents = [].concat(state.scrollParents.reference, state.scrollParents.popper);\n\n if (scroll) {\n scrollParents.forEach(function (scrollParent) {\n scrollParent.addEventListener('scroll', instance.update, passive);\n });\n }\n\n if (resize) {\n window.addEventListener('resize', instance.update, passive);\n }\n\n return function () {\n if (scroll) {\n scrollParents.forEach(function (scrollParent) {\n scrollParent.removeEventListener('scroll', instance.update, passive);\n });\n }\n\n if (resize) {\n window.removeEventListener('resize', instance.update, passive);\n }\n };\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'eventListeners',\n enabled: true,\n phase: 'write',\n fn: function fn() {},\n effect: effect,\n data: {}\n};","var hash = {\n left: 'right',\n right: 'left',\n bottom: 'top',\n top: 'bottom'\n};\nexport default function getOppositePlacement(placement) {\n return placement.replace(/left|right|bottom|top/g, function (matched) {\n return hash[matched];\n });\n}","var hash = {\n start: 'end',\n end: 'start'\n};\nexport default function getOppositeVariationPlacement(placement) {\n return placement.replace(/start|end/g, function (matched) {\n return hash[matched];\n });\n}","import getWindow from \"./getWindow.js\";\nexport default function getWindowScroll(node) {\n var win = getWindow(node);\n var scrollLeft = win.pageXOffset;\n var scrollTop = win.pageYOffset;\n return {\n scrollLeft: scrollLeft,\n scrollTop: scrollTop\n };\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getWindowScroll from \"./getWindowScroll.js\";\nexport default function getWindowScrollBarX(element) {\n // If has a CSS width greater than the viewport, then this will be\n // incorrect for RTL.\n // Popper 1 is broken in this case and never had a bug report so let's assume\n // it's not an issue. I don't think anyone ever specifies width on \n // anyway.\n // Browsers where the left scrollbar doesn't cause an issue report `0` for\n // this (e.g. Edge 2019, IE11, Safari)\n return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft;\n}","import getComputedStyle from \"./getComputedStyle.js\";\nexport default function isScrollParent(element) {\n // Firefox wants us to check `-x` and `-y` variations as well\n var _getComputedStyle = getComputedStyle(element),\n overflow = _getComputedStyle.overflow,\n overflowX = _getComputedStyle.overflowX,\n overflowY = _getComputedStyle.overflowY;\n\n return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX);\n}","import getParentNode from \"./getParentNode.js\";\nimport isScrollParent from \"./isScrollParent.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nexport default function getScrollParent(node) {\n if (['html', 'body', '#document'].indexOf(getNodeName(node)) >= 0) {\n // $FlowFixMe[incompatible-return]: assume body is always available\n return node.ownerDocument.body;\n }\n\n if (isHTMLElement(node) && isScrollParent(node)) {\n return node;\n }\n\n return getScrollParent(getParentNode(node));\n}","import getScrollParent from \"./getScrollParent.js\";\nimport getParentNode from \"./getParentNode.js\";\nimport getWindow from \"./getWindow.js\";\nimport isScrollParent from \"./isScrollParent.js\";\n/*\ngiven a DOM element, return the list of all scroll parents, up the list of ancesors\nuntil we get to the top window object. This list is what we attach scroll listeners\nto, because if any of these parent elements scroll, we'll need to re-calculate the\nreference element's position.\n*/\n\nexport default function listScrollParents(element, list) {\n var _element$ownerDocumen;\n\n if (list === void 0) {\n list = [];\n }\n\n var scrollParent = getScrollParent(element);\n var isBody = scrollParent === ((_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body);\n var win = getWindow(scrollParent);\n var target = isBody ? [win].concat(win.visualViewport || [], isScrollParent(scrollParent) ? scrollParent : []) : scrollParent;\n var updatedList = list.concat(target);\n return isBody ? updatedList : // $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here\n updatedList.concat(listScrollParents(getParentNode(target)));\n}","export default function rectToClientRect(rect) {\n return Object.assign({}, rect, {\n left: rect.x,\n top: rect.y,\n right: rect.x + rect.width,\n bottom: rect.y + rect.height\n });\n}","import { viewport } from \"../enums.js\";\nimport getViewportRect from \"./getViewportRect.js\";\nimport getDocumentRect from \"./getDocumentRect.js\";\nimport listScrollParents from \"./listScrollParents.js\";\nimport getOffsetParent from \"./getOffsetParent.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport { isElement, isHTMLElement } from \"./instanceOf.js\";\nimport getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getParentNode from \"./getParentNode.js\";\nimport contains from \"./contains.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport rectToClientRect from \"../utils/rectToClientRect.js\";\nimport { max, min } from \"../utils/math.js\";\n\nfunction getInnerBoundingClientRect(element, strategy) {\n var rect = getBoundingClientRect(element, false, strategy === 'fixed');\n rect.top = rect.top + element.clientTop;\n rect.left = rect.left + element.clientLeft;\n rect.bottom = rect.top + element.clientHeight;\n rect.right = rect.left + element.clientWidth;\n rect.width = element.clientWidth;\n rect.height = element.clientHeight;\n rect.x = rect.left;\n rect.y = rect.top;\n return rect;\n}\n\nfunction getClientRectFromMixedType(element, clippingParent, strategy) {\n return clippingParent === viewport ? rectToClientRect(getViewportRect(element, strategy)) : isElement(clippingParent) ? getInnerBoundingClientRect(clippingParent, strategy) : rectToClientRect(getDocumentRect(getDocumentElement(element)));\n} // A \"clipping parent\" is an overflowable container with the characteristic of\n// clipping (or hiding) overflowing elements with a position different from\n// `initial`\n\n\nfunction getClippingParents(element) {\n var clippingParents = listScrollParents(getParentNode(element));\n var canEscapeClipping = ['absolute', 'fixed'].indexOf(getComputedStyle(element).position) >= 0;\n var clipperElement = canEscapeClipping && isHTMLElement(element) ? getOffsetParent(element) : element;\n\n if (!isElement(clipperElement)) {\n return [];\n } // $FlowFixMe[incompatible-return]: https://github.com/facebook/flow/issues/1414\n\n\n return clippingParents.filter(function (clippingParent) {\n return isElement(clippingParent) && contains(clippingParent, clipperElement) && getNodeName(clippingParent) !== 'body';\n });\n} // Gets the maximum area that the element is visible in due to any number of\n// clipping parents\n\n\nexport default function getClippingRect(element, boundary, rootBoundary, strategy) {\n var mainClippingParents = boundary === 'clippingParents' ? getClippingParents(element) : [].concat(boundary);\n var clippingParents = [].concat(mainClippingParents, [rootBoundary]);\n var firstClippingParent = clippingParents[0];\n var clippingRect = clippingParents.reduce(function (accRect, clippingParent) {\n var rect = getClientRectFromMixedType(element, clippingParent, strategy);\n accRect.top = max(rect.top, accRect.top);\n accRect.right = min(rect.right, accRect.right);\n accRect.bottom = min(rect.bottom, accRect.bottom);\n accRect.left = max(rect.left, accRect.left);\n return accRect;\n }, getClientRectFromMixedType(element, firstClippingParent, strategy));\n clippingRect.width = clippingRect.right - clippingRect.left;\n clippingRect.height = clippingRect.bottom - clippingRect.top;\n clippingRect.x = clippingRect.left;\n clippingRect.y = clippingRect.top;\n return clippingRect;\n}","import getWindow from \"./getWindow.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nimport isLayoutViewport from \"./isLayoutViewport.js\";\nexport default function getViewportRect(element, strategy) {\n var win = getWindow(element);\n var html = getDocumentElement(element);\n var visualViewport = win.visualViewport;\n var width = html.clientWidth;\n var height = html.clientHeight;\n var x = 0;\n var y = 0;\n\n if (visualViewport) {\n width = visualViewport.width;\n height = visualViewport.height;\n var layoutViewport = isLayoutViewport();\n\n if (layoutViewport || !layoutViewport && strategy === 'fixed') {\n x = visualViewport.offsetLeft;\n y = visualViewport.offsetTop;\n }\n }\n\n return {\n width: width,\n height: height,\n x: x + getWindowScrollBarX(element),\n y: y\n };\n}","import getDocumentElement from \"./getDocumentElement.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nimport getWindowScroll from \"./getWindowScroll.js\";\nimport { max } from \"../utils/math.js\"; // Gets the entire size of the scrollable document area, even extending outside\n// of the `` and `` rect bounds if horizontally scrollable\n\nexport default function getDocumentRect(element) {\n var _element$ownerDocumen;\n\n var html = getDocumentElement(element);\n var winScroll = getWindowScroll(element);\n var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body;\n var width = max(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0);\n var height = max(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0);\n var x = -winScroll.scrollLeft + getWindowScrollBarX(element);\n var y = -winScroll.scrollTop;\n\n if (getComputedStyle(body || html).direction === 'rtl') {\n x += max(html.clientWidth, body ? body.clientWidth : 0) - width;\n }\n\n return {\n width: width,\n height: height,\n x: x,\n y: y\n };\n}","import getBasePlacement from \"./getBasePlacement.js\";\nimport getVariation from \"./getVariation.js\";\nimport getMainAxisFromPlacement from \"./getMainAxisFromPlacement.js\";\nimport { top, right, bottom, left, start, end } from \"../enums.js\";\nexport default function computeOffsets(_ref) {\n var reference = _ref.reference,\n element = _ref.element,\n placement = _ref.placement;\n var basePlacement = placement ? getBasePlacement(placement) : null;\n var variation = placement ? getVariation(placement) : null;\n var commonX = reference.x + reference.width / 2 - element.width / 2;\n var commonY = reference.y + reference.height / 2 - element.height / 2;\n var offsets;\n\n switch (basePlacement) {\n case top:\n offsets = {\n x: commonX,\n y: reference.y - element.height\n };\n break;\n\n case bottom:\n offsets = {\n x: commonX,\n y: reference.y + reference.height\n };\n break;\n\n case right:\n offsets = {\n x: reference.x + reference.width,\n y: commonY\n };\n break;\n\n case left:\n offsets = {\n x: reference.x - element.width,\n y: commonY\n };\n break;\n\n default:\n offsets = {\n x: reference.x,\n y: reference.y\n };\n }\n\n var mainAxis = basePlacement ? getMainAxisFromPlacement(basePlacement) : null;\n\n if (mainAxis != null) {\n var len = mainAxis === 'y' ? 'height' : 'width';\n\n switch (variation) {\n case start:\n offsets[mainAxis] = offsets[mainAxis] - (reference[len] / 2 - element[len] / 2);\n break;\n\n case end:\n offsets[mainAxis] = offsets[mainAxis] + (reference[len] / 2 - element[len] / 2);\n break;\n\n default:\n }\n }\n\n return offsets;\n}","import getClippingRect from \"../dom-utils/getClippingRect.js\";\nimport getDocumentElement from \"../dom-utils/getDocumentElement.js\";\nimport getBoundingClientRect from \"../dom-utils/getBoundingClientRect.js\";\nimport computeOffsets from \"./computeOffsets.js\";\nimport rectToClientRect from \"./rectToClientRect.js\";\nimport { clippingParents, reference, popper, bottom, top, right, basePlacements, viewport } from \"../enums.js\";\nimport { isElement } from \"../dom-utils/instanceOf.js\";\nimport mergePaddingObject from \"./mergePaddingObject.js\";\nimport expandToHashMap from \"./expandToHashMap.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport default function detectOverflow(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n _options$placement = _options.placement,\n placement = _options$placement === void 0 ? state.placement : _options$placement,\n _options$strategy = _options.strategy,\n strategy = _options$strategy === void 0 ? state.strategy : _options$strategy,\n _options$boundary = _options.boundary,\n boundary = _options$boundary === void 0 ? clippingParents : _options$boundary,\n _options$rootBoundary = _options.rootBoundary,\n rootBoundary = _options$rootBoundary === void 0 ? viewport : _options$rootBoundary,\n _options$elementConte = _options.elementContext,\n elementContext = _options$elementConte === void 0 ? popper : _options$elementConte,\n _options$altBoundary = _options.altBoundary,\n altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary,\n _options$padding = _options.padding,\n padding = _options$padding === void 0 ? 0 : _options$padding;\n var paddingObject = mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements));\n var altContext = elementContext === popper ? reference : popper;\n var popperRect = state.rects.popper;\n var element = state.elements[altBoundary ? altContext : elementContext];\n var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary, strategy);\n var referenceClientRect = getBoundingClientRect(state.elements.reference);\n var popperOffsets = computeOffsets({\n reference: referenceClientRect,\n element: popperRect,\n strategy: 'absolute',\n placement: placement\n });\n var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets));\n var elementClientRect = elementContext === popper ? popperClientRect : referenceClientRect; // positive = overflowing the clipping rect\n // 0 or negative = within the clipping rect\n\n var overflowOffsets = {\n top: clippingClientRect.top - elementClientRect.top + paddingObject.top,\n bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom,\n left: clippingClientRect.left - elementClientRect.left + paddingObject.left,\n right: elementClientRect.right - clippingClientRect.right + paddingObject.right\n };\n var offsetData = state.modifiersData.offset; // Offsets can be applied only to the popper element\n\n if (elementContext === popper && offsetData) {\n var offset = offsetData[placement];\n Object.keys(overflowOffsets).forEach(function (key) {\n var multiply = [right, bottom].indexOf(key) >= 0 ? 1 : -1;\n var axis = [top, bottom].indexOf(key) >= 0 ? 'y' : 'x';\n overflowOffsets[key] += offset[axis] * multiply;\n });\n }\n\n return overflowOffsets;\n}","import getVariation from \"./getVariation.js\";\nimport { variationPlacements, basePlacements, placements as allPlacements } from \"../enums.js\";\nimport detectOverflow from \"./detectOverflow.js\";\nimport getBasePlacement from \"./getBasePlacement.js\";\nexport default function computeAutoPlacement(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n placement = _options.placement,\n boundary = _options.boundary,\n rootBoundary = _options.rootBoundary,\n padding = _options.padding,\n flipVariations = _options.flipVariations,\n _options$allowedAutoP = _options.allowedAutoPlacements,\n allowedAutoPlacements = _options$allowedAutoP === void 0 ? allPlacements : _options$allowedAutoP;\n var variation = getVariation(placement);\n var placements = variation ? flipVariations ? variationPlacements : variationPlacements.filter(function (placement) {\n return getVariation(placement) === variation;\n }) : basePlacements;\n var allowedPlacements = placements.filter(function (placement) {\n return allowedAutoPlacements.indexOf(placement) >= 0;\n });\n\n if (allowedPlacements.length === 0) {\n allowedPlacements = placements;\n } // $FlowFixMe[incompatible-type]: Flow seems to have problems with two array unions...\n\n\n var overflows = allowedPlacements.reduce(function (acc, placement) {\n acc[placement] = detectOverflow(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding\n })[getBasePlacement(placement)];\n return acc;\n }, {});\n return Object.keys(overflows).sort(function (a, b) {\n return overflows[a] - overflows[b];\n });\n}","import getOppositePlacement from \"../utils/getOppositePlacement.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getOppositeVariationPlacement from \"../utils/getOppositeVariationPlacement.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\nimport computeAutoPlacement from \"../utils/computeAutoPlacement.js\";\nimport { bottom, top, start, right, left, auto } from \"../enums.js\";\nimport getVariation from \"../utils/getVariation.js\"; // eslint-disable-next-line import/no-unused-modules\n\nfunction getExpandedFallbackPlacements(placement) {\n if (getBasePlacement(placement) === auto) {\n return [];\n }\n\n var oppositePlacement = getOppositePlacement(placement);\n return [getOppositeVariationPlacement(placement), oppositePlacement, getOppositeVariationPlacement(oppositePlacement)];\n}\n\nfunction flip(_ref) {\n var state = _ref.state,\n options = _ref.options,\n name = _ref.name;\n\n if (state.modifiersData[name]._skip) {\n return;\n }\n\n var _options$mainAxis = options.mainAxis,\n checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis,\n _options$altAxis = options.altAxis,\n checkAltAxis = _options$altAxis === void 0 ? true : _options$altAxis,\n specifiedFallbackPlacements = options.fallbackPlacements,\n padding = options.padding,\n boundary = options.boundary,\n rootBoundary = options.rootBoundary,\n altBoundary = options.altBoundary,\n _options$flipVariatio = options.flipVariations,\n flipVariations = _options$flipVariatio === void 0 ? true : _options$flipVariatio,\n allowedAutoPlacements = options.allowedAutoPlacements;\n var preferredPlacement = state.options.placement;\n var basePlacement = getBasePlacement(preferredPlacement);\n var isBasePlacement = basePlacement === preferredPlacement;\n var fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipVariations ? [getOppositePlacement(preferredPlacement)] : getExpandedFallbackPlacements(preferredPlacement));\n var placements = [preferredPlacement].concat(fallbackPlacements).reduce(function (acc, placement) {\n return acc.concat(getBasePlacement(placement) === auto ? computeAutoPlacement(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding,\n flipVariations: flipVariations,\n allowedAutoPlacements: allowedAutoPlacements\n }) : placement);\n }, []);\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var checksMap = new Map();\n var makeFallbackChecks = true;\n var firstFittingPlacement = placements[0];\n\n for (var i = 0; i < placements.length; i++) {\n var placement = placements[i];\n\n var _basePlacement = getBasePlacement(placement);\n\n var isStartVariation = getVariation(placement) === start;\n var isVertical = [top, bottom].indexOf(_basePlacement) >= 0;\n var len = isVertical ? 'width' : 'height';\n var overflow = detectOverflow(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n altBoundary: altBoundary,\n padding: padding\n });\n var mainVariationSide = isVertical ? isStartVariation ? right : left : isStartVariation ? bottom : top;\n\n if (referenceRect[len] > popperRect[len]) {\n mainVariationSide = getOppositePlacement(mainVariationSide);\n }\n\n var altVariationSide = getOppositePlacement(mainVariationSide);\n var checks = [];\n\n if (checkMainAxis) {\n checks.push(overflow[_basePlacement] <= 0);\n }\n\n if (checkAltAxis) {\n checks.push(overflow[mainVariationSide] <= 0, overflow[altVariationSide] <= 0);\n }\n\n if (checks.every(function (check) {\n return check;\n })) {\n firstFittingPlacement = placement;\n makeFallbackChecks = false;\n break;\n }\n\n checksMap.set(placement, checks);\n }\n\n if (makeFallbackChecks) {\n // `2` may be desired in some cases – research later\n var numberOfChecks = flipVariations ? 3 : 1;\n\n var _loop = function _loop(_i) {\n var fittingPlacement = placements.find(function (placement) {\n var checks = checksMap.get(placement);\n\n if (checks) {\n return checks.slice(0, _i).every(function (check) {\n return check;\n });\n }\n });\n\n if (fittingPlacement) {\n firstFittingPlacement = fittingPlacement;\n return \"break\";\n }\n };\n\n for (var _i = numberOfChecks; _i > 0; _i--) {\n var _ret = _loop(_i);\n\n if (_ret === \"break\") break;\n }\n }\n\n if (state.placement !== firstFittingPlacement) {\n state.modifiersData[name]._skip = true;\n state.placement = firstFittingPlacement;\n state.reset = true;\n }\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'flip',\n enabled: true,\n phase: 'main',\n fn: flip,\n requiresIfExists: ['offset'],\n data: {\n _skip: false\n }\n};","import { top, bottom, left, right } from \"../enums.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\n\nfunction getSideOffsets(overflow, rect, preventedOffsets) {\n if (preventedOffsets === void 0) {\n preventedOffsets = {\n x: 0,\n y: 0\n };\n }\n\n return {\n top: overflow.top - rect.height - preventedOffsets.y,\n right: overflow.right - rect.width + preventedOffsets.x,\n bottom: overflow.bottom - rect.height + preventedOffsets.y,\n left: overflow.left - rect.width - preventedOffsets.x\n };\n}\n\nfunction isAnySideFullyClipped(overflow) {\n return [top, right, bottom, left].some(function (side) {\n return overflow[side] >= 0;\n });\n}\n\nfunction hide(_ref) {\n var state = _ref.state,\n name = _ref.name;\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var preventedOffsets = state.modifiersData.preventOverflow;\n var referenceOverflow = detectOverflow(state, {\n elementContext: 'reference'\n });\n var popperAltOverflow = detectOverflow(state, {\n altBoundary: true\n });\n var referenceClippingOffsets = getSideOffsets(referenceOverflow, referenceRect);\n var popperEscapeOffsets = getSideOffsets(popperAltOverflow, popperRect, preventedOffsets);\n var isReferenceHidden = isAnySideFullyClipped(referenceClippingOffsets);\n var hasPopperEscaped = isAnySideFullyClipped(popperEscapeOffsets);\n state.modifiersData[name] = {\n referenceClippingOffsets: referenceClippingOffsets,\n popperEscapeOffsets: popperEscapeOffsets,\n isReferenceHidden: isReferenceHidden,\n hasPopperEscaped: hasPopperEscaped\n };\n state.attributes.popper = Object.assign({}, state.attributes.popper, {\n 'data-popper-reference-hidden': isReferenceHidden,\n 'data-popper-escaped': hasPopperEscaped\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'hide',\n enabled: true,\n phase: 'main',\n requiresIfExists: ['preventOverflow'],\n fn: hide\n};","import getBasePlacement from \"../utils/getBasePlacement.js\";\nimport { top, left, right, placements } from \"../enums.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport function distanceAndSkiddingToXY(placement, rects, offset) {\n var basePlacement = getBasePlacement(placement);\n var invertDistance = [left, top].indexOf(basePlacement) >= 0 ? -1 : 1;\n\n var _ref = typeof offset === 'function' ? offset(Object.assign({}, rects, {\n placement: placement\n })) : offset,\n skidding = _ref[0],\n distance = _ref[1];\n\n skidding = skidding || 0;\n distance = (distance || 0) * invertDistance;\n return [left, right].indexOf(basePlacement) >= 0 ? {\n x: distance,\n y: skidding\n } : {\n x: skidding,\n y: distance\n };\n}\n\nfunction offset(_ref2) {\n var state = _ref2.state,\n options = _ref2.options,\n name = _ref2.name;\n var _options$offset = options.offset,\n offset = _options$offset === void 0 ? [0, 0] : _options$offset;\n var data = placements.reduce(function (acc, placement) {\n acc[placement] = distanceAndSkiddingToXY(placement, state.rects, offset);\n return acc;\n }, {});\n var _data$state$placement = data[state.placement],\n x = _data$state$placement.x,\n y = _data$state$placement.y;\n\n if (state.modifiersData.popperOffsets != null) {\n state.modifiersData.popperOffsets.x += x;\n state.modifiersData.popperOffsets.y += y;\n }\n\n state.modifiersData[name] = data;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'offset',\n enabled: true,\n phase: 'main',\n requires: ['popperOffsets'],\n fn: offset\n};","import computeOffsets from \"../utils/computeOffsets.js\";\n\nfunction popperOffsets(_ref) {\n var state = _ref.state,\n name = _ref.name;\n // Offsets are the actual position the popper needs to have to be\n // properly positioned near its reference element\n // This is the most basic placement, and will be adjusted by\n // the modifiers in the next step\n state.modifiersData[name] = computeOffsets({\n reference: state.rects.reference,\n element: state.rects.popper,\n strategy: 'absolute',\n placement: state.placement\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'popperOffsets',\n enabled: true,\n phase: 'read',\n fn: popperOffsets,\n data: {}\n};","import { top, left, right, bottom, start } from \"../enums.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getMainAxisFromPlacement from \"../utils/getMainAxisFromPlacement.js\";\nimport getAltAxis from \"../utils/getAltAxis.js\";\nimport { within, withinMaxClamp } from \"../utils/within.js\";\nimport getLayoutRect from \"../dom-utils/getLayoutRect.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\nimport getVariation from \"../utils/getVariation.js\";\nimport getFreshSideObject from \"../utils/getFreshSideObject.js\";\nimport { min as mathMin, max as mathMax } from \"../utils/math.js\";\n\nfunction preventOverflow(_ref) {\n var state = _ref.state,\n options = _ref.options,\n name = _ref.name;\n var _options$mainAxis = options.mainAxis,\n checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis,\n _options$altAxis = options.altAxis,\n checkAltAxis = _options$altAxis === void 0 ? false : _options$altAxis,\n boundary = options.boundary,\n rootBoundary = options.rootBoundary,\n altBoundary = options.altBoundary,\n padding = options.padding,\n _options$tether = options.tether,\n tether = _options$tether === void 0 ? true : _options$tether,\n _options$tetherOffset = options.tetherOffset,\n tetherOffset = _options$tetherOffset === void 0 ? 0 : _options$tetherOffset;\n var overflow = detectOverflow(state, {\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding,\n altBoundary: altBoundary\n });\n var basePlacement = getBasePlacement(state.placement);\n var variation = getVariation(state.placement);\n var isBasePlacement = !variation;\n var mainAxis = getMainAxisFromPlacement(basePlacement);\n var altAxis = getAltAxis(mainAxis);\n var popperOffsets = state.modifiersData.popperOffsets;\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var tetherOffsetValue = typeof tetherOffset === 'function' ? tetherOffset(Object.assign({}, state.rects, {\n placement: state.placement\n })) : tetherOffset;\n var normalizedTetherOffsetValue = typeof tetherOffsetValue === 'number' ? {\n mainAxis: tetherOffsetValue,\n altAxis: tetherOffsetValue\n } : Object.assign({\n mainAxis: 0,\n altAxis: 0\n }, tetherOffsetValue);\n var offsetModifierState = state.modifiersData.offset ? state.modifiersData.offset[state.placement] : null;\n var data = {\n x: 0,\n y: 0\n };\n\n if (!popperOffsets) {\n return;\n }\n\n if (checkMainAxis) {\n var _offsetModifierState$;\n\n var mainSide = mainAxis === 'y' ? top : left;\n var altSide = mainAxis === 'y' ? bottom : right;\n var len = mainAxis === 'y' ? 'height' : 'width';\n var offset = popperOffsets[mainAxis];\n var min = offset + overflow[mainSide];\n var max = offset - overflow[altSide];\n var additive = tether ? -popperRect[len] / 2 : 0;\n var minLen = variation === start ? referenceRect[len] : popperRect[len];\n var maxLen = variation === start ? -popperRect[len] : -referenceRect[len]; // We need to include the arrow in the calculation so the arrow doesn't go\n // outside the reference bounds\n\n var arrowElement = state.elements.arrow;\n var arrowRect = tether && arrowElement ? getLayoutRect(arrowElement) : {\n width: 0,\n height: 0\n };\n var arrowPaddingObject = state.modifiersData['arrow#persistent'] ? state.modifiersData['arrow#persistent'].padding : getFreshSideObject();\n var arrowPaddingMin = arrowPaddingObject[mainSide];\n var arrowPaddingMax = arrowPaddingObject[altSide]; // If the reference length is smaller than the arrow length, we don't want\n // to include its full size in the calculation. If the reference is small\n // and near the edge of a boundary, the popper can overflow even if the\n // reference is not overflowing as well (e.g. virtual elements with no\n // width or height)\n\n var arrowLen = within(0, referenceRect[len], arrowRect[len]);\n var minOffset = isBasePlacement ? referenceRect[len] / 2 - additive - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis : minLen - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis;\n var maxOffset = isBasePlacement ? -referenceRect[len] / 2 + additive + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis : maxLen + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis;\n var arrowOffsetParent = state.elements.arrow && getOffsetParent(state.elements.arrow);\n var clientOffset = arrowOffsetParent ? mainAxis === 'y' ? arrowOffsetParent.clientTop || 0 : arrowOffsetParent.clientLeft || 0 : 0;\n var offsetModifierValue = (_offsetModifierState$ = offsetModifierState == null ? void 0 : offsetModifierState[mainAxis]) != null ? _offsetModifierState$ : 0;\n var tetherMin = offset + minOffset - offsetModifierValue - clientOffset;\n var tetherMax = offset + maxOffset - offsetModifierValue;\n var preventedOffset = within(tether ? mathMin(min, tetherMin) : min, offset, tether ? mathMax(max, tetherMax) : max);\n popperOffsets[mainAxis] = preventedOffset;\n data[mainAxis] = preventedOffset - offset;\n }\n\n if (checkAltAxis) {\n var _offsetModifierState$2;\n\n var _mainSide = mainAxis === 'x' ? top : left;\n\n var _altSide = mainAxis === 'x' ? bottom : right;\n\n var _offset = popperOffsets[altAxis];\n\n var _len = altAxis === 'y' ? 'height' : 'width';\n\n var _min = _offset + overflow[_mainSide];\n\n var _max = _offset - overflow[_altSide];\n\n var isOriginSide = [top, left].indexOf(basePlacement) !== -1;\n\n var _offsetModifierValue = (_offsetModifierState$2 = offsetModifierState == null ? void 0 : offsetModifierState[altAxis]) != null ? _offsetModifierState$2 : 0;\n\n var _tetherMin = isOriginSide ? _min : _offset - referenceRect[_len] - popperRect[_len] - _offsetModifierValue + normalizedTetherOffsetValue.altAxis;\n\n var _tetherMax = isOriginSide ? _offset + referenceRect[_len] + popperRect[_len] - _offsetModifierValue - normalizedTetherOffsetValue.altAxis : _max;\n\n var _preventedOffset = tether && isOriginSide ? withinMaxClamp(_tetherMin, _offset, _tetherMax) : within(tether ? _tetherMin : _min, _offset, tether ? _tetherMax : _max);\n\n popperOffsets[altAxis] = _preventedOffset;\n data[altAxis] = _preventedOffset - _offset;\n }\n\n state.modifiersData[name] = data;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'preventOverflow',\n enabled: true,\n phase: 'main',\n fn: preventOverflow,\n requiresIfExists: ['offset']\n};","export default function getAltAxis(axis) {\n return axis === 'x' ? 'y' : 'x';\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getNodeScroll from \"./getNodeScroll.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport isScrollParent from \"./isScrollParent.js\";\nimport { round } from \"../utils/math.js\";\n\nfunction isElementScaled(element) {\n var rect = element.getBoundingClientRect();\n var scaleX = round(rect.width) / element.offsetWidth || 1;\n var scaleY = round(rect.height) / element.offsetHeight || 1;\n return scaleX !== 1 || scaleY !== 1;\n} // Returns the composite rect of an element relative to its offsetParent.\n// Composite means it takes into account transforms as well as layout.\n\n\nexport default function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) {\n if (isFixed === void 0) {\n isFixed = false;\n }\n\n var isOffsetParentAnElement = isHTMLElement(offsetParent);\n var offsetParentIsScaled = isHTMLElement(offsetParent) && isElementScaled(offsetParent);\n var documentElement = getDocumentElement(offsetParent);\n var rect = getBoundingClientRect(elementOrVirtualElement, offsetParentIsScaled, isFixed);\n var scroll = {\n scrollLeft: 0,\n scrollTop: 0\n };\n var offsets = {\n x: 0,\n y: 0\n };\n\n if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {\n if (getNodeName(offsetParent) !== 'body' || // https://github.com/popperjs/popper-core/issues/1078\n isScrollParent(documentElement)) {\n scroll = getNodeScroll(offsetParent);\n }\n\n if (isHTMLElement(offsetParent)) {\n offsets = getBoundingClientRect(offsetParent, true);\n offsets.x += offsetParent.clientLeft;\n offsets.y += offsetParent.clientTop;\n } else if (documentElement) {\n offsets.x = getWindowScrollBarX(documentElement);\n }\n }\n\n return {\n x: rect.left + scroll.scrollLeft - offsets.x,\n y: rect.top + scroll.scrollTop - offsets.y,\n width: rect.width,\n height: rect.height\n };\n}","import getWindowScroll from \"./getWindowScroll.js\";\nimport getWindow from \"./getWindow.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nimport getHTMLElementScroll from \"./getHTMLElementScroll.js\";\nexport default function getNodeScroll(node) {\n if (node === getWindow(node) || !isHTMLElement(node)) {\n return getWindowScroll(node);\n } else {\n return getHTMLElementScroll(node);\n }\n}","export default function getHTMLElementScroll(element) {\n return {\n scrollLeft: element.scrollLeft,\n scrollTop: element.scrollTop\n };\n}","import { modifierPhases } from \"../enums.js\"; // source: https://stackoverflow.com/questions/49875255\n\nfunction order(modifiers) {\n var map = new Map();\n var visited = new Set();\n var result = [];\n modifiers.forEach(function (modifier) {\n map.set(modifier.name, modifier);\n }); // On visiting object, check for its dependencies and visit them recursively\n\n function sort(modifier) {\n visited.add(modifier.name);\n var requires = [].concat(modifier.requires || [], modifier.requiresIfExists || []);\n requires.forEach(function (dep) {\n if (!visited.has(dep)) {\n var depModifier = map.get(dep);\n\n if (depModifier) {\n sort(depModifier);\n }\n }\n });\n result.push(modifier);\n }\n\n modifiers.forEach(function (modifier) {\n if (!visited.has(modifier.name)) {\n // check for visited object\n sort(modifier);\n }\n });\n return result;\n}\n\nexport default function orderModifiers(modifiers) {\n // order based on dependencies\n var orderedModifiers = order(modifiers); // order based on phase\n\n return modifierPhases.reduce(function (acc, phase) {\n return acc.concat(orderedModifiers.filter(function (modifier) {\n return modifier.phase === phase;\n }));\n }, []);\n}","import getCompositeRect from \"./dom-utils/getCompositeRect.js\";\nimport getLayoutRect from \"./dom-utils/getLayoutRect.js\";\nimport listScrollParents from \"./dom-utils/listScrollParents.js\";\nimport getOffsetParent from \"./dom-utils/getOffsetParent.js\";\nimport orderModifiers from \"./utils/orderModifiers.js\";\nimport debounce from \"./utils/debounce.js\";\nimport mergeByName from \"./utils/mergeByName.js\";\nimport detectOverflow from \"./utils/detectOverflow.js\";\nimport { isElement } from \"./dom-utils/instanceOf.js\";\nvar DEFAULT_OPTIONS = {\n placement: 'bottom',\n modifiers: [],\n strategy: 'absolute'\n};\n\nfunction areValidElements() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return !args.some(function (element) {\n return !(element && typeof element.getBoundingClientRect === 'function');\n });\n}\n\nexport function popperGenerator(generatorOptions) {\n if (generatorOptions === void 0) {\n generatorOptions = {};\n }\n\n var _generatorOptions = generatorOptions,\n _generatorOptions$def = _generatorOptions.defaultModifiers,\n defaultModifiers = _generatorOptions$def === void 0 ? [] : _generatorOptions$def,\n _generatorOptions$def2 = _generatorOptions.defaultOptions,\n defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2;\n return function createPopper(reference, popper, options) {\n if (options === void 0) {\n options = defaultOptions;\n }\n\n var state = {\n placement: 'bottom',\n orderedModifiers: [],\n options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions),\n modifiersData: {},\n elements: {\n reference: reference,\n popper: popper\n },\n attributes: {},\n styles: {}\n };\n var effectCleanupFns = [];\n var isDestroyed = false;\n var instance = {\n state: state,\n setOptions: function setOptions(setOptionsAction) {\n var options = typeof setOptionsAction === 'function' ? setOptionsAction(state.options) : setOptionsAction;\n cleanupModifierEffects();\n state.options = Object.assign({}, defaultOptions, state.options, options);\n state.scrollParents = {\n reference: isElement(reference) ? listScrollParents(reference) : reference.contextElement ? listScrollParents(reference.contextElement) : [],\n popper: listScrollParents(popper)\n }; // Orders the modifiers based on their dependencies and `phase`\n // properties\n\n var orderedModifiers = orderModifiers(mergeByName([].concat(defaultModifiers, state.options.modifiers))); // Strip out disabled modifiers\n\n state.orderedModifiers = orderedModifiers.filter(function (m) {\n return m.enabled;\n });\n runModifierEffects();\n return instance.update();\n },\n // Sync update – it will always be executed, even if not necessary. This\n // is useful for low frequency updates where sync behavior simplifies the\n // logic.\n // For high frequency updates (e.g. `resize` and `scroll` events), always\n // prefer the async Popper#update method\n forceUpdate: function forceUpdate() {\n if (isDestroyed) {\n return;\n }\n\n var _state$elements = state.elements,\n reference = _state$elements.reference,\n popper = _state$elements.popper; // Don't proceed if `reference` or `popper` are not valid elements\n // anymore\n\n if (!areValidElements(reference, popper)) {\n return;\n } // Store the reference and popper rects to be read by modifiers\n\n\n state.rects = {\n reference: getCompositeRect(reference, getOffsetParent(popper), state.options.strategy === 'fixed'),\n popper: getLayoutRect(popper)\n }; // Modifiers have the ability to reset the current update cycle. The\n // most common use case for this is the `flip` modifier changing the\n // placement, which then needs to re-run all the modifiers, because the\n // logic was previously ran for the previous placement and is therefore\n // stale/incorrect\n\n state.reset = false;\n state.placement = state.options.placement; // On each update cycle, the `modifiersData` property for each modifier\n // is filled with the initial data specified by the modifier. This means\n // it doesn't persist and is fresh on each update.\n // To ensure persistent data, use `${name}#persistent`\n\n state.orderedModifiers.forEach(function (modifier) {\n return state.modifiersData[modifier.name] = Object.assign({}, modifier.data);\n });\n\n for (var index = 0; index < state.orderedModifiers.length; index++) {\n if (state.reset === true) {\n state.reset = false;\n index = -1;\n continue;\n }\n\n var _state$orderedModifie = state.orderedModifiers[index],\n fn = _state$orderedModifie.fn,\n _state$orderedModifie2 = _state$orderedModifie.options,\n _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2,\n name = _state$orderedModifie.name;\n\n if (typeof fn === 'function') {\n state = fn({\n state: state,\n options: _options,\n name: name,\n instance: instance\n }) || state;\n }\n }\n },\n // Async and optimistically optimized update – it will not be executed if\n // not necessary (debounced to run at most once-per-tick)\n update: debounce(function () {\n return new Promise(function (resolve) {\n instance.forceUpdate();\n resolve(state);\n });\n }),\n destroy: function destroy() {\n cleanupModifierEffects();\n isDestroyed = true;\n }\n };\n\n if (!areValidElements(reference, popper)) {\n return instance;\n }\n\n instance.setOptions(options).then(function (state) {\n if (!isDestroyed && options.onFirstUpdate) {\n options.onFirstUpdate(state);\n }\n }); // Modifiers have the ability to execute arbitrary code before the first\n // update cycle runs. They will be executed in the same order as the update\n // cycle. This is useful when a modifier adds some persistent data that\n // other modifiers need to use, but the modifier is run after the dependent\n // one.\n\n function runModifierEffects() {\n state.orderedModifiers.forEach(function (_ref) {\n var name = _ref.name,\n _ref$options = _ref.options,\n options = _ref$options === void 0 ? {} : _ref$options,\n effect = _ref.effect;\n\n if (typeof effect === 'function') {\n var cleanupFn = effect({\n state: state,\n name: name,\n instance: instance,\n options: options\n });\n\n var noopFn = function noopFn() {};\n\n effectCleanupFns.push(cleanupFn || noopFn);\n }\n });\n }\n\n function cleanupModifierEffects() {\n effectCleanupFns.forEach(function (fn) {\n return fn();\n });\n effectCleanupFns = [];\n }\n\n return instance;\n };\n}\nexport var createPopper = /*#__PURE__*/popperGenerator(); // eslint-disable-next-line import/no-unused-modules\n\nexport { detectOverflow };","export default function debounce(fn) {\n var pending;\n return function () {\n if (!pending) {\n pending = new Promise(function (resolve) {\n Promise.resolve().then(function () {\n pending = undefined;\n resolve(fn());\n });\n });\n }\n\n return pending;\n };\n}","export default function mergeByName(modifiers) {\n var merged = modifiers.reduce(function (merged, current) {\n var existing = merged[current.name];\n merged[current.name] = existing ? Object.assign({}, existing, current, {\n options: Object.assign({}, existing.options, current.options),\n data: Object.assign({}, existing.data, current.data)\n }) : current;\n return merged;\n }, {}); // IE11 does not support Object.values\n\n return Object.keys(merged).map(function (key) {\n return merged[key];\n });\n}","import { popperGenerator, detectOverflow } from \"./createPopper.js\";\nimport eventListeners from \"./modifiers/eventListeners.js\";\nimport popperOffsets from \"./modifiers/popperOffsets.js\";\nimport computeStyles from \"./modifiers/computeStyles.js\";\nimport applyStyles from \"./modifiers/applyStyles.js\";\nvar defaultModifiers = [eventListeners, popperOffsets, computeStyles, applyStyles];\nvar createPopper = /*#__PURE__*/popperGenerator({\n defaultModifiers: defaultModifiers\n}); // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper, popperGenerator, defaultModifiers, detectOverflow };","import { popperGenerator, detectOverflow } from \"./createPopper.js\";\nimport eventListeners from \"./modifiers/eventListeners.js\";\nimport popperOffsets from \"./modifiers/popperOffsets.js\";\nimport computeStyles from \"./modifiers/computeStyles.js\";\nimport applyStyles from \"./modifiers/applyStyles.js\";\nimport offset from \"./modifiers/offset.js\";\nimport flip from \"./modifiers/flip.js\";\nimport preventOverflow from \"./modifiers/preventOverflow.js\";\nimport arrow from \"./modifiers/arrow.js\";\nimport hide from \"./modifiers/hide.js\";\nvar defaultModifiers = [eventListeners, popperOffsets, computeStyles, applyStyles, offset, flip, preventOverflow, arrow, hide];\nvar createPopper = /*#__PURE__*/popperGenerator({\n defaultModifiers: defaultModifiers\n}); // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper, popperGenerator, defaultModifiers, detectOverflow }; // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper as createPopperLite } from \"./popper-lite.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport * from \"./modifiers/index.js\";","/**\n * --------------------------------------------------------------------------\n * Bootstrap dropdown.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport * as Popper from '@popperjs/core'\nimport BaseComponent from './base-component.js'\nimport EventHandler from './dom/event-handler.js'\nimport Manipulator from './dom/manipulator.js'\nimport SelectorEngine from './dom/selector-engine.js'\nimport {\n defineJQueryPlugin,\n execute,\n getElement,\n getNextActiveElement,\n isDisabled,\n isElement,\n isRTL,\n isVisible,\n noop\n} from './util/index.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'dropdown'\nconst DATA_KEY = 'bs.dropdown'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\n\nconst ESCAPE_KEY = 'Escape'\nconst TAB_KEY = 'Tab'\nconst ARROW_UP_KEY = 'ArrowUp'\nconst ARROW_DOWN_KEY = 'ArrowDown'\nconst RIGHT_MOUSE_BUTTON = 2 // MouseEvent.button value for the secondary button, usually the right button\n\nconst EVENT_HIDE = `hide${EVENT_KEY}`\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`\nconst EVENT_SHOW = `show${EVENT_KEY}`\nconst EVENT_SHOWN = `shown${EVENT_KEY}`\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\nconst EVENT_KEYDOWN_DATA_API = `keydown${EVENT_KEY}${DATA_API_KEY}`\nconst EVENT_KEYUP_DATA_API = `keyup${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_SHOW = 'show'\nconst CLASS_NAME_DROPUP = 'dropup'\nconst CLASS_NAME_DROPEND = 'dropend'\nconst CLASS_NAME_DROPSTART = 'dropstart'\nconst CLASS_NAME_DROPUP_CENTER = 'dropup-center'\nconst CLASS_NAME_DROPDOWN_CENTER = 'dropdown-center'\n\nconst SELECTOR_DATA_TOGGLE = '[data-bs-toggle=\"dropdown\"]:not(.disabled):not(:disabled)'\nconst SELECTOR_DATA_TOGGLE_SHOWN = `${SELECTOR_DATA_TOGGLE}.${CLASS_NAME_SHOW}`\nconst SELECTOR_MENU = '.dropdown-menu'\nconst SELECTOR_NAVBAR = '.navbar'\nconst SELECTOR_NAVBAR_NAV = '.navbar-nav'\nconst SELECTOR_VISIBLE_ITEMS = '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)'\n\nconst PLACEMENT_TOP = isRTL() ? 'top-end' : 'top-start'\nconst PLACEMENT_TOPEND = isRTL() ? 'top-start' : 'top-end'\nconst PLACEMENT_BOTTOM = isRTL() ? 'bottom-end' : 'bottom-start'\nconst PLACEMENT_BOTTOMEND = isRTL() ? 'bottom-start' : 'bottom-end'\nconst PLACEMENT_RIGHT = isRTL() ? 'left-start' : 'right-start'\nconst PLACEMENT_LEFT = isRTL() ? 'right-start' : 'left-start'\nconst PLACEMENT_TOPCENTER = 'top'\nconst PLACEMENT_BOTTOMCENTER = 'bottom'\n\nconst Default = {\n autoClose: true,\n boundary: 'clippingParents',\n display: 'dynamic',\n offset: [0, 2],\n popperConfig: null,\n reference: 'toggle'\n}\n\nconst DefaultType = {\n autoClose: '(boolean|string)',\n boundary: '(string|element)',\n display: 'string',\n offset: '(array|string|function)',\n popperConfig: '(null|object|function)',\n reference: '(string|element|object)'\n}\n\n/**\n * Class definition\n */\n\nclass Dropdown extends BaseComponent {\n constructor(element, config) {\n super(element, config)\n\n this._popper = null\n this._parent = this._element.parentNode // dropdown wrapper\n // TODO: v6 revert #37011 & change markup https://getbootstrap.com/docs/5.3/forms/input-group/\n this._menu = SelectorEngine.next(this._element, SELECTOR_MENU)[0] ||\n SelectorEngine.prev(this._element, SELECTOR_MENU)[0] ||\n SelectorEngine.findOne(SELECTOR_MENU, this._parent)\n this._inNavbar = this._detectNavbar()\n }\n\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Public\n toggle() {\n return this._isShown() ? this.hide() : this.show()\n }\n\n show() {\n if (isDisabled(this._element) || this._isShown()) {\n return\n }\n\n const relatedTarget = {\n relatedTarget: this._element\n }\n\n const showEvent = EventHandler.trigger(this._element, EVENT_SHOW, relatedTarget)\n\n if (showEvent.defaultPrevented) {\n return\n }\n\n this._createPopper()\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement && !this._parent.closest(SELECTOR_NAVBAR_NAV)) {\n for (const element of [].concat(...document.body.children)) {\n EventHandler.on(element, 'mouseover', noop)\n }\n }\n\n this._element.focus()\n this._element.setAttribute('aria-expanded', true)\n\n this._menu.classList.add(CLASS_NAME_SHOW)\n this._element.classList.add(CLASS_NAME_SHOW)\n EventHandler.trigger(this._element, EVENT_SHOWN, relatedTarget)\n }\n\n hide() {\n if (isDisabled(this._element) || !this._isShown()) {\n return\n }\n\n const relatedTarget = {\n relatedTarget: this._element\n }\n\n this._completeHide(relatedTarget)\n }\n\n dispose() {\n if (this._popper) {\n this._popper.destroy()\n }\n\n super.dispose()\n }\n\n update() {\n this._inNavbar = this._detectNavbar()\n if (this._popper) {\n this._popper.update()\n }\n }\n\n // Private\n _completeHide(relatedTarget) {\n const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE, relatedTarget)\n if (hideEvent.defaultPrevented) {\n return\n }\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n for (const element of [].concat(...document.body.children)) {\n EventHandler.off(element, 'mouseover', noop)\n }\n }\n\n if (this._popper) {\n this._popper.destroy()\n }\n\n this._menu.classList.remove(CLASS_NAME_SHOW)\n this._element.classList.remove(CLASS_NAME_SHOW)\n this._element.setAttribute('aria-expanded', 'false')\n Manipulator.removeDataAttribute(this._menu, 'popper')\n EventHandler.trigger(this._element, EVENT_HIDDEN, relatedTarget)\n }\n\n _getConfig(config) {\n config = super._getConfig(config)\n\n if (typeof config.reference === 'object' && !isElement(config.reference) &&\n typeof config.reference.getBoundingClientRect !== 'function'\n ) {\n // Popper virtual elements require a getBoundingClientRect method\n throw new TypeError(`${NAME.toUpperCase()}: Option \"reference\" provided type \"object\" without a required \"getBoundingClientRect\" method.`)\n }\n\n return config\n }\n\n _createPopper() {\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap\\'s dropdowns require Popper (https://popper.js.org)')\n }\n\n let referenceElement = this._element\n\n if (this._config.reference === 'parent') {\n referenceElement = this._parent\n } else if (isElement(this._config.reference)) {\n referenceElement = getElement(this._config.reference)\n } else if (typeof this._config.reference === 'object') {\n referenceElement = this._config.reference\n }\n\n const popperConfig = this._getPopperConfig()\n this._popper = Popper.createPopper(referenceElement, this._menu, popperConfig)\n }\n\n _isShown() {\n return this._menu.classList.contains(CLASS_NAME_SHOW)\n }\n\n _getPlacement() {\n const parentDropdown = this._parent\n\n if (parentDropdown.classList.contains(CLASS_NAME_DROPEND)) {\n return PLACEMENT_RIGHT\n }\n\n if (parentDropdown.classList.contains(CLASS_NAME_DROPSTART)) {\n return PLACEMENT_LEFT\n }\n\n if (parentDropdown.classList.contains(CLASS_NAME_DROPUP_CENTER)) {\n return PLACEMENT_TOPCENTER\n }\n\n if (parentDropdown.classList.contains(CLASS_NAME_DROPDOWN_CENTER)) {\n return PLACEMENT_BOTTOMCENTER\n }\n\n // We need to trim the value because custom properties can also include spaces\n const isEnd = getComputedStyle(this._menu).getPropertyValue('--bs-position').trim() === 'end'\n\n if (parentDropdown.classList.contains(CLASS_NAME_DROPUP)) {\n return isEnd ? PLACEMENT_TOPEND : PLACEMENT_TOP\n }\n\n return isEnd ? PLACEMENT_BOTTOMEND : PLACEMENT_BOTTOM\n }\n\n _detectNavbar() {\n return this._element.closest(SELECTOR_NAVBAR) !== null\n }\n\n _getOffset() {\n const { offset } = this._config\n\n if (typeof offset === 'string') {\n return offset.split(',').map(value => Number.parseInt(value, 10))\n }\n\n if (typeof offset === 'function') {\n return popperData => offset(popperData, this._element)\n }\n\n return offset\n }\n\n _getPopperConfig() {\n const defaultBsPopperConfig = {\n placement: this._getPlacement(),\n modifiers: [{\n name: 'preventOverflow',\n options: {\n boundary: this._config.boundary\n }\n },\n {\n name: 'offset',\n options: {\n offset: this._getOffset()\n }\n }]\n }\n\n // Disable Popper if we have a static display or Dropdown is in Navbar\n if (this._inNavbar || this._config.display === 'static') {\n Manipulator.setDataAttribute(this._menu, 'popper', 'static') // TODO: v6 remove\n defaultBsPopperConfig.modifiers = [{\n name: 'applyStyles',\n enabled: false\n }]\n }\n\n return {\n ...defaultBsPopperConfig,\n ...execute(this._config.popperConfig, [defaultBsPopperConfig])\n }\n }\n\n _selectMenuItem({ key, target }) {\n const items = SelectorEngine.find(SELECTOR_VISIBLE_ITEMS, this._menu).filter(element => isVisible(element))\n\n if (!items.length) {\n return\n }\n\n // if target isn't included in items (e.g. when expanding the dropdown)\n // allow cycling to get the last item in case key equals ARROW_UP_KEY\n getNextActiveElement(items, target, key === ARROW_DOWN_KEY, !items.includes(target)).focus()\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Dropdown.getOrCreateInstance(this, config)\n\n if (typeof config !== 'string') {\n return\n }\n\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config]()\n })\n }\n\n static clearMenus(event) {\n if (event.button === RIGHT_MOUSE_BUTTON || (event.type === 'keyup' && event.key !== TAB_KEY)) {\n return\n }\n\n const openToggles = SelectorEngine.find(SELECTOR_DATA_TOGGLE_SHOWN)\n\n for (const toggle of openToggles) {\n const context = Dropdown.getInstance(toggle)\n if (!context || context._config.autoClose === false) {\n continue\n }\n\n const composedPath = event.composedPath()\n const isMenuTarget = composedPath.includes(context._menu)\n if (\n composedPath.includes(context._element) ||\n (context._config.autoClose === 'inside' && !isMenuTarget) ||\n (context._config.autoClose === 'outside' && isMenuTarget)\n ) {\n continue\n }\n\n // Tab navigation through the dropdown menu or events from contained inputs shouldn't close the menu\n if (context._menu.contains(event.target) && ((event.type === 'keyup' && event.key === TAB_KEY) || /input|select|option|textarea|form/i.test(event.target.tagName))) {\n continue\n }\n\n const relatedTarget = { relatedTarget: context._element }\n\n if (event.type === 'click') {\n relatedTarget.clickEvent = event\n }\n\n context._completeHide(relatedTarget)\n }\n }\n\n static dataApiKeydownHandler(event) {\n // If not an UP | DOWN | ESCAPE key => not a dropdown command\n // If input/textarea && if key is other than ESCAPE => not a dropdown command\n\n const isInput = /input|textarea/i.test(event.target.tagName)\n const isEscapeEvent = event.key === ESCAPE_KEY\n const isUpOrDownEvent = [ARROW_UP_KEY, ARROW_DOWN_KEY].includes(event.key)\n\n if (!isUpOrDownEvent && !isEscapeEvent) {\n return\n }\n\n if (isInput && !isEscapeEvent) {\n return\n }\n\n event.preventDefault()\n\n // TODO: v6 revert #37011 & change markup https://getbootstrap.com/docs/5.3/forms/input-group/\n const getToggleButton = this.matches(SELECTOR_DATA_TOGGLE) ?\n this :\n (SelectorEngine.prev(this, SELECTOR_DATA_TOGGLE)[0] ||\n SelectorEngine.next(this, SELECTOR_DATA_TOGGLE)[0] ||\n SelectorEngine.findOne(SELECTOR_DATA_TOGGLE, event.delegateTarget.parentNode))\n\n const instance = Dropdown.getOrCreateInstance(getToggleButton)\n\n if (isUpOrDownEvent) {\n event.stopPropagation()\n instance.show()\n instance._selectMenuItem(event)\n return\n }\n\n if (instance._isShown()) { // else is escape and we check if it is shown\n event.stopPropagation()\n instance.hide()\n getToggleButton.focus()\n }\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_KEYDOWN_DATA_API, SELECTOR_DATA_TOGGLE, Dropdown.dataApiKeydownHandler)\nEventHandler.on(document, EVENT_KEYDOWN_DATA_API, SELECTOR_MENU, Dropdown.dataApiKeydownHandler)\nEventHandler.on(document, EVENT_CLICK_DATA_API, Dropdown.clearMenus)\nEventHandler.on(document, EVENT_KEYUP_DATA_API, Dropdown.clearMenus)\nEventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {\n event.preventDefault()\n Dropdown.getOrCreateInstance(this).toggle()\n})\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Dropdown)\n\nexport default Dropdown\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap util/backdrop.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport EventHandler from '../dom/event-handler.js'\nimport Config from './config.js'\nimport { execute, executeAfterTransition, getElement, reflow } from './index.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'backdrop'\nconst CLASS_NAME_FADE = 'fade'\nconst CLASS_NAME_SHOW = 'show'\nconst EVENT_MOUSEDOWN = `mousedown.bs.${NAME}`\n\nconst Default = {\n className: 'modal-backdrop',\n clickCallback: null,\n isAnimated: false,\n isVisible: true, // if false, we use the backdrop helper without adding any element to the dom\n rootElement: 'body' // give the choice to place backdrop under different elements\n}\n\nconst DefaultType = {\n className: 'string',\n clickCallback: '(function|null)',\n isAnimated: 'boolean',\n isVisible: 'boolean',\n rootElement: '(element|string)'\n}\n\n/**\n * Class definition\n */\n\nclass Backdrop extends Config {\n constructor(config) {\n super()\n this._config = this._getConfig(config)\n this._isAppended = false\n this._element = null\n }\n\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Public\n show(callback) {\n if (!this._config.isVisible) {\n execute(callback)\n return\n }\n\n this._append()\n\n const element = this._getElement()\n if (this._config.isAnimated) {\n reflow(element)\n }\n\n element.classList.add(CLASS_NAME_SHOW)\n\n this._emulateAnimation(() => {\n execute(callback)\n })\n }\n\n hide(callback) {\n if (!this._config.isVisible) {\n execute(callback)\n return\n }\n\n this._getElement().classList.remove(CLASS_NAME_SHOW)\n\n this._emulateAnimation(() => {\n this.dispose()\n execute(callback)\n })\n }\n\n dispose() {\n if (!this._isAppended) {\n return\n }\n\n EventHandler.off(this._element, EVENT_MOUSEDOWN)\n\n this._element.remove()\n this._isAppended = false\n }\n\n // Private\n _getElement() {\n if (!this._element) {\n const backdrop = document.createElement('div')\n backdrop.className = this._config.className\n if (this._config.isAnimated) {\n backdrop.classList.add(CLASS_NAME_FADE)\n }\n\n this._element = backdrop\n }\n\n return this._element\n }\n\n _configAfterMerge(config) {\n // use getElement() with the default \"body\" to get a fresh Element on each instantiation\n config.rootElement = getElement(config.rootElement)\n return config\n }\n\n _append() {\n if (this._isAppended) {\n return\n }\n\n const element = this._getElement()\n this._config.rootElement.append(element)\n\n EventHandler.on(element, EVENT_MOUSEDOWN, () => {\n execute(this._config.clickCallback)\n })\n\n this._isAppended = true\n }\n\n _emulateAnimation(callback) {\n executeAfterTransition(callback, this._getElement(), this._config.isAnimated)\n }\n}\n\nexport default Backdrop\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap util/focustrap.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport EventHandler from '../dom/event-handler.js'\nimport SelectorEngine from '../dom/selector-engine.js'\nimport Config from './config.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'focustrap'\nconst DATA_KEY = 'bs.focustrap'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst EVENT_FOCUSIN = `focusin${EVENT_KEY}`\nconst EVENT_KEYDOWN_TAB = `keydown.tab${EVENT_KEY}`\n\nconst TAB_KEY = 'Tab'\nconst TAB_NAV_FORWARD = 'forward'\nconst TAB_NAV_BACKWARD = 'backward'\n\nconst Default = {\n autofocus: true,\n trapElement: null // The element to trap focus inside of\n}\n\nconst DefaultType = {\n autofocus: 'boolean',\n trapElement: 'element'\n}\n\n/**\n * Class definition\n */\n\nclass FocusTrap extends Config {\n constructor(config) {\n super()\n this._config = this._getConfig(config)\n this._isActive = false\n this._lastTabNavDirection = null\n }\n\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Public\n activate() {\n if (this._isActive) {\n return\n }\n\n if (this._config.autofocus) {\n this._config.trapElement.focus()\n }\n\n EventHandler.off(document, EVENT_KEY) // guard against infinite focus loop\n EventHandler.on(document, EVENT_FOCUSIN, event => this._handleFocusin(event))\n EventHandler.on(document, EVENT_KEYDOWN_TAB, event => this._handleKeydown(event))\n\n this._isActive = true\n }\n\n deactivate() {\n if (!this._isActive) {\n return\n }\n\n this._isActive = false\n EventHandler.off(document, EVENT_KEY)\n }\n\n // Private\n _handleFocusin(event) {\n const { trapElement } = this._config\n\n if (event.target === document || event.target === trapElement || trapElement.contains(event.target)) {\n return\n }\n\n const elements = SelectorEngine.focusableChildren(trapElement)\n\n if (elements.length === 0) {\n trapElement.focus()\n } else if (this._lastTabNavDirection === TAB_NAV_BACKWARD) {\n elements[elements.length - 1].focus()\n } else {\n elements[0].focus()\n }\n }\n\n _handleKeydown(event) {\n if (event.key !== TAB_KEY) {\n return\n }\n\n this._lastTabNavDirection = event.shiftKey ? TAB_NAV_BACKWARD : TAB_NAV_FORWARD\n }\n}\n\nexport default FocusTrap\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap util/scrollBar.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport Manipulator from '../dom/manipulator.js'\nimport SelectorEngine from '../dom/selector-engine.js'\nimport { isElement } from './index.js'\n\n/**\n * Constants\n */\n\nconst SELECTOR_FIXED_CONTENT = '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top'\nconst SELECTOR_STICKY_CONTENT = '.sticky-top'\nconst PROPERTY_PADDING = 'padding-right'\nconst PROPERTY_MARGIN = 'margin-right'\n\n/**\n * Class definition\n */\n\nclass ScrollBarHelper {\n constructor() {\n this._element = document.body\n }\n\n // Public\n getWidth() {\n // https://developer.mozilla.org/en-US/docs/Web/API/Window/innerWidth#usage_notes\n const documentWidth = document.documentElement.clientWidth\n return Math.abs(window.innerWidth - documentWidth)\n }\n\n hide() {\n const width = this.getWidth()\n this._disableOverFlow()\n // give padding to element to balance the hidden scrollbar width\n this._setElementAttributes(this._element, PROPERTY_PADDING, calculatedValue => calculatedValue + width)\n // trick: We adjust positive paddingRight and negative marginRight to sticky-top elements to keep showing fullwidth\n this._setElementAttributes(SELECTOR_FIXED_CONTENT, PROPERTY_PADDING, calculatedValue => calculatedValue + width)\n this._setElementAttributes(SELECTOR_STICKY_CONTENT, PROPERTY_MARGIN, calculatedValue => calculatedValue - width)\n }\n\n reset() {\n this._resetElementAttributes(this._element, 'overflow')\n this._resetElementAttributes(this._element, PROPERTY_PADDING)\n this._resetElementAttributes(SELECTOR_FIXED_CONTENT, PROPERTY_PADDING)\n this._resetElementAttributes(SELECTOR_STICKY_CONTENT, PROPERTY_MARGIN)\n }\n\n isOverflowing() {\n return this.getWidth() > 0\n }\n\n // Private\n _disableOverFlow() {\n this._saveInitialAttribute(this._element, 'overflow')\n this._element.style.overflow = 'hidden'\n }\n\n _setElementAttributes(selector, styleProperty, callback) {\n const scrollbarWidth = this.getWidth()\n const manipulationCallBack = element => {\n if (element !== this._element && window.innerWidth > element.clientWidth + scrollbarWidth) {\n return\n }\n\n this._saveInitialAttribute(element, styleProperty)\n const calculatedValue = window.getComputedStyle(element).getPropertyValue(styleProperty)\n element.style.setProperty(styleProperty, `${callback(Number.parseFloat(calculatedValue))}px`)\n }\n\n this._applyManipulationCallback(selector, manipulationCallBack)\n }\n\n _saveInitialAttribute(element, styleProperty) {\n const actualValue = element.style.getPropertyValue(styleProperty)\n if (actualValue) {\n Manipulator.setDataAttribute(element, styleProperty, actualValue)\n }\n }\n\n _resetElementAttributes(selector, styleProperty) {\n const manipulationCallBack = element => {\n const value = Manipulator.getDataAttribute(element, styleProperty)\n // We only want to remove the property if the value is `null`; the value can also be zero\n if (value === null) {\n element.style.removeProperty(styleProperty)\n return\n }\n\n Manipulator.removeDataAttribute(element, styleProperty)\n element.style.setProperty(styleProperty, value)\n }\n\n this._applyManipulationCallback(selector, manipulationCallBack)\n }\n\n _applyManipulationCallback(selector, callBack) {\n if (isElement(selector)) {\n callBack(selector)\n return\n }\n\n for (const sel of SelectorEngine.find(selector, this._element)) {\n callBack(sel)\n }\n }\n}\n\nexport default ScrollBarHelper\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap modal.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport BaseComponent from './base-component.js'\nimport EventHandler from './dom/event-handler.js'\nimport SelectorEngine from './dom/selector-engine.js'\nimport Backdrop from './util/backdrop.js'\nimport { enableDismissTrigger } from './util/component-functions.js'\nimport FocusTrap from './util/focustrap.js'\nimport { defineJQueryPlugin, isRTL, isVisible, reflow } from './util/index.js'\nimport ScrollBarHelper from './util/scrollbar.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'modal'\nconst DATA_KEY = 'bs.modal'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst ESCAPE_KEY = 'Escape'\n\nconst EVENT_HIDE = `hide${EVENT_KEY}`\nconst EVENT_HIDE_PREVENTED = `hidePrevented${EVENT_KEY}`\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`\nconst EVENT_SHOW = `show${EVENT_KEY}`\nconst EVENT_SHOWN = `shown${EVENT_KEY}`\nconst EVENT_RESIZE = `resize${EVENT_KEY}`\nconst EVENT_CLICK_DISMISS = `click.dismiss${EVENT_KEY}`\nconst EVENT_MOUSEDOWN_DISMISS = `mousedown.dismiss${EVENT_KEY}`\nconst EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_OPEN = 'modal-open'\nconst CLASS_NAME_FADE = 'fade'\nconst CLASS_NAME_SHOW = 'show'\nconst CLASS_NAME_STATIC = 'modal-static'\n\nconst OPEN_SELECTOR = '.modal.show'\nconst SELECTOR_DIALOG = '.modal-dialog'\nconst SELECTOR_MODAL_BODY = '.modal-body'\nconst SELECTOR_DATA_TOGGLE = '[data-bs-toggle=\"modal\"]'\n\nconst Default = {\n backdrop: true,\n focus: true,\n keyboard: true\n}\n\nconst DefaultType = {\n backdrop: '(boolean|string)',\n focus: 'boolean',\n keyboard: 'boolean'\n}\n\n/**\n * Class definition\n */\n\nclass Modal extends BaseComponent {\n constructor(element, config) {\n super(element, config)\n\n this._dialog = SelectorEngine.findOne(SELECTOR_DIALOG, this._element)\n this._backdrop = this._initializeBackDrop()\n this._focustrap = this._initializeFocusTrap()\n this._isShown = false\n this._isTransitioning = false\n this._scrollBar = new ScrollBarHelper()\n\n this._addEventListeners()\n }\n\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Public\n toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget)\n }\n\n show(relatedTarget) {\n if (this._isShown || this._isTransitioning) {\n return\n }\n\n const showEvent = EventHandler.trigger(this._element, EVENT_SHOW, {\n relatedTarget\n })\n\n if (showEvent.defaultPrevented) {\n return\n }\n\n this._isShown = true\n this._isTransitioning = true\n\n this._scrollBar.hide()\n\n document.body.classList.add(CLASS_NAME_OPEN)\n\n this._adjustDialog()\n\n this._backdrop.show(() => this._showElement(relatedTarget))\n }\n\n hide() {\n if (!this._isShown || this._isTransitioning) {\n return\n }\n\n const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE)\n\n if (hideEvent.defaultPrevented) {\n return\n }\n\n this._isShown = false\n this._isTransitioning = true\n this._focustrap.deactivate()\n\n this._element.classList.remove(CLASS_NAME_SHOW)\n\n this._queueCallback(() => this._hideModal(), this._element, this._isAnimated())\n }\n\n dispose() {\n EventHandler.off(window, EVENT_KEY)\n EventHandler.off(this._dialog, EVENT_KEY)\n\n this._backdrop.dispose()\n this._focustrap.deactivate()\n\n super.dispose()\n }\n\n handleUpdate() {\n this._adjustDialog()\n }\n\n // Private\n _initializeBackDrop() {\n return new Backdrop({\n isVisible: Boolean(this._config.backdrop), // 'static' option will be translated to true, and booleans will keep their value,\n isAnimated: this._isAnimated()\n })\n }\n\n _initializeFocusTrap() {\n return new FocusTrap({\n trapElement: this._element\n })\n }\n\n _showElement(relatedTarget) {\n // try to append dynamic modal\n if (!document.body.contains(this._element)) {\n document.body.append(this._element)\n }\n\n this._element.style.display = 'block'\n this._element.removeAttribute('aria-hidden')\n this._element.setAttribute('aria-modal', true)\n this._element.setAttribute('role', 'dialog')\n this._element.scrollTop = 0\n\n const modalBody = SelectorEngine.findOne(SELECTOR_MODAL_BODY, this._dialog)\n if (modalBody) {\n modalBody.scrollTop = 0\n }\n\n reflow(this._element)\n\n this._element.classList.add(CLASS_NAME_SHOW)\n\n const transitionComplete = () => {\n if (this._config.focus) {\n this._focustrap.activate()\n }\n\n this._isTransitioning = false\n EventHandler.trigger(this._element, EVENT_SHOWN, {\n relatedTarget\n })\n }\n\n this._queueCallback(transitionComplete, this._dialog, this._isAnimated())\n }\n\n _addEventListeners() {\n EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS, event => {\n if (event.key !== ESCAPE_KEY) {\n return\n }\n\n if (this._config.keyboard) {\n this.hide()\n return\n }\n\n this._triggerBackdropTransition()\n })\n\n EventHandler.on(window, EVENT_RESIZE, () => {\n if (this._isShown && !this._isTransitioning) {\n this._adjustDialog()\n }\n })\n\n EventHandler.on(this._element, EVENT_MOUSEDOWN_DISMISS, event => {\n // a bad trick to segregate clicks that may start inside dialog but end outside, and avoid listen to scrollbar clicks\n EventHandler.one(this._element, EVENT_CLICK_DISMISS, event2 => {\n if (this._element !== event.target || this._element !== event2.target) {\n return\n }\n\n if (this._config.backdrop === 'static') {\n this._triggerBackdropTransition()\n return\n }\n\n if (this._config.backdrop) {\n this.hide()\n }\n })\n })\n }\n\n _hideModal() {\n this._element.style.display = 'none'\n this._element.setAttribute('aria-hidden', true)\n this._element.removeAttribute('aria-modal')\n this._element.removeAttribute('role')\n this._isTransitioning = false\n\n this._backdrop.hide(() => {\n document.body.classList.remove(CLASS_NAME_OPEN)\n this._resetAdjustments()\n this._scrollBar.reset()\n EventHandler.trigger(this._element, EVENT_HIDDEN)\n })\n }\n\n _isAnimated() {\n return this._element.classList.contains(CLASS_NAME_FADE)\n }\n\n _triggerBackdropTransition() {\n const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED)\n if (hideEvent.defaultPrevented) {\n return\n }\n\n const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight\n const initialOverflowY = this._element.style.overflowY\n // return if the following background transition hasn't yet completed\n if (initialOverflowY === 'hidden' || this._element.classList.contains(CLASS_NAME_STATIC)) {\n return\n }\n\n if (!isModalOverflowing) {\n this._element.style.overflowY = 'hidden'\n }\n\n this._element.classList.add(CLASS_NAME_STATIC)\n this._queueCallback(() => {\n this._element.classList.remove(CLASS_NAME_STATIC)\n this._queueCallback(() => {\n this._element.style.overflowY = initialOverflowY\n }, this._dialog)\n }, this._dialog)\n\n this._element.focus()\n }\n\n /**\n * The following methods are used to handle overflowing modals\n */\n\n _adjustDialog() {\n const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight\n const scrollbarWidth = this._scrollBar.getWidth()\n const isBodyOverflowing = scrollbarWidth > 0\n\n if (isBodyOverflowing && !isModalOverflowing) {\n const property = isRTL() ? 'paddingLeft' : 'paddingRight'\n this._element.style[property] = `${scrollbarWidth}px`\n }\n\n if (!isBodyOverflowing && isModalOverflowing) {\n const property = isRTL() ? 'paddingRight' : 'paddingLeft'\n this._element.style[property] = `${scrollbarWidth}px`\n }\n }\n\n _resetAdjustments() {\n this._element.style.paddingLeft = ''\n this._element.style.paddingRight = ''\n }\n\n // Static\n static jQueryInterface(config, relatedTarget) {\n return this.each(function () {\n const data = Modal.getOrCreateInstance(this, config)\n\n if (typeof config !== 'string') {\n return\n }\n\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config](relatedTarget)\n })\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {\n const target = SelectorEngine.getElementFromSelector(this)\n\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault()\n }\n\n EventHandler.one(target, EVENT_SHOW, showEvent => {\n if (showEvent.defaultPrevented) {\n // only register focus restorer if modal will actually get shown\n return\n }\n\n EventHandler.one(target, EVENT_HIDDEN, () => {\n if (isVisible(this)) {\n this.focus()\n }\n })\n })\n\n // avoid conflict when clicking modal toggler while another one is open\n const alreadyOpen = SelectorEngine.findOne(OPEN_SELECTOR)\n if (alreadyOpen) {\n Modal.getInstance(alreadyOpen).hide()\n }\n\n const data = Modal.getOrCreateInstance(target)\n\n data.toggle(this)\n})\n\nenableDismissTrigger(Modal)\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Modal)\n\nexport default Modal\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap offcanvas.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport BaseComponent from './base-component.js'\nimport EventHandler from './dom/event-handler.js'\nimport SelectorEngine from './dom/selector-engine.js'\nimport Backdrop from './util/backdrop.js'\nimport { enableDismissTrigger } from './util/component-functions.js'\nimport FocusTrap from './util/focustrap.js'\nimport {\n defineJQueryPlugin,\n isDisabled,\n isVisible\n} from './util/index.js'\nimport ScrollBarHelper from './util/scrollbar.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'offcanvas'\nconst DATA_KEY = 'bs.offcanvas'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`\nconst ESCAPE_KEY = 'Escape'\n\nconst CLASS_NAME_SHOW = 'show'\nconst CLASS_NAME_SHOWING = 'showing'\nconst CLASS_NAME_HIDING = 'hiding'\nconst CLASS_NAME_BACKDROP = 'offcanvas-backdrop'\nconst OPEN_SELECTOR = '.offcanvas.show'\n\nconst EVENT_SHOW = `show${EVENT_KEY}`\nconst EVENT_SHOWN = `shown${EVENT_KEY}`\nconst EVENT_HIDE = `hide${EVENT_KEY}`\nconst EVENT_HIDE_PREVENTED = `hidePrevented${EVENT_KEY}`\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`\nconst EVENT_RESIZE = `resize${EVENT_KEY}`\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\nconst EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`\n\nconst SELECTOR_DATA_TOGGLE = '[data-bs-toggle=\"offcanvas\"]'\n\nconst Default = {\n backdrop: true,\n keyboard: true,\n scroll: false\n}\n\nconst DefaultType = {\n backdrop: '(boolean|string)',\n keyboard: 'boolean',\n scroll: 'boolean'\n}\n\n/**\n * Class definition\n */\n\nclass Offcanvas extends BaseComponent {\n constructor(element, config) {\n super(element, config)\n\n this._isShown = false\n this._backdrop = this._initializeBackDrop()\n this._focustrap = this._initializeFocusTrap()\n this._addEventListeners()\n }\n\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Public\n toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget)\n }\n\n show(relatedTarget) {\n if (this._isShown) {\n return\n }\n\n const showEvent = EventHandler.trigger(this._element, EVENT_SHOW, { relatedTarget })\n\n if (showEvent.defaultPrevented) {\n return\n }\n\n this._isShown = true\n this._backdrop.show()\n\n if (!this._config.scroll) {\n new ScrollBarHelper().hide()\n }\n\n this._element.setAttribute('aria-modal', true)\n this._element.setAttribute('role', 'dialog')\n this._element.classList.add(CLASS_NAME_SHOWING)\n\n const completeCallBack = () => {\n if (!this._config.scroll || this._config.backdrop) {\n this._focustrap.activate()\n }\n\n this._element.classList.add(CLASS_NAME_SHOW)\n this._element.classList.remove(CLASS_NAME_SHOWING)\n EventHandler.trigger(this._element, EVENT_SHOWN, { relatedTarget })\n }\n\n this._queueCallback(completeCallBack, this._element, true)\n }\n\n hide() {\n if (!this._isShown) {\n return\n }\n\n const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE)\n\n if (hideEvent.defaultPrevented) {\n return\n }\n\n this._focustrap.deactivate()\n this._element.blur()\n this._isShown = false\n this._element.classList.add(CLASS_NAME_HIDING)\n this._backdrop.hide()\n\n const completeCallback = () => {\n this._element.classList.remove(CLASS_NAME_SHOW, CLASS_NAME_HIDING)\n this._element.removeAttribute('aria-modal')\n this._element.removeAttribute('role')\n\n if (!this._config.scroll) {\n new ScrollBarHelper().reset()\n }\n\n EventHandler.trigger(this._element, EVENT_HIDDEN)\n }\n\n this._queueCallback(completeCallback, this._element, true)\n }\n\n dispose() {\n this._backdrop.dispose()\n this._focustrap.deactivate()\n super.dispose()\n }\n\n // Private\n _initializeBackDrop() {\n const clickCallback = () => {\n if (this._config.backdrop === 'static') {\n EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED)\n return\n }\n\n this.hide()\n }\n\n // 'static' option will be translated to true, and booleans will keep their value\n const isVisible = Boolean(this._config.backdrop)\n\n return new Backdrop({\n className: CLASS_NAME_BACKDROP,\n isVisible,\n isAnimated: true,\n rootElement: this._element.parentNode,\n clickCallback: isVisible ? clickCallback : null\n })\n }\n\n _initializeFocusTrap() {\n return new FocusTrap({\n trapElement: this._element\n })\n }\n\n _addEventListeners() {\n EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS, event => {\n if (event.key !== ESCAPE_KEY) {\n return\n }\n\n if (this._config.keyboard) {\n this.hide()\n return\n }\n\n EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED)\n })\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Offcanvas.getOrCreateInstance(this, config)\n\n if (typeof config !== 'string') {\n return\n }\n\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config](this)\n })\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {\n const target = SelectorEngine.getElementFromSelector(this)\n\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault()\n }\n\n if (isDisabled(this)) {\n return\n }\n\n EventHandler.one(target, EVENT_HIDDEN, () => {\n // focus on trigger when it is closed\n if (isVisible(this)) {\n this.focus()\n }\n })\n\n // avoid conflict when clicking a toggler of an offcanvas, while another is open\n const alreadyOpen = SelectorEngine.findOne(OPEN_SELECTOR)\n if (alreadyOpen && alreadyOpen !== target) {\n Offcanvas.getInstance(alreadyOpen).hide()\n }\n\n const data = Offcanvas.getOrCreateInstance(target)\n data.toggle(this)\n})\n\nEventHandler.on(window, EVENT_LOAD_DATA_API, () => {\n for (const selector of SelectorEngine.find(OPEN_SELECTOR)) {\n Offcanvas.getOrCreateInstance(selector).show()\n }\n})\n\nEventHandler.on(window, EVENT_RESIZE, () => {\n for (const element of SelectorEngine.find('[aria-modal][class*=show][class*=offcanvas-]')) {\n if (getComputedStyle(element).position !== 'fixed') {\n Offcanvas.getOrCreateInstance(element).hide()\n }\n }\n})\n\nenableDismissTrigger(Offcanvas)\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Offcanvas)\n\nexport default Offcanvas\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap util/sanitizer.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n// js-docs-start allow-list\nconst ARIA_ATTRIBUTE_PATTERN = /^aria-[\\w-]*$/i\n\nexport const DefaultAllowlist = {\n // Global attributes allowed on any supplied element below.\n '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN],\n a: ['target', 'href', 'title', 'rel'],\n area: [],\n b: [],\n br: [],\n col: [],\n code: [],\n div: [],\n em: [],\n hr: [],\n h1: [],\n h2: [],\n h3: [],\n h4: [],\n h5: [],\n h6: [],\n i: [],\n img: ['src', 'srcset', 'alt', 'title', 'width', 'height'],\n li: [],\n ol: [],\n p: [],\n pre: [],\n s: [],\n small: [],\n span: [],\n sub: [],\n sup: [],\n strong: [],\n u: [],\n ul: []\n}\n// js-docs-end allow-list\n\nconst uriAttributes = new Set([\n 'background',\n 'cite',\n 'href',\n 'itemtype',\n 'longdesc',\n 'poster',\n 'src',\n 'xlink:href'\n])\n\n/**\n * A pattern that recognizes URLs that are safe wrt. XSS in URL navigation\n * contexts.\n *\n * Shout-out to Angular https://github.com/angular/angular/blob/15.2.8/packages/core/src/sanitization/url_sanitizer.ts#L38\n */\n// eslint-disable-next-line unicorn/better-regex\nconst SAFE_URL_PATTERN = /^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i\n\nconst allowedAttribute = (attribute, allowedAttributeList) => {\n const attributeName = attribute.nodeName.toLowerCase()\n\n if (allowedAttributeList.includes(attributeName)) {\n if (uriAttributes.has(attributeName)) {\n return Boolean(SAFE_URL_PATTERN.test(attribute.nodeValue))\n }\n\n return true\n }\n\n // Check if a regular expression validates the attribute.\n return allowedAttributeList.filter(attributeRegex => attributeRegex instanceof RegExp)\n .some(regex => regex.test(attributeName))\n}\n\nexport function sanitizeHtml(unsafeHtml, allowList, sanitizeFunction) {\n if (!unsafeHtml.length) {\n return unsafeHtml\n }\n\n if (sanitizeFunction && typeof sanitizeFunction === 'function') {\n return sanitizeFunction(unsafeHtml)\n }\n\n const domParser = new window.DOMParser()\n const createdDocument = domParser.parseFromString(unsafeHtml, 'text/html')\n const elements = [].concat(...createdDocument.body.querySelectorAll('*'))\n\n for (const element of elements) {\n const elementName = element.nodeName.toLowerCase()\n\n if (!Object.keys(allowList).includes(elementName)) {\n element.remove()\n continue\n }\n\n const attributeList = [].concat(...element.attributes)\n const allowedAttributes = [].concat(allowList['*'] || [], allowList[elementName] || [])\n\n for (const attribute of attributeList) {\n if (!allowedAttribute(attribute, allowedAttributes)) {\n element.removeAttribute(attribute.nodeName)\n }\n }\n }\n\n return createdDocument.body.innerHTML\n}\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap util/template-factory.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport SelectorEngine from '../dom/selector-engine.js'\nimport Config from './config.js'\nimport { DefaultAllowlist, sanitizeHtml } from './sanitizer.js'\nimport { execute, getElement, isElement } from './index.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'TemplateFactory'\n\nconst Default = {\n allowList: DefaultAllowlist,\n content: {}, // { selector : text , selector2 : text2 , }\n extraClass: '',\n html: false,\n sanitize: true,\n sanitizeFn: null,\n template: '
    '\n}\n\nconst DefaultType = {\n allowList: 'object',\n content: 'object',\n extraClass: '(string|function)',\n html: 'boolean',\n sanitize: 'boolean',\n sanitizeFn: '(null|function)',\n template: 'string'\n}\n\nconst DefaultContentType = {\n entry: '(string|element|function|null)',\n selector: '(string|element)'\n}\n\n/**\n * Class definition\n */\n\nclass TemplateFactory extends Config {\n constructor(config) {\n super()\n this._config = this._getConfig(config)\n }\n\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Public\n getContent() {\n return Object.values(this._config.content)\n .map(config => this._resolvePossibleFunction(config))\n .filter(Boolean)\n }\n\n hasContent() {\n return this.getContent().length > 0\n }\n\n changeContent(content) {\n this._checkContent(content)\n this._config.content = { ...this._config.content, ...content }\n return this\n }\n\n toHtml() {\n const templateWrapper = document.createElement('div')\n templateWrapper.innerHTML = this._maybeSanitize(this._config.template)\n\n for (const [selector, text] of Object.entries(this._config.content)) {\n this._setContent(templateWrapper, text, selector)\n }\n\n const template = templateWrapper.children[0]\n const extraClass = this._resolvePossibleFunction(this._config.extraClass)\n\n if (extraClass) {\n template.classList.add(...extraClass.split(' '))\n }\n\n return template\n }\n\n // Private\n _typeCheckConfig(config) {\n super._typeCheckConfig(config)\n this._checkContent(config.content)\n }\n\n _checkContent(arg) {\n for (const [selector, content] of Object.entries(arg)) {\n super._typeCheckConfig({ selector, entry: content }, DefaultContentType)\n }\n }\n\n _setContent(template, content, selector) {\n const templateElement = SelectorEngine.findOne(selector, template)\n\n if (!templateElement) {\n return\n }\n\n content = this._resolvePossibleFunction(content)\n\n if (!content) {\n templateElement.remove()\n return\n }\n\n if (isElement(content)) {\n this._putElementInTemplate(getElement(content), templateElement)\n return\n }\n\n if (this._config.html) {\n templateElement.innerHTML = this._maybeSanitize(content)\n return\n }\n\n templateElement.textContent = content\n }\n\n _maybeSanitize(arg) {\n return this._config.sanitize ? sanitizeHtml(arg, this._config.allowList, this._config.sanitizeFn) : arg\n }\n\n _resolvePossibleFunction(arg) {\n return execute(arg, [this])\n }\n\n _putElementInTemplate(element, templateElement) {\n if (this._config.html) {\n templateElement.innerHTML = ''\n templateElement.append(element)\n return\n }\n\n templateElement.textContent = element.textContent\n }\n}\n\nexport default TemplateFactory\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap tooltip.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport * as Popper from '@popperjs/core'\nimport BaseComponent from './base-component.js'\nimport EventHandler from './dom/event-handler.js'\nimport Manipulator from './dom/manipulator.js'\nimport { defineJQueryPlugin, execute, findShadowRoot, getElement, getUID, isRTL, noop } from './util/index.js'\nimport { DefaultAllowlist } from './util/sanitizer.js'\nimport TemplateFactory from './util/template-factory.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'tooltip'\nconst DISALLOWED_ATTRIBUTES = new Set(['sanitize', 'allowList', 'sanitizeFn'])\n\nconst CLASS_NAME_FADE = 'fade'\nconst CLASS_NAME_MODAL = 'modal'\nconst CLASS_NAME_SHOW = 'show'\n\nconst SELECTOR_TOOLTIP_INNER = '.tooltip-inner'\nconst SELECTOR_MODAL = `.${CLASS_NAME_MODAL}`\n\nconst EVENT_MODAL_HIDE = 'hide.bs.modal'\n\nconst TRIGGER_HOVER = 'hover'\nconst TRIGGER_FOCUS = 'focus'\nconst TRIGGER_CLICK = 'click'\nconst TRIGGER_MANUAL = 'manual'\n\nconst EVENT_HIDE = 'hide'\nconst EVENT_HIDDEN = 'hidden'\nconst EVENT_SHOW = 'show'\nconst EVENT_SHOWN = 'shown'\nconst EVENT_INSERTED = 'inserted'\nconst EVENT_CLICK = 'click'\nconst EVENT_FOCUSIN = 'focusin'\nconst EVENT_FOCUSOUT = 'focusout'\nconst EVENT_MOUSEENTER = 'mouseenter'\nconst EVENT_MOUSELEAVE = 'mouseleave'\n\nconst AttachmentMap = {\n AUTO: 'auto',\n TOP: 'top',\n RIGHT: isRTL() ? 'left' : 'right',\n BOTTOM: 'bottom',\n LEFT: isRTL() ? 'right' : 'left'\n}\n\nconst Default = {\n allowList: DefaultAllowlist,\n animation: true,\n boundary: 'clippingParents',\n container: false,\n customClass: '',\n delay: 0,\n fallbackPlacements: ['top', 'right', 'bottom', 'left'],\n html: false,\n offset: [0, 6],\n placement: 'top',\n popperConfig: null,\n sanitize: true,\n sanitizeFn: null,\n selector: false,\n template: '
    ' +\n '
    ' +\n '
    ' +\n '
    ',\n title: '',\n trigger: 'hover focus'\n}\n\nconst DefaultType = {\n allowList: 'object',\n animation: 'boolean',\n boundary: '(string|element)',\n container: '(string|element|boolean)',\n customClass: '(string|function)',\n delay: '(number|object)',\n fallbackPlacements: 'array',\n html: 'boolean',\n offset: '(array|string|function)',\n placement: '(string|function)',\n popperConfig: '(null|object|function)',\n sanitize: 'boolean',\n sanitizeFn: '(null|function)',\n selector: '(string|boolean)',\n template: 'string',\n title: '(string|element|function)',\n trigger: 'string'\n}\n\n/**\n * Class definition\n */\n\nclass Tooltip extends BaseComponent {\n constructor(element, config) {\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap\\'s tooltips require Popper (https://popper.js.org)')\n }\n\n super(element, config)\n\n // Private\n this._isEnabled = true\n this._timeout = 0\n this._isHovered = null\n this._activeTrigger = {}\n this._popper = null\n this._templateFactory = null\n this._newContent = null\n\n // Protected\n this.tip = null\n\n this._setListeners()\n\n if (!this._config.selector) {\n this._fixTitle()\n }\n }\n\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Public\n enable() {\n this._isEnabled = true\n }\n\n disable() {\n this._isEnabled = false\n }\n\n toggleEnabled() {\n this._isEnabled = !this._isEnabled\n }\n\n toggle() {\n if (!this._isEnabled) {\n return\n }\n\n this._activeTrigger.click = !this._activeTrigger.click\n if (this._isShown()) {\n this._leave()\n return\n }\n\n this._enter()\n }\n\n dispose() {\n clearTimeout(this._timeout)\n\n EventHandler.off(this._element.closest(SELECTOR_MODAL), EVENT_MODAL_HIDE, this._hideModalHandler)\n\n if (this._element.getAttribute('data-bs-original-title')) {\n this._element.setAttribute('title', this._element.getAttribute('data-bs-original-title'))\n }\n\n this._disposePopper()\n super.dispose()\n }\n\n show() {\n if (this._element.style.display === 'none') {\n throw new Error('Please use show on visible elements')\n }\n\n if (!(this._isWithContent() && this._isEnabled)) {\n return\n }\n\n const showEvent = EventHandler.trigger(this._element, this.constructor.eventName(EVENT_SHOW))\n const shadowRoot = findShadowRoot(this._element)\n const isInTheDom = (shadowRoot || this._element.ownerDocument.documentElement).contains(this._element)\n\n if (showEvent.defaultPrevented || !isInTheDom) {\n return\n }\n\n // TODO: v6 remove this or make it optional\n this._disposePopper()\n\n const tip = this._getTipElement()\n\n this._element.setAttribute('aria-describedby', tip.getAttribute('id'))\n\n const { container } = this._config\n\n if (!this._element.ownerDocument.documentElement.contains(this.tip)) {\n container.append(tip)\n EventHandler.trigger(this._element, this.constructor.eventName(EVENT_INSERTED))\n }\n\n this._popper = this._createPopper(tip)\n\n tip.classList.add(CLASS_NAME_SHOW)\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement) {\n for (const element of [].concat(...document.body.children)) {\n EventHandler.on(element, 'mouseover', noop)\n }\n }\n\n const complete = () => {\n EventHandler.trigger(this._element, this.constructor.eventName(EVENT_SHOWN))\n\n if (this._isHovered === false) {\n this._leave()\n }\n\n this._isHovered = false\n }\n\n this._queueCallback(complete, this.tip, this._isAnimated())\n }\n\n hide() {\n if (!this._isShown()) {\n return\n }\n\n const hideEvent = EventHandler.trigger(this._element, this.constructor.eventName(EVENT_HIDE))\n if (hideEvent.defaultPrevented) {\n return\n }\n\n const tip = this._getTipElement()\n tip.classList.remove(CLASS_NAME_SHOW)\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n for (const element of [].concat(...document.body.children)) {\n EventHandler.off(element, 'mouseover', noop)\n }\n }\n\n this._activeTrigger[TRIGGER_CLICK] = false\n this._activeTrigger[TRIGGER_FOCUS] = false\n this._activeTrigger[TRIGGER_HOVER] = false\n this._isHovered = null // it is a trick to support manual triggering\n\n const complete = () => {\n if (this._isWithActiveTrigger()) {\n return\n }\n\n if (!this._isHovered) {\n this._disposePopper()\n }\n\n this._element.removeAttribute('aria-describedby')\n EventHandler.trigger(this._element, this.constructor.eventName(EVENT_HIDDEN))\n }\n\n this._queueCallback(complete, this.tip, this._isAnimated())\n }\n\n update() {\n if (this._popper) {\n this._popper.update()\n }\n }\n\n // Protected\n _isWithContent() {\n return Boolean(this._getTitle())\n }\n\n _getTipElement() {\n if (!this.tip) {\n this.tip = this._createTipElement(this._newContent || this._getContentForTemplate())\n }\n\n return this.tip\n }\n\n _createTipElement(content) {\n const tip = this._getTemplateFactory(content).toHtml()\n\n // TODO: remove this check in v6\n if (!tip) {\n return null\n }\n\n tip.classList.remove(CLASS_NAME_FADE, CLASS_NAME_SHOW)\n // TODO: v6 the following can be achieved with CSS only\n tip.classList.add(`bs-${this.constructor.NAME}-auto`)\n\n const tipId = getUID(this.constructor.NAME).toString()\n\n tip.setAttribute('id', tipId)\n\n if (this._isAnimated()) {\n tip.classList.add(CLASS_NAME_FADE)\n }\n\n return tip\n }\n\n setContent(content) {\n this._newContent = content\n if (this._isShown()) {\n this._disposePopper()\n this.show()\n }\n }\n\n _getTemplateFactory(content) {\n if (this._templateFactory) {\n this._templateFactory.changeContent(content)\n } else {\n this._templateFactory = new TemplateFactory({\n ...this._config,\n // the `content` var has to be after `this._config`\n // to override config.content in case of popover\n content,\n extraClass: this._resolvePossibleFunction(this._config.customClass)\n })\n }\n\n return this._templateFactory\n }\n\n _getContentForTemplate() {\n return {\n [SELECTOR_TOOLTIP_INNER]: this._getTitle()\n }\n }\n\n _getTitle() {\n return this._resolvePossibleFunction(this._config.title) || this._element.getAttribute('data-bs-original-title')\n }\n\n // Private\n _initializeOnDelegatedTarget(event) {\n return this.constructor.getOrCreateInstance(event.delegateTarget, this._getDelegateConfig())\n }\n\n _isAnimated() {\n return this._config.animation || (this.tip && this.tip.classList.contains(CLASS_NAME_FADE))\n }\n\n _isShown() {\n return this.tip && this.tip.classList.contains(CLASS_NAME_SHOW)\n }\n\n _createPopper(tip) {\n const placement = execute(this._config.placement, [this, tip, this._element])\n const attachment = AttachmentMap[placement.toUpperCase()]\n return Popper.createPopper(this._element, tip, this._getPopperConfig(attachment))\n }\n\n _getOffset() {\n const { offset } = this._config\n\n if (typeof offset === 'string') {\n return offset.split(',').map(value => Number.parseInt(value, 10))\n }\n\n if (typeof offset === 'function') {\n return popperData => offset(popperData, this._element)\n }\n\n return offset\n }\n\n _resolvePossibleFunction(arg) {\n return execute(arg, [this._element])\n }\n\n _getPopperConfig(attachment) {\n const defaultBsPopperConfig = {\n placement: attachment,\n modifiers: [\n {\n name: 'flip',\n options: {\n fallbackPlacements: this._config.fallbackPlacements\n }\n },\n {\n name: 'offset',\n options: {\n offset: this._getOffset()\n }\n },\n {\n name: 'preventOverflow',\n options: {\n boundary: this._config.boundary\n }\n },\n {\n name: 'arrow',\n options: {\n element: `.${this.constructor.NAME}-arrow`\n }\n },\n {\n name: 'preSetPlacement',\n enabled: true,\n phase: 'beforeMain',\n fn: data => {\n // Pre-set Popper's placement attribute in order to read the arrow sizes properly.\n // Otherwise, Popper mixes up the width and height dimensions since the initial arrow style is for top placement\n this._getTipElement().setAttribute('data-popper-placement', data.state.placement)\n }\n }\n ]\n }\n\n return {\n ...defaultBsPopperConfig,\n ...execute(this._config.popperConfig, [defaultBsPopperConfig])\n }\n }\n\n _setListeners() {\n const triggers = this._config.trigger.split(' ')\n\n for (const trigger of triggers) {\n if (trigger === 'click') {\n EventHandler.on(this._element, this.constructor.eventName(EVENT_CLICK), this._config.selector, event => {\n const context = this._initializeOnDelegatedTarget(event)\n context.toggle()\n })\n } else if (trigger !== TRIGGER_MANUAL) {\n const eventIn = trigger === TRIGGER_HOVER ?\n this.constructor.eventName(EVENT_MOUSEENTER) :\n this.constructor.eventName(EVENT_FOCUSIN)\n const eventOut = trigger === TRIGGER_HOVER ?\n this.constructor.eventName(EVENT_MOUSELEAVE) :\n this.constructor.eventName(EVENT_FOCUSOUT)\n\n EventHandler.on(this._element, eventIn, this._config.selector, event => {\n const context = this._initializeOnDelegatedTarget(event)\n context._activeTrigger[event.type === 'focusin' ? TRIGGER_FOCUS : TRIGGER_HOVER] = true\n context._enter()\n })\n EventHandler.on(this._element, eventOut, this._config.selector, event => {\n const context = this._initializeOnDelegatedTarget(event)\n context._activeTrigger[event.type === 'focusout' ? TRIGGER_FOCUS : TRIGGER_HOVER] =\n context._element.contains(event.relatedTarget)\n\n context._leave()\n })\n }\n }\n\n this._hideModalHandler = () => {\n if (this._element) {\n this.hide()\n }\n }\n\n EventHandler.on(this._element.closest(SELECTOR_MODAL), EVENT_MODAL_HIDE, this._hideModalHandler)\n }\n\n _fixTitle() {\n const title = this._element.getAttribute('title')\n\n if (!title) {\n return\n }\n\n if (!this._element.getAttribute('aria-label') && !this._element.textContent.trim()) {\n this._element.setAttribute('aria-label', title)\n }\n\n this._element.setAttribute('data-bs-original-title', title) // DO NOT USE IT. Is only for backwards compatibility\n this._element.removeAttribute('title')\n }\n\n _enter() {\n if (this._isShown() || this._isHovered) {\n this._isHovered = true\n return\n }\n\n this._isHovered = true\n\n this._setTimeout(() => {\n if (this._isHovered) {\n this.show()\n }\n }, this._config.delay.show)\n }\n\n _leave() {\n if (this._isWithActiveTrigger()) {\n return\n }\n\n this._isHovered = false\n\n this._setTimeout(() => {\n if (!this._isHovered) {\n this.hide()\n }\n }, this._config.delay.hide)\n }\n\n _setTimeout(handler, timeout) {\n clearTimeout(this._timeout)\n this._timeout = setTimeout(handler, timeout)\n }\n\n _isWithActiveTrigger() {\n return Object.values(this._activeTrigger).includes(true)\n }\n\n _getConfig(config) {\n const dataAttributes = Manipulator.getDataAttributes(this._element)\n\n for (const dataAttribute of Object.keys(dataAttributes)) {\n if (DISALLOWED_ATTRIBUTES.has(dataAttribute)) {\n delete dataAttributes[dataAttribute]\n }\n }\n\n config = {\n ...dataAttributes,\n ...(typeof config === 'object' && config ? config : {})\n }\n config = this._mergeConfigObj(config)\n config = this._configAfterMerge(config)\n this._typeCheckConfig(config)\n return config\n }\n\n _configAfterMerge(config) {\n config.container = config.container === false ? document.body : getElement(config.container)\n\n if (typeof config.delay === 'number') {\n config.delay = {\n show: config.delay,\n hide: config.delay\n }\n }\n\n if (typeof config.title === 'number') {\n config.title = config.title.toString()\n }\n\n if (typeof config.content === 'number') {\n config.content = config.content.toString()\n }\n\n return config\n }\n\n _getDelegateConfig() {\n const config = {}\n\n for (const [key, value] of Object.entries(this._config)) {\n if (this.constructor.Default[key] !== value) {\n config[key] = value\n }\n }\n\n config.selector = false\n config.trigger = 'manual'\n\n // In the future can be replaced with:\n // const keysWithDifferentValues = Object.entries(this._config).filter(entry => this.constructor.Default[entry[0]] !== this._config[entry[0]])\n // `Object.fromEntries(keysWithDifferentValues)`\n return config\n }\n\n _disposePopper() {\n if (this._popper) {\n this._popper.destroy()\n this._popper = null\n }\n\n if (this.tip) {\n this.tip.remove()\n this.tip = null\n }\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Tooltip.getOrCreateInstance(this, config)\n\n if (typeof config !== 'string') {\n return\n }\n\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config]()\n })\n }\n}\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Tooltip)\n\nexport default Tooltip\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap popover.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport Tooltip from './tooltip.js'\nimport { defineJQueryPlugin } from './util/index.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'popover'\n\nconst SELECTOR_TITLE = '.popover-header'\nconst SELECTOR_CONTENT = '.popover-body'\n\nconst Default = {\n ...Tooltip.Default,\n content: '',\n offset: [0, 8],\n placement: 'right',\n template: '
    ' +\n '
    ' +\n '

    ' +\n '
    ' +\n '
    ',\n trigger: 'click'\n}\n\nconst DefaultType = {\n ...Tooltip.DefaultType,\n content: '(null|string|element|function)'\n}\n\n/**\n * Class definition\n */\n\nclass Popover extends Tooltip {\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Overrides\n _isWithContent() {\n return this._getTitle() || this._getContent()\n }\n\n // Private\n _getContentForTemplate() {\n return {\n [SELECTOR_TITLE]: this._getTitle(),\n [SELECTOR_CONTENT]: this._getContent()\n }\n }\n\n _getContent() {\n return this._resolvePossibleFunction(this._config.content)\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Popover.getOrCreateInstance(this, config)\n\n if (typeof config !== 'string') {\n return\n }\n\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config]()\n })\n }\n}\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Popover)\n\nexport default Popover\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap scrollspy.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport BaseComponent from './base-component.js'\nimport EventHandler from './dom/event-handler.js'\nimport SelectorEngine from './dom/selector-engine.js'\nimport { defineJQueryPlugin, getElement, isDisabled, isVisible } from './util/index.js'\n\n/**\n * Constants\n */\n\nconst NAME = 'scrollspy'\nconst DATA_KEY = 'bs.scrollspy'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\n\nconst EVENT_ACTIVATE = `activate${EVENT_KEY}`\nconst EVENT_CLICK = `click${EVENT_KEY}`\nconst EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_DROPDOWN_ITEM = 'dropdown-item'\nconst CLASS_NAME_ACTIVE = 'active'\n\nconst SELECTOR_DATA_SPY = '[data-bs-spy=\"scroll\"]'\nconst SELECTOR_TARGET_LINKS = '[href]'\nconst SELECTOR_NAV_LIST_GROUP = '.nav, .list-group'\nconst SELECTOR_NAV_LINKS = '.nav-link'\nconst SELECTOR_NAV_ITEMS = '.nav-item'\nconst SELECTOR_LIST_ITEMS = '.list-group-item'\nconst SELECTOR_LINK_ITEMS = `${SELECTOR_NAV_LINKS}, ${SELECTOR_NAV_ITEMS} > ${SELECTOR_NAV_LINKS}, ${SELECTOR_LIST_ITEMS}`\nconst SELECTOR_DROPDOWN = '.dropdown'\nconst SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle'\n\nconst Default = {\n offset: null, // TODO: v6 @deprecated, keep it for backwards compatibility reasons\n rootMargin: '0px 0px -25%',\n smoothScroll: false,\n target: null,\n threshold: [0.1, 0.5, 1]\n}\n\nconst DefaultType = {\n offset: '(number|null)', // TODO v6 @deprecated, keep it for backwards compatibility reasons\n rootMargin: 'string',\n smoothScroll: 'boolean',\n target: 'element',\n threshold: 'array'\n}\n\n/**\n * Class definition\n */\n\nclass ScrollSpy extends BaseComponent {\n constructor(element, config) {\n super(element, config)\n\n // this._element is the observablesContainer and config.target the menu links wrapper\n this._targetLinks = new Map()\n this._observableSections = new Map()\n this._rootElement = getComputedStyle(this._element).overflowY === 'visible' ? null : this._element\n this._activeTarget = null\n this._observer = null\n this._previousScrollData = {\n visibleEntryTop: 0,\n parentScrollTop: 0\n }\n this.refresh() // initialize\n }\n\n // Getters\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get NAME() {\n return NAME\n }\n\n // Public\n refresh() {\n this._initializeTargetsAndObservables()\n this._maybeEnableSmoothScroll()\n\n if (this._observer) {\n this._observer.disconnect()\n } else {\n this._observer = this._getNewObserver()\n }\n\n for (const section of this._observableSections.values()) {\n this._observer.observe(section)\n }\n }\n\n dispose() {\n this._observer.disconnect()\n super.dispose()\n }\n\n // Private\n _configAfterMerge(config) {\n // TODO: on v6 target should be given explicitly & remove the {target: 'ss-target'} case\n config.target = getElement(config.target) || document.body\n\n // TODO: v6 Only for backwards compatibility reasons. Use rootMargin only\n config.rootMargin = config.offset ? `${config.offset}px 0px -30%` : config.rootMargin\n\n if (typeof config.threshold === 'string') {\n config.threshold = config.threshold.split(',').map(value => Number.parseFloat(value))\n }\n\n return config\n }\n\n _maybeEnableSmoothScroll() {\n if (!this._config.smoothScroll) {\n return\n }\n\n // unregister any previous listeners\n EventHandler.off(this._config.target, EVENT_CLICK)\n\n EventHandler.on(this._config.target, EVENT_CLICK, SELECTOR_TARGET_LINKS, event => {\n const observableSection = this._observableSections.get(event.target.hash)\n if (observableSection) {\n event.preventDefault()\n const root = this._rootElement || window\n const height = observableSection.offsetTop - this._element.offsetTop\n if (root.scrollTo) {\n root.scrollTo({ top: height, behavior: 'smooth' })\n return\n }\n\n // Chrome 60 doesn't support `scrollTo`\n root.scrollTop = height\n }\n })\n }\n\n _getNewObserver() {\n const options = {\n root: this._rootElement,\n threshold: this._config.threshold,\n rootMargin: this._config.rootMargin\n }\n\n return new IntersectionObserver(entries => this._observerCallback(entries), options)\n }\n\n // The logic of selection\n _observerCallback(entries) {\n const targetElement = entry => this._targetLinks.get(`#${entry.target.id}`)\n const activate = entry => {\n this._previousScrollData.visibleEntryTop = entry.target.offsetTop\n this._process(targetElement(entry))\n }\n\n const parentScrollTop = (this._rootElement || document.documentElement).scrollTop\n const userScrollsDown = parentScrollTop >= this._previousScrollData.parentScrollTop\n this._previousScrollData.parentScrollTop = parentScrollTop\n\n for (const entry of entries) {\n if (!entry.isIntersecting) {\n this._activeTarget = null\n this._clearActiveClass(targetElement(entry))\n\n continue\n }\n\n const entryIsLowerThanPrevious = entry.target.offsetTop >= this._previousScrollData.visibleEntryTop\n // if we are scrolling down, pick the bigger offsetTop\n if (userScrollsDown && entryIsLowerThanPrevious) {\n activate(entry)\n // if parent isn't scrolled, let's keep the first visible item, breaking the iteration\n if (!parentScrollTop) {\n return\n }\n\n continue\n }\n\n // if we are scrolling up, pick the smallest offsetTop\n if (!userScrollsDown && !entryIsLowerThanPrevious) {\n activate(entry)\n }\n }\n }\n\n _initializeTargetsAndObservables() {\n this._targetLinks = new Map()\n this._observableSections = new Map()\n\n const targetLinks = SelectorEngine.find(SELECTOR_TARGET_LINKS, this._config.target)\n\n for (const anchor of targetLinks) {\n // ensure that the anchor has an id and is not disabled\n if (!anchor.hash || isDisabled(anchor)) {\n continue\n }\n\n const observableSection = SelectorEngine.findOne(decodeURI(anchor.hash), this._element)\n\n // ensure that the observableSection exists & is visible\n if (isVisible(observableSection)) {\n this._targetLinks.set(decodeURI(anchor.hash), anchor)\n this._observableSections.set(anchor.hash, observableSection)\n }\n }\n }\n\n _process(target) {\n if (this._activeTarget === target) {\n return\n }\n\n this._clearActiveClass(this._config.target)\n this._activeTarget = target\n target.classList.add(CLASS_NAME_ACTIVE)\n this._activateParents(target)\n\n EventHandler.trigger(this._element, EVENT_ACTIVATE, { relatedTarget: target })\n }\n\n _activateParents(target) {\n // Activate dropdown parents\n if (target.classList.contains(CLASS_NAME_DROPDOWN_ITEM)) {\n SelectorEngine.findOne(SELECTOR_DROPDOWN_TOGGLE, target.closest(SELECTOR_DROPDOWN))\n .classList.add(CLASS_NAME_ACTIVE)\n return\n }\n\n for (const listGroup of SelectorEngine.parents(target, SELECTOR_NAV_LIST_GROUP)) {\n // Set triggered links parents as active\n // With both
      and
    ')},createChildNavList:function(e){var t=this.createNavList();return e.append(t),t},generateNavEl:function(e,t){var n=a('
    ');n.attr("href","#"+e),n.text(t);var r=a("
  • ");return r.append(n),r},generateNavItem:function(e){var t=this.generateAnchor(e),n=a(e),r=n.data("toc-text")||n.text();return this.generateNavEl(t,r)},getTopLevel:function(e){for(var t=1;t<=6;t++){if(1 + + + + + + + + + + + + diff --git a/docs/deps/font-awesome-6.5.2/css/all.css b/docs/deps/font-awesome-6.5.2/css/all.css new file mode 100644 index 0000000..151dd57 --- /dev/null +++ b/docs/deps/font-awesome-6.5.2/css/all.css @@ -0,0 +1,8028 @@ +/*! + * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */ +.fa { + font-family: var(--fa-style-family, "Font Awesome 6 Free"); + font-weight: var(--fa-style, 900); } + +.fa, +.fa-classic, +.fa-sharp, +.fas, +.fa-solid, +.far, +.fa-regular, +.fab, +.fa-brands { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: var(--fa-display, inline-block); + font-style: normal; + font-variant: normal; + line-height: 1; + text-rendering: auto; } + +.fas, +.fa-classic, +.fa-solid, +.far, +.fa-regular { + font-family: 'Font Awesome 6 Free'; } + +.fab, +.fa-brands { + font-family: 'Font Awesome 6 Brands'; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-2xs { + font-size: 0.625em; + line-height: 0.1em; + vertical-align: 0.225em; } + +.fa-xs { + font-size: 0.75em; + line-height: 0.08333em; + vertical-align: 0.125em; } + +.fa-sm { + font-size: 0.875em; + line-height: 0.07143em; + vertical-align: 0.05357em; } + +.fa-lg { + font-size: 1.25em; + line-height: 0.05em; + vertical-align: -0.075em; } + +.fa-xl { + font-size: 1.5em; + line-height: 0.04167em; + vertical-align: -0.125em; } + +.fa-2xl { + font-size: 2em; + line-height: 0.03125em; + vertical-align: -0.1875em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: var(--fa-li-margin, 2.5em); + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: calc(var(--fa-li-width, 2em) * -1); + position: absolute; + text-align: center; + width: var(--fa-li-width, 2em); + line-height: inherit; } + +.fa-border { + border-color: var(--fa-border-color, #eee); + border-radius: var(--fa-border-radius, 0.1em); + border-style: var(--fa-border-style, solid); + border-width: var(--fa-border-width, 0.08em); + padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } + +.fa-pull-left { + float: left; + margin-right: var(--fa-pull-margin, 0.3em); } + +.fa-pull-right { + float: right; + margin-left: var(--fa-pull-margin, 0.3em); } + +.fa-beat { + -webkit-animation-name: fa-beat; + animation-name: fa-beat; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); + animation-timing-function: var(--fa-animation-timing, ease-in-out); } + +.fa-bounce { + -webkit-animation-name: fa-bounce; + animation-name: fa-bounce; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } + +.fa-fade { + -webkit-animation-name: fa-fade; + animation-name: fa-fade; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } + +.fa-beat-fade { + -webkit-animation-name: fa-beat-fade; + animation-name: fa-beat-fade; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } + +.fa-flip { + -webkit-animation-name: fa-flip; + animation-name: fa-flip; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); + animation-timing-function: var(--fa-animation-timing, ease-in-out); } + +.fa-shake { + -webkit-animation-name: fa-shake; + animation-name: fa-shake; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, linear); + animation-timing-function: var(--fa-animation-timing, linear); } + +.fa-spin { + -webkit-animation-name: fa-spin; + animation-name: fa-spin; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 2s); + animation-duration: var(--fa-animation-duration, 2s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, linear); + animation-timing-function: var(--fa-animation-timing, linear); } + +.fa-spin-reverse { + --fa-animation-direction: reverse; } + +.fa-pulse, +.fa-spin-pulse { + -webkit-animation-name: fa-spin; + animation-name: fa-spin; + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); + animation-timing-function: var(--fa-animation-timing, steps(8)); } + +@media (prefers-reduced-motion: reduce) { + .fa-beat, + .fa-bounce, + .fa-fade, + .fa-beat-fade, + .fa-flip, + .fa-pulse, + .fa-shake, + .fa-spin, + .fa-spin-pulse { + -webkit-animation-delay: -1ms; + animation-delay: -1ms; + -webkit-animation-duration: 1ms; + animation-duration: 1ms; + -webkit-animation-iteration-count: 1; + animation-iteration-count: 1; + -webkit-transition-delay: 0s; + transition-delay: 0s; + -webkit-transition-duration: 0s; + transition-duration: 0s; } } + +@-webkit-keyframes fa-beat { + 0%, 90% { + -webkit-transform: scale(1); + transform: scale(1); } + 45% { + -webkit-transform: scale(var(--fa-beat-scale, 1.25)); + transform: scale(var(--fa-beat-scale, 1.25)); } } + +@keyframes fa-beat { + 0%, 90% { + -webkit-transform: scale(1); + transform: scale(1); } + 45% { + -webkit-transform: scale(var(--fa-beat-scale, 1.25)); + transform: scale(var(--fa-beat-scale, 1.25)); } } + +@-webkit-keyframes fa-bounce { + 0% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } + 10% { + -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); + transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } + 30% { + -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); + transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } + 50% { + -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); + transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } + 57% { + -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); + transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } + 64% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } + 100% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } } + +@keyframes fa-bounce { + 0% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } + 10% { + -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); + transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } + 30% { + -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); + transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } + 50% { + -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); + transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } + 57% { + -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); + transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } + 64% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } + 100% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } } + +@-webkit-keyframes fa-fade { + 50% { + opacity: var(--fa-fade-opacity, 0.4); } } + +@keyframes fa-fade { + 50% { + opacity: var(--fa-fade-opacity, 0.4); } } + +@-webkit-keyframes fa-beat-fade { + 0%, 100% { + opacity: var(--fa-beat-fade-opacity, 0.4); + -webkit-transform: scale(1); + transform: scale(1); } + 50% { + opacity: 1; + -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); + transform: scale(var(--fa-beat-fade-scale, 1.125)); } } + +@keyframes fa-beat-fade { + 0%, 100% { + opacity: var(--fa-beat-fade-opacity, 0.4); + -webkit-transform: scale(1); + transform: scale(1); } + 50% { + opacity: 1; + -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); + transform: scale(var(--fa-beat-fade-scale, 1.125)); } } + +@-webkit-keyframes fa-flip { + 50% { + -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); + transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } + +@keyframes fa-flip { + 50% { + -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); + transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } + +@-webkit-keyframes fa-shake { + 0% { + -webkit-transform: rotate(-15deg); + transform: rotate(-15deg); } + 4% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); } + 8%, 24% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); } + 12%, 28% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); } + 16% { + -webkit-transform: rotate(-22deg); + transform: rotate(-22deg); } + 20% { + -webkit-transform: rotate(22deg); + transform: rotate(22deg); } + 32% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); } + 36% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); } + 40%, 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } } + +@keyframes fa-shake { + 0% { + -webkit-transform: rotate(-15deg); + transform: rotate(-15deg); } + 4% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); } + 8%, 24% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); } + 12%, 28% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); } + 16% { + -webkit-transform: rotate(-22deg); + transform: rotate(-22deg); } + 20% { + -webkit-transform: rotate(22deg); + transform: rotate(22deg); } + 32% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); } + 36% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); } + 40%, 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-both, +.fa-flip-horizontal.fa-flip-vertical { + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +.fa-rotate-by { + -webkit-transform: rotate(var(--fa-rotate-angle, 0)); + transform: rotate(var(--fa-rotate-angle, 0)); } + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2.5em; } + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; + z-index: var(--fa-stack-z-index, auto); } + +.fa-stack-1x { + line-height: inherit; } + +.fa-stack-2x { + font-size: 2em; } + +.fa-inverse { + color: var(--fa-inverse, #fff); } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ + +.fa-0::before { + content: "\30"; } + +.fa-1::before { + content: "\31"; } + +.fa-2::before { + content: "\32"; } + +.fa-3::before { + content: "\33"; } + +.fa-4::before { + content: "\34"; } + +.fa-5::before { + content: "\35"; } + +.fa-6::before { + content: "\36"; } + +.fa-7::before { + content: "\37"; } + +.fa-8::before { + content: "\38"; } + +.fa-9::before { + content: "\39"; } + +.fa-fill-drip::before { + content: "\f576"; } + +.fa-arrows-to-circle::before { + content: "\e4bd"; } + +.fa-circle-chevron-right::before { + content: "\f138"; } + +.fa-chevron-circle-right::before { + content: "\f138"; } + +.fa-at::before { + content: "\40"; } + +.fa-trash-can::before { + content: "\f2ed"; } + +.fa-trash-alt::before { + content: "\f2ed"; } + +.fa-text-height::before { + content: "\f034"; } + +.fa-user-xmark::before { + content: "\f235"; } + +.fa-user-times::before { + content: "\f235"; } + +.fa-stethoscope::before { + content: "\f0f1"; } + +.fa-message::before { + content: "\f27a"; } + +.fa-comment-alt::before { + content: "\f27a"; } + +.fa-info::before { + content: "\f129"; } + +.fa-down-left-and-up-right-to-center::before { + content: "\f422"; } + +.fa-compress-alt::before { + content: "\f422"; } + +.fa-explosion::before { + content: "\e4e9"; } + +.fa-file-lines::before { + content: "\f15c"; } + +.fa-file-alt::before { + content: "\f15c"; } + +.fa-file-text::before { + content: "\f15c"; } + +.fa-wave-square::before { + content: "\f83e"; } + +.fa-ring::before { + content: "\f70b"; } + +.fa-building-un::before { + content: "\e4d9"; } + +.fa-dice-three::before { + content: "\f527"; } + +.fa-calendar-days::before { + content: "\f073"; } + +.fa-calendar-alt::before { + content: "\f073"; } + +.fa-anchor-circle-check::before { + content: "\e4aa"; } + +.fa-building-circle-arrow-right::before { + content: "\e4d1"; } + +.fa-volleyball::before { + content: "\f45f"; } + +.fa-volleyball-ball::before { + content: "\f45f"; } + +.fa-arrows-up-to-line::before { + content: "\e4c2"; } + +.fa-sort-down::before { + content: "\f0dd"; } + +.fa-sort-desc::before { + content: "\f0dd"; } + +.fa-circle-minus::before { + content: "\f056"; } + +.fa-minus-circle::before { + content: "\f056"; } + +.fa-door-open::before { + content: "\f52b"; } + +.fa-right-from-bracket::before { + content: "\f2f5"; } + +.fa-sign-out-alt::before { + content: "\f2f5"; } + +.fa-atom::before { + content: "\f5d2"; } + +.fa-soap::before { + content: "\e06e"; } + +.fa-icons::before { + content: "\f86d"; } + +.fa-heart-music-camera-bolt::before { + content: "\f86d"; } + +.fa-microphone-lines-slash::before { + content: "\f539"; } + +.fa-microphone-alt-slash::before { + content: "\f539"; } + +.fa-bridge-circle-check::before { + content: "\e4c9"; } + +.fa-pump-medical::before { + content: "\e06a"; } + +.fa-fingerprint::before { + content: "\f577"; } + +.fa-hand-point-right::before { + content: "\f0a4"; } + +.fa-magnifying-glass-location::before { + content: "\f689"; } + +.fa-search-location::before { + content: "\f689"; } + +.fa-forward-step::before { + content: "\f051"; } + +.fa-step-forward::before { + content: "\f051"; } + +.fa-face-smile-beam::before { + content: "\f5b8"; } + +.fa-smile-beam::before { + content: "\f5b8"; } + +.fa-flag-checkered::before { + content: "\f11e"; } + +.fa-football::before { + content: "\f44e"; } + +.fa-football-ball::before { + content: "\f44e"; } + +.fa-school-circle-exclamation::before { + content: "\e56c"; } + +.fa-crop::before { + content: "\f125"; } + +.fa-angles-down::before { + content: "\f103"; } + +.fa-angle-double-down::before { + content: "\f103"; } + +.fa-users-rectangle::before { + content: "\e594"; } + +.fa-people-roof::before { + content: "\e537"; } + +.fa-people-line::before { + content: "\e534"; } + +.fa-beer-mug-empty::before { + content: "\f0fc"; } + +.fa-beer::before { + content: "\f0fc"; } + +.fa-diagram-predecessor::before { + content: "\e477"; } + +.fa-arrow-up-long::before { + content: "\f176"; } + +.fa-long-arrow-up::before { + content: "\f176"; } + +.fa-fire-flame-simple::before { + content: "\f46a"; } + +.fa-burn::before { + content: "\f46a"; } + +.fa-person::before { + content: "\f183"; } + +.fa-male::before { + content: "\f183"; } + +.fa-laptop::before { + content: "\f109"; } + +.fa-file-csv::before { + content: "\f6dd"; } + +.fa-menorah::before { + content: "\f676"; } + +.fa-truck-plane::before { + content: "\e58f"; } + +.fa-record-vinyl::before { + content: "\f8d9"; } + +.fa-face-grin-stars::before { + content: "\f587"; } + +.fa-grin-stars::before { + content: "\f587"; } + +.fa-bong::before { + content: "\f55c"; } + +.fa-spaghetti-monster-flying::before { + content: "\f67b"; } + +.fa-pastafarianism::before { + content: "\f67b"; } + +.fa-arrow-down-up-across-line::before { + content: "\e4af"; } + +.fa-spoon::before { + content: "\f2e5"; } + +.fa-utensil-spoon::before { + content: "\f2e5"; } + +.fa-jar-wheat::before { + content: "\e517"; } + +.fa-envelopes-bulk::before { + content: "\f674"; } + +.fa-mail-bulk::before { + content: "\f674"; } + +.fa-file-circle-exclamation::before { + content: "\e4eb"; } + +.fa-circle-h::before { + content: "\f47e"; } + +.fa-hospital-symbol::before { + content: "\f47e"; } + +.fa-pager::before { + content: "\f815"; } + +.fa-address-book::before { + content: "\f2b9"; } + +.fa-contact-book::before { + content: "\f2b9"; } + +.fa-strikethrough::before { + content: "\f0cc"; } + +.fa-k::before { + content: "\4b"; } + +.fa-landmark-flag::before { + content: "\e51c"; } + +.fa-pencil::before { + content: "\f303"; } + +.fa-pencil-alt::before { + content: "\f303"; } + +.fa-backward::before { + content: "\f04a"; } + +.fa-caret-right::before { + content: "\f0da"; } + +.fa-comments::before { + content: "\f086"; } + +.fa-paste::before { + content: "\f0ea"; } + +.fa-file-clipboard::before { + content: "\f0ea"; } + +.fa-code-pull-request::before { + content: "\e13c"; } + +.fa-clipboard-list::before { + content: "\f46d"; } + +.fa-truck-ramp-box::before { + content: "\f4de"; } + +.fa-truck-loading::before { + content: "\f4de"; } + +.fa-user-check::before { + content: "\f4fc"; } + +.fa-vial-virus::before { + content: "\e597"; } + +.fa-sheet-plastic::before { + content: "\e571"; } + +.fa-blog::before { + content: "\f781"; } + +.fa-user-ninja::before { + content: "\f504"; } + +.fa-person-arrow-up-from-line::before { + content: "\e539"; } + +.fa-scroll-torah::before { + content: "\f6a0"; } + +.fa-torah::before { + content: "\f6a0"; } + +.fa-broom-ball::before { + content: "\f458"; } + +.fa-quidditch::before { + content: "\f458"; } + +.fa-quidditch-broom-ball::before { + content: "\f458"; } + +.fa-toggle-off::before { + content: "\f204"; } + +.fa-box-archive::before { + content: "\f187"; } + +.fa-archive::before { + content: "\f187"; } + +.fa-person-drowning::before { + content: "\e545"; } + +.fa-arrow-down-9-1::before { + content: "\f886"; } + +.fa-sort-numeric-desc::before { + content: "\f886"; } + +.fa-sort-numeric-down-alt::before { + content: "\f886"; } + +.fa-face-grin-tongue-squint::before { + content: "\f58a"; } + +.fa-grin-tongue-squint::before { + content: "\f58a"; } + +.fa-spray-can::before { + content: "\f5bd"; } + +.fa-truck-monster::before { + content: "\f63b"; } + +.fa-w::before { + content: "\57"; } + +.fa-earth-africa::before { + content: "\f57c"; } + +.fa-globe-africa::before { + content: "\f57c"; } + +.fa-rainbow::before { + content: "\f75b"; } + +.fa-circle-notch::before { + content: "\f1ce"; } + +.fa-tablet-screen-button::before { + content: "\f3fa"; } + +.fa-tablet-alt::before { + content: "\f3fa"; } + +.fa-paw::before { + content: "\f1b0"; } + +.fa-cloud::before { + content: "\f0c2"; } + +.fa-trowel-bricks::before { + content: "\e58a"; } + +.fa-face-flushed::before { + content: "\f579"; } + +.fa-flushed::before { + content: "\f579"; } + +.fa-hospital-user::before { + content: "\f80d"; } + +.fa-tent-arrow-left-right::before { + content: "\e57f"; } + +.fa-gavel::before { + content: "\f0e3"; } + +.fa-legal::before { + content: "\f0e3"; } + +.fa-binoculars::before { + content: "\f1e5"; } + +.fa-microphone-slash::before { + content: "\f131"; } + +.fa-box-tissue::before { + content: "\e05b"; } + +.fa-motorcycle::before { + content: "\f21c"; } + +.fa-bell-concierge::before { + content: "\f562"; } + +.fa-concierge-bell::before { + content: "\f562"; } + +.fa-pen-ruler::before { + content: "\f5ae"; } + +.fa-pencil-ruler::before { + content: "\f5ae"; } + +.fa-people-arrows::before { + content: "\e068"; } + +.fa-people-arrows-left-right::before { + content: "\e068"; } + +.fa-mars-and-venus-burst::before { + content: "\e523"; } + +.fa-square-caret-right::before { + content: "\f152"; } + +.fa-caret-square-right::before { + content: "\f152"; } + +.fa-scissors::before { + content: "\f0c4"; } + +.fa-cut::before { + content: "\f0c4"; } + +.fa-sun-plant-wilt::before { + content: "\e57a"; } + +.fa-toilets-portable::before { + content: "\e584"; } + +.fa-hockey-puck::before { + content: "\f453"; } + +.fa-table::before { + content: "\f0ce"; } + +.fa-magnifying-glass-arrow-right::before { + content: "\e521"; } + +.fa-tachograph-digital::before { + content: "\f566"; } + +.fa-digital-tachograph::before { + content: "\f566"; } + +.fa-users-slash::before { + content: "\e073"; } + +.fa-clover::before { + content: "\e139"; } + +.fa-reply::before { + content: "\f3e5"; } + +.fa-mail-reply::before { + content: "\f3e5"; } + +.fa-star-and-crescent::before { + content: "\f699"; } + +.fa-house-fire::before { + content: "\e50c"; } + +.fa-square-minus::before { + content: "\f146"; } + +.fa-minus-square::before { + content: "\f146"; } + +.fa-helicopter::before { + content: "\f533"; } + +.fa-compass::before { + content: "\f14e"; } + +.fa-square-caret-down::before { + content: "\f150"; } + +.fa-caret-square-down::before { + content: "\f150"; } + +.fa-file-circle-question::before { + content: "\e4ef"; } + +.fa-laptop-code::before { + content: "\f5fc"; } + +.fa-swatchbook::before { + content: "\f5c3"; } + +.fa-prescription-bottle::before { + content: "\f485"; } + +.fa-bars::before { + content: "\f0c9"; } + +.fa-navicon::before { + content: "\f0c9"; } + +.fa-people-group::before { + content: "\e533"; } + +.fa-hourglass-end::before { + content: "\f253"; } + +.fa-hourglass-3::before { + content: "\f253"; } + +.fa-heart-crack::before { + content: "\f7a9"; } + +.fa-heart-broken::before { + content: "\f7a9"; } + +.fa-square-up-right::before { + content: "\f360"; } + +.fa-external-link-square-alt::before { + content: "\f360"; } + +.fa-face-kiss-beam::before { + content: "\f597"; } + +.fa-kiss-beam::before { + content: "\f597"; } + +.fa-film::before { + content: "\f008"; } + +.fa-ruler-horizontal::before { + content: "\f547"; } + +.fa-people-robbery::before { + content: "\e536"; } + +.fa-lightbulb::before { + content: "\f0eb"; } + +.fa-caret-left::before { + content: "\f0d9"; } + +.fa-circle-exclamation::before { + content: "\f06a"; } + +.fa-exclamation-circle::before { + content: "\f06a"; } + +.fa-school-circle-xmark::before { + content: "\e56d"; } + +.fa-arrow-right-from-bracket::before { + content: "\f08b"; } + +.fa-sign-out::before { + content: "\f08b"; } + +.fa-circle-chevron-down::before { + content: "\f13a"; } + +.fa-chevron-circle-down::before { + content: "\f13a"; } + +.fa-unlock-keyhole::before { + content: "\f13e"; } + +.fa-unlock-alt::before { + content: "\f13e"; } + +.fa-cloud-showers-heavy::before { + content: "\f740"; } + +.fa-headphones-simple::before { + content: "\f58f"; } + +.fa-headphones-alt::before { + content: "\f58f"; } + +.fa-sitemap::before { + content: "\f0e8"; } + +.fa-circle-dollar-to-slot::before { + content: "\f4b9"; } + +.fa-donate::before { + content: "\f4b9"; } + +.fa-memory::before { + content: "\f538"; } + +.fa-road-spikes::before { + content: "\e568"; } + +.fa-fire-burner::before { + content: "\e4f1"; } + +.fa-flag::before { + content: "\f024"; } + +.fa-hanukiah::before { + content: "\f6e6"; } + +.fa-feather::before { + content: "\f52d"; } + +.fa-volume-low::before { + content: "\f027"; } + +.fa-volume-down::before { + content: "\f027"; } + +.fa-comment-slash::before { + content: "\f4b3"; } + +.fa-cloud-sun-rain::before { + content: "\f743"; } + +.fa-compress::before { + content: "\f066"; } + +.fa-wheat-awn::before { + content: "\e2cd"; } + +.fa-wheat-alt::before { + content: "\e2cd"; } + +.fa-ankh::before { + content: "\f644"; } + +.fa-hands-holding-child::before { + content: "\e4fa"; } + +.fa-asterisk::before { + content: "\2a"; } + +.fa-square-check::before { + content: "\f14a"; } + +.fa-check-square::before { + content: "\f14a"; } + +.fa-peseta-sign::before { + content: "\e221"; } + +.fa-heading::before { + content: "\f1dc"; } + +.fa-header::before { + content: "\f1dc"; } + +.fa-ghost::before { + content: "\f6e2"; } + +.fa-list::before { + content: "\f03a"; } + +.fa-list-squares::before { + content: "\f03a"; } + +.fa-square-phone-flip::before { + content: "\f87b"; } + +.fa-phone-square-alt::before { + content: "\f87b"; } + +.fa-cart-plus::before { + content: "\f217"; } + +.fa-gamepad::before { + content: "\f11b"; } + +.fa-circle-dot::before { + content: "\f192"; } + +.fa-dot-circle::before { + content: "\f192"; } + +.fa-face-dizzy::before { + content: "\f567"; } + +.fa-dizzy::before { + content: "\f567"; } + +.fa-egg::before { + content: "\f7fb"; } + +.fa-house-medical-circle-xmark::before { + content: "\e513"; } + +.fa-campground::before { + content: "\f6bb"; } + +.fa-folder-plus::before { + content: "\f65e"; } + +.fa-futbol::before { + content: "\f1e3"; } + +.fa-futbol-ball::before { + content: "\f1e3"; } + +.fa-soccer-ball::before { + content: "\f1e3"; } + +.fa-paintbrush::before { + content: "\f1fc"; } + +.fa-paint-brush::before { + content: "\f1fc"; } + +.fa-lock::before { + content: "\f023"; } + +.fa-gas-pump::before { + content: "\f52f"; } + +.fa-hot-tub-person::before { + content: "\f593"; } + +.fa-hot-tub::before { + content: "\f593"; } + +.fa-map-location::before { + content: "\f59f"; } + +.fa-map-marked::before { + content: "\f59f"; } + +.fa-house-flood-water::before { + content: "\e50e"; } + +.fa-tree::before { + content: "\f1bb"; } + +.fa-bridge-lock::before { + content: "\e4cc"; } + +.fa-sack-dollar::before { + content: "\f81d"; } + +.fa-pen-to-square::before { + content: "\f044"; } + +.fa-edit::before { + content: "\f044"; } + +.fa-car-side::before { + content: "\f5e4"; } + +.fa-share-nodes::before { + content: "\f1e0"; } + +.fa-share-alt::before { + content: "\f1e0"; } + +.fa-heart-circle-minus::before { + content: "\e4ff"; } + +.fa-hourglass-half::before { + content: "\f252"; } + +.fa-hourglass-2::before { + content: "\f252"; } + +.fa-microscope::before { + content: "\f610"; } + +.fa-sink::before { + content: "\e06d"; } + +.fa-bag-shopping::before { + content: "\f290"; } + +.fa-shopping-bag::before { + content: "\f290"; } + +.fa-arrow-down-z-a::before { + content: "\f881"; } + +.fa-sort-alpha-desc::before { + content: "\f881"; } + +.fa-sort-alpha-down-alt::before { + content: "\f881"; } + +.fa-mitten::before { + content: "\f7b5"; } + +.fa-person-rays::before { + content: "\e54d"; } + +.fa-users::before { + content: "\f0c0"; } + +.fa-eye-slash::before { + content: "\f070"; } + +.fa-flask-vial::before { + content: "\e4f3"; } + +.fa-hand::before { + content: "\f256"; } + +.fa-hand-paper::before { + content: "\f256"; } + +.fa-om::before { + content: "\f679"; } + +.fa-worm::before { + content: "\e599"; } + +.fa-house-circle-xmark::before { + content: "\e50b"; } + +.fa-plug::before { + content: "\f1e6"; } + +.fa-chevron-up::before { + content: "\f077"; } + +.fa-hand-spock::before { + content: "\f259"; } + +.fa-stopwatch::before { + content: "\f2f2"; } + +.fa-face-kiss::before { + content: "\f596"; } + +.fa-kiss::before { + content: "\f596"; } + +.fa-bridge-circle-xmark::before { + content: "\e4cb"; } + +.fa-face-grin-tongue::before { + content: "\f589"; } + +.fa-grin-tongue::before { + content: "\f589"; } + +.fa-chess-bishop::before { + content: "\f43a"; } + +.fa-face-grin-wink::before { + content: "\f58c"; } + +.fa-grin-wink::before { + content: "\f58c"; } + +.fa-ear-deaf::before { + content: "\f2a4"; } + +.fa-deaf::before { + content: "\f2a4"; } + +.fa-deafness::before { + content: "\f2a4"; } + +.fa-hard-of-hearing::before { + content: "\f2a4"; } + +.fa-road-circle-check::before { + content: "\e564"; } + +.fa-dice-five::before { + content: "\f523"; } + +.fa-square-rss::before { + content: "\f143"; } + +.fa-rss-square::before { + content: "\f143"; } + +.fa-land-mine-on::before { + content: "\e51b"; } + +.fa-i-cursor::before { + content: "\f246"; } + +.fa-stamp::before { + content: "\f5bf"; } + +.fa-stairs::before { + content: "\e289"; } + +.fa-i::before { + content: "\49"; } + +.fa-hryvnia-sign::before { + content: "\f6f2"; } + +.fa-hryvnia::before { + content: "\f6f2"; } + +.fa-pills::before { + content: "\f484"; } + +.fa-face-grin-wide::before { + content: "\f581"; } + +.fa-grin-alt::before { + content: "\f581"; } + +.fa-tooth::before { + content: "\f5c9"; } + +.fa-v::before { + content: "\56"; } + +.fa-bangladeshi-taka-sign::before { + content: "\e2e6"; } + +.fa-bicycle::before { + content: "\f206"; } + +.fa-staff-snake::before { + content: "\e579"; } + +.fa-rod-asclepius::before { + content: "\e579"; } + +.fa-rod-snake::before { + content: "\e579"; } + +.fa-staff-aesculapius::before { + content: "\e579"; } + +.fa-head-side-cough-slash::before { + content: "\e062"; } + +.fa-truck-medical::before { + content: "\f0f9"; } + +.fa-ambulance::before { + content: "\f0f9"; } + +.fa-wheat-awn-circle-exclamation::before { + content: "\e598"; } + +.fa-snowman::before { + content: "\f7d0"; } + +.fa-mortar-pestle::before { + content: "\f5a7"; } + +.fa-road-barrier::before { + content: "\e562"; } + +.fa-school::before { + content: "\f549"; } + +.fa-igloo::before { + content: "\f7ae"; } + +.fa-joint::before { + content: "\f595"; } + +.fa-angle-right::before { + content: "\f105"; } + +.fa-horse::before { + content: "\f6f0"; } + +.fa-q::before { + content: "\51"; } + +.fa-g::before { + content: "\47"; } + +.fa-notes-medical::before { + content: "\f481"; } + +.fa-temperature-half::before { + content: "\f2c9"; } + +.fa-temperature-2::before { + content: "\f2c9"; } + +.fa-thermometer-2::before { + content: "\f2c9"; } + +.fa-thermometer-half::before { + content: "\f2c9"; } + +.fa-dong-sign::before { + content: "\e169"; } + +.fa-capsules::before { + content: "\f46b"; } + +.fa-poo-storm::before { + content: "\f75a"; } + +.fa-poo-bolt::before { + content: "\f75a"; } + +.fa-face-frown-open::before { + content: "\f57a"; } + +.fa-frown-open::before { + content: "\f57a"; } + +.fa-hand-point-up::before { + content: "\f0a6"; } + +.fa-money-bill::before { + content: "\f0d6"; } + +.fa-bookmark::before { + content: "\f02e"; } + +.fa-align-justify::before { + content: "\f039"; } + +.fa-umbrella-beach::before { + content: "\f5ca"; } + +.fa-helmet-un::before { + content: "\e503"; } + +.fa-bullseye::before { + content: "\f140"; } + +.fa-bacon::before { + content: "\f7e5"; } + +.fa-hand-point-down::before { + content: "\f0a7"; } + +.fa-arrow-up-from-bracket::before { + content: "\e09a"; } + +.fa-folder::before { + content: "\f07b"; } + +.fa-folder-blank::before { + content: "\f07b"; } + +.fa-file-waveform::before { + content: "\f478"; } + +.fa-file-medical-alt::before { + content: "\f478"; } + +.fa-radiation::before { + content: "\f7b9"; } + +.fa-chart-simple::before { + content: "\e473"; } + +.fa-mars-stroke::before { + content: "\f229"; } + +.fa-vial::before { + content: "\f492"; } + +.fa-gauge::before { + content: "\f624"; } + +.fa-dashboard::before { + content: "\f624"; } + +.fa-gauge-med::before { + content: "\f624"; } + +.fa-tachometer-alt-average::before { + content: "\f624"; } + +.fa-wand-magic-sparkles::before { + content: "\e2ca"; } + +.fa-magic-wand-sparkles::before { + content: "\e2ca"; } + +.fa-e::before { + content: "\45"; } + +.fa-pen-clip::before { + content: "\f305"; } + +.fa-pen-alt::before { + content: "\f305"; } + +.fa-bridge-circle-exclamation::before { + content: "\e4ca"; } + +.fa-user::before { + content: "\f007"; } + +.fa-school-circle-check::before { + content: "\e56b"; } + +.fa-dumpster::before { + content: "\f793"; } + +.fa-van-shuttle::before { + content: "\f5b6"; } + +.fa-shuttle-van::before { + content: "\f5b6"; } + +.fa-building-user::before { + content: "\e4da"; } + +.fa-square-caret-left::before { + content: "\f191"; } + +.fa-caret-square-left::before { + content: "\f191"; } + +.fa-highlighter::before { + content: "\f591"; } + +.fa-key::before { + content: "\f084"; } + +.fa-bullhorn::before { + content: "\f0a1"; } + +.fa-globe::before { + content: "\f0ac"; } + +.fa-synagogue::before { + content: "\f69b"; } + +.fa-person-half-dress::before { + content: "\e548"; } + +.fa-road-bridge::before { + content: "\e563"; } + +.fa-location-arrow::before { + content: "\f124"; } + +.fa-c::before { + content: "\43"; } + +.fa-tablet-button::before { + content: "\f10a"; } + +.fa-building-lock::before { + content: "\e4d6"; } + +.fa-pizza-slice::before { + content: "\f818"; } + +.fa-money-bill-wave::before { + content: "\f53a"; } + +.fa-chart-area::before { + content: "\f1fe"; } + +.fa-area-chart::before { + content: "\f1fe"; } + +.fa-house-flag::before { + content: "\e50d"; } + +.fa-person-circle-minus::before { + content: "\e540"; } + +.fa-ban::before { + content: "\f05e"; } + +.fa-cancel::before { + content: "\f05e"; } + +.fa-camera-rotate::before { + content: "\e0d8"; } + +.fa-spray-can-sparkles::before { + content: "\f5d0"; } + +.fa-air-freshener::before { + content: "\f5d0"; } + +.fa-star::before { + content: "\f005"; } + +.fa-repeat::before { + content: "\f363"; } + +.fa-cross::before { + content: "\f654"; } + +.fa-box::before { + content: "\f466"; } + +.fa-venus-mars::before { + content: "\f228"; } + +.fa-arrow-pointer::before { + content: "\f245"; } + +.fa-mouse-pointer::before { + content: "\f245"; } + +.fa-maximize::before { + content: "\f31e"; } + +.fa-expand-arrows-alt::before { + content: "\f31e"; } + +.fa-charging-station::before { + content: "\f5e7"; } + +.fa-shapes::before { + content: "\f61f"; } + +.fa-triangle-circle-square::before { + content: "\f61f"; } + +.fa-shuffle::before { + content: "\f074"; } + +.fa-random::before { + content: "\f074"; } + +.fa-person-running::before { + content: "\f70c"; } + +.fa-running::before { + content: "\f70c"; } + +.fa-mobile-retro::before { + content: "\e527"; } + +.fa-grip-lines-vertical::before { + content: "\f7a5"; } + +.fa-spider::before { + content: "\f717"; } + +.fa-hands-bound::before { + content: "\e4f9"; } + +.fa-file-invoice-dollar::before { + content: "\f571"; } + +.fa-plane-circle-exclamation::before { + content: "\e556"; } + +.fa-x-ray::before { + content: "\f497"; } + +.fa-spell-check::before { + content: "\f891"; } + +.fa-slash::before { + content: "\f715"; } + +.fa-computer-mouse::before { + content: "\f8cc"; } + +.fa-mouse::before { + content: "\f8cc"; } + +.fa-arrow-right-to-bracket::before { + content: "\f090"; } + +.fa-sign-in::before { + content: "\f090"; } + +.fa-shop-slash::before { + content: "\e070"; } + +.fa-store-alt-slash::before { + content: "\e070"; } + +.fa-server::before { + content: "\f233"; } + +.fa-virus-covid-slash::before { + content: "\e4a9"; } + +.fa-shop-lock::before { + content: "\e4a5"; } + +.fa-hourglass-start::before { + content: "\f251"; } + +.fa-hourglass-1::before { + content: "\f251"; } + +.fa-blender-phone::before { + content: "\f6b6"; } + +.fa-building-wheat::before { + content: "\e4db"; } + +.fa-person-breastfeeding::before { + content: "\e53a"; } + +.fa-right-to-bracket::before { + content: "\f2f6"; } + +.fa-sign-in-alt::before { + content: "\f2f6"; } + +.fa-venus::before { + content: "\f221"; } + +.fa-passport::before { + content: "\f5ab"; } + +.fa-heart-pulse::before { + content: "\f21e"; } + +.fa-heartbeat::before { + content: "\f21e"; } + +.fa-people-carry-box::before { + content: "\f4ce"; } + +.fa-people-carry::before { + content: "\f4ce"; } + +.fa-temperature-high::before { + content: "\f769"; } + +.fa-microchip::before { + content: "\f2db"; } + +.fa-crown::before { + content: "\f521"; } + +.fa-weight-hanging::before { + content: "\f5cd"; } + +.fa-xmarks-lines::before { + content: "\e59a"; } + +.fa-file-prescription::before { + content: "\f572"; } + +.fa-weight-scale::before { + content: "\f496"; } + +.fa-weight::before { + content: "\f496"; } + +.fa-user-group::before { + content: "\f500"; } + +.fa-user-friends::before { + content: "\f500"; } + +.fa-arrow-up-a-z::before { + content: "\f15e"; } + +.fa-sort-alpha-up::before { + content: "\f15e"; } + +.fa-chess-knight::before { + content: "\f441"; } + +.fa-face-laugh-squint::before { + content: "\f59b"; } + +.fa-laugh-squint::before { + content: "\f59b"; } + +.fa-wheelchair::before { + content: "\f193"; } + +.fa-circle-arrow-up::before { + content: "\f0aa"; } + +.fa-arrow-circle-up::before { + content: "\f0aa"; } + +.fa-toggle-on::before { + content: "\f205"; } + +.fa-person-walking::before { + content: "\f554"; } + +.fa-walking::before { + content: "\f554"; } + +.fa-l::before { + content: "\4c"; } + +.fa-fire::before { + content: "\f06d"; } + +.fa-bed-pulse::before { + content: "\f487"; } + +.fa-procedures::before { + content: "\f487"; } + +.fa-shuttle-space::before { + content: "\f197"; } + +.fa-space-shuttle::before { + content: "\f197"; } + +.fa-face-laugh::before { + content: "\f599"; } + +.fa-laugh::before { + content: "\f599"; } + +.fa-folder-open::before { + content: "\f07c"; } + +.fa-heart-circle-plus::before { + content: "\e500"; } + +.fa-code-fork::before { + content: "\e13b"; } + +.fa-city::before { + content: "\f64f"; } + +.fa-microphone-lines::before { + content: "\f3c9"; } + +.fa-microphone-alt::before { + content: "\f3c9"; } + +.fa-pepper-hot::before { + content: "\f816"; } + +.fa-unlock::before { + content: "\f09c"; } + +.fa-colon-sign::before { + content: "\e140"; } + +.fa-headset::before { + content: "\f590"; } + +.fa-store-slash::before { + content: "\e071"; } + +.fa-road-circle-xmark::before { + content: "\e566"; } + +.fa-user-minus::before { + content: "\f503"; } + +.fa-mars-stroke-up::before { + content: "\f22a"; } + +.fa-mars-stroke-v::before { + content: "\f22a"; } + +.fa-champagne-glasses::before { + content: "\f79f"; } + +.fa-glass-cheers::before { + content: "\f79f"; } + +.fa-clipboard::before { + content: "\f328"; } + +.fa-house-circle-exclamation::before { + content: "\e50a"; } + +.fa-file-arrow-up::before { + content: "\f574"; } + +.fa-file-upload::before { + content: "\f574"; } + +.fa-wifi::before { + content: "\f1eb"; } + +.fa-wifi-3::before { + content: "\f1eb"; } + +.fa-wifi-strong::before { + content: "\f1eb"; } + +.fa-bath::before { + content: "\f2cd"; } + +.fa-bathtub::before { + content: "\f2cd"; } + +.fa-underline::before { + content: "\f0cd"; } + +.fa-user-pen::before { + content: "\f4ff"; } + +.fa-user-edit::before { + content: "\f4ff"; } + +.fa-signature::before { + content: "\f5b7"; } + +.fa-stroopwafel::before { + content: "\f551"; } + +.fa-bold::before { + content: "\f032"; } + +.fa-anchor-lock::before { + content: "\e4ad"; } + +.fa-building-ngo::before { + content: "\e4d7"; } + +.fa-manat-sign::before { + content: "\e1d5"; } + +.fa-not-equal::before { + content: "\f53e"; } + +.fa-border-top-left::before { + content: "\f853"; } + +.fa-border-style::before { + content: "\f853"; } + +.fa-map-location-dot::before { + content: "\f5a0"; } + +.fa-map-marked-alt::before { + content: "\f5a0"; } + +.fa-jedi::before { + content: "\f669"; } + +.fa-square-poll-vertical::before { + content: "\f681"; } + +.fa-poll::before { + content: "\f681"; } + +.fa-mug-hot::before { + content: "\f7b6"; } + +.fa-car-battery::before { + content: "\f5df"; } + +.fa-battery-car::before { + content: "\f5df"; } + +.fa-gift::before { + content: "\f06b"; } + +.fa-dice-two::before { + content: "\f528"; } + +.fa-chess-queen::before { + content: "\f445"; } + +.fa-glasses::before { + content: "\f530"; } + +.fa-chess-board::before { + content: "\f43c"; } + +.fa-building-circle-check::before { + content: "\e4d2"; } + +.fa-person-chalkboard::before { + content: "\e53d"; } + +.fa-mars-stroke-right::before { + content: "\f22b"; } + +.fa-mars-stroke-h::before { + content: "\f22b"; } + +.fa-hand-back-fist::before { + content: "\f255"; } + +.fa-hand-rock::before { + content: "\f255"; } + +.fa-square-caret-up::before { + content: "\f151"; } + +.fa-caret-square-up::before { + content: "\f151"; } + +.fa-cloud-showers-water::before { + content: "\e4e4"; } + +.fa-chart-bar::before { + content: "\f080"; } + +.fa-bar-chart::before { + content: "\f080"; } + +.fa-hands-bubbles::before { + content: "\e05e"; } + +.fa-hands-wash::before { + content: "\e05e"; } + +.fa-less-than-equal::before { + content: "\f537"; } + +.fa-train::before { + content: "\f238"; } + +.fa-eye-low-vision::before { + content: "\f2a8"; } + +.fa-low-vision::before { + content: "\f2a8"; } + +.fa-crow::before { + content: "\f520"; } + +.fa-sailboat::before { + content: "\e445"; } + +.fa-window-restore::before { + content: "\f2d2"; } + +.fa-square-plus::before { + content: "\f0fe"; } + +.fa-plus-square::before { + content: "\f0fe"; } + +.fa-torii-gate::before { + content: "\f6a1"; } + +.fa-frog::before { + content: "\f52e"; } + +.fa-bucket::before { + content: "\e4cf"; } + +.fa-image::before { + content: "\f03e"; } + +.fa-microphone::before { + content: "\f130"; } + +.fa-cow::before { + content: "\f6c8"; } + +.fa-caret-up::before { + content: "\f0d8"; } + +.fa-screwdriver::before { + content: "\f54a"; } + +.fa-folder-closed::before { + content: "\e185"; } + +.fa-house-tsunami::before { + content: "\e515"; } + +.fa-square-nfi::before { + content: "\e576"; } + +.fa-arrow-up-from-ground-water::before { + content: "\e4b5"; } + +.fa-martini-glass::before { + content: "\f57b"; } + +.fa-glass-martini-alt::before { + content: "\f57b"; } + +.fa-rotate-left::before { + content: "\f2ea"; } + +.fa-rotate-back::before { + content: "\f2ea"; } + +.fa-rotate-backward::before { + content: "\f2ea"; } + +.fa-undo-alt::before { + content: "\f2ea"; } + +.fa-table-columns::before { + content: "\f0db"; } + +.fa-columns::before { + content: "\f0db"; } + +.fa-lemon::before { + content: "\f094"; } + +.fa-head-side-mask::before { + content: "\e063"; } + +.fa-handshake::before { + content: "\f2b5"; } + +.fa-gem::before { + content: "\f3a5"; } + +.fa-dolly::before { + content: "\f472"; } + +.fa-dolly-box::before { + content: "\f472"; } + +.fa-smoking::before { + content: "\f48d"; } + +.fa-minimize::before { + content: "\f78c"; } + +.fa-compress-arrows-alt::before { + content: "\f78c"; } + +.fa-monument::before { + content: "\f5a6"; } + +.fa-snowplow::before { + content: "\f7d2"; } + +.fa-angles-right::before { + content: "\f101"; } + +.fa-angle-double-right::before { + content: "\f101"; } + +.fa-cannabis::before { + content: "\f55f"; } + +.fa-circle-play::before { + content: "\f144"; } + +.fa-play-circle::before { + content: "\f144"; } + +.fa-tablets::before { + content: "\f490"; } + +.fa-ethernet::before { + content: "\f796"; } + +.fa-euro-sign::before { + content: "\f153"; } + +.fa-eur::before { + content: "\f153"; } + +.fa-euro::before { + content: "\f153"; } + +.fa-chair::before { + content: "\f6c0"; } + +.fa-circle-check::before { + content: "\f058"; } + +.fa-check-circle::before { + content: "\f058"; } + +.fa-circle-stop::before { + content: "\f28d"; } + +.fa-stop-circle::before { + content: "\f28d"; } + +.fa-compass-drafting::before { + content: "\f568"; } + +.fa-drafting-compass::before { + content: "\f568"; } + +.fa-plate-wheat::before { + content: "\e55a"; } + +.fa-icicles::before { + content: "\f7ad"; } + +.fa-person-shelter::before { + content: "\e54f"; } + +.fa-neuter::before { + content: "\f22c"; } + +.fa-id-badge::before { + content: "\f2c1"; } + +.fa-marker::before { + content: "\f5a1"; } + +.fa-face-laugh-beam::before { + content: "\f59a"; } + +.fa-laugh-beam::before { + content: "\f59a"; } + +.fa-helicopter-symbol::before { + content: "\e502"; } + +.fa-universal-access::before { + content: "\f29a"; } + +.fa-circle-chevron-up::before { + content: "\f139"; } + +.fa-chevron-circle-up::before { + content: "\f139"; } + +.fa-lari-sign::before { + content: "\e1c8"; } + +.fa-volcano::before { + content: "\f770"; } + +.fa-person-walking-dashed-line-arrow-right::before { + content: "\e553"; } + +.fa-sterling-sign::before { + content: "\f154"; } + +.fa-gbp::before { + content: "\f154"; } + +.fa-pound-sign::before { + content: "\f154"; } + +.fa-viruses::before { + content: "\e076"; } + +.fa-square-person-confined::before { + content: "\e577"; } + +.fa-user-tie::before { + content: "\f508"; } + +.fa-arrow-down-long::before { + content: "\f175"; } + +.fa-long-arrow-down::before { + content: "\f175"; } + +.fa-tent-arrow-down-to-line::before { + content: "\e57e"; } + +.fa-certificate::before { + content: "\f0a3"; } + +.fa-reply-all::before { + content: "\f122"; } + +.fa-mail-reply-all::before { + content: "\f122"; } + +.fa-suitcase::before { + content: "\f0f2"; } + +.fa-person-skating::before { + content: "\f7c5"; } + +.fa-skating::before { + content: "\f7c5"; } + +.fa-filter-circle-dollar::before { + content: "\f662"; } + +.fa-funnel-dollar::before { + content: "\f662"; } + +.fa-camera-retro::before { + content: "\f083"; } + +.fa-circle-arrow-down::before { + content: "\f0ab"; } + +.fa-arrow-circle-down::before { + content: "\f0ab"; } + +.fa-file-import::before { + content: "\f56f"; } + +.fa-arrow-right-to-file::before { + content: "\f56f"; } + +.fa-square-arrow-up-right::before { + content: "\f14c"; } + +.fa-external-link-square::before { + content: "\f14c"; } + +.fa-box-open::before { + content: "\f49e"; } + +.fa-scroll::before { + content: "\f70e"; } + +.fa-spa::before { + content: "\f5bb"; } + +.fa-location-pin-lock::before { + content: "\e51f"; } + +.fa-pause::before { + content: "\f04c"; } + +.fa-hill-avalanche::before { + content: "\e507"; } + +.fa-temperature-empty::before { + content: "\f2cb"; } + +.fa-temperature-0::before { + content: "\f2cb"; } + +.fa-thermometer-0::before { + content: "\f2cb"; } + +.fa-thermometer-empty::before { + content: "\f2cb"; } + +.fa-bomb::before { + content: "\f1e2"; } + +.fa-registered::before { + content: "\f25d"; } + +.fa-address-card::before { + content: "\f2bb"; } + +.fa-contact-card::before { + content: "\f2bb"; } + +.fa-vcard::before { + content: "\f2bb"; } + +.fa-scale-unbalanced-flip::before { + content: "\f516"; } + +.fa-balance-scale-right::before { + content: "\f516"; } + +.fa-subscript::before { + content: "\f12c"; } + +.fa-diamond-turn-right::before { + content: "\f5eb"; } + +.fa-directions::before { + content: "\f5eb"; } + +.fa-burst::before { + content: "\e4dc"; } + +.fa-house-laptop::before { + content: "\e066"; } + +.fa-laptop-house::before { + content: "\e066"; } + +.fa-face-tired::before { + content: "\f5c8"; } + +.fa-tired::before { + content: "\f5c8"; } + +.fa-money-bills::before { + content: "\e1f3"; } + +.fa-smog::before { + content: "\f75f"; } + +.fa-crutch::before { + content: "\f7f7"; } + +.fa-cloud-arrow-up::before { + content: "\f0ee"; } + +.fa-cloud-upload::before { + content: "\f0ee"; } + +.fa-cloud-upload-alt::before { + content: "\f0ee"; } + +.fa-palette::before { + content: "\f53f"; } + +.fa-arrows-turn-right::before { + content: "\e4c0"; } + +.fa-vest::before { + content: "\e085"; } + +.fa-ferry::before { + content: "\e4ea"; } + +.fa-arrows-down-to-people::before { + content: "\e4b9"; } + +.fa-seedling::before { + content: "\f4d8"; } + +.fa-sprout::before { + content: "\f4d8"; } + +.fa-left-right::before { + content: "\f337"; } + +.fa-arrows-alt-h::before { + content: "\f337"; } + +.fa-boxes-packing::before { + content: "\e4c7"; } + +.fa-circle-arrow-left::before { + content: "\f0a8"; } + +.fa-arrow-circle-left::before { + content: "\f0a8"; } + +.fa-group-arrows-rotate::before { + content: "\e4f6"; } + +.fa-bowl-food::before { + content: "\e4c6"; } + +.fa-candy-cane::before { + content: "\f786"; } + +.fa-arrow-down-wide-short::before { + content: "\f160"; } + +.fa-sort-amount-asc::before { + content: "\f160"; } + +.fa-sort-amount-down::before { + content: "\f160"; } + +.fa-cloud-bolt::before { + content: "\f76c"; } + +.fa-thunderstorm::before { + content: "\f76c"; } + +.fa-text-slash::before { + content: "\f87d"; } + +.fa-remove-format::before { + content: "\f87d"; } + +.fa-face-smile-wink::before { + content: "\f4da"; } + +.fa-smile-wink::before { + content: "\f4da"; } + +.fa-file-word::before { + content: "\f1c2"; } + +.fa-file-powerpoint::before { + content: "\f1c4"; } + +.fa-arrows-left-right::before { + content: "\f07e"; } + +.fa-arrows-h::before { + content: "\f07e"; } + +.fa-house-lock::before { + content: "\e510"; } + +.fa-cloud-arrow-down::before { + content: "\f0ed"; } + +.fa-cloud-download::before { + content: "\f0ed"; } + +.fa-cloud-download-alt::before { + content: "\f0ed"; } + +.fa-children::before { + content: "\e4e1"; } + +.fa-chalkboard::before { + content: "\f51b"; } + +.fa-blackboard::before { + content: "\f51b"; } + +.fa-user-large-slash::before { + content: "\f4fa"; } + +.fa-user-alt-slash::before { + content: "\f4fa"; } + +.fa-envelope-open::before { + content: "\f2b6"; } + +.fa-handshake-simple-slash::before { + content: "\e05f"; } + +.fa-handshake-alt-slash::before { + content: "\e05f"; } + +.fa-mattress-pillow::before { + content: "\e525"; } + +.fa-guarani-sign::before { + content: "\e19a"; } + +.fa-arrows-rotate::before { + content: "\f021"; } + +.fa-refresh::before { + content: "\f021"; } + +.fa-sync::before { + content: "\f021"; } + +.fa-fire-extinguisher::before { + content: "\f134"; } + +.fa-cruzeiro-sign::before { + content: "\e152"; } + +.fa-greater-than-equal::before { + content: "\f532"; } + +.fa-shield-halved::before { + content: "\f3ed"; } + +.fa-shield-alt::before { + content: "\f3ed"; } + +.fa-book-atlas::before { + content: "\f558"; } + +.fa-atlas::before { + content: "\f558"; } + +.fa-virus::before { + content: "\e074"; } + +.fa-envelope-circle-check::before { + content: "\e4e8"; } + +.fa-layer-group::before { + content: "\f5fd"; } + +.fa-arrows-to-dot::before { + content: "\e4be"; } + +.fa-archway::before { + content: "\f557"; } + +.fa-heart-circle-check::before { + content: "\e4fd"; } + +.fa-house-chimney-crack::before { + content: "\f6f1"; } + +.fa-house-damage::before { + content: "\f6f1"; } + +.fa-file-zipper::before { + content: "\f1c6"; } + +.fa-file-archive::before { + content: "\f1c6"; } + +.fa-square::before { + content: "\f0c8"; } + +.fa-martini-glass-empty::before { + content: "\f000"; } + +.fa-glass-martini::before { + content: "\f000"; } + +.fa-couch::before { + content: "\f4b8"; } + +.fa-cedi-sign::before { + content: "\e0df"; } + +.fa-italic::before { + content: "\f033"; } + +.fa-table-cells-column-lock::before { + content: "\e678"; } + +.fa-church::before { + content: "\f51d"; } + +.fa-comments-dollar::before { + content: "\f653"; } + +.fa-democrat::before { + content: "\f747"; } + +.fa-z::before { + content: "\5a"; } + +.fa-person-skiing::before { + content: "\f7c9"; } + +.fa-skiing::before { + content: "\f7c9"; } + +.fa-road-lock::before { + content: "\e567"; } + +.fa-a::before { + content: "\41"; } + +.fa-temperature-arrow-down::before { + content: "\e03f"; } + +.fa-temperature-down::before { + content: "\e03f"; } + +.fa-feather-pointed::before { + content: "\f56b"; } + +.fa-feather-alt::before { + content: "\f56b"; } + +.fa-p::before { + content: "\50"; } + +.fa-snowflake::before { + content: "\f2dc"; } + +.fa-newspaper::before { + content: "\f1ea"; } + +.fa-rectangle-ad::before { + content: "\f641"; } + +.fa-ad::before { + content: "\f641"; } + +.fa-circle-arrow-right::before { + content: "\f0a9"; } + +.fa-arrow-circle-right::before { + content: "\f0a9"; } + +.fa-filter-circle-xmark::before { + content: "\e17b"; } + +.fa-locust::before { + content: "\e520"; } + +.fa-sort::before { + content: "\f0dc"; } + +.fa-unsorted::before { + content: "\f0dc"; } + +.fa-list-ol::before { + content: "\f0cb"; } + +.fa-list-1-2::before { + content: "\f0cb"; } + +.fa-list-numeric::before { + content: "\f0cb"; } + +.fa-person-dress-burst::before { + content: "\e544"; } + +.fa-money-check-dollar::before { + content: "\f53d"; } + +.fa-money-check-alt::before { + content: "\f53d"; } + +.fa-vector-square::before { + content: "\f5cb"; } + +.fa-bread-slice::before { + content: "\f7ec"; } + +.fa-language::before { + content: "\f1ab"; } + +.fa-face-kiss-wink-heart::before { + content: "\f598"; } + +.fa-kiss-wink-heart::before { + content: "\f598"; } + +.fa-filter::before { + content: "\f0b0"; } + +.fa-question::before { + content: "\3f"; } + +.fa-file-signature::before { + content: "\f573"; } + +.fa-up-down-left-right::before { + content: "\f0b2"; } + +.fa-arrows-alt::before { + content: "\f0b2"; } + +.fa-house-chimney-user::before { + content: "\e065"; } + +.fa-hand-holding-heart::before { + content: "\f4be"; } + +.fa-puzzle-piece::before { + content: "\f12e"; } + +.fa-money-check::before { + content: "\f53c"; } + +.fa-star-half-stroke::before { + content: "\f5c0"; } + +.fa-star-half-alt::before { + content: "\f5c0"; } + +.fa-code::before { + content: "\f121"; } + +.fa-whiskey-glass::before { + content: "\f7a0"; } + +.fa-glass-whiskey::before { + content: "\f7a0"; } + +.fa-building-circle-exclamation::before { + content: "\e4d3"; } + +.fa-magnifying-glass-chart::before { + content: "\e522"; } + +.fa-arrow-up-right-from-square::before { + content: "\f08e"; } + +.fa-external-link::before { + content: "\f08e"; } + +.fa-cubes-stacked::before { + content: "\e4e6"; } + +.fa-won-sign::before { + content: "\f159"; } + +.fa-krw::before { + content: "\f159"; } + +.fa-won::before { + content: "\f159"; } + +.fa-virus-covid::before { + content: "\e4a8"; } + +.fa-austral-sign::before { + content: "\e0a9"; } + +.fa-f::before { + content: "\46"; } + +.fa-leaf::before { + content: "\f06c"; } + +.fa-road::before { + content: "\f018"; } + +.fa-taxi::before { + content: "\f1ba"; } + +.fa-cab::before { + content: "\f1ba"; } + +.fa-person-circle-plus::before { + content: "\e541"; } + +.fa-chart-pie::before { + content: "\f200"; } + +.fa-pie-chart::before { + content: "\f200"; } + +.fa-bolt-lightning::before { + content: "\e0b7"; } + +.fa-sack-xmark::before { + content: "\e56a"; } + +.fa-file-excel::before { + content: "\f1c3"; } + +.fa-file-contract::before { + content: "\f56c"; } + +.fa-fish-fins::before { + content: "\e4f2"; } + +.fa-building-flag::before { + content: "\e4d5"; } + +.fa-face-grin-beam::before { + content: "\f582"; } + +.fa-grin-beam::before { + content: "\f582"; } + +.fa-object-ungroup::before { + content: "\f248"; } + +.fa-poop::before { + content: "\f619"; } + +.fa-location-pin::before { + content: "\f041"; } + +.fa-map-marker::before { + content: "\f041"; } + +.fa-kaaba::before { + content: "\f66b"; } + +.fa-toilet-paper::before { + content: "\f71e"; } + +.fa-helmet-safety::before { + content: "\f807"; } + +.fa-hard-hat::before { + content: "\f807"; } + +.fa-hat-hard::before { + content: "\f807"; } + +.fa-eject::before { + content: "\f052"; } + +.fa-circle-right::before { + content: "\f35a"; } + +.fa-arrow-alt-circle-right::before { + content: "\f35a"; } + +.fa-plane-circle-check::before { + content: "\e555"; } + +.fa-face-rolling-eyes::before { + content: "\f5a5"; } + +.fa-meh-rolling-eyes::before { + content: "\f5a5"; } + +.fa-object-group::before { + content: "\f247"; } + +.fa-chart-line::before { + content: "\f201"; } + +.fa-line-chart::before { + content: "\f201"; } + +.fa-mask-ventilator::before { + content: "\e524"; } + +.fa-arrow-right::before { + content: "\f061"; } + +.fa-signs-post::before { + content: "\f277"; } + +.fa-map-signs::before { + content: "\f277"; } + +.fa-cash-register::before { + content: "\f788"; } + +.fa-person-circle-question::before { + content: "\e542"; } + +.fa-h::before { + content: "\48"; } + +.fa-tarp::before { + content: "\e57b"; } + +.fa-screwdriver-wrench::before { + content: "\f7d9"; } + +.fa-tools::before { + content: "\f7d9"; } + +.fa-arrows-to-eye::before { + content: "\e4bf"; } + +.fa-plug-circle-bolt::before { + content: "\e55b"; } + +.fa-heart::before { + content: "\f004"; } + +.fa-mars-and-venus::before { + content: "\f224"; } + +.fa-house-user::before { + content: "\e1b0"; } + +.fa-home-user::before { + content: "\e1b0"; } + +.fa-dumpster-fire::before { + content: "\f794"; } + +.fa-house-crack::before { + content: "\e3b1"; } + +.fa-martini-glass-citrus::before { + content: "\f561"; } + +.fa-cocktail::before { + content: "\f561"; } + +.fa-face-surprise::before { + content: "\f5c2"; } + +.fa-surprise::before { + content: "\f5c2"; } + +.fa-bottle-water::before { + content: "\e4c5"; } + +.fa-circle-pause::before { + content: "\f28b"; } + +.fa-pause-circle::before { + content: "\f28b"; } + +.fa-toilet-paper-slash::before { + content: "\e072"; } + +.fa-apple-whole::before { + content: "\f5d1"; } + +.fa-apple-alt::before { + content: "\f5d1"; } + +.fa-kitchen-set::before { + content: "\e51a"; } + +.fa-r::before { + content: "\52"; } + +.fa-temperature-quarter::before { + content: "\f2ca"; } + +.fa-temperature-1::before { + content: "\f2ca"; } + +.fa-thermometer-1::before { + content: "\f2ca"; } + +.fa-thermometer-quarter::before { + content: "\f2ca"; } + +.fa-cube::before { + content: "\f1b2"; } + +.fa-bitcoin-sign::before { + content: "\e0b4"; } + +.fa-shield-dog::before { + content: "\e573"; } + +.fa-solar-panel::before { + content: "\f5ba"; } + +.fa-lock-open::before { + content: "\f3c1"; } + +.fa-elevator::before { + content: "\e16d"; } + +.fa-money-bill-transfer::before { + content: "\e528"; } + +.fa-money-bill-trend-up::before { + content: "\e529"; } + +.fa-house-flood-water-circle-arrow-right::before { + content: "\e50f"; } + +.fa-square-poll-horizontal::before { + content: "\f682"; } + +.fa-poll-h::before { + content: "\f682"; } + +.fa-circle::before { + content: "\f111"; } + +.fa-backward-fast::before { + content: "\f049"; } + +.fa-fast-backward::before { + content: "\f049"; } + +.fa-recycle::before { + content: "\f1b8"; } + +.fa-user-astronaut::before { + content: "\f4fb"; } + +.fa-plane-slash::before { + content: "\e069"; } + +.fa-trademark::before { + content: "\f25c"; } + +.fa-basketball::before { + content: "\f434"; } + +.fa-basketball-ball::before { + content: "\f434"; } + +.fa-satellite-dish::before { + content: "\f7c0"; } + +.fa-circle-up::before { + content: "\f35b"; } + +.fa-arrow-alt-circle-up::before { + content: "\f35b"; } + +.fa-mobile-screen-button::before { + content: "\f3cd"; } + +.fa-mobile-alt::before { + content: "\f3cd"; } + +.fa-volume-high::before { + content: "\f028"; } + +.fa-volume-up::before { + content: "\f028"; } + +.fa-users-rays::before { + content: "\e593"; } + +.fa-wallet::before { + content: "\f555"; } + +.fa-clipboard-check::before { + content: "\f46c"; } + +.fa-file-audio::before { + content: "\f1c7"; } + +.fa-burger::before { + content: "\f805"; } + +.fa-hamburger::before { + content: "\f805"; } + +.fa-wrench::before { + content: "\f0ad"; } + +.fa-bugs::before { + content: "\e4d0"; } + +.fa-rupee-sign::before { + content: "\f156"; } + +.fa-rupee::before { + content: "\f156"; } + +.fa-file-image::before { + content: "\f1c5"; } + +.fa-circle-question::before { + content: "\f059"; } + +.fa-question-circle::before { + content: "\f059"; } + +.fa-plane-departure::before { + content: "\f5b0"; } + +.fa-handshake-slash::before { + content: "\e060"; } + +.fa-book-bookmark::before { + content: "\e0bb"; } + +.fa-code-branch::before { + content: "\f126"; } + +.fa-hat-cowboy::before { + content: "\f8c0"; } + +.fa-bridge::before { + content: "\e4c8"; } + +.fa-phone-flip::before { + content: "\f879"; } + +.fa-phone-alt::before { + content: "\f879"; } + +.fa-truck-front::before { + content: "\e2b7"; } + +.fa-cat::before { + content: "\f6be"; } + +.fa-anchor-circle-exclamation::before { + content: "\e4ab"; } + +.fa-truck-field::before { + content: "\e58d"; } + +.fa-route::before { + content: "\f4d7"; } + +.fa-clipboard-question::before { + content: "\e4e3"; } + +.fa-panorama::before { + content: "\e209"; } + +.fa-comment-medical::before { + content: "\f7f5"; } + +.fa-teeth-open::before { + content: "\f62f"; } + +.fa-file-circle-minus::before { + content: "\e4ed"; } + +.fa-tags::before { + content: "\f02c"; } + +.fa-wine-glass::before { + content: "\f4e3"; } + +.fa-forward-fast::before { + content: "\f050"; } + +.fa-fast-forward::before { + content: "\f050"; } + +.fa-face-meh-blank::before { + content: "\f5a4"; } + +.fa-meh-blank::before { + content: "\f5a4"; } + +.fa-square-parking::before { + content: "\f540"; } + +.fa-parking::before { + content: "\f540"; } + +.fa-house-signal::before { + content: "\e012"; } + +.fa-bars-progress::before { + content: "\f828"; } + +.fa-tasks-alt::before { + content: "\f828"; } + +.fa-faucet-drip::before { + content: "\e006"; } + +.fa-cart-flatbed::before { + content: "\f474"; } + +.fa-dolly-flatbed::before { + content: "\f474"; } + +.fa-ban-smoking::before { + content: "\f54d"; } + +.fa-smoking-ban::before { + content: "\f54d"; } + +.fa-terminal::before { + content: "\f120"; } + +.fa-mobile-button::before { + content: "\f10b"; } + +.fa-house-medical-flag::before { + content: "\e514"; } + +.fa-basket-shopping::before { + content: "\f291"; } + +.fa-shopping-basket::before { + content: "\f291"; } + +.fa-tape::before { + content: "\f4db"; } + +.fa-bus-simple::before { + content: "\f55e"; } + +.fa-bus-alt::before { + content: "\f55e"; } + +.fa-eye::before { + content: "\f06e"; } + +.fa-face-sad-cry::before { + content: "\f5b3"; } + +.fa-sad-cry::before { + content: "\f5b3"; } + +.fa-audio-description::before { + content: "\f29e"; } + +.fa-person-military-to-person::before { + content: "\e54c"; } + +.fa-file-shield::before { + content: "\e4f0"; } + +.fa-user-slash::before { + content: "\f506"; } + +.fa-pen::before { + content: "\f304"; } + +.fa-tower-observation::before { + content: "\e586"; } + +.fa-file-code::before { + content: "\f1c9"; } + +.fa-signal::before { + content: "\f012"; } + +.fa-signal-5::before { + content: "\f012"; } + +.fa-signal-perfect::before { + content: "\f012"; } + +.fa-bus::before { + content: "\f207"; } + +.fa-heart-circle-xmark::before { + content: "\e501"; } + +.fa-house-chimney::before { + content: "\e3af"; } + +.fa-home-lg::before { + content: "\e3af"; } + +.fa-window-maximize::before { + content: "\f2d0"; } + +.fa-face-frown::before { + content: "\f119"; } + +.fa-frown::before { + content: "\f119"; } + +.fa-prescription::before { + content: "\f5b1"; } + +.fa-shop::before { + content: "\f54f"; } + +.fa-store-alt::before { + content: "\f54f"; } + +.fa-floppy-disk::before { + content: "\f0c7"; } + +.fa-save::before { + content: "\f0c7"; } + +.fa-vihara::before { + content: "\f6a7"; } + +.fa-scale-unbalanced::before { + content: "\f515"; } + +.fa-balance-scale-left::before { + content: "\f515"; } + +.fa-sort-up::before { + content: "\f0de"; } + +.fa-sort-asc::before { + content: "\f0de"; } + +.fa-comment-dots::before { + content: "\f4ad"; } + +.fa-commenting::before { + content: "\f4ad"; } + +.fa-plant-wilt::before { + content: "\e5aa"; } + +.fa-diamond::before { + content: "\f219"; } + +.fa-face-grin-squint::before { + content: "\f585"; } + +.fa-grin-squint::before { + content: "\f585"; } + +.fa-hand-holding-dollar::before { + content: "\f4c0"; } + +.fa-hand-holding-usd::before { + content: "\f4c0"; } + +.fa-bacterium::before { + content: "\e05a"; } + +.fa-hand-pointer::before { + content: "\f25a"; } + +.fa-drum-steelpan::before { + content: "\f56a"; } + +.fa-hand-scissors::before { + content: "\f257"; } + +.fa-hands-praying::before { + content: "\f684"; } + +.fa-praying-hands::before { + content: "\f684"; } + +.fa-arrow-rotate-right::before { + content: "\f01e"; } + +.fa-arrow-right-rotate::before { + content: "\f01e"; } + +.fa-arrow-rotate-forward::before { + content: "\f01e"; } + +.fa-redo::before { + content: "\f01e"; } + +.fa-biohazard::before { + content: "\f780"; } + +.fa-location-crosshairs::before { + content: "\f601"; } + +.fa-location::before { + content: "\f601"; } + +.fa-mars-double::before { + content: "\f227"; } + +.fa-child-dress::before { + content: "\e59c"; } + +.fa-users-between-lines::before { + content: "\e591"; } + +.fa-lungs-virus::before { + content: "\e067"; } + +.fa-face-grin-tears::before { + content: "\f588"; } + +.fa-grin-tears::before { + content: "\f588"; } + +.fa-phone::before { + content: "\f095"; } + +.fa-calendar-xmark::before { + content: "\f273"; } + +.fa-calendar-times::before { + content: "\f273"; } + +.fa-child-reaching::before { + content: "\e59d"; } + +.fa-head-side-virus::before { + content: "\e064"; } + +.fa-user-gear::before { + content: "\f4fe"; } + +.fa-user-cog::before { + content: "\f4fe"; } + +.fa-arrow-up-1-9::before { + content: "\f163"; } + +.fa-sort-numeric-up::before { + content: "\f163"; } + +.fa-door-closed::before { + content: "\f52a"; } + +.fa-shield-virus::before { + content: "\e06c"; } + +.fa-dice-six::before { + content: "\f526"; } + +.fa-mosquito-net::before { + content: "\e52c"; } + +.fa-bridge-water::before { + content: "\e4ce"; } + +.fa-person-booth::before { + content: "\f756"; } + +.fa-text-width::before { + content: "\f035"; } + +.fa-hat-wizard::before { + content: "\f6e8"; } + +.fa-pen-fancy::before { + content: "\f5ac"; } + +.fa-person-digging::before { + content: "\f85e"; } + +.fa-digging::before { + content: "\f85e"; } + +.fa-trash::before { + content: "\f1f8"; } + +.fa-gauge-simple::before { + content: "\f629"; } + +.fa-gauge-simple-med::before { + content: "\f629"; } + +.fa-tachometer-average::before { + content: "\f629"; } + +.fa-book-medical::before { + content: "\f7e6"; } + +.fa-poo::before { + content: "\f2fe"; } + +.fa-quote-right::before { + content: "\f10e"; } + +.fa-quote-right-alt::before { + content: "\f10e"; } + +.fa-shirt::before { + content: "\f553"; } + +.fa-t-shirt::before { + content: "\f553"; } + +.fa-tshirt::before { + content: "\f553"; } + +.fa-cubes::before { + content: "\f1b3"; } + +.fa-divide::before { + content: "\f529"; } + +.fa-tenge-sign::before { + content: "\f7d7"; } + +.fa-tenge::before { + content: "\f7d7"; } + +.fa-headphones::before { + content: "\f025"; } + +.fa-hands-holding::before { + content: "\f4c2"; } + +.fa-hands-clapping::before { + content: "\e1a8"; } + +.fa-republican::before { + content: "\f75e"; } + +.fa-arrow-left::before { + content: "\f060"; } + +.fa-person-circle-xmark::before { + content: "\e543"; } + +.fa-ruler::before { + content: "\f545"; } + +.fa-align-left::before { + content: "\f036"; } + +.fa-dice-d6::before { + content: "\f6d1"; } + +.fa-restroom::before { + content: "\f7bd"; } + +.fa-j::before { + content: "\4a"; } + +.fa-users-viewfinder::before { + content: "\e595"; } + +.fa-file-video::before { + content: "\f1c8"; } + +.fa-up-right-from-square::before { + content: "\f35d"; } + +.fa-external-link-alt::before { + content: "\f35d"; } + +.fa-table-cells::before { + content: "\f00a"; } + +.fa-th::before { + content: "\f00a"; } + +.fa-file-pdf::before { + content: "\f1c1"; } + +.fa-book-bible::before { + content: "\f647"; } + +.fa-bible::before { + content: "\f647"; } + +.fa-o::before { + content: "\4f"; } + +.fa-suitcase-medical::before { + content: "\f0fa"; } + +.fa-medkit::before { + content: "\f0fa"; } + +.fa-user-secret::before { + content: "\f21b"; } + +.fa-otter::before { + content: "\f700"; } + +.fa-person-dress::before { + content: "\f182"; } + +.fa-female::before { + content: "\f182"; } + +.fa-comment-dollar::before { + content: "\f651"; } + +.fa-business-time::before { + content: "\f64a"; } + +.fa-briefcase-clock::before { + content: "\f64a"; } + +.fa-table-cells-large::before { + content: "\f009"; } + +.fa-th-large::before { + content: "\f009"; } + +.fa-book-tanakh::before { + content: "\f827"; } + +.fa-tanakh::before { + content: "\f827"; } + +.fa-phone-volume::before { + content: "\f2a0"; } + +.fa-volume-control-phone::before { + content: "\f2a0"; } + +.fa-hat-cowboy-side::before { + content: "\f8c1"; } + +.fa-clipboard-user::before { + content: "\f7f3"; } + +.fa-child::before { + content: "\f1ae"; } + +.fa-lira-sign::before { + content: "\f195"; } + +.fa-satellite::before { + content: "\f7bf"; } + +.fa-plane-lock::before { + content: "\e558"; } + +.fa-tag::before { + content: "\f02b"; } + +.fa-comment::before { + content: "\f075"; } + +.fa-cake-candles::before { + content: "\f1fd"; } + +.fa-birthday-cake::before { + content: "\f1fd"; } + +.fa-cake::before { + content: "\f1fd"; } + +.fa-envelope::before { + content: "\f0e0"; } + +.fa-angles-up::before { + content: "\f102"; } + +.fa-angle-double-up::before { + content: "\f102"; } + +.fa-paperclip::before { + content: "\f0c6"; } + +.fa-arrow-right-to-city::before { + content: "\e4b3"; } + +.fa-ribbon::before { + content: "\f4d6"; } + +.fa-lungs::before { + content: "\f604"; } + +.fa-arrow-up-9-1::before { + content: "\f887"; } + +.fa-sort-numeric-up-alt::before { + content: "\f887"; } + +.fa-litecoin-sign::before { + content: "\e1d3"; } + +.fa-border-none::before { + content: "\f850"; } + +.fa-circle-nodes::before { + content: "\e4e2"; } + +.fa-parachute-box::before { + content: "\f4cd"; } + +.fa-indent::before { + content: "\f03c"; } + +.fa-truck-field-un::before { + content: "\e58e"; } + +.fa-hourglass::before { + content: "\f254"; } + +.fa-hourglass-empty::before { + content: "\f254"; } + +.fa-mountain::before { + content: "\f6fc"; } + +.fa-user-doctor::before { + content: "\f0f0"; } + +.fa-user-md::before { + content: "\f0f0"; } + +.fa-circle-info::before { + content: "\f05a"; } + +.fa-info-circle::before { + content: "\f05a"; } + +.fa-cloud-meatball::before { + content: "\f73b"; } + +.fa-camera::before { + content: "\f030"; } + +.fa-camera-alt::before { + content: "\f030"; } + +.fa-square-virus::before { + content: "\e578"; } + +.fa-meteor::before { + content: "\f753"; } + +.fa-car-on::before { + content: "\e4dd"; } + +.fa-sleigh::before { + content: "\f7cc"; } + +.fa-arrow-down-1-9::before { + content: "\f162"; } + +.fa-sort-numeric-asc::before { + content: "\f162"; } + +.fa-sort-numeric-down::before { + content: "\f162"; } + +.fa-hand-holding-droplet::before { + content: "\f4c1"; } + +.fa-hand-holding-water::before { + content: "\f4c1"; } + +.fa-water::before { + content: "\f773"; } + +.fa-calendar-check::before { + content: "\f274"; } + +.fa-braille::before { + content: "\f2a1"; } + +.fa-prescription-bottle-medical::before { + content: "\f486"; } + +.fa-prescription-bottle-alt::before { + content: "\f486"; } + +.fa-landmark::before { + content: "\f66f"; } + +.fa-truck::before { + content: "\f0d1"; } + +.fa-crosshairs::before { + content: "\f05b"; } + +.fa-person-cane::before { + content: "\e53c"; } + +.fa-tent::before { + content: "\e57d"; } + +.fa-vest-patches::before { + content: "\e086"; } + +.fa-check-double::before { + content: "\f560"; } + +.fa-arrow-down-a-z::before { + content: "\f15d"; } + +.fa-sort-alpha-asc::before { + content: "\f15d"; } + +.fa-sort-alpha-down::before { + content: "\f15d"; } + +.fa-money-bill-wheat::before { + content: "\e52a"; } + +.fa-cookie::before { + content: "\f563"; } + +.fa-arrow-rotate-left::before { + content: "\f0e2"; } + +.fa-arrow-left-rotate::before { + content: "\f0e2"; } + +.fa-arrow-rotate-back::before { + content: "\f0e2"; } + +.fa-arrow-rotate-backward::before { + content: "\f0e2"; } + +.fa-undo::before { + content: "\f0e2"; } + +.fa-hard-drive::before { + content: "\f0a0"; } + +.fa-hdd::before { + content: "\f0a0"; } + +.fa-face-grin-squint-tears::before { + content: "\f586"; } + +.fa-grin-squint-tears::before { + content: "\f586"; } + +.fa-dumbbell::before { + content: "\f44b"; } + +.fa-rectangle-list::before { + content: "\f022"; } + +.fa-list-alt::before { + content: "\f022"; } + +.fa-tarp-droplet::before { + content: "\e57c"; } + +.fa-house-medical-circle-check::before { + content: "\e511"; } + +.fa-person-skiing-nordic::before { + content: "\f7ca"; } + +.fa-skiing-nordic::before { + content: "\f7ca"; } + +.fa-calendar-plus::before { + content: "\f271"; } + +.fa-plane-arrival::before { + content: "\f5af"; } + +.fa-circle-left::before { + content: "\f359"; } + +.fa-arrow-alt-circle-left::before { + content: "\f359"; } + +.fa-train-subway::before { + content: "\f239"; } + +.fa-subway::before { + content: "\f239"; } + +.fa-chart-gantt::before { + content: "\e0e4"; } + +.fa-indian-rupee-sign::before { + content: "\e1bc"; } + +.fa-indian-rupee::before { + content: "\e1bc"; } + +.fa-inr::before { + content: "\e1bc"; } + +.fa-crop-simple::before { + content: "\f565"; } + +.fa-crop-alt::before { + content: "\f565"; } + +.fa-money-bill-1::before { + content: "\f3d1"; } + +.fa-money-bill-alt::before { + content: "\f3d1"; } + +.fa-left-long::before { + content: "\f30a"; } + +.fa-long-arrow-alt-left::before { + content: "\f30a"; } + +.fa-dna::before { + content: "\f471"; } + +.fa-virus-slash::before { + content: "\e075"; } + +.fa-minus::before { + content: "\f068"; } + +.fa-subtract::before { + content: "\f068"; } + +.fa-chess::before { + content: "\f439"; } + +.fa-arrow-left-long::before { + content: "\f177"; } + +.fa-long-arrow-left::before { + content: "\f177"; } + +.fa-plug-circle-check::before { + content: "\e55c"; } + +.fa-street-view::before { + content: "\f21d"; } + +.fa-franc-sign::before { + content: "\e18f"; } + +.fa-volume-off::before { + content: "\f026"; } + +.fa-hands-asl-interpreting::before { + content: "\f2a3"; } + +.fa-american-sign-language-interpreting::before { + content: "\f2a3"; } + +.fa-asl-interpreting::before { + content: "\f2a3"; } + +.fa-hands-american-sign-language-interpreting::before { + content: "\f2a3"; } + +.fa-gear::before { + content: "\f013"; } + +.fa-cog::before { + content: "\f013"; } + +.fa-droplet-slash::before { + content: "\f5c7"; } + +.fa-tint-slash::before { + content: "\f5c7"; } + +.fa-mosque::before { + content: "\f678"; } + +.fa-mosquito::before { + content: "\e52b"; } + +.fa-star-of-david::before { + content: "\f69a"; } + +.fa-person-military-rifle::before { + content: "\e54b"; } + +.fa-cart-shopping::before { + content: "\f07a"; } + +.fa-shopping-cart::before { + content: "\f07a"; } + +.fa-vials::before { + content: "\f493"; } + +.fa-plug-circle-plus::before { + content: "\e55f"; } + +.fa-place-of-worship::before { + content: "\f67f"; } + +.fa-grip-vertical::before { + content: "\f58e"; } + +.fa-arrow-turn-up::before { + content: "\f148"; } + +.fa-level-up::before { + content: "\f148"; } + +.fa-u::before { + content: "\55"; } + +.fa-square-root-variable::before { + content: "\f698"; } + +.fa-square-root-alt::before { + content: "\f698"; } + +.fa-clock::before { + content: "\f017"; } + +.fa-clock-four::before { + content: "\f017"; } + +.fa-backward-step::before { + content: "\f048"; } + +.fa-step-backward::before { + content: "\f048"; } + +.fa-pallet::before { + content: "\f482"; } + +.fa-faucet::before { + content: "\e005"; } + +.fa-baseball-bat-ball::before { + content: "\f432"; } + +.fa-s::before { + content: "\53"; } + +.fa-timeline::before { + content: "\e29c"; } + +.fa-keyboard::before { + content: "\f11c"; } + +.fa-caret-down::before { + content: "\f0d7"; } + +.fa-house-chimney-medical::before { + content: "\f7f2"; } + +.fa-clinic-medical::before { + content: "\f7f2"; } + +.fa-temperature-three-quarters::before { + content: "\f2c8"; } + +.fa-temperature-3::before { + content: "\f2c8"; } + +.fa-thermometer-3::before { + content: "\f2c8"; } + +.fa-thermometer-three-quarters::before { + content: "\f2c8"; } + +.fa-mobile-screen::before { + content: "\f3cf"; } + +.fa-mobile-android-alt::before { + content: "\f3cf"; } + +.fa-plane-up::before { + content: "\e22d"; } + +.fa-piggy-bank::before { + content: "\f4d3"; } + +.fa-battery-half::before { + content: "\f242"; } + +.fa-battery-3::before { + content: "\f242"; } + +.fa-mountain-city::before { + content: "\e52e"; } + +.fa-coins::before { + content: "\f51e"; } + +.fa-khanda::before { + content: "\f66d"; } + +.fa-sliders::before { + content: "\f1de"; } + +.fa-sliders-h::before { + content: "\f1de"; } + +.fa-folder-tree::before { + content: "\f802"; } + +.fa-network-wired::before { + content: "\f6ff"; } + +.fa-map-pin::before { + content: "\f276"; } + +.fa-hamsa::before { + content: "\f665"; } + +.fa-cent-sign::before { + content: "\e3f5"; } + +.fa-flask::before { + content: "\f0c3"; } + +.fa-person-pregnant::before { + content: "\e31e"; } + +.fa-wand-sparkles::before { + content: "\f72b"; } + +.fa-ellipsis-vertical::before { + content: "\f142"; } + +.fa-ellipsis-v::before { + content: "\f142"; } + +.fa-ticket::before { + content: "\f145"; } + +.fa-power-off::before { + content: "\f011"; } + +.fa-right-long::before { + content: "\f30b"; } + +.fa-long-arrow-alt-right::before { + content: "\f30b"; } + +.fa-flag-usa::before { + content: "\f74d"; } + +.fa-laptop-file::before { + content: "\e51d"; } + +.fa-tty::before { + content: "\f1e4"; } + +.fa-teletype::before { + content: "\f1e4"; } + +.fa-diagram-next::before { + content: "\e476"; } + +.fa-person-rifle::before { + content: "\e54e"; } + +.fa-house-medical-circle-exclamation::before { + content: "\e512"; } + +.fa-closed-captioning::before { + content: "\f20a"; } + +.fa-person-hiking::before { + content: "\f6ec"; } + +.fa-hiking::before { + content: "\f6ec"; } + +.fa-venus-double::before { + content: "\f226"; } + +.fa-images::before { + content: "\f302"; } + +.fa-calculator::before { + content: "\f1ec"; } + +.fa-people-pulling::before { + content: "\e535"; } + +.fa-n::before { + content: "\4e"; } + +.fa-cable-car::before { + content: "\f7da"; } + +.fa-tram::before { + content: "\f7da"; } + +.fa-cloud-rain::before { + content: "\f73d"; } + +.fa-building-circle-xmark::before { + content: "\e4d4"; } + +.fa-ship::before { + content: "\f21a"; } + +.fa-arrows-down-to-line::before { + content: "\e4b8"; } + +.fa-download::before { + content: "\f019"; } + +.fa-face-grin::before { + content: "\f580"; } + +.fa-grin::before { + content: "\f580"; } + +.fa-delete-left::before { + content: "\f55a"; } + +.fa-backspace::before { + content: "\f55a"; } + +.fa-eye-dropper::before { + content: "\f1fb"; } + +.fa-eye-dropper-empty::before { + content: "\f1fb"; } + +.fa-eyedropper::before { + content: "\f1fb"; } + +.fa-file-circle-check::before { + content: "\e5a0"; } + +.fa-forward::before { + content: "\f04e"; } + +.fa-mobile::before { + content: "\f3ce"; } + +.fa-mobile-android::before { + content: "\f3ce"; } + +.fa-mobile-phone::before { + content: "\f3ce"; } + +.fa-face-meh::before { + content: "\f11a"; } + +.fa-meh::before { + content: "\f11a"; } + +.fa-align-center::before { + content: "\f037"; } + +.fa-book-skull::before { + content: "\f6b7"; } + +.fa-book-dead::before { + content: "\f6b7"; } + +.fa-id-card::before { + content: "\f2c2"; } + +.fa-drivers-license::before { + content: "\f2c2"; } + +.fa-outdent::before { + content: "\f03b"; } + +.fa-dedent::before { + content: "\f03b"; } + +.fa-heart-circle-exclamation::before { + content: "\e4fe"; } + +.fa-house::before { + content: "\f015"; } + +.fa-home::before { + content: "\f015"; } + +.fa-home-alt::before { + content: "\f015"; } + +.fa-home-lg-alt::before { + content: "\f015"; } + +.fa-calendar-week::before { + content: "\f784"; } + +.fa-laptop-medical::before { + content: "\f812"; } + +.fa-b::before { + content: "\42"; } + +.fa-file-medical::before { + content: "\f477"; } + +.fa-dice-one::before { + content: "\f525"; } + +.fa-kiwi-bird::before { + content: "\f535"; } + +.fa-arrow-right-arrow-left::before { + content: "\f0ec"; } + +.fa-exchange::before { + content: "\f0ec"; } + +.fa-rotate-right::before { + content: "\f2f9"; } + +.fa-redo-alt::before { + content: "\f2f9"; } + +.fa-rotate-forward::before { + content: "\f2f9"; } + +.fa-utensils::before { + content: "\f2e7"; } + +.fa-cutlery::before { + content: "\f2e7"; } + +.fa-arrow-up-wide-short::before { + content: "\f161"; } + +.fa-sort-amount-up::before { + content: "\f161"; } + +.fa-mill-sign::before { + content: "\e1ed"; } + +.fa-bowl-rice::before { + content: "\e2eb"; } + +.fa-skull::before { + content: "\f54c"; } + +.fa-tower-broadcast::before { + content: "\f519"; } + +.fa-broadcast-tower::before { + content: "\f519"; } + +.fa-truck-pickup::before { + content: "\f63c"; } + +.fa-up-long::before { + content: "\f30c"; } + +.fa-long-arrow-alt-up::before { + content: "\f30c"; } + +.fa-stop::before { + content: "\f04d"; } + +.fa-code-merge::before { + content: "\f387"; } + +.fa-upload::before { + content: "\f093"; } + +.fa-hurricane::before { + content: "\f751"; } + +.fa-mound::before { + content: "\e52d"; } + +.fa-toilet-portable::before { + content: "\e583"; } + +.fa-compact-disc::before { + content: "\f51f"; } + +.fa-file-arrow-down::before { + content: "\f56d"; } + +.fa-file-download::before { + content: "\f56d"; } + +.fa-caravan::before { + content: "\f8ff"; } + +.fa-shield-cat::before { + content: "\e572"; } + +.fa-bolt::before { + content: "\f0e7"; } + +.fa-zap::before { + content: "\f0e7"; } + +.fa-glass-water::before { + content: "\e4f4"; } + +.fa-oil-well::before { + content: "\e532"; } + +.fa-vault::before { + content: "\e2c5"; } + +.fa-mars::before { + content: "\f222"; } + +.fa-toilet::before { + content: "\f7d8"; } + +.fa-plane-circle-xmark::before { + content: "\e557"; } + +.fa-yen-sign::before { + content: "\f157"; } + +.fa-cny::before { + content: "\f157"; } + +.fa-jpy::before { + content: "\f157"; } + +.fa-rmb::before { + content: "\f157"; } + +.fa-yen::before { + content: "\f157"; } + +.fa-ruble-sign::before { + content: "\f158"; } + +.fa-rouble::before { + content: "\f158"; } + +.fa-rub::before { + content: "\f158"; } + +.fa-ruble::before { + content: "\f158"; } + +.fa-sun::before { + content: "\f185"; } + +.fa-guitar::before { + content: "\f7a6"; } + +.fa-face-laugh-wink::before { + content: "\f59c"; } + +.fa-laugh-wink::before { + content: "\f59c"; } + +.fa-horse-head::before { + content: "\f7ab"; } + +.fa-bore-hole::before { + content: "\e4c3"; } + +.fa-industry::before { + content: "\f275"; } + +.fa-circle-down::before { + content: "\f358"; } + +.fa-arrow-alt-circle-down::before { + content: "\f358"; } + +.fa-arrows-turn-to-dots::before { + content: "\e4c1"; } + +.fa-florin-sign::before { + content: "\e184"; } + +.fa-arrow-down-short-wide::before { + content: "\f884"; } + +.fa-sort-amount-desc::before { + content: "\f884"; } + +.fa-sort-amount-down-alt::before { + content: "\f884"; } + +.fa-less-than::before { + content: "\3c"; } + +.fa-angle-down::before { + content: "\f107"; } + +.fa-car-tunnel::before { + content: "\e4de"; } + +.fa-head-side-cough::before { + content: "\e061"; } + +.fa-grip-lines::before { + content: "\f7a4"; } + +.fa-thumbs-down::before { + content: "\f165"; } + +.fa-user-lock::before { + content: "\f502"; } + +.fa-arrow-right-long::before { + content: "\f178"; } + +.fa-long-arrow-right::before { + content: "\f178"; } + +.fa-anchor-circle-xmark::before { + content: "\e4ac"; } + +.fa-ellipsis::before { + content: "\f141"; } + +.fa-ellipsis-h::before { + content: "\f141"; } + +.fa-chess-pawn::before { + content: "\f443"; } + +.fa-kit-medical::before { + content: "\f479"; } + +.fa-first-aid::before { + content: "\f479"; } + +.fa-person-through-window::before { + content: "\e5a9"; } + +.fa-toolbox::before { + content: "\f552"; } + +.fa-hands-holding-circle::before { + content: "\e4fb"; } + +.fa-bug::before { + content: "\f188"; } + +.fa-credit-card::before { + content: "\f09d"; } + +.fa-credit-card-alt::before { + content: "\f09d"; } + +.fa-car::before { + content: "\f1b9"; } + +.fa-automobile::before { + content: "\f1b9"; } + +.fa-hand-holding-hand::before { + content: "\e4f7"; } + +.fa-book-open-reader::before { + content: "\f5da"; } + +.fa-book-reader::before { + content: "\f5da"; } + +.fa-mountain-sun::before { + content: "\e52f"; } + +.fa-arrows-left-right-to-line::before { + content: "\e4ba"; } + +.fa-dice-d20::before { + content: "\f6cf"; } + +.fa-truck-droplet::before { + content: "\e58c"; } + +.fa-file-circle-xmark::before { + content: "\e5a1"; } + +.fa-temperature-arrow-up::before { + content: "\e040"; } + +.fa-temperature-up::before { + content: "\e040"; } + +.fa-medal::before { + content: "\f5a2"; } + +.fa-bed::before { + content: "\f236"; } + +.fa-square-h::before { + content: "\f0fd"; } + +.fa-h-square::before { + content: "\f0fd"; } + +.fa-podcast::before { + content: "\f2ce"; } + +.fa-temperature-full::before { + content: "\f2c7"; } + +.fa-temperature-4::before { + content: "\f2c7"; } + +.fa-thermometer-4::before { + content: "\f2c7"; } + +.fa-thermometer-full::before { + content: "\f2c7"; } + +.fa-bell::before { + content: "\f0f3"; } + +.fa-superscript::before { + content: "\f12b"; } + +.fa-plug-circle-xmark::before { + content: "\e560"; } + +.fa-star-of-life::before { + content: "\f621"; } + +.fa-phone-slash::before { + content: "\f3dd"; } + +.fa-paint-roller::before { + content: "\f5aa"; } + +.fa-handshake-angle::before { + content: "\f4c4"; } + +.fa-hands-helping::before { + content: "\f4c4"; } + +.fa-location-dot::before { + content: "\f3c5"; } + +.fa-map-marker-alt::before { + content: "\f3c5"; } + +.fa-file::before { + content: "\f15b"; } + +.fa-greater-than::before { + content: "\3e"; } + +.fa-person-swimming::before { + content: "\f5c4"; } + +.fa-swimmer::before { + content: "\f5c4"; } + +.fa-arrow-down::before { + content: "\f063"; } + +.fa-droplet::before { + content: "\f043"; } + +.fa-tint::before { + content: "\f043"; } + +.fa-eraser::before { + content: "\f12d"; } + +.fa-earth-americas::before { + content: "\f57d"; } + +.fa-earth::before { + content: "\f57d"; } + +.fa-earth-america::before { + content: "\f57d"; } + +.fa-globe-americas::before { + content: "\f57d"; } + +.fa-person-burst::before { + content: "\e53b"; } + +.fa-dove::before { + content: "\f4ba"; } + +.fa-battery-empty::before { + content: "\f244"; } + +.fa-battery-0::before { + content: "\f244"; } + +.fa-socks::before { + content: "\f696"; } + +.fa-inbox::before { + content: "\f01c"; } + +.fa-section::before { + content: "\e447"; } + +.fa-gauge-high::before { + content: "\f625"; } + +.fa-tachometer-alt::before { + content: "\f625"; } + +.fa-tachometer-alt-fast::before { + content: "\f625"; } + +.fa-envelope-open-text::before { + content: "\f658"; } + +.fa-hospital::before { + content: "\f0f8"; } + +.fa-hospital-alt::before { + content: "\f0f8"; } + +.fa-hospital-wide::before { + content: "\f0f8"; } + +.fa-wine-bottle::before { + content: "\f72f"; } + +.fa-chess-rook::before { + content: "\f447"; } + +.fa-bars-staggered::before { + content: "\f550"; } + +.fa-reorder::before { + content: "\f550"; } + +.fa-stream::before { + content: "\f550"; } + +.fa-dharmachakra::before { + content: "\f655"; } + +.fa-hotdog::before { + content: "\f80f"; } + +.fa-person-walking-with-cane::before { + content: "\f29d"; } + +.fa-blind::before { + content: "\f29d"; } + +.fa-drum::before { + content: "\f569"; } + +.fa-ice-cream::before { + content: "\f810"; } + +.fa-heart-circle-bolt::before { + content: "\e4fc"; } + +.fa-fax::before { + content: "\f1ac"; } + +.fa-paragraph::before { + content: "\f1dd"; } + +.fa-check-to-slot::before { + content: "\f772"; } + +.fa-vote-yea::before { + content: "\f772"; } + +.fa-star-half::before { + content: "\f089"; } + +.fa-boxes-stacked::before { + content: "\f468"; } + +.fa-boxes::before { + content: "\f468"; } + +.fa-boxes-alt::before { + content: "\f468"; } + +.fa-link::before { + content: "\f0c1"; } + +.fa-chain::before { + content: "\f0c1"; } + +.fa-ear-listen::before { + content: "\f2a2"; } + +.fa-assistive-listening-systems::before { + content: "\f2a2"; } + +.fa-tree-city::before { + content: "\e587"; } + +.fa-play::before { + content: "\f04b"; } + +.fa-font::before { + content: "\f031"; } + +.fa-table-cells-row-lock::before { + content: "\e67a"; } + +.fa-rupiah-sign::before { + content: "\e23d"; } + +.fa-magnifying-glass::before { + content: "\f002"; } + +.fa-search::before { + content: "\f002"; } + +.fa-table-tennis-paddle-ball::before { + content: "\f45d"; } + +.fa-ping-pong-paddle-ball::before { + content: "\f45d"; } + +.fa-table-tennis::before { + content: "\f45d"; } + +.fa-person-dots-from-line::before { + content: "\f470"; } + +.fa-diagnoses::before { + content: "\f470"; } + +.fa-trash-can-arrow-up::before { + content: "\f82a"; } + +.fa-trash-restore-alt::before { + content: "\f82a"; } + +.fa-naira-sign::before { + content: "\e1f6"; } + +.fa-cart-arrow-down::before { + content: "\f218"; } + +.fa-walkie-talkie::before { + content: "\f8ef"; } + +.fa-file-pen::before { + content: "\f31c"; } + +.fa-file-edit::before { + content: "\f31c"; } + +.fa-receipt::before { + content: "\f543"; } + +.fa-square-pen::before { + content: "\f14b"; } + +.fa-pen-square::before { + content: "\f14b"; } + +.fa-pencil-square::before { + content: "\f14b"; } + +.fa-suitcase-rolling::before { + content: "\f5c1"; } + +.fa-person-circle-exclamation::before { + content: "\e53f"; } + +.fa-chevron-down::before { + content: "\f078"; } + +.fa-battery-full::before { + content: "\f240"; } + +.fa-battery::before { + content: "\f240"; } + +.fa-battery-5::before { + content: "\f240"; } + +.fa-skull-crossbones::before { + content: "\f714"; } + +.fa-code-compare::before { + content: "\e13a"; } + +.fa-list-ul::before { + content: "\f0ca"; } + +.fa-list-dots::before { + content: "\f0ca"; } + +.fa-school-lock::before { + content: "\e56f"; } + +.fa-tower-cell::before { + content: "\e585"; } + +.fa-down-long::before { + content: "\f309"; } + +.fa-long-arrow-alt-down::before { + content: "\f309"; } + +.fa-ranking-star::before { + content: "\e561"; } + +.fa-chess-king::before { + content: "\f43f"; } + +.fa-person-harassing::before { + content: "\e549"; } + +.fa-brazilian-real-sign::before { + content: "\e46c"; } + +.fa-landmark-dome::before { + content: "\f752"; } + +.fa-landmark-alt::before { + content: "\f752"; } + +.fa-arrow-up::before { + content: "\f062"; } + +.fa-tv::before { + content: "\f26c"; } + +.fa-television::before { + content: "\f26c"; } + +.fa-tv-alt::before { + content: "\f26c"; } + +.fa-shrimp::before { + content: "\e448"; } + +.fa-list-check::before { + content: "\f0ae"; } + +.fa-tasks::before { + content: "\f0ae"; } + +.fa-jug-detergent::before { + content: "\e519"; } + +.fa-circle-user::before { + content: "\f2bd"; } + +.fa-user-circle::before { + content: "\f2bd"; } + +.fa-user-shield::before { + content: "\f505"; } + +.fa-wind::before { + content: "\f72e"; } + +.fa-car-burst::before { + content: "\f5e1"; } + +.fa-car-crash::before { + content: "\f5e1"; } + +.fa-y::before { + content: "\59"; } + +.fa-person-snowboarding::before { + content: "\f7ce"; } + +.fa-snowboarding::before { + content: "\f7ce"; } + +.fa-truck-fast::before { + content: "\f48b"; } + +.fa-shipping-fast::before { + content: "\f48b"; } + +.fa-fish::before { + content: "\f578"; } + +.fa-user-graduate::before { + content: "\f501"; } + +.fa-circle-half-stroke::before { + content: "\f042"; } + +.fa-adjust::before { + content: "\f042"; } + +.fa-clapperboard::before { + content: "\e131"; } + +.fa-circle-radiation::before { + content: "\f7ba"; } + +.fa-radiation-alt::before { + content: "\f7ba"; } + +.fa-baseball::before { + content: "\f433"; } + +.fa-baseball-ball::before { + content: "\f433"; } + +.fa-jet-fighter-up::before { + content: "\e518"; } + +.fa-diagram-project::before { + content: "\f542"; } + +.fa-project-diagram::before { + content: "\f542"; } + +.fa-copy::before { + content: "\f0c5"; } + +.fa-volume-xmark::before { + content: "\f6a9"; } + +.fa-volume-mute::before { + content: "\f6a9"; } + +.fa-volume-times::before { + content: "\f6a9"; } + +.fa-hand-sparkles::before { + content: "\e05d"; } + +.fa-grip::before { + content: "\f58d"; } + +.fa-grip-horizontal::before { + content: "\f58d"; } + +.fa-share-from-square::before { + content: "\f14d"; } + +.fa-share-square::before { + content: "\f14d"; } + +.fa-child-combatant::before { + content: "\e4e0"; } + +.fa-child-rifle::before { + content: "\e4e0"; } + +.fa-gun::before { + content: "\e19b"; } + +.fa-square-phone::before { + content: "\f098"; } + +.fa-phone-square::before { + content: "\f098"; } + +.fa-plus::before { + content: "\2b"; } + +.fa-add::before { + content: "\2b"; } + +.fa-expand::before { + content: "\f065"; } + +.fa-computer::before { + content: "\e4e5"; } + +.fa-xmark::before { + content: "\f00d"; } + +.fa-close::before { + content: "\f00d"; } + +.fa-multiply::before { + content: "\f00d"; } + +.fa-remove::before { + content: "\f00d"; } + +.fa-times::before { + content: "\f00d"; } + +.fa-arrows-up-down-left-right::before { + content: "\f047"; } + +.fa-arrows::before { + content: "\f047"; } + +.fa-chalkboard-user::before { + content: "\f51c"; } + +.fa-chalkboard-teacher::before { + content: "\f51c"; } + +.fa-peso-sign::before { + content: "\e222"; } + +.fa-building-shield::before { + content: "\e4d8"; } + +.fa-baby::before { + content: "\f77c"; } + +.fa-users-line::before { + content: "\e592"; } + +.fa-quote-left::before { + content: "\f10d"; } + +.fa-quote-left-alt::before { + content: "\f10d"; } + +.fa-tractor::before { + content: "\f722"; } + +.fa-trash-arrow-up::before { + content: "\f829"; } + +.fa-trash-restore::before { + content: "\f829"; } + +.fa-arrow-down-up-lock::before { + content: "\e4b0"; } + +.fa-lines-leaning::before { + content: "\e51e"; } + +.fa-ruler-combined::before { + content: "\f546"; } + +.fa-copyright::before { + content: "\f1f9"; } + +.fa-equals::before { + content: "\3d"; } + +.fa-blender::before { + content: "\f517"; } + +.fa-teeth::before { + content: "\f62e"; } + +.fa-shekel-sign::before { + content: "\f20b"; } + +.fa-ils::before { + content: "\f20b"; } + +.fa-shekel::before { + content: "\f20b"; } + +.fa-sheqel::before { + content: "\f20b"; } + +.fa-sheqel-sign::before { + content: "\f20b"; } + +.fa-map::before { + content: "\f279"; } + +.fa-rocket::before { + content: "\f135"; } + +.fa-photo-film::before { + content: "\f87c"; } + +.fa-photo-video::before { + content: "\f87c"; } + +.fa-folder-minus::before { + content: "\f65d"; } + +.fa-store::before { + content: "\f54e"; } + +.fa-arrow-trend-up::before { + content: "\e098"; } + +.fa-plug-circle-minus::before { + content: "\e55e"; } + +.fa-sign-hanging::before { + content: "\f4d9"; } + +.fa-sign::before { + content: "\f4d9"; } + +.fa-bezier-curve::before { + content: "\f55b"; } + +.fa-bell-slash::before { + content: "\f1f6"; } + +.fa-tablet::before { + content: "\f3fb"; } + +.fa-tablet-android::before { + content: "\f3fb"; } + +.fa-school-flag::before { + content: "\e56e"; } + +.fa-fill::before { + content: "\f575"; } + +.fa-angle-up::before { + content: "\f106"; } + +.fa-drumstick-bite::before { + content: "\f6d7"; } + +.fa-holly-berry::before { + content: "\f7aa"; } + +.fa-chevron-left::before { + content: "\f053"; } + +.fa-bacteria::before { + content: "\e059"; } + +.fa-hand-lizard::before { + content: "\f258"; } + +.fa-notdef::before { + content: "\e1fe"; } + +.fa-disease::before { + content: "\f7fa"; } + +.fa-briefcase-medical::before { + content: "\f469"; } + +.fa-genderless::before { + content: "\f22d"; } + +.fa-chevron-right::before { + content: "\f054"; } + +.fa-retweet::before { + content: "\f079"; } + +.fa-car-rear::before { + content: "\f5de"; } + +.fa-car-alt::before { + content: "\f5de"; } + +.fa-pump-soap::before { + content: "\e06b"; } + +.fa-video-slash::before { + content: "\f4e2"; } + +.fa-battery-quarter::before { + content: "\f243"; } + +.fa-battery-2::before { + content: "\f243"; } + +.fa-radio::before { + content: "\f8d7"; } + +.fa-baby-carriage::before { + content: "\f77d"; } + +.fa-carriage-baby::before { + content: "\f77d"; } + +.fa-traffic-light::before { + content: "\f637"; } + +.fa-thermometer::before { + content: "\f491"; } + +.fa-vr-cardboard::before { + content: "\f729"; } + +.fa-hand-middle-finger::before { + content: "\f806"; } + +.fa-percent::before { + content: "\25"; } + +.fa-percentage::before { + content: "\25"; } + +.fa-truck-moving::before { + content: "\f4df"; } + +.fa-glass-water-droplet::before { + content: "\e4f5"; } + +.fa-display::before { + content: "\e163"; } + +.fa-face-smile::before { + content: "\f118"; } + +.fa-smile::before { + content: "\f118"; } + +.fa-thumbtack::before { + content: "\f08d"; } + +.fa-thumb-tack::before { + content: "\f08d"; } + +.fa-trophy::before { + content: "\f091"; } + +.fa-person-praying::before { + content: "\f683"; } + +.fa-pray::before { + content: "\f683"; } + +.fa-hammer::before { + content: "\f6e3"; } + +.fa-hand-peace::before { + content: "\f25b"; } + +.fa-rotate::before { + content: "\f2f1"; } + +.fa-sync-alt::before { + content: "\f2f1"; } + +.fa-spinner::before { + content: "\f110"; } + +.fa-robot::before { + content: "\f544"; } + +.fa-peace::before { + content: "\f67c"; } + +.fa-gears::before { + content: "\f085"; } + +.fa-cogs::before { + content: "\f085"; } + +.fa-warehouse::before { + content: "\f494"; } + +.fa-arrow-up-right-dots::before { + content: "\e4b7"; } + +.fa-splotch::before { + content: "\f5bc"; } + +.fa-face-grin-hearts::before { + content: "\f584"; } + +.fa-grin-hearts::before { + content: "\f584"; } + +.fa-dice-four::before { + content: "\f524"; } + +.fa-sim-card::before { + content: "\f7c4"; } + +.fa-transgender::before { + content: "\f225"; } + +.fa-transgender-alt::before { + content: "\f225"; } + +.fa-mercury::before { + content: "\f223"; } + +.fa-arrow-turn-down::before { + content: "\f149"; } + +.fa-level-down::before { + content: "\f149"; } + +.fa-person-falling-burst::before { + content: "\e547"; } + +.fa-award::before { + content: "\f559"; } + +.fa-ticket-simple::before { + content: "\f3ff"; } + +.fa-ticket-alt::before { + content: "\f3ff"; } + +.fa-building::before { + content: "\f1ad"; } + +.fa-angles-left::before { + content: "\f100"; } + +.fa-angle-double-left::before { + content: "\f100"; } + +.fa-qrcode::before { + content: "\f029"; } + +.fa-clock-rotate-left::before { + content: "\f1da"; } + +.fa-history::before { + content: "\f1da"; } + +.fa-face-grin-beam-sweat::before { + content: "\f583"; } + +.fa-grin-beam-sweat::before { + content: "\f583"; } + +.fa-file-export::before { + content: "\f56e"; } + +.fa-arrow-right-from-file::before { + content: "\f56e"; } + +.fa-shield::before { + content: "\f132"; } + +.fa-shield-blank::before { + content: "\f132"; } + +.fa-arrow-up-short-wide::before { + content: "\f885"; } + +.fa-sort-amount-up-alt::before { + content: "\f885"; } + +.fa-house-medical::before { + content: "\e3b2"; } + +.fa-golf-ball-tee::before { + content: "\f450"; } + +.fa-golf-ball::before { + content: "\f450"; } + +.fa-circle-chevron-left::before { + content: "\f137"; } + +.fa-chevron-circle-left::before { + content: "\f137"; } + +.fa-house-chimney-window::before { + content: "\e00d"; } + +.fa-pen-nib::before { + content: "\f5ad"; } + +.fa-tent-arrow-turn-left::before { + content: "\e580"; } + +.fa-tents::before { + content: "\e582"; } + +.fa-wand-magic::before { + content: "\f0d0"; } + +.fa-magic::before { + content: "\f0d0"; } + +.fa-dog::before { + content: "\f6d3"; } + +.fa-carrot::before { + content: "\f787"; } + +.fa-moon::before { + content: "\f186"; } + +.fa-wine-glass-empty::before { + content: "\f5ce"; } + +.fa-wine-glass-alt::before { + content: "\f5ce"; } + +.fa-cheese::before { + content: "\f7ef"; } + +.fa-yin-yang::before { + content: "\f6ad"; } + +.fa-music::before { + content: "\f001"; } + +.fa-code-commit::before { + content: "\f386"; } + +.fa-temperature-low::before { + content: "\f76b"; } + +.fa-person-biking::before { + content: "\f84a"; } + +.fa-biking::before { + content: "\f84a"; } + +.fa-broom::before { + content: "\f51a"; } + +.fa-shield-heart::before { + content: "\e574"; } + +.fa-gopuram::before { + content: "\f664"; } + +.fa-earth-oceania::before { + content: "\e47b"; } + +.fa-globe-oceania::before { + content: "\e47b"; } + +.fa-square-xmark::before { + content: "\f2d3"; } + +.fa-times-square::before { + content: "\f2d3"; } + +.fa-xmark-square::before { + content: "\f2d3"; } + +.fa-hashtag::before { + content: "\23"; } + +.fa-up-right-and-down-left-from-center::before { + content: "\f424"; } + +.fa-expand-alt::before { + content: "\f424"; } + +.fa-oil-can::before { + content: "\f613"; } + +.fa-t::before { + content: "\54"; } + +.fa-hippo::before { + content: "\f6ed"; } + +.fa-chart-column::before { + content: "\e0e3"; } + +.fa-infinity::before { + content: "\f534"; } + +.fa-vial-circle-check::before { + content: "\e596"; } + +.fa-person-arrow-down-to-line::before { + content: "\e538"; } + +.fa-voicemail::before { + content: "\f897"; } + +.fa-fan::before { + content: "\f863"; } + +.fa-person-walking-luggage::before { + content: "\e554"; } + +.fa-up-down::before { + content: "\f338"; } + +.fa-arrows-alt-v::before { + content: "\f338"; } + +.fa-cloud-moon-rain::before { + content: "\f73c"; } + +.fa-calendar::before { + content: "\f133"; } + +.fa-trailer::before { + content: "\e041"; } + +.fa-bahai::before { + content: "\f666"; } + +.fa-haykal::before { + content: "\f666"; } + +.fa-sd-card::before { + content: "\f7c2"; } + +.fa-dragon::before { + content: "\f6d5"; } + +.fa-shoe-prints::before { + content: "\f54b"; } + +.fa-circle-plus::before { + content: "\f055"; } + +.fa-plus-circle::before { + content: "\f055"; } + +.fa-face-grin-tongue-wink::before { + content: "\f58b"; } + +.fa-grin-tongue-wink::before { + content: "\f58b"; } + +.fa-hand-holding::before { + content: "\f4bd"; } + +.fa-plug-circle-exclamation::before { + content: "\e55d"; } + +.fa-link-slash::before { + content: "\f127"; } + +.fa-chain-broken::before { + content: "\f127"; } + +.fa-chain-slash::before { + content: "\f127"; } + +.fa-unlink::before { + content: "\f127"; } + +.fa-clone::before { + content: "\f24d"; } + +.fa-person-walking-arrow-loop-left::before { + content: "\e551"; } + +.fa-arrow-up-z-a::before { + content: "\f882"; } + +.fa-sort-alpha-up-alt::before { + content: "\f882"; } + +.fa-fire-flame-curved::before { + content: "\f7e4"; } + +.fa-fire-alt::before { + content: "\f7e4"; } + +.fa-tornado::before { + content: "\f76f"; } + +.fa-file-circle-plus::before { + content: "\e494"; } + +.fa-book-quran::before { + content: "\f687"; } + +.fa-quran::before { + content: "\f687"; } + +.fa-anchor::before { + content: "\f13d"; } + +.fa-border-all::before { + content: "\f84c"; } + +.fa-face-angry::before { + content: "\f556"; } + +.fa-angry::before { + content: "\f556"; } + +.fa-cookie-bite::before { + content: "\f564"; } + +.fa-arrow-trend-down::before { + content: "\e097"; } + +.fa-rss::before { + content: "\f09e"; } + +.fa-feed::before { + content: "\f09e"; } + +.fa-draw-polygon::before { + content: "\f5ee"; } + +.fa-scale-balanced::before { + content: "\f24e"; } + +.fa-balance-scale::before { + content: "\f24e"; } + +.fa-gauge-simple-high::before { + content: "\f62a"; } + +.fa-tachometer::before { + content: "\f62a"; } + +.fa-tachometer-fast::before { + content: "\f62a"; } + +.fa-shower::before { + content: "\f2cc"; } + +.fa-desktop::before { + content: "\f390"; } + +.fa-desktop-alt::before { + content: "\f390"; } + +.fa-m::before { + content: "\4d"; } + +.fa-table-list::before { + content: "\f00b"; } + +.fa-th-list::before { + content: "\f00b"; } + +.fa-comment-sms::before { + content: "\f7cd"; } + +.fa-sms::before { + content: "\f7cd"; } + +.fa-book::before { + content: "\f02d"; } + +.fa-user-plus::before { + content: "\f234"; } + +.fa-check::before { + content: "\f00c"; } + +.fa-battery-three-quarters::before { + content: "\f241"; } + +.fa-battery-4::before { + content: "\f241"; } + +.fa-house-circle-check::before { + content: "\e509"; } + +.fa-angle-left::before { + content: "\f104"; } + +.fa-diagram-successor::before { + content: "\e47a"; } + +.fa-truck-arrow-right::before { + content: "\e58b"; } + +.fa-arrows-split-up-and-left::before { + content: "\e4bc"; } + +.fa-hand-fist::before { + content: "\f6de"; } + +.fa-fist-raised::before { + content: "\f6de"; } + +.fa-cloud-moon::before { + content: "\f6c3"; } + +.fa-briefcase::before { + content: "\f0b1"; } + +.fa-person-falling::before { + content: "\e546"; } + +.fa-image-portrait::before { + content: "\f3e0"; } + +.fa-portrait::before { + content: "\f3e0"; } + +.fa-user-tag::before { + content: "\f507"; } + +.fa-rug::before { + content: "\e569"; } + +.fa-earth-europe::before { + content: "\f7a2"; } + +.fa-globe-europe::before { + content: "\f7a2"; } + +.fa-cart-flatbed-suitcase::before { + content: "\f59d"; } + +.fa-luggage-cart::before { + content: "\f59d"; } + +.fa-rectangle-xmark::before { + content: "\f410"; } + +.fa-rectangle-times::before { + content: "\f410"; } + +.fa-times-rectangle::before { + content: "\f410"; } + +.fa-window-close::before { + content: "\f410"; } + +.fa-baht-sign::before { + content: "\e0ac"; } + +.fa-book-open::before { + content: "\f518"; } + +.fa-book-journal-whills::before { + content: "\f66a"; } + +.fa-journal-whills::before { + content: "\f66a"; } + +.fa-handcuffs::before { + content: "\e4f8"; } + +.fa-triangle-exclamation::before { + content: "\f071"; } + +.fa-exclamation-triangle::before { + content: "\f071"; } + +.fa-warning::before { + content: "\f071"; } + +.fa-database::before { + content: "\f1c0"; } + +.fa-share::before { + content: "\f064"; } + +.fa-mail-forward::before { + content: "\f064"; } + +.fa-bottle-droplet::before { + content: "\e4c4"; } + +.fa-mask-face::before { + content: "\e1d7"; } + +.fa-hill-rockslide::before { + content: "\e508"; } + +.fa-right-left::before { + content: "\f362"; } + +.fa-exchange-alt::before { + content: "\f362"; } + +.fa-paper-plane::before { + content: "\f1d8"; } + +.fa-road-circle-exclamation::before { + content: "\e565"; } + +.fa-dungeon::before { + content: "\f6d9"; } + +.fa-align-right::before { + content: "\f038"; } + +.fa-money-bill-1-wave::before { + content: "\f53b"; } + +.fa-money-bill-wave-alt::before { + content: "\f53b"; } + +.fa-life-ring::before { + content: "\f1cd"; } + +.fa-hands::before { + content: "\f2a7"; } + +.fa-sign-language::before { + content: "\f2a7"; } + +.fa-signing::before { + content: "\f2a7"; } + +.fa-calendar-day::before { + content: "\f783"; } + +.fa-water-ladder::before { + content: "\f5c5"; } + +.fa-ladder-water::before { + content: "\f5c5"; } + +.fa-swimming-pool::before { + content: "\f5c5"; } + +.fa-arrows-up-down::before { + content: "\f07d"; } + +.fa-arrows-v::before { + content: "\f07d"; } + +.fa-face-grimace::before { + content: "\f57f"; } + +.fa-grimace::before { + content: "\f57f"; } + +.fa-wheelchair-move::before { + content: "\e2ce"; } + +.fa-wheelchair-alt::before { + content: "\e2ce"; } + +.fa-turn-down::before { + content: "\f3be"; } + +.fa-level-down-alt::before { + content: "\f3be"; } + +.fa-person-walking-arrow-right::before { + content: "\e552"; } + +.fa-square-envelope::before { + content: "\f199"; } + +.fa-envelope-square::before { + content: "\f199"; } + +.fa-dice::before { + content: "\f522"; } + +.fa-bowling-ball::before { + content: "\f436"; } + +.fa-brain::before { + content: "\f5dc"; } + +.fa-bandage::before { + content: "\f462"; } + +.fa-band-aid::before { + content: "\f462"; } + +.fa-calendar-minus::before { + content: "\f272"; } + +.fa-circle-xmark::before { + content: "\f057"; } + +.fa-times-circle::before { + content: "\f057"; } + +.fa-xmark-circle::before { + content: "\f057"; } + +.fa-gifts::before { + content: "\f79c"; } + +.fa-hotel::before { + content: "\f594"; } + +.fa-earth-asia::before { + content: "\f57e"; } + +.fa-globe-asia::before { + content: "\f57e"; } + +.fa-id-card-clip::before { + content: "\f47f"; } + +.fa-id-card-alt::before { + content: "\f47f"; } + +.fa-magnifying-glass-plus::before { + content: "\f00e"; } + +.fa-search-plus::before { + content: "\f00e"; } + +.fa-thumbs-up::before { + content: "\f164"; } + +.fa-user-clock::before { + content: "\f4fd"; } + +.fa-hand-dots::before { + content: "\f461"; } + +.fa-allergies::before { + content: "\f461"; } + +.fa-file-invoice::before { + content: "\f570"; } + +.fa-window-minimize::before { + content: "\f2d1"; } + +.fa-mug-saucer::before { + content: "\f0f4"; } + +.fa-coffee::before { + content: "\f0f4"; } + +.fa-brush::before { + content: "\f55d"; } + +.fa-mask::before { + content: "\f6fa"; } + +.fa-magnifying-glass-minus::before { + content: "\f010"; } + +.fa-search-minus::before { + content: "\f010"; } + +.fa-ruler-vertical::before { + content: "\f548"; } + +.fa-user-large::before { + content: "\f406"; } + +.fa-user-alt::before { + content: "\f406"; } + +.fa-train-tram::before { + content: "\e5b4"; } + +.fa-user-nurse::before { + content: "\f82f"; } + +.fa-syringe::before { + content: "\f48e"; } + +.fa-cloud-sun::before { + content: "\f6c4"; } + +.fa-stopwatch-20::before { + content: "\e06f"; } + +.fa-square-full::before { + content: "\f45c"; } + +.fa-magnet::before { + content: "\f076"; } + +.fa-jar::before { + content: "\e516"; } + +.fa-note-sticky::before { + content: "\f249"; } + +.fa-sticky-note::before { + content: "\f249"; } + +.fa-bug-slash::before { + content: "\e490"; } + +.fa-arrow-up-from-water-pump::before { + content: "\e4b6"; } + +.fa-bone::before { + content: "\f5d7"; } + +.fa-user-injured::before { + content: "\f728"; } + +.fa-face-sad-tear::before { + content: "\f5b4"; } + +.fa-sad-tear::before { + content: "\f5b4"; } + +.fa-plane::before { + content: "\f072"; } + +.fa-tent-arrows-down::before { + content: "\e581"; } + +.fa-exclamation::before { + content: "\21"; } + +.fa-arrows-spin::before { + content: "\e4bb"; } + +.fa-print::before { + content: "\f02f"; } + +.fa-turkish-lira-sign::before { + content: "\e2bb"; } + +.fa-try::before { + content: "\e2bb"; } + +.fa-turkish-lira::before { + content: "\e2bb"; } + +.fa-dollar-sign::before { + content: "\24"; } + +.fa-dollar::before { + content: "\24"; } + +.fa-usd::before { + content: "\24"; } + +.fa-x::before { + content: "\58"; } + +.fa-magnifying-glass-dollar::before { + content: "\f688"; } + +.fa-search-dollar::before { + content: "\f688"; } + +.fa-users-gear::before { + content: "\f509"; } + +.fa-users-cog::before { + content: "\f509"; } + +.fa-person-military-pointing::before { + content: "\e54a"; } + +.fa-building-columns::before { + content: "\f19c"; } + +.fa-bank::before { + content: "\f19c"; } + +.fa-institution::before { + content: "\f19c"; } + +.fa-museum::before { + content: "\f19c"; } + +.fa-university::before { + content: "\f19c"; } + +.fa-umbrella::before { + content: "\f0e9"; } + +.fa-trowel::before { + content: "\e589"; } + +.fa-d::before { + content: "\44"; } + +.fa-stapler::before { + content: "\e5af"; } + +.fa-masks-theater::before { + content: "\f630"; } + +.fa-theater-masks::before { + content: "\f630"; } + +.fa-kip-sign::before { + content: "\e1c4"; } + +.fa-hand-point-left::before { + content: "\f0a5"; } + +.fa-handshake-simple::before { + content: "\f4c6"; } + +.fa-handshake-alt::before { + content: "\f4c6"; } + +.fa-jet-fighter::before { + content: "\f0fb"; } + +.fa-fighter-jet::before { + content: "\f0fb"; } + +.fa-square-share-nodes::before { + content: "\f1e1"; } + +.fa-share-alt-square::before { + content: "\f1e1"; } + +.fa-barcode::before { + content: "\f02a"; } + +.fa-plus-minus::before { + content: "\e43c"; } + +.fa-video::before { + content: "\f03d"; } + +.fa-video-camera::before { + content: "\f03d"; } + +.fa-graduation-cap::before { + content: "\f19d"; } + +.fa-mortar-board::before { + content: "\f19d"; } + +.fa-hand-holding-medical::before { + content: "\e05c"; } + +.fa-person-circle-check::before { + content: "\e53e"; } + +.fa-turn-up::before { + content: "\f3bf"; } + +.fa-level-up-alt::before { + content: "\f3bf"; } + +.sr-only, +.fa-sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } + +.sr-only-focusable:not(:focus), +.fa-sr-only-focusable:not(:focus) { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } +:root, :host { + --fa-style-family-brands: 'Font Awesome 6 Brands'; + --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; } + +@font-face { + font-family: 'Font Awesome 6 Brands'; + font-style: normal; + font-weight: 400; + font-display: block; + src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } + +.fab, +.fa-brands { + font-weight: 400; } + +.fa-monero:before { + content: "\f3d0"; } + +.fa-hooli:before { + content: "\f427"; } + +.fa-yelp:before { + content: "\f1e9"; } + +.fa-cc-visa:before { + content: "\f1f0"; } + +.fa-lastfm:before { + content: "\f202"; } + +.fa-shopware:before { + content: "\f5b5"; } + +.fa-creative-commons-nc:before { + content: "\f4e8"; } + +.fa-aws:before { + content: "\f375"; } + +.fa-redhat:before { + content: "\f7bc"; } + +.fa-yoast:before { + content: "\f2b1"; } + +.fa-cloudflare:before { + content: "\e07d"; } + +.fa-ups:before { + content: "\f7e0"; } + +.fa-pixiv:before { + content: "\e640"; } + +.fa-wpexplorer:before { + content: "\f2de"; } + +.fa-dyalog:before { + content: "\f399"; } + +.fa-bity:before { + content: "\f37a"; } + +.fa-stackpath:before { + content: "\f842"; } + +.fa-buysellads:before { + content: "\f20d"; } + +.fa-first-order:before { + content: "\f2b0"; } + +.fa-modx:before { + content: "\f285"; } + +.fa-guilded:before { + content: "\e07e"; } + +.fa-vnv:before { + content: "\f40b"; } + +.fa-square-js:before { + content: "\f3b9"; } + +.fa-js-square:before { + content: "\f3b9"; } + +.fa-microsoft:before { + content: "\f3ca"; } + +.fa-qq:before { + content: "\f1d6"; } + +.fa-orcid:before { + content: "\f8d2"; } + +.fa-java:before { + content: "\f4e4"; } + +.fa-invision:before { + content: "\f7b0"; } + +.fa-creative-commons-pd-alt:before { + content: "\f4ed"; } + +.fa-centercode:before { + content: "\f380"; } + +.fa-glide-g:before { + content: "\f2a6"; } + +.fa-drupal:before { + content: "\f1a9"; } + +.fa-jxl:before { + content: "\e67b"; } + +.fa-hire-a-helper:before { + content: "\f3b0"; } + +.fa-creative-commons-by:before { + content: "\f4e7"; } + +.fa-unity:before { + content: "\e049"; } + +.fa-whmcs:before { + content: "\f40d"; } + +.fa-rocketchat:before { + content: "\f3e8"; } + +.fa-vk:before { + content: "\f189"; } + +.fa-untappd:before { + content: "\f405"; } + +.fa-mailchimp:before { + content: "\f59e"; } + +.fa-css3-alt:before { + content: "\f38b"; } + +.fa-square-reddit:before { + content: "\f1a2"; } + +.fa-reddit-square:before { + content: "\f1a2"; } + +.fa-vimeo-v:before { + content: "\f27d"; } + +.fa-contao:before { + content: "\f26d"; } + +.fa-square-font-awesome:before { + content: "\e5ad"; } + +.fa-deskpro:before { + content: "\f38f"; } + +.fa-brave:before { + content: "\e63c"; } + +.fa-sistrix:before { + content: "\f3ee"; } + +.fa-square-instagram:before { + content: "\e055"; } + +.fa-instagram-square:before { + content: "\e055"; } + +.fa-battle-net:before { + content: "\f835"; } + +.fa-the-red-yeti:before { + content: "\f69d"; } + +.fa-square-hacker-news:before { + content: "\f3af"; } + +.fa-hacker-news-square:before { + content: "\f3af"; } + +.fa-edge:before { + content: "\f282"; } + +.fa-threads:before { + content: "\e618"; } + +.fa-napster:before { + content: "\f3d2"; } + +.fa-square-snapchat:before { + content: "\f2ad"; } + +.fa-snapchat-square:before { + content: "\f2ad"; } + +.fa-google-plus-g:before { + content: "\f0d5"; } + +.fa-artstation:before { + content: "\f77a"; } + +.fa-markdown:before { + content: "\f60f"; } + +.fa-sourcetree:before { + content: "\f7d3"; } + +.fa-google-plus:before { + content: "\f2b3"; } + +.fa-diaspora:before { + content: "\f791"; } + +.fa-foursquare:before { + content: "\f180"; } + +.fa-stack-overflow:before { + content: "\f16c"; } + +.fa-github-alt:before { + content: "\f113"; } + +.fa-phoenix-squadron:before { + content: "\f511"; } + +.fa-pagelines:before { + content: "\f18c"; } + +.fa-algolia:before { + content: "\f36c"; } + +.fa-red-river:before { + content: "\f3e3"; } + +.fa-creative-commons-sa:before { + content: "\f4ef"; } + +.fa-safari:before { + content: "\f267"; } + +.fa-google:before { + content: "\f1a0"; } + +.fa-square-font-awesome-stroke:before { + content: "\f35c"; } + +.fa-font-awesome-alt:before { + content: "\f35c"; } + +.fa-atlassian:before { + content: "\f77b"; } + +.fa-linkedin-in:before { + content: "\f0e1"; } + +.fa-digital-ocean:before { + content: "\f391"; } + +.fa-nimblr:before { + content: "\f5a8"; } + +.fa-chromecast:before { + content: "\f838"; } + +.fa-evernote:before { + content: "\f839"; } + +.fa-hacker-news:before { + content: "\f1d4"; } + +.fa-creative-commons-sampling:before { + content: "\f4f0"; } + +.fa-adversal:before { + content: "\f36a"; } + +.fa-creative-commons:before { + content: "\f25e"; } + +.fa-watchman-monitoring:before { + content: "\e087"; } + +.fa-fonticons:before { + content: "\f280"; } + +.fa-weixin:before { + content: "\f1d7"; } + +.fa-shirtsinbulk:before { + content: "\f214"; } + +.fa-codepen:before { + content: "\f1cb"; } + +.fa-git-alt:before { + content: "\f841"; } + +.fa-lyft:before { + content: "\f3c3"; } + +.fa-rev:before { + content: "\f5b2"; } + +.fa-windows:before { + content: "\f17a"; } + +.fa-wizards-of-the-coast:before { + content: "\f730"; } + +.fa-square-viadeo:before { + content: "\f2aa"; } + +.fa-viadeo-square:before { + content: "\f2aa"; } + +.fa-meetup:before { + content: "\f2e0"; } + +.fa-centos:before { + content: "\f789"; } + +.fa-adn:before { + content: "\f170"; } + +.fa-cloudsmith:before { + content: "\f384"; } + +.fa-opensuse:before { + content: "\e62b"; } + +.fa-pied-piper-alt:before { + content: "\f1a8"; } + +.fa-square-dribbble:before { + content: "\f397"; } + +.fa-dribbble-square:before { + content: "\f397"; } + +.fa-codiepie:before { + content: "\f284"; } + +.fa-node:before { + content: "\f419"; } + +.fa-mix:before { + content: "\f3cb"; } + +.fa-steam:before { + content: "\f1b6"; } + +.fa-cc-apple-pay:before { + content: "\f416"; } + +.fa-scribd:before { + content: "\f28a"; } + +.fa-debian:before { + content: "\e60b"; } + +.fa-openid:before { + content: "\f19b"; } + +.fa-instalod:before { + content: "\e081"; } + +.fa-expeditedssl:before { + content: "\f23e"; } + +.fa-sellcast:before { + content: "\f2da"; } + +.fa-square-twitter:before { + content: "\f081"; } + +.fa-twitter-square:before { + content: "\f081"; } + +.fa-r-project:before { + content: "\f4f7"; } + +.fa-delicious:before { + content: "\f1a5"; } + +.fa-freebsd:before { + content: "\f3a4"; } + +.fa-vuejs:before { + content: "\f41f"; } + +.fa-accusoft:before { + content: "\f369"; } + +.fa-ioxhost:before { + content: "\f208"; } + +.fa-fonticons-fi:before { + content: "\f3a2"; } + +.fa-app-store:before { + content: "\f36f"; } + +.fa-cc-mastercard:before { + content: "\f1f1"; } + +.fa-itunes-note:before { + content: "\f3b5"; } + +.fa-golang:before { + content: "\e40f"; } + +.fa-kickstarter:before { + content: "\f3bb"; } + +.fa-square-kickstarter:before { + content: "\f3bb"; } + +.fa-grav:before { + content: "\f2d6"; } + +.fa-weibo:before { + content: "\f18a"; } + +.fa-uncharted:before { + content: "\e084"; } + +.fa-firstdraft:before { + content: "\f3a1"; } + +.fa-square-youtube:before { + content: "\f431"; } + +.fa-youtube-square:before { + content: "\f431"; } + +.fa-wikipedia-w:before { + content: "\f266"; } + +.fa-wpressr:before { + content: "\f3e4"; } + +.fa-rendact:before { + content: "\f3e4"; } + +.fa-angellist:before { + content: "\f209"; } + +.fa-galactic-republic:before { + content: "\f50c"; } + +.fa-nfc-directional:before { + content: "\e530"; } + +.fa-skype:before { + content: "\f17e"; } + +.fa-joget:before { + content: "\f3b7"; } + +.fa-fedora:before { + content: "\f798"; } + +.fa-stripe-s:before { + content: "\f42a"; } + +.fa-meta:before { + content: "\e49b"; } + +.fa-laravel:before { + content: "\f3bd"; } + +.fa-hotjar:before { + content: "\f3b1"; } + +.fa-bluetooth-b:before { + content: "\f294"; } + +.fa-square-letterboxd:before { + content: "\e62e"; } + +.fa-sticker-mule:before { + content: "\f3f7"; } + +.fa-creative-commons-zero:before { + content: "\f4f3"; } + +.fa-hips:before { + content: "\f452"; } + +.fa-behance:before { + content: "\f1b4"; } + +.fa-reddit:before { + content: "\f1a1"; } + +.fa-discord:before { + content: "\f392"; } + +.fa-chrome:before { + content: "\f268"; } + +.fa-app-store-ios:before { + content: "\f370"; } + +.fa-cc-discover:before { + content: "\f1f2"; } + +.fa-wpbeginner:before { + content: "\f297"; } + +.fa-confluence:before { + content: "\f78d"; } + +.fa-shoelace:before { + content: "\e60c"; } + +.fa-mdb:before { + content: "\f8ca"; } + +.fa-dochub:before { + content: "\f394"; } + +.fa-accessible-icon:before { + content: "\f368"; } + +.fa-ebay:before { + content: "\f4f4"; } + +.fa-amazon:before { + content: "\f270"; } + +.fa-unsplash:before { + content: "\e07c"; } + +.fa-yarn:before { + content: "\f7e3"; } + +.fa-square-steam:before { + content: "\f1b7"; } + +.fa-steam-square:before { + content: "\f1b7"; } + +.fa-500px:before { + content: "\f26e"; } + +.fa-square-vimeo:before { + content: "\f194"; } + +.fa-vimeo-square:before { + content: "\f194"; } + +.fa-asymmetrik:before { + content: "\f372"; } + +.fa-font-awesome:before { + content: "\f2b4"; } + +.fa-font-awesome-flag:before { + content: "\f2b4"; } + +.fa-font-awesome-logo-full:before { + content: "\f2b4"; } + +.fa-gratipay:before { + content: "\f184"; } + +.fa-apple:before { + content: "\f179"; } + +.fa-hive:before { + content: "\e07f"; } + +.fa-gitkraken:before { + content: "\f3a6"; } + +.fa-keybase:before { + content: "\f4f5"; } + +.fa-apple-pay:before { + content: "\f415"; } + +.fa-padlet:before { + content: "\e4a0"; } + +.fa-amazon-pay:before { + content: "\f42c"; } + +.fa-square-github:before { + content: "\f092"; } + +.fa-github-square:before { + content: "\f092"; } + +.fa-stumbleupon:before { + content: "\f1a4"; } + +.fa-fedex:before { + content: "\f797"; } + +.fa-phoenix-framework:before { + content: "\f3dc"; } + +.fa-shopify:before { + content: "\e057"; } + +.fa-neos:before { + content: "\f612"; } + +.fa-square-threads:before { + content: "\e619"; } + +.fa-hackerrank:before { + content: "\f5f7"; } + +.fa-researchgate:before { + content: "\f4f8"; } + +.fa-swift:before { + content: "\f8e1"; } + +.fa-angular:before { + content: "\f420"; } + +.fa-speakap:before { + content: "\f3f3"; } + +.fa-angrycreative:before { + content: "\f36e"; } + +.fa-y-combinator:before { + content: "\f23b"; } + +.fa-empire:before { + content: "\f1d1"; } + +.fa-envira:before { + content: "\f299"; } + +.fa-google-scholar:before { + content: "\e63b"; } + +.fa-square-gitlab:before { + content: "\e5ae"; } + +.fa-gitlab-square:before { + content: "\e5ae"; } + +.fa-studiovinari:before { + content: "\f3f8"; } + +.fa-pied-piper:before { + content: "\f2ae"; } + +.fa-wordpress:before { + content: "\f19a"; } + +.fa-product-hunt:before { + content: "\f288"; } + +.fa-firefox:before { + content: "\f269"; } + +.fa-linode:before { + content: "\f2b8"; } + +.fa-goodreads:before { + content: "\f3a8"; } + +.fa-square-odnoklassniki:before { + content: "\f264"; } + +.fa-odnoklassniki-square:before { + content: "\f264"; } + +.fa-jsfiddle:before { + content: "\f1cc"; } + +.fa-sith:before { + content: "\f512"; } + +.fa-themeisle:before { + content: "\f2b2"; } + +.fa-page4:before { + content: "\f3d7"; } + +.fa-hashnode:before { + content: "\e499"; } + +.fa-react:before { + content: "\f41b"; } + +.fa-cc-paypal:before { + content: "\f1f4"; } + +.fa-squarespace:before { + content: "\f5be"; } + +.fa-cc-stripe:before { + content: "\f1f5"; } + +.fa-creative-commons-share:before { + content: "\f4f2"; } + +.fa-bitcoin:before { + content: "\f379"; } + +.fa-keycdn:before { + content: "\f3ba"; } + +.fa-opera:before { + content: "\f26a"; } + +.fa-itch-io:before { + content: "\f83a"; } + +.fa-umbraco:before { + content: "\f8e8"; } + +.fa-galactic-senate:before { + content: "\f50d"; } + +.fa-ubuntu:before { + content: "\f7df"; } + +.fa-draft2digital:before { + content: "\f396"; } + +.fa-stripe:before { + content: "\f429"; } + +.fa-houzz:before { + content: "\f27c"; } + +.fa-gg:before { + content: "\f260"; } + +.fa-dhl:before { + content: "\f790"; } + +.fa-square-pinterest:before { + content: "\f0d3"; } + +.fa-pinterest-square:before { + content: "\f0d3"; } + +.fa-xing:before { + content: "\f168"; } + +.fa-blackberry:before { + content: "\f37b"; } + +.fa-creative-commons-pd:before { + content: "\f4ec"; } + +.fa-playstation:before { + content: "\f3df"; } + +.fa-quinscape:before { + content: "\f459"; } + +.fa-less:before { + content: "\f41d"; } + +.fa-blogger-b:before { + content: "\f37d"; } + +.fa-opencart:before { + content: "\f23d"; } + +.fa-vine:before { + content: "\f1ca"; } + +.fa-signal-messenger:before { + content: "\e663"; } + +.fa-paypal:before { + content: "\f1ed"; } + +.fa-gitlab:before { + content: "\f296"; } + +.fa-typo3:before { + content: "\f42b"; } + +.fa-reddit-alien:before { + content: "\f281"; } + +.fa-yahoo:before { + content: "\f19e"; } + +.fa-dailymotion:before { + content: "\e052"; } + +.fa-affiliatetheme:before { + content: "\f36b"; } + +.fa-pied-piper-pp:before { + content: "\f1a7"; } + +.fa-bootstrap:before { + content: "\f836"; } + +.fa-odnoklassniki:before { + content: "\f263"; } + +.fa-nfc-symbol:before { + content: "\e531"; } + +.fa-mintbit:before { + content: "\e62f"; } + +.fa-ethereum:before { + content: "\f42e"; } + +.fa-speaker-deck:before { + content: "\f83c"; } + +.fa-creative-commons-nc-eu:before { + content: "\f4e9"; } + +.fa-patreon:before { + content: "\f3d9"; } + +.fa-avianex:before { + content: "\f374"; } + +.fa-ello:before { + content: "\f5f1"; } + +.fa-gofore:before { + content: "\f3a7"; } + +.fa-bimobject:before { + content: "\f378"; } + +.fa-brave-reverse:before { + content: "\e63d"; } + +.fa-facebook-f:before { + content: "\f39e"; } + +.fa-square-google-plus:before { + content: "\f0d4"; } + +.fa-google-plus-square:before { + content: "\f0d4"; } + +.fa-web-awesome:before { + content: "\e682"; } + +.fa-mandalorian:before { + content: "\f50f"; } + +.fa-first-order-alt:before { + content: "\f50a"; } + +.fa-osi:before { + content: "\f41a"; } + +.fa-google-wallet:before { + content: "\f1ee"; } + +.fa-d-and-d-beyond:before { + content: "\f6ca"; } + +.fa-periscope:before { + content: "\f3da"; } + +.fa-fulcrum:before { + content: "\f50b"; } + +.fa-cloudscale:before { + content: "\f383"; } + +.fa-forumbee:before { + content: "\f211"; } + +.fa-mizuni:before { + content: "\f3cc"; } + +.fa-schlix:before { + content: "\f3ea"; } + +.fa-square-xing:before { + content: "\f169"; } + +.fa-xing-square:before { + content: "\f169"; } + +.fa-bandcamp:before { + content: "\f2d5"; } + +.fa-wpforms:before { + content: "\f298"; } + +.fa-cloudversify:before { + content: "\f385"; } + +.fa-usps:before { + content: "\f7e1"; } + +.fa-megaport:before { + content: "\f5a3"; } + +.fa-magento:before { + content: "\f3c4"; } + +.fa-spotify:before { + content: "\f1bc"; } + +.fa-optin-monster:before { + content: "\f23c"; } + +.fa-fly:before { + content: "\f417"; } + +.fa-aviato:before { + content: "\f421"; } + +.fa-itunes:before { + content: "\f3b4"; } + +.fa-cuttlefish:before { + content: "\f38c"; } + +.fa-blogger:before { + content: "\f37c"; } + +.fa-flickr:before { + content: "\f16e"; } + +.fa-viber:before { + content: "\f409"; } + +.fa-soundcloud:before { + content: "\f1be"; } + +.fa-digg:before { + content: "\f1a6"; } + +.fa-tencent-weibo:before { + content: "\f1d5"; } + +.fa-letterboxd:before { + content: "\e62d"; } + +.fa-symfony:before { + content: "\f83d"; } + +.fa-maxcdn:before { + content: "\f136"; } + +.fa-etsy:before { + content: "\f2d7"; } + +.fa-facebook-messenger:before { + content: "\f39f"; } + +.fa-audible:before { + content: "\f373"; } + +.fa-think-peaks:before { + content: "\f731"; } + +.fa-bilibili:before { + content: "\e3d9"; } + +.fa-erlang:before { + content: "\f39d"; } + +.fa-x-twitter:before { + content: "\e61b"; } + +.fa-cotton-bureau:before { + content: "\f89e"; } + +.fa-dashcube:before { + content: "\f210"; } + +.fa-42-group:before { + content: "\e080"; } + +.fa-innosoft:before { + content: "\e080"; } + +.fa-stack-exchange:before { + content: "\f18d"; } + +.fa-elementor:before { + content: "\f430"; } + +.fa-square-pied-piper:before { + content: "\e01e"; } + +.fa-pied-piper-square:before { + content: "\e01e"; } + +.fa-creative-commons-nd:before { + content: "\f4eb"; } + +.fa-palfed:before { + content: "\f3d8"; } + +.fa-superpowers:before { + content: "\f2dd"; } + +.fa-resolving:before { + content: "\f3e7"; } + +.fa-xbox:before { + content: "\f412"; } + +.fa-square-web-awesome-stroke:before { + content: "\e684"; } + +.fa-searchengin:before { + content: "\f3eb"; } + +.fa-tiktok:before { + content: "\e07b"; } + +.fa-square-facebook:before { + content: "\f082"; } + +.fa-facebook-square:before { + content: "\f082"; } + +.fa-renren:before { + content: "\f18b"; } + +.fa-linux:before { + content: "\f17c"; } + +.fa-glide:before { + content: "\f2a5"; } + +.fa-linkedin:before { + content: "\f08c"; } + +.fa-hubspot:before { + content: "\f3b2"; } + +.fa-deploydog:before { + content: "\f38e"; } + +.fa-twitch:before { + content: "\f1e8"; } + +.fa-ravelry:before { + content: "\f2d9"; } + +.fa-mixer:before { + content: "\e056"; } + +.fa-square-lastfm:before { + content: "\f203"; } + +.fa-lastfm-square:before { + content: "\f203"; } + +.fa-vimeo:before { + content: "\f40a"; } + +.fa-mendeley:before { + content: "\f7b3"; } + +.fa-uniregistry:before { + content: "\f404"; } + +.fa-figma:before { + content: "\f799"; } + +.fa-creative-commons-remix:before { + content: "\f4ee"; } + +.fa-cc-amazon-pay:before { + content: "\f42d"; } + +.fa-dropbox:before { + content: "\f16b"; } + +.fa-instagram:before { + content: "\f16d"; } + +.fa-cmplid:before { + content: "\e360"; } + +.fa-upwork:before { + content: "\e641"; } + +.fa-facebook:before { + content: "\f09a"; } + +.fa-gripfire:before { + content: "\f3ac"; } + +.fa-jedi-order:before { + content: "\f50e"; } + +.fa-uikit:before { + content: "\f403"; } + +.fa-fort-awesome-alt:before { + content: "\f3a3"; } + +.fa-phabricator:before { + content: "\f3db"; } + +.fa-ussunnah:before { + content: "\f407"; } + +.fa-earlybirds:before { + content: "\f39a"; } + +.fa-trade-federation:before { + content: "\f513"; } + +.fa-autoprefixer:before { + content: "\f41c"; } + +.fa-whatsapp:before { + content: "\f232"; } + +.fa-square-upwork:before { + content: "\e67c"; } + +.fa-slideshare:before { + content: "\f1e7"; } + +.fa-google-play:before { + content: "\f3ab"; } + +.fa-viadeo:before { + content: "\f2a9"; } + +.fa-line:before { + content: "\f3c0"; } + +.fa-google-drive:before { + content: "\f3aa"; } + +.fa-servicestack:before { + content: "\f3ec"; } + +.fa-simplybuilt:before { + content: "\f215"; } + +.fa-bitbucket:before { + content: "\f171"; } + +.fa-imdb:before { + content: "\f2d8"; } + +.fa-deezer:before { + content: "\e077"; } + +.fa-raspberry-pi:before { + content: "\f7bb"; } + +.fa-jira:before { + content: "\f7b1"; } + +.fa-docker:before { + content: "\f395"; } + +.fa-screenpal:before { + content: "\e570"; } + +.fa-bluetooth:before { + content: "\f293"; } + +.fa-gitter:before { + content: "\f426"; } + +.fa-d-and-d:before { + content: "\f38d"; } + +.fa-microblog:before { + content: "\e01a"; } + +.fa-cc-diners-club:before { + content: "\f24c"; } + +.fa-gg-circle:before { + content: "\f261"; } + +.fa-pied-piper-hat:before { + content: "\f4e5"; } + +.fa-kickstarter-k:before { + content: "\f3bc"; } + +.fa-yandex:before { + content: "\f413"; } + +.fa-readme:before { + content: "\f4d5"; } + +.fa-html5:before { + content: "\f13b"; } + +.fa-sellsy:before { + content: "\f213"; } + +.fa-square-web-awesome:before { + content: "\e683"; } + +.fa-sass:before { + content: "\f41e"; } + +.fa-wirsindhandwerk:before { + content: "\e2d0"; } + +.fa-wsh:before { + content: "\e2d0"; } + +.fa-buromobelexperte:before { + content: "\f37f"; } + +.fa-salesforce:before { + content: "\f83b"; } + +.fa-octopus-deploy:before { + content: "\e082"; } + +.fa-medapps:before { + content: "\f3c6"; } + +.fa-ns8:before { + content: "\f3d5"; } + +.fa-pinterest-p:before { + content: "\f231"; } + +.fa-apper:before { + content: "\f371"; } + +.fa-fort-awesome:before { + content: "\f286"; } + +.fa-waze:before { + content: "\f83f"; } + +.fa-bluesky:before { + content: "\e671"; } + +.fa-cc-jcb:before { + content: "\f24b"; } + +.fa-snapchat:before { + content: "\f2ab"; } + +.fa-snapchat-ghost:before { + content: "\f2ab"; } + +.fa-fantasy-flight-games:before { + content: "\f6dc"; } + +.fa-rust:before { + content: "\e07a"; } + +.fa-wix:before { + content: "\f5cf"; } + +.fa-square-behance:before { + content: "\f1b5"; } + +.fa-behance-square:before { + content: "\f1b5"; } + +.fa-supple:before { + content: "\f3f9"; } + +.fa-webflow:before { + content: "\e65c"; } + +.fa-rebel:before { + content: "\f1d0"; } + +.fa-css3:before { + content: "\f13c"; } + +.fa-staylinked:before { + content: "\f3f5"; } + +.fa-kaggle:before { + content: "\f5fa"; } + +.fa-space-awesome:before { + content: "\e5ac"; } + +.fa-deviantart:before { + content: "\f1bd"; } + +.fa-cpanel:before { + content: "\f388"; } + +.fa-goodreads-g:before { + content: "\f3a9"; } + +.fa-square-git:before { + content: "\f1d2"; } + +.fa-git-square:before { + content: "\f1d2"; } + +.fa-square-tumblr:before { + content: "\f174"; } + +.fa-tumblr-square:before { + content: "\f174"; } + +.fa-trello:before { + content: "\f181"; } + +.fa-creative-commons-nc-jp:before { + content: "\f4ea"; } + +.fa-get-pocket:before { + content: "\f265"; } + +.fa-perbyte:before { + content: "\e083"; } + +.fa-grunt:before { + content: "\f3ad"; } + +.fa-weebly:before { + content: "\f5cc"; } + +.fa-connectdevelop:before { + content: "\f20e"; } + +.fa-leanpub:before { + content: "\f212"; } + +.fa-black-tie:before { + content: "\f27e"; } + +.fa-themeco:before { + content: "\f5c6"; } + +.fa-python:before { + content: "\f3e2"; } + +.fa-android:before { + content: "\f17b"; } + +.fa-bots:before { + content: "\e340"; } + +.fa-free-code-camp:before { + content: "\f2c5"; } + +.fa-hornbill:before { + content: "\f592"; } + +.fa-js:before { + content: "\f3b8"; } + +.fa-ideal:before { + content: "\e013"; } + +.fa-git:before { + content: "\f1d3"; } + +.fa-dev:before { + content: "\f6cc"; } + +.fa-sketch:before { + content: "\f7c6"; } + +.fa-yandex-international:before { + content: "\f414"; } + +.fa-cc-amex:before { + content: "\f1f3"; } + +.fa-uber:before { + content: "\f402"; } + +.fa-github:before { + content: "\f09b"; } + +.fa-php:before { + content: "\f457"; } + +.fa-alipay:before { + content: "\f642"; } + +.fa-youtube:before { + content: "\f167"; } + +.fa-skyatlas:before { + content: "\f216"; } + +.fa-firefox-browser:before { + content: "\e007"; } + +.fa-replyd:before { + content: "\f3e6"; } + +.fa-suse:before { + content: "\f7d6"; } + +.fa-jenkins:before { + content: "\f3b6"; } + +.fa-twitter:before { + content: "\f099"; } + +.fa-rockrms:before { + content: "\f3e9"; } + +.fa-pinterest:before { + content: "\f0d2"; } + +.fa-buffer:before { + content: "\f837"; } + +.fa-npm:before { + content: "\f3d4"; } + +.fa-yammer:before { + content: "\f840"; } + +.fa-btc:before { + content: "\f15a"; } + +.fa-dribbble:before { + content: "\f17d"; } + +.fa-stumbleupon-circle:before { + content: "\f1a3"; } + +.fa-internet-explorer:before { + content: "\f26b"; } + +.fa-stubber:before { + content: "\e5c7"; } + +.fa-telegram:before { + content: "\f2c6"; } + +.fa-telegram-plane:before { + content: "\f2c6"; } + +.fa-old-republic:before { + content: "\f510"; } + +.fa-odysee:before { + content: "\e5c6"; } + +.fa-square-whatsapp:before { + content: "\f40c"; } + +.fa-whatsapp-square:before { + content: "\f40c"; } + +.fa-node-js:before { + content: "\f3d3"; } + +.fa-edge-legacy:before { + content: "\e078"; } + +.fa-slack:before { + content: "\f198"; } + +.fa-slack-hash:before { + content: "\f198"; } + +.fa-medrt:before { + content: "\f3c8"; } + +.fa-usb:before { + content: "\f287"; } + +.fa-tumblr:before { + content: "\f173"; } + +.fa-vaadin:before { + content: "\f408"; } + +.fa-quora:before { + content: "\f2c4"; } + +.fa-square-x-twitter:before { + content: "\e61a"; } + +.fa-reacteurope:before { + content: "\f75d"; } + +.fa-medium:before { + content: "\f23a"; } + +.fa-medium-m:before { + content: "\f23a"; } + +.fa-amilia:before { + content: "\f36d"; } + +.fa-mixcloud:before { + content: "\f289"; } + +.fa-flipboard:before { + content: "\f44d"; } + +.fa-viacoin:before { + content: "\f237"; } + +.fa-critical-role:before { + content: "\f6c9"; } + +.fa-sitrox:before { + content: "\e44a"; } + +.fa-discourse:before { + content: "\f393"; } + +.fa-joomla:before { + content: "\f1aa"; } + +.fa-mastodon:before { + content: "\f4f6"; } + +.fa-airbnb:before { + content: "\f834"; } + +.fa-wolf-pack-battalion:before { + content: "\f514"; } + +.fa-buy-n-large:before { + content: "\f8a6"; } + +.fa-gulp:before { + content: "\f3ae"; } + +.fa-creative-commons-sampling-plus:before { + content: "\f4f1"; } + +.fa-strava:before { + content: "\f428"; } + +.fa-ember:before { + content: "\f423"; } + +.fa-canadian-maple-leaf:before { + content: "\f785"; } + +.fa-teamspeak:before { + content: "\f4f9"; } + +.fa-pushed:before { + content: "\f3e1"; } + +.fa-wordpress-simple:before { + content: "\f411"; } + +.fa-nutritionix:before { + content: "\f3d6"; } + +.fa-wodu:before { + content: "\e088"; } + +.fa-google-pay:before { + content: "\e079"; } + +.fa-intercom:before { + content: "\f7af"; } + +.fa-zhihu:before { + content: "\f63f"; } + +.fa-korvue:before { + content: "\f42f"; } + +.fa-pix:before { + content: "\e43a"; } + +.fa-steam-symbol:before { + content: "\f3f6"; } +:root, :host { + --fa-style-family-classic: 'Font Awesome 6 Free'; + --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; } + +@font-face { + font-family: 'Font Awesome 6 Free'; + font-style: normal; + font-weight: 400; + font-display: block; + src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } + +.far, +.fa-regular { + font-weight: 400; } +:root, :host { + --fa-style-family-classic: 'Font Awesome 6 Free'; + --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; } + +@font-face { + font-family: 'Font Awesome 6 Free'; + font-style: normal; + font-weight: 900; + font-display: block; + src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } + +.fas, +.fa-solid { + font-weight: 900; } +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-display: block; + font-weight: 400; + src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-display: block; + font-weight: 900; + src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-display: block; + font-weight: 400; + src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } +@font-face { + font-family: 'FontAwesome'; + font-display: block; + src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } + +@font-face { + font-family: 'FontAwesome'; + font-display: block; + src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } + +@font-face { + font-family: 'FontAwesome'; + font-display: block; + src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } + +@font-face { + font-family: 'FontAwesome'; + font-display: block; + src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); } diff --git a/docs/deps/font-awesome-6.5.2/css/all.min.css b/docs/deps/font-awesome-6.5.2/css/all.min.css new file mode 100644 index 0000000..269bcee --- /dev/null +++ b/docs/deps/font-awesome-6.5.2/css/all.min.css @@ -0,0 +1,9 @@ +/*! + * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */ +.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,0));transform:rotate(var(--fa-rotate-angle,0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)} + +.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-text-height:before{content:"\f034"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-stethoscope:before{content:"\f0f1"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-info:before{content:"\f129"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-explosion:before{content:"\e4e9"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-wave-square:before{content:"\f83e"}.fa-ring:before{content:"\f70b"}.fa-building-un:before{content:"\e4d9"}.fa-dice-three:before{content:"\f527"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-door-open:before{content:"\f52b"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-atom:before{content:"\f5d2"}.fa-soap:before{content:"\e06e"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-pump-medical:before{content:"\e06a"}.fa-fingerprint:before{content:"\f577"}.fa-hand-point-right:before{content:"\f0a4"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-flag-checkered:before{content:"\f11e"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-crop:before{content:"\f125"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-users-rectangle:before{content:"\e594"}.fa-people-roof:before{content:"\e537"}.fa-people-line:before{content:"\e534"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-diagram-predecessor:before{content:"\e477"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-laptop:before{content:"\f109"}.fa-file-csv:before{content:"\f6dd"}.fa-menorah:before{content:"\f676"}.fa-truck-plane:before{content:"\e58f"}.fa-record-vinyl:before{content:"\f8d9"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-bong:before{content:"\f55c"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-jar-wheat:before{content:"\e517"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-pager:before{content:"\f815"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-strikethrough:before{content:"\f0cc"}.fa-k:before{content:"\4b"}.fa-landmark-flag:before{content:"\e51c"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-backward:before{content:"\f04a"}.fa-caret-right:before{content:"\f0da"}.fa-comments:before{content:"\f086"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-code-pull-request:before{content:"\e13c"}.fa-clipboard-list:before{content:"\f46d"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-user-check:before{content:"\f4fc"}.fa-vial-virus:before{content:"\e597"}.fa-sheet-plastic:before{content:"\e571"}.fa-blog:before{content:"\f781"}.fa-user-ninja:before{content:"\f504"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-toggle-off:before{content:"\f204"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-person-drowning:before{content:"\e545"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-spray-can:before{content:"\f5bd"}.fa-truck-monster:before{content:"\f63b"}.fa-w:before{content:"\57"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-rainbow:before{content:"\f75b"}.fa-circle-notch:before{content:"\f1ce"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-paw:before{content:"\f1b0"}.fa-cloud:before{content:"\f0c2"}.fa-trowel-bricks:before{content:"\e58a"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-hospital-user:before{content:"\f80d"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-binoculars:before{content:"\f1e5"}.fa-microphone-slash:before{content:"\f131"}.fa-box-tissue:before{content:"\e05b"}.fa-motorcycle:before{content:"\f21c"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-toilets-portable:before{content:"\e584"}.fa-hockey-puck:before{content:"\f453"}.fa-table:before{content:"\f0ce"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-users-slash:before{content:"\e073"}.fa-clover:before{content:"\e139"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-star-and-crescent:before{content:"\f699"}.fa-house-fire:before{content:"\e50c"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-helicopter:before{content:"\f533"}.fa-compass:before{content:"\f14e"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-file-circle-question:before{content:"\e4ef"}.fa-laptop-code:before{content:"\f5fc"}.fa-swatchbook:before{content:"\f5c3"}.fa-prescription-bottle:before{content:"\f485"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-people-group:before{content:"\e533"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-film:before{content:"\f008"}.fa-ruler-horizontal:before{content:"\f547"}.fa-people-robbery:before{content:"\e536"}.fa-lightbulb:before{content:"\f0eb"}.fa-caret-left:before{content:"\f0d9"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-sitemap:before{content:"\f0e8"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-memory:before{content:"\f538"}.fa-road-spikes:before{content:"\e568"}.fa-fire-burner:before{content:"\e4f1"}.fa-flag:before{content:"\f024"}.fa-hanukiah:before{content:"\f6e6"}.fa-feather:before{content:"\f52d"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-comment-slash:before{content:"\f4b3"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-compress:before{content:"\f066"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-ankh:before{content:"\f644"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-asterisk:before{content:"\2a"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-peseta-sign:before{content:"\e221"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-ghost:before{content:"\f6e2"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-cart-plus:before{content:"\f217"}.fa-gamepad:before{content:"\f11b"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-egg:before{content:"\f7fb"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-campground:before{content:"\f6bb"}.fa-folder-plus:before{content:"\f65e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-lock:before{content:"\f023"}.fa-gas-pump:before{content:"\f52f"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-house-flood-water:before{content:"\e50e"}.fa-tree:before{content:"\f1bb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-sack-dollar:before{content:"\f81d"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-car-side:before{content:"\f5e4"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-microscope:before{content:"\f610"}.fa-sink:before{content:"\e06d"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-mitten:before{content:"\f7b5"}.fa-person-rays:before{content:"\e54d"}.fa-users:before{content:"\f0c0"}.fa-eye-slash:before{content:"\f070"}.fa-flask-vial:before{content:"\e4f3"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-om:before{content:"\f679"}.fa-worm:before{content:"\e599"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-plug:before{content:"\f1e6"}.fa-chevron-up:before{content:"\f077"}.fa-hand-spock:before{content:"\f259"}.fa-stopwatch:before{content:"\f2f2"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-chess-bishop:before{content:"\f43a"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-road-circle-check:before{content:"\e564"}.fa-dice-five:before{content:"\f523"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-land-mine-on:before{content:"\e51b"}.fa-i-cursor:before{content:"\f246"}.fa-stamp:before{content:"\f5bf"}.fa-stairs:before{content:"\e289"}.fa-i:before{content:"\49"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-pills:before{content:"\f484"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-tooth:before{content:"\f5c9"}.fa-v:before{content:"\56"}.fa-bangladeshi-taka-sign:before{content:"\e2e6"}.fa-bicycle:before{content:"\f206"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-snowman:before{content:"\f7d0"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-road-barrier:before{content:"\e562"}.fa-school:before{content:"\f549"}.fa-igloo:before{content:"\f7ae"}.fa-joint:before{content:"\f595"}.fa-angle-right:before{content:"\f105"}.fa-horse:before{content:"\f6f0"}.fa-q:before{content:"\51"}.fa-g:before{content:"\47"}.fa-notes-medical:before{content:"\f481"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-dong-sign:before{content:"\e169"}.fa-capsules:before{content:"\f46b"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-hand-point-up:before{content:"\f0a6"}.fa-money-bill:before{content:"\f0d6"}.fa-bookmark:before{content:"\f02e"}.fa-align-justify:before{content:"\f039"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-helmet-un:before{content:"\e503"}.fa-bullseye:before{content:"\f140"}.fa-bacon:before{content:"\f7e5"}.fa-hand-point-down:before{content:"\f0a7"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-radiation:before{content:"\f7b9"}.fa-chart-simple:before{content:"\e473"}.fa-mars-stroke:before{content:"\f229"}.fa-vial:before{content:"\f492"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-e:before{content:"\45"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-user:before{content:"\f007"}.fa-school-circle-check:before{content:"\e56b"}.fa-dumpster:before{content:"\f793"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-building-user:before{content:"\e4da"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-highlighter:before{content:"\f591"}.fa-key:before{content:"\f084"}.fa-bullhorn:before{content:"\f0a1"}.fa-globe:before{content:"\f0ac"}.fa-synagogue:before{content:"\f69b"}.fa-person-half-dress:before{content:"\e548"}.fa-road-bridge:before{content:"\e563"}.fa-location-arrow:before{content:"\f124"}.fa-c:before{content:"\43"}.fa-tablet-button:before{content:"\f10a"}.fa-building-lock:before{content:"\e4d6"}.fa-pizza-slice:before{content:"\f818"}.fa-money-bill-wave:before{content:"\f53a"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-house-flag:before{content:"\e50d"}.fa-person-circle-minus:before{content:"\e540"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-camera-rotate:before{content:"\e0d8"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-star:before{content:"\f005"}.fa-repeat:before{content:"\f363"}.fa-cross:before{content:"\f654"}.fa-box:before{content:"\f466"}.fa-venus-mars:before{content:"\f228"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-charging-station:before{content:"\f5e7"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-mobile-retro:before{content:"\e527"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-spider:before{content:"\f717"}.fa-hands-bound:before{content:"\e4f9"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-x-ray:before{content:"\f497"}.fa-spell-check:before{content:"\f891"}.fa-slash:before{content:"\f715"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-server:before{content:"\f233"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-shop-lock:before{content:"\e4a5"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-blender-phone:before{content:"\f6b6"}.fa-building-wheat:before{content:"\e4db"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-venus:before{content:"\f221"}.fa-passport:before{content:"\f5ab"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-temperature-high:before{content:"\f769"}.fa-microchip:before{content:"\f2db"}.fa-crown:before{content:"\f521"}.fa-weight-hanging:before{content:"\f5cd"}.fa-xmarks-lines:before{content:"\e59a"}.fa-file-prescription:before{content:"\f572"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-chess-knight:before{content:"\f441"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-wheelchair:before{content:"\f193"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-toggle-on:before{content:"\f205"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-l:before{content:"\4c"}.fa-fire:before{content:"\f06d"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-folder-open:before{content:"\f07c"}.fa-heart-circle-plus:before{content:"\e500"}.fa-code-fork:before{content:"\e13b"}.fa-city:before{content:"\f64f"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-pepper-hot:before{content:"\f816"}.fa-unlock:before{content:"\f09c"}.fa-colon-sign:before{content:"\e140"}.fa-headset:before{content:"\f590"}.fa-store-slash:before{content:"\e071"}.fa-road-circle-xmark:before{content:"\e566"}.fa-user-minus:before{content:"\f503"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-clipboard:before{content:"\f328"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-underline:before{content:"\f0cd"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-signature:before{content:"\f5b7"}.fa-stroopwafel:before{content:"\f551"}.fa-bold:before{content:"\f032"}.fa-anchor-lock:before{content:"\e4ad"}.fa-building-ngo:before{content:"\e4d7"}.fa-manat-sign:before{content:"\e1d5"}.fa-not-equal:before{content:"\f53e"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-jedi:before{content:"\f669"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-mug-hot:before{content:"\f7b6"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-gift:before{content:"\f06b"}.fa-dice-two:before{content:"\f528"}.fa-chess-queen:before{content:"\f445"}.fa-glasses:before{content:"\f530"}.fa-chess-board:before{content:"\f43c"}.fa-building-circle-check:before{content:"\e4d2"}.fa-person-chalkboard:before{content:"\e53d"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-less-than-equal:before{content:"\f537"}.fa-train:before{content:"\f238"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-crow:before{content:"\f520"}.fa-sailboat:before{content:"\e445"}.fa-window-restore:before{content:"\f2d2"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-torii-gate:before{content:"\f6a1"}.fa-frog:before{content:"\f52e"}.fa-bucket:before{content:"\e4cf"}.fa-image:before{content:"\f03e"}.fa-microphone:before{content:"\f130"}.fa-cow:before{content:"\f6c8"}.fa-caret-up:before{content:"\f0d8"}.fa-screwdriver:before{content:"\f54a"}.fa-folder-closed:before{content:"\e185"}.fa-house-tsunami:before{content:"\e515"}.fa-square-nfi:before{content:"\e576"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-lemon:before{content:"\f094"}.fa-head-side-mask:before{content:"\e063"}.fa-handshake:before{content:"\f2b5"}.fa-gem:before{content:"\f3a5"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-smoking:before{content:"\f48d"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-monument:before{content:"\f5a6"}.fa-snowplow:before{content:"\f7d2"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-cannabis:before{content:"\f55f"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-tablets:before{content:"\f490"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-chair:before{content:"\f6c0"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-plate-wheat:before{content:"\e55a"}.fa-icicles:before{content:"\f7ad"}.fa-person-shelter:before{content:"\e54f"}.fa-neuter:before{content:"\f22c"}.fa-id-badge:before{content:"\f2c1"}.fa-marker:before{content:"\f5a1"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-helicopter-symbol:before{content:"\e502"}.fa-universal-access:before{content:"\f29a"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-lari-sign:before{content:"\e1c8"}.fa-volcano:before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-viruses:before{content:"\e076"}.fa-square-person-confined:before{content:"\e577"}.fa-user-tie:before{content:"\f508"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-certificate:before{content:"\f0a3"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-suitcase:before{content:"\f0f2"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-camera-retro:before{content:"\f083"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-box-open:before{content:"\f49e"}.fa-scroll:before{content:"\f70e"}.fa-spa:before{content:"\f5bb"}.fa-location-pin-lock:before{content:"\e51f"}.fa-pause:before{content:"\f04c"}.fa-hill-avalanche:before{content:"\e507"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-bomb:before{content:"\f1e2"}.fa-registered:before{content:"\f25d"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-subscript:before{content:"\f12c"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-burst:before{content:"\e4dc"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-money-bills:before{content:"\e1f3"}.fa-smog:before{content:"\f75f"}.fa-crutch:before{content:"\f7f7"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-palette:before{content:"\f53f"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-vest:before{content:"\e085"}.fa-ferry:before{content:"\e4ea"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-boxes-packing:before{content:"\e4c7"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-bowl-food:before{content:"\e4c6"}.fa-candy-cane:before{content:"\f786"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-file-word:before{content:"\f1c2"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-house-lock:before{content:"\e510"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-children:before{content:"\e4e1"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-envelope-open:before{content:"\f2b6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-mattress-pillow:before{content:"\e525"}.fa-guarani-sign:before{content:"\e19a"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-fire-extinguisher:before{content:"\f134"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-greater-than-equal:before{content:"\f532"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-virus:before{content:"\e074"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-layer-group:before{content:"\f5fd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-archway:before{content:"\f557"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-square:before{content:"\f0c8"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-couch:before{content:"\f4b8"}.fa-cedi-sign:before{content:"\e0df"}.fa-italic:before{content:"\f033"}.fa-table-cells-column-lock:before{content:"\e678"}.fa-church:before{content:"\f51d"}.fa-comments-dollar:before{content:"\f653"}.fa-democrat:before{content:"\f747"}.fa-z:before{content:"\5a"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-road-lock:before{content:"\e567"}.fa-a:before{content:"\41"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-p:before{content:"\50"}.fa-snowflake:before{content:"\f2dc"}.fa-newspaper:before{content:"\f1ea"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-locust:before{content:"\e520"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-person-dress-burst:before{content:"\e544"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-vector-square:before{content:"\f5cb"}.fa-bread-slice:before{content:"\f7ec"}.fa-language:before{content:"\f1ab"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-filter:before{content:"\f0b0"}.fa-question:before{content:"\3f"}.fa-file-signature:before{content:"\f573"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-house-chimney-user:before{content:"\e065"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-puzzle-piece:before{content:"\f12e"}.fa-money-check:before{content:"\f53c"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-code:before{content:"\f121"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-virus-covid:before{content:"\e4a8"}.fa-austral-sign:before{content:"\e0a9"}.fa-f:before{content:"\46"}.fa-leaf:before{content:"\f06c"}.fa-road:before{content:"\f018"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-person-circle-plus:before{content:"\e541"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-sack-xmark:before{content:"\e56a"}.fa-file-excel:before{content:"\f1c3"}.fa-file-contract:before{content:"\f56c"}.fa-fish-fins:before{content:"\e4f2"}.fa-building-flag:before{content:"\e4d5"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-object-ungroup:before{content:"\f248"}.fa-poop:before{content:"\f619"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-kaaba:before{content:"\f66b"}.fa-toilet-paper:before{content:"\f71e"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-eject:before{content:"\f052"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-plane-circle-check:before{content:"\e555"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-object-group:before{content:"\f247"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-mask-ventilator:before{content:"\e524"}.fa-arrow-right:before{content:"\f061"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-cash-register:before{content:"\f788"}.fa-person-circle-question:before{content:"\e542"}.fa-h:before{content:"\48"}.fa-tarp:before{content:"\e57b"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-heart:before{content:"\f004"}.fa-mars-and-venus:before{content:"\f224"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-dumpster-fire:before{content:"\f794"}.fa-house-crack:before{content:"\e3b1"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-bottle-water:before{content:"\e4c5"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-kitchen-set:before{content:"\e51a"}.fa-r:before{content:"\52"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-cube:before{content:"\f1b2"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-shield-dog:before{content:"\e573"}.fa-solar-panel:before{content:"\f5ba"}.fa-lock-open:before{content:"\f3c1"}.fa-elevator:before{content:"\e16d"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-circle:before{content:"\f111"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-recycle:before{content:"\f1b8"}.fa-user-astronaut:before{content:"\f4fb"}.fa-plane-slash:before{content:"\e069"}.fa-trademark:before{content:"\f25c"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-satellite-dish:before{content:"\f7c0"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-users-rays:before{content:"\e593"}.fa-wallet:before{content:"\f555"}.fa-clipboard-check:before{content:"\f46c"}.fa-file-audio:before{content:"\f1c7"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-wrench:before{content:"\f0ad"}.fa-bugs:before{content:"\e4d0"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-file-image:before{content:"\f1c5"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-plane-departure:before{content:"\f5b0"}.fa-handshake-slash:before{content:"\e060"}.fa-book-bookmark:before{content:"\e0bb"}.fa-code-branch:before{content:"\f126"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-bridge:before{content:"\e4c8"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-truck-front:before{content:"\e2b7"}.fa-cat:before{content:"\f6be"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-truck-field:before{content:"\e58d"}.fa-route:before{content:"\f4d7"}.fa-clipboard-question:before{content:"\e4e3"}.fa-panorama:before{content:"\e209"}.fa-comment-medical:before{content:"\f7f5"}.fa-teeth-open:before{content:"\f62f"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-tags:before{content:"\f02c"}.fa-wine-glass:before{content:"\f4e3"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-house-signal:before{content:"\e012"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-faucet-drip:before{content:"\e006"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-terminal:before{content:"\f120"}.fa-mobile-button:before{content:"\f10b"}.fa-house-medical-flag:before{content:"\e514"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-tape:before{content:"\f4db"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-eye:before{content:"\f06e"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-audio-description:before{content:"\f29e"}.fa-person-military-to-person:before{content:"\e54c"}.fa-file-shield:before{content:"\e4f0"}.fa-user-slash:before{content:"\f506"}.fa-pen:before{content:"\f304"}.fa-tower-observation:before{content:"\e586"}.fa-file-code:before{content:"\f1c9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-bus:before{content:"\f207"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-window-maximize:before{content:"\f2d0"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-prescription:before{content:"\f5b1"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-vihara:before{content:"\f6a7"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-plant-wilt:before{content:"\e5aa"}.fa-diamond:before{content:"\f219"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-bacterium:before{content:"\e05a"}.fa-hand-pointer:before{content:"\f25a"}.fa-drum-steelpan:before{content:"\f56a"}.fa-hand-scissors:before{content:"\f257"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-biohazard:before{content:"\f780"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-mars-double:before{content:"\f227"}.fa-child-dress:before{content:"\e59c"}.fa-users-between-lines:before{content:"\e591"}.fa-lungs-virus:before{content:"\e067"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-phone:before{content:"\f095"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-child-reaching:before{content:"\e59d"}.fa-head-side-virus:before{content:"\e064"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-door-closed:before{content:"\f52a"}.fa-shield-virus:before{content:"\e06c"}.fa-dice-six:before{content:"\f526"}.fa-mosquito-net:before{content:"\e52c"}.fa-bridge-water:before{content:"\e4ce"}.fa-person-booth:before{content:"\f756"}.fa-text-width:before{content:"\f035"}.fa-hat-wizard:before{content:"\f6e8"}.fa-pen-fancy:before{content:"\f5ac"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-trash:before{content:"\f1f8"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-book-medical:before{content:"\f7e6"}.fa-poo:before{content:"\f2fe"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-cubes:before{content:"\f1b3"}.fa-divide:before{content:"\f529"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-headphones:before{content:"\f025"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-clapping:before{content:"\e1a8"}.fa-republican:before{content:"\f75e"}.fa-arrow-left:before{content:"\f060"}.fa-person-circle-xmark:before{content:"\e543"}.fa-ruler:before{content:"\f545"}.fa-align-left:before{content:"\f036"}.fa-dice-d6:before{content:"\f6d1"}.fa-restroom:before{content:"\f7bd"}.fa-j:before{content:"\4a"}.fa-users-viewfinder:before{content:"\e595"}.fa-file-video:before{content:"\f1c8"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-file-pdf:before{content:"\f1c1"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-o:before{content:"\4f"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-user-secret:before{content:"\f21b"}.fa-otter:before{content:"\f700"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-comment-dollar:before{content:"\f651"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-book-tanakh:before,.fa-tanakh:before{content:"\f827"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-clipboard-user:before{content:"\f7f3"}.fa-child:before{content:"\f1ae"}.fa-lira-sign:before{content:"\f195"}.fa-satellite:before{content:"\f7bf"}.fa-plane-lock:before{content:"\e558"}.fa-tag:before{content:"\f02b"}.fa-comment:before{content:"\f075"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-envelope:before{content:"\f0e0"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-paperclip:before{content:"\f0c6"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-ribbon:before{content:"\f4d6"}.fa-lungs:before{content:"\f604"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-border-none:before{content:"\f850"}.fa-circle-nodes:before{content:"\e4e2"}.fa-parachute-box:before{content:"\f4cd"}.fa-indent:before{content:"\f03c"}.fa-truck-field-un:before{content:"\e58e"}.fa-hourglass-empty:before,.fa-hourglass:before{content:"\f254"}.fa-mountain:before{content:"\f6fc"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-square-virus:before{content:"\e578"}.fa-meteor:before{content:"\f753"}.fa-car-on:before{content:"\e4dd"}.fa-sleigh:before{content:"\f7cc"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-water:before{content:"\f773"}.fa-calendar-check:before{content:"\f274"}.fa-braille:before{content:"\f2a1"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-landmark:before{content:"\f66f"}.fa-truck:before{content:"\f0d1"}.fa-crosshairs:before{content:"\f05b"}.fa-person-cane:before{content:"\e53c"}.fa-tent:before{content:"\e57d"}.fa-vest-patches:before{content:"\e086"}.fa-check-double:before{content:"\f560"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-cookie:before{content:"\f563"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-dumbbell:before{content:"\f44b"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-tarp-droplet:before{content:"\e57c"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-calendar-plus:before{content:"\f271"}.fa-plane-arrival:before{content:"\f5af"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-chart-gantt:before{content:"\e0e4"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-dna:before{content:"\f471"}.fa-virus-slash:before{content:"\e075"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-chess:before{content:"\f439"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-plug-circle-check:before{content:"\e55c"}.fa-street-view:before{content:"\f21d"}.fa-franc-sign:before{content:"\e18f"}.fa-volume-off:before{content:"\f026"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-star-of-david:before{content:"\f69a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-vials:before{content:"\f493"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-place-of-worship:before{content:"\f67f"}.fa-grip-vertical:before{content:"\f58e"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-u:before{content:"\55"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-pallet:before{content:"\f482"}.fa-faucet:before{content:"\e005"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-s:before{content:"\53"}.fa-timeline:before{content:"\e29c"}.fa-keyboard:before{content:"\f11c"}.fa-caret-down:before{content:"\f0d7"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-plane-up:before{content:"\e22d"}.fa-piggy-bank:before{content:"\f4d3"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-mountain-city:before{content:"\e52e"}.fa-coins:before{content:"\f51e"}.fa-khanda:before{content:"\f66d"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-folder-tree:before{content:"\f802"}.fa-network-wired:before{content:"\f6ff"}.fa-map-pin:before{content:"\f276"}.fa-hamsa:before{content:"\f665"}.fa-cent-sign:before{content:"\e3f5"}.fa-flask:before{content:"\f0c3"}.fa-person-pregnant:before{content:"\e31e"}.fa-wand-sparkles:before{content:"\f72b"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-ticket:before{content:"\f145"}.fa-power-off:before{content:"\f011"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-flag-usa:before{content:"\f74d"}.fa-laptop-file:before{content:"\e51d"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-diagram-next:before{content:"\e476"}.fa-person-rifle:before{content:"\e54e"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-closed-captioning:before{content:"\f20a"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-venus-double:before{content:"\f226"}.fa-images:before{content:"\f302"}.fa-calculator:before{content:"\f1ec"}.fa-people-pulling:before{content:"\e535"}.fa-n:before{content:"\4e"}.fa-cable-car:before,.fa-tram:before{content:"\f7da"}.fa-cloud-rain:before{content:"\f73d"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-ship:before{content:"\f21a"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-download:before{content:"\f019"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-file-circle-check:before{content:"\e5a0"}.fa-forward:before{content:"\f04e"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-align-center:before{content:"\f037"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-calendar-week:before{content:"\f784"}.fa-laptop-medical:before{content:"\f812"}.fa-b:before{content:"\42"}.fa-file-medical:before{content:"\f477"}.fa-dice-one:before{content:"\f525"}.fa-kiwi-bird:before{content:"\f535"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-mill-sign:before{content:"\e1ed"}.fa-bowl-rice:before{content:"\e2eb"}.fa-skull:before{content:"\f54c"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-truck-pickup:before{content:"\f63c"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-stop:before{content:"\f04d"}.fa-code-merge:before{content:"\f387"}.fa-upload:before{content:"\f093"}.fa-hurricane:before{content:"\f751"}.fa-mound:before{content:"\e52d"}.fa-toilet-portable:before{content:"\e583"}.fa-compact-disc:before{content:"\f51f"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-caravan:before{content:"\f8ff"}.fa-shield-cat:before{content:"\e572"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-glass-water:before{content:"\e4f4"}.fa-oil-well:before{content:"\e532"}.fa-vault:before{content:"\e2c5"}.fa-mars:before{content:"\f222"}.fa-toilet:before{content:"\f7d8"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-sun:before{content:"\f185"}.fa-guitar:before{content:"\f7a6"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-horse-head:before{content:"\f7ab"}.fa-bore-hole:before{content:"\e4c3"}.fa-industry:before{content:"\f275"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-florin-sign:before{content:"\e184"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-less-than:before{content:"\3c"}.fa-angle-down:before{content:"\f107"}.fa-car-tunnel:before{content:"\e4de"}.fa-head-side-cough:before{content:"\e061"}.fa-grip-lines:before{content:"\f7a4"}.fa-thumbs-down:before{content:"\f165"}.fa-user-lock:before{content:"\f502"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-chess-pawn:before{content:"\f443"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-person-through-window:before{content:"\e5a9"}.fa-toolbox:before{content:"\f552"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-bug:before{content:"\f188"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-mountain-sun:before{content:"\e52f"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-dice-d20:before{content:"\f6cf"}.fa-truck-droplet:before{content:"\e58c"}.fa-file-circle-xmark:before{content:"\e5a1"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-medal:before{content:"\f5a2"}.fa-bed:before{content:"\f236"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-podcast:before{content:"\f2ce"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-bell:before{content:"\f0f3"}.fa-superscript:before{content:"\f12b"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-star-of-life:before{content:"\f621"}.fa-phone-slash:before{content:"\f3dd"}.fa-paint-roller:before{content:"\f5aa"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-file:before{content:"\f15b"}.fa-greater-than:before{content:"\3e"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-arrow-down:before{content:"\f063"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-eraser:before{content:"\f12d"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-person-burst:before{content:"\e53b"}.fa-dove:before{content:"\f4ba"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-socks:before{content:"\f696"}.fa-inbox:before{content:"\f01c"}.fa-section:before{content:"\e447"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-envelope-open-text:before{content:"\f658"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-wine-bottle:before{content:"\f72f"}.fa-chess-rook:before{content:"\f447"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-dharmachakra:before{content:"\f655"}.fa-hotdog:before{content:"\f80f"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-drum:before{content:"\f569"}.fa-ice-cream:before{content:"\f810"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-fax:before{content:"\f1ac"}.fa-paragraph:before{content:"\f1dd"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-star-half:before{content:"\f089"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-tree-city:before{content:"\e587"}.fa-play:before{content:"\f04b"}.fa-font:before{content:"\f031"}.fa-table-cells-row-lock:before{content:"\e67a"}.fa-rupiah-sign:before{content:"\e23d"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-naira-sign:before{content:"\e1f6"}.fa-cart-arrow-down:before{content:"\f218"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-receipt:before{content:"\f543"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-chevron-down:before{content:"\f078"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-skull-crossbones:before{content:"\f714"}.fa-code-compare:before{content:"\e13a"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-school-lock:before{content:"\e56f"}.fa-tower-cell:before{content:"\e585"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-ranking-star:before{content:"\e561"}.fa-chess-king:before{content:"\f43f"}.fa-person-harassing:before{content:"\e549"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-arrow-up:before{content:"\f062"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-shrimp:before{content:"\e448"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-jug-detergent:before{content:"\e519"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-user-shield:before{content:"\f505"}.fa-wind:before{content:"\f72e"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-y:before{content:"\59"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-fish:before{content:"\f578"}.fa-user-graduate:before{content:"\f501"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-clapperboard:before{content:"\e131"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-jet-fighter-up:before{content:"\e518"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-copy:before{content:"\f0c5"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-hand-sparkles:before{content:"\e05d"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-child-combatant:before,.fa-child-rifle:before{content:"\e4e0"}.fa-gun:before{content:"\e19b"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-expand:before{content:"\f065"}.fa-computer:before{content:"\e4e5"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-peso-sign:before{content:"\e222"}.fa-building-shield:before{content:"\e4d8"}.fa-baby:before{content:"\f77c"}.fa-users-line:before{content:"\e592"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-tractor:before{content:"\f722"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-lines-leaning:before{content:"\e51e"}.fa-ruler-combined:before{content:"\f546"}.fa-copyright:before{content:"\f1f9"}.fa-equals:before{content:"\3d"}.fa-blender:before{content:"\f517"}.fa-teeth:before{content:"\f62e"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-map:before{content:"\f279"}.fa-rocket:before{content:"\f135"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-folder-minus:before{content:"\f65d"}.fa-store:before{content:"\f54e"}.fa-arrow-trend-up:before{content:"\e098"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-bezier-curve:before{content:"\f55b"}.fa-bell-slash:before{content:"\f1f6"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-school-flag:before{content:"\e56e"}.fa-fill:before{content:"\f575"}.fa-angle-up:before{content:"\f106"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-holly-berry:before{content:"\f7aa"}.fa-chevron-left:before{content:"\f053"}.fa-bacteria:before{content:"\e059"}.fa-hand-lizard:before{content:"\f258"}.fa-notdef:before{content:"\e1fe"}.fa-disease:before{content:"\f7fa"}.fa-briefcase-medical:before{content:"\f469"}.fa-genderless:before{content:"\f22d"}.fa-chevron-right:before{content:"\f054"}.fa-retweet:before{content:"\f079"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-pump-soap:before{content:"\e06b"}.fa-video-slash:before{content:"\f4e2"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-radio:before{content:"\f8d7"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-traffic-light:before{content:"\f637"}.fa-thermometer:before{content:"\f491"}.fa-vr-cardboard:before{content:"\f729"}.fa-hand-middle-finger:before{content:"\f806"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-truck-moving:before{content:"\f4df"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-display:before{content:"\e163"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-trophy:before{content:"\f091"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-hammer:before{content:"\f6e3"}.fa-hand-peace:before{content:"\f25b"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-spinner:before{content:"\f110"}.fa-robot:before{content:"\f544"}.fa-peace:before{content:"\f67c"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-warehouse:before{content:"\f494"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-splotch:before{content:"\f5bc"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-dice-four:before{content:"\f524"}.fa-sim-card:before{content:"\f7c4"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-mercury:before{content:"\f223"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-person-falling-burst:before{content:"\e547"}.fa-award:before{content:"\f559"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-building:before{content:"\f1ad"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-qrcode:before{content:"\f029"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-house-medical:before{content:"\e3b2"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-house-chimney-window:before{content:"\e00d"}.fa-pen-nib:before{content:"\f5ad"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tents:before{content:"\e582"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-dog:before{content:"\f6d3"}.fa-carrot:before{content:"\f787"}.fa-moon:before{content:"\f186"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-cheese:before{content:"\f7ef"}.fa-yin-yang:before{content:"\f6ad"}.fa-music:before{content:"\f001"}.fa-code-commit:before{content:"\f386"}.fa-temperature-low:before{content:"\f76b"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-broom:before{content:"\f51a"}.fa-shield-heart:before{content:"\e574"}.fa-gopuram:before{content:"\f664"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-hashtag:before{content:"\23"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-oil-can:before{content:"\f613"}.fa-t:before{content:"\54"}.fa-hippo:before{content:"\f6ed"}.fa-chart-column:before{content:"\e0e3"}.fa-infinity:before{content:"\f534"}.fa-vial-circle-check:before{content:"\e596"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-voicemail:before{content:"\f897"}.fa-fan:before{content:"\f863"}.fa-person-walking-luggage:before{content:"\e554"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-calendar:before{content:"\f133"}.fa-trailer:before{content:"\e041"}.fa-bahai:before,.fa-haykal:before{content:"\f666"}.fa-sd-card:before{content:"\f7c2"}.fa-dragon:before{content:"\f6d5"}.fa-shoe-prints:before{content:"\f54b"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-hand-holding:before{content:"\f4bd"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-clone:before{content:"\f24d"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-tornado:before{content:"\f76f"}.fa-file-circle-plus:before{content:"\e494"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-anchor:before{content:"\f13d"}.fa-border-all:before{content:"\f84c"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-cookie-bite:before{content:"\f564"}.fa-arrow-trend-down:before{content:"\e097"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-draw-polygon:before{content:"\f5ee"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-shower:before{content:"\f2cc"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-m:before{content:"\4d"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-book:before{content:"\f02d"}.fa-user-plus:before{content:"\f234"}.fa-check:before{content:"\f00c"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-house-circle-check:before{content:"\e509"}.fa-angle-left:before{content:"\f104"}.fa-diagram-successor:before{content:"\e47a"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-cloud-moon:before{content:"\f6c3"}.fa-briefcase:before{content:"\f0b1"}.fa-person-falling:before{content:"\e546"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-user-tag:before{content:"\f507"}.fa-rug:before{content:"\e569"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-baht-sign:before{content:"\e0ac"}.fa-book-open:before{content:"\f518"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-handcuffs:before{content:"\e4f8"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-database:before{content:"\f1c0"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-mask-face:before{content:"\e1d7"}.fa-hill-rockslide:before{content:"\e508"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-paper-plane:before{content:"\f1d8"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-dungeon:before{content:"\f6d9"}.fa-align-right:before{content:"\f038"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-life-ring:before{content:"\f1cd"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-calendar-day:before{content:"\f783"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-dice:before{content:"\f522"}.fa-bowling-ball:before{content:"\f436"}.fa-brain:before{content:"\f5dc"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-calendar-minus:before{content:"\f272"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-gifts:before{content:"\f79c"}.fa-hotel:before{content:"\f594"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-thumbs-up:before{content:"\f164"}.fa-user-clock:before{content:"\f4fd"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-file-invoice:before{content:"\f570"}.fa-window-minimize:before{content:"\f2d1"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-brush:before{content:"\f55d"}.fa-mask:before{content:"\f6fa"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-ruler-vertical:before{content:"\f548"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-train-tram:before{content:"\e5b4"}.fa-user-nurse:before{content:"\f82f"}.fa-syringe:before{content:"\f48e"}.fa-cloud-sun:before{content:"\f6c4"}.fa-stopwatch-20:before{content:"\e06f"}.fa-square-full:before{content:"\f45c"}.fa-magnet:before{content:"\f076"}.fa-jar:before{content:"\e516"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-bug-slash:before{content:"\e490"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-bone:before{content:"\f5d7"}.fa-user-injured:before{content:"\f728"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-plane:before{content:"\f072"}.fa-tent-arrows-down:before{content:"\e581"}.fa-exclamation:before{content:"\21"}.fa-arrows-spin:before{content:"\e4bb"}.fa-print:before{content:"\f02f"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-x:before{content:"\58"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-person-military-pointing:before{content:"\e54a"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-umbrella:before{content:"\f0e9"}.fa-trowel:before{content:"\e589"}.fa-d:before{content:"\44"}.fa-stapler:before{content:"\e5af"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-kip-sign:before{content:"\e1c4"}.fa-hand-point-left:before{content:"\f0a5"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-barcode:before{content:"\f02a"}.fa-plus-minus:before{content:"\e43c"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-person-circle-check:before{content:"\e53e"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"} +.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-pixiv:before{content:"\e640"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-jxl:before{content:"\e67b"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-brave:before{content:"\e63c"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-threads:before{content:"\e618"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-opensuse:before{content:"\e62b"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-debian:before{content:"\e60b"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before,.fa-square-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-square-letterboxd:before{content:"\e62e"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-shoelace:before{content:"\e60c"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-square-threads:before{content:"\e619"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-google-scholar:before{content:"\e63b"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-signal-messenger:before{content:"\e663"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-mintbit:before{content:"\e62f"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-brave-reverse:before{content:"\e63d"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-web-awesome:before{content:"\e682"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-letterboxd:before{content:"\e62d"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-x-twitter:before{content:"\e61b"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-square-web-awesome-stroke:before{content:"\e684"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-upwork:before{content:"\e641"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-square-upwork:before{content:"\e67c"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-square-web-awesome:before{content:"\e683"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-bluesky:before{content:"\e671"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-webflow:before{content:"\e65c"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-square-x-twitter:before{content:"\e61a"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); }.fa-regular,.far{font-weight:400}:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }.fa-solid,.fas{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); }@font-face{font-family:"FontAwesome";font-display:block;src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }@font-face{font-family:"FontAwesome";font-display:block;src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }@font-face{font-family:"FontAwesome";font-display:block;src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); }@font-face{font-family:"FontAwesome";font-display:block;src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); } \ No newline at end of file diff --git a/docs/deps/font-awesome-6.5.2/css/v4-shims.css b/docs/deps/font-awesome-6.5.2/css/v4-shims.css new file mode 100644 index 0000000..ea60ea4 --- /dev/null +++ b/docs/deps/font-awesome-6.5.2/css/v4-shims.css @@ -0,0 +1,2194 @@ +/*! + * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */ +.fa.fa-glass:before { + content: "\f000"; } + +.fa.fa-envelope-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-envelope-o:before { + content: "\f0e0"; } + +.fa.fa-star-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-star-o:before { + content: "\f005"; } + +.fa.fa-remove:before { + content: "\f00d"; } + +.fa.fa-close:before { + content: "\f00d"; } + +.fa.fa-gear:before { + content: "\f013"; } + +.fa.fa-trash-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-trash-o:before { + content: "\f2ed"; } + +.fa.fa-home:before { + content: "\f015"; } + +.fa.fa-file-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-o:before { + content: "\f15b"; } + +.fa.fa-clock-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-clock-o:before { + content: "\f017"; } + +.fa.fa-arrow-circle-o-down { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-down:before { + content: "\f358"; } + +.fa.fa-arrow-circle-o-up { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-up:before { + content: "\f35b"; } + +.fa.fa-play-circle-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-play-circle-o:before { + content: "\f144"; } + +.fa.fa-repeat:before { + content: "\f01e"; } + +.fa.fa-rotate-right:before { + content: "\f01e"; } + +.fa.fa-refresh:before { + content: "\f021"; } + +.fa.fa-list-alt { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-list-alt:before { + content: "\f022"; } + +.fa.fa-dedent:before { + content: "\f03b"; } + +.fa.fa-video-camera:before { + content: "\f03d"; } + +.fa.fa-picture-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-picture-o:before { + content: "\f03e"; } + +.fa.fa-photo { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-photo:before { + content: "\f03e"; } + +.fa.fa-image { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-image:before { + content: "\f03e"; } + +.fa.fa-map-marker:before { + content: "\f3c5"; } + +.fa.fa-pencil-square-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-pencil-square-o:before { + content: "\f044"; } + +.fa.fa-edit { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-edit:before { + content: "\f044"; } + +.fa.fa-share-square-o:before { + content: "\f14d"; } + +.fa.fa-check-square-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-check-square-o:before { + content: "\f14a"; } + +.fa.fa-arrows:before { + content: "\f0b2"; } + +.fa.fa-times-circle-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-times-circle-o:before { + content: "\f057"; } + +.fa.fa-check-circle-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-check-circle-o:before { + content: "\f058"; } + +.fa.fa-mail-forward:before { + content: "\f064"; } + +.fa.fa-expand:before { + content: "\f424"; } + +.fa.fa-compress:before { + content: "\f422"; } + +.fa.fa-eye { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-eye-slash { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-warning:before { + content: "\f071"; } + +.fa.fa-calendar:before { + content: "\f073"; } + +.fa.fa-arrows-v:before { + content: "\f338"; } + +.fa.fa-arrows-h:before { + content: "\f337"; } + +.fa.fa-bar-chart:before { + content: "\e0e3"; } + +.fa.fa-bar-chart-o:before { + content: "\e0e3"; } + +.fa.fa-twitter-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-twitter-square:before { + content: "\f081"; } + +.fa.fa-facebook-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-facebook-square:before { + content: "\f082"; } + +.fa.fa-gears:before { + content: "\f085"; } + +.fa.fa-thumbs-o-up { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-thumbs-o-up:before { + content: "\f164"; } + +.fa.fa-thumbs-o-down { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-thumbs-o-down:before { + content: "\f165"; } + +.fa.fa-heart-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-heart-o:before { + content: "\f004"; } + +.fa.fa-sign-out:before { + content: "\f2f5"; } + +.fa.fa-linkedin-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-linkedin-square:before { + content: "\f08c"; } + +.fa.fa-thumb-tack:before { + content: "\f08d"; } + +.fa.fa-external-link:before { + content: "\f35d"; } + +.fa.fa-sign-in:before { + content: "\f2f6"; } + +.fa.fa-github-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-github-square:before { + content: "\f092"; } + +.fa.fa-lemon-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-lemon-o:before { + content: "\f094"; } + +.fa.fa-square-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-square-o:before { + content: "\f0c8"; } + +.fa.fa-bookmark-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-bookmark-o:before { + content: "\f02e"; } + +.fa.fa-twitter { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-facebook { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-facebook:before { + content: "\f39e"; } + +.fa.fa-facebook-f { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-facebook-f:before { + content: "\f39e"; } + +.fa.fa-github { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-credit-card { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-feed:before { + content: "\f09e"; } + +.fa.fa-hdd-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hdd-o:before { + content: "\f0a0"; } + +.fa.fa-hand-o-right { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-o-right:before { + content: "\f0a4"; } + +.fa.fa-hand-o-left { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-o-left:before { + content: "\f0a5"; } + +.fa.fa-hand-o-up { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-o-up:before { + content: "\f0a6"; } + +.fa.fa-hand-o-down { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-o-down:before { + content: "\f0a7"; } + +.fa.fa-globe:before { + content: "\f57d"; } + +.fa.fa-tasks:before { + content: "\f828"; } + +.fa.fa-arrows-alt:before { + content: "\f31e"; } + +.fa.fa-group:before { + content: "\f0c0"; } + +.fa.fa-chain:before { + content: "\f0c1"; } + +.fa.fa-cut:before { + content: "\f0c4"; } + +.fa.fa-files-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-files-o:before { + content: "\f0c5"; } + +.fa.fa-floppy-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-floppy-o:before { + content: "\f0c7"; } + +.fa.fa-save { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-save:before { + content: "\f0c7"; } + +.fa.fa-navicon:before { + content: "\f0c9"; } + +.fa.fa-reorder:before { + content: "\f0c9"; } + +.fa.fa-magic:before { + content: "\e2ca"; } + +.fa.fa-pinterest { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-pinterest-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-pinterest-square:before { + content: "\f0d3"; } + +.fa.fa-google-plus-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-square:before { + content: "\f0d4"; } + +.fa.fa-google-plus { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-google-plus:before { + content: "\f0d5"; } + +.fa.fa-money:before { + content: "\f3d1"; } + +.fa.fa-unsorted:before { + content: "\f0dc"; } + +.fa.fa-sort-desc:before { + content: "\f0dd"; } + +.fa.fa-sort-asc:before { + content: "\f0de"; } + +.fa.fa-linkedin { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-linkedin:before { + content: "\f0e1"; } + +.fa.fa-rotate-left:before { + content: "\f0e2"; } + +.fa.fa-legal:before { + content: "\f0e3"; } + +.fa.fa-tachometer:before { + content: "\f625"; } + +.fa.fa-dashboard:before { + content: "\f625"; } + +.fa.fa-comment-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-comment-o:before { + content: "\f075"; } + +.fa.fa-comments-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-comments-o:before { + content: "\f086"; } + +.fa.fa-flash:before { + content: "\f0e7"; } + +.fa.fa-clipboard:before { + content: "\f0ea"; } + +.fa.fa-lightbulb-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-lightbulb-o:before { + content: "\f0eb"; } + +.fa.fa-exchange:before { + content: "\f362"; } + +.fa.fa-cloud-download:before { + content: "\f0ed"; } + +.fa.fa-cloud-upload:before { + content: "\f0ee"; } + +.fa.fa-bell-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-bell-o:before { + content: "\f0f3"; } + +.fa.fa-cutlery:before { + content: "\f2e7"; } + +.fa.fa-file-text-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-text-o:before { + content: "\f15c"; } + +.fa.fa-building-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-building-o:before { + content: "\f1ad"; } + +.fa.fa-hospital-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hospital-o:before { + content: "\f0f8"; } + +.fa.fa-tablet:before { + content: "\f3fa"; } + +.fa.fa-mobile:before { + content: "\f3cd"; } + +.fa.fa-mobile-phone:before { + content: "\f3cd"; } + +.fa.fa-circle-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-circle-o:before { + content: "\f111"; } + +.fa.fa-mail-reply:before { + content: "\f3e5"; } + +.fa.fa-github-alt { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-folder-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-folder-o:before { + content: "\f07b"; } + +.fa.fa-folder-open-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-folder-open-o:before { + content: "\f07c"; } + +.fa.fa-smile-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-smile-o:before { + content: "\f118"; } + +.fa.fa-frown-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-frown-o:before { + content: "\f119"; } + +.fa.fa-meh-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-meh-o:before { + content: "\f11a"; } + +.fa.fa-keyboard-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-keyboard-o:before { + content: "\f11c"; } + +.fa.fa-flag-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-flag-o:before { + content: "\f024"; } + +.fa.fa-mail-reply-all:before { + content: "\f122"; } + +.fa.fa-star-half-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-star-half-o:before { + content: "\f5c0"; } + +.fa.fa-star-half-empty { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-star-half-empty:before { + content: "\f5c0"; } + +.fa.fa-star-half-full { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-star-half-full:before { + content: "\f5c0"; } + +.fa.fa-code-fork:before { + content: "\f126"; } + +.fa.fa-chain-broken:before { + content: "\f127"; } + +.fa.fa-unlink:before { + content: "\f127"; } + +.fa.fa-calendar-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-calendar-o:before { + content: "\f133"; } + +.fa.fa-maxcdn { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-html5 { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-css3 { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-unlock-alt:before { + content: "\f09c"; } + +.fa.fa-minus-square-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-minus-square-o:before { + content: "\f146"; } + +.fa.fa-level-up:before { + content: "\f3bf"; } + +.fa.fa-level-down:before { + content: "\f3be"; } + +.fa.fa-pencil-square:before { + content: "\f14b"; } + +.fa.fa-external-link-square:before { + content: "\f360"; } + +.fa.fa-compass { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-down { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-down:before { + content: "\f150"; } + +.fa.fa-toggle-down { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-toggle-down:before { + content: "\f150"; } + +.fa.fa-caret-square-o-up { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-up:before { + content: "\f151"; } + +.fa.fa-toggle-up { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-toggle-up:before { + content: "\f151"; } + +.fa.fa-caret-square-o-right { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-right:before { + content: "\f152"; } + +.fa.fa-toggle-right { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-toggle-right:before { + content: "\f152"; } + +.fa.fa-eur:before { + content: "\f153"; } + +.fa.fa-euro:before { + content: "\f153"; } + +.fa.fa-gbp:before { + content: "\f154"; } + +.fa.fa-usd:before { + content: "\24"; } + +.fa.fa-dollar:before { + content: "\24"; } + +.fa.fa-inr:before { + content: "\e1bc"; } + +.fa.fa-rupee:before { + content: "\e1bc"; } + +.fa.fa-jpy:before { + content: "\f157"; } + +.fa.fa-cny:before { + content: "\f157"; } + +.fa.fa-rmb:before { + content: "\f157"; } + +.fa.fa-yen:before { + content: "\f157"; } + +.fa.fa-rub:before { + content: "\f158"; } + +.fa.fa-ruble:before { + content: "\f158"; } + +.fa.fa-rouble:before { + content: "\f158"; } + +.fa.fa-krw:before { + content: "\f159"; } + +.fa.fa-won:before { + content: "\f159"; } + +.fa.fa-btc { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-bitcoin { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-bitcoin:before { + content: "\f15a"; } + +.fa.fa-file-text:before { + content: "\f15c"; } + +.fa.fa-sort-alpha-asc:before { + content: "\f15d"; } + +.fa.fa-sort-alpha-desc:before { + content: "\f881"; } + +.fa.fa-sort-amount-asc:before { + content: "\f884"; } + +.fa.fa-sort-amount-desc:before { + content: "\f160"; } + +.fa.fa-sort-numeric-asc:before { + content: "\f162"; } + +.fa.fa-sort-numeric-desc:before { + content: "\f886"; } + +.fa.fa-youtube-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-youtube-square:before { + content: "\f431"; } + +.fa.fa-youtube { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-xing { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-xing-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-xing-square:before { + content: "\f169"; } + +.fa.fa-youtube-play { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-youtube-play:before { + content: "\f167"; } + +.fa.fa-dropbox { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-stack-overflow { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-instagram { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-flickr { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-adn { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket-square:before { + content: "\f171"; } + +.fa.fa-tumblr { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-tumblr-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-tumblr-square:before { + content: "\f174"; } + +.fa.fa-long-arrow-down:before { + content: "\f309"; } + +.fa.fa-long-arrow-up:before { + content: "\f30c"; } + +.fa.fa-long-arrow-left:before { + content: "\f30a"; } + +.fa.fa-long-arrow-right:before { + content: "\f30b"; } + +.fa.fa-apple { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-windows { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-android { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-linux { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-dribbble { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-skype { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-foursquare { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-trello { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-gratipay { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-gittip { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-gittip:before { + content: "\f184"; } + +.fa.fa-sun-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-sun-o:before { + content: "\f185"; } + +.fa.fa-moon-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-moon-o:before { + content: "\f186"; } + +.fa.fa-vk { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-weibo { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-renren { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-pagelines { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-stack-exchange { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-right { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-right:before { + content: "\f35a"; } + +.fa.fa-arrow-circle-o-left { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-left:before { + content: "\f359"; } + +.fa.fa-caret-square-o-left { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-left:before { + content: "\f191"; } + +.fa.fa-toggle-left { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-toggle-left:before { + content: "\f191"; } + +.fa.fa-dot-circle-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-dot-circle-o:before { + content: "\f192"; } + +.fa.fa-vimeo-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-vimeo-square:before { + content: "\f194"; } + +.fa.fa-try:before { + content: "\e2bb"; } + +.fa.fa-turkish-lira:before { + content: "\e2bb"; } + +.fa.fa-plus-square-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-plus-square-o:before { + content: "\f0fe"; } + +.fa.fa-slack { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-wordpress { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-openid { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-institution:before { + content: "\f19c"; } + +.fa.fa-bank:before { + content: "\f19c"; } + +.fa.fa-mortar-board:before { + content: "\f19d"; } + +.fa.fa-yahoo { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-google { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-reddit { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-reddit-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-reddit-square:before { + content: "\f1a2"; } + +.fa.fa-stumbleupon-circle { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-stumbleupon { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-delicious { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-digg { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-pied-piper-pp { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-pied-piper-alt { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-drupal { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-joomla { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-behance { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-behance-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-behance-square:before { + content: "\f1b5"; } + +.fa.fa-steam { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-steam-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-steam-square:before { + content: "\f1b7"; } + +.fa.fa-automobile:before { + content: "\f1b9"; } + +.fa.fa-cab:before { + content: "\f1ba"; } + +.fa.fa-spotify { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-deviantart { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-soundcloud { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-file-pdf-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-pdf-o:before { + content: "\f1c1"; } + +.fa.fa-file-word-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-word-o:before { + content: "\f1c2"; } + +.fa.fa-file-excel-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-excel-o:before { + content: "\f1c3"; } + +.fa.fa-file-powerpoint-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-powerpoint-o:before { + content: "\f1c4"; } + +.fa.fa-file-image-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-image-o:before { + content: "\f1c5"; } + +.fa.fa-file-photo-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-photo-o:before { + content: "\f1c5"; } + +.fa.fa-file-picture-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-picture-o:before { + content: "\f1c5"; } + +.fa.fa-file-archive-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-archive-o:before { + content: "\f1c6"; } + +.fa.fa-file-zip-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-zip-o:before { + content: "\f1c6"; } + +.fa.fa-file-audio-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-audio-o:before { + content: "\f1c7"; } + +.fa.fa-file-sound-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-sound-o:before { + content: "\f1c7"; } + +.fa.fa-file-video-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-video-o:before { + content: "\f1c8"; } + +.fa.fa-file-movie-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-movie-o:before { + content: "\f1c8"; } + +.fa.fa-file-code-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-file-code-o:before { + content: "\f1c9"; } + +.fa.fa-vine { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-codepen { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-jsfiddle { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-life-bouy:before { + content: "\f1cd"; } + +.fa.fa-life-buoy:before { + content: "\f1cd"; } + +.fa.fa-life-saver:before { + content: "\f1cd"; } + +.fa.fa-support:before { + content: "\f1cd"; } + +.fa.fa-circle-o-notch:before { + content: "\f1ce"; } + +.fa.fa-rebel { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-ra { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-ra:before { + content: "\f1d0"; } + +.fa.fa-resistance { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-resistance:before { + content: "\f1d0"; } + +.fa.fa-empire { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-ge { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-ge:before { + content: "\f1d1"; } + +.fa.fa-git-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-git-square:before { + content: "\f1d2"; } + +.fa.fa-git { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-hacker-news { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator-square:before { + content: "\f1d4"; } + +.fa.fa-yc-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-yc-square:before { + content: "\f1d4"; } + +.fa.fa-tencent-weibo { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-qq { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-weixin { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-wechat { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-wechat:before { + content: "\f1d7"; } + +.fa.fa-send:before { + content: "\f1d8"; } + +.fa.fa-paper-plane-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-paper-plane-o:before { + content: "\f1d8"; } + +.fa.fa-send-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-send-o:before { + content: "\f1d8"; } + +.fa.fa-circle-thin { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-circle-thin:before { + content: "\f111"; } + +.fa.fa-header:before { + content: "\f1dc"; } + +.fa.fa-futbol-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-futbol-o:before { + content: "\f1e3"; } + +.fa.fa-soccer-ball-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-soccer-ball-o:before { + content: "\f1e3"; } + +.fa.fa-slideshare { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-twitch { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-yelp { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-newspaper-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-newspaper-o:before { + content: "\f1ea"; } + +.fa.fa-paypal { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-google-wallet { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-cc-visa { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-cc-mastercard { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-cc-discover { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-cc-amex { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-cc-paypal { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-cc-stripe { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-bell-slash-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-bell-slash-o:before { + content: "\f1f6"; } + +.fa.fa-trash:before { + content: "\f2ed"; } + +.fa.fa-copyright { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-eyedropper:before { + content: "\f1fb"; } + +.fa.fa-area-chart:before { + content: "\f1fe"; } + +.fa.fa-pie-chart:before { + content: "\f200"; } + +.fa.fa-line-chart:before { + content: "\f201"; } + +.fa.fa-lastfm { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-lastfm-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-lastfm-square:before { + content: "\f203"; } + +.fa.fa-ioxhost { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-angellist { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-cc { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-cc:before { + content: "\f20a"; } + +.fa.fa-ils:before { + content: "\f20b"; } + +.fa.fa-shekel:before { + content: "\f20b"; } + +.fa.fa-sheqel:before { + content: "\f20b"; } + +.fa.fa-buysellads { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-connectdevelop { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-dashcube { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-forumbee { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-leanpub { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-sellsy { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-shirtsinbulk { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-simplybuilt { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-skyatlas { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-diamond { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-diamond:before { + content: "\f3a5"; } + +.fa.fa-transgender:before { + content: "\f224"; } + +.fa.fa-intersex:before { + content: "\f224"; } + +.fa.fa-transgender-alt:before { + content: "\f225"; } + +.fa.fa-facebook-official { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-facebook-official:before { + content: "\f09a"; } + +.fa.fa-pinterest-p { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-whatsapp { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-hotel:before { + content: "\f236"; } + +.fa.fa-viacoin { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-medium { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-yc { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-yc:before { + content: "\f23b"; } + +.fa.fa-optin-monster { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-opencart { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-expeditedssl { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-battery-4:before { + content: "\f240"; } + +.fa.fa-battery:before { + content: "\f240"; } + +.fa.fa-battery-3:before { + content: "\f241"; } + +.fa.fa-battery-2:before { + content: "\f242"; } + +.fa.fa-battery-1:before { + content: "\f243"; } + +.fa.fa-battery-0:before { + content: "\f244"; } + +.fa.fa-object-group { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-object-ungroup { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-sticky-note-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-sticky-note-o:before { + content: "\f249"; } + +.fa.fa-cc-jcb { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-cc-diners-club { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-clone { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hourglass-o:before { + content: "\f254"; } + +.fa.fa-hourglass-1:before { + content: "\f251"; } + +.fa.fa-hourglass-2:before { + content: "\f252"; } + +.fa.fa-hourglass-3:before { + content: "\f253"; } + +.fa.fa-hand-rock-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-rock-o:before { + content: "\f255"; } + +.fa.fa-hand-grab-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-grab-o:before { + content: "\f255"; } + +.fa.fa-hand-paper-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-paper-o:before { + content: "\f256"; } + +.fa.fa-hand-stop-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-stop-o:before { + content: "\f256"; } + +.fa.fa-hand-scissors-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-scissors-o:before { + content: "\f257"; } + +.fa.fa-hand-lizard-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-lizard-o:before { + content: "\f258"; } + +.fa.fa-hand-spock-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-spock-o:before { + content: "\f259"; } + +.fa.fa-hand-pointer-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-pointer-o:before { + content: "\f25a"; } + +.fa.fa-hand-peace-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-hand-peace-o:before { + content: "\f25b"; } + +.fa.fa-registered { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-creative-commons { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-gg { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-gg-circle { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-odnoklassniki { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-odnoklassniki-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-odnoklassniki-square:before { + content: "\f264"; } + +.fa.fa-get-pocket { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-wikipedia-w { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-safari { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-chrome { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-firefox { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-opera { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-internet-explorer { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-television:before { + content: "\f26c"; } + +.fa.fa-contao { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-500px { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-amazon { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-calendar-plus-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-calendar-plus-o:before { + content: "\f271"; } + +.fa.fa-calendar-minus-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-calendar-minus-o:before { + content: "\f272"; } + +.fa.fa-calendar-times-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-calendar-times-o:before { + content: "\f273"; } + +.fa.fa-calendar-check-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-calendar-check-o:before { + content: "\f274"; } + +.fa.fa-map-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-map-o:before { + content: "\f279"; } + +.fa.fa-commenting:before { + content: "\f4ad"; } + +.fa.fa-commenting-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-commenting-o:before { + content: "\f4ad"; } + +.fa.fa-houzz { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-vimeo { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-vimeo:before { + content: "\f27d"; } + +.fa.fa-black-tie { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-fonticons { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-reddit-alien { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-edge { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-credit-card-alt:before { + content: "\f09d"; } + +.fa.fa-codiepie { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-modx { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-fort-awesome { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-usb { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-product-hunt { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-mixcloud { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-scribd { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-pause-circle-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-pause-circle-o:before { + content: "\f28b"; } + +.fa.fa-stop-circle-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-stop-circle-o:before { + content: "\f28d"; } + +.fa.fa-bluetooth { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-bluetooth-b { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-gitlab { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-wpbeginner { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-wpforms { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-envira { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-wheelchair-alt { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-wheelchair-alt:before { + content: "\f368"; } + +.fa.fa-question-circle-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-question-circle-o:before { + content: "\f059"; } + +.fa.fa-volume-control-phone:before { + content: "\f2a0"; } + +.fa.fa-asl-interpreting:before { + content: "\f2a3"; } + +.fa.fa-deafness:before { + content: "\f2a4"; } + +.fa.fa-hard-of-hearing:before { + content: "\f2a4"; } + +.fa.fa-glide { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-glide-g { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-signing:before { + content: "\f2a7"; } + +.fa.fa-viadeo { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-viadeo-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-viadeo-square:before { + content: "\f2aa"; } + +.fa.fa-snapchat { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-snapchat-ghost { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-snapchat-ghost:before { + content: "\f2ab"; } + +.fa.fa-snapchat-square { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-snapchat-square:before { + content: "\f2ad"; } + +.fa.fa-pied-piper { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-first-order { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-yoast { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-themeisle { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-official { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-official:before { + content: "\f2b3"; } + +.fa.fa-google-plus-circle { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-circle:before { + content: "\f2b3"; } + +.fa.fa-font-awesome { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-fa { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-fa:before { + content: "\f2b4"; } + +.fa.fa-handshake-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-handshake-o:before { + content: "\f2b5"; } + +.fa.fa-envelope-open-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-envelope-open-o:before { + content: "\f2b6"; } + +.fa.fa-linode { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-address-book-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-address-book-o:before { + content: "\f2b9"; } + +.fa.fa-vcard:before { + content: "\f2bb"; } + +.fa.fa-address-card-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-address-card-o:before { + content: "\f2bb"; } + +.fa.fa-vcard-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-vcard-o:before { + content: "\f2bb"; } + +.fa.fa-user-circle-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-user-circle-o:before { + content: "\f2bd"; } + +.fa.fa-user-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-user-o:before { + content: "\f007"; } + +.fa.fa-id-badge { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-drivers-license:before { + content: "\f2c2"; } + +.fa.fa-id-card-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-id-card-o:before { + content: "\f2c2"; } + +.fa.fa-drivers-license-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-drivers-license-o:before { + content: "\f2c2"; } + +.fa.fa-quora { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-free-code-camp { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-telegram { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-thermometer-4:before { + content: "\f2c7"; } + +.fa.fa-thermometer:before { + content: "\f2c7"; } + +.fa.fa-thermometer-3:before { + content: "\f2c8"; } + +.fa.fa-thermometer-2:before { + content: "\f2c9"; } + +.fa.fa-thermometer-1:before { + content: "\f2ca"; } + +.fa.fa-thermometer-0:before { + content: "\f2cb"; } + +.fa.fa-bathtub:before { + content: "\f2cd"; } + +.fa.fa-s15:before { + content: "\f2cd"; } + +.fa.fa-window-maximize { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-window-restore { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-times-rectangle:before { + content: "\f410"; } + +.fa.fa-window-close-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-window-close-o:before { + content: "\f410"; } + +.fa.fa-times-rectangle-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-times-rectangle-o:before { + content: "\f410"; } + +.fa.fa-bandcamp { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-grav { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-etsy { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-imdb { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-ravelry { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-eercast { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-eercast:before { + content: "\f2da"; } + +.fa.fa-snowflake-o { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; } + +.fa.fa-snowflake-o:before { + content: "\f2dc"; } + +.fa.fa-superpowers { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-wpexplorer { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } + +.fa.fa-meetup { + font-family: 'Font Awesome 6 Brands'; + font-weight: 400; } diff --git a/docs/deps/font-awesome-6.5.2/css/v4-shims.min.css b/docs/deps/font-awesome-6.5.2/css/v4-shims.min.css new file mode 100644 index 0000000..09baf5f --- /dev/null +++ b/docs/deps/font-awesome-6.5.2/css/v4-shims.min.css @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */ +.fa.fa-glass:before{content:"\f000"}.fa.fa-envelope-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-star-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-home:before{content:"\f015"}.fa.fa-file-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-list-alt:before{content:"\f022"}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-edit{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-edit:before{content:"\f044"}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart-o:before,.fa.fa-bar-chart:before{content:"\e0e3"}.fa.fa-twitter-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-twitter-square:before{content:"\f081"}.fa.fa-facebook-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-square:before{content:"\f082"}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-github-square:before{content:"\f092"}.fa.fa-lemon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-globe:before{content:"\f57d"}.fa.fa-tasks:before{content:"\f828"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-cut:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-save{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-save:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-magic:before{content:"\e2ca"}.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pinterest-square:before{content:"\f0d3"}.fa.fa-google-plus-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-square:before{content:"\f0d4"}.fa.fa-google-plus{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f625"}.fa.fa-comment-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard:before{content:"\f0ea"}.fa.fa-lightbulb-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f0ed"}.fa.fa-cloud-upload:before{content:"\f0ee"}.fa.fa-bell-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f5c0"}.fa.fa-star-half-empty{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f5c0"}.fa.fa-star-half-full{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f5c0"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before,.fa.fa-unlink:before{content:"\f127"}.fa.fa-calendar-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-unlock-alt:before{content:"\f09c"}.fa.fa-minus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\24"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\e1bc"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f884"}.fa.fa-sort-amount-desc:before{content:"\f160"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-youtube-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-square:before{content:"\f431"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-xing-square:before{content:"\f169"}.fa.fa-youtube-play{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-tumblr-square:before{content:"\f174"}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo-square:before{content:"\f194"}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\e2bb"}.fa.fa-plus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-google,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-yahoo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-reddit-square:before{content:"\f1a2"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-behance-square:before{content:"\f1b5"}.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-steam-square:before{content:"\f1b7"}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-life-bouy:before,.fa.fa-life-buoy:before,.fa.fa-life-saver:before,.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-git-square:before{content:"\f1d2"}.fa.fa-git,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-futbol-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-lastfm-square:before{content:"\f203"}.fa.fa-angellist,.fa.fa-ioxhost{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before,.fa.fa-transgender:before{content:"\f224"}.fa.fa-transgender-alt:before{content:"\f225"}.fa.fa-facebook-official{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-clone{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-creative-commons,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-odnoklassniki-square:before{content:"\f264"}.fa.fa-chrome,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-internet-explorer,.fa.fa-opera,.fa.fa-safari,.fa.fa-wikipedia-w{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-viadeo,.fa.fa-viadeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-viadeo-square:before{content:"\f2aa"}.fa.fa-snapchat,.fa.fa-snapchat-ghost{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-ghost:before{content:"\f2ab"}.fa.fa-snapchat-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-square:before{content:"\f2ad"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-themeisle,.fa.fa-yoast{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-meetup,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 6 Brands";font-weight:400} \ No newline at end of file diff --git a/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.ttf b/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.ttf new file mode 100644 index 0000000..1fbb1f7 Binary files /dev/null and b/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.ttf differ diff --git a/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.woff2 b/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.woff2 new file mode 100644 index 0000000..5d28021 Binary files /dev/null and b/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.woff2 differ diff --git a/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.ttf b/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.ttf new file mode 100644 index 0000000..549d68d Binary files /dev/null and b/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.ttf differ diff --git a/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.woff2 b/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.woff2 new file mode 100644 index 0000000..18400d7 Binary files /dev/null and b/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.woff2 differ diff --git a/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.ttf b/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.ttf new file mode 100644 index 0000000..bb2a869 Binary files /dev/null and b/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.ttf differ diff --git a/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.woff2 b/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.woff2 new file mode 100644 index 0000000..758dd4f Binary files /dev/null and b/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.woff2 differ diff --git a/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.ttf b/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.ttf new file mode 100644 index 0000000..8c5864c Binary files /dev/null and b/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.ttf differ diff --git a/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.woff2 b/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.woff2 new file mode 100644 index 0000000..f94bec2 Binary files /dev/null and b/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.woff2 differ diff --git a/docs/deps/headroom-0.11.0/headroom.min.js b/docs/deps/headroom-0.11.0/headroom.min.js new file mode 100644 index 0000000..433069f --- /dev/null +++ b/docs/deps/headroom-0.11.0/headroom.min.js @@ -0,0 +1,7 @@ +/*! + * headroom.js v0.11.0 - Give your page some headroom. Hide your header until you need it + * Copyright (c) 2020 Nick Williams - http://wicky.nillia.ms/headroom.js + * License: MIT + */ + +!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(t=t||self).Headroom=n()}(this,function(){"use strict";function t(){return"undefined"!=typeof window}function d(t){return function(t){return t&&t.document&&function(t){return 9===t.nodeType}(t.document)}(t)?function(t){var n=t.document,o=n.body,s=n.documentElement;return{scrollHeight:function(){return Math.max(o.scrollHeight,s.scrollHeight,o.offsetHeight,s.offsetHeight,o.clientHeight,s.clientHeight)},height:function(){return t.innerHeight||s.clientHeight||o.clientHeight},scrollY:function(){return void 0!==t.pageYOffset?t.pageYOffset:(s||o.parentNode||o).scrollTop}}}(t):function(t){return{scrollHeight:function(){return Math.max(t.scrollHeight,t.offsetHeight,t.clientHeight)},height:function(){return Math.max(t.offsetHeight,t.clientHeight)},scrollY:function(){return t.scrollTop}}}(t)}function n(t,s,e){var n,o=function(){var n=!1;try{var t={get passive(){n=!0}};window.addEventListener("test",t,t),window.removeEventListener("test",t,t)}catch(t){n=!1}return n}(),i=!1,r=d(t),l=r.scrollY(),a={};function c(){var t=Math.round(r.scrollY()),n=r.height(),o=r.scrollHeight();a.scrollY=t,a.lastScrollY=l,a.direction=ls.tolerance[a.direction],e(a),l=t,i=!1}function h(){i||(i=!0,n=requestAnimationFrame(c))}var u=!!o&&{passive:!0,capture:!1};return t.addEventListener("scroll",h,u),c(),{destroy:function(){cancelAnimationFrame(n),t.removeEventListener("scroll",h,u)}}}function o(t,n){n=n||{},Object.assign(this,o.options,n),this.classes=Object.assign({},o.options.classes,n.classes),this.elem=t,this.tolerance=function(t){return t===Object(t)?t:{down:t,up:t}}(this.tolerance),this.initialised=!1,this.frozen=!1}return o.prototype={constructor:o,init:function(){return o.cutsTheMustard&&!this.initialised&&(this.addClass("initial"),this.initialised=!0,setTimeout(function(t){t.scrollTracker=n(t.scroller,{offset:t.offset,tolerance:t.tolerance},t.update.bind(t))},100,this)),this},destroy:function(){this.initialised=!1,Object.keys(this.classes).forEach(this.removeClass,this),this.scrollTracker.destroy()},unpin:function(){!this.hasClass("pinned")&&this.hasClass("unpinned")||(this.addClass("unpinned"),this.removeClass("pinned"),this.onUnpin&&this.onUnpin.call(this))},pin:function(){this.hasClass("unpinned")&&(this.addClass("pinned"),this.removeClass("unpinned"),this.onPin&&this.onPin.call(this))},freeze:function(){this.frozen=!0,this.addClass("frozen")},unfreeze:function(){this.frozen=!1,this.removeClass("frozen")},top:function(){this.hasClass("top")||(this.addClass("top"),this.removeClass("notTop"),this.onTop&&this.onTop.call(this))},notTop:function(){this.hasClass("notTop")||(this.addClass("notTop"),this.removeClass("top"),this.onNotTop&&this.onNotTop.call(this))},bottom:function(){this.hasClass("bottom")||(this.addClass("bottom"),this.removeClass("notBottom"),this.onBottom&&this.onBottom.call(this))},notBottom:function(){this.hasClass("notBottom")||(this.addClass("notBottom"),this.removeClass("bottom"),this.onNotBottom&&this.onNotBottom.call(this))},shouldUnpin:function(t){return"down"===t.direction&&!t.top&&t.toleranceExceeded},shouldPin:function(t){return"up"===t.direction&&t.toleranceExceeded||t.top},addClass:function(t){this.elem.classList.add.apply(this.elem.classList,this.classes[t].split(" "))},removeClass:function(t){this.elem.classList.remove.apply(this.elem.classList,this.classes[t].split(" "))},hasClass:function(t){return this.classes[t].split(" ").every(function(t){return this.classList.contains(t)},this.elem)},update:function(t){t.isOutOfBounds||!0!==this.frozen&&(t.top?this.top():this.notTop(),t.bottom?this.bottom():this.notBottom(),this.shouldUnpin(t)?this.unpin():this.shouldPin(t)&&this.pin())}},o.options={tolerance:{up:0,down:0},offset:0,scroller:t()?window:null,classes:{frozen:"headroom--frozen",pinned:"headroom--pinned",unpinned:"headroom--unpinned",top:"headroom--top",notTop:"headroom--not-top",bottom:"headroom--bottom",notBottom:"headroom--not-bottom",initial:"headroom"}},o.cutsTheMustard=!!(t()&&function(){}.bind&&"classList"in document.documentElement&&Object.assign&&Object.keys&&requestAnimationFrame),o}); \ No newline at end of file diff --git a/docs/deps/headroom-0.11.0/jQuery.headroom.min.js b/docs/deps/headroom-0.11.0/jQuery.headroom.min.js new file mode 100644 index 0000000..17f70c9 --- /dev/null +++ b/docs/deps/headroom-0.11.0/jQuery.headroom.min.js @@ -0,0 +1,7 @@ +/*! + * headroom.js v0.9.4 - Give your page some headroom. Hide your header until you need it + * Copyright (c) 2017 Nick Williams - http://wicky.nillia.ms/headroom.js + * License: MIT + */ + +!function(a){a&&(a.fn.headroom=function(b){return this.each(function(){var c=a(this),d=c.data("headroom"),e="object"==typeof b&&b;e=a.extend(!0,{},Headroom.options,e),d||(d=new Headroom(this,e),d.init(),c.data("headroom",d)),"string"==typeof b&&(d[b](),"destroy"===b&&c.removeData("headroom"))})},a("[data-headroom]").each(function(){var b=a(this);b.headroom(b.data())}))}(window.Zepto||window.jQuery); \ No newline at end of file diff --git a/docs/deps/jquery-3.6.0/jquery-3.6.0.js b/docs/deps/jquery-3.6.0/jquery-3.6.0.js new file mode 100644 index 0000000..fc6c299 --- /dev/null +++ b/docs/deps/jquery-3.6.0/jquery-3.6.0.js @@ -0,0 +1,10881 @@ +/*! + * jQuery JavaScript Library v3.6.0 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright OpenJS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2021-03-02T17:08Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var flat = arr.flat ? function( array ) { + return arr.flat.call( array ); +} : function( array ) { + return arr.concat.apply( [], array ); +}; + + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + +var isFunction = function isFunction( obj ) { + + // Support: Chrome <=57, Firefox <=52 + // In some browsers, typeof returns "function" for HTML elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + // Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5 + // Plus for old WebKit, typeof returns "function" for HTML collections + // (e.g., `typeof document.getElementsByTagName("div") === "function"`). (gh-4756) + return typeof obj === "function" && typeof obj.nodeType !== "number" && + typeof obj.item !== "function"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + +var document = window.document; + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.6.0", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return flat( ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), + function( _i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); + } ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.6 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2021-02-16 + */ +( function( window ) { +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ( {} ).hasOwnProperty, + arr = [], + pop = arr.pop, + pushNative = arr.push, + push = arr.push, + slice = arr.slice, + + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[ i ] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + + "ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram + identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + + // "Attribute values must be CSS identifiers [capture 5] + // or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + return nonHex ? + + // Strip the backslash prefix from a non-hex escape sequence + nonHex : + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + ( arr = slice.call( preferredDoc.childNodes ) ), + preferredDoc.childNodes + ); + + // Support: Android<4.0 + // Detect silently failing push.apply + // eslint-disable-next-line no-unused-expressions + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + pushNative.apply( target, slice.call( els ) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + + // Can't trust NodeList.length + while ( ( target[ j++ ] = els[ i++ ] ) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + setDocument( context ); + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { + + // ID selector + if ( ( m = match[ 1 ] ) ) { + + // Document context + if ( nodeType === 9 ) { + if ( ( elem = context.getElementById( m ) ) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && ( elem = newContext.getElementById( m ) ) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[ 2 ] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && + + // Support: IE 8 only + // Exclude object elements + ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && + ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + + // We can use :scope instead of the ID hack if the browser + // supports it & if we're not changing the context. + if ( newContext !== context || !support.scope ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", ( nid = expando ) ); + } + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); + } + newSelector = groups.join( "," ); + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return ( cache[ key + " " ] = value ); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement( "fieldset" ); + + try { + return !!fn( el ); + } catch ( e ) { + return false; + } finally { + + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split( "|" ), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[ i ] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( ( cur = cur.nextSibling ) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return ( name === "input" || name === "button" ) && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction( function( argument ) { + argument = +argument; + return markFunction( function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); + } + } + } ); + } ); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem && elem.namespaceURI, + docElem = elem && ( elem.ownerDocument || elem ).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9 - 11+, Edge 12 - 18+ + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( preferredDoc != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, + // Safari 4 - 5 only, Opera <=11.6 - 12.x only + // IE/Edge & older browsers don't support the :scope pseudo-class. + // Support: Safari 6.0 only + // Safari 6.0 supports :scope but it's an alias of :root there. + support.scope = assert( function( el ) { + docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); + return typeof el.querySelectorAll !== "undefined" && + !el.querySelectorAll( ":scope fieldset div" ).length; + } ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert( function( el ) { + el.className = "i"; + return !el.getAttribute( "className" ); + } ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert( function( el ) { + el.appendChild( document.createComment( "" ) ); + return !el.getElementsByTagName( "*" ).length; + } ); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert( function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + } ); + + // ID filter and find + if ( support.getById ) { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute( "id" ) === attrId; + }; + }; + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode( "id" ); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( ( elem = elems[ i++ ] ) ) { + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find[ "TAG" ] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert( function( el ) { + + var input; + + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll( "[selected]" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push( "~=" ); + } + + // Support: IE 11+, Edge 15 - 18+ + // IE 11/Edge don't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + // Interestingly, IE 10 & older don't seem to have the issue. + input = document.createElement( "input" ); + input.setAttribute( "name", "" ); + el.appendChild( input ); + if ( !el.querySelectorAll( "[name='']" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll( ":checked" ).length ) { + rbuggyQSA.push( ":checked" ); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push( ".#.+[+~]" ); + } + + // Support: Firefox <=3.6 - 5 only + // Old Firefox doesn't throw on a badly-escaped identifier. + el.querySelectorAll( "\\\f" ); + rbuggyQSA.push( "[\\r\\n\\f]" ); + } ); + + assert( function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement( "input" ); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll( "[name=d]" ).length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: Opera 10 - 11 only + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll( "*,:x" ); + rbuggyQSA.push( ",.*:" ); + } ); + } + + if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector ) ) ) ) { + + assert( function( el ) { + + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + } ); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + ) ); + } : + function( a, b ) { + if ( b ) { + while ( ( b = b.parentNode ) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { + + // Choose the first element that is related to our preferred document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document || a.ownerDocument == preferredDoc && + contains( preferredDoc, a ) ) { + return -1; + } + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document || b.ownerDocument == preferredDoc && + contains( preferredDoc, b ) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + return a == document ? -1 : + b == document ? 1 : + /* eslint-enable eqeqeq */ + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( ( cur = cur.parentNode ) ) { + ap.unshift( cur ); + } + cur = b; + while ( ( cur = cur.parentNode ) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[ i ] === bp[ i ] ) { + i++; + } + + return i ? + + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[ i ], bp[ i ] ) : + + // Otherwise nodes in our document sort first + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + ap[ i ] == preferredDoc ? -1 : + bp[ i ] == preferredDoc ? 1 : + /* eslint-enable eqeqeq */ + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + setDocument( elem ); + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch ( e ) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( context.ownerDocument || context ) != document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( elem.ownerDocument || elem ) != document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return ( sel + "" ).replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + + // If no nodeType, this is expected to be an array + while ( ( node = elem[ i++ ] ) ) { + + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[ 1 ] = match[ 1 ].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[ 3 ] = ( match[ 3 ] || match[ 4 ] || + match[ 5 ] || "" ).replace( runescape, funescape ); + + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { + + // nth-* requires argument + if ( !match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); + + // other types prohibit arguments + } else if ( match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[ 6 ] && match[ 2 ]; + + if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + + // Get excess from tokenize (recursively) + ( excess = tokenize( unquoted, true ) ) && + + // advance to the next closing parenthesis + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { + + // excess is a negative index + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { + return true; + } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + ( pattern = new RegExp( "(^|" + whitespace + + ")" + className + "(" + whitespace + "|$)" ) ) && classCache( + className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + /* eslint-disable max-len */ + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + /* eslint-enable max-len */ + + }; + }, + + "CHILD": function( type, what, _argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, _context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( ( node = node[ dir ] ) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( ( node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + + // Use previously-cached element index if available + if ( useCache ) { + + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + + // Use the same loop as above to seek `elem` from the start + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || + ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction( function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[ i ] ); + seed[ idx ] = !( matches[ idx ] = matched[ i ] ); + } + } ) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + + // Potentially complex pseudos + "not": markFunction( function( selector ) { + + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction( function( seed, matches, _context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); + } + } + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; + matcher( input, null, xml, results ); + + // Don't keep the element (issue #299) + input[ 0 ] = null; + return !results.pop(); + }; + } ), + + "has": markFunction( function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + } ), + + "contains": markFunction( function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + } ), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + + // lang value must be a valid identifier + if ( !ridentifier.test( lang || "" ) ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( ( elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); + return false; + }; + } ), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && + ( !document.hasFocus || document.hasFocus() ) && + !!( elem.type || elem.href || ~elem.tabIndex ); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return ( nodeName === "input" && !!elem.checked ) || + ( nodeName === "option" && !!elem.selected ); + }, + + "selected": function( elem ) { + + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos[ "empty" ]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( ( attr = elem.getAttribute( "type" ) ) == null || + attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo( function() { + return [ 0 ]; + } ), + + "last": createPositionalPseudo( function( _matchIndexes, length ) { + return [ length - 1 ]; + } ), + + "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + } ), + + "even": createPositionalPseudo( function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "odd": createPositionalPseudo( function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ) + } +}; + +Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { + if ( match ) { + + // Don't consume trailing commas as valid + soFar = soFar.slice( match[ 0 ].length ) || soFar; + } + groups.push( ( tokens = [] ) ); + } + + matched = false; + + // Combinators + if ( ( match = rcombinators.exec( soFar ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + + // Cast descendant combinators to space + type: match[ 0 ].replace( rtrim, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[ i ].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || ( elem[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || + ( outerCache[ elem.uniqueID ] = {} ); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( ( oldCache = uniqueCache[ key ] ) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return ( newCache[ 2 ] = oldCache[ 2 ] ); + } else { + + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[ i ]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[ 0 ]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[ i ], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( ( elem = unmatched[ i ] ) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction( function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( + selector || "*", + context.nodeType ? [ context ] : context, + [] + ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) ) { + + // Restore matcherIn since elem is not yet a final match + temp.push( ( matcherIn[ i ] = elem ) ); + } + } + postFinder( null, ( matcherOut = [] ), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { + + seed[ temp ] = !( results[ temp ] = elem ); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + } ); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || Expr.relative[ " " ], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + ( checkContext = context ).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[ j ].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens + .slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), + + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), + len = elems.length; + + if ( outermost ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + + // They will have gone through all possible matchers + if ( ( elem = !matcher && elem ) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( ( matcher = setMatchers[ j++ ] ) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[ i ] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( + selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) + ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { + + context = ( Expr.find[ "ID" ]( token.matches[ 0 ] + .replace( runescape, funescape ), context ) || [] )[ 0 ]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[ i ]; + + // Abort if we hit a combinator + if ( Expr.relative[ ( type = token.type ) ] ) { + break; + } + if ( ( find = Expr.find[ type ] ) ) { + + // Search, expanding context for leading sibling combinators + if ( ( seed = find( + token.matches[ 0 ].replace( runescape, funescape ), + rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || + context + ) ) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert( function( el ) { + + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +} ); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert( function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute( "href" ) === "#"; +} ) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + } ); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert( function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +} ) ) { + addHandle( "value", function( elem, _name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + } ); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert( function( el ) { + return el.getAttribute( "disabled" ) == null; +} ) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; + } + } ); +} + +return Sizzle; + +} )( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +} +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, _i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, _i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, _i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( _i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the primary Deferred + primary = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + primary.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( primary.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return primary.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), primary.reject ); + } + + return primary.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, _key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( _all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; + + // Support: IE <=9 only + // IE <=9 replaces "; + support.option = !!div.lastChild; +} )(); + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
    " ], + col: [ 2, "", "
    " ], + tr: [ 2, "", "
    " ], + td: [ 3, "", "
    " ], + + _default: [ 0, "", "" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +var rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + + // Support: Chrome 86+ + // In Chrome, if an element having a focusout handler is blurred by + // clicking outside of it, it invokes the handler synchronously. If + // that handler calls `.remove()` on the element, the data is cleared, + // leaving `result` undefined. We need to guard against this. + return result && result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + which: true +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + // Suppress native focus or blur as it's already being fired + // in leverageNative. + _default: function() { + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.get( src ); + events = pdataOld.events; + + if ( events ) { + dataPriv.remove( dest, "handle events" ); + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + }, doc ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html; + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableTrDimensionsVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + // + // Support: Firefox 70+ + // Only Firefox includes border widths + // in computed dimensions. (gh-4529) + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px;border-collapse:separate"; + tr.style.cssText = "border:1px solid"; + + // Support: Chrome 86+ + // Height set through cssText does not get applied. + // Computed height then comes back as 0. + tr.style.height = "1px"; + trChild.style.height = "9px"; + + // Support: Android 8 Chrome 86+ + // In our bodyBackground.html iframe, + // display for all div elements is set to "inline", + // which causes a problem only in Android 8 Chrome 86. + // Ensuring the div is display: block + // gets around this issue. + trChild.style.display = "block"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = ( parseInt( trStyle.height, 10 ) + + parseInt( trStyle.borderTopWidth, 10 ) + + parseInt( trStyle.borderBottomWidth, 10 ) ) === tr.offsetHeight; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( dataPriv.get( cur, "events" ) || Object.create( null ) )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml, parserErrorElem; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) {} + + parserErrorElem = xml && xml.getElementsByTagName( "parsererror" )[ 0 ]; + if ( !xml || parserErrorElem ) { + jQuery.error( "Invalid XML: " + ( + parserErrorElem ? + jQuery.map( parserErrorElem.childNodes, function( el ) { + return el.textContent; + } ).join( "\n" ) : + data + ) ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ).filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ).map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + +originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script but not if jsonp + if ( !isSuccess && + jQuery.inArray( "script", s.dataTypes ) > -1 && + jQuery.inArray( "json", s.dataTypes ) < 0 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( " - - - + + + + + + + - - -
    -
    -
    -
    - +
    +
    +
    +

    A repository for exploring and identifying the best journals in which to publish a paper.

    -
    -

    -Installation

    +
    +

    Installation +

    This package is only available on GitHub.

    -
    install.packages("devtools")
    -library(devtools)
    -install_github("vallenderlab/JournalAnalysis")
    +
    +install.packages("devtools")
    +library(devtools)
    +install_github("vallenderlab/JournalAnalysis")
    -
    -

    -Usage

    +
    +

    Usage +

    • Choose an Impact Factor dataset (scimago or incities).
    • @@ -99,145 +73,166 @@

    • Adjust the filtering parameters, and change the names of the files that will be produced.
    -
    -

    -Example

    +
    +

    Example +

    Below is a simple example. You can also view our example vignette.

    -
    > library(JournalAnalysis)
    -> pub_data <- get_publication_data(journal_source = "scimago", queries = c(query1, query2), limit = 1000, min_citations = 20)
    -14588 records found, returning 1000
    -(-) [=================================================] 100%
    -4005 records found, returning 1000
    -(/) [=================================================] 100%
    -Removed records published before 2008.
    -Removed records published after 2018.
    -Removed records with less than 20 citations.
    -Removed records with NA values for pmid, doi, and authors.
    -30 records passed the filter.
    -There were 30 warnings (use warnings() to see them)
    ->
    ->
    ->
    -> pub_data$journals
    -
    -# A tibble: 22 x 18
    -    Rank Title          Type     SJR SJR.Best.Quarti~ H.index Total.Docs...20~ Total.Docs...3ye~ Total.Refs.
    -   <int> <fct>          <fct>  <dbl> <fct>              <int>            <int>             <int>       <int>
    - 1     6 Cell           journ~ 26.9  Q1                   655              693              1885       29440
    - 2    20 Nature         journ~ 18.1  Q1                  1011             2661              8198       43004
    - 3    30 Nature Immuno~ journ~ 14.5  Q1                   323              224               707        9749
    - 4    38 Science        journ~ 13.5  Q1                   978             2079              6670       36734
    - 5   138 Trends in Neu~ journ~  7.27 Q1                   254               84               264        6905
    - 6   147 American Jour~ journ~  7.14 Q1                   266              245               616        9620
    - 7   154 Molecular Psy~ journ~  6.92 Q1                   180              328               652       13379
    - 8   189 Biological Ps~ journ~  6.04 Q1                   273              382               982       14362
    - 9   256 Nature Review~ journ~  5.03 Q1                   104              225               867        8184
    -10   381 European Jour~ journ~  4.01 Q1                    87              126               322        5231
    -# ... with 12 more rows, and 9 more variables: Total.Cites..3years. <int>, Citable.Docs...3years. <int>,
    -#   Cites...Doc...2years. <dbl>, Ref....Doc. <dbl>, Country <fct>, Categories <fct>, ISSN <chr>,
    -#   ISSN.1 <fct>, ISSN.2 <fct>
    ->
    ->
    ->
    -> pub_data$articles
    -
    -# A tibble: 30 x 29
    -   id     source pmid  doi   title authorString journalTitle pubYear journalIssn pubType isOpenAccess inEPMC
    -   <chr>  <chr>  <chr> <chr> <chr> <chr>        <chr>        <chr>   <chr>       <chr>   <chr>        <chr> 
    - 1 25815~ MED    2581~ 10.1~ Prom~ Fontana L, ~ Cell         2015    "00928674;~ "resea~ N            Y     
    - 2 27981~ MED    2798~ 10.1~ The ~ Rea K, Dina~ Neurobiol S~ 2016    23522895    "revie~ Y            Y     
    - 3 26912~ MED    2691~ 10.1~ Grow~ Luczynski P~ Int J Neuro~ 2016    "14611457;~ "resea~ Y            Y     
    - 4 27641~ MED    2764~ 10.1~ Gut ~ Dinan TG, C~ J Physiol    2017    "00223751;~ "revie~ N            N     
    - 5 28242~ MED    2824~ 10.1~ Targ~ Burokas A, ~ Biol Psychi~ 2017    "00063223;~ journa~ N            N     
    - 6 27090~ MED    2709~ 10.1~ From~ Rogers GB, ~ Mol Psychia~ 2016    "13594184;~ "revie~ Y            Y     
    - 7 28186~ MED    2818~ 10.1~ The ~ Simon DW, M~ Nat Rev Neu~ 2017    "17594758;~ "resea~ N            Y     
    - 8 28686~ MED    2868~ 10.1~ 10 Y~ Visscher PM~ Am J Hum Ge~ 2017    "00029297;~ "revie~ N            Y     
    - 9 27793~ MED    2779~ 10.1~ Psyc~ Sarkar A, L~ Trends Neur~ 2016    "01662236;~ "resea~ Y            Y     
    -10 28475~ MED    2847~ 10.1~ Meta~ Buck MD, So~ Cell         2017    "00928674;~ "resea~ N            Y     
    -# ... with 20 more rows, and 17 more variables: inPMC <chr>, hasPDF <chr>, hasBook <chr>,
    -#   citedByCount <int>, hasReferences <chr>, hasTextMinedTerms <chr>, hasDbCrossReferences <chr>,
    -#   hasLabsLinks <chr>, hasTMAccessionNumbers <chr>, firstPublicationDate <chr>, pageInfo <chr>,
    -#   pmcid <chr>, issue <chr>, journalVolume <chr>, hasSuppl <chr>, ISSN.1 <fct>, ISSN.2 <fct>
    ->
    ->
    ->
    -> pub_data$combined
    -
    -# A tibble: 30 x 48
    -   id     source pmid  doi   title authorString journalTitle pubYear journalIssn pubType isOpenAccess inEPMC
    -   <chr>  <chr>  <chr> <chr> <chr> <chr>        <chr>        <chr>   <chr>       <chr>   <chr>        <chr> 
    - 1 25815~ MED    2581~ 10.1~ Prom~ Fontana L, ~ Cell         2015    "00928674;~ "resea~ N            Y     
    - 2 27981~ MED    2798~ 10.1~ The ~ Rea K, Dina~ Neurobiol S~ 2016    23522895    "revie~ Y            Y     
    - 3 26912~ MED    2691~ 10.1~ Grow~ Luczynski P~ Int J Neuro~ 2016    "14611457;~ "resea~ Y            Y     
    - 4 27641~ MED    2764~ 10.1~ Gut ~ Dinan TG, C~ J Physiol    2017    "00223751;~ "revie~ N            N     
    - 5 28242~ MED    2824~ 10.1~ Targ~ Burokas A, ~ Biol Psychi~ 2017    "00063223;~ journa~ N            N     
    - 6 27090~ MED    2709~ 10.1~ From~ Rogers GB, ~ Mol Psychia~ 2016    "13594184;~ "revie~ Y            Y     
    - 7 28186~ MED    2818~ 10.1~ The ~ Simon DW, M~ Nat Rev Neu~ 2017    "17594758;~ "resea~ N            Y     
    - 8 28686~ MED    2868~ 10.1~ 10 Y~ Visscher PM~ Am J Hum Ge~ 2017    "00029297;~ "revie~ N            Y     
    - 9 27793~ MED    2779~ 10.1~ Psyc~ Sarkar A, L~ Trends Neur~ 2016    "01662236;~ "resea~ Y            Y     
    -10 28475~ MED    2847~ 10.1~ Meta~ Buck MD, So~ Cell         2017    "00928674;~ "resea~ N            Y     
    -# ... with 20 more rows, and 36 more variables: inPMC <chr>, hasPDF <chr>, hasBook <chr>,
    -#   citedByCount <int>, hasReferences <chr>, hasTextMinedTerms <chr>, hasDbCrossReferences <chr>,
    -#   hasLabsLinks <chr>, hasTMAccessionNumbers <chr>, firstPublicationDate <chr>, pageInfo <chr>,
    -#   pmcid <chr>, issue <chr>, journalVolume <chr>, hasSuppl <chr>, ISSN.1 <chr>, ISSN.2.x <fct>, Rank <int>,
    -#   Title <fct>, Type <fct>, SJR <dbl>, SJR.Best.Quartile <fct>, H.index <int>, Total.Docs...2016. <int>,
    -#   Total.Docs...3years. <int>, Total.Refs. <int>, Total.Cites..3years. <int>, Citable.Docs...3years. <int>,
    -#   Cites...Doc...2years. <dbl>, Ref....Doc. <dbl>, Country <fct>, Categories <fct>, ISSN <chr>,
    -#   ISSN.2.y <fct>, ISSN.2 <fct>, ISSN.1.y <fct>
    +
    > library(JournalAnalysis)
    +> pub_data <- get_publication_data(journal_source = "scimago", queries = c(query1, query2), limit = 1000, min_citations = 20)
    +14588 records found, returning 1000
    +(-) [=================================================] 100%
    +4005 records found, returning 1000
    +(/) [=================================================] 100%
    +Removed records published before 2008.
    +Removed records published after 2018.
    +Removed records with less than 20 citations.
    +Removed records with NA values for pmid, doi, and authors.
    +30 records passed the filter.
    +There were 30 warnings (use warnings() to see them)
    +>
    +>
    +>
    +> pub_data$journals
    +
    +# A tibble: 22 x 18
    +    Rank Title          Type     SJR SJR.Best.Quarti~ H.index Total.Docs...20~ Total.Docs...3ye~ Total.Refs.
    +   <int> <fct>          <fct>  <dbl> <fct>              <int>            <int>             <int>       <int>
    + 1     6 Cell           journ~ 26.9  Q1                   655              693              1885       29440
    + 2    20 Nature         journ~ 18.1  Q1                  1011             2661              8198       43004
    + 3    30 Nature Immuno~ journ~ 14.5  Q1                   323              224               707        9749
    + 4    38 Science        journ~ 13.5  Q1                   978             2079              6670       36734
    + 5   138 Trends in Neu~ journ~  7.27 Q1                   254               84               264        6905
    + 6   147 American Jour~ journ~  7.14 Q1                   266              245               616        9620
    + 7   154 Molecular Psy~ journ~  6.92 Q1                   180              328               652       13379
    + 8   189 Biological Ps~ journ~  6.04 Q1                   273              382               982       14362
    + 9   256 Nature Review~ journ~  5.03 Q1                   104              225               867        8184
    +10   381 European Jour~ journ~  4.01 Q1                    87              126               322        5231
    +# ... with 12 more rows, and 9 more variables: Total.Cites..3years. <int>, Citable.Docs...3years. <int>,
    +#   Cites...Doc...2years. <dbl>, Ref....Doc. <dbl>, Country <fct>, Categories <fct>, ISSN <chr>,
    +#   ISSN.1 <fct>, ISSN.2 <fct>
    +>
    +>
    +>
    +> pub_data$articles
    +
    +# A tibble: 30 x 29
    +   id     source pmid  doi   title authorString journalTitle pubYear journalIssn pubType isOpenAccess inEPMC
    +   <chr>  <chr>  <chr> <chr> <chr> <chr>        <chr>        <chr>   <chr>       <chr>   <chr>        <chr> 
    + 1 25815~ MED    2581~ 10.1~ Prom~ Fontana L, ~ Cell         2015    "00928674;~ "resea~ N            Y     
    + 2 27981~ MED    2798~ 10.1~ The ~ Rea K, Dina~ Neurobiol S~ 2016    23522895    "revie~ Y            Y     
    + 3 26912~ MED    2691~ 10.1~ Grow~ Luczynski P~ Int J Neuro~ 2016    "14611457;~ "resea~ Y            Y     
    + 4 27641~ MED    2764~ 10.1~ Gut ~ Dinan TG, C~ J Physiol    2017    "00223751;~ "revie~ N            N     
    + 5 28242~ MED    2824~ 10.1~ Targ~ Burokas A, ~ Biol Psychi~ 2017    "00063223;~ journa~ N            N     
    + 6 27090~ MED    2709~ 10.1~ From~ Rogers GB, ~ Mol Psychia~ 2016    "13594184;~ "revie~ Y            Y     
    + 7 28186~ MED    2818~ 10.1~ The ~ Simon DW, M~ Nat Rev Neu~ 2017    "17594758;~ "resea~ N            Y     
    + 8 28686~ MED    2868~ 10.1~ 10 Y~ Visscher PM~ Am J Hum Ge~ 2017    "00029297;~ "revie~ N            Y     
    + 9 27793~ MED    2779~ 10.1~ Psyc~ Sarkar A, L~ Trends Neur~ 2016    "01662236;~ "resea~ Y            Y     
    +10 28475~ MED    2847~ 10.1~ Meta~ Buck MD, So~ Cell         2017    "00928674;~ "resea~ N            Y     
    +# ... with 20 more rows, and 17 more variables: inPMC <chr>, hasPDF <chr>, hasBook <chr>,
    +#   citedByCount <int>, hasReferences <chr>, hasTextMinedTerms <chr>, hasDbCrossReferences <chr>,
    +#   hasLabsLinks <chr>, hasTMAccessionNumbers <chr>, firstPublicationDate <chr>, pageInfo <chr>,
    +#   pmcid <chr>, issue <chr>, journalVolume <chr>, hasSuppl <chr>, ISSN.1 <fct>, ISSN.2 <fct>
    +>
    +>
    +>
    +> pub_data$combined
    +
    +# A tibble: 30 x 48
    +   id     source pmid  doi   title authorString journalTitle pubYear journalIssn pubType isOpenAccess inEPMC
    +   <chr>  <chr>  <chr> <chr> <chr> <chr>        <chr>        <chr>   <chr>       <chr>   <chr>        <chr> 
    + 1 25815~ MED    2581~ 10.1~ Prom~ Fontana L, ~ Cell         2015    "00928674;~ "resea~ N            Y     
    + 2 27981~ MED    2798~ 10.1~ The ~ Rea K, Dina~ Neurobiol S~ 2016    23522895    "revie~ Y            Y     
    + 3 26912~ MED    2691~ 10.1~ Grow~ Luczynski P~ Int J Neuro~ 2016    "14611457;~ "resea~ Y            Y     
    + 4 27641~ MED    2764~ 10.1~ Gut ~ Dinan TG, C~ J Physiol    2017    "00223751;~ "revie~ N            N     
    + 5 28242~ MED    2824~ 10.1~ Targ~ Burokas A, ~ Biol Psychi~ 2017    "00063223;~ journa~ N            N     
    + 6 27090~ MED    2709~ 10.1~ From~ Rogers GB, ~ Mol Psychia~ 2016    "13594184;~ "revie~ Y            Y     
    + 7 28186~ MED    2818~ 10.1~ The ~ Simon DW, M~ Nat Rev Neu~ 2017    "17594758;~ "resea~ N            Y     
    + 8 28686~ MED    2868~ 10.1~ 10 Y~ Visscher PM~ Am J Hum Ge~ 2017    "00029297;~ "revie~ N            Y     
    + 9 27793~ MED    2779~ 10.1~ Psyc~ Sarkar A, L~ Trends Neur~ 2016    "01662236;~ "resea~ Y            Y     
    +10 28475~ MED    2847~ 10.1~ Meta~ Buck MD, So~ Cell         2017    "00928674;~ "resea~ N            Y     
    +# ... with 20 more rows, and 36 more variables: inPMC <chr>, hasPDF <chr>, hasBook <chr>,
    +#   citedByCount <int>, hasReferences <chr>, hasTextMinedTerms <chr>, hasDbCrossReferences <chr>,
    +#   hasLabsLinks <chr>, hasTMAccessionNumbers <chr>, firstPublicationDate <chr>, pageInfo <chr>,
    +#   pmcid <chr>, issue <chr>, journalVolume <chr>, hasSuppl <chr>, ISSN.1 <chr>, ISSN.2.x <fct>, Rank <int>,
    +#   Title <fct>, Type <fct>, SJR <dbl>, SJR.Best.Quartile <fct>, H.index <int>, Total.Docs...2016. <int>,
    +#   Total.Docs...3years. <int>, Total.Refs. <int>, Total.Cites..3years. <int>, Citable.Docs...3years. <int>,
    +#   Cites...Doc...2years. <dbl>, Ref....Doc. <dbl>, Country <fct>, Categories <fct>, ISSN <chr>,
    +#   ISSN.2.y <fct>, ISSN.2 <fct>, ISSN.1.y <fct>
    - -
    - -
    + + +
    -
    - + + + diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..842906b --- /dev/null +++ b/docs/index.md @@ -0,0 +1,121 @@ +# JournalAnalysis + +A repository for exploring and identifying the best journals in which to +publish a paper. + +## Installation + +This package is only available on GitHub. + +``` r + +install.packages("devtools") +library(devtools) +install_github("vallenderlab/JournalAnalysis") +``` + +## Usage + +- Choose an Impact Factor dataset (`scimago` or `incities`).\ +- Create EUPMC style string queries in the *analysis.R* script. Multiple + queries will produce article information that will be added together.\ +- Adjust the limit in order to get all of the data you want or to test + out your query.\ +- Adjust the filtering parameters, and change the names of the files + that will be produced. + +### Example + +Below is a simple example. You can also view our example vignette. + +``` r +> library(JournalAnalysis) +> pub_data <- get_publication_data(journal_source = "scimago", queries = c(query1, query2), limit = 1000, min_citations = 20) +14588 records found, returning 1000 +(-) [=================================================] 100% +4005 records found, returning 1000 +(/) [=================================================] 100% +Removed records published before 2008. +Removed records published after 2018. +Removed records with less than 20 citations. +Removed records with NA values for pmid, doi, and authors. +30 records passed the filter. +There were 30 warnings (use warnings() to see them) +> +> +> +> pub_data$journals + +# A tibble: 22 x 18 + Rank Title Type SJR SJR.Best.Quarti~ H.index Total.Docs...20~ Total.Docs...3ye~ Total.Refs. + + 1 6 Cell journ~ 26.9 Q1 655 693 1885 29440 + 2 20 Nature journ~ 18.1 Q1 1011 2661 8198 43004 + 3 30 Nature Immuno~ journ~ 14.5 Q1 323 224 707 9749 + 4 38 Science journ~ 13.5 Q1 978 2079 6670 36734 + 5 138 Trends in Neu~ journ~ 7.27 Q1 254 84 264 6905 + 6 147 American Jour~ journ~ 7.14 Q1 266 245 616 9620 + 7 154 Molecular Psy~ journ~ 6.92 Q1 180 328 652 13379 + 8 189 Biological Ps~ journ~ 6.04 Q1 273 382 982 14362 + 9 256 Nature Review~ journ~ 5.03 Q1 104 225 867 8184 +10 381 European Jour~ journ~ 4.01 Q1 87 126 322 5231 +# ... with 12 more rows, and 9 more variables: Total.Cites..3years. , Citable.Docs...3years. , +# Cites...Doc...2years. , Ref....Doc. , Country , Categories , ISSN , +# ISSN.1 , ISSN.2 +> +> +> +> pub_data$articles + +# A tibble: 30 x 29 + id source pmid doi title authorString journalTitle pubYear journalIssn pubType isOpenAccess inEPMC + + 1 25815~ MED 2581~ 10.1~ Prom~ Fontana L, ~ Cell 2015 "00928674;~ "resea~ N Y + 2 27981~ MED 2798~ 10.1~ The ~ Rea K, Dina~ Neurobiol S~ 2016 23522895 "revie~ Y Y + 3 26912~ MED 2691~ 10.1~ Grow~ Luczynski P~ Int J Neuro~ 2016 "14611457;~ "resea~ Y Y + 4 27641~ MED 2764~ 10.1~ Gut ~ Dinan TG, C~ J Physiol 2017 "00223751;~ "revie~ N N + 5 28242~ MED 2824~ 10.1~ Targ~ Burokas A, ~ Biol Psychi~ 2017 "00063223;~ journa~ N N + 6 27090~ MED 2709~ 10.1~ From~ Rogers GB, ~ Mol Psychia~ 2016 "13594184;~ "revie~ Y Y + 7 28186~ MED 2818~ 10.1~ The ~ Simon DW, M~ Nat Rev Neu~ 2017 "17594758;~ "resea~ N Y + 8 28686~ MED 2868~ 10.1~ 10 Y~ Visscher PM~ Am J Hum Ge~ 2017 "00029297;~ "revie~ N Y + 9 27793~ MED 2779~ 10.1~ Psyc~ Sarkar A, L~ Trends Neur~ 2016 "01662236;~ "resea~ Y Y +10 28475~ MED 2847~ 10.1~ Meta~ Buck MD, So~ Cell 2017 "00928674;~ "resea~ N Y +# ... with 20 more rows, and 17 more variables: inPMC , hasPDF , hasBook , +# citedByCount , hasReferences , hasTextMinedTerms , hasDbCrossReferences , +# hasLabsLinks , hasTMAccessionNumbers , firstPublicationDate , pageInfo , +# pmcid , issue , journalVolume , hasSuppl , ISSN.1 , ISSN.2 +> +> +> +> pub_data$combined + +# A tibble: 30 x 48 + id source pmid doi title authorString journalTitle pubYear journalIssn pubType isOpenAccess inEPMC + + 1 25815~ MED 2581~ 10.1~ Prom~ Fontana L, ~ Cell 2015 "00928674;~ "resea~ N Y + 2 27981~ MED 2798~ 10.1~ The ~ Rea K, Dina~ Neurobiol S~ 2016 23522895 "revie~ Y Y + 3 26912~ MED 2691~ 10.1~ Grow~ Luczynski P~ Int J Neuro~ 2016 "14611457;~ "resea~ Y Y + 4 27641~ MED 2764~ 10.1~ Gut ~ Dinan TG, C~ J Physiol 2017 "00223751;~ "revie~ N N + 5 28242~ MED 2824~ 10.1~ Targ~ Burokas A, ~ Biol Psychi~ 2017 "00063223;~ journa~ N N + 6 27090~ MED 2709~ 10.1~ From~ Rogers GB, ~ Mol Psychia~ 2016 "13594184;~ "revie~ Y Y + 7 28186~ MED 2818~ 10.1~ The ~ Simon DW, M~ Nat Rev Neu~ 2017 "17594758;~ "resea~ N Y + 8 28686~ MED 2868~ 10.1~ 10 Y~ Visscher PM~ Am J Hum Ge~ 2017 "00029297;~ "revie~ N Y + 9 27793~ MED 2779~ 10.1~ Psyc~ Sarkar A, L~ Trends Neur~ 2016 "01662236;~ "resea~ Y Y +10 28475~ MED 2847~ 10.1~ Meta~ Buck MD, So~ Cell 2017 "00928674;~ "resea~ N Y +# ... with 20 more rows, and 36 more variables: inPMC , hasPDF , hasBook , +# citedByCount , hasReferences , hasTextMinedTerms , hasDbCrossReferences , +# hasLabsLinks , hasTMAccessionNumbers , firstPublicationDate , pageInfo , +# pmcid , issue , journalVolume , hasSuppl , ISSN.1 , ISSN.2.x , Rank , +# Title , Type , SJR , SJR.Best.Quartile , H.index , Total.Docs...2016. , +# Total.Docs...3years. , Total.Refs. , Total.Cites..3years. , Citable.Docs...3years. , +# Cites...Doc...2years. , Ref....Doc. , Country , Categories , ISSN , +# ISSN.2.y , ISSN.2 , ISSN.1.y +``` + +## Important resources + +- [Scimago Journal and Country + Rank](https://www.scimagojr.com/aboutus.php) +- [InCities Journal Citation + Reports](http://jcr.incites.thomsonreuters.com/JCRJournalHomeAction.action?wsid=5Aa4jbtfC2lQdEGIwCT&Init=Yes&SrcApp=IC2LS&SID=H6-gdiAea4KogIEbyxx7iUr4obA2S2omDx2BTz-18x2dDOuJZ4XsZ6keA24DqhpckAx3Dx3Dw1c6x2Bx2BP7NHfVnpg6nSkZqAx3Dx3D-9vvmzcndpRgQCGPd1c2qPQx3Dx3D-wx2BJQh9GKVmtdJw3700KssQx3Dx3D) +- [Europe PMC](https://europepmc.org/Help#whatserachingEPMC) diff --git a/docs/katex-auto.js b/docs/katex-auto.js new file mode 100644 index 0000000..2adab3a --- /dev/null +++ b/docs/katex-auto.js @@ -0,0 +1,16 @@ +// https://github.com/jgm/pandoc/blob/29fa97ab96b8e2d62d48326e1b949a71dc41f47a/src/Text/Pandoc/Writers/HTML.hs#L332-L345 +document.addEventListener("DOMContentLoaded", function () { + var mathElements = document.getElementsByClassName("math"); + var macros = []; + for (var i = 0; i < mathElements.length; i++) { + var texText = mathElements[i].firstChild; + if (mathElements[i].tagName == "SPAN") { + katex.render(texText.data, mathElements[i], { + displayMode: mathElements[i].classList.contains("display"), + throwOnError: false, + macros: macros, + fleqn: false + }); + } + } +}); diff --git a/docs/lightswitch.js b/docs/lightswitch.js new file mode 100644 index 0000000..3808ca1 --- /dev/null +++ b/docs/lightswitch.js @@ -0,0 +1,85 @@ + +/*! + * Color mode toggler for Bootstrap's docs (https://getbootstrap.com/) + * Copyright 2011-2023 The Bootstrap Authors + * Licensed under the Creative Commons Attribution 3.0 Unported License. + * Updates for {pkgdown} by the {bslib} authors, also licensed under CC-BY-3.0. + */ + +const getStoredTheme = () => localStorage.getItem('theme') +const setStoredTheme = theme => localStorage.setItem('theme', theme) + +const getPreferredTheme = () => { + const storedTheme = getStoredTheme() + if (storedTheme) { + return storedTheme + } + + return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light' +} + +const setTheme = theme => { + if (theme === 'auto') { + document.documentElement.setAttribute('data-bs-theme', (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light')) + } else { + document.documentElement.setAttribute('data-bs-theme', theme) + } +} + +function bsSetupThemeToggle() { + 'use strict' + + const showActiveTheme = (theme, focus = false) => { + var activeLabel, activeIcon; + + document.querySelectorAll('[data-bs-theme-value]').forEach(element => { + const buttonTheme = element.getAttribute('data-bs-theme-value') + const isActive = buttonTheme == theme + + element.classList.toggle('active', isActive) + element.setAttribute('aria-pressed', isActive) + + if (isActive) { + activeLabel = element.textContent; + activeIcon = element.querySelector('span').classList.value; + } + }) + + const themeSwitcher = document.querySelector('#dropdown-lightswitch') + if (!themeSwitcher) { + return + } + + themeSwitcher.setAttribute('aria-label', activeLabel) + themeSwitcher.querySelector('span').classList.value = activeIcon; + + if (focus) { + themeSwitcher.focus() + } + } + + window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { + const storedTheme = getStoredTheme() + if (storedTheme !== 'light' && storedTheme !== 'dark') { + setTheme(getPreferredTheme()) + } + }) + + window.addEventListener('DOMContentLoaded', () => { + showActiveTheme(getPreferredTheme()) + + document + .querySelectorAll('[data-bs-theme-value]') + .forEach(toggle => { + toggle.addEventListener('click', () => { + const theme = toggle.getAttribute('data-bs-theme-value') + setTheme(theme) + setStoredTheme(theme) + showActiveTheme(theme, true) + }) + }) + }) +} + +setTheme(getPreferredTheme()); +bsSetupThemeToggle(); diff --git a/docs/llms.txt b/docs/llms.txt new file mode 100644 index 0000000..27b7a26 --- /dev/null +++ b/docs/llms.txt @@ -0,0 +1,167 @@ +# JournalAnalysis + +A repository for exploring and identifying the best journals in which to +publish a paper. + +## Installation + +This package is only available on GitHub. + +``` r + +install.packages("devtools") +library(devtools) +install_github("vallenderlab/JournalAnalysis") +``` + +## Usage + +- Choose an Impact Factor dataset (`scimago` or `incities`).\ +- Create EUPMC style string queries in the *analysis.R* script. Multiple + queries will produce article information that will be added together.\ +- Adjust the limit in order to get all of the data you want or to test + out your query.\ +- Adjust the filtering parameters, and change the names of the files + that will be produced. + +### Example + +Below is a simple example. You can also view our example vignette. + +``` r +> library(JournalAnalysis) +> pub_data <- get_publication_data(journal_source = "scimago", queries = c(query1, query2), limit = 1000, min_citations = 20) +14588 records found, returning 1000 +(-) [=================================================] 100% +4005 records found, returning 1000 +(/) [=================================================] 100% +Removed records published before 2008. +Removed records published after 2018. +Removed records with less than 20 citations. +Removed records with NA values for pmid, doi, and authors. +30 records passed the filter. +There were 30 warnings (use warnings() to see them) +> +> +> +> pub_data$journals + +# A tibble: 22 x 18 + Rank Title Type SJR SJR.Best.Quarti~ H.index Total.Docs...20~ Total.Docs...3ye~ Total.Refs. + + 1 6 Cell journ~ 26.9 Q1 655 693 1885 29440 + 2 20 Nature journ~ 18.1 Q1 1011 2661 8198 43004 + 3 30 Nature Immuno~ journ~ 14.5 Q1 323 224 707 9749 + 4 38 Science journ~ 13.5 Q1 978 2079 6670 36734 + 5 138 Trends in Neu~ journ~ 7.27 Q1 254 84 264 6905 + 6 147 American Jour~ journ~ 7.14 Q1 266 245 616 9620 + 7 154 Molecular Psy~ journ~ 6.92 Q1 180 328 652 13379 + 8 189 Biological Ps~ journ~ 6.04 Q1 273 382 982 14362 + 9 256 Nature Review~ journ~ 5.03 Q1 104 225 867 8184 +10 381 European Jour~ journ~ 4.01 Q1 87 126 322 5231 +# ... with 12 more rows, and 9 more variables: Total.Cites..3years. , Citable.Docs...3years. , +# Cites...Doc...2years. , Ref....Doc. , Country , Categories , ISSN , +# ISSN.1 , ISSN.2 +> +> +> +> pub_data$articles + +# A tibble: 30 x 29 + id source pmid doi title authorString journalTitle pubYear journalIssn pubType isOpenAccess inEPMC + + 1 25815~ MED 2581~ 10.1~ Prom~ Fontana L, ~ Cell 2015 "00928674;~ "resea~ N Y + 2 27981~ MED 2798~ 10.1~ The ~ Rea K, Dina~ Neurobiol S~ 2016 23522895 "revie~ Y Y + 3 26912~ MED 2691~ 10.1~ Grow~ Luczynski P~ Int J Neuro~ 2016 "14611457;~ "resea~ Y Y + 4 27641~ MED 2764~ 10.1~ Gut ~ Dinan TG, C~ J Physiol 2017 "00223751;~ "revie~ N N + 5 28242~ MED 2824~ 10.1~ Targ~ Burokas A, ~ Biol Psychi~ 2017 "00063223;~ journa~ N N + 6 27090~ MED 2709~ 10.1~ From~ Rogers GB, ~ Mol Psychia~ 2016 "13594184;~ "revie~ Y Y + 7 28186~ MED 2818~ 10.1~ The ~ Simon DW, M~ Nat Rev Neu~ 2017 "17594758;~ "resea~ N Y + 8 28686~ MED 2868~ 10.1~ 10 Y~ Visscher PM~ Am J Hum Ge~ 2017 "00029297;~ "revie~ N Y + 9 27793~ MED 2779~ 10.1~ Psyc~ Sarkar A, L~ Trends Neur~ 2016 "01662236;~ "resea~ Y Y +10 28475~ MED 2847~ 10.1~ Meta~ Buck MD, So~ Cell 2017 "00928674;~ "resea~ N Y +# ... with 20 more rows, and 17 more variables: inPMC , hasPDF , hasBook , +# citedByCount , hasReferences , hasTextMinedTerms , hasDbCrossReferences , +# hasLabsLinks , hasTMAccessionNumbers , firstPublicationDate , pageInfo , +# pmcid , issue , journalVolume , hasSuppl , ISSN.1 , ISSN.2 +> +> +> +> pub_data$combined + +# A tibble: 30 x 48 + id source pmid doi title authorString journalTitle pubYear journalIssn pubType isOpenAccess inEPMC + + 1 25815~ MED 2581~ 10.1~ Prom~ Fontana L, ~ Cell 2015 "00928674;~ "resea~ N Y + 2 27981~ MED 2798~ 10.1~ The ~ Rea K, Dina~ Neurobiol S~ 2016 23522895 "revie~ Y Y + 3 26912~ MED 2691~ 10.1~ Grow~ Luczynski P~ Int J Neuro~ 2016 "14611457;~ "resea~ Y Y + 4 27641~ MED 2764~ 10.1~ Gut ~ Dinan TG, C~ J Physiol 2017 "00223751;~ "revie~ N N + 5 28242~ MED 2824~ 10.1~ Targ~ Burokas A, ~ Biol Psychi~ 2017 "00063223;~ journa~ N N + 6 27090~ MED 2709~ 10.1~ From~ Rogers GB, ~ Mol Psychia~ 2016 "13594184;~ "revie~ Y Y + 7 28186~ MED 2818~ 10.1~ The ~ Simon DW, M~ Nat Rev Neu~ 2017 "17594758;~ "resea~ N Y + 8 28686~ MED 2868~ 10.1~ 10 Y~ Visscher PM~ Am J Hum Ge~ 2017 "00029297;~ "revie~ N Y + 9 27793~ MED 2779~ 10.1~ Psyc~ Sarkar A, L~ Trends Neur~ 2016 "01662236;~ "resea~ Y Y +10 28475~ MED 2847~ 10.1~ Meta~ Buck MD, So~ Cell 2017 "00928674;~ "resea~ N Y +# ... with 20 more rows, and 36 more variables: inPMC , hasPDF , hasBook , +# citedByCount , hasReferences , hasTextMinedTerms , hasDbCrossReferences , +# hasLabsLinks , hasTMAccessionNumbers , firstPublicationDate , pageInfo , +# pmcid , issue , journalVolume , hasSuppl , ISSN.1 , ISSN.2.x , Rank , +# Title , Type , SJR , SJR.Best.Quartile , H.index , Total.Docs...2016. , +# Total.Docs...3years. , Total.Refs. , Total.Cites..3years. , Citable.Docs...3years. , +# Cites...Doc...2years. , Ref....Doc. , Country , Categories , ISSN , +# ISSN.2.y , ISSN.2 , ISSN.1.y +``` + +## Important resources + +- [Scimago Journal and Country + Rank](https://www.scimagojr.com/aboutus.php) +- [InCities Journal Citation + Reports](http://jcr.incites.thomsonreuters.com/JCRJournalHomeAction.action?wsid=5Aa4jbtfC2lQdEGIwCT&Init=Yes&SrcApp=IC2LS&SID=H6-gdiAea4KogIEbyxx7iUr4obA2S2omDx2BTz-18x2dDOuJZ4XsZ6keA24DqhpckAx3Dx3Dw1c6x2Bx2BP7NHfVnpg6nSkZqAx3Dx3D-9vvmzcndpRgQCGPd1c2qPQx3Dx3D-wx2BJQh9GKVmtdJw3700KssQx3Dx3D) +- [Europe PMC](https://europepmc.org/Help#whatserachingEPMC) + +# Package index + +## Workflow + +- [`get_publication_data()`](https://vallenderlab.github.io/journalanalysis/reference/get_publication_data.md) + : Get Publication Data + +## Europe PMC articles + +- [`get_article_data()`](https://vallenderlab.github.io/journalanalysis/reference/get_article_data.md) + : Get Article Data +- [`get_unique_issns()`](https://vallenderlab.github.io/journalanalysis/reference/get_unique_issns.md) + : Get Unique ISSNs +- [`issn_to_article_data()`](https://vallenderlab.github.io/journalanalysis/reference/issn_to_article_data.md) + : ISSN to Article Data + +## Journal metrics + +- [`get_journal_data()`](https://vallenderlab.github.io/journalanalysis/reference/get_journal_data.md) + : Get Journal Data +- [`issn_to_journal_data()`](https://vallenderlab.github.io/journalanalysis/reference/issn_to_journal_data.md) + : ISSN to Journal Data + +## InCites (JCR) data + +- [`jcr2023_wos`](https://vallenderlab.github.io/journalanalysis/reference/jcr2023_wos.md) + : InCites Journal Citation Reports via Web of Science (2023) +- [`scimagojr2025`](https://vallenderlab.github.io/journalanalysis/reference/scimagojr2025.md) + : SCImago Journal & Country Rank (2025) + +## Output and setup + +- [`save_as_csv()`](https://vallenderlab.github.io/journalanalysis/reference/save_as_csv.md) + : Save as CSV +- [`get_word_cloud()`](https://vallenderlab.github.io/journalanalysis/reference/get_word_cloud.md) + : Get Word Cloud +- [`install_journalanalysis_packages()`](https://vallenderlab.github.io/journalanalysis/reference/install_journalanalysis_packages.md) + : Install JournalAnalysis Packages + +# Articles + +### Tutorials + +- [Finding Journals for Your + Paper](https://vallenderlab.github.io/journalanalysis/articles/example.md): diff --git a/docs/news/index.html b/docs/news/index.html new file mode 100644 index 0000000..a617dde --- /dev/null +++ b/docs/news/index.html @@ -0,0 +1,58 @@ + +Changelog • JournalAnalysis + Skip to contents + + +
    +
    +
    + +
    +

    JournalAnalysis 0.2.0

    +
    • Initial package release on GitHub.
    • +
    +
    + + +
    + + + + + + + diff --git a/docs/news/index.md b/docs/news/index.md new file mode 100644 index 0000000..c28db13 --- /dev/null +++ b/docs/news/index.md @@ -0,0 +1,5 @@ +# Changelog + +## JournalAnalysis 0.2.0 + +- Initial package release on GitHub. diff --git a/docs/pkgdown.css b/docs/pkgdown.css index 6ca2f37..80ea5b8 100644 --- a/docs/pkgdown.css +++ b/docs/pkgdown.css @@ -17,12 +17,14 @@ html, body { height: 100%; } +body { + position: relative; +} + body > .container { display: flex; height: 100%; flex-direction: column; - - padding-top: 60px; } body > .container .row { @@ -54,24 +56,34 @@ img.icon { float: right; } -img { +/* Ensure in-page images don't run outside their container */ +.contents img { max-width: 100%; + height: auto; +} + +/* Fix bug in bootstrap (only seen in firefox) */ +summary { + display: list-item; } /* Typographic tweaking ---------------------------------*/ -.contents h1.page-header { +.contents .page-header { margin-top: calc(-60px + 1em); } +dd { + margin-left: 3em; +} + /* Section anchors ---------------------------------*/ a.anchor { - margin-left: -30px; - display:inline-block; - width: 30px; - height: 30px; - visibility: hidden; + display: none; + margin-left: 5px; + width: 20px; + height: 20px; background-image: url(./link.svg); background-repeat: no-repeat; @@ -79,17 +91,15 @@ a.anchor { background-position: center center; } -.hasAnchor:hover a.anchor { - visibility: visible; -} - -@media (max-width: 767px) { - .hasAnchor:hover a.anchor { - visibility: hidden; - } +h1:hover .anchor, +h2:hover .anchor, +h3:hover .anchor, +h4:hover .anchor, +h5:hover .anchor, +h6:hover .anchor { + display: inline-block; } - /* Fixes for fixed navbar --------------------------*/ .contents h1, .contents h2, .contents h3, .contents h4 { @@ -97,37 +107,135 @@ a.anchor { margin-top: -40px; } -/* Static header placement on mobile devices */ -@media (max-width: 767px) { - .navbar-fixed-top { - position: absolute; - } - .navbar { - padding: 0; - } +/* Navbar submenu --------------------------*/ + +.dropdown-submenu { + position: relative; } +.dropdown-submenu>.dropdown-menu { + top: 0; + left: 100%; + margin-top: -6px; + margin-left: -1px; + border-radius: 0 6px 6px 6px; +} + +.dropdown-submenu:hover>.dropdown-menu { + display: block; +} + +.dropdown-submenu>a:after { + display: block; + content: " "; + float: right; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; + border-width: 5px 0 5px 5px; + border-left-color: #cccccc; + margin-top: 5px; + margin-right: -10px; +} + +.dropdown-submenu:hover>a:after { + border-left-color: #ffffff; +} + +.dropdown-submenu.pull-left { + float: none; +} + +.dropdown-submenu.pull-left>.dropdown-menu { + left: -100%; + margin-left: 10px; + border-radius: 6px 0 6px 6px; +} /* Sidebar --------------------------*/ -#sidebar { +#pkgdown-sidebar { margin-top: 30px; + position: -webkit-sticky; + position: sticky; + top: 70px; } -#sidebar h2 { + +#pkgdown-sidebar h2 { font-size: 1.5em; margin-top: 1em; } -#sidebar h2:first-child { +#pkgdown-sidebar h2:first-child { margin-top: 0; } -#sidebar .list-unstyled li { +#pkgdown-sidebar .list-unstyled li { margin-bottom: 0.5em; } +/* bootstrap-toc tweaks ------------------------------------------------------*/ + +/* All levels of nav */ + +nav[data-toggle='toc'] .nav > li > a { + padding: 4px 20px 4px 6px; + font-size: 1.5rem; + font-weight: 400; + color: inherit; +} + +nav[data-toggle='toc'] .nav > li > a:hover, +nav[data-toggle='toc'] .nav > li > a:focus { + padding-left: 5px; + color: inherit; + border-left: 1px solid #878787; +} + +nav[data-toggle='toc'] .nav > .active > a, +nav[data-toggle='toc'] .nav > .active:hover > a, +nav[data-toggle='toc'] .nav > .active:focus > a { + padding-left: 5px; + font-size: 1.5rem; + font-weight: 400; + color: inherit; + border-left: 2px solid #878787; +} + +/* Nav: second level (shown on .active) */ + +nav[data-toggle='toc'] .nav .nav { + display: none; /* Hide by default, but at >768px, show it */ + padding-bottom: 10px; +} + +nav[data-toggle='toc'] .nav .nav > li > a { + padding-left: 16px; + font-size: 1.35rem; +} + +nav[data-toggle='toc'] .nav .nav > li > a:hover, +nav[data-toggle='toc'] .nav .nav > li > a:focus { + padding-left: 15px; +} + +nav[data-toggle='toc'] .nav .nav > .active > a, +nav[data-toggle='toc'] .nav .nav > .active:hover > a, +nav[data-toggle='toc'] .nav .nav > .active:focus > a { + padding-left: 15px; + font-weight: 500; + font-size: 1.35rem; +} + +/* orcid ------------------------------------------------------------------- */ + .orcid { - height: 16px; + font-size: 16px; + color: #A6CE39; + /* margins are required by official ORCID trademark and display guidelines */ + margin-left:4px; + margin-right:4px; vertical-align: middle; } @@ -135,15 +243,14 @@ a.anchor { .ref-index th {font-weight: normal;} -.ref-index td {vertical-align: top;} -.ref-index .alias {width: 40%;} -.ref-index .title {width: 60%;} - +.ref-index td {vertical-align: top; min-width: 100px} +.ref-index .icon {width: 40px;} .ref-index .alias {width: 40%;} +.ref-index-icons .alias {width: calc(40% - 40px);} .ref-index .title {width: 60%;} .ref-arguments th {text-align: right; padding-right: 10px;} -.ref-arguments th, .ref-arguments td {vertical-align: top;} +.ref-arguments th, .ref-arguments td {vertical-align: top; min-width: 100px} .ref-arguments .name {width: 20%;} .ref-arguments .desc {width: 80%;} @@ -156,31 +263,26 @@ table { /* Syntax highlighting ---------------------------------------------------- */ -pre { - word-wrap: normal; - word-break: normal; - border: 1px solid #eee; -} - -pre, code { +pre, code, pre code { background-color: #f8f8f8; color: #333; } +pre, pre code { + white-space: pre-wrap; + word-break: break-all; + overflow-wrap: break-word; +} -pre code { - overflow: auto; - word-wrap: normal; - white-space: pre; +pre { + border: 1px solid #eee; } -pre .img { +pre .img, pre .r-plt { margin: 5px 0; } -pre .img img { +pre .img img, pre .r-plt img { background-color: #fff; - display: block; - height: auto; } code a, pre a { @@ -197,9 +299,8 @@ a.sourceLine:hover { .kw {color: #264D66;} /* keyword */ .co {color: #888888;} /* comment */ -.message { color: black; font-weight: bolder;} -.error { color: orange; font-weight: bolder;} -.warning { color: #6A0366; font-weight: bolder;} +.error {font-weight: bolder;} +.warning {font-weight: bolder;} /* Clipboard --------------------------*/ @@ -218,6 +319,19 @@ a.sourceLine:hover { visibility: visible; } +/* headroom.js ------------------------ */ + +.headroom { + will-change: transform; + transition: transform 200ms linear; +} +.headroom--pinned { + transform: translateY(0%); +} +.headroom--unpinned { + transform: translateY(-100%); +} + /* mark.js ----------------------------*/ mark { @@ -230,3 +344,41 @@ mark { .html-widget { margin-bottom: 10px; } + +/* fontawesome ------------------------ */ + +.fab { + font-family: "Font Awesome 5 Brands" !important; +} + +/* don't display links in code chunks when printing */ +/* source: https://stackoverflow.com/a/10781533 */ +@media print { + code a:link:after, code a:visited:after { + content: ""; + } +} + +/* Section anchors --------------------------------- + Added in pandoc 2.11: https://github.com/jgm/pandoc-templates/commit/9904bf71 +*/ + +div.csl-bib-body { } +div.csl-entry { + clear: both; +} +.hanging-indent div.csl-entry { + margin-left:2em; + text-indent:-2em; +} +div.csl-left-margin { + min-width:2em; + float:left; +} +div.csl-right-inline { + margin-left:2em; + padding-left:1em; +} +div.csl-indent { + margin-left: 2em; +} diff --git a/docs/pkgdown.js b/docs/pkgdown.js index de9bd72..0a5573a 100644 --- a/docs/pkgdown.js +++ b/docs/pkgdown.js @@ -1,110 +1,162 @@ /* http://gregfranko.com/blog/jquery-best-practices/ */ -(function($) { - $(function() { - - $("#sidebar") - .stick_in_parent({offset_top: 40}) - .on('sticky_kit:bottom', function(e) { - $(this).parent().css('position', 'static'); - }) - .on('sticky_kit:unbottom', function(e) { - $(this).parent().css('position', 'relative'); - }); +(function ($) { + $(function () { + + $('nav.navbar').headroom(); - $('body').scrollspy({ - target: '#sidebar', - offset: 60 + Toc.init({ + $nav: $("#toc"), + $scope: $("main h2, main h3, main h4, main h5, main h6") }); - $('[data-toggle="tooltip"]').tooltip(); - - var cur_path = paths(location.pathname); - var links = $("#navbar ul li a"); - var max_length = -1; - var pos = -1; - for (var i = 0; i < links.length; i++) { - if (links[i].getAttribute("href") === "#") - continue; - var path = paths(links[i].pathname); - - var length = prefix_length(cur_path, path); - if (length > max_length) { - max_length = length; - pos = i; - } + if ($('#toc').length) { + $('body').scrollspy({ + target: '#toc', + offset: $("nav.navbar").outerHeight() + 1 + }); } - // Add class to parent
  • , and enclosing
  • if in dropdown - if (pos >= 0) { - var menu_anchor = $(links[pos]); - menu_anchor.parent().addClass("active"); - menu_anchor.closest("li.dropdown").addClass("active"); - } - }); + // Activate popovers + $('[data-bs-toggle="popover"]').popover({ + container: 'body', + html: true, + trigger: 'focus', + placement: "top", + sanitize: false, + }); - function paths(pathname) { - var pieces = pathname.split("/"); - pieces.shift(); // always starts with / + $('[data-bs-toggle="tooltip"]').tooltip(); - var end = pieces[pieces.length - 1]; - if (end === "index.html" || end === "") - pieces.pop(); - return(pieces); - } + /* Clipboard --------------------------*/ - function prefix_length(needle, haystack) { - if (needle.length > haystack.length) - return(0); - - // Special case for length-0 haystack, since for loop won't run - if (haystack.length === 0) { - return(needle.length === 0 ? 1 : 0); + function changeTooltipMessage(element, msg) { + var tooltipOriginalTitle = element.getAttribute('data-bs-original-title'); + element.setAttribute('data-bs-original-title', msg); + $(element).tooltip('show'); + element.setAttribute('data-bs-original-title', tooltipOriginalTitle); } - for (var i = 0; i < haystack.length; i++) { - if (needle[i] != haystack[i]) - return(i); - } + if (ClipboardJS.isSupported()) { + $(document).ready(function () { + var copyButton = ""; - return(haystack.length); - } + $("div.sourceCode").addClass("hasCopyButton"); - /* Clipboard --------------------------*/ + // Insert copy buttons: + $(copyButton).prependTo(".hasCopyButton"); - function changeTooltipMessage(element, msg) { - var tooltipOriginalTitle=element.getAttribute('data-original-title'); - element.setAttribute('data-original-title', msg); - $(element).tooltip('show'); - element.setAttribute('data-original-title', tooltipOriginalTitle); - } + // Initialize tooltips: + $('.btn-copy-ex').tooltip({ container: 'body' }); - if(Clipboard.isSupported()) { - $(document).ready(function() { - var copyButton = ""; + // Initialize clipboard: + var clipboard = new ClipboardJS('[data-clipboard-copy]', { + text: function (trigger) { + return trigger.parentNode.textContent.replace(/\n#>[^\n]*/g, ""); + } + }); - $(".examples, div.sourceCode").addClass("hasCopyButton"); + clipboard.on('success', function (e) { + changeTooltipMessage(e.trigger, 'Copied!'); + e.clearSelection(); + }); - // Insert copy buttons: - $(copyButton).prependTo(".hasCopyButton"); + clipboard.on('error', function (e) { + changeTooltipMessage(e.trigger, 'Press Ctrl+C or Command+C to copy'); + }); - // Initialize tooltips: - $('.btn-copy-ex').tooltip({container: 'body'}); + }); + } - // Initialize clipboard: - var clipboardBtnCopies = new Clipboard('[data-clipboard-copy]', { - text: function(trigger) { - return trigger.parentNode.textContent; + /* Search marking --------------------------*/ + var url = new URL(window.location.href); + var toMark = url.searchParams.get("q"); + var mark = new Mark("main#main"); + if (toMark) { + mark.mark(toMark, { + accuracy: { + value: "complementary", + limiters: [",", ".", ":", "/"], } }); + } - clipboardBtnCopies.on('success', function(e) { - changeTooltipMessage(e.trigger, 'Copied!'); - e.clearSelection(); - }); + /* Search --------------------------*/ + /* Adapted from https://github.com/rstudio/bookdown/blob/2d692ba4b61f1e466c92e78fd712b0ab08c11d31/inst/resources/bs4_book/bs4_book.js#L25 */ + // Initialise search index on focus + var fuse; + $("#search-input").focus(async function (e) { + if (fuse) { + return; + } - clipboardBtnCopies.on('error', function() { - changeTooltipMessage(e.trigger,'Press Ctrl+C or Command+C to copy'); - }); + $(e.target).addClass("loading"); + var response = await fetch($("#search-input").data("search-index")); + var data = await response.json(); + + var options = { + keys: ["what", "text", "code"], + ignoreLocation: true, + threshold: 0.1, + includeMatches: true, + includeScore: true, + }; + fuse = new Fuse(data, options); + + $(e.target).removeClass("loading"); }); - } + + // Use algolia autocomplete + var options = { + autoselect: true, + debug: true, + hint: false, + minLength: 2, + }; + var q; + async function searchFuse(query, callback) { + await fuse; + + var items; + if (!fuse) { + items = []; + } else { + q = query; + var results = fuse.search(query, { limit: 20 }); + items = results + .filter((x) => x.score <= 0.75) + .map((x) => x.item); + if (items.length === 0) { + items = [{ dir: "Sorry 😿", previous_headings: "", title: "No results found.", what: "No results found.", path: window.location.href }]; + } + } + callback(items); + } + $("#search-input").autocomplete(options, [ + { + name: "content", + source: searchFuse, + templates: { + suggestion: (s) => { + if (s.title == s.what) { + return `${s.dir} >
    ${s.title}
    `; + } else if (s.previous_headings == "") { + return `${s.dir} >
    ${s.title}
    > ${s.what}`; + } else { + return `${s.dir} >
    ${s.title}
    > ${s.previous_headings} > ${s.what}`; + } + }, + }, + }, + ]).on('autocomplete:selected', function (event, s) { + window.location.href = s.path + "?q=" + q + "#" + s.id; + }); + }); })(window.jQuery || window.$) + +document.addEventListener('keydown', function (event) { + // Check if the pressed key is '/' + if (event.key === '/') { + event.preventDefault(); // Prevent any default action associated with the '/' key + document.getElementById('search-input').focus(); // Set focus to the search input + } +}); diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index e6187cd..a3c0671 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -1,6 +1,9 @@ -pandoc: 1.19.2.1 -pkgdown: 1.1.0 +pandoc: 3.9.0.2 +pkgdown: 2.2.0 pkgdown_sha: ~ articles: example: example.html - +last_built: 2026-06-11T03:30Z +urls: + reference: https://vallenderlab.github.io/journalanalysis/reference + article: https://vallenderlab.github.io/journalanalysis/articles diff --git a/docs/reference/example_queries.html b/docs/reference/example_queries.html new file mode 100644 index 0000000..75c8684 --- /dev/null +++ b/docs/reference/example_queries.html @@ -0,0 +1,77 @@ + +Example Europe PMC queries for package vignettes. — example_queries • JournalAnalysis + Skip to contents + + +
    +
    +
    + +
    +

    Example Europe PMC queries for package vignettes.

    +
    + +
    +

    Usage

    +
    query1
    +
    +query2
    +
    +query3
    +
    + +
    +

    Format

    +

    A character string containing a Europe PMC advanced search query.

    +

    An object of class character of length 1.

    +

    An object of class character of length 1.

    +

    An object of class character of length 1.

    +
    + +
    + + +
    + + + + + + + diff --git a/docs/reference/get_article_data.html b/docs/reference/get_article_data.html index b8b46b4..8c2fb13 100644 --- a/docs/reference/get_article_data.html +++ b/docs/reference/get_article_data.html @@ -1,184 +1,105 @@ - - - - - - +Get Article Data — get_article_data • JournalAnalysis + Skip to contents -Get Article Data — get_article_data • JournalAnalysis - - - - +
    +
    +
    - - +
    +

    This function retrieves article data from europe pmc.

    +
    +
    +

    Usage

    +
    get_article_data(
    +  queries,
    +  limit = 7500,
    +  min_year = NULL,
    +  max_year = NULL,
    +  min_citations = 5,
    +  n_cores = default_worker_count()
    +)
    +
    +
    +

    Arguments

    - - - +
    queries
    +

    Input a Europe PMC query

    - +
    limit
    +

    Minimum number of articles to retrieve

    - -
    -
    - - - -
    +
    min_year
    +

    Minimum publication year

    -
    -
    - -
    - -

    This function retrieves article data from europe pmc.

    - -
    +
    max_year
    +

    Maximum publication year

    -
    get_article_data(queries, limit = 7500, min_year = 2008,
    -  max_year = 2018, min_citations = 5)
    - -

    Arguments

    - - - - - - - - - - - - - - - - - - - - - - -
    queries

    Input a Europe PMC query

    limit

    Minimum number of articles to retrieve

    min_year

    Minimum publication year

    max_year

    Maximum publication year

    min_citations

    Minimum number of citations per article

    - -

    Value

    +
    min_citations
    +

    Minimum number of citations per article

    + + +
    n_cores
    +

    Number of cores to use across multiple queries.

    + +
    +
    +

    Value

    A tibble of the article data

    - +
    -
    - -
    -
  • -
    + + + - - - + diff --git a/docs/reference/get_article_data.md b/docs/reference/get_article_data.md new file mode 100644 index 0000000..67ac0e7 --- /dev/null +++ b/docs/reference/get_article_data.md @@ -0,0 +1,46 @@ +# Get Article Data + +This function retrieves article data from europe pmc. + +## Usage + +``` r +get_article_data( + queries, + limit = 7500, + min_year = NULL, + max_year = NULL, + min_citations = 5, + n_cores = default_worker_count() +) +``` + +## Arguments + +- queries: + + Input a Europe PMC query + +- limit: + + Minimum number of articles to retrieve + +- min_year: + + Minimum publication year + +- max_year: + + Maximum publication year + +- min_citations: + + Minimum number of citations per article + +- n_cores: + + Number of cores to use across multiple queries. + +## Value + +A tibble of the article data diff --git a/docs/reference/get_articles_with_journal_data.html b/docs/reference/get_articles_with_journal_data.html index db3134f..8f45a8c 100644 --- a/docs/reference/get_articles_with_journal_data.html +++ b/docs/reference/get_articles_with_journal_data.html @@ -1,176 +1,87 @@ - - - - - - +Get Articles With Journal Data — get_articles_with_journal_data • JournalAnalysis + Skip to contents -Get Articles With Journal Data — get_articles_with_journal_data • JournalAnalysis - - - - +
    +
    +
    +
    +

    FUNCTION_DESCRIPTION

    +
    - - +
    +

    Usage

    +
    get_articles_with_journal_data(article_data, journal_data)
    +
    - +
    +

    Arguments

    - +
    article_data
    +

    DESCRIPTION.

    - -
    -
    - - - -
    +
    journal_data
    +

    DESCRIPTION.

    -
    -
    -
    +
    +

    Value

    +

    RETURN_DESCRIPTION

    -
    - -

    FUNCTION_DESCRIPTION

    - +
    +

    Examples

    +
    # ADD_EXAMPLES_HERE
    +
    +
    -
    get_articles_with_journal_data(article_data, journal_data)
    - -

    Arguments

    - - - - - - - - - - -
    article_data

    DESCRIPTION.

    journal_data

    DESCRIPTION.

    - -

    Value

    - -

    RETURN_DESCRIPTION

    - - -

    Examples

    -
    # ADD_EXAMPLES_HERE -
    -
    - +
    + + - - - - - + diff --git a/docs/reference/get_articles_with_journal_data.md b/docs/reference/get_articles_with_journal_data.md new file mode 100644 index 0000000..0f3d6a3 --- /dev/null +++ b/docs/reference/get_articles_with_journal_data.md @@ -0,0 +1,29 @@ +# Get Articles With Journal Data + +FUNCTION_DESCRIPTION + +## Usage + +``` r +get_articles_with_journal_data(article_data, journal_data) +``` + +## Arguments + +- article_data: + + DESCRIPTION. + +- journal_data: + + DESCRIPTION. + +## Value + +RETURN_DESCRIPTION + +## Examples + +``` r +# ADD_EXAMPLES_HERE +``` diff --git a/docs/reference/get_journal_data.html b/docs/reference/get_journal_data.html index 410e0cd..1ceba19 100644 --- a/docs/reference/get_journal_data.html +++ b/docs/reference/get_journal_data.html @@ -1,167 +1,79 @@ - - - - - - +Get Journal Data — get_journal_data • JournalAnalysis + Skip to contents -Get Journal Data — get_journal_data • JournalAnalysis - - - - +
    +
    +
    -
    - - + + + - - - + diff --git a/docs/reference/get_journal_data.md b/docs/reference/get_journal_data.md new file mode 100644 index 0000000..e3303ae --- /dev/null +++ b/docs/reference/get_journal_data.md @@ -0,0 +1,21 @@ +# Get Journal Data + +This function retrieves journal data from an existing data file. + +## Usage + +``` r +get_journal_data(data = "incities") +``` + +## Arguments + +- data: + + A bundled journal source. Use \`incities\` (InCites / JCR) or + \`scimago\`. The aliases \`incites\`, \`jcr\`, and \`scimagojr\` are + also accepted. + +## Value + +A tibble of the journal data. diff --git a/docs/reference/get_publication_data.html b/docs/reference/get_publication_data.html index b4abdd6..b9d5f71 100644 --- a/docs/reference/get_publication_data.html +++ b/docs/reference/get_publication_data.html @@ -1,188 +1,111 @@ - - - - - - +Get Publication Data — get_publication_data • JournalAnalysis + Skip to contents -Get Publication Data — get_publication_data • JournalAnalysis - - - - +
    +
    +
    - +
    +

    This function uses a journal source to combine data based on queries.

    +
    - - +
    +

    Usage

    +
    get_publication_data(
    +  journal_source,
    +  queries,
    +  limit = 7500,
    +  min_year = NULL,
    +  max_year = NULL,
    +  min_citations = 5,
    +  n_cores = default_worker_count()
    +)
    +
    +
    +

    Arguments

    - - +
    journal_source
    +

    Journal metrics source: `incities` (InCites / JCR) or +`scimago`. Aliases `incites`, `jcr`, and `scimagojr` are also accepted.

    - +
    queries
    +

    Use one or multiple queries

    - - -
    -
    - - - -
    -
    -
    - +
    min_year
    +

    Minimum year to search

    -
    - -

    This function uses a journal source to combine data based on queries.

    - -
    -
    get_publication_data(journal_source, queries, limit = 7500,
    -  min_year = 2008, max_year = 2018, min_citations = 5)
    - -

    Arguments

    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    journal_source

    The journal to search

    queries

    Use one or multiple queries

    limit

    A minimum number of articles

    min_year

    Minimum year to search

    max_year

    Maximum year to search

    min_citations

    Minimum number of citations in a journal

    - -

    Value

    +
    max_year
    +

    Maximum year to search

    + +
    min_citations
    +

    Minimum number of citations in a journal

    + + +
    n_cores
    +

    Number of cores to use across multiple queries.

    + +
    +
    +

    Value

    A list of data objects including journals, articles, and combined data.

    - +
    -
    - -
    - - + + + - - - + diff --git a/docs/reference/get_publication_data.md b/docs/reference/get_publication_data.md new file mode 100644 index 0000000..f1abb7a --- /dev/null +++ b/docs/reference/get_publication_data.md @@ -0,0 +1,52 @@ +# Get Publication Data + +This function uses a journal source to combine data based on queries. + +## Usage + +``` r +get_publication_data( + journal_source, + queries, + limit = 7500, + min_year = NULL, + max_year = NULL, + min_citations = 5, + n_cores = default_worker_count() +) +``` + +## Arguments + +- journal_source: + + Journal metrics source: \`incities\` (InCites / JCR) or \`scimago\`. + Aliases \`incites\`, \`jcr\`, and \`scimagojr\` are also accepted. + +- queries: + + Use one or multiple queries + +- limit: + + A minimum number of articles + +- min_year: + + Minimum year to search + +- max_year: + + Maximum year to search + +- min_citations: + + Minimum number of citations in a journal + +- n_cores: + + Number of cores to use across multiple queries. + +## Value + +A list of data objects including journals, articles, and combined data. diff --git a/docs/reference/get_unique_issns.html b/docs/reference/get_unique_issns.html index abda43b..26843af 100644 --- a/docs/reference/get_unique_issns.html +++ b/docs/reference/get_unique_issns.html @@ -1,167 +1,78 @@ - - - - - - +Get Unique ISSNs — get_unique_issns • JournalAnalysis + Skip to contents -Get Unique ISSNs — get_unique_issns • JournalAnalysis - - - - +
    +
    +
    -
    - - + + + - - - + diff --git a/docs/reference/get_unique_issns.md b/docs/reference/get_unique_issns.md new file mode 100644 index 0000000..8aaf21a --- /dev/null +++ b/docs/reference/get_unique_issns.md @@ -0,0 +1,19 @@ +# Get Unique ISSNs + +This function filters ISSNs. + +## Usage + +``` r +get_unique_issns(issns) +``` + +## Arguments + +- issns: + + The issns from the articles + +## Value + +A tibble of filtered issns diff --git a/docs/reference/get_word_cloud.html b/docs/reference/get_word_cloud.html index d1497ad..c85d03b 100644 --- a/docs/reference/get_word_cloud.html +++ b/docs/reference/get_word_cloud.html @@ -1,165 +1,78 @@ - - - - - - +Get Word Cloud — get_word_cloud • JournalAnalysis + Skip to contents -Get Word Cloud — get_word_cloud • JournalAnalysis - - - - +
    +
    +
    - - +
    +

    This function imports a list of pubmed ids and creates a word cloud.

    +
    +
    +

    Usage

    +
    get_word_cloud(pubmed_ids, plot_name)
    +
    +
    +

    Arguments

    - - - +
    pubmed_ids
    +

    A list of pubmed ids

    - +
    plot_name
    +

    Path to the output word cloud

    - -
    -
    -
    - -
    -
    - - - + -
    -
    - -
    - -

    This function imports a list of pubmed ids and creates a word cloud.

    - -
    - -
    get_word_cloud(pubmed_ids, plot_name)
    - -

    Arguments

    - - - - - - - - - - -
    pubmed_ids

    A list of pubmed ids

    plot_name

    Path to the output word cloud

    - - -
    - +
    + + - - - - - + diff --git a/docs/reference/get_word_cloud.md b/docs/reference/get_word_cloud.md new file mode 100644 index 0000000..fe800c3 --- /dev/null +++ b/docs/reference/get_word_cloud.md @@ -0,0 +1,19 @@ +# Get Word Cloud + +This function imports a list of pubmed ids and creates a word cloud. + +## Usage + +``` r +get_word_cloud(pubmed_ids, plot_name) +``` + +## Arguments + +- pubmed_ids: + + A list of pubmed ids + +- plot_name: + + Path to the output word cloud diff --git a/docs/reference/incities2016.html b/docs/reference/incities2016.html new file mode 100644 index 0000000..9265b5b --- /dev/null +++ b/docs/reference/incities2016.html @@ -0,0 +1,129 @@ + +InCites Journal Citation Reports (2016) — incities2016 • JournalAnalysis + + +
    +
    + + + +
    +
    + + +
    +

    Journal-level citation metrics from Clarivate InCites / JCR for 2016. +Used by [get_journal_data()] when `data = "incities"`.

    +
    + +
    +
    incities2016
    +
    + +
    +

    Format

    +

    ## `incities2016` +A data frame with 12,120 rows and 13 columns:

    Rank
    +

    Journal rank by impact factor.

    + +
    Full.Journal.Title
    +

    Journal title.

    + +
    ISSN
    +

    ISSN(s) as exported from source (may include hyphens).

    + +
    Total.Cites
    +

    Total citation count (stored as character in source export).

    + +
    Journal.Impact.Factor
    +

    Journal Impact Factor for 2016.

    + +
    X5.Year.Impact.Factor
    +

    Five-year impact factor.

    + +
    Immediacy.Index
    +

    Immediacy index.

    + +
    Eigenfactor.Score
    +

    Eigenfactor score (numeric).

    + +
    Article.Influence.Score
    +

    Article influence score.

    + +
    Average.Journal.Impact.Factor.Percentile
    +

    JIF percentile (numeric).

    + +
    X, X.1, X.2
    +

    Placeholder columns from source export; all `NA`.

    + + +
    +
    +

    Source

    +

    Clarivate InCites Journal Citation Reports, 2016 release. + Downloaded and cleaned for use in JournalAnalysis. + See `data-raw/journal-metrics.R` for preparation code.

    +
    + +
    + +
    + + +
    + + + + + + + + diff --git a/docs/reference/index.html b/docs/reference/index.html index 96a1b1f..a65f311 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -1,216 +1,184 @@ - - - - - - +Package index • JournalAnalysis + Skip to contents -Function reference • JournalAnalysis - - - - +
    +
    +
    +
    +

    Workflow

    - - - +
    - - -
    -
    - - - -
    +
    -
    -
    - + get_publication_data() - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -

    All functions

    -

    -
    -

    get_articles_with_journal_data()

    -

    Get Articles With Journal Data

    -

    get_article_data()

    -

    Get Article Data

    -

    get_journal_data()

    -

    Get Journal Data

    -

    get_publication_data()

    -

    Get Publication Data

    -

    get_unique_issns()

    -

    Get Unique ISSNs

    -

    get_word_cloud()

    -

    Get Word Cloud

    -

    install_journalanalysis_packages()

    -

    Install JournalAnalysis Packages

    -

    issn_to_article_data()

    -

    ISSN to Article Data

    -

    issn_to_journal_data()

    -

    ISSN to Journal Data

    -

    save_as_csv()

    -

    Save as CSV

    -
    +
    +
    Get Publication Data
    +
    +

    Europe PMC articles

    - -
    -
    + + + -
    + + + + - - - + diff --git a/docs/reference/index.md b/docs/reference/index.md new file mode 100644 index 0000000..5375dfc --- /dev/null +++ b/docs/reference/index.md @@ -0,0 +1,38 @@ +# Package index + +## Workflow + +- [`get_publication_data()`](https://vallenderlab.github.io/journalanalysis/reference/get_publication_data.md) + : Get Publication Data + +## Europe PMC articles + +- [`get_article_data()`](https://vallenderlab.github.io/journalanalysis/reference/get_article_data.md) + : Get Article Data +- [`get_unique_issns()`](https://vallenderlab.github.io/journalanalysis/reference/get_unique_issns.md) + : Get Unique ISSNs +- [`issn_to_article_data()`](https://vallenderlab.github.io/journalanalysis/reference/issn_to_article_data.md) + : ISSN to Article Data + +## Journal metrics + +- [`get_journal_data()`](https://vallenderlab.github.io/journalanalysis/reference/get_journal_data.md) + : Get Journal Data +- [`issn_to_journal_data()`](https://vallenderlab.github.io/journalanalysis/reference/issn_to_journal_data.md) + : ISSN to Journal Data + +## InCites (JCR) data + +- [`jcr2023_wos`](https://vallenderlab.github.io/journalanalysis/reference/jcr2023_wos.md) + : InCites Journal Citation Reports via Web of Science (2023) +- [`scimagojr2025`](https://vallenderlab.github.io/journalanalysis/reference/scimagojr2025.md) + : SCImago Journal & Country Rank (2025) + +## Output and setup + +- [`save_as_csv()`](https://vallenderlab.github.io/journalanalysis/reference/save_as_csv.md) + : Save as CSV +- [`get_word_cloud()`](https://vallenderlab.github.io/journalanalysis/reference/get_word_cloud.md) + : Get Word Cloud +- [`install_journalanalysis_packages()`](https://vallenderlab.github.io/journalanalysis/reference/install_journalanalysis_packages.md) + : Install JournalAnalysis Packages diff --git a/docs/reference/install_journalanalysis_packages.html b/docs/reference/install_journalanalysis_packages.html index 7e4c608..b89470d 100644 --- a/docs/reference/install_journalanalysis_packages.html +++ b/docs/reference/install_journalanalysis_packages.html @@ -1,151 +1,65 @@ - - - - - - +Install JournalAnalysis Packages — install_journalanalysis_packages • JournalAnalysis + Skip to contents -Install JournalAnalysis Packages — install_journalanalysis_packages • JournalAnalysis - - - - +
    +
    +
    -
    - - + + + - - - + diff --git a/docs/reference/install_journalanalysis_packages.md b/docs/reference/install_journalanalysis_packages.md new file mode 100644 index 0000000..14a522a --- /dev/null +++ b/docs/reference/install_journalanalysis_packages.md @@ -0,0 +1,9 @@ +# Install JournalAnalysis Packages + +This function helps user to install packages used in this package + +## Usage + +``` r +install_journalanalysis_packages() +``` diff --git a/docs/reference/issn_to_article_data.html b/docs/reference/issn_to_article_data.html index 6c11755..59a7f80 100644 --- a/docs/reference/issn_to_article_data.html +++ b/docs/reference/issn_to_article_data.html @@ -1,171 +1,82 @@ - - - - - - +ISSN to Article Data — issn_to_article_data • JournalAnalysis + Skip to contents -ISSN to Article Data — issn_to_article_data • JournalAnalysis - - - - +
    +
    +
    +
    +

    This function filters article data by ISSN.

    +
    - - +
    +

    Usage

    +
    issn_to_article_data(data, issns)
    +
    - +
    +

    Arguments

    - +
    data
    +

    The data tibble of the articles

    - -
    -
    - - - -
    +
    issns
    +

    The issns from the articles

    -
    -
    - - -
    - -

    This function filters article data by ISSN.

    - +
    +
    +

    Value

    +

    A tibble of the articles filtered by ISSNs

    -
    issn_to_article_data(data, issns)
    - -

    Arguments

    - - - - - - - - - - -
    data

    The data tibble of the articles

    issns

    The issns from the articles

    - -

    Value

    - -

    A tibble of the articles filtered by ISSNs

    - +
    -
    - + - - - - + diff --git a/docs/reference/issn_to_article_data.md b/docs/reference/issn_to_article_data.md new file mode 100644 index 0000000..81c8e0c --- /dev/null +++ b/docs/reference/issn_to_article_data.md @@ -0,0 +1,23 @@ +# ISSN to Article Data + +This function filters article data by ISSN. + +## Usage + +``` r +issn_to_article_data(data, issns) +``` + +## Arguments + +- data: + + The data tibble of the articles + +- issns: + + The issns from the articles + +## Value + +A tibble of the articles filtered by ISSNs diff --git a/docs/reference/issn_to_journal_data.html b/docs/reference/issn_to_journal_data.html index 01f60d4..6a05684 100644 --- a/docs/reference/issn_to_journal_data.html +++ b/docs/reference/issn_to_journal_data.html @@ -1,171 +1,82 @@ - - - - - - +ISSN to Journal Data — issn_to_journal_data • JournalAnalysis + Skip to contents -ISSN to Journal Data — issn_to_journal_data • JournalAnalysis - - - - +
    +
    +
    +
    +

    This function retrieves journal data from an existing data file.

    +
    - - +
    +

    Usage

    +
    issn_to_journal_data(data, issns)
    +
    - +
    +

    Arguments

    - +
    data
    +

    The data source of the journal

    - -
    -
    - - - -
    +
    issns
    +

    The issns from the journal source

    -
    -
    - - -
    - -

    This function retrieves journal data from an existing data file.

    - +
    +
    +

    Value

    +

    A tibble of the data filtered by ISSN

    -
    issn_to_journal_data(data, issns)
    - -

    Arguments

    - - - - - - - - - - -
    data

    The data source of the journal

    issns

    The issns from the journal source

    - -

    Value

    - -

    A tibble of the data filtered by ISSN

    - +
    -
    - + - - - - + diff --git a/docs/reference/issn_to_journal_data.md b/docs/reference/issn_to_journal_data.md new file mode 100644 index 0000000..bb488be --- /dev/null +++ b/docs/reference/issn_to_journal_data.md @@ -0,0 +1,23 @@ +# ISSN to Journal Data + +This function retrieves journal data from an existing data file. + +## Usage + +``` r +issn_to_journal_data(data, issns) +``` + +## Arguments + +- data: + + The data source of the journal + +- issns: + + The issns from the journal source + +## Value + +A tibble of the data filtered by ISSN diff --git a/docs/reference/jcr2023_wos.html b/docs/reference/jcr2023_wos.html new file mode 100644 index 0000000..8ddbb7a --- /dev/null +++ b/docs/reference/jcr2023_wos.html @@ -0,0 +1,112 @@ + +InCites Journal Citation Reports via Web of Science (2023) — jcr2023_wos • JournalAnalysis + Skip to contents + + +
    +
    +
    + +
    +

    Journal-level metrics from a 2023 InCites / Journal Citation Reports export. +Used by [get_journal_data()] when `data = "incities"`. The aliases `incites` +and `jcr` refer to the same bundled dataset.

    +
    + +
    +

    Usage

    +
    jcr2023_wos
    +
    + +
    +

    Format

    +

    ## `jcr2023_wos` +A data frame with 21,848 rows and 10 columns:

    journal_name
    +

    Journal title from the source export.

    + +
    issn
    +

    Print ISSN.

    + +
    e_issn
    +

    Electronic ISSN.

    + +
    category
    +

    One or more JCR subject categories.

    + +
    edition
    +

    Indexed Web of Science edition tags.

    + +
    total_citations
    +

    Total citations in the 2023 source export.

    + +
    impact_factor_2023
    +

    2023 Journal Impact Factor.

    + +
    jif_quartile
    +

    Journal Impact Factor quartile.

    + +
    jci_2023
    +

    2023 Journal Citation Indicator.

    + +
    percent_oa_gold
    +

    Percent gold open access.

    + + +
    +
    +

    Source

    +

    <https://raw.githubusercontent.com/bjorn-heilagi/journal-citation-reports-wos/refs/heads/main/datasets/jcr_2023_wos.csv> +accessed 2026-06-10.

    +
    + +
    + + +
    + + + + + + + diff --git a/docs/reference/jcr2023_wos.md b/docs/reference/jcr2023_wos.md new file mode 100644 index 0000000..940014e --- /dev/null +++ b/docs/reference/jcr2023_wos.md @@ -0,0 +1,60 @@ +# InCites Journal Citation Reports via Web of Science (2023) + +Journal-level metrics from a 2023 InCites / Journal Citation Reports +export. Used by \[get_journal_data()\] when \`data = "incities"\`. The +aliases \`incites\` and \`jcr\` refer to the same bundled dataset. + +## Usage + +``` r +jcr2023_wos +``` + +## Format + +\## \`jcr2023_wos\` A data frame with 21,848 rows and 10 columns: + +- journal_name: + + Journal title from the source export. + +- issn: + + Print ISSN. + +- e_issn: + + Electronic ISSN. + +- category: + + One or more JCR subject categories. + +- edition: + + Indexed Web of Science edition tags. + +- total_citations: + + Total citations in the 2023 source export. + +- impact_factor_2023: + + 2023 Journal Impact Factor. + +- jif_quartile: + + Journal Impact Factor quartile. + +- jci_2023: + + 2023 Journal Citation Indicator. + +- percent_oa_gold: + + Percent gold open access. + +## Source + +\ +accessed 2026-06-10. diff --git a/docs/reference/save_as_csv.html b/docs/reference/save_as_csv.html index b5c1100..3ca261a 100644 --- a/docs/reference/save_as_csv.html +++ b/docs/reference/save_as_csv.html @@ -1,165 +1,78 @@ - - - - - - +Save as CSV — save_as_csv • JournalAnalysis + Skip to contents -Save as CSV — save_as_csv • JournalAnalysis - - - - +
    +
    +
    - - +
    +

    This function saves a tibble or dataframe as a csv file.

    +
    +
    +

    Usage

    +
    save_as_csv(data, filename)
    +
    +
    +

    Arguments

    - - - +
    data
    +

    The dataframe or tibble

    - +
    filename
    +

    Name or path of output file without .csv extension

    - -
    -
    -
    - -
    -
    - - - + -
    -
    - -
    - -

    This function saves a tibble or dataframe as a csv file.

    - -
    - -
    save_as_csv(data, filename)
    - -

    Arguments

    - - - - - - - - - - -
    data

    The dataframe or tibble

    filename

    Name or path of output file without .csv extension

    - - -
    - +
    + + - - - - - + diff --git a/docs/reference/save_as_csv.md b/docs/reference/save_as_csv.md new file mode 100644 index 0000000..28aaa27 --- /dev/null +++ b/docs/reference/save_as_csv.md @@ -0,0 +1,19 @@ +# Save as CSV + +This function saves a tibble or dataframe as a csv file. + +## Usage + +``` r +save_as_csv(data, filename) +``` + +## Arguments + +- data: + + The dataframe or tibble + +- filename: + + Name or path of output file without .csv extension diff --git a/docs/reference/scimago2016.html b/docs/reference/scimago2016.html new file mode 100644 index 0000000..d015f6b --- /dev/null +++ b/docs/reference/scimago2016.html @@ -0,0 +1,144 @@ + +Scimago Journal Rank (2016) — scimago2016 • JournalAnalysis + + +
    +
    + + + +
    +
    + + +
    +

    Journal-level metrics from Scimago Journal & Country Rank for 2016. +Used by [get_journal_data()] when `data = "scimago"`.

    +
    + +
    +
    scimago2016
    +
    + +
    +

    Format

    +

    ## `scimago2016` +A data frame with 28,606 rows and 16 columns:

    Rank
    +

    Scimago rank.

    + +
    Title
    +

    Journal title.

    + +
    Type
    +

    Publication type (e.g. journal, book series).

    + +
    Issn
    +

    ISSN string as exported from Scimago (normalized by [get_journal_data()]).

    + +
    SJR
    +

    SCImago Journal Rank indicator.

    + +
    SJR.Best.Quartile
    +

    Best quartile (Q1–Q4).

    + +
    H.index
    +

    H-index.

    + +
    Total.Docs...2016.
    +

    Documents published in 2016.

    + +
    Total.Docs...3years.
    +

    Documents in the prior three years.

    + +
    Total.Refs.
    +

    Total references.

    + +
    Total.Cites..3years.
    +

    Citations in the prior three years.

    + +
    Citable.Docs...3years.
    +

    Citable documents in the prior three years.

    + +
    Cites...Doc...2years.
    +

    Citations per document (two-year window).

    + +
    Ref....Doc.
    +

    References per document.

    + +
    Country
    +

    Country of publication.

    + +
    Categories
    +

    Subject categories assigned by Scimago.

    + + +
    +
    +

    Source

    +

    Scimago Journal & Country Rank, 2016 release. + <https://www.scimagojr.com/> + See `data-raw/journal-metrics.R` for preparation code.

    +
    + +
    + +
    + + +
    + + + + + + + + diff --git a/docs/reference/scimagojr2025.html b/docs/reference/scimagojr2025.html new file mode 100644 index 0000000..ae5c719 --- /dev/null +++ b/docs/reference/scimagojr2025.html @@ -0,0 +1,154 @@ + +SCImago Journal & Country Rank (2025) — scimagojr2025 • JournalAnalysis + Skip to contents + + +
    +
    +
    + +
    +

    Journal-level metrics from SCImago Journal & Country Rank for 2025. +Used by [get_journal_data()] when `data = "scimago"` or `data = "scimagojr"`.

    +
    + +
    +

    Usage

    +
    scimagojr2025
    +
    + +
    +

    Format

    +

    ## `scimagojr2025` +A data frame with 32,193 rows and 25 columns:

    Rank
    +

    SCImago rank from the source export.

    + +
    Sourceid
    +

    SCImago source identifier.

    + +
    Title
    +

    Journal title, with underscores replaced by spaces.

    + +
    Type
    +

    Publication type, such as journal or book series.

    + +
    Issn
    +

    ISSN string from the source export.

    + +
    Publisher
    +

    Publisher name.

    + +
    Open.Access
    +

    Open access flag from the source export.

    + +
    Open.Access.Diamond
    +

    Diamond open access flag.

    + +
    SJR
    +

    SCImago Journal Rank indicator.

    + +
    SJR.Best.Quartile
    +

    Best quartile (Q1-Q4).

    + +
    H.index
    +

    H-index.

    + +
    Total.Docs...2025.
    +

    Documents published in 2025.

    + +
    Total.Docs...3years.
    +

    Documents in the prior three years.

    + +
    Total.Refs.
    +

    Total references.

    + +
    Total.Citations..3years.
    +

    Citations in the prior three years.

    + +
    Citable.Docs...3years.
    +

    Citable documents in the prior three years.

    + +
    Citations...Doc...2years.
    +

    Citations per document, two-year window.

    + +
    Ref....Doc.
    +

    References per document.

    + +
    X.Female
    +

    Percent female authorship from the source export.

    + +
    Overton
    +

    Overton indicator from the source export.

    + +
    Country
    +

    Country of publication.

    + +
    Region
    +

    World region.

    + +
    Coverage
    +

    Source coverage years.

    + +
    Categories
    +

    Subject categories assigned by SCImago.

    + +
    Areas
    +

    Broad subject areas assigned by SCImago.

    + + +
    +
    +

    Source

    +

    Local source file `data/scimagojr_2025.csv`, accessed 2026-06-10 from +<https://www.scimagojr.com/journalrank.php>.

    +
    + +
    + + +
    + + + + + + + diff --git a/docs/reference/scimagojr2025.md b/docs/reference/scimagojr2025.md new file mode 100644 index 0000000..04cfc3d --- /dev/null +++ b/docs/reference/scimagojr2025.md @@ -0,0 +1,120 @@ +# SCImago Journal & Country Rank (2025) + +Journal-level metrics from SCImago Journal & Country Rank for 2025. Used +by \[get_journal_data()\] when \`data = "scimago"\` or \`data = +"scimagojr"\`. + +## Usage + +``` r +scimagojr2025 +``` + +## Format + +\## \`scimagojr2025\` A data frame with 32,193 rows and 25 columns: + +- Rank: + + SCImago rank from the source export. + +- Sourceid: + + SCImago source identifier. + +- Title: + + Journal title, with underscores replaced by spaces. + +- Type: + + Publication type, such as journal or book series. + +- Issn: + + ISSN string from the source export. + +- Publisher: + + Publisher name. + +- Open.Access: + + Open access flag from the source export. + +- Open.Access.Diamond: + + Diamond open access flag. + +- SJR: + + SCImago Journal Rank indicator. + +- SJR.Best.Quartile: + + Best quartile (Q1-Q4). + +- H.index: + + H-index. + +- Total.Docs...2025.: + + Documents published in 2025. + +- Total.Docs...3years.: + + Documents in the prior three years. + +- Total.Refs.: + + Total references. + +- Total.Citations..3years.: + + Citations in the prior three years. + +- Citable.Docs...3years.: + + Citable documents in the prior three years. + +- Citations...Doc...2years.: + + Citations per document, two-year window. + +- Ref....Doc.: + + References per document. + +- X.Female: + + Percent female authorship from the source export. + +- Overton: + + Overton indicator from the source export. + +- Country: + + Country of publication. + +- Region: + + World region. + +- Coverage: + + Source coverage years. + +- Categories: + + Subject categories assigned by SCImago. + +- Areas: + + Broad subject areas assigned by SCImago. + +## Source + +Local source file \`data/scimagojr_2025.csv\`, accessed 2026-06-10 from +\. diff --git a/docs/search.json b/docs/search.json new file mode 100644 index 0000000..293619a --- /dev/null +++ b/docs/search.json @@ -0,0 +1 @@ +[{"path":[]},{"path":"https://vallenderlab.github.io/journalanalysis/AGENTS.html","id":"project","dir":"","previous_headings":"","what":"Project","title":"JournalAnalysis — Agent Guide","text":"R package matching Europe PMC articles Scimago/InCites journal metrics. Read README.md workflow order usage examples. Entry point: get_publication_data() returns list journals, articles, combined elements. Source layout:","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/AGENTS.html","id":"advanced-r-priorities","dir":"","previous_headings":"","what":"Advanced R priorities","title":"JournalAnalysis — Agent Guide","text":"Correct, explicit functions clever shortcuts Vectorized dplyr joins row-wise loops Early input validation; loud failures Tests changed behavior (testthat 3e) Profile optimizing API join code","code":""},{"path":[]},{"path":"https://vallenderlab.github.io/journalanalysis/AGENTS.html","id":"never","dir":"","previous_headings":"","what":"Never","title":"JournalAnalysis — Agent Guide","text":"exists() local state 1:length(x) indexing Metaprogramming (eval(parse()), NSE tricks) without documented need Silent NULL returns invalid input Unused imports dead parallel setup (e.g. BiocParallel::SnowParam() use) library() calls R/ (use @importFrom instead) Drive-refactors outside requested scope","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/AGENTS.html","id":"functions-and-interfaces","dir":"","previous_headings":"","what":"Functions and interfaces","title":"JournalAnalysis — Agent Guide","text":"Validate inputs early: rlang::arg_match(), stopifnot(), explicit stop() Fail loudly informative errors; use warning() recoverable partial loss Implicit return last expression; avoid return() unless clarity demands Keep functions pure possible: assign() parent frames Side-effect functions (get_word_cloud(), save_as_csv()) must document write return export helpers unless user-facing; use @keywords internal internal APIs","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/AGENTS.html","id":"performance","dir":"","previous_headings":"","what":"Performance","title":"JournalAnalysis — Agent Guide","text":"row-loop articles/journals vectorized join works profile first (bench, profvis) optimizing Europe PMC calls /O-bound; limit caps results per query, total Pagination implemented; document limitation touching API code BiocParallel belongs Imports actually parallelized","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/AGENTS.html","id":"package-hotspots","dir":"","previous_headings":"","what":"Package hotspots","title":"JournalAnalysis — Agent Guide","text":"get_articles_with_journal_data(): primary performance correctness risk; row-wise loop repeated filter() + left_join() vectorized ISSN normalization: strip hyphens, uppercase X, split primary/secondary one place incities / incites / jcr InCites (JCR) source; scimago / scimagojr Scimago Bundled metrics snapshot datasets (jcr2023_wos, scimagojr2025); assume current impact factors Filter messages get_article_data() print filter actually runs get_unique_issns() deduplicate ISSNs","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/AGENTS.html","id":"debugging","dir":"","previous_headings":"","what":"Debugging","title":"JournalAnalysis — Agent Guide","text":"non-obvious bugs, build minimal reprex refactoring silence warnings without documenting Fix root cause adding defensive branches everywhere","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/AGENTS.html","id":"package-engineering","dir":"","previous_headings":"","what":"Package engineering","title":"JournalAnalysis — Agent Guide","text":"Scaffold new functions tests usethis Organize functions topic R/, one file Regenerate .Rd NAMESPACE roxygen edits Remove unused Imports cleaning dependencies Add testthat tests changed behavior LICENSE must match DESCRIPTION (currently MIT)","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/AGENTS.html","id":"change-discipline","dir":"","previous_headings":"","what":"Change discipline","title":"JournalAnalysis — Agent Guide","text":"Minimal diffs: one concern per change Match existing naming, file layout, tidyverse conventions Set seeds randomness exists Document assumptions roxygen, chat","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/AGENTS.html","id":"related-rules","dir":"","previous_headings":"","what":"Related rules","title":"JournalAnalysis — Agent Guide","text":"Style formatting: .cursor/rules/r.mdc Explanation format: .cursor/rules/user-style.mdc Statistical rigor: .cursor/rules/analyses.mdc README structure: .cursor/rules/readme.mdc duplicate files .","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":null,"dir":"","previous_headings":"","what":"Contributing","title":"Contributing","text":"welcome contributions! document provides guidelines contributing JournalAnalysis.","code":""},{"path":[]},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"before-submitting","dir":"","previous_headings":"Submitting Bugs","what":"Before Submitting","title":"Contributing","text":"submitting bug report, please following: Make sure ’re latest version. problem may solved already. Try older versions. ’re latest release, try rolling back minor versions help narrow problem first arose. Search project’s issue tracker make sure ’s known issue.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"bug-report-contents","dir":"","previous_headings":"Submitting Bugs","what":"Bug Report Contents","title":"Contributing","text":"Make sure report includes: Operating system: Windows? macOS? Linux? Include version details. R version: Output R.version.string sessionInfo(). Package version: Output packageVersion(\"JournalAnalysis\"). RStudio version: addin involved, include RStudio build. Installation method: r-universe, GitHub (devtools::install_github), source. Steps reproduce: Include minimal example, command addin steps used, full output error message.","code":""},{"path":[]},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"licensing","dir":"","previous_headings":"Contributing Changes","what":"Licensing","title":"Contributing","text":"contributing project, agree contributions licensed terms rest project (see LICENSE file repository root). Per-file copyright/license headers typically needed. Please don’t add copyright headers new files unless project’s license actually requires .","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"version-control","dir":"","previous_headings":"Contributing Changes","what":"Version Control","title":"Contributing","text":"Always make new branch work, matter small. Don’t submit unrelated changes branch/pull request. Base branch main new features bug fixes. PR sidelined , rebase merge latest main resubmitting.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"code-formatting","dir":"","previous_headings":"Contributing Changes","what":"Code Formatting","title":"Contributing","text":"Follow style used repository. Consistency rest project always trumps considerations. Use snake_case functions variables, <- assignment, 2-space indentation.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"documentation","dir":"","previous_headings":"Contributing Changes","what":"Documentation","title":"Contributing","text":"Documentation required contributions: Roxygen2 comments must created updated exported functions. README pkgdown docs updated user-facing behavior changes. Changelog entry credit contributor change user-visible.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"tests","dir":"","previous_headings":"Contributing Changes","what":"Tests","title":"Contributing","text":"Tests required contributions: Bug fixes must include test proving existence bug fixed. New features must include tests proving actually work. Run devtools::test() locally opening pull request.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"workflow-example","dir":"","previous_headings":"","what":"Workflow Example","title":"Contributing","text":"’s example workflow contributing:","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"preparing-your-fork","dir":"","previous_headings":"Workflow Example","what":"Preparing Your Fork","title":"Contributing","text":"Fork repository GitHub. Clone fork: git clone git@github.com:yourname/JournalAnalysis.git cd JournalAnalysis Install development dependencies: devtools::install_dev_deps() Create branch: git checkout -b fix-description main","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"making-your-changes","dir":"","previous_headings":"Workflow Example","what":"Making Your Changes","title":"Contributing","text":"Write tests expecting correct/fixed functionality; make sure fail initially. Implement changes. Run tests : devtools::test() Run full check: devtools::check() Update documentation needed. Commit changes: git commit -m \"Brief description changes\"","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"creating-pull-requests","dir":"","previous_headings":"Workflow Example","what":"Creating Pull Requests","title":"Contributing","text":"Push branch: git push origin HEAD Visit GitHub click “Pull request” button. description field, reference issue number (fixing existing issue) describe issue fix. Submit patient - maintainers review can.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html","id":"questions","dir":"","previous_headings":"","what":"Questions?","title":"Contributing","text":"questions contributing, please open issue contact maintainers.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/LICENSE.html","id":null,"dir":"","previous_headings":"","what":"MIT License","title":"MIT License","text":"Copyright (c) 2018-2026 Vallender Lab Permission hereby granted, free charge, person obtaining copy software associated documentation files (“Software”), deal Software without restriction, including without limitation rights use, copy, modify, merge, publish, distribute, sublicense, /sell copies Software, permit persons Software furnished , subject following conditions: copyright notice permission notice shall included copies substantial portions Software. SOFTWARE PROVIDED “”, WITHOUT WARRANTY KIND, EXPRESS IMPLIED, INCLUDING LIMITED WARRANTIES MERCHANTABILITY, FITNESS PARTICULAR PURPOSE NONINFRINGEMENT. EVENT SHALL AUTHORS COPYRIGHT HOLDERS LIABLE CLAIM, DAMAGES LIABILITY, WHETHER ACTION CONTRACT, TORT OTHERWISE, ARISING , CONNECTION SOFTWARE USE DEALINGS SOFTWARE.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/articles/example.html","id":"setup","dir":"Articles","previous_headings":"","what":"Setup","title":"Finding Journals for Your Paper","text":"Load JournalAnalysis dplyr filtering steps later tutorial.","code":"library(JournalAnalysis) library(dplyr)"},{"path":"https://vallenderlab.github.io/journalanalysis/articles/example.html","id":"define-your-search","dir":"Articles","previous_headings":"","what":"Define your search","title":"Finding Journals for Your Paper","text":"Europe PMC queries use boolean syntax website search box. can pass one query combine several; multiple queries unioned filtering. JournalAnalysis also ships example query strings can adapt: tutorial use query3, targets microbiome papers psychiatry, psychology, neuroscience-related contexts excluding ecology papers. See Europe PMC search help field names operators.","code":"query3 #> [1] \"microbiome AND (psychiatry OR psychology OR neuroscience) AND (rhesus OR macaque or human or stress or monkey) AND (NOT ecology)\""},{"path":"https://vallenderlab.github.io/journalanalysis/articles/example.html","id":"retrieve-publication-data","dir":"Articles","previous_headings":"","what":"Retrieve publication data","title":"Finding Journals for Your Paper","text":"get_publication_data() main entry point. : Loads journal metrics scimago incities (InCites / JCR) Queries Europe PMC search string Filters articles year citation count Joins articles journals ISSN Start modest limit refine query: returned list three elements:","code":"pub_data <- get_publication_data( journal_source = \"scimago\", queries = query3, limit = 200, min_year = 2015, min_citations = 3, n_cores = 1 ) #> 28861 records found, returning 200 #> Removed records published before 2015. #> Removed records with less than 3 citations. #> Removed records with NA values for pmid, doi, and authors. #> 17 records passed the filter. length(pub_data) #> [1] 3 names(pub_data) #> [1] \"journals\" \"articles\" \"combined\" vapply(pub_data, nrow, integer(1)) #> journals articles combined #> 16 17 17"},{"path":"https://vallenderlab.github.io/journalanalysis/articles/example.html","id":"inspect-the-results","dir":"Articles","previous_headings":"","what":"Inspect the results","title":"Finding Journals for Your Paper","text":"retrieval, inspect list element confirm query filters behaved expected. PubMed IDs matched articles:","code":"dplyr::glimpse(pub_data$articles) #> Rows: 17 #> Columns: 30 #> $ id \"41077197\", \"40420360\", \"40558535\", \"41092898\", … #> $ source \"MED\", \"MED\", \"MED\", \"MED\", \"MED\", \"MED\", \"MED\",… #> $ pmid \"41077197\", \"40420360\", \"40558535\", \"41092898\", … #> $ pmcid \"PMC12666862\", \"PMC12106051\", \"PMC12190894\", \"PM… #> $ doi \"10.1016/j.jinf.2025.106626\", \"10.1002/alz.70273… #> $ title \"Age-related severity of nontuberculous mycobact… #> $ authorString \"Napier EG, Doratt BM, Cinco IR, Stuart EV, Gero… #> $ journalTitle \"J Infect\", \"Alzheimers Dement\", \"Cells\", \"Neuro… #> $ pubYear 2025, 2025, 2025, 2025, 2025, 2025, 2024, 2025, … #> $ journalIssn \"01634453; 15322742;\", \"15525260; 15525279;\", \"2… #> $ pageInfo \"106626\", \"e70273\", \"908\", \"4107-4133\", \"226\", \"… #> $ pubType \"research-article; journal article\", \"review-art… #> $ isOpenAccess \"Y\", \"Y\", \"Y\", \"N\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\"… #> $ inEPMC \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\"… #> $ inPMC \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\"… #> $ hasPDF \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\"… #> $ hasBook \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\"… #> $ hasSuppl \"Y\", \"Y\", \"N\", \"N\", \"N\", \"N\", \"Y\", \"N\", \"Y\", \"Y\"… #> $ citedByCount 3, 10, 3, 8, 8, 3, 4, 7, 3, 3, 38, 10, 12, 4, 4,… #> $ hasReferences \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\"… #> $ hasTextMinedTerms \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\"… #> $ hasDbCrossReferences \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\"… #> $ hasLabsLinks \"N\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\"… #> $ hasTMAccessionNumbers \"Y\", \"N\", \"N\", \"N\", \"N\", \"N\", \"Y\", \"N\", \"N\", \"N\"… #> $ firstIndexDate \"2025-10-13\", \"2025-05-27\", \"2025-06-26\", \"2025-… #> $ firstPublicationDate \"2025-10-10\", \"2025-05-01\", \"2025-06-16\", \"2025-… #> $ journalVolume \"91\", \"21\", \"14\", \"113\", \"30\", \"17\", \"10\", \"19\",… #> $ issue \"5\", \"5\", \"12\", \"24\", \"1\", \"5\", \"12\", NA, NA, \"1… #> $ ISSN.1 \"01634453\", \"15525260\", \"20734409\", \"08966273\", … #> $ ISSN.2 \"15322742;\", \"15525279;\", \"\", \"10974199;\", \"2047… dplyr::glimpse(pub_data$journals) #> Rows: 16 #> Columns: 28 #> $ Rank 115, 306, 349, 501, 752, 800, 900, 1215, 144… #> $ Sourceid 17978, 19700182758, 3600148102, 50032, 21100… #> $ Title \"Neuron\", \"Nature Communications\", \"Alzheime… #> $ Type \"journal\", \"journal\", \"journal\", \"journal\", … #> $ Issn \"10974199, 08966273\", \"20411723\", \"15525279,… #> $ Publisher \"Cell Press\", \"Nature Research\", \"John Wiley… #> $ Open.Access \"No\", \"Yes\", \"No\", \"Yes\", \"No\", \"Yes\", \"No\",… #> $ Open.Access.Diamond \"No\", \"No\", \"No\", \"No\", \"No\", \"No\", \"No\", \"N… #> $ SJR 8.564, 4.904, 4.530, 3.685, 2.906, 2.827, 2.… #> $ SJR.Best.Quartile \"Q1\", \"Q1\", \"Q1\", \"Q1\", \"Q1\", \"Q1\", \"Q1\", \"Q… #> $ H.index 569, 634, 194, 189, 124, 144, 247, 152, 193,… #> $ Total.Docs...2025. 348, 11528, 1244, 300, 12, 538, 365, 289, 83… #> $ Total.Docs...3years. 1058, 26313, 1938, 947, 28, 1598, 1033, 1072… #> $ Total.Refs. 27520, 755955, 72380, 24581, 1953, 30815, 14… #> $ Total.Citations..3years. 12733, 452297, 17963, 12017, 277, 10831, 542… #> $ Citable.Docs...3years. 778, 25888, 1394, 946, 25, 1593, 700, 394, 2… #> $ Citations...Doc...2years. 11.25, 16.60, 11.93, 11.19, 7.86, 6.38, 5.10… #> $ Ref....Doc. 79.08, 65.58, 58.18, 81.94, 162.75, 57.28, 3… #> $ X.Female 41.08, 37.59, 49.88, 47.54, 75.56, 43.29, 46… #> $ Overton 2, 91, 6, 1, 0, 0, 0, 7, 6, 0, 1, 0, 6, 0, 0… #> $ Country \"United States\", \"United Kingdom\", \"United S… #> $ Region \"Northern America\", \"Western Europe\", \"North… #> $ Coverage \"1988-2026\", \"2010-2026\", \"2005-2026\", \"2004… #> $ Categories \"Neuroscience (miscellaneous) (Q1)\", \"Bioche… #> $ Areas \"Neuroscience\", \"Biochemistry, Genetics and … #> $ ISSN \"10974199; 08966273\", \"20411723\", \"15525279;… #> $ ISSN.1 \"10974199\", \"20411723\", \"15525279\", \"1742209… #> $ ISSN.2 \"08966273\", \"\", \"15525260\", \"\", \"21683492\", … dplyr::glimpse(pub_data$combined) #> Rows: 17 #> Columns: 55 #> $ id \"41077197\", \"40420360\", \"40558535\", \"4109289… #> $ source \"MED\", \"MED\", \"MED\", \"MED\", \"MED\", \"MED\", \"M… #> $ pmid \"41077197\", \"40420360\", \"40558535\", \"4109289… #> $ pmcid \"PMC12666862\", \"PMC12106051\", \"PMC12190894\",… #> $ doi \"10.1016/j.jinf.2025.106626\", \"10.1002/alz.7… #> $ title \"Age-related severity of nontuberculous myco… #> $ authorString \"Napier EG, Doratt BM, Cinco IR, Stuart EV, … #> $ journalTitle \"J Infect\", \"Alzheimers Dement\", \"Cells\", \"N… #> $ pubYear 2025, 2025, 2025, 2025, 2025, 2025, 2024, 20… #> $ journalIssn \"01634453; 15322742;\", \"15525260; 15525279;\"… #> $ pageInfo \"106626\", \"e70273\", \"908\", \"4107-4133\", \"226… #> $ pubType \"research-article; journal article\", \"review… #> $ isOpenAccess \"Y\", \"Y\", \"Y\", \"N\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\",… #> $ inEPMC \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\",… #> $ inPMC \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\",… #> $ hasPDF \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\",… #> $ hasBook \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\",… #> $ hasSuppl \"Y\", \"Y\", \"N\", \"N\", \"N\", \"N\", \"Y\", \"N\", \"Y\",… #> $ citedByCount 3, 10, 3, 8, 8, 3, 4, 7, 3, 3, 38, 10, 12, 4… #> $ hasReferences \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\",… #> $ hasTextMinedTerms \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\",… #> $ hasDbCrossReferences \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\", \"N\",… #> $ hasLabsLinks \"N\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\", \"Y\",… #> $ hasTMAccessionNumbers \"Y\", \"N\", \"N\", \"N\", \"N\", \"N\", \"Y\", \"N\", \"N\",… #> $ firstIndexDate \"2025-10-13\", \"2025-05-27\", \"2025-06-26\", \"2… #> $ firstPublicationDate \"2025-10-10\", \"2025-05-01\", \"2025-06-16\", \"2… #> $ journalVolume \"91\", \"21\", \"14\", \"113\", \"30\", \"17\", \"10\", \"… #> $ issue \"5\", \"5\", \"12\", \"24\", \"1\", \"5\", \"12\", NA, NA… #> $ ISSN.1 \"01634453\", \"15525260\", \"20734409\", \"0896627… #> $ ISSN.2 \"15322742;\", \"15525279;\", \"\", \"10974199;\", \"… #> $ Rank 1215, 349, 1977, 115, 31880, 6244, 2223, 266… #> $ Sourceid 22428, 3600148102, 21100978391, 17978, 13221… #> $ Title \"Journal of Infection\", \"Alzheimer's and Dem… #> $ Type \"journal\", \"journal\", \"journal\", \"journal\", … #> $ Issn \"01634453, 15322742\", \"15525279, 15525260\", … #> $ Publisher \"W.B. Saunders Ltd\", \"John Wiley and Sons In… #> $ Open.Access \"Yes\", \"No\", \"Yes\", \"No\", \"Yes\", \"Yes\", \"Yes… #> $ Open.Access.Diamond \"No\", \"No\", \"No\", \"No\", \"No\", \"No\", \"No\", \"N… #> $ SJR 2.180, 4.530, 1.687, 8.564, NA, 0.856, 1.575… #> $ SJR.Best.Quartile \"Q1\", \"Q1\", \"Q1\", \"Q1\", \"-\", \"Q2\", \"Q1\", \"Q2… #> $ H.index 152, 194, 196, 569, 78, 33, 62, 152, 115, 19… #> $ Total.Docs...2025. 289, 1244, 2022, 348, 174, 205, 251, 245, 14… #> $ Total.Docs...3years. 1072, 1938, 9075, 1058, 1543, 310, 579, 1625… #> $ Total.Refs. 10607, 72380, 189277, 27520, 0, 12013, 16063… #> $ Total.Citations..3years. 3945, 17963, 58352, 12733, 7128, 1050, 2788,… #> $ Citable.Docs...3years. 394, 1394, 8892, 778, 1534, 305, 576, 1459, … #> $ Citations...Doc...2years. 4.41, 11.93, 6.13, 11.25, 4.74, 3.50, 4.24, … #> $ Ref....Doc. 36.70, 58.18, 93.61, 79.08, 0.00, 58.60, 64.… #> $ X.Female 46.76, 49.88, 47.25, 41.08, 41.83, 45.26, 45… #> $ Overton 7, 6, 0, 2, 1, 0, 1, 0, 0, 0, 1, 91, 6, 0, 0… #> $ Country \"United Kingdom\", \"United States\", \"Switzerl… #> $ Region \"Western Europe\", \"Northern America\", \"Weste… #> $ Coverage \"1979-2026\", \"2005-2026\", \"2011-2026\", \"1988… #> $ Categories \"Infectious Diseases (Q1); Microbiology (med… #> $ Areas \"Medicine\", \"Medicine; Neuroscience\", \"Bioch… pmids <- pub_data$articles$pmid head(pmids) #> [1] \"41077197\" \"40420360\" \"40558535\" \"41092898\" \"40176069\" \"40423227\""},{"path":"https://vallenderlab.github.io/journalanalysis/articles/example.html","id":"summarize-abstracts","dir":"Articles","previous_headings":"","what":"Summarize abstracts","title":"Finding Journals for Your Paper","text":"get_word_cloud() fetches abstracts vector PubMed IDs writes PNG word cloud:","code":"wordcloud_path <- \"microbiome_psych_wordcloud.png\" get_word_cloud( pubmed_ids = pmids, plot_name = wordcloud_path ) #> There are total 17 PMIDs #> Warning in tm_map.SimpleCorpus(abstTxt, removePunctuation): transformation #> drops documents #> Warning in tm_map.SimpleCorpus(text2.corpus, function(x) removeNumbers(x)): #> transformation drops documents #> Warning in tm_map.SimpleCorpus(text2.corpus, tolower): transformation drops #> documents #> Warning in tm_map.SimpleCorpus(text2.corpus, removeWords, #> stopwords(\"english\")): transformation drops documents #> agg_png #> 2 knitr::include_graphics(wordcloud_path)"},{"path":"https://vallenderlab.github.io/journalanalysis/articles/example.html","id":"rank-journals","dir":"Articles","previous_headings":"","what":"Rank journals","title":"Finding Journals for Your Paper","text":"Filter matched journals subject areas interest, keep titles median SJR within subset. Adjust category pattern ranking rule match field. InCites data (journal_source = \"incities\", aliases incites / jcr), use columns Journal.Impact.Factor instead SJR.","code":"cats <- \"Multidisciplinary|Neuroscience|Psychology|Psychiatry\" best_journals <- pub_data$journals |> filter( Type == \"journal\", SJR >= median(SJR, na.rm = TRUE), grepl(cats, Categories) ) |> select(Title, Rank, Type, SJR, Country, Categories) best_journals #> # A tibble: 5 × 6 #> Title Rank Type SJR Country Categories #> #> 1 Neuron 115 journal 8.56 United States Neuroscie… #> 2 Nature Communications 306 journal 4.90 United Kingd… Biochemis… #> 3 Alzheimer's and Dementia 349 journal 4.53 United States Cellular … #> 4 Journal of Neuroinflammation 501 journal 3.68 United Kingd… Cellular … #> 5 Alcohol Research: Current Reviews 752 journal 2.91 United States Clinical …"},{"path":"https://vallenderlab.github.io/journalanalysis/articles/example.html","id":"export-results","dir":"Articles","previous_headings":"","what":"Export results","title":"Finding Journals for Your Paper","text":"Save ranked journal table review outside R.","code":"export_path <- file.path(tempdir(), \"highest_impact_relevant_journals\") save_as_csv(best_journals, filename = export_path) list.files(tempdir(), pattern = \"highest_impact_relevant_journals\", full.names = TRUE) #> [1] \"/var/folders/x3/bn50kh8d2gq567vs62v09ncm0000gq/T//RtmpZqdeHk/highest_impact_relevant_journals.csv\""},{"path":"https://vallenderlab.github.io/journalanalysis/articles/example.html","id":"next-steps","dir":"Articles","previous_headings":"","what":"Next steps","title":"Finding Journals for Your Paper","text":"Tighten broaden Europe PMC query re-run get_publication_data() Compare scimago incities (InCites / JCR) journal sources topic See ?get_publication_data function reference parameters","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Robert Gilmore. Author, maintainer. Shaurita Hutchins. Author.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Gilmore R, Hutchins S (2026). JournalAnalysis: Explore Identify Journals Publish .. R package version 0.2.0, https://github.com/vallenderlab/JournalAnalysis.","code":"@Manual{, title = {JournalAnalysis: Explore and Identify Journals to Publish in.}, author = {Robert Gilmore and Shaurita Hutchins}, year = {2026}, note = {R package version 0.2.0}, url = {https://github.com/vallenderlab/JournalAnalysis}, }"},{"path":"https://vallenderlab.github.io/journalanalysis/index.html","id":"journalanalysis","dir":"","previous_headings":"","what":"Explore and Identify Journals to Publish in.","title":"Explore and Identify Journals to Publish in.","text":"repository exploring identifying best journals publish paper.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/index.html","id":"installation","dir":"","previous_headings":"","what":"Installation","title":"Explore and Identify Journals to Publish in.","text":"package available GitHub.","code":"install.packages(\"devtools\") library(devtools) install_github(\"vallenderlab/JournalAnalysis\")"},{"path":"https://vallenderlab.github.io/journalanalysis/index.html","id":"usage","dir":"","previous_headings":"","what":"Usage","title":"Explore and Identify Journals to Publish in.","text":"Choose Impact Factor dataset (scimago incities). Create EUPMC style string queries analysis.R script. Multiple queries produce article information added together. Adjust limit order get data want test query. Adjust filtering parameters, change names files produced.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/index.html","id":"example","dir":"","previous_headings":"Usage","what":"Example","title":"Explore and Identify Journals to Publish in.","text":"simple example. can also view example vignette.","code":"> library(JournalAnalysis) > pub_data <- get_publication_data(journal_source = \"scimago\", queries = c(query1, query2), limit = 1000, min_citations = 20) 14588 records found, returning 1000 (-) [=================================================] 100% 4005 records found, returning 1000 (/) [=================================================] 100% Removed records published before 2008. Removed records published after 2018. Removed records with less than 20 citations. Removed records with NA values for pmid, doi, and authors. 30 records passed the filter. There were 30 warnings (use warnings() to see them) > > > > pub_data$journals # A tibble: 22 x 18 Rank Title Type SJR SJR.Best.Quarti~ H.index Total.Docs...20~ Total.Docs...3ye~ Total.Refs. 1 6 Cell journ~ 26.9 Q1 655 693 1885 29440 2 20 Nature journ~ 18.1 Q1 1011 2661 8198 43004 3 30 Nature Immuno~ journ~ 14.5 Q1 323 224 707 9749 4 38 Science journ~ 13.5 Q1 978 2079 6670 36734 5 138 Trends in Neu~ journ~ 7.27 Q1 254 84 264 6905 6 147 American Jour~ journ~ 7.14 Q1 266 245 616 9620 7 154 Molecular Psy~ journ~ 6.92 Q1 180 328 652 13379 8 189 Biological Ps~ journ~ 6.04 Q1 273 382 982 14362 9 256 Nature Review~ journ~ 5.03 Q1 104 225 867 8184 10 381 European Jour~ journ~ 4.01 Q1 87 126 322 5231 # ... with 12 more rows, and 9 more variables: Total.Cites..3years. , Citable.Docs...3years. , # Cites...Doc...2years. , Ref....Doc. , Country , Categories , ISSN , # ISSN.1 , ISSN.2 > > > > pub_data$articles # A tibble: 30 x 29 id source pmid doi title authorString journalTitle pubYear journalIssn pubType isOpenAccess inEPMC 1 25815~ MED 2581~ 10.1~ Prom~ Fontana L, ~ Cell 2015 \"00928674;~ \"resea~ N Y 2 27981~ MED 2798~ 10.1~ The ~ Rea K, Dina~ Neurobiol S~ 2016 23522895 \"revie~ Y Y 3 26912~ MED 2691~ 10.1~ Grow~ Luczynski P~ Int J Neuro~ 2016 \"14611457;~ \"resea~ Y Y 4 27641~ MED 2764~ 10.1~ Gut ~ Dinan TG, C~ J Physiol 2017 \"00223751;~ \"revie~ N N 5 28242~ MED 2824~ 10.1~ Targ~ Burokas A, ~ Biol Psychi~ 2017 \"00063223;~ journa~ N N 6 27090~ MED 2709~ 10.1~ From~ Rogers GB, ~ Mol Psychia~ 2016 \"13594184;~ \"revie~ Y Y 7 28186~ MED 2818~ 10.1~ The ~ Simon DW, M~ Nat Rev Neu~ 2017 \"17594758;~ \"resea~ N Y 8 28686~ MED 2868~ 10.1~ 10 Y~ Visscher PM~ Am J Hum Ge~ 2017 \"00029297;~ \"revie~ N Y 9 27793~ MED 2779~ 10.1~ Psyc~ Sarkar A, L~ Trends Neur~ 2016 \"01662236;~ \"resea~ Y Y 10 28475~ MED 2847~ 10.1~ Meta~ Buck MD, So~ Cell 2017 \"00928674;~ \"resea~ N Y # ... with 20 more rows, and 17 more variables: inPMC , hasPDF , hasBook , # citedByCount , hasReferences , hasTextMinedTerms , hasDbCrossReferences , # hasLabsLinks , hasTMAccessionNumbers , firstPublicationDate , pageInfo , # pmcid , issue , journalVolume , hasSuppl , ISSN.1 , ISSN.2 > > > > pub_data$combined # A tibble: 30 x 48 id source pmid doi title authorString journalTitle pubYear journalIssn pubType isOpenAccess inEPMC 1 25815~ MED 2581~ 10.1~ Prom~ Fontana L, ~ Cell 2015 \"00928674;~ \"resea~ N Y 2 27981~ MED 2798~ 10.1~ The ~ Rea K, Dina~ Neurobiol S~ 2016 23522895 \"revie~ Y Y 3 26912~ MED 2691~ 10.1~ Grow~ Luczynski P~ Int J Neuro~ 2016 \"14611457;~ \"resea~ Y Y 4 27641~ MED 2764~ 10.1~ Gut ~ Dinan TG, C~ J Physiol 2017 \"00223751;~ \"revie~ N N 5 28242~ MED 2824~ 10.1~ Targ~ Burokas A, ~ Biol Psychi~ 2017 \"00063223;~ journa~ N N 6 27090~ MED 2709~ 10.1~ From~ Rogers GB, ~ Mol Psychia~ 2016 \"13594184;~ \"revie~ Y Y 7 28186~ MED 2818~ 10.1~ The ~ Simon DW, M~ Nat Rev Neu~ 2017 \"17594758;~ \"resea~ N Y 8 28686~ MED 2868~ 10.1~ 10 Y~ Visscher PM~ Am J Hum Ge~ 2017 \"00029297;~ \"revie~ N Y 9 27793~ MED 2779~ 10.1~ Psyc~ Sarkar A, L~ Trends Neur~ 2016 \"01662236;~ \"resea~ Y Y 10 28475~ MED 2847~ 10.1~ Meta~ Buck MD, So~ Cell 2017 \"00928674;~ \"resea~ N Y # ... with 20 more rows, and 36 more variables: inPMC , hasPDF , hasBook , # citedByCount , hasReferences , hasTextMinedTerms , hasDbCrossReferences , # hasLabsLinks , hasTMAccessionNumbers , firstPublicationDate , pageInfo , # pmcid , issue , journalVolume , hasSuppl , ISSN.1 , ISSN.2.x , Rank , # Title , Type , SJR , SJR.Best.Quartile , H.index , Total.Docs...2016. , # Total.Docs...3years. , Total.Refs. , Total.Cites..3years. , Citable.Docs...3years. , # Cites...Doc...2years. , Ref....Doc. , Country , Categories , ISSN , # ISSN.2.y , ISSN.2 , ISSN.1.y "},{"path":"https://vallenderlab.github.io/journalanalysis/index.html","id":"important-resources","dir":"","previous_headings":"","what":"Important resources","title":"Explore and Identify Journals to Publish in.","text":"Scimago Journal Country Rank InCities Journal Citation Reports Europe PMC","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_article_data.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Article Data — get_article_data","title":"Get Article Data — get_article_data","text":"function retrieves article data europe pmc.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_article_data.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Article Data — get_article_data","text":"","code":"get_article_data( queries, limit = 7500, min_year = NULL, max_year = NULL, min_citations = 5, n_cores = default_worker_count() )"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_article_data.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Article Data — get_article_data","text":"queries Input Europe PMC query limit Minimum number articles retrieve min_year Minimum publication year max_year Maximum publication year min_citations Minimum number citations per article n_cores Number cores use across multiple queries.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_article_data.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Article Data — get_article_data","text":"tibble article data","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_articles_with_journal_data.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Articles With Journal Data — get_articles_with_journal_data","title":"Get Articles With Journal Data — get_articles_with_journal_data","text":"FUNCTION_DESCRIPTION","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_articles_with_journal_data.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Articles With Journal Data — get_articles_with_journal_data","text":"","code":"get_articles_with_journal_data(article_data, journal_data)"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_articles_with_journal_data.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Articles With Journal Data — get_articles_with_journal_data","text":"article_data DESCRIPTION. journal_data DESCRIPTION.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_articles_with_journal_data.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Articles With Journal Data — get_articles_with_journal_data","text":"RETURN_DESCRIPTION","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_articles_with_journal_data.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get Articles With Journal Data — get_articles_with_journal_data","text":"","code":"# ADD_EXAMPLES_HERE"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_journal_data.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Journal Data — get_journal_data","title":"Get Journal Data — get_journal_data","text":"function retrieves journal data existing data file.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_journal_data.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Journal Data — get_journal_data","text":"","code":"get_journal_data(data = \"incities\")"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_journal_data.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Journal Data — get_journal_data","text":"data bundled journal source. Use `incities` (InCites / JCR) `scimago`. aliases `incites`, `jcr`, `scimagojr` also accepted.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_journal_data.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Journal Data — get_journal_data","text":"tibble journal data.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_publication_data.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Publication Data — get_publication_data","title":"Get Publication Data — get_publication_data","text":"function uses journal source combine data based queries.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_publication_data.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Publication Data — get_publication_data","text":"","code":"get_publication_data( journal_source, queries, limit = 7500, min_year = NULL, max_year = NULL, min_citations = 5, n_cores = default_worker_count() )"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_publication_data.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Publication Data — get_publication_data","text":"journal_source Journal metrics source: `incities` (InCites / JCR) `scimago`. Aliases `incites`, `jcr`, `scimagojr` also accepted. queries Use one multiple queries limit minimum number articles min_year Minimum year search max_year Maximum year search min_citations Minimum number citations journal n_cores Number cores use across multiple queries.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_publication_data.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Publication Data — get_publication_data","text":"list data objects including journals, articles, combined data.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_unique_issns.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Unique ISSNs — get_unique_issns","title":"Get Unique ISSNs — get_unique_issns","text":"function filters ISSNs.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_unique_issns.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Unique ISSNs — get_unique_issns","text":"","code":"get_unique_issns(issns)"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_unique_issns.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Unique ISSNs — get_unique_issns","text":"issns issns articles","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_unique_issns.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Unique ISSNs — get_unique_issns","text":"tibble filtered issns","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_word_cloud.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Word Cloud — get_word_cloud","title":"Get Word Cloud — get_word_cloud","text":"function imports list pubmed ids creates word cloud.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_word_cloud.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Word Cloud — get_word_cloud","text":"","code":"get_word_cloud(pubmed_ids, plot_name)"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/get_word_cloud.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Word Cloud — get_word_cloud","text":"pubmed_ids list pubmed ids plot_name Path output word cloud","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/install_journalanalysis_packages.html","id":null,"dir":"Reference","previous_headings":"","what":"Install JournalAnalysis Packages — install_journalanalysis_packages","title":"Install JournalAnalysis Packages — install_journalanalysis_packages","text":"function helps user install packages used package","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/install_journalanalysis_packages.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Install JournalAnalysis Packages — install_journalanalysis_packages","text":"","code":"install_journalanalysis_packages()"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/issn_to_article_data.html","id":null,"dir":"Reference","previous_headings":"","what":"ISSN to Article Data — issn_to_article_data","title":"ISSN to Article Data — issn_to_article_data","text":"function filters article data ISSN.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/issn_to_article_data.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"ISSN to Article Data — issn_to_article_data","text":"","code":"issn_to_article_data(data, issns)"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/issn_to_article_data.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"ISSN to Article Data — issn_to_article_data","text":"data data tibble articles issns issns articles","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/issn_to_article_data.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"ISSN to Article Data — issn_to_article_data","text":"tibble articles filtered ISSNs","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/issn_to_journal_data.html","id":null,"dir":"Reference","previous_headings":"","what":"ISSN to Journal Data — issn_to_journal_data","title":"ISSN to Journal Data — issn_to_journal_data","text":"function retrieves journal data existing data file.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/issn_to_journal_data.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"ISSN to Journal Data — issn_to_journal_data","text":"","code":"issn_to_journal_data(data, issns)"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/issn_to_journal_data.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"ISSN to Journal Data — issn_to_journal_data","text":"data data source journal issns issns journal source","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/issn_to_journal_data.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"ISSN to Journal Data — issn_to_journal_data","text":"tibble data filtered ISSN","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/jcr2023_wos.html","id":null,"dir":"Reference","previous_headings":"","what":"InCites Journal Citation Reports via Web of Science (2023) — jcr2023_wos","title":"InCites Journal Citation Reports via Web of Science (2023) — jcr2023_wos","text":"Journal-level metrics 2023 InCites / Journal Citation Reports export. Used [get_journal_data()] `data = \"incities\"`. aliases `incites` `jcr` refer bundled dataset.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/jcr2023_wos.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"InCites Journal Citation Reports via Web of Science (2023) — jcr2023_wos","text":"","code":"jcr2023_wos"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/jcr2023_wos.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"InCites Journal Citation Reports via Web of Science (2023) — jcr2023_wos","text":"## `jcr2023_wos` data frame 21,848 rows 10 columns: journal_name Journal title source export. issn Print ISSN. e_issn Electronic ISSN. category One JCR subject categories. edition Indexed Web Science edition tags. total_citations Total citations 2023 source export. impact_factor_2023 2023 Journal Impact Factor. jif_quartile Journal Impact Factor quartile. jci_2023 2023 Journal Citation Indicator. percent_oa_gold Percent gold open access.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/jcr2023_wos.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"InCites Journal Citation Reports via Web of Science (2023) — jcr2023_wos","text":" accessed 2026-06-10.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/save_as_csv.html","id":null,"dir":"Reference","previous_headings":"","what":"Save as CSV — save_as_csv","title":"Save as CSV — save_as_csv","text":"function saves tibble dataframe csv file.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/save_as_csv.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Save as CSV — save_as_csv","text":"","code":"save_as_csv(data, filename)"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/save_as_csv.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Save as CSV — save_as_csv","text":"data dataframe tibble filename Name path output file without .csv extension","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/scimagojr2025.html","id":null,"dir":"Reference","previous_headings":"","what":"SCImago Journal & Country Rank (2025) — scimagojr2025","title":"SCImago Journal & Country Rank (2025) — scimagojr2025","text":"Journal-level metrics SCImago Journal & Country Rank 2025. Used [get_journal_data()] `data = \"scimago\"` `data = \"scimagojr\"`.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/scimagojr2025.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"SCImago Journal & Country Rank (2025) — scimagojr2025","text":"","code":"scimagojr2025"},{"path":"https://vallenderlab.github.io/journalanalysis/reference/scimagojr2025.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"SCImago Journal & Country Rank (2025) — scimagojr2025","text":"## `scimagojr2025` data frame 32,193 rows 25 columns: Rank SCImago rank source export. Sourceid SCImago source identifier. Title Journal title, underscores replaced spaces. Type Publication type, journal book series. Issn ISSN string source export. Publisher Publisher name. Open.Access Open access flag source export. Open.Access.Diamond Diamond open access flag. SJR SCImago Journal Rank indicator. SJR.Best.Quartile Best quartile (Q1-Q4). H.index H-index. Total.Docs...2025. Documents published 2025. Total.Docs...3years. Documents prior three years. Total.Refs. Total references. Total.Citations..3years. Citations prior three years. Citable.Docs...3years. Citable documents prior three years. Citations...Doc...2years. Citations per document, two-year window. Ref....Doc. References per document. X.Female Percent female authorship source export. Overton Overton indicator source export. Country Country publication. Region World region. Coverage Source coverage years. Categories Subject categories assigned SCImago. Areas Broad subject areas assigned SCImago.","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/reference/scimagojr2025.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"SCImago Journal & Country Rank (2025) — scimagojr2025","text":"Local source file `data/scimagojr_2025.csv`, accessed 2026-06-10 .","code":""},{"path":"https://vallenderlab.github.io/journalanalysis/news/index.html","id":"journalanalysis-020","dir":"Changelog","previous_headings":"","what":"JournalAnalysis 0.2.0","title":"JournalAnalysis 0.2.0","text":"Initial package release GitHub.","code":""}] diff --git a/docs/sitemap.xml b/docs/sitemap.xml new file mode 100644 index 0000000..6b75c12 --- /dev/null +++ b/docs/sitemap.xml @@ -0,0 +1,28 @@ + +https://vallenderlab.github.io/journalanalysis/404.html +https://vallenderlab.github.io/journalanalysis/AGENTS.html +https://vallenderlab.github.io/journalanalysis/CONTRIBUTING.html +https://vallenderlab.github.io/journalanalysis/LICENSE-text.html +https://vallenderlab.github.io/journalanalysis/LICENSE.html +https://vallenderlab.github.io/journalanalysis/articles/example.html +https://vallenderlab.github.io/journalanalysis/articles/index.html +https://vallenderlab.github.io/journalanalysis/authors.html +https://vallenderlab.github.io/journalanalysis/index.html +https://vallenderlab.github.io/journalanalysis/news/index.html +https://vallenderlab.github.io/journalanalysis/reference/get_article_data.html +https://vallenderlab.github.io/journalanalysis/reference/get_articles_with_journal_data.html +https://vallenderlab.github.io/journalanalysis/reference/get_journal_data.html +https://vallenderlab.github.io/journalanalysis/reference/get_publication_data.html +https://vallenderlab.github.io/journalanalysis/reference/get_unique_issns.html +https://vallenderlab.github.io/journalanalysis/reference/get_word_cloud.html +https://vallenderlab.github.io/journalanalysis/reference/incities2016.html +https://vallenderlab.github.io/journalanalysis/reference/index.html +https://vallenderlab.github.io/journalanalysis/reference/install_journalanalysis_packages.html +https://vallenderlab.github.io/journalanalysis/reference/issn_to_article_data.html +https://vallenderlab.github.io/journalanalysis/reference/issn_to_journal_data.html +https://vallenderlab.github.io/journalanalysis/reference/jcr2023_wos.html +https://vallenderlab.github.io/journalanalysis/reference/save_as_csv.html +https://vallenderlab.github.io/journalanalysis/reference/scimago2016.html +https://vallenderlab.github.io/journalanalysis/reference/scimagojr2025.html + + diff --git a/man/example_queries.Rd b/man/example_queries.Rd new file mode 100644 index 0000000..2a6d634 --- /dev/null +++ b/man/example_queries.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/helpers.R +\docType{data} +\name{example_queries} +\alias{example_queries} +\alias{query1} +\alias{query2} +\alias{query3} +\title{Example Europe PMC queries for package vignettes.} +\format{ +A character string containing a Europe PMC advanced search query. + +An object of class \code{character} of length 1. + +An object of class \code{character} of length 1. + +An object of class \code{character} of length 1. +} +\usage{ +query1 + +query2 + +query3 +} +\description{ +Example Europe PMC queries for package vignettes. +} +\keyword{datasets} diff --git a/man/get_article_data.Rd b/man/get_article_data.Rd index 7fa3e51..46c0e22 100644 --- a/man/get_article_data.Rd +++ b/man/get_article_data.Rd @@ -4,8 +4,14 @@ \alias{get_article_data} \title{Get Article Data} \usage{ -get_article_data(queries, limit = 7500, min_year = 2008, - max_year = 2018, min_citations = 5) +get_article_data( + queries, + limit = 7500, + min_year = NULL, + max_year = NULL, + min_citations = 5, + n_cores = default_worker_count() +) } \arguments{ \item{queries}{Input a Europe PMC query} @@ -17,6 +23,8 @@ get_article_data(queries, limit = 7500, min_year = 2008, \item{max_year}{Maximum publication year} \item{min_citations}{Minimum number of citations per article} + +\item{n_cores}{Number of cores to use across multiple queries.} } \value{ A tibble of the article data diff --git a/man/get_articles_with_journal_data.Rd b/man/get_articles_with_journal_data.Rd index 3aa0c87..26edb03 100644 --- a/man/get_articles_with_journal_data.Rd +++ b/man/get_articles_with_journal_data.Rd @@ -20,3 +20,4 @@ FUNCTION_DESCRIPTION \examples{ # ADD_EXAMPLES_HERE } +\keyword{internal} diff --git a/man/get_journal_data.Rd b/man/get_journal_data.Rd index 2adf53c..9f06948 100644 --- a/man/get_journal_data.Rd +++ b/man/get_journal_data.Rd @@ -7,7 +7,8 @@ get_journal_data(data = "incities") } \arguments{ -\item{data}{A data source included in the package's data folder. Can be scimago or incities.} +\item{data}{A bundled journal source. Use `incities` (InCites / JCR) or +`scimago`. The aliases `incites`, `jcr`, and `scimagojr` are also accepted.} } \value{ A tibble of the journal data. diff --git a/man/get_publication_data.Rd b/man/get_publication_data.Rd index acf00e8..a0a406e 100644 --- a/man/get_publication_data.Rd +++ b/man/get_publication_data.Rd @@ -4,11 +4,19 @@ \alias{get_publication_data} \title{Get Publication Data} \usage{ -get_publication_data(journal_source, queries, limit = 7500, - min_year = 2008, max_year = 2018, min_citations = 5) +get_publication_data( + journal_source, + queries, + limit = 7500, + min_year = NULL, + max_year = NULL, + min_citations = 5, + n_cores = default_worker_count() +) } \arguments{ -\item{journal_source}{The journal to search} +\item{journal_source}{Journal metrics source: `incities` (InCites / JCR) or +`scimago`. Aliases `incites`, `jcr`, and `scimagojr` are also accepted.} \item{queries}{Use one or multiple queries} @@ -19,6 +27,8 @@ get_publication_data(journal_source, queries, limit = 7500, \item{max_year}{Maximum year to search} \item{min_citations}{Minimum number of citations in a journal} + +\item{n_cores}{Number of cores to use across multiple queries.} } \value{ A list of data objects including journals, articles, and combined data. diff --git a/man/jcr2023_wos.Rd b/man/jcr2023_wos.Rd new file mode 100644 index 0000000..4d65535 --- /dev/null +++ b/man/jcr2023_wos.Rd @@ -0,0 +1,35 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/data.R +\docType{data} +\name{jcr2023_wos} +\alias{jcr2023_wos} +\title{InCites Journal Citation Reports via Web of Science (2023)} +\format{ +## `jcr2023_wos` +A data frame with 21,848 rows and 10 columns: +\describe{ + \item{journal_name}{Journal title from the source export.} + \item{issn}{Print ISSN.} + \item{e_issn}{Electronic ISSN.} + \item{category}{One or more JCR subject categories.} + \item{edition}{Indexed Web of Science edition tags.} + \item{total_citations}{Total citations in the 2023 source export.} + \item{impact_factor_2023}{2023 Journal Impact Factor.} + \item{jif_quartile}{Journal Impact Factor quartile.} + \item{jci_2023}{2023 Journal Citation Indicator.} + \item{percent_oa_gold}{Percent gold open access.} +} +} +\source{ + +accessed 2026-06-10. +} +\usage{ +jcr2023_wos +} +\description{ +Journal-level metrics from a 2023 InCites / Journal Citation Reports export. +Used by [get_journal_data()] when `data = "incities"`. The aliases `incites` +and `jcr` refer to the same bundled dataset. +} +\keyword{datasets} diff --git a/man/scimagojr2025.Rd b/man/scimagojr2025.Rd new file mode 100644 index 0000000..a42aa45 --- /dev/null +++ b/man/scimagojr2025.Rd @@ -0,0 +1,49 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/data.R +\docType{data} +\name{scimagojr2025} +\alias{scimagojr2025} +\title{SCImago Journal & Country Rank (2025)} +\format{ +## `scimagojr2025` +A data frame with 32,193 rows and 25 columns: +\describe{ + \item{Rank}{SCImago rank from the source export.} + \item{Sourceid}{SCImago source identifier.} + \item{Title}{Journal title, with underscores replaced by spaces.} + \item{Type}{Publication type, such as journal or book series.} + \item{Issn}{ISSN string from the source export.} + \item{Publisher}{Publisher name.} + \item{Open.Access}{Open access flag from the source export.} + \item{Open.Access.Diamond}{Diamond open access flag.} + \item{SJR}{SCImago Journal Rank indicator.} + \item{SJR.Best.Quartile}{Best quartile (Q1-Q4).} + \item{H.index}{H-index.} + \item{Total.Docs...2025.}{Documents published in 2025.} + \item{Total.Docs...3years.}{Documents in the prior three years.} + \item{Total.Refs.}{Total references.} + \item{Total.Citations..3years.}{Citations in the prior three years.} + \item{Citable.Docs...3years.}{Citable documents in the prior three years.} + \item{Citations...Doc...2years.}{Citations per document, two-year window.} + \item{Ref....Doc.}{References per document.} + \item{X.Female}{Percent female authorship from the source export.} + \item{Overton}{Overton indicator from the source export.} + \item{Country}{Country of publication.} + \item{Region}{World region.} + \item{Coverage}{Source coverage years.} + \item{Categories}{Subject categories assigned by SCImago.} + \item{Areas}{Broad subject areas assigned by SCImago.} +} +} +\source{ +Local source file `data/scimagojr_2025.csv`, accessed 2026-06-10 from +. +} +\usage{ +scimagojr2025 +} +\description{ +Journal-level metrics from SCImago Journal & Country Rank for 2025. +Used by [get_journal_data()] when `data = "scimago"` or `data = "scimagojr"`. +} +\keyword{datasets} diff --git a/pkgdown/extra.css b/pkgdown/extra.css new file mode 100644 index 0000000..41947fe --- /dev/null +++ b/pkgdown/extra.css @@ -0,0 +1,294 @@ +@import url("https://fonts.googleapis.com/css?family=Quicksand"); +@import url('https://fonts.googleapis.com/css?family=Muli'); +@import url('https://fonts.googleapis.com/css?family=Anonymous+Pro'); +@import url('https://fonts.googleapis.com/css?family=Inconsolata'); + +body { + font-family: "Quicksand", "Helvetica Neue", Helvetica, Arial, sans-serif; + font-weight: 400; +} + +h1, h2, h3, h4, .h1, .h2, .h3, .h4 { + font-family: "Quicksand", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif; + font-weight: 700; +} + +pre, code { + font-family: "Inconsolata", Consolas, monospace; +} + +code { + font-size: 100%; +} + +:root { + --bs-link-color: #3E7BAA; + --bs-link-hover-color: #008cba; +} + +a { + color: #3E7BAA; + text-decoration: none; +} + +a:hover, +a:focus { + color: #008cba; + text-decoration: underline; +} + +/* Override BS5 `code a:any-link { color: inherit }` in pkgdown bootstrap */ +.template-reference-index code a, +.template-reference-index code a:any-link, +.template-reference-index code a:link, +.template-reference-topic code a, +.template-reference-topic code a:any-link, +.template-reference-topic code a:link, +.template-article code a, +.template-article code a:any-link, +.template-article code a:link, +pre a, +pre a:any-link, +pre a:link { + color: #375f84; + text-decoration: none; +} + +.template-reference-index code a:hover, +.template-reference-index code a:focus, +.template-reference-index code a:any-link:hover, +.template-reference-topic code a:hover, +.template-reference-topic code a:focus, +.template-reference-topic code a:any-link:hover, +.template-article code a:hover, +.template-article code a:focus, +.template-article code a:any-link:hover, +pre a:hover, +pre a:focus, +pre a:any-link:hover { + color: #008cba; + text-decoration: underline; +} + +.label-danger, +.badge.bg-danger { + background-color: #3E7BAA !important; +} + +.nav-pills > li.active > a, +.nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus, +.nav-pills .nav-link.active { + color: #ffffff; + background-color: #3E7BAA; +} + +/* Bootstrap 5 navbar (pkgdown search requires BS5) */ +.navbar.bg-primary, +.navbar.navbar-dark, +.navbar[data-bs-theme="dark"] { + background-color: #1B243C !important; + border-color: #1B243C; +} + +.navbar.bg-primary .navbar-brand, +.navbar.navbar-dark .navbar-brand, +.navbar[data-bs-theme="dark"] .navbar-brand, +.navbar.bg-primary .nav-link, +.navbar.navbar-dark .nav-link, +.navbar[data-bs-theme="dark"] .nav-link { + color: #ffffff !important; + text-decoration: none; +} + +.navbar.bg-primary .navbar-brand:hover, +.navbar.bg-primary .navbar-brand:focus, +.navbar.navbar-dark .navbar-brand:hover, +.navbar.navbar-dark .navbar-brand:focus, +.navbar[data-bs-theme="dark"] .navbar-brand:hover, +.navbar[data-bs-theme="dark"] .navbar-brand:focus { + color: #ffffff !important; + text-decoration: none; +} + +.navbar.bg-primary .nav-link:hover, +.navbar.bg-primary .nav-link:focus, +.navbar.navbar-dark .nav-link:hover, +.navbar.navbar-dark .nav-link:focus, +.navbar[data-bs-theme="dark"] .nav-link:hover, +.navbar[data-bs-theme="dark"] .nav-link:focus { + color: #ffffff !important; + background-color: #273457; + text-decoration: none; +} + +.navbar.bg-primary .nav-link.active, +.navbar.navbar-dark .nav-link.active, +.navbar[data-bs-theme="dark"] .nav-link.active, +.navbar.bg-primary .nav-item.show > .nav-link, +.navbar.navbar-dark .nav-item.show > .nav-link, +.navbar[data-bs-theme="dark"] .nav-item.show > .nav-link { + color: #ffffff !important; + background-color: #1B243C; +} + +.navbar.bg-primary .nav-link.active:hover, +.navbar.bg-primary .nav-link.active:focus, +.navbar.navbar-dark .nav-link.active:hover, +.navbar.navbar-dark .nav-link.active:focus, +.navbar[data-bs-theme="dark"] .nav-link.active:hover, +.navbar[data-bs-theme="dark"] .nav-link.active:focus { + color: #ffffff !important; + background-color: #1B243C; +} + +.navbar.bg-primary .dropdown-menu, +.navbar.navbar-dark .dropdown-menu, +.navbar[data-bs-theme="dark"] .dropdown-menu { + background-color: #1B243C; + border-color: #273457; +} + +.navbar.bg-primary .dropdown-item, +.navbar.navbar-dark .dropdown-item, +.navbar[data-bs-theme="dark"] .dropdown-item { + color: #ffffff; +} + +.navbar.bg-primary .dropdown-item:hover, +.navbar.bg-primary .dropdown-item:focus, +.navbar.bg-primary .dropdown-item.active, +.navbar.navbar-dark .dropdown-item:hover, +.navbar.navbar-dark .dropdown-item:focus, +.navbar.navbar-dark .dropdown-item.active, +.navbar[data-bs-theme="dark"] .dropdown-item:hover, +.navbar[data-bs-theme="dark"] .dropdown-item:focus, +.navbar[data-bs-theme="dark"] .dropdown-item.active { + color: #ffffff; + background-color: #273457; +} + +.navbar .form-control[type="search"] { + background-color: #273457; + border-color: #273457; + color: #ffffff; +} + +.navbar .form-control[type="search"]::placeholder { + color: rgba(255, 255, 255, 0.75); +} + +.navbar .form-control[type="search"]:focus { + background-color: #273457; + border-color: #3E7BAA; + color: #ffffff; + box-shadow: none; +} + +/* Bootstrap 3 navbar (MicrobiomeR parity) */ +.navbar-default { + background-color: #1B243C; + border-color: #1B243C; + color: #fff; +} + +.navbar-default .navbar-nav > .active > a, +.navbar-default .navbar-nav > .active > a:hover, +.navbar-default .navbar-nav > .active > a:focus { + color: #ffffff; + background-color: #273457; +} + +.navbar-default .navbar-nav > li > a:hover { + color: #ffffff; + background-color: #273457; +} + +.navbar-default .dropdown-menu { + background-color: #1B243C; +} + +.navbar-default .navbar-nav > .open > a { + background-color: #1B243C; + color: #ffffff; +} + +.navbar-default .navbar-nav > .open > a:hover { + background-color: #273457; + color: #ffffff; +} + +.navbar-default .navbar-nav > li > a:hover, +.navbar-default .navbar-nav > li > a:focus { + color: #ffffff; + background-color: #273457; +} + +.navbar-default .navbar-nav > .active > a, +.navbar-default .navbar-nav > .active > a:hover, +.navbar-default .navbar-nav > .active > a:focus { + color: #ffffff; + background-color: #1B243C; +} + +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .open > a:focus { + background-color: #273457; + color: #ffffff; +} + +.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover { + color: #ffffff; + background-color: #273457; +} + +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #ffffff; + } + + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #ffffff; + background-color: #1B243C; + } + + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #ffffff; + background-color: #1B243C; + } + + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #ffffff; + background-color: transparent; + } + + .navbar.bg-primary .nav-link, + .navbar.navbar-dark .nav-link, + .navbar[data-bs-theme="dark"] .nav-link, + .navbar.bg-primary .dropdown-item, + .navbar.navbar-dark .dropdown-item, + .navbar[data-bs-theme="dark"] .dropdown-item { + color: #ffffff; + } + + .navbar.bg-primary .nav-link:hover, + .navbar.bg-primary .nav-link:focus, + .navbar.navbar-dark .nav-link:hover, + .navbar.navbar-dark .nav-link:focus, + .navbar[data-bs-theme="dark"] .nav-link:hover, + .navbar[data-bs-theme="dark"] .nav-link:focus, + .navbar.bg-primary .dropdown-item:hover, + .navbar.bg-primary .dropdown-item:focus, + .navbar.navbar-dark .dropdown-item:hover, + .navbar.navbar-dark .dropdown-item:focus, + .navbar[data-bs-theme="dark"] .dropdown-item:hover, + .navbar[data-bs-theme="dark"] .dropdown-item:focus { + color: #ffffff; + background-color: #1B243C; + } +} diff --git a/tests/testthat.R b/tests/testthat.R new file mode 100644 index 0000000..c672d1a --- /dev/null +++ b/tests/testthat.R @@ -0,0 +1,12 @@ +# This file is part of the standard setup for testthat. +# It is recommended that you do not modify it. +# +# Where should you do additional test configuration? +# Learn more about the roles of various files in: +# * https://r-pkgs.org/testing-design.html#sec-tests-files-overview +# * https://testthat.r-lib.org/articles/special-files.html + +library(testthat) +library(JournalAnalysis) + +test_check("JournalAnalysis") diff --git a/tests/testthat/test-combined.R b/tests/testthat/test-combined.R new file mode 100644 index 0000000..6df9211 --- /dev/null +++ b/tests/testthat/test-combined.R @@ -0,0 +1,26 @@ +test_that("get_articles_with_journal_data warns and skips unmatched rows", { + article_data <- tibble::tibble( + id = 1:3, + journalIssn = c("1234-5678", "1111-1111; 2222-2222", "9999-9999"), + ISSN.1 = c("12345678", "11111111", "99999999"), + ISSN.2 = c("", "22222222", "") + ) + + journal_data <- tibble::tibble( + Title = c("Journal A", "Journal B"), + ISSN = c("12345678", "22222222"), + ISSN.1 = c("12345678", "22222222"), + ISSN.2 = c("", ""), + Rank = c(1, 2) + ) + + expect_warning( + combined_data <- JournalAnalysis:::get_articles_with_journal_data(article_data, journal_data), + "Skipping 1 article record\\(s\\) with no matching journal ISSN" + ) + + expect_equal(combined_data$id, c(1, 2)) + expect_equal(anyDuplicated(names(combined_data)), 0) + expect_false(any(c("ISSN.x", "ISSN.y", "ISSN.1.y", "ISSN.2.y") %in% names(combined_data))) + expect_true(all(c("Title", "Rank") %in% names(combined_data))) +}) diff --git a/tests/testthat/test-issn-helpers.R b/tests/testthat/test-issn-helpers.R new file mode 100644 index 0000000..cf889bd --- /dev/null +++ b/tests/testthat/test-issn-helpers.R @@ -0,0 +1,31 @@ +test_that("get_unique_issns normalizes and deduplicates ISSNs", { + issns <- c( + "1234-5678; 8765-4321", + "12345678", + "issn 8765-4321", + NA_character_ + ) + + expect_equal( + get_unique_issns(issns), + c("12345678", "87654321") + ) +}) + +test_that("get_journal_data validates and normalizes the journal source", { + expect_error( + get_journal_data("not-a-source"), + "`data` must be one of" + ) + + alias_data <- get_journal_data("incites") + incities_data <- get_journal_data("incities") + jcr_data <- get_journal_data("jcr") + scimagojr_data <- get_journal_data("scimagojr") + + expect_s3_class(alias_data, "tbl_df") + expect_true(all(c("ISSN", "ISSN.1", "ISSN.2", "Title") %in% names(alias_data))) + expect_equal(incities_data, jcr_data) + expect_true(all(c("Journal.Impact.Factor", "Total.Cites") %in% names(jcr_data))) + expect_false(any(grepl("_", scimagojr_data$Title, fixed = TRUE))) +}) diff --git a/vignettes/example.Rmd b/vignettes/example.Rmd index 69ce33b..11dd8fe 100644 --- a/vignettes/example.Rmd +++ b/vignettes/example.Rmd @@ -1,10 +1,10 @@ --- -title: "JournalAnalysis Vignette" -author: "Written by Shaurita Hutchins" +title: "Finding Journals for Your Paper" +author: "Shaurita Hutchins" date: "`r Sys.Date()`" output: rmarkdown::html_vignette vignette: > - %\VignetteIndexEntry{Vignette Title} + %\VignetteIndexEntry{Finding Journals for Your Paper} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- @@ -16,68 +16,145 @@ knitr::opts_chunk$set( ) ``` -## Packages to Load +JournalAnalysis matches Europe PMC articles to journal-level metrics from +Scimago or InCites (JCR). This tutorial walks through a typical workflow: define a +search, retrieve and inspect results, summarize abstracts, rank journals, and +export a shortlist. -First, you need to load the `JournalAnalysis` package in order to load variables and functions. +# Setup -```{r warning=FALSE, message=FALSE} +Load JournalAnalysis and dplyr for the filtering steps later in the tutorial. + +```{r warning = FALSE, message = FALSE} library(JournalAnalysis) library(dplyr) ``` -## Decide on a query and generate pubmed data -Since we are interested in the microbiome in the context of psychiatry, our query is as such. +# Define your search -```{r warning=FALSE} -query3 <- "microbiome AND (psychiatry OR psychology OR neuroscience) AND (rhesus OR macaque or human or stress or monkey) AND (NOT ecology)" -pub_data <- get_publication_data(journal_source = "scimago", queries = query3, limit = 30000, min_citations = 5) -``` +Europe PMC queries use the same boolean syntax as the website search box. You can +pass one query or combine several; multiple queries are unioned before +filtering. -The `pub_data` objects includes `$articles`, `$journals`, and `$combined` data. +JournalAnalysis also ships example query strings you can adapt: -### View the resulting pubmed ids -```{r warning=FALSE} -# View the resulting pubmed ids -pmids <- pub_data$articles$pmid -pmids +```{r} +query3 ``` -### Retrieve abstracts from pmids and create a wordcloud from the pubmed abstracts -```{r warning=FALSE} -get_word_cloud(pubmed_ids = pmids, plot_name = "microbiome_psych_wordcloud.png") +For this tutorial we use `query3`, which targets microbiome papers in +psychiatry, psychology, and neuroscience-related contexts while excluding ecology +papers. + +See the [Europe PMC search +help](https://europepmc.org/Help#whatserachingEPMC) for field names and +operators. + +# Retrieve publication data + +`get_publication_data()` is the main entry point. It: + +1. Loads journal metrics from `scimago` or `incities` (InCites / JCR) +2. Queries Europe PMC for each search string +3. Filters articles by year and citation count +4. Joins articles to journals by ISSN + +Start with a modest `limit` while you refine the query: -knitr::include_graphics('./microbiome_psych_wordcloud.png') +```{r} +pub_data <- get_publication_data( + journal_source = "scimago", + queries = query3, + limit = 200, + min_year = 2015, + min_citations = 3, + n_cores = 1 +) + +length(pub_data) +names(pub_data) +vapply(pub_data, nrow, integer(1)) ``` -## Accessing and analyzing journal data +The returned list has three elements: + +| Element | Description | +|---------|-------------| +| `pub_data$articles` | Article metadata from Europe PMC | +| `pub_data$journals` | Journal metrics for matched ISSNs | +| `pub_data$combined` | Articles joined to journal metadata | + +# Inspect the results -View unique journals based on the articles retrieved with the below command. +After retrieval, inspect each list element to confirm the query and filters +behaved as expected. -```{r warning=FALSE} -pub_data$journals +```{r} +dplyr::glimpse(pub_data$articles) +dplyr::glimpse(pub_data$journals) +dplyr::glimpse(pub_data$combined) ``` -Now, you can do some further analysis of journals based on `SJR`, which is. +PubMed IDs for the matched articles: -```{r warning=FALSE} -# Decide on categorical words to keep -cats <- "Multidisciplinary|Neuroscience|Psychology|Psychiatry" +```{r} +pmids <- pub_data$articles$pmid +head(pmids) ``` -Select "best" journals based on median or any other statistical method. It may be valuable to do some clustering although the journals are ranked into quartiles. We chose the median SJR to look at any journals above the median and qualify them as the upper tier. +# Summarize abstracts + +`get_word_cloud()` fetches abstracts for a vector of PubMed IDs and writes a PNG +word cloud: -```{r warning=FALSE} -# Only keep journals above the median that are journals and include the categories above. -best_journals <- filter(pub_data$journals, SJR >= median(pub_data$journals$SJR) & grepl(cats, Categories) & Type == "journal") +```{r fig.width = 7, fig.height = 7, echo = TRUE, out.width = "70%"} +wordcloud_path <- "microbiome_psych_wordcloud.png" + +get_word_cloud( + pubmed_ids = pmids, + plot_name = wordcloud_path +) + +knitr::include_graphics(wordcloud_path) ``` -After filtering the journal data, you can now select specific columns to view and save your tibble as a csv file. -```{r warning=FALSE} -# Decide on columns to keep -best_journals <- best_journals %>% select(Title, Rank, Type, SJR, Country, Categories) +# Rank journals + +Filter the matched journals to subject areas of interest, then keep titles at or +above the median SJR within that subset. + +```{r} +cats <- "Multidisciplinary|Neuroscience|Psychology|Psychiatry" + +best_journals <- pub_data$journals |> + filter( + Type == "journal", + SJR >= median(SJR, na.rm = TRUE), + grepl(cats, Categories) + ) |> + select(Title, Rank, Type, SJR, Country, Categories) best_journals +``` + +Adjust the category pattern and ranking rule to match your field. For InCites +data (`journal_source = "incities"`, or aliases `incites` / `jcr`), use columns +such as `Journal.Impact.Factor` instead of `SJR`. + +# Export results + +Save the ranked journal table for review outside R. + +```{r} +export_path <- file.path(tempdir(), "highest_impact_relevant_journals") +save_as_csv(best_journals, filename = export_path) +list.files(tempdir(), pattern = "highest_impact_relevant_journals", full.names = TRUE) +``` + +# Next steps -# Save as a csv file -save_as_csv(best_journals, filename = "highest_impact_relevant_journals") -``` \ No newline at end of file +- Tighten or broaden the Europe PMC query and re-run `get_publication_data()` +- Compare `scimago` and `incities` (InCites / JCR) journal sources for your topic +- See `?get_publication_data` and the [function + reference](https://vallenderlab.github.io/journalanalysis/reference/index.html) + for all parameters diff --git a/vignettes/highest_impact_relevant_journals.csv b/vignettes/highest_impact_relevant_journals.csv index 488c622..56eee8c 100644 --- a/vignettes/highest_impact_relevant_journals.csv +++ b/vignettes/highest_impact_relevant_journals.csv @@ -4,8 +4,8 @@ "Nature Neuroscience",35,"journal",14.096,"United Kingdom","Neuroscience (miscellaneous) (Q1)" "Science",38,"journal",13.535,"United States","History and Philosophy of Science (Q1); Multidisciplinary (Q1)" "Neuron",63,"journal",11.116,"United States","Neuroscience (miscellaneous) (Q1)" -"Psychological Bulletin",88,"journal",8.998,"United States","History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q1)" "JAMA Psychiatry",92,"journal",8.831,"United States","Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)" +"Trends in Cognitive Sciences",115,"journal",7.948,"Netherlands","Cognitive Neuroscience (Q1); Experimental and Cognitive Psychology (Q1); Neuropsychology and Physiological Psychology (Q1)" "Trends in Neurosciences",138,"journal",7.27,"Netherlands","Neuroscience (miscellaneous) (Q1)" "Molecular Psychiatry",154,"journal",6.917,"United Kingdom","Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1); Psychiatry and Mental Health (Q1)" "EMBO Journal",164,"journal",6.57,"Germany","Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Neuroscience (miscellaneous) (Q1)" @@ -13,44 +13,76 @@ "Proceedings of the National Academy of Sciences of the United States of America",175,"journal",6.321,"United States","Multidisciplinary (Q1)" "Biological Psychiatry",189,"journal",6.035,"Netherlands","Biological Psychiatry (Q1)" "eLife",192,"journal",5.984,"United Kingdom","Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1)" +"Progress in Neurobiology",200,"journal",5.84,"United Kingdom","Neuroscience (miscellaneous) (Q1)" "World Psychiatry",203,"journal",5.793,"United States","Psychiatric Mental Health (Q1); Psychiatry and Mental Health (Q1)" +"Current Opinion in Neurobiology",208,"journal",5.72,"Netherlands","Neuroscience (miscellaneous) (Q1)" +"Perspectives on Psychological Science",223,"journal",5.481,"United States","Psychology (miscellaneous) (Q1)" "American Journal of Psychiatry",232,"journal",5.333,"United States","Arts and Humanities (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)" "Nature Reviews Neurology",256,"journal",5.034,"United Kingdom","Cellular and Molecular Neuroscience (Q1); Neurology (clinical) (Q1)" "PLoS Biology",278,"journal",4.776,"United States","Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1)" "Journal of Neuroscience",295,"journal",4.682,"United States","Neuroscience (miscellaneous) (Q1)" "The Lancet Psychiatry",304,"journal",4.618,"United Kingdom","Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)" "Neuroscience and Biobehavioral Reviews",314,"journal",4.52,"United Kingdom","Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1); Neuropsychology and Physiological Psychology (Q1)" +"Psychological Science",336,"journal",4.299,"United States","Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)" "Alzheimer's and Dementia",386,"journal",3.982,"Netherlands","Cellular and Molecular Neuroscience (Q1); Developmental Neuroscience (Q1); Epidemiology (Q1); Geriatrics and Gerontology (Q1); Health Policy (Q1); Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)" -"Schizophrenia Bulletin",389,"journal",3.973,"United Kingdom","Psychiatry and Mental Health (Q1)" "NeuroImage",406,"journal",3.823,"United States","Cognitive Neuroscience (Q1); Neurology (Q1)" +"Current Directions in Psychological Science",409,"journal",3.809,"United States","Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Psychology (miscellaneous) (Q1)" "Cerebral Cortex",425,"journal",3.706,"United Kingdom","Cellular and Molecular Neuroscience (Q1); Cognitive Neuroscience (Q1)" "Neuropsychopharmacology",451,"journal",3.566,"United Kingdom","Pharmacology (Q1); Psychiatry and Mental Health (Q1)" "Stroke",490,"journal",3.407,"United States","Advanced and Specialized Nursing (Q1); Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)" +"Journal of Child Psychology and Psychiatry and Allied Disciplines",492,"journal",3.391,"United Kingdom","Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1)" "Psychotherapy and Psychosomatics",523,"journal",3.26,"Switzerland","Applied Psychology (Q1); Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)" "Molecular Neurodegeneration",536,"journal",3.199,"United Kingdom","Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1); Neurology (clinical) (Q1)" "Cellular and Molecular Life Sciences",548,"journal",3.156,"Switzerland","Cell Biology (Q1); Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1); Molecular Medicine (Q1); Pharmacology (Q1)" "PLoS Computational Biology",553,"journal",3.144,"United States","Cellular and Molecular Neuroscience (Q1); Computational Theory and Mathematics (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1); Modeling and Simulation (Q1); Molecular Biology (Q1)" "Psychological Medicine",556,"journal",3.137,"United Kingdom","Applied Psychology (Q1); Psychiatry and Mental Health (Q1)" +"Journal of the American Academy of Child and Adolescent Psychiatry",598,"journal",2.985,"Netherlands","Developmental and Educational Psychology (Q1); Psychiatry and Mental Health (Q1)" +"Depression and Anxiety",622,"journal",2.913,"United States","Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)" "Journal of Neurology, Neurosurgery and Psychiatry",658,"journal",2.838,"United Kingdom","Arts and Humanities (miscellaneous) (Q1); Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1); Surgery (Q1)" "Neurobiology of Stress",659,"journal",2.834,"Netherlands","Biochemistry (Q1); Cellular and Molecular Neuroscience (Q1); Endocrine and Autonomic Systems (Q1); Endocrinology (Q1); Molecular Biology (Q1); Physiology (Q1)" "Brain, Behavior, and Immunity",664,"journal",2.822,"United States","Behavioral Neuroscience (Q1); Endocrine and Autonomic Systems (Q1); Immunology (Q1)" +"Open Biology",678,"journal",2.794,"United Kingdom","Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology (Q1); Neuroscience (miscellaneous) (Q1)" "Molecular Autism",691,"journal",2.766,"United Kingdom","Developmental Biology (Q1); Developmental Neuroscience (Q1); Molecular Biology (Q1); Psychiatry and Mental Health (Q1)" +"Acta Psychiatrica Scandinavica",734,"journal",2.678,"United Kingdom","Psychiatry and Mental Health (Q1)" "Psychoneuroendocrinology",748,"journal",2.643,"United Kingdom","Biological Psychiatry (Q1); Endocrine and Autonomic Systems (Q1); Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Psychiatry and Mental Health (Q1)" +"DMM Disease Models and Mechanisms",804,"journal",2.552,"United Kingdom","Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1)" +"Frontiers in Synaptic Neuroscience",807,"journal",2.545,"Switzerland","Cell Biology (Q1); Cellular and Molecular Neuroscience (Q1)" +"Cell Death and Disease",815,"journal",2.536,"United Kingdom","Cancer Research (Q1); Cell Biology (Q1); Cellular and Molecular Neuroscience (Q1); Immunology (Q1); Medicine (miscellaneous) (Q1)" +"Hippocampus",842,"journal",2.499,"United States","Cognitive Neuroscience (Q1)" "Journal of Psychiatry and Neuroscience",855,"journal",2.485,"Canada","Biological Psychiatry (Q1); Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)" +"Frontiers in Molecular Neuroscience",864,"journal",2.47,"Switzerland","Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1)" +"Developmental Cognitive Neuroscience",886,"journal",2.442,"Netherlands","Cognitive Neuroscience (Q1)" +"Alzheimer's Research and Therapy",889,"journal",2.436,"United Kingdom","Cognitive Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1)" "Neurobiology of Aging",894,"journal",2.427,"Netherlands","Aging (Q1); Developmental Biology (Q1); Geriatrics and Gerontology (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)" "Journal of Clinical Psychiatry",911,"journal",2.406,"United States","Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)" +"Frontiers in Neuroinformatics",912,"journal",2.405,"Switzerland","Biomedical Engineering (Q1); Computer Science Applications (Q1); Neuroscience (miscellaneous) (Q1)" "Frontiers in Cellular Neuroscience",918,"journal",2.4,"Switzerland","Cellular and Molecular Neuroscience (Q1)" +"Bipolar Disorders",925,"journal",2.392,"United Kingdom","Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)" "Translational Psychiatry",942,"journal",2.379,"United Kingdom","Biological Psychiatry (Q1); Cellular and Molecular Neuroscience (Q1); Psychiatry and Mental Health (Q1)" +"Dialogues in Clinical Neuroscience",1005,"journal",2.291,"France","Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)" +"Experimental Neurology",1019,"journal",2.276,"United States","Developmental Neuroscience (Q1); Neurology (Q1)" "Neuropharmacology",1025,"journal",2.264,"United Kingdom","Cellular and Molecular Neuroscience (Q1); Pharmacology (Q1)" +"NeuroImage: Clinical",1040,"journal",2.245,"Netherlands","Cognitive Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)" "Journal of Neuroinflammation",1074,"journal",2.2,"United Kingdom","Cellular and Molecular Neuroscience (Q1); Immunology (Q1); Neurology (Q1); Neuroscience (miscellaneous) (Q1)" +"Frontiers in Neural Circuits",1076,"journal",2.199,"Switzerland","Cellular and Molecular Neuroscience (Q1); Cognitive Neuroscience (Q1); Neuroscience (miscellaneous) (Q1); Sensory Systems (Q1)" "Schizophrenia Research",1089,"journal",2.188,"Netherlands","Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)" "Journal of Psychiatric Research",1096,"journal",2.182,"United Kingdom","Arts and Humanities (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)" "Journal of Comparative Neurology",1111,"journal",2.159,"United States","Neuroscience (miscellaneous) (Q1)" +"Development and Psychopathology",1179,"journal",2.089,"United Kingdom","Developmental and Educational Psychology (Q1); Psychiatry and Mental Health (Q1)" +"Journal of Clinical Child and Adolescent Psychology",1187,"journal",2.08,"United States","Clinical Psychology (Q1); Developmental and Educational Psychology (Q1)" +"Cognitive, Affective and Behavioral Neuroscience",1225,"journal",2.039,"United States","Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1)" "Molecular and Cellular Neurosciences",1231,"journal",2.031,"United States","Cell Biology (Q1); Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1)" +"Journal of Psychopharmacology",1239,"journal",2.023,"United States","Medicine (miscellaneous) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)" "Frontiers in Systems Neuroscience",1242,"journal",2.021,"Switzerland","Cellular and Molecular Neuroscience (Q1); Cognitive Neuroscience (Q1); Developmental Neuroscience (Q1); Neuroscience (miscellaneous) (Q1)" +"European Neuropsychopharmacology",1262,"journal",2.005,"Netherlands","Neurology (Q1); Neurology (clinical) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)" +"Frontiers in Neuroanatomy",1293,"journal",1.981,"Switzerland","Anatomy (Q1); Neuroscience (miscellaneous) (Q1); Cellular and Molecular Neuroscience (Q2)" "Frontiers in Integrative Neuroscience",1297,"journal",1.977,"Switzerland","Cognitive Neuroscience (Q1); Sensory Systems (Q1); Cellular and Molecular Neuroscience (Q2)" "Journal of Affective Disorders",1309,"journal",1.967,"Netherlands","Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)" "Journals of Gerontology - Series B Psychological Sciences and Social Sciences",1310,"journal",1.966,"United States","Clinical Psychology (Q1); Geriatrics and Gerontology (Q1); Gerontology (Q1); Medicine (miscellaneous) (Q1); Social Psychology (Q1)" +"Neurobiology of Learning and Memory",1312,"journal",1.965,"United States","Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1); Experimental and Cognitive Psychology (Q1)" +"World Journal of Biological Psychiatry",1408,"journal",1.905,"United Kingdom","Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)" +"Genes, Brain and Behavior",1413,"journal",1.902,"United Kingdom","Behavioral Neuroscience (Q1); Genetics (Q1); Neurology (Q1)" +"Behavior Research Methods & Instrumentation",1441,"journal",1.882,"Germany","Experimental and Cognitive Psychology (Q1); Psychology (miscellaneous) (Q1)" "Frontiers in Neuroscience",1444,"journal",1.88,"Switzerland","Neuroscience (miscellaneous) (Q1)" "Progress in Neuro-Psychopharmacology and Biological Psychiatry",1462,"journal",1.87,"Netherlands","Pharmacology (Q1); Biological Psychiatry (Q2)" "Frontiers in Aging Neuroscience",1467,"journal",1.865,"Switzerland","Aging (Q1); Cognitive Neuroscience (Q2)" @@ -59,12 +91,40 @@ "European Journal of Neuroscience",1485,"journal",1.857,"United Kingdom","Neuroscience (miscellaneous) (Q1)" "Investigative Ophthalmology and Visual Science",1510,"journal",1.836,"United States","Ophthalmology (Q1); Sensory Systems (Q1); Cellular and Molecular Neuroscience (Q2)" "Current Opinion in Psychiatry",1513,"journal",1.834,"United States","Psychiatry and Mental Health (Q1)" +"Annals of Behavioral Medicine",1543,"journal",1.814,"United States","Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1)" "International Journal of Eating Disorders",1592,"journal",1.786,"United States","Psychiatry and Mental Health (Q1)" "Frontiers in Psychiatry",1602,"journal",1.778,"Switzerland","Psychiatry and Mental Health (Q1)" +"European Archives of Psychiatry and Clinical Neuroscience",1618,"journal",1.766,"Germany","Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)" "CNS Drugs",1626,"journal",1.763,"United Kingdom","Neurology (clinical) (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)" "Journal of Neurochemistry",1632,"journal",1.76,"United Kingdom","Biochemistry (Q1); Cellular and Molecular Neuroscience (Q2)" "Frontiers in Behavioral Neuroscience",1660,"journal",1.745,"Switzerland","Behavioral Neuroscience (Q1); Neuropsychology and Physiological Psychology (Q1); Cognitive Neuroscience (Q2)" "Frontiers in Human Neuroscience",1669,"journal",1.739,"Switzerland","Behavioral Neuroscience (Q1); Neurology (Q1); Neuropsychology and Physiological Psychology (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)" +"Current Opinion in Behavioral Sciences",1699,"journal",1.717,"United Kingdom","Behavioral Neuroscience (Q1); Psychiatry and Mental Health (Q1); Cognitive Neuroscience (Q2)" "Molecular Neurobiology",1719,"journal",1.706,"United States","Cellular and Molecular Neuroscience (Q2)" +"Developmental Neurobiology",1733,"journal",1.701,"United States","Developmental Neuroscience (Q1); Cellular and Molecular Neuroscience (Q2)" "Neuroscience",1766,"journal",1.685,"Netherlands","Neuroscience (miscellaneous) (Q1)" +"Autism",1797,"journal",1.669,"United States","Developmental and Educational Psychology (Q1)" "Journal of NeuroImmune Pharmacology",1827,"journal",1.658,"Germany","Immunology and Allergy (Q1); Neuroscience (miscellaneous) (Q1); Pharmacology (Q1); Immunology (Q2)" +"Scientific Reports",1871,"journal",1.625,"United Kingdom","Multidisciplinary (Q1)" +"Journal of Neurophysiology",1895,"journal",1.615,"United States","Neuroscience (miscellaneous) (Q1); Physiology (Q1)" +"Hormones and Behavior",1918,"journal",1.605,"United States","Behavioral Neuroscience (Q1); Endocrine and Autonomic Systems (Q1); Endocrinology (Q1)" +"CNS Spectrums",1919,"journal",1.603,"United Kingdom","Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)" +"Translational Neurodegeneration",1921,"journal",1.603,"United Kingdom","Neurology (clinical) (Q1); Cellular and Molecular Neuroscience (Q2); Cognitive Neuroscience (Q2)" +"Molecular Pain",1987,"journal",1.573,"United Kingdom","Anesthesiology and Pain Medicine (Q1); Molecular Medicine (Q1); Cellular and Molecular Neuroscience (Q2)" +"Autism Research",1999,"journal",1.567,"United States","Neurology (clinical) (Q1); Genetics (clinical) (Q2); Neuroscience (miscellaneous) (Q2)" +"American Psychologist",2049,"journal",1.547,"United States","Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)" +"Journal of Alzheimer's Disease",2073,"journal",1.536,"Netherlands","Clinical Psychology (Q1); Geriatrics and Gerontology (Q1); Psychiatry and Mental Health (Q1)" +"Developmental Medicine and Child Neurology",2074,"journal",1.535,"United States","Neurology (clinical) (Q1); Pediatrics, Perinatology and Child Health (Q1); Developmental Neuroscience (Q2)" +"Alcoholism: Clinical and Experimental Research",2087,"journal",1.533,"United States","Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Toxicology (Q1)" +"Social and Personality Psychology Compass",2089,"journal",1.531,"United Kingdom","Social Psychology (Q1)" +"CNS Neuroscience and Therapeutics",2091,"journal",1.531,"United States","Pharmacology (Q1); Pharmacology (medical) (Q1); Physiology (medical) (Q1); Psychiatry and Mental Health (Q1)" +"Brain Imaging and Behavior",2109,"journal",1.524,"United States","Behavioral Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Cellular and Molecular Neuroscience (Q2); Cognitive Neuroscience (Q2)" +"European Psychiatry",2129,"journal",1.517,"France","Psychiatry and Mental Health (Q1)" +"Behavioural Brain Research",2144,"journal",1.51,"Netherlands","Behavioral Neuroscience (Q1)" +"ACS Chemical Neuroscience",2163,"journal",1.504,"United States","Biochemistry (Q1); Physiology (Q1); Cell Biology (Q2); Cognitive Neuroscience (Q2)" +"Journal of Neuroendocrinology",2186,"journal",1.495,"United Kingdom","Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Cellular and Molecular Neuroscience (Q2); Endocrine and Autonomic Systems (Q2)" +"Australian and New Zealand Journal of Psychiatry",2238,"journal",1.472,"United States","Psychiatry and Mental Health (Q1)" +"International Journal of Neuropsychopharmacology",2290,"journal",1.457,"United Kingdom","Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)" +"Canadian Journal of Psychiatry",2307,"journal",1.449,"Canada","Psychiatry and Mental Health (Q1)" +"European Child and Adolescent Psychiatry",2355,"journal",1.43,"Germany","Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Philosophy (Q1); Psychiatry and Mental Health (Q1)" +"NeuroMolecular Medicine",2378,"journal",1.421,"United States","Cellular and Molecular Neuroscience (Q2); Molecular Medicine (Q2); Neurology (Q2)" diff --git a/vignettes/microbiome_psych_wordcloud.png b/vignettes/microbiome_psych_wordcloud.png index 709fc38..e8fa604 100644 Binary files a/vignettes/microbiome_psych_wordcloud.png and b/vignettes/microbiome_psych_wordcloud.png differ